diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..14181ed --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,25 @@ +{ + "permissions": { + "allow": [ + "Bash(gh repo:*)", + "WebFetch(domain:godotengine.org)", + "Bash(gh api:*)", + "Bash(which npx:*)", + "Bash(claude mcp:*)", + "mcp__godot__get_godot_status", + "mcp__godot__read_scene", + "mcp__godot__get_input_map", + "mcp__godot__add_node", + "mcp__godot__attach_script", + "mcp__godot__remove_node", + "mcp__godot__configure_input_map", + "mcp__godot__get_errors", + "mcp__godot__clear_console_log", + "mcp__godot__validate_script", + "mcp__godot__get_node_properties", + "mcp__godot__get_console_log", + "Bash(git remote:*)", + "Bash(git add:*)" + ] + } +} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore index 3ce0f1c..4bb3acd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,18 @@ # Godot .godot/ import/ -*.import *.translation *.tres~ *.tscn~ *.godot +# OS +.DS_Store +Thumbs.db + +# Build output +build/ + # Editor .idea/ .vscode/ @@ -14,18 +20,17 @@ import/ *.swo *~ -# OS -.DS_Store -Thumbs.db +# Python +__pycache__/ +*.pyc -# Build -client/build/ -server/build/ -*.zip -*.exe -*.pck +# Netfox +addons/netfox/encoder/*.gd +addons/netfox/extras/plugin.cfg +addons/netfox/icons/*.svg.import +addons/netfox/internals/plugin.cfg +addons/netfox/noray/plugin.cfg +addons/netfox/plugin.cfg -# Secrets (operator must create per deployment) -server/data/rcon_password.cfg -build/ -build/ +# Secrets +rcon_password.cfg diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..ef3ac33 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,69 @@ +# Netfox Project + +## Projekt-Kontext +Wir arbeiten am **Multiplayer-FPS-Beispiel** unter `/examples/multiplayer-fps/`. +Godot 4.6 mit dem netfox Networking-Framework. Sprache: GDScript. + +## Multiplayer-FPS Struktur + +**Architektur:** Server-autoritativ mit Rollback (Client-Side Prediction) + +### Dateien +- `multiplayer-fps.tscn` — Hauptszene (Map, 5 Spawn Points, UI, Network) +- `characters/player.tscn` — Spieler-Prefab (CharacterBody3D) +- `scripts/player.gd` — Bewegung (Speed 5, Jump 5), Health (100 HP), Respawn +- `scripts/player-input.gd` — Input-Gathering (extends `BaseNetInput`), Mouse Sensitivity 0.005 +- `scripts/player-weapon.gd` — Hitscan-Waffe (extends `NetworkWeaponHitscan3D`), 34 DMG/Hit, 0.25s Cooldown +- `scripts/player-spawner.gd` — Spieler spawnen/despawnen bei Connect/Disconnect +- `scripts/bullethole.gd` — Bullet-Hole Decal-Pool (max 20) +- `scripts/ui/` — Crosshair, Health-Bar, 3D-Projection, Window-Resize + +### Netzwerk-Setup +- `RollbackSynchronizer` synct: transform, velocity, head rotation +- Inputs: movement, jump, fire, look_angle +- `MultiplayerSynchronizer` repliziert: health, death_tick, respawn_position +- `TickInterpolator` für smooth visuals zwischen Ticks +- Avatar-Body Authority: Server (ID 1), Input-Authority: jeweiliger Peer + +### Gameplay +- WASD + Maus FPS-Steuerung +- 3 Hits = Tod (3x34 = 102 > 100 HP) +- Respawn an deterministischem Spawn Point (Hash-basiert) +- Sounds: fire.mp3, hit.wav, death.wav + +## Netfox Framework (Addon) + +### Kern-Systeme (Autoloads) +- `NetworkTime` — Zentraler Tick-Loop (Projekt-Default: 24 Hz) +- `NetworkTimeSynchronizer` — Clock-Sync zum Server +- `NetworkRollback` — Orchestriert Rollback +- `NetworkEvents` — Event-Broadcasting (on_client_start, on_server_start, on_peer_join, etc.) +- `RollbackSimulationServer` — Führt Physics/Logic während Rollback aus +- `NetworkHistoryServer` — State/Input History +- `NetworkSynchronizationServer` — Paket-Übertragung +- `NetworkIdentityServer` — Node-ID-Mapping + +### Custom Nodes +- `RollbackSynchronizer` — Deterministische State-Sync mit Rollback + `_rollback_tick(delta, tick, is_fresh)` +- `StateSynchronizer` — Einfachere State-Sync ohne Rollback +- `TickInterpolator` — Smooth Interpolation zwischen Ticks +- `RewindableAction` — Rollback-fähige Actions (fire, abilities) +- `PredictiveSynchronizer` — Client-Side Prediction + +### Extras (netfox.extras) +- `BaseNetInput` — Basis-Klasse für Input-Gathering mit `_gather()` +- `NetworkWeaponHitscan3D` — Hitscan-Waffen mit Latenz-Kompensation +- `NetworkWeapon3D/2D` — Projektil-Waffen +- `RewindableStateMachine` / `RewindableState` — Rollback-fähige State Machine +- `NetworkRigidBody2D/3D` — Physics-Sync mit Rollback +- `NetworkSimulator` — Latenz/Packet-Loss Simulation +- `RewindableRandomNumberGenerator` — Deterministische RNG + +### Noray (netfox.noray) +- NAT Punchthrough + Relay-Fallback +- OpenID/PrivateID System + +## Doku +- Framework-Docs: `/docs/netfox/`, `/docs/netfox.extras/`, `/docs/netfox.noray/` +- Tutorials: `/docs/netfox/tutorials/` +- Guides: `/docs/netfox/guides/` diff --git a/LICENSE b/LICENSE index 0fb8046..d6238dc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,18 +1,18 @@ -MIT License +Copyright 2023 Gálffy Tamás -Copyright (c) 2026 shawn +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the -following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO -EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/PLANS/PROJECT_PLAN.md b/PLANS/PROJECT_PLAN.md deleted file mode 100644 index ebab1b8..0000000 --- a/PLANS/PROJECT_PLAN.md +++ /dev/null @@ -1,141 +0,0 @@ -# Project: Tactical Shooter (CS-Clone) — Build Plan - -## 1. Vision - -A competitive, round-based tactical FPS (Counter-Strike-style: buy phase, bomb/objective rounds, economy) built in **Godot 4**, targeting: -- Good visual fidelity on low/mid-end hardware (Valorant-tier art direction, not AAA realism) -- 128-tick authoritative dedicated servers, community-hostable -- Official map-making tools/SDK so the community can build and distribute maps -- Server browser + map distribution pipeline (Steam-Workshop-like, but self-hosted) - -## 2. Core Tech Decisions (locked) - -| Area | Decision | -|---|---| -| Engine | Godot 4, Forward+ renderer | -| Server model | Authoritative dedicated server, headless Godot (`--headless`) export | -| Netcode | GDExtension (C++) simulation core from day one; ENet or GodotSteam transport (evaluate both in Phase 0) | -| Tick rate | **128 tick, firm target.** Simulation hot path built in GDExtension (C++) from day one — not GDScript — to make this realistic. See Section 3a. | -| Lighting | Baked lightmaps (LightmapGI) + reflection probes, no SDFGI/real-time GI | -| Map tooling | Built-in CSG nodes (Hammer-like blockout) + custom map template project | -| Hit detection | Server-side hitscan with lag compensation (rewind) | -| Distribution | Self-hosted CDN/GitHub releases for `.pck` map bundles, custom server browser API | - -## 3a. Notes on Hitting 128 Tick - -128 tick is achievable in Godot but requires committing to the harder architecture from the start, not retrofitting it later: - -- **Simulation core in GDExtension (C++), not GDScript.** Movement, hit detection, and state serialization for the authoritative server should live in a compiled GDExtension module. GDScript can drive high-level game logic (round state, economy, UI) but should not be in the 128Hz hot loop. -- **Delta-compressed snapshots, not full state per tick.** At 128Hz, sending full world state every tick is a bandwidth non-starter. Serialize only changed fields per entity per tick. -- **Decouple simulation tick from network send rate.** The server can simulate at 128Hz while only sending snapshots to clients at a lower rate (e.g. 64Hz) with interpolation — this is standard practice (Source engine itself decouples these). Confirm with the team whether "128 tick" means simulation rate, network send rate, or both — this materially changes the engineering plan. -- **Benchmark in Phase 0, not Phase 1.** Stand up a synthetic load test (bots or dummy clients) hitting 128Hz simulation with realistic player counts (10v10) before building gameplay on top of it. If GDExtension can't sustain it on target hardware, that needs to be known before Phase 1 starts, not discovered mid-project. -- **Physics FPS setting**: Godot's `_physics_process` must be set to 128 (Project Settings → Physics → Common → Physics Ticks Per Second) and profiled for headroom, since this affects both simulation and physics engine cost. - -## 3b. Libraries & Plugins - -| Plugin/Library | Purpose | Notes | Owning Agent | -|---|---|---|---| -| **[FuncGodot](https://github.com/func-godot/func_godot_plugin)** | Import TrenchBroom `.map`/`.vmf`-style files into Godot as scenes | Successor to Qodot; gives community a Hammer/TrenchBroom-equivalent mapping workflow — evaluate as primary mapping tool over raw CSG | Mapping SDK Agent | -| **[godot-tbloader](https://github.com/codecat/godot-tbloader)** | Alternative TrenchBroom loader | Lighter-weight C++ port; benchmark against FuncGodot in Phase 0/5, pick one | Mapping SDK Agent | -| **[GodotSteam](https://godotsteam.com) (GDExtension)** | Low-level networking transport (wraps GameNetworkingSockets) | Works over plain IP, not just Steam lobbies; strong candidate to replace/augment ENet for reliability and lane prioritization | Netcode Agent | -| **GodotSteam Server (GDExtension)** | Server-side counterpart to GodotSteam | Useful if considering optional Steam-based server discovery later | Server Infra Agent | -| **[steam-multiplayer-peer](https://github.com/expressobits/steam-multiplayer-peer)** | MultiplayerPeer implementation over Steam Sockets | Only relevant if adopting Godot's high-level multiplayer API on top of Steam transport | Netcode Agent | -| ENet (built-in) | Baseline transport | Keep as Phase 0 fallback/reference implementation while evaluating GodotSteam | Netcode Agent | -| Custom GDExtension (C++) | Simulation hot path | Not a plugin — build in-house. See Section 3a. | Netcode Agent | - -**Deliberately not using:** -- **GD-Sync** — relay-based hosted multiplayer service; conflicts with the self-hosted community dedicated server model. -- **godot-rollback-netcode** (Snopek Games) — built for rollback-style netcode (fighting games), not authoritative-server shooters. Wrong model for this project. - -## 4. Phases & Milestones - -### Phase 0 — Foundations (spike/prototype) -- Stand up empty Godot project, Forward+ renderer configured -- Headless dedicated server export pipeline working (`--headless`, build + run on Linux VPS) -- Basic client-server connection via ENet or GodotSteam transport, player join/leave, position replication -- GDExtension simulation core scaffolded; synthetic load test at 128Hz with realistic player counts (see Section 3a) -- **Exit criteria:** two clients can connect to a dedicated server and see each other move, and the 128Hz load test hits target headroom on reference hardware - -### Phase 1 — Core Gameplay Loop -- First-person character controller (movement, jump, crouch, walk toggle) -- Client-side prediction + server reconciliation for movement -- Hitscan weapon (one gun), server-authoritative damage, lag compensation -- Round system: round start/end, win condition (elimination), respawn/spectate -- One grey-box test map -- **Exit criteria:** two players can shoot each other and complete a round on the dedicated server - -### Phase 2 — Tactical Shooter Systems -- Buy menu + economy (money per round, win/loss bonuses) -- Bomb-defuse or objective mode (plant/defuse or equivalent) -- Weapon set (rifle, pistol, sniper, utility — smoke/flash/grenade) -- Team system, spawn zones, buy zones -- **Exit criteria:** full round loop (buy → play → win/loss → economy carries over) playable end-to-end - -### Phase 3 — Visuals & Performance Pass -- Baked lighting pass on test map (LightmapGI), reflection probes -- Art pass: modular wall/floor kit, PBR materials at 1K, agreed art style guide -- Performance budget defined (target frame time on reference low-end GPU) and profiled -- LOD + occlusion culling setup -- **Exit criteria:** test map hits performance budget on reference low-end hardware while looking presentable - -### Phase 4 — Dedicated Server Hardening -- RCON-style remote admin console -- Server config files (tick rate, map rotation, cvars) -- Master server / server browser API (heartbeat + query) -- Anti-cheat basics (server-authoritative validation, sanity checks on inputs) -- **Exit criteria:** community member can download server binary, configure, and have it appear in a public server browser - -### Phase 5 — Mapmaking SDK -- Map template Godot project (CSG-based prefabs, spawn/buy-zone/bombsite node types documented) -- Lightmap baking + validation script (poly count, texture size, light count linting) -- Map packaging as `.pck` addon + auto-download on client connect -- Mapping documentation for community -- **Exit criteria:** a team member unfamiliar with the codebase can build and ship a working custom map using only the SDK + docs - -### Phase 6 — Polish & Ecosystem -- Plugin/scripting hook API for server admins (SourceMod-style, stretch goal) -- Workshop-style map browser in-client -- Bug bash, netcode edge cases (packet loss, high ping simulation testing) -- **Exit criteria:** ready for closed community playtest - -## 5. Repository Structure (proposed) - -``` -/client Godot client project -/server Headless server export config/scripts -/shared Code shared between client & server (game logic, data structs) -/maps - /template Base map project agents/community start from - /test_maps -/tools - /map-validator Lint script for poly count, texture size, lighting - /server-browser-api Master server service -/docs - /architecture.md - /netcode.md - /mapping-sdk.md - /server-hosting.md -``` - -## 6. Workstream Ownership (for agent team assignment) - -| Workstream | Scope | -|---|---| -| **Netcode Agent** | GDExtension simulation core, client prediction, server reconciliation, lag compensation, 128Hz tick loop, snapshot delta compression, transport layer (ENet/GodotSteam) | -| **Gameplay Agent** | Movement controller, weapons, round/economy logic, buy system | -| **Rendering/Art Pipeline Agent** | Forward+ renderer config, LightmapGI baked lighting setup, material/texture standards, performance profiling | -| **Server Infra Agent** | Headless export pipeline, RCON, config system, master server/server browser | -| **Mapping SDK Agent** | Map template project, CSG prefab kit, validation/lint tooling, `.pck` packaging pipeline | -| **Docs/Integration Agent** | Keeps `/docs` in sync, defines interfaces between workstreams, integration testing | - -## 7. Key Risks to Flag Early - -- **128 tick is the firm target — treat it as a Phase 0 gate, not a later optimization.** If the load test in Phase 0 doesn't hit target headroom, stop and resolve it before Phase 1 gameplay work begins; don't build gameplay on an unproven simulation core. -- **GDScript must stay out of the 128Hz hot loop.** All performance-critical simulation code goes in the GDExtension core from day one (see Section 3a) — this is not optional at this tick rate. -- **Clarify what "128 tick" covers** with the team up front: simulation rate, network send rate, or both. This changes the bandwidth budget and delta-compression design significantly. -- **Scope**: a full CS clone (weapon balance, anti-cheat, matchmaking, many maps) is large. Phases above are ordered so there's a playable end-to-end loop as early as Phase 2 — resist adding features before that loop is solid. -- **Lag compensation correctness** is the single most likely source of "feels bad" gameplay bugs — budget real testing time here, not just implementation time. - -## 8. Definition of Done for Each Phase - -Each phase is done when its exit criteria (above) is met, testable by two or more clients connecting to an actual dedicated server build (not just in-editor play mode), with no P0/P1 bugs open in that phase's scope. diff --git a/README.md b/README.md index 364a9ad..fb9eb10 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,94 @@ -# Tactical Shooter +# netfox CS Sample -A competitive, round-based tactical FPS built in Godot 4. +A **Counter-Strike 1.6 inspired** multiplayer FPS built with [Godot 4.6](https://godotengine.org/) and the [netfox](https://github.com/foxssake/netfox) networking framework. -- 128-tick authoritative dedicated servers -- GDExtension (C++) simulation core -- Community-hostable, self-hosted server browser -- [Map-making SDK](docs/mapmaking/00-index.md) for community maps +This is a community sample showcasing how to build a server-authoritative FPS with rollback netcode, client-side prediction, and latency compensation using netfox's `RollbackSynchronizer`, `RewindableAction`, and related systems. -See [PLANS/PROJECT_PLAN.md](PLANS/PROJECT_PLAN.md) for the full build plan. -See [Mapmaking SDK docs](docs/mapmaking/00-index.md) to build and ship custom maps. +> **Note:** This is a fork of the [netfox repository](https://github.com/foxssake/netfox). The game lives in `examples/multiplayer-fps/`. + +## Features + +- **Teams & Rounds** — Terrorists vs Counter-Terrorists with freeze-time, round timer, and win conditions +- **6 Weapons** — Knife, Glock, USP, AK-47, M4A1, AWP with per-weapon damage, fire rate, recoil, ammo, and reload +- **Economy System** — Kill/round rewards, loss streak bonus, buy menu (B-key), Kevlar & defuse kit +- **Bomb Plant/Defuse** — 2 bombsites, server-authoritative bomb logic, carrier tracking, drop on death +- **Grenades** — Flashbang (LOS + distance whiteout) and Smoke grenades +- **Rollback Netcode** — Server-authoritative with client-side prediction at 64 tick +- **Latency-Compensated Weapons** — `RewindableAction`-based hitscan firing inside the rollback loop +- **Frame-Rate Camera** — Mouse look renders at display refresh rate, not tick rate + +## How to Run + +1. Clone this repo +2. Open the project root in **Godot 4.6** +3. Run the main scene (`examples/multiplayer-fps/multiplayer-fps.tscn`) +4. Use the network popup to host/join a game + +For multiple local clients, enable **auto-tile windows** in the netfox settings (already on by default). + +## Controls + +| Key | Action | +|---|---| +| WASD | Move | +| Mouse | Look | +| Left Click | Fire | +| R | Reload | +| 1-4 | Weapon slots | +| Scroll | Next/prev weapon | +| B | Buy menu | +| E | Use (plant/defuse bomb) | +| Tab | Scoreboard | +| Esc | Release mouse | + +## Project Structure + +``` +examples/multiplayer-fps/ +├── multiplayer-fps.tscn # Main scene (map, spawns, UI, network) +├── characters/player.tscn # Player prefab (CharacterBody3D) +├── scripts/ +│ ├── player.gd # Movement, health, respawn +│ ├── player-input.gd # Input gathering (BaseNetInput) +│ ├── weapon_manager.gd # Weapon switching, ammo, models +│ ├── round-manager.gd # Round state machine, win conditions +│ ├── team-manager.gd # Team assignment (T/CT) +│ ├── economy_manager.gd # Money, buy logic, rewards +│ ├── bomb.gd # Bomb plant/defuse/explode +│ ├── bombsite.gd # Bombsite area detection +│ ├── grenade.gd # Flash & smoke grenades +│ ├── bullethole.gd # Decal pool +│ ├── node-pool.gd # Object pooling utility +│ ├── player-spawner.gd # Player spawn/despawn on connect +│ ├── data/weapon_data.gd # Weapon stats resource +│ ├── data/weapon_registry.gd # Weapon ID → resource mapping +│ └── ui/ # HUD, buy menu, bomb HUD, crosshair +addons/ +├── netfox/ # Core: timing, rollback, synchronizers +├── netfox.extras/ # Weapons, input, state machines +├── netfox.internals/ # Internal utilities +└── netfox.noray/ # NAT punchthrough & relay +``` + +## Netfox Patterns Used + +- **`RollbackSynchronizer`** with `_rollback_tick()` for deterministic state sync +- **`RewindableAction`** for rollback-safe weapon firing +- **`TickInterpolator`** for smooth visuals between ticks +- **`BaseNetInput`** for input gathering with `_gather()` +- **`NetworkEvents`** for peer join/leave handling +- **`MultiplayerSynchronizer`** for non-rollback state (health, death, economy) +- **Self-RPC pattern** — direct-call for listen-server host, RPC for clients + +## License + +MIT — see [LICENSE](LICENSE). + +Built on top of [netfox](https://github.com/foxssake/netfox) by [Fox's Sake Studio](https://foxssake.studio/). + +## Credits + +- [netfox](https://github.com/foxssake/netfox) — Networking framework by Tamás Gálffy / Fox's Sake +- Sound effects from [Sonniss GDC Bundle](https://sonniss.com/) +- Bullet hole texture by [musdasch](https://opengameart.org/users/musdasch) (CC0) +- Crosshair by [krazyjakee](https://github.com/krazyjakee) (CC0) diff --git a/addons/godot-jolt/LICENSE.txt b/addons/godot-jolt/LICENSE.txt deleted file mode 100644 index 2675022..0000000 --- a/addons/godot-jolt/LICENSE.txt +++ /dev/null @@ -1,18 +0,0 @@ -Copyright (c) Mikael Hermansson and Godot Jolt contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/addons/godot-jolt/THIRDPARTY.txt b/addons/godot-jolt/THIRDPARTY.txt deleted file mode 100644 index e294095..0000000 --- a/addons/godot-jolt/THIRDPARTY.txt +++ /dev/null @@ -1,91 +0,0 @@ -Godot Jolt incorporates third-party material from the projects listed below. - -Godot Engine (https://github.com/godotengine/godot) - - Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). - Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -godot-cpp (https://github.com/godot-jolt/godot-cpp) - - Copyright (c) 2017-present Godot Engine contributors. - Copyright (c) 2022-present Mikael Hermansson. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -Jolt Physics (https://github.com/godot-jolt/jolt) - - Copyright (c) 2021 Jorrit Rouwe. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - -mimalloc (https://github.com/godot-jolt/mimalloc) - - Copyright (c) 2018-2021 Microsoft Corporation, Daan Leijen. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. diff --git a/addons/godot-jolt/android/libgodot-jolt_android-arm32.so b/addons/godot-jolt/android/libgodot-jolt_android-arm32.so deleted file mode 100644 index 0694cfd..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-arm32.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so b/addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so deleted file mode 100644 index 4f62719..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-arm64.so b/addons/godot-jolt/android/libgodot-jolt_android-arm64.so deleted file mode 100644 index 43fc04c..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-arm64.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so b/addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so deleted file mode 100644 index d7c820f..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-x64.so b/addons/godot-jolt/android/libgodot-jolt_android-x64.so deleted file mode 100644 index 2d5c9e1..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-x64.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so b/addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so deleted file mode 100644 index 856b52e..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-x86.so b/addons/godot-jolt/android/libgodot-jolt_android-x86.so deleted file mode 100644 index f029fa1..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-x86.so and /dev/null differ diff --git a/addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so b/addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so deleted file mode 100644 index fd1ddee..0000000 Binary files a/addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so and /dev/null differ diff --git a/addons/godot-jolt/godot-jolt.gdextension b/addons/godot-jolt/godot-jolt.gdextension deleted file mode 100644 index cbad2dc..0000000 --- a/addons/godot-jolt/godot-jolt.gdextension +++ /dev/null @@ -1,41 +0,0 @@ -[godot-jolt] -version = "0.16.0-stable" -build = "8eca5bb795" - -[configuration] - -entry_symbol = "godot_jolt_main" -compatibility_minimum = "4.3" -compatibility_maximum = "4.7" - -[libraries] - -windows.release.single.x86_64 = "windows/godot-jolt_windows-x64.dll" -windows.debug.single.x86_64 = "windows/godot-jolt_windows-x64_editor.dll" - -windows.release.single.x86_32 = "windows/godot-jolt_windows-x86.dll" -windows.debug.single.x86_32 = "windows/godot-jolt_windows-x86_editor.dll" - -linux.release.single.x86_64 = "linux/godot-jolt_linux-x64.so" -linux.debug.single.x86_64 = "linux/godot-jolt_linux-x64_editor.so" - -linux.release.single.x86_32 = "linux/godot-jolt_linux-x86.so" -linux.debug.single.x86_32 = "linux/godot-jolt_linux-x86_editor.so" - -macos.release.single = "macos/godot-jolt_macos.framework" -macos.debug.single = "macos/godot-jolt_macos_editor.framework" - -ios.release.single = "ios/godot-jolt_ios.framework" -ios.debug.single = "ios/godot-jolt_ios_editor.framework" - -android.release.single.arm64 = "android/libgodot-jolt_android-arm64.so" -android.debug.single.arm64 = "android/libgodot-jolt_android-arm64_editor.so" - -android.release.single.arm32 = "android/libgodot-jolt_android-arm32.so" -android.debug.single.arm32 = "android/libgodot-jolt_android-arm32_editor.so" - -android.release.single.x86_64 = "android/libgodot-jolt_android-x64.so" -android.debug.single.x86_64 = "android/libgodot-jolt_android-x64_editor.so" - -android.release.single.x86_32 = "android/libgodot-jolt_android-x86.so" -android.debug.single.x86_32 = "android/libgodot-jolt_android-x86_editor.so" diff --git a/addons/godot-jolt/godot-jolt.gdextension.uid b/addons/godot-jolt/godot-jolt.gdextension.uid deleted file mode 100644 index 3b80eea..0000000 --- a/addons/godot-jolt/godot-jolt.gdextension.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bc7tkad04qybu diff --git a/addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist b/addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist deleted file mode 100644 index c830dc6..0000000 --- a/addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist +++ /dev/null @@ -1,51 +0,0 @@ - - - - - CFBundleInfoDictionaryVersion - 6.0 - CFBundleDevelopmentRegion - en - CFBundleExecutable - godot-jolt_ios - CFBundleName - Godot Jolt - CFBundleDisplayName - Godot Jolt - CFBundleIdentifier - org.godot-jolt.godot-jolt - NSHumanReadableCopyright - Copyright (c) Mikael Hermansson and Godot Jolt contributors. - CFBundleVersion - 0.16.0 - CFBundleShortVersionString - 0.16.0 - CFBundlePackageType - FMWK - CFBundleSupportedPlatforms - - iPhoneOS - - CSResourcesFileMapped - - DTPlatformName - iphoneos - MinimumOSVersion - 12.0 - - - AvailableLibraries - - - BinaryPath - godot-jolt_ios.dylib - - - - diff --git a/addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios b/addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios deleted file mode 100644 index 96afaae..0000000 Binary files a/addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios and /dev/null differ diff --git a/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist b/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist deleted file mode 100644 index 078c990..0000000 --- a/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist +++ /dev/null @@ -1,51 +0,0 @@ - - - - - CFBundleInfoDictionaryVersion - 6.0 - CFBundleDevelopmentRegion - en - CFBundleExecutable - godot-jolt_ios_editor - CFBundleName - Godot Jolt - CFBundleDisplayName - Godot Jolt - CFBundleIdentifier - org.godot-jolt.godot-jolt - NSHumanReadableCopyright - Copyright (c) Mikael Hermansson and Godot Jolt contributors. - CFBundleVersion - 0.16.0 - CFBundleShortVersionString - 0.16.0 - CFBundlePackageType - FMWK - CFBundleSupportedPlatforms - - iPhoneOS - - CSResourcesFileMapped - - DTPlatformName - iphoneos - MinimumOSVersion - 12.0 - - - AvailableLibraries - - - BinaryPath - godot-jolt_ios_editor.dylib - - - - diff --git a/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor b/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor deleted file mode 100644 index f661a7a..0000000 Binary files a/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor and /dev/null differ diff --git a/addons/godot-jolt/linux/godot-jolt_linux-x64.so b/addons/godot-jolt/linux/godot-jolt_linux-x64.so deleted file mode 100644 index 9166ddb..0000000 Binary files a/addons/godot-jolt/linux/godot-jolt_linux-x64.so and /dev/null differ diff --git a/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so b/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so deleted file mode 100644 index e7805f3..0000000 Binary files a/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so and /dev/null differ diff --git a/addons/godot-jolt/linux/godot-jolt_linux-x86.so b/addons/godot-jolt/linux/godot-jolt_linux-x86.so deleted file mode 100644 index 2dbe955..0000000 Binary files a/addons/godot-jolt/linux/godot-jolt_linux-x86.so and /dev/null differ diff --git a/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so b/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so deleted file mode 100644 index ddb9e19..0000000 Binary files a/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so and /dev/null differ diff --git a/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist b/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist deleted file mode 100644 index 1bc858e..0000000 --- a/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist +++ /dev/null @@ -1,36 +0,0 @@ - - - - - CFBundleInfoDictionaryVersion - 6.0 - CFBundleDevelopmentRegion - en - CFBundleExecutable - godot-jolt_macos - CFBundleName - Godot Jolt - CFBundleDisplayName - Godot Jolt - CFBundleIdentifier - org.godot-jolt.godot-jolt - NSHumanReadableCopyright - Copyright (c) Mikael Hermansson and Godot Jolt contributors. - CFBundleVersion - 0.16.0 - CFBundleShortVersionString - 0.16.0 - CFBundlePackageType - FMWK - CFBundleSupportedPlatforms - - MacOSX - - CSResourcesFileMapped - - DTPlatformName - macosx - LSMinimumSystemVersion - 10.12 - - diff --git a/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources b/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources deleted file mode 100644 index 27410ac..0000000 --- a/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,128 +0,0 @@ - - - - - files - - Resources/Info.plist - - PLFiiedGCgBUVIdXAwIQZP3TzhU= - - - files2 - - Resources/Info.plist - - hash2 - - oUfCierc8a2c8bsFW1mu5lCv8dOCnLWbP/Ju8VP12gk= - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ - - nested - - weight - 10 - - ^.* - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^Resources/ - - weight - 20 - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos b/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos deleted file mode 100644 index 68c070e..0000000 Binary files a/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos and /dev/null differ diff --git a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist b/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist deleted file mode 100644 index ca26348..0000000 --- a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist +++ /dev/null @@ -1,36 +0,0 @@ - - - - - CFBundleInfoDictionaryVersion - 6.0 - CFBundleDevelopmentRegion - en - CFBundleExecutable - godot-jolt_macos_editor - CFBundleName - Godot Jolt - CFBundleDisplayName - Godot Jolt - CFBundleIdentifier - org.godot-jolt.godot-jolt - NSHumanReadableCopyright - Copyright (c) Mikael Hermansson and Godot Jolt contributors. - CFBundleVersion - 0.16.0 - CFBundleShortVersionString - 0.16.0 - CFBundlePackageType - FMWK - CFBundleSupportedPlatforms - - MacOSX - - CSResourcesFileMapped - - DTPlatformName - macosx - LSMinimumSystemVersion - 10.12 - - diff --git a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources b/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources deleted file mode 100644 index 928bc54..0000000 --- a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,128 +0,0 @@ - - - - - files - - Resources/Info.plist - - xxh2HxAbRksJ2pI8miqkcxNuMMY= - - - files2 - - Resources/Info.plist - - hash2 - - HuUpHzJ0lNjh0+cAW+2ottBM6fM0woHZDn2U83XmNzY= - - - - rules - - ^Resources/ - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ - - nested - - weight - 10 - - ^.* - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^Resources/ - - weight - 20 - - ^Resources/.*\.lproj/ - - optional - - weight - 1000 - - ^Resources/.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Resources/Base\.lproj/ - - weight - 1010 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor b/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor deleted file mode 100644 index 6052e13..0000000 Binary files a/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor and /dev/null differ diff --git a/addons/godot-jolt/windows/godot-jolt_windows-x64.dll b/addons/godot-jolt/windows/godot-jolt_windows-x64.dll deleted file mode 100644 index 105698a..0000000 Binary files a/addons/godot-jolt/windows/godot-jolt_windows-x64.dll and /dev/null differ diff --git a/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll b/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll deleted file mode 100644 index 70531f0..0000000 Binary files a/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll and /dev/null differ diff --git a/addons/godot-jolt/windows/godot-jolt_windows-x86.dll b/addons/godot-jolt/windows/godot-jolt_windows-x86.dll deleted file mode 100644 index 4698c25..0000000 Binary files a/addons/godot-jolt/windows/godot-jolt_windows-x86.dll and /dev/null differ diff --git a/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll b/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll deleted file mode 100644 index b25e8dd..0000000 Binary files a/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll and /dev/null differ diff --git a/addons/godot_mcp/mcp_client.gd b/addons/godot_mcp/mcp_client.gd new file mode 100644 index 0000000..c49e777 --- /dev/null +++ b/addons/godot_mcp/mcp_client.gd @@ -0,0 +1,156 @@ +@tool +extends Node +class_name MCPClient +## WebSocket client for communication with the MCP server. +## Handles connection, reconnection, and message routing. + +signal connected +signal disconnected +signal tool_requested(request_id: String, tool_name: String, args: Dictionary) + +const DEFAULT_URL := "ws://127.0.0.1:6505" +const RECONNECT_DELAY := 3.0 +const MAX_RECONNECT_DELAY := 30.0 +const MAX_PACKETS_PER_FRAME := 32 + +var socket: WebSocketPeer = WebSocketPeer.new() +var server_url: String = DEFAULT_URL +var _is_connected := false +var _reconnect_timer: Timer +var _current_reconnect_delay := RECONNECT_DELAY +var _should_reconnect := true +var _project_path: String +var _initialized := false + +func _ready() -> void: + _project_path = ProjectSettings.globalize_path("res://") + + # Create reconnect timer + _reconnect_timer = Timer.new() + _reconnect_timer.one_shot = true + _reconnect_timer.timeout.connect(_on_reconnect_timer) + add_child(_reconnect_timer) + _initialized = true + +func _process(_delta: float) -> void: + if not _initialized: + return + if socket.get_ready_state() == WebSocketPeer.STATE_CLOSED: + if _is_connected: + _handle_disconnect() + return + + socket.poll() + + match socket.get_ready_state(): + WebSocketPeer.STATE_OPEN: + if not _is_connected: + _handle_connect() + var packets_processed := 0 + while socket.get_available_packet_count() > 0 and packets_processed < MAX_PACKETS_PER_FRAME: + _handle_message(socket.get_packet().get_string_from_utf8()) + packets_processed += 1 + + WebSocketPeer.STATE_CLOSING: + pass # Wait for close + + WebSocketPeer.STATE_CLOSED: + if _is_connected: + _handle_disconnect() + +func connect_to_server(url: String = DEFAULT_URL) -> void: + server_url = url + _should_reconnect = true + _current_reconnect_delay = RECONNECT_DELAY + _attempt_connection() + +func disconnect_from_server() -> void: + _should_reconnect = false + if _reconnect_timer: + _reconnect_timer.stop() + if socket.get_ready_state() == WebSocketPeer.STATE_OPEN: + socket.close() + _is_connected = false + +func _attempt_connection() -> void: + if socket.get_ready_state() != WebSocketPeer.STATE_CLOSED: + socket.close() + + print("[MCP] Connecting to ", server_url, "...") + var err := socket.connect_to_url(server_url) + if err != OK: + push_error("[MCP] Failed to connect: ", err) + _schedule_reconnect() + +func _handle_connect() -> void: + _is_connected = true + _current_reconnect_delay = RECONNECT_DELAY # Reset backoff + print("[MCP] Connected to server") + + # Send godot_ready message with project info + _send_message({ + &"type": &"godot_ready", + &"project_path": _project_path, + }) + + connected.emit() + +func _handle_disconnect() -> void: + _is_connected = false + print("[MCP] Disconnected from server") + disconnected.emit() + + if _should_reconnect: + _schedule_reconnect() + +func _schedule_reconnect() -> void: + if not _reconnect_timer: + return + print("[MCP] Reconnecting in ", _current_reconnect_delay, " seconds...") + _reconnect_timer.start(_current_reconnect_delay) + # Exponential backoff + _current_reconnect_delay = min(_current_reconnect_delay * 2, MAX_RECONNECT_DELAY) + +func _on_reconnect_timer() -> void: + _attempt_connection() + +func _handle_message(json_string: String) -> void: + var message = JSON.parse_string(json_string) + if message == null: + push_error("[MCP] Failed to parse message: ", json_string) + return + + var msg_type: String = message.get(&"type", "") + match msg_type: + "ping": + _send_message({&"type": &"pong"}) + "tool_invoke": + var request_id: String = message.get(&"id", "") + var tool_name: String = message.get(&"tool", "") + var args: Dictionary = message.get(&"args", {}) + print("[MCP] Tool request: ", tool_name, " (", request_id, ")") + tool_requested.emit(request_id, tool_name, args) + _: + print("[MCP] Unknown message type: ", msg_type) + +func send_tool_result(request_id: String, success: bool, result = null, error: String = "") -> void: + var response := { + &"type": &"tool_result", + &"id": request_id, + &"success": success, + } + + if success: + response[&"result"] = result + else: + response[&"error"] = error + + _send_message(response) + print("[MCP] Sent result for ", request_id, " (success=", success, ")") + +func _send_message(message: Dictionary) -> void: + if socket.get_ready_state() == WebSocketPeer.STATE_OPEN: + socket.send_text(JSON.stringify(message)) + +func is_connected_to_server() -> bool: + return _is_connected diff --git a/addons/godot_mcp/mcp_client.gd.uid b/addons/godot_mcp/mcp_client.gd.uid new file mode 100644 index 0000000..1658999 --- /dev/null +++ b/addons/godot_mcp/mcp_client.gd.uid @@ -0,0 +1 @@ +uid://baiaiot8klmbb diff --git a/addons/godot_mcp/plugin.cfg b/addons/godot_mcp/plugin.cfg new file mode 100644 index 0000000..ad34cba --- /dev/null +++ b/addons/godot_mcp/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="Godot MCP" +description="MCP server integration for AI assistants. Connects to the godot-mcp-server via WebSocket." +author="Godot MCP" +version="0.2.6" +script="plugin.gd" diff --git a/addons/godot_mcp/plugin.gd b/addons/godot_mcp/plugin.gd new file mode 100644 index 0000000..139713f --- /dev/null +++ b/addons/godot_mcp/plugin.gd @@ -0,0 +1,89 @@ +@tool +extends EditorPlugin +## Godot MCP Plugin +## Connects to the godot-mcp-server via WebSocket and executes tools. + +const MCPClientScript = preload("res://addons/godot_mcp/mcp_client.gd") +const ToolExecutorScript = preload("res://addons/godot_mcp/tool_executor.gd") + +var _mcp_client: Node # MCPClient +var _tool_executor: Node # ToolExecutor +var _status_label: Label + +func _enter_tree() -> void: + print("[Godot MCP] Plugin loading...") + + # Create MCP client + _mcp_client = MCPClientScript.new() + _mcp_client.name = "MCPClient" + add_child(_mcp_client) + + # Create tool executor + _tool_executor = ToolExecutorScript.new() + _tool_executor.name = "ToolExecutor" + add_child(_tool_executor) # _ready() runs here, creating child tools + _tool_executor.set_editor_plugin(self) # Now _visualizer_tools exists + + # Connect signals + _mcp_client.connected.connect(_on_connected) + _mcp_client.disconnected.connect(_on_disconnected) + _mcp_client.tool_requested.connect(_on_tool_requested) + + # Add status indicator to editor + _setup_status_indicator() + + # Start connection + _mcp_client.connect_to_server() + + print("[Godot MCP] Plugin loaded - connecting to MCP server...") + +func _exit_tree() -> void: + print("[Godot MCP] Plugin unloading...") + + if _mcp_client: + _mcp_client.disconnect_from_server() + _mcp_client.queue_free() + + if _tool_executor: + _tool_executor.queue_free() + + if _status_label: + remove_control_from_container(EditorPlugin.CONTAINER_TOOLBAR, _status_label) + _status_label.queue_free() + + print("[Godot MCP] Plugin unloaded") + +func _setup_status_indicator() -> void: + """Add a small status label to the editor toolbar.""" + _status_label = Label.new() + _status_label.text = "MCP: Connecting..." + _status_label.add_theme_color_override("font_color", Color.YELLOW) + _status_label.add_theme_font_size_override("font_size", 12) + add_control_to_container(EditorPlugin.CONTAINER_TOOLBAR, _status_label) + +func _on_connected() -> void: + print("[Godot MCP] Connected to MCP server") + if _status_label: + _status_label.text = "MCP: Connected" + _status_label.add_theme_color_override("font_color", Color.GREEN) + +func _on_disconnected() -> void: + print("[Godot MCP] Disconnected from MCP server") + if _status_label: + _status_label.text = "MCP: Disconnected" + _status_label.add_theme_color_override("font_color", Color.RED) + +func _on_tool_requested(request_id: String, tool_name: String, args: Dictionary) -> void: + """Handle incoming tool request from MCP server.""" + print("[Godot MCP] Executing tool: ", tool_name) + + # Execute the tool + var result: Dictionary = _tool_executor.execute_tool(tool_name, args) + + var success: bool = result.get(&"ok", false) + if success: + result.erase(&"ok") + _mcp_client.send_tool_result(request_id, true, result) + else: + var error: String = result.get(&"error", "Unknown error") + _mcp_client.send_tool_result(request_id, false, null, error) diff --git a/addons/godot_mcp/plugin.gd.uid b/addons/godot_mcp/plugin.gd.uid new file mode 100644 index 0000000..64f4ec2 --- /dev/null +++ b/addons/godot_mcp/plugin.gd.uid @@ -0,0 +1 @@ +uid://delieuoth6q2q diff --git a/addons/godot_mcp/tool_executor.gd b/addons/godot_mcp/tool_executor.gd new file mode 100644 index 0000000..115e688 --- /dev/null +++ b/addons/godot_mcp/tool_executor.gd @@ -0,0 +1,144 @@ +@tool +extends Node +class_name ToolExecutor +## Routes tool invocations to the appropriate handler. + +var _editor_plugin: EditorPlugin = null + +var _file_tools: Node +var _scene_tools: Node +var _script_tools: Node +var _project_tools: Node +var _asset_tools: Node +var _visualizer_tools: Node + +# Tool name → [handler_node, method_name] +var _tool_map: Dictionary = {} + +var _initialized := false + +func _init_tools() -> void: + """Initialize all tool handlers. Called from set_editor_plugin.""" + if _initialized: + return + _initialized = true + + _file_tools = preload("res://addons/godot_mcp/tools/file_tools.gd").new() + _file_tools.name = "FileTools" + add_child(_file_tools) + + _scene_tools = preload("res://addons/godot_mcp/tools/scene_tools.gd").new() + _scene_tools.name = "SceneTools" + add_child(_scene_tools) + + _script_tools = preload("res://addons/godot_mcp/tools/script_tools.gd").new() + _script_tools.name = "ScriptTools" + add_child(_script_tools) + + _project_tools = preload("res://addons/godot_mcp/tools/project_tools.gd").new() + _project_tools.name = "ProjectTools" + add_child(_project_tools) + + _asset_tools = preload("res://addons/godot_mcp/tools/asset_tools.gd").new() + _asset_tools.name = "AssetTools" + add_child(_asset_tools) + + _visualizer_tools = preload("res://addons/godot_mcp/tools/visualizer_tools.gd").new() + _visualizer_tools.name = "VisualizerTools" + add_child(_visualizer_tools) + + # Build tool routing map + _tool_map = { + &"list_dir": [_file_tools, &"list_dir"], + &"read_file": [_file_tools, &"read_file"], + &"search_project": [_file_tools, &"search_project"], + &"create_script": [_file_tools, &"create_script"], + + &"create_scene": [_scene_tools, &"create_scene"], + &"read_scene": [_scene_tools, &"read_scene"], + &"add_node": [_scene_tools, &"add_node"], + &"remove_node": [_scene_tools, &"remove_node"], + &"modify_node_property": [_scene_tools, &"modify_node_property"], + &"rename_node": [_scene_tools, &"rename_node"], + &"move_node": [_scene_tools, &"move_node"], + &"attach_script": [_scene_tools, &"attach_script"], + &"detach_script": [_scene_tools, &"detach_script"], + &"set_collision_shape": [_scene_tools, &"set_collision_shape"], + &"set_sprite_texture": [_scene_tools, &"set_sprite_texture"], + &"get_scene_hierarchy": [_scene_tools, &"get_scene_hierarchy"], + &"get_scene_node_properties": [_scene_tools, &"get_scene_node_properties"], + &"set_scene_node_property": [_scene_tools, &"set_scene_node_property"], + + &"edit_script": [_script_tools, &"edit_script"], + &"validate_script": [_script_tools, &"validate_script"], + &"list_scripts": [_script_tools, &"list_scripts"], + &"create_folder": [_script_tools, &"create_folder"], + &"delete_file": [_script_tools, &"delete_file"], + &"rename_file": [_script_tools, &"rename_file"], + + &"get_project_settings": [_project_tools, &"get_project_settings"], + &"list_settings": [_project_tools, &"list_settings"], + &"update_project_settings": [_project_tools, &"update_project_settings"], + &"get_input_map": [_project_tools, &"get_input_map"], + &"configure_input_map": [_project_tools, &"configure_input_map"], + &"get_collision_layers": [_project_tools, &"get_collision_layers"], + &"setup_autoload": [_project_tools, &"setup_autoload"], + &"get_node_properties": [_project_tools, &"get_node_properties"], + &"get_console_log": [_project_tools, &"get_console_log"], + &"get_errors": [_project_tools, &"get_errors"], + &"clear_console_log": [_project_tools, &"clear_console_log"], + &"open_in_godot": [_project_tools, &"open_in_godot"], + &"scene_tree_dump": [_project_tools, &"scene_tree_dump"], + + &"generate_2d_asset": [_asset_tools, &"generate_2d_asset"], + + &"map_project": [_visualizer_tools, &"map_project"], + &"map_scenes": [_visualizer_tools, &"map_scenes"], + } + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + + # Initialize tools first (must be done synchronously) + _init_tools() + + # Pass editor plugin reference to all tool handlers + if _file_tools: _file_tools.set_editor_plugin(plugin) + if _scene_tools: _scene_tools.set_editor_plugin(plugin) + if _script_tools: _script_tools.set_editor_plugin(plugin) + if _project_tools: _project_tools.set_editor_plugin(plugin) + if _asset_tools: _asset_tools.set_editor_plugin(plugin) + if _visualizer_tools: + _visualizer_tools.set_editor_plugin(plugin) + # Pass scene_tools reference for visualizer internal scene functions + _visualizer_tools.set_scene_tools_ref(_scene_tools) + +func execute_tool(tool_name: String, args: Dictionary) -> Dictionary: + """Execute a tool by name with the given arguments.""" + + # Handle internal visualizer commands (not exposed as MCP tools) + if tool_name.begins_with("visualizer._internal_"): + var method: String = tool_name.replace("visualizer.", "") + if _visualizer_tools and _visualizer_tools.has_method(method): + return _visualizer_tools.call(method, args) + else: + return {&"ok": false, &"error": "Internal method not found: " + method} + + if not _tool_map.has(tool_name): + return { + &"ok": false, + &"error": "Unknown tool: %s. Available: %s" % [tool_name, ", ".join(_tool_map.keys())] + } + + var handler: Array = _tool_map[tool_name] + var node: Node = handler[0] + var method: StringName = handler[1] + + if not node.has_method(method): + return {&"ok": false, &"error": "Tool handler not found: %s.%s" % [node.name, method]} + + return node.call(method, args) + +func get_available_tools() -> Array: + """Return list of available tool names.""" + return _tool_map.keys() diff --git a/addons/godot_mcp/tool_executor.gd.uid b/addons/godot_mcp/tool_executor.gd.uid new file mode 100644 index 0000000..6b11c49 --- /dev/null +++ b/addons/godot_mcp/tool_executor.gd.uid @@ -0,0 +1 @@ +uid://dtvhy5tkh2hjv diff --git a/addons/godot_mcp/tools/asset_tools.gd b/addons/godot_mcp/tools/asset_tools.gd new file mode 100644 index 0000000..60fc31b --- /dev/null +++ b/addons/godot_mcp/tools/asset_tools.gd @@ -0,0 +1,135 @@ +@tool +extends Node +class_name AssetTools +## Asset generation tools for MCP. +## Handles: generate_2d_asset, search_comfyui_nodes, +## inspect_runninghub_workflow, customize_and_run_workflow + +var _editor_plugin: EditorPlugin = null + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +func _refresh_filesystem() -> void: + if _editor_plugin: + _editor_plugin.get_editor_interface().get_resource_filesystem().scan() + +# ============================================================================= +# generate_2d_asset - Generate PNG from SVG code +# ============================================================================= +func generate_2d_asset(args: Dictionary) -> Dictionary: + var svg_code: String = str(args.get(&"svg_code", "")) + var filename: String = str(args.get(&"filename", "")) + var save_path: String = str(args.get(&"save_path", "res://assets/generated/")) + + if svg_code.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'svg_code'"} + if filename.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'filename'"} + + # Ensure .png extension + if not filename.ends_with(".png"): + filename += ".png" + + # Ensure save path + if not save_path.begins_with("res://"): + save_path = "res://" + save_path + if not save_path.ends_with("/"): + save_path += "/" + + # Create directory if needed + if not DirAccess.dir_exists_absolute(save_path): + DirAccess.make_dir_recursive_absolute(save_path) + + # Parse SVG dimensions from the svg_code + var width := 64 + var height := 64 + + # Simple regex-free parsing for width/height + var w_start := svg_code.find("width=\"") + if w_start != -1: + var w_val := svg_code.substr(w_start + 7) + var w_end := w_val.find("\"") + if w_end != -1: + width = int(w_val.substr(0, w_end)) + + var h_start := svg_code.find("height=\"") + if h_start != -1: + var h_val := svg_code.substr(h_start + 8) + var h_end := h_val.find("\"") + if h_end != -1: + height = int(h_val.substr(0, h_end)) + + # Create Image from SVG + var image := Image.new() + + # Save SVG to temp file, then load as image + var temp_svg_path := "user://temp_asset.svg" + var svg_file := FileAccess.open(temp_svg_path, FileAccess.WRITE) + if not svg_file: + return {&"ok": false, &"error": "Failed to create temp SVG file"} + svg_file.store_string(svg_code) + svg_file.close() + + # Load SVG as image + var err := image.load(temp_svg_path) + if err != OK: + # Fallback: try loading SVG data directly + image = Image.create(width, height, false, Image.FORMAT_RGBA8) + image.fill(Color(1, 0, 1, 1)) # Magenta fallback = something went wrong + print("[MCP] Warning: Could not render SVG, created fallback image") + + # Clean up temp file + DirAccess.remove_absolute(temp_svg_path) + + # Save as PNG + var full_path := save_path + filename + var global_path := ProjectSettings.globalize_path(full_path) + err = image.save_png(global_path) + if err != OK: + return {&"ok": false, &"error": "Failed to save PNG: " + str(err)} + + _refresh_filesystem() + + return { + &"ok": true, + &"resource_path": full_path, + &"dimensions": {&"width": width, &"height": height}, + &"message": "Generated %s (%dx%d)" % [full_path, width, height], + } + +# ============================================================================= +# search_comfyui_nodes - Stub (requires external database) +# ============================================================================= +func search_comfyui_nodes(args: Dictionary) -> Dictionary: + # This tool requires the ComfyUI node database which was bundled with the old plugin + # For now, return a message indicating it needs setup + return { + &"ok": true, + &"results": [], + &"count": 0, + &"message": "ComfyUI node search requires the node database. This feature will be available in a future update.", + } + +# ============================================================================= +# inspect_runninghub_workflow - Stub (requires API key) +# ============================================================================= +func inspect_runninghub_workflow(args: Dictionary) -> Dictionary: + var workflow_id: String = str(args.get(&"workflow_id", "")) + if workflow_id.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'workflow_id'"} + + return { + &"ok": true, + &"workflow_id": workflow_id, + &"message": "RunningHub workflow inspection requires API configuration. This feature will be available in a future update.", + } + +# ============================================================================= +# customize_and_run_workflow - Stub (requires API key) +# ============================================================================= +func customize_and_run_workflow(args: Dictionary) -> Dictionary: + return { + &"ok": true, + &"message": "RunningHub workflow execution requires API configuration. This feature will be available in a future update.", + } diff --git a/addons/godot_mcp/tools/asset_tools.gd.uid b/addons/godot_mcp/tools/asset_tools.gd.uid new file mode 100644 index 0000000..8d6b305 --- /dev/null +++ b/addons/godot_mcp/tools/asset_tools.gd.uid @@ -0,0 +1 @@ +uid://br1exnegw426j diff --git a/addons/godot_mcp/tools/file_tools.gd b/addons/godot_mcp/tools/file_tools.gd new file mode 100644 index 0000000..e1cd720 --- /dev/null +++ b/addons/godot_mcp/tools/file_tools.gd @@ -0,0 +1,292 @@ +@tool +extends Node +class_name FileTools +## File operation tools for MCP. +## Handles: list_dir, read_file, search_project, create_script + +const DEFAULT_MAX_BYTES := 200_000 +const DEFAULT_MAX_RESULTS := 200 +const MAX_TRAVERSAL_DEPTH := 20 +const _SKIP_EXTENSIONS: Dictionary = { + ".import": true, ".png": true, ".jpg": true, ".jpeg": true, + ".webp": true, ".svg": true, ".ogg": true, ".wav": true, + ".mp3": true, ".escn": true, ".glb": true, ".gltf": true, + ".uid": true, +} + +var _editor_plugin: EditorPlugin = null + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +# ============================================================================= +# list_dir - List files and folders in a directory +# ============================================================================= +func list_dir(args: Dictionary) -> Dictionary: + var root: String = str(args.get(&"root", "res://")) + var include_hidden: bool = bool(args.get(&"include_hidden", false)) + + if not root.begins_with("res://"): + root = "res://" + root + + var dir := DirAccess.open(root) + if dir == null: + return {&"ok": false, &"error": "Cannot open directory: " + root} + + var files: PackedStringArray = [] + var folders: PackedStringArray = [] + + dir.list_dir_begin() + var name := dir.get_next() + while name != "": + # Skip hidden files unless requested + if not include_hidden and name.begins_with("."): + name = dir.get_next() + continue + + # Skip .uid files + if name.ends_with(".uid"): + name = dir.get_next() + continue + + if dir.current_is_dir(): + folders.append(name) + else: + files.append(name) + + name = dir.get_next() + dir.list_dir_end() + + # Sort alphabetically + files.sort() + folders.sort() + + return { + &"ok": true, + &"path": root, + &"files": files, + &"folders": folders, + &"total": files.size() + folders.size() + } + +# ============================================================================= +# read_file - Read contents of a file +# ============================================================================= +func read_file(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + var start_line: int = int(args.get(&"start_line", 1)) + var end_line: int = int(args.get(&"end_line", 0)) + var max_bytes: int = int(args.get(&"max_bytes", DEFAULT_MAX_BYTES)) + + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path' parameter"} + + if not path.begins_with("res://"): + path = "res://" + path + + if not FileAccess.file_exists(path): + return {&"ok": false, &"error": "File not found: " + path} + + var file := FileAccess.open(path, FileAccess.READ) + if file == null: + return {&"ok": false, &"error": "Cannot open file: " + path} + + var content: String + var line_count: int = 0 + + # If no line range specified, read up to max_bytes + if end_line <= 0 and start_line <= 1: + var size := mini(max_bytes, file.get_length()) + content = file.get_buffer(size).get_string_from_utf8() + # Count lines + line_count = content.count("\n") + 1 + else: + # Read specific line range + var lines: Array = [] + var current_line := 0 + var total_bytes := 0 + + while not file.eof_reached(): + var line := file.get_line() + current_line += 1 + + if current_line < start_line: + continue + if end_line > 0 and current_line > end_line: + break + + lines.append(line) + total_bytes += line.length() + 1 # +1 for newline + + if total_bytes > max_bytes: + break + + content = "\n".join(lines) + line_count = lines.size() + + file.close() + + return { + &"ok": true, + &"path": path, + &"content": content, + &"line_count": line_count, + &"range": [start_line, end_line] if end_line > 0 else null + } + +# ============================================================================= +# search_project - Search for text in project files +# ============================================================================= +func search_project(args: Dictionary) -> Dictionary: + var query: String = str(args.get(&"query", "")) + var glob_filter: String = str(args.get(&"glob", "")) + var max_results: int = int(args.get(&"max_results", DEFAULT_MAX_RESULTS)) + var case_sensitive: bool = bool(args.get(&"case_sensitive", false)) + + if query.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'query' parameter"} + + var search_query := query if case_sensitive else query.to_lower() + var files := _collect_files("res://", glob_filter) + var matches: Array = [] + + for file_path: String in files: + if matches.size() >= max_results: + break + + var file := FileAccess.open(file_path, FileAccess.READ) + if file == null: + continue + + var content := file.get_as_text() + file.close() + + var search_content := content if case_sensitive else content.to_lower() + if search_content.find(search_query) == -1: + continue + + var lines := content.split("\n") + for i: int in range(lines.size()): + var line := lines[i] + var search_line := line if case_sensitive else line.to_lower() + if search_line.find(search_query) != -1: + matches.append({ + &"file": file_path, + &"line": i + 1, + &"content": line.strip_edges() + }) + if matches.size() >= max_results: + break + + return { + &"ok": true, + &"query": query, + &"matches": matches, + &"total_matches": matches.size(), + &"truncated": matches.size() >= max_results + } + +func _collect_files(path: String, glob_filter: String) -> PackedStringArray: + """Recursively collect all searchable files.""" + var result: PackedStringArray = [] + _collect_files_recursive(path, glob_filter, result) + return result + +func _collect_files_recursive(path: String, glob_filter: String, out: PackedStringArray, depth: int = 0) -> void: + if depth >= MAX_TRAVERSAL_DEPTH: + return + + var dir := DirAccess.open(path) + if dir == null: + return + + dir.list_dir_begin() + var name := dir.get_next() + while name != "": + # Skip hidden + if name.begins_with("."): + name = dir.get_next() + continue + + var full_path := path.path_join(name) + + if dir.current_is_dir(): + _collect_files_recursive(full_path, glob_filter, out, depth + 1) + else: + var ext := "." + name.get_extension().to_lower() + if not _SKIP_EXTENSIONS.has(ext): + if glob_filter.is_empty() or _matches_glob(full_path, glob_filter): + out.append(full_path) + + name = dir.get_next() + dir.list_dir_end() + +func _matches_glob(path: String, pattern: String) -> bool: + """Simple glob matching: *.gd, **/*.tscn, etc.""" + # Handle **/*.ext pattern + if pattern.begins_with("**/"): + var ext := pattern.substr(3) # Remove **/ + return path.ends_with(ext.replace("*", "")) + + # Handle *.ext pattern + if pattern.begins_with("*."): + return path.ends_with(pattern.substr(1)) + + # Simple contains check + return path.find(pattern) != -1 + +# ============================================================================= +# create_script - Create a new GDScript file +# ============================================================================= +func create_script(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + var content: String = str(args.get(&"content", "")) + + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path' parameter"} + + if not path.begins_with("res://"): + path = "res://" + path + + # Add .gd extension if missing + if not "." in path.get_file(): + path += ".gd" + + # Check if file already exists + if FileAccess.file_exists(path): + return {&"ok": false, &"error": "File already exists: " + path} + + # Ensure parent directory exists + var dir_path := path.get_base_dir() + if not DirAccess.dir_exists_absolute(dir_path): + var err := DirAccess.make_dir_recursive_absolute(dir_path) + if err != OK: + return {&"ok": false, &"error": "Could not create directory: " + dir_path} + + # Write file + var file := FileAccess.open(path, FileAccess.WRITE) + if file == null: + return {&"ok": false, &"error": "Could not create file: " + path} + + file.store_string(content) + file.close() + + # Refresh filesystem so Godot sees the new file + _refresh_filesystem() + + return { + &"ok": true, + &"path": path, + &"size_bytes": content.length(), + &"message": "Script created successfully" + } + +func _refresh_filesystem() -> void: + """Tell Godot to rescan the filesystem.""" + if _editor_plugin != null: + _editor_plugin.get_editor_interface().get_resource_filesystem().scan() + elif Engine.is_editor_hint(): + # Fallback if no plugin reference + var editor_interface = Engine.get_singleton("EditorInterface") + if editor_interface: + editor_interface.get_resource_filesystem().scan() diff --git a/addons/godot_mcp/tools/file_tools.gd.uid b/addons/godot_mcp/tools/file_tools.gd.uid new file mode 100644 index 0000000..dea097a --- /dev/null +++ b/addons/godot_mcp/tools/file_tools.gd.uid @@ -0,0 +1 @@ +uid://fqjgqcv4hnjn diff --git a/addons/godot_mcp/tools/project_tools.gd b/addons/godot_mcp/tools/project_tools.gd new file mode 100644 index 0000000..27067bb --- /dev/null +++ b/addons/godot_mcp/tools/project_tools.gd @@ -0,0 +1,744 @@ +@tool +extends Node +class_name ProjectTools +## Project configuration and debug tools for MCP. +## Handles: get_project_settings, list_settings, update_project_settings, +## get_input_map, configure_input_map, get_collision_layers, +## get_node_properties, setup_autoload, +## get_console_log, get_errors, clear_console_log, +## open_in_godot, scene_tree_dump + +var _editor_plugin: EditorPlugin = null + +# Cached reference to the editor Output panel's RichTextLabel. +var _editor_log_rtl: RichTextLabel = null + +# Character offset for clear_console_log. +var _clear_char_offset: int = 0 + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +# ============================================================================= +# get_project_settings +# ============================================================================= +func get_project_settings(args: Dictionary) -> Dictionary: + var include_render: bool = bool(args.get(&"include_render", true)) + var include_physics: bool = bool(args.get(&"include_physics", true)) + + var out: Dictionary = {} + out[&"main_scene"] = str(ProjectSettings.get_setting("application/run/main_scene", "")) + + # Window size + var width = ProjectSettings.get_setting("display/window/size/viewport_width", null) + var height = ProjectSettings.get_setting("display/window/size/viewport_height", null) + if width != null: out[&"window_width"] = int(width) + if height != null: out[&"window_height"] = int(height) + + # Stretch + var stretch_mode = ProjectSettings.get_setting("display/window/stretch/mode", null) + var stretch_aspect = ProjectSettings.get_setting("display/window/stretch/aspect", null) + if stretch_mode != null: out[&"stretch_mode"] = str(stretch_mode) + if stretch_aspect != null: out[&"stretch_aspect"] = str(stretch_aspect) + + if include_physics: + var pps = ProjectSettings.get_setting("physics/common/physics_ticks_per_second", null) + if pps != null: out[&"physics_ticks_per_second"] = int(pps) + + if include_render: + var method = ProjectSettings.get_setting("rendering/renderer/rendering_method", null) + if method != null: out[&"rendering_method"] = str(method) + var vsync = ProjectSettings.get_setting("display/window/vsync/vsync_mode", null) + if vsync != null: out[&"vsync"] = str(vsync) + + return {&"ok": true, &"settings": out} + +# ============================================================================= +# list_settings +# ============================================================================= +func list_settings(args: Dictionary) -> Dictionary: + var category: String = str(args.get(&"category", "")) + + var properties: Array = ProjectSettings.get_property_list() + + if category.strip_edges().is_empty(): + var categories: Dictionary = {} + for prop: Dictionary in properties: + var prop_name: String = prop[&"name"] + if prop_name.is_empty() or prop_name.begins_with("_"): + continue + var slash_idx := prop_name.find("/") + if slash_idx == -1: + continue + var cat: String = prop_name.substr(0, slash_idx) + categories[cat] = categories.get(cat, 0) + 1 + return {&"ok": true, &"categories": categories, + &"hint": "Pass a category name to list its settings with current values and valid options."} + + var settings: Array = [] + for prop: Dictionary in properties: + var prop_name: String = prop[&"name"] + if not prop_name.begins_with(category + "/"): + continue + if prop_name.begins_with("_"): + continue + + var info: Dictionary = { + &"path": prop_name, + &"type": _type_to_string(prop[&"type"]), + &"value": _serialize_value(ProjectSettings.get_setting(prop_name)) + } + + var hint: int = prop.get(&"hint", 0) + var hint_string: String = str(prop.get(&"hint_string", "")) + if hint == PROPERTY_HINT_ENUM and not hint_string.is_empty(): + info[&"enum_values"] = hint_string + elif hint == PROPERTY_HINT_RANGE and not hint_string.is_empty(): + info[&"range"] = hint_string + + settings.append(info) + + return {&"ok": true, &"category": category, &"settings": settings, &"count": settings.size()} + +# ============================================================================= +# update_project_settings +# ============================================================================= +func update_project_settings(args: Dictionary) -> Dictionary: + var settings = args.get(&"settings", {}) + if not settings is Dictionary or settings.is_empty(): + return {&"ok": false, &"error": "Missing or empty 'settings' dictionary. Use list_settings to discover available setting paths."} + + var updated: Array = [] + for key: String in settings: + ProjectSettings.set_setting(key, settings[key]) + updated.append(key) + + _save_and_refresh_settings() + return {&"ok": true, &"updated": updated, &"count": updated.size()} + +# ============================================================================= +# get_input_map +# ============================================================================= +func get_input_map(args: Dictionary) -> Dictionary: + var include_deadzones: bool = bool(args.get(&"include_deadzones", true)) + var actions: Array = InputMap.get_actions() + actions.sort() + + var result: Dictionary = {} + for action: StringName in actions: + var events: Array = [] + for e: InputEvent in InputMap.action_get_events(action): + var item := {&"type": e.get_class()} + + if e is InputEventKey: + var keycode = e.physical_keycode if e.physical_keycode != 0 else e.keycode + item[&"keycode"] = keycode + item[&"key_label"] = OS.get_keycode_string(keycode) if keycode != 0 else "" + elif e is InputEventMouseButton: + item[&"button_index"] = e.button_index + elif e is InputEventJoypadButton: + item[&"button_index"] = e.button_index + elif e is InputEventJoypadMotion: + item[&"axis"] = e.axis + if include_deadzones: + item[&"axis_value"] = e.axis_value + + events.append(item) + result[action] = events + + return {&"ok": true, &"actions": result, &"count": result.size()} + +# ============================================================================= +# configure_input_map +# ============================================================================= +func configure_input_map(args: Dictionary) -> Dictionary: + var action: String = str(args.get(&"action", "")) + var operation: String = str(args.get(&"operation", "")) + + if action.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'action' name"} + if operation.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'operation'. Use: add, remove, set"} + + match operation: + "add": + return _input_map_add(action, args) + "remove": + return _input_map_remove(action) + "set": + return _input_map_set(action, args) + _: + return {&"ok": false, &"error": "Unknown operation: %s. Use: add, remove, set" % operation} + +func _input_map_add(action: String, args: Dictionary) -> Dictionary: + var deadzone: float = float(args.get(&"deadzone", 0.5)) + var events_data: Array = args.get(&"events", []) + + var created := false + if not InputMap.has_action(action): + InputMap.add_action(action, deadzone) + created = true + + var added_events: Array = [] + var event_errors: Array = [] + for event_desc in events_data: + if not event_desc is Dictionary: + continue + var result: Dictionary = _create_input_event(event_desc) + if result.has(&"error"): + event_errors.append(result[&"error"]) + continue + InputMap.action_add_event(action, result[&"event"]) + added_events.append(_describe_event(result[&"event"])) + + _persist_action(action) + _save_and_refresh_settings() + _try_refresh_input_map_ui() + + var msg := "Action '%s' %s" % [action, "created" if created else "updated"] + if added_events.size() > 0: + msg += " with %d event(s)" % added_events.size() + + var out: Dictionary = {&"ok": true, &"message": msg, &"events_added": added_events} + if event_errors.size() > 0: + out[&"event_errors"] = event_errors + return out + +func _input_map_remove(action: String) -> Dictionary: + if not InputMap.has_action(action): + return {&"ok": false, &"error": "Action not found: " + action} + + InputMap.erase_action(action) + if ProjectSettings.has_setting("input/" + action): + ProjectSettings.clear("input/" + action) + _save_and_refresh_settings() + _try_refresh_input_map_ui() + + return {&"ok": true, &"message": "Removed action: " + action} + +func _input_map_set(action: String, args: Dictionary) -> Dictionary: + var deadzone: float = float(args.get(&"deadzone", 0.5)) + var events_data: Array = args.get(&"events", []) + + if InputMap.has_action(action): + InputMap.erase_action(action) + + InputMap.add_action(action, deadzone) + + var added_events: Array = [] + var event_errors: Array = [] + for event_desc in events_data: + if not event_desc is Dictionary: + continue + var result: Dictionary = _create_input_event(event_desc) + if result.has(&"error"): + event_errors.append(result[&"error"]) + continue + InputMap.action_add_event(action, result[&"event"]) + added_events.append(_describe_event(result[&"event"])) + + _persist_action(action) + _save_and_refresh_settings() + _try_refresh_input_map_ui() + + var out: Dictionary = {&"ok": true, &"message": "Set action '%s' with %d event(s)" % [action, added_events.size()], &"events": added_events} + if event_errors.size() > 0: + out[&"event_errors"] = event_errors + return out + +func _create_input_event(desc: Dictionary) -> Dictionary: + var type: String = str(desc.get(&"type", "")) + + match type: + "key": + var key_string: String = str(desc.get(&"key", "")) + if key_string.is_empty(): + return {&"error": "Missing 'key' for key event"} + var event := InputEventKey.new() + var keycode := OS.find_keycode_from_string(key_string) + if keycode == 0: + return {&"error": "Unknown key: " + key_string} + event.physical_keycode = keycode + return {&"event": event} + + "mouse_button": + var button_index: int = int(desc.get(&"button_index", 0)) + if button_index <= 0: + return {&"error": "Invalid 'button_index' for mouse_button (must be >= 1: 1=left, 2=right, 3=middle)"} + var event := InputEventMouseButton.new() + event.button_index = button_index + return {&"event": event} + + "joypad_button": + var button_index: int = int(desc.get(&"button_index", -1)) + if button_index < 0: + return {&"error": "Missing or invalid 'button_index' for joypad_button"} + var event := InputEventJoypadButton.new() + event.button_index = button_index + return {&"event": event} + + "joypad_motion": + var axis: int = int(desc.get(&"axis", -1)) + if axis < 0: + return {&"error": "Missing or invalid 'axis' for joypad_motion"} + var axis_value: float = float(desc.get(&"axis_value", 0.0)) + var event := InputEventJoypadMotion.new() + event.axis = axis + event.axis_value = axis_value + return {&"event": event} + + _: + return {&"error": "Unknown event type: '%s'. Use: key, mouse_button, joypad_button, joypad_motion" % type} + +func _save_and_refresh_settings() -> void: + ProjectSettings.save() + ProjectSettings.notify_property_list_changed() + +func _try_refresh_input_map_ui() -> void: + if not _editor_plugin: + return + var base := _editor_plugin.get_editor_interface().get_base_control() + var pse := _find_node_by_class(base, "ProjectSettingsEditor") + if not pse: + return + if pse.has_method("_update_action_map_editor"): + pse.call("_update_action_map_editor") + else: + push_warning("[Godot MCP] Input map changed and saved, but the editor UI could not refresh. Reopen Project Settings to see changes.") + +func _persist_action(action: String) -> void: + if not InputMap.has_action(action): + return + var deadzone: float = InputMap.action_get_deadzone(action) + var events: Array = InputMap.action_get_events(action) + ProjectSettings.set_setting("input/" + action, { + "deadzone": deadzone, + "events": events + }) + +func _describe_event(event: InputEvent) -> String: + if event is InputEventKey: + var keycode: int = event.physical_keycode if event.physical_keycode != 0 else event.keycode + var label: String = OS.get_keycode_string(keycode) if keycode != 0 else "Unknown" + return "Key: " + label + elif event is InputEventMouseButton: + return "Mouse Button: " + str(event.button_index) + elif event is InputEventJoypadButton: + return "Joypad Button: " + str(event.button_index) + elif event is InputEventJoypadMotion: + return "Joypad Axis: %d (%.1f)" % [event.axis, event.axis_value] + return event.get_class() + +# ============================================================================= +# get_collision_layers +# ============================================================================= +func get_collision_layers(_args: Dictionary) -> Dictionary: + var layers_2d: Array = _collect_layers("layer_names/2d_physics") + var layers_3d: Array = _collect_layers("layer_names/3d_physics") + return {&"ok": true, &"layers_2d": layers_2d, &"layers_3d": layers_3d} + +func _collect_layers(prefix: String) -> Array: + var out: Array = [] + for i: int in range(1, 33): + var key := "%s/layer_%d" % [prefix, i] + var layer_name := str(ProjectSettings.get_setting(key, "")) + if not layer_name.is_empty(): + out.append({&"index": i, &"name": layer_name}) + return out + +# ============================================================================= +# get_node_properties +# ============================================================================= +const _SKIP_PROPS: Dictionary = { + "script": true, "owner": true, "scene_file_path": true, "unique_name_in_owner": true, +} + +const ENUM_HINTS = { + "anchors_preset": "0:Top Left,1:Top Right,2:Bottom Right,3:Bottom Left,4:Center Left,5:Center Top,6:Center Right,7:Center Bottom,8:Center,9:Left Wide,10:Top Wide,11:Right Wide,12:Bottom Wide,13:VCenter Wide,14:HCenter Wide,15:Full Rect", + "grow_horizontal": "0:Begin,1:End,2:Both", + "grow_vertical": "0:Begin,1:End,2:Both", + "horizontal_alignment": "0:Left,1:Center,2:Right,3:Fill", + "vertical_alignment": "0:Top,1:Center,2:Bottom,3:Fill" +} + +func get_node_properties(args: Dictionary) -> Dictionary: + var node_type: String = str(args.get(&"node_type", "")) + if node_type.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'node_type'"} + if not ClassDB.class_exists(node_type): + return {&"ok": false, &"error": "Unknown node type: " + node_type} + + var temp = ClassDB.instantiate(node_type) + if not temp: + return {&"ok": false, &"error": "Cannot instantiate: " + node_type} + + var properties: Array = [] + for prop: Dictionary in temp.get_property_list(): + var prop_name: String = prop[&"name"] + if prop_name.begins_with("_"): + continue + if _SKIP_PROPS.has(prop_name): + continue + if not (prop.get(&"usage", 0) & PROPERTY_USAGE_EDITOR): + continue + + var info := { + &"name": prop_name, + &"type": _type_to_string(prop[&"type"]), + &"default": _serialize_value(temp.get(prop_name)) + } + + # Enum hints + if prop.has(&"hint") and prop[&"hint"] == PROPERTY_HINT_ENUM and prop.has(&"hint_string"): + info[&"enum_values"] = prop[&"hint_string"] + if prop_name in ENUM_HINTS: + info[&"enum_values"] = ENUM_HINTS[prop_name] + + properties.append(info) + + temp.queue_free() + + # Inheritance chain + var chain: Array = [] + var cls: String = node_type + while cls != "": + chain.append(cls) + cls = ClassDB.get_parent_class(cls) + + return {&"ok": true, &"node_type": node_type, &"inheritance_chain": chain, + &"property_count": properties.size(), &"properties": properties} + +func _type_to_string(type_id: int) -> String: + match type_id: + TYPE_BOOL: return "bool" + TYPE_INT: return "int" + TYPE_FLOAT: return "float" + TYPE_STRING: return "String" + TYPE_VECTOR2: return "Vector2" + TYPE_VECTOR3: return "Vector3" + TYPE_VECTOR2I: return "Vector2i" + TYPE_VECTOR3I: return "Vector3i" + TYPE_COLOR: return "Color" + TYPE_RECT2: return "Rect2" + TYPE_OBJECT: return "Resource" + TYPE_ARRAY: return "Array" + TYPE_DICTIONARY: return "Dictionary" + _: return "Variant" + +func _serialize_value(value: Variant) -> Variant: + match typeof(value): + TYPE_VECTOR2: return {&"type": &"Vector2", &"x": value.x, &"y": value.y} + TYPE_VECTOR3: return {&"type": &"Vector3", &"x": value.x, &"y": value.y, &"z": value.z} + TYPE_COLOR: return {&"type": &"Color", &"r": value.r, &"g": value.g, &"b": value.b, &"a": value.a} + TYPE_VECTOR2I: return {&"type": &"Vector2i", &"x": value.x, &"y": value.y} + TYPE_VECTOR3I: return {&"type": &"Vector3i", &"x": value.x, &"y": value.y, &"z": value.z} + TYPE_OBJECT: + if value and value is Resource and value.resource_path: + return {&"type": &"Resource", &"path": value.resource_path} + return null + _: return value + +# ============================================================================= +# setup_autoload +# ============================================================================= +func setup_autoload(args: Dictionary) -> Dictionary: + var operation: String = str(args.get(&"operation", "")) + + if operation.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'operation'. Use: add, remove, list"} + + match operation: + "list": + return _autoload_list() + "add": + return _autoload_add(args) + "remove": + return _autoload_remove(args) + _: + return {&"ok": false, &"error": "Unknown operation: %s. Use: add, remove, list" % operation} + +func _autoload_list() -> Dictionary: + var autoloads: Array = [] + for prop: Dictionary in ProjectSettings.get_property_list(): + var prop_name: String = prop[&"name"] + if not prop_name.begins_with("autoload/"): + continue + var al_name: String = prop_name.substr(9) + var al_path: String = str(ProjectSettings.get_setting(prop_name, "")) + var enabled: bool = al_path.begins_with("*") + if enabled: + al_path = al_path.substr(1) + autoloads.append({&"name": al_name, &"path": al_path, &"enabled": enabled}) + return {&"ok": true, &"autoloads": autoloads, &"count": autoloads.size()} + +func _autoload_add(args: Dictionary) -> Dictionary: + var autoload_name: String = str(args.get(&"name", "")) + var path: String = str(args.get(&"path", "")) + + if autoload_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'name'"} + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path' for add operation"} + + if not path.begins_with("res://"): + path = "res://" + path + if not FileAccess.file_exists(path): + return {&"ok": false, &"error": "File not found: " + path} + + var setting_key := "autoload/" + autoload_name + ProjectSettings.set_setting(setting_key, "*" + path) + _save_and_refresh_settings() + + return {&"ok": true, &"message": "Registered autoload: %s -> %s" % [autoload_name, path]} + +func _autoload_remove(args: Dictionary) -> Dictionary: + var autoload_name: String = str(args.get(&"name", "")) + + if autoload_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'name'"} + + var setting_key := "autoload/" + autoload_name + if not ProjectSettings.has_setting(setting_key): + return {&"ok": false, &"error": "Autoload not found: " + autoload_name} + + ProjectSettings.clear(setting_key) + _save_and_refresh_settings() + + return {&"ok": true, &"message": "Unregistered autoload: " + autoload_name} + +# ============================================================================= +# Editor Output Panel access +# ============================================================================= +# We read directly from the editor's internal EditorLog RichTextLabel. +# This is real-time and matches exactly what the user sees in the Output panel. +# ============================================================================= + +func _get_editor_log_rtl() -> RichTextLabel: + """Find (and cache) the RichTextLabel inside the editor's Output panel.""" + if is_instance_valid(_editor_log_rtl): + return _editor_log_rtl + if not _editor_plugin: + return null + var base := _editor_plugin.get_editor_interface().get_base_control() + var editor_log := _find_node_by_class(base, "EditorLog") + if editor_log: + _editor_log_rtl = _find_child_rtl(editor_log) + return _editor_log_rtl + +func _find_node_by_class(root: Node, cls_name: String) -> Node: + if root.get_class() == cls_name: + return root + for child: Node in root.get_children(): + var found := _find_node_by_class(child, cls_name) + if found: + return found + return null + +func _find_child_rtl(node: Node) -> RichTextLabel: + for child: Node in node.get_children(): + if child is RichTextLabel: + return child + var found := _find_child_rtl(child) + if found: + return found + return null + +func _read_output_panel_lines() -> Array: + """Return all non-empty lines from the editor Output panel (after clear offset).""" + var rtl := _get_editor_log_rtl() + if not rtl: + return [] + var full_text: String = rtl.get_parsed_text() + if _clear_char_offset > 0 and _clear_char_offset < full_text.length(): + full_text = full_text.substr(_clear_char_offset) + elif _clear_char_offset >= full_text.length(): + return [] + var lines: Array = [] + for line: String in full_text.split("\n"): + if not line.strip_edges().is_empty(): + lines.append(line) + return lines + +# ============================================================================= +# get_console_log +# ============================================================================= +func get_console_log(args: Dictionary) -> Dictionary: + var max_lines: int = int(args.get(&"max_lines", 50)) + + var rtl := _get_editor_log_rtl() + if not rtl: + return {&"ok": false, + &"error": "Could not access the Godot editor Output panel. Make sure the MCP plugin is enabled and running inside the Godot editor."} + + var all_lines := _read_output_panel_lines() + var start := maxi(0, all_lines.size() - max_lines) + var lines := all_lines.slice(start) + return {&"ok": true, &"lines": lines, &"line_count": lines.size(), + &"content": "\n".join(lines)} + +# ============================================================================= +# get_errors +# ============================================================================= +const _ERROR_PREFIXES: PackedStringArray = [ + "ERROR:", "SCRIPT ERROR:", "USER ERROR:", + "WARNING:", "USER WARNING:", "SCRIPT WARNING:", + "Parse Error:", "Invalid", +] + +func get_errors(args: Dictionary) -> Dictionary: + var max_errors: int = int(args.get(&"max_errors", 50)) + var include_warnings: bool = bool(args.get(&"include_warnings", true)) + + var rtl := _get_editor_log_rtl() + if not rtl: + return {&"ok": false, + &"error": "Could not access the Godot editor Output panel. Make sure the MCP plugin is enabled and running inside the Godot editor."} + + var all_lines := _read_output_panel_lines() + + var all_errors: Array = [] + for i: int in range(all_lines.size()): + var line: String = all_lines[i].strip_edges() + if line.is_empty(): + continue + + var is_error := false + var severity := "error" + for prefix: String in _ERROR_PREFIXES: + if line.begins_with(prefix): + is_error = true + if "WARNING" in prefix: + severity = "warning" + break + + # Godot continuation lines: "at: res://path/file.gd:123" + if not is_error and line.begins_with("at: ") and "res://" in line: + if all_errors.size() > 0: + var prev: Dictionary = all_errors[all_errors.size() - 1] + var loc := _extract_file_line(line) + if not loc.is_empty(): + prev[&"file"] = loc.get(&"file", "") + prev[&"line"] = loc.get(&"line", 0) + continue + + if not is_error: + continue + if severity == "warning" and not include_warnings: + continue + + var error_info := {&"message": line, &"severity": severity} + var loc := _extract_file_line(line) + if not loc.is_empty(): + error_info[&"file"] = loc.get(&"file", "") + error_info[&"line"] = loc.get(&"line", 0) + all_errors.append(error_info) + + # Return the most recent errors + var start := maxi(0, all_errors.size() - max_errors) + var errors := all_errors.slice(start) + return {&"ok": true, &"errors": errors, &"error_count": errors.size(), + &"summary": "%d error(s) found" % errors.size()} + +func _extract_file_line(text: String) -> Dictionary: + var idx := text.find("res://") + if idx == -1: + return {} + var rest := text.substr(idx) + var colon_idx := rest.find(":", 6) + if colon_idx == -1: + return {&"file": rest.strip_edges()} + var file_path := rest.substr(0, colon_idx) + var after_colon := rest.substr(colon_idx + 1) + var line_str := "" + for c in after_colon: + if c.is_valid_int(): + line_str += c + else: + break + if not line_str.is_empty(): + return {&"file": file_path, &"line": int(line_str)} + return {&"file": file_path} + +# ============================================================================= +# clear_console_log +# ============================================================================= +func clear_console_log(_args: Dictionary) -> Dictionary: + var rtl := _get_editor_log_rtl() + if not rtl: + return {&"ok": false, + &"error": "Could not access the Godot editor Output panel. Make sure the MCP plugin is enabled and running inside the Godot editor."} + + # Actually clear the editor Output panel + rtl.clear() + _clear_char_offset = 0 + return {&"ok": true, + &"message": "Console log cleared."} + +# ============================================================================= +# open_in_godot +# ============================================================================= +func open_in_godot(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + var line: int = int(args.get(&"line", 0)) + + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path'"} + + if not path.begins_with("res://"): + path = "res://" + path + + if not _editor_plugin: + return {&"ok": false, &"error": "Editor plugin not available"} + + var ei = _editor_plugin.get_editor_interface() + + if path.ends_with(".gd") or path.ends_with(".shader"): + var script = load(path) + if script: + ei.edit_resource(script) + if line > 0: + ei.get_script_editor().goto_line(line - 1) + else: + return {&"ok": false, &"error": "Could not load: " + path} + elif path.ends_with(".tscn") or path.ends_with(".scn"): + ei.open_scene_from_path(path) + else: + var res = load(path) + if res: + ei.edit_resource(res) + + return {&"ok": true, &"message": "Opened %s%s" % [path, " at line %d" % line if line > 0 else ""]} + +# ============================================================================= +# scene_tree_dump +# ============================================================================= +func scene_tree_dump(_args: Dictionary) -> Dictionary: + if not _editor_plugin: + return {&"ok": false, &"error": "Editor plugin not available"} + + var ei = _editor_plugin.get_editor_interface() + var edited_scene = ei.get_edited_scene_root() + + if not edited_scene: + return {&"ok": true, &"tree": "(no scene open)", &"message": "No scene is currently open in the editor"} + + var tree_text := _dump_node(edited_scene, 0) + + return {&"ok": true, &"tree": tree_text, &"scene_path": edited_scene.scene_file_path} + +func _dump_node(node: Node, depth: int) -> String: + var indent := " ".repeat(depth) + var line := "%s%s (%s)" % [indent, node.name, node.get_class()] + + var script = node.get_script() + if script: + line += " [%s]" % script.resource_path.get_file() + + var children := node.get_children() + if children.is_empty(): + return line + + var parts: PackedStringArray = [line] + for child: Node in children: + parts.append(_dump_node(child, depth + 1)) + return "\n".join(parts) diff --git a/addons/godot_mcp/tools/project_tools.gd.uid b/addons/godot_mcp/tools/project_tools.gd.uid new file mode 100644 index 0000000..b42f2ab --- /dev/null +++ b/addons/godot_mcp/tools/project_tools.gd.uid @@ -0,0 +1 @@ +uid://dig5fifwwanvf diff --git a/addons/godot_mcp/tools/scene_tools.gd b/addons/godot_mcp/tools/scene_tools.gd new file mode 100644 index 0000000..c074182 --- /dev/null +++ b/addons/godot_mcp/tools/scene_tools.gd @@ -0,0 +1,979 @@ +@tool +extends Node +class_name SceneTools +## Scene operation tools for MCP. +## Handles: create_scene, read_scene, add_node, remove_node, modify_node_property, +## rename_node, move_node, attach_script, detach_script, set_collision_shape, +## set_sprite_texture + +const _SKIP_PROPS: Dictionary[String, bool] = { + "script": true, "owner": true, "scene_file_path": true, + "unique_name_in_owner": true, "editor_description": true, +} + +var _editor_plugin: EditorPlugin = null + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +# ============================================================================= +# Shared helpers +# ============================================================================= +func _refresh_and_reload(scene_path: String) -> void: + _refresh_filesystem() + _reload_scene_in_editor(scene_path) + +func _refresh_filesystem() -> void: + if _editor_plugin: + _editor_plugin.get_editor_interface().get_resource_filesystem().scan() + +func _reload_scene_in_editor(scene_path: String) -> void: + if not _editor_plugin: + return + var ei = _editor_plugin.get_editor_interface() + var edited = ei.get_edited_scene_root() + if edited and edited.scene_file_path == scene_path: + ei.reload_scene_from_path(scene_path) + +func _ensure_res_path(path: String) -> String: + if not path.begins_with("res://"): + return "res://" + path + return path + +func _load_scene(scene_path: String) -> Array: + """Returns [scene_root, error_dict]. If error_dict is not empty, scene_root is null.""" + if not FileAccess.file_exists(scene_path): + return [null, {&"ok": false, &"error": "Scene does not exist: " + scene_path}] + + var packed = load(scene_path) as PackedScene + if not packed: + return [null, {&"ok": false, &"error": "Failed to load scene: " + scene_path}] + + var root = packed.instantiate() + if not root: + return [null, {&"ok": false, &"error": "Failed to instantiate scene"}] + + return [root, {}] + +func _save_scene(scene_root: Node, scene_path: String) -> Dictionary: + """Pack and save a scene. Returns error dict or empty on success.""" + var packed = PackedScene.new() + var pack_result = packed.pack(scene_root) + if pack_result != OK: + scene_root.queue_free() + return {&"ok": false, &"error": "Failed to pack scene: " + str(pack_result)} + + var save_result = ResourceSaver.save(packed, scene_path) + scene_root.queue_free() + + if save_result != OK: + return {&"ok": false, &"error": "Failed to save scene: " + str(save_result)} + + _refresh_and_reload(scene_path) + return {} + +func _find_node(scene_root: Node, node_path: String) -> Node: + if node_path == "." or node_path.is_empty(): + return scene_root + return scene_root.get_node_or_null(node_path) + +func _parse_value(value: Variant) -> Variant: + """Convert dictionary-encoded types to Godot types.""" + if value is Dictionary: + var t: String = value.get(&"type", "") + match t: + "Vector2": return Vector2(value.get(&"x", 0), value.get(&"y", 0)) + "Vector3": return Vector3(value.get(&"x", 0), value.get(&"y", 0), value.get(&"z", 0)) + "Color": return Color(value.get(&"r", 1), value.get(&"g", 1), value.get(&"b", 1), value.get(&"a", 1)) + "Vector2i": return Vector2i(value.get(&"x", 0), value.get(&"y", 0)) + "Vector3i": return Vector3i(value.get(&"x", 0), value.get(&"y", 0), value.get(&"z", 0)) + "Rect2": return Rect2(value.get(&"x", 0), value.get(&"y", 0), value.get(&"width", 0), value.get(&"height", 0)) + return value + +func _set_node_properties(node: Node, properties: Dictionary) -> void: + for prop_name: String in properties: + var prop_value = _parse_value(properties[prop_name]) + node.set(prop_name, prop_value) + +func _serialize_value(value: Variant) -> Variant: + match typeof(value): + TYPE_VECTOR2: return {&"type": &"Vector2", &"x": value.x, &"y": value.y} + TYPE_VECTOR3: return {&"type": &"Vector3", &"x": value.x, &"y": value.y, &"z": value.z} + TYPE_COLOR: return {&"type": &"Color", &"r": value.r, &"g": value.g, &"b": value.b, &"a": value.a} + TYPE_VECTOR2I: return {&"type": &"Vector2i", &"x": value.x, &"y": value.y} + TYPE_VECTOR3I: return {&"type": &"Vector3i", &"x": value.x, &"y": value.y, &"z": value.z} + TYPE_RECT2: return {&"type": &"Rect2", &"x": value.position.x, &"y": value.position.y, &"width": value.size.x, &"height": value.size.y} + TYPE_OBJECT: + if value and value is Resource and value.resource_path: + return {&"type": &"Resource", &"path": value.resource_path} + return null + _: return value + +# ============================================================================= +# create_scene +# ============================================================================= +func create_scene(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var root_node_name: String = str(args.get(&"root_node_name", "Node")) + var root_node_type: String = str(args.get(&"root_node_type", "")) + var nodes: Array = args.get(&"nodes", []) + var attach_script_path: String = str(args.get(&"attach_script", "")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path' parameter"} + if root_node_type.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'root_node_type' parameter"} + if not scene_path.ends_with(".tscn"): + scene_path += ".tscn" + if FileAccess.file_exists(scene_path): + return {&"ok": false, &"error": "Scene already exists: " + scene_path} + if not ClassDB.class_exists(root_node_type): + return {&"ok": false, &"error": "Invalid root node type: " + root_node_type} + + # Ensure parent directory + var dir_path := scene_path.get_base_dir() + if not DirAccess.dir_exists_absolute(dir_path): + DirAccess.make_dir_recursive_absolute(dir_path) + + var root: Node = ClassDB.instantiate(root_node_type) as Node + if not root: + return {&"ok": false, &"error": "Failed to create root node of type: " + root_node_type} + root.name = root_node_name + + if not attach_script_path.is_empty(): + var script_res = load(attach_script_path) + if script_res: + root.set_script(script_res) + + var node_count := 0 + for node_data: Variant in nodes: + if typeof(node_data) == TYPE_DICTIONARY: + var created = _create_node_recursive(node_data, root, root) + if created: + node_count += _count_nodes(created) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"path": scene_path, &"root_type": root_node_type, &"child_count": node_count, + &"message": "Scene created at " + scene_path} + +func _create_node_recursive(data: Dictionary, parent: Node, owner: Node) -> Node: + var n_name: String = str(data.get(&"name", "Node")) + var n_type: String = str(data.get(&"type", "Node")) + var n_script: String = str(data.get(&"script", "")) + var props: Dictionary = data.get(&"properties", {}) + var children: Array = data.get(&"children", []) + + if not ClassDB.class_exists(n_type): + return null + var node: Node = ClassDB.instantiate(n_type) as Node + if not node: + return null + + node.name = n_name + _set_node_properties(node, props) + + if not n_script.is_empty(): + var s = load(n_script) + if s: + node.set_script(s) + + parent.add_child(node) + node.owner = owner + + for child_data: Variant in children: + if typeof(child_data) == TYPE_DICTIONARY: + _create_node_recursive(child_data, node, owner) + return node + +func _count_nodes(node: Node) -> int: + var count := 1 + for child: Node in node.get_children(): + count += _count_nodes(child) + return count + +# ============================================================================= +# read_scene +# ============================================================================= +func read_scene(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var include_properties: bool = args.get(&"include_properties", false) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path' parameter"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var structure = _build_node_structure(root, include_properties) + root.queue_free() + + return {&"ok": true, &"scene_path": scene_path, &"root": structure} + +func _build_node_structure(node: Node, include_props: bool, path: String = ".") -> Dictionary: + const PROPERTIES: PackedStringArray = ["position", "rotation", "scale", "size", "offset", "visible", + "modulate", "z_index", "text", "collision_layer", "collision_mask", "mass"] + var data := {&"name": str(node.name), &"type": node.get_class(), &"path": path, &"children": []} + var script = node.get_script() + if script: + data[&"script"] = script.resource_path + + if include_props: + var props := {} + for prop_name: String in PROPERTIES: + var val = node.get(prop_name) + if val != null: + props[prop_name] = _serialize_value(val) + if not props.is_empty(): + data[&"properties"] = props + + for child: Node in node.get_children(): + var child_path = child.name if path == "." else path + "/" + child.name + data[&"children"].append(_build_node_structure(child, include_props, child_path)) + return data + +# ============================================================================= +# add_node +# ============================================================================= +func add_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_name: String = str(args.get(&"node_name", "")) + var node_type: String = str(args.get(&"node_type", "Node")) + var parent_path: String = str(args.get(&"parent_path", ".")) + var properties: Dictionary = args.get(&"properties", {}) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'node_name'"} + if not ClassDB.class_exists(node_type): + return {&"ok": false, &"error": "Invalid node type: " + node_type} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var parent = _find_node(root, parent_path) + if not parent: + root.queue_free() + return {&"ok": false, &"error": "Parent node not found: " + parent_path} + + var new_node: Node = ClassDB.instantiate(node_type) as Node + if not new_node: + root.queue_free() + return {&"ok": false, &"error": "Failed to create node of type: " + node_type} + + new_node.name = node_name + _set_node_properties(new_node, properties) + parent.add_child(new_node) + new_node.owner = root + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"scene_path": scene_path, &"node_name": node_name, &"node_type": node_type, + &"message": "Added %s (%s) to scene" % [node_name, node_type]} + +# ============================================================================= +# remove_node +# ============================================================================= +func remove_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", "")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_path.strip_edges().is_empty() or node_path == ".": + return {&"ok": false, &"error": "Cannot remove root node"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = root.get_node_or_null(node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var n_name = target.name + var n_type = target.get_class() + target.get_parent().remove_child(target) + target.queue_free() + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"scene_path": scene_path, &"removed_node": node_path, + &"message": "Removed %s (%s)" % [n_name, n_type]} + +# ============================================================================= +# modify_node_property +# ============================================================================= +func modify_node_property(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + var property_name: String = str(args.get(&"property_name", "")) + var value = args.get(&"value") + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if property_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'property_name'"} + if value == null: + return {&"ok": false, &"error": "Missing 'value'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + # Check property exists + var prop_exists := false + for prop: Dictionary in target.get_property_list(): + if prop[&"name"] == property_name: + prop_exists = true + break + if not prop_exists: + var node_type = target.get_class() + root.queue_free() + return {&"ok": false, &"error": "Property '%s' not found on %s (%s). Use get_node_properties to discover available properties." % [property_name, node_path, node_type]} + + var parsed = _parse_value(value) + var old_value = target.get(property_name) + + # Validate resource type compatibility + if old_value is Resource and not (parsed is Resource): + root.queue_free() + return {&"ok": false, &"error": "Property '%s' expects a Resource. Use specialized tools (set_collision_shape, set_sprite_texture) instead." % property_name} + + target.set(property_name, parsed) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"scene_path": scene_path, &"node_path": node_path, + &"property_name": property_name, &"old_value": str(old_value), &"new_value": str(parsed), + &"message": "Set %s.%s = %s" % [node_path, property_name, str(parsed)]} + +# ============================================================================= +# rename_node +# ============================================================================= +func rename_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", "")) + var new_name: String = str(args.get(&"new_name", "")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'node_path'"} + if new_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'new_name'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var old_name = target.name + target.name = new_name + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"old_name": str(old_name), &"new_name": new_name, + &"message": "Renamed '%s' to '%s'" % [old_name, new_name]} + +# ============================================================================= +# move_node +# ============================================================================= +func move_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", "")) + var new_parent_path: String = str(args.get(&"new_parent_path", ".")) + var sibling_index: int = int(args.get(&"sibling_index", -1)) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_path.strip_edges().is_empty() or node_path == ".": + return {&"ok": false, &"error": "Cannot move root node"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = root.get_node_or_null(node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var new_parent = _find_node(root, new_parent_path) + if not new_parent: + root.queue_free() + return {&"ok": false, &"error": "New parent not found: " + new_parent_path} + + target.get_parent().remove_child(target) + new_parent.add_child(target) + target.owner = root + + if sibling_index >= 0: + new_parent.move_child(target, mini(sibling_index, new_parent.get_child_count() - 1)) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"message": "Moved '%s' to '%s'" % [node_path, new_parent_path]} + +# ============================================================================= +# duplicate_node +# ============================================================================= +func duplicate_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", "")) + var new_name: String = str(args.get(&"new_name", "")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_path.strip_edges().is_empty() or node_path == ".": + return {&"ok": false, &"error": "Cannot duplicate root node"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = root.get_node_or_null(node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var parent = target.get_parent() + if not parent: + root.queue_free() + return {&"ok": false, &"error": "Cannot duplicate - no parent"} + + var duplicate = target.duplicate() + + if new_name.is_empty(): + var base_name = target.name + var counter = 2 + new_name = base_name + str(counter) + while parent.has_node(NodePath(new_name)): + counter += 1 + new_name = base_name + str(counter) + + duplicate.name = new_name + parent.add_child(duplicate) + + _set_owner_recursive(duplicate, root) + + var original_index = target.get_index() + parent.move_child(duplicate, original_index + 1) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"new_name": new_name, + &"message": "Duplicated '%s' as '%s'" % [node_path, new_name]} + + +func _set_owner_recursive(node: Node, owner: Node) -> void: + node.owner = owner + for child: Node in node.get_children(): + _set_owner_recursive(child, owner) + + +# ============================================================================= +# reorder_node - simpler function just for changing sibling order +# ============================================================================= +func reorder_node(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", "")) + var new_index: int = int(args.get(&"new_index", -1)) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if node_path.strip_edges().is_empty() or node_path == ".": + return {&"ok": false, &"error": "Cannot reorder root node"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = root.get_node_or_null(node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var parent = target.get_parent() + if not parent: + root.queue_free() + return {&"ok": false, &"error": "Cannot reorder - no parent"} + + var old_index = target.get_index() + var max_index = parent.get_child_count() - 1 + new_index = clampi(new_index, 0, max_index) + + if old_index == new_index: + root.queue_free() + return {&"ok": true, &"message": "No change needed"} + + parent.move_child(target, new_index) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"old_index": old_index, &"new_index": new_index, + &"message": "Moved '%s' from index %d to %d" % [node_path, old_index, new_index]} + + +# ============================================================================= +# attach_script +# ============================================================================= +func attach_script(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + var script_path: String = str(args.get(&"script_path", "")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if script_path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'script_path'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var script_res = load(script_path) + if not script_res: + root.queue_free() + return {&"ok": false, &"error": "Failed to load script: " + script_path} + + target.set_script(script_res) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"message": "Attached %s to node '%s'" % [script_path, node_path]} + +# ============================================================================= +# detach_script +# ============================================================================= +func detach_script(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + target.set_script(null) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"message": "Detached script from node '%s'" % node_path} + +# ============================================================================= +# set_collision_shape +# ============================================================================= +func set_collision_shape(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + var shape_type: String = str(args.get(&"shape_type", "")) + var shape_params: Dictionary = args.get(&"shape_params", {}) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if shape_type.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'shape_type'"} + if not ClassDB.class_exists(shape_type): + return {&"ok": false, &"error": "Invalid shape type: " + shape_type} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var shape = ClassDB.instantiate(shape_type) + if not shape: + root.queue_free() + return {&"ok": false, &"error": "Failed to create shape: " + shape_type} + + if shape_params.has(&"radius"): + shape.set("radius", float(shape_params[&"radius"])) + if shape_params.has(&"height"): + shape.set("height", float(shape_params[&"height"])) + if shape_params.has(&"size"): + var size_data = shape_params[&"size"] + if typeof(size_data) == TYPE_DICTIONARY: + if size_data.has(&"z"): + shape.set("size", Vector3(size_data.get(&"x", 1), size_data.get(&"y", 1), size_data.get(&"z", 1))) + else: + shape.set("size", Vector2(size_data.get(&"x", 1), size_data.get(&"y", 1))) + + target.set("shape", shape) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"message": "Set %s on node '%s'" % [shape_type, node_path]} + +# ============================================================================= +# set_sprite_texture +# ============================================================================= +func set_sprite_texture(args: Dictionary) -> Dictionary: + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + var texture_type: String = str(args.get(&"texture_type", "")) + var texture_params: Dictionary = args.get(&"texture_params", {}) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if texture_type.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'texture_type'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var texture: Texture2D = null + + match texture_type: + "ImageTexture": + var tex_path: String = str(texture_params.get(&"path", "")) + if tex_path.is_empty(): + root.queue_free() + return {&"ok": false, &"error": "Missing 'path' in texture_params for ImageTexture"} + texture = load(tex_path) + if not texture: + root.queue_free() + return {&"ok": false, &"error": "Failed to load texture: " + tex_path} + + "PlaceholderTexture2D": + texture = PlaceholderTexture2D.new() + var size_data = texture_params.get(&"size", {&"x": 64, &"y": 64}) + if typeof(size_data) == TYPE_DICTIONARY: + texture.size = Vector2(size_data.get(&"x", 64), size_data.get(&"y", 64)) + + "GradientTexture2D": + texture = GradientTexture2D.new() + texture.width = int(texture_params.get(&"width", 64)) + texture.height = int(texture_params.get(&"height", 64)) + + "NoiseTexture2D": + texture = NoiseTexture2D.new() + texture.width = int(texture_params.get(&"width", 64)) + texture.height = int(texture_params.get(&"height", 64)) + + _: + root.queue_free() + return {&"ok": false, &"error": "Unknown texture type: " + texture_type} + + target.set("texture", texture) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return {&"ok": true, &"message": "Set %s texture on node '%s'" % [texture_type, node_path]} + +# ============================================================================= +# get_scene_hierarchy (for visualizer) +# ============================================================================= +func get_scene_hierarchy(args: Dictionary) -> Dictionary: + """Get the full scene hierarchy with node information for the visualizer.""" + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var hierarchy = _build_hierarchy_recursive(root, ".") + root.queue_free() + + return {&"ok": true, &"scene_path": scene_path, &"hierarchy": hierarchy} + +func _build_hierarchy_recursive(node: Node, path: String) -> Dictionary: + """Build node hierarchy with all info needed for visualizer.""" + var data := { + &"name": str(node.name), + &"type": node.get_class(), + &"path": path, + &"children": [], + &"child_count": node.get_child_count() + } + + var script = node.get_script() + if script: + data[&"script"] = script.resource_path + + var parent = node.get_parent() + if parent: + data[&"index"] = node.get_index() + + for i: int in range(node.get_child_count()): + var child = node.get_child(i) + var child_path = child.name if path == "." else path + "/" + child.name + data[&"children"].append(_build_hierarchy_recursive(child, child_path)) + + return data + +# ============================================================================= +# get_scene_node_properties (dynamic property fetching) +# ============================================================================= +func get_scene_node_properties(args: Dictionary) -> Dictionary: + """Get all properties of a specific node in a scene with their current values.""" + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var node_type = target.get_class() + var properties: Array = [] + var categories: Dictionary = {} + + for prop: Dictionary in target.get_property_list(): + var prop_name: String = prop[&"name"] + + if prop_name.begins_with("_"): + continue + if _SKIP_PROPS.has(prop_name): + continue + + var usage = prop.get(&"usage", 0) + if not (usage & PROPERTY_USAGE_EDITOR): + continue + + var current_value = target.get(prop_name) + + var prop_info := { + &"name": prop_name, + &"type": prop[&"type"], + &"type_name": _type_id_to_name(prop[&"type"]), + &"hint": prop.get(&"hint", 0), + &"hint_string": prop.get(&"hint_string", ""), + &"value": _serialize_value(current_value), + &"usage": usage + } + + var category = _get_property_category(target, prop_name) + prop_info[&"category"] = category + + if not categories.has(category): + categories[category] = [] + categories[category].append(prop_info) + properties.append(prop_info) + + var chain: Array = [] + var cls: String = node_type + while cls != "": + chain.append(cls) + cls = ClassDB.get_parent_class(cls) + + root.queue_free() + + return { + &"ok": true, + &"scene_path": scene_path, + &"node_path": node_path, + &"node_type": node_type, + &"node_name": target.name, + &"inheritance_chain": chain, + &"properties": properties, + &"categories": categories, + &"property_count": properties.size() + } + +func _type_id_to_name(type_id: int) -> String: + """Convert Godot type ID to human-readable name.""" + match type_id: + TYPE_NIL: return "null" + TYPE_BOOL: return "bool" + TYPE_INT: return "int" + TYPE_FLOAT: return "float" + TYPE_STRING: return "String" + TYPE_VECTOR2: return "Vector2" + TYPE_VECTOR2I: return "Vector2i" + TYPE_RECT2: return "Rect2" + TYPE_RECT2I: return "Rect2i" + TYPE_VECTOR3: return "Vector3" + TYPE_VECTOR3I: return "Vector3i" + TYPE_TRANSFORM2D: return "Transform2D" + TYPE_VECTOR4: return "Vector4" + TYPE_VECTOR4I: return "Vector4i" + TYPE_PLANE: return "Plane" + TYPE_QUATERNION: return "Quaternion" + TYPE_AABB: return "AABB" + TYPE_BASIS: return "Basis" + TYPE_TRANSFORM3D: return "Transform3D" + TYPE_PROJECTION: return "Projection" + TYPE_COLOR: return "Color" + TYPE_STRING_NAME: return "StringName" + TYPE_NODE_PATH: return "NodePath" + TYPE_RID: return "RID" + TYPE_OBJECT: return "Object" + TYPE_CALLABLE: return "Callable" + TYPE_SIGNAL: return "Signal" + TYPE_DICTIONARY: return "Dictionary" + TYPE_ARRAY: return "Array" + TYPE_PACKED_BYTE_ARRAY: return "PackedByteArray" + TYPE_PACKED_INT32_ARRAY: return "PackedInt32Array" + TYPE_PACKED_INT64_ARRAY: return "PackedInt64Array" + TYPE_PACKED_FLOAT32_ARRAY: return "PackedFloat32Array" + TYPE_PACKED_FLOAT64_ARRAY: return "PackedFloat64Array" + TYPE_PACKED_STRING_ARRAY: return "PackedStringArray" + TYPE_PACKED_VECTOR2_ARRAY: return "PackedVector2Array" + TYPE_PACKED_VECTOR3_ARRAY: return "PackedVector3Array" + TYPE_PACKED_COLOR_ARRAY: return "PackedColorArray" + _: return "Variant" + +func _get_property_category(node: Node, prop_name: String) -> String: + """Determine which class in the hierarchy defines this property.""" + var cls: String = node.get_class() + while cls != "": + var class_props = ClassDB.class_get_property_list(cls, true) + for prop: Dictionary in class_props: + if prop[&"name"] == prop_name: + return cls + cls = ClassDB.get_parent_class(cls) + return node.get_class() + +# ============================================================================= +# set_scene_node_property (for visualizer inline editing) +# ============================================================================= +func set_scene_node_property(args: Dictionary) -> Dictionary: + """Set a property on a node in a scene (supports complex types).""" + var scene_path: String = _ensure_res_path(str(args.get(&"scene_path", ""))) + var node_path: String = str(args.get(&"node_path", ".")) + var property_name: String = str(args.get(&"property_name", "")) + var value = args.get(&"value") + var value_type: int = int(args.get(&"value_type", -1)) + + if scene_path.strip_edges() == "res://": + return {&"ok": false, &"error": "Missing 'scene_path'"} + if property_name.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'property_name'"} + + var result := _load_scene(scene_path) + if not result[1].is_empty(): + return result[1] + + var root: Node = result[0] + var target = _find_node(root, node_path) + if not target: + root.queue_free() + return {&"ok": false, &"error": "Node not found: " + node_path} + + var parsed_value = _parse_typed_value(value, value_type) + var old_value = target.get(property_name) + + target.set(property_name, parsed_value) + + var err := _save_scene(root, scene_path) + if not err.is_empty(): + return err + + return { + &"ok": true, + &"scene_path": scene_path, + &"node_path": node_path, + &"property_name": property_name, + &"old_value": _serialize_value(old_value), + &"new_value": _serialize_value(parsed_value), + &"message": "Set %s.%s" % [node_path, property_name] + } + +func _parse_typed_value(value, type_hint: int): + """Parse a value based on its type hint.""" + if type_hint == -1: + return _parse_value(value) + + if typeof(value) == TYPE_DICTIONARY: + if value.has(&"type"): + return _parse_value(value) + + match type_hint: + TYPE_VECTOR2: + return Vector2(value.get(&"x", 0), value.get(&"y", 0)) + TYPE_VECTOR2I: + return Vector2i(value.get(&"x", 0), value.get(&"y", 0)) + TYPE_VECTOR3: + return Vector3(value.get(&"x", 0), value.get(&"y", 0), value.get(&"z", 0)) + TYPE_VECTOR3I: + return Vector3i(value.get(&"x", 0), value.get(&"y", 0), value.get(&"z", 0)) + TYPE_COLOR: + return Color(value.get(&"r", 1), value.get(&"g", 1), value.get(&"b", 1), value.get(&"a", 1)) + TYPE_RECT2: + return Rect2(value.get(&"x", 0), value.get(&"y", 0), value.get(&"width", 0), value.get(&"height", 0)) + + return value diff --git a/addons/godot_mcp/tools/scene_tools.gd.uid b/addons/godot_mcp/tools/scene_tools.gd.uid new file mode 100644 index 0000000..e5e761f --- /dev/null +++ b/addons/godot_mcp/tools/scene_tools.gd.uid @@ -0,0 +1 @@ +uid://dbcix6lo0tanv diff --git a/addons/godot_mcp/tools/script_tools.gd b/addons/godot_mcp/tools/script_tools.gd new file mode 100644 index 0000000..7af9eae --- /dev/null +++ b/addons/godot_mcp/tools/script_tools.gd @@ -0,0 +1,333 @@ +@tool +extends Node +class_name ScriptTools +## Script and file management tools for MCP. +## Handles: edit_script, validate_script, list_scripts, +## create_folder, delete_file, rename_file + +var _editor_plugin: EditorPlugin = null + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +func _refresh_filesystem() -> void: + if _editor_plugin: + _editor_plugin.get_editor_interface().get_resource_filesystem().scan() + +func _ensure_res_path(path: String) -> String: + if not path.begins_with("res://"): + return "res://" + path + return path + +# ============================================================================= +# edit_script - Apply a small surgical code edit to a GDScript file +# ============================================================================= +func edit_script(args: Dictionary) -> Dictionary: + var edit: Dictionary = args.get(&"edit", {}) + if edit.is_empty(): + return {&"ok": false, &"error": "Missing 'edit' payload"} + + var path: String = str(edit.get(&"file", "")) + if path.is_empty(): + return {&"ok": false, &"error": "Missing 'file' in edit"} + + path = _ensure_res_path(path) + + if not FileAccess.file_exists(path): + return {&"ok": false, &"error": "File not found: " + path} + + var spec_type: String = str(edit.get(&"type", "snippet_replace")) + if spec_type != "snippet_replace": + return {&"ok": false, &"error": "Only 'snippet_replace' type is supported"} + + var old_snippet: String = str(edit.get(&"old_snippet", "")) + var new_snippet: String = str(edit.get(&"new_snippet", "")) + var context_before: String = str(edit.get(&"context_before", "")) + var context_after: String = str(edit.get(&"context_after", "")) + + if old_snippet.is_empty(): + return {&"ok": false, &"error": "Missing 'old_snippet' in edit"} + + # Read current file content + var file := FileAccess.open(path, FileAccess.READ) + if not file: + return {&"ok": false, &"error": "Cannot read file: " + path} + var content := file.get_as_text() + file.close() + + # Find and replace the snippet + var search_text := old_snippet + var pos := content.find(search_text) + + # If not found directly, try with context + if pos == -1 and not context_before.is_empty(): + var ctx_pos := content.find(context_before) + if ctx_pos != -1: + var after_ctx := ctx_pos + context_before.length() + var remaining := content.substr(after_ctx) + var snippet_pos := remaining.find(old_snippet) + if snippet_pos != -1: + pos = after_ctx + snippet_pos + + if pos == -1: + return {&"ok": false, &"error": "Could not find old_snippet in file. Make sure old_snippet matches the file content exactly."} + + # Check for multiple occurrences + var second_pos := content.find(search_text, pos + 1) + if second_pos != -1 and context_before.is_empty() and context_after.is_empty(): + return {&"ok": false, &"error": "old_snippet appears multiple times. Add context_before or context_after for disambiguation."} + + # Apply the replacement + var original_content := content + var new_content := content.substr(0, pos) + new_snippet + content.substr(pos + old_snippet.length()) + + # Write back + file = FileAccess.open(path, FileAccess.WRITE) + if not file: + return {&"ok": false, &"error": "Cannot write file: " + path} + file.store_string(new_content) + file.close() + + # Count changes + var old_lines := old_snippet.split("\n") + var new_lines := new_snippet.split("\n") + var added := maxi(0, new_lines.size() - old_lines.size()) + var removed := maxi(0, old_lines.size() - new_lines.size()) + + _refresh_filesystem() + + return { + &"ok": true, + &"path": path, + &"added": added, + &"removed": removed, + &"auto_applied": true, + &"message": "Applied edit to %s (+%d -%d lines)" % [path, added, removed] + } + +# ============================================================================= +# validate_script +# ============================================================================= +func validate_script(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path'"} + + path = _ensure_res_path(path) + + if not FileAccess.file_exists(path): + return {&"ok": false, &"error": "File not found: " + path} + + # Read the source text directly from disk so we validate the *current* + # file contents, not a stale resource-cache entry. + var file := FileAccess.open(path, FileAccess.READ) + if not file: + return {&"ok": false, &"error": "Cannot read file: " + path} + var source_code := file.get_as_text() + file.close() + + # Create a fresh GDScript instance and assign the source for parsing. + var script := GDScript.new() + script.source_code = source_code + + # reload() triggers the parser/compiler and returns OK or an error code. + var err := script.reload() + + if err != OK: + # Try to extract useful details from the Godot output log. + var errors := _collect_recent_script_errors(path) + return { + &"ok": true, + &"valid": false, + &"path": path, + &"error_code": err, + &"errors": errors, + &"message": "Script has errors." + (" Details: " + "; ".join(errors) if errors.size() > 0 else " Check Godot console for details.") + } + + if not script.can_instantiate(): + return { + &"ok": true, + &"valid": false, + &"path": path, + &"message": "Script parsed but cannot be instantiated (may have dependency errors)" + } + + return { + &"ok": true, + &"valid": true, + &"path": path, + &"message": "No syntax errors found" + } + +func _collect_recent_script_errors(script_path: String) -> Array: + """Grab recent SCRIPT ERROR / Parse Error lines from the editor Output panel + that mention the given script path. Best-effort — returns [] if the panel + cannot be accessed.""" + var errors: Array = [] + if not _editor_plugin: + return errors + + # Find the editor's Output panel RichTextLabel + var base := _editor_plugin.get_editor_interface().get_base_control() + var editor_log := _find_node_by_class(base, "EditorLog") + if not editor_log: + return errors + var rtl := _find_child_rtl(editor_log) + if not rtl: + return errors + + var text: String = rtl.get_parsed_text() + var short_path := script_path.get_file() # e.g. "player.gd" + + for line: String in text.split("\n"): + line = line.strip_edges() + if line.is_empty(): + continue + if short_path in line or script_path in line: + if line.begins_with("SCRIPT ERROR:") or line.begins_with("Parse Error:") \ + or line.begins_with("ERROR:") or line.begins_with("at:"): + errors.append(line) + + # Keep only the last 10 relevant lines + if errors.size() > 10: + errors = errors.slice(errors.size() - 10) + return errors + +func _find_node_by_class(root: Node, cls_name: String) -> Node: + if root.get_class() == cls_name: + return root + for child: Node in root.get_children(): + var found := _find_node_by_class(child, cls_name) + if found: + return found + return null + +func _find_child_rtl(node: Node) -> RichTextLabel: + for child: Node in node.get_children(): + if child is RichTextLabel: + return child + var found := _find_child_rtl(child) + if found: + return found + return null + +# ============================================================================= +# list_scripts +# ============================================================================= +func list_scripts(args: Dictionary) -> Dictionary: + var scripts: Array = [] + _collect_scripts("res://", scripts) + + return { + &"ok": true, + &"scripts": scripts, + &"count": scripts.size() + } + +func _collect_scripts(path: String, out: Array) -> void: + var dir := DirAccess.open(path) + if dir == null: + return + + dir.list_dir_begin() + var name := dir.get_next() + while name != "": + if name.begins_with("."): + name = dir.get_next() + continue + + var full_path := path.path_join(name) + if dir.current_is_dir(): + _collect_scripts(full_path, out) + elif name.ends_with(".gd"): + out.append(full_path) + + name = dir.get_next() + dir.list_dir_end() + +# ============================================================================= +# create_folder +# ============================================================================= +func create_folder(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path'"} + + path = _ensure_res_path(path) + + if DirAccess.dir_exists_absolute(path): + return {&"ok": true, &"path": path, &"message": "Directory already exists"} + + var err := DirAccess.make_dir_recursive_absolute(path) + if err != OK: + return {&"ok": false, &"error": "Failed to create directory: " + str(err)} + + _refresh_filesystem() + + return {&"ok": true, &"path": path, &"message": "Directory created"} + +# ============================================================================= +# delete_file +# ============================================================================= +func delete_file(args: Dictionary) -> Dictionary: + var path: String = str(args.get(&"path", "")) + var confirm: bool = bool(args.get(&"confirm", false)) + var create_backup: bool = bool(args.get(&"create_backup", true)) + + if path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'path'"} + if not confirm: + return {&"ok": false, &"error": "Must set confirm=true to delete"} + + path = _ensure_res_path(path) + + if not FileAccess.file_exists(path): + return {&"ok": false, &"error": "File not found: " + path} + + # Create backup + if create_backup: + var backup_path := path + ".bak" + DirAccess.copy_absolute(path, backup_path) + + var err := DirAccess.remove_absolute(path) + if err != OK: + return {&"ok": false, &"error": "Failed to delete file: " + str(err)} + + _refresh_filesystem() + + return {&"ok": true, &"path": path, &"message": "File deleted" + (" (backup created)" if create_backup else "")} + +# ============================================================================= +# rename_file +# ============================================================================= +func rename_file(args: Dictionary) -> Dictionary: + var old_path: String = str(args.get(&"old_path", "")) + var new_path: String = str(args.get(&"new_path", "")) + + if old_path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'old_path'"} + if new_path.strip_edges().is_empty(): + return {&"ok": false, &"error": "Missing 'new_path'"} + + old_path = _ensure_res_path(old_path) + new_path = _ensure_res_path(new_path) + + if not FileAccess.file_exists(old_path): + return {&"ok": false, &"error": "File not found: " + old_path} + if FileAccess.file_exists(new_path): + return {&"ok": false, &"error": "Target already exists: " + new_path} + + # Ensure target directory exists + var dir_path := new_path.get_base_dir() + if not DirAccess.dir_exists_absolute(dir_path): + DirAccess.make_dir_recursive_absolute(dir_path) + + var err := DirAccess.rename_absolute(old_path, new_path) + if err != OK: + return {&"ok": false, &"error": "Failed to rename: " + str(err)} + + _refresh_filesystem() + + return {&"ok": true, &"old_path": old_path, &"new_path": new_path, + &"message": "Renamed %s to %s" % [old_path, new_path]} diff --git a/addons/godot_mcp/tools/script_tools.gd.uid b/addons/godot_mcp/tools/script_tools.gd.uid new file mode 100644 index 0000000..2773bec --- /dev/null +++ b/addons/godot_mcp/tools/script_tools.gd.uid @@ -0,0 +1 @@ +uid://sqjhipl5ff5y diff --git a/addons/godot_mcp/tools/visualizer_tools.gd b/addons/godot_mcp/tools/visualizer_tools.gd new file mode 100644 index 0000000..7a96ce5 --- /dev/null +++ b/addons/godot_mcp/tools/visualizer_tools.gd @@ -0,0 +1,1023 @@ +@tool +extends Node +class_name VisualizerTools +## Crawls a Godot project and parses all GDScript files to build a project map. + +var _editor_plugin: EditorPlugin = null +var _scene_tools_ref: Node = null + +func set_editor_plugin(plugin: EditorPlugin) -> void: + _editor_plugin = plugin + +func set_scene_tools_ref(scene_tools: Node) -> void: + _scene_tools_ref = scene_tools + +func map_project(args: Dictionary) -> Dictionary: + """Crawl the entire project and build a structural map of all scripts.""" + var root_path: String = str(args.get(&"root", "res://")) + var include_addons: bool = bool(args.get(&"include_addons", false)) + + if not root_path.begins_with("res://"): + root_path = "res://" + root_path + + # Collect all .gd files + var script_paths: Array = [] + _collect_scripts(root_path, script_paths, include_addons) + + if script_paths.is_empty(): + return {&"ok": false, &"error": "No GDScript files found in " + root_path} + + # Parse each script + var nodes: Array = [] + var class_map: Dictionary = {} # class_name -> path + + for path: String in script_paths: + var info: Dictionary = _parse_script(path) + nodes.append(info) + if info.get(&"class_name", "") != "": + class_map[info[&"class_name"]] = path + + # Build edges + var edges: Array = [] + for node: Dictionary in nodes: + var from_path: String = node[&"path"] + + # extends relationship (resolve class_name to path) + var extends_class: String = node.get(&"extends", "") + if extends_class in class_map: + edges.append({&"from": from_path, &"to": class_map[extends_class], &"type": "extends"}) + + # preload/load references + for ref: String in node.get(&"preloads", []): + if ref.ends_with(".gd"): + edges.append({&"from": from_path, &"to": ref, &"type": "preload"}) + + # signal connections + for conn: Dictionary in node.get(&"connections", []): + var target: String = conn.get(&"target", "") + if target in class_map: + edges.append({&"from": from_path, &"to": class_map[target], &"type": "signal", &"signal_name": conn.get(&"signal", "")}) + + return { + &"ok": true, + &"project_map": { + &"nodes": nodes, + &"edges": edges, + &"total_scripts": nodes.size(), + &"total_connections": edges.size() + } + } + +func _collect_scripts(path: String, results: Array, include_addons: bool) -> void: + """Recursively collect all .gd files.""" + var dir := DirAccess.open(path) + if dir == null: + return + + dir.list_dir_begin() + var name := dir.get_next() + while name != "": + if name.begins_with("."): + name = dir.get_next() + continue + + var full_path := path.path_join(name) + + if dir.current_is_dir(): + if name == "addons" and not include_addons: + name = dir.get_next() + continue + _collect_scripts(full_path, results, include_addons) + elif name.ends_with(".gd"): + results.append(full_path) + + name = dir.get_next() + dir.list_dir_end() + +func _parse_script(path: String) -> Dictionary: + """Parse a GDScript file and extract its structure.""" + var file := FileAccess.open(path, FileAccess.READ) + if file == null: + return {&"path": path, &"error": "Cannot open file"} + + var content: String = file.get_as_text() + file.close() + + var lines: PackedStringArray = content.split("\n") + var line_count: int = lines.size() + + var description := "" + var extends_class := "" + var class_name_str := "" + var variables: Array = [] + var functions: Array = [] + var signals_list: Array = [] + var preloads: Array = [] + var connections: Array = [] + + # Regex patterns + var re_desc := RegEx.new() + re_desc.compile("^##\\s*@desc:\\s*(.+)") + + var re_extends := RegEx.new() + re_extends.compile("^extends\\s+(\\w+)") + + var re_class_name := RegEx.new() + re_class_name.compile("^class_name\\s+(\\w+)") + + # Match: @export var name: Type = value OR var name: Type OR var name = value + # Captures: 1=@export, 2=@onready, 3=name, 4=type, 5=default + var re_var := RegEx.new() + re_var.compile("^(@export(?:\\([^)]*\\))?\\s+)?(@onready\\s+)?var\\s+(\\w+)\\s*(?::\\s*(\\w+))?(?:\\s*=\\s*(.+))?") + + # Match: func name(params) -> ReturnType: + var re_func := RegEx.new() + re_func.compile("^func\\s+(\\w+)\\s*\\(([^)]*)\\)\\s*(?:->\\s*(\\w+))?") + + # Match: signal name(params) + var re_signal := RegEx.new() + re_signal.compile("^signal\\s+(\\w+)(?:\\(([^)]*)\\))?") + + var re_preload := RegEx.new() + re_preload.compile("(?:preload|load)\\s*\\(\\s*\"(res://[^\"]+)\"\\s*\\)") + + # Match: obj.signal.connect(...) pattern (Godot 4 style) + var re_connect_obj := RegEx.new() + re_connect_obj.compile("(\\w+)\\.(\\w+)\\.connect\\s*\\(") + + # Match: signal.connect(...) pattern (direct signal) + var re_connect_direct := RegEx.new() + re_connect_direct.compile("^\\s*(\\w+)\\.connect\\s*\\(") + + # Map of variable names to their types (for resolving signal connections) + var var_type_map: Dictionary = {} + + # First pass: extract metadata and find function boundaries + var func_starts: Array = [] # [{line_idx, name}] + + for i: int in range(line_count): + var line: String = lines[i] + var stripped: String = line.strip_edges() + + # Description tag (check first 15 lines) + if i < 15 and description.is_empty(): + var m := re_desc.search(stripped) + if m: + description = m.get_string(1) + continue + + # extends + if extends_class.is_empty(): + var m := re_extends.search(stripped) + if m: + extends_class = m.get_string(1) + continue + + # class_name + if class_name_str.is_empty(): + var m := re_class_name.search(stripped) + if m: + class_name_str = m.get_string(1) + continue + + # Variables - only match top-level (not indented) + # Skip lines that start with tab or spaces (inside functions) + if not line.begins_with("\t") and not line.begins_with(" "): + var m_var := re_var.search(stripped) + if m_var: + var exported: bool = m_var.get_string(1).strip_edges() != "" + var onready: bool = m_var.get_string(2).strip_edges() != "" + var var_name: String = m_var.get_string(3) + var var_type: String = m_var.get_string(4).strip_edges() + var default_val: String = m_var.get_string(5).strip_edges() + + # Try to infer type from default value if no explicit type + if var_type.is_empty() and not default_val.is_empty(): + var_type = _infer_type(default_val) + + # Track variable types for signal connection resolution + if not var_type.is_empty(): + var_type_map[var_name] = var_type + + variables.append({ + &"name": var_name, + &"type": var_type, + &"exported": exported, + &"onready": onready, + &"default": default_val + }) + + # Functions + var m_func := re_func.search(stripped) + if m_func: + var func_name: String = m_func.get_string(1) + var return_type: String = m_func.get_string(3).strip_edges() + func_starts.append({&"line_idx": i, &"name": func_name}) + functions.append({ + &"name": func_name, + &"params": m_func.get_string(2).strip_edges(), + &"return_type": return_type, + &"line": i + 1, + &"body": "" # filled in second pass + }) + + # Signals + var m_sig := re_signal.search(stripped) + if m_sig: + signals_list.append({ + &"name": m_sig.get_string(1), + &"params": m_sig.get_string(2).strip_edges() if m_sig.get_string(2) else "" + }) + + # Preload/load references + var m_preload := re_preload.search(stripped) + if m_preload: + preloads.append(m_preload.get_string(1)) + + # Signal connections (Godot 4 style) + # Pattern: obj.signal.connect(...) - e.g. wave_manager.wave_started.connect(...) + var m_conn_obj := re_connect_obj.search(stripped) + if m_conn_obj: + var obj_name: String = m_conn_obj.get_string(1) + var signal_name: String = m_conn_obj.get_string(2) + var target_type: String = var_type_map.get(obj_name, "") + connections.append({ + &"object": obj_name, + &"signal": signal_name, + &"target": target_type, + &"line": i + 1 + }) + else: + # Pattern: signal.connect(...) - e.g. body_entered.connect(...) + var m_conn_direct := re_connect_direct.search(stripped) + if m_conn_direct: + connections.append({ + &"signal": m_conn_direct.get_string(1), + &"target": extends_class, # Direct signal likely from parent class + &"line": i + 1 + }) + + # Second pass: extract function bodies + for fi: int in range(func_starts.size()): + var start_idx: int = func_starts[fi][&"line_idx"] + var end_idx: int + if fi + 1 < func_starts.size(): + end_idx = func_starts[fi + 1][&"line_idx"] + else: + end_idx = line_count + + # Find actual end: look backwards from next func to skip blank lines + while end_idx > start_idx + 1 and lines[end_idx - 1].strip_edges().is_empty(): + end_idx -= 1 + + # Also check for top-level declarations (var, signal, @export, class_name, etc.) + # that would end the function body + for check_idx in range(start_idx + 1, end_idx): + var check_line: String = lines[check_idx] + # If line is not indented and not empty and not a comment, it's not part of the function + if not check_line.is_empty() and not check_line.begins_with("\t") and not check_line.begins_with(" ") and not check_line.begins_with("#"): + end_idx = check_idx + break + + var body_lines: PackedStringArray = PackedStringArray() + for li: int in range(start_idx, end_idx): + body_lines.append(lines[li]) + + var body: String = "\n".join(body_lines) + # Cap body size to avoid huge payloads + if body.length() > 3000: + body = body.substr(0, 3000) + "\n# ... (truncated)" + + functions[fi][&"body"] = body + functions[fi][&"body_lines"] = end_idx - start_idx + + # Determine folder + var folder: String = path.get_base_dir() + var filename: String = path.get_file() + + return { + &"path": path, + &"filename": filename, + &"folder": folder, + &"class_name": class_name_str, + &"extends": extends_class, + &"description": description, + &"line_count": line_count, + &"variables": variables, + &"functions": functions, + &"signals": signals_list, + &"preloads": preloads, + &"connections": connections + } + +func _infer_type(default_val: String) -> String: + """Try to infer GDScript type from a default value.""" + if default_val == "true" or default_val == "false": + return "bool" + if default_val.is_valid_int(): + return "int" + if default_val.is_valid_float(): + return "float" + if default_val.begins_with("\"") or default_val.begins_with("'"): + return "String" + if default_val.begins_with("Vector2"): + return "Vector2" + if default_val.begins_with("Vector3"): + return "Vector3" + if default_val.begins_with("Color"): + return "Color" + if default_val.begins_with("["): + return "Array" + if default_val.begins_with("{"): + return "Dictionary" + if default_val == "null": + return "Variant" + if default_val.ends_with(".new()"): + return default_val.replace(".new()", "") + return "" + + +func map_scenes(args: Dictionary) -> Dictionary: + """Crawl the project and build a map of all scenes.""" + var root_path: String = str(args.get(&"root", "res://")) + var include_addons: bool = bool(args.get(&"include_addons", false)) + + if not root_path.begins_with("res://"): + root_path = "res://" + root_path + + # Collect all .tscn files + var scene_paths: Array = [] + _collect_scenes(root_path, scene_paths, include_addons) + + if scene_paths.is_empty(): + return {&"ok": true, &"scene_map": {&"scenes": [], &"total_scenes": 0}} + + # Parse each scene + var scenes: Array = [] + for path: String in scene_paths: + var info: Dictionary = _parse_scene(path) + scenes.append(info) + + # Build edges between scenes (instantiation, preloads) + var edges: Array = [] + for scene: Dictionary in scenes: + var from_path: String = scene[&"path"] + for instance: String in scene.get(&"instances", []): + edges.append({&"from": from_path, &"to": instance, &"type": "instance"}) + + return { + &"ok": true, + &"scene_map": { + &"scenes": scenes, + &"edges": edges, + &"total_scenes": scenes.size() + } + } + + +func _collect_scenes(path: String, results: Array, include_addons: bool) -> void: + """Recursively collect all .tscn files.""" + var dir := DirAccess.open(path) + if dir == null: + return + + dir.list_dir_begin() + var name := dir.get_next() + while name != "": + if name.begins_with("."): + name = dir.get_next() + continue + + var full_path := path.path_join(name) + + if dir.current_is_dir(): + if name == "addons" and not include_addons: + name = dir.get_next() + continue + _collect_scenes(full_path, results, include_addons) + elif name.ends_with(".tscn"): + results.append(full_path) + + name = dir.get_next() + dir.list_dir_end() + + +func _parse_scene(path: String) -> Dictionary: + """Parse a scene file and extract its structure.""" + var file := FileAccess.open(path, FileAccess.READ) + if file == null: + return {&"path": path, &"error": "Cannot open file"} + + var content: String = file.get_as_text() + file.close() + + var scene_name: String = path.get_file().replace(".tscn", "") + var root_type: String = "" + var nodes: Array = [] + var instances: Array = [] + var scripts: Array = [] + + # Parse .tscn format + var lines: PackedStringArray = content.split("\n") + var current_node: Dictionary = {} + + var re_ext_resource := RegEx.new() + re_ext_resource.compile('\\[ext_resource.*path="([^"]+)".*type="([^"]+)"') + + var re_node := RegEx.new() + re_node.compile('\\[node name="([^"]+)".*type="([^"]+)"') + + var re_node_instance := RegEx.new() + re_node_instance.compile('\\[node name="([^"]+)".*instance=ExtResource\\("([^"]+)"\\)') + + var re_script := RegEx.new() + re_script.compile('script = ExtResource\\("([^"]+)"\\)') + + var ext_resources: Dictionary = {} # id -> {path, type} + + for line: String in lines: + # External resources + var m_ext := re_ext_resource.search(line) + if m_ext: + var res_path: String = m_ext.get_string(1) + var res_type: String = m_ext.get_string(2) + # Extract ID from the line + var id_match := RegEx.create_from_string('id="([^"]+)"').search(line) + if id_match: + ext_resources[id_match.get_string(1)] = {&"path": res_path, &"type": res_type} + if res_type == "PackedScene": + instances.append(res_path) + elif res_type == "Script": + scripts.append(res_path) + continue + + # Regular nodes + var m_node := re_node.search(line) + if m_node: + var node_name: String = m_node.get_string(1) + var node_type: String = m_node.get_string(2) + if root_type.is_empty(): + root_type = node_type + nodes.append({&"name": node_name, &"type": node_type}) + continue + + # Instance nodes + var m_inst := re_node_instance.search(line) + if m_inst: + var node_name: String = m_inst.get_string(1) + nodes.append({&"name": node_name, &"type": "Instance"}) + + return { + &"path": path, + &"name": scene_name, + &"root_type": root_type, + &"nodes": nodes, + &"instances": instances, + &"scripts": scripts, + &"node_count": nodes.size() + } + + +# ============================================================================ +# INTERNAL FILE MODIFICATION FUNCTIONS (not exposed as MCP tools) +# These are called directly by the visualizer for inline editing +# ============================================================================ + +func _internal_map_scenes(args: Dictionary) -> Dictionary: + """Internal wrapper for map_scenes.""" + return map_scenes(args) + + +func _internal_refresh_map(args: Dictionary) -> Dictionary: + """Refresh the project map.""" + return map_project(args) + + +func _internal_create_script_file(args: Dictionary) -> Dictionary: + """Create a new script file.""" + var script_path: String = args.get(&"path", "") + var extends_type: String = args.get(&"extends", "Node") + var class_name_str: String = args.get(&"class_name", "") + + if script_path.is_empty(): + return {&"ok": false, &"error": "No path provided"} + + if not script_path.begins_with("res://"): + script_path = "res://" + script_path + + if not script_path.ends_with(".gd"): + script_path += ".gd" + + # Check if file already exists + if FileAccess.file_exists(script_path): + return {&"ok": false, &"error": "File already exists: " + script_path} + + # Create directory if needed + var dir_path: String = script_path.get_base_dir() + if not DirAccess.dir_exists_absolute(dir_path): + var err := DirAccess.make_dir_recursive_absolute(dir_path) + if err != OK: + return {&"ok": false, &"error": "Failed to create directory"} + + # Build script content + var content := "" + if not class_name_str.is_empty(): + content += "class_name " + class_name_str + "\n" + content += "extends " + extends_type + "\n" + content += "\n\n" + content += "func _ready() -> void:\n" + content += "\tpass\n" + + # Write file + var file := FileAccess.open(script_path, FileAccess.WRITE) + if file == null: + return {&"ok": false, &"error": "Cannot create file: " + script_path} + + file.store_string(content) + file.close() + + return {&"ok": true, &"path": script_path} + + +func _internal_modify_variable(args: Dictionary) -> Dictionary: + """Add, update, or delete a variable in a script file.""" + var script_path: String = args.get(&"path", "") + var action: String = args.get(&"action", "") # "add", "update", "delete" + var old_name: String = args.get(&"old_name", "") + var new_name: String = args.get(&"name", "") + var var_type: String = args.get(&"type", "") + var default_val: String = args.get(&"default", "") + var exported: bool = args.get(&"exported", false) + var onready: bool = args.get(&"onready", false) + + if script_path.is_empty(): + return {&"ok": false, &"error": "No script path provided"} + + var file := FileAccess.open(script_path, FileAccess.READ) + if file == null: + return {&"ok": false, &"error": "Cannot open file: " + script_path} + + var content: String = file.get_as_text() + file.close() + + var lines: Array = Array(content.split("\n")) + var modified := false + + if action == "delete": + # Find and remove the variable declaration + var pattern := RegEx.new() + pattern.compile("^(@export(?:\\([^)]*\\))?\\s+)?(?:@onready\\s+)?var\\s+" + old_name + "\\s*(?::|=|$)") + for i: int in range(lines.size() - 1, -1, -1): + if pattern.search(lines[i].strip_edges()): + lines.remove_at(i) + modified = true + break + + elif action == "update": + # Find and update the variable declaration + var pattern := RegEx.new() + pattern.compile("^(@export(?:\\([^)]*\\))?\\s+)?(@onready\\s+)?var\\s+" + old_name + "\\s*(?::\\s*\\w+)?(?:\\s*=\\s*.+)?$") + for i: int in range(lines.size()): + var m := pattern.search(lines[i].strip_edges()) + if m: + # Use onready from args, not from matched pattern + var new_line := _build_var_line(new_name, var_type, default_val, exported, onready) + lines[i] = new_line + modified = true + break + + elif action == "add": + # Find position to insert (after last variable, before first function) + var insert_pos := _find_var_insert_position(lines, exported) + var new_line := _build_var_line(new_name, var_type, default_val, exported, false) + lines.insert(insert_pos, new_line) + modified = true + + if modified: + var new_content := "\n".join(PackedStringArray(lines)) + var write_file := FileAccess.open(script_path, FileAccess.WRITE) + if write_file == null: + return {&"ok": false, &"error": "Cannot write to file: " + script_path} + write_file.store_string(new_content) + write_file.close() + return {&"ok": true, &"action": action, &"variable": new_name} + + return {&"ok": false, &"error": "Variable not found: " + old_name} + + +func _internal_modify_signal(args: Dictionary) -> Dictionary: + """Add, update, or delete a signal in a script file.""" + var script_path: String = args.get(&"path", "") + var action: String = args.get(&"action", "") + var old_name: String = args.get(&"old_name", "") + var new_name: String = args.get(&"name", "") + var params: String = args.get(&"params", "") + + if script_path.is_empty(): + return {&"ok": false, &"error": "No script path provided"} + + var file := FileAccess.open(script_path, FileAccess.READ) + if file == null: + return {&"ok": false, &"error": "Cannot open file: " + script_path} + + var content: String = file.get_as_text() + file.close() + + var lines: Array = Array(content.split("\n")) + var modified := false + + if action == "delete": + var pattern := RegEx.new() + pattern.compile("^signal\\s+" + old_name + "(?:\\s*\\(|$)") + for i: int in range(lines.size() - 1, -1, -1): + if pattern.search(lines[i].strip_edges()): + lines.remove_at(i) + modified = true + break + + elif action == "update": + var pattern := RegEx.new() + pattern.compile("^signal\\s+" + old_name + "(?:\\s*\\([^)]*\\))?$") + for i: int in range(lines.size()): + if pattern.search(lines[i].strip_edges()): + var new_line := "signal " + new_name + if not params.is_empty(): + new_line += "(" + params + ")" + lines[i] = new_line + modified = true + break + + elif action == "add": + var insert_pos := _find_signal_insert_position(lines) + var new_line := "signal " + new_name + if not params.is_empty(): + new_line += "(" + params + ")" + lines.insert(insert_pos, new_line) + modified = true + + if modified: + var new_content := "\n".join(PackedStringArray(lines)) + var write_file := FileAccess.open(script_path, FileAccess.WRITE) + if write_file == null: + return {&"ok": false, &"error": "Cannot write to file: " + script_path} + write_file.store_string(new_content) + write_file.close() + return {&"ok": true, &"action": action, &"signal": new_name} + + return {&"ok": false, &"error": "Signal not found: " + old_name} + + +func _internal_modify_function(args: Dictionary) -> Dictionary: + """Update a function's body in a script file.""" + var script_path: String = args.get(&"path", "") + var func_name: String = args.get(&"name", "") + var new_body: String = args.get(&"body", "") + + if script_path.is_empty() or func_name.is_empty(): + return {&"ok": false, &"error": "Missing path or function name"} + + var file := FileAccess.open(script_path, FileAccess.READ) + if file == null: + return {&"ok": false, &"error": "Cannot open file: " + script_path} + + var content: String = file.get_as_text() + file.close() + + var lines: Array = Array(content.split("\n")) + + # Find the function + var re_func := RegEx.new() + re_func.compile("^func\\s+" + func_name + "\\s*\\(") + + var func_start := -1 + var func_end := -1 + + for i: int in range(lines.size()): + if func_start == -1: + if re_func.search(lines[i].strip_edges()): + func_start = i + elif func_start != -1: + # Find end of function (next top-level declaration or end of file) + var stripped: String = lines[i].strip_edges() + if not stripped.is_empty() and not lines[i].begins_with("\t") and not lines[i].begins_with(" ") and not stripped.begins_with("#"): + func_end = i + break + + if func_start == -1: + return {&"ok": false, &"error": "Function not found: " + func_name} + + if func_end == -1: + func_end = lines.size() + + # Remove trailing empty lines from function body + while func_end > func_start + 1 and lines[func_end - 1].strip_edges().is_empty(): + func_end -= 1 + + # Replace function body + var new_lines := Array(new_body.split("\n")) + + # Remove old function lines + for i: int in range(func_end - 1, func_start - 1, -1): + lines.remove_at(i) + + # Insert new function lines + for i: int in range(new_lines.size()): + lines.insert(func_start + i, new_lines[i]) + + var new_content := "\n".join(PackedStringArray(lines)) + var write_file := FileAccess.open(script_path, FileAccess.WRITE) + if write_file == null: + return {&"ok": false, &"error": "Cannot write to file: " + script_path} + write_file.store_string(new_content) + write_file.close() + + return {&"ok": true, &"function": func_name} + + +func _internal_modify_function_delete(args: Dictionary) -> Dictionary: + """Delete a function from a script file.""" + var script_path: String = args.get(&"path", "") + var func_name: String = args.get(&"name", "") + + if script_path.is_empty() or func_name.is_empty(): + return {&"ok": false, &"error": "Missing path or function name"} + + var file := FileAccess.open(script_path, FileAccess.READ) + if file == null: + return {&"ok": false, &"error": "Cannot open file: " + script_path} + + var content: String = file.get_as_text() + file.close() + + var lines: Array = Array(content.split("\n")) + + # Find the function + var re_func := RegEx.new() + re_func.compile("^func\\s+" + func_name + "\\s*\\(") + + var func_start := -1 + var func_end := -1 + + for i: int in range(lines.size()): + if func_start == -1: + if re_func.search(lines[i].strip_edges()): + func_start = i + elif func_start != -1: + # Find end of function (next top-level declaration or end of file) + var stripped: String = lines[i].strip_edges() + if not stripped.is_empty() and not lines[i].begins_with("\t") and not lines[i].begins_with(" ") and not stripped.begins_with("#"): + func_end = i + break + + if func_start == -1: + return {&"ok": false, &"error": "Function not found: " + func_name} + + if func_end == -1: + func_end = lines.size() + + # Remove trailing empty lines before the function + while func_end > func_start + 1 and lines[func_end - 1].strip_edges().is_empty(): + func_end -= 1 + + # Remove the function lines + for i: int in range(func_end - 1, func_start - 1, -1): + lines.remove_at(i) + + # Remove extra blank lines that might be left + # (but keep at least one blank line between declarations) + + var new_content := "\n".join(PackedStringArray(lines)) + var write_file := FileAccess.open(script_path, FileAccess.WRITE) + if write_file == null: + return {&"ok": false, &"error": "Cannot write to file: " + script_path} + write_file.store_string(new_content) + write_file.close() + + return {&"ok": true, &"deleted": func_name} + + +func _internal_find_usages(args: Dictionary) -> Dictionary: + """Find all usages of a variable, signal, or function across all scripts.""" + var name: String = args.get(&"name", "") + var item_type: String = args.get(&"type", "") # "variable", "signal", "function" + var root_path: String = args.get(&"root", "res://") + + if name.is_empty(): + return {&"ok": false, &"error": "No name provided"} + + # Collect all scripts + var script_paths: Array = [] + _collect_scripts(root_path, script_paths, false) + + var usages: Array = [] + + # Build regex pattern based on type + var pattern := RegEx.new() + if item_type == "signal": + # Match: signal_name.emit() or signal_name.connect() or .signal_name. + pattern.compile("\\b" + name + "\\b") + else: + # Match word boundary for variables and functions + pattern.compile("\\b" + name + "\\b") + + for path: String in script_paths: + var file := FileAccess.open(path, FileAccess.READ) + if file == null: + continue + + var content: String = file.get_as_text() + file.close() + + var lines: PackedStringArray = content.split("\n") + for i: int in range(lines.size()): + var line: String = lines[i] + if pattern.search(line): + # Skip the declaration line itself + if item_type == "variable" and RegEx.create_from_string("^\\s*(@export)?\\s*var\\s+" + name + "\\b").search(line): + continue + if item_type == "signal" and RegEx.create_from_string("^\\s*signal\\s+" + name + "\\b").search(line): + continue + if item_type == "function" and RegEx.create_from_string("^\\s*func\\s+" + name + "\\s*\\(").search(line): + continue + + usages.append({ + &"file": path, + &"line": i + 1, + &"code": line.strip_edges() + }) + + return {&"ok": true, &"usages": usages, &"count": usages.size()} + + +# Helper functions for file modification + +func _build_var_line(name: String, type: String, default: String, exported: bool, onready: bool) -> String: + var line := "" + if exported: + line += "@export " + if onready: + line += "@onready " + line += "var " + name + if not type.is_empty(): + line += ": " + type + if not default.is_empty(): + line += " = " + default + return line + + +func _find_var_insert_position(lines: Array, exported: bool) -> int: + """Find the best position to insert a new variable.""" + var last_var_line := -1 + var first_func_line := -1 + var after_class_decl := 0 + + var re_var := RegEx.new() + re_var.compile("^(@export)?\\s*(@onready)?\\s*var\\s+") + var re_func := RegEx.new() + re_func.compile("^func\\s+") + var re_class := RegEx.new() + re_class.compile("^(class_name|extends)\\s+") + + for i: int in range(lines.size()): + var stripped: String = lines[i].strip_edges() + if re_class.search(stripped): + after_class_decl = i + 1 + if re_var.search(stripped): + last_var_line = i + if re_func.search(stripped) and first_func_line == -1: + first_func_line = i + break + + # Insert after last variable, or before first function, or after class declarations + if last_var_line != -1: + return last_var_line + 1 + if first_func_line != -1: + return first_func_line + return max(after_class_decl, 2) # At least after extends/class_name + + +func _find_signal_insert_position(lines: Array) -> int: + """Find the best position to insert a new signal.""" + var last_signal_line := -1 + var first_var_line := -1 + var after_class_decl := 0 + + var re_signal := RegEx.new() + re_signal.compile("^signal\\s+") + var re_var := RegEx.new() + re_var.compile("^(@export)?\\s*var\\s+") + var re_class := RegEx.new() + re_class.compile("^(class_name|extends)\\s+") + + for i: int in range(lines.size()): + var stripped: String = lines[i].strip_edges() + if re_class.search(stripped): + after_class_decl = i + 1 + if re_signal.search(stripped): + last_signal_line = i + if re_var.search(stripped) and first_var_line == -1: + first_var_line = i + + # Insert after last signal, or before first var, or after class declarations + if last_signal_line != -1: + return last_signal_line + 1 + if first_var_line != -1: + return first_var_line + return max(after_class_decl, 2) + + +# ============================================================================ +# SCENE VISUALIZER INTERNAL FUNCTIONS +# These are called by the visualizer for scene view functionality +# ============================================================================ + +func _internal_get_scene_hierarchy(args: Dictionary) -> Dictionary: + """Get scene hierarchy for visualizer.""" + if _scene_tools_ref and _scene_tools_ref.has_method("get_scene_hierarchy"): + return _scene_tools_ref.get_scene_hierarchy(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_get_scene_node_properties(args: Dictionary) -> Dictionary: + """Get node properties for visualizer panel.""" + if _scene_tools_ref and _scene_tools_ref.has_method("get_scene_node_properties"): + return _scene_tools_ref.get_scene_node_properties(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_set_scene_node_property(args: Dictionary) -> Dictionary: + """Set node property from visualizer panel.""" + if _scene_tools_ref and _scene_tools_ref.has_method("set_scene_node_property"): + return _scene_tools_ref.set_scene_node_property(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_add_scene_node(args: Dictionary) -> Dictionary: + """Add a node to a scene from visualizer.""" + if _scene_tools_ref and _scene_tools_ref.has_method("add_node"): + return _scene_tools_ref.add_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_remove_scene_node(args: Dictionary) -> Dictionary: + """Remove a node from a scene from visualizer.""" + if _scene_tools_ref and _scene_tools_ref.has_method("remove_node"): + return _scene_tools_ref.remove_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_rename_scene_node(args: Dictionary) -> Dictionary: + """Rename a node in a scene from visualizer.""" + if _scene_tools_ref and _scene_tools_ref.has_method("rename_node"): + return _scene_tools_ref.rename_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_move_scene_node(args: Dictionary) -> Dictionary: + """Move/reorder a node in a scene from visualizer.""" + if _scene_tools_ref and _scene_tools_ref.has_method("move_node"): + return _scene_tools_ref.move_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +# Simpler aliases for context menu actions +func _internal_add_node(args: Dictionary) -> Dictionary: + """Add a node to a scene.""" + if _scene_tools_ref and _scene_tools_ref.has_method("add_node"): + return _scene_tools_ref.add_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_remove_node(args: Dictionary) -> Dictionary: + """Remove a node from a scene.""" + if _scene_tools_ref and _scene_tools_ref.has_method("remove_node"): + return _scene_tools_ref.remove_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_rename_node(args: Dictionary) -> Dictionary: + """Rename a node in a scene.""" + if _scene_tools_ref and _scene_tools_ref.has_method("rename_node"): + return _scene_tools_ref.rename_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_move_node(args: Dictionary) -> Dictionary: + """Move/reorder a node in a scene.""" + if _scene_tools_ref and _scene_tools_ref.has_method("move_node"): + return _scene_tools_ref.move_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_duplicate_node(args: Dictionary) -> Dictionary: + """Duplicate a node in a scene.""" + if _scene_tools_ref and _scene_tools_ref.has_method("duplicate_node"): + return _scene_tools_ref.duplicate_node(args) + return {&"ok": false, &"error": "Scene tools not available"} + + +func _internal_reorder_node(args: Dictionary) -> Dictionary: + """Reorder a node within its parent (change sibling index).""" + if _scene_tools_ref and _scene_tools_ref.has_method("reorder_node"): + return _scene_tools_ref.reorder_node(args) + return {&"ok": false, &"error": "Scene tools not available"} diff --git a/addons/godot_mcp/tools/visualizer_tools.gd.uid b/addons/godot_mcp/tools/visualizer_tools.gd.uid new file mode 100644 index 0000000..7c81fe9 --- /dev/null +++ b/addons/godot_mcp/tools/visualizer_tools.gd.uid @@ -0,0 +1 @@ +uid://cjktr607bngrs diff --git a/addons/netfox.extras/CONTRIBUTORS.md b/addons/netfox.extras/CONTRIBUTORS.md deleted file mode 100644 index bf54ceb..0000000 --- a/addons/netfox.extras/CONTRIBUTORS.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributors - -This addon, and the entirety of [netfox] is a shared effort of [Fox's Sake -Studio], and the community. The following is the list of community contributors -involved with netfox: - -* Alberto Klocker -* Andrew Davis -* Bryan Lee <42545742+bryanmylee@users.noreply.github.com> -* Dan Schuman -* Dustie <77035922+DustieDog@users.noreply.github.com> -* Eric Volpone -* Gordon MacPherson -* Jake Cattrall -* Jon Stevens <1030863+jonstvns@users.noreply.github.com> -* Joseph Michael Ware <9at25jnr3@mozmail.com> -* Matias Kumpulainen -* Nicolas Batty -* Ricky <77863853+RickyYCheng@users.noreply.github.com> -* Riordan-DC <44295008+Riordan-DC@users.noreply.github.com> -* Russ <622740+russ-@users.noreply.github.com> -* Ryan Roden-Corrent -* TheYellowArchitect -* TheYellowArchitect -* camperotactico -* gk98s <89647115+gk98s@users.noreply.github.com> -* zibetnu <9at25jnr3@mozmail.com> - -[netfox]: https://github.com/foxssake/netfox -[Fox's Sake Studio]: https://github.com/foxssake/ - diff --git a/addons/netfox.extras/icons/network-rigid-body-2d.svg.import b/addons/netfox.extras/icons/network-rigid-body-2d.svg.import new file mode 100644 index 0000000..32cdac5 --- /dev/null +++ b/addons/netfox.extras/icons/network-rigid-body-2d.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhm6yivew52yv" +path="res://.godot/imported/network-rigid-body-2d.svg-c7ef7df16c4383a80b842fa966aa7aea.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox.extras/icons/network-rigid-body-2d.svg" +dest_files=["res://.godot/imported/network-rigid-body-2d.svg-c7ef7df16c4383a80b842fa966aa7aea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox.extras/icons/network-rigid-body-3d.svg.import b/addons/netfox.extras/icons/network-rigid-body-3d.svg.import new file mode 100644 index 0000000..fc27c2c --- /dev/null +++ b/addons/netfox.extras/icons/network-rigid-body-3d.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2lri7ofmq6a7" +path="res://.godot/imported/network-rigid-body-3d.svg-325e3a4834ddab37f186912ac93fa449.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox.extras/icons/network-rigid-body-3d.svg" +dest_files=["res://.godot/imported/network-rigid-body-3d.svg-325e3a4834ddab37f186912ac93fa449.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox.extras/icons/rewindable-state-machine.svg.import b/addons/netfox.extras/icons/rewindable-state-machine.svg.import new file mode 100644 index 0000000..103364f --- /dev/null +++ b/addons/netfox.extras/icons/rewindable-state-machine.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx8j75i6acsic" +path="res://.godot/imported/rewindable-state-machine.svg-87ca202891a7e2319363a5e2f5387494.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox.extras/icons/rewindable-state-machine.svg" +dest_files=["res://.godot/imported/rewindable-state-machine.svg-87ca202891a7e2319363a5e2f5387494.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox.extras/icons/rewindable-state.svg.import b/addons/netfox.extras/icons/rewindable-state.svg.import new file mode 100644 index 0000000..a825895 --- /dev/null +++ b/addons/netfox.extras/icons/rewindable-state.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsxkv3ufy1r2q" +path="res://.godot/imported/rewindable-state.svg-b534e5a6f5de20b3fe0b63d612bd36bf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox.extras/icons/rewindable-state.svg" +dest_files=["res://.godot/imported/rewindable-state.svg-b534e5a6f5de20b3fe0b63d612bd36bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox.extras/netfox-extras.gd b/addons/netfox.extras/netfox-extras.gd index e66e2cd..74cfa58 100644 --- a/addons/netfox.extras/netfox-extras.gd +++ b/addons/netfox.extras/netfox-extras.gd @@ -109,7 +109,8 @@ func _enter_tree(): add_setting(setting) for autoload in AUTOLOADS: - add_autoload_singleton(autoload.name, autoload.path) + if not has_autoload(autoload.name): + add_autoload_singleton(autoload.name, autoload.path) for type in TYPES: add_custom_type(type.name, type.base, load(type.script), load(type.icon)) @@ -122,7 +123,8 @@ func _exit_tree(): remove_setting(setting) for autoload in AUTOLOADS: - remove_autoload_singleton(autoload.name) + if has_autoload(autoload.name): + remove_autoload_singleton(autoload.name) for type in TYPES: remove_custom_type(type.name) @@ -148,6 +150,9 @@ func remove_setting(setting: Dictionary): ProjectSettings.clear(setting.name) +func has_autoload(name: String) -> bool: + return ProjectSettings.has_setting("autoload/" + name) + func _render_tool_menu(): _free_tool_menu() for driver_toggle in PhysicsDriverToggles.all(): diff --git a/addons/netfox.extras/physics/rapier_driver_2d.gd.off b/addons/netfox.extras/physics/rapier_driver_2d.gd.off index 7d91bbc..aecccf4 100644 --- a/addons/netfox.extras/physics/rapier_driver_2d.gd.off +++ b/addons/netfox.extras/physics/rapier_driver_2d.gd.off @@ -1,18 +1,38 @@ + extends PhysicsDriver class_name RapierDriver2D +var _state: StateManager2D + +var _stored_states: int = 0 + + func _init_physics_space() -> void: physics_space = get_viewport().world_2d.space PhysicsServer2D.space_set_active(physics_space, false) + _state = StateManager2D.new() + _state.root_node = self + _state.set_max_cache_length(ProjectSettings.get_setting("netfox/rollback/history_limit", 64)) + _state.set_rolling_cache(true) + add_child(_state) + + func _physics_step(delta) -> void: RapierPhysicsServer2D.space_step(physics_space, delta) RapierPhysicsServer2D.space_flush_queries(physics_space) - -func _snapshot_space(tick: int) -> void: - snapshots[tick] = RapierPhysicsServer2D.export_binary(physics_space) -func _rollback_space(tick) -> void: - if snapshots.has(tick): - RapierPhysicsServer2D.import_binary(physics_space, snapshots[tick]) + +func _snapshot_space(tick: int) -> void: + _state.cache_state(physics_space, tick) + + +func _rollback_space(tick: int) -> void: + # With rolling cache, tick states are ordered by age with the newest at 0 + var offset = NetworkTime.tick - tick + if (offset >= _stored_states): + return + + _stored_states = min(_stored_states + 1, _state.max_cache_length) + _state.load_cached_state(physics_space, offset) diff --git a/addons/netfox.extras/physics/rapier_driver_3d.gd.off b/addons/netfox.extras/physics/rapier_driver_3d.gd.off index 78f78ea..e996cda 100644 --- a/addons/netfox.extras/physics/rapier_driver_3d.gd.off +++ b/addons/netfox.extras/physics/rapier_driver_3d.gd.off @@ -2,17 +2,36 @@ extends PhysicsDriver class_name RapierDriver3D +var _state: StateManager3D + +var _stored_states: int = 0 + + func _init_physics_space() -> void: physics_space = get_viewport().world_3d.space PhysicsServer3D.space_set_active(physics_space, false) + _state = StateManager3D.new() + _state.root_node = self + _state.set_max_cache_length(ProjectSettings.get_setting("netfox/rollback/history_limit", 64)) + _state.set_rolling_cache(true) + add_child(_state) + + func _physics_step(delta) -> void: RapierPhysicsServer3D.space_step(physics_space, delta) RapierPhysicsServer3D.space_flush_queries(physics_space) - -func _snapshot_space(tick: int) -> void: - snapshots[tick] = RapierPhysicsServer3D.export_binary(physics_space) -func _rollback_space(tick) -> void: - if snapshots.has(tick): - RapierPhysicsServer3D.import_binary(physics_space, snapshots[tick]) + +func _snapshot_space(tick: int) -> void: + _state.cache_state(physics_space, tick) + + +func _rollback_space(tick: int) -> void: + # With rolling cache, tick states are ordered by age with the newest at 0 + var offset = NetworkTime.tick - tick + if (offset >= _stored_states): + return + + _stored_states = min(_stored_states + 1, _state.max_cache_length) + _state.load_cached_state(physics_space, offset) diff --git a/addons/netfox.extras/plugin.cfg b/addons/netfox.extras/plugin.cfg index 2d68d88..55762ca 100644 --- a/addons/netfox.extras/plugin.cfg +++ b/addons/netfox.extras/plugin.cfg @@ -3,5 +3,5 @@ name="netfox.extras" description="Game-specific utilities for Netfox" author="Tamas Galffy and contributors" -version="1.35.3" +version="1.40.2" script="netfox-extras.gd" diff --git a/addons/netfox.internals/CONTRIBUTORS.md b/addons/netfox.internals/CONTRIBUTORS.md deleted file mode 100644 index bf54ceb..0000000 --- a/addons/netfox.internals/CONTRIBUTORS.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributors - -This addon, and the entirety of [netfox] is a shared effort of [Fox's Sake -Studio], and the community. The following is the list of community contributors -involved with netfox: - -* Alberto Klocker -* Andrew Davis -* Bryan Lee <42545742+bryanmylee@users.noreply.github.com> -* Dan Schuman -* Dustie <77035922+DustieDog@users.noreply.github.com> -* Eric Volpone -* Gordon MacPherson -* Jake Cattrall -* Jon Stevens <1030863+jonstvns@users.noreply.github.com> -* Joseph Michael Ware <9at25jnr3@mozmail.com> -* Matias Kumpulainen -* Nicolas Batty -* Ricky <77863853+RickyYCheng@users.noreply.github.com> -* Riordan-DC <44295008+Riordan-DC@users.noreply.github.com> -* Russ <622740+russ-@users.noreply.github.com> -* Ryan Roden-Corrent -* TheYellowArchitect -* TheYellowArchitect -* camperotactico -* gk98s <89647115+gk98s@users.noreply.github.com> -* zibetnu <9at25jnr3@mozmail.com> - -[netfox]: https://github.com/foxssake/netfox -[Fox's Sake Studio]: https://github.com/foxssake/ - diff --git a/addons/netfox.internals/bitset.gd b/addons/netfox.internals/bitset.gd new file mode 100644 index 0000000..1e54250 --- /dev/null +++ b/addons/netfox.internals/bitset.gd @@ -0,0 +1,95 @@ +extends RefCounted +class_name _Bitset + +# Stores a list of booleans, representing them efficiently as a PackedByteArray + +var _data: PackedByteArray +var _bit_count: int + +static func of_bools(values: Array) -> _Bitset: + var result := _Bitset.new(values.size()) + for i in values.size(): + if values[i]: + result.set_bit(i) + return result + +func _init(bit_count: int): + var bytes := bit_count / 8 + if bit_count % 8 > 0: + bytes += 1 + + _data = PackedByteArray() + _data.resize(bytes) + + _bit_count = bit_count + +func bit_count() -> int: + return _bit_count + +func is_empty() -> bool: + return _bit_count == 0 + +func is_not_empty() -> bool: + return _bit_count != 0 + +func get_bit(idx: int) -> bool: + assert(idx < _bit_count, "Accessing bit %d on bitset of size %d!" % [idx, _bit_count]) + var byte_idx := idx / 8 + var bit_idx := idx % 8 + + return (_data[byte_idx] >> bit_idx) & 0x1 != 0 + +func set_bit(idx: int) -> void: + assert(idx < _bit_count, "Accessing bit %d on bitset of size %d!" % [idx, _bit_count]) + var byte_idx := idx / 8 + var bit_idx := idx % 8 + + _data[byte_idx] |= 0x1 << bit_idx + +func clear_bit(idx: int) -> void: + assert(idx < _bit_count, "Accessing bit %d on bitset of size %d!" % [idx, _bit_count]) + var byte_idx := idx / 8 + var bit_idx := idx % 8 + + _data[byte_idx] &= ~(0x1 << bit_idx) + +func toggle_bit(idx: int) -> void: + assert(idx < _bit_count, "Accessing bit %d on bitset of size %d!" % [idx, _bit_count]) + var byte_idx := idx / 8 + var bit_idx := idx % 8 + + _data[byte_idx] ^= 0x1 << bit_idx + +func get_set_indices() -> Array[int]: + var result := [] as Array[int] + for i in _data.size(): + var byte := _data[i] + + if byte & 0x01: result.append(i * 8 + 0) + if byte & 0x02: result.append(i * 8 + 1) + if byte & 0x04: result.append(i * 8 + 2) + if byte & 0x08: result.append(i * 8 + 3) + + if byte & 0x10: result.append(i * 8 + 4) + if byte & 0x20: result.append(i * 8 + 5) + if byte & 0x40: result.append(i * 8 + 6) + if byte & 0x80: result.append(i * 8 + 7) + return result + +func equals(other) -> bool: + if other is _Bitset: + return other._bit_count == _bit_count and other._data == _data + else: + return false + +func _to_string() -> String: + if is_empty(): + return "Bitset(n=0)" + else: + var body := "" + for i in _bit_count: + if i != 0 and i % 4 == 0: + body += " " + if get_bit(i): body += "1" + else: body += "0" + return "Bitset(n=%d, %s)" % [_bit_count, body] diff --git a/addons/netfox.internals/bitset.gd.uid b/addons/netfox.internals/bitset.gd.uid new file mode 100644 index 0000000..141d9ae --- /dev/null +++ b/addons/netfox.internals/bitset.gd.uid @@ -0,0 +1 @@ +uid://c46ub48lgga12 diff --git a/addons/netfox.internals/graph.gd b/addons/netfox.internals/graph.gd new file mode 100644 index 0000000..8a15642 --- /dev/null +++ b/addons/netfox.internals/graph.gd @@ -0,0 +1,57 @@ +extends RefCounted +class_name _Graph + +# Represents a graph, in the sense of a set of nodes, arbitrarily connected by +# links + +var _links_from := {} # `from` to `to[]` +var _links_to := {} # `to` to `from[]` + +func link(from: Variant, to: Variant) -> void: + if has_link(from, to): + return + + _append(_links_from, from, to) + _append(_links_to, to, from) + +func unlink(from: Variant, to: Variant) -> void: + _erase(_links_from, from, to) + _erase(_links_to, to, from) + +func erase(node: Variant) -> void: + var links_to := _links_from.get(node, []) + var links_from := _links_to.get(node, []) + + _links_from.erase(node) + _links_to.erase(node) + + for link in links_to: + _erase(_links_to, link, node) + + for link in links_from: + _erase(_links_from, link, node) + +func get_linked_from(from: Variant) -> Array: + return _links_from.get(from, []) + +func get_linked_to(to: Variant) -> Array: + return _links_to.get(to, []) + +func has_link(from: Variant, to: Variant) -> bool: + return get_linked_from(from).has(to) + +func _append(pool: Dictionary, key: Variant, value: Variant) -> void: + if not pool.has(key): + pool[key] = [value] + else: + pool[key].append(value) + +func _erase(pool: Dictionary, key: Variant, value: Variant) -> void: + if not pool.has(key): + return + + var values := pool[key] as Array + values.erase(value) + + if values.is_empty(): + pool.erase(key) diff --git a/addons/netfox.internals/graph.gd.uid b/addons/netfox.internals/graph.gd.uid new file mode 100644 index 0000000..9fcfd69 --- /dev/null +++ b/addons/netfox.internals/graph.gd.uid @@ -0,0 +1 @@ +uid://djknl4n6akxue diff --git a/addons/netfox.internals/history-buffer.gd b/addons/netfox.internals/history-buffer.gd index 0ca8175..b2b7fde 100644 --- a/addons/netfox.internals/history-buffer.gd +++ b/addons/netfox.internals/history-buffer.gd @@ -1,70 +1,134 @@ extends RefCounted class_name _HistoryBuffer -# Maps ticks (int) to arbitrary data -var _buffer: Dictionary = {} +# Maps ticks (int) to arbitrary data, stored in a sliding ring buffer -func get_snapshot(tick: int): - if _buffer.has(tick): - return _buffer[tick] - else: - return null +var _capacity := 64 +var _buffer := [] +var _previous := [] -func set_snapshot(tick: int, data): - _buffer[tick] = data +var _tail := 0 +var _head := 0 -func get_buffer() -> Dictionary: - return _buffer +static func of(capacity: int, data: Dictionary) -> _HistoryBuffer: + var history_buffer := _HistoryBuffer.new(capacity) + for idx in data: + history_buffer.set_at(idx, data[idx]) + return history_buffer -func get_earliest_tick() -> int: - return _buffer.keys().min() +func _init(capacity: int = 64): + _capacity = capacity + _buffer.resize(_capacity) + _previous.resize(_capacity) -func get_latest_tick() -> int: - return _buffer.keys().max() +func duplicate(deep: bool = false) -> _HistoryBuffer: + var buffer := _HistoryBuffer.new(_capacity) -func get_closest_tick(tick: int) -> int: - if _buffer.has(tick): - return tick + buffer._buffer = _buffer.duplicate(deep) + buffer._previous = _previous.duplicate() + buffer._tail = _tail + buffer._head = _head - if _buffer.is_empty(): - return -1 + return buffer - var earliest_tick = get_earliest_tick() - if tick < earliest_tick: - return earliest_tick +func push(value: Variant) -> void: + _buffer[_head % _capacity] = value + _previous[_head % _capacity] = _head + _head += 1 + _tail += maxi(0, size() - capacity()) - var latest_tick = get_latest_tick() - if tick > latest_tick: - return latest_tick +func pop() -> Variant: + assert(is_not_empty(), "History buffer is empty!") - return _buffer.keys() \ - .filter(func (key): return key < tick) \ - .max() + var value = _buffer[_tail % _capacity] + _tail += 1 + return value -func get_history(tick: int): - var closest_tick = get_closest_tick(tick) - return _buffer.get(closest_tick) +func set_at(at: int, value: Variant) -> void: + # Why does this need so many branches? + if is_empty(): + # Buffer is empty, jump to specified index + _tail = at + _head = at + push(value) + elif at < _head - capacity(): + # Trying to set something that would wrap back around and overwrite + # current data + return + elif at == _head: + # Simply adding a new item + push(value) + elif at < _head: + _buffer[at % _capacity] = value + # Update prev-buffer + for i in range(at, _head): + if _previous[i % _capacity] == i: + break + _previous[i % _capacity] = at + _tail = mini(_tail, at) + elif at >= _head + _capacity: + # We're leaving all data behind + _tail = at + _head = at -func trim(earliest_tick_to_keep: int): - var ticks := _buffer.keys() - for tick in ticks: - if tick < earliest_tick_to_keep: - _buffer.erase(tick) + _previous.fill(null) + _buffer.fill(null) -func clear(): - _buffer.clear() + push(value) + elif at >= _head: + # Skipping forward a bit + var previous := _head - 1 + while _head < at: + _previous[_head % _capacity] = previous + _head += 1 + _tail += maxi(0, size() - _capacity) + + push(value) + +func has_at(at: int) -> bool: + if is_empty(): return false + if at < _head - capacity(): return false + if at >= _head: return false + return _previous[at % _capacity] == at + +func get_at(at: int, default: Variant = null) -> Variant: + if not has_at(at): + return default + return _buffer[at % _capacity] + +func has_latest_at(at: int) -> bool: + if is_empty(): return false + if at < _tail: return false + return true func size() -> int: - return _buffer.size() + return _head - _tail + +func capacity() -> int: + return _capacity + +func get_earliest_index() -> int: + return _tail + +func get_latest_index() -> int: + return _head - 1 + +func get_latest_index_at(at: int) -> int: + if not has_latest_at(at): + return -1 + if at >= _head: + return get_latest_index() + + return _previous[at % _capacity] + +func get_latest_at(at: int) -> Variant: + return get_at(get_latest_index_at(at)) + +func clear(): + _tail = _head func is_empty() -> bool: - return _buffer.is_empty() + return size() == 0 -func has(tick) -> bool: - return _buffer.has(tick) - -func ticks() -> Array: - return _buffer.keys() - -func erase(tick): - _buffer.erase(tick) +func is_not_empty() -> bool: + return not is_empty() diff --git a/addons/netfox.internals/interval-scheduler.gd b/addons/netfox.internals/interval-scheduler.gd new file mode 100644 index 0000000..d218848 --- /dev/null +++ b/addons/netfox.internals/interval-scheduler.gd @@ -0,0 +1,22 @@ +extends RefCounted +class_name _IntervalScheduler + +# Returns true on every nth `is_now()` call + +var interval := 1 +var _idx := 0 + +func _init(p_interval: int = 1): + interval = p_interval + +func is_now() -> bool: + if interval <= 0: + return false + elif interval == 1: + return true + elif _idx + 1 >= interval: + _idx = 0 + return true + else: + _idx += 1 + return false diff --git a/addons/netfox.internals/interval-scheduler.gd.uid b/addons/netfox.internals/interval-scheduler.gd.uid new file mode 100644 index 0000000..2b0ef97 --- /dev/null +++ b/addons/netfox.internals/interval-scheduler.gd.uid @@ -0,0 +1 @@ +uid://egfuyvoj0r2s diff --git a/addons/netfox.internals/plugin.cfg b/addons/netfox.internals/plugin.cfg index ad1ba0b..b682881 100644 --- a/addons/netfox.internals/plugin.cfg +++ b/addons/netfox.internals/plugin.cfg @@ -3,5 +3,5 @@ name="netfox.internals" description="Shared internals for netfox addons" author="Tamas Galffy and contributors" -version="1.35.3" +version="1.40.2" script="plugin.gd" diff --git a/addons/netfox.internals/set.gd b/addons/netfox.internals/set.gd index aaaa21b..20d337c 100644 --- a/addons/netfox.internals/set.gd +++ b/addons/netfox.internals/set.gd @@ -10,6 +10,11 @@ static func of(items: Array) -> _Set: result.add(item) return result +func duplicate(deep: bool = false) -> _Set: + var result := _Set.new() + result._data = _data.duplicate(deep) + return result + func add(value): _data[value] = true @@ -46,6 +51,9 @@ func equals(other) -> bool: func _to_string(): return "Set" + str(values()) +func _to_vest(): + return _data.keys() + func _iter_init(arg) -> bool: _iterator_idx = 0 return _can_iterate() diff --git a/addons/netfox.noray/CONTRIBUTORS.md b/addons/netfox.noray/CONTRIBUTORS.md deleted file mode 100644 index bf54ceb..0000000 --- a/addons/netfox.noray/CONTRIBUTORS.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributors - -This addon, and the entirety of [netfox] is a shared effort of [Fox's Sake -Studio], and the community. The following is the list of community contributors -involved with netfox: - -* Alberto Klocker -* Andrew Davis -* Bryan Lee <42545742+bryanmylee@users.noreply.github.com> -* Dan Schuman -* Dustie <77035922+DustieDog@users.noreply.github.com> -* Eric Volpone -* Gordon MacPherson -* Jake Cattrall -* Jon Stevens <1030863+jonstvns@users.noreply.github.com> -* Joseph Michael Ware <9at25jnr3@mozmail.com> -* Matias Kumpulainen -* Nicolas Batty -* Ricky <77863853+RickyYCheng@users.noreply.github.com> -* Riordan-DC <44295008+Riordan-DC@users.noreply.github.com> -* Russ <622740+russ-@users.noreply.github.com> -* Ryan Roden-Corrent -* TheYellowArchitect -* TheYellowArchitect -* camperotactico -* gk98s <89647115+gk98s@users.noreply.github.com> -* zibetnu <9at25jnr3@mozmail.com> - -[netfox]: https://github.com/foxssake/netfox -[Fox's Sake Studio]: https://github.com/foxssake/ - diff --git a/addons/netfox.noray/README.md b/addons/netfox.noray/README.md index 0e598f6..5a5dbe7 100644 --- a/addons/netfox.noray/README.md +++ b/addons/netfox.noray/README.md @@ -20,7 +20,7 @@ See the root [README](../../README.md). ## Usage -See the [docs](https://foxssake.github.io/netfox/netfox.noray/guides/noray/). +See the [docs](https://foxssake.github.io/netfox/latest/netfox.noray/guides/noray/). For a full example, see [noray-bootstrapper.gd]. diff --git a/addons/netfox.noray/netfox-noray.gd b/addons/netfox.noray/netfox-noray.gd index 81abe18..c424b2c 100644 --- a/addons/netfox.noray/netfox-noray.gd +++ b/addons/netfox.noray/netfox-noray.gd @@ -23,7 +23,8 @@ func _enter_tree(): add_setting(setting) for autoload in AUTOLOADS: - add_autoload_singleton(autoload.name, autoload.path) + if not has_autoload(autoload.name): + add_autoload_singleton(autoload.name, autoload.path) func _exit_tree(): if ProjectSettings.get_setting("netfox/general/clear_settings", false): @@ -31,7 +32,8 @@ func _exit_tree(): remove_setting(setting) for autoload in AUTOLOADS: - remove_autoload_singleton(autoload.name) + if has_autoload(autoload.name): + remove_autoload_singleton(autoload.name) func add_setting(setting: Dictionary): if ProjectSettings.has_setting(setting.name): @@ -51,3 +53,6 @@ func remove_setting(setting: Dictionary): return ProjectSettings.clear(setting.name) + +func has_autoload(name: String) -> bool: + return ProjectSettings.has_setting("autoload/" + name) diff --git a/addons/netfox.noray/plugin.cfg b/addons/netfox.noray/plugin.cfg index a5bfc19..7df5622 100644 --- a/addons/netfox.noray/plugin.cfg +++ b/addons/netfox.noray/plugin.cfg @@ -3,5 +3,5 @@ name="netfox.noray" description="Bulletproof your connectivity with noray integration for netfox" author="Tamas Galffy and contributors" -version="1.35.3" +version="1.40.2" script="netfox-noray.gd" diff --git a/addons/netfox/CONTRIBUTORS.md b/addons/netfox/CONTRIBUTORS.md deleted file mode 100644 index bf54ceb..0000000 --- a/addons/netfox/CONTRIBUTORS.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributors - -This addon, and the entirety of [netfox] is a shared effort of [Fox's Sake -Studio], and the community. The following is the list of community contributors -involved with netfox: - -* Alberto Klocker -* Andrew Davis -* Bryan Lee <42545742+bryanmylee@users.noreply.github.com> -* Dan Schuman -* Dustie <77035922+DustieDog@users.noreply.github.com> -* Eric Volpone -* Gordon MacPherson -* Jake Cattrall -* Jon Stevens <1030863+jonstvns@users.noreply.github.com> -* Joseph Michael Ware <9at25jnr3@mozmail.com> -* Matias Kumpulainen -* Nicolas Batty -* Ricky <77863853+RickyYCheng@users.noreply.github.com> -* Riordan-DC <44295008+Riordan-DC@users.noreply.github.com> -* Russ <622740+russ-@users.noreply.github.com> -* Ryan Roden-Corrent -* TheYellowArchitect -* TheYellowArchitect -* camperotactico -* gk98s <89647115+gk98s@users.noreply.github.com> -* zibetnu <9at25jnr3@mozmail.com> - -[netfox]: https://github.com/foxssake/netfox -[Fox's Sake Studio]: https://github.com/foxssake/ - diff --git a/addons/netfox/encoder/diff-history-encoder.gd b/addons/netfox/encoder/diff-history-encoder.gd deleted file mode 100644 index 221e76a..0000000 --- a/addons/netfox/encoder/diff-history-encoder.gd +++ /dev/null @@ -1,136 +0,0 @@ -extends RefCounted -class_name _DiffHistoryEncoder - -var _history: _PropertyHistoryBuffer -var _property_cache: PropertyCache - -var _full_snapshot := {} -var _encoded_snapshot := {} - -var _property_indexes := _BiMap.new() - -var _version := 0 -var _has_received := false - -static var _logger := NetfoxLogger._for_netfox("DiffHistoryEncoder") - -func _init(p_history: _PropertyHistoryBuffer, p_property_cache: PropertyCache): - _history = p_history - _property_cache = p_property_cache - -func add_properties(properties: Array[PropertyEntry]) -> void: - var has_new_properties := false - - for property_entry in properties: - var is_new := _ensure_property_idx(property_entry.to_string()) - has_new_properties = has_new_properties or is_new - - # If we added any new properties, increment version - if has_new_properties: - _version = (_version + 1) % 256 - -func encode(tick: int, reference_tick: int, properties: Array[PropertyEntry]) -> PackedByteArray: - assert(properties.size() <= 255, "Property indices may not fit into bytes!") - - var snapshot := _history.get_snapshot(tick) - var property_strings := properties.map(func(it): return it.to_string()) - - var reference_snapshot := _history.get_history(reference_tick) - var diff_snapshot := reference_snapshot.make_patch(snapshot) - - _full_snapshot = snapshot.as_dictionary() - _encoded_snapshot = diff_snapshot.as_dictionary() - - if diff_snapshot.is_empty(): - return PackedByteArray() - - var buffer := StreamPeerBuffer.new() - buffer.put_u8(_version) - - for property in diff_snapshot.properties(): - var property_idx := _property_indexes.get_by_value(property) as int - var property_value = diff_snapshot.get_value(property) - - buffer.put_u8(property_idx) - buffer.put_var(property_value) - - return buffer.data_array - -func decode(data: PackedByteArray, properties: Array[PropertyEntry]) -> _PropertySnapshot: - var result := _PropertySnapshot.new() - - if data.is_empty(): - return result - - var buffer := StreamPeerBuffer.new() - buffer.data_array = data - - var packet_version := buffer.get_u8() - if packet_version != _version: - if not _has_received: - # This is the first time we receive data - # Assume the version is OK - _version = packet_version - else: - # Since we don't remove entries, only add, we can still parse what - # we can - _logger.warning("Property config version mismatch - own %d != received %d", [_version, packet_version]) - - _has_received = true - - while buffer.get_available_bytes() > 0: - var property_idx := buffer.get_u8() - var property_value := buffer.get_var() - if not _property_indexes.has_key(property_idx): - _logger.warning("Received unknown property index %d, ignoring!", [property_idx]) - continue - - var property_entry := _property_indexes.get_by_key(property_idx) - result.set_value(property_entry, property_value) - - return result - -func apply(tick: int, snapshot: _PropertySnapshot, reference_tick: int, sender: int = -1) -> bool: - if tick < NetworkRollback.history_start: - # State too old! - _logger.error( - "Received diff snapshot for @%d, rejecting because older than %s frames", - [tick, NetworkRollback.history_limit] - ) - return false - - if snapshot.is_empty(): - return true - - if sender > 0: - snapshot.sanitize(sender, _property_cache) - if snapshot.is_empty(): - _logger.warning("Received invalid diff from #%s for @%s", [sender, tick]) - return false - - if not _history.has(reference_tick): - # Reference tick missing, hope for the best - _logger.warning("Reference tick %d missing for #%s applying %d", [reference_tick, sender, tick]) - - var reference_snapshot := _history.get_snapshot(reference_tick) - _history.set_snapshot(tick, reference_snapshot.merge(snapshot)) - return true - -# TODO: Rework metrics so these are not needed -func get_encoded_snapshot() -> Dictionary: - return _encoded_snapshot - -func get_full_snapshot() -> Dictionary: - return _full_snapshot - -func _ensure_property_idx(property: String) -> bool: - if _property_indexes.has_value(property): - return false - - assert(_property_indexes.size() < 256, "Property index map is full, can't add new property!") - var idx := hash(property) % 256 - while _property_indexes.has_key(idx): - idx = hash(idx + 1) % 256 - _property_indexes.put(idx, property) - - return true diff --git a/addons/netfox/encoder/diff-history-encoder.gd.uid b/addons/netfox/encoder/diff-history-encoder.gd.uid deleted file mode 100644 index 67ae0a9..0000000 --- a/addons/netfox/encoder/diff-history-encoder.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dc73evbedbmvs diff --git a/addons/netfox/encoder/redundant-history-encoder.gd b/addons/netfox/encoder/redundant-history-encoder.gd deleted file mode 100644 index 8ba510e..0000000 --- a/addons/netfox/encoder/redundant-history-encoder.gd +++ /dev/null @@ -1,116 +0,0 @@ -extends RefCounted -class_name _RedundantHistoryEncoder - -var redundancy: int = 4: - get = get_redundancy, - set = set_redundancy - -var _history: _PropertyHistoryBuffer -var _properties: Array[PropertyEntry] -var _property_cache: PropertyCache - -var _version := 0 -var _has_received := false - -var _logger := NetfoxLogger._for_netfox("RedundantHistoryEncoder") - -func get_redundancy() -> int: - return redundancy - -func set_redundancy(p_redundancy: int): - if p_redundancy <= 0: - _logger.warning( - "Attempting to set redundancy to %d, which would send no data!", [p_redundancy] - ) - return - - redundancy = p_redundancy - -func set_properties(properties: Array[PropertyEntry]) -> void: - if _properties != properties: - _version = (_version + 1) % 256 - _properties = properties.duplicate() - -func encode(tick: int, properties: Array[PropertyEntry]) -> Array: - if _history.is_empty(): - return [] - var data := [] - - for i in range(mini(redundancy, _history.size())): - var offset_tick := tick - i - if offset_tick < _history.get_earliest_tick(): - break - - var snapshot := _history.get_snapshot(offset_tick) - for property in properties: - data.append(snapshot.get_value(property.to_string())) - - data.append(_version) - return data - -func decode(data: Array, properties: Array[PropertyEntry]) -> Array[_PropertySnapshot]: - if data.is_empty() or properties.is_empty(): - return [] - - var packet_version := data.pop_back() as int - - if packet_version != _version: - if not _has_received: - # First packet, assume version is OK - _version = packet_version - else: - # Version mismatch, can't parse - _logger.warning("Version mismatch! own: %d, received: %s", [_version, packet_version]) - return [] - - var result: Array[_PropertySnapshot] = [] - var redundancy := data.size() / properties.size() - result.assign(range(redundancy) - .map(func(__): return _PropertySnapshot.new()) - ) - - for i in range(data.size()): - var offset_idx := i / properties.size() - var prop_idx := i % properties.size() - - result[offset_idx].set_value(properties[prop_idx].to_string(), data[i]) - - _has_received = true - - return result - -# Returns earliest new tick as int, or -1 if no new ticks applied -func apply(tick: int, snapshots: Array[_PropertySnapshot], sender: int = 0) -> int: - var earliest_new_tick = -1 - - for i in range(snapshots.size()): - var offset_tick := tick - i - var snapshot := snapshots[i] - - if offset_tick < NetworkRollback.history_start: - # Data too old - _logger.warning( - "Received data for %s, rejecting because older than %s frames", - [offset_tick, NetworkRollback.history_limit] - ) - continue - - if sender > 0: - snapshot.sanitize(sender, _property_cache) - if snapshot.is_empty(): - # No valid properties ( probably after sanitize ) - _logger.warning("Received invalid data from %d for tick %d", [sender, tick]) - continue - - var known_snapshot := _history.get_snapshot(offset_tick) - if not known_snapshot.equals(snapshot): - # Received a new snapshot, store and emit signal - _history.set_snapshot(offset_tick, snapshot) - earliest_new_tick = offset_tick - - return earliest_new_tick - - -func _init(p_history: _PropertyHistoryBuffer, p_property_cache: PropertyCache): - _history = p_history - _property_cache = p_property_cache diff --git a/addons/netfox/encoder/redundant-history-encoder.gd.uid b/addons/netfox/encoder/redundant-history-encoder.gd.uid deleted file mode 100644 index fd830c3..0000000 --- a/addons/netfox/encoder/redundant-history-encoder.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ytn07qahpatv diff --git a/addons/netfox/encoder/snapshot-history-encoder.gd b/addons/netfox/encoder/snapshot-history-encoder.gd deleted file mode 100644 index 24e6ae1..0000000 --- a/addons/netfox/encoder/snapshot-history-encoder.gd +++ /dev/null @@ -1,67 +0,0 @@ -extends RefCounted -class_name _SnapshotHistoryEncoder - -var _history: _PropertyHistoryBuffer -var _property_cache: PropertyCache -var _properties: Array[PropertyEntry] - -var _version := -1 -var _has_received := false - -static var _logger := NetfoxLogger._for_netfox("_SnapshotHistoryEncoder") - -func _init(p_history: _PropertyHistoryBuffer, p_property_cache: PropertyCache): - _history = p_history - _property_cache = p_property_cache - -func set_properties(properties: Array[PropertyEntry]) -> void: - if _properties != properties: - _version = (_version + 1) % 256 - _properties = properties.duplicate() - -func encode(tick: int, properties: Array[PropertyEntry]) -> Array: - var snapshot := _history.get_snapshot(tick) - var data := [] - data.resize(properties.size()) - - for i in range(properties.size()): - data[i] = snapshot.get_value(properties[i].to_string()) - data.append(_version) - - return data - -func decode(data: Array, properties: Array[PropertyEntry]) -> _PropertySnapshot: - var result := _PropertySnapshot.new() - var packet_version = data.pop_back() - - if packet_version != _version: - if not _has_received: - # First packet, assume version is OK - _version = packet_version - else: - # Version mismatch, can't parse - _logger.warning("Version mismatch! own: %d, received: %s", [_version, packet_version]) - return result - - if properties.size() != data.size(): - _logger.warning("Received snapshot with %d entries, with %d known - parsing as much as possible", [data.size(), properties.size()]) - - for i in range(0, mini(data.size(), properties.size())): - result.set_value(properties[i].to_string(), data[i]) - - _has_received = true - - return result - -func apply(tick: int, snapshot: _PropertySnapshot, sender: int = -1) -> bool: - if tick < NetworkRollback.history_start: - # State too old! - _logger.error("Received full snapshot for %s, rejecting because older than %s frames", [tick, NetworkRollback.history_limit]) - return false - - if sender > 0: - snapshot.sanitize(sender, _property_cache) - if snapshot.is_empty(): return false - - _history.set_snapshot(tick, snapshot) - return true diff --git a/addons/netfox/encoder/snapshot-history-encoder.gd.uid b/addons/netfox/encoder/snapshot-history-encoder.gd.uid deleted file mode 100644 index e1d588f..0000000 --- a/addons/netfox/encoder/snapshot-history-encoder.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dwhlghjsgdy4o diff --git a/addons/netfox/icons/predictive-synchronizer.svg b/addons/netfox/icons/predictive-synchronizer.svg new file mode 100644 index 0000000..3067361 --- /dev/null +++ b/addons/netfox/icons/predictive-synchronizer.svg @@ -0,0 +1,124 @@ + + + + + + + + + + diff --git a/addons/netfox/icons/predictive-synchronizer.svg.import b/addons/netfox/icons/predictive-synchronizer.svg.import new file mode 100644 index 0000000..2937087 --- /dev/null +++ b/addons/netfox/icons/predictive-synchronizer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsr2mjcr1lh6v" +path="res://.godot/imported/predictive-synchronizer.svg-c1a256fe714777cb768d64b354a43e2b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox/icons/predictive-synchronizer.svg" +dest_files=["res://.godot/imported/predictive-synchronizer.svg-c1a256fe714777cb768d64b354a43e2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox/icons/rewindable-action.svg.import b/addons/netfox/icons/rewindable-action.svg.import new file mode 100644 index 0000000..842a08e --- /dev/null +++ b/addons/netfox/icons/rewindable-action.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy3qj4jbh0enm" +path="res://.godot/imported/rewindable-action.svg-2eb32b564a2fe4ecb8b77ec5b55683ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox/icons/rewindable-action.svg" +dest_files=["res://.godot/imported/rewindable-action.svg-2eb32b564a2fe4ecb8b77ec5b55683ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox/icons/rollback-synchronizer.svg.import b/addons/netfox/icons/rollback-synchronizer.svg.import new file mode 100644 index 0000000..1d13bd0 --- /dev/null +++ b/addons/netfox/icons/rollback-synchronizer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csg26ysqqb4xe" +path="res://.godot/imported/rollback-synchronizer.svg-99c6071e1009de5a35a481b2f486c380.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox/icons/rollback-synchronizer.svg" +dest_files=["res://.godot/imported/rollback-synchronizer.svg-99c6071e1009de5a35a481b2f486c380.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox/icons/state-synchronizer.svg.import b/addons/netfox/icons/state-synchronizer.svg.import new file mode 100644 index 0000000..dba30f2 --- /dev/null +++ b/addons/netfox/icons/state-synchronizer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ogbi1hffcoyh" +path="res://.godot/imported/state-synchronizer.svg-9cb9447ba79f114a58e468a24d17b860.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox/icons/state-synchronizer.svg" +dest_files=["res://.godot/imported/state-synchronizer.svg-9cb9447ba79f114a58e468a24d17b860.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox/icons/tick-interpolator.svg.import b/addons/netfox/icons/tick-interpolator.svg.import new file mode 100644 index 0000000..9c00faf --- /dev/null +++ b/addons/netfox/icons/tick-interpolator.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpaqxcohxtb68" +path="res://.godot/imported/tick-interpolator.svg-c60124cd7d287f516c89a6022efef330.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/netfox/icons/tick-interpolator.svg" +dest_files=["res://.godot/imported/tick-interpolator.svg-c60124cd7d287f516c89a6022efef330.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/netfox/netfox.gd b/addons/netfox/netfox.gd index dfdfcd5..546f754 100644 --- a/addons/netfox/netfox.gd +++ b/addons/netfox/netfox.gd @@ -10,6 +10,11 @@ var SETTINGS: Array[Dictionary] = [ "value": true, "type": TYPE_BOOL }, + { + "name": "netfox/general/use_raw_commands", + "value": false, + "type": TYPE_BOOL + }, # Logging NetfoxLogger._make_setting("netfox/logging/netfox_log_level"), # Time settings @@ -112,11 +117,41 @@ var SETTINGS: Array[Dictionary] = [ "hint": PROPERTY_HINT_RANGE, "hint_string": "0,4,or_greater" }, + { + "name": "netfox/rollback/enable_input_broadcast", + "value": false, + "type": TYPE_BOOL + }, { "name": "netfox/rollback/enable_diff_states", "value": true, "type": TYPE_BOOL }, + { + "name": "netfox/rollback/full_state_interval", + "value": 24, + "type": TYPE_INT, + "hint": PROPERTY_HINT_RANGE, + "hint_string": "0,60,or_greater" + }, + # StateSynchronizer + { + "name": "netfox/state_synchronizer/enable_diff_states", + "value": true, + "type": TYPE_BOOL + }, + { + "name": "netfox/state_synchronizer/history_limit", + "value": 64, + "type": TYPE_INT + }, + { + "name": "netfox/state_synchronizer/full_state_interval", + "value": 24, + "type": TYPE_INT, + "hint": PROPERTY_HINT_RANGE, + "hint_string": "0,60,or_greater" + }, # Events { "name": "netfox/events/enabled", @@ -145,6 +180,26 @@ const AUTOLOADS: Array[Dictionary] = [ { "name": "NetworkPerformance", "path": ROOT + "/network-performance.gd" + }, + { + "name": "RollbackSimulationServer", + "path": ROOT + "/servers/rollback-simulation-server.gd" + }, + { + "name": "NetworkHistoryServer", + "path": ROOT + "/servers/network-history-server.gd" + }, + { + "name": "NetworkSynchronizationServer", + "path": ROOT + "/servers/network-synchronization-server.gd" + }, + { + "name": "NetworkIdentityServer", + "path": ROOT + "/servers/network-identity-server.gd" + }, + { + "name": "NetworkCommandServer", + "path": ROOT + "/servers/network-command-server.gd" } ] @@ -173,15 +228,22 @@ const TYPES: Array[Dictionary] = [ "script": ROOT + "/rewindable-action.gd", "icon": ROOT + "/icons/rewindable-action.svg" }, + { + "name": "PredictiveSynchronizer", + "base": "Node", + "script": ROOT + "/rollback/predictive-synchronizer.gd", + "icon": ROOT + "/icons/predictive-synchronizer.svg" + }, ] func _enter_tree(): for setting in SETTINGS: add_setting(setting) - + for autoload in AUTOLOADS: - add_autoload_singleton(autoload.name, autoload.path) - + if not has_autoload(autoload.name): + add_autoload_singleton(autoload.name, autoload.path) + for type in TYPES: add_custom_type(type.name, type.base, load(type.script), load(type.icon)) @@ -189,10 +251,11 @@ func _exit_tree() -> void: if ProjectSettings.get_setting(&"netfox/general/clear_settings", false): for setting in SETTINGS: remove_setting(setting) - + for autoload in AUTOLOADS: - remove_autoload_singleton(autoload.name) - + if has_autoload(autoload.name): + remove_autoload_singleton(autoload.name) + for type in TYPES: remove_custom_type(type.name) @@ -212,5 +275,8 @@ func add_setting(setting: Dictionary) -> void: func remove_setting(setting: Dictionary) -> void: if not ProjectSettings.has_setting(setting.name): return - + ProjectSettings.clear(setting.name) + +func has_autoload(name: String) -> bool: + return ProjectSettings.has_setting("autoload/" + name) diff --git a/addons/netfox/network-performance.gd b/addons/netfox/network-performance.gd index 7de8a0b..1fa9195 100644 --- a/addons/netfox/network-performance.gd +++ b/addons/netfox/network-performance.gd @@ -106,12 +106,18 @@ func get_sent_state_props_ratio() -> float: func push_full_state(state: Dictionary) -> void: _full_state_props_accum += state.size() +func push_full_state_props(count: int) -> void: + _full_state_props_accum += count + func push_full_state_broadcast(state: Dictionary) -> void: _full_state_props_accum += state.size() * (multiplayer.get_peers().size() - 1) func push_sent_state(state: Dictionary) -> void: _sent_state_props_accum += state.size() +func push_sent_state_props(count: int) -> void: + _sent_state_props_accum += count + func push_sent_state_broadcast(state: Dictionary) -> void: _sent_state_props_accum += state.size() * (multiplayer.get_peers().size() - 1) diff --git a/addons/netfox/network-time-synchronizer.gd b/addons/netfox/network-time-synchronizer.gd index 7f591da..2a97934 100644 --- a/addons/netfox/network-time-synchronizer.gd +++ b/addons/netfox/network-time-synchronizer.gd @@ -115,6 +115,11 @@ var _offset: float = 0. var _rtt: float = 0. var _rtt_jitter: float = 0. +@onready var _cmd_ping := NetworkCommandServer.register_command(_handle_ping, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) +@onready var _cmd_pong := NetworkCommandServer.register_command(_handle_pong, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) +@onready var _cmd_req_time := NetworkCommandServer.register_command(_handle_request_timestamp, MultiplayerPeer.TRANSFER_MODE_RELIABLE) +@onready var _cmd_set_time := NetworkCommandServer.register_command(_handle_set_timestamp, MultiplayerPeer.TRANSFER_MODE_RELIABLE) + ## Emitted after the initial time sync. ## ## At the start of the game, clients request an initial timestamp to kickstart @@ -145,7 +150,7 @@ func start() -> void: _sample_idx = 0 _sample_buffer = _RingBuffer.new(sync_samples) - _request_timestamp.rpc_id(1) + _cmd_req_time.send(PackedByteArray(), 1) ## Stop the time synchronization loop. func stop() -> void: @@ -169,7 +174,7 @@ func _loop() -> void: _awaiting_samples[_sample_idx] = sample sample.ping_sent = _clock.get_time() - _send_ping.rpc_id(1, _sample_idx) + _cmd_ping.send(var_to_bytes(_sample_idx), 1) _sample_idx += 1 @@ -235,15 +240,19 @@ func _discipline_clock() -> void: _offset = offset - nudge -@rpc("any_peer", "call_remote", "unreliable") -func _send_ping(idx: int) -> void: +func _handle_ping(sender: int, data: PackedByteArray) -> void: + var idx := bytes_to_var(data) as int var ping_received := _clock.get_time() - var sender := multiplayer.get_remote_sender_id() - _send_pong.rpc_id(sender, idx, ping_received, _clock.get_time()) + _cmd_pong.send(var_to_bytes([idx, ping_received, _clock.get_time()]), sender) + +func _handle_pong(sender: int, data: PackedByteArray) -> void: + var args := bytes_to_var(data) + + var idx := args[0] as int + var ping_received := args[1] as float + var pong_sent := args[2] as float -@rpc("any_peer", "call_remote", "unreliable") -func _send_pong(idx: int, ping_received: float, pong_sent: float) -> void: var pong_received := _clock.get_time() if not _awaiting_samples.has(idx): @@ -264,13 +273,13 @@ func _send_pong(idx: int, ping_received: float, pong_sent: float) -> void: # Discipline clock based on new sample _discipline_clock() -@rpc("any_peer", "call_remote", "reliable") -func _request_timestamp() -> void: +func _handle_request_timestamp(sender: int, data: PackedByteArray) -> void: _logger.debug("Requested initial timestamp @ %.4fs raw time", [_clock.get_raw_time()]) - _set_timestamp.rpc_id(multiplayer.get_remote_sender_id(), _clock.get_time()) + _cmd_set_time.send(var_to_bytes(_clock.get_time()), sender) + +func _handle_set_timestamp(sender: int, data: PackedByteArray) -> void: + var timestamp := bytes_to_var(data) as float -@rpc("any_peer", "call_remote", "reliable") -func _set_timestamp(timestamp: float) -> void: _logger.debug("Received initial timestamp @ %.4fs raw time", [_clock.get_raw_time()]) _clock.set_time(timestamp) _loop() diff --git a/addons/netfox/network-time.gd b/addons/netfox/network-time.gd index af6ef34..14ae42e 100644 --- a/addons/netfox/network-time.gd +++ b/addons/netfox/network-time.gd @@ -19,7 +19,7 @@ var tickrate: int: ## Whether to sync the network ticks to physics updates. ## -## When set to true, tickrate will be the same as the physics ticks per second, +## When set to true, tickrate will be the same as the physics ticks per second, ## and the network tick loop will be run inside the physics update process. ## ## [i]read-only[/i], you can change this in the project settings @@ -33,7 +33,7 @@ var sync_to_physics: bool: ## ## If the game itself runs slower than the configured tickrate, multiple ticks ## will be run in a single go. However, to avoid an endless feedback loop of -## running too many ticks in a frame, which makes the game even slower, which +## running too many ticks in a frame, which makes the game even slower, which ## results in even more ticks and so on, this setting is an upper limit on how ## many ticks can be simulated in a single go. ## @@ -51,7 +51,7 @@ var max_ticks_per_frame: int: ## ## Use this value in cases where timestamps need to be shared with the server. ## -## [i]Note:[/i] Time is continuously synced with the server. If the difference +## [i]Note:[/i] Time is continuously synced with the server. If the difference ## between local and server time is above a certain threshold, this value will ## be adjusted. ## @@ -72,7 +72,7 @@ var time: float: ## ## Use this value in cases where timestamps need to be shared with the server. ## -## [i]Note:[/i] Time is continuously synced with the server. If the difference +## [i]Note:[/i] Time is continuously synced with the server. If the difference ## between local and server time is above a certain threshold, this value will ## be adjusted. ## @@ -88,7 +88,7 @@ var tick: int: ## Threshold before recalibrating [member tick] and [member time]. ## -## Time is continuously synced to the server. In case the time difference is +## Time is continuously synced to the server. In case the time difference is ## excessive between local and the server, both [code]tick[/code] and ## [code]time[/code] will be reset to the estimated server values. ## [br][br] @@ -119,7 +119,7 @@ var stall_threshold: float: ## Current network time in ticks on the server. ## -## This is value is only an estimate, and is regularly updated. This means that +## This is value is only an estimate, and is regularly updated. This means that ## this value can and probably will change depending on network conditions. ## [br][br] ## [i]read-only[/i] @@ -133,7 +133,7 @@ var remote_tick: int: ## Current network time in seconds on the server. ## -## This is value is only an estimate, and is regularly updated. This means that +## This is value is only an estimate, and is regularly updated. This means that ## this value can and probably will change depending on network conditions. ## [br][br] ## [i]read-only[/i] @@ -147,8 +147,8 @@ var remote_time: float: ## Estimated roundtrip time to server. ## -## This value is updated regularly, during server time sync. Latency can be -## estimated as half of the roundtrip time. Returns the same as [member +## This value is updated regularly, during server time sync. Latency can be +## estimated as half of the roundtrip time. Returns the same as [member ## _NetworkTimeSynchronizer.rtt]. ## [br][br] ## Will always be 0 on servers. @@ -163,7 +163,7 @@ var remote_rtt: float: ## Current network time in ticks. ## ## On clients, this value is synced to the server [i]only once[/i] when joining -## the game. After that, it will increase monotonically, incrementing every +## the game. After that, it will increase monotonically, incrementing every ## single tick. ## [br][br] ## When hosting, this value is simply the number of ticks since game start. @@ -183,7 +183,7 @@ var local_tick: int: ## Current network time in seconds. ## ## On clients, this value is synced to the server [i]only once[/i] when joining -## the game. After that, it will increase monotonically, incrementing every +## the game. After that, it will increase monotonically, incrementing every ## single tick. ## [br][br] ## When hosting, this value is simply the seconds elapsed since game start. @@ -199,7 +199,7 @@ var local_time: float: return time set(v): push_error("Trying to set read-only variable local_time") - + ## Amount of time a single tick takes, in seconds. ## @@ -231,13 +231,13 @@ var tick_factor: float: ## Multiplier to get from physics process speeds to tick speeds. ## ## Some methods, like CharacterBody's move_and_slide take velocity in units/sec -## and figure out the time delta on their own. However, they are not aware of +## and figure out the time delta on their own. However, they are not aware of ## netfox's time, so motion is all wrong in a network tick. For example, the -## network ticks run at 30 fps, while the game is running at 60fps, thus +## network ticks run at 30 fps, while the game is running at 60fps, thus ## move_and_slide will also assume that it's running on 60fps, resulting in ## slower than expected movement. ## -## To circument this, you can multiply any velocities with this variable, and +## To circument this, you can multiply any velocities with this variable, and ## get the desired speed. Don't forget to then divide by this value if it's a ## persistent variable ( e.g. CharacterBody's velocity ). ## @@ -256,9 +256,9 @@ var physics_factor: float: ## The maximum clock stretch factor allowed. ## -## For more context on clock stretch, see [member clock_stretch_factor]. The -## minimum allowed clock stretch factor is derived as 1.0 / clock_stretch_max. -## Setting this to larger values will allow for quicker clock adjustment at the +## For more context on clock stretch, see [member clock_stretch_factor]. The +## minimum allowed clock stretch factor is derived as 1.0 / clock_stretch_max. +## Setting this to larger values will allow for quicker clock adjustment at the ## cost of bigger deviations in game speed. ## [br][br] ## Make sure to adjust this value based on the game's needs. @@ -286,7 +286,7 @@ var suppress_offline_peer_warning: bool: ## to catch up. When the remote clock is ahead of the simulation clock, the game ## will run slightly faster to catch up with the remote clock. ## [br][br] -## This value indicates the current clock speed multiplier. Values over 1.0 +## This value indicates the current clock speed multiplier. Values over 1.0 ## indicate speeding up, under 1.0 indicate slowing down. ## [br][br] ## See [member clock_stretch_max] for clock stretch bounds.[br] @@ -300,7 +300,7 @@ var clock_stretch_factor: float: ## The current estimated offset between the reference clock and the simulation ## clock. -## +## ## Positive values mean the simulation clock is behind, and needs to run ## slightly faster to catch up. Negative values mean the simulation clock is ## ahead, and needs to slow down slightly. @@ -316,7 +316,7 @@ var clock_offset: float: ## The current estimated offset between the reference clock and the remote ## clock. ## -## Positive values mean the reference clock is behind the remote clock. +## Positive values mean the reference clock is behind the remote clock. ## Negative values mean the reference clock is ahead of the remote clock. ## [br][br] ## Returns the same as [member _NetworkTimeSynchronizer.remote_offset]. @@ -426,21 +426,21 @@ func start() -> int: # Reset state _tick = 0 _initial_sync_done = false - + # Host is always synced, as their time is considered ground truth _synced_peers[1] = true # Start sync NetworkTimeSynchronizer.start() _state = _STATE_SYNCING - + if not multiplayer.is_server(): await NetworkTimeSynchronizer.on_initial_sync _tick = seconds_to_ticks(NetworkTimeSynchronizer.get_time()) _initial_sync_done = true _state = _STATE_ACTIVE - + _submit_sync_success.rpc() else: _state = _STATE_ACTIVE @@ -462,13 +462,17 @@ func start() -> int: ## Stop NetworkTime. ## -## This will stop the time sync in the background, and no more ticks will be +## This will stop the time sync in the background, and no more ticks will be ## emitted until the next start. func stop() -> void: NetworkTimeSynchronizer.stop() _tickrate_handshake.stop() + + # Reset state _state = _STATE_INACTIVE _synced_peers.clear() + _tick = 0 + _initial_sync_done = false if multiplayer.peer_disconnected.is_connected(_handle_peer_disconnect): multiplayer.peer_disconnected.disconnect(_handle_peer_disconnect) @@ -508,7 +512,7 @@ func _ready() -> void: _tickrate_handshake = NetworkTickrateHandshake.new() add_child(_tickrate_handshake) - + # Proxy tickrate mismatch event _tickrate_handshake.on_tickrate_mismatch.connect(func(peer, tickrate): on_tickrate_mismatch.emit(peer, tickrate) @@ -524,10 +528,10 @@ func _loop() -> void: # Adjust local clock _clock.step(_clock_stretch_factor) var clock_diff := NetworkTimeSynchronizer.get_time() - _clock.get_time() - + # Ignore diffs under 1ms clock_diff = sign(clock_diff) * max(abs(clock_diff) - 0.001, 0.) - + var clock_stretch_min := 1. / clock_stretch_max # var clock_stretch_f = (1. + clock_diff / (1. * ticktime)) / 2. var clock_stretch_f := inverse_lerp(-ticktime, +ticktime, clock_diff) @@ -535,7 +539,7 @@ func _loop() -> void: var previous_stretch_factor := _clock_stretch_factor _clock_stretch_factor = lerpf(clock_stretch_min, clock_stretch_max, clock_stretch_f) - + # Detect editor pause var clock_step := _clock.get_time() - _last_process_time var clock_step_raw := clock_step / previous_stretch_factor @@ -550,7 +554,7 @@ func _loop() -> void: _was_paused = false _next_tick_time += clock_step _tick = seconds_to_ticks(NetworkTimeSynchronizer.get_time()) - + # Run tick loop if needed var ticks_in_loop := 0 _last_process_time = _clock.get_time() @@ -559,19 +563,24 @@ func _loop() -> void: before_tick_loop.emit() before_tick.emit(ticktime, tick) + on_tick.emit(ticktime, tick) + after_tick.emit(ticktime, tick) - + NetworkHistoryServer._record_sync_state(tick + 1) + NetworkSynchronizationServer._synchronize_sync_state(tick + 1) + _tick += 1 ticks_in_loop += 1 _next_tick_time += ticktime - + if ticks_in_loop > 0: after_tick_loop.emit() + NetworkHistoryServer._restore_synchronizer_state(tick) func _process(delta: float) -> void: _process_delta = delta - + if _is_active() and not sync_to_physics: _loop() @@ -592,9 +601,9 @@ func _handle_peer_disconnect(peer: int) -> void: @rpc("any_peer", "reliable", "call_local") func _submit_sync_success() -> void: var peer_id := multiplayer.get_remote_sender_id() - + _logger.trace("Received time sync success from #%s, synced peers: %s", [peer_id, _synced_peers.keys()]) - + if not _synced_peers.has(peer_id): _synced_peers[peer_id] = true after_client_sync.emit(peer_id) diff --git a/addons/netfox/plugin.cfg b/addons/netfox/plugin.cfg index 8d27a9f..c5d1da3 100644 --- a/addons/netfox/plugin.cfg +++ b/addons/netfox/plugin.cfg @@ -3,5 +3,5 @@ name="netfox" description="Shared internals for netfox addons" author="Tamas Galffy and contributors" -version="1.35.3" +version="1.40.2" script="netfox.gd" diff --git a/addons/netfox/properties/property-history-buffer.gd b/addons/netfox/properties/property-history-buffer.gd deleted file mode 100644 index 738adab..0000000 --- a/addons/netfox/properties/property-history-buffer.gd +++ /dev/null @@ -1,28 +0,0 @@ -extends _HistoryBuffer -class_name _PropertyHistoryBuffer - -func get_snapshot(tick: int) -> _PropertySnapshot: - if _buffer.has(tick): - return _buffer[tick] - else: - return _PropertySnapshot.new() - -func set_snapshot(tick: int, data) -> void: - if data is Dictionary: - var snapshot := _PropertySnapshot.from_dictionary(data) - super(tick, snapshot) - elif data is _PropertySnapshot: - super(tick, data) - else: - push_error("Data not a PropertSnapshot! %s" % [data]) - -func get_history(tick: int) -> _PropertySnapshot: - var snapshot = super(tick) - - return snapshot if snapshot else _PropertySnapshot.new() - -func trim(earliest_tick_to_keep: int = NetworkRollback.history_start) -> void: - super(earliest_tick_to_keep) - -func merge(data: _PropertySnapshot, tick:int) -> void: - set_snapshot(tick, get_snapshot(tick).merge(data)) diff --git a/addons/netfox/rollback/composite/rollback-history-recorder.gd b/addons/netfox/rollback/composite/rollback-history-recorder.gd deleted file mode 100644 index bf2edfe..0000000 --- a/addons/netfox/rollback/composite/rollback-history-recorder.gd +++ /dev/null @@ -1,111 +0,0 @@ -extends RefCounted -class_name _RollbackHistoryRecorder - -# Provided externally by RBS -var _state_history: _PropertyHistoryBuffer -var _input_history: _PropertyHistoryBuffer - -var _state_property_config: _PropertyConfig -var _input_property_config: _PropertyConfig - -var _property_cache: PropertyCache - -var _latest_state_tick: int -var _skipset: _Set - -func configure( - p_state_history: _PropertyHistoryBuffer, p_input_history: _PropertyHistoryBuffer, - p_state_property_config: _PropertyConfig, p_input_property_config: _PropertyConfig, - p_property_cache: PropertyCache, - p_skipset: _Set - ) -> void: - _state_history = p_state_history - _input_history = p_input_history - _state_property_config = p_state_property_config - _input_property_config = p_input_property_config - _property_cache = p_property_cache - _skipset = p_skipset - -func set_latest_state_tick(p_latest_state_tick: int) -> void: - _latest_state_tick = p_latest_state_tick - -func apply_state(tick: int) -> void: - # Apply state for tick - var state = _state_history.get_history(tick) - state.apply(_property_cache) - -func apply_display_state() -> void: - apply_state(NetworkRollback.display_tick) - -func apply_tick(tick: int) -> void: - var state := _state_history.get_history(tick) - var input := _input_history.get_history(tick) - - state.apply(_property_cache) - input.apply(_property_cache) - -func trim_history() -> void: - # Trim history - _state_history.trim() - _input_history.trim() - -func record_input(tick: int) -> void: - # Record input - if not _get_recorded_input_props().is_empty(): - var input = _PropertySnapshot.extract(_get_recorded_input_props()) - var input_tick: int = tick + NetworkRollback.input_delay - _input_history.set_snapshot(input_tick, input) - -func record_state(tick: int) -> void: - # Record state for specified tick ( current + 1 ) - # Check if any of the managed nodes were mutated - var is_mutated := _get_recorded_state_props().any(func(pe): - return NetworkRollback.is_mutated(pe.node, tick - 1)) - - var record_state := _PropertySnapshot.extract(_get_state_props_to_record(tick)) - if record_state.size(): - var merge_state := _state_history.get_history(tick - 1) - _state_history.set_snapshot(tick, merge_state.merge(record_state)) - -func _should_record_tick(tick: int) -> bool: - if _get_recorded_state_props().is_empty(): - # Don't record tick if there's no props to record - return false - - if _get_recorded_state_props().any(func(pe): - return NetworkRollback.is_mutated(pe.node, tick - 1)): - # If there's any node that was mutated, there's something to record - return true - - # Otherwise, record only if we don't have authoritative state for the tick - return tick > _latest_state_tick - -func _get_state_props_to_record(tick: int) -> Array[PropertyEntry]: - if not _should_record_tick(tick): - return [] - if _skipset.is_empty(): - return _get_recorded_state_props() - - return _get_recorded_state_props().filter(func(pe): return _should_record_property(pe, tick)) - -func _should_record_property(property_entry: PropertyEntry, tick: int) -> bool: - if NetworkRollback.is_mutated(property_entry.node, tick - 1): - return true - if _skipset.has(property_entry.node): - return false - return true - -# ============================================================================= -# Shared utils, extract later - -func _get_recorded_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_properties() - -func _get_owned_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_owned_properties() - -func _get_recorded_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() - -func _get_owned_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() diff --git a/addons/netfox/rollback/composite/rollback-history-recorder.gd.uid b/addons/netfox/rollback/composite/rollback-history-recorder.gd.uid deleted file mode 100644 index fcaad35..0000000 --- a/addons/netfox/rollback/composite/rollback-history-recorder.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bn6fsqxbfhihk diff --git a/addons/netfox/rollback/composite/rollback-history-transmitter.gd b/addons/netfox/rollback/composite/rollback-history-transmitter.gd deleted file mode 100644 index c341cb9..0000000 --- a/addons/netfox/rollback/composite/rollback-history-transmitter.gd +++ /dev/null @@ -1,282 +0,0 @@ -extends Node -class_name _RollbackHistoryTransmitter - -var root: Node -var enable_input_broadcast: bool = true -var full_state_interval: int -var diff_ack_interval: int - -# Provided externally by RBS -var _state_history: _PropertyHistoryBuffer -var _input_history: _PropertyHistoryBuffer -var _visibility_filter: PeerVisibilityFilter - -var _state_property_config: _PropertyConfig -var _input_property_config: _PropertyConfig - -var _property_cache: PropertyCache -var _skipset: _Set - -# Collaborators -var _input_encoder: _RedundantHistoryEncoder -var _full_state_encoder: _SnapshotHistoryEncoder -var _diff_state_encoder: _DiffHistoryEncoder - -# State -var _ackd_state: Dictionary = {} -var _next_full_state_tick: int -var _next_diff_ack_tick: int - -var _earliest_input_tick: int -var _latest_state_tick: int - -var _is_predicted_tick: bool -var _is_initialized: bool - -# Signals -signal _on_transmit_state(state: Dictionary, tick: int) - -static var _logger: NetfoxLogger = NetfoxLogger._for_netfox("RollbackHistoryTransmitter") - -func get_earliest_input_tick() -> int: - return _earliest_input_tick - -func get_latest_state_tick() -> int: - return _latest_state_tick - -func set_predicted_tick(p_is_predicted_tick) -> void: - _is_predicted_tick = p_is_predicted_tick - -func sync_settings(p_root: Node, p_enable_input_broadcast: bool, p_full_state_interval: int, p_diff_ack_interval: int) -> void: - root = p_root - enable_input_broadcast = p_enable_input_broadcast - full_state_interval = p_full_state_interval - diff_ack_interval = p_diff_ack_interval - -func configure( - p_state_history: _PropertyHistoryBuffer, p_input_history: _PropertyHistoryBuffer, - p_state_property_config: _PropertyConfig, p_input_property_config: _PropertyConfig, - p_visibility_filter: PeerVisibilityFilter, - p_property_cache: PropertyCache, - p_skipset: _Set - ) -> void: - _state_history = p_state_history - _input_history = p_input_history - _state_property_config = p_state_property_config - _input_property_config = p_input_property_config - _visibility_filter = p_visibility_filter - _property_cache = p_property_cache - _skipset = p_skipset - - _input_encoder = _RedundantHistoryEncoder.new(_input_history, _property_cache) - _full_state_encoder = _SnapshotHistoryEncoder.new(_state_history, _property_cache) - _diff_state_encoder = _DiffHistoryEncoder.new(_state_history, _property_cache) - - _is_initialized = true - - reset() - -func reset() -> void: - _ackd_state.clear() - _latest_state_tick = NetworkTime.tick - 1 - _earliest_input_tick = NetworkTime.tick - _next_full_state_tick = NetworkTime.tick - _next_diff_ack_tick = NetworkTime.tick - - # Scatter full state sends, so not all nodes send at the same tick - if is_inside_tree(): - _next_full_state_tick += hash(root.get_path()) % maxi(1, full_state_interval) - _next_diff_ack_tick += hash(root.get_path()) % maxi(1, diff_ack_interval) - else: - _next_full_state_tick += hash(root.name) % maxi(1, full_state_interval) - _next_diff_ack_tick += hash(root.name) % maxi(1, diff_ack_interval) - - _diff_state_encoder.add_properties(_state_property_config.get_properties()) - _full_state_encoder.set_properties(_get_owned_state_props()) - _input_encoder.set_properties(_get_owned_input_props()) - -func conclude_tick_loop() -> void: - _earliest_input_tick = NetworkTime.tick - -func transmit_input(tick: int) -> void: - if not _get_owned_input_props().is_empty(): - var input_tick: int = tick + NetworkRollback.input_delay - var input_data := _input_encoder.encode(input_tick, _get_owned_input_props()) - var state_owning_peer := root.get_multiplayer_authority() - NetworkRollback.register_input_submission(root, tick) - - if enable_input_broadcast: - for peer in _visibility_filter.get_rpc_target_peers(): - _submit_input.rpc_id(peer, input_tick, input_data) - elif state_owning_peer != multiplayer.get_unique_id(): - _submit_input.rpc_id(state_owning_peer, input_tick, input_data) - -func transmit_state(tick: int) -> void: - if _get_owned_state_props().is_empty(): - # We don't own state, don't transmit anything - return - - if _is_predicted_tick and not _input_property_config.get_properties().is_empty(): - # Don't transmit anything if we're predicting - # EXCEPT when we're running inputless - return - - # Include properties we own - var full_state := _PropertySnapshot.new() - - for property in _get_owned_state_props(): - if _should_broadcast(property, tick): - full_state.set_value(property.to_string(), property.get_value()) - - _on_transmit_state.emit(full_state, tick) - - # No properties to send? - if full_state.is_empty(): - return - - _latest_state_tick = max(_latest_state_tick, tick) - - var is_sending_diffs := NetworkRollback.enable_diff_states - var is_full_state_tick := not is_sending_diffs or (full_state_interval > 0 and tick > _next_full_state_tick) - - if is_full_state_tick: - # Broadcast new full state - for peer in _visibility_filter.get_rpc_target_peers(): - _send_full_state(tick, peer) - - # Adjust next full state if sending diffs - if is_sending_diffs: - _next_full_state_tick = tick + full_state_interval - else: - # Send diffs to each peer - for peer in _visibility_filter.get_visible_peers(): - var reference_tick := _ackd_state.get(peer, -1) as int - if reference_tick < 0 or not _state_history.has(reference_tick): - # Peer hasn't ack'd any tick, or we don't have the ack'd tick - # Send full state - _send_full_state(tick, peer) - continue - - # Prepare diff - var diff_state_data := _diff_state_encoder.encode(tick, reference_tick, _get_owned_state_props()) - - if _diff_state_encoder.get_full_snapshot().size() == _diff_state_encoder.get_encoded_snapshot().size(): - # State is completely different, send full state - _send_full_state(tick, peer) - else: - # Send only diff - _submit_diff_state.rpc_id(peer, diff_state_data, tick, reference_tick) - - # Push metrics - NetworkPerformance.push_full_state(_diff_state_encoder.get_full_snapshot()) - NetworkPerformance.push_sent_state(_diff_state_encoder.get_encoded_snapshot()) - -func _should_broadcast(property: PropertyEntry, tick: int) -> bool: - # Only broadcast if we've simulated the node - # NOTE: _can_simulate checks mutations, but to override _skipset - # we check first - if NetworkRollback.is_mutated(property.node, tick - 1): - return true - if _skipset.has(property.node): - return false - if NetworkRollback.is_rollback_aware(property.node): - return NetworkRollback.is_simulated(property.node) - - # Node is not rollback-aware, broadcast updates only if we own it - return property.node.is_multiplayer_authority() - -func _send_full_state(tick: int, peer: int = 0) -> void: - var full_state_snapshot := _state_history.get_snapshot(tick).as_dictionary() - var full_state_data := _full_state_encoder.encode(tick, _get_owned_state_props()) - - _submit_full_state.rpc_id(peer, full_state_data, tick) - - if peer <= 0: - NetworkPerformance.push_full_state_broadcast(full_state_snapshot) - NetworkPerformance.push_sent_state_broadcast(full_state_snapshot) - else: - NetworkPerformance.push_full_state(full_state_snapshot) - NetworkPerformance.push_sent_state(full_state_snapshot) - -func _notification(what): - if what == NOTIFICATION_PREDELETE: - NetworkRollback.free_input_submission_data_for(root) - -@rpc("any_peer", "unreliable", "call_remote") -func _submit_input(tick: int, data: Array) -> void: - if not _is_initialized: - # Settings not processed yet - return - - var sender := multiplayer.get_remote_sender_id() - var snapshots := _input_encoder.decode(data, _input_property_config.get_properties_owned_by(sender)) - var earliest_received_input = _input_encoder.apply(tick, snapshots, sender) - if earliest_received_input >= 0: - _earliest_input_tick = mini(_earliest_input_tick, earliest_received_input) - NetworkRollback.register_input_submission(root, tick) - -# `serialized_state` is a serialized _PropertySnapshot -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _submit_full_state(data: Array, tick: int) -> void: - if not _is_initialized: - # Settings not processed yet - return - - var sender := multiplayer.get_remote_sender_id() - var snapshot := _full_state_encoder.decode(data, _state_property_config.get_properties_owned_by(sender)) - if not _full_state_encoder.apply(tick, snapshot, sender): - # Invalid data - return - - _latest_state_tick = tick - if NetworkRollback.enable_diff_states: - _ack_full_state.rpc_id(sender, tick) - -# State is a serialized _PropertySnapshot (Dictionary[String, Variant]) -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _submit_diff_state(data: PackedByteArray, tick: int, reference_tick: int) -> void: - if not _is_initialized: - # Settings not processed yet - return - - var sender = multiplayer.get_remote_sender_id() - var diff_snapshot := _diff_state_encoder.decode(data, _state_property_config.get_properties_owned_by(sender)) - if not _diff_state_encoder.apply(tick, diff_snapshot, reference_tick, sender): - # Invalid data - return - - _latest_state_tick = tick - - if NetworkRollback.enable_diff_states: - if diff_ack_interval > 0 and tick > _next_diff_ack_tick: - _ack_diff_state.rpc_id(sender, tick) - _next_diff_ack_tick = tick + diff_ack_interval - -@rpc("any_peer", "reliable", "call_remote") -func _ack_full_state(tick: int) -> void: - var sender_id := multiplayer.get_remote_sender_id() - _ackd_state[sender_id] = tick - - _logger.trace("Peer %d ack'd full state for tick %d", [sender_id, tick]) - -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _ack_diff_state(tick: int) -> void: - var sender_id := multiplayer.get_remote_sender_id() - _ackd_state[sender_id] = tick - - _logger.trace("Peer %d ack'd diff state for tick %d", [sender_id, tick]) - -# ============================================================================= -# Shared utils, extract later - -func _get_recorded_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_properties() - -func _get_owned_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_owned_properties() - -func _get_recorded_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() - -func _get_owned_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() diff --git a/addons/netfox/rollback/composite/rollback-history-transmitter.gd.uid b/addons/netfox/rollback/composite/rollback-history-transmitter.gd.uid deleted file mode 100644 index a9ccefe..0000000 --- a/addons/netfox/rollback/composite/rollback-history-transmitter.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ofadsxmvd3e3 diff --git a/addons/netfox/rollback/netfox_schemas.gd.gd.uid b/addons/netfox/rollback/netfox_schemas.gd.gd.uid new file mode 100644 index 0000000..edc7e28 --- /dev/null +++ b/addons/netfox/rollback/netfox_schemas.gd.gd.uid @@ -0,0 +1 @@ +uid://bc61m7m28c1k7 diff --git a/addons/netfox/rollback/network-rollback.gd b/addons/netfox/rollback/network-rollback.gd index 7a216f2..5ce0880 100644 --- a/addons/netfox/rollback/network-rollback.gd +++ b/addons/netfox/rollback/network-rollback.gd @@ -85,7 +85,6 @@ var display_tick: int: ## with input latency higher than network latency. ## [br][br] ## [i]read-only[/i], you can change this in the project settings - var input_delay: int: get: return _input_delay @@ -100,7 +99,6 @@ var input_delay: int: ## in transmission, the next (n-1) packets will contain the data for it. ## [br][br] ## [i]read-only[/i], you can change this in the project settings - var input_redundancy: int: get: return max(1, _input_redundancy) @@ -168,7 +166,9 @@ var _rollback_stage: String = "" var _is_rollback: bool = false var _simulated_nodes: _Set = _Set.new() var _mutated_nodes: Dictionary = {} -var _input_submissions: Dictionary = {} + +var _earliest_input := -1 +var _earliest_state := -1 const _STAGE_BEFORE := "B" const _STAGE_PREPARE := "P" @@ -268,33 +268,44 @@ func is_just_mutated(target: Object, p_tick: int = tick) -> bool: return false ## Register that a node has submitted its input for a specific tick -func register_input_submission(root_node: Node, tick: int) -> void: - if not _input_submissions.has(root_node): - _input_submissions[root_node] = tick - else: - _input_submissions[root_node] = maxi(_input_submissions[root_node], tick) +## @deprecated +func register_rollback_input_submission(_node: Node, _tick: int) -> void: + pass -## Get the latest input tick submitted by a specific root node +## Get the latest input tick submitted for a specific node ## [br][br] ## Returns [code]-1[/code] if no input was submitted for the node, ever. -func get_latest_input_tick(root_node: Node) -> int: - if _input_submissions.has(root_node): - return _input_submissions[root_node] - return -1 +func get_latest_input_tick(node: Node) -> int: + var input_nodes := RollbackSimulationServer._get_inputs_of(node) + var reference_tick := NetworkTime.tick + + return NetworkHistoryServer.get_latest_input_for(input_nodes, reference_tick) ## Check if a node has submitted input for a specific tick (or later) -func has_input_for_tick(root_node: Node, tick: int) -> bool: - return _input_submissions.has(root_node) and _input_submissions[root_node] >= tick +func has_input_for_tick(node: Node, tick: int) -> bool: + var latest_input := get_latest_input_tick(node) + return latest_input != -1 and latest_input >= tick ## Free all input submission data for a node ## [br][br] ## Use this once the node is freed. -func free_input_submission_data_for(root_node: Node) -> void: - _input_submissions.erase(root_node) +## @deprecated +func free_input_submission_data_for(_node: Node) -> void: + pass + +func _get_rollback_method(object: Object) -> Callable: + return object._rollback_tick func _ready(): NetfoxLogger.register_tag(_get_rollback_tag) NetworkTime.after_tick_loop.connect(_rollback) + NetworkTime.after_tick.connect(func(_dt, tick): + NetworkHistoryServer._record_rollback_input(tick + input_delay) + NetworkSynchronizationServer._synchronize_input(tick + input_delay) + ) + + NetworkSynchronizationServer._on_input.connect(_handle_input) + NetworkSynchronizationServer._on_state.connect(_handle_state) func _exit_tree(): NetfoxLogger.free_tag(_get_rollback_tag) @@ -313,6 +324,17 @@ func _rollback() -> void: _resim_from = NetworkTime.tick before_loop.emit() + # Figure out where to start rollback from + var range_source = "notif" + if _earliest_input >= 0 and _earliest_input <= _resim_from: + range_source = "earliest input" + _resim_from = _earliest_input + if _earliest_state >= 0 and _earliest_state <= _resim_from: + range_source = "latest state" + _resim_from = _earliest_state + _resim_from = mini(_resim_from, NetworkTime.tick - 1) + _logger.trace("Simulating range @%d>@%d using %s", [_resim_from, NetworkTime.tick, range_source]) + # Only set _is_rollback *after* emitting before_loop _is_rollback = true _rollback_stage = _STAGE_BEFORE @@ -331,6 +353,9 @@ func _rollback() -> void: ) from = NetworkTime.tick - history_limit + _earliest_input = -1 + _earliest_state = -1 + # for tick in from .. to: _rollback_from = from _rollback_to = to @@ -343,6 +368,8 @@ func _rollback() -> void: # Restore input and state for tick _rollback_stage = _STAGE_PREPARE on_prepare_tick.emit(tick) + NetworkHistoryServer._restore_rollback_input(tick) + NetworkHistoryServer._restore_rollback_state(tick) after_prepare_tick.emit(tick) # Simulate rollback tick @@ -353,20 +380,43 @@ func _rollback() -> void: # If not: Latest input >= tick >= Earliest input _rollback_stage = _STAGE_SIMULATE on_process_tick.emit(tick) + RollbackSimulationServer.simulate(NetworkTime.ticktime, tick) after_process_tick.emit(tick) # Record state for tick + 1 _rollback_stage = _STAGE_RECORD on_record_tick.emit(tick + 1) + NetworkHistoryServer._record_rollback_state(tick + 1) + NetworkSynchronizationServer._synchronize_state(tick + 1) # Restore display state _rollback_stage = _STAGE_AFTER after_loop.emit() + NetworkHistoryServer._restore_rollback_state(display_tick) + RollbackSimulationServer._trim_ticks_simulated(history_start) # Cleanup _mutated_nodes.clear() _is_rollback = false +func _handle_input(snapshot: _Snapshot): + if snapshot.is_empty(): + return + if _earliest_input < 0 or snapshot.tick < _earliest_input: + _logger.trace("Ingested input @%d, earliest @%d->@%d", [snapshot.tick, _earliest_input, snapshot.tick]) + _earliest_input = snapshot.tick + else: + _logger.trace("Ingested input @%d, earliest @%d->@%d", [snapshot.tick, _earliest_input, _earliest_input]) + +func _handle_state(snapshot: _Snapshot): + if snapshot.is_empty(): + return + if _earliest_state < 0 or snapshot.tick < _earliest_state: + _logger.trace("Ingested state @%d, latest @%d->@%d", [snapshot.tick, _earliest_state, snapshot.tick]) + _earliest_state = snapshot.tick + else: + _logger.trace("Ingested state @%d, latest @%d->@%d", [snapshot.tick, _earliest_state, _earliest_state]) + # Insight 1: # state(x) = simulate(state(x - 1), input(x - 1)) # state(x + 1) = simulate(state(x), input(x)) diff --git a/addons/netfox/rollback/predictive-synchronizer.gd b/addons/netfox/rollback/predictive-synchronizer.gd new file mode 100644 index 0000000..d5ce5bd --- /dev/null +++ b/addons/netfox/rollback/predictive-synchronizer.gd @@ -0,0 +1,121 @@ +@tool +extends Node +class_name PredictiveSynchronizer + +## Similar to [RollbackSynchronizer], this class manages local variables in a +## rollback context for predictive simulation without networking. +## +## This is a simplified version that focuses on local state management. +## [br][br] +## Like [RollbackSynchronizer], it automatically discovers nodes +## with a [code]_rollback_tick(delta: float, tick: int)[/code] +## method and calls them during the prediction phase. + +## The root node for resolving node paths in properties. Defaults to the parent +## node. +@export var root: Node = get_parent() + +@export_group("State") +## Properties that define the game state. +## [br][br] +## State properties are recorded for each tick and restored during rollback. +## State is restored before every rollback tick, and recorded after simulating +## the tick. +@export var state_properties: Array[String] + +var _state_properties := _PropertyPool.new() +var _sim_nodes: Array[Node] = [] + +var _properties_dirty: bool = false + +## Process settings. +## +## Call this after any change to configuration. +func process_settings() -> void: + # Deregister all nodes we've registered previously + for subject in _state_properties.get_subjects(): + NetworkHistoryServer.deregister(subject) + + for node in _sim_nodes: + RollbackSimulationServer.deregister_node(node) + + # Gather all prediction-aware nodes to call during prediction ticks + _sim_nodes = root.find_children("*") + _sim_nodes.push_front(root) + _sim_nodes = _sim_nodes.filter(func(it): return NetworkRollback.is_rollback_aware(it)) + _sim_nodes.erase(self) + + # Keep history of state properties + _state_properties.set_from_paths(root, state_properties) + for subject in _state_properties.get_subjects(): + for property in _state_properties.get_properties_of(subject): + NetworkHistoryServer.register_rollback_state(subject, property) + + # Simulated notes to participate in rollback + for node in _sim_nodes: + RollbackSimulationServer.register(NetworkRollback._get_rollback_method(node)) + +func _ready() -> void: + if Engine.is_editor_hint(): + return + + if not NetworkTime.is_initial_sync_done(): + # Wait for time sync to complete + await NetworkTime.after_sync + + process_settings.call_deferred() + +func _enter_tree() -> void: + if Engine.is_editor_hint(): + return + + if not NetworkTime.is_initial_sync_done(): + # Wait for time sync to complete + await NetworkTime.after_sync + process_settings.call_deferred() + +func _reprocess_settings() -> void: + if not _properties_dirty or Engine.is_editor_hint(): + return + + _properties_dirty = false + process_settings() + +## Add a state property. +## [br][br] +## Settings will be automatically updated. The [param node] may be a string or +## [NodePath] pointing to a node, or an actual [Node] instance. If the given +## property is already tracked, this method does nothing. +func add_state(node: Variant, property: String): + var property_path := PropertyEntry.make_path(root, node, property) + if not property_path or state_properties.has(property_path): + return + + state_properties.push_back(property_path) + _properties_dirty = true + _reprocess_settings.call_deferred() + +func _notification(what: int) -> void: + if what == NOTIFICATION_EDITOR_PRE_SAVE: + update_configuration_warnings() + if what == NOTIFICATION_PREDELETE: + for node in _sim_nodes: + RollbackSimulationServer.deregister_node(node) + for subject in _state_properties.get_subjects(): + NetworkHistoryServer.deregister(subject) + +func _get_configuration_warnings() -> PackedStringArray: + if not root: + root = get_parent() + + # Explore state properties + if not root: + return ["No valid root node found!"] + + var result := PackedStringArray() + result.append_array(_NetfoxEditorUtils.gather_properties(root, "_get_rollback_state_properties", + func(node, prop): + add_state(node, prop) + )) + + return result diff --git a/addons/netfox/rollback/predictive-synchronizer.gd.uid b/addons/netfox/rollback/predictive-synchronizer.gd.uid new file mode 100644 index 0000000..8d37300 --- /dev/null +++ b/addons/netfox/rollback/predictive-synchronizer.gd.uid @@ -0,0 +1 @@ +uid://ct51w7rsjcxvw diff --git a/addons/netfox/rollback/rollback-freshness-store.gd b/addons/netfox/rollback/rollback-freshness-store.gd deleted file mode 100644 index 1250c7f..0000000 --- a/addons/netfox/rollback/rollback-freshness-store.gd +++ /dev/null @@ -1,34 +0,0 @@ -extends RefCounted -class_name RollbackFreshnessStore - -## This class tracks nodes and whether they have processed any given tick during -## a rollback. - -# TODO: _Set -var _data: Dictionary = {} - -func is_fresh(node: Node, tick: int) -> bool: - if not _data.has(tick): - return true - - if not _data[tick].has(node): - return true - - return false - -func notify_processed(node: Node, tick: int) -> void: - if not _data.has(tick): - _data[tick] = {} - - _data[tick][node] = true - -func trim() -> void: - while not _data.is_empty(): - var earliest_tick := _data.keys().min() - if earliest_tick < NetworkRollback.history_start: - _data.erase(earliest_tick) - else: - break - -func clear(): - _data.clear() diff --git a/addons/netfox/rollback/rollback-synchronizer.gd b/addons/netfox/rollback/rollback-synchronizer.gd index 06bb435..a332a7b 100644 --- a/addons/netfox/rollback/rollback-synchronizer.gd +++ b/addons/netfox/rollback/rollback-synchronizer.gd @@ -32,23 +32,11 @@ class_name RollbackSynchronizer ## for every tick. ## [br][br] ## Only considered if [member _NetworkRollback.enable_diff_states] is true. +## @deprecated: This can now be configured in the project settings. @export_range(0, 128, 1, "or_greater") var full_state_interval: int = 24 -## Ticks to wait between unreliably acknowledging diff states. -## [br][br] -## This can reduce the amount of properties sent in diff states, due to clients -## more often acknowledging received states. To avoid introducing hickups, these -## are sent unreliably. -## [br][br] -## If set to 0, diff states will never be acknowledged. If set to 1, all diff -## states will be acknowledged. If set higher, ack's will be sent regularly, but -## not for every diff state. -## [br][br] -## If enabled, it's worth to tune this setting until network traffic is actually -## reduced. -## [br][br] -## Only considered if [member _NetworkRollback.enable_diff_states] is true. +## @deprecated: This is no longer used. @export_range(0, 128, 1, "or_greater") var diff_ack_interval: int = 0 @@ -62,74 +50,95 @@ var diff_ack_interval: int = 0 ## This will broadcast input to all peers, turning this off will limit to ## sending it to the server only. Turning this off is recommended to save ## bandwidth and reduce cheating risks. +## @deprecated: This can now be configured in the project settings. @export var enable_input_broadcast: bool = true # Make sure this exists from the get-go, just not in the scene tree ## Decides which peers will receive updates var visibility_filter := PeerVisibilityFilter.new() -var _state_property_config: _PropertyConfig = _PropertyConfig.new() -var _input_property_config: _PropertyConfig = _PropertyConfig.new() -var _nodes: Array[Node] = [] - -var _simset: _Set = _Set.new() -var _skipset: _Set = _Set.new() +var _state_properties := _PropertyPool.new() +var _input_properties := _PropertyPool.new() +var _sim_nodes := [] as Array[Node] +var _schema_nodes := _Set.new() var _properties_dirty: bool = false - var _property_cache := PropertyCache.new(root) -var _freshness_store := RollbackFreshnessStore.new() - -var _states := _PropertyHistoryBuffer.new() -var _inputs := _PropertyHistoryBuffer.new() -var _last_simulated_tick: int - -var _has_input: bool -var _input_tick: int -var _is_predicted_tick: bool static var _logger: NetfoxLogger = NetfoxLogger._for_netfox("RollbackSynchronizer") -# Composition -var _history_transmitter: _RollbackHistoryTransmitter -var _history_recorder: _RollbackHistoryRecorder - ## Process settings. -## +## [br][br] ## Call this after any change to configuration. Updates based on authority too ## ( calls process_authority ). func process_settings() -> void: + # Deregister simulated, state and input nodes + for node in _sim_nodes + _state_properties.get_subjects() + _input_properties.get_subjects(): + RollbackSimulationServer.deregister_node(node) + _sim_nodes.clear() + + # Clear _property_cache.root = root _property_cache.clear() - _freshness_store.clear() - _nodes.clear() - - _states.clear() - _inputs.clear() process_authority() # Gather all rollback-aware nodes to simulate during rollbacks - _nodes = root.find_children("*") - _nodes.push_front(root) - _nodes = _nodes.filter(func(it): return NetworkRollback.is_rollback_aware(it)) - _nodes.erase(self) + var nodes := root.find_children("*") as Array[Node] + nodes.push_front(root) + nodes = nodes.filter(func(it): return NetworkRollback.is_rollback_aware(it)) + nodes.erase(self) - _history_transmitter.sync_settings(root, enable_input_broadcast, full_state_interval, diff_ack_interval) - _history_transmitter.configure(_states, _inputs, _state_property_config, _input_property_config, visibility_filter, _property_cache, _skipset) - _history_recorder.configure(_states, _inputs, _state_property_config, _input_property_config, _property_cache, _skipset) + # Register simulation callbacks + for node in nodes: + RollbackSimulationServer.register(NetworkRollback._get_rollback_method(node)) + _sim_nodes.append(node) + + # Both simulated and state nodes depend on all inputs + # TODO(#564): Write tests for setups where a node is synchronized but not simulated + for node in nodes + _state_properties.get_subjects(): + for input_node in _input_properties.get_subjects(): + RollbackSimulationServer.register_rollback_input_for(node, input_node) + + # Register identifiers + for node in _state_properties.get_subjects() + _input_properties.get_subjects(): + NetworkIdentityServer.register_node(node) + + # Register visibility filter + for node in _state_properties.get_subjects(): + NetworkSynchronizationServer.register_visibility_filter(node, visibility_filter) ## Process settings based on authority. -## +## [br][br] ## Call this whenever the authority of any of the nodes managed by ## RollbackSynchronizer changes. Make sure to do this at the same time on all ## peers. func process_authority(): - _state_property_config.local_peer_id = multiplayer.get_unique_id() - _input_property_config.local_peer_id = multiplayer.get_unique_id() + # Deregister all recorded properties + for node in _state_properties.get_subjects(): + for property in _state_properties.get_properties_of(node): + NetworkHistoryServer.deregister_rollback_state(node, property) + NetworkSynchronizationServer.deregister_rollback_state(node, property) - _state_property_config.set_properties_from_paths(state_properties, _property_cache) - _input_property_config.set_properties_from_paths(input_properties, _property_cache) + for node in _input_properties.get_subjects(): + for property in _input_properties.get_properties_of(node): + NetworkHistoryServer.deregister_rollback_input(node, property) + NetworkSynchronizationServer.deregister_rollback_input(node, property) + + # Process authority + _state_properties.set_from_paths(root, state_properties) + _input_properties.set_from_paths(root, input_properties) + + # Register new recorded properties + for node in _state_properties.get_subjects(): + for property in _state_properties.get_properties_of(node): + NetworkHistoryServer.register_rollback_state(node, property) + NetworkSynchronizationServer.register_rollback_state(node, property) + + for node in _input_properties.get_subjects(): + for property in _input_properties.get_properties_of(node): + NetworkHistoryServer.register_rollback_input(node, property) + NetworkSynchronizationServer.register_rollback_input(node, property) ## Add a state property. ## [br][br] @@ -159,42 +168,77 @@ func add_input(node: Variant, property: String) -> void: _properties_dirty = true _reprocess_settings.call_deferred() +## Set the schema for transmitting properties over the network. +## [br][br] +## The [param schema] must be a dictionary, with the keys being property path +## strings, and the values are the associated [NetworkSchemaSerializer] objects. +## Properties are interpreted relative to the [member root] node. The schema can +## contain both state and input properties. Properties not specified in the +## schema will use a generic fallback serializer. By using the right serializer +## for the right property, bandwidth usage can be lowered. +## [br][br] +## See [NetworkSchemas] for many common serializers. +## [br][br] +## Example: +## [codeblock] +## rollback_synchronizer.set_schema({ +## ":transform": NetworkSchemas.transform3f32(), +## ":velocity": NetworkSchemas.vec3f32(), +## "Input:movement": NetworkSchemas.vec3f32() +## }) +## [/codeblock] +func set_schema(schema: Dictionary) -> void: + # Remove previous schema + for node in _schema_nodes: + NetworkSynchronizationServer.deregister_schema_for(node) + _schema_nodes.clear() + + # Register new schema + for prop in schema: + var prop_entry := PropertyEntry.parse(root, prop) + var serializer := schema[prop] as NetworkSchemaSerializer + NetworkSynchronizationServer.register_schema(prop_entry.node, prop_entry.property, serializer) + _schema_nodes.add(prop_entry.node) + ## Check if input is available for the current tick. -## +## [br][br] ## This input is not always current, it may be from multiple ticks ago. ## [br][br] ## Returns true if input is available. func has_input() -> bool: - return _has_input + return get_input_age() >= 0 ## Get the age of currently available input in ticks. -## +## [br][br] ## The available input may be from the current tick, or from multiple ticks ago. ## This number of tick is the input's age. -## [br][br] -## Calling this when [member has_input] is false will yield an error. func get_input_age() -> int: - if has_input(): - return NetworkRollback.tick - _input_tick - else: - _logger.error("Trying to check input age without having input!") - return -1 + return NetworkHistoryServer.get_input_age_for(_input_properties.get_subjects(), NetworkRollback.tick) ## Check if the current tick is predicted. -## +## [br][br] ## A tick becomes predicted if there's no up-to-date input available. It will be ## simulated and recorded, but will not be broadcast, nor considered ## authoritative. func is_predicting() -> bool: - return _is_predicted_tick + if RollbackSimulationServer.get_simulated_object() != null: + # An object is being simulated, check if it's predicted + return RollbackSimulationServer.is_predicting_current() + else: + # We're outside of simulation, predicting if we don't have current input + return get_input_age() != 0 ## Ignore a node's prediction for the current rollback tick. -## +## [br][br] ## Call this when the input is too old to base predictions on. This call is ## ignored if [member enable_prediction] is false. func ignore_prediction(node: Node) -> void: - if enable_prediction: - _skipset.add(node) + # Not needed, netfox records properties as non-auth if predicting + # Once the data is received from the owner, it won't be overwritten by + # predictions. + # + # This method may see some use again, otherwise it will be deprecated. + pass ## Get the tick of the last known input. ## [br][br] @@ -208,11 +252,7 @@ func ignore_prediction(node: Node) -> void: ## [br][br] ## Returns -1 if there's no known input. func get_last_known_input() -> int: - # If we own input, it is updated regularly, this will be the current tick - # If we don't own input, _inputs is only updated when input data is received - if not _inputs.is_empty(): - return _inputs.keys().max() - return -1 + return NetworkHistoryServer.get_latest_input_for(_input_properties.get_subjects(), NetworkTime.tick) ## Get the tick of the last known state. ## [br][br] @@ -221,10 +261,7 @@ func get_last_known_input() -> int: ## data may change as new input arrives. For peers that don't own state, this ## will be the tick of the latest state received from the state owner. func get_last_known_state() -> int: - # If we own state, this will be updated when recording and broadcasting - # state, this will be the current tick - # If we don't own state, this will be updated when state data is received - return _history_transmitter.get_latest_state_tick() + return NetworkHistoryServer.get_state_age_for(_state_properties.get_subjects(), NetworkTime.tick) func _ready() -> void: if Engine.is_editor_hint(): @@ -235,60 +272,17 @@ func _ready() -> void: await NetworkTime.after_sync process_settings.call_deferred() - -func _connect_signals() -> void: - NetworkTime.before_tick.connect(_before_tick) - NetworkTime.after_tick.connect(_after_tick) - - NetworkRollback.on_prepare_tick.connect(_on_prepare_tick) - NetworkRollback.on_process_tick.connect(_process_tick) - NetworkRollback.on_record_tick.connect(_on_record_tick) - - NetworkRollback.before_loop.connect(_before_rollback_loop) - NetworkRollback.after_loop.connect(_after_rollback_loop) - -func _disconnect_signals() -> void: - NetworkTime.before_tick.disconnect(_before_tick) - NetworkTime.after_tick.disconnect(_after_tick) - - NetworkRollback.on_prepare_tick.disconnect(_on_prepare_tick) - NetworkRollback.on_process_tick.disconnect(_process_tick) - NetworkRollback.on_record_tick.disconnect(_on_record_tick) - - NetworkRollback.before_loop.disconnect(_before_rollback_loop) - NetworkRollback.after_loop.disconnect(_after_rollback_loop) - -func _before_tick(_dt: float, tick: int) -> void: - _history_recorder.apply_state(tick) - -func _after_tick(_dt: float, tick: int) -> void: - _history_recorder.record_input(tick) - _history_transmitter.transmit_input(tick) - _history_recorder.trim_history() - _freshness_store.trim() - -func _before_rollback_loop() -> void: - _notify_resim() - -func _on_prepare_tick(tick: int) -> void: - _history_recorder.apply_tick(tick) - _prepare_tick_process(tick) - -func _process_tick(tick: int) -> void: - _run_rollback_tick(tick) - _push_simset_metrics() - -func _on_record_tick(tick: int) -> void: - _history_recorder.record_state(tick) - _history_transmitter.transmit_state(tick) - -func _after_rollback_loop() -> void: - _history_recorder.apply_display_state() - _history_transmitter.conclude_tick_loop() + multiplayer.connected_to_server.connect(process_settings) func _notification(what: int) -> void: if what == NOTIFICATION_EDITOR_PRE_SAVE: update_configuration_warnings() + elif what == NOTIFICATION_PREDELETE: + for node in _sim_nodes + _state_properties.get_subjects() + _input_properties.get_subjects(): + RollbackSimulationServer.deregister_node(node) + NetworkSynchronizationServer.deregister(node) + NetworkIdentityServer.deregister_node(node) + NetworkHistoryServer.deregister(node) func _get_configuration_warnings() -> PackedStringArray: if not root: @@ -321,131 +315,14 @@ func _enter_tree() -> void: if not visibility_filter.get_parent(): add_child(visibility_filter) - if _history_transmitter == null: - _history_transmitter = _RollbackHistoryTransmitter.new() - add_child(_history_transmitter, true) - _history_transmitter.set_multiplayer_authority(get_multiplayer_authority()) - - if _history_recorder == null: - _history_recorder = _RollbackHistoryRecorder.new() - if not NetworkTime.is_initial_sync_done(): # Wait for time sync to complete await NetworkTime.after_sync - _connect_signals.call_deferred() process_settings.call_deferred() -func _exit_tree() -> void: - if Engine.is_editor_hint(): - return - - _disconnect_signals() - -func _notify_resim() -> void: - if _get_owned_input_props().is_empty(): - # We don't have any inputs we own, simulate from earliest we've received - NetworkRollback.notify_resimulation_start(_history_transmitter.get_earliest_input_tick()) - else: - # We own inputs, simulate from latest authorative state - NetworkRollback.notify_resimulation_start(_history_transmitter.get_latest_state_tick()) - -func _prepare_tick_process(tick: int) -> void: - _history_recorder.set_latest_state_tick(_history_transmitter._latest_state_tick) - - # Save data for input prediction - var retrieved_tick := _inputs.get_closest_tick(tick) - - # These are used as input for input age ( i.e. do we even have input, and if so, how old? ) - _has_input = retrieved_tick != -1 - _input_tick = retrieved_tick - - # Used to explicitly determine if this is a predicted tick - # ( even if we could grab *some* input ) - _is_predicted_tick = _is_predicted_tick_for(null, tick) - _history_transmitter.set_predicted_tick(_is_predicted_tick) - - # Reset the set of simulated and ignored nodes - _simset.clear() - _skipset.clear() - - # Gather nodes that can be simulated - for node in _nodes: - if _can_simulate(node, tick): - NetworkRollback.notify_simulated(node) - -func _can_simulate(node: Node, tick: int) -> bool: - if not enable_prediction and _is_predicted_tick_for(node, tick): - # Don't simulate if prediction is not allowed and tick is predicted - return false - if NetworkRollback.is_mutated(node, tick): - # Mutated nodes are always resimulated - return true - if input_properties.is_empty(): - # If we're running inputless and own the node, simulate it if we haven't - if node.is_multiplayer_authority(): - return tick > _last_simulated_tick - # If we're running inputless and don't own the node, only run as prediction - return enable_prediction - if node.is_multiplayer_authority(): - # Simulate from earliest input - # Don't simulate frames we don't have input for - return tick >= _history_transmitter.get_earliest_input_tick() - else: - # Simulate ONLY if we have state from server - # Simulate from latest authorative state - anything the server confirmed we don't rerun - # Don't simulate frames we don't have input for - return tick >= _history_transmitter.get_latest_state_tick() - -# `node` can be set to null, in case we're not simulating a specific node -func _is_predicted_tick_for(node: Node, tick: int) -> bool: - if input_properties.is_empty() and node != null: - # We're running without inputs - # It's only predicted if we don't own the node - return not node.is_multiplayer_authority() - else: - # We have input properties, it's only predicted if we don't have the input for the tick - return not _inputs.has(tick) - -func _run_rollback_tick(tick: int) -> void: - # Simulate rollback tick - # Method call on rewindables - # Rollback synchronizers go through each node they manage - # If current tick is in node's range, tick - # If authority: Latest input >= tick >= Latest state - # If not: Latest input >= tick >= Earliest input - for node in _nodes: - if not NetworkRollback.is_simulated(node): - continue - - var is_fresh := _freshness_store.is_fresh(node, tick) - _is_predicted_tick = _is_predicted_tick_for(node, tick) - NetworkRollback.process_rollback(node, NetworkTime.ticktime, tick, is_fresh) - - if _skipset.has(node): - continue - - _freshness_store.notify_processed(node, tick) - _simset.add(node) - -func _push_simset_metrics(): - # Push metrics - NetworkPerformance.push_rollback_nodes_simulated(_simset.size()) - func _reprocess_settings() -> void: if not _properties_dirty or Engine.is_editor_hint(): return _properties_dirty = false process_settings() - -func _get_recorded_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_properties() - -func _get_owned_state_props() -> Array[PropertyEntry]: - return _state_property_config.get_owned_properties() - -func _get_recorded_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() - -func _get_owned_input_props() -> Array[PropertyEntry]: - return _input_property_config.get_owned_properties() diff --git a/addons/netfox/schemas/network-schema-serializer.gd b/addons/netfox/schemas/network-schema-serializer.gd new file mode 100644 index 0000000..a873789 --- /dev/null +++ b/addons/netfox/schemas/network-schema-serializer.gd @@ -0,0 +1,21 @@ +extends RefCounted +class_name NetworkSchemaSerializer + +## Base class for serializers, to use with [NetworkSchemas] +## +## Each serializer must be able to encode and decode values passed to it. +## Data is stored in [StreamPeerBuffer] objects. +## [br][br] +## To implement a custom serializer, extend this class and pass an instance of +## it in place of a NetworkSchemaSerializer, for example to [method +## RollbackSynchronizer.set_schema]. +## +## @tutorial(Network schemas): https://foxssake.github.io/netfox/latest/netfox/guides/network-schemas/ + +## Encode [param value] into [param buffer] +func encode(value: Variant, buffer: StreamPeerBuffer) -> void: + pass + +## Decode a value from [param buffer] and return it +func decode(buffer: StreamPeerBuffer) -> Variant: + return null diff --git a/addons/netfox/schemas/network-schema-serializer.gd.uid b/addons/netfox/schemas/network-schema-serializer.gd.uid new file mode 100644 index 0000000..decbb99 --- /dev/null +++ b/addons/netfox/schemas/network-schema-serializer.gd.uid @@ -0,0 +1 @@ +uid://btmpightc21cy diff --git a/addons/netfox/schemas/network-schema.gd b/addons/netfox/schemas/network-schema.gd new file mode 100644 index 0000000..2e1a088 --- /dev/null +++ b/addons/netfox/schemas/network-schema.gd @@ -0,0 +1,36 @@ +extends RefCounted +class_name _NetworkSchema + +var _serializers := {} # subject to (property to NetworkSchemaSerializer) +var _fallback: NetworkSchemaSerializer + +func _init(fallback: NetworkSchemaSerializer = NetworkSchemas.variant()) -> void: + _fallback = fallback + +func add(subject: Object, property: NodePath, serializer: NetworkSchemaSerializer) -> void: + if not _serializers.has(subject): + _serializers[subject] = { property: serializer } + else: + _serializers[subject][property] = serializer + +func erase(subject: Object, property: NodePath) -> void: + if not _serializers.has(subject): + return + + var subject_schema := _serializers[subject] as Dictionary + subject_schema.erase(property) + + if subject_schema.is_empty(): + _serializers.erase(subject) + +func erase_subject(subject: Object) -> void: + _serializers.erase(subject) + +func encode(subject: Object, property: NodePath, value: Variant, buffer: StreamPeerBuffer) -> void: + _get_serializer(subject, property).encode(value, buffer) + +func decode(subject: Object, property: NodePath, buffer: StreamPeerBuffer) -> Variant: + return _get_serializer(subject, property).decode(buffer) + +func _get_serializer(subject: Object, property: NodePath) -> NetworkSchemaSerializer: + return _serializers.get(subject, {}).get(property, _fallback) diff --git a/addons/netfox/schemas/network-schema.gd.uid b/addons/netfox/schemas/network-schema.gd.uid new file mode 100644 index 0000000..09fc7e0 --- /dev/null +++ b/addons/netfox/schemas/network-schema.gd.uid @@ -0,0 +1 @@ +uid://cmqrteshb5sop diff --git a/addons/netfox/schemas/network-schemas.gd b/addons/netfox/schemas/network-schemas.gd new file mode 100644 index 0000000..9918f02 --- /dev/null +++ b/addons/netfox/schemas/network-schemas.gd @@ -0,0 +1,882 @@ +extends Object +class_name NetworkSchemas + +## Provides various schema serializers +## +## While some method names are abbreviated, they use a few naming schemes. For +## example: [br][br] +## [method uint16] - unsigned integer, 16 bits[br] +## [method vec2t] - [Vector2], component of specified [i]type[/i][br] +## [method vec3f32] - [Vector3], each component as a [method float32][br] +## [br] +## To handle collections, see [method array_of] and [method dictionary]. +## +## @tutorial(Network schemas): https://foxssake.github.io/netfox/latest/netfox/guides/network-schemas/ + +## Serialize any data type supported by [method @GlobalScope.var_to_bytes]. +## [br][br] +## Final size depends on the value. +static func variant() -> NetworkSchemaSerializer: + return _VariantSerializer.new() + +## Serialize strings in UTF-8 encoding. +## [br][br] +## Final size depends on the string, the string itself is zero-terminated. +static func string() -> NetworkSchemaSerializer: + return _StringSerializer.new() + +## Serialize booleans as 8 bits. +## [br][br] +## Final size is 1 byte. +static func bool8() -> NetworkSchemaSerializer: + return _BoolSerializer.new() + +## Serialize unsigned integers as 8 bits. +## [br][br] +## Final size is 1 byte. +static func uint8() -> NetworkSchemaSerializer: + return _Uint8Serializer.new() + +## Serialize unsigned integers as 16 bits. +## [br][br] +## Final size is 2 bytes. +static func uint16() -> NetworkSchemaSerializer: + return _Uint16Serializer.new() + +## Serialize unsigned integers as 32 bits. +## [br][br] +## Final size is 4 bytes. +static func uint32() -> NetworkSchemaSerializer: + return _Uint32Serializer.new() + +## Serialize unsigned integers as 64 bits. +## [br][br] +## Final size is 8 bytes. +static func uint64() -> NetworkSchemaSerializer: + return _Uint64Serializer.new() + +## Serialize an unsigned integer as a variable amount of bytes. +## [br][br] +## Each byte contains 7 bits of data. The 8th bit indicates whether there are +## more bytes left. Thus, small numbers fitting into 7 bits will be encoded as +## a single byte, while larger numbers take more space as they increase. +## [br][br] +## Final size is 1 byte for every 7 bits of numeric data. +static func varuint() -> NetworkSchemaSerializer: + return _VaruintSerializer.instance + +static func _varbits() -> NetworkSchemaSerializer: + return _VariableBitsetSerializer.instance + +## Serialize signed integers as 8 bits. +## [br][br] +## Final size is 1 byte. +static func int8() -> NetworkSchemaSerializer: + return _Int8Serializer.new() + +## Serialize signed integers as 16 bits. +## [br][br] +## Final size is 2 bytes. +static func int16() -> NetworkSchemaSerializer: + return _Int16Serializer.new() + +## Serialize signed integers as 32 bits. +## [br][br] +## Final size is 4 bytes. +static func int32() -> NetworkSchemaSerializer: + return _Int32Serializer.new() + +## Serialize signed integers as 64 bits. +## [br][br] +## Final size is 8 bytes. +static func int64() -> NetworkSchemaSerializer: + return _Int64Serializer.new() + +## Serialize floats in half-precision, as 16 bits. +## [br][br] +## This is only supported in Godot 4.4 and up, earlier versions fall back to +## [method float32]. +## [br][br] +## Final size is 2 bytes, 4 if using fallback. +static func float16() -> NetworkSchemaSerializer: + return _Float16Serializer.new() + +## Serialize floats in single-precision, as 32 bits. +## [br][br] +## Final size is 4 bytes. +static func float32() -> NetworkSchemaSerializer: + return _Float32Serializer.new() + +## Serialize floats in double-precision, as 64 bits. +## [br][br] +## Final size is 8 bytes. +static func float64() -> NetworkSchemaSerializer: + return _Float64Serializer.new() + +## Serialize signed fractions in the [code][-1.0, +1.0][/code] range as 8 bits. +## [br][br] +## Final size is 1 byte. +static func sfrac8() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint8(), -1., 1., 0, 0xFF) + +## Serialize signed fractions in the [code][-1.0, +1.0][/code] range as 16 bits. +## [br][br] +## Final size is 2 bytes. +static func sfrac16() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint16(), -1., 1., 0, 0xFFFF) + +## Serialize signed fractions in the [code][-1.0, +1.0][/code] range as 32 bits. +## [br][br] +## Final size is 4 bytes. +static func sfrac32() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint32(), -1., 1., 0, 0xFFFFFFFF) + +## Serialize signed fractions in the [code][0.0, 1.0][/code] range as 8 bits. +## [br][br] +## Final size is 1 byte. +static func ufrac8() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint8(), 0., 1., 0, 0xFF) + +## Serialize signed fractions in the [code][0.0, 1.0][/code] range as 16 bits. +## [br][br] +## Final size is 2 bytes. +static func ufrac16() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint16(), 0., 1., 0, 0xFFFF) + +## Serialize signed fractions in the [code][0.0, 1.0][/code] range as 32 bits. +## [br][br] +## Final size is 4 bytes. +static func ufrac32() -> NetworkSchemaSerializer: + return _QuantizingSerializer.new(uint32(), 0., 1., 0, 0xFFFFFFFF) + +## Serialize degrees as 8 bits. The value will always decode to the +## [code][0.0, 360.0)[/code] range. +## [br][br] +## Final size is 1 byte. +static func degrees8() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint8(), 360., 0xFF) + +## Serialize degrees as 16 bits. The value will always decode to the +## [code][0.0, 360.0)[/code] range. +## [br][br] +## Final size is 2 bytes. +static func degrees16() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint16(), 360., 0xFFFF) + +## Serialize degrees as 32 bits. The value will always decode to the +## [code][0.0, 360.0)[/code] range. +## [br][br] +## Final size is 4 bytes. +static func degrees32() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint32(), 360., 0xFFFFFFFF) + +## Serialize radians as 8 bits. The value will always decode to the +## [code][0.0, TAU)[/code] range. +## [br][br] +## Final size is 1 byte. +static func radians8() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint8(), TAU, 0xFF) + +## Serialize radians as 16 bits. The value will always decode to the +## [code][0.0, TAU)[/code] range. +## [br][br] +## Final size is 2 bytes. +static func radians16() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint16(), TAU, 0xFFFF) + +## Serialize radians as 32 bits. The value will always decode to the +## [code][0.0, TAU)[/code] range. +## [br][br] +## Final size is 4 bytes. +static func radians32() -> NetworkSchemaSerializer: + return _ModuloSerializer.new(uint32(), TAU, 0xFFFFFFFF) + +## Serialize [Vector2] objects, using [param component_serializer] to +## serialize each component of the vector. +## [br][br] +## Serializes 2 components, size depends on the [param component_serializer]. +static func vec2t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericVec2Serializer.new(component_serializer) + +## Serialize [Vector2] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method vec2f32]. +## [br][br] +## Final size is 4 bytes, 8 if using fallback. +static func vec2f16() -> NetworkSchemaSerializer: + return vec2t(float16()) + +## Serialize [Vector2] objects, with each component being a single-precision +## float. +## [br][br] +## Final size is 8 bytes. +static func vec2f32() -> NetworkSchemaSerializer: + return vec2t(float32()) + +## Serialize [Vector2] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 16 bytes. +static func vec2f64() -> NetworkSchemaSerializer: + return vec2t(float64()) + +## Serialize [Vector3] objects, using [param component_serializer] to +## serialize each component of the vector. +## [br][br] +## Serializes 3 components, size depends on the [param component_serializer]. +static func vec3t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericVec3Serializer.new(component_serializer) + +## Serialize [Vector3] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method vec3f32]. +## [br][br] +## Final size is 6 bytes, 12 if using fallback. +static func vec3f16() -> NetworkSchemaSerializer: + return vec3t(float16()) + +## Serialize [Vector3] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 12 bytes. +static func vec3f32() -> NetworkSchemaSerializer: + return vec3t(float32()) + +## Serialize [Vector3] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 24 bytes. +static func vec3f64() -> NetworkSchemaSerializer: + return vec3t(float64()) + +## Serialize [Vector4] objects, using [param component_serializer] to +## serialize each component of the vector. +## [br][br] +## Serializes 4 components, size depends on the [param component_serializer]. +static func vec4t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericVec4Serializer.new(component_serializer) + +## Serialize [Vector4] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method vec4f32]. +## [br][br] +## Final size is 8 bytes, 16 if using fallback. +static func vec4f16() -> NetworkSchemaSerializer: + return vec4t(float16()) + +## Serialize [Vector4] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 16 bytes. +static func vec4f32() -> NetworkSchemaSerializer: + return vec4t(float32()) + +## Serialize [Vector4] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 32 bytes. +static func vec4f64() -> NetworkSchemaSerializer: + return vec4t(float64()) + +# Normals +## Serialize normalized [Vector2] objects, using [param component_serializer] to +## serialize each component of the vector. +## [br][br] +## Serializes 1 component, size depends on the [param component_serializer]. +static func normal2t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _Normal2Serializer.new(component_serializer) + +## Serialize normalized [Vector2] objects, with each component being a +## half-precision float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method normal2f32]. +## [br][br] +## Final size is 2 bytes, 4 if using fallback. +static func normal2f16() -> NetworkSchemaSerializer: + return normal2t(float16()) + +## Serialize normalized [Vector2] objects, with each component being a +## single-precision float. +## [br][br] +## Final size is 4 bytes. +static func normal2f32() -> NetworkSchemaSerializer: + return normal2t(float32()) + +## Serialize normalized [Vector2] objects, with each component being a +## double-precision float. +## [br][br] +## Final size is 8 bytes. +static func normal2f64() -> NetworkSchemaSerializer: + return normal2t(float64()) + +## Serialize normalized [Vector3] objects, using [param component_serializer] to +## serialize each component of the vector. +## [br][br] +## Serializes 2 components, size depends on the [param component_serializer]. +static func normal3t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _Normal3Serializer.new(component_serializer) + +## Serialize normalized [Vector3] objects, with each component being a +## half-precision float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method normal3f32]. +## [br][br] +## Final size is 4 bytes, 8 if using fallback. +static func normal3f16() -> NetworkSchemaSerializer: + return normal3t(float16()) + +## Serialize normalized [Vector3] objects, with each component being a +## single-precision float. +## [br][br] +## Final size is 8 bytes. +static func normal3f32() -> NetworkSchemaSerializer: + return normal3t(float32()) + +## Serialize normalized [Vector3] objects, with each component being a +## double-precision float. +## [br][br] +## Final size is 16 bytes. +static func normal3f64() -> NetworkSchemaSerializer: + return normal3t(float64()) + +# Quaternion +## Serialize [Quaternion] objects, using [param component_serializer] to +## serialize each component of the quaternion. +## [br][br] +## Serializes 4 components, size depends on the [param component_serializer]. +static func quatt(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericQuaternionSerializer.new(component_serializer) + +## Serialize [Quaternion] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method quat32f]. +## [br][br] +## Final size is 8 bytes, 16 if using fallback. +static func quatf16() -> NetworkSchemaSerializer: + return quatt(float16()) + +## Serialize [Quaternion] objects, with each component being a single-precision +## float. +## [br][br] +## Final size is 16 bytes. +static func quatf32() -> NetworkSchemaSerializer: + return quatt(float32()) + +## Serialize [Quaternion] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 32 bytes. +static func quatf64() -> NetworkSchemaSerializer: + return quatt(float64()) + +# Transforms +## Serialize [Transform2D] objects, using [param component_serializer] to +## serialize each component of the transform. +## [br][br] +## Serializes a 2x3 matrix in 6 components, final size depends on [param +## component_serializer]. +static func transform2t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericTransform2DSerializer.new(component_serializer) + +## Serialize [Transform2D] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method transform2f32]. +## [br][br] +## Final size is 12 bytes, 24 if using fallback. +static func transform2f16() -> NetworkSchemaSerializer: + return transform2t(float16()) + +## Serialize [Transform2D] objects, with each component being a single-precision +## float. +## [br][br] +## Final size is 24 bytes. +static func transform2f32() -> NetworkSchemaSerializer: + return transform2t(float32()) + +## Serialize [Transform2D] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 48 bytes. +static func transform2f64() -> NetworkSchemaSerializer: + return transform2t(float64()) + +## Serialize [Transform3D] objects, using [param component_serializer] to +## serialize each component of the transform. +## [br][br] +## Serializes a 3x4 matrix in 12 components, final size depends on [param +## component_serializer]. +static func transform3t(component_serializer: NetworkSchemaSerializer) -> NetworkSchemaSerializer: + return _GenericTransform3DSerializer.new(component_serializer) + +## Serialize [Transform3D] objects, with each component being a half-precision +## float. +## [br][br] +## This is only supported in Godot 4.4 and up. Earlier versions fall back to +## [method transform3f32]. +## [br][br] +## Final size is 24 bytes, 48 if using fallback. +static func transform3f16() -> NetworkSchemaSerializer: + return transform3t(float16()) + +## Serialize [Transform3D] objects, with each component being a single-precision +## float. +## [br][br] +## Final size is 48 bytes. +static func transform3f32() -> NetworkSchemaSerializer: + return transform3t(float32()) + +## Serialize [Transform2D] objects, with each component being a double-precision +## float. +## [br][br] +## Final size is 96 bytes. +static func transform3f64() -> NetworkSchemaSerializer: + return transform3t(float64()) + +# Collections + +## Serialize homogenoeous arrays, using [param item_serializer] to +## serialize each item, and [param size_serializer] to serialize the array's +## size. +## [br][br] +## To serialize heterogenoeous arrays, use [method variant] as the item +## serializer. +## [br][br] +## Final size is [code]sizeof(size_serializer) + array.size() * sizeof(item_serializer)[/code] +static func array_of(item_serializer: NetworkSchemaSerializer = variant(), size_serializer: NetworkSchemaSerializer = uint16()) -> NetworkSchemaSerializer: + return _ArraySerializer.new(item_serializer, size_serializer) + +## Serialize homogenoeous dictionaries, using [param key_serialize] and +## [param value_serializer] to serialize key-value pairs, and +## [param size_serializer] to serialize the number of entries. +## [br][br] +## If either the keys or values are not homogenoeous, use [method variant]. +## [br][br] +## Final size is [code]sizeof(size_serializer) + dictionary.size() * (sizeof(key_serializer) + sizeof(value_serializer))[/code] +static func dictionary(key_serializer: NetworkSchemaSerializer = variant(), + value_serializer: NetworkSchemaSerializer = variant(), + size_serializer: NetworkSchemaSerializer = uint16()) -> NetworkSchemaSerializer: + return _DictionarySerializer.new(key_serializer, value_serializer, size_serializer) + +# Serializes [_NetworkIdentityReference] objects +static func _netref() -> NetworkSchemaSerializer: + return _NetworkIdentityReferenceSerializer.new() + +# Serializer classes + +class _VariantSerializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: + b.put_var(v, false) + + func decode(b: StreamPeerBuffer) -> Variant: + return b.get_var(false) + +class _StringSerializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: + b.put_utf8_string(str(v)) + + func decode(b: StreamPeerBuffer) -> Variant: + return b.get_utf8_string() + +class _BoolSerializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: + b.put_u8(1 if v else 0) + + func decode(b: StreamPeerBuffer) -> Variant: + return b.get_u8() > 0 + +class _Uint8Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_u8(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_u8() + +class _Uint16Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_u16(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_u16() + +class _Uint32Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_u32(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_u32() + +class _Uint64Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_u64(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_u64() + +class _Int8Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_8(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_8() + +class _Int16Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_16(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_16() + +class _Int32Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_32(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_32() + +class _Int64Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_64(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_64() + +class _VaruintSerializer extends NetworkSchemaSerializer: + static var instance := _VaruintSerializer.new() + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var value := v as int + for __ in 8: # Bounded while loop + var nominator := value & 0b0111_1111 # Grab the lowest 7 bits + var continuator := value > 0b0111_1111 # Continue if more bits + var cont_bit := 0b1000_0000 if continuator else 0 + var byte := nominator | cont_bit # Combine into 1 byte + value = value >> 7 # Discard lower 7 bits + b.put_u8(byte) # Save byte + + # Stop if no more bytes to write + if not continuator: + break + + func decode(b: StreamPeerBuffer) -> Variant: + var value := 0 + for i in 8: + var byte := b.get_u8() + var nominator := byte & 0b0111_1111 + var continuator := (byte & 0b1000_0000) != 0 + value += nominator << (i * 7) + + if not continuator: + break + return value + +class _VariableBitsetSerializer extends NetworkSchemaSerializer: + static var instance := _VariableBitsetSerializer.new() + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var bitset := v as _Bitset + if bitset.is_empty(): + b.put_u8(0) + return + + for i in range(0, bitset.bit_count(), 7): + var byte := 0 + + # Set bits + if bitset.bit_count() > i + 0 and bitset.get_bit(i + 0): byte |= 0x01 + if bitset.bit_count() > i + 1 and bitset.get_bit(i + 1): byte |= 0x02 + if bitset.bit_count() > i + 2 and bitset.get_bit(i + 2): byte |= 0x04 + if bitset.bit_count() > i + 3 and bitset.get_bit(i + 3): byte |= 0x08 + if bitset.bit_count() > i + 4 and bitset.get_bit(i + 4): byte |= 0x10 + if bitset.bit_count() > i + 5 and bitset.get_bit(i + 5): byte |= 0x20 + if bitset.bit_count() > i + 6 and bitset.get_bit(i + 6): byte |= 0x40 + + # Set highest bit if there's more bytes to read + if bitset.bit_count() > i + 7: byte |= 80 + + b.put_u8(byte) + + func decode(b: StreamPeerBuffer) -> Variant: + var bools := [] + + while true: + var byte := b.get_u8() + + bools.append(byte & 0x01) + bools.append(byte & 0x02) + bools.append(byte & 0x04) + bools.append(byte & 0x08) + bools.append(byte & 0x10) + bools.append(byte & 0x20) + bools.append(byte & 0x40) + + # Stop if no more data to read + if byte & 0x80 == 0: + break + + return _Bitset.of_bools(bools) + +class _Float16Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: + if Engine.get_version_info().hex >= 0x040400: + b.put_half(v) + else: + b.put_float(v) + + func decode(b: StreamPeerBuffer) -> Variant: + if Engine.get_version_info().hex >= 0x040400: + return b.get_half() + else: + return b.get_float() + +class _Float32Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_float(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_float() + +class _Float64Serializer extends NetworkSchemaSerializer: + func encode(v: Variant, b: StreamPeerBuffer) -> void: b.put_double(v) + func decode(b: StreamPeerBuffer) -> Variant: return b.get_double() + +class _GenericVec2Serializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + component.encode(v.x, b) + component.encode(v.y, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Vector2(component.decode(b), component.decode(b)) + +class _GenericVec3Serializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + component.encode(v.x, b) + component.encode(v.y, b) + component.encode(v.z, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Vector3( + component.decode(b), component.decode(b), component.decode(b) + ) + +class _Normal2Serializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + component.encode((v as Vector2).angle(), b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Vector2.RIGHT.rotated(component.decode(b)) + +class _Normal3Serializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var uv := (v as Vector3).octahedron_encode() + component.encode(uv.x, b) + component.encode(uv.y, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Vector3.octahedron_decode( + Vector2(component.decode(b), component.decode(b)) + ) + +class _GenericVec4Serializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + component.encode(v.x, b) + component.encode(v.y, b) + component.encode(v.z, b) + component.encode(v.w, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Vector4( + component.decode(b), component.decode(b), component.decode(b), component.decode(b) + ) + +class _GenericQuaternionSerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + component.encode(v.x, b) + component.encode(v.y, b) + component.encode(v.z, b) + component.encode(v.w, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Quaternion( + component.decode(b), component.decode(b), component.decode(b), component.decode(b) + ) + +class _GenericTransform2DSerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var t := v as Transform2D + + component.encode(t.x.x, b); component.encode(t.x.y, b) + component.encode(t.y.x, b); component.encode(t.y.y, b) + component.encode(t.origin.x, b); component.encode(t.origin.y, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Transform2D( + Vector2(component.decode(b), component.decode(b)), + Vector2(component.decode(b), component.decode(b)), + Vector2(component.decode(b), component.decode(b)), + ) + +class _GenericTransform3DSerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer): + component = p_component + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var t := v as Transform3D + + component.encode(t.basis.x.x, b); component.encode(t.basis.x.y, b); component.encode(t.basis.x.z, b) + component.encode(t.basis.y.x, b); component.encode(t.basis.y.y, b); component.encode(t.basis.y.z, b) + component.encode(t.basis.z.x, b); component.encode(t.basis.z.y, b); component.encode(t.basis.z.z, b) + component.encode(t.origin.x, b); component.encode(t.origin.y, b); component.encode(t.origin.z, b) + + func decode(b: StreamPeerBuffer) -> Variant: + return Transform3D( + Basis( + Vector3(component.decode(b), component.decode(b), component.decode(b)), + Vector3(component.decode(b), component.decode(b), component.decode(b)), + Vector3(component.decode(b), component.decode(b), component.decode(b)), + ), + Vector3(component.decode(b), component.decode(b), component.decode(b)) + ) + +class _QuantizingSerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + var from_min: Variant + var from_max: Variant + var to_min: Variant + var to_max: Variant + + func _init( + p_component: NetworkSchemaSerializer, p_from_min: Variant, + p_from_max: Variant, p_to_min: Variant, p_to_max: Variant + ): + component = p_component + from_min = p_from_min + from_max = p_from_max + to_min = p_to_min + to_max = p_to_max + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var f := inverse_lerp(from_min, from_max, v) + var s := lerp(to_min, to_max, f) + component.encode(s, b) + + func decode(b: StreamPeerBuffer) -> Variant: + var s := component.decode(b) + var f := inverse_lerp(to_min, to_max, s) + return lerp(from_min, from_max, f) + +class _ModuloSerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + var value_max: Variant + var component_max: Variant + + func _init(p_component: NetworkSchemaSerializer, p_value_max: Variant, p_component_max: Variant): + component = p_component + value_max = p_value_max + component_max = p_component_max + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var f = fposmod(float(v), value_max) / value_max + var s = f * component_max + component.encode(s, b) + + func decode(b: StreamPeerBuffer) -> Variant: + var s = float(component.decode(b)) + return (s / component_max) * value_max + +class _ArraySerializer extends NetworkSchemaSerializer: + var component: NetworkSchemaSerializer + var size: NetworkSchemaSerializer + + func _init(p_component: NetworkSchemaSerializer, p_size: NetworkSchemaSerializer): + component = p_component + size = p_size + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var array := v as Array + + size.encode(array.size(), b) + for item in array: + component.encode(item, b) + + func decode(b: StreamPeerBuffer) -> Variant: + var array := [] + + var item_count = size.decode(b) + array.resize(item_count) + for i in item_count: + array[i] = component.decode(b) + + return array + +class _DictionarySerializer extends NetworkSchemaSerializer: + var key_serializer: NetworkSchemaSerializer + var value_serializer: NetworkSchemaSerializer + var size_serializer: NetworkSchemaSerializer + + func _init(p_key_serializer: NetworkSchemaSerializer, p_value_serializer: NetworkSchemaSerializer, p_size_serializer: NetworkSchemaSerializer): + key_serializer = p_key_serializer + value_serializer = p_value_serializer + size_serializer = p_size_serializer + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var dictionary := v as Dictionary + + size_serializer.encode(dictionary.size(), b) + for key in dictionary: + var value = dictionary[key] + key_serializer.encode(key, b) + value_serializer.encode(value, b) + + func decode(b: StreamPeerBuffer) -> Variant: + var dictionary := {} + + var size = size_serializer.decode(b) + for i in size: + var key = key_serializer.decode(b) + var value = value_serializer.decode(b) + dictionary[key] = value + + return dictionary + +class _NetworkIdentityReferenceSerializer extends NetworkSchemaSerializer: + static var varuint := _VaruintSerializer.new() + + func encode(v: Variant, b: StreamPeerBuffer) -> void: + var ref := v as _NetworkIdentityReference + if ref.has_id(): + varuint.encode(ref.get_id(), b) + else: + b.put_u8(0) + # TODO(#562): Get rid of Godot's prepended 32 bits of string length + # TODO(#562): Write is easy, prefer not manually iterating till \0 on read + b.put_utf8_string(ref.get_full_name()) + + func decode(b: StreamPeerBuffer) -> Variant: + var id := varuint.decode(b) as int + if id == 0: + var full_name := b.get_utf8_string() + return _NetworkIdentityReference.of_full_name(full_name) + else: + return _NetworkIdentityReference.of_id(id) diff --git a/addons/netfox/schemas/network-schemas.gd.uid b/addons/netfox/schemas/network-schemas.gd.uid new file mode 100644 index 0000000..1a217c5 --- /dev/null +++ b/addons/netfox/schemas/network-schemas.gd.uid @@ -0,0 +1 @@ +uid://byaxeh31f2i6m diff --git a/addons/netfox/serializers/base-snapshot-serializer.gd b/addons/netfox/serializers/base-snapshot-serializer.gd new file mode 100644 index 0000000..b7a154b --- /dev/null +++ b/addons/netfox/serializers/base-snapshot-serializer.gd @@ -0,0 +1,37 @@ +extends RefCounted +class_name _BaseSnapshotSerializer + +var _identity_server: _NetworkIdentityServer +var _schemas: _NetworkSchema + +static var _default_filter := func(subject: Object): return true +static var _logger := NetfoxLogger._for_netfox("DenseSnapshotSerializer") + +func _init(p_schemas: _NetworkSchema, p_identity_server: _NetworkIdentityServer = null): + assert(p_schemas != null, "Missing schemas!") + # Intentionally storing reference, so it can be modified from the outside + # e.g. RollbackSynchronizerServer adds a property + _schemas = p_schemas + _identity_server = p_identity_server + +func _write_property(node: Node, property: NodePath, value: Variant, buffer: StreamPeerBuffer) -> void: + _schemas.encode(node, property, value, buffer) + +func _read_property(node: Node, property: NodePath, buffer: StreamPeerBuffer) -> Variant: + return _schemas.decode(node, property, buffer) + +func _write_identifier(subject: Object, peer: int, buffer: StreamPeerBuffer) -> Error: + var netref := NetworkSchemas._netref() + var identifier := _get_identity_server()._get_identifier_of(subject) + if not identifier: + _logger.error("Can't synchronize %s, identifier missing!", [subject]) + return ERR_DOES_NOT_EXIST + + var idref := identifier.reference_for(peer) + netref.encode(idref, buffer) + return OK + +func _get_identity_server() -> _NetworkIdentityServer: + if not _identity_server: + _identity_server = NetworkIdentityServer + return _identity_server diff --git a/addons/netfox/serializers/base-snapshot-serializer.gd.uid b/addons/netfox/serializers/base-snapshot-serializer.gd.uid new file mode 100644 index 0000000..41b7024 --- /dev/null +++ b/addons/netfox/serializers/base-snapshot-serializer.gd.uid @@ -0,0 +1 @@ +uid://b8mn7i6dnt0bu diff --git a/addons/netfox/serializers/dense-snapshot-serializer.gd b/addons/netfox/serializers/dense-snapshot-serializer.gd new file mode 100644 index 0000000..5db0b83 --- /dev/null +++ b/addons/netfox/serializers/dense-snapshot-serializer.gd @@ -0,0 +1,87 @@ +extends _BaseSnapshotSerializer +class_name _DenseSnapshotSerializer + +static func _static_init(): + _logger = NetfoxLogger._for_netfox("DenseSnapshotSerializer") + +func write_for(peer: int, snapshot: _Snapshot, properties: _PropertyPool, filter: Callable = _default_filter, buffer: StreamPeerBuffer = null) -> PackedByteArray: + if buffer == null: + buffer = StreamPeerBuffer.new() + + var netref := NetworkSchemas._netref() + var varuint := NetworkSchemas.varuint() + + var node_buffer := StreamPeerBuffer.new() + + var has_data := false + + # Write tick + buffer.put_u32(snapshot.tick) + + # For each node + for subject in properties.get_subjects(): + if not filter.call(subject): continue + if not snapshot.is_auth(subject): continue + + var node := subject as Node + assert(node.is_multiplayer_authority(), "Trying to serialize state for non-owned node!") + assert(snapshot.is_auth(node), "Trying to serialize non-auth state node!") + + # Write identifier + if _write_identifier(node, peer, buffer) != OK: + continue + + # Write properties as-is + # First into a buffer, so we can start with the state size + node_buffer.clear() + for property in properties.get_properties_of(node): + assert(snapshot.has_property(node, property), "Trying to serialize missing property %s on subject %s!" % [property, node]) + + var value := snapshot.get_property(node, property) + _write_property(node, property, value, node_buffer) + + # Indicate state size for the node + varuint.encode(node_buffer.data_array.size(), buffer) + + # Write node state + buffer.put_data(node_buffer.data_array) + + has_data = true + + if has_data: + return buffer.data_array + else: + return PackedByteArray() + +func read_from(peer: int, properties: _PropertyPool, buffer: StreamPeerBuffer, is_auth: bool = true) -> _Snapshot: + var netref := NetworkSchemas._netref() + var varuint := NetworkSchemas.varuint() + var node_buffer := StreamPeerBuffer.new() + + # Read tick + var tick := buffer.get_u32() + var snapshot := _Snapshot.new(tick) + + while buffer.get_available_bytes() > 0: + # Read identity reference, data size, and data + var idref := netref.decode(buffer) as _NetworkIdentityReference + var node_data_size := varuint.decode(buffer) as int + node_buffer.data_array = buffer.get_partial_data(node_data_size)[1] + + # Resolve to identifier + var identifier := _get_identity_server()._resolve_reference(peer, idref) + if not identifier: + # TODO(#563): Handle unknown IDs gracefully + _logger.warning("Received unknown identity reference %s, skipping data", [idref]) + continue + var node := identifier.get_subject() as Node + + # Read properties + for property in properties.get_properties_of(node): + if node_buffer.get_available_bytes() == 0: break + + var value := _read_property(node, property, node_buffer) + snapshot.set_property(node, property, value) + snapshot.set_auth(node, is_auth) + + return snapshot diff --git a/addons/netfox/serializers/dense-snapshot-serializer.gd.uid b/addons/netfox/serializers/dense-snapshot-serializer.gd.uid new file mode 100644 index 0000000..ce64946 --- /dev/null +++ b/addons/netfox/serializers/dense-snapshot-serializer.gd.uid @@ -0,0 +1 @@ +uid://k37sxuptebt3 diff --git a/addons/netfox/serializers/netfox_serializer.gd.uid b/addons/netfox/serializers/netfox_serializer.gd.uid new file mode 100644 index 0000000..b3ec724 --- /dev/null +++ b/addons/netfox/serializers/netfox_serializer.gd.uid @@ -0,0 +1 @@ +uid://bf67e0hnmp70h diff --git a/addons/netfox/serializers/redundant-snapshot-serializer.gd b/addons/netfox/serializers/redundant-snapshot-serializer.gd new file mode 100644 index 0000000..b8a8fc4 --- /dev/null +++ b/addons/netfox/serializers/redundant-snapshot-serializer.gd @@ -0,0 +1,40 @@ +extends _BaseSnapshotSerializer +class_name _RedundantSnapshotSerializer + +var _dense_serializer: _DenseSnapshotSerializer + +static func _static_init(): + _logger = NetfoxLogger._for_netfox("RedundantSnapshotSerializer") + +func _init(p_schemas: _NetworkSchema, p_identity_server: _NetworkIdentityServer = null): + super(p_schemas) + _dense_serializer = _DenseSnapshotSerializer.new(_schemas, p_identity_server) + +func write_for(peer: int, snapshots: Array[_Snapshot], properties: _PropertyPool, buffer: StreamPeerBuffer = null) -> PackedByteArray: + var varuint := NetworkSchemas.varuint() + + if buffer == null: + buffer = StreamPeerBuffer.new() + + # TODO(#560): How about encoding the first snapshot as-is, and then the rest as diffs + for snapshot in snapshots: + var serialized := _dense_serializer.write_for(peer, snapshot, properties) + + # Write size and snapshot + varuint.encode(serialized.size(), buffer) + buffer.put_data(serialized) + + return buffer.data_array + +func read_from(peer: int, properties: _PropertyPool, buffer: StreamPeerBuffer, is_auth: bool = true) -> Array[_Snapshot]: + var varuint := NetworkSchemas.varuint() + + var snapshots := [] as Array[_Snapshot] + while buffer.get_available_bytes() > 0: + var snapshot_size := varuint.decode(buffer) + var snapshot_buffer := StreamPeerBuffer.new() + snapshot_buffer.data_array = buffer.get_partial_data(snapshot_size)[1] + + var snapshot := _dense_serializer.read_from(peer, properties, snapshot_buffer, is_auth) + snapshots.append(snapshot) + return snapshots diff --git a/addons/netfox/serializers/redundant-snapshot-serializer.gd.uid b/addons/netfox/serializers/redundant-snapshot-serializer.gd.uid new file mode 100644 index 0000000..535fe2b --- /dev/null +++ b/addons/netfox/serializers/redundant-snapshot-serializer.gd.uid @@ -0,0 +1 @@ +uid://ch0p4f4nuy1c diff --git a/addons/netfox/serializers/sparse-snapshot-serializer.gd b/addons/netfox/serializers/sparse-snapshot-serializer.gd new file mode 100644 index 0000000..1705ce8 --- /dev/null +++ b/addons/netfox/serializers/sparse-snapshot-serializer.gd @@ -0,0 +1,92 @@ +extends _BaseSnapshotSerializer +class_name _SparseSnapshotSerializer + +static func _static_init(): + _logger = NetfoxLogger._for_netfox("SparseSnapshotSerializer") + +func write_for(peer: int, snapshot: _Snapshot, properties: _PropertyPool, filter: Callable = _default_filter, buffer: StreamPeerBuffer = null) -> PackedByteArray: + if buffer == null: + buffer = StreamPeerBuffer.new() + + var netref := NetworkSchemas._netref() + var varuint := NetworkSchemas.varuint() + var varbits := NetworkSchemas._varbits() + + var node_buffer := StreamPeerBuffer.new() + + var has_data := false + + # Write ticks + buffer.put_u32(snapshot.tick) + + # For each node + for subject in properties.get_subjects(): + if not filter.call(subject): continue + if not snapshot.is_auth(subject): continue + + var node := subject as Node + assert(node.is_multiplayer_authority(), "Trying to serialize state for non-owned node!") + assert(snapshot.is_auth(node), "Trying to serialize non-auth state node!") + + # Write identifier + if _write_identifier(node, peer, buffer) != OK: + continue + + node_buffer.clear() + + var node_props := properties.get_properties_of(node) + var changed_bits := _Bitset.new(node_props.size()) + + for i in node_props.size(): + var property := node_props[i] + if not snapshot.has_property(node, property): + continue + + changed_bits.set_bit(i) + var value := snapshot.get_property(node, property) + _write_property(node, property, value, node_buffer) + + varuint.encode(node_buffer.data_array.size(), buffer) # Node props len + varbits.encode(changed_bits, buffer) # Changed prop bits + buffer.put_data(node_buffer.data_array) # Changed props + has_data = true + + if has_data: + return buffer.data_array + else: + # Return an empty buffer if we ended up not serializing anything + return PackedByteArray() + +func read_from(peer: int, properties: _PropertyPool, buffer: StreamPeerBuffer, is_auth: bool = true) -> _Snapshot: + var netref := NetworkSchemas._netref() + var varuint := NetworkSchemas.varuint() + var varbits := NetworkSchemas._varbits() + var node_buffer := StreamPeerBuffer.new() + + # Grab ticks + var tick := buffer.get_u32() + var snapshot := _Snapshot.new(tick) + + while buffer.get_available_bytes() > 0: + # Read header, including identity reference + var idref := netref.decode(buffer) as _NetworkIdentityReference + var node_data_size := varuint.decode(buffer) as int + var changed_bits := varbits.decode(buffer) as _Bitset + node_buffer.data_array = buffer.get_partial_data(node_data_size)[1] + + # Resolve to identifier + var identifier := _get_identity_server()._resolve_reference(peer, idref) + if not identifier: + # TODO(#563): Handle unknown IDs gracefully + _logger.warning("Received unknown identity reference %s, skipping data", [idref]) + break + var node := identifier.get_subject() as Node + + # Read changed properties + var node_props := properties.get_properties_of(node) + for idx in changed_bits.get_set_indices(): + var property := node_props[idx] + var value := _read_property(node, property, node_buffer) + snapshot.set_property(node, property, value) + snapshot.set_auth(node, is_auth) + return snapshot diff --git a/addons/netfox/serializers/sparse-snapshot-serializer.gd.uid b/addons/netfox/serializers/sparse-snapshot-serializer.gd.uid new file mode 100644 index 0000000..a702ace --- /dev/null +++ b/addons/netfox/serializers/sparse-snapshot-serializer.gd.uid @@ -0,0 +1 @@ +uid://b01d03njlfhh1 diff --git a/addons/netfox/servers/data/network-identifier.gd b/addons/netfox/servers/data/network-identifier.gd new file mode 100644 index 0000000..d861b80 --- /dev/null +++ b/addons/netfox/servers/data/network-identifier.gd @@ -0,0 +1,49 @@ +class_name _NetworkIdentifier +extends RefCounted + +var _subject: Object +var _full_name: String +var _ids: Dictionary = {} # peer to id +var _local_id: int + +signal on_id(peer: int, id: int) + +func _init(subject: Object, full_name: String, local_id: int, local_peer: int): + _subject = subject + _full_name = full_name + _local_id = local_id + _ids[local_peer] = local_id + +func has_id_for(peer: int) -> bool: + return _ids.has(peer) + +func get_id_for(peer: int) -> int: + return _ids.get(peer, -1) + +func set_id_for(peer: int, id: int) -> void: + assert(not _ids.has(peer), "ID for peer #%d is already set!" % [peer]) + _ids[peer] = id + on_id.emit(peer, id) + +func get_local_id() -> int: + return _local_id + +func get_full_name() -> String: + return _full_name + +func get_subject() -> Object: + return _subject + +func get_known_peers() -> Array[int]: + var result := [] as Array[int] + result.assign(_ids.keys()) + return result + +func reference_for(peer: int) -> _NetworkIdentityReference: + if has_id_for(peer): + return _NetworkIdentityReference.of_id(get_id_for(peer)) + else: + return _NetworkIdentityReference.of_full_name(get_full_name()) + +func _to_string() -> String: + return "NetworkIdentifier(%s)" % [_full_name] diff --git a/addons/netfox/servers/data/network-identifier.gd.uid b/addons/netfox/servers/data/network-identifier.gd.uid new file mode 100644 index 0000000..eab4188 --- /dev/null +++ b/addons/netfox/servers/data/network-identifier.gd.uid @@ -0,0 +1 @@ +uid://gnyygflpr78h diff --git a/addons/netfox/servers/data/network-identity-reference.gd b/addons/netfox/servers/data/network-identity-reference.gd new file mode 100644 index 0000000..954cf0a --- /dev/null +++ b/addons/netfox/servers/data/network-identity-reference.gd @@ -0,0 +1,35 @@ +class_name _NetworkIdentityReference +extends RefCounted + +var _full_name: String = "" +var _id: int = -1 + +static func of_full_name(full_name: String) -> _NetworkIdentityReference: + var reference := _NetworkIdentityReference.new() + reference._full_name = full_name + return reference + +static func of_id(id: int) -> _NetworkIdentityReference: + var reference := _NetworkIdentityReference.new() + reference._id = id + return reference + +func has_id() -> bool: + return _id >= 0 + +func get_id() -> int: + return _id + +func get_full_name() -> String: + return _full_name + +func equals(other: Variant) -> bool: + if other is _NetworkIdentityReference: + return _full_name == other._full_name and _id == other._id + return false + +func _to_string() -> String: + if has_id(): + return "NetworkIdentityReference#%d" % [_id] + else: + return "NetworkIdentityReference(%s)" % [_full_name] diff --git a/addons/netfox/servers/data/network-identity-reference.gd.uid b/addons/netfox/servers/data/network-identity-reference.gd.uid new file mode 100644 index 0000000..006cf3f --- /dev/null +++ b/addons/netfox/servers/data/network-identity-reference.gd.uid @@ -0,0 +1 @@ +uid://c6eyaau5r8g51 diff --git a/addons/netfox/servers/data/object-snapshot.gd b/addons/netfox/servers/data/object-snapshot.gd new file mode 100644 index 0000000..4119df8 --- /dev/null +++ b/addons/netfox/servers/data/object-snapshot.gd @@ -0,0 +1,47 @@ +extends RefCounted +class_name _ObjectSnapshot + +# Represents snapshot data for a single object, by storing the object's values +# for specified properties + +var _object: Object +var _is_auth: bool = false +var _data: Dictionary = {} + +func _init(p_object: Object) -> void: + _object = p_object + +func duplicate() -> _ObjectSnapshot: + var result := _ObjectSnapshot.new(_object) + result._is_auth = _is_auth + result._data = _data.duplicate() + return result + +func get_value(property: NodePath, default: Variant = null) -> Variant: + return _data.get(property, default) + +func set_value(property: NodePath, value: Variant) -> void: + _data[property] = value + +func has_value(property: NodePath) -> bool: + return _data.has(property) + +func record_property(property: NodePath) -> void: + set_value(property, _object.get_indexed(property)) + +func apply() -> void: + for property in properties(): + var value := get_value(property) + _object.set_indexed(property, value) + +func is_auth() -> bool: + return _is_auth + +func set_auth(p_auth: bool) -> void: + _is_auth = p_auth + +func properties() -> Array: + return _data.keys() + +func _to_string() -> String: + return "ObjectSnapshot(%s(%d), %s, %s)" % [_object, (_object as Node).get_multiplayer_authority() if _object is Node else -1, _is_auth, _data] diff --git a/addons/netfox/servers/data/object-snapshot.gd.uid b/addons/netfox/servers/data/object-snapshot.gd.uid new file mode 100644 index 0000000..43b9687 --- /dev/null +++ b/addons/netfox/servers/data/object-snapshot.gd.uid @@ -0,0 +1 @@ +uid://bx4b8w54gleym diff --git a/addons/netfox/servers/data/per-object-history.gd b/addons/netfox/servers/data/per-object-history.gd new file mode 100644 index 0000000..6f0f9f8 --- /dev/null +++ b/addons/netfox/servers/data/per-object-history.gd @@ -0,0 +1,103 @@ +extends RefCounted +class_name _PerObjectHistory + +# Stores a per-object history of ObjectSnapshots +# Each managed object has its own timeline of snapshots + +var _history_size: int +var _data := {} # Object to _HistoryBuffer + +func _init(p_history_size: int): + _history_size = p_history_size + +func subjects() -> Array[Object]: + var result := [] as Array[Object] + result.assign(_data.keys()) + return result + +func is_auth(tick: int, subject: Object) -> bool: + if not _data.has(subject): + return false + + var history := _data[subject] as _HistoryBuffer + if not history.has_at(tick): + return false + + var snapshot := history.get_at(tick) as _ObjectSnapshot + return snapshot.is_auth() + +func erase_subject(subject: Object) -> void: + _data.erase(subject) + +func ensure_snapshot(tick: int, subject: Object, carry_forward: bool) -> _ObjectSnapshot: + var has_subject := _data.has(subject) + if not _data.has(subject): + _data[subject] = _HistoryBuffer.new(_history_size) + + var history := _data[subject] as _HistoryBuffer + var has_tick := history.has_at(tick) + var has_latest := history.has_latest_at(tick) + + if not history.has_at(tick): + if not history.has_latest_at(tick): + history.set_at(tick, _ObjectSnapshot.new(subject)) + elif carry_forward: + history.set_at(tick, history.get_latest_at(tick).duplicate()) + else: + history.set_at(tick, _ObjectSnapshot.new(subject)) + + assert(history.get_at(tick) != null, "Failed to ensure snapshot!") + return history.get_at(tick) as _ObjectSnapshot + +func get_latest_snapshot(tick: int, subject: Object) -> _ObjectSnapshot: + if not _data.has(subject): + return null + + var history := _data[subject] as _HistoryBuffer + if not history.has_latest_at(tick): + return null + + return history.get_latest_at(tick) as _ObjectSnapshot + +func get_latest_tick(tick: int, subject: Object) -> int: + if not _data.has(subject): + return -1 + + var history := _data[subject] as _HistoryBuffer + if not history.has_latest_at(tick): + return -1 + + return history.get_latest_index_at(tick) + +func set_property(tick: int, subject: Object, property: NodePath, value: Variant) -> void: + if not _data.has(subject): + _data[subject] = _HistoryBuffer.new(_history_size) + + var history := _data[subject] as _HistoryBuffer + if not history.has_at(tick): + history.set_at(tick, _ObjectSnapshot.new(subject)) + + var snapshot := history.get_at(tick) as _ObjectSnapshot + snapshot.set_value(property, value) + +func has_property(tick: int, subject: Object, property: NodePath) -> bool: + if not _data.has(subject): + return false + + var history := _data[subject] as _HistoryBuffer + if not history.has_at(tick): + return false + + var snapshot := history.get_at(tick) as _ObjectSnapshot + return snapshot.has_value(property) + +func get_property(tick: int, subject: Object, property: NodePath, default: Variant = null) -> Variant: + if not _data.has(subject): + return default + + var history := _data[subject] as _HistoryBuffer + if not history.has_at(tick): + return default + + var snapshot := history.get_at(tick) as _ObjectSnapshot + return snapshot.get_value(property, default) diff --git a/addons/netfox/servers/data/per-object-history.gd.uid b/addons/netfox/servers/data/per-object-history.gd.uid new file mode 100644 index 0000000..f880735 --- /dev/null +++ b/addons/netfox/servers/data/per-object-history.gd.uid @@ -0,0 +1 @@ +uid://70ow466d8yqh diff --git a/addons/netfox/servers/data/property-pool.gd b/addons/netfox/servers/data/property-pool.gd new file mode 100644 index 0000000..63db467 --- /dev/null +++ b/addons/netfox/servers/data/property-pool.gd @@ -0,0 +1,64 @@ +extends RefCounted +class_name _PropertyPool + +# Stores a set of properties, with each property belonging to a subject + +var _properties_by_subject := {} # object to property array + +static func of(entries: Array[Array]) -> _PropertyPool: + var pool := _PropertyPool.new() + + for entry in entries: + var subject := entry[0] as Object + var property := entry[1] as NodePath + pool.add(subject, property) + + return pool + +func add(subject: Object, property: NodePath) -> void: + if has(subject, property): + return + + if not _properties_by_subject.has(subject): + _properties_by_subject[subject] = [property] + else: + _properties_by_subject[subject].append(property) + +func has(subject: Object, property: NodePath) -> bool: + return (_properties_by_subject.get(subject, []) as Array).has(property) + +func erase(subject: Object, property: NodePath) -> void: + if not _properties_by_subject.has(subject): + return + + var props := _properties_by_subject[subject] as Array + props.erase(property) + + if props.is_empty(): + _properties_by_subject.erase(subject) + +func erase_subject(subject: Object) -> void: + _properties_by_subject.erase(subject) + +func clear() -> void: + _properties_by_subject.clear() + +func get_properties_of(subject: Object) -> Array[NodePath]: + var properties := [] as Array[NodePath] + properties.assign(_properties_by_subject.get(subject, [])) + return properties + +func get_subjects() -> Array[Object]: + var subjects := [] as Array[Object] + subjects.assign(_properties_by_subject.keys()) + return subjects + +func is_empty() -> bool: + return _properties_by_subject.is_empty() + +func set_from_paths(root: Node, paths: Array[String]) -> void: + clear() + + for path in paths: + var prop := PropertyEntry.parse(root, path) + add(prop.node, prop.property) diff --git a/addons/netfox/servers/data/property-pool.gd.uid b/addons/netfox/servers/data/property-pool.gd.uid new file mode 100644 index 0000000..bbb45ed --- /dev/null +++ b/addons/netfox/servers/data/property-pool.gd.uid @@ -0,0 +1 @@ +uid://j4luqnbeo8jv diff --git a/addons/netfox/servers/data/snapshot.gd b/addons/netfox/servers/data/snapshot.gd new file mode 100644 index 0000000..12963ef --- /dev/null +++ b/addons/netfox/servers/data/snapshot.gd @@ -0,0 +1,171 @@ +extends RefCounted +class_name _Snapshot + +# Stores property values of multiple subjects, recorded for a specific tick + +var tick: int +var _data := {} # object to (property to variant) +var _auth_subjects := _Set.new() + +static func make_patch(from: _Snapshot, to: _Snapshot, tick: int = to.tick) -> _Snapshot: + var patch := _Snapshot.new(tick) + + for subject in from._data: + # Target has no knowledge of subject, don't patch + if not to._data.has(subject): + continue + # Only patch to auth subjects + if not to.is_auth(subject): + continue + + for property in to._data[subject]: + # Target snapshot has different value, patch it + if from.get_property(subject, property) != to.get_property(subject, property): + patch.set_property(subject, property, to.get_property(subject, property)) + patch.set_auth(subject, to.is_auth(subject)) + + return patch + +# Each entry should be [subject, property, value] +static func of(tick: int, entries: Array[Array], auth_subjects: Array[Object]) -> _Snapshot: + var snapshot := _Snapshot.new(tick) + for entry in entries: + var subject := entry[0] as Object + var property := entry[1] as NodePath + var value := entry[2] as Variant + + snapshot.set_property(subject, property, value) + + for subject in auth_subjects: + snapshot.set_auth(subject, true) + + return snapshot + +func _init(p_tick: int): + tick = p_tick + +func duplicate() -> _Snapshot: + var result := _Snapshot.new(tick) + result._data = _data.duplicate(true) + result._auth_subjects = _auth_subjects.duplicate() + return result + +func set_auth(subject: Object, is_auth: bool) -> void: + if is_auth: + _auth_subjects.add(subject) + else: + _auth_subjects.erase(subject) + +func set_property(subject: Object, property: NodePath, value: Variant) -> void: + if not _data.has(subject): + _data[subject] = { property: value } + else: + _data[subject][property] = value + +func record_property(subject: Object, property: NodePath) -> void: + var value := subject.get_indexed(property) + set_property(subject, property, value) + +func get_property(subject: Object, property: NodePath) -> Variant: + return _data.get(subject, {}).get(property) + +func has_property(subject: Object, property: NodePath) -> bool: + if not _data.has(subject): + return false + if not _data[subject].has(property): + return false + return true + +func merge(snapshot: _Snapshot) -> bool: + var has_changed := false + + for subject in snapshot._data: + if not _data.has(subject): + # We have no data of the subject, copy all + _data[subject] = snapshot._data[subject].duplicate() + set_auth(subject, snapshot.is_auth(subject)) + has_changed = true + continue + + if snapshot.is_auth(subject) or not is_auth(subject): + var own_props := _data[subject] as Dictionary + var their_props := snapshot._data[subject] as Dictionary + + has_changed = has_changed or own_props != their_props + + own_props.merge(their_props, true) + set_auth(subject, snapshot.is_auth(subject)) + + return has_changed + +func apply() -> void: + for subject in _data: + for property in _data[subject]: + var value = _data[subject][property] + (subject as Object).set_indexed(property, value) + +func sanitize(sender: int) -> void: + var invalid_subjects := [] + for subject in _data: + if subject is Node: + if subject.get_multiplayer_authority() != sender: + invalid_subjects.append(subject) + + for subject in invalid_subjects: + _data.erase(invalid_subjects) + +func has_subject(subject: Object, require_auth: bool = false) -> bool: + if not _data.has(subject): + return false + if require_auth and not is_auth(subject): + return false + return true + +func has_subjects(subjects: Array, require_auth: bool = false) -> bool: + for subject in subjects: + if not has_subject(subject, require_auth): + return false + return true + +func get_subjects() -> Array: + return _data.keys() + +func get_auth_subjects() -> Array: + return _auth_subjects.values() + +func get_subject_properties(subject: Object) -> Array: + return _data.get(subject, {}).keys() + +func is_empty() -> bool: + return _data.is_empty() + +func size() -> int: + var result := 0 + for subject in _data: + result += (_data[subject] as Dictionary).size() + return result + +func is_auth(subject: Object) -> bool: + return _auth_subjects.has(subject) + +func equals(other) -> bool: + if other is _Snapshot: + return tick == other.tick and _data == other._data and _auth_subjects.equals(other._auth_subjects) + else: + return false + +func _to_string() -> String: + var result := "_Snapshot(#%d" % [tick] + for subject in _data: + for property in _data[subject]: + var value = _data[subject][property] + result += ", %s:%s(%s): %s" % [subject, property, is_auth(subject), value] + result += ")" + return result + +func _to_vest(): + return { + "tick": tick, + "data": _data, + "auth_subjects": _auth_subjects + } diff --git a/addons/netfox/servers/data/snapshot.gd.uid b/addons/netfox/servers/data/snapshot.gd.uid new file mode 100644 index 0000000..388e26e --- /dev/null +++ b/addons/netfox/servers/data/snapshot.gd.uid @@ -0,0 +1 @@ +uid://b76plodlwp2u6 diff --git a/addons/netfox/servers/data/tick_snapshot.gd.uid b/addons/netfox/servers/data/tick_snapshot.gd.uid new file mode 100644 index 0000000..43386bb --- /dev/null +++ b/addons/netfox/servers/data/tick_snapshot.gd.uid @@ -0,0 +1 @@ +uid://ch0j0cclkpey6 diff --git a/addons/netfox/servers/network-command-server.gd b/addons/netfox/servers/network-command-server.gd new file mode 100644 index 0000000..7259311 --- /dev/null +++ b/addons/netfox/servers/network-command-server.gd @@ -0,0 +1,179 @@ +extends Node +class_name _NetworkCommandServer + +## Transmits commands over the network +## +## Commands are a simpler, lightweight alternative to RPCs. Commands consist of +## a single byte for ID, and the raw binary data. The ID lets the receiving peer +## decide what to execute, with the binary data serving as the input. +## [br][br] +## Being a simpler construct makes commands a good fit for regular, fundamental +## operations. +## [br][br] +## Commands are, by default, transmitted over regular RPCs. To use less data, +## commands can also be transmitted as raw packets, using +## [method SceneMultiplayer.send_bytes]. This is an opt-in feature - if the game +## is already using [method SceneMultiplayer.send_bytes], it needs to be aware +## of commands, and must check each packet whether it's a command or one of its +## own packets. To check if a packet is a command, use [method +## is_command_packet]. + +var _packet_prefix := PackedByteArray([0, 78, 70]) # "\0nf" +var _next_idx := 0 +var _rpc_transport := _RPCTransport.new() +var _packet_transport := _PacketTransport.new(_packet_prefix) +var _commands := {} # id to `Command` + +var _use_raw := ProjectSettings.get_setting("netfox/general/use_raw_commands", false) as bool + +static var _logger := NetfoxLogger._for_netfox("NetworkCommandServer") + +func _ready(): + add_child(_rpc_transport, true) + add_child(_packet_transport, true) + + _rpc_transport.on_receive.connect(_handle_command) + _packet_transport.on_receive.connect(_handle_command) + +## Register a command at the next available ID +func register_command(handler: Callable, mode: MultiplayerPeer.TransferMode = MultiplayerPeer.TRANSFER_MODE_RELIABLE, channel: int = 0) -> Command: + var idx := _next_idx + _next_idx += 1 + return register_command_at(idx, handler) + +## Register a command at a specific index +## [br][br] +## A specific ID should only be registered once. Doing otherwise will trigger an +## assert in the editor, but will overwrite the previous command in release. +func register_command_at(idx: int, handler: Callable, mode: MultiplayerPeer.TransferMode = MultiplayerPeer.TRANSFER_MODE_RELIABLE, channel: int = 0) -> Command: + assert(not _commands.has(idx), "Command #%d is already taken!" % idx) + var command := Command.new(self, idx, handler, mode, channel) + _commands[idx] = command + + _next_idx = maxi(_next_idx, idx + 1) + + return command + +## Send a command with index and data +func send_command(idx: int, data: PackedByteArray, target_peer: int = 0, mode: MultiplayerPeer.TransferMode = MultiplayerPeer.TRANSFER_MODE_RELIABLE, channel: int = 0) -> void: + if _use_raw: + _packet_transport.send(idx, data, target_peer, mode, channel) + else: + _rpc_transport.send(idx, data, target_peer, mode, channel) + +## Return true if [param packet] is a command packet +## [br][br] +## Always returns [code]true[/code] if RPCs are used for transmitting commands. +func is_command_packet(packet: PackedByteArray) -> bool: + if not _use_raw: + return true + return _packet_transport.is_command_packet(packet) + +## Return the prefix bytes for command packets +## [br][br] +## Can be used to avoid conflicts between command packets and game packets. +func get_command_packet_prefix() -> PackedByteArray: + return _packet_prefix + +func _handle_command(sender: int, idx: int, data: PackedByteArray) -> void: + var command := _commands.get(idx) as Command + if not command: + _logger.error("Received unknown command #%d!", [idx]) + return + command._handle(sender, data) + +## Networked command +## +## Provides a convenient interface for sending and managing networked commands. +## [br][br] +## Should not be instantiated manually. +class Command: + var _command_server: _NetworkCommandServer + + var _idx: int + var _handler: Callable + var _mode: MultiplayerPeer.TransferMode + var _channel: int + + func _init(p_command_server: _NetworkCommandServer, p_idx: int, p_handler: Callable, p_mode: MultiplayerPeer.TransferMode, p_channel: int): + _command_server = p_command_server + _idx = p_idx + _handler = p_handler + _mode = p_mode + _channel = p_channel + + ## Send command + func send(data: PackedByteArray, target_peer: int = 0) -> void: + _command_server.send_command(_idx, data, target_peer, _mode, _channel) + + func _handle(sender: int, data: PackedByteArray) -> void: + _handler.call(sender, data) + +class _Transport extends Node: + signal on_receive(idx: int, data: PackedByteArray) + + func send(idx: int, data: PackedByteArray, target_peer: int, mode: MultiplayerPeer.TransferMode, channel: int) -> void: + pass + +class _PacketTransport extends _Transport: + var _packet_prefix: PackedByteArray + + func _init(p_packet_prefix: PackedByteArray): + _packet_prefix = p_packet_prefix + + func _ready(): + (multiplayer as SceneMultiplayer).peer_packet.connect(_handle_packet) + + func send(idx: int, data: PackedByteArray, target_peer: int, mode: MultiplayerPeer.TransferMode, channel: int) -> void: + var buffer := StreamPeerBuffer.new() + buffer.put_data(_packet_prefix) + buffer.put_u8(idx) + buffer.put_data(data) + + (multiplayer as SceneMultiplayer).send_bytes(buffer.data_array, target_peer, mode, channel) + + func is_command_packet(packet: PackedByteArray) -> bool: + if packet.size() < _packet_prefix.size(): + return false + + for i in _packet_prefix.size(): + if packet[i] != _packet_prefix[i]: + return false + return true + + func _handle_packet(peer: int, packet: PackedByteArray) -> void: + var buffer := StreamPeerBuffer.new() + buffer.data_array = packet + + # Check header + if not is_command_packet(packet): + return + + # Grab data + buffer.seek(_packet_prefix.size()) + var idx := buffer.get_u8() + var data := buffer.get_partial_data(buffer.get_available_bytes())[1] as PackedByteArray + + on_receive.emit(peer, idx, data) + +class _RPCTransport extends _Transport: + func send(idx: int, data: PackedByteArray, target_peer: int, mode: MultiplayerPeer.TransferMode, _channel: int) -> void: + match mode: + MultiplayerPeer.TRANSFER_MODE_UNRELIABLE: _submit_unreliable.rpc_id(target_peer, idx, data) + MultiplayerPeer.TRANSFER_MODE_UNRELIABLE_ORDERED: _submit_unreliable_ordered.rpc_id(target_peer, idx, data) + MultiplayerPeer.TRANSFER_MODE_RELIABLE: _submit_reliable.rpc_id(target_peer, idx, data) + + @rpc("any_peer", "call_remote", "unreliable") + func _submit_unreliable(idx: int, data: PackedByteArray): + var sender := multiplayer.get_remote_sender_id() + on_receive.emit(sender, idx, data) + + @rpc("any_peer", "call_remote", "unreliable_ordered") + func _submit_unreliable_ordered(idx: int, data: PackedByteArray): + var sender := multiplayer.get_remote_sender_id() + on_receive.emit(sender, idx, data) + + @rpc("any_peer", "call_remote", "reliable") + func _submit_reliable(idx: int, data: PackedByteArray): + var sender := multiplayer.get_remote_sender_id() + on_receive.emit(sender, idx, data) diff --git a/addons/netfox/servers/network-command-server.gd.uid b/addons/netfox/servers/network-command-server.gd.uid new file mode 100644 index 0000000..8636d32 --- /dev/null +++ b/addons/netfox/servers/network-command-server.gd.uid @@ -0,0 +1 @@ +uid://mkgjb8gdl0fp diff --git a/addons/netfox/servers/network-history-server.gd b/addons/netfox/servers/network-history-server.gd new file mode 100644 index 0000000..e3ae09b --- /dev/null +++ b/addons/netfox/servers/network-history-server.gd @@ -0,0 +1,273 @@ +extends Node +class_name _NetworkHistoryServer + +## Tracks the history of objects' properties +## +## Specifically, history is stored for rollback state properties, rollback input +## properties, and synchronized state properties. +## [br][br] +## Keeping history lets rollback restore earlier game states for resimulation, +## and enables [_NetworkSynchronizationServer] to send diff states by comparing +## against historical data. + +var _rb_input_properties := _PropertyPool.new() +var _rb_state_properties := _PropertyPool.new() +var _sync_state_properties := _PropertyPool.new() + +var _rb_history_size := NetworkRollback.history_limit +var _sync_history_size := ProjectSettings.get_setting("netfox/state_synchronizer/history_limit", 64) as int + +# Source of truth for history +var _rb_input_history := _PerObjectHistory.new(_rb_history_size) +var _rb_state_history := _PerObjectHistory.new(_rb_history_size) +var _sync_history := _PerObjectHistory.new(_sync_history_size) + +# Cached snapshots for syncing +var _rb_input_snapshots := _HistoryBuffer.new(_rb_history_size) +var _rb_state_snapshots := _HistoryBuffer.new(_rb_history_size) +var _sync_state_snapshots := _HistoryBuffer.new(_sync_history_size) + +static var _logger := NetfoxLogger._for_netfox("NetworkHistoryServer") + +## Register a rollback state property +func register_rollback_state(node: Node, property: NodePath) -> void: + _rb_state_properties.add(node, property) + +## Deregister a rollback state property +func deregister_rollback_state(node: Node, property: NodePath) -> void: + _rb_state_properties.erase(node, property) + +## Register a rollback input property +func register_rollback_input(node: Node, property: NodePath) -> void: + _rb_input_properties.add(node, property) + +## Deregister a rollback input property +func deregister_rollback_input(node: Node, property: NodePath) -> void: + _rb_input_properties.erase(node, property) + +## Register a synchronized state property +func register_sync_state(node: Node, property: NodePath) -> void: + _sync_state_properties.add(node, property) + +## Deregister a synchronized state property +func deregister_sync_state(node: Node, property: NodePath) -> void: + _sync_state_properties.erase(node, property) + +## Deregister a node, no longer tracking any property it had registered using +## any of the [code]register_*()[/code] methods +func deregister(node: Node) -> void: + _rb_state_properties.erase_subject(node) + _rb_input_properties.erase_subject(node) + _sync_state_properties.erase_subject(node) + + _rb_state_history.erase_subject(node) + _rb_input_history.erase_subject(node) + _sync_history.erase_subject(node) + +## Return the latest tick where any of the [param]subjects[/param] had rollback +## state data available +func get_latest_state_tick_for(subjects: Array, tick: int) -> int: + return _get_latest_for(subjects, tick, _rb_state_history) + +## Return how old is the latest rollback state data for any of the [param] +## subjects[/param], in ticks +func get_state_age_for(subjects: Array, tick: int) -> int: + var latest_state := get_latest_state_tick_for(subjects, tick) + if latest_state < 0: + return -1 + else: + return tick - latest_state + +## Return the latest tick where any of the [param]subjects[/param] had rollback +## input data available +func get_latest_input_for(subjects: Array, tick: int) -> int: + return _get_latest_for(subjects, tick, _rb_input_history) + +## Return how old is the latest rollback input data for any of the [param] +## subjects[/param], in ticks +func get_input_age_for(subjects: Array, tick: int) -> int: + var latest_input := get_latest_input_for(subjects, tick) + if latest_input < 0: + return -1 + else: + return tick - latest_input + +func _record_rollback_input(tick: int) -> void: + _record(tick, _rb_input_history, _rb_input_snapshots, _rb_input_properties, true, func(subject: Node): + return subject.is_multiplayer_authority() + ) + +func _record_rollback_state(tick: int) -> void: + var input_snapshot := _get_rollback_input_snapshot(tick - 1) + + _record(tick, _rb_state_history, _rb_state_snapshots, _rb_state_properties, false, func(subject: Node): + if not subject.is_multiplayer_authority(): + return false + if RollbackSimulationServer._is_predicting(input_snapshot, subject): + return false + return true + ) + +func _record_sync_state(tick: int) -> void: + _record(tick, _sync_history, _sync_state_snapshots, _sync_state_properties, true, func(subject: Node): + return subject.is_multiplayer_authority() + ) + +func _restore_rollback_input(tick: int) -> bool: + return _restore_latest(tick, _rb_input_history) + +func _restore_rollback_state(tick: int) -> bool: + return _restore_latest(tick, _rb_state_history) + +func _restore_synchronizer_state(tick: int) -> bool: + return _restore_latest(tick, _sync_history) + +func _get_rollback_input_snapshot(tick: int) -> _Snapshot: + return _rb_input_snapshots.get_at(tick) + +func _get_rollback_state_snapshot(tick: int) -> _Snapshot: + return _rb_state_snapshots.get_at(tick) + +func _get_synchronizer_state_snapshot(tick: int) -> _Snapshot: + return _sync_state_snapshots.get_at(tick) + +func _merge_rollback_input(snapshot: _Snapshot) -> bool: + _merge_snapshot(snapshot, _rb_input_snapshots, true) + return _merge_history(snapshot, _rb_input_history, true) + +func _merge_rollback_state(snapshot: _Snapshot) -> bool: + _merge_snapshot(snapshot, _rb_state_snapshots, true) + return _merge_history(snapshot, _rb_state_history) + +func _merge_synchronizer_state(snapshot: _Snapshot) -> bool: + _merge_snapshot(snapshot, _sync_state_snapshots, true) + return _merge_history(snapshot, _sync_history) + +func _record(tick: int, history: _PerObjectHistory, snapshots: _HistoryBuffer, property_pool: _PropertyPool, only_auth: bool, auth_filter: Callable) -> void: + var snapshot := snapshots.get_at(tick, _Snapshot.new(tick)) as _Snapshot + if not snapshots.has_at(tick): + snapshots.set_at(tick, snapshot) + + for subject in property_pool.get_subjects(): + assert(subject is Node, "Only nodes supported for now!") + + var is_auth := auth_filter.call(subject) + + if only_auth and not is_auth: + continue + if not is_auth and history.is_auth(tick, subject): + continue + + var subject_snapshot := history.ensure_snapshot(tick, subject, false) #!! + assert(not property_pool.get_properties_of(subject).is_empty(), "Subject present in property pool without properties! Please report a bug!") + for property in property_pool.get_properties_of(subject): + subject_snapshot.record_property(property) + snapshot.record_property(subject, property) + snapshot.set_auth(subject, is_auth) + subject_snapshot.set_auth(is_auth) + + match history: + _rb_input_history: + _logger.trace("Recorded input @%d: %s", [tick, snapshot]) + _rb_state_history: + _logger.trace("Recorded state @%d: %s", [tick, snapshot]) + +func _restore_latest(tick: int, history: _PerObjectHistory) -> bool: + var any_applied := false + + for subject in history.subjects(): + # Grab latest snapshot up to tick + var snapshot := history.get_latest_snapshot(tick, subject) + + # Apply if any + if snapshot: + snapshot.apply() + any_applied = true + + match history: + _rb_input_history: _logger.trace("Restored input @%d: %s", [tick, snapshot]) + _rb_state_history: _logger.trace("Restored state @%d: %s", [tick, snapshot]) + + return any_applied + +func _merge_snapshot(snapshot: _Snapshot, snapshots: _HistoryBuffer, reverse: bool = false) -> bool: + var tick := snapshot.tick + + if not snapshots.has_at(snapshot.tick): + snapshots.set_at(tick, snapshot) + return true + + var original_snapshot := snapshots.get_at(tick) as _Snapshot + if reverse: + var original_subjects := original_snapshot.get_auth_subjects() + var incoming_subjects := snapshot.get_auth_subjects() + + # Merge the original snapshot on top of the incoming + # This prevents players from changing history, e.g. rewrite their past + # inputs + snapshots.set_at(tick, snapshot) + snapshot.merge(original_snapshot) + + # Only return true if we've received inputs for a new node + return incoming_subjects.any(func(it): return not original_subjects.has(it)) + else: + return original_snapshot.merge(snapshot) + +func _merge_history(snapshot: _Snapshot, history: _PerObjectHistory, reverse: bool = false) -> bool: + var tick := snapshot.tick + var has_updated := false + + if tick < NetworkRollback.history_start: + _logger.warning("Snapshot being merged is too old! (@%d)", [tick]) + return false + + for subject in snapshot.get_subjects(): + var object_snapshot := history.ensure_snapshot(tick, subject, not reverse) + + # Never overwrite auth data + if object_snapshot.is_auth() and not snapshot.is_auth(subject): + continue + + for property in snapshot.get_subject_properties(subject): + # If merging in reverse, don't update anything that we already have + # a value for - only accept previously unknown property values + if reverse and object_snapshot.has_value(property): + continue + + var original_value := object_snapshot.get_value(property) + var new_value := snapshot.get_property(subject, property) + + object_snapshot.set_value(property, new_value) + if not has_updated and original_value != new_value: + has_updated = true + object_snapshot.set_auth(snapshot.is_auth(subject)) + + return has_updated + +func _get_latest_for(subjects: Array, tick: int, history: _PerObjectHistory) -> int: + var latest := -1 + + for subject in subjects: + var subject_latest := history.get_latest_tick(tick, subject) + if subject_latest < 0: + continue + + # Should we track `mini()` instead? + latest = maxi(latest, subject_latest) + + return latest + +func _get_earliest_for(subjects: Array, tick: int, history: _PerObjectHistory) -> int: + var earliest := -1 + + for subject in subjects: + var subject_latest := history.get_latest_tick(tick, subject) + if subject_latest < 0: + return -1 + + if earliest < 0: + earliest = earliest + else: + earliest = mini(earliest, subject_latest) + + return earliest diff --git a/addons/netfox/servers/network-history-server.gd.uid b/addons/netfox/servers/network-history-server.gd.uid new file mode 100644 index 0000000..e171959 --- /dev/null +++ b/addons/netfox/servers/network-history-server.gd.uid @@ -0,0 +1 @@ +uid://c554fbsy6yos3 diff --git a/addons/netfox/servers/network-identity-server.gd b/addons/netfox/servers/network-identity-server.gd new file mode 100644 index 0000000..ef62262 --- /dev/null +++ b/addons/netfox/servers/network-identity-server.gd @@ -0,0 +1,190 @@ +extends Node +class_name _NetworkIdentityServer + +## Tracks identities for use over the network +## +## Internally, netfox sends packets that refer to specific nodes, e.g. to +## synchronize their state. Nodes are referenced based on their path in the +## scene tree. To save on bandwidth, node paths are replaced with numeric IDs +## when possible. +## [br][br] +## This class manages these numerical IDs and their broadcast among peers. +## [br][br] +## Each node that is to be referred to over the network must be registered using +## [method register_node]. It is best to deregister freed nodes using [method +## deregister_node]. +## [br][br] +## Node registration and deregistration are done automatically by the high-level +## nodes ( like RollbackSynchronizer ), and usually doesn't need to be done +## manually. + +var _command_server: _NetworkCommandServer + +var _next_id := 0 +var _identifiers := {} # object to NetworkIdentifier +var _push_queue := {} # peer to (full name to id) + +var _identifier_by_name := {} # full name to NetworkIdentifier +var _identifier_by_id := {} # peer to (id to NetworkIdentifier) + +var _cmd_ids: _NetworkCommandServer.Command + +static var _logger := NetfoxLogger._for_netfox("NetworkIdentityServer") + +func _init(p_command_server: _NetworkCommandServer = null): + _command_server = p_command_server + +func _ready(): + if not _command_server: + _command_server = NetworkCommandServer + + _cmd_ids = _command_server.register_command(_handle_ids, MultiplayerPeer.TRANSFER_MODE_RELIABLE) + +# TODO(#561): Handle peer disconnect by clearing up data + +## Register a node +## [br][br] +## Once a node is registered, it can be referred to over the network. The same +## node must be registered with the same node path on all peers. +func register_node(node: Node) -> void: + if not node.is_inside_tree(): + _logger.error("Can't register node %s that is not inside tree!", [node]) + return + _register(node, node.get_path()) + +## Deregister a node, freeing all identity data associated with it +func deregister_node(node: Node) -> void: + _deregister(node) + +## Clear all identities +func clear() -> void: + _identifiers.clear() + _identifier_by_name.clear() + _identifier_by_id.clear() + _next_id = 0 + +## Queue sending the numeric ID of [param node] to [param peer] +## [br][br] +## This happens automatically when the [param node] is first referred to in a +## packet. This method allows frontloading that, at a more feasible moment. +## [br][br] +## This method does not send any data. To force sending identifiers, use [method +## flush_queue]. +func queue_identifier_for(node: Node, peer: int) -> bool: + var identifier := _get_identifier_of(node) + if not identifier: + return false + _queue_for(identifier, peer) + return true + +## Broadcast all identities queued for synchronization +## [br][br] +## Flushed automatically by default +func flush_queue() -> void: + for peer in _push_queue: + _cmd_ids.send(_serialize_ids(_push_queue[peer]), peer) + _push_queue.clear() + +func _get_identifier_of(what: Object) -> _NetworkIdentifier: + return _identifiers.get(what) + +func _resolve_reference(peer: int, identity_reference: _NetworkIdentityReference, allow_queue: bool = true) -> _NetworkIdentifier: + if identity_reference.has_id(): + return _get_identifier_by_id(peer, identity_reference.get_id()) + else: + var identifier := _get_identifier_by_name(identity_reference.get_full_name()) + if allow_queue and identifier: + _queue_for(identifier, peer) + return identifier + +func _queue_for(identifier: _NetworkIdentifier, peer: int) -> void: + if not _push_queue.has(peer): + _push_queue[peer] = { identifier.get_full_name(): identifier.get_id_for(peer) } + else: + _push_queue[peer][identifier.get_full_name()] = identifier.get_id_for(peer) + +func _register(what: Object, path: String) -> void: + if _identifiers.has(what): + return + + var identifier := _NetworkIdentifier.new(what, path, _make_id(), multiplayer.get_unique_id()) + _identifiers[what] = identifier + _identifier_by_name[identifier.get_full_name()] = identifier + + identifier.on_id.connect(func(peer: int, id: int): _update_id_cache(identifier, peer, id)) + _update_id_cache(identifier, multiplayer.get_unique_id(), identifier.get_local_id()) + +func _deregister(what: Object) -> void: + if not _identifiers.has(what): + return + + var identifier := _identifiers[what] as _NetworkIdentifier + _identifiers.erase(what) + _identifier_by_name.erase(identifier.get_full_name()) + _erase_from_id_cache(identifier) + + +func _get_identifier_by_name(full_name: String) -> _NetworkIdentifier: + return _identifier_by_name.get(full_name) + +func _get_identifier_by_id(peer: int, id: int) -> _NetworkIdentifier: + return _identifier_by_id.get(peer, {}).get(id, null) + +func _make_id() -> int: + _next_id += 1 + return _next_id + +func _update_id_cache(identifier: _NetworkIdentifier, peer: int, id: int) -> void: + if not _identifier_by_id.has(peer): + _identifier_by_id[peer] = { id: identifier } + else: + _identifier_by_id[peer][id] = identifier + +func _erase_from_id_cache(identifier: _NetworkIdentifier) -> void: + for peer in identifier.get_known_peers(): + if not _identifier_by_id.has(peer): + # nani? + continue + + var cache := _identifier_by_id.get(peer) as Dictionary + cache.erase(identifier.get_id_for(peer)) + if cache.is_empty(): + _identifier_by_id.erase(peer) + +func _handle_ids(sender: int, data: PackedByteArray) -> void: + var ids := _deserialize_ids(data) + + for full_name in ids: + var id := ids[full_name] as int + var identifier := _get_identifier_by_name(full_name) + if not identifier: + # Deleted since then + _logger.debug("Received identifier for unknown object with full name %s, id #%d", [full_name, id]) + continue + identifier.set_id_for(sender, id) + +func _serialize_ids(ids: Dictionary) -> PackedByteArray: + var buffer := StreamPeerBuffer.new() + var varuint := NetworkSchemas.varuint() + + for full_name in ids.keys(): + var id := ids[full_name] as int + + buffer.put_utf8_string(full_name) + varuint.encode(ids[full_name], buffer) + + return buffer.data_array + +func _deserialize_ids(data: PackedByteArray) -> Dictionary: + var ids := {} + var varuint := NetworkSchemas.varuint() + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + while buffer.get_available_bytes() > 0: + var full_name := buffer.get_utf8_string() + var id := varuint.decode(buffer) as int + + ids[full_name] = id + + return ids diff --git a/addons/netfox/servers/network-identity-server.gd.uid b/addons/netfox/servers/network-identity-server.gd.uid new file mode 100644 index 0000000..1b19aa7 --- /dev/null +++ b/addons/netfox/servers/network-identity-server.gd.uid @@ -0,0 +1 @@ +uid://pc8gwg1lbusp diff --git a/addons/netfox/servers/network-synchronization-server.gd b/addons/netfox/servers/network-synchronization-server.gd new file mode 100644 index 0000000..f150b9b --- /dev/null +++ b/addons/netfox/servers/network-synchronization-server.gd @@ -0,0 +1,381 @@ +extends Node +class_name _NetworkSynchronizationServer + +## Synchronizes properties over the network +## +## Handles synchronization of rollback and state properties ( +## [RollbackSynchronizer] and [StateSynchronizer] ), while respecting visibility +## filters and schemas for serialization. +## [br][br] +## Packets are sent per tick, instead of per object. So for every simulated +## rollback tick, a packet is sent with states, and for every recorded input, +## a packet is sent with the inputs. +## [br][br] +## Optionally, diff states can be used, sending only the property values that +## have changed, saving on bandwidth. + +# Dependencies +var _command_server: _NetworkCommandServer +var _history_server: _NetworkHistoryServer +var _identity_server: _NetworkIdentityServer +var _simulation_server: _RollbackSimulationServer + +# Configuration +var _rb_input_properties := _PropertyPool.new() +var _rb_state_properties := _PropertyPool.new() +var _rb_owned_input_properties := _PropertyPool.new() +var _rb_owned_state_properties := _PropertyPool.new() +var _sync_state_properties := _PropertyPool.new() +var _sync_owned_state_properties := _PropertyPool.new() + +var _visibility_filters := {} # Node to PeerVisibilityFilter + +var _rb_enable_input_broadcast := ProjectSettings.get_setting("netfox/rollback/enable_input_broadcast", false) as bool +var _rb_enable_diffs := NetworkRollback.enable_diff_states +var _rb_full_interval := ProjectSettings.get_setting("netfox/rollback/full_state_interval", 24) as int +var _rb_full_scheduler := _IntervalScheduler.new(_rb_full_interval) + +var _input_redundancy := NetworkRollback.input_redundancy + +var _last_sync_state_sent := _Snapshot.new(0) +var _sync_enable_diffs := ProjectSettings.get_setting("netfox/state_synchronizer/enable_diff_states", true) as bool +var _sync_full_interval := ProjectSettings.get_setting("netfox/state_synchronizer/full_state_interval", 24) as int +var _sync_full_scheduler := _IntervalScheduler.new(_sync_full_interval) + +var _schemas := _NetworkSchema.new() + +var _dense_serializer: _DenseSnapshotSerializer +var _sparse_serializer: _SparseSnapshotSerializer +var _redundant_serializer: _RedundantSnapshotSerializer + +var _cmd_full_state: NetworkCommandServer.Command +var _cmd_diff_state: NetworkCommandServer.Command +var _cmd_input: NetworkCommandServer.Command + +var _cmd_full_sync: NetworkCommandServer.Command +var _cmd_diff_sync: NetworkCommandServer.Command + +static var _logger := NetfoxLogger._for_netfox("NetworkSynchronizationServer") + +signal _on_input(snapshot: _Snapshot) +signal _on_state(snapshot: _Snapshot) + +## Register a [param]property[/param] of [param]node[/param] to be synchronized +## as rollback state +func register_rollback_state(node: Node, property: NodePath) -> void: + _rb_state_properties.add(node, property) + if node.is_multiplayer_authority(): + _rb_owned_state_properties.add(node, property) + +## Deregister a [param]property[/param] of [param]node[/param] from being +## synchronized as rollback state +func deregister_rollback_state(node: Node, property: NodePath) -> void: + _rb_state_properties.erase(node, property) + _rb_owned_state_properties.erase(node, property) + +## Register a [param]property[/param] of [param]node[/param] to be synchronized +## as rollback input +func register_rollback_input(node: Node, property: NodePath) -> void: + _rb_input_properties.add(node, property) + if node.is_multiplayer_authority(): + _rb_owned_input_properties.add(node, property) + +## Deregister a [param]property[/param] of [param]node[/param] from being +## synchronized as rollback input +func deregister_rollback_input(node: Node, property: NodePath) -> void: + _rb_input_properties.erase(node, property) + _rb_owned_input_properties.erase(node, property) + +## Register a [param]property[/param] of [param]node[/param] to be synchronized +## as synchronized state +func register_sync_state(node: Node, property: NodePath) -> void: + _sync_state_properties.add(node, property) + if node.is_multiplayer_authority(): + _sync_owned_state_properties.add(node, property) + +## Deregister a [param]property[/param] of [param]node[/param] from being +## synchronized as synchronized state +func deregister_sync_state(node: Node, property: NodePath) -> void: + _sync_state_properties.erase(node, property) + _sync_owned_state_properties.erase(node, property) + +## Register a [param]serializer[/param] to use when transmitting +## [param]property[/param] of [param]node[/param] over the network +func register_schema(node: Node, property: NodePath, serializer: NetworkSchemaSerializer) -> void: + _schemas.add(node, property, serializer) + +## Deregister any serializers used for [param]property[/param] on +## [param]node[/param] when transmitting over the network +func deregister_schema(node: Node, property: NodePath) -> void: + _schemas.erase(node, property) + +## Deregister all serializers registered for any properties of +## [param]node[/param] +func deregister_schema_for(node: Node) -> void: + _schemas.erase_subject(node) + +## Register a visibility [param]filter[/param] for use with [param]node[/param] +func register_visibility_filter(node: Node, filter: PeerVisibilityFilter) -> void: + _visibility_filters[node] = filter + +## Deregister the visibility filter used for [param]node[/param] +func deregister_visibility_filter(node: Node) -> void: + _visibility_filters.erase(node) + +## Deregister any and all settings associated with [param]node[/param] +func deregister(node: Node) -> void: + _rb_state_properties.erase_subject(node) + _rb_input_properties.erase_subject(node) + _rb_owned_state_properties.erase_subject(node) + _rb_owned_input_properties.erase_subject(node) + _sync_state_properties.erase_subject(node) + _visibility_filters.erase(node) + _schemas.erase_subject(node) + +func _is_node_visible_to(peer: int, node: Node) -> bool: + var filter := _visibility_filters.get(node) as PeerVisibilityFilter + if not filter: + return true + else: + return filter.get_visible_peers().has(peer) + +func _synchronize_input(tick: int) -> void: + # We don't own inputs, nothing to synchronize + if _rb_owned_input_properties.is_empty(): + return + + var snapshots := [] as Array[_Snapshot] + var notified_peers := _Set.new() + + if not _rb_enable_input_broadcast: + # If input broadcast is off, find which peers need to know our inputs + # That is all peers who own state controlled by our input + + # Grab owned input objects + for input_subject in _rb_owned_input_properties.get_subjects(): + # Grab state objects controlled by input + var controlled_nodes := RollbackSimulationServer._get_controlled_by(input_subject) + + # Notify peers owning nodes about the input + for node in controlled_nodes: + notified_peers.add(node.get_multiplayer_authority()) + else: + # If input broadcast is on, send inputs to everyone + for peer in multiplayer.get_peers(): + notified_peers.add(peer) + + # Make sure to not send input to ourselves + notified_peers.erase(multiplayer.get_unique_id()) + + # Prepare snapshot package + for offset in _input_redundancy: + # Grab snapshot from NetworkHistoryServer + var snapshot := NetworkHistoryServer._get_rollback_input_snapshot(tick - offset) + if not snapshot: + break + + _logger.trace("Submitting input: %s", [snapshot]) + snapshots.append(snapshot) + + _logger.trace("Submitting input to peers: %s", [notified_peers]) + for peer in notified_peers: + var data := _redundant_serializer.write_for(peer, snapshots, _rb_owned_input_properties) + _cmd_input.send(data, peer) + +func _synchronize_state(tick: int) -> void: + # We don't own state, nothing to synchronize + if _rb_owned_state_properties.is_empty(): + return + + # Grab snapshot from NetworkHistoryServer + var snapshot := NetworkHistoryServer._get_rollback_state_snapshot(tick) + if not snapshot: + # No data for tick + return + + if snapshot.is_empty(): + # Nothing to send + return + + # Figure out whether to send full- or diff state + var is_full := _rb_full_scheduler.is_now() + if not _rb_enable_diffs: + is_full = true + + # Check if we have history to diff to + var reference_snapshot := NetworkHistoryServer._get_rollback_state_snapshot(tick - 1) + if not reference_snapshot: + is_full = true + + if is_full: + # Send full states + for peer in multiplayer.get_peers(): + var filter := func(subject): return _is_node_visible_to(peer, subject) + + var data := _dense_serializer.write_for(peer, snapshot, _rb_owned_state_properties, filter) + if data.is_empty(): + # Peer can't see anything, send nothing + continue + + _cmd_full_state.send(data, peer) + + NetworkPerformance.push_full_state_props(snapshot.size()) + NetworkPerformance.push_sent_state_props(snapshot.size()) + else: + var diff := _Snapshot.make_patch(reference_snapshot, snapshot) + if diff.is_empty(): + # Nothing changed, don't send anything + return + + # Send diff states + for peer in multiplayer.get_peers(): + var filter := func(subject): return _is_node_visible_to(peer, subject) + + var data := _sparse_serializer.write_for(peer, diff, _rb_owned_state_properties, filter) + if data.is_empty(): + # Peer can't see any changes, send nothing + continue + + _cmd_diff_state.send(data, peer) + + NetworkPerformance.push_full_state_props(snapshot.size()) + NetworkPerformance.push_sent_state_props(diff.size()) + +func _synchronize_sync_state(tick: int) -> void: + # We don't own sync state, nothing to synchronize + if _sync_owned_state_properties.is_empty(): + return + + # Grab snapshot from NetworkHistoryServer + var snapshot := NetworkHistoryServer._get_synchronizer_state_snapshot(tick) + if not snapshot: + return + + # Figure out whether to send full- or diff state + var is_full := _sync_full_scheduler.is_now() + if not _sync_enable_diffs: + is_full = true + + if is_full: + # Send full states + for peer in multiplayer.get_peers(): + var filter := func(subject): return _is_node_visible_to(peer, subject) + + var data := _dense_serializer.write_for(peer, snapshot, _sync_owned_state_properties, filter) + if data.is_empty(): + # Peer can't see anything, send nothing + continue + + _cmd_full_sync.send(data, peer) + + NetworkPerformance.push_full_state_props(snapshot.size()) + NetworkPerformance.push_sent_state_props(snapshot.size()) + else: + var diff := _Snapshot.make_patch(_last_sync_state_sent, snapshot) + + # Send diffs + for peer in multiplayer.get_peers(): + var filter := func(subject): return _is_node_visible_to(peer, subject) + + var data := _sparse_serializer.write_for(peer, diff, _sync_owned_state_properties, filter) + if data.is_empty(): + # Peer can't see anything, send nothing + continue + + _cmd_diff_sync.send(data, peer) + + NetworkPerformance.push_full_state_props(snapshot.size()) + NetworkPerformance.push_sent_state_props(diff.size()) + + # Remember last sent state for diffing + # NOTE: This is a shared instance, theoretically shouldn't screw things up + _last_sync_state_sent = snapshot + +func _init( + p_command_server: _NetworkCommandServer = null, + p_history_server: _NetworkHistoryServer = null, + p_identity_server: _NetworkIdentityServer = null, + p_simulation_server: _RollbackSimulationServer = null + ): + _command_server = p_command_server + _history_server = p_history_server + _identity_server = p_identity_server + _simulation_server = p_simulation_server + +func _ready(): + # Ensure dependencies + if not _command_server: _command_server = NetworkCommandServer + if not _history_server: _history_server = NetworkHistoryServer + if not _identity_server: _identity_server = NetworkIdentityServer + if not _simulation_server: _simulation_server = RollbackSimulationServer + + # Setup serializers + _dense_serializer = _DenseSnapshotSerializer.new(_schemas, _identity_server) + _sparse_serializer = _SparseSnapshotSerializer.new(_schemas, _identity_server) + _redundant_serializer = _RedundantSnapshotSerializer.new(_schemas, _identity_server) + + # Setup commands + _cmd_full_state = _command_server.register_command(_handle_full_state, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) + _cmd_diff_state = _command_server.register_command(_handle_diff_state, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) + _cmd_input = _command_server.register_command(_handle_input, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) + + _cmd_full_sync = _command_server.register_command(_handle_full_sync, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE_ORDERED) + _cmd_diff_sync = _command_server.register_command(_handle_diff_sync, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE_ORDERED) + +func _handle_input(sender: int, data: PackedByteArray): + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + var snapshots := _redundant_serializer.read_from(sender, _rb_input_properties, buffer, true) + + for snapshot in snapshots: + snapshot.sanitize(sender) + + _logger.trace("Ingesting input: %s", [snapshot]) + if NetworkHistoryServer._merge_rollback_input(snapshot): + _on_input.emit(snapshot) + +func _handle_full_state(sender: int, data: PackedByteArray): + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + var snapshot := _dense_serializer.read_from(sender, _rb_state_properties, buffer, true) + + _ingest_state(sender, snapshot) + +func _handle_diff_state(sender: int, data: PackedByteArray): + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + var diff := _sparse_serializer.read_from(sender, _rb_state_properties, buffer) + _logger.trace("Received diff state for @%d", [diff.tick]) + + _ingest_state(sender, diff) + +func _handle_full_sync(sender: int, data: PackedByteArray): + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + var snapshot := _dense_serializer.read_from(sender, _sync_state_properties, buffer, true) + snapshot.sanitize(sender) + + NetworkHistoryServer._merge_synchronizer_state(snapshot) + _logger.trace("Ingested sync state: %s", [snapshot]) + +func _handle_diff_sync(sender: int, data: PackedByteArray): + var buffer := StreamPeerBuffer.new() + buffer.data_array = data + + var snapshot := _sparse_serializer.read_from(sender, _sync_state_properties, buffer) + snapshot.sanitize(sender) + + NetworkHistoryServer._merge_synchronizer_state(snapshot) + _logger.trace("Ingested sync diff: %s", [snapshot]) + +func _ingest_state(sender: int, snapshot: _Snapshot) -> void: + snapshot.sanitize(sender) + + NetworkHistoryServer._merge_rollback_state(snapshot) + _logger.trace("Ingested state: %s", [snapshot]) + + _on_state.emit(snapshot) diff --git a/addons/netfox/servers/network-synchronization-server.gd.uid b/addons/netfox/servers/network-synchronization-server.gd.uid new file mode 100644 index 0000000..3e9cace --- /dev/null +++ b/addons/netfox/servers/network-synchronization-server.gd.uid @@ -0,0 +1 @@ +uid://yrhqsbd5ubhs diff --git a/addons/netfox/servers/rollback-simulation-server.gd b/addons/netfox/servers/rollback-simulation-server.gd new file mode 100644 index 0000000..e6ae999 --- /dev/null +++ b/addons/netfox/servers/rollback-simulation-server.gd @@ -0,0 +1,201 @@ +extends Node +class_name _RollbackSimulationServer + +## Runs gameplay simulation during rollback +## +## Rollback involves restoring the game state to an earlier point in time and +## re-running game logic from there. This class tracks which nodes participate +## in rollback, which of them need to be actually simulated, and runs the +## simulation itself. +## [br][br] +## Node simulation honors scene tree order. Processing order and physics +## processing order are [b]not[/b] considered. +## [br][br] +## To participate in rollback, call [method register] using the method to call +## to simulate the node. Only one [Callable] can be actively registered per +## node. + +var _history_server: _NetworkHistoryServer + +var _callbacks := {} # node to callback +var _simulated_ticks := {} # node to array of ticks + +var _input_graph := _Graph.new() # Links inputs to objects controlled by them + +# Currently simulated object +var _current_object: Object = null +# Predicted nodes for next simulation +var _predicted_nodes := _Set.new() + +var _group := StringName("__nf_rollback_sim" + str(get_instance_id())) + +static var _logger := NetfoxLogger._for_netfox("RollbackSimulationServer") + +## Register a [param]callback[/param] to run as part of the rollback loop +func register(callback: Callable) -> void: + if not is_instance_valid(callback.get_object()): + _logger.error("Trying to register callback that belongs to an invalid object!") + return + + assert(callback.get_object() is Node, "Only nodes supported for now!") + + _callbacks[callback.get_object()] = callback + +## Deregister a [param]callback[/param] from the rollback loop +func deregister(callback: Callable) -> void: + if not callback or not callback.is_valid(): return + + var object := callback.get_object() + + if not is_instance_valid(object): return + if _callbacks[object] != callback: return + + _callbacks.erase(object) + _input_graph.erase(object) + _simulated_ticks.erase(object) + +## Deregister a [param]node[/param] from the rollback loop +func deregister_node(node: Node) -> void: + if _callbacks.has(node): + deregister(_callbacks[node]) + _input_graph.erase(node) + +## Register [param]input[/param] as providing input for [param]node[/param] +func register_rollback_input_for(node: Node, input: Node) -> void: + _input_graph.link(input, node) + +## Deregister [param]input[/param] from providing input for [param]node[/param] +func deregister_rollback_input(node: Node, input: Node) -> void: + _input_graph.unlink(input, node) + +## Return true if the currently simulated node is being predicted +func is_predicting_current() -> bool: + if not _current_object or not is_instance_valid(_current_object): + return false + return _predicted_nodes.has(_current_object) + +## Get the currently simulated object +func get_simulated_object() -> Object: + return _current_object + +## Simulate a tick +func simulate(delta: float, tick: int) -> void: + _current_object = null + + var input_snapshot := NetworkHistoryServer._get_rollback_input_snapshot(tick) + var state_snapshot := NetworkHistoryServer._get_rollback_state_snapshot(tick) + var nodes := _get_nodes_to_simulate(input_snapshot) + _predicted_nodes.clear() + + # Sort based on SceneTree order + for node in nodes: + node.add_to_group(_group) + nodes = get_tree().get_nodes_in_group(_group) + + # Determine predicted nodes + for node in _callbacks.keys(): + if _is_predicting(input_snapshot, node): + _predicted_nodes.add(node) + + # Run callbacks and clear group + for node in nodes: + _current_object = node + + var callback := _callbacks[node] as Callable + var is_fresh := _is_tick_fresh_for(node, tick) + callback.call(delta, tick, is_fresh) + node.remove_from_group(_group) + + _current_object = null + _set_tick_simulated_for(node, tick) + + # Metrics + NetworkPerformance.push_rollback_nodes_simulated(nodes.size()) + +func _get_nodes_to_simulate(input_snapshot: _Snapshot) -> Array[Node]: + var result: Array[Node] = [] + if not input_snapshot: + return [] + + var tick := input_snapshot.tick + for node in _callbacks.keys(): + var inputs := [] as Array[Node] + inputs.assign(_input_graph.get_linked_to(node)) + + if inputs.is_empty(): + # Node has no input, simulate it + result.append(node) + continue + + if NetworkRollback.is_mutated(node, tick): + # Node is mutated, must simulate + result.append(node) + continue + + if not input_snapshot.has_subjects(inputs, true): + # We don't have input for node, don't simulate + continue + + result.append(node) + + return result + +func _is_predicting(input_snapshot: _Snapshot, node: Node) -> bool: + var input_nodes := [] as Array[Node] + input_nodes.assign(_input_graph.get_linked_to(node)) + + var is_owned := node.is_multiplayer_authority() + var is_inputless := input_nodes.is_empty() + var has_input := false + + if not is_inputless and input_snapshot: + has_input = input_snapshot.has_subjects(input_nodes, true) + + if not is_owned and has_input: + # We don't own the node, but we own input for it - not (input) predicting + return false + if not is_owned: + # We don't own the node, so we can only guess - i.e. predict + return true + if is_owned and is_inputless: + # We own the node, node doesn't depend on input, we're sure + return false + if is_owned and not has_input: + # We own the node, node depends on input, we don't have data for input - predict + return true + # We own the node and we have data for node's input - we're sure + return false + +func _is_tick_fresh_for(node: Node, tick: int) -> bool: + if not _simulated_ticks.has(node): + return true + var ticks := _simulated_ticks.get(node) as Array[int] + return not ticks.has(tick) + +func _set_tick_simulated_for(node: Node, tick: int) -> void: + if not _simulated_ticks.has(node): + _simulated_ticks[node] = [tick] as Array[int] + else: + _simulated_ticks[node].append(tick) + +func _trim_ticks_simulated(beginning: int) -> void: + for object in _simulated_ticks: + _simulated_ticks[object] = _simulated_ticks[object]\ + .filter(func(tick): return tick >= beginning) + +func _get_controlled_by(input: Node) -> Array[Node]: + var result := [] as Array[Node] + result.assign(_input_graph.get_linked_from(input)) + return result + +func _get_inputs_of(node: Node) -> Array[Node]: + var result := [] as Array[Node] + result.assign(_input_graph.get_linked_to(node)) + return result + +func _init(p_history_server: _NetworkHistoryServer = null): + _history_server = p_history_server + +func _ready(): + # Ensure dependencies + if not _history_server: _history_server = NetworkHistoryServer diff --git a/addons/netfox/servers/rollback-simulation-server.gd.uid b/addons/netfox/servers/rollback-simulation-server.gd.uid new file mode 100644 index 0000000..51e3473 --- /dev/null +++ b/addons/netfox/servers/rollback-simulation-server.gd.uid @@ -0,0 +1 @@ +uid://d5vx6blln3jr diff --git a/addons/netfox/state-synchronizer.gd b/addons/netfox/state-synchronizer.gd index b66d334..7dbd567 100644 --- a/addons/netfox/state-synchronizer.gd +++ b/addons/netfox/state-synchronizer.gd @@ -22,43 +22,20 @@ class_name StateSynchronizer ## for every tick. ## [br][br] ## Only considered if [member _NetworkRollback.enable_diff_states] is true. +## @deprecated: This can now be configured in the project settings. @export_range(0, 128, 1, "or_greater") -var full_state_interval: int = 24 # TODO: Don't tie to a network rollback setting? +var full_state_interval: int = 24 -## Ticks to wait between unreliably acknowledging diff states. -## [br][br] -## This can reduce the amount of properties sent in diff states, due to clients -## more often acknowledging received states. To avoid introducing hickups, these -## are sent unreliably. -## [br][br] -## If set to 0, diff states will never be acknowledged. If set to 1, all diff -## states will be acknowledged. If set higher, ack's will be sent regularly, but -## not for every diff state. -## [br][br] -## If enabled, it's worth to tune this setting until network traffic is actually -## reduced. -## [br][br] -## Only considered if [member _NetworkRollback.enable_diff_states] is true. +## @deprecated: This is no longer used. @export_range(0, 128, 1, "or_greater") -var diff_ack_interval: int = 0 # TODO: Don't tie to a network rollback setting? +var diff_ack_interval: int = 0 ## Decides which peers will receive updates var visibility_filter := PeerVisibilityFilter.new() -var _property_cache: PropertyCache -var _property_config: _PropertyConfig = _PropertyConfig.new() var _properties_dirty: bool = false - -var _state_history := _PropertyHistoryBuffer.new() - -# Collaborators -var _full_state_encoder: _SnapshotHistoryEncoder -var _diff_state_encoder: _DiffHistoryEncoder - -# State -var _ackd_state: Dictionary = {} -var _next_full_state_tick: int -var _next_diff_ack_tick: int +var _properties := _PropertyPool.new() +var _schema_nodes := _Set.new() var _is_initialized: bool = false @@ -68,24 +45,21 @@ static var _logger := NetfoxLogger._for_netfox("StateSynchronizer") ## [br][br] ## Call this after any change to configuration. func process_settings() -> void: - _property_cache = PropertyCache.new(root) - _property_config.set_properties_from_paths(properties, _property_cache) + # Remove old configuration + for node in _properties.get_subjects(): + for property in _properties.get_properties_of(node): + NetworkHistoryServer.deregister_sync_state(node, property) + NetworkSynchronizationServer.deregister_sync_state(node, property) - _full_state_encoder = _SnapshotHistoryEncoder.new(_state_history, _property_cache) - _diff_state_encoder = _DiffHistoryEncoder.new(_state_history, _property_cache) + # Register new configuration + _properties.set_from_paths(root, properties) + for node in _properties.get_subjects(): + NetworkSynchronizationServer.register_visibility_filter(node, visibility_filter) + NetworkIdentityServer.register_node(node) - _diff_state_encoder.add_properties(_property_config.get_properties()) - - _next_full_state_tick = NetworkTime.tick - _next_diff_ack_tick = NetworkTime.tick - - # Scatter full state sends, so not all nodes send at the same tick - if is_inside_tree(): - _next_full_state_tick += hash(root.get_path()) % maxi(1, full_state_interval) - _next_diff_ack_tick += hash(root.get_path()) % maxi(1, diff_ack_interval) - else: - _next_full_state_tick += hash(root.name) % maxi(1, full_state_interval) - _next_diff_ack_tick += hash(root.name) % maxi(1, diff_ack_interval) + for property in _properties.get_properties_of(node): + NetworkHistoryServer.register_sync_state(node, property) + NetworkSynchronizationServer.register_sync_state(node, property) _is_initialized = true @@ -103,9 +77,44 @@ func add_state(node: Variant, property: String) -> void: _properties_dirty = true _reprocess_settings.call_deferred() +## Set the schema for transmitting properties over the network. +## [br][br] +## The [param schema] must be a dictionary, with the keys being property path +## strings, and the values are the associated [NetworkSchemaSerializer] objects. +## Properties are interpreted relative to the [member root] node. Properties not +## specified in the schema will use a generic fallback serializer. By using the +## right serializer for the right property, bandwidth usage can be lowered. +## [br][br] +## See [NetworkSchemas] for many common serializers. +## [br][br] +## Example: +## [codeblock] +## state_synchronizer.set_schema({ +## ":transform": NetworkSchemas.transform3f32(), +## ":velocity": NetworkSchemas.vec3f32() +## }) +## [/codeblock] +func set_schema(schema: Dictionary) -> void: + # Remove previous schema + for node in _schema_nodes: + NetworkSynchronizationServer.deregister_schema_for(node) + _schema_nodes.clear() + + # Register new schema + for prop in schema: + var prop_entry := PropertyEntry.parse(root, prop) + var serializer := schema[prop] as NetworkSchemaSerializer + NetworkSynchronizationServer.register_schema(prop_entry.node, prop_entry.property, serializer) + _schema_nodes.add(prop_entry.node) + func _notification(what) -> void: if what == NOTIFICATION_EDITOR_PRE_SAVE: update_configuration_warnings() + elif what == NOTIFICATION_PREDELETE: + for node in _properties.get_subjects(): + NetworkSynchronizationServer.deregister(node) + NetworkHistoryServer.deregister(node) + NetworkIdentityServer.deregister(node) func _get_configuration_warnings() -> PackedStringArray: if not root: @@ -120,14 +129,6 @@ func _get_configuration_warnings() -> PackedStringArray: add_state(node, prop) ) -func _connect_signals() -> void: - NetworkTime.after_tick.connect(_after_tick) - NetworkTime.after_tick_loop.connect(_after_loop) - -func _disconnect_signals() -> void: - NetworkTime.after_tick.disconnect(_after_tick) - NetworkTime.after_tick_loop.disconnect(_after_loop) - func _enter_tree() -> void: if Engine.is_editor_hint(): return @@ -137,27 +138,13 @@ func _enter_tree() -> void: if not visibility_filter.get_parent(): add_child(visibility_filter) - _connect_signals.call_deferred() process_settings.call_deferred() -func _exit_tree() -> void: - if Engine.is_editor_hint(): - return - - _disconnect_signals() - -func _after_tick(_dt: float, tick: int) -> void: - if is_multiplayer_authority(): - # Submit snapshot - var state := _PropertySnapshot.extract(_property_config.get_properties()) - _state_history.set_snapshot(tick, state) - _broadcast_state(tick, state) - elif not _state_history.is_empty(): - var state := _state_history.get_history(tick) - state.apply(_property_cache) - -func _after_loop() -> void: - _state_history.trim(NetworkTime.tick - NetworkRollback.history_limit) # TODO: Don't tie to rollback? +func _ready(): + # Reprocess authority + # Important if nodes are pre-placed in the scene - node starts as owned by + # us ( offline peer is 1 ), but once we connect, we no longer own the node + multiplayer.connected_to_server.connect(process_settings) func _reprocess_settings() -> void: if not _properties_dirty: @@ -165,100 +152,3 @@ func _reprocess_settings() -> void: _properties_dirty = false process_settings() - -func _broadcast_state(tick: int, state: _PropertySnapshot) -> void: - var is_sending_diffs := NetworkRollback.enable_diff_states # TODO: Don't tie to a rollback setting? - var is_full_state_tick := not is_sending_diffs or (full_state_interval > 0 and tick > _next_full_state_tick) - - if is_full_state_tick: - # Broadcast new full state - for peer in visibility_filter.get_rpc_target_peers(): - _send_full_state(tick, peer) - - # Adjust next full state if sending diffs - if is_sending_diffs: - _next_full_state_tick = tick + full_state_interval - else: - # Send diffs to each peer - for peer in visibility_filter.get_visible_peers(): - var reference_tick := _ackd_state.get(peer, -1) as int - if reference_tick < 0 or not _state_history.has(reference_tick): - # Peer hasn't ack'd any tick, or we don't have the ack'd tick - # Send full state - _logger.trace("Reference tick @%d not found for peer #%s, sending full tick", [reference_tick, peer]) - _send_full_state(tick, peer) - continue - - # Prepare diff - var diff_state_data := _diff_state_encoder.encode(tick, reference_tick, _property_config.get_properties()) - - if _diff_state_encoder.get_full_snapshot().size() == _diff_state_encoder.get_encoded_snapshot().size(): - # State is completely different, send full state - _send_full_state(tick, peer) - else: - # Send only diff - _submit_diff_state.rpc_id(peer, diff_state_data, tick, reference_tick) - - # Push metrics - NetworkPerformance.push_full_state(_diff_state_encoder.get_full_snapshot()) - NetworkPerformance.push_sent_state(_diff_state_encoder.get_encoded_snapshot()) - -func _send_full_state(tick: int, peer: int = 0) -> void: - var full_state_snapshot := _state_history.get_snapshot(tick).as_dictionary() - var full_state_data := _full_state_encoder.encode(tick, _property_config.get_properties()) - - _submit_full_state.rpc_id(peer, full_state_data, tick) - - if peer <= 0: - NetworkPerformance.push_full_state_broadcast(full_state_snapshot) - NetworkPerformance.push_sent_state_broadcast(full_state_snapshot) - else: - NetworkPerformance.push_full_state(full_state_snapshot) - NetworkPerformance.push_sent_state(full_state_snapshot) - -# `serialized_state` is a serialized _PropertySnapshot -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _submit_full_state(data: Array, tick: int) -> void: - if not _is_initialized: return - - var sender := multiplayer.get_remote_sender_id() - var snapshot := _full_state_encoder.decode(data, _property_config.get_properties_owned_by(sender)) - - if not _full_state_encoder.apply(tick, snapshot, sender): - # Invalid data - return - - if NetworkRollback.enable_diff_states: - _ack_full_state.rpc_id(sender, tick) - -# State is a serialized _PropertySnapshot (Dictionary[String, Variant]) -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _submit_diff_state(data: PackedByteArray, tick: int, reference_tick: int) -> void: - if not _is_initialized: return - - var sender = multiplayer.get_remote_sender_id() - var diff_snapshot := _diff_state_encoder.decode(data, _property_config.get_properties_owned_by(sender)) - if not _diff_state_encoder.apply(tick, diff_snapshot, reference_tick, sender): - # Invalid data - return - - if NetworkRollback.enable_diff_states: - if diff_ack_interval > 0 and tick > _next_diff_ack_tick: - _ack_diff_state.rpc_id(sender, tick) - _next_diff_ack_tick = tick + diff_ack_interval - -@rpc("any_peer", "reliable", "call_remote") -func _ack_full_state(tick: int) -> void: - var sender_id := multiplayer.get_remote_sender_id() - _ackd_state[sender_id] = tick - - _logger.trace("Peer %d ack'd full state for tick %d", [sender_id, tick]) - -@rpc("any_peer", "unreliable_ordered", "call_remote") -func _ack_diff_state(tick: int) -> void: - if not _is_initialized: return - - var sender_id := multiplayer.get_remote_sender_id() - _ackd_state[sender_id] = tick - - _logger.trace("Peer %d ack'd diff state for tick %d", [sender_id, tick]) diff --git a/addons/netfox/time/network-tickrate-handshake.gd b/addons/netfox/time/network-tickrate-handshake.gd index e069f9b..495417d 100644 --- a/addons/netfox/time/network-tickrate-handshake.gd +++ b/addons/netfox/time/network-tickrate-handshake.gd @@ -40,7 +40,7 @@ signal on_tickrate_mismatch(peer: int, tickrate: int) ## [br][br] ## Called by [_NetworkTime], no need to call manually. func run() -> void: - if multiplayer.is_server(): + if _is_authority(): # Broadcast tickrate _submit_tickrate.rpc(NetworkTime.tickrate) @@ -61,7 +61,7 @@ func _ready() -> void: name = "NetworkTickrateHandshake" func _handle_new_peer(peer: int) -> void: - if multiplayer.is_server(): + if _is_authority(): _submit_tickrate.rpc_id(peer, NetworkTime.tickrate) func _handle_tickrate_mismatch(peer: int, tickrate: int) -> void: @@ -74,21 +74,25 @@ func _handle_tickrate_mismatch(peer: int, tickrate: int) -> void: NetworkTime.tickrate, peer, tickrate ]) DISCONNECT: - if multiplayer.is_server(): + if _is_authority(): _logger.warning("Peer #%d's tickrate of %dtps differs from expected %dtps! Disconnecting.", [ peer, tickrate, NetworkTime.tickrate ]) multiplayer.multiplayer_peer.disconnect_peer(peer) ADJUST: - if not multiplayer.is_server(): + if not _is_authority(): _logger.info("Local tickrate %dtps differs from tickrate of host at %dtps! Adjusting.", [ NetworkTime.tickrate, tickrate ]) # TODO: Make tickrate mutable at user's digression - ProjectSettings.set_setting(&"netfox/time/tickrate", tickrate) + NetworkTime._tickrate = tickrate SIGNAL: on_tickrate_mismatch.emit(peer, tickrate) +func _is_authority() -> bool: + # HACK: This method is here to ease testing; pretending to be a client is messy from a unit test + return multiplayer.is_server() + @rpc("any_peer", "reliable", "call_remote") func _submit_tickrate(tickrate: int) -> void: var sender := multiplayer.get_remote_sender_id() diff --git a/addons/vest/LICENSE b/addons/vest/LICENSE new file mode 100644 index 0000000..7f9d9a1 --- /dev/null +++ b/addons/vest/LICENSE @@ -0,0 +1,18 @@ +Copyright 2025 Gálffy Tamás + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/addons/vest/_generated-mixins/1-8182042.gd b/addons/vest/_generated-mixins/1-8182042.gd new file mode 100644 index 0000000..7f4e80b --- /dev/null +++ b/addons/vest/_generated-mixins/1-8182042.gd @@ -0,0 +1,100 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/gather-suite-mixin.gd +extends "res://addons/vest/test/vest-test-base.gd" + + + +# Automatically gathers tests defined in the test class + +func _get_ignored_methods() -> Array[String]: + return [ + "get_suite_name", + "before_suite", "before_case", "before_benchmark", "before_each", + "after_suite", "after_case", "after_benchmark", "after_each" + ] + +func _get_suite_name() -> String: + # Check if callback is implemented + if has_method("get_suite_name"): + return call("get_suite_name") + + # Check if class_name is set + var script := get_script() as Script + var pattern := RegEx.create_from_string("class_name\\s+([^\n\\s]+)") + var hit := pattern.search(script.source_code) + + if hit: + return hit.get_string(1) + + # Fall back to script path + return script.resource_path + +func _get_suite() -> VestDefs.Suite: + var script := get_script() as Script + var ignored_methods := _get_ignored_methods() + var inherited_methods := (script.get_base_script() + .get_script_method_list() + .map(func(it): return it["name"]) + ) + + var methods := (script.get_script_method_list() + .filter(func(it): return not it["name"].begins_with("_")) + .filter(func(it): return not inherited_methods.has(it["name"])) + .filter(func(it): return not ignored_methods.has(it["name"])) + ) + + var define_methods: Array[Dictionary] = [] + var case_methods: Array[Dictionary] = [] + var parametric_methods: Array[Dictionary] = [] + + for method in methods: + if method["name"].begins_with("suite"): + define_methods.append(method) + elif method["name"].begins_with("test") and not method["default_args"].is_empty() and method["default_args"][0] is String: + parametric_methods.append(method) + elif method["name"].begins_with("test"): + case_methods.append(method) + + return await define(_get_suite_name(), func(): + for method in define_methods: + await call(method["name"]) + + for method in case_methods: + var method_name := method["name"] as String + var test_name := method_name.trim_prefix("test").trim_suffix("__only").capitalize() + var callback := func(): await call(method["name"]) + var is_only := _is_only(method_name) + + test(test_name, callback, is_only, method_name) + + for method in parametric_methods: + var method_name := method["name"] as String + var test_name := method_name.trim_prefix("test").trim_suffix("__only").capitalize() + var is_only := _is_only(method_name) + + var param_provider_name := method["default_args"][0] as String + if not has_method(param_provider_name): + push_warning( + "Can't run parametrized test \"%s\", provider method \"%s\" is missing!" % \ + [method["name"], param_provider_name] + ) + + var params = await call(param_provider_name) + if not params is Array or not params.all(func(it): return it is Array): + push_warning( + "Can't run parametrized test \"%s\", provider \"%s\" didn't return array or arrays: %s" % \ + [method["name"], param_provider_name, params] + ) + + for i in range(params.size()): + test( + "%s#%d %s" % [test_name, i+1, params[i]], + func(): await callv(method["name"], params[i]), + is_only, + method_name + ) + ) + +func _is_only(name: String) -> bool: + return name.ends_with("__only") diff --git a/addons/vest/_generated-mixins/1-8182042.gd.uid b/addons/vest/_generated-mixins/1-8182042.gd.uid new file mode 100644 index 0000000..b300e57 --- /dev/null +++ b/addons/vest/_generated-mixins/1-8182042.gd.uid @@ -0,0 +1 @@ +uid://mm20mdmsc5ii diff --git a/addons/vest/_generated-mixins/2-ffc90559.gd b/addons/vest/_generated-mixins/2-ffc90559.gd new file mode 100644 index 0000000..55109ff --- /dev/null +++ b/addons/vest/_generated-mixins/2-ffc90559.gd @@ -0,0 +1,129 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/expect-mixin.gd +extends "res://addons/vest/_generated-mixins/1-8182042.gd" + + + +## Mixin for asserting test requirement +## +## @tutorial(Assertions): https://foxssake.github.io/vest/latest/user-guide/assertions/ + +## Expect a [param condition] to be true. +func expect(condition: bool, p_message: String = "") -> void: + if condition: + ok() + else: + fail(p_message) + +## Expect a [param condition] to be false. +func expect_not(condition: bool, p_message: String = "") -> void: + if not condition: + ok() + else: + fail(p_message) + +## Expect two values to be equal. +## [br][br] +## If [param actual] has an [code]equals()[/code] method, it will be used. +func expect_equal(actual: Variant, expected: Variant, p_message: String = "Actual value differs from expected!") -> void: + if Vest.__.Matchers.is_equal(actual, expected): + ok() + else: + fail(p_message, { "expect": expected, "got": actual }) + +## Expect two values not to be equal. +## [br][br] +## If [param actual] has an [code]equals()[/code] method, it will be used. +func expect_not_equal(actual: Variant, expected: Variant, p_message: String = "Actual value equals expected!") -> void: + if Vest.__.Matchers.is_equal(actual, expected): + fail(p_message, { "expect": expected, "got": actual }) + else: + ok() + +## Expect a [param condition] to be true. +## [br][br] +## Synonim of [method expect], aimed at better readability for asserting bools. +func expect_true(condition: bool, p_message: String = "") -> void: + expect(condition, p_message) + +## Expect a [param condition] to be false. +## [br][br] +## Synonim of [method expect_not], aimed at better readability for asserting +## bools. +func expect_false(condition: bool, p_message: String = "") -> void: + expect_not(condition, p_message) + +## Expect an [param object] to be empty. +## [br][br] +## If it's a custom type implementing [code]is_empty()[/code], that method will +## be used. +func expect_empty(object: Variant, p_message: String = "Object was not empty!") -> void: + match Vest.__.Matchers.is_empty(object): + true: + ok() + false: + fail(p_message) + ERR_METHOD_NOT_FOUND: + fail("Object has no is_empty() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked for emptiness!", { "object": object }) + +## Expect an [param object] to not be empty. +## [br][br] +## If it's a custom type implementing [code]is_empty()[/code], that method will +## be used. +func expect_not_empty(object: Variant, p_message: String = "Object was empty!") -> void: + match Vest.__.Matchers.is_empty(object): + true: + fail(p_message) + false: + ok() + ERR_METHOD_NOT_FOUND: + fail("Object has no is_empty() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked for emptiness!", { "object": object }) + +## Expect an [param object] to contain [param item]. +## [br][br] +## If it's a custom type implementing [code]has()[/code], that method will be +## used. +func expect_contains(object: Variant, item: Variant, p_message: String = "Item is missing from collection!") -> void: + match Vest.__.Matchers.contains(object, item): + true: + ok() + false: + fail(p_message, { "got": object, "missing": item }) + ERR_METHOD_NOT_FOUND: + fail("Object has no has() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked if it contains item!", { "object": object }) + +## Expect an [param object] to not contain [param item]. +## [br][br] +## If it's a custom type implementing [code]has()[/code], that method will be +## used. +func expect_does_not_contain(object: Variant, item: Variant, p_message: String = "Item is in collection!") -> void: + match Vest.__.Matchers.contains(object, item): + true: + fail(p_message, { "got": object, "excess": item }) + false: + ok() + ERR_METHOD_NOT_FOUND: + fail("Object has no has() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked if it contains item!", { "object": object }) + +## Expect a [param value] to be null. +func expect_null(value: Variant, p_message: String = "Item is not null!") -> void: + if value == null: + ok() + else: + fail(p_message, { "got": value }) + +## Expect a [param value] to not be null. +func expect_not_null(value: Variant, p_message: String = "Item is null!") -> void: + if value != null: + ok() + else: + fail(p_message) diff --git a/addons/vest/_generated-mixins/2-ffc90559.gd.uid b/addons/vest/_generated-mixins/2-ffc90559.gd.uid new file mode 100644 index 0000000..97d7766 --- /dev/null +++ b/addons/vest/_generated-mixins/2-ffc90559.gd.uid @@ -0,0 +1 @@ +uid://caf7owv25i7op diff --git a/addons/vest/_generated-mixins/3-27f38ba0.gd b/addons/vest/_generated-mixins/3-27f38ba0.gd new file mode 100644 index 0000000..1766779 --- /dev/null +++ b/addons/vest/_generated-mixins/3-27f38ba0.gd @@ -0,0 +1,85 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/assert-that-mixin.gd +extends "res://addons/vest/_generated-mixins/2-ffc90559.gd" + + + +func assert_that(value: Variant) -> _Assertion: + return _Assertion.new(self, value) + +class _Assertion: + var _test: VestTest + var _value: Variant + + func _init(p_test: Variant, p_value: Variant): + assert(p_test is VestTest, "assert_that mixin used from outside of VestTest!") + + _test = p_test + _value = p_value + + ## Expect a [param condition] about the asserted value to be true. + func passes(condition: Callable, p_message: String = "") -> _Assertion: + _test.expect(condition.call(_value), p_message) + return self + + ## Expect a [param condition] about the asserted value to be false. + func fails(condition: Callable, p_message: String = "") -> _Assertion: + _test.expect_not(condition.call(_value), p_message) + return self + + ## Expect the asserted value to be equal to [param expected]. + ## [br][br] + ## If [param actual] has an [code]equals()[/code] method, it will be used. + func is_equal_to(expected: Variant, p_message: String = "Actual value differs from expected!") -> _Assertion: + _test.expect_equal(_value, expected, p_message) + return self + + ## Expect the asserted value to not be equal to [param expected]. + ## [br][br] + ## If [param actual] has an [code]equals()[/code] method, it will be used. + func is_not_equal_to(expected: Variant, p_message: String = "Actual value equals expected!") -> _Assertion: + _test.expect_not_equal(_value, expected, p_message) + return self + + ## Expect the asserted value to be empty. + ## [br][br] + ## If it's a custom type implementing [code]is_empty()[/code], that method will + ## be used. + func is_empty(p_message: String = "Object was not empty!") -> _Assertion: + _test.expect_empty(_value, p_message) + return self + + ## Expect the asserted value to not be empty. + ## [br][br] + ## If it's a custom type implementing [code]is_empty()[/code], that method will + ## be used. + func is_not_empty(p_message: String = "Object was empty!") -> _Assertion: + _test.expect_not_empty(_value, p_message) + return self + + ## Expect the asserted value to contain [param item]. + ## [br][br] + ## If it's a custom type implementing [code]has()[/code], that method will be + ## used. + func contains(item: Variant, p_message: String = "Item is missing from collection!") -> _Assertion: + _test.expect_contains(_value, item, p_message) + return self + + ## Expect the asserted value to not contain [param item]. + ## [br][br] + ## If it's a custom type implementing [code]has()[/code], that method will be + ## used. + func does_not_contain(item: Variant, p_message: String = "Item is in collection!") -> _Assertion: + _test.expect_does_not_contain(_value, item, p_message) + return self + + ## Expect the asserted value to be null. + func is_null(p_message: String = "Item is not null!") -> _Assertion: + _test.expect_null(_value, p_message) + return self + + ## Expect the asserted value to not be null. + func is_not_null(p_message: String = "Item is null!") -> _Assertion: + _test.expect_not_null(_value, p_message) + return self diff --git a/addons/vest/_generated-mixins/3-27f38ba0.gd.uid b/addons/vest/_generated-mixins/3-27f38ba0.gd.uid new file mode 100644 index 0000000..c099974 --- /dev/null +++ b/addons/vest/_generated-mixins/3-27f38ba0.gd.uid @@ -0,0 +1 @@ +uid://d3mmot6r5ycm6 diff --git a/addons/vest/_generated-mixins/4-795b469a.gd b/addons/vest/_generated-mixins/4-795b469a.gd new file mode 100644 index 0000000..46f819c --- /dev/null +++ b/addons/vest/_generated-mixins/4-795b469a.gd @@ -0,0 +1,86 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/mock-mixin.gd +extends "res://addons/vest/_generated-mixins/3-27f38ba0.gd" + + + +## Provides mocking for tests +## +## @tutorial(Mocks): https://foxssake.github.io/vest/latest/user-guide/mocks/ + +# TODO: Fail test case if there's unhandled calls + +var _mock_generator := VestMockGenerator.new() +var _mock_handler := VestMockHandler.new() + +# Maps Scripts to their mocked counterparts +var _mock_script_cache := {} + +## Create a mocked instance of a given script +func mock(script: Script): + var mocked_script := _get_mock_script(script) + var mocked_object = mocked_script.new() + + _mock_handler.take_over(mocked_object) + return mocked_object + +## Get calls of a mock object's method +func get_calls_of(method: Callable) -> Array[Array]: + var result: Array[Array] = [] + + for call_data in _mock_handler.get_calls(): + if call_data.method != method: + continue + result.append(call_data.args) + + return result + +## Start specifying an answer for a mocked method call +func when(method: Callable) -> AnswerBuilder: + return AnswerBuilder._of(method, self) + +func _get_mock_script(script: Script) -> Script: + if _mock_script_cache.has(script): + return _mock_script_cache.get(script) + else: + var mocked_script := _mock_generator.generate_mock_script(script) + _mock_script_cache[script] = mocked_script + return mocked_script + +## Builder for specifying [VestMockDefs.Answer] objects +class AnswerBuilder: + var _test + var _args: Array = [] + var _method: Callable + + ## Set expected arguments + func with_args(p_args: Array) -> AnswerBuilder: + _args = p_args + return self + + ## Answer by calling a custom method + ## [br][br] + ## The method will received the passed arguments as an array. + func then_answer(p_answer_method: Callable) -> void: + var answer := VestMockDefs.Answer.new() + answer.expected_method = _method + answer.expected_args = _args + answer._answer_method = p_answer_method + + _test._mock_handler.add_answer(answer) + + ## Answer with a fixed value + func then_return(p_answer_value: Variant) -> void: + var answer := VestMockDefs.Answer.new() + answer.expected_method = _method + answer.expected_args = _args + answer._answer_value = p_answer_value + + _test._mock_handler.add_answer(answer) + + static func _of(p_method: Callable, p_test): + var builder := AnswerBuilder.new() + builder._method = p_method + builder._test = p_test + return builder diff --git a/addons/vest/_generated-mixins/4-795b469a.gd.uid b/addons/vest/_generated-mixins/4-795b469a.gd.uid new file mode 100644 index 0000000..9021b7a --- /dev/null +++ b/addons/vest/_generated-mixins/4-795b469a.gd.uid @@ -0,0 +1 @@ +uid://v3npn3goh4em diff --git a/addons/vest/_generated-mixins/5-96ae432f.gd b/addons/vest/_generated-mixins/5-96ae432f.gd new file mode 100644 index 0000000..20cff30 --- /dev/null +++ b/addons/vest/_generated-mixins/5-96ae432f.gd @@ -0,0 +1,84 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/capture-signal-mixin.gd +extends "res://addons/vest/_generated-mixins/4-795b469a.gd" + + + +## Mixin for capturing and asserting signals +## +## @tutorial(Capturing signals): https://foxssake.github.io/vest/latest/user-guide/capturing-signals/ + +# Maps signals to an array of recorded emissions +# Each array item is an individual array containing the emission params +var _signal_captures := {} + +# Array of [signal, recorder, is_persistent] tuples +var _signal_recorders: Array[Array] = [] + +## Capture all emissions of a signal. +## [br][br] +## Mark the capture as [param persistent] if you want the capture to persist +## between test cases. +func capture_signal(what: Signal, arg_count: int = 0, persistent: bool = false): + # Reset captures + _signal_captures[what] = [] + + # Add listener + var recorder = _get_signal_recorder(what, arg_count) + if not recorder: + push_warning("Can't capture signal with %d arguments!" % arg_count) + return + + what.connect(recorder) + _signal_recorders.append([what, recorder, persistent]) + +## Get the captured signal emissions for a given signal. +## [br][br] +## Note that the captured emissions are reset between test cases. [br] +## Returns an array of signal emission parameters for each captured emission. +func get_signal_emissions(what: Signal) -> Array: + return _signal_captures.get(what, []) + +func _init(): + super() + on_case_begin.connect(func(__): + # Remove non-persistent recorders + _cleanup_recorders() + + # Clear captures + _signal_captures.clear() + ) + +func _cleanup_recorders(): + var filtered_recorders: Array[Array] = [] + + for recorder_tuple in _signal_recorders: + var recorded_signal := recorder_tuple[0] as Signal + var recorder := recorder_tuple[1] as Callable + var persistent := recorder_tuple[2] as bool + + if persistent: + filtered_recorders.append(recorder_tuple) + else: + recorded_signal.disconnect(recorder) + + _signal_recorders = filtered_recorders + +func _get_signal_recorder(what: Signal, arg_count: int): + match(arg_count): + 0: return func(): _record_emission(what, []) + 1: return func(a1): _record_emission(what, [a1]) + 2: return func(a1, a2): _record_emission(what, [a1, a2]) + 3: return func(a1, a2, a3): _record_emission(what, [a1, a2, a3]) + 4: return func(a1, a2, a3, a4): _record_emission(what, [a1, a2, a3, a4]) + 5: return func(a1, a2, a3, a4, a5): _record_emission(what, [a1, a2, a3, a4, a5]) + 6: return func(a1, a2, a3, a4, a5, a6): _record_emission(what, [a1, a2, a3, a4, a5, a6]) + 7: return func(a1, a2, a3, a4, a5, a6, a7): _record_emission(what, [a1, a2, a3, a4, a5, a6, a7]) + 8: return func(a1, a2, a3, a4, a5, a6, a7, a8): _record_emission(what, [a1, a2, a3, a4, a5, a6, a7, a8]) + _: return null + +func _record_emission(what: Signal, args: Array): + if not _signal_captures.has(what): + _signal_captures[what] = [] + _signal_captures[what].append(args) diff --git a/addons/vest/_generated-mixins/5-96ae432f.gd.uid b/addons/vest/_generated-mixins/5-96ae432f.gd.uid new file mode 100644 index 0000000..7dcf75d --- /dev/null +++ b/addons/vest/_generated-mixins/5-96ae432f.gd.uid @@ -0,0 +1 @@ +uid://c8oa5ooaqwi11 diff --git a/addons/vest/_generated-mixins/6-3c4a4dd7.gd b/addons/vest/_generated-mixins/6-3c4a4dd7.gd new file mode 100644 index 0000000..6e116d5 --- /dev/null +++ b/addons/vest/_generated-mixins/6-3c4a4dd7.gd @@ -0,0 +1,18 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/mixins/logging-mixin.gd +extends "res://addons/vest/_generated-mixins/5-96ae432f.gd" + + + +# Manages logs added using [method Vest.message] + +func _init(): + super() + + on_case_finish.connect(func(_case): + var messages := Vest._get_messages() + if not messages.is_empty(): + _result.data["messages"] = messages + Vest._clear_messages() + ) diff --git a/addons/vest/_generated-mixins/6-3c4a4dd7.gd.uid b/addons/vest/_generated-mixins/6-3c4a4dd7.gd.uid new file mode 100644 index 0000000..a3ca195 --- /dev/null +++ b/addons/vest/_generated-mixins/6-3c4a4dd7.gd.uid @@ -0,0 +1 @@ +uid://dqqt1ecooeqdd diff --git a/addons/vest/cli/vest-cli-runner.gd b/addons/vest/cli/vest-cli-runner.gd new file mode 100644 index 0000000..438b5a7 --- /dev/null +++ b/addons/vest/cli/vest-cli-runner.gd @@ -0,0 +1,93 @@ +extends RefCounted +class_name VestCLIRunner + +## Implements functionality to run tests + +var _peer: StreamPeerTCP = null + +## Run tests with [Params] +func run(params: VestCLI.Params) -> int: + var validation_errors := params.validate() + if not validation_errors.is_empty(): + for error in validation_errors: + OS.alert(error) + push_error(error) + return 1 + + await _connect(params) + + var results := await _run_tests(params) + _report(params, results) + _send_results_over_network(params, results) + + _disconnect() + + if results.get_aggregate_status() == VestResult.TEST_PASS: + print_rich("All tests [color=green]passed[/color]!") + return 0 + else: + print_rich("There are test [color=red]failures[/color]!") + return 1 + +func _run_tests(params: VestCLI.Params) -> VestResult.Suite: + var runner := VestLocalRunner.new() + runner.on_partial_result.connect(func(result: VestResult.Suite): + if _peer != null: + if result != null: + _peer.put_var(result._to_wire(), true) + else: + _peer.put_var(result, true) + ) + + var results: VestResult.Suite + if params.run_file: + results = await runner.run_script_at(params.run_file, params.only_mode) + elif params.run_glob: + results = await runner.run_glob(params.run_glob, params.only_mode) + + return results + +func _report(params: VestCLI.Params, results: VestResult.Suite): + var report := TAPReporter.report(results) + + if params.report_format: + if params.report_file in ["", "-"]: + print(report) + else: + var fa := FileAccess.open(params.report_file, FileAccess.WRITE) + fa.store_string(report) + fa.close() + +func _connect(params: VestCLI.Params): + if not params.host and params.port == -1: + return + + var host := params.host + var port := params.port + + if not host: host = "127.0.0.1" + if port == -1: port = 54932 + + var peer := StreamPeerTCP.new() + var err := peer.connect_to_host(host, port) + if err != OK: + push_warning("Couldn't connect on port %d! %s" % [port, error_string(err)]) + return + + await Vest.until(func(): peer.poll(); return peer.get_status() != StreamPeerTCP.STATUS_CONNECTING) + if peer.get_status() != StreamPeerTCP.STATUS_CONNECTED: + push_warning("Connection failed! Socket status: %d" % [peer.get_status()]) + return + + peer.set_no_delay(true) + _peer = peer + +func _disconnect(): + if _peer != null: + _peer.disconnect_from_host() + +func _send_results_over_network(params: VestCLI.Params, results: VestResult.Suite): + if not _peer: + return + + _peer.put_var(results._to_wire(), true) diff --git a/addons/vest/cli/vest-cli-runner.gd.uid b/addons/vest/cli/vest-cli-runner.gd.uid new file mode 100644 index 0000000..bad75d7 --- /dev/null +++ b/addons/vest/cli/vest-cli-runner.gd.uid @@ -0,0 +1 @@ +uid://bw0ajf5t50wi0 diff --git a/addons/vest/cli/vest-cli-scene.tscn b/addons/vest/cli/vest-cli-scene.tscn new file mode 100644 index 0000000..6bb7a49 --- /dev/null +++ b/addons/vest/cli/vest-cli-scene.tscn @@ -0,0 +1,21 @@ +[gd_scene load_steps=2 format=3 uid="uid://dopwc3211i1ce"] + +[sub_resource type="GDScript" id="GDScript_de1pc"] +script/source = "extends Node + +# Used to run tests in debug mode + +func _ready(): + Vest._register_scene_tree(get_tree()) + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_MINIMIZED) + + var params := Vest.__.LocalSettings.run_params + + var runner := VestCLIRunner.new() + var exit_code := await runner.run(params) + + get_tree().quit(exit_code) +" + +[node name="vest-cli-scene" type="Node"] +script = SubResource("GDScript_de1pc") diff --git a/addons/vest/cli/vest-cli.gd b/addons/vest/cli/vest-cli.gd new file mode 100644 index 0000000..6b4ac5b --- /dev/null +++ b/addons/vest/cli/vest-cli.gd @@ -0,0 +1,110 @@ +extends SceneTree +class_name VestCLI + +## Class for running vest from the CLI +## [br][br] +## See [VestCLI.Params] + +## Vest CLI parameters +class Params: + ## Which test script file to run + var run_file: String = "" + + ## Which test glob to run + var run_glob: String = "res://*.test.gd" + + ## Reporting format - currently only TAP is supported + var report_format: String = "" + + ## Path for saving the report + var report_file: String = "" + + ## How to handle tests marked as `only` + var only_mode: int = Vest.__.ONLY_DISABLED + + ## Host to connect to for sending results + var host: String = "" + + ## Port to connect to for sending results + var port: int = -1 + + ## Validate parameters. + ## [br][br] + ## Returns an array of error messages, or an empty array of the parameters + ## are valid. + func validate() -> Array[String]: + var result: Array[String] = [] + if not run_file and not run_glob: + result.append("No tests specified!") + if report_format not in ["", "tap"]: + result.append("Unknown report format \"%s\"!" % report_format) + if port != -1 and port < 0 or port > 65535: + result.append("Specified port %d is invalid!" % port) + return result + + ## Convert to an array of CLI parameters. + func to_args() -> Array[String]: + var result: Array[String] = [] + + if run_file: result.append_array(["--vest-file", run_file]) + if run_glob: result.append_array(["--vest-glob", run_glob]) + if report_format: result.append_array(["--vest-report-format", report_format]) + if report_file: result.append_array(["--vest-report-file", report_file]) + if host: result.append_array(["--vest-host", host]) + if port != -1: result.append_array(["--vest-port", str(port)]) + + match only_mode: + Vest.__.ONLY_DISABLED: result.append("--no-only") + Vest.__.ONLY_AUTO: result.append("--auto-only") + Vest.__.ONLY_ENABLED: result.append("--only") + + return result + + ## Parse an array of CLI parameters. + ## [br][br] + ## See [method OS.get_cmdline_args]. + static func parse(args: Array[String]) -> Params: + var result := Params.new() + + for i in range(args.size()): + var arg := args[i] + var val := args[i+1] if i+1 < args.size() else "" + + if arg == "--vest-file": result.run_file = val + elif arg == "--vest-glob": result.run_glob = val + elif arg == "--vest-report-file": result.report_file = val + elif arg == "--vest-report-format": result.report_format = val + elif arg == "--vest-port": result.port = val.to_int() + elif arg == "--vest-host": result.host = val + elif arg == "--no-only": result.only_mode = Vest.__.ONLY_DISABLED + elif arg == "--only": result.only_mode = Vest.__.ONLY_ENABLED + elif arg == "--auto-only": result.only_mode = Vest.__.ONLY_AUTO + + return result + +## Run vest CLI with parameters. +## [br][br] +## Returns the spawned process' ID. +static func run(params: Params) -> int: + var args = ["--headless", "-s", (VestCLI as Script).resource_path] + return OS.create_instance(args + params.to_args()) + +## Run vest in debug mode. +static func debug(params: Params): + Vest.__.LocalSettings.run_params = params + Vest.__.LocalSettings.flush() + Vest._get_editor_interface()\ + .play_custom_scene(preload("res://addons/vest/cli/vest-cli-scene.tscn").resource_path) + +func _init(): + Vest._register_scene_tree(self) + + # Wait a frame for autoloads to register + await process_frame + + var params := Params.parse(OS.get_cmdline_args()) + var runner := VestCLIRunner.new() + + var exit_code := await runner.run(params) + + quit(exit_code) diff --git a/addons/vest/cli/vest-cli.gd.uid b/addons/vest/cli/vest-cli.gd.uid new file mode 100644 index 0000000..787fb0b --- /dev/null +++ b/addons/vest/cli/vest-cli.gd.uid @@ -0,0 +1 @@ +uid://dnchvsa0ahjd4 diff --git a/addons/vest/commands/create-test-command.gd b/addons/vest/commands/create-test-command.gd new file mode 100644 index 0000000..b4d4091 --- /dev/null +++ b/addons/vest/commands/create-test-command.gd @@ -0,0 +1,74 @@ +@tool +extends Node + +static var _instance: Vest.__.CreateTestCommand = null + +static func find(): + return _instance + +static func execute() -> void: + if _instance: + _instance.create_test() + else: + push_warning("No instance of Create Test command found!") + +func create_test(): + var editor := Vest._get_editor_interface() + var edited_script := editor.get_script_editor().get_current_script() as Script + + if not edited_script: + editor.get_script_editor().open_script_create_dialog("VestTest", "") + return + + var script_path := edited_script.resource_path + var script_directory := script_path.get_base_dir() + var script_filename := script_path.get_file() + + if Vest.get_test_name_patterns().any(func(it): return it.matches(script_filename)): + # Script is already a test + return + + var preferred_pattern := Vest.get_test_name_patterns()[0] + var test_filename := preferred_pattern.substitute(script_filename) + var test_directory := get_test_directory(script_directory) + var test_path := test_directory.path_join(test_filename) + + editor.get_script_editor().open_script_create_dialog("VestTest", test_path) + +func get_test_directory(script_dir: String) -> String: + match Vest.get_new_test_location_preference(): + Vest.NEW_TEST_MIRROR_DIR_STRUCTURE: + return get_mirrored_test_dir(script_dir) + Vest.NEW_TEST_NEXT_TO_SOURCE: + return script_dir + Vest.NEW_TEST_IN_ROOT: + return Vest.get_tests_root() + + return script_dir + +func get_mirrored_test_dir(script_dir: String) -> String: + # TODO: Class for managing paths? + if not script_dir.ends_with("/"): + script_dir += "/" + + if script_dir.begins_with(Vest.get_sources_root()): + var relative_to_src_root := script_dir.substr(Vest.get_sources_root().length()) + return Vest.get_tests_root() + relative_to_src_root + else: + var relative_to_root := script_dir.replace("res://", "") + return Vest.get_tests_root() + relative_to_root + +func _ready(): + _instance = self + var editor := Vest._get_editor_interface() + editor.get_command_palette().add_command("Create test", "vest/create-test", create_test, "Ctrl+Shift+T") + +func _exit_tree(): + var editor := Vest._get_editor_interface() + editor.get_command_palette().remove_command("vest/create-test") + +func _shortcut_input(event): + if event is InputEventKey: + if event.is_command_or_control_pressed() and event.shift_pressed and event.key_label == KEY_T and event.is_pressed(): + create_test() + get_viewport().set_input_as_handled() diff --git a/addons/vest/commands/create-test-command.gd.uid b/addons/vest/commands/create-test-command.gd.uid new file mode 100644 index 0000000..090e163 --- /dev/null +++ b/addons/vest/commands/create-test-command.gd.uid @@ -0,0 +1 @@ +uid://cmda0loe05f5y diff --git a/addons/vest/commands/go-to-test-command.gd b/addons/vest/commands/go-to-test-command.gd new file mode 100644 index 0000000..7df767f --- /dev/null +++ b/addons/vest/commands/go-to-test-command.gd @@ -0,0 +1,101 @@ +@tool +extends Node + +static var _instance: Vest.__.GoToTestCommand = null + +static func find() -> Vest.__.GoToTestCommand: + return _instance + +func go_to_test(): + var editor := Vest._get_editor_interface() + var edited_script := editor.get_script_editor().get_current_script() as Script + + if not edited_script: + # No script is being edited + return + + var script_path := edited_script.resource_path + var script_filename := script_path.get_file() + + var target_filenames := get_search_filenames(script_filename, Vest.get_test_name_patterns()) + var hits := find_matching_scripts(script_path, target_filenames) + + if hits.size() == 1: + # Single hit, navigate to script asap + editor.edit_script(load(hits.front())) + else: + # Multiple hits, let user choose which one to open + show_popup(hits) + +func get_search_filenames(script_filename: String, patterns: Array[FilenamePattern]) -> Array[String]: + var result := [] as Array[String] + + # Check if currently open script is a test, in which case guess implementation's filename + for pattern in patterns: + if pattern.matches(script_filename): + result.append(pattern.reverse(script_filename)) + + # Currently open script is not a test, figure out possible test names + if result.is_empty(): + result.append_array(patterns.map(func(it): return it.substitute(script_filename))) + + return result + +func find_matching_scripts(script_path: String, search_filenames: Array[String]) -> Array[String]: + var result := [] as Array[String] + Vest.traverse_directory("res://", func(path: String): + if path == script_path: + return + if path.get_file() not in search_filenames: + return + + result.append(path) + ) + + return result + +func show_popup(matching_script_paths: Array[String]): + var editor := Vest._get_editor_interface() + + var popup := PopupMenu.new() + popup.min_size = Vector2(0, 0) + popup.size = Vector2(0, 0) + + # Add options for matches + for idx in range(matching_script_paths.size()): + var script_path := matching_script_paths[idx] + popup.add_icon_item(Vest.Icons.jump_to, script_path) + popup.set_item_icon_max_width(popup.item_count - 1, VestUI.get_icon_size()) + + # Add option to create + popup.add_icon_item(Vest.Icons.lightbulb, "Create test") + popup.set_item_icon_max_width(popup.item_count - 1, VestUI.get_icon_size()) + + # Show popup at mouse pos + editor.popup_dialog(popup, Rect2i( + get_viewport().get_mouse_position(), + Vector2.ZERO + )) + popup.set_focused_item(0) + + popup.index_pressed.connect(func(idx: int): + if idx < matching_script_paths.size(): + editor.edit_script(load(matching_script_paths[idx])) + else: + Vest.__.CreateTestCommand.execute() + ) + +func _ready(): + _instance = self + var editor := Vest._get_editor_interface() + editor.get_command_palette().add_command("Go to test", "vest/go-test", go_to_test, "Ctrl+T") + +func _exit_tree(): + var editor := Vest._get_editor_interface() + editor.get_command_palette().remove_command("vest/go-test") + +func _shortcut_input(event): + if event is InputEventKey: + if event.is_command_or_control_pressed() and not event.shift_pressed and event.key_label == KEY_T and event.is_pressed(): + go_to_test() + get_viewport().set_input_as_handled() diff --git a/addons/vest/commands/go-to-test-command.gd.uid b/addons/vest/commands/go-to-test-command.gd.uid new file mode 100644 index 0000000..1229f0f --- /dev/null +++ b/addons/vest/commands/go-to-test-command.gd.uid @@ -0,0 +1 @@ +uid://btsb4tdggfvfg diff --git a/addons/vest/commands/run-test-command.gd b/addons/vest/commands/run-test-command.gd new file mode 100644 index 0000000..13ed67d --- /dev/null +++ b/addons/vest/commands/run-test-command.gd @@ -0,0 +1,53 @@ +@tool +extends Node + +func run_test(): + _run(false, Vest.__.ONLY_AUTO) + +func debug_test(): + _run(true, Vest.__.ONLY_AUTO) + +func _run(is_debug: bool, only_mode: int) -> void: + var editor_interface := Vest._get_editor_interface() + var script_editor := editor_interface.get_script_editor() as ScriptEditor + + var edited_script := script_editor.get_current_script() + if not edited_script: + # TODO: Polyfilled toast mechanism so user can see these warns + push_warning("No script to run! Open a script in the script editor.") + return + + if not _is_ancestor_of(VestTest, edited_script): + push_warning("Currently open script is not a test! Extend VestTest.") + return + + print_verbose("Running test \"%s\"" % [edited_script.resource_path]) + var vest_ui := VestUI._get_ui() + vest_ui.run_script(edited_script, is_debug, only_mode) + +func _is_ancestor_of(base_script: Script, script: Script) -> bool: + for i in range(128): # Prevent runaway loops + if script == null: break + if base_script == script: return true + + script = script.get_base_script() + return false + +func _ready(): + var editor := Vest._get_editor_interface() + editor.get_command_palette().add_command("Run test", "vest/run-test", run_test, "F7") + editor.get_command_palette().add_command("Debug test", "vest/debug-test", debug_test, "Ctrl+F7") + +func _exit_tree(): + var editor := Vest._get_editor_interface() + editor.get_command_palette().remove_command("vest/run-test") + editor.get_command_palette().remove_command("vest/debug-test") + +func _shortcut_input(event): + if event is InputEventKey: + if event.key_label == KEY_F7 and not event.shift_pressed and event.is_pressed(): + if event.is_command_or_control_pressed(): + debug_test() + else: + run_test() + get_viewport().set_input_as_handled() diff --git a/addons/vest/commands/run-test-command.gd.uid b/addons/vest/commands/run-test-command.gd.uid new file mode 100644 index 0000000..feff145 --- /dev/null +++ b/addons/vest/commands/run-test-command.gd.uid @@ -0,0 +1 @@ +uid://owfqf5cu1gju diff --git a/addons/vest/filename-pattern.gd b/addons/vest/filename-pattern.gd new file mode 100644 index 0000000..5ca309d --- /dev/null +++ b/addons/vest/filename-pattern.gd @@ -0,0 +1,30 @@ +@tool +extends RefCounted +class_name FilenamePattern + +var _pattern: String +var _reverse_pattern: RegEx + +func _init(p_pattern: String): + _pattern = p_pattern + _reverse_pattern = RegEx.create_from_string("^" + p_pattern.replace("*", "(.*)") + "$") + +func matches(filename: String) -> bool: + return filename.match(_pattern) + +func reverse(filename: String) -> String: + if not matches(filename): + return "" + + var reverse_result := _reverse_pattern.search(filename) + + if not reverse_result: return "" + if reverse_result.get_group_count() < 1: return "" + + return reverse_result.get_string(1) + ".gd" + +func substitute(filename: String) -> String: + return _pattern.replace("*", filename.get_file().get_basename()) + +func _to_string(): + return "FilenamePattern(\"%s\")" % [_pattern] diff --git a/addons/vest/filename-pattern.gd.uid b/addons/vest/filename-pattern.gd.uid new file mode 100644 index 0000000..6948d2d --- /dev/null +++ b/addons/vest/filename-pattern.gd.uid @@ -0,0 +1 @@ +uid://bql0s3vbq7u3x diff --git a/addons/vest/icons/benchmark-fail.svg b/addons/vest/icons/benchmark-fail.svg new file mode 100644 index 0000000..6cc1972 --- /dev/null +++ b/addons/vest/icons/benchmark-fail.svg @@ -0,0 +1,122 @@ + + + + diff --git a/addons/vest/icons/benchmark-fail.svg.import b/addons/vest/icons/benchmark-fail.svg.import new file mode 100644 index 0000000..82cbaca --- /dev/null +++ b/addons/vest/icons/benchmark-fail.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1cdr1khuiy2f" +path="res://.godot/imported/benchmark-fail.svg-b20a3c22c391ea7bcebd7f59f83ca9d5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/benchmark-fail.svg" +dest_files=["res://.godot/imported/benchmark-fail.svg-b20a3c22c391ea7bcebd7f59f83ca9d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/benchmark-pass.svg b/addons/vest/icons/benchmark-pass.svg new file mode 100644 index 0000000..48de1cf --- /dev/null +++ b/addons/vest/icons/benchmark-pass.svg @@ -0,0 +1,94 @@ + + + + diff --git a/addons/vest/icons/benchmark-pass.svg.import b/addons/vest/icons/benchmark-pass.svg.import new file mode 100644 index 0000000..b6f371e --- /dev/null +++ b/addons/vest/icons/benchmark-pass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt8iem8l0pq4s" +path="res://.godot/imported/benchmark-pass.svg-7479ef55a95006e5fb1a614e003877eb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/benchmark-pass.svg" +dest_files=["res://.godot/imported/benchmark-pass.svg-7479ef55a95006e5fb1a614e003877eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/benchmark.svg b/addons/vest/icons/benchmark.svg new file mode 100644 index 0000000..a53bf92 --- /dev/null +++ b/addons/vest/icons/benchmark.svg @@ -0,0 +1,86 @@ + + + + diff --git a/addons/vest/icons/benchmark.svg.import b/addons/vest/icons/benchmark.svg.import new file mode 100644 index 0000000..14421d6 --- /dev/null +++ b/addons/vest/icons/benchmark.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6yh8aylojfgt" +path="res://.godot/imported/benchmark.svg-b9f24369bdd89bc588a152cef6f09c00.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/benchmark.svg" +dest_files=["res://.godot/imported/benchmark.svg-b9f24369bdd89bc588a152cef6f09c00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/clear.svg b/addons/vest/icons/clear.svg new file mode 100644 index 0000000..9bfc331 --- /dev/null +++ b/addons/vest/icons/clear.svg @@ -0,0 +1,92 @@ + + + + diff --git a/addons/vest/icons/clear.svg.import b/addons/vest/icons/clear.svg.import new file mode 100644 index 0000000..7e2081c --- /dev/null +++ b/addons/vest/icons/clear.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctdipwc8sklwo" +path="res://.godot/imported/clear.svg-c74aed6190d9cab6b3b5d7c8ad724085.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/clear.svg" +dest_files=["res://.godot/imported/clear.svg-c74aed6190d9cab6b3b5d7c8ad724085.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/collapse.svg b/addons/vest/icons/collapse.svg new file mode 100644 index 0000000..b92a25a --- /dev/null +++ b/addons/vest/icons/collapse.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + diff --git a/addons/vest/icons/collapse.svg.import b/addons/vest/icons/collapse.svg.import new file mode 100644 index 0000000..11a3649 --- /dev/null +++ b/addons/vest/icons/collapse.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv8va2smpv1lf" +path="res://.godot/imported/collapse.svg-9b497d9ee40a464a0f26821fb8538f0b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/collapse.svg" +dest_files=["res://.godot/imported/collapse.svg-9b497d9ee40a464a0f26821fb8538f0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/debug.svg b/addons/vest/icons/debug.svg new file mode 100644 index 0000000..065075b --- /dev/null +++ b/addons/vest/icons/debug.svg @@ -0,0 +1,85 @@ + + + + diff --git a/addons/vest/icons/debug.svg.import b/addons/vest/icons/debug.svg.import new file mode 100644 index 0000000..2826b45 --- /dev/null +++ b/addons/vest/icons/debug.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwhlyf5eyiect" +path="res://.godot/imported/debug.svg-10ec6677d3bd3a64aea2006222e97a3c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/debug.svg" +dest_files=["res://.godot/imported/debug.svg-10ec6677d3bd3a64aea2006222e97a3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/expand.svg b/addons/vest/icons/expand.svg new file mode 100644 index 0000000..fdb09d7 --- /dev/null +++ b/addons/vest/icons/expand.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + diff --git a/addons/vest/icons/expand.svg.import b/addons/vest/icons/expand.svg.import new file mode 100644 index 0000000..3b4adc9 --- /dev/null +++ b/addons/vest/icons/expand.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sx0233b14cll" +path="res://.godot/imported/expand.svg-6ad1f463c41f73d2aadcc7559e7670ff.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/expand.svg" +dest_files=["res://.godot/imported/expand.svg-6ad1f463c41f73d2aadcc7559e7670ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/fail.svg b/addons/vest/icons/fail.svg new file mode 100644 index 0000000..06fa9ff --- /dev/null +++ b/addons/vest/icons/fail.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/fail.svg.import b/addons/vest/icons/fail.svg.import new file mode 100644 index 0000000..9eb14b0 --- /dev/null +++ b/addons/vest/icons/fail.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de5ileacgwme1" +path="res://.godot/imported/fail.svg-fb1453c71ffec14739e9280d33cb8120.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/fail.svg" +dest_files=["res://.godot/imported/fail.svg-fb1453c71ffec14739e9280d33cb8120.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/hidden.svg b/addons/vest/icons/hidden.svg new file mode 100644 index 0000000..8abbe79 --- /dev/null +++ b/addons/vest/icons/hidden.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/vest/icons/hidden.svg.import b/addons/vest/icons/hidden.svg.import new file mode 100644 index 0000000..44f1332 --- /dev/null +++ b/addons/vest/icons/hidden.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buuq6qptg3vll" +path="res://.godot/imported/hidden.svg-58af1b7fb82759e99e9f427f659b9a32.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/hidden.svg" +dest_files=["res://.godot/imported/hidden.svg-58af1b7fb82759e99e9f427f659b9a32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/jump-to.svg b/addons/vest/icons/jump-to.svg new file mode 100644 index 0000000..64b6d87 --- /dev/null +++ b/addons/vest/icons/jump-to.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/jump-to.svg.import b/addons/vest/icons/jump-to.svg.import new file mode 100644 index 0000000..b08489b --- /dev/null +++ b/addons/vest/icons/jump-to.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beoxvhp204wuv" +path="res://.godot/imported/jump-to.svg-c9add894b2d5164c6f4e6837154c4f30.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/jump-to.svg" +dest_files=["res://.godot/imported/jump-to.svg-c9add894b2d5164c6f4e6837154c4f30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/lightbulb.svg b/addons/vest/icons/lightbulb.svg new file mode 100644 index 0000000..bd1dcb1 --- /dev/null +++ b/addons/vest/icons/lightbulb.svg @@ -0,0 +1,377 @@ + + + + diff --git a/addons/vest/icons/lightbulb.svg.import b/addons/vest/icons/lightbulb.svg.import new file mode 100644 index 0000000..c7995e3 --- /dev/null +++ b/addons/vest/icons/lightbulb.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckxkehgmjtjcx" +path="res://.godot/imported/lightbulb.svg-f4f05ab673622fe0cb66314541b2eac4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/lightbulb.svg" +dest_files=["res://.godot/imported/lightbulb.svg-f4f05ab673622fe0cb66314541b2eac4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/pass.svg b/addons/vest/icons/pass.svg new file mode 100644 index 0000000..1901512 --- /dev/null +++ b/addons/vest/icons/pass.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/pass.svg.import b/addons/vest/icons/pass.svg.import new file mode 100644 index 0000000..219471b --- /dev/null +++ b/addons/vest/icons/pass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmqjme87oq3xx" +path="res://.godot/imported/pass.svg-527f701477d1793b7212aa92a3d53194.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/pass.svg" +dest_files=["res://.godot/imported/pass.svg-527f701477d1793b7212aa92a3d53194.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/refresh.svg b/addons/vest/icons/refresh.svg new file mode 100644 index 0000000..aff639e --- /dev/null +++ b/addons/vest/icons/refresh.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/refresh.svg.import b/addons/vest/icons/refresh.svg.import new file mode 100644 index 0000000..e23c341 --- /dev/null +++ b/addons/vest/icons/refresh.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt75n55vr4kq0" +path="res://.godot/imported/refresh.svg-08b8d1fd09107d0faa0c33acbadb6352.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/refresh.svg" +dest_files=["res://.godot/imported/refresh.svg-08b8d1fd09107d0faa0c33acbadb6352.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/run-save.svg b/addons/vest/icons/run-save.svg new file mode 100644 index 0000000..2ccc8a1 --- /dev/null +++ b/addons/vest/icons/run-save.svg @@ -0,0 +1,95 @@ + + + + diff --git a/addons/vest/icons/run-save.svg.import b/addons/vest/icons/run-save.svg.import new file mode 100644 index 0000000..9782b08 --- /dev/null +++ b/addons/vest/icons/run-save.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c711af0y1s2ct" +path="res://.godot/imported/run-save.svg-284dc56c3fcbb3decae07a3263265580.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/run-save.svg" +dest_files=["res://.godot/imported/run-save.svg-284dc56c3fcbb3decae07a3263265580.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/run.svg b/addons/vest/icons/run.svg new file mode 100644 index 0000000..b961492 --- /dev/null +++ b/addons/vest/icons/run.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/run.svg.import b/addons/vest/icons/run.svg.import new file mode 100644 index 0000000..844a418 --- /dev/null +++ b/addons/vest/icons/run.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r4y6ihamgino" +path="res://.godot/imported/run.svg-b6532e07a4db7efc49be28be04360e08.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/run.svg" +dest_files=["res://.godot/imported/run.svg-b6532e07a4db7efc49be28be04360e08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/search.svg b/addons/vest/icons/search.svg new file mode 100644 index 0000000..110a512 --- /dev/null +++ b/addons/vest/icons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/vest/icons/search.svg.import b/addons/vest/icons/search.svg.import new file mode 100644 index 0000000..bafc175 --- /dev/null +++ b/addons/vest/icons/search.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl6im4a1uj6nq" +path="res://.godot/imported/search.svg-f595f7d0e550dfff682417fb006673bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/search.svg" +dest_files=["res://.godot/imported/search.svg-f595f7d0e550dfff682417fb006673bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/vest/icons/skip.svg b/addons/vest/icons/skip.svg new file mode 100644 index 0000000..f71b947 --- /dev/null +++ b/addons/vest/icons/skip.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/skip.svg.import b/addons/vest/icons/skip.svg.import new file mode 100644 index 0000000..bc156e8 --- /dev/null +++ b/addons/vest/icons/skip.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx4htkmtgdk5l" +path="res://.godot/imported/skip.svg-05ed8ec36ac4803550bae54821df0a30.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/skip.svg" +dest_files=["res://.godot/imported/skip.svg-05ed8ec36ac4803550bae54821df0a30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/spinner.svg b/addons/vest/icons/spinner.svg new file mode 100644 index 0000000..f6f3d39 --- /dev/null +++ b/addons/vest/icons/spinner.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/spinner.svg.import b/addons/vest/icons/spinner.svg.import new file mode 100644 index 0000000..3433bc0 --- /dev/null +++ b/addons/vest/icons/spinner.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csfyamlc15vp0" +path="res://.godot/imported/spinner.svg-2fba1cd10beb909105907ca61911cf40.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/spinner.svg" +dest_files=["res://.godot/imported/spinner.svg-2fba1cd10beb909105907ca61911cf40.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/todo.svg b/addons/vest/icons/todo.svg new file mode 100644 index 0000000..23b0766 --- /dev/null +++ b/addons/vest/icons/todo.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/todo.svg.import b/addons/vest/icons/todo.svg.import new file mode 100644 index 0000000..44ebc11 --- /dev/null +++ b/addons/vest/icons/todo.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://meh1sny670to" +path="res://.godot/imported/todo.svg-2340992753f3f9d2c971234e5e126d95.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/todo.svg" +dest_files=["res://.godot/imported/todo.svg-2340992753f3f9d2c971234e5e126d95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/vest-icons.gd b/addons/vest/icons/vest-icons.gd new file mode 100644 index 0000000..a2ec9c8 --- /dev/null +++ b/addons/vest/icons/vest-icons.gd @@ -0,0 +1,27 @@ +extends Object + +# Results +const result_void: Texture2D = preload("res://addons/vest/icons/void.svg") +const result_skip: Texture2D = preload("res://addons/vest/icons/skip.svg") +const result_todo: Texture2D = preload("res://addons/vest/icons/todo.svg") +const result_fail: Texture2D = preload("res://addons/vest/icons/fail.svg") +const result_pass: Texture2D = preload("res://addons/vest/icons/pass.svg") + +# Benchmark +const benchmark: Texture2D = preload("res://addons/vest/icons/benchmark.svg") +const benchmark_pass: Texture2D = preload("res://addons/vest/icons/benchmark-pass.svg") +const benchmark_fail: Texture2D = preload("res://addons/vest/icons/benchmark-fail.svg") + +# Actions and buttons +const run: Texture2D = preload("res://addons/vest/icons/run.svg") +const debug: Texture2D = preload("res://addons/vest/icons/debug.svg") +const run_on_save: Texture2D = preload("res://addons/vest/icons/run-save.svg") +const clear: Texture2D = preload("res://addons/vest/icons/clear.svg") +const jump_to: Texture2D = preload("res://addons/vest/icons/jump-to.svg") +const refresh: Texture2D = preload("res://addons/vest/icons/refresh.svg") +const lightbulb: Texture2D = preload("res://addons/vest/icons/lightbulb.svg") + +const visible: Texture2D = preload("res://addons/vest/icons/visibility.svg") +const hidden: Texture2D = preload("res://addons/vest/icons/hidden.svg") +const expand: Texture2D = preload("res://addons/vest/icons/expand.svg") +const collapse: Texture2D = preload("res://addons/vest/icons/collapse.svg") diff --git a/addons/vest/icons/vest-icons.gd.uid b/addons/vest/icons/vest-icons.gd.uid new file mode 100644 index 0000000..de5101c --- /dev/null +++ b/addons/vest/icons/vest-icons.gd.uid @@ -0,0 +1 @@ +uid://g2skerjwbr71 diff --git a/addons/vest/icons/visibility.svg b/addons/vest/icons/visibility.svg new file mode 100644 index 0000000..768d6ee --- /dev/null +++ b/addons/vest/icons/visibility.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/vest/icons/visibility.svg.import b/addons/vest/icons/visibility.svg.import new file mode 100644 index 0000000..7e77482 --- /dev/null +++ b/addons/vest/icons/visibility.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpyua1ic4p47h" +path="res://.godot/imported/visibility.svg-2226fcfdff15944d56e68e7df764b325.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/visibility.svg" +dest_files=["res://.godot/imported/visibility.svg-2226fcfdff15944d56e68e7df764b325.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/icons/void.svg b/addons/vest/icons/void.svg new file mode 100644 index 0000000..4772cc9 --- /dev/null +++ b/addons/vest/icons/void.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/vest/icons/void.svg.import b/addons/vest/icons/void.svg.import new file mode 100644 index 0000000..544bd77 --- /dev/null +++ b/addons/vest/icons/void.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci8hqm6meom3h" +path="res://.godot/imported/void.svg-dedfa2bc2d4e3cbf7106ebb34fd16279.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://addons/vest/icons/void.svg" +dest_files=["res://.godot/imported/void.svg-dedfa2bc2d4e3cbf7106ebb34fd16279.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/addons/vest/measures/average-measure.gd b/addons/vest/measures/average-measure.gd new file mode 100644 index 0000000..4ab0c45 --- /dev/null +++ b/addons/vest/measures/average-measure.gd @@ -0,0 +1,20 @@ +extends VestMeasure + +## Measures the average of a metric. + +var _sum: Variant +var _count: int = 0 + +func _init(p_metric: StringName): + super(p_metric) + +func get_measure_name() -> String: + return "average" + +func get_value() -> Variant: + return _sum / _count + +func ingest(value: Variant) -> void: + _sum = _sum + value if _count else value + _count += 1 + diff --git a/addons/vest/measures/average-measure.gd.uid b/addons/vest/measures/average-measure.gd.uid new file mode 100644 index 0000000..0ac1901 --- /dev/null +++ b/addons/vest/measures/average-measure.gd.uid @@ -0,0 +1 @@ +uid://df6rp7biyybqa diff --git a/addons/vest/measures/max-measure.gd b/addons/vest/measures/max-measure.gd new file mode 100644 index 0000000..a0690b2 --- /dev/null +++ b/addons/vest/measures/max-measure.gd @@ -0,0 +1,20 @@ +extends VestMeasure + +## Measures the maximum of a metric. + +var _max: Variant +var _has: bool = false + +func _init(p_metric: StringName): + super(p_metric) + +func get_measure_name() -> String: + return "max" + +func get_value() -> Variant: + return _max + +func ingest(value: Variant) -> void: + _max = max(_max, value) if _has else value + _has = true + diff --git a/addons/vest/measures/max-measure.gd.uid b/addons/vest/measures/max-measure.gd.uid new file mode 100644 index 0000000..53dfa5d --- /dev/null +++ b/addons/vest/measures/max-measure.gd.uid @@ -0,0 +1 @@ +uid://dkd237tw7ixyw diff --git a/addons/vest/measures/measure.gd b/addons/vest/measures/measure.gd new file mode 100644 index 0000000..4e8efc1 --- /dev/null +++ b/addons/vest/measures/measure.gd @@ -0,0 +1,38 @@ +class_name VestMeasure + +## Base class for implementing measures. +## +## During benchmarks, the benchmarked code may emit custom metrics. Measures +## listen to these metrics, and aggregate the many emitted values into a single +## value, that can be included in the test report. +## [br][br] +## For example, a measure may simply count the number of emissions, calculate +## the average of the emitted values, or keep track of the minimum and maximum +## value emitted. + +var _metric: StringName = &"" + +func _init(p_metric: StringName): + _metric = p_metric + +## Get the name of the metric this measure tracks. +func get_metric_name() -> StringName: + return _metric + +## Get the name of the measure. +## [br][br] +## [i]override[/i] +func get_measure_name() -> String: + return "" + +## Get the value of the measure. +## [br][br] +## [i]override[/i] +func get_value() -> Variant: + return null + +## Ingest an emitted metric value. +## [br][br] +## [i]override[/i] +func ingest(_value: Variant) -> void: + pass diff --git a/addons/vest/measures/measure.gd.uid b/addons/vest/measures/measure.gd.uid new file mode 100644 index 0000000..0b16c0f --- /dev/null +++ b/addons/vest/measures/measure.gd.uid @@ -0,0 +1 @@ +uid://ds6pfq1623j80 diff --git a/addons/vest/measures/min-measure.gd b/addons/vest/measures/min-measure.gd new file mode 100644 index 0000000..83705b2 --- /dev/null +++ b/addons/vest/measures/min-measure.gd @@ -0,0 +1,20 @@ +extends VestMeasure + +## Measures the minimum of a metric. + +var _min: Variant +var _has: bool = false + +func _init(p_metric: StringName): + super(p_metric) + +func get_measure_name() -> String: + return "min" + +func get_value() -> Variant: + return _min + +func ingest(value: Variant) -> void: + _min = min(_min, value) if _has else value + _has = true + diff --git a/addons/vest/measures/min-measure.gd.uid b/addons/vest/measures/min-measure.gd.uid new file mode 100644 index 0000000..533f280 --- /dev/null +++ b/addons/vest/measures/min-measure.gd.uid @@ -0,0 +1 @@ +uid://c8kvrmiyl1hph diff --git a/addons/vest/measures/sum-measure.gd b/addons/vest/measures/sum-measure.gd new file mode 100644 index 0000000..9e39dd0 --- /dev/null +++ b/addons/vest/measures/sum-measure.gd @@ -0,0 +1,20 @@ +extends VestMeasure + +## Measures the sum of a metric. + +var _sum: Variant +var _has: bool = false + +func _init(p_metric: StringName): + super(p_metric) + +func get_measure_name() -> String: + return "sum" + +func get_value() -> Variant: + return _sum + +func ingest(value: Variant) -> void: + _sum = _sum + value if _has else value + _has = true + diff --git a/addons/vest/measures/sum-measure.gd.uid b/addons/vest/measures/sum-measure.gd.uid new file mode 100644 index 0000000..9c8e68a --- /dev/null +++ b/addons/vest/measures/sum-measure.gd.uid @@ -0,0 +1 @@ +uid://dbmj156egy6v diff --git a/addons/vest/measures/value-measure.gd b/addons/vest/measures/value-measure.gd new file mode 100644 index 0000000..c58c7b3 --- /dev/null +++ b/addons/vest/measures/value-measure.gd @@ -0,0 +1,18 @@ +extends VestMeasure + +## Measures the value of a metric, retaining only the last emitted value. + +var _value: Variant = null + +func _init(p_metric: StringName): + super(p_metric) + +func get_measure_name() -> String: + return "value" + +func get_value() -> Variant: + return _value + +func ingest(value: Variant) -> void: + _value = value + diff --git a/addons/vest/measures/value-measure.gd.uid b/addons/vest/measures/value-measure.gd.uid new file mode 100644 index 0000000..5f2549c --- /dev/null +++ b/addons/vest/measures/value-measure.gd.uid @@ -0,0 +1 @@ +uid://k53m1xtcmsvh diff --git a/addons/vest/mocks/vest-mock-defs.gd b/addons/vest/mocks/vest-mock-defs.gd new file mode 100644 index 0000000..c6d921a --- /dev/null +++ b/addons/vest/mocks/vest-mock-defs.gd @@ -0,0 +1,68 @@ +extends Object +class_name VestMockDefs + +## Grouping class for mock definition primitives. +## +## See [VestMockDefs.Answer][br] +## See [VestMockDefs.Call][br] + +## Mock answer definition +## +## Each answer manages a mock method. When this method is called, instead of +## running the underlying code, the answer provides a response. +class Answer: + ## The method this instance provides the answers for + var expected_method: Callable + + ## The expected arguments for providing the answers. + ## [br][br] + ## May be empty, in which case any and all parameters are accepted. + var expected_args: Array = [] + + var _answer_value: Variant + var _answer_method: Callable + + func _get_specificity() -> int: + return expected_args.size() + + func _is_answering(method: Callable, args: Array) -> bool: + if method != expected_method: + return false + if method.get_object() != expected_method.get_object(): + return false + if expected_args.is_empty(): + return true + if args.size() != expected_args.size(): + return false + if args == expected_args: + return true + + # Do a lenient check, so users don't trip on unexpected diffs, like + # [2, 4] != [2., 4.] + var lenient_actual := args.map(func(it): return _map_lenient(it)) + var lenient_expected := expected_args.map(func(it): return _map_lenient(it)) + if lenient_actual == lenient_expected: + return true + return false + + func _get_answer(args: Array) -> Variant: + if _answer_method: + return _answer_method.call(args) + else: + return _answer_value + + func _map_lenient(value: Variant) -> String: + if typeof(value) == TYPE_INT or typeof(value) == TYPE_FLOAT: + return "%.8f" % [value] + return str(value) + + func _to_string() -> String: + return "Answer { %s.%s(%s) }" % [expected_method.get_object(), expected_method.get_method(), expected_args] + +## A recorded method call +class Call: + ## The method that was called + var method: Callable + + ## The arguments used for calling the method + var args: Array = [] diff --git a/addons/vest/mocks/vest-mock-defs.gd.uid b/addons/vest/mocks/vest-mock-defs.gd.uid new file mode 100644 index 0000000..7a10cac --- /dev/null +++ b/addons/vest/mocks/vest-mock-defs.gd.uid @@ -0,0 +1 @@ +uid://ct7m62cddavyk diff --git a/addons/vest/mocks/vest-mock-dummy.gd b/addons/vest/mocks/vest-mock-dummy.gd new file mode 100644 index 0000000..83bc4a4 --- /dev/null +++ b/addons/vest/mocks/vest-mock-dummy.gd @@ -0,0 +1,3 @@ +extends Object + +# Dummy class to serve as a base for mocks diff --git a/addons/vest/mocks/vest-mock-dummy.gd.uid b/addons/vest/mocks/vest-mock-dummy.gd.uid new file mode 100644 index 0000000..0115318 --- /dev/null +++ b/addons/vest/mocks/vest-mock-dummy.gd.uid @@ -0,0 +1 @@ +uid://crbyd7o5c3qvh diff --git a/addons/vest/mocks/vest-mock-generator.gd b/addons/vest/mocks/vest-mock-generator.gd new file mode 100644 index 0000000..2f0a133 --- /dev/null +++ b/addons/vest/mocks/vest-mock-generator.gd @@ -0,0 +1,48 @@ +extends RefCounted +class_name VestMockGenerator + +## Generates mocks for existing scripts +## +## @tutorial(Mocks): https://foxssake.github.io/vest/latest/user-guide/mocks/ + +# TODO: Support getters and setters? + +## Generate a mocked version of a script +func generate_mock_script(script: Script) -> Script: + var dummy_script := preload("res://addons/vest/mocks/vest-mock-dummy.gd") as Script + var mock_script := dummy_script.duplicate() as Script + mock_script.source_code = generate_mock_source(script) + mock_script.reload() + + return mock_script + +## Generate the source code for mocking a script +func generate_mock_source(script: Script) -> String: + var mock_source := PackedStringArray() + + mock_source.append("extends \"%s\"\n\n" % [script.resource_path]) + mock_source.append("var __vest_mock_handler: VestMockHandler\n\n") + + for method in script.get_script_method_list(): + var method_name := method["name"] as String + var method_args = method["args"] + + if method_name.begins_with("@"): + # Getter or setter, don't generate as method + continue + + var arg_defs := [] + + for arg in method_args: + var arg_name = arg["name"] + arg_defs.append(arg_name) + + var arg_def_string := ", ".join(arg_defs) + + mock_source.append( + ("func %s(%s):\n" + + "\treturn __vest_mock_handler._handle(self.%s, [%s])\n\n") % + [method_name, arg_def_string, method_name, arg_def_string] + ) + + return "".join(mock_source) diff --git a/addons/vest/mocks/vest-mock-generator.gd.uid b/addons/vest/mocks/vest-mock-generator.gd.uid new file mode 100644 index 0000000..dc78005 --- /dev/null +++ b/addons/vest/mocks/vest-mock-generator.gd.uid @@ -0,0 +1 @@ +uid://cawk4xgh75woy diff --git a/addons/vest/mocks/vest-mock-handler.gd b/addons/vest/mocks/vest-mock-handler.gd new file mode 100644 index 0000000..73abd8f --- /dev/null +++ b/addons/vest/mocks/vest-mock-handler.gd @@ -0,0 +1,42 @@ +extends RefCounted +class_name VestMockHandler + +## Manages mock instances + +var _answers: Array[VestMockDefs.Answer] = [] +var _calls: Array[VestMockDefs.Call] = [] +var _unhandled_calls: Array[VestMockDefs.Call] = [] + +## Take over a mock instance, recording its calls and providing its answers +func take_over(what: Object): + what.__vest_mock_handler = self + +## Register an answer +func add_answer(answer: VestMockDefs.Answer): + _answers.append(answer) + +## Get all recorded mock calls +func get_calls() -> Array[VestMockDefs.Call]: + return _calls + +## Get all recorded mock calls to which there were no registered answers +func get_unhandled_calls() -> Array[VestMockDefs.Call]: + return _unhandled_calls + +func _handle(method: Callable, args: Array): + var call_data := VestMockDefs.Call.new() + call_data.method = method + call_data.args = args + + var possible_answers = _answers\ + .filter(func(it): return it._is_answering(method, args)) + possible_answers.sort_custom(func(a, b): return a._get_specificity() > b._get_specificity()) + + if possible_answers.is_empty(): + _unhandled_calls.append(call_data) + return + + var answer := possible_answers.front() as VestMockDefs.Answer + _calls.append(call_data) + + return answer._get_answer(args) diff --git a/addons/vest/mocks/vest-mock-handler.gd.uid b/addons/vest/mocks/vest-mock-handler.gd.uid new file mode 100644 index 0000000..77c10fa --- /dev/null +++ b/addons/vest/mocks/vest-mock-handler.gd.uid @@ -0,0 +1 @@ +uid://0yq06hbkdt46 diff --git a/addons/vest/plugin.cfg b/addons/vest/plugin.cfg new file mode 100644 index 0000000..37e7251 --- /dev/null +++ b/addons/vest/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="vest" +description="A unit testing library for Godot" +author="Tamás Gálffy and contributors" +version="1.10.4" +script="plugin.gd" diff --git a/addons/vest/plugin.gd b/addons/vest/plugin.gd new file mode 100644 index 0000000..862b31f --- /dev/null +++ b/addons/vest/plugin.gd @@ -0,0 +1,93 @@ +@tool +extends EditorPlugin + +var bottom_control: Control + +static var SETTINGS := [ + { + "name": "vest/runner_timeout", + "value": 8.0, + "type": TYPE_FLOAT + }, + { + "name": "vest/sources_root", + "value": "res://", + "type": TYPE_STRING, + "hint": PROPERTY_HINT_DIR + }, + { + "name": "vest/tests_root", + "value": "res://tests/", + "type": TYPE_STRING, + "hint": PROPERTY_HINT_DIR + }, + { + "name": "vest/test_name_patterns", + "value": PackedStringArray(["*.test.gd", "test_*.gd"]), + "type": TYPE_PACKED_STRING_ARRAY, + "hint": PROPERTY_HINT_DIR + }, + { + "name": "vest/new_test_location", + "value": Vest.NEW_TEST_MIRROR_DIR_STRUCTURE, + "type": TYPE_INT, + "hint": PROPERTY_HINT_ENUM, + "hint_string": ",".join([ + "Mirror directory structure", + "Next to source", + "In tests root" + ]) + } +] as Array[Dictionary] + +func _enter_tree(): + Vest._register_scene_tree(get_tree()) + Vest._register_editor_interface_provider(get_editor_interface) + + # Manually trigger local settings init? + Vest.__.LocalSettings._static_init() + + bottom_control = (preload("res://addons/vest/ui/vest-ui.tscn") as PackedScene).instantiate() + resource_saved.connect(bottom_control.handle_resource_saved) + + add_control_to_bottom_panel(bottom_control, "Vest") + + add_settings(SETTINGS) + + # Create commands + for command in Vest.__.create_commands(): + add_child(command) + +func _exit_tree(): + resource_saved.disconnect(bottom_control.handle_resource_saved) + remove_control_from_bottom_panel(bottom_control) + bottom_control.queue_free() + + remove_settings(SETTINGS) + +func add_settings(settings: Array): + for setting in settings: + add_setting(setting) + +func add_setting(setting: Dictionary): + if ProjectSettings.has_setting(setting.name): + return + + ProjectSettings.set_setting(setting.name, setting.value) + ProjectSettings.set_initial_value(setting.name, setting.value) + ProjectSettings.add_property_info({ + "name": setting.get("name"), + "type": setting.get("type"), + "hint": setting.get("hint", PROPERTY_HINT_NONE), + "hint_string": setting.get("hint_string", "") + }) + +func remove_settings(settings: Array): + for setting in settings: + remove_setting(setting) + +func remove_setting(setting: Dictionary): + if not ProjectSettings.has_setting(setting.name): + return + + ProjectSettings.clear(setting.name) diff --git a/addons/vest/plugin.gd.uid b/addons/vest/plugin.gd.uid new file mode 100644 index 0000000..fbeadb4 --- /dev/null +++ b/addons/vest/plugin.gd.uid @@ -0,0 +1 @@ +uid://wgil432yj8k1 diff --git a/addons/vest/runner/vest-base-runner.gd b/addons/vest/runner/vest-base-runner.gd new file mode 100644 index 0000000..9bea773 --- /dev/null +++ b/addons/vest/runner/vest-base-runner.gd @@ -0,0 +1,19 @@ +extends RefCounted + +signal on_partial_result(result: VestResult.Suite) + +func run_script(_script: Script, _only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + # OVERRIDE + return VestResult.Suite.new() + +func run_glob(_p_glob: String, _only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + # OVERRIDE + return VestResult.Suite.new() + +func run_script_at(path: String, only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + var test_script := load(path) + + if not test_script or not test_script is Script: + return null + + return await run_script(test_script, only_mode) diff --git a/addons/vest/runner/vest-base-runner.gd.uid b/addons/vest/runner/vest-base-runner.gd.uid new file mode 100644 index 0000000..cff4ba3 --- /dev/null +++ b/addons/vest/runner/vest-base-runner.gd.uid @@ -0,0 +1 @@ +uid://f1gd7s4rxrh1 diff --git a/addons/vest/runner/vest-daemon-runner.gd b/addons/vest/runner/vest-daemon-runner.gd new file mode 100644 index 0000000..fbd0996 --- /dev/null +++ b/addons/vest/runner/vest-daemon-runner.gd @@ -0,0 +1,114 @@ +extends "res://addons/vest/runner/vest-base-runner.gd" +class_name VestDaemonRunner + +## Runs tests in a separate, background process + +var _server: TCPServer +var _port: int +var _peer: StreamPeerTCP + +var _is_debug_run := false + +## Enable debug mode for the next run +func with_debug() -> VestDaemonRunner: + _is_debug_run = true + return self + +## Run a test script +func run_script(script: Script, only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + var params := VestCLI.Params.new() + params.run_file = script.resource_path + params.only_mode = only_mode + + return await _run_with_params(params) + +## Run test scripts matching glob +## [br][br] +## See [method String.match] +func run_glob(glob: String, only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + var params := VestCLI.Params.new() + params.run_glob = glob + params.only_mode = only_mode + + return await _run_with_params(params) + +func _run_with_params(params: VestCLI.Params) -> VestResult.Suite: + var timeout := Vest.timeout(Vest.get_runner_timeout()) + + # Start host + if _start(-1) != OK: + push_error("Couldn't start vest host!") + return null + + # Start process + params.host = "127.0.0.1" + params.port = _port + if not _is_debug_run: + VestCLI.run(params) + else: + _is_debug_run = false + VestCLI.debug(params) + + # Wait for agent to connect + if await timeout.until(func(): return _server.is_connection_available()) != OK: + push_error("Agent didn't connect in time!") + return null + + _peer = _server.take_connection() + var results = null + + while true: + await Vest.sleep() + + _peer.poll() + if _peer.get_status() != StreamPeerTCP.STATUS_CONNECTED: + break + + if _peer.get_available_bytes() <= 0: + # No data, wait some more + continue + + var message = _peer.get_var(true) + if message is Dictionary: + results = message + on_partial_result.emit(VestResult.Suite._from_wire(results)) + + _stop() + + if results == null: + push_error("Test run failed!") + return null + elif results is Dictionary: + var suite_result = VestResult.Suite._from_wire(results) + return suite_result + else: + push_error("Unrecognized test result data! %s" % [results]) + return null + +func _start(port: int = -1): + # Start host + _server = TCPServer.new() + + # Find random port for host + if port < 0: + for i in range(32): + port = randi_range(49152, 65535) + if _server.listen(port, "127.0.0.1") == OK: + break + else: + _server.listen(port, "127.0.0.1") + _port = port + + if not _server.is_listening(): + push_error("Failed to find available port!") + return ERR_CANT_CREATE + + return OK + +func _stop(): + _peer.disconnect_from_host() + _server.stop() + + _peer = null + _server = null + _port = -1 diff --git a/addons/vest/runner/vest-daemon-runner.gd.uid b/addons/vest/runner/vest-daemon-runner.gd.uid new file mode 100644 index 0000000..dadc345 --- /dev/null +++ b/addons/vest/runner/vest-daemon-runner.gd.uid @@ -0,0 +1 @@ +uid://btopw8r6n6fp1 diff --git a/addons/vest/runner/vest-local-runner.gd b/addons/vest/runner/vest-local-runner.gd new file mode 100644 index 0000000..c827a44 --- /dev/null +++ b/addons/vest/runner/vest-local-runner.gd @@ -0,0 +1,122 @@ +extends "res://addons/vest/runner/vest-base-runner.gd" +class_name VestLocalRunner + +var _result_buffer: VestResult.Suite + +## Run a test script +func run_script(script: Script, only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + var _result_buffer = VestResult.Suite.new() + if not script: + return null + + var test_instance = script.new() + if not test_instance is VestTest: + test_instance.free() + return null + var test := test_instance as VestTest + + var suite = await test._get_suite() + + var run_only := false + match only_mode: + Vest.__.ONLY_DISABLED: run_only = false + Vest.__.ONLY_AUTO: run_only = suite.has_only() + Vest.__.ONLY_ENABLED: run_only = true + + await test._begin(test_instance) + _result_buffer = await _run_suite(_result_buffer, suite, test, run_only) + await test._finish(test) + + test.free() + + return _result_buffer + +## Run test scripts matching glob +## [br][br] +## See [method String.match] +func run_glob(glob: String, only_mode: int = Vest.__.ONLY_DEFAULT) -> VestResult.Suite: + _result_buffer = VestResult.Suite.new() + _result_buffer.suite = VestDefs.Suite.new() + _result_buffer.suite.name = "Glob suite \"%s\"" % [glob] + + # Gather suites + var suites := [] as Array[VestDefs.Suite] + var test_instances := [] as Array[VestTest] + var has_only = false + + for test_file in Vest.glob(glob): + var test := _load_test(test_file) + if not test: continue + + var subsuite := await test._get_suite() + test_instances.append(test) + suites.append(subsuite) + has_only = has_only or subsuite.has_only() + + # Figure out only mode + var run_only := false + match only_mode: + Vest.__.ONLY_DISABLED: run_only = false + Vest.__.ONLY_AUTO: run_only = has_only + Vest.__.ONLY_ENABLED: run_only = true + + # Run suites + for i in range(suites.size()): + var suite_result := VestResult.Suite.new() + _result_buffer.subsuites.append(suite_result) + + var response := await _run_suite(suite_result, suites[i], test_instances[i], run_only) + if not response: + _result_buffer.subsuites.erase(suite_result) + + # Cleanup + for test in test_instances: + test.free() + + return _result_buffer + +func _load_test(path: String) -> VestTest: + var script := load(path) + if not script or not script is Script: + return null + + var test_instance = (script as Script).new() + if not test_instance is VestTest: + return null + + return test_instance as VestTest + +func _run_case(case: VestDefs.Case, test_instance: VestTest, run_only: bool, is_parent_only: bool = false) -> VestResult.Case: + if run_only and not case.is_only and not is_parent_only: + return null + + await test_instance._begin(case) + await case.callback.call() + await test_instance._finish(case) + + on_partial_result.emit(_result_buffer) + + return test_instance._get_result() + +func _run_suite(result: VestResult.Suite, suite: VestDefs.Suite, test_instance: VestTest, run_only: bool, is_parent_only: bool = false) -> VestResult.Suite: + if run_only and not suite.has_only() and not is_parent_only: + return null + + result.suite = suite + + await test_instance._begin(suite) + + for subsuite in suite.suites: + var suite_result := VestResult.Suite.new() + suite_result = await _run_suite(suite_result, subsuite, test_instance, run_only, is_parent_only or suite.is_only) + if suite_result != null: + result.subsuites.append(suite_result) + + for case in suite.cases: + var case_result := await _run_case(case, test_instance, run_only, is_parent_only or suite.is_only) + if case_result != null: + result.cases.append(case_result) + + await test_instance._finish(suite) + + return result diff --git a/addons/vest/runner/vest-local-runner.gd.uid b/addons/vest/runner/vest-local-runner.gd.uid new file mode 100644 index 0000000..7988527 --- /dev/null +++ b/addons/vest/runner/vest-local-runner.gd.uid @@ -0,0 +1 @@ +uid://bteqiowekiut diff --git a/addons/vest/tap-reporter.gd b/addons/vest/tap-reporter.gd new file mode 100644 index 0000000..059ef69 --- /dev/null +++ b/addons/vest/tap-reporter.gd @@ -0,0 +1,90 @@ +extends Object +class_name TAPReporter + +## Generates reports in the Test Anything Protocol format +## +## See [url]https://testanything.org/[/url] + +const INDENT_SIZE := 2 + +## Generate a report from test suite results +static func report(suite: VestResult.Suite) -> String: + var lines := PackedStringArray() + + lines.append("TAP version 14") + + _report_suite(suite, lines, 0) + + return "\n".join(lines) + +static func _report_suite(suite: VestResult.Suite, lines: PackedStringArray, indent: int = 0): + var indent_prefix := " ".repeat(indent) + var test_count := suite.plan_size() + var test_id := 1 + + lines.append(indent_prefix + "1..%d" % [test_count]) + + for subsuite in suite.subsuites: + lines.append(indent_prefix + "# Subtest: %s" % [subsuite.suite.name]) + _report_suite(subsuite, lines, indent + INDENT_SIZE) + _report_subsuite_results(test_id, subsuite, lines, indent) + test_id += 1 + + for case in suite.cases: + _report_case(test_id, case, lines, indent) + test_id += 1 + +static func _report_case(test_id: int, case: VestResult.Case, lines: PackedStringArray, indent: int = 0): + var indent_prefix := " ".repeat(indent) + var test_point := "ok" + if case.status == VestResult.TEST_FAIL: + test_point = "not ok" + + var description := case.case.description + + var directive = "" + match case.status: + VestResult.TEST_TODO: directive = "\t# TODO" + VestResult.TEST_SKIP: directive = "\t# SKIP" + + lines.append(indent_prefix + "%s %d - %s%s" % [test_point, test_id, description, directive]) + + var yaml_data = {} + + if case.status == VestResult.TEST_FAIL: + yaml_data["severity"] = "fail" + yaml_data["assert_source"] = case.assert_file + yaml_data["assert_line"] = case.assert_line + if not case.messages.is_empty(): + yaml_data["message"] = case.messages[0] + if case.messages.size() > 1: + yaml_data["messages"] = case.messages + if case.data: yaml_data["data"] = case.data + + if not yaml_data.is_empty(): + _report_yaml(yaml_data, lines, indent + INDENT_SIZE) + +static func _report_subsuite_results(test_id: int, subsuite: VestResult.Suite, lines: PackedStringArray, indent: int = 0): + var indent_prefix := " ".repeat(indent) + + var test_point = "ok" + if subsuite.get_count_by_status(VestResult.TEST_FAIL) > 0: + test_point = "not ok" + + lines.append(indent_prefix + "%s %d - %s" % [test_point, test_id, subsuite.suite.name]) + + if test_point != "ok": + var yaml_data = { + "pass": subsuite.get_count_by_status(VestResult.TEST_PASS), + "fail": subsuite.get_count_by_status(VestResult.TEST_FAIL), + "skip": subsuite.get_count_by_status(VestResult.TEST_SKIP), + "todo": subsuite.get_count_by_status(VestResult.TEST_TODO) + } + _report_yaml(yaml_data, lines, indent + INDENT_SIZE) + +static func _report_yaml(data: Dictionary, lines: PackedStringArray, indent: int = 0): + var indent_prefix := " ".repeat(indent) + + lines.append(indent_prefix + "---") + lines.append(YAMLWriter.stringify(data, indent)) + lines.append(indent_prefix + "...") diff --git a/addons/vest/tap-reporter.gd.uid b/addons/vest/tap-reporter.gd.uid new file mode 100644 index 0000000..e135141 --- /dev/null +++ b/addons/vest/tap-reporter.gd.uid @@ -0,0 +1 @@ +uid://c2sqh5w4q6l7r diff --git a/addons/vest/test/mixins/assert-that-mixin.gd b/addons/vest/test/mixins/assert-that-mixin.gd new file mode 100644 index 0000000..3339e20 --- /dev/null +++ b/addons/vest/test/mixins/assert-that-mixin.gd @@ -0,0 +1,80 @@ +extends VestTestMixin + +func assert_that(value: Variant) -> _Assertion: + return _Assertion.new(self, value) + +class _Assertion: + var _test: VestTest + var _value: Variant + + func _init(p_test: Variant, p_value: Variant): + assert(p_test is VestTest, "assert_that mixin used from outside of VestTest!") + + _test = p_test + _value = p_value + + ## Expect a [param condition] about the asserted value to be true. + func passes(condition: Callable, p_message: String = "") -> _Assertion: + _test.expect(condition.call(_value), p_message) + return self + + ## Expect a [param condition] about the asserted value to be false. + func fails(condition: Callable, p_message: String = "") -> _Assertion: + _test.expect_not(condition.call(_value), p_message) + return self + + ## Expect the asserted value to be equal to [param expected]. + ## [br][br] + ## If [param actual] has an [code]equals()[/code] method, it will be used. + func is_equal_to(expected: Variant, p_message: String = "Actual value differs from expected!") -> _Assertion: + _test.expect_equal(_value, expected, p_message) + return self + + ## Expect the asserted value to not be equal to [param expected]. + ## [br][br] + ## If [param actual] has an [code]equals()[/code] method, it will be used. + func is_not_equal_to(expected: Variant, p_message: String = "Actual value equals expected!") -> _Assertion: + _test.expect_not_equal(_value, expected, p_message) + return self + + ## Expect the asserted value to be empty. + ## [br][br] + ## If it's a custom type implementing [code]is_empty()[/code], that method will + ## be used. + func is_empty(p_message: String = "Object was not empty!") -> _Assertion: + _test.expect_empty(_value, p_message) + return self + + ## Expect the asserted value to not be empty. + ## [br][br] + ## If it's a custom type implementing [code]is_empty()[/code], that method will + ## be used. + func is_not_empty(p_message: String = "Object was empty!") -> _Assertion: + _test.expect_not_empty(_value, p_message) + return self + + ## Expect the asserted value to contain [param item]. + ## [br][br] + ## If it's a custom type implementing [code]has()[/code], that method will be + ## used. + func contains(item: Variant, p_message: String = "Item is missing from collection!") -> _Assertion: + _test.expect_contains(_value, item, p_message) + return self + + ## Expect the asserted value to not contain [param item]. + ## [br][br] + ## If it's a custom type implementing [code]has()[/code], that method will be + ## used. + func does_not_contain(item: Variant, p_message: String = "Item is in collection!") -> _Assertion: + _test.expect_does_not_contain(_value, item, p_message) + return self + + ## Expect the asserted value to be null. + func is_null(p_message: String = "Item is not null!") -> _Assertion: + _test.expect_null(_value, p_message) + return self + + ## Expect the asserted value to not be null. + func is_not_null(p_message: String = "Item is null!") -> _Assertion: + _test.expect_not_null(_value, p_message) + return self diff --git a/addons/vest/test/mixins/assert-that-mixin.gd.uid b/addons/vest/test/mixins/assert-that-mixin.gd.uid new file mode 100644 index 0000000..e1de79b --- /dev/null +++ b/addons/vest/test/mixins/assert-that-mixin.gd.uid @@ -0,0 +1 @@ +uid://djf35joyl6rwr diff --git a/addons/vest/test/mixins/capture-signal-mixin.gd b/addons/vest/test/mixins/capture-signal-mixin.gd new file mode 100644 index 0000000..144a473 --- /dev/null +++ b/addons/vest/test/mixins/capture-signal-mixin.gd @@ -0,0 +1,79 @@ +extends VestTestMixin + +## Mixin for capturing and asserting signals +## +## @tutorial(Capturing signals): https://foxssake.github.io/vest/latest/user-guide/capturing-signals/ + +# Maps signals to an array of recorded emissions +# Each array item is an individual array containing the emission params +var _signal_captures := {} + +# Array of [signal, recorder, is_persistent] tuples +var _signal_recorders: Array[Array] = [] + +## Capture all emissions of a signal. +## [br][br] +## Mark the capture as [param persistent] if you want the capture to persist +## between test cases. +func capture_signal(what: Signal, arg_count: int = 0, persistent: bool = false): + # Reset captures + _signal_captures[what] = [] + + # Add listener + var recorder = _get_signal_recorder(what, arg_count) + if not recorder: + push_warning("Can't capture signal with %d arguments!" % arg_count) + return + + what.connect(recorder) + _signal_recorders.append([what, recorder, persistent]) + +## Get the captured signal emissions for a given signal. +## [br][br] +## Note that the captured emissions are reset between test cases. [br] +## Returns an array of signal emission parameters for each captured emission. +func get_signal_emissions(what: Signal) -> Array: + return _signal_captures.get(what, []) + +func _init(): + super() + on_case_begin.connect(func(__): + # Remove non-persistent recorders + _cleanup_recorders() + + # Clear captures + _signal_captures.clear() + ) + +func _cleanup_recorders(): + var filtered_recorders: Array[Array] = [] + + for recorder_tuple in _signal_recorders: + var recorded_signal := recorder_tuple[0] as Signal + var recorder := recorder_tuple[1] as Callable + var persistent := recorder_tuple[2] as bool + + if persistent: + filtered_recorders.append(recorder_tuple) + else: + recorded_signal.disconnect(recorder) + + _signal_recorders = filtered_recorders + +func _get_signal_recorder(what: Signal, arg_count: int): + match(arg_count): + 0: return func(): _record_emission(what, []) + 1: return func(a1): _record_emission(what, [a1]) + 2: return func(a1, a2): _record_emission(what, [a1, a2]) + 3: return func(a1, a2, a3): _record_emission(what, [a1, a2, a3]) + 4: return func(a1, a2, a3, a4): _record_emission(what, [a1, a2, a3, a4]) + 5: return func(a1, a2, a3, a4, a5): _record_emission(what, [a1, a2, a3, a4, a5]) + 6: return func(a1, a2, a3, a4, a5, a6): _record_emission(what, [a1, a2, a3, a4, a5, a6]) + 7: return func(a1, a2, a3, a4, a5, a6, a7): _record_emission(what, [a1, a2, a3, a4, a5, a6, a7]) + 8: return func(a1, a2, a3, a4, a5, a6, a7, a8): _record_emission(what, [a1, a2, a3, a4, a5, a6, a7, a8]) + _: return null + +func _record_emission(what: Signal, args: Array): + if not _signal_captures.has(what): + _signal_captures[what] = [] + _signal_captures[what].append(args) diff --git a/addons/vest/test/mixins/capture-signal-mixin.gd.uid b/addons/vest/test/mixins/capture-signal-mixin.gd.uid new file mode 100644 index 0000000..54b5ed8 --- /dev/null +++ b/addons/vest/test/mixins/capture-signal-mixin.gd.uid @@ -0,0 +1 @@ +uid://b7ik7rpue0oiy diff --git a/addons/vest/test/mixins/expect-mixin.gd b/addons/vest/test/mixins/expect-mixin.gd new file mode 100644 index 0000000..b769081 --- /dev/null +++ b/addons/vest/test/mixins/expect-mixin.gd @@ -0,0 +1,124 @@ +extends VestTestMixin + +## Mixin for asserting test requirement +## +## @tutorial(Assertions): https://foxssake.github.io/vest/latest/user-guide/assertions/ + +## Expect a [param condition] to be true. +func expect(condition: bool, p_message: String = "") -> void: + if condition: + ok() + else: + fail(p_message) + +## Expect a [param condition] to be false. +func expect_not(condition: bool, p_message: String = "") -> void: + if not condition: + ok() + else: + fail(p_message) + +## Expect two values to be equal. +## [br][br] +## If [param actual] has an [code]equals()[/code] method, it will be used. +func expect_equal(actual: Variant, expected: Variant, p_message: String = "Actual value differs from expected!") -> void: + if Vest.__.Matchers.is_equal(actual, expected): + ok() + else: + fail(p_message, { "expect": expected, "got": actual }) + +## Expect two values not to be equal. +## [br][br] +## If [param actual] has an [code]equals()[/code] method, it will be used. +func expect_not_equal(actual: Variant, expected: Variant, p_message: String = "Actual value equals expected!") -> void: + if Vest.__.Matchers.is_equal(actual, expected): + fail(p_message, { "expect": expected, "got": actual }) + else: + ok() + +## Expect a [param condition] to be true. +## [br][br] +## Synonim of [method expect], aimed at better readability for asserting bools. +func expect_true(condition: bool, p_message: String = "") -> void: + expect(condition, p_message) + +## Expect a [param condition] to be false. +## [br][br] +## Synonim of [method expect_not], aimed at better readability for asserting +## bools. +func expect_false(condition: bool, p_message: String = "") -> void: + expect_not(condition, p_message) + +## Expect an [param object] to be empty. +## [br][br] +## If it's a custom type implementing [code]is_empty()[/code], that method will +## be used. +func expect_empty(object: Variant, p_message: String = "Object was not empty!") -> void: + match Vest.__.Matchers.is_empty(object): + true: + ok() + false: + fail(p_message) + ERR_METHOD_NOT_FOUND: + fail("Object has no is_empty() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked for emptiness!", { "object": object }) + +## Expect an [param object] to not be empty. +## [br][br] +## If it's a custom type implementing [code]is_empty()[/code], that method will +## be used. +func expect_not_empty(object: Variant, p_message: String = "Object was empty!") -> void: + match Vest.__.Matchers.is_empty(object): + true: + fail(p_message) + false: + ok() + ERR_METHOD_NOT_FOUND: + fail("Object has no is_empty() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked for emptiness!", { "object": object }) + +## Expect an [param object] to contain [param item]. +## [br][br] +## If it's a custom type implementing [code]has()[/code], that method will be +## used. +func expect_contains(object: Variant, item: Variant, p_message: String = "Item is missing from collection!") -> void: + match Vest.__.Matchers.contains(object, item): + true: + ok() + false: + fail(p_message, { "got": object, "missing": item }) + ERR_METHOD_NOT_FOUND: + fail("Object has no has() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked if it contains item!", { "object": object }) + +## Expect an [param object] to not contain [param item]. +## [br][br] +## If it's a custom type implementing [code]has()[/code], that method will be +## used. +func expect_does_not_contain(object: Variant, item: Variant, p_message: String = "Item is in collection!") -> void: + match Vest.__.Matchers.contains(object, item): + true: + fail(p_message, { "got": object, "excess": item }) + false: + ok() + ERR_METHOD_NOT_FOUND: + fail("Object has no has() method!", { "object": object }) + ERR_CANT_RESOLVE: + fail("Unknown object, can't be checked if it contains item!", { "object": object }) + +## Expect a [param value] to be null. +func expect_null(value: Variant, p_message: String = "Item is not null!") -> void: + if value == null: + ok() + else: + fail(p_message, { "got": value }) + +## Expect a [param value] to not be null. +func expect_not_null(value: Variant, p_message: String = "Item is null!") -> void: + if value != null: + ok() + else: + fail(p_message) diff --git a/addons/vest/test/mixins/expect-mixin.gd.uid b/addons/vest/test/mixins/expect-mixin.gd.uid new file mode 100644 index 0000000..b8540f8 --- /dev/null +++ b/addons/vest/test/mixins/expect-mixin.gd.uid @@ -0,0 +1 @@ +uid://d0iygb4e10hrg diff --git a/addons/vest/test/mixins/gather-suite-mixin.gd b/addons/vest/test/mixins/gather-suite-mixin.gd new file mode 100644 index 0000000..528e8e7 --- /dev/null +++ b/addons/vest/test/mixins/gather-suite-mixin.gd @@ -0,0 +1,95 @@ +extends VestTestMixin + +# Automatically gathers tests defined in the test class + +func _get_ignored_methods() -> Array[String]: + return [ + "get_suite_name", + "before_suite", "before_case", "before_benchmark", "before_each", + "after_suite", "after_case", "after_benchmark", "after_each" + ] + +func _get_suite_name() -> String: + # Check if callback is implemented + if has_method("get_suite_name"): + return call("get_suite_name") + + # Check if class_name is set + var script := get_script() as Script + var pattern := RegEx.create_from_string("class_name\\s+([^\n\\s]+)") + var hit := pattern.search(script.source_code) + + if hit: + return hit.get_string(1) + + # Fall back to script path + return script.resource_path + +func _get_suite() -> VestDefs.Suite: + var script := get_script() as Script + var ignored_methods := _get_ignored_methods() + var inherited_methods := (script.get_base_script() + .get_script_method_list() + .map(func(it): return it["name"]) + ) + + var methods := (script.get_script_method_list() + .filter(func(it): return not it["name"].begins_with("_")) + .filter(func(it): return not inherited_methods.has(it["name"])) + .filter(func(it): return not ignored_methods.has(it["name"])) + ) + + var define_methods: Array[Dictionary] = [] + var case_methods: Array[Dictionary] = [] + var parametric_methods: Array[Dictionary] = [] + + for method in methods: + if method["name"].begins_with("suite"): + define_methods.append(method) + elif method["name"].begins_with("test") and not method["default_args"].is_empty() and method["default_args"][0] is String: + parametric_methods.append(method) + elif method["name"].begins_with("test"): + case_methods.append(method) + + return await define(_get_suite_name(), func(): + for method in define_methods: + await call(method["name"]) + + for method in case_methods: + var method_name := method["name"] as String + var test_name := method_name.trim_prefix("test").trim_suffix("__only").capitalize() + var callback := func(): await call(method["name"]) + var is_only := _is_only(method_name) + + test(test_name, callback, is_only, method_name) + + for method in parametric_methods: + var method_name := method["name"] as String + var test_name := method_name.trim_prefix("test").trim_suffix("__only").capitalize() + var is_only := _is_only(method_name) + + var param_provider_name := method["default_args"][0] as String + if not has_method(param_provider_name): + push_warning( + "Can't run parametrized test \"%s\", provider method \"%s\" is missing!" % \ + [method["name"], param_provider_name] + ) + + var params = await call(param_provider_name) + if not params is Array or not params.all(func(it): return it is Array): + push_warning( + "Can't run parametrized test \"%s\", provider \"%s\" didn't return array or arrays: %s" % \ + [method["name"], param_provider_name, params] + ) + + for i in range(params.size()): + test( + "%s#%d %s" % [test_name, i+1, params[i]], + func(): await callv(method["name"], params[i]), + is_only, + method_name + ) + ) + +func _is_only(name: String) -> bool: + return name.ends_with("__only") diff --git a/addons/vest/test/mixins/gather-suite-mixin.gd.uid b/addons/vest/test/mixins/gather-suite-mixin.gd.uid new file mode 100644 index 0000000..53e0d87 --- /dev/null +++ b/addons/vest/test/mixins/gather-suite-mixin.gd.uid @@ -0,0 +1 @@ +uid://b7g760psoly27 diff --git a/addons/vest/test/mixins/logging-mixin.gd b/addons/vest/test/mixins/logging-mixin.gd new file mode 100644 index 0000000..f2c9722 --- /dev/null +++ b/addons/vest/test/mixins/logging-mixin.gd @@ -0,0 +1,13 @@ +extends VestTestMixin + +# Manages logs added using [method Vest.message] + +func _init(): + super() + + on_case_finish.connect(func(_case): + var messages := Vest._get_messages() + if not messages.is_empty(): + _result.data["messages"] = messages + Vest._clear_messages() + ) diff --git a/addons/vest/test/mixins/logging-mixin.gd.uid b/addons/vest/test/mixins/logging-mixin.gd.uid new file mode 100644 index 0000000..96a9fbc --- /dev/null +++ b/addons/vest/test/mixins/logging-mixin.gd.uid @@ -0,0 +1 @@ +uid://hkri0vr7706v diff --git a/addons/vest/test/mixins/mock-mixin.gd b/addons/vest/test/mixins/mock-mixin.gd new file mode 100644 index 0000000..caeb836 --- /dev/null +++ b/addons/vest/test/mixins/mock-mixin.gd @@ -0,0 +1,81 @@ +extends VestTestMixin + +## Provides mocking for tests +## +## @tutorial(Mocks): https://foxssake.github.io/vest/latest/user-guide/mocks/ + +# TODO: Fail test case if there's unhandled calls + +var _mock_generator := VestMockGenerator.new() +var _mock_handler := VestMockHandler.new() + +# Maps Scripts to their mocked counterparts +var _mock_script_cache := {} + +## Create a mocked instance of a given script +func mock(script: Script): + var mocked_script := _get_mock_script(script) + var mocked_object = mocked_script.new() + + _mock_handler.take_over(mocked_object) + return mocked_object + +## Get calls of a mock object's method +func get_calls_of(method: Callable) -> Array[Array]: + var result: Array[Array] = [] + + for call_data in _mock_handler.get_calls(): + if call_data.method != method: + continue + result.append(call_data.args) + + return result + +## Start specifying an answer for a mocked method call +func when(method: Callable) -> AnswerBuilder: + return AnswerBuilder._of(method, self) + +func _get_mock_script(script: Script) -> Script: + if _mock_script_cache.has(script): + return _mock_script_cache.get(script) + else: + var mocked_script := _mock_generator.generate_mock_script(script) + _mock_script_cache[script] = mocked_script + return mocked_script + +## Builder for specifying [VestMockDefs.Answer] objects +class AnswerBuilder: + var _test + var _args: Array = [] + var _method: Callable + + ## Set expected arguments + func with_args(p_args: Array) -> AnswerBuilder: + _args = p_args + return self + + ## Answer by calling a custom method + ## [br][br] + ## The method will received the passed arguments as an array. + func then_answer(p_answer_method: Callable) -> void: + var answer := VestMockDefs.Answer.new() + answer.expected_method = _method + answer.expected_args = _args + answer._answer_method = p_answer_method + + _test._mock_handler.add_answer(answer) + + ## Answer with a fixed value + func then_return(p_answer_value: Variant) -> void: + var answer := VestMockDefs.Answer.new() + answer.expected_method = _method + answer.expected_args = _args + answer._answer_value = p_answer_value + + _test._mock_handler.add_answer(answer) + + static func _of(p_method: Callable, p_test): + var builder := AnswerBuilder.new() + builder._method = p_method + builder._test = p_test + return builder diff --git a/addons/vest/test/mixins/mock-mixin.gd.uid b/addons/vest/test/mixins/mock-mixin.gd.uid new file mode 100644 index 0000000..ee85bd6 --- /dev/null +++ b/addons/vest/test/mixins/mock-mixin.gd.uid @@ -0,0 +1 @@ +uid://bj1basxqfa3 diff --git a/addons/vest/test/vest-test-base.gd b/addons/vest/test/vest-test-base.gd new file mode 100644 index 0000000..0445a7b --- /dev/null +++ b/addons/vest/test/vest-test-base.gd @@ -0,0 +1,193 @@ +extends Object + +var _define_stack: Array[VestDefs.Suite] = [] +var _result: VestResult.Case + +var _expected_count := 0 +var _actual_count := 0 + +signal on_begin() +signal on_suite_begin(suite: VestDefs.Suite) +signal on_case_begin(case: VestDefs.Case) +signal on_case_finish(case: VestDefs.Case) +signal on_suite_finish(case: VestDefs.Case) +signal on_finish() + +func define(name: String, callback: Callable, is_only: bool = false) -> VestDefs.Suite: + var suite = VestDefs.Suite.new() + suite.name = name + suite.is_only = is_only + _define_stack.push_back(suite) + + var userland_loc := _find_userland_stack_location() + suite.definition_file = userland_loc[0] + suite.definition_line = userland_loc[1] + + await callback.call() + + _define_stack.pop_back() + if not _define_stack.is_empty(): + _define_stack.back().suites.push_back(suite) + + return suite + +func define_only(name: String, callback: Callable) -> VestDefs.Suite: + return await define(name, callback, true) + +func test(description: String, callback: Callable, is_only: bool = false, method_name: String = "") -> void: + var case_def := VestDefs.Case.new() + case_def.description = description + case_def.is_only = is_only + case_def.callback = callback + case_def.method_name = method_name + + var userland_loc := _find_userland_stack_location() + case_def.definition_file = userland_loc[0] + case_def.definition_line = userland_loc[1] + + _define_stack.back().cases.push_back(case_def) + +func test_only(description: String, callback: Callable, method_name: String = "") -> void: + await test(description, callback, true, method_name) + +func benchmark(name: String, callback: Callable) -> VestDefs.Benchmark: + var result := VestDefs.Benchmark.new() + result.name = name + result.callback = callback + result._test = self + return result + +func todo(message: String = "", data: Dictionary = {}) -> void: + _with_result(VestResult.TEST_TODO, message, data) + +func skip(message: String = "", data: Dictionary = {}) -> void: + _with_result(VestResult.TEST_SKIP, message, data) + +func fail(message: String = "", data: Dictionary = {}) -> void: + _with_result(VestResult.TEST_FAIL, message, data) + +func ok(message: String = "", data: Dictionary = {}) -> void: + _with_result(VestResult.TEST_PASS, message, data) + +func before_all(): + pass + +func before_suite(_suite_def: VestDefs.Suite): + pass + +func before_case(_case_def: VestDefs.Case): + pass + +func after_case(_case_def: VestDefs.Case): + pass + +func after_suite(_suite_def: VestDefs.Suite): + pass + +func after_all(): + pass + +func _init(): + pass + +func _with_result(status: int, message: String, data: Dictionary): + if message: + _result.messages.append(message) + + # Smartly gather "got" and "expected" data + # - If there's just one assert that sends these, have the values as-is + # - If multiple asserts send them, gather them into arrays for the user to check + if data.has("got"): + if _actual_count == 0: + _result.data["got"] = data["got"] + elif _actual_count == 1: + _result.data["got"] = [_result.data["got"], data["got"]] + elif _actual_count > 1: + _result.data["got"].append(data["got"]) + data.erase("got") + _actual_count += 1 + + if data.has("expect"): + if _expected_count == 0: + _result.data["expect"] = data["expect"] + elif _expected_count == 1: + _result.data["expect"] = [_result.data["expect"], data["expect"]] + elif _expected_count > 1: + _result.data["expect"].append(data["expect"]) + data.erase("expect") + _expected_count += 1 + + _result.data.merge(data, true) + + if _result.status != VestResult.TEST_VOID and status == VestResult.TEST_PASS: + # Test already failed, don't override with PASS + return + + _result.status = status + + var userland_loc := _find_userland_stack_location() + _result.assert_file = userland_loc[0] + _result.assert_line = userland_loc[1] + +func _begin(what: Object): + if what == self: + await _emit_async(on_begin) + await before_all() + elif what is VestDefs.Suite: + await _emit_async(on_suite_begin, [what]) + await before_suite(what) + elif what is VestDefs.Case: + _prepare_for_case(what) + + await _emit_async(on_case_begin, [what]) + await before_case(what) + else: + assert(false, "Beginning unknown object: %s" % [what]) + +func _finish(what: Object): + if what == self: + await _emit_async(on_finish) + await after_all() + elif what is VestDefs.Suite: + await _emit_async(on_suite_finish, [what]) + await after_suite(what) + elif what is VestDefs.Case: + _actual_count = 0 + _expected_count = 0 + + await _emit_async(on_case_finish, [what]) + await after_case(what) + else: + assert(false, "Finishing unknown object: %s" % [what]) + +func _prepare_for_case(case_def: VestDefs.Case): + _result = VestResult.Case.new() + _result.case = case_def + +func _get_result() -> VestResult.Case: + return _result + +func _get_suite() -> VestDefs.Suite: + return await define("OVERRIDE ME", func(): pass) + +func _find_userland_stack_location() -> Array: + var stack := get_stack() + if stack.is_empty(): + return [(get_script() as Script).resource_path, -1] + + var trimmed_stack := stack.filter(func(it): return not it["source"].begins_with("res://addons/vest")) + if trimmed_stack.is_empty(): + return ["", -1] + else: + return [trimmed_stack[0]["source"], trimmed_stack[0]["line"]] + +func _emit_async(p_signal: Signal, p_args: Array = []) -> void: + for connection in p_signal.get_connections(): + var callable := connection["callable"] as Callable + var flags := connection["flags"] as ConnectFlags + + if flags & CONNECT_DEFERRED: + # TODO: Document call order and that deferred handlers are not awaited + (func(): callable.callv(p_args)).call_deferred() + else: + await callable.callv(p_args) diff --git a/addons/vest/test/vest-test-base.gd.uid b/addons/vest/test/vest-test-base.gd.uid new file mode 100644 index 0000000..501604a --- /dev/null +++ b/addons/vest/test/vest-test-base.gd.uid @@ -0,0 +1 @@ +uid://cv6d02q04h0mk diff --git a/addons/vest/test/vest-test-mixin.gd b/addons/vest/test/vest-test-mixin.gd new file mode 100644 index 0000000..525be4a --- /dev/null +++ b/addons/vest/test/vest-test-mixin.gd @@ -0,0 +1,4 @@ +extends "res://addons/vest/test/vest-test-base.gd" +class_name VestTestMixin + +## Base class for test mixins diff --git a/addons/vest/test/vest-test-mixin.gd.uid b/addons/vest/test/vest-test-mixin.gd.uid new file mode 100644 index 0000000..284a6d1 --- /dev/null +++ b/addons/vest/test/vest-test-mixin.gd.uid @@ -0,0 +1 @@ +uid://c8sve5b1njic0 diff --git a/addons/vest/test/vest-test.gd b/addons/vest/test/vest-test.gd new file mode 100644 index 0000000..9abc9d0 --- /dev/null +++ b/addons/vest/test/vest-test.gd @@ -0,0 +1,9 @@ +# This file is generated by Vest! +# Do not modify! +# source: res://addons/vest/test/vest-test.gd +extends "res://addons/vest/_generated-mixins/6-3c4a4dd7.gd" + +class_name VestTest + +func __get_vest_mixins() -> Array: + return [] diff --git a/addons/vest/test/vest-test.gd.uid b/addons/vest/test/vest-test.gd.uid new file mode 100644 index 0000000..fb1aa9d --- /dev/null +++ b/addons/vest/test/vest-test.gd.uid @@ -0,0 +1 @@ +uid://rnjdivon87u7 diff --git a/addons/vest/timeout.gd b/addons/vest/timeout.gd new file mode 100644 index 0000000..b66e382 --- /dev/null +++ b/addons/vest/timeout.gd @@ -0,0 +1,31 @@ +extends RefCounted + +var _scene_tree: SceneTree +var _remaining: float +var _interval: float + +func _init(p_duration: float, p_interval: float, p_scene_tree: SceneTree): + _remaining = p_duration + _interval = p_interval + _scene_tree = p_scene_tree + +func until(condition: Callable) -> Error: + if not _scene_tree: + push_warning("Missing reference to SceneTree, will return immediately!") + return ERR_UNAVAILABLE + + if _remaining <= 0.0: + # Timeout already spent + return ERR_TIMEOUT + + var start := Vest.time() + var deadline := start + _remaining + while Vest.time() < deadline: + if condition.call(): + _remaining -= Vest.time() - start + return OK + + if is_zero_approx(_interval): await _scene_tree.process_frame + else: await _scene_tree.create_timer(_interval).timeout + + return ERR_TIMEOUT diff --git a/addons/vest/timeout.gd.uid b/addons/vest/timeout.gd.uid new file mode 100644 index 0000000..5e0cb97 --- /dev/null +++ b/addons/vest/timeout.gd.uid @@ -0,0 +1 @@ +uid://dwullheqmeqan diff --git a/addons/vest/ui/comparison-popup.tscn b/addons/vest/ui/comparison-popup.tscn new file mode 100644 index 0000000..08efb27 --- /dev/null +++ b/addons/vest/ui/comparison-popup.tscn @@ -0,0 +1,61 @@ +[gd_scene format=3 uid="uid://4cj8dmy01ewy"] + +[node name="comparison-popup" type="Window"] +initial_position = 1 +size = Vector2i(384, 256) + +[node name="Panel" type="Panel" parent="."] +custom_minimum_size = Vector2(384, 256) +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="GridContainer" type="GridContainer" parent="Panel/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 +columns = 2 + +[node name="Got Label" type="Label" parent="Panel/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "Got +" + +[node name="Expected Label" type="Label" parent="Panel/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "Expected" + +[node name="Got" type="TextEdit" parent="Panel/VBoxContainer/GridContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Expected" type="TextEdit" parent="Panel/VBoxContainer/GridContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Tools" type="HBoxContainer" parent="Panel/VBoxContainer"] +layout_mode = 2 +alignment = 1 + +[node name="Reset Button" type="Button" parent="Panel/VBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "Reset" + +[node name="OK Button" type="Button" parent="Panel/VBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "OK" diff --git a/addons/vest/ui/message-popup.tscn b/addons/vest/ui/message-popup.tscn new file mode 100644 index 0000000..48108a6 --- /dev/null +++ b/addons/vest/ui/message-popup.tscn @@ -0,0 +1,40 @@ +[gd_scene format=3 uid="uid://dhly5ta07dd6r"] + +[node name="message-popup" type="Window"] +initial_position = 1 +size = Vector2i(384, 256) + +[node name="Panel" type="Panel" parent="."] +custom_minimum_size = Vector2(384, 256) +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Contents" type="TextEdit" parent="Panel/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Tools" type="HBoxContainer" parent="Panel/VBoxContainer"] +layout_mode = 2 +alignment = 1 + +[node name="Reset Button" type="Button" parent="Panel/VBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "Reset" + +[node name="OK Button" type="Button" parent="Panel/VBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "OK" diff --git a/addons/vest/ui/results-panel.gd b/addons/vest/ui/results-panel.gd new file mode 100644 index 0000000..dfc0736 --- /dev/null +++ b/addons/vest/ui/results-panel.gd @@ -0,0 +1,292 @@ +@tool +extends Panel + +var visibility_popup: VestUI.VisibilityPopup + +@onready var _tree := %Tree as Tree +@onready var _spinner := %Spinner as Control +@onready var _spinner_icon := %"Spinner Icon" as TextureRect +@onready var _spinner_label := %"Spinner Label" as Label +@onready var _animation_player := $PanelContainer/Spinner/AnimationPlayer as AnimationPlayer + +var _results: VestResult.Suite = null +var _render_results: VestResult.Suite = null +var _search_string: String = "" + +signal on_collapse_changed() + +func get_results() -> VestResult.Suite: + return _results + +func set_results(results: VestResult.Suite) -> void: + if _results != results: + _results = results + _render() + +func get_search_string() -> String: + return _search_string + +func set_search_string(search_string: String) -> void: + if _search_string != search_string: + _search_string = search_string + _render() + +func clear() -> void: + set_results(null) + +func set_spinner(text: String, icon: Texture2D = null, animated: bool = true) -> void: + clear() + _spinner_icon.texture = icon + _spinner_label.text = text + _spinner.show() + if animated: + _animation_player.play("spin") + else: + _animation_player.stop() + +func collapse() -> void: + var root := _tree.get_root() + if not root: return + + for item in root.get_children(): + item.set_collapsed_recursive(true) + +func expand() -> void: + var root := _tree.get_root() + if not root: return + + for item in root.get_children(): + item.set_collapsed_recursive(false) + +func toggle_collapsed() -> void: + if is_any_collapsed(): + expand() + else: + collapse() + +func is_any_collapsed() -> bool: + var at := _tree.get_root() + var queue := [] as Array[TreeItem] + + while at: + queue.append_array(at.get_children()) + + if at.collapsed: + return true + at = queue.pop_back() + + return false + +func _ready(): + _tree.item_collapsed.connect(func(_item): + on_collapse_changed.emit() + ) + +func _clear(): + _tree.clear() + for connection in _tree.item_activated.get_connections(): + connection["signal"].disconnect(connection["callable"]) + _spinner.hide() + +func _render(): + _clear() + if _results != null: + _render_results = VestResult.Suite._from_wire(_results._to_wire()) # HACK: Duplicate + _filter_visibility(_render_results) + _filter_search(_render_results, _search_string) + _render_result(_render_results, _tree) + +func _filter_visibility(results: VestResult.Suite) -> void: + var cases_to_remove := [] + var suites_to_remove := [] + + for case in results.cases: + if not _check_visibility(case): + cases_to_remove.append(case) + + for subsuite in results.subsuites: + if not _check_visibility(subsuite): + suites_to_remove.append(subsuite) + else: + _filter_visibility(subsuite) + + for case in cases_to_remove: + results.cases.erase(case) + for subsuite in suites_to_remove: + results.subsuites.erase(subsuite) + +func _filter_search(results: VestResult.Suite, needle: String) -> void: + if not needle: + # Search string empty, do nothing + return + + var scores := {} + var parents := {} + var at := results + var queue: Array[VestResult.Suite] = [] + var leaves: Array[VestResult.Suite] = [] + + # Calculate scores + while at: + for subsuite in at.subsuites: + queue.append(subsuite) + parents[subsuite] = at + + if at.subsuites.is_empty(): + leaves.append(at) + + scores[at] = VestUI.fuzzy_score(needle, at.suite.name) + for case in at.cases: + scores[case] = maxf( + VestUI.fuzzy_score(needle, case.case.description), + VestUI.fuzzy_score(needle, case.case.method_name + "()") + ) + + at = queue.pop_back() as VestResult.Suite + + # Propagate best scores from leaves + for leaf in leaves: + at = leaf + + # Calculate best score for leaf + var best_score := scores[at] as float + for case in at.cases: + best_score = maxf(best_score, scores[case]) + + # Propagate upwards in tree + while at: + scores[at] = maxf(scores[at], best_score) + best_score = maxf(best_score, scores[at]) + at = parents.get(at, null) + + # Remove results that don't match the search string + at = results + queue.clear() + while at: + at.cases.sort_custom(func(a, b): return scores[a] > scores[b]) + at.subsuites.sort_custom(func(a, b): return scores[a] > scores[b]) + + queue.append_array(at.subsuites) + at = queue.pop_back() + +func _check_visibility(what: Variant) -> bool: + if what is VestResult.Case: + var case := what as VestResult.Case + return visibility_popup.get_visibility_for(case.status) + elif what is VestResult.Suite: + var suite := what as VestResult.Suite + for status in suite.get_unique_statuses(): + if visibility_popup.get_visibility_for(status): + return true + return false + else: + push_warning("Checking visibility for unknown item: %s" % [what]) + return true + +func _render_result(what: Object, tree: Tree, parent: TreeItem = null): + if what is VestResult.Suite: + var item := tree.create_item(parent) + item.set_text(0, what.suite.name) + item.set_text(1, what.get_aggregate_status_string().capitalize()) + + item.set_icon(0, VestUI.get_status_icon(what)) + item.set_icon_max_width(0, VestUI.get_icon_size()) + + tree.item_activated.connect(func(): + if tree.get_selected() == item: + _navigate(what.suite.definition_file, what.suite.definition_line) + ) + + for subsuite in what.subsuites: + _render_result(subsuite, tree, item) + for case in what.cases: + _render_result(case, tree, item) + elif what is VestResult.Case: + var item := tree.create_item(parent) + item.set_text(0, what.case.description) + item.set_text(1, what.get_status_string().capitalize()) + item.collapsed = what.status == VestResult.TEST_PASS + + item.set_icon(0, VestUI.get_status_icon(what)) + item.set_icon_max_width(0, VestUI.get_icon_size()) + + _render_data(what, tree, item) + + tree.item_activated.connect(func(): + if tree.get_selected() == item: + _navigate(what.case.definition_file, what.case.definition_line) + ) + else: + push_error("Rendering unknown object: %s" % [what]) + +func _render_data(case: VestResult.Case, tree: Tree, parent: TreeItem): + var data := case.data.duplicate() + + for message in case.messages: + var item := tree.create_item(parent) + item.set_text(0, message) + + tree.item_activated.connect(func(): + if tree.get_selected() == item: + # TODO: popup_dialog() + add_child(VestMessagePopup.of(message).window) + ) + + if data == null or data.is_empty(): + return + + if data.has("messages"): + var header_item := tree.create_item(parent) + header_item.set_text(0, "Messages") + + for message in data["messages"]: + tree.create_item(header_item).set_text(0, message) + + data.erase("messages") + + if data.has("benchmarks"): + var header_item := tree.create_item(parent) + header_item.set_text(0, "Benchmarks") + + for benchmark in data["benchmarks"]: + var benchmark_item = tree.create_item(header_item) + benchmark_item.set_text(0, benchmark["name"]) + if benchmark.has("duration"): benchmark_item.set_text(1, benchmark["duration"]) + + for measurement in benchmark.keys(): + if measurement == "name": continue + + var measurement_item := tree.create_item(benchmark_item) + measurement_item.set_text(0, str(measurement).capitalize()) + measurement_item.set_text(1, str(benchmark[measurement])) + + data.erase("benchmarks") + + if data.has("expect") and data.has("got"): + var header_item := tree.create_item(parent) + header_item.set_text(0, "Got:") + header_item.set_text(1, "Expected:") + + var got_string := JSON.stringify(data["got"], " ") + var expect_string := JSON.stringify(data["expect"], " ") + + var comparison_item := tree.create_item(header_item) + comparison_item.set_text(0, got_string) + comparison_item.set_text(1, expect_string) + + tree.item_activated.connect(func(): + # TODO: popup_dialog() + if tree.get_selected() in [header_item, comparison_item]: + add_child(VestComparisonPopup.of(expect_string, got_string).window) + ) + + data.erase("got") + data.erase("expect") + + for key in data: + var item := tree.create_item(parent) + item.set_text(0, var_to_str(key)) + item.set_text(1, var_to_str(data[key])) + +func _navigate(file: String, line: int): + Vest._get_editor_interface().edit_script(load(file), line) diff --git a/addons/vest/ui/results-panel.gd.uid b/addons/vest/ui/results-panel.gd.uid new file mode 100644 index 0000000..08ab771 --- /dev/null +++ b/addons/vest/ui/results-panel.gd.uid @@ -0,0 +1 @@ +uid://brlr0bv7le1uq diff --git a/addons/vest/ui/results-panel.tscn b/addons/vest/ui/results-panel.tscn new file mode 100644 index 0000000..464f302 --- /dev/null +++ b/addons/vest/ui/results-panel.tscn @@ -0,0 +1,76 @@ +[gd_scene load_steps=5 format=3 uid="uid://lqudrgj64q3x"] + +[ext_resource type="Script" path="res://addons/vest/ui/results-panel.gd" id="1_ujqyc"] +[ext_resource type="Texture2D" uid="uid://dwhlyf5eyiect" path="res://addons/vest/icons/debug.svg" id="2_1y2jb"] + +[sub_resource type="Animation" id="Animation_wkibd"] +resource_name = "spin" +loop_mode = 1 +step = 0.0416667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Spinner Icon:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.5, 1), +"transitions": PackedFloat32Array(-2, -2, -2), +"update": 0, +"values": [Color(1, 1, 1, 1), Color(1, 1, 1, 0.501961), Color(1, 1, 1, 1)] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_ne2nn"] +_data = { +"spin": SubResource("Animation_wkibd") +} + +[node name="Results Panel" type="Panel"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_vertical = 3 +script = ExtResource("1_ujqyc") + +[node name="PanelContainer" type="PanelContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Tree" type="Tree" parent="PanelContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +columns = 2 +hide_root = true + +[node name="Spinner" type="HBoxContainer" parent="PanelContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 + +[node name="Spinner Icon" type="TextureRect" parent="PanelContainer/Spinner"] +unique_name_in_owner = true +layout_mode = 2 +texture = ExtResource("2_1y2jb") +expand_mode = 3 +stretch_mode = 5 + +[node name="Spinner Label" type="Label" parent="PanelContainer/Spinner"] +unique_name_in_owner = true +layout_mode = 2 +text = "Waiting for results..." + +[node name="AnimationPlayer" type="AnimationPlayer" parent="PanelContainer/Spinner"] +autoplay = "spin" +libraries = { +"": SubResource("AnimationLibrary_ne2nn") +} diff --git a/addons/vest/ui/vest-comparison-popup.gd b/addons/vest/ui/vest-comparison-popup.gd new file mode 100644 index 0000000..e78b50a --- /dev/null +++ b/addons/vest/ui/vest-comparison-popup.gd @@ -0,0 +1,57 @@ +extends RefCounted +class_name VestComparisonPopup + +var window: Window +var expected: TextEdit +var got: TextEdit +var ok_button: Button +var reset_button: Button + +var _expected: String = "" +var _got: String = "" + +# For some reason, when instantiating in Godot 4.0.4, the script doesn't attach, even though it's +# added in the editor. +# +# This means that _ready doesn't run, and set_contents isn't recognized. +# +# The workaround is this weird pattern where the class is instantiated with a reference to the +# scriptless scene ( Window ), and takes over. + +# NOTE: This class may be rewritten, as we went from supporting 4.0.4 to 4.1.4 + +static func of(p_expected: String, p_got: String): + var popup_scene := (load("res://addons/vest/ui/comparison-popup.tscn") as PackedScene).instantiate(PackedScene.GEN_EDIT_STATE_MAIN) + var popup := VestComparisonPopup.new(popup_scene) + + popup.set_contents(p_expected, p_got) + + return popup + +func set_contents(p_expected: String, p_got: String): + _expected = p_expected + _got = p_got + + reset() + +func reset(): + expected.text = _expected + got.text = _got + +func close(): + window.queue_free() + free() + +func _init(p_window: Window): + p_window.title = "vest - Comparison" + p_window.position = (DisplayServer.screen_get_size(-1) - p_window.size) / 2 + + window = p_window + ok_button = window.get_node("%OK Button") + reset_button = window.get_node("%Reset Button") + expected = window.get_node("%Expected") + got = window.get_node("%Got") + + window.close_requested.connect(func(): close()) + ok_button.pressed.connect(func(): window.queue_free()) + reset_button.pressed.connect(func(): reset()) diff --git a/addons/vest/ui/vest-comparison-popup.gd.uid b/addons/vest/ui/vest-comparison-popup.gd.uid new file mode 100644 index 0000000..ec461a9 --- /dev/null +++ b/addons/vest/ui/vest-comparison-popup.gd.uid @@ -0,0 +1 @@ +uid://dscuovb44m4t6 diff --git a/addons/vest/ui/vest-message-popup.gd b/addons/vest/ui/vest-message-popup.gd new file mode 100644 index 0000000..c1872c8 --- /dev/null +++ b/addons/vest/ui/vest-message-popup.gd @@ -0,0 +1,51 @@ +extends RefCounted +class_name VestMessagePopup + +var window: Window +var contents: TextEdit +var ok_button: Button +var reset_button: Button + +var _text: String = "" + +# For some reason, when instantiating in Godot 4.0.4, the script doesn't attach, even though it's +# added in the editor. +# +# This means that _ready doesn't run, and set_contents isn't recognized. +# +# The workaround is this weird pattern where the class is instantiated with a reference to the +# scriptless scene ( Window ), and takes over. + +# NOTE: This class may be rewritten, as we went from supporting 4.0.4 to 4.1.4 + +static func of(text: String): + var popup_scene := (load("res://addons/vest/ui/message-popup.tscn") as PackedScene).instantiate(PackedScene.GEN_EDIT_STATE_MAIN) + var popup := VestMessagePopup.new(popup_scene) + + popup.set_contents(text) + + return popup + +func set_contents(text: String): + _text = text + contents.text = _text + +func reset(): + contents.text = _text + +func close(): + window.queue_free() + free() + +func _init(p_window: Window): + p_window.title = "vest - Message" + p_window.position = (DisplayServer.screen_get_size(-1) - p_window.size) / 2 + + window = p_window + ok_button = window.get_node("%OK Button") + reset_button = window.get_node("%Reset Button") + contents = window.get_node("%Contents") + + window.close_requested.connect(func(): close()) + ok_button.pressed.connect(func(): window.queue_free()) + reset_button.pressed.connect(func(): reset()) diff --git a/addons/vest/ui/vest-message-popup.gd.uid b/addons/vest/ui/vest-message-popup.gd.uid new file mode 100644 index 0000000..f276327 --- /dev/null +++ b/addons/vest/ui/vest-message-popup.gd.uid @@ -0,0 +1 @@ +uid://dw33d1tq6738 diff --git a/addons/vest/ui/vest-ui.gd b/addons/vest/ui/vest-ui.gd new file mode 100644 index 0000000..ff6e57f --- /dev/null +++ b/addons/vest/ui/vest-ui.gd @@ -0,0 +1,225 @@ +@tool +extends Control +class_name VestUI + +const VisibilityPopup := preload("res://addons/vest/ui/visibility-popup.gd") +const ResultsPanel := preload("res://addons/vest/ui/results-panel.gd") + +@onready var run_all_button := %"Run All Button" as Button +@onready var debug_button := %"Debug Button" as Button +@onready var run_on_save_button := %"Run on Save Button" as Button +@onready var filter_results_button := %"Filter Results Button" as Button +@onready var visibility_popup := %"Visibility Popup" as VisibilityPopup +@onready var clear_button := %"Clear Button" as Button +@onready var expand_toggle_button := %"Expand Toggle Button" as Button +@onready var search_button := %"Search Button" as Button +@onready var search_input := %"Search Input" as LineEdit + +@onready var refresh_mixins_button := %"Refresh Mixins Button" as Button +@onready var results_panel := %"Results Panel" as ResultsPanel +@onready var summary_label := %"Tests Summary Label" as Label +@onready var summary_icon := %"Test Summary Icon" as TextureRect +@onready var glob_line_edit := %"Glob LineEdit" as LineEdit + +@onready var run_summary := %"Run Summary" as Control +@onready var progress_indicator := %"Progress Indicator" as Control +@onready var progress_animator := $"VBoxContainer/Bottom Line/Progress Indicator/Control/AnimationPlayer" as AnimationPlayer + +var _run_on_save: bool = false +var _results: VestResult.Suite = null + +static var _icon_size := 16 +static var _instance: VestUI + +static func get_icon_size() -> int: + return _icon_size + +static func _get_ui() -> VestUI: + return _instance + +func handle_resource_saved(resource: Resource): + if not resource is Script or not visible: + return + + if _run_on_save: + run_all() + +func run_all(is_debug: bool = false): + Vest._register_scene_tree(get_tree()) + var runner := VestDaemonRunner.new() + runner.on_partial_result.connect(func(results): + results_panel.set_results(results) + ) + + var test_glob := glob_line_edit.text + Vest.__.LocalSettings.test_glob = test_glob + Vest.__.LocalSettings.flush() + + results_panel.set_spinner("Waiting for results...", Vest.Icons.debug) + progress_indicator.show() + progress_animator.play("spin") + run_summary.hide() + + var test_start := Vest.time() + var results: VestResult.Suite + if not is_debug: + results = await runner.run_glob(glob_line_edit.text) + else: + results = await runner.with_debug().run_glob(glob_line_edit.text) + + var test_duration := Vest.time() - test_start + + # Render individual results + ingest_results(results, test_duration) + +func run_script(script: Script, is_debug: bool = false, only_mode: int = Vest.__.ONLY_AUTO) -> void: + if not get_tree(): + push_warning("UI has no tree!") + Vest._register_scene_tree(get_tree()) + var runner := VestDaemonRunner.new() + + results_panel.set_spinner("Waiting for results...", Vest.Icons.debug) + progress_indicator.show() + progress_animator.play("spin") + run_summary.hide() + + var test_start := Vest.time() + var results: VestResult.Suite + if not is_debug: + results = await runner.run_script(script, only_mode) + else: + results = await runner.with_debug().run_script(script, only_mode) + + var test_duration := Vest.time() - test_start + + # Render individual results + ingest_results(results, test_duration) + +func ingest_results(results: VestResult.Suite, duration: float = -1.) -> void: + clear_results() + _results = results + + if results: + results_panel.set_results(results) + _render_summary(results, duration) + else: + results_panel.set_spinner("Test run failed!", Vest.Icons.result_fail, false) + +func clear_results(): + results_panel.clear() + summary_label.text = "" + summary_icon.visible = false + +func _ready(): + _icon_size = int(16. * Vest._get_editor_scale()) + results_panel.visibility_popup = visibility_popup + + run_all_button.pressed.connect(run_all) + run_on_save_button.toggled.connect(func(toggled): + _run_on_save = toggled + ) + clear_button.pressed.connect(clear_results) + refresh_mixins_button.pressed.connect(func(): VestMixins.refresh()) + + glob_line_edit.text = Vest.__.LocalSettings.test_glob + glob_line_edit.text_changed.connect(func(text: String): + Vest.__.LocalSettings.test_glob = text + ) + + debug_button.pressed.connect(func(): run_all(true)) + + filter_results_button.pressed.connect(func(): + visibility_popup.position = filter_results_button.get_screen_position() + Vector2.RIGHT * filter_results_button.size.x + visibility_popup.show() + ) + + visibility_popup.on_change.connect(func(): + clear_results() + results_panel.set_results(_results) + + if visibility_popup.is_empty(): + filter_results_button.icon = Vest.Icons.hidden + else: + filter_results_button.icon = Vest.Icons.visible + ) + + results_panel.on_collapse_changed.connect(func(): + if (results_panel.is_any_collapsed()): + expand_toggle_button.icon = Vest.Icons.expand + else: + expand_toggle_button.icon = Vest.Icons.collapse + ) + + expand_toggle_button.pressed.connect(func(): + results_panel.toggle_collapsed() + ) + + search_button.pressed.connect(func(): + search_input.show() + search_input.grab_focus() + ) + + search_input.focus_exited.connect(func(): + if not search_input.text and get_viewport().gui_get_focus_owner() != search_button: + search_input.hide() + , CONNECT_DEFERRED) + + search_input.text_changed.connect(func(text: String): + results_panel.set_search_string(text) + ) + + _instance = self + +func _render_summary(results: VestResult.Suite, test_duration: float): + progress_indicator.hide() + run_summary.show() + + if test_duration > 0: + summary_label.text = "Ran %d tests in %s" % [results.size(), VestUI.format_duration(test_duration)] + else: + summary_label.text = "Ran %d tests" % [results.size()] + summary_icon.visible = true + summary_icon.texture = VestUI.get_status_icon(results) + summary_icon.custom_minimum_size = Vector2i.ONE * VestUI.get_icon_size() # TODO: Check + +static func get_status_icon(what: Variant) -> Texture2D: + if what is VestResult.Suite: + return get_status_icon(what.get_aggregate_status()) + elif what is VestResult.Case: + if what.data.has("benchmarks"): + if what.status == VestResult.TEST_FAIL: + return Vest.Icons.benchmark_fail + else: + return Vest.Icons.benchmark + else: + return get_status_icon(what.status) + elif what is int: + match(what): + VestResult.TEST_VOID: return Vest.Icons.result_void + VestResult.TEST_TODO: return Vest.Icons.result_todo + VestResult.TEST_SKIP: return Vest.Icons.result_skip + VestResult.TEST_FAIL: return Vest.Icons.result_fail + VestResult.TEST_PASS: return Vest.Icons.result_pass + return null + +static func format_duration(duration: float) -> String: + if duration > 60.: + return "%.2fmin" % [duration / 60.] + elif duration > 1.: + return "%.2fs" % duration + elif duration > 0.001: + return "%.2fms" % [duration * 1000.] + else: + return "%.2fµs" % [duration * 1000_000.0] + +static func fuzzy_score(needle: String, haystack: String) -> float: + var ineedle := needle.to_lower() + var ihaystack := haystack.to_lower() + return ineedle.similarity(ihaystack) + float(ineedle.is_subsequence_of(ihaystack)) + +static func fuzzy_match(needle: String, haystack: String) -> bool: + return fuzzy_score(needle, haystack) > 0.0 + +static func fuzzy_sorter(needle: String) -> Callable: + return func(a, b): + return fuzzy_score(needle, a) < fuzzy_score(needle, b) diff --git a/addons/vest/ui/vest-ui.gd.uid b/addons/vest/ui/vest-ui.gd.uid new file mode 100644 index 0000000..3de8afe --- /dev/null +++ b/addons/vest/ui/vest-ui.gd.uid @@ -0,0 +1 @@ +uid://i36by1fk3oss diff --git a/addons/vest/ui/vest-ui.tscn b/addons/vest/ui/vest-ui.tscn new file mode 100644 index 0000000..c9247c2 --- /dev/null +++ b/addons/vest/ui/vest-ui.tscn @@ -0,0 +1,232 @@ +[gd_scene load_steps=16 format=3 uid="uid://bp8g7j7774mwi"] + +[ext_resource type="Script" path="res://addons/vest/ui/vest-ui.gd" id="1_cct3x"] +[ext_resource type="Texture2D" uid="uid://r4y6ihamgino" path="res://addons/vest/icons/run.svg" id="2_q3lni"] +[ext_resource type="PackedScene" uid="uid://lqudrgj64q3x" path="res://addons/vest/ui/results-panel.tscn" id="2_r41u0"] +[ext_resource type="Texture2D" uid="uid://dwhlyf5eyiect" path="res://addons/vest/icons/debug.svg" id="3_mcbjt"] +[ext_resource type="Texture2D" uid="uid://ctdipwc8sklwo" path="res://addons/vest/icons/clear.svg" id="4_rjham"] +[ext_resource type="Texture2D" uid="uid://dt75n55vr4kq0" path="res://addons/vest/icons/refresh.svg" id="5_k7hxl"] +[ext_resource type="Texture2D" uid="uid://bmqjme87oq3xx" path="res://addons/vest/icons/pass.svg" id="6_mef67"] +[ext_resource type="Texture2D" uid="uid://c711af0y1s2ct" path="res://addons/vest/icons/run-save.svg" id="6_wy3v7"] +[ext_resource type="Texture2D" uid="uid://bpyua1ic4p47h" path="res://addons/vest/icons/visibility.svg" id="6_xkbs5"] +[ext_resource type="Texture2D" uid="uid://sx0233b14cll" path="res://addons/vest/icons/expand.svg" id="9_hg4sy"] +[ext_resource type="Texture2D" uid="uid://cl6im4a1uj6nq" path="res://addons/vest/icons/search.svg" id="10_2uogy"] +[ext_resource type="Texture2D" uid="uid://csfyamlc15vp0" path="res://addons/vest/icons/spinner.svg" id="10_7lh4k"] +[ext_resource type="PackedScene" uid="uid://dbgbcglqh42ya" path="res://addons/vest/ui/visibility-popup.tscn" id="13_72bup"] + +[sub_resource type="Animation" id="Animation_cyqg3"] +resource_name = "spin" +loop_mode = 1 +step = 0.0416667 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Spinner:rotation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(0.5, 1), +"update": 0, +"values": [0.0, 6.28319] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_ed1ow"] +_data = { +"spin": SubResource("Animation_cyqg3") +} + +[node name="Vest UI" type="Control"] +custom_minimum_size = Vector2(0, 144) +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_cct3x") + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 + +[node name="Results Panel" parent="VBoxContainer" instance=ExtResource("2_r41u0")] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Bottom Line" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="Buttons" type="HBoxContainer" parent="VBoxContainer/Bottom Line"] +layout_mode = 2 + +[node name="Run All Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Run tests" +text = " " +icon = ExtResource("2_q3lni") +icon_alignment = 1 +expand_icon = true + +[node name="Debug Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Debug tests" +text = " " +icon = ExtResource("3_mcbjt") +icon_alignment = 1 +expand_icon = true + +[node name="Clear Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Clear results" +text = " " +icon = ExtResource("4_rjham") +icon_alignment = 1 +expand_icon = true + +[node name="Run on Save Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Run on Save" +toggle_mode = true +text = " " +icon = ExtResource("6_wy3v7") +icon_alignment = 1 +expand_icon = true + +[node name="Filter Results Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Filter results" +text = " " +icon = ExtResource("6_xkbs5") +icon_alignment = 1 +expand_icon = true + +[node name="Visibility Popup" parent="VBoxContainer/Bottom Line/Buttons/Filter Results Button" instance=ExtResource("13_72bup")] +unique_name_in_owner = true +visible = false + +[node name="Search Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +text = " " +icon = ExtResource("10_2uogy") +icon_alignment = 1 +expand_icon = true + +[node name="Search Input" type="LineEdit" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(192, 0) +layout_mode = 2 +placeholder_text = "Search..." + +[node name="Expand Toggle Button" type="Button" parent="VBoxContainer/Bottom Line/Buttons"] +unique_name_in_owner = true +layout_mode = 2 +text = " " +icon = ExtResource("9_hg4sy") +icon_alignment = 1 +expand_icon = true + +[node name="VSeparator3" type="VSeparator" parent="VBoxContainer/Bottom Line"] +layout_mode = 2 + +[node name="Run Summary" type="HBoxContainer" parent="VBoxContainer/Bottom Line"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Test Summary Icon" type="TextureRect" parent="VBoxContainer/Bottom Line/Run Summary"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(16, 16) +layout_mode = 2 +size_flags_vertical = 4 +texture = ExtResource("6_mef67") +expand_mode = 5 +stretch_mode = 4 + +[node name="Tests Summary Label" type="Label" parent="VBoxContainer/Bottom Line/Run Summary"] +unique_name_in_owner = true +custom_minimum_size = Vector2(220, 0) +layout_mode = 2 + +[node name="Progress Indicator" type="HBoxContainer" parent="VBoxContainer/Bottom Line"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Control" type="Control" parent="VBoxContainer/Bottom Line/Progress Indicator"] +custom_minimum_size = Vector2(32, 0) +layout_mode = 2 + +[node name="Spinner" type="TextureRect" parent="VBoxContainer/Bottom Line/Progress Indicator/Control"] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -16.0 +offset_top = -15.5 +offset_right = 16.0 +offset_bottom = 16.5 +grow_horizontal = 2 +grow_vertical = 2 +rotation = 2.9185 +pivot_offset = Vector2(16, 16) +texture = ExtResource("10_7lh4k") +expand_mode = 5 +stretch_mode = 5 +flip_h = true + +[node name="AnimationPlayer" type="AnimationPlayer" parent="VBoxContainer/Bottom Line/Progress Indicator/Control"] +autoplay = "spin" +libraries = { +"": SubResource("AnimationLibrary_ed1ow") +} + +[node name="Label" type="Label" parent="VBoxContainer/Bottom Line/Progress Indicator"] +layout_mode = 2 +text = "Running tests..." + +[node name="VSeparator2" type="VSeparator" parent="VBoxContainer/Bottom Line"] +layout_mode = 2 + +[node name="Glob" type="HBoxContainer" parent="VBoxContainer/Bottom Line"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 3.0 + +[node name="Glob Label" type="Label" parent="VBoxContainer/Bottom Line/Glob"] +layout_mode = 2 +text = "Test glob:" + +[node name="Glob LineEdit" type="LineEdit" parent="VBoxContainer/Bottom Line/Glob"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +text = "res://tests/*.test.gd" + +[node name="VSeparator4" type="VSeparator" parent="VBoxContainer/Bottom Line"] +layout_mode = 2 + +[node name="Refresh Mixins Button" type="Button" parent="VBoxContainer/Bottom Line"] +unique_name_in_owner = true +layout_mode = 2 +tooltip_text = "Refresh Mixins" +text = " " +icon = ExtResource("5_k7hxl") +icon_alignment = 1 +expand_icon = true diff --git a/addons/vest/ui/visibility-popup.gd b/addons/vest/ui/visibility-popup.gd new file mode 100644 index 0000000..65f3c42 --- /dev/null +++ b/addons/vest/ui/visibility-popup.gd @@ -0,0 +1,70 @@ +@tool +extends PopupPanel + +@onready var _container := %"Statuses Container" as Control +@onready var _toggle_button := %"Toggle Button" as Button + +var _visibilities: Dictionary = {} + +signal on_change() + +func get_visibility_for(status: int) -> bool: + return _visibilities.get(status, true) + +func is_empty() -> bool: + # Return true if all visibilites are set to false + for status in _visibilities: + if _visibilities[status]: + return false + return true + +func _init() -> void: + # Default visibility to true + for status in range(VestResult.TEST_MAX): + _visibilities[status] = true + +func _ready() -> void: + _render() + _toggle_button.pressed.connect(_toggle_all) + +func _toggle_all() -> void: + var visibility := is_empty() + for status in _visibilities.keys(): + _visibilities[status] = visibility + _render() + on_change.emit() + +func _render() -> void: + if _container.get_child_count() != _visibilities.size(): + # Remove children + for child in _container.get_children(): + child.queue_free() + + for status in _visibilities.keys(): + var checkbox := CheckBox.new() + checkbox.toggle_mode = true + checkbox.text = VestResult.get_status_string(status).capitalize() + checkbox.icon = VestUI.get_status_icon(status) + checkbox.expand_icon = true + + checkbox.pressed.connect(func(): + _visibilities[status] = not _visibilities[status] + _render() + on_change.emit() + ) + + _container.add_child(checkbox) + + # Update checkbox statuses + for idx in range(_container.get_child_count()): + var status := _visibilities.keys()[idx] as int + var checkbox := _container.get_child(idx) as CheckBox + checkbox.set_pressed_no_signal(_visibilities[status]) + + # Update toggle button + if is_empty(): + _toggle_button.text = "All" + _toggle_button.icon = Vest.Icons.visible + else: + _toggle_button.text = "None" + _toggle_button.icon = Vest.Icons.hidden diff --git a/addons/vest/ui/visibility-popup.gd.uid b/addons/vest/ui/visibility-popup.gd.uid new file mode 100644 index 0000000..07f495d --- /dev/null +++ b/addons/vest/ui/visibility-popup.gd.uid @@ -0,0 +1 @@ +uid://hnnddmijt1mg diff --git a/addons/vest/ui/visibility-popup.tscn b/addons/vest/ui/visibility-popup.tscn new file mode 100644 index 0000000..fe3bc99 --- /dev/null +++ b/addons/vest/ui/visibility-popup.tscn @@ -0,0 +1,31 @@ +[gd_scene load_steps=4 format=3 uid="uid://dbgbcglqh42ya"] + +[ext_resource type="Script" path="res://addons/vest/ui/visibility-popup.gd" id="1_21m7j"] +[ext_resource type="Texture2D" uid="uid://buuq6qptg3vll" path="res://addons/vest/icons/hidden.svg" id="2_urx7m"] + +[sub_resource type="Theme" id="Theme_l01ra"] +Button/colors/icon_normal_color = Color(1, 1, 1, 0.501961) +Button/colors/icon_pressed_color = Color(1, 1, 1, 1) + +[node name="Visibility Popup" type="PopupPanel"] +size = Vector2i(128, 214) +visible = true +theme = SubResource("Theme_l01ra") +script = ExtResource("1_21m7j") + +[node name="Buttons Container" type="VBoxContainer" parent="."] +offset_left = 4.0 +offset_top = 4.0 +offset_right = 124.0 +offset_bottom = 210.0 + +[node name="Statuses Container" type="VBoxContainer" parent="Buttons Container"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Toggle Button" type="Button" parent="Buttons Container"] +unique_name_in_owner = true +layout_mode = 2 +text = "None" +icon = ExtResource("2_urx7m") +expand_icon = true diff --git a/addons/vest/vest-data-serializer.gd b/addons/vest/vest-data-serializer.gd new file mode 100644 index 0000000..7c47bd8 --- /dev/null +++ b/addons/vest/vest-data-serializer.gd @@ -0,0 +1,128 @@ +@tool +extends Object + +# Serializes any data into Godot builtin types ( strings, dicts, arrays, etc. ), +# so they can be safely transmitted over the network when running tests from +# the editor. +# +# See examples/custom-data-types.test.gd + +const MAX_DEPTH := 128 + +static func serialize(data: Variant, max_depth: int = MAX_DEPTH) -> Variant: + if max_depth <= 0: + push_error("Data structure too deep to serialize! Is there a circular reference?") + return str(data) + + var depth := max_depth - 1 + + if data == null: + return null + + match typeof(data): + # Numbers + TYPE_BOOL, TYPE_INT, TYPE_FLOAT: + return data + + # Strings + TYPE_STRING, TYPE_STRING_NAME, TYPE_NODE_PATH: + return str(data) + + # Linalg + TYPE_VECTOR2, TYPE_VECTOR2I: + return [data.x, data.y] + + TYPE_VECTOR3, TYPE_VECTOR3I: + return [data.x, data.y, data.z] + + TYPE_VECTOR4, TYPE_VECTOR4I, TYPE_QUATERNION: + return [data.x, data.y, data.z, data.w] + + TYPE_RECT2, TYPE_RECT2I, TYPE_AABB: + return [serialize(data.position, depth), serialize(data.size, depth)] + + TYPE_PLANE: + var plane := data as Plane + return [plane.x, plane.y, plane.z, plane.d, serialize(plane.normal, depth)] + + TYPE_TRANSFORM2D: + var xform := data as Transform2D + return [ + serialize(xform.x, depth), + serialize(xform.y, depth), + serialize(xform.origin, depth) + ] + + TYPE_TRANSFORM3D: + var xform := data as Transform3D + return [serialize(xform.basis, depth)] + [serialize(xform.origin, depth)] + + TYPE_BASIS: + var basis := data as Basis + return [ + serialize(basis.x, depth), + serialize(basis.y, depth), + serialize(basis.z, depth) + ] + + TYPE_PROJECTION: + var projection := data as Projection + return [ + serialize(projection.x, depth), + serialize(projection.y, depth), + serialize(projection.z, depth), + serialize(projection.w, depth) + ] + + # Other + TYPE_COLOR: + var color := data as Color + return [color.r, color.g, color.b, color.a] + + TYPE_RID, TYPE_CALLABLE, TYPE_SIGNAL: + return str(data) + + # Complex + TYPE_OBJECT: + var object := data as Object + if object.has_method("_to_vest"): + return serialize(object._to_vest(), depth) + + return serialize(_object_to_map(object), depth) + + # Arrays + TYPE_PACKED_BYTE_ARRAY, TYPE_PACKED_INT32_ARRAY, TYPE_PACKED_INT64_ARRAY, \ + TYPE_PACKED_FLOAT32_ARRAY, TYPE_PACKED_FLOAT64_ARRAY, TYPE_PACKED_STRING_ARRAY, \ + TYPE_PACKED_VECTOR2_ARRAY, TYPE_PACKED_VECTOR3_ARRAY, TYPE_PACKED_COLOR_ARRAY: + return serialize(Array(data), depth) + + TYPE_ARRAY: + var array := data as Array + return array.map(func(it): return serialize(it, depth)) + + # Dictionary + TYPE_DICTIONARY: + var dict := data as Dictionary + var result := {} + + for key in dict: + var value = dict.get(key) + result[serialize(key, max_depth - 1)] = serialize(value, depth) + return result + + # Default + _: return str(data) + +static func _object_to_map(object: Object) -> Dictionary: + var properties := object.get_property_list().map(func(prop): return prop["name"]) + var script := object.get_script() as Script + + if script != null: + properties = script.get_script_property_list().map(func(prop): return prop["name"]) + + var result := {} + for property in properties: + if property.contains(" "): continue # Skip invalid props + result[property] = object.get(property) + + return result diff --git a/addons/vest/vest-data-serializer.gd.uid b/addons/vest/vest-data-serializer.gd.uid new file mode 100644 index 0000000..295e860 --- /dev/null +++ b/addons/vest/vest-data-serializer.gd.uid @@ -0,0 +1 @@ +uid://db34mrrunh38l diff --git a/addons/vest/vest-defs.gd b/addons/vest/vest-defs.gd new file mode 100644 index 0000000..fc62ff1 --- /dev/null +++ b/addons/vest/vest-defs.gd @@ -0,0 +1,336 @@ +extends Object +class_name VestDefs + +## Grouping class for test definition primitives. +## +## See [VestDefs.Suite][br] +## See [VestDefs.Case][br] +## See [VestDefs.Benchmark][br] + +## Test suite definition. +## +## A test suite consists of test cases, and optionally other, nested test +## suites. +## +## @tutorial(Writing tests): https://foxssake.github.io/vest/latest/user-guide/writing-tests/ +class Suite: + ## Test suite name, displayed in reports + var name: String = "" + + ## Test cases contained in the suite + var cases: Array[VestDefs.Case] = [] + + ## Nested test suites contained in the suite + var suites: Array[VestDefs.Suite] = [] + + ## If true, only this group of tests should run + var is_only: bool = false + + ## The resource path to the script that defined the suite + var definition_file: String = "" + + ## The line number of the suite definition. [br] + ## Set to -1 for undetermined. + var definition_line: int = -1 + + ## Return true if either this suite, one of its cases, or one of its + ## subsuites is marked as only. + func has_only() -> bool: + if is_only: + return true + + return cases.any(func(it): return it.is_only) or\ + suites.any(func(it): return it.has_only()) + + ## Get the number of test cases in the suite.[br] + ## Includes the number of test cases in the suite, and recursively sums up + ## the test cases in any of the nested suites. + func size() -> int: + return cases.size() + suites.reduce(func(acc, it): return acc + it.size(), 0) + + func _to_string() -> String: + return "VestDefs.Suite(name=\"%s\", cases=%s, suites=%s)" % [name, cases, suites] + + func _to_wire() -> Dictionary: + return { "name": name } + + static func _from_wire(data: Dictionary) -> Suite: + var result := Suite.new() + result.name = data["name"] + return result + +## Test case definition. +## +## @tutorial(Writing tests): https://foxssake.github.io/vest/latest/user-guide/writing-tests/ +class Case: + ## Test case description, displayed in reports + var description: String = "" + + ## The method defining the test case - empty if defined via [method VestTest.test] + var method_name: String = "" + + ## If true, only this test should run + var is_only: bool = false + + ## The method called to run the test case + var callback: Callable + + ## The resource path to the script that defined the suite + var definition_file: String = "" + + ## The line number of the suite definition.[br] + ## Set to -1 for undetermined. + var definition_line: int = -1 + + func _to_string() -> String: + return "VestDefs.Case(\"%s\", \"%s\":%d)" % [description, definition_file, definition_line] + + func _to_wire() -> Dictionary: + return { + "description": description, + "method_name": method_name, + "definition_file": definition_file, + "definition_line": definition_line + } + + static func _from_wire(data: Dictionary) -> Case: + var result := Case.new() + + result.description = data["description"] + result.method_name = data["method_name"] + result.definition_file = data["definition_file"] + result.definition_line = data["definition_line"] + + return result + +## Benchmark definition. +## +## Benchmarks run a piece of code multiple times, measuring how much time each +## iteration took. +## +## @tutorial(Benchmarking): https://foxssake.github.io/vest/latest/user-guide/benchmarking/ +class Benchmark: + ## Method to measure during the benchmark + var callback: Callable + + ## Benchmark name, displayed in the reports + var name: String = "" + + var _iterations: int = 0 + var _duration: float = 0.0 + var _batch_size: int = 1 + + var _max_iterations: int = -1 + var _max_duration: float = -1.0 + var _enable_builtin_measures: bool = true + + var _measures: Array[VestMeasure] = [] + var _metric_signals: Dictionary = {} # metric name to signal + var _emit_buffer: Array = [] + + signal _on_emit_template(value: Variant) + + var _test: VestTest + + ## Set a limit on the number of iterations to run. + func with_iterations(p_iterations: int) -> Benchmark: + _max_iterations = p_iterations + return self + + ## Set a limit on the duration for running the benchmark. + ## [br][br] + ## The duration limit is in [i]seconds[/i]. + func with_duration(p_duration: float) -> Benchmark: + _max_duration = p_duration + return self + + ## Set the batch size for running the benchmark. + ## [br][br] + ## When the batch size is greater than one, benchmark runs won't be measured + ## one by one, but in batches. + ## [br][br] + ## This can be useful when running microbenchmarks, where an individual test + ## run is too fast to accurately measure. + func with_batch_size(p_batch_size: int) -> Benchmark: + if p_batch_size >= 1: + _batch_size = p_batch_size + else: + push_error("Invalid batch size set for benchmark %s: %d! Ignoring." % [name, p_batch_size]) + return self + + ## Add a custom measurement. + ## [br][br] + ## There are many built-in measurements, see [method measure_value], + ## [method measure_average], [method measure_sum], [method measure_min], + ## and [method measure_max]. + func with_measure(measure: VestMeasure) -> Benchmark: + # Append measure + _measures.append(measure) + + # Connect to appropriate signal + var metric := measure.get_metric_name() + if not _metric_signals.has(metric): + _metric_signals[metric] = Signal(_on_emit_template) + (_metric_signals[metric] as Signal).connect(measure.ingest) + + return self + + ## Measure the value of [param metric]. + ## [br][br] + ## The last value emitted will be included in the report. + func measure_value(metric: StringName) -> Benchmark: + with_measure(Vest.ValueMeasure.new(metric)) + return self + + ## Measure the average of [param metric]. + func measure_average(metric: StringName) -> Benchmark: + with_measure(Vest.AverageMeasure.new(metric)) + return self + + ## Measure the maximum value of [param metric]. + func measure_max(metric: StringName) -> Benchmark: + with_measure(Vest.MaxMeasure.new(metric)) + return self + + ## Measure the minimum value of [param metric]. + func measure_min(metric: StringName) -> Benchmark: + with_measure(Vest.MinMeasure.new(metric)) + return self + + ## Measure the sum of all emissions of [param metric]. + func measure_sum(metric: StringName) -> Benchmark: + with_measure(Vest.SumMeasure.new(metric)) + return self + + ## Disable the builtin measurements. + ## [br][br] + ## This will stop iterations, durations, iters/sec, and average iteration + ## time from being reported. They're enabled by default. + func without_builtin_measures() -> Benchmark: + _enable_builtin_measures = false + return self + + ## Run the benchmark only once. + func once() -> Benchmark: + _max_iterations = 1 + _max_duration = 1.0 + return run() + + ## Run the benchmark with the configured limits. + func run() -> Benchmark: + # Run benchmark + while _is_within_limits(): + var batch_runs := mini(_batch_size, _get_remaining_iterations()) + var t_start := Vest.time() + for __ in batch_runs: + callback.call(_emit) + var duration := Vest.time() - t_start + + _duration += duration + _iterations += batch_runs + + # Emit runtime + _emit(&"duration", duration) + + # Metric emits are buffered, so they don't influence runtime measure + # much + # This call flushes the buffered metric emissions + _flush_emits() + + # Report + var result_data := _test._get_result().data + var benchmarks := result_data.get("benchmarks", []) as Array + benchmarks.append(_to_data()) + result_data["benchmarks"] = benchmarks + + # Set test to pass by default if no asserts are added + _test.ok("", result_data) + + # Warn user when running benchmarks in too small batches + var avg_batch_time := get_avg_iteration_time() * _batch_size + var batch_threshold := 0.001 # 1ms + if avg_batch_time <= batch_threshold and _enable_builtin_measures: + Vest.message(( + "Benchmark \"%s\" has run with an average of %s per batch. " + + "This is probably faster than what can be reliably measured. " + + "To avoid this warning, increase the batch size to at least %s.") % + [name, VestUI.format_duration(avg_batch_time), ceil(_batch_size * batch_threshold / avg_batch_time * 1.1)] + ) + + return self + + ## Get the number of iterations ran. + func get_iterations() -> int: + return _iterations + + ## Get the total time it took to run the benchmark. + func get_duration() -> float: + return _duration + + ## Get the average number of iterations ran per second. + func get_iters_per_sec() -> float: + return _iterations / _duration + + ## Get the average time it took to run an iteration, in seconds. + func get_avg_iteration_time() -> float: + return _duration / _iterations + + ## Get the value of a measurement. + ## [br][br] + ## Measurements can be taken from the benchmark report, e.g. "Size - Value" + ## corresponds to [code]get_measurement(&"Size", &"value")[/code]. + ## [br][br] + ## The returned value can be used for assertions. + func get_measurement(metric: StringName, measurement: StringName) -> Variant: + for measure in _measures: + if measure.get_metric_name() == metric and measure.get_measure_name() == measurement: + return measure.get_value() + + assert(false, "Measurement not found!") + return null + + func _is_within_limits() -> bool: + return _get_remaining_iterations() > 0 and _get_remaining_time() > 0. + + func _get_remaining_time() -> float: + if _max_duration >= 0.0: + return _max_duration - _duration + return INF + + func _get_remaining_iterations() -> int: + if _max_iterations >= 0: + return _max_iterations - _iterations + return _batch_size + 1 + + func _emit(metric: StringName, value: Variant) -> void: + _emit_buffer.push_back([metric, value]) + + func _flush_emits() -> void: + for emit in _emit_buffer: + var metric := emit[0] as StringName + var value = emit[1] + + if not _metric_signals.has(metric): continue + (_metric_signals.get(metric) as Signal).emit(value) + + _emit_buffer.clear() + + func _to_data() -> Dictionary: + var result := {} + + # Add custom measures + for measure in _measures: + var measure_name := "%s - %s" % [measure.get_metric_name(), measure.get_measure_name().capitalize()] + result[measure_name] = str(measure.get_value()) + + # Add builtin measures + if _enable_builtin_measures: + result["iterations"] = _iterations + result["duration"] = VestUI.format_duration(_duration) + result["iters/sec"] = get_iters_per_sec() + result["average iteration time"] = VestUI.format_duration(get_avg_iteration_time()) + + # Add benchmark data + result["name"] = name + + return result diff --git a/addons/vest/vest-defs.gd.uid b/addons/vest/vest-defs.gd.uid new file mode 100644 index 0000000..0c38430 --- /dev/null +++ b/addons/vest/vest-defs.gd.uid @@ -0,0 +1 @@ +uid://diehf1727ak8k diff --git a/addons/vest/vest-internals.gd b/addons/vest/vest-internals.gd new file mode 100644 index 0000000..f2751d3 --- /dev/null +++ b/addons/vest/vest-internals.gd @@ -0,0 +1,24 @@ +@tool +extends Object + +const Matchers := preload("res://addons/vest/vest-matchers.gd") +const Serializer := preload("res://addons/vest/vest-data-serializer.gd") +const LocalSettings := preload("res://addons/vest/vest-local-settings.gd") + +const GoToTestCommand := preload("res://addons/vest/commands/go-to-test-command.gd") +const CreateTestCommand := preload("res://addons/vest/commands/create-test-command.gd") +const RunTestCommand := preload("res://addons/vest/commands/run-test-command.gd") + +const ONLY_DISABLED := 0 +const ONLY_AUTO := 1 +const ONLY_ENABLED := 2 +const ONLY_DEFAULT := ONLY_AUTO + +static func create_commands() -> Array[Node]: + # TODO: Don't recreate if exists + var commands := [ + GoToTestCommand.new(), + CreateTestCommand.new(), + RunTestCommand.new() + ] as Array[Node] + return commands diff --git a/addons/vest/vest-internals.gd.uid b/addons/vest/vest-internals.gd.uid new file mode 100644 index 0000000..d196d60 --- /dev/null +++ b/addons/vest/vest-internals.gd.uid @@ -0,0 +1 @@ +uid://dujae6v2bu0ty diff --git a/addons/vest/vest-local-settings.gd b/addons/vest/vest-local-settings.gd new file mode 100644 index 0000000..f5bcf19 --- /dev/null +++ b/addons/vest/vest-local-settings.gd @@ -0,0 +1,54 @@ +@tool +extends Object + +static var _path: String + +static var test_glob := "res://*.test.gd" +static var run_params := VestCLI.Params.new() + +static func _static_init(): + # If config file doesn't exist, create it + if not FileAccess.file_exists(get_config_path()): + flush() + + # Load settings from file + reload() + +static func get_config_path() -> String: + if not _path: + var path_candidates := [ + ProjectSettings.globalize_path("res://.godot/.vestrc"), + ProjectSettings.globalize_path("res://.vestrc") + ] as Array[String] + + # Find suitable directory + for path in path_candidates: + var directory := path.get_base_dir() + + if DirAccess.dir_exists_absolute(directory): + _path = path + print("Found local settings path: %s" % [_path]) + break + return _path + +static func flush() -> void: + if not run_params: + run_params = VestCLI.Params.new() + + var data := { + "test_glob": test_glob if test_glob else "", + "run_params": run_params.to_args() + } + + var file := FileAccess.open(get_config_path(), FileAccess.WRITE) + file.store_string(var_to_str(data)) + file.flush() + file.close() + +static func reload() -> void: + var file := FileAccess.open(get_config_path(), FileAccess.READ) + var data := str_to_var(file.get_as_text()) as Dictionary + file.close() + + test_glob = data["test_glob"] + run_params = VestCLI.Params.parse(data["run_params"]) diff --git a/addons/vest/vest-local-settings.gd.uid b/addons/vest/vest-local-settings.gd.uid new file mode 100644 index 0000000..ef18b40 --- /dev/null +++ b/addons/vest/vest-local-settings.gd.uid @@ -0,0 +1 @@ +uid://c487c6sj418oc diff --git a/addons/vest/vest-matchers.gd b/addons/vest/vest-matchers.gd new file mode 100644 index 0000000..965404f --- /dev/null +++ b/addons/vest/vest-matchers.gd @@ -0,0 +1,41 @@ +extends Object + +static func is_equal(actual, expected) -> bool: + if actual is Object and actual.has_method("equals"): + return actual.equals(expected) + return actual == expected + +static func is_empty(object: Variant) -> Variant: + if _is_builtin_container(object) or _is_stringlike(object): + return object.is_empty() + elif object is Object: + if object.has_method("is_empty"): + return object.is_empty() + else: + return ERR_METHOD_NOT_FOUND + else: + return ERR_CANT_RESOLVE + +static func contains(object: Variant, item: Variant) -> Variant: + if _is_builtin_container(object): + return object.has(item) + elif _is_stringlike(object): + return object.contains(str(item)) + elif object is Object: + if object.has_method("has"): + return object.has(item) + else: + return ERR_METHOD_NOT_FOUND + else: + return ERR_CANT_RESOLVE + +static func _is_builtin_container(object: Variant) -> bool: + return object is Array or object is Dictionary \ + or object is PackedByteArray or object is PackedColorArray \ + or object is PackedFloat32Array or object is PackedFloat64Array \ + or object is PackedInt32Array or object is PackedInt64Array \ + or object is PackedStringArray \ + or object is PackedVector2Array or object is PackedVector3Array + +static func _is_stringlike(object: Variant) -> bool: + return object is String or object is StringName or object is NodePath diff --git a/addons/vest/vest-matchers.gd.uid b/addons/vest/vest-matchers.gd.uid new file mode 100644 index 0000000..c294207 --- /dev/null +++ b/addons/vest/vest-matchers.gd.uid @@ -0,0 +1 @@ +uid://yh4sgr22b8er diff --git a/addons/vest/vest-mixins.gd b/addons/vest/vest-mixins.gd new file mode 100644 index 0000000..41e4d1e --- /dev/null +++ b/addons/vest/vest-mixins.gd @@ -0,0 +1,136 @@ +extends Object +class_name VestMixins + +## Manages mixins for [VestTest]. +## +## Instead of having to implement all the functionality in one huge class, +## the functionality can be separated into mixins. +## [br][br] +## Mixins are classes whose functionality is combined into a single class, to +## produce the [VestTest] base class. This is done by generating scripts that +## Godot can then load. +## [br][br] +## When working with custom mixins, [b]make sure to refresh[/b] when a change +## is applied! + +## List all active mixins. +static func list() -> Array[Script]: + var result: Array[Script] = [] + result.assign((VestTest.new()).__get_vest_mixins()) + return result + +## Add a custom script to the list of mixins. +## [br][br] +## Make sure to call [method refresh], otherwise the generated classes are not +## updated. +static func add(mixin: Script): + var active_mixins := list() + if not active_mixins.has(mixin): + active_mixins.append(mixin) + refresh(active_mixins) + +## Remove a custom script from the list of mixins. +## [br][br] +## Make sure to call [method refresh], otherwise the generated classes are not +## updated. +static func remove(mixin: Script): + var active_mixins := list() + if active_mixins.has(mixin): + active_mixins.erase(mixin) + refresh(active_mixins) + +## Refresh the generated classes, making sure that all mixins used are up to +## date. +static func refresh(mixins: Array[Script] = []): + if mixins.is_empty(): + mixins = list() + + # Generate mixin chain + var mixin_chain: Array[Script] = [] + mixin_chain.append(_get_test_base()) + mixin_chain.append_array(_get_builtin_mixins()) + + var active_mixins: Array[Script] = [] + + for mixin_script in mixins: + if not mixin_script: + # Not script? + continue + + if mixin_chain.has(mixin_script): + # Don't include the same mixin twice + continue + + mixin_chain.append(mixin_script) + active_mixins.append(mixin_script) + + mixin_chain.append(VestTest) + + # Generate scripts + _clean_mixin_directory() + DirAccess.make_dir_recursive_absolute(_get_mixin_directory()) + var extends_pattern := RegEx.create_from_string("^extends.*") + + for i in range(1, mixin_chain.size()): + var parent_script := mixin_chain[i - 1] + var target_script := mixin_chain[i] + + var parent_path := parent_script.resource_path + var target_path := target_script.resource_path + + if i != 1: + parent_path = _get_generated_mixin_path(parent_script, i - 1) + if i != mixin_chain.size() - 1: + target_path = _get_generated_mixin_path(target_script, i) + + # Generate source + var target_source := target_script.source_code + var script_header := ( + "# This file is generated by Vest!\n" + + "# Do not modify!\n" + + "# source: %s\n" % [target_script.resource_path] + + "extends \"%s\"\n\n" % [parent_path]) + + target_source = extends_pattern.sub(target_source, "", true) + if target_script != VestTest: + target_source = script_header + target_source + else: + target_source = script_header + target_source += "class_name VestTest\n\n" + + var mixin_fragments = active_mixins\ + .map(func(it): return it.resource_path)\ + .map(func(it): return "preload(\"%s\")" % it) + + mixin_fragments = ", ".join(mixin_fragments) + target_source += "func __get_vest_mixins() -> Array:\n\treturn [%s]" % [mixin_fragments] + + var target_file := FileAccess.open(target_path, FileAccess.WRITE) + target_file.store_string(target_source) + target_file.close() + +static func _get_generated_mixin_name(script: Script, idx: int) -> String: + return "%d-%x.gd" % [idx, hash(script.resource_path.get_file())] + +static func _get_generated_mixin_path(script: Script, idx: int) -> String: + return _get_mixin_directory() + _get_generated_mixin_name(script, idx) + +static func _get_builtin_mixins() -> Array[Script]: + return [ + preload("res://addons/vest/test/mixins/gather-suite-mixin.gd"), + preload("res://addons/vest/test/mixins/expect-mixin.gd"), + preload("res://addons/vest/test/mixins/assert-that-mixin.gd"), + preload("res://addons/vest/test/mixins/mock-mixin.gd"), + preload("res://addons/vest/test/mixins/capture-signal-mixin.gd"), + preload("res://addons/vest/test/mixins/logging-mixin.gd") + ] + +static func _get_mixin_directory() -> String: + return "res://addons/vest/_generated-mixins/" + +static func _clean_mixin_directory(): + for file in DirAccess.get_files_at(_get_mixin_directory()): + DirAccess.remove_absolute(_get_mixin_directory() + file) + +static func _get_test_base() -> Script: + return preload("res://addons/vest/test/vest-test-base.gd") as Script diff --git a/addons/vest/vest-mixins.gd.uid b/addons/vest/vest-mixins.gd.uid new file mode 100644 index 0000000..5eb8f01 --- /dev/null +++ b/addons/vest/vest-mixins.gd.uid @@ -0,0 +1 @@ +uid://b8gxajuxgy6cf diff --git a/addons/vest/vest-result.gd b/addons/vest/vest-result.gd new file mode 100644 index 0000000..d3a7c6e --- /dev/null +++ b/addons/vest/vest-result.gd @@ -0,0 +1,149 @@ +class_name VestResult + +## Grouping class for test result primitives. +## +## See [VestResult.Suite][br] +## See [VestResult.Case][br] + +enum { ## Result status enum + TEST_VOID, ## Test ran no assertions + TEST_TODO, ## Test is not implemented yet + TEST_FAIL, ## Test has failed + TEST_SKIP, ## Test was skipped + TEST_PASS, ## Test passed + TEST_MAX ## Represents the size of the result status enum +} + +## Test suite results. +class Suite: + ## The test suite this result describes + var suite: VestDefs.Suite + + ## The results of the test cases belonging to the suite + var cases: Array[Case] = [] + + ## The results of the suite's nested suites + var subsuites: Array[Suite] = [] + + ## Get the number of test cases in the suite.[br] + ## Includes the number of test cases in the suite, and recursively sums up + ## the test cases in any of the nested suites.[br] + ## To count only the direct descendants, see [method plan_size]. + func size() -> int: + return cases.size() + subsuites.reduce(func(acc, it): return acc + it.size(), 0) + + ## Return the number of items in the test plan.[br] + ## Includes the number of test cases and subsuites in the suite. As opposed + ## to [method size], this method doesn't include the test cases of the + ## subsuites. + func plan_size() -> int: + return cases.size() + subsuites.size() + + ## Get the aggregate result of the test cases and suites contained in the + ## suite. + func get_aggregate_status() -> int: + var result: int = TEST_PASS + if not cases.is_empty(): + result = mini(result, cases.map(func(it): return it.status).min()) + if not subsuites.is_empty(): + result = mini(result, subsuites.map(func(it): return it.get_aggregate_status()).min()) + return result + + ## Get the aggregate result of the test suite, as a string. + func get_aggregate_status_string() -> String: + return VestResult.get_status_string(get_aggregate_status()) + + ## Get an array of result statuses contained in the suite. + func get_unique_statuses() -> Array[int]: + var result := [] as Array[int] + for kase in cases: + if not result.has(kase.status): + result.push_back(kase.status) + for subsuite in subsuites: + for status in subsuite.get_unique_statuses(): + if not result.has(status): + result.push_back(status) + return result + + ## Get the count of test cases and nested suites with the given result + ## status. + ## [br][br] + ## [b]Note:[/b] This method doesn't do recursive summation. + func get_count_by_status(p_status: int) -> int: + return ( + cases.filter(func(it): return it.status == p_status).size() + + subsuites.filter(func(it): return it.get_aggregate_status() == p_status).size() + ) + + func _to_wire() -> Dictionary: + return { + "suite": suite._to_wire(), + "cases": cases.map(func(it): return it._to_wire()), + "subsuites": subsuites.map(func(it): return it._to_wire()) + } + + static func _from_wire(data: Dictionary) -> Suite: + var result := Suite.new() + + result.suite = VestDefs.Suite._from_wire(data["suite"]) + result.cases.assign(data["cases"].map(func(it): return Case._from_wire(it))) + result.subsuites.assign(data["subsuites"].map(func(it): return Suite._from_wire(it))) + + return result + +## Test case result. +class Case: + ## The test case this result describes. + var case: VestDefs.Case + + ## The resulting status of the test run. + var status: int = TEST_VOID + + # The messages attached to this result + var messages: Array[String] = [] + + ## Custom data attached to this result. + var data: Dictionary = {} + + ## The resource path where the last assertion ran. + var assert_file: String = "" + + ## The line index where the last assertion ran.[br] + ## Set to -1 for undetermined. + var assert_line: int = -1 + + ## Get the test result status as a string. + func get_status_string() -> String: + return VestResult.get_status_string(status) + + func _to_wire() -> Dictionary: + return { + "case": case._to_wire(), + "status": status, + "messages": messages.duplicate(), + "data": Vest.__.Serializer.serialize(data), + "assert_file": assert_file, + "assert_line": assert_line + } + + static func _from_wire(p_data: Dictionary) -> Case: + var result := Case.new() + + result.case = VestDefs.Case._from_wire(p_data["case"]) + result.status = p_data["status"] + result.messages.assign(p_data["messages"]) + result.data = p_data["data"] + result.assert_file = p_data["assert_file"] + result.assert_line = p_data["assert_line"] + + return result + +## Convert a test result status into string. +static func get_status_string(p_status: int) -> String: + match p_status: + TEST_VOID: return "VOID" + TEST_TODO: return "TODO" + TEST_FAIL: return "FAIL" + TEST_SKIP: return "SKIP" + TEST_PASS: return "PASS" + _: return "?" diff --git a/addons/vest/vest-result.gd.uid b/addons/vest/vest-result.gd.uid new file mode 100644 index 0000000..952d099 --- /dev/null +++ b/addons/vest/vest-result.gd.uid @@ -0,0 +1 @@ +uid://bytgkfj30ygrt diff --git a/addons/vest/vest-singleton.gd b/addons/vest/vest-singleton.gd new file mode 100644 index 0000000..f15030c --- /dev/null +++ b/addons/vest/vest-singleton.gd @@ -0,0 +1,234 @@ +@tool +extends Object +class_name Vest + +## Utility singleton for running tests. +## +## @tutorial(Printing custom messages): https://foxssake.github.io/vest/latest/user-guide/printing-custom-messages/ + +const Icons := preload("res://addons/vest/icons/vest-icons.gd") +const Timeout := preload("res://addons/vest/timeout.gd") + +const ValueMeasure := preload("res://addons/vest/measures/value-measure.gd") +const SumMeasure := preload("res://addons/vest/measures/sum-measure.gd") +const AverageMeasure := preload("res://addons/vest/measures/average-measure.gd") +const MinMeasure := preload("res://addons/vest/measures/min-measure.gd") +const MaxMeasure := preload("res://addons/vest/measures/max-measure.gd") + +const __ := preload("res://addons/vest/vest-internals.gd") + +const NEW_TEST_MIRROR_DIR_STRUCTURE := 0 +const NEW_TEST_NEXT_TO_SOURCE := 1 +const NEW_TEST_IN_ROOT := 2 + +static var _messages: Array[String] = [] +static var _scene_tree: SceneTree +static var _editor_interface_provider: Callable + +## Add a custom message to the current test. +## [br][br] +## Will be included in the test report. +static func message(p_message: String): + _messages.append(p_message) + +## Wait for [param condition] to be true, or until timeout. +## [br][br] +## This method will start a loop, each time waiting [param interval] seconds. +## On each iteration, [param condition] is called. If its result is true, or the +## [param duration] has been exceeded, the loop stops. +## [br][br] +## If [param duration] is 0., the loop may run infinitely, without timeout. +## [br][br] +## Returns [constant OK] if [param condition] was true.[br] +## Returns [constant ERR_TIMEOUT] if [param duration] was exceeded.[br] +## Returns [constant ERR_UNAVAILABLE] if no [SceneTree] is available. +static func until(condition: Callable, duration: float = 5., interval: float = 0.0) -> Error: + var deadline := time() + duration + + if not _scene_tree: + push_warning("Missing reference to SceneTree, will return immediately!") + return ERR_UNAVAILABLE + + while time() < deadline: + if condition.call(): + return OK + + if is_zero_approx(duration): await _scene_tree.process_frame + else: await _scene_tree.create_timer(interval).timeout + + return ERR_TIMEOUT + +## Create a Timeout. Timeouts can be reused for multiple wait operations. This +## is useful when a group of sequential tasks have a single shared deadline. +## [br][br] +## See [method until] for further info on the parameters. +static func timeout(duration: float = 5.0, interval: float = 0.0) -> Timeout: + return Timeout.new(duration, interval, _scene_tree) + +## Wait for [param duration] seconds. +## [br][br] +## Waiting for 0 seconds will wait until the next +## [signal SceneTree.process_frame]. +## [br][br] +## Returns [constant OK] on success.[br] +## Returns [constant ERR_UNAVAILABLE] if no [SceneTree] is available. +static func sleep(duration: float = 0.) -> Error: + if not _scene_tree: + push_warning("Missing reference to SceneTree, will return immediately!") + return ERR_UNAVAILABLE + + if is_zero_approx(duration): await _scene_tree.process_frame + else: await _scene_tree.create_timer(duration).timeout + return OK + +## Get the test runner's timeout in seconds. +## +## If the test runner doesn't finish running the tests in this time, it's +## considered stuck. This value is read from the project settings. +## [br][br] +## For more info, see the +## [url=https://foxssake.github.io/vest/latest/user-guide/project-settings/#runner-timeout]user +## guide[/url]. +static func get_runner_timeout() -> float: + return ProjectSettings.get_setting("vest/runner_timeout", 8.0) + +## Get the sources root for this project. +## +## This is directory is assumed root for all the implementations, and is used +## for deriving paths to test suites. This value is read from the project +## settings. +## [br][br] +## For more info, see the +## [url=https://foxssake.github.io/vest/latest/user-guide/project-settings/#sources-root]user +## guide[/url]. +static func get_sources_root() -> String: + return ProjectSettings.get_setting("vest/sources_root", "res://") + +## Get the test sources root for this project. +## +## This is directory is assumed root for all the test suites, and is used +## for deriving paths. This value is read from the project settings. +## [br][br] +## For more info, see the +## [url=https://foxssake.github.io/vest/latest/user-guide/project-settings/#tests-root]user +## guide[/url]. +static func get_tests_root() -> String: + return ProjectSettings.get_setting("vest/tests_root", "res://tests/") + +## Get the list of configured test name patterns. +## +## These are used to recognize and generate filenames for test suites. This +## value is read from the project settings. +## [br][br] +## For more info, see the +## [url=https://foxssake.github.io/vest/latest/user-guide/project-settings/#test-name-patterns]user +## guide[/url]. +static func get_test_name_patterns() -> Array[FilenamePattern]: + # TODO: Memoize + var pattern_strings := ProjectSettings.get_setting("vest/test_name_patterns") as PackedStringArray + var patterns := [] as Array[FilenamePattern] + patterns.assign(Array(pattern_strings).map(func(it): return FilenamePattern.new(it))) + + return patterns + +## Get the preference for new test location. +## +## This setting determines what path to suggest when creating new tests. +## [br][br] +## For more info, see the +## [url=https://foxssake.github.io/vest/latest/user-guide/project-settings/#new-test-location] +## user guide[/url]. +static func get_new_test_location_preference() -> int: + return ProjectSettings.get_setting("vest/new_test_location", NEW_TEST_MIRROR_DIR_STRUCTURE) + +## Get the current time, in seconds. +## [br][br] +## Used for benchmarking and waiting [method until] a condition becomes true. +static func time() -> float: + return Time.get_unix_time_from_system() + +## Traverse [param directory] recursively and call [param visitor] on each file. +static func traverse_directory(directory: String, visitor: Callable, max_iters: int = 131072) -> void: + var da := DirAccess.open(directory) + da.include_navigational = false + + var dir_queue := [directory] + var dir_history := [] + + # Put an upper limit on iterations, so we can't run into a runaway loop + for i in max_iters: + if dir_queue.is_empty(): + break + + var dir_at := dir_queue.pop_front() as String + da.change_dir(dir_at) + dir_history.append(dir_at) + + # Add directories to queue + for dir_name in da.get_directories(): + var dir := da.get_current_dir().path_join(dir_name) + if not dir_history.has(dir) and not dir_queue.has(dir): + dir_queue.append(dir) + + # Visit files + for file_name in da.get_files(): + var file := da.get_current_dir().path_join(file_name) + visitor.call(file) + +## Return all paths that match the glob [param pattern]. +## The matching is done using [method String.match]. +static func glob(pattern: String, max_iters: int = 131072) -> Array[String]: + if pattern.is_empty(): return [] + var results: Array[String] = [] + + var first_glob_index := mini( + (pattern.find("?") + pattern.length()) % pattern.length(), + (pattern.find("*") + pattern.length()) % pattern.length() + ) + var root := ( + pattern.get_base_dir() + if first_glob_index < 0 else + pattern.substr(0, first_glob_index).get_base_dir() + ) + + traverse_directory(root, func(path: String): + if path.match(pattern): + results.append(path) + , max_iters) + + return results + +## Returns a [SceneTree]. May be used for tests requiring more complex node +## setups. +static func get_tree() -> SceneTree: + return _scene_tree + +static func _clear_messages(): + _messages.clear() + +static func _get_messages() -> Array[String]: + return _messages.duplicate() + +static func _register_scene_tree(scene_tree: SceneTree): + _scene_tree = scene_tree + +# HACK: Godot script compiler fails in 4.2+ if the return type is an engine singleton +# The best we can do is return an object and assume the methods exist. +# Casting isn't possible either, also freaks out the script compiler. +static func _get_editor_interface() -> Object: + if Engine.get_version_info().hex >= 0x040200: + return Engine.get_singleton("EditorInterface") + elif _editor_interface_provider.is_valid(): + return _editor_interface_provider.call() + else: + return null + +static func _get_editor_scale() -> float: + var interface := _get_editor_interface() + if interface and interface.has_method("get_editor_scale"): + return interface.get_editor_scale() + else: + return 1.0 + +static func _register_editor_interface_provider(provider: Callable): + _editor_interface_provider = provider diff --git a/addons/vest/vest-singleton.gd.uid b/addons/vest/vest-singleton.gd.uid new file mode 100644 index 0000000..522a0db --- /dev/null +++ b/addons/vest/vest-singleton.gd.uid @@ -0,0 +1 @@ +uid://do0xvsfot2akq diff --git a/addons/vest/yaml-writer.gd b/addons/vest/yaml-writer.gd new file mode 100644 index 0000000..52e85e9 --- /dev/null +++ b/addons/vest/yaml-writer.gd @@ -0,0 +1,116 @@ +extends Object +class_name YAMLWriter + +## YAML serializer. +## +## Used for adding extra data to [TAPReporter] reports. +## [br][br] +## For custom types, implement [code]_to_yaml[/code]. It should return a basic +## type, which will be then serialized. +## [br][br] +## Alternatively, implement [code]_to_yaml_raw[/code], which should return the +## raw YAML string. +## [br][br] +## [b]Not recommended for use outside of generating test reports.[/b] + +## Convert a value to YAML. +static func stringify(what, indent: int = 0) -> String: + if indent > 0: + return _indented(stringify(what), indent) + + var type := typeof(what) + + if what == null: + return "null" + + if type == TYPE_INT or type == TYPE_FLOAT: + return str(what) + + if what is String or what is StringName or what is NodePath: + what = str(what) + if not what.contains("\n") and not what.contains("\"") and what.strip_edges() == what: + return what + return "\"%s\"" % what.c_escape() + + if _is_packed_array(what): + what = Array(what) + + if what is Array: + var result = (what + .map(func(it): return stringify(it)) + .map(func(it): return _indented_value(it, 2)) + .map(func(it): return "- " + it) + ) + return "\n".join(result) + + if what is Dictionary: + var result := PackedStringArray() + for key in what.keys(): + var value = what.get(key) + + var stringified_key := _stringify_key(key) + stringified_key = stringified_key + var stringified_value := _stringify_value(value) + + result.append("%s: %s" % [stringified_key, stringified_value]) + return "\n".join(result) + + if what is Object: + if what.has_method("_to_yaml"): + return stringify(what.call("_to_yaml", indent)) + elif what.has_method("_to_yaml_raw"): + return what.call("_to_yaml_raw", indent) + + return stringify(str(what)) + +static func _indented(what: String, level: int) -> String: + if level == 0: + return what + + var prefix := " ".repeat(level) + var lines := what.split("\n") + for i in range(lines.size()): + lines[i] = prefix + lines[i] + return "\n".join(lines) + +static func _indented_value(what: String, level: int) -> String: + if level == 0 or not what.contains("\n"): + return what + else: + return "\n" + _indented(what, level) + +static func _stringify_key(what) -> String: + match typeof(what): + TYPE_FLOAT: return str(what) + TYPE_INT: return str(what) + TYPE_STRING: + if RegEx.create_from_string("[\\s\"']").search(what): + return stringify(what) + else: + return what + _: return stringify(str(what)) + +static func _stringify_value(what) -> String: + if _is_complex(what): + return "\n" + stringify(what, 2) + return stringify(what) + +static func _is_complex(what) -> bool: + return ( + what is Array or + what is Dictionary or + what is Object + ) + +static func _is_packed_array(what) -> bool: + return ( + what is PackedByteArray or + what is PackedColorArray or + what is PackedFloat32Array or + what is PackedFloat64Array or + what is PackedInt32Array or + what is PackedInt64Array or + what is PackedStringArray or + what is PackedVector2Array or + what is PackedVector3Array + ) diff --git a/addons/vest/yaml-writer.gd.uid b/addons/vest/yaml-writer.gd.uid new file mode 100644 index 0000000..ac737d5 --- /dev/null +++ b/addons/vest/yaml-writer.gd.uid @@ -0,0 +1 @@ +uid://cr7fydyayonx8 diff --git a/client/assets/maps/test_range/test_range.tscn b/client/assets/maps/test_range/test_range.tscn deleted file mode 100644 index 18694d8..0000000 --- a/client/assets/maps/test_range/test_range.tscn +++ /dev/null @@ -1,248 +0,0 @@ -[gd_scene load_steps=12 format=3] - -; ============================================================================= -; test_range.tscn — Greybox Test Map -; ============================================================================= -; A simple open-area test map for validating movement, shooting, and networking. -; -; Layout: -; - 80×80 open area with flat grey floor -; - Low platform (center, 1 unit high, gold) -; - Medium platform (east, 2 units high, gold) -; - High platform (north-west, 3 units high, red) -; - Ramp from ground to low platform (yellow) -; - Enclosure/room (east) with doorway for indoor testing (blue-grey walls) -; - Spawn point (Marker3D) with group 'spawn_points' -; - DirectionalLight3D + WorldEnvironment -; -; Total geometry: ~132 tris (well under 500 budget) -; ============================================================================= - -[sub_resource type="Environment" id="1"] -background_mode = 0 -tonemap_mode = 0 -glow_enabled = false -ambient_light_color = Color(0.25, 0.25, 0.3, 1.0) -ambient_light_energy = 0.4 -ambient_light_sky_contribution = 0.0 - -[sub_resource type="StandardMaterial3D" id="2"] -albedo_color = Color(0.35, 0.35, 0.35, 1.0) -resource_name = "grey_floor" - -[sub_resource type="StandardMaterial3D" id="3"] -albedo_color = Color(0.8, 0.6, 0.2, 1.0) -resource_name = "gold_platform" - -[sub_resource type="StandardMaterial3D" id="4"] -albedo_color = Color(0.5, 0.5, 0.6, 1.0) -resource_name = "bluegrey_wall" - -[sub_resource type="StandardMaterial3D" id="5"] -albedo_color = Color(0.9, 0.2, 0.2, 1.0) -resource_name = "red_high" - -[sub_resource type="StandardMaterial3D" id="6"] -albedo_color = Color(0.3, 0.4, 0.3, 1.0) -resource_name = "green_floor" - -[sub_resource type="StandardMaterial3D" id="7"] -albedo_color = Color(0.7, 0.7, 0.3, 1.0) -resource_name = "yellow_ramp" - -[sub_resource type="BoxShape3D" id="8"] -size = Vector3(8, 4, 4) - -[sub_resource type="BoxShape3D" id="9"] -size = Vector3(8, 4, 4) - - -; === Root Node === - -[node name="TestRange" type="Node3D"] - - -; === Lighting === - -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("1") - -[node name="SunLight" type="DirectionalLight3D" parent="."] -transform = Transform3D(0.866, 0, -0.5, -0.354, 0.707, -0.612, 0.354, 0.707, 0.612, 0, 8, 0) -light_energy = 1.5 -light_indirect_energy = 0.8 -light_color = Color(1.0, 0.95, 0.9, 1.0) -shadow_enabled = true -directional_shadow_max_distance = 60.0 -directional_shadow_split_1 = 0.1 -directional_shadow_split_2 = 0.3 -directional_shadow_split_3 = 0.6 -directional_shadow_blend_splits = true - - -; === Spawn Points === - -[node name="SpawnPoint" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0.5, 0) -groups = ["spawn_points"] - - -; === CT Spawn Points (Counter-Terrorist) === - -[node name="CTSpawn_01" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0.5, -10) -groups = ["spawn_points_ct"] - -[node name="CTSpawn_02" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -25, 0.5, -15) -groups = ["spawn_points_ct"] - - -; === T Spawn Points (Terrorist) === - -[node name="TSpawn_01" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25, 0.5, 25) -groups = ["spawn_points_t"] - -[node name="TSpawn_02" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0.5, 20) -groups = ["spawn_points_t"] - - -; ============================================================================= -; Bomb Sites -; ============================================================================= -; BombsiteA — south-west area, 8×4m zone -; BombsiteB — north-east area, 8×4m zone -; Each has a CollisionShape3D (BoxShape3D) for overlap detection -; and a Marker3D child named "PlantPosition" marking the plant location. - -; --- Bombsite A --- - - -[node name="BombsiteA" type="Area3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20, 1.0, -5) -collision_layer = 0 -collision_mask = 0 -groups = ["bomb_sites"] - -[node name="CollisionShape3D" type="CollisionShape3D" parent="BombsiteA"] -shape = SubResource("8") - -[node name="PlantPosition" type="Marker3D" parent="BombsiteA"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -1) - -; --- Bombsite B --- - - -[node name="BombsiteB" type="Area3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 1.0, 20) -collision_layer = 0 -collision_mask = 0 -groups = ["bomb_sites"] - -[node name="PlantPosition" type="Marker3D" parent="BombsiteB"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2) - -[node name="CollisionShape3D" type="CollisionShape3D" parent="BombsiteB"] -shape = SubResource("9") - - -; === Open Area Floor (80×80) === - -[node name="Floor" type="CSGBox3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) -size = Vector3(80, 0.5, 80) -material = SubResource("2") -use_collision = true - - -; === Low Platform (center, 1 unit high) === -; 8×8 platform, top at y=2, bottom at y=0, centered at origin - -[node name="LowPlatform" type="CSGBox3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.0, 0) -size = Vector3(8, 2, 8) -material = SubResource("3") -use_collision = true - - -; === Medium Platform (east, 2 units high) === -; 6×6 platform, top at y=3, bottom at y=1 — jump-up from low platform height - -[node name="MediumPlatform" type="CSGBox3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 2.0, 10) -size = Vector3(6, 2, 6) -material = SubResource("3") -use_collision = true - - -; === High Platform (north-west, 3 units high) === -; 3×3 small platform, top at y=4 — requires sprint-jump to reach - -[node name="HighPlatform" type="CSGBox3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20, 3.0, -15) -size = Vector3(3, 2, 3) -material = SubResource("5") -use_collision = true - - -; === Ramp (south of center, leads ground → low platform top) === -; Tilted ~20° around X axis, 6 units long along Z. -; South end near ground, north end meets low platform top (y=2). - -[node name="Ramp" type="CSGBox3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 0.940, -0.342, 0, 0.342, 0.940, 0, 1.0, 5) -size = Vector3(6, 0.2, 6) -material = SubResource("7") -use_collision = true - - -; ============================================================================= -; Enclosure — Indoor Testing Room -; ============================================================================= -; 12×12 interior room, 4 units tall, with a 2-unit doorway on the south face. -; Centered at (30, 0, 30). - -[node name="Enclosure" type="Node3D" parent="."] - -[node name="RoomFloor" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0.25, 30) -size = Vector3(12, 0.5, 12) -material = SubResource("6") -use_collision = true - -; North wall (z = 24) -[node name="Wall_N" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 2.0, 24.25) -size = Vector3(12, 4, 0.5) -material = SubResource("4") -use_collision = true - -; South wall left segment (doorway gap from x=29 to x=31) -[node name="Wall_S_Left" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.5, 2.0, 35.75) -size = Vector3(5, 4, 0.5) -material = SubResource("4") -use_collision = true - -; South wall right segment -[node name="Wall_S_Right" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.5, 2.0, 35.75) -size = Vector3(5, 4, 0.5) -material = SubResource("4") -use_collision = true - -; West wall (x = 24) -[node name="Wall_W" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.25, 2.0, 30) -size = Vector3(0.5, 4, 12) -material = SubResource("4") -use_collision = true - -; East wall (x = 36) -[node name="Wall_E" type="CSGBox3D" parent="Enclosure"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 35.75, 2.0, 30) -size = Vector3(0.5, 4, 12) -material = SubResource("4") -use_collision = true diff --git a/client/assets/materials/accent_team_blue.tres b/client/assets/materials/accent_team_blue.tres deleted file mode 100644 index 6d7c279..0000000 --- a/client/assets/materials/accent_team_blue.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_blue/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_blue/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_blue/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_blue/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.3 -roughness = 0.35 -roughness_texture = ExtResource("3") -metallic = 0.5 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(1.0, 1.0, 1.0) diff --git a/client/assets/materials/accent_team_red.tres b/client/assets/materials/accent_team_red.tres deleted file mode 100644 index 68a3d58..0000000 --- a/client/assets/materials/accent_team_red.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_red/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_red/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_red/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/accent_team_red/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.3 -roughness = 0.35 -roughness_texture = ExtResource("3") -metallic = 0.5 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(1.0, 1.0, 1.0) diff --git a/client/assets/materials/floor_concrete_01.tres b/client/assets/materials/floor_concrete_01.tres deleted file mode 100644 index 3d2ade4..0000000 --- a/client/assets/materials/floor_concrete_01.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/floor_concrete_01/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_concrete_01/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_concrete_01/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_concrete_01/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.8 -roughness = 0.9 -roughness_texture = ExtResource("3") -metallic = 0.0 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(2.0, 2.0, 1.0) diff --git a/client/assets/materials/floor_tile_01.tres b/client/assets/materials/floor_tile_01.tres deleted file mode 100644 index 4cc02be..0000000 --- a/client/assets/materials/floor_tile_01.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/floor_tile_01/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_tile_01/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_tile_01/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/floor_tile_01/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 1.0 -roughness = 0.6 -roughness_texture = ExtResource("3") -metallic = 0.0 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(2.0, 2.0, 1.0) diff --git a/client/assets/materials/generate_materials.py b/client/assets/materials/generate_materials.py deleted file mode 100644 index 1bec1ef..0000000 --- a/client/assets/materials/generate_materials.py +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/env python3 -""" -Generate Godot 4 .tres material resource files for the modular art kit. -Godot 4 text resource format: - [ext_resource type="Texture2D" path="res://..." id="1"] - [resource] - property = value -""" - -import os - -MATERIALS_DIR = os.path.expanduser("/home/oplabs/tactical-shooter/client/assets/materials") -TEX_BASE = "res://assets/textures" - - -def make_tres(name, props): - textures = props.get("textures", {}) - load_steps = 1 + len(textures) - - lines = [ - f'[gd_resource type="StandardMaterial3D" load_steps={load_steps} format=3]', - ] - - ext_id = 1 - ext_map = {} - for slot, rel_path in textures.items(): - eid = str(ext_id) - path = f"{TEX_BASE}/{name}/{rel_path}" - lines.append(f'[ext_resource type="Texture2D" path="{path}" id="{eid}"]') - ext_map[slot] = eid - ext_id += 1 - - lines.append("") - lines.append("[resource]") - - # Albedo - if "albedo" in ext_map: - lines.append(f'albedo_texture = ExtResource("{ext_map["albedo"]}")') - - # Normal map - if "normal" in ext_map: - lines.append("normal_enabled = true") - lines.append(f'normal_texture = ExtResource("{ext_map["normal"]}")') - if "normal_scale" in props: - lines.append(f"normal_scale = {props['normal_scale']}") - - # Roughness - lines.append(f"roughness = {props.get('roughness', 0.5)}") - if "roughness" in ext_map: - lines.append(f'roughness_texture = ExtResource("{ext_map["roughness"]}")') - - # Metallic - lines.append(f"metallic = {props.get('metallic', 0.0)}") - if "metallic" in ext_map: - lines.append(f'metallic_texture = ExtResource("{ext_map["metallic"]}")') - - # Texture filter (1 = linear) - if "texture_filter" in props: - lines.append(f"texture_filter = {props['texture_filter']}") - - # UV tiling - if "uv_scale" in props: - s = props["uv_scale"] - lines.append(f'uv1_scale = Vector3({s[0]}, {s[1]}, {s[2]})') - - content = "\n".join(lines) + "\n" - path = os.path.join(MATERIALS_DIR, f"{name}.tres") - with open(path, "w") as f: - f.write(content) - print(f" Created {name}.tres ({len(textures)} textures, {load_steps} steps)") - - -def generate(): - os.makedirs(MATERIALS_DIR, exist_ok=True) - print("Generating material .tres files...") - - # 1 - Wall concrete 01: primary wall, clean light concrete - make_tres("wall_concrete_01", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.85, "metallic": 0.0, "normal_scale": 0.5, - "texture_filter": 1, - "uv_scale": (1.0, 1.0, 1.0), - }) - - # 2 - Wall concrete 02: darker accent concrete - make_tres("wall_concrete_02", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.75, "metallic": 0.0, "normal_scale": 0.4, - "texture_filter": 1, - "uv_scale": (1.0, 1.0, 1.0), - }) - - # 3 - Floor tile 01: ceramic tile interior - make_tres("floor_tile_01", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.6, "metallic": 0.0, "normal_scale": 1.0, - "texture_filter": 1, - "uv_scale": (2.0, 2.0, 1.0), # repeat to show tile grid - }) - - # 4 - Floor concrete 01: industrial floor - make_tres("floor_concrete_01", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.9, "metallic": 0.0, "normal_scale": 0.8, - "texture_filter": 1, - "uv_scale": (2.0, 2.0, 1.0), - }) - - # 5 - Metal structural 01: structural beams - make_tres("metal_structural_01", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.3, "metallic": 1.0, "normal_scale": 0.3, - "texture_filter": 1, - "uv_scale": (1.0, 1.0, 1.0), - }) - - # 6 - Accent team blue: CT-side colored panels - make_tres("accent_team_blue", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.35, "metallic": 0.5, "normal_scale": 0.3, - "texture_filter": 1, - "uv_scale": (1.0, 1.0, 1.0), - }) - - # 7 - Accent team red: T-side colored panels - make_tres("accent_team_red", { - "textures": {"albedo": "basecolor.png", "normal": "normal.png", - "roughness": "roughness.png", "metallic": "metallic.png"}, - "roughness": 0.35, "metallic": 0.5, "normal_scale": 0.3, - "texture_filter": 1, - "uv_scale": (1.0, 1.0, 1.0), - }) - - print("\nDone — 7 material .tres files created.") - - -if __name__ == "__main__": - generate() diff --git a/client/assets/materials/metal_structural_01.tres b/client/assets/materials/metal_structural_01.tres deleted file mode 100644 index 0d44b63..0000000 --- a/client/assets/materials/metal_structural_01.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/metal_structural_01/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/metal_structural_01/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/metal_structural_01/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/metal_structural_01/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.3 -roughness = 0.3 -roughness_texture = ExtResource("3") -metallic = 1.0 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(1.0, 1.0, 1.0) diff --git a/client/assets/materials/wall_concrete_01.tres b/client/assets/materials/wall_concrete_01.tres deleted file mode 100644 index b6fe0ff..0000000 --- a/client/assets/materials/wall_concrete_01.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_01/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_01/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_01/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_01/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.5 -roughness = 0.85 -roughness_texture = ExtResource("3") -metallic = 0.0 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(1.0, 1.0, 1.0) diff --git a/client/assets/materials/wall_concrete_02.tres b/client/assets/materials/wall_concrete_02.tres deleted file mode 100644 index 850f942..0000000 --- a/client/assets/materials/wall_concrete_02.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="StandardMaterial3D" load_steps=5 format=3] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_02/basecolor.png" id="1"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_02/normal.png" id="2"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_02/roughness.png" id="3"] -[ext_resource type="Texture2D" path="res://assets/textures/wall_concrete_02/metallic.png" id="4"] - -[resource] -albedo_texture = ExtResource("1") -normal_enabled = true -normal_texture = ExtResource("2") -normal_scale = 0.4 -roughness = 0.75 -roughness_texture = ExtResource("3") -metallic = 0.0 -metallic_texture = ExtResource("4") -texture_filter = 1 -uv1_scale = Vector3(1.0, 1.0, 1.0) diff --git a/client/assets/scenes/modular/accent_blue_panel.tscn b/client/assets/scenes/modular/accent_blue_panel.tscn deleted file mode 100644 index 9f4a39e..0000000 --- a/client/assets/scenes/modular/accent_blue_panel.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/accent_team_blue.tres" id="1"] - -[node name="BluePanel01" type="CSGBox3D"] -size = Vector3(1.28, 0.64, 0.08) -material = ExtResource("1") -use_collision = true -visibility_range_end = 20.0 -visibility_range_end_margin = 2.0 diff --git a/client/assets/scenes/modular/accent_red_panel.tscn b/client/assets/scenes/modular/accent_red_panel.tscn deleted file mode 100644 index 600a87e..0000000 --- a/client/assets/scenes/modular/accent_red_panel.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/accent_team_red.tres" id="1"] - -[node name="RedPanel01" type="CSGBox3D"] -size = Vector3(1.28, 0.64, 0.08) -material = ExtResource("1") -use_collision = true -visibility_range_end = 20.0 -visibility_range_end_margin = 2.0 diff --git a/client/assets/scenes/modular/art_kit.gd b/client/assets/scenes/modular/art_kit.gd deleted file mode 100644 index 996a95c..0000000 --- a/client/assets/scenes/modular/art_kit.gd +++ /dev/null @@ -1,160 +0,0 @@ -@tool -extends Node - -# ============================================================================= -# art_kit.gd — Modular Art Kit Factory -# ============================================================================= -# Provides factory methods for spawning modular environment pieces and a -# preview catalogue for map builders. -# -# Each piece is a standalone .tscn under pieces/ with: -# - CSG shapes (Box3D, Cylinder3D, Polygon3D, Combiner3D) -# - Solid-color StandardMaterial3D placeholders (roughness 0.8, metallic 0.0) -# - Collision enabled (use_collision = true or StaticBody3D + CollisionShape3D) -# - < 200 tris each -# -# Usage: -# var piece = ArtKit.spawn_piece("crate", parent_node) -# var cat = ArtKit.preview_catalogue() -# var stack = ArtKit.random_crate_layout(3, 2) # returns parent Node3D -# ============================================================================= - -const PIECES_DIR := "res://client/assets/scenes/modular/pieces/" - -# Catalogue definition: name, description, filename (without .tscn) -const CATALOGUE: Array[Dictionary] = [ - { - "name": "floor_tile", - "description": "2×2×0.2m concrete slab — grey", - "file": "floor_tile" - }, - { - "name": "wall_segment", - "description": "4×0.2×3m wall panel — blue-grey", - "file": "wall_segment" - }, - { - "name": "corner_wall", - "description": "L-shaped corner piece (2m each leg) — blue-grey", - "file": "corner_wall" - }, - { - "name": "pillar", - "description": "0.3×3×0.3m column — dark grey", - "file": "pillar" - }, - { - "name": "crate", - "description": "1×1×1m storage box — brown/tan", - "file": "crate" - }, - { - "name": "barrel", - "description": "0.6m radius × 1m tall cylinder — red", - "file": "barrel" - }, - { - "name": "cover_wall", - "description": "2×0.2×1.3m low wall (crouch-height cover) — grey", - "file": "cover_wall" - }, - { - "name": "ramp", - "description": "2×2m, 30° incline ramp — yellow", - "file": "ramp" - }, - { - "name": "stairs", - "description": "3-step staircase (2m wide, 0.25m rise per step) — grey", - "file": "stairs" - }, - { - "name": "window_frame", - "description": "4×3m wall with 2×2m opening — blue-grey", - "file": "window_frame" - } -] - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Spawns a piece by name, adds it as a child of `parent`, and returns it. -## Returns null if the piece name is unknown or the scene fails to load. -static func spawn_piece(piece_name: String, parent: Node) -> Node3D: - var entry := _find_entry(piece_name) - if entry.is_empty(): - push_error("ArtKit: Unknown piece '%s'. Use preview_catalogue() to see available pieces." % piece_name) - return null - - var path := PIECES_DIR + entry.file + ".tscn" - var scene := load(path) - if scene == null: - push_error("ArtKit: Failed to load scene at '%s'." % path) - return null - - var instance: Node3D = scene.instantiate() - parent.add_child(instance) - instance.owner = parent if not Engine.is_editor_hint() else _get_editor_owner(parent) - return instance - - -## Returns an array of { name, description, path } for all available pieces. -static func preview_catalogue() -> Array[Dictionary]: - var result: Array[Dictionary] = [] - for entry in CATALOGUE: - result.append({ - "name": entry.name, - "description": entry.description, - "path": PIECES_DIR + entry.file + ".tscn" - }) - return result - - -## Generates a random stack of crates for quick testing layouts. -## `width` — number of crates along X (default 3) -## `height` — number of crates stacked vertically (default 2) -## Returns a Node3D containing the crate instances. -static func random_crate_layout(width: int = 3, height: int = 2) -> Node3D: - var root := Node3D.new() - root.name = "CrateLayout_%dx%d" % [width, height] - - var crate_scene := load(PIECES_DIR + "crate.tscn") - if crate_scene == null: - push_error("ArtKit: Could not load crate scene.") - return root - - for y in range(height): - for x in range(width): - # Add slight random offset for natural look (±0.05m) - var offset_x := randf_range(-0.05, 0.05) - var offset_z := randf_range(-0.05, 0.05) - # Full rotation in 90° increments - var rot_y := randi() % 4 * 90.0 - - var crate: Node3D = crate_scene.instantiate() - crate.position = Vector3(x * 1.0 + offset_x, y * 1.0 + 0.5, offset_z) - crate.rotation_degrees = Vector3(0, rot_y, 0) - root.add_child(crate) - - return root - - -# --------------------------------------------------------------------------- -# Internal helpers -# --------------------------------------------------------------------------- - -static func _find_entry(piece_name: String) -> Dictionary: - for entry in CATALOGUE: - if entry.name == piece_name: - return entry - return {} - - -## Returns the editor's top-level owner so new nodes are treated as part of the scene. -static func _get_editor_owner(node: Node) -> Node: - var owner = node - while owner and owner.owner: - owner = owner.owner - return owner diff --git a/client/assets/scenes/modular/art_kit.gd.uid b/client/assets/scenes/modular/art_kit.gd.uid deleted file mode 100644 index 298b6d4..0000000 --- a/client/assets/scenes/modular/art_kit.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dnopn0wj58j83 diff --git a/client/assets/scenes/modular/beam_01.tscn b/client/assets/scenes/modular/beam_01.tscn deleted file mode 100644 index 9b803cb..0000000 --- a/client/assets/scenes/modular/beam_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/metal_structural_01.tres" id="1"] - -[node name="Beam01" type="CSGBox3D"] -size = Vector3(3.84, 0.32, 0.32) -material = ExtResource("1") -use_collision = true -visibility_range_end = 30.0 -visibility_range_end_margin = 3.0 diff --git a/client/assets/scenes/modular/floor_tile_01.tscn b/client/assets/scenes/modular/floor_tile_01.tscn deleted file mode 100644 index c066c37..0000000 --- a/client/assets/scenes/modular/floor_tile_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/floor_concrete_01.tres" id="1"] - -[node name="FloorTile01" type="CSGBox3D"] -size = Vector3(2.56, 0.08, 2.56) -material = ExtResource("1") -use_collision = true -visibility_range_end = 60.0 -visibility_range_end_margin = 10.0 diff --git a/client/assets/scenes/modular/floor_tile_ceramic_01.tscn b/client/assets/scenes/modular/floor_tile_ceramic_01.tscn deleted file mode 100644 index bb70091..0000000 --- a/client/assets/scenes/modular/floor_tile_ceramic_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/floor_tile_01.tres" id="1"] - -[node name="FloorTileCeramic01" type="CSGBox3D"] -size = Vector3(2.56, 0.08, 2.56) -material = ExtResource("1") -use_collision = true -visibility_range_end = 60.0 -visibility_range_end_margin = 10.0 diff --git a/client/assets/scenes/modular/generate_scenes.py b/client/assets/scenes/modular/generate_scenes.py deleted file mode 100644 index 9282820..0000000 --- a/client/assets/scenes/modular/generate_scenes.py +++ /dev/null @@ -1,330 +0,0 @@ -#!/usr/bin/env python3 -""" -Generate Godot 4 .tscn modular kit scenes using CSG nodes. -All dimensions in Godot meters, grid base = 2.56m (256cm). -""" - -import os - -SCENES_DIR = os.path.expanduser("/home/oplabs/tactical-shooter/client/assets/scenes/modular") -MAT_BASE = "res://assets/materials" - -# Grid constants -U = 2.56 # 1 modular unit (256cm) -W = 0.16 # wall thickness (16cm) -F = 0.08 # floor thickness (8cm) - -# Material name shortcuts -MAT_WALL = "wall_concrete_01" -MAT_WALL2 = "wall_concrete_02" -MAT_FLOOR = "floor_concrete_01" -MAT_FLOOR_TILE = "floor_tile_01" -MAT_METAL = "metal_structural_01" -MAT_BLUE = "accent_team_blue" -MAT_RED = "accent_team_red" - - -def tsnode(name, type_name, parent=".", props=None): - """Build a [node] entry for .tscn format.""" - lines = [f'[node name="{name}" type="{type_name}" parent="{parent}"]'] - if props: - for k, v in props.items(): - lines.append(f"{k} = {v}") - return "\n".join(lines) - - -# ── Wall pieces ────────────────────────────────────────────────────────── - -def build_wall_straight(): - """Straight wall — 2.56m x 2.56m x 0.16m.""" - lines = [ - '[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL}.tres" id="1"]', - '', - tsnode("WallStraight01", "CSGBox3D", ".", { - "size": f"Vector3({U}, {U}, {W})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -def build_wall_corner(): - """L-corner — two CSG boxes in a CSGCombiner3D.""" - lines = [ - '[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL}.tres" id="1"]', - '', - tsnode("WallCorner01", "CSGCombiner3D", ".", {"use_collision": "false"}), - tsnode("WallA", "CSGBox3D", "WallCorner01", { - "operation": "0", - "size": f"Vector3({U}, {U}, {W})", - "material": 'ExtResource("1")', - "use_collision": "true", - "transform": f"Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, {W/2})", - }), - tsnode("WallB", "CSGBox3D", "WallCorner01", { - "operation": "0", - "size": f"Vector3({W}, {U}, {U})", - "material": 'ExtResource("1")', - "use_collision": "true", - "transform": f"Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, {W/2}, 0, 0)", - }), - ] - return "\n".join(lines) + "\n" - - -def build_wall_doorway(): - """Wall with door opening (0.80m x 2.00m cutout).""" - dw, dh = 0.80, 2.00 - off_y = dh/2 - U/2 # bottom-aligned - lines = [ - '[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL}.tres" id="1"]', - '', - tsnode("WallDoorway01", "CSGCombiner3D", ".", {"use_collision": "false"}), - tsnode("MainWall", "CSGBox3D", "WallDoorway01", { - "operation": "0", - "size": f"Vector3({U}, {U}, {W})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - tsnode("DoorCutout", "CSGBox3D", "WallDoorway01", { - "operation": "1", - "size": f"Vector3({dw}, {dh}, {W + 0.04})", - "use_collision": "true", - "transform": f"Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, {off_y}, 0)", - }), - ] - return "\n".join(lines) + "\n" - - -def build_wall_window(): - """Wall with window opening (1.20m x 0.80m cutout, centered slightly above mid).""" - ww, wh = 1.20, 0.80 - off_y = 0.30 - lines = [ - '[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL}.tres" id="1"]', - '', - tsnode("WallWindow01", "CSGCombiner3D", ".", {"use_collision": "false"}), - tsnode("MainWall", "CSGBox3D", "WallWindow01", { - "operation": "0", - "size": f"Vector3({U}, {U}, {W})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - tsnode("WindowCutout", "CSGBox3D", "WallWindow01", { - "operation": "1", - "size": f"Vector3({ww}, {wh}, {W + 0.04})", - "use_collision": "true", - "transform": f"Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, {off_y}, 0)", - }), - ] - return "\n".join(lines) + "\n" - - -def build_wall_endcap(): - """Narrow edge cap — 0.32m x 2.56m x 0.16m.""" - lines = [ - '[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL}.tres" id="1"]', - '', - tsnode("WallEndcap01", "CSGBox3D", ".", { - "size": "Vector3(0.32, 2.56, 0.16)", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -# ── Floor pieces ───────────────────────────────────────────────────────── - -def build_floor_tile(): - """2.56m x 0.08m x 2.56m floor slab — industrial concrete.""" - lines = [ - f'[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_FLOOR}.tres" id="1"]', - '', - tsnode("FloorTile01", "CSGBox3D", ".", { - "size": f"Vector3({U}, {F}, {U})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -def build_floor_tile_ceramic(): - """Floor slab with ceramic tile material.""" - lines = [ - f'[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_FLOOR_TILE}.tres" id="1"]', - '', - tsnode("FloorTileCeramic01", "CSGBox3D", ".", { - "size": f"Vector3({U}, {F}, {U})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -# ── Structural ─────────────────────────────────────────────────────────── - -def build_pillar(): - """Square pillar — 0.64m x 2.56m x 0.64m.""" - lines = [ - f'[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_WALL2}.tres" id="1"]', - '', - tsnode("Pillar01", "CSGBox3D", ".", { - "size": "Vector3(0.64, 2.56, 0.64)", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -def build_beam(): - """Ceiling beam — 3.84m x 0.32m x 0.32m metal.""" - lines = [ - f'[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{MAT_METAL}.tres" id="1"]', - '', - tsnode("Beam01", "CSGBox3D", ".", { - "size": f"Vector3({U * 1.5}, 0.32, 0.32)", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -# ── Accent panels ──────────────────────────────────────────────────────── - -def build_accent_panel(name, mat_name, color_label): - """A thin accent panel with team color material.""" - lines = [ - f'[gd_scene load_steps=2 format=3]', - f'[ext_resource type="Material" path="{MAT_BASE}/{mat_name}.tres" id="1"]', - '', - tsnode(f"{color_label}Panel01", "CSGBox3D", ".", { - "size": f"Vector3(1.28, 0.64, {W * 0.5})", - "material": 'ExtResource("1")', - "use_collision": "true", - }), - ] - return "\n".join(lines) + "\n" - - -# ── Kit demo scene ─────────────────────────────────────────────────────── - -def build_kit_demo(): - """Showcase scene — places every modular piece on a 3m-spaced strip.""" - # Each entry: (scene_name, ext_material_name, label_for_node) - entries = [ - ("wall_straight_01", MAT_WALL, "Wall01"), - ("wall_corner_01", MAT_WALL, "Corner01"), - ("wall_doorway_01", MAT_WALL, "Doorway01"), - ("wall_window_01", MAT_WALL, "Window01"), - ("wall_endcap_01", MAT_WALL, "Endcap01"), - ("floor_tile_01", MAT_FLOOR, "Floor01"), - ("floor_tile_ceramic_01", MAT_FLOOR_TILE, "FloorCeramic01"), - ("pillar_01", MAT_WALL2, "Pillar01"), - ("beam_01", MAT_METAL, "Beam01"), - ("accent_blue_panel", MAT_BLUE, "BluePanel01"), - ("accent_red_panel", MAT_RED, "RedPanel01"), - ] - - # All unique materials used - all_mats = sorted(set(e[1] for e in entries)) - mat_scene_map = {} # mat_name -> {scene_name -> ext_id} - scene_map = {} # scene_name -> ext_id - - ext_id_counter = 1 - lines = [] - - # First pass: assign ext ids to scenes (PackedScene) and materials - scene_ext_ids = {} - mat_ext_ids = {} - for scene_name, mat_name, _ in entries: - if scene_name not in scene_ext_ids: - scene_ext_ids[scene_name] = ext_id_counter - ext_id_counter += 1 - if mat_name not in mat_ext_ids: - mat_ext_ids[mat_name] = ext_id_counter - ext_id_counter += 1 - - total_ext = len(scene_ext_ids) + len(mat_ext_ids) - load_steps = total_ext + 1 - - lines = [f'[gd_scene load_steps={load_steps} format=3]'] - - # Ext resources: scenes - for scene_name, eid in scene_ext_ids.items(): - lines.append( - f'[ext_resource type="PackedScene" ' - f'path="res://assets/scenes/modular/{scene_name}.tscn" id="{eid}"]' - ) - - # Ext resources: materials (for any inline nodes) - for mat_name, eid in mat_ext_ids.items(): - lines.append( - f'[ext_resource type="Material" ' - f'path="{MAT_BASE}/{mat_name}.tres" id="{eid}"]' - ) - - lines.append("") - lines.append('[node name="KitDemo" type="Node3D"]') - lines.append("") - - x = -5.0 - for scene_name, mat_name, label in entries: - scene_eid = scene_ext_ids[scene_name] - lines.append( - f'[node name="{label}" type="Node3D" parent="."]' - ) - lines.append(f'instance = ExtResource("{scene_eid}")') - lines.append(f'transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, {x:.1f}, 0, 0)') - lines.append("") - x += 3.0 - - return "\n".join(lines) + "\n" - - -# ── Main ───────────────────────────────────────────────────────────────── - -SCENE_BUILDERS = { - "wall_straight_01": build_wall_straight, - "wall_corner_01": build_wall_corner, - "wall_doorway_01": build_wall_doorway, - "wall_window_01": build_wall_window, - "wall_endcap_01": build_wall_endcap, - "floor_tile_01": build_floor_tile, - "floor_tile_ceramic_01": build_floor_tile_ceramic, - "pillar_01": build_pillar, - "beam_01": build_beam, - "accent_blue_panel": lambda: build_accent_panel("accent_blue_panel", MAT_BLUE, "Blue"), - "accent_red_panel": lambda: build_accent_panel("accent_red_panel", MAT_RED, "Red"), - "kit_demo": build_kit_demo, -} - - -def main(): - os.makedirs(SCENES_DIR, exist_ok=True) - print("Generating modular .tscn scenes...") - for name, builder in SCENE_BUILDERS.items(): - content = builder() - path = os.path.join(SCENES_DIR, f"{name}.tscn") - with open(path, "w") as f: - f.write(content) - print(f" Created {name}.tscn ({len(content)} bytes)") - print(f"\nDone — {len(SCENE_BUILDERS)} .tscn files") - - -if __name__ == "__main__": - main() diff --git a/client/assets/scenes/modular/kit_demo.gd b/client/assets/scenes/modular/kit_demo.gd deleted file mode 100644 index e69349c..0000000 --- a/client/assets/scenes/modular/kit_demo.gd +++ /dev/null @@ -1,48 +0,0 @@ -@tool -extends Node3D - -# Provides baked lighting configuration guidance in the editor output panel. -# LightmapGI baking is editor-only in Godot 4.7 — use the Bake button. -# -# To bake: -# 1. Open this scene in the Godot editor -# 2. Select the LightmapGI node in the Scene dock -# 3. Click "Bake Lightmap" in the Inspector toolbar (top of inspector) -# -# Or: Scene menu > Bake LightmapGI (Ctrl+Shift+B) - -func _ready(): - if not Engine.is_editor_hint(): - return - - var lightmap = _find_lightmap_gi() - if not lightmap: - push_error("KitDemo: No LightmapGI node found in scene!") - return - - if lightmap.light_data != null: - print("KitDemo: Lightmap baked ✓") - print(" To re-bake: Select LightmapGI → 'Bake Lightmap' button") - return - - print("KitDemo: LightmapGI configured but not baked.") - print(" To bake: Select LightmapGI → 'Bake Lightmap' in Inspector") - print(" Or: Scene menu → Bake LightmapGI (Ctrl+Shift+B)") - print("") - match lightmap.quality: - 0: print(" Quality: Low") - 1: print(" Quality: Medium") - 2: print(" Quality: High") - 3: print(" Quality: Ultra") - print(" Bounces: ", lightmap.bounces) - print(" Texel Scale: ", lightmap.texel_scale) - print(" Max Texture Size: ", lightmap.max_texture_size) - print(" Interior: ", lightmap.interior) - print(" Denoiser: ", lightmap.is_using_denoiser()) - - -func _find_lightmap_gi() -> LightmapGI: - for child in get_children(): - if child is LightmapGI: - return child - return null diff --git a/client/assets/scenes/modular/kit_demo.gd.uid b/client/assets/scenes/modular/kit_demo.gd.uid deleted file mode 100644 index f708be0..0000000 --- a/client/assets/scenes/modular/kit_demo.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dwuuyukbsetmm diff --git a/client/assets/scenes/modular/kit_demo.tscn b/client/assets/scenes/modular/kit_demo.tscn deleted file mode 100644 index d3cc6b0..0000000 --- a/client/assets/scenes/modular/kit_demo.tscn +++ /dev/null @@ -1,174 +0,0 @@ -[gd_scene load_steps=21 format=3] - -; === External Resources (modular kit pieces) === -[ext_resource type="PackedScene" path="res://assets/scenes/modular/wall_straight_01.tscn" id="1"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/wall_corner_01.tscn" id="3"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/wall_doorway_01.tscn" id="4"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/wall_window_01.tscn" id="5"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/wall_endcap_01.tscn" id="6"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/floor_tile_01.tscn" id="7"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/floor_tile_ceramic_01.tscn" id="9"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/pillar_01.tscn" id="11"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/beam_01.tscn" id="13"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/accent_blue_panel.tscn" id="15"] -[ext_resource type="PackedScene" path="res://assets/scenes/modular/accent_red_panel.tscn" id="17"] - -; === External Resources (materials) === -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="2"] -[ext_resource type="Material" path="res://assets/materials/floor_concrete_01.tres" id="8"] -[ext_resource type="Material" path="res://assets/materials/floor_tile_01.tres" id="10"] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_02.tres" id="12"] -[ext_resource type="Material" path="res://assets/materials/metal_structural_01.tres" id="14"] -[ext_resource type="Material" path="res://assets/materials/accent_team_blue.tres" id="16"] -[ext_resource type="Material" path="res://assets/materials/accent_team_red.tres" id="18"] -; === Script === -[ext_resource type="Script" path="res://assets/scenes/modular/kit_demo.gd" id="19"] - -; === Subresources === -[sub_resource type="Environment" id="Env"] -background_mode = 0 -tonemap_mode = 0 -glow_enabled = false -ambient_light_color = Color(0.25, 0.25, 0.3, 1.0) -ambient_light_energy = 0.4 -ambient_light_sky_contribution = 0.0 - -; === Scene Root === -[node name="KitDemo" type="Node3D"] -script = ExtResource("19") - -; ============ FLOOR ============ -; 2x2 grid of floor tiles (5.12 x 5.12) -[node name="FloorNW" type="Node3D" parent="."] -instance = ExtResource("7") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28, 0, -1.28) - -[node name="FloorNE" type="Node3D" parent="."] -instance = ExtResource("7") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.28, 0, -1.28) - -[node name="FloorSW" type="Node3D" parent="."] -instance = ExtResource("9") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28, 0, 1.28) - -[node name="FloorSE" type="Node3D" parent="."] -instance = ExtResource("7") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.28, 0, 1.28) - -; ============ WALLS ============ - -; --- South Wall (Z=2.56, along X from -2.56 to +2.56) --- -; Straight segment left of doorway -[node name="SouthWall" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28, 0, 2.56) - -; Doorway segment right -[node name="SouthDoorway" type="Node3D" parent="."] -instance = ExtResource("4") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.28, 0, 2.56) - -; --- North Wall (Z=-2.56, along X from -2.56 to +2.56) --- -; Window segment left -[node name="NorthWindow" type="Node3D" parent="."] -instance = ExtResource("5") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28, 0, -2.56) - -; Straight segment right -[node name="NorthWall" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.28, 0, -2.56) - -; --- West Wall (X=-2.56, along Z from -2.56 to +2.56) --- -; Rotated 90° Y so width runs along Z instead of X -; Basis: local X → global -Z, local Z → global X -[node name="WestLower" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -2.56, 0, -1.28) - -[node name="WestUpper" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -2.56, 0, 1.28) - -; --- East Wall (X=2.56, along Z from -2.56 to +2.56) --- -; Rotated 90° Y so width runs along Z, thickness along -X -[node name="EastLower" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 2.56, 0, -1.28) - -[node name="EastUpper" type="Node3D" parent="."] -instance = ExtResource("1") -transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 2.56, 0, 1.28) - -; ============ INTERIOR ============ - -; Pillar at room center -[node name="Pillar" type="Node3D" parent="."] -instance = ExtResource("11") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) - -; Beam overhead spanning the room -[node name="Beam" type="Node3D" parent="."] -instance = ExtResource("13") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.40, 0) - -; Accent red panel on south wall straight segment -[node name="AccentRed" type="Node3D" parent="."] -instance = ExtResource("17") -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.28, 1.28, 2.52) - -; Accent blue panel on east wall upper segment -[node name="AccentBlue" type="Node3D" parent="."] -instance = ExtResource("15") -transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 2.52, 1.28, 0) - -; ============ LIGHTING ============ - -; --- WorldEnvironment: skybox + ambient --- -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("Env") - -; --- DirectionalLight: sun/moon key light from high angle --- -; Tilted ~45° down, rotated ~30° Y for directional angle -[node name="SunLight" type="DirectionalLight3D" parent="."] -transform = Transform3D(0.866, 0, -0.5, -0.354, 0.707, -0.612, 0.354, 0.707, 0.612, 0, 5, 0) -light_energy = 1.2 -light_indirect_energy = 0.8 -light_color = Color(1.0, 0.95, 0.9, 1.0) -shadow_enabled = true -light_bake_mode = 2 -directional_shadow_max_distance = 30.0 -directional_shadow_split_1 = 0.1 -directional_shadow_split_2 = 0.3 -directional_shadow_split_3 = 0.6 -directional_shadow_blend_splits = true - -; --- OmniLight: warm interior fill --- -[node name="FillLight" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.5, 2.4, 1.5) -light_energy = 0.4 -light_indirect_energy = 0.5 -light_color = Color(1.0, 0.85, 0.7, 1.0) -light_bake_mode = 2 -omni_range = 6.0 -omni_attenuation = 0.8 -shadow_enabled = false - -; --- ReflectionProbe for interior specular reflections --- -[node name="ReflectionProbe" type="ReflectionProbe" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.28, 0) -box_projection = true -interior = true -extents = Vector3(2.8, 1.4, 2.8) -intensity = 1.0 -max_distance = 10.0 - -; --- LightmapGI: baked global illumination --- -[node name="LightmapGI" type="LightmapGI" parent="."] -quality = 2 -bounces = 3 -bounce_indirect_energy = 1.0 -texel_scale = 1.0 -max_texture_size = 2048 -use_denoiser = true -interior = true diff --git a/client/assets/scenes/modular/pieces/barrel.tscn b/client/assets/scenes/modular/pieces/barrel.tscn deleted file mode 100644 index a986ec3..0000000 --- a/client/assets/scenes/modular/pieces/barrel.tscn +++ /dev/null @@ -1,16 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.7, 0.15, 0.1, 1.0) -roughness = 0.6 -metallic = 0.2 -resource_name = "red_barrel" - -[node name="Barrel" type="CSGCylinder3D"] -radius = 0.6 -height = 1.0 -material = SubResource("1") -use_collision = true -slices = 16 -visibility_range_end = 30.0 -visibility_range_end_margin = 3.0 diff --git a/client/assets/scenes/modular/pieces/corner_wall.tscn b/client/assets/scenes/modular/pieces/corner_wall.tscn deleted file mode 100644 index 3b070f4..0000000 --- a/client/assets/scenes/modular/pieces/corner_wall.tscn +++ /dev/null @@ -1,26 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.35, 0.4, 0.5, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "bluegrey_corner" - -[node name="CornerWall" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 50.0 -visibility_range_end_margin = 5.0 - -[node name="WallA" type="CSGBox3D" parent="CornerWall"] -operation = 0 -size = Vector3(2, 3, 0.2) -material = SubResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.1) - -[node name="WallB" type="CSGBox3D" parent="CornerWall"] -operation = 0 -size = Vector3(0.2, 3, 2) -material = SubResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.1, 0, 0) diff --git a/client/assets/scenes/modular/pieces/cover_wall.tscn b/client/assets/scenes/modular/pieces/cover_wall.tscn deleted file mode 100644 index e879058..0000000 --- a/client/assets/scenes/modular/pieces/cover_wall.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.4, 0.4, 0.4, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "grey_cover" - -[node name="CoverWall" type="CSGBox3D"] -size = Vector3(2, 1.3, 0.2) -material = SubResource("1") -use_collision = true -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 diff --git a/client/assets/scenes/modular/pieces/crate.tscn b/client/assets/scenes/modular/pieces/crate.tscn deleted file mode 100644 index ee84572..0000000 --- a/client/assets/scenes/modular/pieces/crate.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.55, 0.35, 0.15, 1.0) -roughness = 0.85 -metallic = 0.0 -resource_name = "brown_crate" - -[node name="Crate" type="CSGBox3D"] -size = Vector3(1, 1, 1) -material = SubResource("1") -use_collision = true -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 diff --git a/client/assets/scenes/modular/pieces/floor_tile.tscn b/client/assets/scenes/modular/pieces/floor_tile.tscn deleted file mode 100644 index 3d2e669..0000000 --- a/client/assets/scenes/modular/pieces/floor_tile.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.5, 0.5, 0.5, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "concrete_grey" - -[node name="FloorTile" type="CSGBox3D"] -size = Vector3(2, 0.2, 2) -material = SubResource("1") -use_collision = true -visibility_range_end = 60.0 -visibility_range_end_margin = 10.0 diff --git a/client/assets/scenes/modular/pieces/pillar.tscn b/client/assets/scenes/modular/pieces/pillar.tscn deleted file mode 100644 index 941cfe8..0000000 --- a/client/assets/scenes/modular/pieces/pillar.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.2, 0.2, 0.22, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "darkgrey_pillar" - -[node name="Pillar" type="CSGBox3D"] -size = Vector3(0.3, 3, 0.3) -material = SubResource("1") -use_collision = true -visibility_range_end = 30.0 -visibility_range_end_margin = 3.0 diff --git a/client/assets/scenes/modular/pieces/ramp.tscn b/client/assets/scenes/modular/pieces/ramp.tscn deleted file mode 100644 index c73da1a..0000000 --- a/client/assets/scenes/modular/pieces/ramp.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.7, 0.7, 0.3, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "yellow_ramp" - -[node name="Ramp" type="CSGPolygon3D"] -polygon = PackedVector2Array(0, 0, 2, 0, 2, 1.155) -depth = 2.0 -material = SubResource("1") -use_collision = true -smooth_faces = true diff --git a/client/assets/scenes/modular/pieces/stairs.tscn b/client/assets/scenes/modular/pieces/stairs.tscn deleted file mode 100644 index 78233ef..0000000 --- a/client/assets/scenes/modular/pieces/stairs.tscn +++ /dev/null @@ -1,33 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.45, 0.45, 0.45, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "grey_stairs" - -[node name="Stairs" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 - -[node name="Step1" type="CSGBox3D" parent="Stairs"] -operation = 0 -size = Vector3(2, 0.25, 0.5) -material = SubResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.125, 0.75) - -[node name="Step2" type="CSGBox3D" parent="Stairs"] -operation = 0 -size = Vector3(2, 0.25, 0.5) -material = SubResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.375, 0.25) - -[node name="Step3" type="CSGBox3D" parent="Stairs"] -operation = 0 -size = Vector3(2, 0.25, 0.5) -material = SubResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.625, -0.25) diff --git a/client/assets/scenes/modular/pieces/wall_segment.tscn b/client/assets/scenes/modular/pieces/wall_segment.tscn deleted file mode 100644 index e2edd81..0000000 --- a/client/assets/scenes/modular/pieces/wall_segment.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.35, 0.4, 0.5, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "bluegrey_wall" - -[node name="WallSegment" type="CSGBox3D"] -size = Vector3(4, 3, 0.2) -material = SubResource("1") -use_collision = true -visibility_range_end = 50.0 -visibility_range_end_margin = 5.0 diff --git a/client/assets/scenes/modular/pieces/window_frame.tscn b/client/assets/scenes/modular/pieces/window_frame.tscn deleted file mode 100644 index ff84078..0000000 --- a/client/assets/scenes/modular/pieces/window_frame.tscn +++ /dev/null @@ -1,24 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="1"] -albedo_color = Color(0.35, 0.4, 0.5, 1.0) -roughness = 0.8 -metallic = 0.0 -resource_name = "bluegrey_window" - -[node name="WindowFrame" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 - -[node name="MainWall" type="CSGBox3D" parent="WindowFrame"] -operation = 0 -size = Vector3(4, 3, 0.2) -material = SubResource("1") -use_collision = true - -[node name="WindowCutout" type="CSGBox3D" parent="WindowFrame"] -operation = 1 -size = Vector3(2, 2, 0.25) -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) diff --git a/client/assets/scenes/modular/pillar_01.tscn b/client/assets/scenes/modular/pillar_01.tscn deleted file mode 100644 index b2d9360..0000000 --- a/client/assets/scenes/modular/pillar_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_02.tres" id="1"] - -[node name="Pillar01" type="CSGBox3D"] -size = Vector3(0.64, 2.56, 0.64) -material = ExtResource("1") -use_collision = true -visibility_range_end = 30.0 -visibility_range_end_margin = 3.0 diff --git a/client/assets/scenes/modular/wall_corner_01.tscn b/client/assets/scenes/modular/wall_corner_01.tscn deleted file mode 100644 index b179f01..0000000 --- a/client/assets/scenes/modular/wall_corner_01.tscn +++ /dev/null @@ -1,19 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="1"] - -[node name="WallCorner01" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 50.0 -visibility_range_end_margin = 5.0 -[node name="WallA" type="CSGBox3D" parent="WallCorner01"] -operation = 0 -size = Vector3(2.56, 2.56, 0.16) -material = ExtResource("1") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.08) -[node name="WallB" type="CSGBox3D" parent="WallCorner01"] -operation = 0 -size = Vector3(0.16, 2.56, 2.56) -material = ExtResource("1") -use_collision = true -transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, 0.08, 0, 0) diff --git a/client/assets/scenes/modular/wall_doorway_01.tscn b/client/assets/scenes/modular/wall_doorway_01.tscn deleted file mode 100644 index 93f4048..0000000 --- a/client/assets/scenes/modular/wall_doorway_01.tscn +++ /dev/null @@ -1,17 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="1"] - -[node name="WallDoorway01" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 -[node name="MainWall" type="CSGBox3D" parent="WallDoorway01"] -operation = 0 -size = Vector3(2.56, 2.56, 0.16) -material = ExtResource("1") -use_collision = true -[node name="DoorCutout" type="CSGBox3D" parent="WallDoorway01"] -operation = 1 -size = Vector3(0.8, 2.0, 0.2) -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.28, 0) diff --git a/client/assets/scenes/modular/wall_endcap_01.tscn b/client/assets/scenes/modular/wall_endcap_01.tscn deleted file mode 100644 index a509793..0000000 --- a/client/assets/scenes/modular/wall_endcap_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="1"] - -[node name="WallEndcap01" type="CSGBox3D"] -size = Vector3(0.32, 2.56, 0.16) -material = ExtResource("1") -use_collision = true -visibility_range_end = 50.0 -visibility_range_end_margin = 5.0 diff --git a/client/assets/scenes/modular/wall_straight_01.tscn b/client/assets/scenes/modular/wall_straight_01.tscn deleted file mode 100644 index 0326006..0000000 --- a/client/assets/scenes/modular/wall_straight_01.tscn +++ /dev/null @@ -1,9 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="1"] - -[node name="WallStraight01" type="CSGBox3D"] -size = Vector3(2.56, 2.56, 0.16) -material = ExtResource("1") -use_collision = true -visibility_range_end = 50.0 -visibility_range_end_margin = 5.0 diff --git a/client/assets/scenes/modular/wall_window_01.tscn b/client/assets/scenes/modular/wall_window_01.tscn deleted file mode 100644 index e06fa6b..0000000 --- a/client/assets/scenes/modular/wall_window_01.tscn +++ /dev/null @@ -1,17 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Material" path="res://assets/materials/wall_concrete_01.tres" id="1"] - -[node name="WallWindow01" type="CSGCombiner3D"] -use_collision = false -visibility_range_end = 40.0 -visibility_range_end_margin = 5.0 -[node name="MainWall" type="CSGBox3D" parent="WallWindow01"] -operation = 0 -size = Vector3(2.56, 2.56, 0.16) -material = ExtResource("1") -use_collision = true -[node name="WindowCutout" type="CSGBox3D" parent="WallWindow01"] -operation = 1 -size = Vector3(1.2, 0.8, 0.2) -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.3, 0) diff --git a/client/assets/textures/accent_team_blue/basecolor.png b/client/assets/textures/accent_team_blue/basecolor.png deleted file mode 100644 index fbc3837..0000000 Binary files a/client/assets/textures/accent_team_blue/basecolor.png and /dev/null differ diff --git a/client/assets/textures/accent_team_blue/metallic.png b/client/assets/textures/accent_team_blue/metallic.png deleted file mode 100644 index e2e12b8..0000000 Binary files a/client/assets/textures/accent_team_blue/metallic.png and /dev/null differ diff --git a/client/assets/textures/accent_team_blue/normal.png b/client/assets/textures/accent_team_blue/normal.png deleted file mode 100644 index 9c578e6..0000000 Binary files a/client/assets/textures/accent_team_blue/normal.png and /dev/null differ diff --git a/client/assets/textures/accent_team_blue/roughness.png b/client/assets/textures/accent_team_blue/roughness.png deleted file mode 100644 index 5230bdd..0000000 Binary files a/client/assets/textures/accent_team_blue/roughness.png and /dev/null differ diff --git a/client/assets/textures/accent_team_red/basecolor.png b/client/assets/textures/accent_team_red/basecolor.png deleted file mode 100644 index ba05f9d..0000000 Binary files a/client/assets/textures/accent_team_red/basecolor.png and /dev/null differ diff --git a/client/assets/textures/accent_team_red/metallic.png b/client/assets/textures/accent_team_red/metallic.png deleted file mode 100644 index e2e12b8..0000000 Binary files a/client/assets/textures/accent_team_red/metallic.png and /dev/null differ diff --git a/client/assets/textures/accent_team_red/normal.png b/client/assets/textures/accent_team_red/normal.png deleted file mode 100644 index ba851f9..0000000 Binary files a/client/assets/textures/accent_team_red/normal.png and /dev/null differ diff --git a/client/assets/textures/accent_team_red/roughness.png b/client/assets/textures/accent_team_red/roughness.png deleted file mode 100644 index 5230bdd..0000000 Binary files a/client/assets/textures/accent_team_red/roughness.png and /dev/null differ diff --git a/client/assets/textures/floor_concrete_01/basecolor.png b/client/assets/textures/floor_concrete_01/basecolor.png deleted file mode 100644 index cb0fb2a..0000000 Binary files a/client/assets/textures/floor_concrete_01/basecolor.png and /dev/null differ diff --git a/client/assets/textures/floor_concrete_01/metallic.png b/client/assets/textures/floor_concrete_01/metallic.png deleted file mode 100644 index fe0e124..0000000 Binary files a/client/assets/textures/floor_concrete_01/metallic.png and /dev/null differ diff --git a/client/assets/textures/floor_concrete_01/normal.png b/client/assets/textures/floor_concrete_01/normal.png deleted file mode 100644 index daf55d3..0000000 Binary files a/client/assets/textures/floor_concrete_01/normal.png and /dev/null differ diff --git a/client/assets/textures/floor_concrete_01/roughness.png b/client/assets/textures/floor_concrete_01/roughness.png deleted file mode 100644 index acafb6e..0000000 Binary files a/client/assets/textures/floor_concrete_01/roughness.png and /dev/null differ diff --git a/client/assets/textures/floor_tile_01/basecolor.png b/client/assets/textures/floor_tile_01/basecolor.png deleted file mode 100644 index 40a25b7..0000000 Binary files a/client/assets/textures/floor_tile_01/basecolor.png and /dev/null differ diff --git a/client/assets/textures/floor_tile_01/metallic.png b/client/assets/textures/floor_tile_01/metallic.png deleted file mode 100644 index fe0e124..0000000 Binary files a/client/assets/textures/floor_tile_01/metallic.png and /dev/null differ diff --git a/client/assets/textures/floor_tile_01/normal.png b/client/assets/textures/floor_tile_01/normal.png deleted file mode 100644 index f0742a1..0000000 Binary files a/client/assets/textures/floor_tile_01/normal.png and /dev/null differ diff --git a/client/assets/textures/floor_tile_01/roughness.png b/client/assets/textures/floor_tile_01/roughness.png deleted file mode 100644 index a519c44..0000000 Binary files a/client/assets/textures/floor_tile_01/roughness.png and /dev/null differ diff --git a/client/assets/textures/generate_textures.py b/client/assets/textures/generate_textures.py deleted file mode 100644 index c23af4f..0000000 --- a/client/assets/textures/generate_textures.py +++ /dev/null @@ -1,493 +0,0 @@ -#!/usr/bin/env python3 -""" -Generate procedural 1K PBR texture maps for the Tactical Shooter modular art kit. -Produces: basecolor, normal, roughness, metallic — all at 1024x1024. -Usage: python3 generate_textures.py -""" - -import math -import os -import random -from PIL import Image, ImageFilter, ImageChops, ImageDraw - -TEXTURE_DIR = os.path.expanduser("/home/oplabs/tactical-shooter/client/assets/textures") -SIZE = 1024 - -random.seed(42) - -def save_pbr(base_dir, name, basecolor, normal, roughness, metallic): - """Save all PBR maps for one material.""" - d = os.path.join(base_dir, name) - os.makedirs(d, exist_ok=True) - basecolor.save(os.path.join(d, "basecolor.png")) - normal.save(os.path.join(d, "normal.png")) - roughness.save(os.path.join(d, "roughness.png")) - metallic.save(os.path.join(d, "metallic.png")) - print(f" Generated {name}/ — 4 maps saved") - - -# ── Utility helpers ────────────────────────────────────────────────────── - -def gaussian_noise(size, scale=1.0, seed=None): - """Generate a grayscale image with gaussian noise.""" - if seed is not None: - random.seed(seed) - img = Image.new("L", (size, size)) - pix = img.load() - for y in range(size): - for x in range(size): - v = int(random.gauss(128, 64 * scale)) - pix[x, y] = max(0, min(255, v)) - return img - - -def tile_blur(img, radius): - """Blur with tileable boundary by mirroring edges before blur.""" - w, h = img.size - big = Image.new(img.mode, (w * 3, h * 3)) - for dx in range(3): - for dy in range(3): - if dx == 1 and dy == 1: - big.paste(img, (w, h)) - else: - # Mirror the tile - mirror = img.transpose(Image.FLIP_LEFT_RIGHT) if dx % 2 == 0 else img - if dy % 2 == 0: - mirror = mirror.transpose(Image.FLIP_TOP_BOTTOM) - big.paste(mirror, (w * dx, h * dy)) - big = big.filter(ImageFilter.GaussianBlur(radius)) - return big.crop((w, h, w * 2, h * 2)) - - -def normal_from_height(height_img, strength=2.0): - """Generate an RGB normal map from a grayscale height map using Sobel.""" - w, h = height_img.size - # Get pixel data - hpix = height_img.load() - normal = Image.new("RGB", (w, h)) - npix = normal.load() - for y in range(h): - for x in range(w): - # Sample height with wrapping for tileability - sx1 = hpix[(x - 1) % w, y] - sx2 = hpix[(x + 1) % w, y] - sy1 = hpix[x, (y - 1) % h] - sy2 = hpix[x, (y + 1) % h] - dx = (sx2 - sx1) / 255.0 - dy = (sy2 - sy1) / 255.0 - dz = 1.0 / strength - length = math.sqrt(dx * dx + dy * dy + dz * dz) - nx = dx / length - ny = dy / length - nz = dz / length - # Map from [-1,1] to [0,255] - npix[x, y] = ( - int((nx * 0.5 + 0.5) * 255), - int((ny * 0.5 + 0.5) * 255), - int((nz * 0.5 + 0.5) * 255), - ) - return normal - - -def make_cellular(size, cell_size=32, seed=None): - """Generate a cellular/Voronoi-like pattern as grayscale.""" - if seed is not None: - random.seed(seed) - img = Image.new("L", (size, size)) - pix = img.load() - - # Generate cell centers with random heights - cells = {} - for cx in range(0, size + cell_size, cell_size): - for cy in range(0, size + cell_size, cell_size): - ox = random.randint(0, cell_size - 1) - oy = random.randint(0, cell_size - 1) - h = random.randint(40, 200) - cells[(cx + ox, cy + oy)] = h - - for y in range(size): - for x in range(size): - min_dist = float("inf") - best_h = 128 - for (cx, cy), h in cells.items(): - d = (cx - x) ** 2 + (cy - y) ** 2 - if d < min_dist: - min_dist = d - best_h = h - pix[x, y] = best_h - return img - - -def concrete_base(size, base_rgb=(180, 175, 168), noise_scale=1.0): - """Generate concrete-like basecolor with aggregate variation.""" - # Start with light noise - noise = gaussian_noise(size, scale=0.15, seed=42) - noise = tile_blur(noise, 4) - - # Add larger variation - big = gaussian_noise(size, scale=0.08, seed=43) - big = tile_blur(big, 24) - - # Add some darker speckles (aggregate) - speckle = Image.new("L", (size, size), 0) - spix = speckle.load() - for _ in range(800): - x = random.randint(0, size - 1) - y = random.randint(0, size - 1) - spix[x, y] = random.randint(30, 80) - speckle = tile_blur(speckle, 1.5) - - # Combine - combined = Image.new("L", (size, size)) - cpix = combined.load() - npix = noise.load() - bpix = big.load() - skpix = speckle.load() - for y in range(size): - for x in range(size): - v = npix[x, y] + bpix[x, y] - 128 + skpix[x, y] - 30 - cpix[x, y] = max(0, min(255, v)) - - # Tint and apply - result = Image.new("RGB", (size, size)) - rpix = result.load() - cp = combined.load() - for y in range(size): - for x in range(size): - f = cp[x, y] / 255.0 - rpix[x, y] = ( - max(0, min(255, int(base_rgb[0] * f / 180))), - max(0, min(255, int(base_rgb[1] * f / 175))), - max(0, min(255, int(base_rgb[2] * f / 168))), - ) - return result - - -# ── Material definitions ───────────────────────────────────────────────── - -def generate_wall_concrete_01(): - """Light clean concrete — primary wall material.""" - size = SIZE - # Basecolor - bc = concrete_base(size, base_rgb=(200, 195, 185)) - bc = bc.filter(ImageFilter.SMOOTH) - - # Height map for normal (slight texture) - height = gaussian_noise(size, scale=0.1, seed=100) - height = tile_blur(height, 3) - normal = normal_from_height(height, strength=1.5) - - # Roughness — concrete is fairly rough - rough = gaussian_noise(size, scale=0.08, seed=200) - rough = tile_blur(rough, 6) - # Brighten a bit (rougher = lighter in roughness map) - rpix = rough.load() - for y in range(size): - for x in range(size): - rpix[x, y] = min(255, rpix[x, y] + 40) - - # Metallic — none - metallic = Image.new("L", (size, size), 0) - - save_pbr(TEXTURE_DIR, "wall_concrete_01", bc, normal, rough, metallic) - - -def generate_wall_concrete_02(): - """Darker, smoother concrete — accent walls.""" - size = SIZE - bc = concrete_base(size, base_rgb=(145, 140, 135)) - bc = bc.filter(ImageFilter.SMOOTH_MORE) - - height = gaussian_noise(size, scale=0.06, seed=101) - height = tile_blur(height, 5) - normal = normal_from_height(height, strength=1.2) - - rough = gaussian_noise(size, scale=0.06, seed=201) - rough = tile_blur(rough, 8) - rpix = rough.load() - for y in range(size): - for x in range(size): - rpix[x, y] = min(255, rpix[x, y] + 30) - - metallic = Image.new("L", (size, size), 0) - save_pbr(TEXTURE_DIR, "wall_concrete_02", bc, normal, rough, metallic) - - -def generate_floor_tile_01(): - """Checkerboard tile floor — interior spaces.""" - size = SIZE - tile_size = 64 # 64px tiles at 1024 = 16 tiles across - - bc = Image.new("RGB", (size, size)) - bpix = bc.load() - for y in range(size): - for x in range(size): - tx = x // tile_size - ty = y // tile_size - if (tx + ty) % 2 == 0: - # Light tile - v = 200 + random.randint(-10, 10) - bpix[x, y] = (v, v - 5, v - 10) - else: - # Dark tile - v = 160 + random.randint(-8, 8) - bpix[x, y] = (v, v - 3, v - 5) - - # Add grout lines - draw = ImageDraw.Draw(bc) - for i in range(0, size + 1, tile_size): - draw.line([(i, 0), (i, size)], fill=(70, 65, 60), width=2) - draw.line([(0, i), (size, i)], fill=(70, 65, 60), width=2) - - # Height map for normal - height = Image.new("L", (size, size), 128) - hpix = height.load() - for y in range(size): - for x in range(size): - tx = x // tile_size - ty = y // tile_size - gx = x % tile_size - gy = y % tile_size - # Slight bevel around edges (tile center higher) - d = min(gx, tile_size - gx, gy, tile_size - gy) - if d < 3: - hpix[x, y] = 100 # Grout is lower - else: - hpix[x, y] = 140 + (d % 4) * 5 - - # Apply bevel and tile variation - hpix = height.load() - for y in range(size): - for x in range(size): - tx = x // tile_size - ty = y // tile_size - gx = x % tile_size - gy = y % tile_size - d_edge = min(gx, tile_size - gx, gy, tile_size - gy) - if d_edge < 2: - hpix[x, y] = 90 - elif d_edge < 5: - hpix[x, y] = 100 + d_edge * 8 - else: - # Gentle tile surface variation - hpix[x, y] = 140 + ((tx * 13 + ty * 7 + x + y) % 8) * 3 - - normal = normal_from_height(height, strength=3.0) - - # Roughness — tiles are smooth - rough = Image.new("L", (size, size), 80) - rpix = rough.load() - for y in range(size): - for x in range(size): - tx = x // tile_size - ty = y // tile_size - gx = x % tile_size - gy = y % tile_size - d_edge = min(gx, tile_size - gx, gy, tile_size - gy) - if d_edge < 2: - rpix[x, y] = 200 # Grout is rough - else: - rpix[x, y] = 60 + ((tx * 17 + ty * 11) % 10) * 4 - - metallic = Image.new("L", (size, size), 0) - save_pbr(TEXTURE_DIR, "floor_tile_01", bc, normal, rough, metallic) - - -def generate_floor_concrete_01(): - """Industrial dark concrete floor — warehouse/industrial areas.""" - size = SIZE - - # Base - bc = concrete_base(size, base_rgb=(130, 128, 123)) - bc = bc.filter(ImageFilter.SMOOTH) - - # Add surface scratches/wear marks - draw = ImageDraw.Draw(bc) - for _ in range(50): - x1 = random.randint(0, size) - y1 = random.randint(0, size) - length = random.randint(10, 100) - angle = random.uniform(0, math.pi * 2) - x2 = x1 + int(math.cos(angle) * length) - y2 = y1 + int(math.sin(angle) * length) - c = random.randint(100, 140) - draw.line([(x1, y1), (x2, y2)], fill=(c, c - 3, c - 5), width=1) - - height = gaussian_noise(size, scale=0.15, seed=102) - height = tile_blur(height, 3) - hpix = height.load() - # Add groove lines (expansion joints) - for y in range(size): - for x in range(size): - gx = x % 256 - gy = y % 256 - if min(gx, 256 - gx) < 2 or min(gy, 256 - gy) < 2: - hpix[x, y] = max(0, hpix[x, y] - 40) - normal = normal_from_height(height, strength=2.5) - - rough = Image.new("L", (size, size), 160) - rpix = rough.load() - for y in range(size): - for x in range(size): - gx = x % 256 - gy = y % 256 - if min(gx, 256 - gx) < 2 or min(gy, 256 - gy) < 2: - rpix[x, y] = 220 # Grooves are rougher - else: - rpix[x, y] = 150 + (hash((x // 8, y // 8)) % 20) - - metallic = Image.new("L", (size, size), 0) - save_pbr(TEXTURE_DIR, "floor_concrete_01", bc, normal, rough, metallic) - - -def generate_metal_structural_01(): - """Structural metal — beams, supports, vents.""" - size = SIZE - # Base — grey metallic - bc = Image.new("RGB", (size, size)) - bpix = bc.load() - for y in range(size): - for x in range(size): - v = 160 + int(random.gauss(0, 4)) - bpix[x, y] = (max(0, min(255, v)), max(0, min(255, v - 2)), max(0, min(255, v - 4))) - - # Add horizontal brush marks - draw = ImageDraw.Draw(bc) - for _ in range(200): - bx = random.randint(0, size - 1) - by = random.randint(0, size - 1) - c = random.randint(-6, 6) - draw.line([(bx, by), (bx + random.randint(10, 60), by)], fill=(bpix[bx, by][0] + c,) * 3, width=1) - - # Height map for normal - height = gaussian_noise(size, scale=0.05, seed=103) - height = tile_blur(height, 2) - hpix = height.load() - for y in range(size): - for x in range(size): - hpix[x, y] = max(0, min(255, hpix[x, y] - 10)) # Flatter than concrete - normal = normal_from_height(height, strength=1.0) # Subtle - - # Roughness — smooth metal - rough = Image.new("L", (size, size), 40) - rpix = rough.load() - for y in range(size): - for x in range(size): - hp = hpix[x, y] - rpix[x, y] = 30 + (hp - 128) // 8 - - # Metallic — yes! - metallic = Image.new("L", (size, size), 255) - save_pbr(TEXTURE_DIR, "metal_structural_01", bc, normal, rough, metallic) - - -def generate_accent_team_blue(): - """Blue team accent — CT side colored panels.""" - size = SIZE - # Deep blue - bc = Image.new("RGB", (size, size)) - bpix = bc.load() - for y in range(size): - for x in range(size): - noise = random.randint(-8, 8) - bpix[x, y] = ( - max(0, min(255, 40 + noise)), - max(0, min(255, 80 + noise)), - max(0, min(255, 200 + noise)), - ) - bc = bc.filter(ImageFilter.SMOOTH) - # Slight brushed pattern - draw = ImageDraw.Draw(bc) - for y in range(0, size, 4): - v = random.randint(-4, 4) - draw.line([(0, y), (size, y)], fill=(40 + v, 80 + v, 200 + v), width=1) - - height = Image.new("L", (size, size), 128) - hpix = height.load() - for y in range(size): - for x in range(size): - hpix[x, y] = 128 + int(random.gauss(0, 3)) - hpix = height.load() - for y in range(0, size, 4): - for x in range(size): - hpix[x, y] = 110 # Slight panel line - normal = normal_from_height(height, strength=0.8) - - rough = Image.new("L", (size, size), 50) - rpix = rough.load() - for y in range(size): - for x in range(size): - rpix[x, y] = 40 + (hash((x // 16, y // 16)) % 15) - - # Slightly metallic (painted metal) - metallic = Image.new("L", (size, size), 128) - save_pbr(TEXTURE_DIR, "accent_team_blue", bc, normal, rough, metallic) - - -def generate_accent_team_red(): - """Red/orange team accent — T side colored panels.""" - size = SIZE - bc = Image.new("RGB", (size, size)) - bpix = bc.load() - for y in range(size): - for x in range(size): - noise = random.randint(-8, 8) - bpix[x, y] = ( - max(0, min(255, 200 + noise)), - max(0, min(255, 60 + noise)), - max(0, min(255, 30 + noise)), - ) - bc = bc.filter(ImageFilter.SMOOTH) - draw = ImageDraw.Draw(bc) - for y in range(0, size, 4): - v = random.randint(-4, 4) - draw.line([(0, y), (size, y)], fill=(200 + v, 60 + v, 30 + v), width=1) - - height = Image.new("L", (size, size), 128) - hpix = height.load() - for y in range(size): - for x in range(size): - hpix[x, y] = 128 + int(random.gauss(0, 3)) - for y in range(0, size, 4): - for x in range(size): - hpix[x, y] = 110 - normal = normal_from_height(height, strength=0.8) - - rough = Image.new("L", (size, size), 50) - rpix = rough.load() - for y in range(size): - for x in range(size): - rpix[x, y] = 40 + (hash((x // 16, y // 16)) % 15) - - metallic = Image.new("L", (size, size), 128) - save_pbr(TEXTURE_DIR, "accent_team_red", bc, normal, rough, metallic) - - -# ── Main ──────────────────────────────────────────────────────────────── - -if __name__ == "__main__": - os.makedirs(TEXTURE_DIR, exist_ok=True) - print("Generating PBR textures (1K)…") - - print(" [1/7] wall_concrete_01") - generate_wall_concrete_01() - - print(" [2/7] wall_concrete_02") - generate_wall_concrete_02() - - print(" [3/7] floor_tile_01") - generate_floor_tile_01() - - print(" [4/7] floor_concrete_01") - generate_floor_concrete_01() - - print(" [5/7] metal_structural_01") - generate_metal_structural_01() - - print(" [6/7] accent_team_blue") - generate_accent_team_blue() - - print(" [7/7] accent_team_red") - generate_accent_team_red() - - print("\nDone — 7 materials × 4 maps = 28 texture files generated at 1K.") diff --git a/client/assets/textures/metal_structural_01/basecolor.png b/client/assets/textures/metal_structural_01/basecolor.png deleted file mode 100644 index bad30c5..0000000 Binary files a/client/assets/textures/metal_structural_01/basecolor.png and /dev/null differ diff --git a/client/assets/textures/metal_structural_01/metallic.png b/client/assets/textures/metal_structural_01/metallic.png deleted file mode 100644 index a38d325..0000000 Binary files a/client/assets/textures/metal_structural_01/metallic.png and /dev/null differ diff --git a/client/assets/textures/metal_structural_01/normal.png b/client/assets/textures/metal_structural_01/normal.png deleted file mode 100644 index 256fcb8..0000000 Binary files a/client/assets/textures/metal_structural_01/normal.png and /dev/null differ diff --git a/client/assets/textures/metal_structural_01/roughness.png b/client/assets/textures/metal_structural_01/roughness.png deleted file mode 100644 index 5c51683..0000000 Binary files a/client/assets/textures/metal_structural_01/roughness.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_01/basecolor.png b/client/assets/textures/wall_concrete_01/basecolor.png deleted file mode 100644 index 64ebcc1..0000000 Binary files a/client/assets/textures/wall_concrete_01/basecolor.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_01/metallic.png b/client/assets/textures/wall_concrete_01/metallic.png deleted file mode 100644 index fe0e124..0000000 Binary files a/client/assets/textures/wall_concrete_01/metallic.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_01/normal.png b/client/assets/textures/wall_concrete_01/normal.png deleted file mode 100644 index d2e521b..0000000 Binary files a/client/assets/textures/wall_concrete_01/normal.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_01/roughness.png b/client/assets/textures/wall_concrete_01/roughness.png deleted file mode 100644 index 795dce1..0000000 Binary files a/client/assets/textures/wall_concrete_01/roughness.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_02/basecolor.png b/client/assets/textures/wall_concrete_02/basecolor.png deleted file mode 100644 index 64ebcc1..0000000 Binary files a/client/assets/textures/wall_concrete_02/basecolor.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_02/metallic.png b/client/assets/textures/wall_concrete_02/metallic.png deleted file mode 100644 index fe0e124..0000000 Binary files a/client/assets/textures/wall_concrete_02/metallic.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_02/normal.png b/client/assets/textures/wall_concrete_02/normal.png deleted file mode 100644 index 3a50d85..0000000 Binary files a/client/assets/textures/wall_concrete_02/normal.png and /dev/null differ diff --git a/client/assets/textures/wall_concrete_02/roughness.png b/client/assets/textures/wall_concrete_02/roughness.png deleted file mode 100644 index 5a820b0..0000000 Binary files a/client/assets/textures/wall_concrete_02/roughness.png and /dev/null differ diff --git a/client/bake_lightmaps.gd b/client/bake_lightmaps.gd deleted file mode 100644 index fc96a3d..0000000 --- a/client/bake_lightmaps.gd +++ /dev/null @@ -1,210 +0,0 @@ -extends SceneTree - -# Generalised Lightmap Baking Config Checker -# ========================================== -# Validates that a map scene's LightmapGI is configured correctly for baking. -# Generalised replacement for scripts/bake_lighting.gd — works on ANY map scene. -# -# Note: Godot 4.7 LightmapGI baking is editor-only. This script validates -# configuration only; actual baking must be done from the Godot editor. -# -# Usage: -# godot --headless --script bake_lightmaps.gd -- res://maps/my_map.tscn -# -# Exit codes: -# 0 — All checks passed (or warnings only) -# 1 — One or more checks failed (fatal) -# 2 — Scene file could not be loaded - -var _scene_path: String = "" -var _checks: Array = [] # [label, passed, is_warning] - - -func _init() -> void: - _parse_args() - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided.") - print("Usage: godot --headless --script bake_lightmaps.gd -- res://maps/my_map.tscn") - quit(2) - return - - print("") - print("=== Lightmap Baking Config Checker: %s ===" % _scene_path) - print("") - - var scene = ResourceLoader.load(_scene_path) - if not scene: - printerr("ERROR: Could not load scene: %s" % _scene_path) - quit(2) - return - - var instance = scene.instantiate() - if not instance: - printerr("ERROR: Could not instantiate scene!") - quit(2) - return - - root.add_child(instance) - print("Scene loaded and instantiated successfully.") - print("") - print("Note: Godot 4.x LightmapGI baking is editor-only.") - print("This script validates configuration only.") - print("To bake: Open scene in editor > Select LightmapGI > 'Bake Lightmap'") - print("") - - var lightmap: LightmapGI = _find_node_of_type(instance, LightmapGI) - if not lightmap: - printerr("ERROR: No LightmapGI node found in scene!") - quit(1) - return - - _print_config(lightmap) - _run_checks(lightmap, instance) - _print_results() - - -func _parse_args() -> void: - var args := OS.get_cmdline_args() - var found_sep := false - for a in args: - if a == "--": - found_sep = true - continue - if found_sep and not a.begins_with("-"): - _scene_path = a - return - for a in args: - if a.contains("res://") or a.ends_with(".tscn"): - _scene_path = a - return - - -func _check(label: String, passed: bool, is_warning: bool = false) -> void: - _checks.append([label, passed, is_warning]) - - -func _print_config(lightmap: LightmapGI) -> void: - print(" LightmapGI configuration:") - print(" Quality: ", _quality_name(lightmap.quality), " (", lightmap.quality, ")") - print(" Bounces: ", lightmap.bounces) - print(" Texel Scale: ", lightmap.texel_scale) - print(" Max Tex Size: ", lightmap.max_texture_size) - print(" Interior: ", lightmap.interior) - print(" Denoiser: ", lightmap.is_using_denoiser()) - print(" Energy: ", lightmap.lightmap_energy) - print(" Bias: ", lightmap.lightmap_probe_bias) - - if lightmap.light_data != null: - print(" Baked data: PRESENT ✓") - else: - print(" Baked data: NOT YET BAKED") - - print("") - - -func _run_checks(lightmap: LightmapGI, instance: Node) -> void: - # Configuration checks - _check("Quality ≥ Medium (1)", lightmap.quality >= 1) - _check("Bounces ≥ 2", lightmap.bounces >= 2) - _check("Texel Scale ≤ 2.0", lightmap.texel_scale <= 2.0) - _check("Interior = true", lightmap.interior == true) - - # Denoiser recommended - _check("Use denoiser enabled", lightmap.is_using_denoiser(), true) - - # Max texture size ≤ 4096 (sanity) - _check("Max texture size ≤ 4096", lightmap.max_texture_size <= 4096) - - # Energy shouldn't be zero - _check("Lightmap energy > 0", lightmap.lightmap_energy > 0) - - # Check for lightmap-enabled meshes - var meshes: Array = _find_nodes_of_type(instance, MeshInstance3D) - var static_meshes := 0 - var dynamic_meshes := 0 - for mi in meshes: - if mi.gi_mode == GeometryInstance3D.GI_MODE_STATIC: - static_meshes += 1 - elif mi.gi_mode == GeometryInstance3D.GI_MODE_DYNAMIC: - dynamic_meshes += 1 - - _check("Static geometry meshes found for lightmapping", static_meshes > 0) - - # Baked data status (informational) - if lightmap.light_data != null: - print(" ✓ Lightmap has baked data.") - # Check bake timestamp if available - var ld = lightmap.light_data - if ld is LightmapGIData and ld.has_method("get_user_data"): - print(" Bake data size: %d bytes" % ld.get_user_data().size()) - else: - print(" ⚠ Lightmap NOT YET BAKED. Open in Godot editor and bake.") - - # Summary - print("") - print(" Geometry summary:") - print(" MeshInstance3D nodes: %d" % meshes.size()) - print(" GI_MODE_STATIC: %d" % static_meshes) - print(" GI_MODE_DYNAMIC: %d" % dynamic_meshes) - - -func _print_results() -> void: - print("") - print(" ─── Validation Results ───") - var passed := 0 - var failed := 0 - var warnings := 0 - for c in _checks: - if c[1]: - passed += 1 - print(" ✓ %s" % c[0]) - else: - if c[2]: - warnings += 1 - print(" ⚠ %s" % c[0]) - else: - failed += 1 - print(" ✗ %s" % c[0]) - - print("") - print(" Passed: %d Warnings: %d Failed: %d" % [passed, warnings, failed]) - print("") - - if failed > 0: - printerr("Validation FAILED — %d check(s) failed." % failed) - quit(1) - else: - print("=== Config check complete ===") - quit(0) - - -# --------------------------------------------------------------------------- -# Helpers -# --------------------------------------------------------------------------- - -func _quality_name(q: int) -> String: - match q: - 0: return "Low" - 1: return "Medium" - 2: return "High" - 3: return "Ultra" - return "Unknown" - - -func _find_node_of_type(parent: Node, type: Script) -> Node: - for child in parent.get_children(): - if is_instance_of(child, type): - return child - var found = _find_node_of_type(child, type) - if found: - return found - return null - - -func _find_nodes_of_type(parent: Node, type: Script) -> Array: - var results: Array = [] - for child in parent.get_children(): - if is_instance_of(child, type): - results.append(child) - results.append_array(_find_nodes_of_type(child, type)) - return results diff --git a/client/bake_lightmaps.gd.uid b/client/bake_lightmaps.gd.uid deleted file mode 100644 index 8bb037f..0000000 --- a/client/bake_lightmaps.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b12200dkbovx2 diff --git a/client/bake_lightmaps.tscn b/client/bake_lightmaps.tscn deleted file mode 100644 index f353295..0000000 --- a/client/bake_lightmaps.tscn +++ /dev/null @@ -1,5 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Script" path="res://bake_lightmaps.gd" id="1"] - -[node name="BakeRunner" type="Node"] -script = ExtResource("1") diff --git a/client/characters/README.md b/client/characters/README.md deleted file mode 100644 index 82482c2..0000000 --- a/client/characters/README.md +++ /dev/null @@ -1,119 +0,0 @@ -# FPS Character Controller — Tactical Shooter - -First-person character controller for the tactical shooter GDExtension simulation core. - -## Architecture - -The character controller is a **GDScript bridge** between Godot's input/physics system and the C++ `SimulationServer` (built in task `t_aca0f251`). - -``` -Godot Input - │ - ├─► FPSCharacterController._physics_process() - │ ├─ capture input (WASD, mouse, jump, sprint, crouch, shoot) - │ ├─ build EntityInput Dictionary - │ ├─ SimulationServer.apply_input(entity_id, input_dict) - │ ├─ SimulationServer.fire_weapon(entity_id) [if shoot] - │ ├─ read entity position from server → apply to CharacterBody3D - │ └─ apply mouse look (yaw on body, pitch on camera) - │ - ├─► FpsCamera._process() - │ ├─ view bobbing (head bob from movement) - │ ├─ weapon sway - │ └─ sprint FOV kick - │ - └─► SimulationServer (C++ GDExtension) - ├─ process_tick() @ 128Hz - ├─ MovementComponent.update() - ├─ HitDetection.process_shot() - └─→ returns serialized snapshot -``` - -## Files - -| File | Purpose | -|------|---------| -| `character/fps_character_controller.gd` | Main controller (CharacterBody3D). Input capture, simulation bridge, walk toggle, crouch, jump. | -| `character/fps_camera.gd` | First-person camera (Camera3D). Mouse look pitch, view bobbing, weapon sway, FOV kick. | -| `input/input_handler.gd` | Documentation of expected input map bindings. | - -## Scene Setup - -1. **Create a CharacterBody3D scene:** - ``` - FPSCharacterController (CharacterBody3D) — script: fps_character_controller.gd - ├── FpsCamera (Camera3D) — script: fps_camera.gd - ├── CollisionShape3D (CapsuleShape3D) — radius: 0.4, height: 1.8 - └── Weapon (Node3D, optional) — child of camera, rest transform tracked - ``` - -2. **Configure exports** on the root node: - - `mouse_sensitivity`: 0.1–0.2 for typical tactical feel - - `walk_toggle`: `true` = tap Shift to toggle sprint (CS-style) - - `crouch_toggle`: `false` = hold Ctrl to crouch (tactical-style) - - `eye_height_stand` / `eye_height_crouch`: match your capsule height - -3. **Set up Input Map** in Project Settings: - - `move_forward` → W - - `move_backward` → S - - `move_left` → A - - `move_right` → D - - `jump` → Space - - `sprint` → Shift - - `crouch` → Ctrl - - `shoot` → Mouse LMB - - `aim` → Mouse RMB - - `ui_cancel` → Esc (built-in, releases mouse capture) - -4. **Integration with SimulationServer:** - - ```gdscript - # In your game manager (autoload or scene root): - var server = SimulationServer.new() - server.set_tick_rate(128) - server.start() - var player_id = server.spawn_entity(Vector3(0, 0, 0)) - - # When player scene is ready: - $Player/FPSCharacterController.set_entity_id(player_id) - - # In _process(delta): - while server.can_tick(delta): - var snapshot = server.tick() - # send snapshot to network layer - ``` - -## Walk Toggle Behavior - -- **`walk_toggle = true`** (default): Press Shift to toggle between walk and sprint. Press again to toggle off. Same feel as Counter-Strike's walk/run toggle. -- **`walk_toggle = false`**: Hold Shift for temporary sprint. Release to decelerate to walk speed. - -## Crouch Behavior - -- **`crouch_toggle = false`** (default): Hold Ctrl to crouch. Release to stand up. -- **`crouch_toggle = true`**: Press Ctrl once to crouch, press again to stand. - -Crouch transitions are smooth lerps over `crouch_transition_time` seconds. The collision capsule height and camera eye height both lerp simultaneously. - -## Standalone Mode - -When no `SimulationServer` singleton is available, the controller falls back to built-in `CharacterBody3D` movement (`_move_local()`). This is useful for: -- Testing the character controller in isolation -- Prototyping without the GDExtension compiled -- Single-player scenarios without the full simulation stack - -Configure `local_walk_speed`, `local_sprint_speed`, `local_crouch_speed`, etc. for standalone tuning. - -## Dependencies - -- **Godot 4.2+** (for `Input.get_vector`, `move_toward`, `StringName` literals) -- **SimulationServer GDExtension** (from task `t_aca0f251`) for server-authoritative mode -- Input map actions listed above - -## See Also - -- Scaffold: `t_aca0f251` — `src/movement_component.h` (C++ Quake/CS movement physics) -- Greybox map: `t_p1_greybox` — test environment for this controller -- Hitscan weapon: `t_p1_hitscan` — weapon firing + lag compensation -- Client prediction: `t_p1_pred` — client-side prediction + server reconciliation -- Round system: `t_p1_round` — win/loss/sudden death on top of character controller diff --git a/client/characters/character/fps_camera.gd b/client/characters/character/fps_camera.gd deleted file mode 100644 index 6153f82..0000000 --- a/client/characters/character/fps_camera.gd +++ /dev/null @@ -1,220 +0,0 @@ -## FpsCamera — first-person camera view effects for tactical FPS. -## -## Manages view bobbing (head bob from movement), weapon sway, and FOV kick. -## The parent FPSCharacterController handles mouse look (yaw/pitch). -## -## Place as a Camera3D child of FPSCharacterController. -class_name FpsCamera -extends Camera3D - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Enable view bobbing (head bob when walking/running). -@export var view_bob_enabled: bool = true - -## How much the camera bobs horizontally (units). -@export_range(0.0, 0.5) var bob_amplitude_h: float = 0.04 - -## How much the camera bobs vertically. -@export_range(0.0, 0.5) var bob_amplitude_v: float = 0.04 - -## Frequency multiplier for bobbing (higher = faster). -@export_range(0.5, 5.0) var bob_frequency: float = 2.5 - -## Sprint bob multiplier (more aggressive). -@export_range(1.0, 3.0) var bob_sprint_mult: float = 1.6 - -## Crouch bob multiplier (less movement). -@export_range(0.1, 1.0) var bob_crouch_mult: float = 0.4 - -## FOV kick on sprint (tactical FOV increase). -@export_range(0.0, 10.0) var sprint_fov_kick: float = 3.0 - -## FOV kick when firing weapon. -@export_range(-5.0, 10.0) var shoot_fov_kick: float = 0.5 - -## How fast FOV recovers. -@export var fov_recovery_speed: float = 6.0 - -## Enable weapon sway (subtle rotation from movement). -@export var weapon_sway_enabled: bool = true - -## Maximum weapon sway rotation (degrees). -@export_range(0.0, 5.0) var sway_max_rotation: float = 1.5 - -## Sway responsiveness (higher = snappier). -@export_range(1.0, 20.0) var sway_response: float = 8.0 - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -## Reference to parent controller (duck-typed — uses has_method instead of class_name). -var _controller: Node = null - -## Bob time accumulator. -var _bob_time: float = 0.0 - -## Current bob offset. -var _bob_offset: Vector2 = Vector2.ZERO - -## Current weapon node (child named "Weapon" or first MeshInstance3D). -var _weapon: Node3D = null - -## Weapon rest position (local transform when no sway). -var _weapon_rest: Transform3D - -## FOV state. -var _base_fov: float = 75.0 -var _current_fov_offset: float = 0.0 - -## Sway state (used as both current value and interpolation target). -var _sway_current: Vector2 = Vector2.ZERO -var _sway_target: Vector2 = Vector2.ZERO - -## Base eye Y set by parent controller's crouch logic (for additive bob). -var _base_eye_y: float = 0.0 - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _controller = get_parent() - if _controller == null or not _controller.has_method(&"is_sprinting"): - push_warning("FpsCamera: Parent has no is_sprinting() — view features disabled.") - - _base_fov = fov - - # Find weapon node (for sway) - for child in get_children(): - if child is Node3D: - _weapon = child - _weapon_rest = child.transform - break - - -func _process(delta: float) -> void: - if _controller == null: - return - - # Capture the eye height set by parent controller's crouch logic - # before we apply view bob offsets (which must be additive). - _base_eye_y = position.y - - # FOV management - _update_fov(delta) - - # View bobbing - if view_bob_enabled: - _update_bob(delta) - - # Weapon sway - if weapon_sway_enabled and _weapon: - _update_sway(delta) - - -# --------------------------------------------------------------------------- -# FOV -# --------------------------------------------------------------------------- - -func _update_fov(delta: float) -> void: - var target_offset: float = 0.0 - - # Sprint FOV kick — sustained while sprinting (not just on transition) - if _controller.is_sprinting(): - target_offset = sprint_fov_kick - - # Shoot FOV kick is triggered externally via trigger_shoot_fov() - # and decays toward the sprint/walk target naturally via move_toward. - _current_fov_offset = move_toward(_current_fov_offset, target_offset, fov_recovery_speed * delta) - fov = _base_fov + _current_fov_offset - - -# --------------------------------------------------------------------------- -# View bobbing -# --------------------------------------------------------------------------- - -func _update_bob(delta: float) -> void: - var crouch_amount: float = _controller.get_crouch_amount() - var sprinting: bool = _controller.is_sprinting() - - # Calculate bob speed multiplier from controller state - var speed_mult: float = 1.0 - if sprinting: - speed_mult = bob_sprint_mult - elif crouch_amount > 0.0: - speed_mult = lerpf(1.0, bob_crouch_mult, crouch_amount) - - if speed_mult < 0.01: - # Stationary — reset to zero - _bob_offset = _bob_offset.move_toward(Vector2.ZERO, delta * 10.0) - else: - _bob_time += delta * bob_frequency * speed_mult - _bob_offset = Vector2( - sin(_bob_time * 2.0) * bob_amplitude_h * speed_mult, - sin(_bob_time) * bob_amplitude_v * speed_mult - ) - - # Apply bob to camera position (relative to parent's eye offset) - position.x = _bob_offset.x - # Bob is additive on Y so it does NOT overwrite the crouch eye height - # set by the parent FPSCharacterController._update_crouch(). - position.y = _base_eye_y + _bob_offset.y - - -# --------------------------------------------------------------------------- -# Weapon sway -# --------------------------------------------------------------------------- - -func _update_sway(delta: float) -> void: - # Sway follows mouse movement indirectly via controller yaw/pitch changes - # Use velocity for physics-based sway: recentre over time - var vel := _controller.velocity as Vector3 - var sway_h: float = clamp(vel.x * 0.003, -sway_max_rotation, sway_max_rotation) - var sway_v: float = clamp(vel.z * 0.003, -sway_max_rotation, sway_max_rotation) - # Add a tiny amount from pitch/yaw delta (not mouse, from movement direction change) - _sway_target = Vector2( - move_toward(_sway_target.x, sway_h, sway_response * delta), - move_toward(_sway_target.y, sway_v, sway_response * delta) - ) - - # Apply to weapon node as small rotation offsets - if _weapon: - var target := Transform3D( - Basis.from_euler(Vector3( - deg_to_rad(_sway_target.y), - deg_to_rad(_sway_target.x), - 0.0 - )), - _weapon_rest.origin - ) - _weapon.transform = _weapon.transform.interpolate_with(target, sway_response * delta * 0.5) - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Trigger a shoot FOV kick. Call from weapon script. -func trigger_shoot_fov() -> void: - _current_fov_offset += shoot_fov_kick - - -## Reset view to resting state (for respawn). -func reset_view() -> void: - _bob_time = 0.0 - _bob_offset = Vector2.ZERO - _current_fov_offset = 0.0 - _sway_current = Vector2.ZERO - _sway_target = Vector2.ZERO - fov = _base_fov - if _weapon: - _weapon.transform = _weapon_rest - - -## Get the current bob offset for external effects. -func get_bob_offset() -> Vector2: - return _bob_offset diff --git a/client/characters/character/fps_camera.gd.uid b/client/characters/character/fps_camera.gd.uid deleted file mode 100644 index 390a94e..0000000 --- a/client/characters/character/fps_camera.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bjtf5jiedmwx8 diff --git a/client/characters/character/fps_character_controller.gd b/client/characters/character/fps_character_controller.gd deleted file mode 100644 index 0cae319..0000000 --- a/client/characters/character/fps_character_controller.gd +++ /dev/null @@ -1,489 +0,0 @@ -## FPSCharacterController — first-person character for a networked tactical shooter. -## -## Handles mouse look, WASD movement, sprint toggle, hold-to-crouch, jump. -## The rollback-aware movement runs inside _rollback_tick() when netfox is active. -## Falls back to _move_local() for standalone / non-networked mode. -## -## Usage (scene tree): -## FPSCharacterController (CharacterBody3D) -## ├── FpsCamera (Camera3D) — script: fps_camera.gd -## ├── CollisionShape3D (capsule) -## ├── PlayerNetInput — netfox input gathering -## ├── TickInterpolator — smooth visuals for remotes -## └── (optional weapons/arms child) -## -## Mouse Look: Capture mouse on click, yaw rotates body, pitch rotates camera. -## Walk Toggle: Tap Shift to toggle sprint on/off. -## Crouch: Hold Ctrl to crouch. Smooth lerp transition. -## Jump: Press Space. -class_name FPSCharacterController -extends CharacterBody3D - -# --------------------------------------------------------------------------- -# Exports — tune per weapon / game feel -# --------------------------------------------------------------------------- - -## Mouse look sensitivity. At default 0.005, 100 px mouse motion = 0.5 degree rotation. -@export_range(0.001, 0.1, 0.0005) var mouse_sensitivity: float = 0.005 - -## Mouse vertical sensitivity multiplier (1.0 = same as horizontal). -@export_range(0.1, 2.0, 0.05) var mouse_vertical_ratio: float = 0.8 - -## Invert vertical look. -@export var invert_y: bool = false - -## Maximum pitch angle (degrees) — prevents looking upside down. -@export_range(1, 89) var max_pitch: float = 89.0 - -## If true, pressing Sprint toggles between walk/sprint. If false, hold to sprint. -@export var walk_toggle: bool = true - -## If true, crouch toggles on press. If false, hold Ctrl to crouch. -@export var crouch_toggle: bool = false - -## Time in seconds for crouch height transition (lerp). -@export var crouch_transition_time: float = 0.15 - -## Eye height when standing (Godot units, from feet). -@export var eye_height_stand: float = 1.7 - -## Eye height when crouching. -@export var eye_height_crouch: float = 0.9 - -## Collision shape height when standing. -@export var collision_height_stand: float = 1.8 - -## Collision shape height when crouching. -@export var collision_height_crouch: float = 1.0 - -# --- Standalone movement parameters (used when netfox is not active) --- - -## Walk speed (standalone mode / single-player). -@export var local_walk_speed: float = 5.0 -## Sprint speed (standalone mode). -@export var local_sprint_speed: float = 8.0 -## Crouch speed (standalone mode). -@export var local_crouch_speed: float = 2.5 -## Jump velocity (standalone mode). -@export var local_jump_velocity: float = 4.5 -## Gravity (standalone mode). -@export var local_gravity: float = 15.0 -## Acceleration (standalone mode). -@export var local_acceleration: float = 12.0 - -# --------------------------------------------------------------------------- -# Internal state -# --------------------------------------------------------------------------- - -## Current look rotation. -var _yaw: float = 0.0 -var _pitch: float = 0.0 - -## Crouch lerp target (0.0 = standing, 1.0 = full crouch). -var _crouch_target: float = 0.0 -var _crouch_current: float = 0.0 - -## Walk-toggle state. -var _sprint_active: bool = false -var _sprint_pressed_last: bool = false - -## Crouch toggle state. -var _crouch_active: bool = false -var _crouch_pressed_last: bool = false - -## Mouse capture state. -var _mouse_captured: bool = false - -## Whether netfox rollback is active (set by parent in network mode). -var _netfox_active: bool = false - -## Whether this is the local player (only the local player captures mouse). -var _is_local_player: bool = false - -# --------------------------------------------------------------------------- -# Node references (set in _ready) -# --------------------------------------------------------------------------- - -var _camera: Node3D = null -var _collision_shape: CollisionShape3D = null -var _capsule_shape: CapsuleShape3D = null - -# Cached standing/crouching shape parameters. -var _stand_capsule_height: float = 0.0 -var _crouch_capsule_height: float = 0.0 -var _capsule_radius: float = 0.0 - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Determine if this is the local player - _is_local_player = multiplayer.get_unique_id() == multiplayer.get_multiplayer_authority() - - # Check if netfox rollback is available - _netfox_active = Engine.has_singleton(&"NetworkRollback") - - # Locate camera - _camera = get_node_or_null("%FpsCamera") - if _camera == null: - for child in get_children(): - if child is Camera3D: - _camera = child - break - if _camera == null: - push_error("FPSCharacterController: No Camera3D child found. Mouse look disabled.") - - # Locate collision shape - for child in get_children(): - if child is CollisionShape3D: - _collision_shape = child - if child.shape is CapsuleShape3D: - _capsule_shape = child.shape - _capsule_radius = _capsule_shape.radius - _stand_capsule_height = collision_height_stand - 2.0 * _capsule_radius - _crouch_capsule_height = collision_height_crouch - 2.0 * _capsule_radius - _capsule_shape.height = _stand_capsule_height - break - - # Initialize yaw/pitch from current transform - _yaw = rotation.y - if _camera: - _pitch = _camera.rotation.x - - # Initialize crouch animation state - _crouch_current = 0.0 - _update_crouch(0.0) - - # Start with mouse captured on local player - _set_local_player(_is_local_player) - - -func _input(event: InputEvent) -> void: - if not _is_local_player: - return - - # Mouse look - if event is InputEventMouseMotion and _mouse_captured: - var rel: Vector2 = event.relative - # Yaw (body rotation) - _yaw -= rel.x * mouse_sensitivity - # Pitch (camera rotation) - var invert: float = -1.0 if invert_y else 1.0 - _pitch += rel.y * mouse_sensitivity * mouse_vertical_ratio * invert - _pitch = clamp(_pitch, deg_to_rad(-max_pitch), deg_to_rad(max_pitch)) - - # Mouse capture toggle - if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT and event.pressed: - if not _mouse_captured: - _capture_mouse(true) - - -func _unhandled_input(event: InputEvent) -> void: - if not _is_local_player: - return - # Escape to release mouse - if event.is_action_pressed("ui_cancel"): - _capture_mouse(false) - - -# --------------------------------------------------------------------------- -# Main loop -# --------------------------------------------------------------------------- - -func _physics_process(delta: float) -> void: - # When netfox rollback is active, movement is driven by _rollback_tick(). - # We only handle local-only visual updates here: crouch animation, rotation. - if _netfox_active: - _update_visual_state(delta) - return - - # Standalone / no-netfox mode: do full local movement - _standalone_physics(delta) - - -## Updates visual state without applying movement — called every physics frame -## when netfox rollback drives the actual movement. -func _update_visual_state(delta: float) -> void: - # Walk toggle logic (frame-rate dependent) - if walk_toggle: - var sprint_pressed := Input.is_action_pressed(&"sprint") - if sprint_pressed and not _sprint_pressed_last: - _sprint_active = not _sprint_active - _sprint_pressed_last = sprint_pressed - else: - _sprint_active = Input.is_action_pressed(&"sprint") - - # Crouch toggle logic - if crouch_toggle: - var crouch_pressed := Input.is_action_pressed(&"crouch") - if crouch_pressed and not _crouch_pressed_last: - _crouch_active = not _crouch_active - _crouch_pressed_last = crouch_pressed - else: - _crouch_active = Input.is_action_pressed(&"crouch") - - # Crouch height transition (visual only) - var target_crouch: float = 1.0 if _crouch_active else 0.0 - _crouch_target = target_crouch - var crouch_speed: float = 1.0 / max(crouch_transition_time, 0.001) - if _crouch_current < _crouch_target: - _crouch_current = min(_crouch_current + crouch_speed * delta, _crouch_target) - elif _crouch_current > _crouch_target: - _crouch_current = max(_crouch_current - crouch_speed * delta, _crouch_target) - _update_crouch(_crouch_current) - - # Apply rotation (visual only — authoritative rotation from rollback) - rotation.y = _yaw - if _camera: - _camera.rotation.x = _pitch - - -## Full physics update for standalone / non-networked mode. -func _standalone_physics(delta: float) -> void: - # 1. Capture input state - var input_dir := _get_move_direction() - var jump_pressed := Input.is_action_just_pressed(&"jump") - var sprint_pressed := Input.is_action_pressed(&"sprint") - var crouch_pressed := Input.is_action_pressed(&"crouch") - - # 2. Walk toggle logic - if walk_toggle: - if sprint_pressed and not _sprint_pressed_last: - _sprint_active = not _sprint_active - _sprint_pressed_last = sprint_pressed - else: - _sprint_active = sprint_pressed - - # 3. Crouch toggle logic - if crouch_toggle: - if crouch_pressed and not _crouch_pressed_last: - _crouch_active = not _crouch_active - _crouch_pressed_last = crouch_pressed - else: - _crouch_active = crouch_pressed - - # 4. Crouch height transition - var target_crouch: float = 1.0 if _crouch_active else 0.0 - _crouch_target = target_crouch - var crouch_speed: float = 1.0 / max(crouch_transition_time, 0.001) - if _crouch_current < _crouch_target: - _crouch_current = min(_crouch_current + crouch_speed * delta, _crouch_target) - elif _crouch_current > _crouch_target: - _crouch_current = max(_crouch_current - crouch_speed * delta, _crouch_target) - _update_crouch(_crouch_current) - - # 5. Apply rotation - rotation.y = _yaw - if _camera: - _camera.rotation.x = _pitch - - # 6. Do local CharacterBody3D physics - _move_local(input_dir, delta, jump_pressed) - - -# --------------------------------------------------------------------------- -# Rollback tick — called by RollbackSynchronizer for deterministic movement -# --------------------------------------------------------------------------- - -## Rollback-aware movement tick. Called by RollbackSynchronizer each network tick -## when netfox is active. Uses CharacterBody3D physics (move_and_slide) for proper -## acceleration, slopes, and collision response. -func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: - # Find PlayerNetInput — it has the input state for this tick - var input_node = _find_input_node() - if input_node == null: - return - - var dir: Vector3 = input_node.get(&"move_direction") - var yaw: float = input_node.get(&"look_yaw") - var jump: bool = input_node.get(&"jump") - var sprint: bool = input_node.get(&"sprint") - var crouch: bool = input_node.get(&"crouch") - - # Apply yaw rotation - _yaw = yaw - rotation.y = _yaw - - # Determine speed - var speed: float = local_walk_speed - if sprint: - speed = local_sprint_speed - if crouch: - speed = local_crouch_speed - - # Apply movement with acceleration for smooth feel - if dir != Vector3.ZERO: - var wish_dir := (transform.basis * dir).normalized() - var target_vel := wish_dir * speed - # Horizontal acceleration (smooth speed changes) - var h_vel := Vector3(velocity.x, 0.0, velocity.z) - h_vel = h_vel.move_toward(target_vel, local_acceleration * delta) - velocity.x = h_vel.x - velocity.z = h_vel.z - else: - # Decelerate when no input - velocity.x = move_toward(velocity.x, 0.0, local_acceleration * delta) - velocity.z = move_toward(velocity.z, 0.0, local_acceleration * delta) - - # Gravity - if not is_on_floor(): - velocity.y -= local_gravity * delta - elif not jump: - velocity.y = 0.0 - - # Jump - if jump and is_on_floor(): - velocity.y = local_jump_velocity - - move_and_slide() - - # Track crouch/sprint state for visual updates - _crouch_active = crouch - _sprint_active = sprint - - -func _find_input_node(): - var parent := get_parent() - if parent == null: - return null - for child in parent.get_children(): - if child.name == "PlayerNetInput": - return child - # Try own children - for child in get_children(): - if child.name == "PlayerNetInput": - return child - return null - - -# --------------------------------------------------------------------------- -# Local movement (standalone / no-server fallback) -# --------------------------------------------------------------------------- - -func _move_local(input_dir: Vector3, delta: float, jump: bool) -> void: - var target_speed: float = local_walk_speed - if _sprint_active: - target_speed = local_sprint_speed - if _crouch_active: - target_speed = local_crouch_speed - - var wish_dir := (transform.basis * input_dir).normalized() - var target_vel := wish_dir * target_speed - - # Horizontal acceleration - var h_vel := Vector3(velocity.x, 0.0, velocity.z) - h_vel = h_vel.move_toward(target_vel, local_acceleration * delta) - velocity.x = h_vel.x - velocity.z = h_vel.z - - # Gravity - if not is_on_floor(): - velocity.y -= local_gravity * delta - - # Jump - if jump and is_on_floor(): - velocity.y = local_jump_velocity - - move_and_slide() - - -# --------------------------------------------------------------------------- -# Crouch height management -# --------------------------------------------------------------------------- - -func _update_crouch(amount: float) -> void: - ## amount: 0.0 = standing, 1.0 = fully crouched - # Eye height — camera position relative to body origin - if _camera: - _camera.position.y = lerpf(eye_height_stand, eye_height_crouch, amount) - - # Collision shape — capsule height (cylindrical section) - if _capsule_shape: - _capsule_shape.height = lerpf(_stand_capsule_height, _crouch_capsule_height, amount) - - # Move the collision shape center so the capsule base stays on the ground - if _collision_shape: - _collision_shape.position.y = lerpf(0.0, (collision_height_crouch - collision_height_stand) * 0.5, amount) - - -# --------------------------------------------------------------------------- -# Input helpers -# --------------------------------------------------------------------------- - -func _get_move_direction() -> Vector3: - var dir := Vector3.ZERO - if Input.is_action_pressed(&"move_forward") or Input.is_action_pressed(&"move_up"): - dir.z -= 1.0 - if Input.is_action_pressed(&"move_backward") or Input.is_action_pressed(&"move_down"): - dir.z += 1.0 - if Input.is_action_pressed(&"move_left"): - dir.x -= 1.0 - if Input.is_action_pressed(&"move_right"): - dir.x += 1.0 - if dir.length_squared() > 0.0: - dir = dir.normalized() - return dir - - -func _capture_mouse(capture: bool) -> void: - if capture == _mouse_captured: - return - _mouse_captured = capture - if capture: - Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) - else: - Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) - - -# --------------------------------------------------------------------------- -# Public API — used by PlayerNetInput and external managers -# --------------------------------------------------------------------------- - -## Mark this as the local player (enables mouse capture and input). -func _set_local_player(enabled: bool) -> void: - _is_local_player = enabled - if enabled: - _capture_mouse(true) - # TickInterpolator should be disabled for the local player - var ti := get_node_or_null("TickInterpolator") - if ti != null and ti.has_method(&"set_enabled"): - ti.set_enabled(false) - elif ti != null: - ti.enabled = false - - -## Get current yaw (radians) — for PlayerNetInput sync. -func get_current_yaw() -> float: - return _yaw - -## Get current pitch (radians) — for PlayerNetInput sync. -func get_current_pitch() -> float: - return _pitch - -## Get current crouch amount (0.0 = standing, 1.0 = fully crouched). -func get_crouch_amount() -> float: - return _crouch_current - -## Is the player currently sprinting? -func is_sprinting() -> bool: - return _sprint_active - -## Is the player currently crouching? -func is_crouching() -> bool: - return _crouch_active - -## Force look direction (useful for spectator / spawn reset). -func set_look(yaw_rad: float, pitch_rad: float) -> void: - _yaw = yaw_rad - _pitch = clamp(pitch_rad, deg_to_rad(-max_pitch), deg_to_rad(max_pitch)) - -## Reset to default standing state. -func reset_pose() -> void: - _sprint_active = false - _crouch_active = false - _sprint_pressed_last = false - _crouch_pressed_last = false - _crouch_current = 0.0 - _crouch_target = 0.0 - _update_crouch(0.0) diff --git a/client/characters/character/fps_character_controller.gd.uid b/client/characters/character/fps_character_controller.gd.uid deleted file mode 100644 index fd3c48f..0000000 --- a/client/characters/character/fps_character_controller.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cpbvk1itjonm diff --git a/client/characters/input/input_handler.gd b/client/characters/input/input_handler.gd deleted file mode 100644 index ac937bc..0000000 --- a/client/characters/input/input_handler.gd +++ /dev/null @@ -1,59 +0,0 @@ -## InputHandler — maps Godot Input Actions to FPS character controls. -## -## This script is NOT required at runtime — it exists to document the input -## map bindings that FPSCharacterController expects. Add these actions to -## your Project → Input Map (or load this script as an autoload for reference). -## -## Bindings (tactical FPS layout): -## -## Action Key Description -## ─────────────────────────────────────────────────────── -## move_forward W Walk forward -## move_backward S Walk backward -## move_left A Strafe left -## move_right D Strafe right -## jump Space Jump -## sprint Shift Sprint / walk-toggle -## crouch Ctrl Crouch (hold or toggle) -## shoot Mouse LMB Fire weapon -## aim Mouse RMB Aim down sights -## reload R Reload weapon -## interact E Use/interact -## toggle_walk_toggle (not bound) Toggle walk-toggle mode -## toggle_crouch_toggle (not bound) Toggle crouch-toggle mode -## ui_cancel Esc Release mouse capture -## -## Implementation note: -## FPSCharacterController reads input directly via Input.is_action_pressed() -## in _physics_process. No separate InputHandler node is needed unless you -## want to add rebinding, analog input smoothing, or input buffering. - -extends Node - -func _ready() -> void: - # This script documents bindings only — no runtime logic. - # To enforce default bindings at startup, uncomment the next lines: - - # _ensure_action(&"move_forward", KEY_W) - # _ensure_action(&"move_backward", KEY_S) - # _ensure_action(&"move_left", KEY_A) - # _ensure_action(&"move_right", KEY_D) - # _ensure_action(&"jump", KEY_SPACE) - # _ensure_action(&"sprint", KEY_SHIFT) - # _ensure_action(&"crouch", KEY_CTRL) - # _ensure_action(&"shoot", MOUSE_BUTTON_LEFT) - # _ensure_action(&"aim", MOUSE_BUTTON_RIGHT) - # _ensure_action(&"reload", KEY_R) - # _ensure_action(&"interact", KEY_E) - pass - - -## Ensure an input action exists with the given default key binding. -## Only sets the binding if the action does not already exist. -func _ensure_action(action_name: StringName, key: Key) -> void: - if InputMap.has_action(action_name): - return - var ev := InputEventKey.new() - ev.keycode = key - InputMap.add_action(action_name) - InputMap.action_add_event(action_name, ev) diff --git a/client/characters/input/input_handler.gd.uid b/client/characters/input/input_handler.gd.uid deleted file mode 100644 index 818b6d3..0000000 --- a/client/characters/input/input_handler.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bvkhxr1bv6lth diff --git a/client/characters/input/player_net_input.gd b/client/characters/input/player_net_input.gd deleted file mode 100644 index a912eec..0000000 --- a/client/characters/input/player_net_input.gd +++ /dev/null @@ -1,29 +0,0 @@ -## PlayerNetInput — netfox BaseNetInput subclass for the tactical shooter. -## -## Collects player input each network tick for the rollback system. -## Referenced by RollbackSynchronizer's `input_properties`. -## -## This script is ONLY loaded from client scenes where netfox is active. - -extends "res://addons/netfox.extras/base-net-input.gd" -class_name PlayerNetInput - -# Movement -var move_direction: Vector3 -var look_yaw: float -var look_pitch: float - -# Actions -var jump: bool -var sprint: bool -var crouch: bool -var shoot: bool -var aim: bool - -# Weapon -var weapon_slot: int = -1 # -1 = no change, 0-4 for slot index -var reload: bool -var use: bool # interact / plant / defuse - -# Input sequence for reconciliation -var input_sequence: int diff --git a/client/characters/objectives/bomb_carrier.gd b/client/characters/objectives/bomb_carrier.gd deleted file mode 100644 index b9cb65d..0000000 --- a/client/characters/objectives/bomb_carrier.gd +++ /dev/null @@ -1,293 +0,0 @@ -## BombCarrier — Client-side bomb status UI and prompts. -## -## Attached to the local T player who carries the bomb. -## Provides visual feedback for: -## - Bomb status (planted/defusing/timer) -## - Direction indicator to planted bomb -## - "Hold E to defuse" prompt (CT, near bomb) -## - "Hold E to plant" prompt (T, in bombsite, LIVE phase) -## -## This script is a Node that should be added as a child of the local -## player's character node (FPSCharacterController) on the client side. -## It communicates with the server BombObjective via RPC or state sync. - -extends Node -class_name BombCarrier - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when the nearby interaction prompt changes. -signal prompt_changed(prompt_text: String, visible: bool) - -## Emitted when bomb status UI should update. -signal bomb_status_updated(planted: bool, timer: float, defusing: bool, defuse_progress: float) - -## Emitted when the bomb direction indicator should update. -signal bomb_direction_updated(bearing_degrees: float, distance: float) - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## The "Use/Interact" action name (matched in Input Map). -@export var interact_action: String = "interact" - -## Interaction distance for planting (in Godot units). -@export var plant_distance: float = 2.0 - -## Interaction distance for defusing (in Godot units). -@export var defuse_distance: float = 3.0 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Whether this player has the bomb (T-side bomb carrier). -var has_bomb: bool = false - -## Whether the bomb is currently planted. -var _bomb_planted: bool = false - -## Position of the planted bomb (server-authoritative). -var _bomb_position: Vector3 = Vector3.ZERO - -## Remaining bomb timer (received from server). -var _bomb_timer: float = 0.0 - -## Whether the local player is currently defusing. -var _is_defusing: bool = false - -## Current defuse progress (0.0 to 1.0). -var _defuse_progress: float = 0.0 - -## Current prompt text to show. -var _current_prompt: String = "" - -## Whether the prompt is currently visible. -var _prompt_visible: bool = false - -## Whether we are inside a bombsite. -var _in_bombsite: bool = false - -## Whether we are near the planted bomb. -var _near_planted_bomb: bool = false - -## Whether the interact key is being held. -var _interact_held: bool = false - -## Hold-down timer for plant/defuse (E key held long enough). -var _interact_hold_time: float = 0.0 - -## Time required to hold E to start action (for UX consistency). -var _interact_hold_duration: float = 0.0 # Immediate on press - -## Reference to the local player's parent/character controller. -var _character_controller: Node = null - -## Reference to the bomb objective on the server (for RPC calls). -## Set by the game manager after instantiation. -var bomb_objective_path: NodePath = NodePath() - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _character_controller = get_parent() - if _character_controller == null: - push_warning("[BombCarrier] No parent node — prompts will not work") - - # Try to set up the interact action if it doesn't exist - if not InputMap.has_action(interact_action): - var event := InputEventKey.new() - event.keycode = KEY_E - InputMap.add_action(interact_action) - InputMap.action_add_event(interact_action, event) - - print("[BombCarrier] Initialised — has_bomb=%s" % has_bomb) - -func _process(delta: float) -> void: - _update_interaction(delta) - _emit_status_updates() - -# --------------------------------------------------------------------------- -# Public API — Server state sync -# --------------------------------------------------------------------------- - -## Called by the game manager or network sync to update bomb state. -func sync_bomb_state(planted: bool, position: Vector3, timer: float, - defusing: bool, defuse_progress: float) -> void: - _bomb_planted = planted - _bomb_position = position - _bomb_timer = timer - _is_defusing = defusing - _defuse_progress = defuse_progress - -## Set whether this player has the bomb (assigned by server). -func set_has_bomb(value: bool) -> void: - has_bomb = value - print("[BombCarrier] Has bomb: %s" % value) - -## Set whether the local player is inside a bombsite Area3D. -## Called by the bombsite Area3D signal handlers on the client. -func set_in_bombsite(value: bool) -> void: - _in_bombsite = value - -## Set whether the local player is near the planted bomb. -## Called by the bomb area proximity check. -func set_near_planted_bomb(value: bool) -> void: - _near_planted_bomb = value - -# --------------------------------------------------------------------------- -# Public API — RPC calls to server -# --------------------------------------------------------------------------- - -## Request to plant the bomb at the current position. -## Called when the T player presses E inside a bombsite with the bomb. -func request_plant() -> void: - if not has_bomb or not _in_bombsite: - return - if _bomb_planted: - return - - # Send plant request to server - # In real implementation, this would be an RPC call: - # _send_plant_request.rpc_id(1, _character_controller.global_position) - _send_plant_request(_character_controller.global_position) - -## Request to start defusing the bomb. -## Called when the CT player presses E near the planted bomb. -func request_defuse() -> void: - if not _near_planted_bomb or not _bomb_planted: - return - if _is_defusing: - return - - # Send defuse request to server - # _send_defuse_request.rpc_id(1) - _send_defuse_request() - -## Request to cancel defuse (when player moves or is interrupted). -func request_cancel_defuse() -> void: - if not _is_defusing: - return - _send_cancel_defuse() - -# --------------------------------------------------------------------------- -# RPC stubs (to be replaced with actual RPC calls) -# --------------------------------------------------------------------------- - -func _send_plant_request(position: Vector3) -> void: - # Placeholder: in real implementation, send RPC to server - print("[BombCarrier] Plant request at (%.1f, %.1f, %.1f)" % - [position.x, position.y, position.z]) - -func _send_defuse_request() -> void: - # Placeholder: in real implementation, send RPC to server - print("[BombCarrier] Defuse request") - -func _send_cancel_defuse() -> void: - # Placeholder: in real implementation, send RPC to server - print("[BombCarrier] Cancel defuse request") - -# --------------------------------------------------------------------------- -# Internal — Interaction logic -# --------------------------------------------------------------------------- - -func _update_interaction(delta: float) -> void: - var interact_pressed: bool = Input.is_action_pressed(interact_action) - var prompt_text: String = "" - var show_prompt: bool = false - - # Determine what prompt to show - if _bomb_planted and _near_planted_bomb and not _is_defusing: - # CT player near planted bomb — defuse prompt - var team: int = _get_local_player_team() - if team == TeamData.Team.COUNTER_TERRORIST: - prompt_text = "Hold E to defuse" - show_prompt = true - - elif has_bomb and _in_bombsite and not _bomb_planted: - # T player with bomb inside bombsite — plant prompt - if _is_round_live(): - prompt_text = "Hold E to plant" - show_prompt = true - - elif _bomb_planted and _is_defusing: - # Currently defusing — show progress - var progress_pct: int = int(_defuse_progress * 100.0) - prompt_text = "Defusing... %d%%" % progress_pct - show_prompt = true - - # Handle interact hold - if interact_pressed and show_prompt: - if not _interact_held: - _interact_held = true - _interact_hold_time = 0.0 - - _interact_hold_time += delta - - # Check if we should trigger the action - if _interact_hold_time >= _interact_hold_duration: - _interact_hold_time = 0.0 - if prompt_text.contains("defuse"): - request_defuse() - elif prompt_text.contains("plant"): - request_plant() - else: - # Cancel any pending interaction - if _interact_held: - _interact_held = false - _interact_hold_time = 0.0 - # If we were defusing and released, cancel - if _is_defusing: - request_cancel_defuse() - - # Update prompt if changed - if prompt_text != _current_prompt or show_prompt != _prompt_visible: - _current_prompt = prompt_text - _prompt_visible = show_prompt - prompt_changed.emit(prompt_text, show_prompt) - -func _emit_status_updates() -> void: - # Emit bomb status updates (rate-limited is handled by engine) - bomb_status_updated.emit(_bomb_planted, _bomb_timer, _is_defusing, _defuse_progress) - - # Emit direction indicator if bomb is planted - if _bomb_planted and _character_controller != null: - var player_pos: Vector3 = _character_controller.global_position - var direction: Vector3 = _bomb_position - player_pos - var distance: float = direction.length() - if distance > 0.01: - var bearing: float = atan2(direction.x, -direction.z) # Relative to forward (Z) - bomb_direction_updated.emit(rad_to_deg(bearing), distance) - else: - bomb_direction_updated.emit(0.0, 0.0) - -# --------------------------------------------------------------------------- -# Internal — Helpers -# --------------------------------------------------------------------------- - -## Get the local player's team (from TeamManager singleton if available). -func _get_local_player_team() -> int: - var team_manager: TeamManager = get_node_or_null("/root/TeamManager") - if team_manager: - var peer_id: int = multiplayer.get_unique_id() if multiplayer.has_method(&\"get_unique_id\") else -1 - if peer_id >= 0: - return team_manager.get_player_team(peer_id) - return -1 - -## Check if the current round is in LIVE phase. -func _is_round_live() -> bool: - var round_manager: RoundManager = get_node_or_null("/root/RoundManager") - if round_manager: - return round_manager.get_phase() == RoundManager.RoundPhase.LIVE - return false - -## Get the multiplayer API (stub for compatibility). -func get_multiplayer() -> MultiplayerAPI: - if multiplayer and multiplayer.has_method(&\"get_unique_id\"): - return multiplayer - return null diff --git a/client/characters/objectives/bomb_carrier.gd.uid b/client/characters/objectives/bomb_carrier.gd.uid deleted file mode 100644 index 9aff744..0000000 --- a/client/characters/objectives/bomb_carrier.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dtvf72mhgdat7 diff --git a/client/characters/player_netfox.gd b/client/characters/player_netfox.gd deleted file mode 100644 index 6a3abd6..0000000 --- a/client/characters/player_netfox.gd +++ /dev/null @@ -1,210 +0,0 @@ -## PlayerNetfox — netfox rollback-aware player for the tactical-shooter client. -## -## Extends the base Player with netfox RollbackSynchronizer, TickInterpolator, -## BaseNetInput, and WeaponManager for deterministic first-person combat. -## -## This script is ONLY loaded from client scenes where netfox is active. -## The headless server uses the base player.gd which has no netfox deps. - -extends "res://scripts/network/player.gd" - -# --------------------------------------------------------------------------- -# Netfox node references -# --------------------------------------------------------------------------- -@onready var _tick_interpolator := $TickInterpolator as TickInterpolator -@onready var _input := $PlayerNetInput as PlayerNetInput -@onready var _weapon_manager := $WeaponManager as WeaponManager -@onready var _weapon_anchor := $WeaponAnchor as Node3D - -var _rs: RollbackSynchronizer - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -var _gravity: float = ProjectSettings.get_setting(&"physics/3d/default_gravity", 9.8) -var _is_local: bool = false -var _camera: Camera3D -var _mouse_captured: bool = true - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - super._ready() - - if Engine.has_singleton(&"NetworkTime") and Engine.has_singleton(&"NetworkRollback"): - _setup_rollback() - _connect_netfox_signals() - print("[PlayerNetfox] Rollback initialised for %s" % name) - else: - push_warning("[PlayerNetfox] netfox not available — running without rollback") - set_process(false) - set_physics_process(false) - - _camera = get_viewport().get_camera_3d() if get_viewport() else null - -# --------------------------------------------------------------------------- -# Rollback setup -# --------------------------------------------------------------------------- - -func _setup_rollback() -> void: - _rs = RollbackSynchronizer.new() - _rs.name = "RollbackSynchronizer" - _rs.state_properties = PackedStringArray([ - "global_position", "is_alive", "team_id", - "is_spectating", "spectate_target_id", - ]) - _rs.input_properties = PackedStringArray([ - "PlayerNetInput/move_direction", "PlayerNetInput/look_yaw", - "PlayerNetInput/look_pitch", "PlayerNetInput/jump", - "PlayerNetInput/sprint", "PlayerNetInput/crouch", - "PlayerNetInput/shoot", "PlayerNetInput/aim", - "PlayerNetInput/input_sequence", "PlayerNetInput/weapon_slot", - "PlayerNetInput/reload", "PlayerNetInput/use", - ]) - add_child(_rs, true) - _rs.rollback_ticks.connect(_rollback_tick) - -func _connect_netfox_signals() -> void: - var nt = Engine.get_singleton(&"NetworkTime") - if nt: - nt.before_tick_loop.connect(_before_tick_loop) - nt.after_tick_loop.connect(_after_tick_loop) - -# --------------------------------------------------------------------------- -# Rollback hooks -# --------------------------------------------------------------------------- - -func _before_tick_loop() -> void: - if _tick_interpolator and _tick_interpolator.enabled: - _tick_interpolator.save_transform() - -func _after_tick_loop() -> void: - if _tick_interpolator and _tick_interpolator.enabled: - _tick_interpolator.restore_transform() - -func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: - if not is_alive: - return - - var input := _input - - # Look rotation - rotate_object_local(Vector3(0, 1, 0), input.look_yaw) - - # Gravity + jump - _force_update_is_on_floor() - if is_on_floor(): - if input.jump: - velocity.y = ServerConfig.movement_jump_velocity if ServerConfig else 6.0 - else: - velocity.y -= _gravity * delta - - # Speed - var speed := 5.0 - if ServerConfig: - speed = ServerConfig.movement_walk_speed - if input.sprint: - speed = ServerConfig.movement_sprint_speed if ServerConfig else 7.0 - if input.crouch: - speed = ServerConfig.movement_crouch_speed if ServerConfig else 2.5 - - # Horizontal movement - var dir := (transform.basis * input.move_direction).normalized() - if dir.length() > 0.0: - velocity.x = dir.x * speed - velocity.z = dir.z * speed - else: - velocity.x = move_toward(velocity.x, 0.0, speed * 2.0) - velocity.z = move_toward(velocity.z, 0.0, speed * 2.0) - - move_and_slide() - -func _force_update_is_on_floor() -> void: - var old := velocity - velocity = Vector3.ZERO - move_and_slide() - velocity = old - -# --------------------------------------------------------------------------- -# Weapon system -# --------------------------------------------------------------------------- - -## Give starting weapons (called by spawner). -func give_default_weapons(team_id: int) -> void: - if _weapon_manager == null: - return - - # Always give knife - _weapon_manager.add_weapon(WeaponRegistry.get_by_id(WeaponRegistry.ID_KNIFE)) - - # Give team-default sidearm - var default_wep := WeaponRegistry.get_default_weapon(team_id) - _weapon_manager.add_weapon(default_wep) - -## Handle weapon slot switching from input. -func _handle_weapon_input(input: PlayerNetInput) -> void: - if _weapon_manager == null: - return - - if input.reload: - _weapon_manager.reload() - - if input.weapon_slot >= 0: - _weapon_manager.switch_to_slot(input.weapon_slot) - # Reset so it doesn't keep switching - input.weapon_slot = -1 - - if input.shoot: - _weapon_manager.fire() - -# --------------------------------------------------------------------------- -# Input handling (frame-rate) -# --------------------------------------------------------------------------- - -func _input(event: InputEvent) -> void: - if not _is_local or not _mouse_captured: - return - if _input == null: - return - - if event is InputEventMouseMotion: - _input.look_yaw -= event.relative.x * 0.005 - _input.look_pitch = clamp(_input.look_pitch - event.relative.y * 0.005 * 0.8, -1.57, 1.57) - - if event is InputEventMouseButton and event.pressed: - if event.button_index == MOUSE_BUTTON_LEFT: - _input.shoot = true - -func _unhandled_key_input(event: InputEvent) -> void: - if not _is_local: - return - if event.is_action_pressed(&"reload"): - _input.reload = true - elif event.is_action_pressed(&"shoot"): - _input.shoot = true - - # Weapon slots 1-4 - for i in range(4): - if event.is_action_pressed(&"weapon_slot_%d" % (i + 1)): - _input.weapon_slot = i - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -func mark_local() -> void: - _is_local = true - if _tick_interpolator: - _tick_interpolator.enabled = false - if _input: - _input.set_process(true) - Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) - -func apply_damage(amount: int, attacker_id: int = -1, weapon_id: int = 0) -> void: - health -= amount - if health <= 0: - health = 0 - is_alive = false - print("[PlayerNetfox] %s killed by peer %d with weapon %d" % [name, attacker_id, weapon_id]) diff --git a/client/characters/weapon/buy_menu.gd b/client/characters/weapon/buy_menu.gd deleted file mode 100644 index a776ed6..0000000 --- a/client/characters/weapon/buy_menu.gd +++ /dev/null @@ -1,445 +0,0 @@ -## BuyMenu — Client-side buy menu UI for weapon and equipment purchases. -## -## Displays a grid of purchasable weapons with name, cost, and key stats. -## Highlights weapons the player can afford, shows current money at the top, -## and supports both keyboard (numeric keys) and mouse-click selection. -## -## Opens during the PREP (buy) phase when the player is inside a buy zone. -## Automatically closes when the buy phase ends or the player leaves the zone. -## -## Usage (add as child of the player's UI root or HUD): -## var buy_menu = preload("res://client/characters/weapon/buy_menu.gd").new() -## add_child(buy_menu) -## -## # Show it -## buy_menu.open() -## buy_menu.populate(affordable_weapons_list, current_money) -## -## Signals: -## buy_menu_opened() -## buy_menu_closed() -## purchase_completed(weapon_id) -## purchase_failed(reason: String) -## -class_name BuyMenu -extends Control - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted when the buy menu opens. -signal buy_menu_opened() - -## Emitted when the buy menu closes. -signal buy_menu_closed() - -## Emitted when a purchase is confirmed by the server. -signal purchase_completed(weapon_id: String) - -## Emitted when a purchase is denied by the server. -signal purchase_failed(reason: String) - -# --------------------------------------------------------------------------- -# Exports — Layout -# --------------------------------------------------------------------------- -## Background panel colour. -@export var panel_color: Color = Color(0.1, 0.1, 0.15, 0.92) - -## Accent colour for headers and affordable items. -@export var accent_color: Color = Color(0.2, 0.7, 0.3, 1.0) - -## Colour for items the player cannot afford. -@export var unaffordable_color: Color = Color(0.5, 0.5, 0.5, 1.0) - -## Text colour. -@export var text_color: Color = Color(0.95, 0.95, 0.95, 1.0) - -## Key binding for opening the buy menu (default: B). -@export var open_key: Key = KEY_B - -# --------------------------------------------------------------------------- -# Internal state -# --------------------------------------------------------------------------- -## Reference to the BuyMenuHandler on the server (for sending RPCs). -## Injected by the UI manager or found at runtime. -var buy_menu_handler_path: NodePath = NodePath() - -var _is_open: bool = false -var _weapon_buttons: Array[Button] = [] -var _populated: bool = false - -# --------------------------------------------------------------------------- -# UI Nodes (built in _build_ui) -# --------------------------------------------------------------------------- -var _panel: Panel = null -var _money_label: Label = null -var _title_label: Label = null -var _weapon_container: Container = null -var _close_button: Button = null -var _status_label: Label = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _build_ui() - visible = false - - # Listen for server purchase confirmations / denials - # The BuyMenuHandler sends RPCs that land on this node. - # We connect to them via the multiplayer API — they're named to match - # the RPC names defined in BuyMenuHandler. - - # Connect input for toggle key - set_process_input(true) - -func _input(event: InputEvent) -> void: - if event.is_action_pressed("buy_menu") or ( - event is InputEventKey and - event.keycode == open_key and - event.pressed and - not event.echo - ): - if _is_open: - close() - else: - open() - accept_event() - -# --------------------------------------------------------------------------- -# UI Construction -# --------------------------------------------------------------------------- - -func _build_ui() -> void: - # Main panel — centred, sized to fit content - _panel = Panel.new() - _panel.anchor_left = 0.15 - _panel.anchor_right = 0.85 - _panel.anchor_top = 0.1 - _panel.anchor_bottom = 0.9 - _panel.mouse_filter = Control.MOUSE_FILTER_PASS - add_child(_panel) - - # Panel background style - var style := StyleBoxFlat.new() - style.bg_color = panel_color - style.corner_radius_top_left = 8 - style.corner_radius_top_right = 8 - style.corner_radius_bottom_left = 8 - style.corner_radius_bottom_right = 8 - _panel.add_theme_stylebox_override("panel", style) - - # Vertical layout inside the panel - var vbox := VBoxContainer.new() - vbox.anchor_left = 0.0 - vbox.anchor_right = 1.0 - vbox.anchor_top = 0.0 - vbox.anchor_bottom = 1.0 - vbox.add_theme_constant_override("separation", 12) - _panel.add_child(vbox) - - # ── Title ── - _title_label = Label.new() - _title_label.text = "BUY MENU" - _title_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _title_label.add_theme_font_size_override("font_size", 24) - _title_label.add_theme_color_override("font_color", accent_color) - vbox.add_child(_title_label) - - # ── Money display ── - _money_label = Label.new() - _money_label.text = "$0" - _money_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _money_label.add_theme_font_size_override("font_size", 20) - _money_label.add_theme_color_override("font_color", text_color) - vbox.add_child(_money_label) - - # ── Weapon grid ── - _weapon_container = GridContainer.new() - _weapon_container.columns = 2 - _weapon_container.add_theme_constant_override("h_separation", 16) - _weapon_container.add_theme_constant_override("v_separation", 8) - _weapon_container.size_flags_horizontal = Control.SIZE_EXPAND_FILL - _weapon_container.size_flags_vertical = Control.SIZE_EXPAND_FILL - vbox.add_child(_weapon_container) - - # ── Status / feedback line ── - _status_label = Label.new() - _status_label.text = "" - _status_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _status_label.add_theme_color_override("font_color", Color(1.0, 0.8, 0.2, 1.0)) - _status_label.add_theme_font_size_override("font_size", 14) - vbox.add_child(_status_label) - - # ── Close hint ── - var close_hint := Label.new() - close_hint.text = "Press B or ESC to close | Click or press 1-4 to buy" - close_hint.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - close_hint.add_theme_font_size_override("font_size", 11) - close_hint.add_theme_color_override("font_color", Color(0.6, 0.6, 0.6, 1.0)) - vbox.add_child(close_hint) - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Open and populate the buy menu. -func open() -> void: - if _is_open: - return - - _is_open = true - visible = true - _populated = false - _clear_weapons() - _status_label.text = "" - - # Request affordable weapons from the server via an RPC call - # (The server pushes the data back via RPC response.) - _request_menu_data() - - buy_menu_opened.emit() - -## Close the buy menu. -func close() -> void: - if not _is_open: - return - _is_open = false - visible = false - buy_menu_closed.emit() - -## Returns true if the menu is currently open. -func is_open() -> bool: - return _is_open - -## Update the displayed money amount. -func set_money(amount: int) -> void: - _money_label.text = "$%d" % amount - -## Populate the weapon grid with purchasable items. -## `weapons` is an Array[Dictionary] with keys: -## weapon_id, display_name, cost, damage, fire_rate, mag_size -## `current_money` is the player's balance. -func populate(weapons: Array[Dictionary], current_money: int) -> void: - _clear_weapons() - _populated = false - set_money(current_money) - - var index: int = 1 - for w in weapons: - var affordable: bool = (current_money >= w.get("cost", 0)) - _add_weapon_button(index, w, affordable) - index += 1 - - _populated = true - -## Show a temporary status message in the menu. -func show_status(message: String, duration: float = 3.0) -> void: - _status_label.text = message - if duration > 0: - get_tree().create_timer(duration).timeout.connect(func(): - if is_instance_valid(_status_label) and _status_label.text == message: - _status_label.text = "" - ) - -# --------------------------------------------------------------------------- -# Internal: weapon button creation -# --------------------------------------------------------------------------- - -func _add_weapon_button(index: int, data: Dictionary, affordable: bool) -> void: - var weapon_id: String = data.get("weapon_id", "") - var display_name: String = data.get("display_name", weapon_id) - var cost: int = data.get("cost", 0) - var damage: float = data.get("damage", 0.0) - var fire_rate: float = data.get("fire_rate", 0.0) - var mag_size: int = data.get("mag_size", 0) - - # Build the weapon card as a styled Button - var btn := Button.new() - btn.size_flags_horizontal = Control.SIZE_EXPAND_FILL - btn.size_flags_vertical = Control.SIZE_SHRINK_CENTER - btn.custom_minimum_size = Vector2(240, 80) - - # Text: name + cost on first line, stats on second - var stats_line: String = "%.0f dmg | %.1f rps | %d rds" % [damage, fire_rate, mag_size] - btn.text = "[%d] %s — $%d\n%s" % [index, display_name, cost, stats_line] - btn.flat = false - btn.tooltip_text = "%s — $%d\nDamage: %.0f\nFire Rate: %.1f Hz\nMagazine: %d rounds" % [ - display_name, cost, damage, fire_rate, mag_size - ] - - # Style - var fg_color: Color = accent_color if affordable else unaffordable_color - btn.add_theme_color_override("font_color", fg_color) - btn.add_theme_color_override("font_hover_color", text_color) - btn.add_theme_color_override("font_pressed_color", Color.WHITE) - btn.add_theme_font_size_override("font_size", 14) - - if not affordable: - btn.disabled = true - - btn.pressed.connect(_on_weapon_button_pressed.bind(weapon_id, cost, btn)) - _weapon_container.add_child(btn) - _weapon_buttons.append(btn) - -func _clear_weapons() -> void: - for child in _weapon_buttons: - if is_instance_valid(child): - child.queue_free() - _weapon_buttons.clear() - _populated = false - -# --------------------------------------------------------------------------- -# Internal: purchase flow -# --------------------------------------------------------------------------- - -func _on_weapon_button_pressed(weapon_id: String, cost: int, _button: Button) -> void: - _request_purchase(weapon_id) - -## Send a purchase request RPC to the server. -func _request_purchase(weapon_id: String) -> void: - _status_label.text = "Purchasing %s..." % weapon_id - - # Find the BuyMenuHandler and call its buy_request RPC. - # The handler is typically a child of GameServer. - if multiplayer.is_server(): - # Listen server / standalone — call directly - _call_buy_handler(weapon_id) - else: - # Dedicated client — send RPC - _call_buy_handler_rpc(weapon_id) - -func _call_buy_handler(_weapon_id: String) -> void: - # On a listen server, the handler is local - var handler: BuyMenuHandler = _find_buy_handler() - if handler: - handler.buy_request.rpc(_weapon_id) - -func _call_buy_handler_rpc(weapon_id: String) -> void: - # Find the handler path and send the RPC - var handler_path: NodePath = buy_menu_handler_path - if handler_path.is_empty(): - # Try to find it dynamically - handler_path = "/root/GameServer/BuyMenuHandler" - var node: Node = get_node_or_null(handler_path) if not handler_path.is_empty() else null - if node and node.has_method(&"buy_request"): - node.buy_request.rpc(weapon_id) - else: - # Fallback: call directly on the handler node path - rpc_id(1, "_remote_buy_request", weapon_id) - -## Fallback: send buy request to server's handler. -@rpc("any_peer", "call_remote", "reliable") -func _remote_buy_request(weapon_id: String) -> void: - if not multiplayer.is_server(): - return - var handler: BuyMenuHandler = _find_buy_handler() - if handler: - var sender: int = multiplayer.get_remote_sender_id() - handler.call_deferred("_process_buy_request", sender, weapon_id) - -func _find_buy_handler() -> BuyMenuHandler: - # Try common locations - var game_server: Node = get_node_or_null("/root/GameServer") - if game_server: - for child in game_server.get_children(): - if child is BuyMenuHandler: - return child - return null - -# --------------------------------------------------------------------------- -# RPC handlers — called by BuyMenuHandler (server → client) -# --------------------------------------------------------------------------- - -## Called by the server when a purchase succeeds. -@rpc("authority", "call_remote", "reliable") -func _on_buy_confirmed(weapon_id: String, cost: int) -> void: - show_status("Purchased %s for $%d" % [weapon_id, cost], 2.0) - purchase_completed.emit(weapon_id) - # Close after a brief delay so the player sees the confirmation - get_tree().create_timer(0.6).timeout.connect(close) - -## Called by the server when a purchase is denied. -@rpc("authority", "call_remote", "reliable") -func _on_buy_denied(reason: String) -> void: - show_status("Purchase failed: %s" % reason, 3.0) - purchase_failed.emit(reason) - -# --------------------------------------------------------------------------- -# Request affordable weapon data from the server -# --------------------------------------------------------------------------- - -func _request_menu_data() -> void: - # For now, the client populates from the weapon definitions directly, - # filtering by what the server says is affordable. - # In a more advanced version, the server sends the curated list. - # - # Since we don't know the player's money on the client, we send an - # RPC to the server to get the affordable list. But for simplicity, - # we populate all weapons and let the server deny if unaffordable. - # - # The server pushes the affordable list back via get_affordable_weapons(). - # For now, just show all weapons — the server will reject unaffordable ones. - - # Try to fetch from server - if multiplayer.is_server(): - _populate_from_local(player_id()) - else: - _request_affordable_weapons.rpc_id(1) - -## Get the player's peer ID. -func player_id() -> int: - return multiplayer.get_unique_id() - -## Client → Server: request affordable weapon list. -@rpc("any_peer", "call_remote", "reliable") -func _request_affordable_weapons() -> void: - if not multiplayer.is_server(): - return - var sender: int = multiplayer.get_remote_sender_id() - var handler: BuyMenuHandler = _find_buy_handler() - if handler: - var weapons: Array[Dictionary] = handler.get_affordable_weapons(sender) - var money: int = handler.get_player_money(sender) - _send_menu_data.rpc_id(sender, weapons, money) - -## Server → Client: send affordable weapon list and money. -@rpc("authority", "call_remote", "reliable") -func _send_menu_data(weapons: Array[Dictionary], current_money: int) -> void: - populate(weapons, current_money) - -func _populate_from_local(pid: int) -> void: - var handler: BuyMenuHandler = _find_buy_handler() - if handler: - var weapons: Array[Dictionary] = handler.get_affordable_weapons(pid) - var money: int = handler.get_player_money(pid) - populate(weapons, money) - -# --------------------------------------------------------------------------- -# Input helpers -# --------------------------------------------------------------------------- - -func _unhandled_key_input(event: InputEventKey) -> void: - if not _is_open or not _populated: - return - - # Numeric keys 1-4 to buy - var key: Key = event.keycode - var index: int = -1 - match key: - KEY_1, KEY_KP_1: index = 0 - KEY_2, KEY_KP_2: index = 1 - KEY_3, KEY_KP_3: index = 2 - KEY_4, KEY_KP_4: index = 3 - - if index >= 0 and index < _weapon_buttons.size(): - var btn: Button = _weapon_buttons[index] - if btn and not btn.disabled and event.pressed: - btn.emit_signal("pressed") - accept_event() - - # ESC to close - if event.keycode == KEY_ESCAPE and event.pressed: - close() - accept_event() diff --git a/client/characters/weapon/buy_menu.gd.uid b/client/characters/weapon/buy_menu.gd.uid deleted file mode 100644 index 33157c5..0000000 --- a/client/characters/weapon/buy_menu.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cdsyn134gsca8 diff --git a/client/characters/weapon/weapon_manager.gd b/client/characters/weapon/weapon_manager.gd deleted file mode 100644 index dcf3abe..0000000 --- a/client/characters/weapon/weapon_manager.gd +++ /dev/null @@ -1,348 +0,0 @@ -## WeaponManager — hitscan weapon system for tactical FPS. -## -## Manages a single hitscan weapon: fire rate limiting, ammo, reload. -## Communicates with SimulationServer for server-authoritative hit detection. -## -## Architecture: -## - Client-side: fire rate limiting, muzzle VFX, hit marker feedback -## - Server-side (via SimulationServer): hit detection, damage, lag compensation -## - Both sides: ammo tracking (server-authoritative, client-predicted) -## -## Usage (attach as child of FPSCharacterController): -## -## FPSCharacterController -## ├── WeaponManager — fire rate, ammo, VFX -## │ ├── MuzzleFlash — instantiated VFX -## │ └── HitMarker — instantiated VFX -## └── FpsCamera -## -class_name WeaponManager -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when the weapon fires (for visual feedback). -signal weapon_fired(origin: Vector3, direction: Vector3) - -## Emitted when this weapon hits an entity. -signal hit_marked(hit_pos: Vector3, damage: float, killed: bool) - -## Emitted when ammo changes. -signal ammo_changed(current: int, max: int) - -## Emitted when player is killed. -signal player_killed() - -## Emitted when the player switches weapons (for animation/UI). -signal weapon_switched(index: int, weapon_id: String) - -## Emitted when the current weapon fires (for animation/visual sync). -## Connected by animation players or VFX systems on the weapon model. -signal fire_animation_triggered() - -# --------------------------------------------------------------------------- -# Exports — Assault Rifle Config -# --------------------------------------------------------------------------- - -## Maximum ammo capacity. -@export var max_ammo: int = 30 - -## Starting ammo (including one magazine). -@export var start_ammo: int = 90 - -## Time between shots (seconds). 10 Hz = 0.1s between shots. -@export var fire_rate: float = 0.1 - -## Reload time in seconds. -@export var reload_time: float = 2.0 - -## Spread increases while firing (degrees). -@export var spread_per_shot: float = 0.5 - -## Max spread when firing continuously (degrees). -@export var max_spread: float = 4.0 - -## Spread recovery per second (degrees/s). -@export var spread_recovery: float = 8.0 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var current_ammo: int = 30 -var reserve_ammo: int = 90 -var is_reloading: bool = false -var _last_shot_time: float = 0.0 -var _current_spread: float = 0.0 - -# --------------------------------------------------------------------------- -# Multi-weapon inventory state -# --------------------------------------------------------------------------- - -## Array of weapon IDs the player carries (the inventory). -var _weapon_inventory: Array[String] = [] - -## Index into _weapon_inventory for the currently equipped weapon. -var _current_weapon_index: int = -1 - -## Per-weapon persistent state saved when switching away, restored on switch-back. -## weapon_id -> { ammo, reserve, is_reloading, last_shot_time, current_spread } -var _weapon_states: Dictionary = {} - -## Reference to the parent FPSCharacterController (set in _ready). -var _controller: FPSCharacterController = null - -## Reference to SimulationServer (if available). -var _server: Object = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _controller = get_parent() as FPSCharacterController - if _controller == null: - push_warning("WeaponManager: Parent is not FPSCharacterController. Disabled.") - set_process(false) - return - - # Find SimulationServer singleton - if Engine.has_singleton("SimulationServer"): - _server = Engine.get_singleton("SimulationServer") - elif Engine.get_main_loop() and Engine.get_main_loop().root: - # Try finding it in the scene tree - var game_server = Engine.get_main_loop().root.find_child("GameServer", true, false) - if game_server and game_server.has_method(&"get_simulation_server"): - _server = game_server.get_simulation_server() - - # Initialize ammo - current_ammo = max_ammo - reserve_ammo = start_ammo - - # Signal that ammo changed - ammo_changed.emit(current_ammo, max_ammo) - -# --------------------------------------------------------------------------- -# Main loop — called from FPSCharacterController._physics_process per tick -# --------------------------------------------------------------------------- - -## Try to fire the weapon. Returns true if a shot was fired. -## Called by the controller when shoot input is detected. -func try_fire(time: float) -> bool: - # Check fire rate - if time - _last_shot_time < fire_rate: - return false - - # Check ammo - if current_ammo <= 0: - # Auto-reload on empty — or play empty-click sound - if not is_reloading: - start_reload() - return false - - # Check reloading - if is_reloading: - return false - - # Deduct ammo - current_ammo -= 1 - _last_shot_time = time - - # Increase spread - _current_spread = min(_current_spread + spread_per_shot, max_spread) - - # Persist state back to per-weapon dict - _save_current_weapon_state() - - # Emit fire signal (for visual/hit marker) - # Direction comes from the controller's look direction - if _controller: - var origin: Vector3 = _controller.global_position - origin.y += _controller.eye_height_stand - var direction: Vector3 = _controller.get_look_direction() - weapon_fired.emit(origin, direction) - - ammo_changed.emit(current_ammo, max_ammo) - fire_animation_triggered.emit() - return true - -## Called every frame to recover spread and handle spread animation. -func _process(delta: float) -> void: - # Recover spread - if _current_spread > 0.0: - _current_spread = max(0.0, _current_spread - spread_recovery * delta) - -## Start reloading. -func start_reload() -> void: - if is_reloading or current_ammo >= max_ammo or reserve_ammo <= 0: - return - - is_reloading = true - await get_tree().create_timer(reload_time).timeout - - # Reload logic - var needed: int = max_ammo - current_ammo - var from_reserve: int = min(needed, reserve_ammo) - current_ammo += from_reserve - reserve_ammo -= from_reserve - is_reloading = false - - ammo_changed.emit(current_ammo, max_ammo) - _save_current_weapon_state() - -## Called when a hit is confirmed by the server. -func on_hit_confirmed(hit_pos: Vector3, damage: float, killed: bool) -> void: - hit_marked.emit(hit_pos, damage, killed) - if killed: - player_killed.emit() - -## Get current spread (degrees). -func get_current_spread() -> float: - return _current_spread - -## Get the current weapon fire direction including spread cone. -func get_spread_direction(base_direction: Vector3) -> Vector3: - if _current_spread <= 0.001: - return base_direction - - var spread_rad: float = deg_to_rad(_current_spread) - var theta: float = randf() * TAU - var phi: float = randf() * spread_rad - - # Create a random perpendicular vector - var up := Vector3.UP - if abs(base_direction.dot(up)) > 0.99: - up = Vector3.RIGHT - var right := base_direction.cross(up).normalized() - up = right.cross(base_direction).normalized() - - var offset := right * sin(theta) * sin(phi) + up * cos(theta) * sin(phi) - return (base_direction + offset).normalized() - -## Reset weapon state (for respawn). -func reset() -> void: - # Re-initialise all weapon states in inventory - for wid in _weapon_inventory: - _initialize_weapon_state(wid) - # Apply current weapon (or use defaults if no inventory) - if _current_weapon_index >= 0 and _current_weapon_index < _weapon_inventory.size(): - _apply_current_weapon() - else: - current_ammo = max_ammo - reserve_ammo = start_ammo - is_reloading = false - _current_spread = 0.0 - _last_shot_time = 0.0 - ammo_changed.emit(current_ammo, max_ammo) - - -# --------------------------------------------------------------------------- -# Weapon inventory management -# --------------------------------------------------------------------------- - -## Add a weapon to the player's inventory. -## If no weapon is currently equipped, this one is automatically selected. -func add_weapon(weapon_id: String) -> void: - if weapon_id in _weapon_inventory: - return - _weapon_inventory.append(weapon_id) - _initialize_weapon_state(weapon_id) - if _current_weapon_index < 0: - _current_weapon_index = _weapon_inventory.size() - 1 - _apply_current_weapon() - -## Switch to a weapon by its inventory index. -## Returns true if the switch was performed. -func switch_weapon(index: int) -> bool: - if index < 0 or index >= _weapon_inventory.size(): - return false - if index == _current_weapon_index: - return false - _save_current_weapon_state() - _current_weapon_index = index - _apply_current_weapon() - weapon_switched.emit(index, _weapon_inventory[index]) - return true - -## Return the WeaponData for the currently equipped weapon, or null. -func current_weapon_data() -> WeaponData: - var wid := get_current_weapon_id() - if wid.is_empty(): - return null - return WeaponDefinitions.get_weapon(wid) - -## Return the current weapon's ID string, or empty string. -func get_current_weapon_id() -> String: - if _current_weapon_index >= 0 and _current_weapon_index < _weapon_inventory.size(): - return _weapon_inventory[_current_weapon_index] - return "" - -## Return the number of weapons in the inventory. -func get_weapon_count() -> int: - return _weapon_inventory.size() - -## Return the list of weapon IDs in the inventory. -func get_inventory() -> Array[String]: - return _weapon_inventory.duplicate() - -# --------------------------------------------------------------------------- -# Internal: per-weapon state management -# --------------------------------------------------------------------------- - -## Initialise state dict for a weapon with default values. -func _initialize_weapon_state(weapon_id: String) -> void: - var data := WeaponDefinitions.get_weapon(weapon_id) - if data == null: - return - _weapon_states[weapon_id] = { - ammo = data.mag_size, - reserve = data.mag_size * 3, - is_reloading = false, - last_shot_time = 0.0, - current_spread = 0.0, - } - -## Save the current weapon's runtime state back into _weapon_states. -func _save_current_weapon_state() -> void: - var wid := get_current_weapon_id() - if wid.is_empty() or not (wid in _weapon_states): - return - _weapon_states[wid] = { - ammo = current_ammo, - reserve = reserve_ammo, - is_reloading = is_reloading, - last_shot_time = _last_shot_time, - current_spread = _current_spread, - } - -## Load the weapon at _current_weapon_index and apply its data + state -## to the live export properties and state variables. -func _apply_current_weapon() -> void: - var wid := get_current_weapon_id() - if wid.is_empty(): - return - var data := WeaponDefinitions.get_weapon(wid) - if data == null: - return - - # Set export defaults from weapon data - max_ammo = data.mag_size - start_ammo = data.mag_size * 4 # 1 in mag + 3 reserve = 4x - fire_rate = 1.0 / max(data.fire_rate, 0.001) - reload_time = data.reload_time - spread_per_shot = data.spread_degrees * 0.1 - max_spread = data.spread_degrees * 3.0 - spread_recovery = data.spread_degrees * 8.0 - - # Restore per-weapon state - var st: Dictionary = _weapon_states.get(wid, {}) - if st.is_empty(): - _initialize_weapon_state(wid) - st = _weapon_states.get(wid, {}) - current_ammo = st.get("ammo", data.mag_size) - reserve_ammo = st.get("reserve", data.mag_size * 3) - is_reloading = st.get("is_reloading", false) - _last_shot_time = st.get("last_shot_time", 0.0) - _current_spread = st.get("current_spread", 0.0) diff --git a/client/characters/weapon/weapon_manager.gd.uid b/client/characters/weapon/weapon_manager.gd.uid deleted file mode 100644 index 203e971..0000000 --- a/client/characters/weapon/weapon_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dywlbha8xivx4 diff --git a/client/check_bake.gd b/client/check_bake.gd deleted file mode 100644 index 31e8c24..0000000 --- a/client/check_bake.gd +++ /dev/null @@ -1,75 +0,0 @@ -@tool -extends Node - -func _ready(): - print("=== LightmapGI Method Check (Godot 4.2) ===") - - # Check bake method via ClassDB - var has_bake = ClassDB.class_has_method("LightmapGI", "bake") - print("ClassDB: LightmapGI has bake()? ", has_bake) - - # Actually instantiate and check - var scene = load("res://assets/scenes/modular/kit_demo.tscn") - if not scene: - printerr("Cannot load scene") - get_tree().quit(1) - return - - var inst = scene.instantiate() - get_tree().root.add_child(inst) - - var lgi = null - for c in inst.get_children(): - if c is LightmapGI: - lgi = c - break - - if lgi: - var has_bake_runtime = lgi.has_method("bake") - print("Runtime: LightmapGI has bake()? ", has_bake_runtime) - if has_bake_runtime: - print("OK: bake() is available!") - else: - print("NOT AVAILABLE: bake() is not in the runtime API") - - # List custom methods (not from Node3D) - var custom = [] - for m in lgi.get_method_list(): - var name = m.get("name") if m is Dictionary else "" - # Skip Node3D/Node/Object methods - if name.begins_with("set_") or name.begins_with("get_") or name.begins_with("is_"): - if name not in [ - "set_name", "get_name", "set_visible", "is_visible", "is_visible_in_tree", - "set_process", "is_processing", "set_physics_process", "is_physics_processing", - "set_owner", "get_owner", "set_transform", "get_transform", - "set_position", "get_position", "set_rotation", "get_rotation", - "set_scale", "get_scale", "set_global_transform", "get_global_transform", - "set_global_position", "get_global_position", "set_global_basis", "get_global_basis", - "set_meta", "get_meta", "has_meta", "set_script", "get_script", - "set_block_signals", "is_blocking_signals", "set_message_translation", - "set_notify_transform", "is_transform_notification_enabled", - "set_notify_local_transform", "is_local_transform_notification_enabled", - "set_as_top_level", "is_set_as_top_level", "set_disable_scale", "is_scale_disabled", - "set_layer_mask", "get_layer_mask", "set_layer_mask_value", "get_layer_mask_value", - "set_sorting_offset", "get_sorting_offset", "set_sorting_use_aabb_center", "is_sorting_use_aabb_center", - "set_editable_instance", "is_editable_instance", "set_scene_file_path", "get_scene_file_path", - "set_unique_name_in_owner", "is_unique_name_in_owner", - "set_editor_description", "get_editor_description", - "set_rotation_degrees", "get_rotation_degrees", "set_rotation_order", "get_rotation_order", - "set_rotation_edit_mode", "get_rotation_edit_mode", - "set_physics_process_priority", "get_physics_process_priority", - "set_process_priority", "get_process_priority", "set_process_thread_group", "get_process_thread_group", - "set_process_thread_messages", "get_process_thread_messages", - "set_process_thread_group_order", "get_process_thread_group_order", - "set_physics_interpolation_mode", "get_physics_interpolation_mode", - "set_auto_translate_mode", "get_auto_translate_mode", - "set_display_folded", "is_displayed_folded", - "set_process_mode", "get_process_mode", - "set_process_internal", "is_processing_internal", - "set_physics_process_internal", "is_physics_processing_internal", - "set_visibility_parent", "get_visibility_parent", - ]: - custom.append(name) - print("LightmapGI-specific methods: ", custom) - - get_tree().quit(0) diff --git a/client/check_bake.gd.uid b/client/check_bake.gd.uid deleted file mode 100644 index 29ff1f5..0000000 --- a/client/check_bake.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://boy5c8dckndev diff --git a/client/check_bake.tscn b/client/check_bake.tscn deleted file mode 100644 index c4bc762..0000000 --- a/client/check_bake.tscn +++ /dev/null @@ -1,5 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Script" path="res://check_bake.gd" id="1"] - -[node name="Root" type="Node"] -script = ExtResource("1") diff --git a/client/map_template/README.md b/client/map_template/README.md deleted file mode 100644 index 7d79e17..0000000 --- a/client/map_template/README.md +++ /dev/null @@ -1,181 +0,0 @@ -# Tactical Shooter — Map Template - -A standalone Godot 4 project for building custom competitive maps. - -## Quick Start - -1. **Copy this directory** — `cp -r map_template/ maps/my_custom_map/` -2. **Rename `template_map.tscn`** — e.g. `de_dust2.tscn` -3. **Open the new directory in Godot 4** — add the map template project -4. **Build geometry** — use CSG brushes or instance modular kit pieces -5. **Place gameplay prefabs** — spawn points, bomb sites, buy zones -6. **Bake lighting** — select LightmapGI → "Bake Lightmap" -7. **Package & ship** — use the PCK pipeline to publish - -## Directory Structure - -``` -map_template/ -├── project.godot # Standalone Godot project config -├── template_map.tscn # Demo map scene (copy & rename) -├── template_map.gd # Editor tool script (auto-validates map) -└── assets/ - └── prefabs/ - ├── ct_spawn.tscn # Counter-Terrorist spawn point - ├── t_spawn.tscn # Terrorist spawn point - ├── buy_zone.tscn # Purchase zone area - ├── bomb_site.tscn # Bomb plant site area - ├── cubemap_origin.tscn # Reflection probe origin - └── map_bounds.tscn # Out-of-bounds kill wall -``` - -## Prefab Reference - -### Node Type Conventions - -All gameplay nodes are discovered by **Godot groups**, not by node name. -Add nodes to these groups for game logic to find them: - -| Group | Node Type | Purpose | -|-------|-----------|---------| -| `ct_spawn` | Marker3D | CT team spawn position | -| `t_spawn` | Marker3D | Terrorist team spawn position | -| `buy_zone` | Area3D | Purchase-eligible zone | -| `bomb_site` | Area3D | Bomb plant zone | -| `cubemap_origin` | Node3D | Reflection cubemap capture point | -| `map_bounds` | Area3D | Out-of-bounds kill wall | - -**Additional groups (informational, set by map author):** -- `bombsite_a` / `bombsite_b` — sub-identify which bomb site -- `ct_buy` / `t_buy` — team-specific buy zones (if separated) - -### ct_spawn.tscn - -- **Type:** Marker3D (green pad with +Z direction arrow) -- **Group:** `ct_spawn` -- **Usage:** Place on floor, one per player slot (usually 5). The +Z arrow - indicates the direction players face on spawn. Add child Node3Ds for - additional spawn positions. -- **Customisation:** Duplicate instances rather than editing the prefab. - Adjust position and rotation only — the pad is cosmetic. - -### t_spawn.tscn - -- **Type:** Marker3D (red pad with +Z direction arrow) -- **Group:** `t_spawn` -- **Same usage as ct_spawn** but for the Terrorist team. - -### buy_zone.tscn - -- **Type:** Area3D with CollisionShape3D -- **Group:** `buy_zone` -- **Usage:** Place to define an area where players can purchase items. - Resize the child CollisionShape3D to match the room. The Area3D - monitors body_entered/body_exited to activate/deactivate the buy menu. -- **Visual:** Semi-transparent yellow box as editor reference. - -### bomb_site.tscn - -- **Type:** Area3D with CollisionShape3D -- **Group:** `bomb_site` -- **Usage:** Place to define where the bomb can be planted. - Resize the CollisionShape3D to cover the site. Rename the instance - "BombsiteA" or "BombsiteB" and add the sub-group (bombsite_a / bombsite_b). -- **Visual:** Semi-transparent orange floor panel + CSG subtraction hint - for plantable ground area. - -### cubemap_origin.tscn - -- **Type:** Node3D with small blue marker -- **Group:** `cubemap_origin` -- **Usage:** Mark the ideal position for the ReflectionProbe cubemap - capture. Place at eye height (1.6 units above floor) in the most - visually prominent part of the map. -- **Note:** The ReflectionProbe itself is a separate node — place it at - this marker's position after geometry is finalised. - -### map_bounds.tscn - -- **Type:** Area3D with CollisionShape3D -- **Group:** `map_bounds` -- **Usage:** Invisible kill wall. Place one per perimeter side, resize - to form a closed box around the playable area. Detects body_exited - to teleport/kill out-of-bounds players. -- **Visual:** Semi-transparent red wall as editor reference. - -## Building a Map — Checklist - -### Essential -- [ ] Floor geometry (CSGBox3D or modular kit tiles) -- [ ] Wall geometry enclosing the playable area -- [ ] Ceiling or skybox boundary -- [ ] Collision on all CSG brushes (`use_collision = true`) - -### Gameplay -- [ ] CT spawn points for each player (group `ct_spawn`) -- [ ] T spawn points for each player (group `t_spawn`) -- [ ] Two bomb sites, each with group `bomb_site` -- [ ] Buy zones at each spawn area (group `buy_zone`) -- [ ] Map bounds perimeter walls (group `map_bounds`) - -### Lighting -- [ ] WorldEnvironment with sky/ambient -- [ ] DirectionalLight3D (sun) with shadows enabled -- [ ] Fill/ambient OmniLight3D(s) -- [ ] ReflectionProbe at cubemap origin -- [ ] LightmapGI configured with quality=2, bounces=3 -- [ ] Lightmap baked (select LightmapGI → "Bake Lightmap") - -### Validation -- [ ] Open template_map.tscn in Godot editor — the tool script auto-runs -- [ ] Check Output panel (bottom dock) for validation results -- [ ] All checks pass (green ✓) -- [ ] For headless validation, use the main project's validator from `client/`: - `godot --script scripts/validate_scene.gd -- --scene=res://maps/my_map.tscn` - -## CSG Building Guide - -Godot's CSG (Constructive Solid Geometry) nodes let you build map geometry -directly in the editor. Key shortcuts: - -- **W** — Move tool -- **E** — Rotate tool -- **R** — Scale tool -- **Ctrl+D** — Duplicate selected node -- **Ctrl+Shift+C** — Bake LightmapGI - -CSG node types used in this template: - -- `CSGBox3D` — Basic wall/floor/ceiling blocks -- `CSGCombiner3D` — Grouped geometry (container, non-collidable parent) -- `CSGSphere3D` / `CSGCylinder3D` — Curved shapes - -CSG operations: -| Operation | Effect | -|-----------|--------| -| Union (0) | Adds to existing CSG (default) | -| Subtraction (1) | Cuts hole through parent CSG | -| Intersection (2) | Keeps only overlapping volume | - -**Performance rule:** Use as few CSG nodes as possible. For detailed maps, -bake CSG to a MeshInstance3D via Scene → "Convert CSG to Mesh" when -geometry is finalised. - -## Integrating with the Main Project - -When your map is complete: - -1. **Copy your .tscn + assets** into the main project at `client/maps//` -2. **Pack as .pck:** `cd client && godot --headless --pack --export-pack maps/.pck res://maps/.tscn` -3. **Register with master server** via POST `/api/v1/maps/register` -4. **Test in-game:** connect to server and `changelevel ` - -## Limitations - -- **Standalone preview:** Direct CSG rendering in this template uses basic - placeholder materials. Final maps should use the main project's modular - kit assets and PBR materials. -- **Lightmap baking:** Godot 4.7 LightmapGI baking is editor-only. Open - this project in the editor to bake. -- **Non-Euclidean geometry:** Not supported by CSG. Use MeshInstance3D - for complex shapes. diff --git a/client/map_template/assets/prefabs/bomb_site.tscn b/client/map_template/assets/prefabs/bomb_site.tscn deleted file mode 100644 index 0c1c5f2..0000000 --- a/client/map_template/assets/prefabs/bomb_site.tscn +++ /dev/null @@ -1,36 +0,0 @@ -[gd_scene load_steps=4 format=3] - -[sub_resource type="StandardMaterial3D" id="SiteMat"] -albedo_color = Color(1.0, 0.65, 0.0, 0.3) -metallic = 0.0 -roughness = 0.5 -transparency = 0.7 -flags_transparent = true - -[sub_resource type="BoxShape3D" id="SiteShape"] -size = Vector3(6.0, 3.0, 6.0) - -[node name="BombSite" type="Area3D"] -groups = ["bomb_site"] -; Bomb site — the bomb can be planted within this area. -; Resize the CollisionShape3D to cover the site's playable area. -; Name the node "BombsiteA" or "BombsiteB" for game logic identification. - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("SiteShape") - -[node name="Visualizer" type="CSGBox3D" parent="."] -size = Vector3(6.0, 0.04, 6.0) -material = SubResource("SiteMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.02, 0) -; Semi-transparent orange floor panel to visualise the site in the editor. -; Adjust to match the site's floor area. - -[node name="PlaneZone" type="CSGBox3D" parent="BombSite"] -operation = 1 -size = Vector3(5.5, 0.5, 5.5) -material = SubResource("SiteMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) -; Invisible CSG subtraction hint — marks the plantable ground area. diff --git a/client/map_template/assets/prefabs/buy_zone.tscn b/client/map_template/assets/prefabs/buy_zone.tscn deleted file mode 100644 index 12b4510..0000000 --- a/client/map_template/assets/prefabs/buy_zone.tscn +++ /dev/null @@ -1,28 +0,0 @@ -[gd_scene load_steps=4 format=3] - -[sub_resource type="StandardMaterial3D" id="ZoneMat"] -albedo_color = Color(0.8, 0.8, 0.2, 0.3) -metallic = 0.0 -roughness = 0.5 -transparency = 0.7 -flags_transparent = true - -[sub_resource type="CapsuleShape3D" id="ZoneShape"] -radius = 2.0 -height = 4.0 - -[node name="BuyZone" type="Area3D"] -groups = ["buy_zone"] -; Buy zone — players inside this Area3D can purchase weapons/equipment. -; Resize the CollisionShape3D child to match the room. -; Monitor player bodies with area_entered / area_exited signals. - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("ZoneShape") - -[node name="Visualizer" type="CSGBox3D" parent="."] -size = Vector3(4.0, 3.0, 4.0) -material = SubResource("ZoneMat") -use_collision = false -; Semi-transparent yellow box to visualise the zone in the editor. -; Disabled in-game — the game uses the Area3D collision, not this visualiser. diff --git a/client/map_template/assets/prefabs/ct_spawn.tscn b/client/map_template/assets/prefabs/ct_spawn.tscn deleted file mode 100644 index 7be2144..0000000 --- a/client/map_template/assets/prefabs/ct_spawn.tscn +++ /dev/null @@ -1,18 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="SpawnMat"] -albedo_color = Color(0.2, 0.4, 1.0, 1.0) -metallic = 0.0 -roughness = 0.8 - -[node name="CTSpawn" type="Marker3D"] -groups = ["ct_spawn"] -; CT spawn point — players on Counter-Terrorist team spawn here. -; Place on the floor surface. The +Z arrow indicates spawn forward direction. -; Child Node3Ds can be added for additional spawn positions. - -[node name="SpawnPad" type="CSGBox3D" parent="."] -size = Vector3(0.5, 0.03, 0.5) -material = SubResource("SpawnMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.015, 0) diff --git a/client/map_template/assets/prefabs/cubemap_origin.tscn b/client/map_template/assets/prefabs/cubemap_origin.tscn deleted file mode 100644 index e95cd8c..0000000 --- a/client/map_template/assets/prefabs/cubemap_origin.tscn +++ /dev/null @@ -1,21 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="OriginMat"] -albedo_color = Color(0.5, 0.8, 1.0, 0.5) -metallic = 0.3 -roughness = 0.4 -transparency = 0.5 -flags_transparent = true - -[node name="CubemapOrigin" type="Node3D"] -groups = ["cubemap_origin"] -; Cubemap reflection origin — position for ReflectionProbe cubemap capture. -; The ReflectionProbe should be placed here after map lighting is finalised. -; Place at eye height (1.6 units above floor) in the most visually prominent -; area of the map for best reflection results. - -[node name="Marker" type="CSGBox3D" parent="."] -material = SubResource("OriginMat") -size = Vector3(0.2, 0.2, 0.2) -use_collision = false -; Small translucent blue cube as visual reference. diff --git a/client/map_template/assets/prefabs/map_bounds.tscn b/client/map_template/assets/prefabs/map_bounds.tscn deleted file mode 100644 index 034e632..0000000 --- a/client/map_template/assets/prefabs/map_bounds.tscn +++ /dev/null @@ -1,27 +0,0 @@ -[gd_scene load_steps=4 format=3] - -[sub_resource type="StandardMaterial3D" id="BoundMat"] -albedo_color = Color(1.0, 0.0, 0.0, 0.2) -metallic = 0.0 -roughness = 1.0 -transparency = 0.8 -flags_transparent = true - -[sub_resource type="BoxShape3D" id="BoundShape"] -size = Vector3(2.0, 4.0, 200.0) - -[node name="MapBound" type="Area3D"] -groups = ["map_bounds"] -; Map boundary wall — prevents players from exiting the playable area. -; Copy this prefab for each side of the map, rotating and resizing -; the CollisionShape3D to form a closed perimeter. -; MapBounds detect body_exited and teleport/kill out-of-bounds players. - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("BoundShape") - -[node name="Visualizer" type="CSGBox3D" parent="."] -size = Vector3(2.0, 3.8, 200.0) -material = SubResource("BoundMat") -use_collision = false -; Semi-transparent red wall visualiser. Resize to match perimeter. diff --git a/client/map_template/assets/prefabs/t_spawn.tscn b/client/map_template/assets/prefabs/t_spawn.tscn deleted file mode 100644 index b1cf744..0000000 --- a/client/map_template/assets/prefabs/t_spawn.tscn +++ /dev/null @@ -1,18 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[sub_resource type="StandardMaterial3D" id="SpawnMat"] -albedo_color = Color(1.0, 0.3, 0.15, 1.0) -metallic = 0.0 -roughness = 0.8 - -[node name="TSpawn" type="Marker3D"] -groups = ["t_spawn"] -; Terrorist spawn point — players on Terrorist team spawn here. -; Place on the floor surface. The +Z arrow indicates spawn forward direction. -; Child Node3Ds can be added for additional spawn positions. - -[node name="SpawnPad" type="CSGBox3D" parent="."] -size = Vector3(0.5, 0.03, 0.5) -material = SubResource("SpawnMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.015, 0) diff --git a/client/map_template/template_map.gd b/client/map_template/template_map.gd deleted file mode 100644 index 8180f8c..0000000 --- a/client/map_template/template_map.gd +++ /dev/null @@ -1,202 +0,0 @@ -@tool -extends Node3D - -# Validates template map structure in the editor output panel. -# -# Run this in the Godot editor: -# 1. Open template_map.tscn -# 2. Look at the Output panel (bottom dock) for validation results -# -# Checks: -# - Required gameplay node groups are present -# - Spawn points exist for both teams -# - Bomb sites are defined -# - Buy zones are present -# - LightmapGI is configured -# -# Groups used by map nodes: -# ct_spawn — Counter-Terrorist spawn positions -# t_spawn — Terrorist spawn positions -# buy_zone — Purchase zone areas -# bomb_site — Bomb plant site areas (+ bombsite_a / bombsite_b for ID) -# cubemap_origin — Reflection cubemap capture origin -# map_bounds — Out-of-bounds kill walls -# -# Game logic discovers these at runtime by scanning for nodes with -# the corresponding group, not by node name. - - -func _ready(): - if not Engine.is_editor_hint(): - return - - print("") - print("=== Map Template: Validate Scene ===") - print("") - - var checks = [] - - # --- Required node types by group --- - var groups_to_check = { - "ct_spawn": "CT Spawn points", - "t_spawn": "T Spawn points", - "buy_zone": "Buy zones", - "bomb_site": "Bomb sites", - "cubemap_origin": "Cubemap capture origins", - "map_bounds": "Map boundary walls", - } - - for group in groups_to_check: - var nodes = get_tree().get_nodes_in_group(group) - var label = groups_to_check[group] - if nodes.size() > 0: - checks.append([str(" + ", label, " (", nodes.size(), " found)"), true]) - else: - checks.append([str(" - ", label, " — NONE FOUND"), false]) - - # --- CSG floor check --- - var floor_nodes = _find_csg_floor() - checks.append([str(" + CSG Floor geometry (", floor_nodes.size(), " nodes)"), floor_nodes.size() > 0]) - - # --- Wall check --- - var wall_count = _find_csg_walls() - checks.append([str(" + CSG Wall geometry (", wall_count, " walls)"), wall_count >= 3]) - - # --- LightmapGI check --- - var lightmap = _find_lightmap_gi() - if lightmap: - checks.append([" + LightmapGI configured ✓", true]) - if lightmap.light_data != null: - checks.append([" + LightmapGI data: BAKED ✓", true]) - else: - checks.append([" - LightmapGI: NOT YET BAKED", false]) - checks.append([str(" + LightmapGI.bounces = ", lightmap.bounces), lightmap.bounces >= 2]) - checks.append([str(" + LightmapGI.texel_scale = ", lightmap.texel_scale), lightmap.texel_scale <= 2.0]) - else: - checks.append([" - LightmapGI — NOT FOUND", false]) - - # --- ReflectionProbe check --- - var probe = _find_reflection_probe() - checks.append([" + ReflectionProbe present", probe != null]) - - # --- WorldEnvironment check --- - var env = _find_world_env() - checks.append([" + WorldEnvironment present", env != null]) - - # --- SunLight check --- - var sun = _find_dir_light() - checks.append([" + DirectionalLight3D (sun) present", sun != null]) - - # --- Map scale / playable area estimate --- - var extents = _estimate_floor_extents(floor_nodes) - if extents: - checks.append([str(" + Playable area: ~", extents[0], "x", extents[1], " units"), true]) - - # Print results - print(" ─── Validation Results ───") - var passed = 0 - var failed = 0 - for check in checks: - if check[1]: - passed += 1 - else: - failed += 1 - print(check[0]) - - print("") - print(" Passed: ", passed, " Failed: ", failed) - print("") - - if failed > 0: - print(" NOTE: ", failed, " check(s) did not pass.") - print(" See warnings above for details — these are advisory,") - print(" the map will still function but may be missing critical nodes.") - else: - print(" All checks passed. Map template is ready!") - - print("") - print(" === Validation complete ===") - print("") - - -func _find_nodes_by_group(group_name: String) -> Array: - return get_tree().get_nodes_in_group(group_name) - - -func _find_csg_floor() -> Array: - """Return all CSG nodes with floor-like Y position and flat orientation.""" - var results = [] - for child in get_children(): - if child is CSGBox3D or child is CSGCombiner3D: - if abs(child.transform.origin.y) < 0.5: - var s = child - if s is CSGBox3D and s.size.y < 0.3: - results.append(child) - elif s is CSGCombiner3D: - results.append(child) - return results - - -func _find_csg_walls() -> int: - """Count CSG box nodes with vertical wall-like dimensions.""" - var count = 0 - for child in get_children(): - if child is CSGBox3D: - var s: CSGBox3D = child - # Wall-like: one thin dimension, tall Y - var dims = [s.size.x, s.size.y, s.size.z] - dims.sort() - if dims[0] < 0.5 and dims[1] > 1.5 and dims[2] > 0.5: - if child.name.begins_with("Wall") or child.name.begins_with("Divider") or child.name.begins_with("Mid"): - count += 1 - return count - - -func _find_lightmap_gi() -> LightmapGI: - for child in get_children(): - if child is LightmapGI: - return child - return null - - -func _find_reflection_probe() -> ReflectionProbe: - for child in get_children(): - if child is ReflectionProbe: - return child - return null - - -func _find_world_env() -> WorldEnvironment: - for child in get_children(): - if child is WorldEnvironment: - return child - return null - - -func _find_dir_light() -> DirectionalLight3D: - for child in get_children(): - if child is DirectionalLight3D: - return child - return null - - -func _estimate_floor_extents(floor_nodes: Array) -> Array: - """Estimate playable area width and depth from flat CSGBox3D nodes.""" - var min_x = INF - var max_x = -INF - var min_z = INF - var max_z = -INF - - for node in floor_nodes: - if node is CSGBox3D: - var p = node.transform.origin - var s = node.size - # Approximate bounding box using position + half-extents - min_x = min(min_x, p.x - s.x * 0.5) - max_x = max(max_x, p.x + s.x * 0.5) - min_z = min(min_z, p.z - s.z * 0.5) - max_z = max(max_z, p.z + s.z * 0.5) - - if min_x != INF and max_x != INF and min_z != INF and max_z != INF: - return [int(max_x - min_x), int(max_z - min_z)] - return null diff --git a/client/map_template/template_map.tscn b/client/map_template/template_map.tscn deleted file mode 100644 index da045a3..0000000 --- a/client/map_template/template_map.tscn +++ /dev/null @@ -1,356 +0,0 @@ -[gd_scene load_steps=32 format=3] - -; === Prefab references === -[ext_resource type="PackedScene" path="res://assets/prefabs/ct_spawn.tscn" id="1"] -[ext_resource type="PackedScene" path="res://assets/prefabs/t_spawn.tscn" id="2"] -[ext_resource type="PackedScene" path="res://assets/prefabs/buy_zone.tscn" id="3"] -[ext_resource type="PackedScene" path="res://assets/prefabs/bomb_site.tscn" id="4"] -[ext_resource type="PackedScene" path="res://assets/prefabs/cubemap_origin.tscn" id="5"] -[ext_resource type="PackedScene" path="res://assets/prefabs/map_bounds.tscn" id="6"] - -; === Script === -[ext_resource type="Script" path="res://template_map.gd" id="7"] - -; === Subresources — Materials === -[sub_resource type="StandardMaterial3D" id="FloorMat"] -albedo_color = Color(0.3, 0.3, 0.32, 1.0) -metallic = 0.0 -roughness = 0.9 - -[sub_resource type="StandardMaterial3D" id="WallMat"] -albedo_color = Color(0.55, 0.55, 0.58, 1.0) -metallic = 0.0 -roughness = 0.85 - -[sub_resource type="StandardMaterial3D" id="TrimMat"] -albedo_color = Color(0.25, 0.25, 0.28, 1.0) -metallic = 0.3 -roughness = 0.6 - -[sub_resource type="StandardMaterial3D" id="FloorTrimMat"] -albedo_color = Color(0.2, 0.2, 0.22, 1.0) -metallic = 0.1 -roughness = 0.7 - -[sub_resource type="StandardMaterial3D" id="SiteAFloorMat"] -albedo_color = Color(0.45, 0.35, 0.25, 1.0) -metallic = 0.0 -roughness = 0.9 - -[sub_resource type="StandardMaterial3D" id="SiteBFloorMat"] -albedo_color = Color(0.3, 0.35, 0.45, 1.0) -metallic = 0.0 -roughness = 0.9 - -[sub_resource type="StandardMaterial3D" id="PillarMat"] -albedo_color = Color(0.4, 0.4, 0.42, 1.0) -metallic = 0.2 -roughness = 0.7 - -; === Subresources — Environment === -[sub_resource type="Environment" id="Env"] -background_mode = 0 -tonemap_mode = 0 -glow_enabled = false -ambient_light_color = Color(0.2, 0.22, 0.25, 1.0) -ambient_light_energy = 0.35 -ambient_light_sky_contribution = 0.0 - -; ============================ -; === SHOWROOM DEMO MAP === -; ============================ -; This template demonstrates a 3-lane layout with: -; - CSG floor, walls, pillars, and dividers -; - CT spawn (left) and T spawn (right) with buy zones -; - Bomb sites A (CT-side) and B (T-side) -; - Cubemap origin for reflections -; - Map bounds around the perimeter -; -; Copy this .tscn + assets/prefabs/ to start a new map. -; Replace CSG geometry with the modular kit pieces from the main project. - -[node name="TemplateMap" type="Node3D"] -script = ExtResource("7") - -; ============ FLOOR ============ -; Main floor — CSG box covering the entire playable area -; Subdivided into functional zones with different floor materials - -[node name="Floor" type="CSGBox3D" parent="."] -size = Vector3(20.0, 0.08, 16.0) -material = SubResource("FloorMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) - -; Bombsite A floor — warmer tones (CT side, middle-left) -[node name="SiteAFloor" type="CSGCombiner3D" parent="."] -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.0, 0, -3.0) -[node name="Base" type="CSGBox3D" parent="SiteAFloor"] -operation = 0 -size = Vector3(5.0, 0.09, 5.0) -material = SubResource("SiteAFloorMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.005, 0) - -; Bombsite B floor — cooler tones (T side, middle-right) -[node name="SiteBFloor" type="CSGCombiner3D" parent="."] -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.0, 0, -3.0) -[node name="Base" type="CSGBox3D" parent="SiteBFloor"] -operation = 0 -size = Vector3(5.0, 0.09, 5.0) -material = SubResource("SiteBFloorMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.005, 0) - -; Floor trim — baseboard around perimeter -; North wall trim -[node name="FloorTrim_N" type="CSGBox3D" parent="."] -size = Vector3(20.0, 0.24, 0.08) -material = SubResource("FloorTrimMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.04, -8.04) -; South wall trim -[node name="FloorTrim_S" type="CSGBox3D" parent="."] -size = Vector3(20.0, 0.24, 0.08) -material = SubResource("FloorTrimMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.04, 8.04) -; West wall trim -[node name="FloorTrim_W" type="CSGBox3D" parent="."] -size = Vector3(0.08, 0.24, 16.0) -material = SubResource("FloorTrimMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.04, 0.04, 0) -; East wall trim -[node name="FloorTrim_E" type="CSGBox3D" parent="."] -size = Vector3(0.08, 0.24, 16.0) -material = SubResource("FloorTrimMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.04, 0.04, 0) - -; Center divider wall (floor-level trim) -[node name="DividerTrim" type="CSGBox3D" parent="."] -size = Vector3(0.08, 0.32, 8.0) -material = SubResource("TrimMat") -use_collision = false -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.04, 1.0) - -; ============ WALLS ============ - -; --- North wall (Z = -8) --- -[node name="Wall_N" type="CSGBox3D" parent="."] -size = Vector3(20.0, 3.0, 0.16) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.5, -8.0) - -; --- South wall (Z = 8) --- -[node name="Wall_S" type="CSGBox3D" parent="."] -size = Vector3(20.0, 3.0, 0.16) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.5, 8.0) - -; --- West wall (X = -10) --- -[node name="Wall_W" type="CSGBox3D" parent="."] -size = Vector3(0.16, 3.0, 16.0) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.0, 1.5, 0) - -; --- East wall (X = 10) --- -[node name="Wall_E" type="CSGBox3D" parent="."] -size = Vector3(0.16, 3.0, 16.0) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0, 1.5, 0) - -; ============ INTERIOR DIVIDERS ============ - -; CT-side cover wall — partial wall to create a corridor -[node name="Divider_CT" type="CSGBox3D" parent="."] -size = Vector3(0.16, 2.4, 4.0) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.0, 1.2, -4.0) - -; T-side cover wall -[node name="Divider_T" type="CSGBox3D" parent="."] -size = Vector3(0.16, 2.4, 4.0) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.0, 1.2, -4.0) - -; Mid divider — lane separator running from CT area toward T area -[node name="MidWall" type="CSGBox3D" parent="."] -size = Vector3(0.16, 2.0, 6.0) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.0, 1.0) - -; Mid divider short — second offset wall for zigzag corridor -[node name="MidWallShort" type="CSGBox3D" parent="."] -size = Vector3(3.0, 2.0, 0.16) -material = SubResource("WallMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.0, 1.0, -3.0) - -; ============ PILLARS ============ - -[node name="Pillar_1" type="CSGBox3D" parent="."] -size = Vector3(0.4, 2.8, 0.4) -material = SubResource("PillarMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.0, 1.4, 2.0) - -[node name="Pillar_2" type="CSGBox3D" parent="."] -size = Vector3(0.4, 2.8, 0.4) -material = SubResource("PillarMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.0, 1.4, 2.0) - -[node name="Pillar_3" type="CSGBox3D" parent="."] -size = Vector3(0.4, 2.8, 0.4) -material = SubResource("PillarMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.0, 1.4, -5.0) - -[node name="Pillar_4" type="CSGBox3D" parent="."] -size = Vector3(0.4, 2.8, 0.4) -material = SubResource("PillarMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.0, 1.4, -5.0) - -; ============ CEILING / SKYBOX BOUNDARY ============ - -; Ceiling panel (roof) — encloses the room for lightmap baking -[node name="Ceiling" type="CSGBox3D" parent="."] -size = Vector3(20.0, 0.08, 16.0) -material = SubResource("TrimMat") -use_collision = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.0, 0) - -; ============ GAMEPLAY PREFABS ============ - -; --- Spawn points --- -; CT spawns (left side of map) -[node name="CTSpawn1" parent="." instance=ExtResource("1")] -; CT spawn 1 — main position -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.0, 0.03, -5.0) - -[node name="CTSpawn2" parent="." instance=ExtResource("1")] -; CT spawn 2 — staggered offset for multi-player spawn -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.0, 0.03, -3.0) - -[node name="CTSpawn3" parent="." instance=ExtResource("1")] -; CT spawn 3 -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.0, 0.03, -1.0) - -; T spawns (right side of map) -[node name="TSpawn1" parent="." instance=ExtResource("2")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.0, 0.03, 5.0) - -[node name="TSpawn2" parent="." instance=ExtResource("2")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.0, 0.03, 3.0) - -[node name="TSpawn3" parent="." instance=ExtResource("2")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.0, 0.03, 1.0) - -; --- Buy zones --- -[node name="CTBuyZone" parent="." instance=ExtResource("3")] -; Buy zone at CT spawn — players can buy in this area -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.0, 1.5, -3.0) -; Resize the CollisionShape3D child to cover the CT spawn area - -[node name="TBuyZone" parent="." instance=ExtResource("3")] -; Buy zone at T spawn -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.0, 1.5, 3.0) - -; --- Bomb sites --- -[node name="BombsiteA" parent="." instance=ExtResource("4")] -; Bomb site A — CT-side area (warm floor zone) -groups = ["bomb_site"] -; Additional group "bombsite_a" for game logic identification -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.0, 0.5, -3.0) -; Resize Child/CollisionShape3D to match the brown floor zone (5x5) - -[node name="BombsiteB" parent="." instance=ExtResource("4")] -; Bomb site B — T-side area (cool floor zone) -groups = ["bomb_site", "bombsite_b"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.0, 0.5, -3.0) -; Resize Child/CollisionShape3D to match the blue floor zone (5x5) - -; --- Cubemap origin --- -[node name="CubemapOrigin" parent="." instance=ExtResource("5")] -; Reflection probe capture position at eye height in the middle lane -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6, 0) - -; --- Map bounds --- -; Perimeter boundary walls — extend slightly beyond visible walls -[node name="Bound_N" parent="." instance=ExtResource("6")] -; North bounds -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.0, -10.0) - -[node name="Bound_S" parent="." instance=ExtResource("6")] -; South bounds -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.0, 10.0) - -[node name="Bound_W" parent="." instance=ExtResource("6")] -; West bounds — rotate 90° -transform = Transform3D(0, 0, -1, 0, 1, 0, 1, 0, 0, -12.0, 2.0, 0) - -[node name="Bound_E" parent="." instance=ExtResource("6")] -; East bounds — rotate 90° -transform = Transform3D(0, 0, 1, 0, 1, 0, -1, 0, 0, 12.0, 2.0, 0) - -; ============ LIGHTING ============ - -; WorldEnvironment — sky and ambient light -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("Env") - -; Directional light — key light from high angle (slightly warm) -[node name="SunLight" type="DirectionalLight3D" parent="."] -transform = Transform3D(0.866, 0, -0.5, -0.354, 0.707, -0.612, 0.354, 0.707, 0.612, 0, 5, 0) -light_energy = 1.0 -light_indirect_energy = 0.8 -light_color = Color(1.0, 0.95, 0.9, 1.0) -shadow_enabled = true -light_bake_mode = 2 -directional_shadow_max_distance = 30.0 -directional_shadow_split_1 = 0.1 -directional_shadow_split_2 = 0.3 -directional_shadow_split_3 = 0.6 -directional_shadow_blend_splits = true - -; Fill light — warm interior ambient from the center -[node name="FillLight" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.5, -2.0) -light_energy = 0.3 -light_indirect_energy = 0.4 -light_color = Color(1.0, 0.85, 0.7, 1.0) -light_bake_mode = 2 -omni_range = 8.0 -omni_attenuation = 0.8 -shadow_enabled = false - -; Reflection probe — interior specular reflections, positioned at cubemap origin -[node name="ReflectionProbe" type="ReflectionProbe" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6, 0) -box_projection = true -interior = true -extents = Vector3(10.0, 1.8, 8.0) -intensity = 1.0 -max_distance = 15.0 - -; LightmapGI — baked global illumination -[node name="LightmapGI" type="LightmapGI" parent="."] -quality = 2 -bounces = 3 -bounce_indirect_energy = 1.0 -texel_scale = 1.0 -max_texture_size = 2048 -use_denoiser = true -interior = true diff --git a/client/method_dump.gd b/client/method_dump.gd deleted file mode 100644 index 8c5bf87..0000000 --- a/client/method_dump.gd +++ /dev/null @@ -1,33 +0,0 @@ -@tool -extends Node - -func _ready(): - print("=== LightmapGI Method Discovery ===") - - # Create a mock LightmapGI to check methods - # Actually, let's check the class reference - var methods = ClassDB.class_get_method_list("LightmapGI") - print("LightmapGI methods:") - for m in methods: - print(" ", m) - - print("") - print("ClassDB method list end.") - - # Also try to actually load and check - var scene = load("res://assets/scenes/modular/kit_demo.tscn") - if scene: - var inst = scene.instantiate() - get_tree().root.add_child(inst) - var lgi = null - for c in inst.get_children(): - if c is LightmapGI: - lgi = c - break - if lgi: - print("") - print("Runtime LightmapGI methods:") - for m in lgi.get_method_list(): - print(" ", m.get("name", m) if m is Dictionary else m) - - get_tree().quit(0) diff --git a/client/method_dump.gd.uid b/client/method_dump.gd.uid deleted file mode 100644 index 208a2d4..0000000 --- a/client/method_dump.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c8pmywckai7qq diff --git a/client/method_dump.tscn b/client/method_dump.tscn deleted file mode 100644 index e9ba6b3..0000000 --- a/client/method_dump.tscn +++ /dev/null @@ -1,5 +0,0 @@ -[gd_scene load_steps=2 format=3] -[ext_resource type="Script" path="res://method_dump.gd" id="1"] - -[node name="Root" type="Node"] -script = ExtResource("1") diff --git a/client/project.godot.bak b/client/project.godot.bak deleted file mode 100644 index 2be5d8c..0000000 --- a/client/project.godot.bak +++ /dev/null @@ -1,49 +0,0 @@ -; Engine configuration file. -; It's best edited using the editor UI and not directly, -; since the parameters that go here are not all obvious. -; -; Format: -; [section] ; section goes between [] -; param=value ; assign values to parameters - -config_version=5 - -[animation] - -compatibility/default_parent_skeleton_in_mesh_instance_3d=true - -[application] - -config/name="Tactical Shooter" -config/description="A competitive round-based tactical FPS" -run/main_scene="res://bake_lightmaps.tscn" -config/features=PackedStringArray("4.3") - -[autoload] - -MapDownloader="*res://scripts/map_downloader.gd" - -[input] - -use_accumulated_input=false - -[memory] - -limits/message_queue_max_size_kb=2048 - -[physics] - -common/physics_ticks_per_second=128 - -[rendering] - -renderer/rendering_method.mobile="glcompatibility_4" -rendering/lightmapping/texel_scale=1.0 -rendering/reflections/reflection_atlas/reflection_size=512 -rendering/reflections/reflection_atlas/reflection_count=8 -rendering/lights_and_shadows/positional_shadow/atlas_size=2048 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv=1 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv=2 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv=3 -rendering/limits/buffers/vertex_buffer_max_size=256 -rendering/limits/buffers/index_buffer_max_size=128 diff --git a/client/project.godot.orig b/client/project.godot.orig deleted file mode 100644 index 2be5d8c..0000000 --- a/client/project.godot.orig +++ /dev/null @@ -1,49 +0,0 @@ -; Engine configuration file. -; It's best edited using the editor UI and not directly, -; since the parameters that go here are not all obvious. -; -; Format: -; [section] ; section goes between [] -; param=value ; assign values to parameters - -config_version=5 - -[animation] - -compatibility/default_parent_skeleton_in_mesh_instance_3d=true - -[application] - -config/name="Tactical Shooter" -config/description="A competitive round-based tactical FPS" -run/main_scene="res://bake_lightmaps.tscn" -config/features=PackedStringArray("4.3") - -[autoload] - -MapDownloader="*res://scripts/map_downloader.gd" - -[input] - -use_accumulated_input=false - -[memory] - -limits/message_queue_max_size_kb=2048 - -[physics] - -common/physics_ticks_per_second=128 - -[rendering] - -renderer/rendering_method.mobile="glcompatibility_4" -rendering/lightmapping/texel_scale=1.0 -rendering/reflections/reflection_atlas/reflection_size=512 -rendering/reflections/reflection_atlas/reflection_count=8 -rendering/lights_and_shadows/positional_shadow/atlas_size=2048 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv=1 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv=2 -rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv=3 -rendering/limits/buffers/vertex_buffer_max_size=256 -rendering/limits/buffers/index_buffer_max_size=128 diff --git a/client/project.godot.rej b/client/project.godot.rej deleted file mode 100644 index 57a4c01..0000000 --- a/client/project.godot.rej +++ /dev/null @@ -1,12 +0,0 @@ -*** /dev/null ---- /dev/null -*************** -*** 2 -- config/features=PackedStringArray("4.0") ---- 2 ----- -+ config/features=PackedStringArray("4.0") -*************** -*** 6 -- run/main_scene="res://assets/scenes/modular/kit_demo.tscn" ---- 6 ----- -+ run/main_scene="res://tools/validate_map/validator_scene.tscn" diff --git a/client/scripts/apply_visibility_ranges.gd b/client/scripts/apply_visibility_ranges.gd deleted file mode 100644 index 4eaf44a..0000000 --- a/client/scripts/apply_visibility_ranges.gd +++ /dev/null @@ -1,153 +0,0 @@ -@tool -extends EditorScript - -# Apply distance-based visibility ranges to all modular CSG pieces. -# -# This is the equivalent of LOD for CSG-based geometry — it hides -# entire pieces when they're beyond a useful visual distance. -# -# Ranges (defined per asset type): -# Walls: hide past 50 m -# Floors: hide past 60 m -# Pillars: hide past 30 m -# Beams: hide past 30 m -# Accent panels: hide past 20 m -# Door/Window: hide past 40 m -# -# Usage: -# Select a scene in the Godot editor, then: -# Scene > Run Script (select this file) -# -# Or from CLI on a specific scene: -# godot --script scripts/apply_visibility_ranges.gd \ -# --scene res://assets/scenes/modular/kit_demo.tscn - -const DEBUG := false # Enable for verbose logging - -# Default ranges per type (begin = 0.0 means always visible up to end) -const RANGES := { - "wall": {"begin": 0.0, "end": 50.0, "margin": 5.0}, # fade out over 5m - "floor": {"begin": 0.0, "end": 60.0, "margin": 10.0}, - "pillar": {"begin": 0.0, "end": 30.0, "margin": 3.0}, - "beam": {"begin": 0.0, "end": 30.0, "margin": 3.0}, - "accent": {"begin": 0.0, "end": 20.0, "margin": 2.0}, - "doorway": {"begin": 0.0, "end": 40.0, "margin": 5.0}, - "window": {"begin": 0.0, "end": 40.0, "margin": 5.0}, - "endcap": {"begin": 0.0, "end": 50.0, "margin": 5.0}, - "default": {"begin": 0.0, "end": 40.0, "margin": 5.0}, -} - -func _run(): - var scene_root: Node - - if Engine.is_editor_hint(): - scene_root = get_scene() as Node - if not scene_root: - printerr("No open scene in editor. Open a scene first.") - return - else: - var args = OS.get_cmdline_args() - var scene_path := "" - for i in range(args.size()): - if args[i] == "--scene" and i + 1 < args.size(): - scene_path = args[i + 1] - if scene_path.is_empty(): - printerr("Usage: godot --script apply_visibility_ranges.gd --scene res://path/to/scene.tscn" + - "\nOr run from the Godot editor with a scene open.") - return - - var packed = ResourceLoader.load(scene_path) - if not packed: - printerr("Failed to load scene: ", scene_path) - return - scene_root = packed.instantiate() - - print("=== Visibility Range Applicator ===") - print("Scene: ", scene_root.name) - - var counts := {} # type → number of nodes modified - var total := 0 - - _apply_to_node(scene_root, counts, total) - - print("") - print("Modified nodes: ", total) - for type_name in counts: - print(" %s: %d" % [type_name, counts[type_name]]) - print("") - print("=== Ranges applied ===") - -func _apply_to_node(node: Node, counts: Dictionary, total: int) -> void: - # Only process CSG nodes (the modular pieces) - if node is CSGShape3D: - var range_config := _get_range_for_node(node) - if range_config != null: - node.visibility_range_begin = range_config.begin - node.visibility_range_end = range_config.end - node.visibility_range_begin_margin = range_config.margin - node.visibility_range_end_margin = range_config.margin - - var type_name := _classify_node(node) - counts[type_name] = counts.get(type_name, 0) + 1 - total += 1 - - if DEBUG: - print(" %s → %.0f–%.0f m (type: %s)" % [node.name, range_config.begin, range_config.end, type_name]) - - # Also apply to CSGCombiner3D parents (hold doorway/window subtractions) - if node is CSGCombiner3D: - var range_config := _get_range_for_combiner(node) - if range_config != null: - node.visibility_range_begin = range_config.begin - node.visibility_range_end = range_config.end - node.visibility_range_begin_margin = range_config.margin - node.visibility_range_end_margin = range_config.margin - - var type_name := _classify_node(node) - counts[type_name] = counts.get(type_name, 0) + 1 - total += 1 - - if DEBUG: - print(" %s → %.0f–%.0f m (type: %s)" % [node.name, range_config.begin, range_config.end, type_name]) - - # Recurse - for child in node.get_children(): - _apply_to_node(child, counts, total) - -func _classify_node(node: Node) -> String: - var name_lower := node.name.to_lower() - - if name_lower.contains("wall"): - if name_lower.contains("door"): return "doorway" - if name_lower.contains("window"): return "window" - if name_lower.contains("corner"): return "wall" - if name_lower.contains("endcap"): return "endcap" - return "wall" - if name_lower.contains("floor"): return "floor" - if name_lower.contains("pillar"): return "pillar" - if name_lower.contains("beam"): return "beam" - if name_lower.contains("accent") or name_lower.contains("blue") or name_lower.contains("red"): - return "accent" - if name_lower.contains("panel"): - return "accent" - - return "default" - -func _get_range_for_node(node: CSGShape3D) -> Dictionary: - # Detect CSGBox3D size to infer type - if node is CSGBox3D: - var box := node as CSGBox3D - var size := box.size - - # Floor slabs: thin, wide (Z > X on rotated ones, check min dimension) - if size.y <= 0.1 and (size.x >= 2.0 or size.z >= 2.0): - return RANGES.floor.duplicate() - - return _get_range_by_name(node) - -func _get_range_for_combiner(node: CSGCombiner3D) -> Dictionary: - return _get_range_by_name(node) - -func _get_range_by_name(node: Node) -> Dictionary: - var type_name := _classify_node(node) - return RANGES.get(type_name, RANGES.default).duplicate() diff --git a/client/scripts/bake_lighting.gd b/client/scripts/bake_lighting.gd deleted file mode 100644 index d8fcbff..0000000 --- a/client/scripts/bake_lighting.gd +++ /dev/null @@ -1,72 +0,0 @@ -extends SceneTree - -# Check LightmapGI config on kit_demo.tscn scene. -# No bake possible at runtime in Godot 4.7 — LightmapGI baking is editor-only. -# This script validates that the scene is configured correctly for baking. -# -# Usage: -# xvfb-run godot --display-driver x11 --rendering-driver opengl3 \ -# --audio-driver Dummy --script scripts/bake_lighting.gd -# -# Bake from editor: -# Open kit_demo.tscn in Godot editor, select LightmapGI node, -# click "Bake Lightmap" in the Inspector toolbar. - -const SCENE_PATH := "res://assets/scenes/modular/kit_demo.tscn" - -func _init(): - print("=== LightmapGI Config Check ===") - print("Note: Godot 4.7 LightmapGI baking is editor-only.") - print("This script validates configuration only.") - print("") - - var scene = ResourceLoader.load(SCENE_PATH) - if not scene: - printerr("ERROR: Failed to load scene!") - quit(1) - return - - var instance = scene.instantiate() - root.add_child(instance) - - var lightmap = _find_node(instance, "LightmapGI") - if not lightmap or not (lightmap is LightmapGI): - printerr("ERROR: LightmapGI node not found!") - quit(1) - return - - print("LightmapGI configuration:") - match lightmap.quality: - 0: print(" Quality: Low") - 1: print(" Quality: Medium") - 2: print(" Quality: High") - 3: print(" Quality: Ultra") - print(" Bounces: ", lightmap.bounces) - print(" Texel Scale: ", lightmap.texel_scale) - print(" Max Texture Size: ", lightmap.max_texture_size) - print(" Interior: ", lightmap.interior) - print(" Denoiser: ", lightmap.is_using_denoiser()) - print("") - - if lightmap.light_data != null: - print("LightmapGI has baked data!") - else: - print("LightmapGI NOT YET BAKED.") - print("To bake: Open scene in Godot editor > Select LightmapGI >") - print("click 'Bake Lightmap' button in the Inspector toolbar.") - print("") - print("Or use the Godot editor menu: Scene > Bake LightmapGI") - - print("") - print("=== Config check complete ===") - quit(0) - - -func _find_node(parent: Node, name: String) -> Node: - for child in parent.get_children(): - if child.name == name: - return child - var found = _find_node(child, name) - if found: - return found - return null diff --git a/client/scripts/bake_lighting.gd.uid b/client/scripts/bake_lighting.gd.uid deleted file mode 100644 index 393ffa9..0000000 --- a/client/scripts/bake_lighting.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://tvxatyq01ubm diff --git a/client/scripts/bake_lightmaps.gd b/client/scripts/bake_lightmaps.gd deleted file mode 100644 index 2363490..0000000 --- a/client/scripts/bake_lightmaps.gd +++ /dev/null @@ -1,610 +0,0 @@ -@tool -extends SceneTree - -# ============================================================================= -# bake_lightmaps.gd — LightmapGI Configuration Checker -# ============================================================================= -# Validates LightmapGI configuration for baking readiness in a Godot 4 scene. -# Checks: -# - LightmapGI node exists and is properly configured -# - Quality setting (Low/Medium/High/Ultra) -# - Bounce count (recommended ≥ 2) -# - Texel scale (recommended 0.5–4.0, default 1.0) -# - Interior flag (true for indoor maps) -# - Denoiser enabled -# - Max texture size (recommended ≤ 1024) -# - Light data presence (already baked or not) -# - Geometry with UV2 (required for baking) -# -# Note: Godot 4 LightmapGI baking is editor-only. This script validates -# configuration readiness; it does NOT perform the bake itself. -# -# Usage: -# godot --headless --script client/scripts/bake_lightmaps.gd -- res://path/to/map.tscn -# -# Exit codes: -# 0 — All config checks passed -# 1 — One or more config checks failed -# 2 — Scene file not found or cannot be loaded -# ============================================================================= - -const RECOMMENDED_BOUNCES := 2 -const MIN_BOUNCES := 1 -const MAX_BOUNCES := 8 -const RECOMMENDED_TEXEL_SCALE := 1.0 -const MIN_TEXEL_SCALE := 0.1 -const MAX_TEXEL_SCALE := 10.0 -const MAX_TEXTURE_SIZE := 1024 -const RECOMMENDED_QUALITY := 2 # High - -var _pass_count := 0 -var _fail_count := 0 -var _warning_count := 0 -var _scene_path := "" -var _scene_instance: Node = null -var _lightmap_node: Node = null - -# UV2 tracking -var _total_meshes := 0 -var _meshes_with_uv2 := 0 -var _meshes_without_uv2: Array[String] = [] -var _mesh_details: Array[Dictionary] = [] - - -func _init() -> void: - _parse_arguments() - - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided. Usage: godot --headless --script bake_lightmaps.gd -- res://path/to/map.tscn") - quit(2) - return - - print("") - print("==========================================") - print(" LIGHTMAP CONFIGURATION CHECKER") - print(" Scene: ", _scene_path) - print("==========================================") - print("") - - print(" Note: Godot 4 LightmapGI baking is editor-only.") - print(" This tool validates lightmap configuration readiness only.") - print(" To bake: Open scene in editor > Scene > Bake LightmapGI") - print("") - - var scene: PackedScene = _load_scene(_scene_path) - if scene == null: - printerr("ERROR: Scene not found: ", _scene_path) - quit(2) - return - - _scene_instance = _instantiate_scene(scene) - if _scene_instance == null: - printerr("ERROR: Failed to instantiate scene: ", _scene_path) - quit(2) - return - - root.add_child(_scene_instance) - - # Find LightmapGI - _lightmap_node = _find_node_by_type(_scene_instance, "LightmapGI") - - # Run all checks - _run_lightmap_node_check() - if _lightmap_node != null: - _run_quality_check() - _run_bounce_check() - _run_texel_scale_check() - _run_interior_check() - _run_denoiser_check() - _run_max_texture_size_check() - _run_energy_check() - _run_baked_data_check() - _run_process_mode_check() - - # Run geometry UV2 check - _run_uv2_check() - - # Detailed reports - _print_lightmap_report() - _print_uv2_report() - - # Summary - _print_summary() - - if _fail_count > 0: - quit(1) - else: - quit(0) - - -# --------------------------------------------------------------------------- -# Argument parsing -# --------------------------------------------------------------------------- - -func _parse_arguments() -> void: - """Extract scene path from user arguments (after --).""" - var args: PackedStringArray = OS.get_cmdline_user_args() - if not args.is_empty(): - _scene_path = args[0].strip_edges() - return - - var full_args: PackedStringArray = OS.get_cmdline_args() - var found_sep := false - for i in range(full_args.size()): - if full_args[i] == "--": - found_sep = true - continue - if found_sep: - _scene_path = full_args[i].strip_edges() - break - - -# --------------------------------------------------------------------------- -# Scene helpers -# --------------------------------------------------------------------------- - -func _load_scene(path: String) -> PackedScene: - """Load a .tscn/.scn file.""" - if not ResourceLoader.exists(path): - if not path.ends_with(".tscn") and not path.ends_with(".scn"): - path = path + ".tscn" - if not ResourceLoader.exists(path): - return null - return ResourceLoader.load(path, "PackedScene", ResourceLoader.CACHE_MODE_REUSE) - - -func _instantiate_scene(scene: PackedScene) -> Node: - return scene.instantiate() - - -func _find_node_by_type(node: Node, type_name: String) -> Node: - """Recursively find first node matching a class name.""" - if node.get_class() == type_name: - return node - for child in node.get_children(): - var found := _find_node_by_type(child, type_name) - if found != null: - return found - return null - - -func _find_nodes_by_type(node: Node, type_name: String) -> Array[Node]: - """Recursively find all nodes of a given class.""" - var results: Array[Node] = [] - if node.get_class() == type_name: - results.append(node) - for child in node.get_children(): - results.append_array(_find_nodes_by_type(child, type_name)) - return results - - -# --------------------------------------------------------------------------- -# Check helpers -# --------------------------------------------------------------------------- - -func _pass(msg: String) -> void: - _pass_count += 1 - print(" ✓ ", msg) - - -func _fail(msg: String) -> void: - _fail_count += 1 - print(" ✗ ", msg) - - -func _warn(msg: String) -> void: - _warning_count += 1 - print(" ⚠ ", msg) - - -func _check(condition: bool, msg_pass: String, msg_fail: String) -> bool: - if condition: - _pass(msg_pass) - else: - _fail(msg_fail) - return condition - - -# --------------------------------------------------------------------------- -# Individual LightmapGI checks -# --------------------------------------------------------------------------- - -func _run_lightmap_node_check() -> void: - """Verify LightmapGI node exists.""" - print("--- LightmapGI Node ---") - if _lightmap_node != null: - _pass("LightmapGI node found: '" + _lightmap_node.name + "'") - else: - _fail("LightmapGI node not found in scene — required for baked lighting") - - -func _run_quality_check() -> void: - """Validate LightmapGI quality setting.""" - print("") - print("--- Quality ---") - if _lightmap_node == null: - return - - var quality: int = _lightmap_node.get("quality") if "quality" in _lightmap_node else -1 - if quality < 0: - _fail("LightmapGI.quality not available") - return - - var quality_names := ["Low", "Medium", "High", "Ultra"] - var quality_name := quality_names[quality] if quality < quality_names.size() else "Unknown" - - if quality >= RECOMMENDED_QUALITY: - _pass("LightmapGI.quality = " + quality_name + " (" + str(quality) + ") — High or Ultra recommended") - elif quality == 1: - _warn("LightmapGI.quality = " + quality_name + " (" + str(quality) + ") — Medium is acceptable, High recommended") - else: - _fail("LightmapGI.quality = " + quality_name + " (" + str(quality) + ") — set to at least High (2)") - - -func _run_bounce_check() -> void: - """Validate light bounce count.""" - print("") - print("--- Bounces ---") - if _lightmap_node == null: - return - - var bounces: int = _lightmap_node.get("bounces") if "bounces" in _lightmap_node else -1 - if bounces < 0: - _fail("LightmapGI.bounces not available") - return - - if bounces >= RECOMMENDED_BOUNCES: - _pass("LightmapGI.bounces = " + str(bounces) + " (recommended: ≥ " + str(RECOMMENDED_BOUNCES) + ")") - elif bounces >= MIN_BOUNCES: - _warn("LightmapGI.bounces = " + str(bounces) + " — low, consider ≥ " + str(RECOMMENDED_BOUNCES)) - else: - _fail("LightmapGI.bounces = " + str(bounces) + " — minimum is " + str(MIN_BOUNCES)) - - # Warn if too high (performance concern) - if bounces > MAX_BOUNCES - 2: - _warn("LightmapGI.bounces = " + str(bounces) + " — high bounce count may impact bake time") - - -func _run_texel_scale_check() -> void: - """Validate texel scale setting.""" - print("") - print("--- Texel Scale ---") - if _lightmap_node == null: - return - - var texel_scale: float = _lightmap_node.get("texel_scale") if "texel_scale" in _lightmap_node else -1.0 - if texel_scale < 0: - _fail("LightmapGI.texel_scale not available") - return - - if abs(texel_scale - RECOMMENDED_TEXEL_SCALE) < 0.01: - _pass("LightmapGI.texel_scale = " + str(texel_scale) + " (exactly " + str(RECOMMENDED_TEXEL_SCALE) + ")") - elif texel_scale >= MIN_TEXEL_SCALE and texel_scale <= MAX_TEXEL_SCALE: - if texel_scale < 0.5: - _warn("LightmapGI.texel_scale = " + str(texel_scale) + " — below 0.5, bake resolution may be too low") - elif texel_scale > 2.0: - _warn("LightmapGI.texel_scale = " + str(texel_scale) + " — above 2.0, bake resolution may be unnecessarily high") - else: - _pass("LightmapGI.texel_scale = " + str(texel_scale) + " (within reasonable range [0.1, 10.0])") - else: - _fail("LightmapGI.texel_scale = " + str(texel_scale) + " — out of expected range [" + str(MIN_TEXEL_SCALE) + ", " + str(MAX_TEXEL_SCALE) + "]") - - -func _run_interior_check() -> void: - """Validate interior flag.""" - print("") - print("--- Interior ---") - if _lightmap_node == null: - return - - var interior: bool = _lightmap_node.get("interior") if "interior" in _lightmap_node else false - - if interior: - _pass("LightmapGI.interior = true (correct for indoor maps)") - else: - _warn("LightmapGI.interior = false — set to true for indoor scenes to avoid light leaking from outside") - - -func _run_denoiser_check() -> void: - """Validate denoiser setting.""" - print("") - print("--- Denoiser ---") - if _lightmap_node == null: - return - - # Godot 4 renamed to use_denoiser - var use_denoiser: bool = false - if "use_denoiser" in _lightmap_node: - use_denoiser = _lightmap_node.get("use_denoiser") - elif _lightmap_node.has_method("is_using_denoiser"): - use_denoiser = _lightmap_node.is_using_denoiser() - - if use_denoiser: - _pass("LightmapGI.use_denoiser = true (recommended for cleaner results)") - else: - _warn("LightmapGI.use_denoiser = false — enable denoiser for cleaner lightmap results") - - -func _run_max_texture_size_check() -> void: - """Validate max texture size setting.""" - print("") - print("--- Max Texture Size ---") - if _lightmap_node == null: - return - - var max_tex: int = _lightmap_node.get("max_texture_size") if "max_texture_size" in _lightmap_node else -1 - if max_tex < 0: - _warn("LightmapGI.max_texture_size not available (using default)") - return - - if max_tex <= MAX_TEXTURE_SIZE: - _pass("LightmapGI.max_texture_size = " + str(max_tex) + " (≤ " + str(MAX_TEXTURE_SIZE) + ")") - else: - _fail("LightmapGI.max_texture_size = " + str(max_tex) + " — exceeds " + str(MAX_TEXTURE_SIZE) + - " (consider lowering for memory budget)") - - -func _run_energy_check() -> void: - """Validate lightmap energy setting.""" - print("") - print("--- Energy ---") - if _lightmap_node == null: - return - - var energy: float = _lightmap_node.get("energy") if "energy" in _lightmap_node else 1.0 - _pass("LightmapGI.energy = " + str(energy) + " (verify visually in editor)") - - var indirect_energy: float = _lightmap_node.get("indirect_energy") if "indirect_energy" in _lightmap_node else 1.0 - if abs(indirect_energy - 1.0) > 0.01: - _warn("LightmapGI.indirect_energy = " + str(indirect_energy) + " (default is 1.0)") - - -func _run_baked_data_check() -> void: - """Check whether lightmap data has been baked.""" - print("") - print("--- Baked Data ---") - if _lightmap_node == null: - return - - var light_data = _lightmap_node.get("light_data") if "light_data" in _lightmap_node else null - if light_data != null: - _pass("LightmapGI has baked light data present") - # Check data size - if light_data.has_method("get_user_data"): - var user_data = light_data.get_user_data() - if user_data != null: - _warn("Lightmap data size: varies (baked data is present)") - else: - _warn("LightmapGI has NO baked data yet — needs baking in editor") - - -func _run_process_mode_check() -> void: - """Validate the lightmap process mode.""" - print("") - print("--- Process Mode ---") - if _lightmap_node == null: - return - - # Godot 4 LightmapGI has a bake_mode or similar property for sub-surface scattering - if "bake_mode" in _lightmap_node: - var bake_mode: int = _lightmap_node.get("bake_mode") - match bake_mode: - 0: - _pass("LightmapGI.bake_mode = Conservative (0) — safe default") - 1: - _warn("LightmapGI.bake_mode = Aggressive (1) — may cause artifacts") - 2: - _pass("LightmapGI.bake_mode = Always Lightmap (2) — good for fully baked scenes") - _: - _warn("LightmapGI.bake_mode = " + str(bake_mode) + " — unknown") - - # Check for environment mode (if property exists) - if "environment_mode" in _lightmap_node: - var env_mode: int = _lightmap_node.get("environment_mode") - match env_mode: - 0: - _pass("LightmapGI.environment_mode = Disabled — no environment lighting (indoor)") - 1: - _pass("LightmapGI.environment_mode = Enabled — using environment for lighting") - 2: - _warn("LightmapGI.environment_mode = Ambient Color — verify color is correct") - - -# --------------------------------------------------------------------------- -# UV2 geometry check -# --------------------------------------------------------------------------- - -func _run_uv2_check() -> void: - """Scan all MeshInstance3D nodes for UV2 channel presence.""" - print("") - print("--- Geometry UV2 Check ---") - - var mesh_nodes := _find_nodes_by_type(_scene_instance, "MeshInstance3D") - _total_meshes = mesh_nodes.size() - - if _total_meshes == 0: - _warn("No MeshInstance3D nodes found — checking CSG nodes for UV2") - - # Check CSG nodes instead - var csg_nodes := _find_nodes_by_type(_scene_instance, "CSGCombiner3D") - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGBox3D")) - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGSphere3D")) - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGCylinder3D")) - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGTorus3D")) - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGPolygon3D")) - csg_nodes.append_array(_find_nodes_by_type(_scene_instance, "CSGMesh3D")) - - # CSG nodes generate UV2 during baking automatically - if csg_nodes.size() > 0: - _pass("Scene uses CSG primitives (" + str(csg_nodes.size()) + ") — UV2 is auto-generated during bake") - return - - for mi in mesh_nodes: - var has_uv2 := false - if "mesh" in mi and mi.mesh != null: - has_uv2 = _check_mesh_uv2(mi.mesh) - - var info := { - "name": mi.name, - "has_uv2": has_uv2, - "material_count": 0 - } - _mesh_details.append(info) - - if has_uv2: - _meshes_with_uv2 += 1 - else: - _meshes_without_uv2.append(mi.name) - - if _meshes_without_uv2.size() == 0: - _pass("All " + str(_total_meshes) + " MeshInstance3D nodes have UV2 channel") - else: - for mesh_name in _meshes_without_uv2: - _fail("MeshInstance3D '" + mesh_name + "' lacks UV2 channel — lightmapping will not work") - _warn(str(_meshes_without_uv2.size()) + "/" + str(_total_meshes) + " meshes missing UV2") - - # Check for sub-surface scattering override on LightmapGI - if _lightmap_node != null and "subdiv" in _lightmap_node: - var subdiv: int = _lightmap_node.get("subdiv") - if subdiv > 0: - _warn("LightmapGI.subdiv = " + str(subdiv) + " — non-zero subdiv enables subsurface scattering") - - -func _check_mesh_uv2(mesh) -> bool: - """Check if a mesh has UV2 channel data.""" - if mesh == null: - return false - if not mesh.has_method("get_surface_count"): - return false - - var surface_count := mesh.get_surface_count() - for s in range(surface_count): - var arrays := mesh.surface_get_arrays(s) - if arrays is Array and arrays.size() > 0: - var uv2 := arrays[Mesh.ARRAY_TEX_UV2] as PackedVector2Array - if uv2 != null and uv2.size() > 0: - return true - return false - - -# --------------------------------------------------------------------------- -# Reports -# --------------------------------------------------------------------------- - -func _print_lightmap_report() -> void: - """Print a detailed lightmap configuration report.""" - print("") - print("--- LightmapGI Configuration Report ---") - if _lightmap_node == null: - print(" (no LightmapGI node to report)") - return - - print(" Node path: ", _get_node_path(_lightmap_node)) - var quality_names := ["Low", "Medium", "High", "Ultra"] - var q: int = _lightmap_node.get("quality") if "quality" in _lightmap_node else -1 - if q >= 0 and q < quality_names.size(): - print(" Quality: ", quality_names[q], " (", q, ")") - else: - print(" Quality: ", q) - print(" Bounces: ", _lightmap_node.get("bounces") if "bounces" in _lightmap_node else "N/A") - print(" Texel Scale: ", _lightmap_node.get("texel_scale") if "texel_scale" in _lightmap_node else "N/A") - print(" Interior: ", _lightmap_node.get("interior") if "interior" in _lightmap_node else "N/A") - print(" Denoiser: ", _lightmap_node.get("use_denoiser") if "use_denoiser" in _lightmap_node else "N/A") - print(" Max Tex Size: ", _lightmap_node.get("max_texture_size") if "max_texture_size" in _lightmap_node else "N/A") - print(" Energy: ", _lightmap_node.get("energy") if "energy" in _lightmap_node else "N/A") - print(" Baked Data: ", "Yes" if _lightmap_node.get("light_data") != null else "No") - print("") - - -func _print_uv2_report() -> void: - """Print UV2 details for meshes.""" - print("--- UV2 Report ---") - print(" Total MeshInstance3D: ", _total_meshes) - print(" With UV2: ", _meshes_with_uv2) - print(" Without UV2: ", _meshes_without_uv2.size()) - if _meshes_without_uv2.size() > 0: - print(" Missing UV2 list:") - for name in _meshes_without_uv2: - print(" - ", name) - print("") - - -func _get_node_path(node: Node) -> String: - """Get the scene-tree path of a node.""" - var parts: Array[String] = [] - var current := node - while current != null and current != _scene_instance: - parts.push_front(current.name) - current = current.get_parent() - return "/".join(parts) - - -# --------------------------------------------------------------------------- -# Summary -# --------------------------------------------------------------------------- - -func _print_summary() -> void: - """Print final summary.""" - print("==========================================") - print(" LIGHTMAP CONFIG SUMMARY") - print("==========================================") - print(" Scene: ", _scene_path) - print(" LightmapGI: ", "Found ✓" if _lightmap_node != null else "Missing ✗") - print(" Quality OK: ", _check_quality_status()) - print(" Bounces OK: ", _check_bounce_status()) - print(" Texel Scale OK: ", _check_texel_status()) - print(" Interior OK: ", _check_interior_status()) - print(" Denoiser OK: ", _check_denoiser_status()) - print(" UV2 OK: ", _check_uv2_status()) - print("------------------------------------------") - print(" Passed: ", _pass_count) - print(" Failed: ", _fail_count) - print(" Warnings: ", _warning_count) - print("------------------------------------------") - if _fail_count > 0: - print(" RESULT: FAILED ❌") - printerr("Lightmap config check FAILED — ", _fail_count, " check(s) failed.") - else: - print(" RESULT: PASSED ✅") - print("==========================================") - print("") - - -func _check_quality_status() -> String: - if _lightmap_node == null: return "N/A" - var q = _lightmap_node.get("quality") if "quality" in _lightmap_node else -1 - return "Yes ✓" if q >= RECOMMENDED_QUALITY else ("No ✗" if q >= 0 else "N/A") - - -func _check_bounce_status() -> String: - if _lightmap_node == null: return "N/A" - var b = _lightmap_node.get("bounces") if "bounces" in _lightmap_node else -1 - return "Yes ✓" if b >= RECOMMENDED_BOUNCES else ("No ✗" if b >= 0 else "N/A") - - -func _check_texel_status() -> String: - if _lightmap_node == null: return "N/A" - var t = _lightmap_node.get("texel_scale") if "texel_scale" in _lightmap_node else -1.0 - if t < 0: return "N/A" - return "Yes ✓" if t >= 0.5 and t <= 2.0 else "⚠" - - -func _check_interior_status() -> String: - if _lightmap_node == null: return "N/A" - var interior = _lightmap_node.get("interior") if "interior" in _lightmap_node else false - return "Yes ✓" if interior else "No ✗" - - -func _check_denoiser_status() -> String: - if _lightmap_node == null: return "N/A" - if "use_denoiser" in _lightmap_node: - return "Yes ✓" if _lightmap_node.get("use_denoiser") else "No ✗" - if _lightmap_node.has_method("is_using_denoiser"): - return "Yes ✓" if _lightmap_node.is_using_denoiser() else "No ✗" - return "N/A" - - -func _check_uv2_status() -> String: - if _total_meshes == 0: return "N/A (CSG)" - if _meshes_without_uv2.size() == 0: return "Yes ✓" - return str(_meshes_without_uv2.size()) + " missing" diff --git a/client/scripts/bake_lightmaps.gd.uid b/client/scripts/bake_lightmaps.gd.uid deleted file mode 100644 index 65327f6..0000000 --- a/client/scripts/bake_lightmaps.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d0mbp6gs2mwlr diff --git a/client/scripts/convert_csg_to_mesh.gd b/client/scripts/convert_csg_to_mesh.gd deleted file mode 100644 index 9dea02a..0000000 --- a/client/scripts/convert_csg_to_mesh.gd +++ /dev/null @@ -1,198 +0,0 @@ -@tool -extends EditorScript - -# CSG → Static Mesh Baker with LOD generation. -# -# Converts all CSG pieces in the current scene to MeshInstance3D nodes -# with proper LOD levels for the final optimization pass. -# -# This is the definitive LOD solution: once meshes are baked, Godot's -# built-in mesh LOD system takes over via the Mesh resource's LOD slots. -# -# Usage: -# 1. Open target scene in the Godot editor -# 2. Scene > Run Script (select this file) -# 3. Choose whether to replace CSG in-place or save meshes separately -# -# The script: -# a) Finds all CSGShape3D nodes (CSGBox3D, CSGCombiner3D) -# b) Calls mesh_to_save() to get the generated mesh -# c) Creates MeshInstance3D + CollisionShape3D replacements -# d) Generates LOD1 (50%) and LOD2 (25%) via mesh simplification -# e) Replaces the CSG node with the baked mesh - -const CREATE_LOD := true -const PRESERVE_COLLISION := true -const LOD0_DISTANCE := 0.0 -const LOD1_DISTANCE := 15.0 # 50% tris -const LOD2_DISTANCE := 30.0 # 25% tris -const LOD_DECIMATE_RATIOS := [0.0, 0.5, 0.25] - -func _run(): - var scene_root: Node - - if Engine.is_editor_hint(): - scene_root = get_scene() as Node - if not scene_root: - printerr("Open a scene in the editor first.") - return - else: - printerr("This script must be run from the Godot editor.") - return - - print("=== CSG → Mesh Baker ===") - print("Scene: ", scene_root.name) - - var converted := 0 - var errors := 0 - - _bake_node(scene_root, converted, errors) - - print("Converted: ", converted, " CSG nodes") - print("Errors: ", errors) - - if converted > 0: - print("") - print("NOTE: After conversion, re-save the scene to persist mesh data.") - print("MeshInstance3D LOD distances: LOD0 < 15m, LOD1 < 30m, LOD2 30m+") - print("") - print("=== Bake complete ===") - -func _bake_node(node: Node, converted: int, errors: int) -> void: - if node is CSGShape3D: - var mesh_instance := _convert_csg_to_mesh(node as CSGShape3D) - if mesh_instance: - # Replace CSG node with mesh instance - var parent := node.get_parent() - var idx := node.get_index() - - parent.remove_child(node) - parent.add_child(mesh_instance, true) - parent.move_child(mesh_instance, idx) - - if Engine.is_editor_hint(): - mesh_instance.set_owner(parent.owner) - - # Clean up the old CSG node - node.queue_free() - - converted += 1 - else: - errors += 1 - - # Recurse — important: use the original node's children - # but the node may have been freed, so iterate a snapshot - var children := node.get_children() - for child in children: - _bake_node(child, converted, errors) - -func _convert_csg_to_mesh(csg: CSGShape3D) -> MeshInstance3D: - # Get the generated mesh from the CSG node - var mesh := csg.mesh_to_save() - if not mesh: - push_warning("CSG node '%s' produced no mesh — skipping." % csg.name) - return null - - var mi := MeshInstance3D.new() - mi.name = csg.name + "_Mesh" - - # Copy transform - mi.transform = csg.transform - - # Copy visibility ranges (if set on the CSG node) - mi.visibility_range_begin = csg.visibility_range_begin - mi.visibility_range_end = csg.visibility_range_end - mi.visibility_range_begin_margin = csg.visibility_range_begin_margin - mi.visibility_range_end_margin = csg.visibility_range_end_margin - - # Create an ArrayMesh from the CSG mesh - var array_mesh := _to_array_mesh(mesh) - if not array_mesh: - push_warning("Failed to convert mesh for '%s'." % csg.name) - return null - - # Generate LODs - if CREATE_LOD and array_mesh.get_surface_count() > 0: - _generate_lods(array_mesh, csg) - - mi.mesh = array_mesh - - # Add collision shape if the CSG had it - if PRESERVE_COLLISION and csg.use_collision: - var collision := _create_collision(csg) - if collision: - mi.add_child(collision, true) - if Engine.is_editor_hint(): - collision.set_owner(mi.owner) - - return mi - -func _to_array_mesh(source: Mesh) -> ArrayMesh: - # Convert any Mesh type to ArrayMesh suitable for LOD attachment - - if source is ArrayMesh: - return source.duplicate() as ArrayMesh - - # If it's a primitive mesh, create a new ArrayMesh and copy surfaces - var array_mesh := ArrayMesh.new() - for i in range(source.get_surface_count()): - var arrays := source.surface_get_arrays(i) - if arrays: - var blend := source.surface_get_blend_shape_arrays(i) - var format := source.surface_get_format(i) - array_mesh.add_surface_from_arrays(source.surface_get_primitive_type(i), arrays, blend, format) - - return array_mesh - -func _generate_lods(array_mesh: ArrayMesh, csg: CSGShape3D) -> void: - # Generate LOD levels for the mesh. - # In Godot 4.3+, LOD is added via add_lod(simplified_mesh, distance). - # True mesh simplification (edge collapse) requires Godot's editor - # mesh_decimate tool or an external library. - # - # This implementation creates placeholder LOD entries using the - # full-poly mesh. For actual draw-call savings, run the editor's - # Mesh → Simplify → Generate LODs to replace these with decimated - # geometry at the LOD distances defined above. - - var lods_added := 0 - - for lod_idx in range(1, 3): # LOD1, LOD2 - var ratio := LOD_DECIMATE_RATIOS[lod_idx] - if ratio <= 0.0: - continue - - var lod_distance := 0.0 - match lod_idx: - 1: lod_distance = LOD1_DISTANCE - 2: lod_distance = LOD2_DISTANCE - - # Create a placeholder LOD entry using the full mesh. - # Replace with mesh_decimate output for actual tri reduction. - var lod_mesh := array_mesh.duplicate() as ArrayMesh - if lod_mesh and lod_mesh.get_surface_count() > 0: - array_mesh.add_lod(lod_mesh, lod_distance) - lods_added += 1 - - if lods_added == 0: - push_warning("No LODs generated for '%s' — LOD slots require at least one surface." % csg.name) - -func _create_collision(csg: CSGShape3D) -> CollisionShape3D: - var shape := CollisionShape3D.new() - shape.name = "Collision" - - if csg is CSGBox3D: - var box_shape := BoxShape3D.new() - box_shape.size = (csg as CSGBox3D).size - shape.shape = box_shape - elif csg is CSGSphere3D: - var sphere_shape := SphereShape3D.new() - sphere_shape.radius = (csg as CSGSphere3D).radius - shape.shape = sphere_shape - else: - # Fall back to a box matching the AABB - var aabb_box := BoxShape3D.new() - aabb_box.size = csg.get_aabb().size - shape.shape = aabb_box - - return shape diff --git a/client/scripts/convert_csg_to_mesh.gd.uid b/client/scripts/convert_csg_to_mesh.gd.uid deleted file mode 100644 index 4acb47e..0000000 --- a/client/scripts/convert_csg_to_mesh.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c0b8h1hq57lsu diff --git a/client/scripts/generate_occluders.gd b/client/scripts/generate_occluders.gd deleted file mode 100644 index 23e776c..0000000 --- a/client/scripts/generate_occluders.gd +++ /dev/null @@ -1,138 +0,0 @@ -@tool -extends EditorScript - -# Auto-generate OccluderInstance3D nodes from CSG wall pieces. -# -# Scans the current scene for CSGBox3D nodes tagged as structural -# (walls, floors, pillars) and creates matching OccluderInstance3D -# boxes so Godot's occlusion culling system can use them. -# -# Usage: -# 1. Open target scene in Godot editor -# 2. Run: Scene > Run Script (select this file) -# 3. Or run from command line: -# godot --script scripts/generate_occluders.gd --scene res://path/to/scene.tscn -# -# Generated occluders are parented under an "Occluders" node. - -const OCCLUDER_PARENT_NAME := "Occluders" - -# Minimum CSG size (longest axis) to generate an occluder. -# Very small pieces don't contribute meaningful occlusion. -const MIN_OCCLUDER_SIZE := 0.5 - -func _run(): - var scene_root: Node - - if Engine.is_editor_hint(): - scene_root = get_scene() as Node - if not scene_root: - printerr("No scene is currently open in the editor.") - return - else: - var args = OS.get_cmdline_args() - var scene_path := "" - for i in range(args.size()): - if args[i] == "--scene" and i + 1 < args.size(): - scene_path = args[i + 1] - if scene_path.is_empty(): - printerr("Usage: godot --script generate_occluders.gd --scene res://path/to/scene.tscn") - return - - var packed = ResourceLoader.load(scene_path) - if not packed: - printerr("Failed to load scene: ", scene_path) - return - scene_root = packed.instantiate() - - print("=== Occluder Generator ===") - print("Scene: ", scene_root.name if scene_root else "unknown") - - # Find or create the Occluders parent node - var occluder_parent: Node = _find_or_create_parent(scene_root) - var generated_count := 0 - var skipped_count := 0 - - # Walk all CSGBox3D nodes in the scene - _generate_from_node(scene_root, occluder_parent, generated_count, skipped_count) - - print("Generated: ", generated_count, " occluders") - print("Skipped (too small): ", skipped_count) - print("Parent: ", occluder_parent.get_path()) - print("") - print("IMPORTANT: Occlusion culling requires the following project settings:") - print(" rendering/occlusion_culling/occlusion_rays_per_octant = 6") - print(" rendering/occlusion_culling/occlusion_culler_size = 128") - print("") - print("=== Occluder generation complete ===") - -func _generate_from_node(node: Node, parent: Node, generated: int, skipped: int): - # Check if this is a wall/pillar CSGBox3D (exclude subtraction/hole pieces) - if node is CSGBox3D: - var csg := node as CSGBox3D - # Skip subtraction pieces (operation = 1 = Subtraction) - # Skip pieces that are too small to occlude - if csg.operation != CSGShape3D.OPERATION_SUBTRACTION: - var size := csg.size - var longest = max(size.x, max(size.y, size.z)) - if longest >= MIN_OCCLUDER_SIZE: - _create_occluder(csg, parent) - generated += 1 - else: - skipped += 1 - else: - skipped += 1 - - # Recurse into children - for child in node.get_children(): - _generate_from_node(child, parent, generated, skipped) - -func _find_or_create_parent(root: Node) -> Node: - for child in root.get_children(): - if child.name == OCCLUDER_PARENT_NAME: - print("Found existing Occluders node.") - return child - - var parent := Node3D.new() - parent.name = OCCLUDER_PARENT_NAME - parent.set_script(null) # No script needed - - # Add as first child so it's visually at the top in the scene tree - root.add_child(parent, true) - if Engine.is_editor_hint(): - parent.set_owner(root) - - print("Created Occluders node.") - return parent - -func _create_occluder(csg: CSGBox3D, parent: Node) -> void: - var occluder := OccluderInstance3D.new() - occluder.name = "Occluder_" + csg.name - - # Create a box-shaped occluder matching the CSG piece - var shape := OccluderShape3D.new() - shape.set_as_vertices_and_indices( - PackedVector3Array([]), # auto-generated from AABB - PackedInt32Array([]) - ) - - # Use a box occluder matching the CSG box dimensions - var box_shape := OccluderShapeBox3D.new() - box_shape.size = csg.size - occluder.set_occluder_shape(box_shape) - - # Match the CSG node's global transform - var global_transform := csg.global_transform - occluder.global_transform = global_transform - - # Bake to static mode (not dynamic) for best performance - occluder.bake_mask = 1 # Layer 1 only - occluder.bake_id = 0 - - parent.add_child(occluder, true) - if Engine.is_editor_hint(): - occluder.set_owner(parent.owner) - - # Apply voxel resolution - # Godot 4's occlusion is computed from a signed-distance field - # at the configured culler size (128^3 by budget spec) diff --git a/client/scripts/generate_occluders.gd.uid b/client/scripts/generate_occluders.gd.uid deleted file mode 100644 index 9aa7ead..0000000 --- a/client/scripts/generate_occluders.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://pauclwpn265a diff --git a/client/scripts/map_downloader.gd b/client/scripts/map_downloader.gd deleted file mode 100644 index 5b96cb1..0000000 --- a/client/scripts/map_downloader.gd +++ /dev/null @@ -1,360 +0,0 @@ -## MapDownloader — Client-side map download and cache management -## -## Autoload singleton that downloads .pck map packs from the map registry -## server and loads them into the running game. Provides a cache manifest -## at user://maps/manifest.json for persistence across restarts. -## -## ## Architecture -## -## Registry Server MapDownloader (Godot autoload) -## ┌──────────────────────┐ ┌─────────────────────────┐ -## │ GET /maps │ ◄──── │ fetch_map_list() │ -## │ GET /maps/:name.pck │ ◄──── │ download_map(name) │ -## │ GET /maps/:name.json│ ◄──── │ get_map_info(name) │ -## └──────────────────────┘ │ │ -## │ Cache: │ -## user://maps/.pck ══╡ .pck files │ -## user://maps/manifest.json ═╡ manifest │ -## └─────────────────────────┘ -## -## ## Signals -## map_list_loaded(maps: Array[Dictionary]) — registry map list -## map_download_progress(map_name, received, total) -## map_download_complete(map_name, success) -## map_loaded(map_name) - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -signal map_list_loaded(maps: Array) # maps from registry server -signal map_download_progress(map_name: String, bytes_received: int, bytes_total: int) -signal map_download_complete(map_name: String, success: bool) -signal map_loaded(map_name: String) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -const MAP_CACHE_DIR: String = "user://maps/" -const MANIFEST_FILE: String = "user://maps/manifest.json" -const DEFAULT_REGISTRY_URL: String = "http://127.0.0.1:8090" - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -## URL of the map registry server (no trailing slash). -var registry_url: String = DEFAULT_REGISTRY_URL: - set(val): - registry_url = val.trim_suffix("/") - -## Timeout for HTTP requests in seconds. -var http_timeout: float = 30.0 - -## Max concurrent downloads. -var max_concurrent: int = 2 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var _http_busy: bool = false -var _active_downloads: Dictionary = {} # map_name → Dictionary -var _download_queue: Array[Dictionary] = [] -var _manifest: Dictionary = {} # {map_name: {version, size, downloaded_at}} -var _loaded_pcks: Array[String] = [] -var _http_nodes: Array[HTTPRequest] = [] - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Create cache directory - DirAccess.make_dir_recursive_absolute(ProjectSettings.globalize_path(MAP_CACHE_DIR)) - - # Load local manifest - _load_manifest() - - # Override registry URL from environment - if OS.has_environment("MAP_REGISTRY_URL"): - registry_url = OS.get_environment("MAP_REGISTRY_URL") - - print("[MapDownloader] Registry URL: %s" % registry_url) - print("[MapDownloader] Cache dir: %s" % MAP_CACHE_DIR) - print("[MapDownloader] Cached maps: %d" % _manifest.size()) - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Fetch the list of available maps from the registry server. -## Emits map_list_loaded when done. -func fetch_map_list() -> void: - if _http_busy: - return - _http_busy = true - - var url: String = "%s/maps" % [registry_url] - var http := HTTPRequest.new() - http.name = "MapListHTTP" - http.timeout = http_timeout - add_child(http) - _http_nodes.append(http) - http.request_completed.connect(_on_map_list_received.bind(http)) - http.request(url) - -## Check if a map is in the local cache. -func is_map_cached(map_name: String) -> bool: - if not _manifest.has(map_name): - return false - - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - return FileAccess.file_exists(global_path) - -## Get the version of a cached map. Returns 0 if not cached. -func get_cached_version(map_name: String) -> int: - var info = _manifest.get(map_name, {}) - return info.get("version", 1) - -## Download a single map .pck from the registry server. -## The map is saved to user://maps/.pck and loaded automatically. -func download_map(map_name: String) -> void: - if is_map_cached(map_name): - print("[MapDownloader] %s already cached — loading" % map_name) - _load_map_pck(map_name) - return - - if map_name in _active_downloads: - print("[MapDownloader] %s is already downloading" % map_name) - return - - var entry := { - map_name = map_name, - url = "%s/maps/%s.pck" % [registry_url, map_name], - } - if _active_downloads.size() < max_concurrent: - _start_download(entry) - else: - _download_queue.append(entry) - print("[MapDownloader] %s queued (%d waiting)" % [map_name, _download_queue.size()]) - -## Download multiple maps. -func download_maps(map_names: Array[String]) -> void: - for name in map_names: - download_map(name) - -## Load a cached .pck into the resource system. -## Returns true if the pack was loaded successfully. -func load_map(map_name: String) -> bool: - return _load_map_pck(map_name) - -## Remove a cached map from disk and manifest. -func remove_map(map_name: String) -> void: - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - if FileAccess.file_exists(global_path): - DirAccess.remove_absolute(global_path) - _manifest.erase(map_name) - _save_manifest() - var idx = _loaded_pcks.find(map_name) - if idx >= 0: - _loaded_pcks.remove_at(idx) - print("[MapDownloader] Removed cached map: %s" % map_name) - -## Get list of locally cached map names. -func get_cached_maps() -> Array[String]: - return _manifest.keys() - -## Get info about a cached map from the manifest. -func get_cached_map_info(map_name: String) -> Dictionary: - return _manifest.get(map_name, {}) - -## Clear all cached maps. -func clear_cache() -> void: - for name in _manifest.keys(): - remove_map(name) - print("[MapDownloader] Cache cleared") - -## Get total cache size in bytes. -func get_cache_size_bytes() -> int: - var total := 0 - for name in _manifest.keys(): - total += _manifest[name].get("size", 0) - return total - -# --------------------------------------------------------------------------- -# Internal: Download handling -# --------------------------------------------------------------------------- - -func _start_download(entry: Dictionary) -> void: - var map_name: String = entry.map_name - var url: String = entry.url - var save_path: String = ProjectSettings.globalize_path("%s%s.pck" % [MAP_CACHE_DIR, map_name]) - - _active_downloads[map_name] = entry - print("[MapDownloader] Downloading: %s" % map_name) - - var http := HTTPRequest.new() - http.name = "MapDl_%s" % map_name - http.timeout = http_timeout - http.download_file = save_path - add_child(http) - _http_nodes.append(http) - http.request_completed.connect(_on_map_downloaded.bind(map_name, http)) - http.request(url) - -func _process_download_queue() -> void: - if _download_queue.is_empty(): - return - var next: Dictionary = _download_queue.pop_front() - _start_download(next) - -# --------------------------------------------------------------------------- -# Internal: Callbacks -# --------------------------------------------------------------------------- - -func _on_map_list_received(result: int, response_code: int, _headers: PackedStringArray, body: PackedByteArray, http_node: HTTPRequest) -> void: - _http_busy = false - - # Cleanup the HTTP node - http_node.request_completed.disconnect(_on_map_list_received) - _http_nodes.erase(http_node) - http_node.queue_free() - - if result != HTTPRequest.RESULT_SUCCESS: - push_error("[MapDownloader] Network error fetching map list: %d" % result) - map_list_loaded.emit([]) - return - - if response_code != 200: - push_error("[MapDownloader] Failed to fetch map list: HTTP %d" % response_code) - map_list_loaded.emit([]) - return - - var json := JSON.new() - var parse_err: Error = json.parse(body.get_string_from_utf8()) - if parse_err != OK: - push_error("[MapDownloader] Failed to parse map list JSON") - map_list_loaded.emit([]) - return - - var data: Dictionary = json.data - var maps: Array = data.get("maps", []) - - print("[MapDownloader] Registry offers %d maps" % maps.size()) - map_list_loaded.emit(maps) - -func _on_map_downloaded(result: int, response_code: int, _headers: PackedStringArray, _body: PackedByteArray, map_name: String, http_node: HTTPRequest) -> void: - _active_downloads.erase(map_name) - - # Cleanup the HTTP node - http_node.request_completed.disconnect(_on_map_downloaded) - _http_nodes.erase(http_node) - http_node.queue_free() - - if result != HTTPRequest.RESULT_SUCCESS or response_code != 200: - push_error("[MapDownloader] Download failed for %s: result=%d HTTP=%d" % [map_name, result, response_code]) - map_download_complete.emit(map_name, false) - _process_download_queue() - return - - print("[MapDownloader] Downloaded %s successfully" % map_name) - map_download_complete.emit(map_name, true) - - # Update manifest - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - var file_size: int = 0 - if FileAccess.file_exists(global_path): - file_size = FileAccess.get_size(global_path) - - _manifest[map_name] = { - version = _manifest.get(map_name, {}).get("version", 1), - size = file_size, - downloaded_at = Time.get_datetime_string_from_system(), - } - _save_manifest() - - # Load the map into the resource system - _load_map_pck(map_name) - _process_download_queue() - -# --------------------------------------------------------------------------- -# Internal: PCK loading -# --------------------------------------------------------------------------- - -func _load_map_pck(map_name: String) -> bool: - if map_name in _loaded_pcks: - return true - - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - - if not FileAccess.file_exists(global_path): - push_error("[MapDownloader] Cannot load %s: .pck not found" % map_name) - return false - - var err: Error = ProjectSettings.load_resource_pack(global_path) - if err != OK: - push_error("[MapDownloader] Failed to load %s: %s" % [map_name, error_string(err)]) - return false - - _loaded_pcks.append(map_name) - print("[MapDownloader] Loaded map: %s" % map_name) - map_loaded.emit(map_name) - return true - -# --------------------------------------------------------------------------- -# Internal: Manifest persistence -# --------------------------------------------------------------------------- - -func _load_manifest() -> void: - var global_path: String = ProjectSettings.globalize_path(MANIFEST_FILE) - if not FileAccess.file_exists(global_path): - _manifest = {} - return - - var f := FileAccess.open(global_path, FileAccess.READ) - if f == null: - _manifest = {} - return - - var json := JSON.new() - var parse_err: Error = json.parse(f.get_as_text()) - f.close() - - if parse_err != OK: - push_warning("[MapDownloader] Failed to parse manifest — starting fresh") - _manifest = {} - else: - _manifest = json.data - _validate_manifest() - -func _save_manifest() -> void: - var global_path: String = ProjectSettings.globalize_path(MANIFEST_FILE) - var f := FileAccess.open(global_path, FileAccess.WRITE) - if f == null: - push_error("[MapDownloader] Cannot save manifest to %s" % global_path) - return - - f.store_string(JSON.stringify(_manifest, "\t", false)) - f.close() - -func _validate_manifest() -> void: - var stale: Array[String] = [] - for name in _manifest.keys(): - var pck_path: String = ProjectSettings.globalize_path("%s%s.pck" % [MAP_CACHE_DIR, name]) - if not FileAccess.file_exists(pck_path): - stale.append(name) - - for name in stale: - print("[MapDownloader] Manifest cleanup: %s (file missing)" % name) - _manifest.erase(name) - - if not stale.is_empty(): - _save_manifest() diff --git a/client/scripts/map_downloader.gd.uid b/client/scripts/map_downloader.gd.uid deleted file mode 100644 index eef7602..0000000 --- a/client/scripts/map_downloader.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://5fcqul7vigrv diff --git a/client/scripts/map_workshop.gd b/client/scripts/map_workshop.gd deleted file mode 100644 index 1051ab4..0000000 --- a/client/scripts/map_workshop.gd +++ /dev/null @@ -1,513 +0,0 @@ -## MapWorkshop — In-game Workshop-style Map Browser -## -## Full-screen UI for browsing, downloading, and managing community maps. -## Two tabs: "Installed" (local cache) and "Online" (registry server). -## Follows the visual style of the existing ServerBrowserUI. -## -## Signals: -## map_selected(map_name: String) — Player clicked "Play" on a map -## -## Usage: -## var workshop = preload("res://client/scripts/map_workshop.gd").new() -## add_child(workshop) -## workshop.show_tab("online") # or "installed" - -extends Control - -signal map_selected(map_name: String) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -const COL_WIDTHS := { - "name": 0.32, - "version": 0.08, - "size": 0.10, - "status": 0.20, - "action": 0.30, -} - -const SIZE_SUFFIXES := ["B", "KB", "MB", "GB"] - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var _current_tab: String = "installed" # "installed" or "online" -var _registry_maps: Array[Dictionary] = [] -var _cached_maps: Array[String] = [] -var _downloading: Dictionary = {} # map_name → float (progress 0.0-1.0) - -# UI nodes -var _panel: Panel -var _title_label: Label -var _tab_installed: Button -var _tab_online: Button -var _filter_edit: LineEdit -var _map_list: ItemList -var _status_label: Label -var _action_button: Button -var _close_button: Button -var _refresh_button: Button - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _build_ui() - - # Hook into MapDownloader signals - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - md.map_list_loaded.connect(_on_map_list_loaded) - md.map_download_complete.connect(_on_download_complete) - md.map_loaded.connect(_on_map_loaded) - - # Load initial data - _refresh_installed() - _refresh_online() - -func _build_ui() -> void: - # Main panel - _panel = Panel.new() - _panel.name = "WorkshopPanel" - _panel.anchor_right = 1.0 - _panel.anchor_bottom = 1.0 - add_child(_panel) - - var margin := 8 - var style = StyleBoxFlat.new() - style.bg_color = Color(0.12, 0.12, 0.14, 0.95) - style.corner_radius_top_left = 4 - style.corner_radius_top_right = 4 - style.corner_radius_bottom_left = 4 - style.corner_radius_bottom_right = 4 - style.content_margin_left = margin - style.content_margin_top = margin - style.content_margin_right = margin - style.content_margin_bottom = margin - _panel.add_theme_stylebox_override("panel", style) - - # Title - _title_label = Label.new() - _title_label.name = "TitleLabel" - _title_label.text = "MAP WORKSHOP" - _title_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _title_label.add_theme_font_size_override("font_size", 18) - _title_label.add_theme_color_override("font_color", Color(1.0, 0.84, 0.0)) # gold - _title_label.position = Vector2(margin, margin) - _panel.add_child(_title_label) - - # Tab buttons - _tab_installed = Button.new() - _tab_installed.name = "TabInstalled" - _tab_installed.text = "Installed" - _tab_installed.toggle_mode = true - _tab_installed.button_pressed = true - _tab_installed.pressed.connect(_on_tab_changed.bind("installed")) - _panel.add_child(_tab_installed) - - _tab_online = Button.new() - _tab_online.name = "TabOnline" - _tab_online.text = "Online" - _tab_online.toggle_mode = true - _tab_online.pressed.connect(_on_tab_changed.bind("online")) - _panel.add_child(_tab_online) - - # Filter - _filter_edit = LineEdit.new() - _filter_edit.name = "FilterEdit" - _filter_edit.placeholder_text = "Filter maps by name..." - _filter_edit.text_changed.connect(_on_filter_changed) - _panel.add_child(_filter_edit) - - # Map list - _map_list = ItemList.new() - _map_list.name = "MapList" - _map_list.allow_reselect = false - _map_list.select_mode = ItemList.SELECT_SINGLE - _map_list.item_selected.connect(_on_map_selected) - _map_list.nothing_selected.connect(_clear_selection) - _panel.add_child(_map_list) - - # Action button (changes context: "Play" / "Download" / "Remove") - _action_button = Button.new() - _action_button.name = "ActionButton" - _action_button.text = "—" - _action_button.disabled = true - _action_button.pressed.connect(_on_action_pressed) - _panel.add_child(_action_button) - - # Refresh button - _refresh_button = Button.new() - _refresh_button.name = "RefreshButton" - _refresh_button.text = "↻ Refresh" - _refresh_button.pressed.connect(_on_refresh_pressed) - _panel.add_child(_refresh_button) - - # Status bar - _status_label = Label.new() - _status_label.name = "StatusLabel" - _status_label.text = "Ready" - _status_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _status_label.add_theme_color_override("font_color", Color(0.6, 0.6, 0.6)) - _panel.add_child(_status_label) - - # Close button - _close_button = Button.new() - _close_button.name = "CloseButton" - _close_button.text = "✕" - _close_button.pressed.connect(_on_close_pressed) - _panel.add_child(_close_button) - -func _notification(what: int) -> void: - if what == NOTIFICATION_RESIZED or what == NOTIFICATION_SORT_CHILDREN: - _resize_ui() - -func _resize_ui() -> void: - var w = _panel.size.x - var h = _panel.size.y - var m := 8 - var y := m - - # Title - _title_label.position = Vector2(m, y) - _title_label.size = Vector2(w - m * 2, 24) - y += 30 - - # Tabs row - var tab_w = (w - m * 3) / 2 - _tab_installed.position = Vector2(m, y) - _tab_installed.size = Vector2(tab_w, 26) - _tab_online.position = Vector2(m + tab_w + m, y) - _tab_online.size = Vector2(tab_w, 26) - y += 34 - - # Filter - _filter_edit.position = Vector2(m, y) - _filter_edit.size = Vector2(w - m * 2, 24) - y += 32 - - # Map list - var list_height = h - y - 80 - _map_list.position = Vector2(m, y) - _map_list.size = Vector2(w - m * 2, max(list_height, 60)) - y += _map_list.size.y + 8 - - # Buttons row - var btn_w = (w - m * 3) / 3 - _action_button.position = Vector2(m, y) - _action_button.size = Vector2(btn_w, 28) - - _refresh_button.position = Vector2(m + btn_w + m / 2, y) - _refresh_button.size = Vector2(btn_w, 28) - - y += 36 - - # Status - _status_label.position = Vector2(m, y) - _status_label.size = Vector2(w - m * 2, 20) - - # Close button (top-right corner) - _close_button.position = Vector2(w - 28, 4) - _close_button.size = Vector2(24, 24) - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Open to a specific tab. -func show_tab(tab: String) -> void: - match tab: - "installed": - _tab_installed.button_pressed = true - _tab_online.button_pressed = false - _current_tab = "installed" - _populate_list() - "online": - _tab_installed.button_pressed = false - _tab_online.button_pressed = true - _current_tab = "online" - _refresh_online() - _populate_list() - -# --------------------------------------------------------------------------- -# Data -# --------------------------------------------------------------------------- - -func _refresh_installed() -> void: - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - _cached_maps = md.get_cached_maps() - else: - _cached_maps = [] - -func _refresh_online() -> void: - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - md.fetch_map_list() - _status_label.text = "Fetching map list..." - else: - _status_label.text = "MapDownloader not available" - -# --------------------------------------------------------------------------- -# List population -# --------------------------------------------------------------------------- - -func _populate_list() -> void: - _map_list.clear() - _action_button.disabled = true - _action_button.text = "—" - - var filter_text = _filter_edit.text.strip_edges().to_lower() - - match _current_tab: - "installed": - _populate_installed(filter_text) - "online": - _populate_online(filter_text) - -func _populate_installed(filter_text: String) -> void: - if _cached_maps.is_empty(): - _map_list.add_item(" No maps installed") - _status_label.text = "No maps cached. Switch to Online tab to download maps." - return - - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - var count := 0 - - for name in _cached_maps: - if not filter_text.is_empty() and not name.to_lower().contains(filter_text): - continue - - var info = md.get_cached_map_info(name) - var size_bytes = info.get("size", 0) - var version = info.get("version", 1) - - var size_str = _format_size(size_bytes) - var status = "Ready" - var icon = "✓" - - var label = "%s %s v%d %s %s" % [icon, name, version, size_str, status] - _map_list.add_item(label) - count += 1 - - _status_label.text = "%d installed map(s)" % count - else: - _map_list.add_item(" MapDownloader not loaded") - _status_label.text = "MapDownloader singleton not found" - -func _populate_online(filter_text: String) -> void: - if _registry_maps.is_empty(): - _map_list.add_item(" Fetching map list... (press Refresh)") - _status_label.text = "No maps from registry yet" - return - - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - var count := 0 - - for m in _registry_maps: - if not (m is Dictionary): - continue - - var name: String = m.get("name", "") - if name.is_empty(): - continue - - if not filter_text.is_empty() and not name.to_lower().contains(filter_text): - continue - - var size_bytes = m.get("size", 0) - var description = m.get("description", "") - var reg_version = m.get("version", 1) - - var is_cached = md.is_map_cached(name) - var cached_version = md.get_cached_version(name) if is_cached else 0 - var needs_update = is_cached and reg_version > cached_version - - var status: String - var icon: String - if _downloading.has(name): - status = "Downloading..." - icon = "⏳" - elif needs_update: - status = "Update available" - icon = "↑" - elif is_cached: - status = "Installed" - icon = "✓" - else: - status = description if not description.is_empty() else "Not installed" - icon = "+" - - var size_str = _format_size(size_bytes) - var label = "%s %s v%d %s %s" % [icon, name, reg_version, size_str, status] - _map_list.add_item(label) - count += 1 - - _status_label.text = "%d map(s) on registry" % count - else: - _status_label.text = "MapDownloader not available" - -# --------------------------------------------------------------------------- -# UI callbacks -# --------------------------------------------------------------------------- - -func _on_tab_changed(tab: String) -> void: - _current_tab = tab - - # Update toggle states - _tab_installed.button_pressed = (tab == "installed") - _tab_online.button_pressed = (tab == "online") - - if tab == "installed": - _refresh_installed() - elif tab == "online": - _refresh_online() - - _populate_list() - -func _on_filter_changed(_new_text: String) -> void: - _populate_list() - -func _on_map_selected(index: int) -> void: - if index < 0: - _clear_selection() - return - - var label: String = _map_list.get_item_text(index) - if label.begins_with(" "): - _clear_selection() - return - - # Parse the map name from the label (skipping icon prefix) - var map_name = _extract_map_name(label) - if map_name.is_empty(): - _clear_selection() - return - - match _current_tab: - "installed": - _action_button.disabled = false - _action_button.text = "► Play" - "online": - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - if md.is_map_cached(map_name): - _action_button.disabled = false - _action_button.text = "► Play" - else: - _action_button.disabled = false - _action_button.text = "↓ Download" - else: - _action_button.disabled = true - _action_button.text = "—" - -func _clear_selection() -> void: - _action_button.disabled = true - _action_button.text = "—" - -func _on_action_pressed() -> void: - var selected = _map_list.get_selected_items() - if selected.is_empty(): - return - - var index = selected[0] - var label = _map_list.get_item_text(index) - var map_name = _extract_map_name(label) - if map_name.is_empty(): - return - - var action = _action_button.text - - if action.contains("Play"): - map_selected.emit(map_name) - elif action.contains("Download"): - _start_download(map_name) - -func _on_refresh_pressed() -> void: - match _current_tab: - "installed": - _refresh_installed() - "online": - _refresh_online() - _populate_list() - _status_label.text = "Refreshed" - -func _on_close_pressed() -> void: - queue_free() - -# --------------------------------------------------------------------------- -# Download handling -# --------------------------------------------------------------------------- - -func _start_download(map_name: String) -> void: - _downloading[map_name] = 0.0 - - if Engine.has_singleton("MapDownloader"): - var md = Engine.get_singleton("MapDownloader") - md.download_map(map_name) - - _status_label.text = "Downloading %s..." % map_name - _populate_list() - -func _on_map_list_loaded(maps: Array) -> void: - _registry_maps = maps - if _current_tab == "online": - _populate_list() - -func _on_download_complete(map_name: String, success: bool) -> void: - _downloading.erase(map_name) - - if success: - _status_label.text = "%s downloaded and loaded" % map_name - _refresh_installed() - else: - _status_label.text = "Download failed: %s" % map_name - - if _current_tab == "online": - _populate_list() - -func _on_map_loaded(map_name: String) -> void: - print("[MapWorkshop] Map loaded: %s" % map_name) - # The caller can now load res://scenes/maps/.tscn - -# --------------------------------------------------------------------------- -# Helpers -# --------------------------------------------------------------------------- - -## Extract the map name from a formatted list item label. -## Labels are formatted: "✓ map_name v1 12.3 MB Ready" -func _extract_map_name(label: String) -> String: - # Skip the first character (icon) and space - if label.length() < 3: - return "" - var rest = label.substr(2).strip_edges() - # The map name runs until we hit two consecutive spaces or " v" - var v_idx = rest.find(" v") - if v_idx < 0: - v_idx = rest.find(" v") - if v_idx < 0: - v_idx = rest.find(" v") - if v_idx > 0: - return rest.substr(0, v_idx).strip_edges() - return rest.strip_edges() - -## Format bytes to human-readable size. -static func _format_size(bytes: int) -> String: - if bytes <= 0: - return "0 B" - - var unit_idx := 0 - var size := float(bytes) - while size >= 1024.0 and unit_idx < SIZE_SUFFIXES.size() - 1: - size /= 1024.0 - unit_idx += 1 - - if unit_idx == 0: - return "%d %s" % [bytes, SIZE_SUFFIXES[unit_idx]] - return "%.1f %s" % [size, SIZE_SUFFIXES[unit_idx]] diff --git a/client/scripts/map_workshop.gd.uid b/client/scripts/map_workshop.gd.uid deleted file mode 100644 index f6c1bbc..0000000 --- a/client/scripts/map_workshop.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cokemo2x02v8k diff --git a/client/scripts/profiling/profile_scene.gd b/client/scripts/profiling/profile_scene.gd deleted file mode 100644 index 7e95a9a..0000000 --- a/client/scripts/profiling/profile_scene.gd +++ /dev/null @@ -1,170 +0,0 @@ -extends SceneTree - -# Profile scene runner — manually drives the frame loop. -# In --script --headless mode the automatic main loop doesn't -# iterate, so we drive it ourselves via a manual loop. - -const DEFAULT_SCENE := "res://assets/scenes/modular/kit_demo.tscn" -const DEFAULT_CAPTURE_FRAMES := 600 -const WARMUP_FRAMES := 60 - -var capture_frames := DEFAULT_CAPTURE_FRAMES -var scene_path := "" -var frame_count := 0 -var recording: Array[Dictionary] = [] -var profiling_complete := false - -func _init(): - # Parse CLI args - var args = OS.get_cmdline_args() - for i in range(args.size()): - if args[i] == "--scene" and i + 1 < args.size(): - scene_path = args[i + 1] - if args[i] == "--capture-frames" and i + 1 < args.size(): - capture_frames = args[i + 1].to_int() - - if scene_path.is_empty(): - scene_path = DEFAULT_SCENE - - print("=== Profile Scene Tool ===") - print("Engine: ", Engine.get_version_info().string) - print("Scene: ", scene_path) - print("Capture frames: ", capture_frames) - print("Warmup frames: ", WARMUP_FRAMES) - print("") - print("Frame,Delta(ms),GPU(ms),Physics(ms),DrawCalls,Tris,Vertices,VRAM(MB),RAM(MB),Objects") - - # Load target scene - var scene = ResourceLoader.load(scene_path) - if not scene: - printerr("ERROR: Failed to load scene: ", scene_path) - quit(1) - return - - var instance = scene.instantiate() - root.add_child(instance) - - # Manual frame loop: Godot doesn't auto-iterate the main loop - # in --script --headless mode. We iterate it ourselves. - profiling_complete = false - _manual_loop() - -func _manual_loop() -> void: - var start_time := Time.get_ticks_usec() - var frame_delta := 0.016 # Target 60fps step - - while not profiling_complete: - var frame_start := Time.get_ticks_usec() - - # Call idle (process) on the scene tree — this triggers - # _process() on all nodes including the instanced scene - #idle(frame_delta) - - # Manually iterate — this processes input, idle, and physics - iteration(frame_delta) - - _on_frame(frame_delta) - - # Cap frame rate to avoid 100% CPU in headless mode - var elapsed := (Time.get_ticks_usec() - frame_start) / 1000.0 - var target_ms := 16.0 # ~60fps - if elapsed < target_ms: - OS.delay_msec(int(target_ms - elapsed)) - - # Use elapsed wall time as delta for next frame - frame_delta = (Time.get_ticks_usec() - start_time) / 1000000.0 - start_time = Time.get_ticks_usec() - - _finish_report() - -func _on_frame(delta: float) -> void: - frame_count += 1 - - # Skip warmup frames - if frame_count <= WARMUP_FRAMES: - return - - if frame_count > WARMUP_FRAMES + capture_frames: - profiling_complete = true - return - - var p := Performance - - var frame_delta := delta * 1000.0 - var gpu_time := float(RenderingServer.get_frame_setup_time_cpu()) * 1000.0 - var physics_time := p.get_monitor(p.TIME_PHYSICS_PROCESS) * 1000.0 - var draw_calls := int(p.get_monitor(p.RENDER_TOTAL_DRAW_CALLS_IN_FRAME)) - var tris := int(p.get_monitor(p.RENDER_TOTAL_PRIMITIVES_IN_FRAME)) - var verts := int(p.get_monitor(p.RENDER_TOTAL_VERTICES_IN_FRAME)) - var vram_mb := int(p.get_monitor(p.RENDER_VIDEO_MEM_USED)) / (1024 * 1024) - var ram_mb := int(OS.get_static_memory_usage()) / (1024 * 1024) - var objects := int(p.get_monitor(p.OBJECT_NODE_COUNT)) - - recording.append({ - frame = frame_count - WARMUP_FRAMES, - delta_ms = snapped(frame_delta, 0.01), - gpu_ms = snapped(gpu_time, 0.01), - physics_ms = snapped(physics_time, 0.01), - draw_calls = draw_calls, - tris = tris, - verts = verts, - vram_mb = vram_mb, - ram_mb = ram_mb, - objects = objects - }) - - print("%d,%.2f,%.2f,%.2f,%d,%d,%d,%d,%d,%d" % [ - frame_count - WARMUP_FRAMES, - frame_delta, gpu_time, physics_time, - draw_calls, tris, verts, vram_mb, ram_mb, objects - ]) - -func _finish_report() -> void: - print("") - print("=== Profile Summary ===") - if recording.is_empty(): - print("No frames recorded!") - quit(1) - return - - var deltas: Array[float] = [] - for r in recording: - deltas.append(r.delta_ms) - deltas.sort() - - var total := float(recording.size()) - var n := deltas.size() - var p50: float = deltas[n * 50 / 100] - var p95: float = deltas[n * 95 / 100] - var p99: float = deltas[n * 99 / 100] - var sum: float = 0.0 - for d in deltas: - sum += d - var avg: float = sum / total - - var max_dc := 0 - var max_tris := 0 - var max_vram := 0 - for r in recording: - if r.draw_calls > max_dc: max_dc = r.draw_calls - if r.tris > max_tris: max_tris = r.tris - if r.vram_mb > max_vram: max_vram = r.vram_mb - - print("Frames captured: ", recording.size()) - print("Avg frame time: %.2f ms" % avg) - print("P50 frame time: %.2f ms" % p50) - print("P95 frame time: %.2f ms" % p95) - print("P99 frame time: %.2f ms" % p99) - print("Max draw calls: %d" % max_dc) - print("Max triangles: %d" % max_tris) - print("Peak VRAM: %d MB" % max_vram) - - var pass_fail := "PASS" - if p95 > 16.6: - pass_fail = "FAIL (P95 > 16.6 ms)" - elif p99 > 50.0: - pass_fail = "FAIL (P99 spike > 50 ms)" - print("Result: ", pass_fail) - print("") - print("=== Profile complete ===") - quit(0 if pass_fail == "PASS" else 1) diff --git a/client/scripts/profiling/profile_scene.gd.uid b/client/scripts/profiling/profile_scene.gd.uid deleted file mode 100644 index f4da54e..0000000 --- a/client/scripts/profiling/profile_scene.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://byjqslju7qnt6 diff --git a/client/scripts/profiling/profiler_node.gd b/client/scripts/profiling/profiler_node.gd deleted file mode 100644 index b6d5612..0000000 --- a/client/scripts/profiling/profiler_node.gd +++ /dev/null @@ -1,147 +0,0 @@ -extends Node - -# Per-frame profiling node for tactical-shooter. - -const WARMUP_FRAMES := 60 -const DEFAULT_CAPTURE_FRAMES := 600 - -var capture_frames := DEFAULT_CAPTURE_FRAMES -var frame_count := 0 -var recording: Array[Dictionary] = [] -var profiling_complete := false -var last_tick := 0 - -func _ready(): - # Try to read capture_frames from environment or metadata - if OS.has_environment("PROFILE_FRAMES"): - capture_frames = OS.get_environment("PROFILE_FRAMES").to_int() - - capture_frames = get_meta("capture_frames", capture_frames) - - print("=== Profiler Node ===") - print("Capture frames: ", capture_frames) - print("Warmup frames: ", WARMUP_FRAMES) - print("") - print("Frame,Delta(ms),GPU(ms),Physics(ms),DrawCalls,Tris,Vertices,VRAM(MB),RAM(MB),Objects") - - # Load the target scene from metadata or environment - var target_scene = get_meta("target_scene", "") - if target_scene.is_empty() and OS.has_environment("PROFILE_SCENE"): - target_scene = OS.get_environment("PROFILE_SCENE") - - if not target_scene.is_empty(): - var packed = ResourceLoader.load(target_scene) - if packed: - var instance = packed.instantiate() - add_child(instance) - print("Loaded target scene: ", target_scene) - else: - printerr("Failed to load target scene: ", target_scene) - - last_tick = Time.get_ticks_usec() - - print("Ready complete, process() should fire now") - set_process(true) - -func _process(delta: float) -> void: - print("_process called, frame=", frame_count) - if profiling_complete: - return - - frame_count += 1 - - # Calculate real delta - var now := Time.get_ticks_usec() - var real_delta := (now - last_tick) / 1000000.0 - last_tick = now - - # Skip warmup frames - if frame_count <= WARMUP_FRAMES: - return - - # Check if done - if frame_count > WARMUP_FRAMES + capture_frames: - profiling_complete = true - _finish() - return - - var p := Performance - - var frame_delta := real_delta * 1000.0 - var gpu_time := float(RenderingServer.get_frame_setup_time_cpu()) * 1000.0 - var physics_time := p.get_monitor(p.TIME_PHYSICS_PROCESS) * 1000.0 - var draw_calls := int(p.get_monitor(p.RENDER_TOTAL_DRAW_CALLS_IN_FRAME)) - var tris := int(p.get_monitor(p.RENDER_TOTAL_PRIMITIVES_IN_FRAME)) - var verts := int(p.get_monitor(p.RENDER_TOTAL_VERTICES_IN_FRAME)) - var vram_mb := int(p.get_monitor(p.RENDER_VIDEO_MEM_USED)) / (1024 * 1024) - var ram_mb := int(OS.get_static_memory_usage()) / (1024 * 1024) - var objects := int(p.get_monitor(p.OBJECT_NODE_COUNT)) - - recording.append({ - frame = frame_count - WARMUP_FRAMES, - delta_ms = snapped(frame_delta, 0.01), - gpu_ms = snapped(gpu_time, 0.01), - physics_ms = snapped(physics_time, 0.01), - draw_calls = draw_calls, - tris = tris, - verts = verts, - vram_mb = vram_mb, - ram_mb = ram_mb, - objects = objects - }) - - print("%d,%.2f,%.2f,%.2f,%d,%d,%d,%d,%d,%d" % [ - frame_count - WARMUP_FRAMES, - frame_delta, gpu_time, physics_time, - draw_calls, tris, verts, vram_mb, ram_mb, objects - ]) - -func _finish() -> void: - print("") - print("=== Profile Summary ===") - if recording.is_empty(): - print("No frames recorded!") - get_tree().quit(1) - return - - var deltas: Array[float] = [] - for r in recording: - deltas.append(r.delta_ms) - deltas.sort() - - var total := float(recording.size()) - var n := deltas.size() - var p50: float = deltas[n * 50 / 100] - var p95: float = deltas[n * 95 / 100] - var p99: float = deltas[n * 99 / 100] - var sum: float = 0.0 - for d in deltas: - sum += d - var avg: float = sum / total - - var max_dc := 0 - var max_tris := 0 - var max_vram := 0 - for r in recording: - if r.draw_calls > max_dc: max_dc = r.draw_calls - if r.tris > max_tris: max_tris = r.tris - if r.vram_mb > max_vram: max_vram = r.vram_mb - - print("Frames captured: ", recording.size()) - print("Avg frame time: %.2f ms" % avg) - print("P50 frame time: %.2f ms" % p50) - print("P95 frame time: %.2f ms" % p95) - print("P99 frame time: %.2f ms" % p99) - print("Max draw calls: %d" % max_dc) - print("Max triangles: %d" % max_tris) - print("Peak VRAM: %d MB" % max_vram) - - var pass_fail := "PASS" - if p95 > 16.6: - pass_fail = "FAIL (P95 > 16.6 ms)" - elif p99 > 50.0: - pass_fail = "FAIL (P99 spike > 50 ms)" - print("Result: ", pass_fail) - print("") - print("=== Profile complete ===") - get_tree().quit(0 if pass_fail == "PASS" else 1) diff --git a/client/scripts/profiling/profiler_node.gd.uid b/client/scripts/profiling/profiler_node.gd.uid deleted file mode 100644 index 693a5f2..0000000 --- a/client/scripts/profiling/profiler_node.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://jih7knhnl55a diff --git a/client/scripts/profiling/profiler_scene.tscn b/client/scripts/profiling/profiler_scene.tscn deleted file mode 100644 index e556553..0000000 --- a/client/scripts/profiling/profiler_scene.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene format=3] - -[ext_resource type="Script" path="res://scripts/profiling/profiler_node.gd" id="1"] - -[node name="Profiler" type="Node"] -script = ExtResource("1") diff --git a/client/scripts/profiling/test_process.gd b/client/scripts/profiling/test_process.gd deleted file mode 100644 index d4b422a..0000000 --- a/client/scripts/profiling/test_process.gd +++ /dev/null @@ -1,21 +0,0 @@ -extends SceneTree - -func _init(): - print("_init called") - # Add a simple node to trigger processing - var n = Node.new() - n.name = "test" - n.set_process(true) - root.add_child(n) - print("Node added") - -func _process(delta: float) -> bool: - print("_process called: delta=", delta) - if frame_count > 5: - print("Quitting after 5 frames") - quit(0) - return true - frame_count += 1 - return true - -var frame_count := 0 diff --git a/client/scripts/profiling/test_process.gd.uid b/client/scripts/profiling/test_process.gd.uid deleted file mode 100644 index f2abb35..0000000 --- a/client/scripts/profiling/test_process.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dc8x14rs2jyu8 diff --git a/client/scripts/profiling/test_simple.gd b/client/scripts/profiling/test_simple.gd deleted file mode 100644 index c80ed50..0000000 --- a/client/scripts/profiling/test_simple.gd +++ /dev/null @@ -1,14 +0,0 @@ -extends Node - -var count := 0 - -func _ready(): - print("_ready called") - set_process(true) - -func _process(delta): - count += 1 - print("_process #", count, " delta=", delta) - if count >= 5: - print("Quitting") - get_tree().quit() diff --git a/client/scripts/profiling/test_simple.gd.uid b/client/scripts/profiling/test_simple.gd.uid deleted file mode 100644 index a934569..0000000 --- a/client/scripts/profiling/test_simple.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b8jj7n3bi6ljh diff --git a/client/scripts/profiling/test_simple.tscn b/client/scripts/profiling/test_simple.tscn deleted file mode 100644 index 05ed3fb..0000000 --- a/client/scripts/profiling/test_simple.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene format=3] - -[ext_resource type="Script" path="res://scripts/profiling/test_simple.gd" id="1"] - -[node name="Root" type="Node"] -script = ExtResource("1") diff --git a/client/scripts/round_replicator.gd b/client/scripts/round_replicator.gd deleted file mode 100644 index a49a2e7..0000000 --- a/client/scripts/round_replicator.gd +++ /dev/null @@ -1,155 +0,0 @@ -## RoundReplicator — Client-side round state synced from RoundManager Self-RPCs. -## -## The server's round_manager signals arrive on clients via netfox Self-RPC -## (@rpc with call_local). This replicator listens to those signals and -## maintains a local round state snapshot for rollback-accessible use. -## -## This script is ONLY loaded from client scenes. - -extends Node - -# --------------------------------------------------------------------------- -# Signals (mirrors server RoundManager for client-side consumers) -# --------------------------------------------------------------------------- - -# --------------------------------------------------------------------------- -# Round state (mirrors server RoundManager) -# --------------------------------------------------------------------------- -enum RoundState { - INACTIVE = 0, - WAITING_FOR_PLAYERS = 1, - WARMUP = 2, - LIVE = 3, - POST_ROUND = 4, - MATCH_END = 5, -} - -# Current round state (populated from server broadcasts) -var round_state: int = RoundState.INACTIVE -var round_number: int = 0 -var team_a_score: int = 0 -var team_b_score: int = 0 -var time_remaining: float = 0.0 -var round_time_seconds: float = 600.0 -var win_limit: int = 3 - -# --------------------------------------------------------------------------- -# Rollback-friendly state (used by rollback_tick in player scripts) -# --------------------------------------------------------------------------- -## Whether the round is in freeze time (before round start). -var is_frozen: bool = false -## The network tick when freeze ends (for rollback checks). -var freeze_end_tick: int = -1 - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Connect to RoundManager signals (which now arrive via Self-RPC) - if Engine.has_singleton(&"RoundManager"): - var rm = Engine.get_singleton(&"RoundManager") - if rm.round_started.is_connected(_on_round_start): - return # Already connected - rm.round_started.connect(_on_round_start) - rm.round_ended.connect(_on_round_end) - rm.match_ended.connect(_on_match_end) - rm.score_changed.connect(_on_score_change) - else: - push_warning("[RoundReplicator] RoundManager not available") - -func _on_connected() -> void: - print("[RoundReplicator] Connected to server — awaiting round state") - -# --------------------------------------------------------------------------- -# Signal handlers -# --------------------------------------------------------------------------- - -func _on_round_start(round_num: int) -> void: - round_number = round_num - # Read round_time_seconds from RoundManager (replicated via _rpc_round_started) - if Engine.has_singleton(&"RoundManager"): - var rm = Engine.get_singleton(&"RoundManager") - round_time_seconds = rm.round_time_seconds if rm.round_time_seconds > 0 else 600 - time_remaining = round_time_seconds - round_state = RoundState.LIVE - - # Freeze time handling (10 seconds for first round, 5 for subsequent) - var freeze_time: float = 10.0 if round_num <= 1 else 5.0 - is_frozen = true - var nt = Engine.get_singleton(&"NetworkTime") - if nt: - freeze_end_tick = nt.tick + int(freeze_time * 64.0) # 64 tick-rate assumption - else: - freeze_end_tick = -1 - - print("[RoundReplicator] Round %d started (%.0fs, frozen for %.0fs)" % [round_num, round_time_seconds, freeze_time]) - -func _on_round_end(winner_team: int, reason: String) -> void: - # Read scores from RoundManager (replicated by Self-RPC) - if Engine.has_singleton(&"RoundManager"): - var rm = Engine.get_singleton(&"RoundManager") - team_a_score = rm.team_a_score - team_b_score = rm.team_b_score - is_frozen = false - round_state = RoundState.POST_ROUND - print("[RoundReplicator] Round ended: %s wins (%s). Score: %d-%d" % [_team_name(winner_team), reason, team_a_score, team_b_score]) - -func _on_match_end(winner_team: int) -> void: - # Read scores from RoundManager - if Engine.has_singleton(&"RoundManager"): - var rm = Engine.get_singleton(&"RoundManager") - team_a_score = rm.team_a_score - team_b_score = rm.team_b_score - round_state = RoundState.MATCH_END - print("[RoundReplicator] MATCH OVER: %s wins %d-%d" % [_team_name(winner_team), team_a_score, team_b_score]) - -func _on_score_change(a_score: int, b_score: int) -> void: - team_a_score = a_score - team_b_score = b_score - print("[RoundReplicator] Score updated: %d-%d" % [a_score, b_score]) - -func _process(delta: float) -> void: - # Update time remaining (for HUD display) - if round_state == RoundState.LIVE: - time_remaining -= delta - if time_remaining < 0.0: - time_remaining = 0.0 - - # Update freeze state - if is_frozen and freeze_end_tick >= 0: - var nt = Engine.get_singleton(&"NetworkTime") - if nt: - if nt.tick >= freeze_end_tick: - is_frozen = false - -# --------------------------------------------------------------------------- -# Helpers -# --------------------------------------------------------------------------- - -## Get a snapshot of the current round state (for HUD/UI). -func get_snapshot() -> Dictionary: - return { - "state": round_state, - "round_number": round_number, - "team_a_score": team_a_score, - "team_b_score": team_b_score, - "time_remaining": time_remaining, - "is_frozen": is_frozen, - } - -## Check if the player can move (not frozen, not dead, round is LIVE). -func can_player_move(player_is_alive: bool) -> bool: - return player_is_alive and round_state == RoundState.LIVE and not is_frozen - -## Check if the round is currently active (LIVE or WARMUP). -func is_round_active() -> bool: - return round_state == RoundState.LIVE or round_state == RoundState.WARMUP - -## Get the human-readable team name. -static func _team_name(team: int) -> String: - match team: - 0: return "Draw" - 1: return "Team A" - 2: return "Team B" - _: return "Unknown" diff --git a/client/scripts/server_browser_ui.gd b/client/scripts/server_browser_ui.gd deleted file mode 100644 index 120586b..0000000 --- a/client/scripts/server_browser_ui.gd +++ /dev/null @@ -1,411 +0,0 @@ -extends Control - -# ============================================================================= -# Server Browser UI -# ============================================================================= -# In-game server list that fetches from the master server API and lets the -# player pick a server to connect to. -# -# Usage: -# var browser = preload("res://client/scripts/server_browser_ui.gd").new() -# add_child(browser) -# browser.master_url = "http://master.example.com:28961" -# browser.refresh() -# -# Signals: -# server_selected(server_info: Dictionary) -# Emitted when the player clicks "Connect" on a server. -# The server_info dict has ip, port, name, password, etc. -# ============================================================================= - -signal server_selected(server_info: Dictionary) - -const DEFAULT_COLUMN_WIDTHS := { - "name": 0.30, - "map": 0.15, - "players": 0.10, - "game_mode": 0.12, - "ping": 0.08, - "version": 0.10, - "tags": 0.15, -} - -# Configuration — set these before calling refresh() -var master_url: String = "http://127.0.0.1:28961" -var refresh_interval: float = 30.0 -var auto_refresh: bool = false - -# Internal state -var _http: HTTPRequest -var _refresh_timer: Timer -var _servers: Array = [] -var _selected_index: int = -1 -var _loading: bool = false - -# UI nodes (assigned in _ready or injected) -var _panel: Panel -var _title_label: Label -var _server_list: ItemList -var _refresh_button: Button -var _connect_button: Button -var _status_label: Label -var _auto_refresh_check: CheckBox -var _filter_edit: LineEdit - - -func _ready() -> void: - _build_ui() - - # HTTP request node - _http = HTTPRequest.new() - _http.name = "BrowserHTTP" - _http.timeout = 10 - _http.use_threads = true - add_child(_http) - _http.request_completed.connect(_on_servers_received) - - # Auto-refresh timer - _refresh_timer = Timer.new() - _refresh_timer.name = "RefreshTimer" - _refresh_timer.one_shot = false - _refresh_timer.wait_time = refresh_interval - add_child(_refresh_timer) - _refresh_timer.timeout.connect(_do_refresh) - - -func _build_ui() -> void: - # Main panel - _panel = Panel.new() - _panel.name = "BrowserPanel" - _panel.anchor_right = 1.0 - _panel.anchor_bottom = 1.0 - add_child(_panel) - - var margin := 8 - var style = StyleBoxFlat.new() - style.bg_color = Color(0.12, 0.12, 0.14, 0.95) - style.corner_radius_top_left = 4 - style.corner_radius_top_right = 4 - style.corner_radius_bottom_left = 4 - style.corner_radius_bottom_right = 4 - style.content_margin_left = margin - style.content_margin_top = margin - style.content_margin_right = margin - style.content_margin_bottom = margin - _panel.add_theme_stylebox_override("panel", style) - - # Title - _title_label = Label.new() - _title_label.name = "TitleLabel" - _title_label.text = "SERVER BROWSER" - _title_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _title_label.add_theme_font_size_override("font_size", 18) - _title_label.add_theme_color_override("font_color", Color(1.0, 0.84, 0.0)) # gold - _title_label.position = Vector2(margin, margin) - _panel.add_child(_title_label) - - # Filter - _filter_edit = LineEdit.new() - _filter_edit.name = "FilterEdit" - _filter_edit.placeholder_text = "Filter by name, map, or tag..." - _filter_edit.text_changed.connect(_on_filter_changed) - _panel.add_child(_filter_edit) - - # Server list - _server_list = ItemList.new() - _server_list.name = "ServerList" - _server_list.allow_reselect = false - _server_list.select_mode = ItemList.SELECT_SINGLE - _server_list.item_selected.connect(_on_server_selected) - _server_list.nothing_selected.connect(_clear_selection) - _panel.add_child(_server_list) - - # Buttons row - _refresh_button = Button.new() - _refresh_button.name = "RefreshButton" - _refresh_button.text = "↻ Refresh" - _refresh_button.pressed.connect(_do_refresh) - _panel.add_child(_refresh_button) - - _connect_button = Button.new() - _connect_button.name = "ConnectButton" - _connect_button.text = "Connect" - _connect_button.disabled = true - _connect_button.pressed.connect(_on_connect_pressed) - _panel.add_child(_connect_button) - - _auto_refresh_check = CheckBox.new() - _auto_refresh_check.name = "AutoRefreshCheck" - _auto_refresh_check.text = "Auto-refresh" - _auto_refresh_check.button_pressed = auto_refresh - _auto_refresh_check.toggled.connect(_on_auto_refresh_toggled) - _panel.add_child(_auto_refresh_check) - - # Status bar - _status_label = Label.new() - _status_label.name = "StatusLabel" - _status_label.text = "Ready" - _status_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER - _status_label.add_theme_color_override("font_color", Color(0.6, 0.6, 0.6)) - _panel.add_child(_status_label) - - # Close/resize buttons - var close_btn = Button.new() - close_btn.name = "CloseButton" - close_btn.text = "✕" - close_btn.pressed.connect(_on_close_pressed) - _panel.add_child(close_btn) - - -func _notification(what: int) -> void: - if what == NOTIFICATION_RESIZED or what == NOTIFICATION_SORT_CHILDREN: - _resize_ui() - - -func _resize_ui() -> void: - var w = _panel.size.x - var h = _panel.size.y - var m := 8 - var y := m - - # Title - _title_label.position = Vector2(m, y) - _title_label.size = Vector2(w - m * 2, 24) - y += 30 - - # Filter - _filter_edit.position = Vector2(m, y) - _filter_edit.size = Vector2(w - m * 2, 24) - y += 32 - - # Server list - var list_height = h - y - 80 - _server_list.position = Vector2(m, y) - _server_list.size = Vector2(w - m * 2, max(list_height, 60)) - y += _server_list.size.y + 8 - - # Buttons row - var btn_y = y - var btn_w = (w - m * 3) / 3 - - _refresh_button.position = Vector2(m, btn_y) - _refresh_button.size = Vector2(btn_w, 28) - - _connect_button.position = Vector2(m + btn_w + m / 2, btn_y) - _connect_button.size = Vector2(btn_w, 28) - - _auto_refresh_check.position = Vector2(m + btn_w * 2 + m, btn_y) - _auto_refresh_check.size = Vector2(btn_w, 28) - - y += 36 - - # Status - _status_label.position = Vector2(m, y) - _status_label.size = Vector2(w - m * 2, 20) - - # Close button - close_btn = _panel.get_node("CloseButton") - close_btn.position = Vector2(w - 28, 4) - close_btn.size = Vector2(24, 24) - - -func _get_close_button() -> Button: - var node = _panel.get_node("CloseButton") - return node as Button - - -# ------------------------------------------------------------------------- -# Public API -# ------------------------------------------------------------------------- - - -func refresh() -> void: - """Manually trigger a server list refresh.""" - _do_refresh() - - -func set_master_url(url: String) -> void: - master_url = url.trim_suffix("/") - if not master_url.begins_with("http"): - master_url = "http://" + master_url - - -# ------------------------------------------------------------------------- -# Internal -# ------------------------------------------------------------------------- - - -func _do_refresh() -> void: - if _loading: - return - _loading = true - _status_label.text = "Fetching servers..." - _refresh_button.disabled = true - - var endpoint = master_url + "/api/v1/servers" - var err = _http.request(endpoint, [], HTTPClient.METHOD_GET) - if err != OK: - _status_label.text = "Failed to send request (error " + str(err) + ")" - _loading = false - _refresh_button.disabled = false - - -func _on_servers_received(result: int, response_code: int, _headers: PackedStringArray, body: PackedByteArray) -> void: - _loading = false - _refresh_button.disabled = false - - if result != HTTPRequest.RESULT_SUCCESS: - _status_label.text = "Network error " + str(result) - return - - if response_code != 200: - _status_label.text = "Server error (HTTP " + str(response_code) + ")" - return - - var body_text = body.get_string_from_utf8() - var json = JSON.new() - var parse_err = json.parse(body_text) - if parse_err != OK or not (json.data is Dictionary): - _status_label.text = "Invalid response from master server" - return - - var data = json.data as Dictionary - _servers = data.get("servers", []) as Array - _populate_list() - _status_label.text = str(_servers.size()) + " server(s) found" - - # Start auto-refresh timer if supposed to - if auto_refresh and not _refresh_timer.is_stopped(): - _refresh_timer.start() - - -func _populate_list() -> void: - _server_list.clear() - - var filter_text = _filter_edit.text.strip_edges().to_lower() - - for srv in _servers: - if not (srv is Dictionary): - continue - - # Apply filter - if not filter_text.is_empty(): - var match_found = false - for field in ["name", "map", "tags", "game_mode"]: - var val = _get_str(srv, field, "") - if val.to_lower().contains(filter_text): - match_found = true - break - if not match_found: - continue - - var name = _get_str(srv, "name", "Unnamed") - var map_name = _get_str(srv, "map", "?") - var players = _get_int(srv, "players", 0) - var max_players = _get_int(srv, "max_players", 16) - var mode = _get_str(srv, "game_mode", "?") - var version = _get_str(srv, "version", "?") - var tags = _get_str(srv, "tags", "") - var has_pass = _get_bool(srv, "password", false) - - # Format: "Server Name dust2 8/16 DM v1.0 eu,ranked" - var pass_mark = "🔒" if has_pass else " " - var tag_str = "" - if tags is Array: - tag_str = ",".join(tags) - elif tags is String: - tag_str = tags - - var label = pass_mark + " " + name - # Pad fields with spaces - label += " " + _pad_right(map_name, 14) - label += str(players) + "/" + str(max_players) + " " - label += _pad_right(mode, 10) - label += version + " " - label += tag_str - - _server_list.add_item(label) - - _connect_button.disabled = true - _selected_index = -1 - - -func _on_server_selected(index: int) -> void: - _selected_index = index - _connect_button.disabled = index < 0 - - -func _clear_selection() -> void: - _selected_index = -1 - _connect_button.disabled = true - - -func _on_connect_pressed() -> void: - if _selected_index < 0 or _selected_index >= _servers.size(): - return - - var srv = _servers[_selected_index] as Dictionary - var host = _get_str(srv, "host", "") - var port = _get_int(srv, "port", 0) - - if host.is_empty() or port == 0: - _status_label.text = "ERROR: Server has no address info" - return - - emit_signal("server_selected", srv) - - -func _on_filter_changed(_new_text: String) -> void: - _populate_list() - - -func _on_auto_refresh_toggled(enabled: bool) -> void: - auto_refresh = enabled - if enabled: - _refresh_timer.wait_time = refresh_interval - _refresh_timer.start() - else: - _refresh_timer.stop() - - -func _on_close_pressed() -> void: - _refresh_timer.stop() - queue_free() - - -# ------------------------------------------------------------------------- -# Helpers -# ------------------------------------------------------------------------- - -static func _get_str(d: Dictionary, key: String, fallback: String) -> String: - var val = d.get(key, fallback) - if val is String: - return val - return str(val) - - -static func _get_int(d: Dictionary, key: String, fallback: int) -> int: - var val = d.get(key, fallback) - if val is int: - return val - if val is float: - return int(val) - if val is String: - return val.to_int() - return fallback - - -static func _get_bool(d: Dictionary, key: String, fallback: bool) -> bool: - var val = d.get(key, fallback) - if val is bool: - return val - if val is int: - return val != 0 - return fallback - - -static func _pad_right(text: String, min_width: int) -> String: - var result = text - while result.length() < min_width: - result += " " - return result diff --git a/client/scripts/server_browser_ui.gd.uid b/client/scripts/server_browser_ui.gd.uid deleted file mode 100644 index f332fa0..0000000 --- a/client/scripts/server_browser_ui.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://piem67enrl6r diff --git a/client/scripts/test_headless.gd.uid b/client/scripts/test_headless.gd.uid deleted file mode 100644 index 7daf093..0000000 --- a/client/scripts/test_headless.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dbtpbhja3nk60 diff --git a/client/scripts/test_paths.gd b/client/scripts/test_paths.gd deleted file mode 100644 index 76aaa19..0000000 --- a/client/scripts/test_paths.gd +++ /dev/null @@ -1,42 +0,0 @@ -extends SceneTree - -func _init(): - print("Current working dir: ", OS.get_executable_path()) - - # List resources in assets/scenes/modular/ - var dir = DirAccess.open("res://assets/scenes/modular/") - if dir: - print("Files in res://assets/scenes/modular/:") - dir.list_dir_begin() - var f = dir.get_next() - while f != "": - print(" ", f) - f = dir.get_next() - else: - print("Cannot open res://assets/scenes/modular/") - print("Error code: ", DirAccess.get_open_error()) - - # Try loading kit_demo - var path = "res://assets/scenes/modular/kit_demo.tscn" - print("Loading: ", path) - var scene = ResourceLoader.load(path) - if scene: - print("Loaded! Class: ", scene.get_class()) - var instance = scene.instantiate() - print("Instantiate result: ", instance != null) - if instance: - print("Instance type: ", instance.get_class()) - print("Instance name: ", instance.name) - else: - print("Failed to load: ", path) - - # Try wall_straight_01 - path = "res://assets/scenes/modular/wall_straight_01.tscn" - print("Loading: ", path) - scene = ResourceLoader.load(path) - if scene: - print("Loaded! Class: ", scene.get_class()) - else: - print("Failed to load: ", path) - - quit(0) diff --git a/client/scripts/validate_lights.gd b/client/scripts/validate_lights.gd deleted file mode 100644 index 3e89cd7..0000000 --- a/client/scripts/validate_lights.gd +++ /dev/null @@ -1,443 +0,0 @@ -@tool -extends SceneTree - -# ============================================================================= -# validate_lights.gd — Dynamic Light Count / Bake Mode Validator -# ============================================================================= -# Audits all light nodes in a Godot 4 scene for: -# - Dynamic light count ≤ 4 (budget for mobile/competitive FPS) -# - Each light's bake mode is set correctly (BakeMode = STATIC or DYNAMIC) -# - Light energy / range / attenuation are within reasonable bounds -# - Shadow configuration is appropriate -# -# Usage: -# godot --headless --script client/scripts/validate_lights.gd -- res://path/to/map.tscn -# -# Exit codes: -# 0 — All light checks passed -# 1 — One or more light checks failed -# 2 — Scene file not found or cannot be loaded -# ============================================================================= - -const MAX_DYNAMIC_LIGHTS := 4 -const MAX_LIGHT_ENERGY := 50.0 -const MIN_LIGHT_ENERGY := 0.1 -const MAX_LIGHT_RANGE := 100.0 -const MAX_LIGHT_SPOT_ANGLE := 180.0 -const WARN_TOTAL_LIGHTS := 8 - -# BakeMode enum values as Godot defines them -const BAKE_MODE_DISABLED := 0 -const BAKE_MODE_STATIC := 1 -const BAKE_MODE_DYNAMIC := 2 - -var _pass_count := 0 -var _fail_count := 0 -var _warning_count := 0 -var _scene_path := "" -var _scene_instance: Node = null - -# Light stat tracking -var _total_lights := 0 -var _dynamic_lights := 0 -var _baked_lights := 0 -var _disabled_lights := 0 -var _shadowed_lights := 0 -var _light_details: Array[Dictionary] = [] - -# Per-type counts -var _directional_lights := 0 -var _omni_lights := 0 -var _spot_lights := 0 - - -func _init() -> void: - _parse_arguments() - - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided. Usage: godot --headless --script validate_lights.gd -- res://path/to/map.tscn") - quit(2) - return - - print("") - print("==========================================") - print(" LIGHT VALIDATOR") - print(" Scene: ", _scene_path) - print("==========================================") - print("") - - print(" Light budget:") - print(" Max dynamic lights: ", MAX_DYNAMIC_LIGHTS) - print(" Recommended baking: All static geometry lights") - print("") - - var scene: PackedScene = _load_scene(_scene_path) - if scene == null: - printerr("ERROR: Scene not found: ", _scene_path) - quit(2) - return - - _scene_instance = _instantiate_scene(scene) - if _scene_instance == null: - printerr("ERROR: Failed to instantiate scene: ", _scene_path) - quit(2) - return - - root.add_child(_scene_instance) - - # Collect all lights - _analyze_lights(_scene_instance) - - # Run checks - _run_dynamic_light_count_check() - _run_bake_mode_checks() - _run_energy_checks() - _run_shadow_checks() - _print_light_report() - - # Summary - _print_summary() - - if _fail_count > 0: - quit(1) - else: - quit(0) - - -# --------------------------------------------------------------------------- -# Argument parsing -# --------------------------------------------------------------------------- - -func _parse_arguments() -> void: - """Extract scene path from user arguments (after --).""" - var args: PackedStringArray = OS.get_cmdline_user_args() - if not args.is_empty(): - _scene_path = args[0].strip_edges() - return - - var full_args: PackedStringArray = OS.get_cmdline_args() - var found_sep := false - for i in range(full_args.size()): - if full_args[i] == "--": - found_sep = true - continue - if found_sep: - _scene_path = full_args[i].strip_edges() - break - - -# --------------------------------------------------------------------------- -# Scene helpers -# --------------------------------------------------------------------------- - -func _load_scene(path: String) -> PackedScene: - """Load a .tscn/.scn file.""" - if not ResourceLoader.exists(path): - if not path.ends_with(".tscn") and not path.ends_with(".scn"): - path = path + ".tscn" - if not ResourceLoader.exists(path): - return null - return ResourceLoader.load(path, "PackedScene", ResourceLoader.CACHE_MODE_REUSE) - - -func _instantiate_scene(scene: PackedScene) -> Node: - return scene.instantiate() - - -# --------------------------------------------------------------------------- -# Check helpers -# --------------------------------------------------------------------------- - -func _pass(msg: String) -> void: - _pass_count += 1 - print(" ✓ ", msg) - - -func _fail(msg: String) -> void: - _fail_count += 1 - print(" ✗ ", msg) - - -func _warn(msg: String) -> void: - _warning_count += 1 - print(" ⚠ ", msg) - - -# --------------------------------------------------------------------------- -# Light analysis -# --------------------------------------------------------------------------- - -func _analyze_lights(node: Node) -> void: - """Recursively walk scene collecting light data.""" - var class_name := node.get_class() - - if class_name in ["DirectionalLight3D", "OmniLight3D", "SpotLight3D"]: - _total_lights += 1 - var info := _collect_light_info(node, class_name) - _light_details.append(info) - - # Count by type - match class_name: - "DirectionalLight3D": - _directional_lights += 1 - "OmniLight3D": - _omni_lights += 1 - "SpotLight3D": - _spot_lights += 1 - - # Track bake mode - var bake_mode := 0 - if "bake_mode" in node: - bake_mode = node.bake_mode - match bake_mode: - BAKE_MODE_DISABLED: - _disabled_lights += 1 - _dynamic_lights += 1 - BAKE_MODE_STATIC: - _baked_lights += 1 - BAKE_MODE_DYNAMIC: - _dynamic_lights += 1 - - # Track shadows - if "shadow" in node and node.shadow: - _shadowed_lights += 1 - - for child in node.get_children(): - _analyze_lights(child) - - -func _collect_light_info(node: Node, class_name: String) -> Dictionary: - """Collect all relevant properties from a light node.""" - var info := { - "name": node.name, - "type": class_name, - "path": _get_node_path(node), - "enabled": node.get("visible") if "visible" in node else true, - "bake_mode": node.get("bake_mode") if "bake_mode" in node else 0, - "energy": node.get("energy") if "energy" in node else 1.0, - "shadow": node.get("shadow") if "shadow" in node else false, - "shadow_bias": node.get("shadow_bias") if "shadow_bias" in node else 0.0, - "indirect_energy": node.get("indirect_energy") if "indirect_energy" in node else 1.0, - "light_specular": node.get("light_specular") if "light_specular" in node else 0.5, - } - - # Type-specific properties - match class_name: - "OmniLight3D": - info["range"] = node.get("omni_range") if "omni_range" in node else 0.0 - info["attenuation"] = node.get("omni_attenuation") if "omni_attenuation" in node else 1.0 - "SpotLight3D": - info["range"] = node.get("spot_range") if "spot_range" in node else 0.0 - info["attenuation"] = node.get("spot_attenuation") if "spot_attenuation" in node else 1.0 - info["spot_angle"] = node.get("spot_angle") if "spot_angle" in node else 45.0 - info["spot_angle_attenuation"] = node.get("spot_angle_attenuation") if "spot_angle_attenuation" in node else 1.0 - "DirectionalLight3D": - info["range"] = -1.0 - info["directional_shadow_mode"] = node.get("directional_shadow_mode") if "directional_shadow_mode" in node else 0 - - return info - - -func _get_node_path(node: Node) -> String: - """Get the scene-tree path of a node.""" - var parts: Array[String] = [] - var current := node - while current != null and current != _scene_instance: - parts.push_front(current.name) - current = current.get_parent() - return "/".join(parts) - - -func _get_bake_mode_name(mode: int) -> String: - match mode: - BAKE_MODE_DISABLED: return "Disabled (Dynamic)" - BAKE_MODE_STATIC: return "Static (Baked)" - BAKE_MODE_DYNAMIC: return "Dynamic" - return "Unknown(" + str(mode) + ")" - - -# --------------------------------------------------------------------------- -# Light checks -# --------------------------------------------------------------------------- - -func _run_dynamic_light_count_check() -> void: - """Check that dynamic light count is within budget.""" - print("--- Dynamic Light Count ---") - - if _total_lights == 0: - _warn("No lights found in scene at all (verify map lighting)") - return - - _pass("Total lights: " + str(_total_lights) + " (Dir: " + str(_directional_lights) + - ", Omni: " + str(_omni_lights) + ", Spot: " + str(_spot_lights) + ")") - - if _dynamic_lights <= MAX_DYNAMIC_LIGHTS: - _pass("Dynamic lights: " + str(_dynamic_lights) + " (budget: ≤ " + str(MAX_DYNAMIC_LIGHTS) + ")") - else: - _fail("Too many dynamic lights: " + str(_dynamic_lights) + - " (budget: ≤ " + str(MAX_DYNAMIC_LIGHTS) + ")" + - " — consider baking " + str(_dynamic_lights - MAX_DYNAMIC_LIGHTS) + " light(s)") - - # Warn if total lights (including baked) is very high - if _total_lights > WARN_TOTAL_LIGHTS: - _warn("Total light count (" + str(_total_lights) + ") exceeds " + str(WARN_TOTAL_LIGHTS) + - " — verify all lights are necessary") - - -func _run_bake_mode_checks() -> void: - """Check that each light has an appropriate bake mode.""" - print("") - print("--- Bake Mode Validation ---") - - var proper_bake := 0 - var improper_bake := 0 - - for info in _light_details: - var bake_mode := info.bake_mode as int - var light_name := info.name as String - var light_type := info.type as String - var bake_name := _get_bake_mode_name(bake_mode) - - if bake_mode == BAKE_MODE_STATIC: - proper_bake += 1 - _pass(light_name + " (" + light_type + "): bake_mode = Static ✓") - elif bake_mode == BAKE_MODE_DISABLED: - # Dynamic lights are OK if count is within budget - improper_bake += 1 - _warn(light_name + " (" + light_type + "): bake_mode = Disabled (fully dynamic)") - elif bake_mode == BAKE_MODE_DYNAMIC: - improper_bake += 1 - _warn(light_name + " (" + light_type + "): bake_mode = Dynamic") - - if improper_bake > 0: - _warn(str(improper_bake) + " light(s) are not set to Static bake mode" + - " — use Static for baked geometry lights") - - # DirectionalLight3D should generally be Baked (Static) for main sun - for info in _light_details: - if info.type == "DirectionalLight3D" and info.bake_mode == BAKE_MODE_DISABLED: - _warn("DirectionalLight3D '" + info.name + "' is set to Disabled bake mode" + - " — set to Static (Baked) for performance") - - -func _run_energy_checks() -> void: - """Check that light energy values are within reasonable ranges.""" - print("") - print("--- Light Energy / Range Checks ---") - - for info in _light_details: - var energy := info.energy as float - var light_name := info.name as String - var light_type := info.type as String - - if energy > MAX_LIGHT_ENERGY: - _warn(light_name + " (" + light_type + "): energy = " + str(energy) + - " — very high (max recommended: " + str(MAX_LIGHT_ENERGY) + ")") - elif energy < MIN_LIGHT_ENERGY: - _warn(light_name + " (" + light_type + "): energy = " + str(energy) + - " — very low (min recommended: " + str(MIN_LIGHT_ENERGY) + ")") - else: - _pass(light_name + " (" + light_type + "): energy = " + str(energy) + " (within [0.1, 50.0])") - - # Range check (not applicable to DirectionalLight3D) - if info.has("range") and info.range > 0: - var range_val := info.range as float - if range_val > MAX_LIGHT_RANGE: - _warn(light_name + " (" + light_type + "): range = " + str(range_val) + - " — very large (max recommended: " + str(MAX_LIGHT_RANGE) + ")") - - # Spot angle check - if info.has("spot_angle"): - var angle := info.spot_angle as float - if angle > MAX_LIGHT_SPOT_ANGLE: - _warn(light_name + " (SpotLight3D): spot_angle = " + str(angle) + - " — exceeds 180° (will project backwards)") - - -func _run_shadow_checks() -> void: - """Validate shadow configuration on lights.""" - print("") - print("--- Shadow Configuration ---") - - for info in _light_details: - var has_shadow := info.shadow as bool - var light_name := info.name as String - - if has_shadow: - # Shadowed lights are more expensive - if info.bake_mode == BAKE_MODE_STATIC: - _pass(light_name + ": shadows enabled, bake_mode = Static (good — shadows will be baked)") - else: - _warn(light_name + ": dynamic shadows enabled — expensive for real-time rendering") - - # Count shadowed dynamic lights - var dynamic_shadow_count := 0 - for info in _light_details: - if info.shadow and info.bake_mode != BAKE_MODE_STATIC: - dynamic_shadow_count += 1 - - if dynamic_shadow_count > 2: - _warn(str(dynamic_shadow_count) + " lights have dynamic shadows — recommended max 2 for performance") - - -# --------------------------------------------------------------------------- -# Light report -# --------------------------------------------------------------------------- - -func _print_light_report() -> void: - """Print a comprehensive light report.""" - print("") - print("--- Light Report ---") - print(" Total lights: ", _total_lights) - print(" DirectionalLight3D: ", _directional_lights) - print(" OmniLight3D: ", _omni_lights) - print(" SpotLight3D: ", _spot_lights) - print(" Dynamic (non-baked): ", _dynamic_lights) - print(" Baked (Static): ", _baked_lights) - print(" Disabled: ", _disabled_lights) - print(" Shadowed: ", _shadowed_lights) - print("") - - # Light detail table - if _light_details.size() > 0: - print(" Light Details:") - print(" " + "-".repeat(90)) - print(" %-25s %-18s %-12s %-8s %-6s %-8s" % ["Name", "Type", "Bake Mode", "Energy", "Shadow", "Range"]) - print(" " + "-".repeat(90)) - for info in _light_details: - var bake_mode_name := _get_bake_mode_name(info.bake_mode) - var range_str := str(info.range) if info.has("range") and info.range > 0 else "N/A" - var shadow_str := "Yes" if info.shadow else "No" - print(" %-25s %-18s %-12s %-8.1f %-6s %-8s" % [ - info.name, info.type, bake_mode_name, info.energy, shadow_str, range_str - ]) - print(" " + "-".repeat(90)) - print("") - - -# --------------------------------------------------------------------------- -# Summary -# --------------------------------------------------------------------------- - -func _print_summary() -> void: - """Print final summary of all light checks.""" - print("==========================================") - print(" LIGHT VALIDATION SUMMARY") - print("==========================================") - print(" Scene: ", _scene_path) - print(" Total lights: ", _total_lights) - print(" Dynamic lights: ", _dynamic_lights) - print(" Baked (Static): ", _baked_lights) - print(" Dynamic shadowed: ", _shadowed_lights) - print("------------------------------------------") - print(" Passed: ", _pass_count) - print(" Failed: ", _fail_count) - print(" Warnings: ", _warning_count) - print("------------------------------------------") - if _fail_count > 0: - print(" RESULT: FAILED ❌") - printerr("Validation FAILED — ", _fail_count, " light check(s) failed.") - else: - print(" RESULT: PASSED ✅") - print("==========================================") - print("") diff --git a/client/scripts/validate_lights.gd.uid b/client/scripts/validate_lights.gd.uid deleted file mode 100644 index fda3ad5..0000000 --- a/client/scripts/validate_lights.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cwvi2ic1k6ubn diff --git a/client/scripts/validate_map.gd b/client/scripts/validate_map.gd deleted file mode 100644 index 225b37f..0000000 --- a/client/scripts/validate_map.gd +++ /dev/null @@ -1,511 +0,0 @@ -@tool -extends SceneTree - -# ============================================================================= -# validate_map.gd — Map Scene Structure Validator -# ============================================================================= -# Validates that a competitive FPS map scene follows the required structure: -# - CSG Combiner as root node -# - Spawn groups (T Spawn / CT Spawn) -# - Bomb sites (A / B) -# - Buy zones (T / CT) -# - Map bounds (invisible walls / kill plane) -# - LightmapGI configuration -# - Lighting setup (WorldEnvironment, directional/ambient lights) -# -# Usage: -# godot --headless --script client/scripts/validate_map.gd -- res://path/to/map.tscn -# -# Exit codes: -# 0 — All checks passed -# 1 — One or more checks failed -# 2 — Scene file not found at the given path -# ============================================================================= - -const EXPECTED_MIN_NODES := 15 -const EXPECTED_MAX_NODES := 500 - -# Separator used to mark user arguments after -- -const ARG_SEPARATOR := "--" - -var _pass_count := 0 -var _fail_count := 0 -var _warning_count := 0 -var _scene_path := "" -var _scene_instance: Node = null -var _root_node: Node = null - - -func _init() -> void: - _parse_arguments() - - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided. Usage: godot --headless --script validate_map.gd -- res://path/to/map.tscn") - quit(2) - return - - print("") - print("==========================================") - print(" MAP SCENE STRUCTURE VALIDATOR") - print(" Scene: ", _scene_path) - print("==========================================") - print("") - - # Step 1 — Load and instantiate the scene - var scene: PackedScene = _load_scene(_scene_path) - if scene == null: - printerr("ERROR: Scene not found or failed to load: ", _scene_path) - quit(2) - return - - _scene_instance = _instantiate_scene(scene) - if _scene_instance == null: - printerr("ERROR: Failed to instantiate scene: ", _scene_path) - quit(2) - return - - root.add_child(_scene_instance) - _root_node = _scene_instance - - # Step 2 — Run all validation checks - _run_all_checks() - - # Step 3 — Print summary - _print_summary() - - # Step 4 — Exit with appropriate code - if _fail_count > 0: - quit(1) - else: - quit(0) - - -# --------------------------------------------------------------------------- -# Argument parsing -# --------------------------------------------------------------------------- - -func _parse_arguments() -> void: - """ - Parse command-line arguments to extract the scene path. - Args after '--' are user arguments: godot ... --script validate_map.gd -- res://map.tscn - """ - var args: PackedStringArray = OS.get_cmdline_user_args() - if args.is_empty(): - # Fallback: look for '--' in full cmdline - var full_args: PackedStringArray = OS.get_cmdline_args() - var found_sep := false - for i in range(full_args.size()): - if full_args[i] == ARG_SEPARATOR: - found_sep = true - continue - if found_sep: - _scene_path = full_args[i].strip_edges() - break - else: - # First user arg is the scene path - _scene_path = args[0].strip_edges() - - # Basic validation - if _scene_path.is_empty(): - return - - # Ensure it's a res:// path or convert relative to res:// - if not _scene_path.begins_with("res://"): - # Could be a relative filesystem path — keep as-is, ResourceLoader handles it - pass - - -# --------------------------------------------------------------------------- -# Scene loading helpers -# --------------------------------------------------------------------------- - -func _load_scene(path: String) -> PackedScene: - """ - Load a .tscn or .scn file and return the PackedScene, or null on failure. - """ - if not ResourceLoader.exists(path): - # Try adding extension - if not path.ends_with(".tscn") and not path.ends_with(".scn"): - path = path + ".tscn" - if not ResourceLoader.exists(path): - return null - var scene: PackedScene = ResourceLoader.load(path, "PackedScene", ResourceLoader.CACHE_MODE_REUSE) - return scene - - -func _instantiate_scene(scene: PackedScene) -> Node: - """ - Safely instantiate a packed scene, returning the root node or null. - """ - var instance: Node = null - var ok := false - instance = scene.instantiate() - if instance != null: - ok = true - return instance if ok else null - - -# --------------------------------------------------------------------------- -# Check registration helpers -# --------------------------------------------------------------------------- - -func _pass(msg: String) -> void: - """Record a passed check.""" - _pass_count += 1 - print(" ✓ ", msg) - - -func _fail(msg: String) -> void: - """Record a failed check.""" - _fail_count += 1 - print(" ✗ ", msg) - - -func _warn(msg: String) -> void: - """Record a non-blocking warning.""" - _warning_count += 1 - print(" ⚠ ", msg) - - -func _check(condition: bool, msg_pass: String, msg_fail: String) -> bool: - """Convenience: pass or fail based on condition.""" - if condition: - _pass(msg_pass) - else: - _fail(msg_fail) - return condition - - -# --------------------------------------------------------------------------- -# Node search helpers -# --------------------------------------------------------------------------- - -func _find_node(parent: Node, name: String) -> Node: - """Recursively find a node by exact name.""" - for child in parent.get_children(): - if child.name == name: - return child - var found := _find_node(child, name) - if found != null: - return found - return null - - -func _find_node_by_type(parent: Node, type_name: String) -> Node: - """Recursively find a node by its script or class name.""" - for child in parent.get_children(): - var class_str := str(child.get_class()) - if class_str == type_name: - return child - var found := _find_node_by_type(child, type_name) - if found != null: - return found - return null - - -func _find_nodes_by_type(parent: Node, type_name: String) -> Array[Node]: - """Recursively find all nodes of a given type.""" - var results: Array[Node] = [] - if str(parent.get_class()) == type_name: - results.append(parent) - for child in parent.get_children(): - results.append_array(_find_nodes_by_type(child, type_name)) - return results - - -func _find_children_by_name_prefix(parent: Node, prefix: String) -> Array[Node]: - """Find all immediate children whose name starts with prefix.""" - var results: Array[Node] = [] - for child in parent.get_children(): - if child.name.begins_with(prefix): - results.append(child) - return results - - -func _count_nodes(node: Node) -> int: - """Count total nodes in the subtree, including node itself.""" - var count := 1 - for child in node.get_children(): - count += _count_nodes(child) - return count - - -# --------------------------------------------------------------------------- -# Main validation runner -# --------------------------------------------------------------------------- - -func _run_all_checks() -> void: - """Execute all validation categories.""" - print("--- Root Node ---") - _check_root_node() - - print("") - print("--- Spawn Groups ---") - _check_spawn_groups() - - print("") - print("--- Bomb Sites ---") - _check_bomb_sites() - - print("") - print("--- Buy Zones ---") - _check_buy_zones() - - print("") - print("--- Map Bounds ---") - _check_map_bounds() - - print("") - print("--- LightmapGI Configuration ---") - _check_lightmapgi() - - print("") - print("--- Lighting Setup ---") - _check_lighting() - - print("") - print("--- Node Count Sanity ---") - _check_node_sanity() - - print("") - print("--- CSG Combiner Hierarchy ---") - _check_csg_hierarchy() - - -# --------------------------------------------------------------------------- -# Individual check groups -# --------------------------------------------------------------------------- - -func _check_root_node() -> void: - """Verify root node is a CSG Combiner or suitable root.""" - if _root_node == null: - _fail("Root node is null") - return - - var class_name := _root_node.get_class() - # Accept CSGCombiner3D as root, or any reasonable Spatial/Node3D - var is_csg := class_name in ["CSGCombiner3D", "CSGSphere3D", "CSGBox3D", "CSGCylinder3D", "CSGTorus3D"] - var is_node3d := class_name in ["Node3D", "Spatial"] - - if is_csg: - _pass("Root node is CSGCombiner3D ('" + _root_node.name + "')") - elif is_node3d: - _warn("Root node is Node3D ('" + _root_node.name + "') — expected CSGCombiner3D for map geometry") - else: - _warn("Root node is '" + class_name + "' ('" + _root_node.name + "') — expected CSGCombiner3D") - - -func _check_spawn_groups() -> void: - """Verify spawn point groups exist (T Spawn, CT Spawn).""" - var found_t_spawn := false - var found_ct_spawn := false - - for child in _root_node.get_children(): - var name_lower := child.name.to_lower() - if "t_spawn" in name_lower or "tspawn" in name_lower or "terrorist" in name_lower: - found_t_spawn = true - _pass("T Spawn group found: '" + child.name + "'") - if "ct_spawn" in name_lower or "ctspawn" in name_lower or "counter" in name_lower: - found_ct_spawn = true - _pass("CT Spawn group found: '" + child.name + "'") - - if not found_t_spawn: - _fail("T Spawn group not found (expected node containing 'T_Spawn' or 'Terrorist')") - if not found_ct_spawn: - _fail("CT Spawn group not found (expected node containing 'CT_Spawn' or 'Counter')") - - -func _check_bomb_sites() -> void: - """Verify bomb site marker nodes exist (A, B).""" - var found_a := false - var found_b := false - - for child in _root_node.get_children(): - var name_lower := child.name.to_lower() - if "bombsite_a" in name_lower or "bomb_site_a" in name_lower or "site_a" in name_lower or "a_site" in name_lower: - found_a = true - _pass("Bomb Site A found: '" + child.name + "'") - if "bombsite_b" in name_lower or "bomb_site_b" in name_lower or "site_b" in name_lower or "b_site" in name_lower: - found_b = true - _pass("Bomb Site B found: '" + child.name + "'") - - if not found_a: - _fail("Bomb Site A not found (expected node containing 'Bombsite_A' or 'Site_A')") - if not found_b: - _fail("Bomb Site B not found (expected node containing 'Bombsite_B' or 'Site_B')") - - -func _check_buy_zones() -> void: - """Verify buy zone areas exist for T and CT spawns.""" - var found_t_buy := false - var found_ct_buy := false - - for child in _root_node.get_children(): - var name_lower := child.name.to_lower() - if ("t_buy" in name_lower or "buy_t" in name_lower or "buyzone_t" in name_lower) and "zone" in name_lower: - found_t_buy = true - _pass("T Buy Zone found: '" + child.name + "'") - if ("ct_buy" in name_lower or "buy_ct" in name_lower or "buyzone_ct" in name_lower) and "zone" in name_lower: - found_ct_buy = true - _pass("CT Buy Zone found: '" + child.name + "'") - - if not found_t_buy or not found_ct_buy: - _warn("Buy zones not found — expected Area3D nodes named 'T_BuyZone' and 'CT_BuyZone'") - - -func _check_map_bounds() -> void: - """Verify map bounds exist (invisible walls, kill plane).""" - var found_bounds := false - var found_killplane := false - - for child in _root_node.get_children(): - var name_lower := child.name.to_lower() - if "bounds" in name_lower or "boundary" in name_lower or "wall" in name_lower: - if "invisible" in name_lower or "clip" in name_lower or "world" in name_lower: - found_bounds = true - _pass("Map bounds found: '" + child.name + "'") - if "kill" in name_lower or "death" in name_lower or "fall" in name_lower: - found_killplane = true - _pass("Kill plane / death zone found: '" + child.name + "'") - - if not found_bounds: - _warn("No map boundary/invisible wall nodes detected (optional but recommended)") - if not found_killplane: - _warn("No kill plane / death zone found (optional but recommended)") - - -func _check_lightmapgi() -> void: - """Validate LightmapGI node configuration.""" - var lightmap := _find_node_by_type(_root_node, "LightmapGI") - if lightmap == null: - _fail("LightmapGI node not found in scene") - return - - _pass("LightmapGI node found: '" + lightmap.name + "'") - - # Check quality - if lightmap.has_method("get_quality"): - var q := lightmap.get_quality() - _check(q >= 1, "LightmapGI quality set (≥ Medium)", "LightmapGI quality is Low (0) — set to at least Medium") - - # Check bounces - var bounces: int = lightmap.get("bounces") if "bounces" in lightmap else -1 - if bounces >= 0: - _check(bounces >= 2, "LightmapGI.bounces >= 2", "LightmapGI.bounces is " + str(bounces) + " — expected ≥ 2") - - # Check interior - var interior: bool = lightmap.get("interior") if "interior" in lightmap else false - _check(interior == true, "LightmapGI.interior = true (indoor map)", "LightmapGI.interior is false — set to true for indoor scenes") - - # Check texel scale - var texel_scale: float = lightmap.get("texel_scale") if "texel_scale" in lightmap else 0.0 - _check(abs(texel_scale - 1.0) < 0.01, "LightmapGI.texel_scale ≈ 1.0", "LightmapGI.texel_scale is " + str(texel_scale) + " — expected 1.0") - - # Check denoiser - var denoiser: bool = lightmap.get("use_denoiser") if "use_denoiser" in lightmap else false - _check(denoiser == true, "LightmapGI.use_denoiser = true", "LightmapGI.use_denoiser is false — recommended true") - - # Check max texture size - var max_tex: int = lightmap.get("max_texture_size") if "max_texture_size" in lightmap else 0 - if max_tex > 0: - _check(max_tex <= 1024, "LightmapGI.max_texture_size ≤ 1024", "LightmapGI.max_texture_size is " + str(max_tex) + " — consider ≤ 1024") - - # Check energy - var energy: float = lightmap.get("energy") if "energy" in lightmap else 1.0 - _warn("LightmapGI energy = " + str(energy) + " (verify visually)") - - -func _check_lighting() -> void: - """Verify lighting setup: WorldEnvironment, directional light, etc.""" - var world_env := _find_node_by_type(_root_node, "WorldEnvironment") - if world_env != null: - _pass("WorldEnvironment node found") - # Check environment resource - if world_env.has_method("get_environment"): - var env := world_env.get_environment() - if env != null: - _pass("WorldEnvironment has Environment resource") - else: - _fail("WorldEnvironment has no Environment resource assigned") - else: - _warn("WorldEnvironment — check environment assignment manually") - else: - _fail("WorldEnvironment node not found — required for map lighting") - - # Directional light (sun) - var sun := _find_node_by_type(_root_node, "DirectionalLight3D") - if sun != null: - _pass("DirectionalLight3D (sun) found: '" + sun.name + "'") - else: - _fail("DirectionalLight3D not found — map needs a sun light") - - # Check for too many dynamic lights - var omni_lights := _find_nodes_by_type(_root_node, "OmniLight3D") - var spot_lights := _find_nodes_by_type(_root_node, "SpotLight3D") - if omni_lights.size() + spot_lights.size() > 4: - _warn("Scene has " + str(omni_lights.size() + spot_lights.size()) + " dynamic lights — consider baking (recommended ≤ 4)") - else: - _pass("Dynamic light count (" + str(omni_lights.size() + spot_lights.size()) + ") within budget (≤ 4)") - - # Reflection probes - var ref_probes := _find_nodes_by_type(_root_node, "ReflectionProbe") - if ref_probes.size() > 0: - _pass("ReflectionProbe(s) found: " + str(ref_probes.size())) - else: - _warn("No ReflectionProbe found — consider adding for visual quality") - - -func _check_node_sanity() -> void: - """Verify total node count is within expected range.""" - var total := _count_nodes(_root_node) - if total < EXPECTED_MIN_NODES: - _warn("Scene has only " + str(total) + " nodes — very minimal (< " + str(EXPECTED_MIN_NODES) + ")") - elif total > EXPECTED_MAX_NODES: - _warn("Scene has " + str(total) + " nodes — consider optimization (> " + str(EXPECTED_MAX_NODES) + ")") - else: - _pass("Node count " + str(total) + " within expected range [" + str(EXPECTED_MIN_NODES) + ", " + str(EXPECTED_MAX_NODES) + "]") - - -func _check_csg_hierarchy() -> void: - """Check that CSG nodes are properly parented under a CSGCombiner3D.""" - var csg_nodes := _find_nodes_by_type(_root_node, "CSGCombiner3D") - if csg_nodes.size() > 1: - _warn("Multiple CSGCombiner3D nodes found (" + str(csg_nodes.size()) + ") — expected single root combiner") - elif csg_nodes.size() == 0: - _warn("No CSGCombiner3D found at root (map may use mesh instances instead)") - - var csg_shape_nodes := 0 - csg_shape_nodes += _find_nodes_by_type(_root_node, "CSGBox3D").size() - csg_shape_nodes += _find_nodes_by_type(_root_node, "CSGSphere3D").size() - csg_shape_nodes += _find_nodes_by_type(_root_node, "CSGCylinder3D").size() - csg_shape_nodes += _find_nodes_by_type(_root_node, "CSGTorus3D").size() - csg_shape_nodes += _find_nodes_by_type(_root_node, "CSGPolygon3D").size() - - if csg_shape_nodes > 0: - _pass("CSG primitive nodes found: " + str(csg_shape_nodes)) - else: - _warn("No CSG primitive nodes found — map may use imported meshes instead") - - -# --------------------------------------------------------------------------- -# Summary -# --------------------------------------------------------------------------- - -func _print_summary() -> void: - """Print a final summary of all checks.""" - print("") - print("==========================================") - print(" VALIDATION SUMMARY") - print("==========================================") - print(" Scene: ", _scene_path) - print(" Passed: ", _pass_count) - print(" Failed: ", _fail_count) - print(" Warnings: ", _warning_count) - print("------------------------------------------") - if _fail_count > 0: - print(" RESULT: FAILED ❌") - printerr("Validation FAILED — ", _fail_count, " check(s) failed.") - else: - print(" RESULT: PASSED ✅") - print("==========================================") - print("") diff --git a/client/scripts/validate_map.gd.uid b/client/scripts/validate_map.gd.uid deleted file mode 100644 index 51e6e97..0000000 --- a/client/scripts/validate_map.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://olpdh1gx2gca diff --git a/client/scripts/validate_polycount.gd b/client/scripts/validate_polycount.gd deleted file mode 100644 index ae77cf0..0000000 --- a/client/scripts/validate_polycount.gd +++ /dev/null @@ -1,465 +0,0 @@ -@tool -extends SceneTree - -# ============================================================================= -# validate_polycount.gd — CSG Triangle Budget Checker -# ============================================================================= -# Audits a Godot 4 map scene for CSG polygon / triangle budget compliance. -# Budget limits (competitive FPS): -# - Total faces: < 50,000 -# - Per node: < 5,000 -# - Total CSG nodes: < 200 -# -# Usage: -# godot --headless --script client/scripts/validate_polycount.gd -- res://path/to/map.tscn -# -# Exit codes: -# 0 — All poly budgets met -# 1 — One or more budgets exceeded -# 2 — Scene file not found or cannot be loaded -# ============================================================================= - -# Budget constants (adjust for target platform) -const MAX_TOTAL_FACES := 50_000 -const MAX_FACES_PER_NODE := 5_000 -const MAX_CSG_NODES := 200 -const MAX_MESH_INSTANCES := 150 -const WARN_TOTAL_FACES := 40_000 -const WARN_FACES_PER_NODE := 3_000 - -var _pass_count := 0 -var _fail_count := 0 -var _warning_count := 0 -var _scene_path := "" -var _scene_instance: Node = null - -# Accumulated stats -var _total_faces := 0 -var _total_vertices := 0 -var _total_csg_nodes := 0 -var _total_mesh_instances := 0 -var _node_face_counts: Dictionary = {} # node_path -> face_count -var _highest_face_node := "" -var _highest_face_count := 0 -var _csg_node_list: Array[String] = [] -var _overbudget_nodes: Array[String] = [] - - -func _init() -> void: - _parse_arguments() - - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided. Usage: godot --headless --script validate_polycount.gd -- res://path/to/map.tscn") - quit(2) - return - - print("") - print("==========================================") - print(" CSG POLYGON BUDGET VALIDATOR") - print(" Scene: ", _scene_path) - print("==========================================") - print("") - - # Budget header - print(" Budget limits:") - print(" Max total faces: ", _format_num(MAX_TOTAL_FACES)) - print(" Max faces per node: ", _format_num(MAX_FACES_PER_NODE)) - print(" Max CSG nodes: ", _format_num(MAX_CSG_NODES)) - print(" Max MeshInstance3D: ", _format_num(MAX_MESH_INSTANCES)) - print("") - - var scene: PackedScene = _load_scene(_scene_path) - if scene == null: - printerr("ERROR: Scene not found: ", _scene_path) - quit(2) - return - - _scene_instance = _instantiate_scene(scene) - if _scene_instance == null: - printerr("ERROR: Failed to instantiate scene: ", _scene_path) - quit(2) - return - - root.add_child(_scene_instance) - - # Perform analysis - _analyze_node(_scene_instance, "") - - # Run all checks - _run_checks() - - # Print detailed report - _print_detailed_report() - - # Summary - _print_summary() - - if _fail_count > 0: - quit(1) - else: - quit(0) - - -# --------------------------------------------------------------------------- -# Argument parsing -# --------------------------------------------------------------------------- - -func _parse_arguments() -> void: - """Extract scene path from user arguments (after --).""" - var args: PackedStringArray = OS.get_cmdline_user_args() - if not args.is_empty(): - _scene_path = args[0].strip_edges() - return - - # Fallback: scan full cmdline for -- - var full_args: PackedStringArray = OS.get_cmdline_args() - var found_sep := false - for i in range(full_args.size()): - if full_args[i] == "--": - found_sep = true - continue - if found_sep: - _scene_path = full_args[i].strip_edges() - break - - -# --------------------------------------------------------------------------- -# Scene helpers -# --------------------------------------------------------------------------- - -func _load_scene(path: String) -> PackedScene: - """Load a .tscn/.scn file.""" - if not ResourceLoader.exists(path): - if not path.ends_with(".tscn") and not path.ends_with(".scn"): - path = path + ".tscn" - if not ResourceLoader.exists(path): - return null - return ResourceLoader.load(path, "PackedScene", ResourceLoader.CACHE_MODE_REUSE) - - -func _instantiate_scene(scene: PackedScene) -> Node: - """Instantiate a packed scene.""" - return scene.instantiate() - - -# --------------------------------------------------------------------------- -# Check helpers -# --------------------------------------------------------------------------- - -func _pass(msg: String) -> void: - _pass_count += 1 - print(" ✓ ", msg) - - -func _fail(msg: String) -> void: - _fail_count += 1 - print(" ✗ ", msg) - - -func _warn(msg: String) -> void: - _warning_count += 1 - print(" ⚠ ", msg) - - -# --------------------------------------------------------------------------- -# Polygon analysis engine -# --------------------------------------------------------------------------- - -func _analyze_node(node: Node, path: String) -> void: - """ - Recursively walk the scene tree and collect polygon statistics - for all CSG and MeshInstance nodes. - """ - var current_path := path + "/" + node.name if path != "" else node.name - - # Handle CSG nodes - var class_name := node.get_class() - var is_csg := class_name in [ - "CSGCombiner3D", "CSGSphere3D", "CSGBox3D", "CSGCylinder3D", - "CSGTorus3D", "CSGPolygon3D", "CSGMesh3D" - ] - - if is_csg: - _total_csg_nodes += 1 - _csg_node_list.append(current_path) - - # Try to get mesh / face count - var face_count := _estimate_faces(node, class_name) - var vert_count := _estimate_vertices(node, class_name) - - if face_count > 0: - _total_faces += face_count - _total_vertices += vert_count - _node_face_counts[current_path] = face_count - - if face_count > _highest_face_count: - _highest_face_count = face_count - _highest_face_node = current_path - - if face_count > MAX_FACES_PER_NODE: - _overbudget_nodes.append(current_path) - - # Count MeshInstance3D - if class_name == "MeshInstance3D" or node.is_class("MeshInstance3D"): - _total_mesh_instances += 1 - - # Recurse children - for child in node.get_children(): - _analyze_node(child, current_path) - - -func _estimate_faces(node: Node, class_name: String) -> int: - """ - Attempt to estimate the number of triangle faces for a given node. - For CSG nodes, Godot exposes get_meshes() which returns arrays. - For MeshInstance3D, we inspect the mesh resource. - """ - var faces := 0 - - # CSG nodes can provide their collision / bake mesh - if class_name in ["CSGCombiner3D", "CSGSphere3D", "CSGBox3D", "CSGCylinder3D", - "CSGTorus3D", "CSGPolygon3D", "CSGMesh3D"]: - - # Try to get the bake mesh (the triangulated mesh used for lightmapping) - if node.has_method("get_bake_mesh"): - var bake_mesh := node.get_bake_mesh() - if bake_mesh != null: - faces = _count_mesh_faces(bake_mesh) - - # If that fails, try the collision/debug mesh - if faces == 0 and node.has_method("get_meshes"): - var mesh_arrays := node.get_meshes() - if mesh_arrays is Array and mesh_arrays.size() > 1: - var mesh := mesh_arrays[1] as ArrayMesh - if mesh != null: - faces = _count_mesh_faces(mesh) - - # Fallback estimate: for simple primitives - if faces == 0: - match class_name: - "CSGBox3D": - faces = 12 # 6 faces * 2 triangles - "CSGSphere3D": - faces = 320 # typical sphere LOD - "CSGCylinder3D": - faces = 128 # typical cylinder - "CSGTorus3D": - faces = 512 # typical torus - "CSGPolygon3D": - faces = 64 # default polygon - "CSGMesh3D": - faces = 100 # fallback - "CSGCombiner3D": - faces = 0 # combiner itself has no geometry - - # MeshInstance3D: count faces from mesh resource - if class_name == "MeshInstance3D" or node.is_class("MeshInstance3D"): - if "mesh" in node and node.mesh != null: - faces = _count_mesh_faces(node.mesh) - - return faces - - -func _estimate_vertices(node: Node, class_name: String) -> int: - """Estimate vertices from the node's mesh if available.""" - var verts := 0 - - if class_name in ["CSGCombiner3D", "CSGSphere3D", "CSGBox3D", "CSGCylinder3D", - "CSGTorus3D", "CSGPolygon3D", "CSGMesh3D"]: - if node.has_method("get_bake_mesh"): - var bake_mesh := node.get_bake_mesh() - if bake_mesh != null: - verts = _count_mesh_vertices(bake_mesh) - - if verts == 0 and (class_name == "MeshInstance3D" or node.is_class("MeshInstance3D")): - if "mesh" in node and node.mesh != null: - verts = _count_mesh_vertices(node.mesh) - - return verts - - -func _count_mesh_faces(mesh) -> int: - """Count triangle faces in any Mesh type.""" - if mesh == null: - return 0 - - var count := 0 - - # ArrayMesh and similar - if mesh.has_method("get_surface_count"): - var surface_count := mesh.get_surface_count() - for s in range(surface_count): - var arrays := mesh.surface_get_arrays(s) - if arrays is Array and arrays.size() > 0: - var indices := arrays[Mesh.ARRAY_INDEX] as PackedInt32Array - if indices != null and indices.size() > 0: - count += indices.size() / 3 - else: - # Non-indexed: count vertices / 3 - var verts := arrays[Mesh.ARRAY_VERTEX] as PackedVector3Array - if verts != null: - count += verts.size() / 3 - return count - - -func _count_mesh_vertices(mesh) -> int: - """Count vertices in any Mesh type.""" - if mesh == null: - return 0 - - var count := 0 - if mesh.has_method("get_surface_count"): - var surface_count := mesh.get_surface_count() - for s in range(surface_count): - var arrays := mesh.surface_get_arrays(s) - if arrays is Array and arrays.size() > 0: - var verts := arrays[Mesh.ARRAY_VERTEX] as PackedVector3Array - if verts != null: - count += verts.size() - return count - - -# --------------------------------------------------------------------------- -# Budget checks -# --------------------------------------------------------------------------- - -func _run_checks() -> void: - """Run all poly budget validation checks.""" - print("--- Budget Checks ---") - - # Total faces check - if _total_faces < WARN_TOTAL_FACES: - _pass("Total faces: " + _format_num(_total_faces) + " (budget: < " + _format_num(MAX_TOTAL_FACES) + ")") - elif _total_faces < MAX_TOTAL_FACES: - _warn("Total faces approaching limit: " + _format_num(_total_faces) + " (budget: < " + _format_num(MAX_TOTAL_FACES) + ")") - else: - _fail("Total faces EXCEEDED: " + _format_num(_total_faces) + " (budget: < " + _format_num(MAX_TOTAL_FACES) + ")") - - # Per-node face check - if _overbudget_nodes.size() == 0: - _pass("No nodes exceed " + _format_num(MAX_FACES_PER_NODE) + " faces") - else: - for node_path in _overbudget_nodes: - _fail("Node exceeds face budget: " + node_path + " (" + _format_num(_node_face_counts[node_path]) + " faces, max: " + _format_num(MAX_FACES_PER_NODE) + ")") - - # CSG node count check - if _total_csg_nodes < MAX_CSG_NODES: - _pass("CSG node count: " + str(_total_csg_nodes) + " (budget: < " + str(MAX_CSG_NODES) + ")") - else: - _fail("CSG node count EXCEEDED: " + str(_total_csg_nodes) + " (budget: < " + str(MAX_CSG_NODES) + ")") - - # Mesh instance count check - if _total_mesh_instances < MAX_MESH_INSTANCES: - _pass("MeshInstance3D count: " + str(_total_mesh_instances) + " (budget: < " + str(MAX_MESH_INSTANCES) + ")") - else: - _fail("MeshInstance3D count EXCEEDED: " + str(_total_mesh_instances) + " (budget: < " + str(MAX_MESH_INSTANCES) + ")") - - # Highest face node info - print("") - print("--- Hot Spots ---") - if _highest_face_count > 0: - if _highest_face_count > WARN_FACES_PER_NODE: - _warn("Highest face node: " + _highest_face_node + " (" + _format_num(_highest_face_count) + " faces)") - else: - _pass("Highest face node: " + _highest_face_node + " (" + _format_num(_highest_face_count) + " faces)") - else: - _warn("No face data collected (scene may use non-CSG geometry)") - - -# --------------------------------------------------------------------------- -# Detailed report -# --------------------------------------------------------------------------- - -func _print_detailed_report() -> void: - """Print a detailed per-node breakdown if there are few enough nodes.""" - print("") - print("--- Detailed Breakdown ---") - print(" Total triangles: ", _format_num(_total_faces)) - print(" Total vertices: ", _format_num(_total_vertices)) - print(" CSG nodes: ", _total_csg_nodes) - print(" MeshInstance3D: ", _total_mesh_instances) - print(" Nodes over budget: ", _overbudget_nodes.size()) - print("") - - # Top 10 most expensive nodes - var sorted_nodes: Array[Dictionary] = [] - for node_path in _node_face_counts.keys(): - sorted_nodes.append({"path": node_path, "faces": _node_face_counts[node_path]}) - sorted_nodes.sort_custom(_sort_by_faces_desc) - - var top_n := mini(sorted_nodes.size(), 10) - if top_n > 0: - print(" Top " + str(top_n) + " most expensive nodes:") - for i in range(top_n): - var entry := sorted_nodes[i] as Dictionary - var bar := _make_bar(entry.faces, _highest_face_count) - print(" " + str(i + 1) + ". " + entry.path + " — " + _format_num(entry.faces) + " faces " + bar) - print("") - - -func _sort_by_faces_desc(a: Dictionary, b: Dictionary) -> bool: - return a.faces > b.faces - - -func _make_bar(value: int, max_value: int) -> String: - """Create a simple ASCII bar visualization.""" - if max_value == 0: - return "" - var ratio := float(value) / float(max_value) - var bar_len := int(ratio * 20) - if bar_len < 1 and value > 0: - bar_len = 1 - var bar := "" - for i in range(bar_len): - bar += "█" - return bar - - -# --------------------------------------------------------------------------- -# Formatting helpers -# --------------------------------------------------------------------------- - -func _format_num(n: int) -> String: - """Format a number with thousand separators.""" - var s := str(n) - var result := "" - var count := 0 - for i in range(s.length() - 1, -1, -1): - if count > 0 and count % 3 == 0: - result = "," + result - result = s[i] + result - count += 1 - return result - - -func mini(a: int, b: int) -> int: - return a if a < b else b - - -# --------------------------------------------------------------------------- -# Summary -# --------------------------------------------------------------------------- - -func _print_summary() -> void: - """Print final summary.""" - print("==========================================") - print(" POLYGON BUDGET SUMMARY") - print("==========================================") - print(" Scene: ", _scene_path) - print(" Total faces: ", _format_num(_total_faces)) - print(" Total vertices: ", _format_num(_total_vertices)) - print(" CSG nodes: ", _total_csg_nodes) - print(" MeshInstance3D: ", _total_mesh_instances) - print(" Over-budget: ", _overbudget_nodes.size()) - print("------------------------------------------") - print(" Passed: ", _pass_count) - print(" Failed: ", _fail_count) - print(" Warnings: ", _warning_count) - print("------------------------------------------") - if _fail_count > 0: - print(" RESULT: FAILED ❌") - printerr("Validation FAILED — ", _fail_count, " budget(s) exceeded.") - else: - print(" RESULT: PASSED ✅") - print("==========================================") - print("") diff --git a/client/scripts/validate_polycount.gd.uid b/client/scripts/validate_polycount.gd.uid deleted file mode 100644 index 7fd562d..0000000 --- a/client/scripts/validate_polycount.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bqau1kivb87fk diff --git a/client/scripts/validate_scene.gd b/client/scripts/validate_scene.gd deleted file mode 100644 index 32aa9a8..0000000 --- a/client/scripts/validate_scene.gd +++ /dev/null @@ -1,101 +0,0 @@ -extends SceneTree - -# Validate kit_demo.tscn scene structure. -# Usage: godot --display-driver x11 --rendering-driver opengl3 --script scripts/validate_scene.gd - -func _init(): - print("=== Validating kit_demo.tscn ===") - - var scene = ResourceLoader.load("res://assets/scenes/modular/kit_demo.tscn") - if not scene: - printerr("ERROR: Could not load kit_demo.tscn!") - quit(1) - return - - print("Scene loaded successfully.") - - var instance = scene.instantiate() - if not instance: - printerr("ERROR: Could not instantiate scene!") - quit(1) - return - - root.add_child(instance) - print("Scene instantiated successfully.") - print("") - - # Validate key nodes - var checks = _check_nodes(instance) - - # Print results - var passed = 0 - var failed = 0 - for check in checks: - var status = "✓" if check[1] else "✗" - if check[1]: - passed += 1 - else: - failed += 1 - print(" ", status, " ", check[0]) - - # General info - var node_count = _count_nodes(instance) - print("") - print("Scene stats:") - print(" Total nodes: ", node_count) - print(" Checks passed: ", passed) - print(" Checks failed: ", failed) - print("") - - if failed > 0: - printerr("Validation FAILED — ", failed, " check(s) failed.") - quit(1) - else: - print("Validation PASSED.") - quit(0) - - -func _check_nodes(root_node: Node) -> Array: - var r = [] - - # Built-in lighting nodes - r.append(["WorldEnvironment (Environment+Sky)", root_node.find_child("WorldEnvironment", true, false) != null]) - r.append(["DirectionalLight3D (SunLight)", root_node.find_child("SunLight", true, false) != null]) - r.append(["OmniLight3D (FillLight)", root_node.find_child("FillLight", true, false) != null]) - r.append(["ReflectionProbe", root_node.find_child("ReflectionProbe", true, false) != null]) - r.append(["LightmapGI", root_node.find_child("LightmapGI", true, false) != null]) - - # Lightmap config - var lm = root_node.find_child("LightmapGI", true, false) - if lm: - r.append(["LightmapGI.bounces = 3", lm.bounces == 3]) - r.append(["LightmapGI.interior = true", lm.interior == true]) - r.append(["LightmapGI.use_denoiser = true", lm.use_denoiser == true]) - r.append(["LightmapGI.texel_scale = 1.0", abs(lm.texel_scale - 1.0) < 0.01]) - - # Module pieces (floor, walls, pillar, beam, accent panels) - r.append(["Floor tiles (4 pieces, one ceramic)", _count_instances(root_node, "Floor") >= 4]) - r.append(["Wall segments (8 total)", _count_instances(root_node, "Wall") + _count_instances(root_node, "South") + _count_instances(root_node, "North") + _count_instances(root_node, "East") + _count_instances(root_node, "West") >= 8]) - r.append(["Pillar (center)", root_node.find_child("Pillar", true, false) != null]) - r.append(["Beam (overhead)", root_node.find_child("Beam", true, false) != null]) - r.append(["AccentRed panel", root_node.find_child("AccentRed", true, false) != null]) - r.append(["AccentBlue panel", root_node.find_child("AccentBlue", true, false) != null]) - r.append(["Doorway segment", root_node.find_child("SouthDoorway", true, false) != null]) - r.append(["Window segment", root_node.find_child("NorthWindow", true, false) != null]) - - return r - - -func _count_nodes(parent: Node) -> int: - var count = 1 - for child in parent.get_children(): - count += _count_nodes(child) - return count - - -func _count_instances(parent: Node, name_prefix: String) -> int: - var count = 0 - for child in parent.get_children(): - if child.name.begins_with(name_prefix): - count += 1 - return count diff --git a/client/scripts/validate_scene.gd.uid b/client/scripts/validate_scene.gd.uid deleted file mode 100644 index 4a78ed2..0000000 --- a/client/scripts/validate_scene.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d34jlb2dhy72t diff --git a/client/scripts/validate_textures.gd b/client/scripts/validate_textures.gd deleted file mode 100644 index a463dcf..0000000 --- a/client/scripts/validate_textures.gd +++ /dev/null @@ -1,581 +0,0 @@ -@tool -extends SceneTree - -# ============================================================================= -# validate_textures.gd — Texture Size / Mipmaps / UV2 Checker -# ============================================================================= -# Scans all material and texture resources used in a scene and validates: -# - Texture dimensions ≤ 1024 (1K) -# - Mipmaps are enabled on all textures -# - UV2 channel is present on meshes (for lightmapping) -# - Texture format is appropriate -# -# Usage: -# godot --headless --script client/scripts/validate_textures.gd -- res://path/to/map.tscn -# -# Exit codes: -# 0 — All texture checks passed -# 1 — One or more texture checks failed -# 2 — Scene file not found or cannot be loaded -# ============================================================================= - -const MAX_TEXTURE_SIZE := 1024 -const MAX_TEXTURE_SIZE_LABEL := "1K (1024x1024)" - -var _pass_count := 0 -var _fail_count := 0 -var _warning_count := 0 -var _scene_path := "" -var _scene_instance: Node = null - -# Collected data -var _textures_checked: Dictionary = {} # resource_path -> info dict -var _overbudget_textures: Array[Dictionary] = [] -var _no_mipmap_textures: Array[Dictionary] = [] -var _meshes_without_uv2: Array[String] = [] -var _meshes_with_uv2: Array[String] = [] -var _mesh_count := 0 -var _total_textures := 0 -var _total_materials := 0 -var _texture_memory_estimate := 0 # approximate total texture memory in bytes - -# Unique set to avoid re-checking the same resource -var _checked_resources: Dictionary = {} - - -func _init() -> void: - _parse_arguments() - - if _scene_path.is_empty(): - printerr("ERROR: No scene path provided. Usage: godot --headless --script validate_textures.gd -- res://path/to/map.tscn") - quit(2) - return - - print("") - print("==========================================") - print(" TEXTURE VALIDATOR") - print(" Scene: ", _scene_path) - print("==========================================") - print("") - - print(" Texture budget:") - print(" Max dimension: ", MAX_TEXTURE_SIZE_LABEL) - print(" Mipmaps: Required") - print(" UV2 channel: Required for lightmapping") - print("") - - var scene: PackedScene = _load_scene(_scene_path) - if scene == null: - printerr("ERROR: Scene not found: ", _scene_path) - quit(2) - return - - _scene_instance = _instantiate_scene(scene) - if _scene_instance == null: - printerr("ERROR: Failed to instantiate scene: ", _scene_path) - quit(2) - return - - root.add_child(_scene_instance) - - # Analyze - _analyze_node(_scene_instance) - - # Run checks - _run_texture_checks() - _run_mipmap_checks() - _run_uv2_checks() - _print_texture_report() - - # Summary - _print_summary() - - if _fail_count > 0: - quit(1) - else: - quit(0) - - -# --------------------------------------------------------------------------- -# Argument parsing -# --------------------------------------------------------------------------- - -func _parse_arguments() -> void: - """Extract scene path from user args (after --).""" - var args: PackedStringArray = OS.get_cmdline_user_args() - if not args.is_empty(): - _scene_path = args[0].strip_edges() - return - - var full_args: PackedStringArray = OS.get_cmdline_args() - var found_sep := false - for i in range(full_args.size()): - if full_args[i] == "--": - found_sep = true - continue - if found_sep: - _scene_path = full_args[i].strip_edges() - break - - -# --------------------------------------------------------------------------- -# Scene helpers -# --------------------------------------------------------------------------- - -func _load_scene(path: String) -> PackedScene: - """Load a .tscn/.scn file.""" - if not ResourceLoader.exists(path): - if not path.ends_with(".tscn") and not path.ends_with(".scn"): - path = path + ".tscn" - if not ResourceLoader.exists(path): - return null - return ResourceLoader.load(path, "PackedScene", ResourceLoader.CACHE_MODE_REUSE) - - -func _instantiate_scene(scene: PackedScene) -> Node: - return scene.instantiate() - - -# --------------------------------------------------------------------------- -# Check helpers -# --------------------------------------------------------------------------- - -func _pass(msg: String) -> void: - _pass_count += 1 - print(" ✓ ", msg) - - -func _fail(msg: String) -> void: - _fail_count += 1 - print(" ✗ ", msg) - - -func _warn(msg: String) -> void: - _warning_count += 1 - print(" ⚠ ", msg) - - -# --------------------------------------------------------------------------- -# Analysis engine -# --------------------------------------------------------------------------- - -func _analyze_node(node: Node) -> void: - """Recursively walk scene, check materials on meshes.""" - var class_name := node.get_class() - - # MeshInstance3D — inspect its material overrides - if class_name == "MeshInstance3D" or node.is_class("MeshInstance3D"): - _mesh_count += 1 - _analyze_mesh_instance(node) - - # CSG nodes can also have materials / meshes - if class_name in ["CSGCombiner3D", "CSGSphere3D", "CSGBox3D", "CSGCylinder3D", - "CSGTorus3D", "CSGPolygon3D", "CSGMesh3D"]: - _analyze_csg_node(node) - - # GeometryInstance3D base class - if node.is_class("GeometryInstance3D"): - var mat_override := node.get("material_override") if "material_override" in node else null - if mat_override != null: - _analyze_material(mat_override) - - for child in node.get_children(): - _analyze_node(child) - - -func _analyze_mesh_instance(mi: Node) -> void: - """Inspect a MeshInstance3D node for materials and UV2.""" - # Check mesh - if "mesh" in mi and mi.mesh != null: - var mesh = mi.mesh - _analyze_mesh(mesh, mi.name) - - # Surface material overrides - if "material_override" in mi and mi.material_override != null: - _analyze_material(mi.material_override) - - # Per-surface materials - if mi.has_method("get_surface_override_material"): - var surface_count := 0 - if "mesh" in mi and mi.mesh != null and mi.mesh.has_method("get_surface_count"): - surface_count = mi.mesh.get_surface_count() - for s in range(surface_count): - var mat := mi.get_surface_override_material(s) - if mat != null: - _analyze_material(mat) - - -func _analyze_csg_node(node: Node) -> void: - """Analyze materials on CSG nodes.""" - # CSG nodes have operation and material properties - if "material" in node and node.material != null: - _analyze_material(node.material) - - # Check CSGMesh3D which references a mesh - if node.get_class() == "CSGMesh3D" and "mesh" in node and node.mesh != null: - _analyze_mesh(node.mesh, node.name) - - -func _analyze_mesh(mesh, node_name: String) -> void: - """Analyze a mesh resource for UV2 and material slots.""" - if mesh == null: - return - - var mesh_id := mesh.resource_path if "resource_path" in mesh and mesh.resource_path != "" else str(mesh.get_instance_id()) - if _checked_resources.has(mesh_id): - return - _checked_resources[mesh_id] = true - - # Check for UV2 channel - var has_uv2 := false - if mesh.has_method("get_surface_count"): - var surface_count := mesh.get_surface_count() - for s in range(surface_count): - var arrays := mesh.surface_get_arrays(s) - if arrays is Array and arrays.size() > 0: - var uv2 := arrays[Mesh.ARRAY_TEX_UV2] as PackedVector2Array - if uv2 != null and uv2.size() > 0: - has_uv2 = true - - if has_uv2: - _meshes_with_uv2.append(node_name) - else: - _meshes_without_uv2.append(node_name) - - # Check materials on the mesh - if mesh.has_method("surface_get_material"): - var surface_count := mesh.get_surface_count() - for s in range(surface_count): - var mat := mesh.surface_get_material(s) - if mat != null: - _analyze_material(mat) - - -func _analyze_material(mat) -> void: - """Recursively analyze a material and its textures.""" - if mat == null: - return - - var mat_id := mat.resource_path if "resource_path" in mat and mat.resource_path != "" else str(mat.get_instance_id()) - if _checked_resources.has(mat_id): - return - _checked_resources[mat_id] = true - _total_materials += 1 - - var mat_class := mat.get_class() - - # StandardMaterial3D — check texture properties - if mat_class == "StandardMaterial3D" or mat_class == "ORMMaterial3D": - var tex_properties := [ - "albedo_texture", "metallic_texture", "roughness_texture", - "normal_texture", "ambient_occlusion_texture", "emission_texture", - "clearcoat_texture", "rim_texture", "transparency_texture", - "heightmap_texture", "refraction_texture", "detail_albedo_texture", - "detail_normal_texture", "detail_mask_texture", "subsurface_scattering_texture", - "backlight_texture" - ] - for prop in tex_properties: - if prop in mat: - var tex = mat.get(prop) - if tex != null: - _analyze_texture(tex) - - # ShaderMaterial — inspect shader parameters for textures - elif mat_class == "ShaderMaterial": - if mat.has_method("get_shader_parameter_list"): - var param_list := mat.get_shader_parameter_list() - for param in param_list: - var param_name := param.name if "name" in param else str(param) - var val = mat.get_shader_parameter(param_name) - if val != null and (val is Texture2D or val is Texture3D or val is TextureLayered): - _analyze_texture(val) - - # BaseMaterial3D (Godot 4 fallback) - elif mat.is_class("BaseMaterial3D"): - if "albedo_texture" in mat and mat.albedo_texture != null: - _analyze_texture(mat.albedo_texture) - if "metallic_texture" in mat and mat.metallic_texture != null: - _analyze_texture(mat.metallic_texture) - if "roughness_texture" in mat and mat.roughness_texture != null: - _analyze_texture(mat.roughness_texture) - if "normal_texture" in mat and mat.normal_texture != null: - _analyze_texture(mat.normal_texture) - - -func _analyze_texture(tex) -> void: - """Analyze a single texture resource for size, mipmaps, and format.""" - if tex == null: - return - - # Use resource path as unique key - var tex_path := "" - if "resource_path" in tex and tex.resource_path != "": - tex_path = tex.resource_path - else: - tex_path = str(tex.get_instance_id()) - - if _textures_checked.has(tex_path): - return - - var tex_class := tex.get_class() - var width := 0 - var height := 0 - var has_mipmaps := false - var format := -1 - var format_name := "Unknown" - - # Texture2D - if tex is Texture2D: - width = tex.get_width() - height = tex.get_height() - has_mipmaps = tex.has_mipmaps() if tex.has_method("has_mipmaps") else false - if tex.has_method("get_format"): - format = tex.get_format() - format_name = _get_format_name(format) - _total_textures += 1 - - # Texture3D - elif tex is Texture3D: - width = tex.get_width() - height = tex.get_height() - if tex.has_method("has_mipmaps"): - has_mipmaps = tex.has_mipmaps() - _total_textures += 1 - - # TextureLayered - elif tex is TextureLayered: - if tex.has_method("get_width"): - width = tex.get_width() - if tex.has_method("get_height"): - height = tex.get_height() - _total_textures += 1 - - var info := { - "path": tex_path, - "width": width, - "height": height, - "has_mipmaps": has_mipmaps, - "format": format_name, - "class": tex_class - } - _textures_checked[tex_path] = info - - # Estimate memory - var bpp := _bits_per_pixel(format) - _texture_memory_estimate += (width * height * bpp) / 8 - - # Check over-budget - var max_dim := maxi(width, height) - if max_dim > MAX_TEXTURE_SIZE: - _overbudget_textures.append(info) - - # Check mipmaps - if not has_mipmaps: - _no_mipmap_textures.append(info) - - -# --------------------------------------------------------------------------- -# Texture checks -# --------------------------------------------------------------------------- - -func _run_texture_checks() -> void: - """Validate texture size budget.""" - print("--- Texture Size Checks ---") - if _total_textures == 0: - _warn("No textures found in scene (may be expected for procedural materials)") - return - - _pass("Total textures found: " + str(_total_textures)) - - if _overbudget_textures.size() == 0: - _pass("All textures within " + MAX_TEXTURE_SIZE_LABEL + " limit") - else: - for tex_info in _overbudget_textures: - var dim := str(tex_info.width) + "x" + str(tex_info.height) - _fail("Texture over budget: " + _truncate_path(tex_info.path) + " (" + dim + ", max: " + MAX_TEXTURE_SIZE_LABEL + ")") - - -func _run_mipmap_checks() -> void: - """Validate that all textures have mipmaps enabled.""" - print("") - print("--- Mipmap Checks ---") - - if _no_mipmap_textures.size() == 0: - _pass("All textures have mipmaps enabled") - else: - for tex_info in _no_mipmap_textures: - var dim := str(tex_info.width) + "x" + str(tex_info.height) - _fail("Texture missing mipmaps: " + _truncate_path(tex_info.path) + " (" + dim + ", class: " + tex_info.class + ")") - - -func _run_uv2_checks() -> void: - """Validate UV2 channel presence on meshes.""" - print("") - print("--- UV2 Channel Checks ---") - - if _mesh_count == 0: - _warn("No MeshInstance3D nodes found") - return - - _pass("Meshes found: " + str(_mesh_count)) - - if _meshes_without_uv2.size() == 0: - _pass("All " + str(_mesh_count) + " meshes have UV2 channel (good for lightmapping)") - else: - for mesh_name in _meshes_without_uv2: - _fail("Mesh missing UV2 channel: " + mesh_name + " — lightmapping will not work correctly") - - -# --------------------------------------------------------------------------- -# Report -# --------------------------------------------------------------------------- - -func _print_texture_report() -> void: - """Print detailed texture report.""" - print("") - print("--- Texture Report ---") - print(" Total materials: ", _total_materials) - print(" Total textures: ", _total_textures) - print(" Over-budget textures: ", _overbudget_textures.size()) - print(" Missing mipmaps: ", _no_mipmap_textures.size()) - print(" Total meshes: ", _mesh_count) - print(" Meshes with UV2: ", _meshes_with_uv2.size()) - print(" Meshes without UV2: ", _meshes_without_uv2.size()) - print(" Est. texture memory: ", _format_bytes(_texture_memory_estimate)) - print("") - - # Print texture format distribution - var format_counts: Dictionary = {} - for tex_path in _textures_checked.keys(): - var info := _textures_checked[tex_path] as Dictionary - var fmt := info.format - if not format_counts.has(fmt): - format_counts[fmt] = 0 - format_counts[fmt] += 1 - - if format_counts.size() > 0: - print(" Texture format distribution:") - for fmt in format_counts.keys(): - print(" " + fmt + ": " + str(format_counts[fmt])) - print("") - - -func _truncate_path(path: String) -> String: - """Truncate a resource path to fit in a single line.""" - if path.length() > 60: - return "..." + path.substr(path.length() - 57) - return path - - -func _get_format_name(format_id: int) -> String: - """Map Godot image format enum to a human-readable name.""" - match format_id: - 0: return "L8" - 1: return "LA8" - 2: return "R8" - 3: return "RG8" - 4: return "RGB8" - 5: return "RGBA8" - 6: return "RGBA4444" - 7: return "RGBA5551" - 8: return "RF" - 9: return "RGF" - 10: return "RGBF" - 11: return "RGBAF" - 12: return "RH" - 13: return "RGH" - 14: return "RGBH" - 15: return "RGBAH" - 16: return "RGBE9995" - 17: return "DXT1 (BC1)" - 18: return "DXT3 (BC2)" - 19: return "DXT5 (BC3)" - 20: return "RGTC (BC4)" - 21: return "RGTC (BC5)" - 22: return "BPTC (BC6H)" - 23: return "BPTC (BC7)" - 24: return "ETC" - 25: return "ETC2 R11" - 26: return "ETC2 RG11" - 27: return "ETC2 RGB8" - 28: return "ETC2 RGBA8" - 29: return "PVRTC2" - 30: return "PVRTC4" - 31: return "ASTC 4x4" - 32: return "ASTC 8x8" - 33: return "Max" - return "Unknown(" + str(format_id) + ")" - - -func _bits_per_pixel(format_id: int) -> int: - """Estimate bits per pixel for a given format.""" - match format_id: - 0, 2: return 8 # L8, R8 - 1, 3: return 16 # LA8, RG8 - 4: return 24 # RGB8 - 5, 6, 7: return 32 # RGBA8, RGBA4444, RGBA5551 - 8: return 32 # RF - 9: return 64 # RGF - 10: return 96 # RGBF - 11: return 128 # RGBAF - 12: return 16 # RH (half) - 13: return 32 # RGH - 14: return 48 # RGBH - 15: return 64 # RGBAH - 16: return 32 # RGBE9995 - 17, 18, 19: return 4 # DXT/BC compressed — 4bpp - 20, 21: return 4 # BC4/BC5 — 4bpp (BC5 is 8bpp but rare) - 22: return 8 # BC6H — 8bpp - 23: return 8 # BC7 — 8bpp - 24, 25, 26, 27, 28: return 4 # ETC/ETC2 — 4bpp - 29, 30: return 2 # PVRTC — 2bpp - 31: return 8 # ASTC 4x4 — 8bpp - 32: return 2 # ASTC 8x8 — 2bpp - return 32 - - -func _format_bytes(bytes: int) -> String: - """Format bytes into human-readable string.""" - if bytes < 1024: - return str(bytes) + " B" - elif bytes < 1024 * 1024: - return str(stepify(float(bytes) / 1024.0, 0.1)) + " KB" - else: - return str(stepify(float(bytes) / (1024.0 * 1024.0), 0.1)) + " MB" - - -func maxi(a: int, b: int) -> int: - return a if a > b else b - - -func mini(a: int, b: int) -> int: - return a if a < b else b - - -# --------------------------------------------------------------------------- -# Summary -# --------------------------------------------------------------------------- - -func _print_summary() -> void: - """Print final summary.""" - print("==========================================") - print(" TEXTURE VALIDATION SUMMARY") - print("==========================================") - print(" Scene: ", _scene_path) - print(" Textures checked: ", _total_textures) - print(" Materials checked: ", _total_materials) - print(" Over-budget textures: ", _overbudget_textures.size()) - print(" Missing mipmaps: ", _no_mipmap_textures.size()) - print(" Meshes w/o UV2: ", _meshes_without_uv2.size()) - print("------------------------------------------") - print(" Passed: ", _pass_count) - print(" Failed: ", _fail_count) - print(" Warnings: ", _warning_count) - print("------------------------------------------") - if _fail_count > 0: - print(" RESULT: FAILED ❌") - printerr("Validation FAILED — ", _fail_count, " texture check(s) failed.") - else: - print(" RESULT: PASSED ✅") - print("==========================================") - print("") diff --git a/client/scripts/validate_textures.gd.uid b/client/scripts/validate_textures.gd.uid deleted file mode 100644 index 324dca3..0000000 --- a/client/scripts/validate_textures.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bas55o1773n21 diff --git a/client/template/HUD ASSETS/crosshair001.png b/client/template/HUD ASSETS/crosshair001.png deleted file mode 100644 index f866490..0000000 Binary files a/client/template/HUD ASSETS/crosshair001.png and /dev/null differ diff --git a/client/template/HUD ASSETS/crosshair046.png b/client/template/HUD ASSETS/crosshair046.png deleted file mode 100644 index 2728041..0000000 Binary files a/client/template/HUD ASSETS/crosshair046.png and /dev/null differ diff --git a/client/template/Spawnable_Objects/Clips/blaster_L_clip.tscn b/client/template/Spawnable_Objects/Clips/blaster_L_clip.tscn deleted file mode 100644 index 7b7e65d..0000000 --- a/client/template/Spawnable_Objects/Clips/blaster_L_clip.tscn +++ /dev/null @@ -1,127 +0,0 @@ -[gd_scene load_steps=11 format=4 uid="uid://br6g3dtbytwpu"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_mpf05"] -[ext_resource type="Script" uid="uid://bw4j1fbww4k8s" path="res://client/template/scripts/Weapon_State_Machine/WeaponSlot.gd" id="2_vl0jl"] -[ext_resource type="Resource" uid="uid://bwrs8ensewkgc" path="res://client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterL.tres" id="3_bkkd8"] - -[sub_resource type="Resource" id="Resource_3vvaw"] -resource_local_to_scene = true -script = ExtResource("2_vl0jl") -weapon = ExtResource("3_bkkd8") -current_ammo = 30 -reserve_ammo = 0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_761wa"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.454902, 0.431373, 0.403922, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_757o3"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.454902, 0.431373, 0.403922, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0y2bu"] -resource_name = "yellow" -vertex_color_use_as_albedo = true -albedo_color = Color(0.533333, 0.984314, 0.976471, 1) -metallic = 1.0 -emission_enabled = true -emission = Color(0.282353, 0.568627, 0.541176, 1) -emission_energy_multiplier = 9.4 - -[sub_resource type="ArrayMesh" id="ArrayMesh_bjg0s"] -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYAAwABAAgACAAJAAMADAAKAAsACwANAAwADAAOAA8ADwAKAAwAEgAQABEAEQATABIAEgAJAAgACAAQABIAEQAAAAIAAgATABEACwAEAAYABgANAAsAFQAUABEAEQAWABUAEQAQABYAEAAIABYAAAARABQAFAAXAAAAFwABAAAAFwAYAAEAGAAIAAEAGAAWAAgAGgAZAAYABgAbABoABgAHABsABwAcABsABwAOABwADgAMABwADQAGABkAGQAdAA0AHQAMAA0AHQAcAAwAGQAaABQAFAAVABkAFgAYABwAHAAdABYAFQAWAB4AHgAZABUAHgAfABkAHwAgABkAIQAeABYAFgAdACEAHQAgACEAHQAZACAAGwAXABQAFAAaABsAHAAYABcAFwAbABwABwAFAA8ADwAOAAcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 18, -"index_data": PackedByteArray("EgATAAIAAgADABIAAwAJABIABQAEAAsACwAKAAUACgAPAAUA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 138, -"index_data": PackedByteArray("IgAhACAAIAAjACIAIwAkACIAIwAlACQAJQAmACQAJgAnACQAJgAoACcAJgApACgAKQAqACgAKQArACoAKwAsACoALgAtACcAJwAoAC4AJQAvADAAMAAmACUAMQAfAB4AHgAyADEAMgAvADEAMgAzAC8AMwAwAC8AMwAtADAALQA0ADAALQAuADQALgA1ADQALgA2ADUANgA3ADUAJwAtADMAMwAkACcAIgAyAB4AHgAhACIANQA3ACwALAArADUANAA1ACsAKwApADQAIwAxAC8ALwAlACMAIAAfADEAMQAjACAAMAA0ACkAKQAmADAAJAAzADIAMgAiACQANgAuACgAKAAqADYANwA2ACoAKgAsADcA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_wf2rx"] -resource_name = "clipA_Mesh clipA" -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJQAoACcAKAApACcAKgAlACQAJAArACoAKwAsACoAKwAtACwALQApACwALQAnACkAMAAuAC8ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANgAvAC4ALgA3ADYANwA1ADYANwAzADUAOgA4ADkAOQA7ADoAPgA8AD0APQA/AD4AQgBAAEEAQQBDAEIAQQBEAEMARABFAEMARgBBAEAAQABHAEYARwBFAEYARwBDAEUASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIA"), -"material": SubResource("StandardMaterial3D_761wa"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v/9///////+//3///////7//f///////v/9///////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3//f////7//f/9/////v/9//3////+//3//f////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7////9//////////3/+////////f/7///////9//v///////3/+////////f/7/AID///9//v8AgP///3///wCA////f/////////9///////9//3////+//3//f////7//f/9/////v/9//3////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f///////v/9///////+//3///////7//f////v//v/9////+//+//3///////7//f////v//v/9///////+//3+qKv///7//f6oq////v/9/qir///+//3+qKv///7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9///////+//3///////7//f///////v/9///////+/AAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 18, -"index_data": PackedByteArray("VgBUAFUAVQBXAFYAVwBYAFYAWwBZAFoAWgBcAFsAXABdAFsA"), -"material": SubResource("StandardMaterial3D_757o3"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v////3/+////////f/////////9//v///////3//////////f///////////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 138, -"index_data": PackedByteArray("YABeAF8AXwBhAGAAYQBiAGAAYQBjAGIAYwBkAGIAZABlAGIAZABmAGUAZABnAGYAZwBoAGYAZwBpAGgAaQBqAGgAbQBrAGwAbABuAG0AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAdgB3AHUAdgB4AHcAeAB5AHcAeAB6AHkAegB7AHkAegB8AHsAfAB9AHsAfAB+AH0AfgB/AH0AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYA"), -"material": SubResource("StandardMaterial3D_0y2bu"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/8//7//f/+//z//v/9//78lUSXR/3//vyVRJdH/f/+/JdHZrv//////v/+//////yXR2a7//////7//v///////f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/8//7//f/+/2S7Zrv9//7//P/+//3//v9ku2a7/f/+/DBsMm/9//7/kDuOO/3//vwwbDJv/f/+/5A7jjv9//7//f/////////9/////////DJvy5P////8Mm/Lk/////wyb8uT/////DJvy5P/////ZriXR/////9muJdH/////8uQMm/////8l0dmu//////LkDJv/////JdHZrv////8a8eOO//////LkDJv/////GvHjjv/////y5Ayb/////9muJdH/////2a4l0f//////v/+///////+//7//////2S7Zrv9//78MGwyb/3//v9ku2a7/f/+/DBsMm/9//78lUSXR/3//vyVRJdH/f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//7//f////3//v/9/////f/+/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_bjg0s") - -[sub_resource type="BoxShape3D" id="BoxShape3D_y1cnp"] -size = Vector3(0.0599088, 0.250772, 0.143523) - -[node name="blasterL_Clip" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 5 -script = ExtResource("1_mpf05") -weapon = SubResource("Resource_3vvaw") -TYPE = "Ammo" - -[node name="clipA2" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1.21, 0, 0, 0, 1, 0, 0, 0) -mesh = SubResource("ArrayMesh_wf2rx") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("BoxShape3D_y1cnp") diff --git a/client/template/Spawnable_Objects/Clips/blaster_i_clip.tscn b/client/template/Spawnable_Objects/Clips/blaster_i_clip.tscn deleted file mode 100644 index 5a701d5..0000000 --- a/client/template/Spawnable_Objects/Clips/blaster_i_clip.tscn +++ /dev/null @@ -1,124 +0,0 @@ -[gd_scene load_steps=11 format=4 uid="uid://dl236agqx8rjp"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_6xwda"] -[ext_resource type="Script" uid="uid://bw4j1fbww4k8s" path="res://client/template/scripts/Weapon_State_Machine/WeaponSlot.gd" id="2_qrntt"] -[ext_resource type="Resource" uid="uid://yc1f2j7pl4vr" path="res://client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterI.tres" id="3_ot8uw"] - -[sub_resource type="Resource" id="Resource_yxf5f"] -resource_local_to_scene = true -script = ExtResource("2_qrntt") -weapon = ExtResource("3_ot8uw") -current_ammo = 30 -reserve_ammo = 0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n3ik4"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fil5e"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bfdxb"] -resource_name = "yellow" -vertex_color_use_as_albedo = true -albedo_color = Color(0.998274, 0.894448, 0.505969, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_j3k8o"] -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYAAwABAAgACAAJAAMADAAKAAsACwANAAwADAAOAA8ADwAKAAwAEgAQABEAEQATABIAEgAJAAgACAAQABIAEQAAAAIAAgATABEACwAEAAYABgANAAsAFQAUABEAEQAWABUAEQAQABYAEAAIABYAAAARABQAFAAXAAAAFwABAAAAFwAYAAEAGAAIAAEAGAAWAAgAGgAZAAYABgAbABoABgAHABsABwAcABsABwAOABwADgAMABwADQAGABkAGQAdAA0AHQAMAA0AHQAcAAwAGQAaABQAFAAVABkAFgAYABwAHAAdABYAFQAWAB4AHgAZABUAHgAfABkAHwAgABkAIQAeABYAFgAdACEAHQAgACEAHQAZACAAGwAXABQAFAAaABsAHAAYABcAFwAbABwABwAFAA8ADwAOAAcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 18, -"index_data": PackedByteArray("EgATAAIAAgADABIAAwAJABIABQAEAAsACwAKAAUACgAPAAUA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 138, -"index_data": PackedByteArray("IgAhACAAIAAjACIAIwAkACIAIwAlACQAJQAmACQAJgAnACQAJgAoACcAJgApACgAKQAqACgAKQArACoAKwAsACoALgAtACcAJwAoAC4AJQAvADAAMAAmACUAMQAfAB4AHgAyADEAMgAvADEAMgAzAC8AMwAwAC8AMwAtADAALQA0ADAALQAuADQALgA1ADQALgA2ADUANgA3ADUAJwAtADMAMwAkACcAIgAyAB4AHgAhACIANQA3ACwALAArADUANAA1ACsAKwApADQAIwAxAC8ALwAlACMAIAAfADEAMQAjACAAMAA0ACkAKQAmADAAJAAzADIAMgAiACQANgAuACgAKAAqADYANwA2ACoAKgAsADcA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_py3xv"] -resource_name = "clipA_Mesh clipA" -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJQAoACcAKAApACcAKgAlACQAJAArACoAKwAsACoAKwAtACwALQApACwALQAnACkAMAAuAC8ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANgAvAC4ALgA3ADYANwA1ADYANwAzADUAOgA4ADkAOQA7ADoAPgA8AD0APQA/AD4AQgBAAEEAQQBDAEIAQQBEAEMARABFAEMARgBBAEAAQABHAEYARwBFAEYARwBDAEUASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIA"), -"material": SubResource("StandardMaterial3D_n3ik4"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v/9///////+//3///////7//f///////v/9///////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3//f////7//f/9/////v/9//3////+//3//f////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7////9//////////3/+////////f/7///////9//v///////3/+////////f/7/AID///9//v8AgP///3///wCA////f/////////9///////9//3////+//3//f////7//f/9/////v/9//3////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f///////v/9///////+//3///////7//f////v//v/9////+//+//3///////7//f////v//v/9///////+//3+qKv///7//f6oq////v/9/qir///+//3+qKv///7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9///////+//3///////7//f///////v/9///////+/AAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 18, -"index_data": PackedByteArray("VgBUAFUAVQBXAFYAVwBYAFYAWwBZAFoAWgBcAFsAXABdAFsA"), -"material": SubResource("StandardMaterial3D_fil5e"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v////3/+////////f/////////9//v///////3//////////f///////////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 138, -"index_data": PackedByteArray("YABeAF8AXwBhAGAAYQBiAGAAYQBjAGIAYwBkAGIAZABlAGIAZABmAGUAZABnAGYAZwBoAGYAZwBpAGgAaQBqAGgAbQBrAGwAbABuAG0AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAdgB3AHUAdgB4AHcAeAB5AHcAeAB6AHkAegB7AHkAegB8AHsAfAB9AHsAfAB+AH0AfgB/AH0AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYA"), -"material": SubResource("StandardMaterial3D_bfdxb"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/8//7//f/+//z//v/9//78lUSXR/3//vyVRJdH/f/+/JdHZrv//////v/+//////yXR2a7//////7//v///////f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/8//7//f/+/2S7Zrv9//7//P/+//3//v9ku2a7/f/+/DBsMm/9//7/kDuOO/3//vwwbDJv/f/+/5A7jjv9//7//f/////////9/////////DJvy5P////8Mm/Lk/////wyb8uT/////DJvy5P/////ZriXR/////9muJdH/////8uQMm/////8l0dmu//////LkDJv/////JdHZrv////8a8eOO//////LkDJv/////GvHjjv/////y5Ayb/////9muJdH/////2a4l0f//////v/+///////+//7//////2S7Zrv9//78MGwyb/3//v9ku2a7/f/+/DBsMm/9//78lUSXR/3//vyVRJdH/f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//7//f////3//v/9/////f/+/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_j3k8o") - -[sub_resource type="BoxShape3D" id="BoxShape3D_y1cnp"] -size = Vector3(0.0599088, 0.407185, 0.143523) - -[node name="blasterI_Clip" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 5 -script = ExtResource("1_6xwda") -weapon = SubResource("Resource_yxf5f") -TYPE = "Ammo" - -[node name="clipA2" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1.936, 0, 0, 0, 0.99, 0, 0, 0) -mesh = SubResource("ArrayMesh_py3xv") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("BoxShape3D_y1cnp") diff --git a/client/template/Spawnable_Objects/Clips/blaster_m_clip.tscn b/client/template/Spawnable_Objects/Clips/blaster_m_clip.tscn deleted file mode 100644 index f02b442..0000000 --- a/client/template/Spawnable_Objects/Clips/blaster_m_clip.tscn +++ /dev/null @@ -1,122 +0,0 @@ -[gd_scene load_steps=11 format=4 uid="uid://cgt2lt4ultlaq"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_qqhy0"] -[ext_resource type="Script" uid="uid://bw4j1fbww4k8s" path="res://client/template/scripts/Weapon_State_Machine/WeaponSlot.gd" id="2_ybq5e"] -[ext_resource type="Resource" uid="uid://cd8msvjysh2uv" path="res://client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterM.tres" id="3_parqs"] - -[sub_resource type="Resource" id="Resource_jnsso"] -resource_local_to_scene = true -script = ExtResource("2_ybq5e") -weapon = ExtResource("3_parqs") -current_ammo = 9 -reserve_ammo = 0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0eh6a"] -resource_name = "metal" -albedo_color = Color(1, 0.894118, 0.505882, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8qvhc"] -resource_name = "darkMetal" -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mihsn"] -resource_name = "yellow" -albedo_color = Color(0.998274, 0.894448, 0.505969, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_68l5q"] -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34896613377, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYAAwABAAgACAAJAAMADAAKAAsACwANAAwADAAOAA8ADwAKAAwAEgAQABEAEQATABIAEgAJAAgACAAQABIAEQAAAAIAAgATABEACwAEAAYABgANAAsAFQAUABEAEQAWABUAEQAQABYAEAAIABYAAAARABQAFAAXAAAAFwABAAAAFwAYAAEAGAAIAAEAGAAWAAgAGgAZAAYABgAbABoABgAHABsABwAcABsABwAOABwADgAMABwADQAGABkAGQAdAA0AHQAMAA0AHQAcAAwAGQAaABQAFAAVABkAFgAYABwAHAAdABYAFQAWAB4AHgAZABUAHgAfABkAHwAgABkAIQAeABYAFgAdACEAHQAgACEAHQAZACAAGwAXABQAFAAaABsAHAAYABcAFwAbABwABwAFAA8ADwAOAAcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("AABxLszMAAAAAP8fk54AAFVVcS7MzAAAVVX/H5OeAACpqnEuzMwAAKmq/x+TngAA//9xLszMAAD///8fk54AAAAA/x8zMwAAVVX/HzMzAACpqlTVMzMAAKmqVNXMzAAA//9U1TMzAAD//1TVzMwAAP///x8zMwAAqar/HzMzAAAAAFTVMzMAAAAAVNXMzAAAVVVU1TMzAABVVVTVzMwAAAAAqhr//wAAAABU9f//AAAAAFT1AAAAAAAAAACpqgAAAAAAAAAAAAD//1T1//8AAP//qhr//wAA//8AAKmqAAD//wAAAAAAAP//VPUAAAAAVVVU9czMAACpqlT1zMwAAKmqVPUzMwAAVVVU9TMzAADJVhf4MzMAADWpF/gzMwAADFup+jMzAADypKn6MzMAACqe3/wzMwAA1GHf/DMzAACqapH+MzMAAFSVkf4zMwAA9HSh/zMzAAAKi6H/MzMAAP9///8zMwAA1GHf/MzMAACqapH+zMwAAPKkqfrMzAAAKp7f/MzMAAA1qRf4zMwAAMlWF/jMzAAADFup+szMAABUlZH+zMwAAAqLof/MzAAA9HSh/8zMAAD/f///zMwAAA==") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34896613377, -"index_count": 18, -"index_data": PackedByteArray("EgATAAIAAgADABIAAwAJABIABQAEAAsACwAKAAUACgAPAAUA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("AABxLszMAAAAAP8fk54AAFVVcS7MzAAAVVX/H5OeAACpqnEuzMwAAKmq/x+TngAA//9xLszMAAD///8fk54AAAAA/x8zMwAAVVX/HzMzAACpqlTVMzMAAKmqVNXMzAAA//9U1TMzAAD//1TVzMwAAP///x8zMwAAqar/HzMzAAAAAFTVMzMAAAAAVNXMzAAAVVVU1TMzAABVVVTVzMwAAAAAqhr//wAAAABU9f//AAAAAFT1AAAAAAAAAACpqgAAAAAAAAAAAAD//1T1//8AAP//qhr//wAA//8AAKmqAAD//wAAAAAAAP//VPUAAAAAVVVU9czMAACpqlT1zMwAAKmqVPUzMwAAVVVU9TMzAADJVhf4MzMAADWpF/gzMwAADFup+jMzAADypKn6MzMAACqe3/wzMwAA1GHf/DMzAACqapH+MzMAAFSVkf4zMwAA9HSh/zMzAAAKi6H/MzMAAP9///8zMwAA1GHf/MzMAACqapH+zMwAAPKkqfrMzAAAKp7f/MzMAAA1qRf4zMwAAMlWF/jMzAAADFup+szMAABUlZH+zMwAAAqLof/MzAAA9HSh/8zMAAD/f///zMwAAA==") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34896613377, -"index_count": 138, -"index_data": PackedByteArray("IgAhACAAIAAjACIAIwAkACIAIwAlACQAJQAmACQAJgAnACQAJgAoACcAJgApACgAKQAqACgAKQArACoAKwAsACoALgAtACcAJwAoAC4AJQAvADAAMAAmACUAMQAfAB4AHgAyADEAMgAvADEAMgAzAC8AMwAwAC8AMwAtADAALQA0ADAALQAuADQALgA1ADQALgA2ADUANgA3ADUAJwAtADMAMwAkACcAIgAyAB4AHgAhACIANQA3ACwALAArADUANAA1ACsAKwApADQAIwAxAC8ALwAlACMAIAAfADEAMQAjACAAMAA0ACkAKQAmADAAJAAzADIAMgAiACQANgAuACgAKAAqADYANwA2ACoAKgAsADcA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("AABxLszMAAAAAP8fk54AAFVVcS7MzAAAVVX/H5OeAACpqnEuzMwAAKmq/x+TngAA//9xLszMAAD///8fk54AAAAA/x8zMwAAVVX/HzMzAACpqlTVMzMAAKmqVNXMzAAA//9U1TMzAAD//1TVzMwAAP///x8zMwAAqar/HzMzAAAAAFTVMzMAAAAAVNXMzAAAVVVU1TMzAABVVVTVzMwAAAAAqhr//wAAAABU9f//AAAAAFT1AAAAAAAAAACpqgAAAAAAAAAAAAD//1T1//8AAP//qhr//wAA//8AAKmqAAD//wAAAAAAAP//VPUAAAAAVVVU9czMAACpqlT1zMwAAKmqVPUzMwAAVVVU9TMzAADJVhf4MzMAADWpF/gzMwAADFup+jMzAADypKn6MzMAACqe3/wzMwAA1GHf/DMzAACqapH+MzMAAFSVkf4zMwAA9HSh/zMzAAAKi6H/MzMAAP9///8zMwAA1GHf/MzMAACqapH+zMwAAPKkqfrMzAAAKp7f/MzMAAA1qRf4zMwAAMlWF/jMzAAADFup+szMAABUlZH+zMwAAAqLof/MzAAA9HSh/8zMAAD/f///zMwAAA==") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_5ckjg"] -resource_name = "clipA_Mesh clipA" -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("MrMGkTKzrqsQkQaREJGuq+5uBpHubq6rzEwGkcxMrqvMTCGmzEy+bu5uIabubr5u7m6+bu5u+L3MTL5uzEz4vTKzluUQkZblMrPuTxCR7k8ys75uMrP4vRCRvm4Qkfi97m6W5cxMluXubu5PzEzuTzKzqtkQkarZMrPuTxCR7k/ubqrZzEyq2e5u7k/MTO5P///86cvM7k///4U1AACFNTMz7k8zM5bly8yq2aqq//+TnpblAAD//wAAhTUzM6rZAAD86VRV//9rYZbl/////8vMluXLzO5PMzPuT///hTUys/zpzEz86TKzhTXMTIU1MrP//8xM//8ys4U1zEyFNcxMVVTubvi9zExh2DKzYdgQkfi9EJG+bu5uvm4ys1VUzEzqscxMtIAys+qxMrO0gDKzVVQys12szExVVMxMXawQkSGmEJG+bjKzIaYys75uy8zuT8vMqtkzM+5Pk56W5TMzluUzM6rZMzPuT2thluXLzO5Py8yW5RCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMe5zTC8QjEwvh4jmLXd35i1qhAUtlHsFLf9/uCzLzI5cMzOOXMvMQlozM0JaMzOuSjMzYkjLzK5Ky8xiSBCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMRCMTC/uc0wvh4jmLXd35i1qhAUtlHsFLf9/uCzLzGJIy8yuSjMzYkgzM65Ky8wzNcvMgDczMzM1MzOANzMzkYjLzJGIMzPeisvM3oozMyZwy8wmcDMzc3LLzHNyMzMLPjMzvjvLzAs+y8y+OzMzgDczMzM1y8yAN8vMMzUzM0Jay8xCWjMzjlzLzI5cy8y+O8vMCz4zM747MzMLPsvMc3IzM3Nyy8wmcDMzJnDLzN6KMzPeisvMkYgzM5GI"), -"format": 34896613399, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJQAoACcAKAApACcAKgAlACQAJAArACoAKwAsACoAKwAtACwALQApACwALQAnACkAMAAuAC8ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANgAvAC4ALgA3ADYANwA1ADYANwAzADUAOgA4ADkAOQA7ADoAPgA8AD0APQA/AD4AQgBAAEEAQQBDAEIAQQBEAEMARABFAEMARgBBAEAAQABHAEYARwBFAEYARwBDAEUASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIA"), -"material": SubResource("StandardMaterial3D_0eh6a"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(5.90551, 11.4488, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("AABxLszM//8AAP8fk57//1VVcS7MzP//VVX/H5Oe//+pqnEuzMz//6mq/x+Tnv////9xLszM//////8fk57//wAA/x+Tnv+/AAD/HzMz/79VVf8fk57/v1VV/x8zM/+/qapU1TMz//+pqlTVzMz/////VNUzM/////9U1czM//////8fMzP/f6mq/x8zM/9///9U1TMz/3+pqlTVMzP/fwAAVNUzM///AABU1czM//9VVVTVMzP//1VVVNXMzP//VVX/HzMz/38AAP8fMzP/f1VVVNUzM/9/AABU1TMz/38AAHEuzMz//1VVcS7MzP//AABU1czM//9VVVTVzMz//6mqcS7MzP////9xLszM//+pqlTVzMz/////VNXMzP//AACqGv///78AAFTVzMz/vwAAVPX///+/AABU9QAA/78AAFTVMzP/vwAA/x8zM/+/AABxLszM/78AAAAAqar/vwAA/x+Tnv+/AAAAAAAA/7///1T1////v///cS7MzP+///+qGv///7///wAAqar/v////x+Tnv+///8AAAAA/7////8fMzP/v///VNUzM/+///9U1czM/7///1T1AAD/v///qhr///9/AACqGv///3///1T1////fwAAVPX///9/AAAAAAAA/////wAAAAD//wAAVPUAAP////9U9QAA//8AAFT1AAD/v1VVVPXMzP+/AABU9f///7///1T1////v6mqVPXMzP+/qapU9TMz/79VVVT1MzP/v///VPUAAP+/AAAAAKmqG60AAKoa//8brf//AACpqhut//+qGv//G60AAAAAAAD//wAAAACpqv////8AAAAA/////wAAqar//6mq/x+Tnv+/qar/HzMz/7////8fk57/v////x8zM/+/VVVU1czMVNVVVXEuzMxU1VVVVNUzM1TVVVX/H5OeVNVVVf8fMzNU1amqcS7MzFTVqapU1czMVNWpqv8fk55U1amqVNUzM1TVqar/HzMzVNVVVVT1MzP//6mqVPUzM///yVYX+DMz//81qRf4MzP//wxbqfozM///8qSp+jMz//8qnt/8MzP//9Rh3/wzM///qmqR/jMz//9UlZH+MzP///R0of8zM///Couh/zMz////f///MzP//9Rh3/zMzFTV1GHf/DMzVNWqapH+zMxU1apqkf4zM1TV8qSp+szMVNUqnt/8zMxU1fKkqfozM1TVKp7f/DMzVNWpqlT1zMz//1VVVPXMzP//NakX+MzM///JVhf4zMz///KkqfrMzP//DFup+szM//8qnt/8zMz//9Rh3/zMzP//VJWR/szM//+qapH+zMz//wqLof/MzP//9HSh/8zM////f///zMz//9Rh3/zMzFTVDFup+szMVNXUYd/8MzNU1QxbqfozM1TVyVYX+MzMVNVVVVT1zMxU1clWF/gzM1TVVVVU9TMzVNX/f///zMxU1f9///8zM1TVCouh/8zMVNUKi6H/MzNU1QqLof/MzFTVCouh/zMzVNVUlZH+zMxU1VSVkf4zM1TVNakX+MzMVNXypKn6zMxU1TWpF/gzM1TV8qSp+jMzVNWpqlT1zMxU1TWpF/jMzFTVqapU9TMzVNU1qRf4MzNU1VSVkf7MzFTVVJWR/jMzVNUqnt/8zMxU1Sqe3/wzM1TVDFup+szMVNXJVhf4zMxU1QxbqfozM1TVyVYX+DMzVNWqapH+zMxU1apqkf4zM1TV9HSh/8zMVNX0dKH/MzNU1fR0of/MzFTV9HSh/zMzVNX/f///zMxU1f9///8zM1TV/38az/9/Gs//fxrP/38az/9/Gs//fxrP/38az/9/Gs////9/////f////3////9//3//P/9//z//f/8//3//P/9/////f////3////9/////f/8//3//P/9//z//f/8//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3/+//9/////f////3////9/////f/7//3/+//9//v//f/7//3/+//9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3///////3/+//9/////f////3/+//9/////f/7//3////9/AAD/fwAA/38AAP9/AAD/f/9//z//f/8//3//P/9//z////9/////f////3////9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////v/+//7//vyXR2a4l0dmu2a7ZLv+//z/Zrtku/7//P/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//v/+/2a4l0f+//7/ZriXRDJvy5OOOGvEMm/Lk444a8f///3////9/8uTyZPLk8mTy5PJk8uTyZCXRJVEl0SVRDJsMG9mu2S4Mmwwb2a7ZLuOO5A4Mmwwb447kDgybDBsl0SVRJdElUf+//z//v/8/2a4l0Qyb8uTZriXRDJvy5CXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("MrMGkTKzrqsQkQaREJGuq+5uBpHubq6rzEwGkcxMrqvMTCGmzEy+bu5uIabubr5u7m6+bu5u+L3MTL5uzEz4vTKzluUQkZblMrPuTxCR7k8ys75uMrP4vRCRvm4Qkfi97m6W5cxMluXubu5PzEzuTzKzqtkQkarZMrPuTxCR7k/ubqrZzEyq2e5u7k/MTO5P///86cvM7k///4U1AACFNTMz7k8zM5bly8yq2aqq//+TnpblAAD//wAAhTUzM6rZAAD86VRV//9rYZbl/////8vMluXLzO5PMzPuT///hTUys/zpzEz86TKzhTXMTIU1MrP//8xM//8ys4U1zEyFNcxMVVTubvi9zExh2DKzYdgQkfi9EJG+bu5uvm4ys1VUzEzqscxMtIAys+qxMrO0gDKzVVQys12szExVVMxMXawQkSGmEJG+bjKzIaYys75uy8zuT8vMqtkzM+5Pk56W5TMzluUzM6rZMzPuT2thluXLzO5Py8yW5RCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMe5zTC8QjEwvh4jmLXd35i1qhAUtlHsFLf9/uCzLzI5cMzOOXMvMQlozM0JaMzOuSjMzYkjLzK5Ky8xiSBCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMRCMTC/uc0wvh4jmLXd35i1qhAUtlHsFLf9/uCzLzGJIy8yuSjMzYkgzM65Ky8wzNcvMgDczMzM1MzOANzMzkYjLzJGIMzPeisvM3oozMyZwy8wmcDMzc3LLzHNyMzMLPjMzvjvLzAs+y8y+OzMzgDczMzM1y8yAN8vMMzUzM0Jay8xCWjMzjlzLzI5cy8y+O8vMCz4zM747MzMLPsvMc3IzM3Nyy8wmcDMzJnDLzN6KMzPeisvMkYgzM5GI"), -"format": 34896613399, -"index_count": 18, -"index_data": PackedByteArray("VgBUAFUAVQBXAFYAVwBYAFYAWwBZAFoAWgBcAFsAXABdAFsA"), -"material": SubResource("StandardMaterial3D_8qvhc"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(5.90551, 11.4488, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("AABxLszM9eAAAP8fk5714FVVcS7MzPXgVVX/H5Oe9eCpqnEuzMz14Kmq/x+TnvXg//9xLszM9eD///8fk5714AAA/x+TnlTVAAD/HzMzVNVVVf8fk55U1VVV/x8zM1TVqapU1TMzVNWpqlTVzMxU1f//VNUzM1TV//9U1czMVNX///8fMzP//6mq/x8zM/////9U1TMz//+pqlTVMzP//wAAVNUzM1TVAABU1czMVNVVVVTVMzNU1VVVVNXMzFTVVVX/HzMz//8AAP8fMzP//1VVVNUzM///AABU1TMz//8AAHEuzMz//1VVcS7MzP//AABU1czM//9VVVTVzMz//6mqcS7MzP////9xLszM//+pqlTVzMz/////VNXMzP//AACqGv//VNUAAFTVzMxU1QAAVPX//1TVAABU9QAAVNUAAFTVMzNU1QAA/x8zM1TVAABxLszMVNUAAAAAqapU1QAA/x+TnlTVAAAAAAAAVNX//1T1//9U1f//cS7MzFTV//+qGv//VNX//wAAqapU1f///x+TnlTV//8AAAAAVNX///8fMzNU1f//VNUzM1TV//9U1czMVNX//1T1AABU1f//qhr/////AACqGv///////1T1/////wAAVPX/////AAAAAAAA/////wAAAAD//wAAVPUAAP////9U9QAA//8AAFT1AABU1VVVVPXMzFTVAABU9f//VNX//1T1//9U1amqVPXMzFTVqapU9TMzVNVVVVT1MzNU1f//VPUAAFTVAAAAAKmqaMsAAKoa//9oy///AACpqmjL//+qGv//aMsAAAAAAABU1QAAAACpqlTV//8AAAAAVNX//wAAqapU1amq/x+TnlTVqar/HzMzVNX///8fk55U1f///x8zM1TVVVVU1czM/79VVXEuzMz/v1VVVNUzM/+/VVX/H5Oe/79VVf8fMzP/v6mqcS7MzP+/qapU1czM/7+pqv8fk57/v6mqVNUzM/+/qar/HzMz/79VVVT1MzP//6mqVPUzM///yVYX+DMz//81qRf4MzP//wxbqfozM///8qSp+jMz//8qnt/8MzP//9Rh3/wzM///qmqR/jMz//9UlZH+MzP///R0of8zM///Couh/zMz////f///MzP//9Rh3/zMzFTV1GHf/DMzVNWqapH+zMxU1apqkf4zM1TV8qSp+szMVNUqnt/8zMxU1fKkqfozM1TVKp7f/DMzVNWpqlT1zMz//1VVVPXMzP//NakX+MzM///JVhf4zMz///KkqfrMzP//DFup+szM//8qnt/8zMz//9Rh3/zMzP//VJWR/szM//+qapH+zMz//wqLof/MzP//9HSh/8zM////f///zMz//9Rh3/zMzFTVDFup+szMVNXUYd/8MzNU1QxbqfozM1TVyVYX+MzMVNVVVVT1zMxU1clWF/gzM1TVVVVU9TMzVNX/f///zMxU1f9///8zM1TVCouh/8zMVNUKi6H/MzNU1QqLof/MzFTVCouh/zMzVNVUlZH+zMxU1VSVkf4zM1TVNakX+MzMVNXypKn6zMxU1TWpF/gzM1TV8qSp+jMzVNWpqlT1zMxU1TWpF/jMzFTVqapU9TMzVNU1qRf4MzNU1VSVkf7MzFTVVJWR/jMzVNUqnt/8zMxU1Sqe3/wzM1TVDFup+szMVNXJVhf4zMxU1QxbqfozM1TVyVYX+DMzVNWqapH+zMxU1apqkf4zM1TV9HSh/8zMVNX0dKH/MzNU1fR0of/MzFTV9HSh/zMzVNX/f///zMxU1f9///8zM1TV////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9//v//f////3/+//9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////v/+//7//vyXR2a4l0dmu2a7ZLv+//z/Zrtku/7//P/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//v/+/2a4l0f+//7/ZriXRDJvy5OOOGvEMm/Lk444a8f///3////9/8uTyZPLk8mTy5PJk8uTyZCXRJVEl0SVRDJsMG9mu2S4Mmwwb2a7ZLuOO5A4Mmwwb447kDgybDBsl0SVRJdElUf+//z//v/8/2a4l0Qyb8uTZriXRDJvy5CXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("MrMGkTKzrqsQkQaREJGuq+5uBpHubq6rzEwGkcxMrqvMTCGmzEy+bu5uIabubr5u7m6+bu5u+L3MTL5uzEz4vTKzluUQkZblMrPuTxCR7k8ys75uMrP4vRCRvm4Qkfi97m6W5cxMluXubu5PzEzuTzKzqtkQkarZMrPuTxCR7k/ubqrZzEyq2e5u7k/MTO5P///86cvM7k///4U1AACFNTMz7k8zM5bly8yq2aqq//+TnpblAAD//wAAhTUzM6rZAAD86VRV//9rYZbl/////8vMluXLzO5PMzPuT///hTUys/zpzEz86TKzhTXMTIU1MrP//8xM//8ys4U1zEyFNcxMVVTubvi9zExh2DKzYdgQkfi9EJG+bu5uvm4ys1VUzEzqscxMtIAys+qxMrO0gDKzVVQys12szExVVMxMXawQkSGmEJG+bjKzIaYys75uy8zuT8vMqtkzM+5Pk56W5TMzluUzM6rZMzPuT2thluXLzO5Py8yW5RCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMe5zTC8QjEwvh4jmLXd35i1qhAUtlHsFLf9/uCzLzI5cMzOOXMvMQlozM0JaMzOuSjMzYkjLzK5Ky8xiSBCRhTXuboU1e5A+M4NvPjPHjh8xN3EfMRCMTC/uc0wvh4jmLXd35i1qhAUtlHsFLf9/uCzLzGJIy8yuSjMzYkgzM65Ky8wzNcvMgDczMzM1MzOANzMzkYjLzJGIMzPeisvM3oozMyZwy8wmcDMzc3LLzHNyMzMLPjMzvjvLzAs+y8y+OzMzgDczMzM1y8yAN8vMMzUzM0Jay8xCWjMzjlzLzI5cy8y+O8vMCz4zM747MzMLPsvMc3IzM3Nyy8wmcDMzJnDLzN6KMzPeisvMkYgzM5GI"), -"format": 34896613399, -"index_count": 138, -"index_data": PackedByteArray("YABeAF8AXwBhAGAAYQBiAGAAYQBjAGIAYwBkAGIAZABlAGIAZABmAGUAZABnAGYAZwBoAGYAZwBpAGgAaQBqAGgAbQBrAGwAbABuAG0AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAdgB3AHUAdgB4AHcAeAB5AHcAeAB6AHkAegB7AHkAegB8AHsAfAB9AHsAfAB+AH0AfgB/AH0AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYA"), -"material": SubResource("StandardMaterial3D_mihsn"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(5.90551, 11.4488, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("AABxLszM9eAAAP8fk5714FVVcS7MzPXgVVX/H5Oe9eCpqnEuzMz14Kmq/x+TnvXg//9xLszM9eD///8fk5714AAA/x+TnlTVAAD/HzMzVNVVVf8fk55U1VVV/x8zM1TVqapU1TMzVNWpqlTVzMxU1f//VNUzM1TV//9U1czMVNX///8fMzP//6mq/x8zM/////9U1TMz//+pqlTVMzP//wAAVNUzM1TVAABU1czMVNVVVVTVMzNU1VVVVNXMzFTVVVX/HzMz//8AAP8fMzP//1VVVNUzM///AABU1TMz//8AAHEuzMz//1VVcS7MzP//AABU1czM//9VVVTVzMz//6mqcS7MzP////9xLszM//+pqlTVzMz/////VNXMzP//AACqGv//VNUAAFTVzMxU1QAAVPX//1TVAABU9QAAVNUAAFTVMzNU1QAA/x8zM1TVAABxLszMVNUAAAAAqapU1QAA/x+TnlTVAAAAAAAAVNX//1T1//9U1f//cS7MzFTV//+qGv//VNX//wAAqapU1f///x+TnlTV//8AAAAAVNX///8fMzNU1f//VNUzM1TV//9U1czMVNX//1T1AABU1f//qhr/////AACqGv///////1T1/////wAAVPX/////AAAAAAAA/////wAAAAD//wAAVPUAAP////9U9QAA//8AAFT1AABU1VVVVPXMzFTVAABU9f//VNX//1T1//9U1amqVPXMzFTVqapU9TMzVNVVVVT1MzNU1f//VPUAAFTVAAAAAKmqaMsAAKoa//9oy///AACpqmjL//+qGv//aMsAAAAAAABU1QAAAACpqlTV//8AAAAAVNX//wAAqapU1amq/x+TnlTVqar/HzMzVNX///8fk55U1f///x8zM1TVVVVU1czMVNVVVXEuzMxU1VVVVNUzM1TVVVX/H5OeVNVVVf8fMzNU1amqcS7MzFTVqapU1czMVNWpqv8fk55U1amqVNUzM1TVqar/HzMzVNVVVVT1MzP//6mqVPUzM///yVYX+DMz//81qRf4MzP//wxbqfozM///8qSp+jMz//8qnt/8MzP//9Rh3/wzM///qmqR/jMz//9UlZH+MzP///R0of8zM///Couh/zMz////f///MzP//9Rh3/zMzPzF1GHf/DMz/MWqapH+zMxKyqpqkf4zM0rK8qSp+szMusIqnt/8zMz8xfKkqfozM7rCKp7f/DMz/MWpqlT1zMz/f1VVVPXMzP9/NakX+MzM/3/JVhf4zMz/f/KkqfrMzP9/DFup+szM/38qnt/8zMz/f9Rh3/zMzP9/VJWR/szM/3+qapH+zMz/fwqLof/MzP9/9HSh/8zM/3//f///zMz/f9Rh3/zMzPzFDFup+szMusLUYd/8MzP8xQxbqfozM7rCyVYX+MzMsMBVVVT1zMwrwMlWF/gzM7DAVVVU9TMzK8D/f///zMxU1f9///8zM1TVCouh/8zMd88Ki6H/MzN3zwqLof/MzHfPCouh/zMzd89UlZH+zMxKylSVkf4zM0rKNakX+MzMsMDypKn6zMy6wjWpF/gzM7DA8qSp+jMzusKpqlT1zMwrwDWpF/jMzLDAqapU9TMzK8A1qRf4MzOwwFSVkf7MzErKVJWR/jMzSsoqnt/8zMz8xSqe3/wzM/zFDFup+szMusLJVhf4zMywwAxbqfozM7rCyVYX+DMzsMCqapH+zMxKyqpqkf4zM0rK9HSh/8zMd8/0dKH/MzN3z/R0of/MzHfP9HSh/zMzd8//f///zMxU1f9///8zM1TV////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////+nADG/pwAxkuiZrtLoma7qKxUFv25/xyorFQW/bn/HP9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////+nADGVJZV0/6cAMZUllXTVo1R5WqHKfFWjVHlaocp8VTVqipU1aoqf82/Jn/NvyZ/zb8mf82/JpfETCKXxEwirZpWDaisVBatmlYNqKxUFtWOagetmlYN1Y5qB62aVg2XxEwil8RMIv25/xz9uf8cVJZV01aNUeVUllXTVo1R5UuiZrtLoma7v6Z/sr+mf7K/pn+yv6Z/sqqqqqqqqqqq") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_68l5q") - -[sub_resource type="BoxShape3D" id="BoxShape3D_g84k4"] -size = Vector3(0.166504, 0.159378, 0.162319) - -[node name="blasterM_clip" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 5 -script = ExtResource("1_qqhy0") -weapon = SubResource("Resource_jnsso") -TYPE = "Ammo" - -[node name="clipA2" type="MeshInstance3D" parent="."] -transform = Transform3D(2.76, 0, 0, 0, -0.695, 9.66022e-08, 0, -6.07588e-08, -1.105, 0, 0, 0) -mesh = SubResource("ArrayMesh_5ckjg") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.53727e-05, 0.00519562, 0.00165367) -shape = SubResource("BoxShape3D_g84k4") diff --git a/client/template/Spawnable_Objects/Clips/blaster_n_clip.tscn b/client/template/Spawnable_Objects/Clips/blaster_n_clip.tscn deleted file mode 100644 index 22770d4..0000000 --- a/client/template/Spawnable_Objects/Clips/blaster_n_clip.tscn +++ /dev/null @@ -1,123 +0,0 @@ -[gd_scene load_steps=11 format=4 uid="uid://cjxvrad2c6vh8"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_d1wy0"] -[ext_resource type="Script" uid="uid://bw4j1fbww4k8s" path="res://client/template/scripts/Weapon_State_Machine/WeaponSlot.gd" id="2_tnv4c"] -[ext_resource type="Resource" uid="uid://c1jg0ifn7yvve" path="res://client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterN.tres" id="3_x72lj"] - -[sub_resource type="Resource" id="Resource_8ete7"] -resource_local_to_scene = true -script = ExtResource("2_tnv4c") -weapon = ExtResource("3_x72lj") -current_ammo = 5 -reserve_ammo = 0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n3ik4"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fil5e"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bfdxb"] -resource_name = "yellow" -vertex_color_use_as_albedo = true -albedo_color = Color(0.998274, 0.894448, 0.505969, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_j3k8o"] -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYAAwABAAgACAAJAAMADAAKAAsACwANAAwADAAOAA8ADwAKAAwAEgAQABEAEQATABIAEgAJAAgACAAQABIAEQAAAAIAAgATABEACwAEAAYABgANAAsAFQAUABEAEQAWABUAEQAQABYAEAAIABYAAAARABQAFAAXAAAAFwABAAAAFwAYAAEAGAAIAAEAGAAWAAgAGgAZAAYABgAbABoABgAHABsABwAcABsABwAOABwADgAMABwADQAGABkAGQAdAA0AHQAMAA0AHQAcAAwAGQAaABQAFAAVABkAFgAYABwAHAAdABYAFQAWAB4AHgAZABUAHgAfABkAHwAgABkAIQAeABYAFgAdACEAHQAgACEAHQAZACAAGwAXABQAFAAaABsAHAAYABcAFwAbABwABwAFAA8ADwAOAAcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 18, -"index_data": PackedByteArray("EgATAAIAAgADABIAAwAJABIABQAEAAsACwAKAAUACgAPAAUA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"format": 34359742465, -"index_count": 138, -"index_data": PackedByteArray("IgAhACAAIAAjACIAIwAkACIAIwAlACQAJQAmACQAJgAnACQAJgAoACcAJgApACgAKQAqACgAKQArACoAKwAsACoALgAtACcAJwAoAC4AJQAvADAAMAAmACUAMQAfAB4AHgAyADEAMgAvADEAMgAzAC8AMwAwAC8AMwAtADAALQA0ADAALQAuADQALgA1ADQALgA2ADUANgA3ADUAJwAtADMAMwAkACcAIgAyAB4AHgAhACIANQA3ACwALAArADUANAA1ACsAKwApADQAIwAxAC8ALwAlACMAIAAfADEAMQAjACAAMAA0ACkAKQAmADAAJAAzADIAMgAiACQANgAuACgAKAAqADYANwA2ACoAKgAsADcA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 56, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9kML1vFyPwr2amZk9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vJDC9b3NzMw8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1PJDC9b2amZm9kML1PK1H4T2amZm9CtcjvK1H4T3rUTg9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9CtejuyYE8z3rUTg9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTg9CtejOyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_py3xv"] -resource_name = "clipA_Mesh clipA" -_surfaces = [{ -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 168, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJQAoACcAKAApACcAKgAlACQAJAArACoAKwAsACoAKwAtACwALQApACwALQAnACkAMAAuAC8ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANgAvAC4ALgA3ADYANwA1ADYANwAzADUAOgA4ADkAOQA7ADoAPgA8AD0APQA/AD4AQgBAAEEAQQBDAEIAQQBEAEMARABFAEMARgBBAEAAQABHAEYARwBFAEYARwBDAEUASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIA"), -"material": SubResource("StandardMaterial3D_n3ik4"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v6mq//8AAP+/qar//wAA/7+pqv//AAD/v/9///////+//3///////7//f///////v/9///////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3//f////7//f/9/////v/9//3////+//3//f////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7////9//////////3/+////////f/7///////9//v///////3/+////////f/7/AID///9//v8AgP///3///wCA////f/////////9///////9//3////+//3//f////7//f/9/////v/9//3////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f///////v/9///////+//3///////7//f////v//v/9////+//+//3///////7//f////v//v/9///////+//3+qKv///7//f6oq////v/9/qir///+//3+qKv///7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9///////+//3///////7//f///////v/9///////+/AAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 18, -"index_data": PackedByteArray("VgBUAFUAVQBXAFYAVwBYAFYAWwBZAFoAWgBcAFsAXABdAFsA"), -"material": SubResource("StandardMaterial3D_fil5e"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v////3/+////////f/////////9//v///////3//////////f///////////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACAJdHZrgAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP8//78AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACADBsMmwAAAIDkDuOOAAAAgAwbDJsAAACA5A7jjgAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIDZriXRAAAAgNmuJdEAAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAa8eOOAAAAgPLkDJsAAACAGvHjjgAAAIDy5AybAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA") -}, { -"aabb": AABB(-0.03, -0.12, -0.075, 0.06, 0.24, 0.15), -"attribute_data": PackedByteArray("XS6XP0T3Qj9dLpc/dxH6PyaTyT5E90I/JpPJPncR+j8mk8m+RPdCPyaTyb53Efo/XS6Xv0T3Qj9dLpe/dxH6P10ul7+US9o/XS6XvxaLRb8mk8m+lEvaPyaTyb4Wi0W/JpPJvhaLRb8mk8m+xmIxQF0ul78Wi0W/XS6Xv8ZiMUBdLpc/xmKRQCaTyT7GYpFAXS6XPyaTCcAmk8k+JpMJwF0ulz8Wi0W/XS6XP8ZiMUAmk8k+FotFvyaTyT7GYjFAJpPJvsZikUBdLpe/xmKRQCaTyb4mkwnAXS6XvyaTCcBdLpc/hlOAQCaTyT6GU4BAXS6XPyaTCcAmk8k+JpMJwCaTyb6GU4BAXS6Xv4ZTgEAmk8m+JpMJwF0ul78mkwnA9Pk8QF6vl0CLxeI/JpMJwPT5PEBUKlXA9Pk8wFQqVcCLxeK/JpMJwIvF4r/GYpFAi8XiP4ZTgEDw93s/XS63QCmXND/GYpFA9Pk8wF0ut0D0+TzAVCpVwIvF4r+GU4BA9Pk8wF6vl0Dw93u/XS63QCmXNL/GYpFA9Pk8QF0ut0CLxeI/xmKRQIvF4j8mkwnAi8XivyaTCcD0+TxAVCpVwF0ulz9er5dAXS6Xv16vl0BdLpc/VCpVwF0ul79UKlXAXS6XP10ut0BdLpe/XS63QF0ulz9UKlXAXS6Xv1QqVcBdLpe/6PP5vyaTyb7GYjFAXS6Xv/T5fEBdLpc/9Pl8QCaTyT7GYjFAJpPJPhaLRb8mk8m+FotFv10ulz/o8/m/XS6Xv+3gDkBdLpe/QIgBPV0ulz/t4A5AXS6XP0CIAT1dLpc/6PP5v10ulz/4+/0/XS6Xv+jz+b9dLpe/+Pv9PyaTyT6US9o/JpPJPhaLRb9dLpc/lEvaP10ulz8Wi0W/i8XiPyaTCcCLxeI/hlOAQIvF4r8mkwnAKZc0P8ZikUCLxeK/xmKRQIvF4r+GU4BAi8XivyaTCcAplzS/xmKRQIvF4j8mkwnAi8XiP8ZikUAmk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI6+cvtmwPCIjj5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcDxsKoOulxuwIvF4j+g4Mq/i8Xiv6Dgyr+LxeI/agjYv4vF4r9qCNi/i8Xiv+mZGMCLxeK/zS0fwIvF4j/pmRjAi8XiP80tH8Amk8k+VCpVwCaTyb5UKlXA0bTCPtCvW8DRtMK+0K9bwKORrj6Iw2HAo5GuvojDYcDwiI4+cvtmwPCIjr5y+2bAJpNJPor8asAmk0m+ivxqwIOv0D3ugG3Ag6/Qve6AbcAJafYNulxuwIvF4j/NLR/Ai8XiP+mZGMCLxeK/zS0fwIvF4r/pmRjAi8XiP0AVVsCLxeI/XIFPwIvF4r9AFVbAi8Xiv1yBT8CLxeK/QEXEPovF4j9ARcQ+i8Xiv2Dk+D6LxeI/YOT4PovF4r/4azW/i8XiP/hrNb+LxeK/aBwbv4vF4j9oHBu/i8Xiv0/HPMCLxeK/MltDwIvF4j9PxzzAi8XiPzJbQ8CLxeK/XIFPwIvF4r9AFVbAi8XiP1yBT8CLxeI/QBVWwIvF4r9qCNi/i8XiP2oI2L+LxeK/oODKv4vF4j+g4Mq/i8XiPzJbQ8CLxeI/T8c8wIvF4r8yW0PAi8Xiv0/HPMCLxeI/aBwbv4vF4r9oHBu/i8XiP/hrNb+LxeK/+Gs1v4vF4j9g5Pg+i8Xiv2Dk+D6LxeI/QEXEPovF4r9ARcQ+"), -"format": 34359742487, -"index_count": 138, -"index_data": PackedByteArray("YABeAF8AXwBhAGAAYQBiAGAAYQBjAGIAYwBkAGIAZABlAGIAZABmAGUAZABnAGYAZwBoAGYAZwBpAGgAaQBqAGgAbQBrAGwAbABuAG0AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAdgB3AHUAdgB4AHcAeAB5AHcAeAB6AHkAegB7AHkAegB8AHsAfAB9AHsAfAB+AH0AfgB/AH0AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYA"), -"material": SubResource("StandardMaterial3D_bfdxb"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 168, -"vertex_data": PackedByteArray("kML1vIaWnL3rUTg9kML1vOtRuL2wyJI8CtcjvIaWnL3rUTg9CtcjvOtRuL2wyJI8CtcjPIaWnL3rUTg9CtcjPOtRuL2wyJI8kML1PIaWnL3rUTg9kML1POtRuL2wyJI8kML1vOtRuL2wyJI8kML1vOtRuL3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPArXoz3rUTi9CtcjPArXoz3rUTg9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1POtRuL3rUTi9CtcjPOtRuL3rUTi9kML1PArXoz3rUTi9CtcjPArXoz3rUTi9kML1vArXoz3rUTi9kML1vArXoz3rUTg9CtcjvArXoz3rUTi9CtcjvArXoz3rUTg9CtcjvOtRuL3rUTi9kML1vOtRuL3rUTi9CtcjvArXoz3rUTi9kML1vArXoz3rUTi9kML1vIaWnL3rUTg9CtcjvIaWnL3rUTg9kML1vArXoz3rUTg9CtcjvArXoz3rUTg9CtcjPIaWnL3rUTg9kML1PIaWnL3rUTg9CtcjPArXoz3rUTg9kML1PArXoz3rUTg9kML1vFyPwr2amZk9kML1vArXoz3rUTg9kML1vK1H4T2amZk9kML1vK1H4T2amZm9kML1vArXoz3rUTi9kML1vOtRuL3rUTi9kML1vIaWnL3rUTg9kML1vJDC9b3NzMw8kML1vOtRuL2wyJI8kML1vJDC9b2amZm9kML1PK1H4T2amZk9kML1PIaWnL3rUTg9kML1PFyPwr2amZk9kML1PJDC9b3NzMw8kML1POtRuL2wyJI8kML1PJDC9b2amZm9kML1POtRuL3rUTi9kML1PArXoz3rUTi9kML1PArXoz3rUTg9kML1PK1H4T2amZm9kML1PFyPwr2amZk9kML1vFyPwr2amZk9kML1PK1H4T2amZk9kML1vK1H4T2amZk9kML1vJDC9b2amZm9kML1PJDC9b2amZm9kML1vK1H4T2amZm9kML1PK1H4T2amZm9kML1vK1H4T2amZm9CtcjvK1H4T3rUTg9kML1vK1H4T2amZk9kML1PK1H4T2amZk9CtcjPK1H4T3rUTg9CtcjPK1H4T3rUTi9CtcjvK1H4T3rUTi9kML1PK1H4T2amZm9kML1vJDC9b3NzMw8kML1vFyPwr2amZk9kML1PJDC9b3NzMw8kML1PFyPwr2amZk9kML1vJDC9b2amZm9kML1vJDC9b3NzMw8kML1PJDC9b2amZm9kML1PJDC9b3NzMw8CtcjPOtRuL2wyJI8CtcjPOtRuL3rUTi9kML1POtRuL2wyJI8kML1POtRuL3rUTi9CtcjvArXoz3rUTg9CtcjvIaWnL3rUTg9CtcjvArXoz3rUTi9CtcjvOtRuL2wyJI8CtcjvOtRuL3rUTi9CtcjPIaWnL3rUTg9CtcjPArXoz3rUTg9CtcjPOtRuL2wyJI8CtcjPArXoz3rUTi9CtcjPOtRuL3rUTi9CtcjvK1H4T3rUTi9CtcjPK1H4T3rUTi93kEevKKU5j3rUTi93kEePKKU5j3rUTi9vOMNvB+F6z3rUTi9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTi9CtejOyYE8z3rUTi9oZ4pu+kP9T3rUTi9oZ4pO+kP9T3rUTi9AAAAAJDC9T3rUTi9a7Tnu/TC7z3rUTg9a7Tnu/TC7z3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9vOMNPB+F6z3rUTg9a7TnO/TC7z3rUTg9vOMNPB+F6z3rUTi9a7TnO/TC7z3rUTi9CtcjPK1H4T3rUTg9CtcjvK1H4T3rUTg93kEePKKU5j3rUTg93kEevKKU5j3rUTg9vOMNPB+F6z3rUTg9vOMNvB+F6z3rUTg9a7TnO/TC7z3rUTg9a7Tnu/TC7z3rUTg9CtejOyYE8z3rUTg9CtejuyYE8z3rUTg9oZ4pO+kP9T3rUTg9oZ4pu+kP9T3rUTg9AAAAAJDC9T3rUTg9a7Tnu/TC7z3rUTg9vOMNvB+F6z3rUTg9a7Tnu/TC7z3rUTi9vOMNvB+F6z3rUTi93kEevKKU5j3rUTg9CtcjvK1H4T3rUTg93kEevKKU5j3rUTi9CtcjvK1H4T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9oZ4pO+kP9T3rUTg9oZ4pO+kP9T3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi93kEePKKU5j3rUTg9vOMNPB+F6z3rUTg93kEePKKU5j3rUTi9vOMNPB+F6z3rUTi9CtcjPK1H4T3rUTg93kEePKKU5j3rUTg9CtcjPK1H4T3rUTi93kEePKKU5j3rUTi9CtejOyYE8z3rUTg9CtejOyYE8z3rUTi9a7TnO/TC7z3rUTg9a7TnO/TC7z3rUTi9vOMNvB+F6z3rUTg93kEevKKU5j3rUTg9vOMNvB+F6z3rUTi93kEevKKU5j3rUTi9CtejuyYE8z3rUTg9CtejuyYE8z3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9oZ4pu+kP9T3rUTg9oZ4pu+kP9T3rUTi9AAAAAJDC9T3rUTg9AAAAAJDC9T3rUTi9qar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgKmq//8AAACAqar//wAAAICpqv//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/8//7//f/+//z//v/9//78lUSXR/3//vyVRJdH/f/+/JdHZrv//////v/+//////yXR2a7//////7//v///////f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/8//7//f/+/2S7Zrv9//7//P/+//3//v9ku2a7/f/+/DBsMm/9//7/kDuOO/3//vwwbDJv/f/+/5A7jjv9//7//f/////////9/////////DJvy5P////8Mm/Lk/////wyb8uT/////DJvy5P/////ZriXR/////9muJdH/////8uQMm/////8l0dmu//////LkDJv/////JdHZrv////8a8eOO//////LkDJv/////GvHjjv/////y5Ayb/////9muJdH/////2a4l0f//////v/+///////+//7//////2S7Zrv9//78MGwyb/3//v9ku2a7/f/+/DBsMm/9//78lUSXR/3//vyVRJdH/f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//7//f////3//v/9/////f/+/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_j3k8o") - -[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_p04et"] -points = PackedVector3Array(0.03, 0.109992, 0.075, 0.00258418, 0.119648, 0.0449883, 0, 0.12, 0.0449883, -0.03, 0.109992, 0.075, 0.03, -0.0950039, 0.075, 0.03, 0.109992, -0.075, 0.00258418, 0.119648, -0.0450029, 0, 0.12, -0.0450029, -0.00259006, 0.119648, 0.0449883, -0.03, 0.109992, -0.075, -0.03, -0.0950039, 0.075, 0.03, -0.12, 0.0249902, 0.03, -0.12, -0.075, -0.00259006, 0.119648, -0.0450029, -0.03, -0.12, -0.075, -0.03, -0.12, 0.0249902) - -[node name="blasterN_Clip" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 5 -script = ExtResource("1_d1wy0") -weapon = SubResource("Resource_8ete7") -TYPE = "Ammo" - -[node name="clipA2" type="MeshInstance3D" parent="."] -mesh = SubResource("ArrayMesh_py3xv") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("ConvexPolygonShape3D_p04et") diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/basic_hitscan_projectile.tscn b/client/template/Spawnable_Objects/Projectiles_To_Load/basic_hitscan_projectile.tscn deleted file mode 100644 index b3b896a..0000000 --- a/client/template/Spawnable_Objects/Projectiles_To_Load/basic_hitscan_projectile.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene load_steps=2 format=3 uid="uid://dc48o4niy1mok"] - -[ext_resource type="Script" uid="uid://b26eegme16mfw" path="res://client/template/scripts/Projectiles/Projectile.gd" id="1_epqi3"] - -[node name="Projectile" type="Node3D"] -script = ExtResource("1_epqi3") diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/basic_rigid_body_projectile.tscn b/client/template/Spawnable_Objects/Projectiles_To_Load/basic_rigid_body_projectile.tscn deleted file mode 100644 index 40b88f8..0000000 --- a/client/template/Spawnable_Objects/Projectiles_To_Load/basic_rigid_body_projectile.tscn +++ /dev/null @@ -1,10 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://bpxa3je174q43"] - -[ext_resource type="Script" uid="uid://b26eegme16mfw" path="res://client/template/scripts/Projectiles/Projectile.gd" id="1_won33"] -[ext_resource type="PackedScene" uid="uid://dxlkgbr1p580" path="res://client/template/Spawnable_Objects/bullet.tscn" id="2_sq5da"] - -[node name="Projectile" type="Node3D"] -script = ExtResource("1_won33") -Projectile_Type = "Rigidbody_Projectile" -Projectile_Velocity = 20 -Rigid_Body_Projectile = ExtResource("2_sq5da") diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/debug_sprite.png b/client/template/Spawnable_Objects/Projectiles_To_Load/debug_sprite.png deleted file mode 100644 index d5b8ee7..0000000 Binary files a/client/template/Spawnable_Objects/Projectiles_To_Load/debug_sprite.png and /dev/null differ diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/melee_projectile.tscn b/client/template/Spawnable_Objects/Projectiles_To_Load/melee_projectile.tscn deleted file mode 100644 index 461961c..0000000 --- a/client/template/Spawnable_Objects/Projectiles_To_Load/melee_projectile.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://6rfh1ejt4m6m"] - -[ext_resource type="Script" uid="uid://bfn8eu00l4btq" path="res://client/template/scripts/Projectiles/melee_weapon_projectile.gd" id="1_qlmbe"] - -[sub_resource type="BoxShape3D" id="BoxShape3D_q86ac"] - -[node name="MeleeProjectile" type="Node3D"] -script = ExtResource("1_qlmbe") -Projectile_Type = "over_ride" - -[node name="MeleeHitbox" type="ShapeCast3D" parent="."] -shape = SubResource("BoxShape3D_q86ac") -target_position = Vector3(0, 0, -1) -collision_mask = 37 diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/rocket_launcher_projectile.tscn b/client/template/Spawnable_Objects/Projectiles_To_Load/rocket_launcher_projectile.tscn deleted file mode 100644 index ac8953b..0000000 --- a/client/template/Spawnable_Objects/Projectiles_To_Load/rocket_launcher_projectile.tscn +++ /dev/null @@ -1,22 +0,0 @@ -[gd_scene load_steps=4 format=3 uid="uid://ddfiivxgnakti"] - -[ext_resource type="Script" uid="uid://biivm72fp7af8" path="res://client/template/scripts/Projectiles/rocket_launcher_projectile.gd" id="1_dkmt1"] -[ext_resource type="PackedScene" uid="uid://cqhlfy6ccomm3" path="res://client/template/Spawnable_Objects/rocket.tscn" id="2_u24w0"] - -[sub_resource type="SphereShape3D" id="SphereShape3D_wqjlt"] -radius = 5.0 - -[node name="Projectile" type="Node3D" node_paths=PackedStringArray("explosion")] -script = ExtResource("1_dkmt1") -explosion = NodePath("ExplosionRadias") -Projectile_Type = "Rigidbody_Projectile" -Projectile_Velocity = 20 -Expirey_Time = 20 -Rigid_Body_Projectile = ExtResource("2_u24w0") -pass_through = true - -[node name="ExplosionRadias" type="ShapeCast3D" parent="."] -top_level = true -shape = SubResource("SphereShape3D_wqjlt") -target_position = Vector3(0, 0, 0) -collision_mask = 37 diff --git a/client/template/Spawnable_Objects/Projectiles_To_Load/shotgun_projectile.tscn b/client/template/Spawnable_Objects/Projectiles_To_Load/shotgun_projectile.tscn deleted file mode 100644 index d965b43..0000000 --- a/client/template/Spawnable_Objects/Projectiles_To_Load/shotgun_projectile.tscn +++ /dev/null @@ -1,17 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://brvfyahytwd8m"] - -[ext_resource type="Script" uid="uid://dnh4a4vkl0cl1" path="res://client/template/scripts/Projectiles/shotgun_projectile.gd" id="1_idx2q"] - -[sub_resource type="Curve2D" id="Curve2D_2lhxk"] -_data = { -"points": PackedVector2Array(0, 0, 0, 0, 7, 3, 0, 0, 0, 0, -30, -11, 0, 0, 0, 0, -8, -18, 0, 0, 0, 0, 8, -9, -2.50282, -11.0124, 2.50282, 11.0124, 19, 13, 0, 0, 0, 0, -21, 1, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 12, 21, 0, 0, 0, 0, -33, 4) -} -point_count = 9 - -[node name="shotgun_projectile" type="Node3D"] -script = ExtResource("1_idx2q") -Randomness = 2.941 -Split_Damage = true - -[node name="shotgun_pattern" type="Path2D" parent="."] -curve = SubResource("Curve2D_2lhxk") diff --git a/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd b/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd deleted file mode 100644 index b9c62fc..0000000 --- a/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd +++ /dev/null @@ -1,41 +0,0 @@ -extends Node -class_name Spray_Profile - -@export_category("Random_Spray") -@export var Spray_Noise: FastNoiseLite -@export_range(0.0,10.0) var Random_Spray_Multiplier: float = 1.0 -@export var Max_Limit: int = 30 -@export var Updwards_Lock: bool = false -@export var True_Random: bool = true - -@export_category("Path_Spray") -@export var Spray_Path: Path2D -@export_range(0.0,10.0) var Path_Spray_Multiplier: float = 1.0 -@export_range(0.0,1.0) var Spray_Mix: float = 1.0 - -var Random_Spray: Vector2 = Vector2.ZERO -var Spray_Vector: Vector2 = Vector2.ZERO - -func Get_Spray(count: int,_max_count: int)->Vector2: - if Spray_Noise: - if True_Random: - Spray_Noise.set_seed(randi()) - - var x = Spray_Noise.get_noise_1d(count)*min(count,Max_Limit) - var y = Spray_Noise.get_noise_2d(_max_count,count)*min(count,Max_Limit) - - if Updwards_Lock: - y = -abs(y) - - Random_Spray = Vector2(x,y)*Random_Spray_Multiplier - - if Spray_Path: - var Path_Points: Curve2D = Spray_Path.get_curve() - var Point_Count: int = Path_Points.get_point_count() - count = min(count-1,Point_Count-1) - - Spray_Vector = Path_Points.get_point_position(count)*Path_Spray_Multiplier - - - var Spray = Spray_Vector + (Random_Spray*Spray_Mix) - return Spray diff --git a/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd.uid b/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd.uid deleted file mode 100644 index 583fff5..0000000 --- a/client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dvcpsronqmkmr diff --git a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_1.tscn b/client/template/Spawnable_Objects/SprayProfiles/spray_profile_1.tscn deleted file mode 100644 index 671c241..0000000 --- a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_1.tscn +++ /dev/null @@ -1,20 +0,0 @@ -[gd_scene load_steps=4 format=3 uid="uid://ciu0xkaw0ioef"] - -[ext_resource type="Script" uid="uid://dvcpsronqmkmr" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd" id="1_60v4d"] - -[sub_resource type="FastNoiseLite" id="FastNoiseLite_4msk4"] - -[sub_resource type="Curve2D" id="Curve2D_0vouc"] -_data = { -"points": PackedVector2Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -2, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 1, -23, 0, 0, 0, 0, 2, -35, 0, 0, 0, 0, -4, -50, 0, 0, 0, 0, -7, -62, 0, 0, 0, 0, -12, -69, 0, 0, 0, 0, -6, -76, 0, 0, 0, 0, 12, -74, 0, 0, 0, 0, 9, -86, 0, 0, 0, 0, 16, -81, 0, 0, 0, 0, 21, -76, 0, 0, 0, 0, 19, -83, 0, 0, 0, 0, 23, -84, 0, 0, 0, 0, 36, -82, 0, 0, 0, 0, 35, -79, 0, 0, 0, 0, 28, -81, 0, 0, 0, 0, 23, -81, 0, 0, 0, 0, 5, -88, 0, 0, 0, 0, 2, -90, 0, 0, 0, 0, -6, -88, 0, 0, 0, 0, -10, -91, 0, 0, 0, 0, -12, -91, 0, 0, 0, 0, -13, -89, 0, 0, 0, 0, -13, -85, 0, 0, 0, 0, -15, -85, 0, 0, 0, 0, -16, -88, 0, 0, 0, 0, -19, -90, 0, 0, 0, 0, -20, -85) -} -point_count = 30 - -[node name="Spray_Profile" type="Node" node_paths=PackedStringArray("Spray_Path")] -script = ExtResource("1_60v4d") -Spray_Noise = SubResource("FastNoiseLite_4msk4") -Spray_Path = NodePath("Path2D") -Path_Spray_Multiplier = 0.58 - -[node name="Path2D" type="Path2D" parent="."] -curve = SubResource("Curve2D_0vouc") diff --git a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_2.tscn b/client/template/Spawnable_Objects/SprayProfiles/spray_profile_2.tscn deleted file mode 100644 index 6adf120..0000000 --- a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_2.tscn +++ /dev/null @@ -1,19 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://3mb12hvruajh"] - -[ext_resource type="Script" uid="uid://dvcpsronqmkmr" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd" id="1_35g6m"] - -[sub_resource type="FastNoiseLite" id="FastNoiseLite_4msk4"] -seed = 145 -frequency = 0.307 -cellular_jitter = -1.115 -cellular_return_type = 0 -domain_warp_type = 1 -domain_warp_amplitude = 30.075 -domain_warp_frequency = -0.835 -domain_warp_fractal_type = 2 -domain_warp_fractal_octaves = 1 - -[node name="Spray_Profile" type="Node"] -script = ExtResource("1_35g6m") -Spray_Noise = SubResource("FastNoiseLite_4msk4") -Random_Spray_Multiplier = 2.371 diff --git a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_3.tscn b/client/template/Spawnable_Objects/SprayProfiles/spray_profile_3.tscn deleted file mode 100644 index 682c9ea..0000000 --- a/client/template/Spawnable_Objects/SprayProfiles/spray_profile_3.tscn +++ /dev/null @@ -1,20 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://ceuaamuau8pl8"] - -[ext_resource type="Script" uid="uid://dvcpsronqmkmr" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile.gd" id="1_hmoot"] - -[sub_resource type="FastNoiseLite" id="FastNoiseLite_4msk4"] -seed = 145 -frequency = 0.307 -cellular_jitter = -1.115 -cellular_return_type = 0 -domain_warp_type = 1 -domain_warp_amplitude = 30.075 -domain_warp_frequency = -0.835 -domain_warp_fractal_type = 2 -domain_warp_fractal_octaves = 1 - -[node name="Spray_Profile" type="Node"] -script = ExtResource("1_hmoot") -Spray_Noise = SubResource("FastNoiseLite_4msk4") -Random_Spray_Multiplier = 10.0 -Updwards_Lock = true diff --git a/client/template/Spawnable_Objects/Weapons/blasterQ.tscn b/client/template/Spawnable_Objects/Weapons/blasterQ.tscn deleted file mode 100644 index 8a8d19e..0000000 --- a/client/template/Spawnable_Objects/Weapons/blasterQ.tscn +++ /dev/null @@ -1,163 +0,0 @@ -[gd_scene load_steps=10 format=4 uid="uid://dwgt7gwe3gfyy"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_1ivwt"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bn0g3"] -resource_name = "metal" -albedo_color = Color(0.796078, 0.815686, 0.878431, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fop1y"] -resource_name = "darkMetal" -albedo_color = Color(0.592157, 0.635294, 0.768627, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_srqfe"] -resource_name = "dark" -albedo_color = Color(0.196244, 0.237565, 0.283019, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_07ipd"] -resource_name = "green" -albedo_color = Color(0.271938, 0.915094, 0.677164, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2y71d"] -resource_name = "_defaultMat" -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_lkcrb"] -_surfaces = [{ -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34896613377, -"index_count": 582, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABAADAAEAAQAFAAQACAAGAAcABwAJAAgAAgAKAAsACwAAAAIADgAMAA0ADQAPAA4ACgAQABEAEQALAAoAFAASABMAEwAVABQAFQATABYAFgAXABUADgAPAAkACQAHAA4AGAAMAA4ADgAZABgAGQAWABgAFgATABgAEwASABgAEgAaABgAGwAZAA4AGwAOAAcAGwAHAAYABAAbAAYAAwAEAAYAAgADAAYACgACAAYABgAQAAoAHAAYABoAGgAdABwAHQAaABIAEgAUAB0AHAAdABQAHAAUABUAHAAVABcADQAcABcADwANABcADwAXAB4ACQAPAB4AHgAfAAkACAAJAB8ACAAfAAUACAAFAAEACAABAAAAEQAIAAAAAAALABEAGQAeABcAFwAWABkAGwAfAB4AHgAZABsABQAfABsAGwAEAAUAIgAgACEAIQAjACIAIQAkACMAJAAlACMAJgAiACMAIwAnACYAJwAjACUAJQAoACcAKQAkACEAIQAqACkAKwAgACIAIgAmACsAKgArACYAJgAnACoAJwApACoAJwAoACkALgAsAC0ALQAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOQA7ADoAOwA3ADUANQA6ADsAPQA8ADAAMAAyAD0APwA+ADEAMQAwAD8AMABAAD8AMAA8AEAAMwAxAD4APgBBADMAQgA/AEAAQABDAEIARQBEACwALAAuAEUALgAvAEYARgBFAC4ARgBHAEUARwBIAEUAMwBBAEIAQgAyADMAQgBDADIAQwA9ADIAOwA5ADYANgA3ADsANAA2ADkAOQA4ADQASABJAEQARABFAEgASgAtACwALABEAEoARABLAEoARABJAEsARgBKAEsASwBHAEYATgBMAE0ATQBPAE4ATwBQAE4ATwBRAFAAVABSAFMAUwBVAFQATQBWAFcAVwBPAE0AVgBYAFkAWQBXAFYAWQBaAFcAWgBbAFcAUABaAFkAWQBOAFAAXQBcAFQAXQBUAFUAVQBeAF0AXwBdAF4ATwBXAFsAWwBRAE8ATABYAFYAVgBNAEwAYQBgAFMAUwBiAGEAUwBSAGIAUgBjAGIAZgBkAGUAZQBnAGYAYQBiAF0AXQBfAGEAagBoAGkAaQBrAGoAZgBsAG0AbQBuAGYAbgBkAGYAaQBoAG8AbwBwAGkAYgBjAFwAXABdAGIAagBxAG8AbwBoAGoAcwByAG0AbQBsAHMAdAByAHMAcwBnAHQAZwBlAHQAcwBsAGYAZgBnAHMAdQBxAGoAagBrAHUAaQBwAHUAdQBrAGkAeAB2AHcAdwB5AHgAdwB6AHkAfQB7AHwAfAB+AH0AfgB/AH0AgAB6AHcAdwCBAIAAgQCCAIMAgwCAAIEAgwCEAIAAfACFAIYAhgB+AHwAfQCHAIgAiAB7AH0AhgCFAIgAiACHAIYAhwCJAIYAgwB4AHkAeQCEAIMAOAA6AIoAigA0ADgAiwCKADoAigCMADQAOgA1AIsAjACNADQANQCNAIsANQA0AI0A"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("/2dm9axqAAD/Z4X7sGcAAP+XZvWsagAA/5eF+7BnAAD/lyj95GYAAP9nKP3kZgAA/5cw3blhAAD/l83quWEAAP9nMN25YQAA/2fN6rlhAAD/l83qD2wAAP9nzeoPbAAA/5cw3es+AAD/ZzDd6z4AAP+XzerrPgAA/2fN6us+AAD/lzDdD2wAAP9nMN0PbAAA/5dm9fg1AAD/l4X79DgAAP9nZvX4NQAA/2eF+/Q4AAD/lyj9wDkAAP9nKP3AOQAA/5cw3ZU0AAD/l///6z4AAP+XzeqVNAAA/5f//7lhAAD/ZzDdlTQAAP9nzeqVNAAA/2f//+s+AAD/Z///uWEAAP/viUVo4gAA/+9ya2jiAAD//x5NaOIAAP//Rrdo4gAA/+/ymGjiAAD/79u+aOIAAP//Hk03zAAA//9GtzfMAAD/79u+N8wAAP/v8pg3zAAA/+9yazfMAAD/74lFN8wAAAAAHk1UsgAA/w+JRVSyAAAAAB5NI5wAAP8PiUUjnAAAAABGt2jiAAAAAB5NaOIAAAAARrc3zAAAAAAeTTfMAAD/v8wOPysAAP+/6yGdAQAA/78AAKEpAAD/vx8TAAAAAP8/zA4/KwAA/z8AAKEpAAD/P+shnQEAAP8/HxMAAAAA/w/bvmjiAAD/D9u+N8wAAP8PiUVo4gAA/w9ya2jiAAD/D/KYaOIAAP8PiUU3zAAA/w9yazfMAAD/D/KYN8wAAAAARrdUsgAAAABGtyOcAAD/D3JrI5wAAP8P8pgjnAAA/w/bviOcAAD/D9u+VLIAAP8PcmtUsgAA/w/ymFSyAAD/74lFI5wAAP//Hk0jnAAA/+9yayOcAAD//0a3I5wAAP/v8pgjnAAA/+/bviOcAAD/T0hc9zMAAP9PSFzeVQAA/69IXPczAAD/r0hc3lUAAP//Hk1UsgAA//9Gt1SyAAD/74lFVLIAAP/vcmtUsgAA/+/ymFSyAAD/79u+VLIAAP+vPW8MNwAA/689b59MAAD/rzKC3lUAAP+vMoKfTAAA/08ygt5VAAD/TzKCn0wAAP9PPW+fTAAA/089bww3AAD/ZzDdjX4AAP+XMN2NfgAA/2fF5I1+AAD/l8XkjX4AAP9vW+yB7QAA/29b7BvmAAD/j1vsge0AAP+PW+wb5gAA/2fF5B/BAAD/ZzDdH8EAAP9nMN3yhQAA/2cw3YHtAAD/ZzDdtd4AAP+XMN2B7QAA/5cw3R/BAAD/l8XkH8EAAP+XMN3yhQAA/5cw3bXeAAD/LxyoD2wAAP8/HKh1cwAA/z8cqKlkAAD/TxyoqWQAAP9PHKh1cwAA/69Gt3VzAAD/r0a3qWQAAP+/Rrd1cwAA/79Gt6lkAAD/z0a3D2wAAP9PRrd1cwAA/z9Gt3VzAAD/L0a3D2wAAP8/RrepZAAA/09Gt6lkAAD/rxyoqWQAAP+/HKipZAAA/78cqHVzAAD/rxyodXMAAP/PHKgPbAAA/090EKMnAAD/T0MgOQUAAP+vdBCjJwAA/69DIDkFAAD/z516//8AAP/PnXryhQAA/+9ya///AAD/73Jr8oUAAP8vx4nyhQAA/y/Hieb0AAD/z8eJ8oUAAP/Px4nm9AAA/880J/KFAAD/zzQn5vQAAP/vXjbyhQAA/+9eNub0AAD/L516//8AAP8vnXryhQAA/y80J/KFAAD/LzQn5vQAAP8PXjbyhQAA/w9eNub0AAD/D3Jr//8AAP8PcmvyhQAA/y9eNvKFAAD/L3Jr8oUAAP+vMoIlFQAA/08ygiUVAAD/rzKCIToAAP9PMoIhOgAA/y/ymPKFAAD/D/KY8oUAAP8PBs7yhQAA/y8GzvKFAAD/LzDd8oUAAP8PBs7//wAA/w/bvv//AAD/D9u+5vQAAP8P8pjm9AAA/+/ymOb0AAD/79u+5vQAAP/vBs7yhQAA/+8Gzv//AAD/79u+//8AAP/v8pjyhQAA/w9IXOb0AAD/D0hc//8AAP/PMN3//wAA/88w3fKFAAD/LzDd//8AAP/vSFzm9AAA/+9IXP//AAD/z1428oUAAP/PcmvyhQAA/8/ymPKFAAD/zwbO8oUAAP/Pcmv//wAA/89IXP//AAD/z0hc5vQAAP/PXjbm9AAA/y9ya///AAD/L1425vQAAP8vSFzm9AAA/y9IXP//AAD/L/KY5vQAAP8v277m9AAA/y8Gzv//AAD/L9u+//8AAP/P8pjm9AAA/88Gzv//AAD/z9u+//8AAP/P277m9AAA/y/bvq0/AAD/L9u+J3cAAP9P276tPwAA/0/bvid3AAD/L4egJ3cAAP9Ph6AndwAA/6/bvq0/AAD/r9u+J3cAAP/P276tPwAA/8/bvid3AAD/z4egrT8AAP+vh6CtPwAA/6+HoCd3AAD/z4egJ3cAAP9Ph6CtPwAA/y+HoK0/AAD/rzDdlTQAAP/PBs6VNAAA/88w3ZU0AAD/LzDdlTQAAP8vBs6VNAAA/08w3ZU0AAD/TzDd5gsAAP8vBs7mCwAA/88GzuYLAAD/rzDd5gsAAP8vMoLmCwAA/y8ygt5VAAD/L3QQXGgAAP8vXjbeVQAA/y90EPKFAAD/zzKC5gsAAP/PMoLeVQAA/890EFxoAAD/z1423lUAAP/PdBDyhQAA") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 384, -"index_data": PackedByteArray("kACOAI8AjwCRAJAAkQAhAJAAkQAqACEAkQBZACoAkQBOAFkAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAjgCaAJsAmwCPAI4AlgCcAJ0AnQCXAJYAnACeAJ8AnwCdAJwAmwCaAKAAoAA/AJsAPwBCAJsAQgBKAJsASgBGAJsARgChAJsAngCcAKIAogChAJ4AogCjAKEAowCbAKEAiwCNAKQApAClAIsAXACmAKQApABUAFwApACMAFQApACNAIwApgBcAGMAYwCnAKYApQCnAGMAYwBSAKUAUgCKAKUAigCLAKUAqQCSAKgAqACqAKkAqACrAKoAqwCsAKoAqgCtAK4ArgCvAKoArwA8AKoArwCwADwAQAA8ALAAPAA9AKoAPQBJAKoAPQBDAEkASwBJAEMASQBIAKoASABHAKoARwCpAKoAJACxALIAJQAkALIAswAlALIAswAoACUAtACzALIAsgC1ALQAswBbACgAWwBaACgAWgApACgAswBRAFsAswC2AFEAtgBQAFEASgBCAEEALQBKAEEAngAtAEEAngAvAC0AngBBAD4AngChAC8AoQBGAC8AnwCeAD4AnwA+AD8AtwCfAD8AuAC3AD8APwCgALgAkgCpAEcARwBLAJIASwBDAJIAQwBAAJIAkwCSAEAAQACwAJMAtAC5ALoAugCzALQAtgCUAJUAlQCxALYAsQBQALYAsQAkAFAAJABaAFAAJAApAFoAuwCtAKoAqgCsALsATgCRAJgATABOAJgAWABMAJgAKwBYAJgAKwAqAFgAWQBYACoAIAArAJgAIACYAJkAmQC8ACAAIQAgALwAkAAhALwAvAC9AJAAVACMAIoAigBSAFQAvgCWAJgAmAC/AL4AmACRAL8AkQCPAL8AwACUALYAtgDBAMAAtgCzAMEAswC6AMEAbQByAHUAcgB0AHUAdAC6AHUAugC5AHUAcQB1ALkAdQBwAG0AbgBtAHAArABuAHAAbwBxALkAcABvAKwAbwC5ALsAuwCsAG8A"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34896613377, -"index_count": 180, -"index_data": PackedByteArray("vwDCAMMAwwDEAL8AxADFAL8AxQC+AL8AvwCjAMYAxgDCAL8AogDHAMgAowCiAMgAxgCjAMgAyADJAMYAxQDHAKIAogC+AMUAqADKAMsAqwCoAMsAzACrAMsAywDNAMwAzgDKAKgAqADAAM4AwQDPANAA0ADRAMEA0QDOAMEAzgDAAMEAwQCrAMwAzADPAMEAwQDAAKgAqACrAMEAvwC+AKIAogCjAL8A1ADSANMA0wDVANQA0wDWANcA1wDVANMA2gDYANkA2QDbANoA2gDcAN0A3QDYANoA3wDeAN0A3QDcAN8A1ADgAOEA4QDSANQA1wDWAOEA4QDgANcA2QDeAN8A3wDbANkA2AB8AHsA2ACFAHwA2QDYAHsAhQDYAN0AewDeANkAiACFAN0A3gB7AIgAiADdAN4AgACEANQAhAB5ANQAgADUANUA4ADUAHkA1QDXAIAA4AB5AHoA1wDgAHoAegCAANcA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("/2dm9axqAAD/Z4X7sGcAAP+XZvWsagAA/5eF+7BnAAD/lyj95GYAAP9nKP3kZgAA/5cw3blhAAD/l83quWEAAP9nMN25YQAA/2fN6rlhAAD/l83qD2wAAP9nzeoPbAAA/5cw3es+AAD/ZzDd6z4AAP+XzerrPgAA/2fN6us+AAD/lzDdD2wAAP9nMN0PbAAA/5dm9fg1AAD/l4X79DgAAP9nZvX4NQAA/2eF+/Q4AAD/lyj9wDkAAP9nKP3AOQAA/5cw3ZU0AAD/l///6z4AAP+XzeqVNAAA/5f//7lhAAD/ZzDdlTQAAP9nzeqVNAAA/2f//+s+AAD/Z///uWEAAP/viUVo4gAA/+9ya2jiAAD//x5NaOIAAP//Rrdo4gAA/+/ymGjiAAD/79u+aOIAAP//Hk03zAAA//9GtzfMAAD/79u+N8wAAP/v8pg3zAAA/+9yazfMAAD/74lFN8wAAAAAHk1UsgAA/w+JRVSyAAAAAB5NI5wAAP8PiUUjnAAAAABGt2jiAAAAAB5NaOIAAAAARrc3zAAAAAAeTTfMAAD/v8wOPysAAP+/6yGdAQAA/78AAKEpAAD/vx8TAAAAAP8/zA4/KwAA/z8AAKEpAAD/P+shnQEAAP8/HxMAAAAA/w/bvmjiAAD/D9u+N8wAAP8PiUVo4gAA/w9ya2jiAAD/D/KYaOIAAP8PiUU3zAAA/w9yazfMAAD/D/KYN8wAAAAARrdUsgAAAABGtyOcAAD/D3JrI5wAAP8P8pgjnAAA/w/bviOcAAD/D9u+VLIAAP8PcmtUsgAA/w/ymFSyAAD/74lFI5wAAP//Hk0jnAAA/+9yayOcAAD//0a3I5wAAP/v8pgjnAAA/+/bviOcAAD/T0hc9zMAAP9PSFzeVQAA/69IXPczAAD/r0hc3lUAAP//Hk1UsgAA//9Gt1SyAAD/74lFVLIAAP/vcmtUsgAA/+/ymFSyAAD/79u+VLIAAP+vPW8MNwAA/689b59MAAD/rzKC3lUAAP+vMoKfTAAA/08ygt5VAAD/TzKCn0wAAP9PPW+fTAAA/089bww3AAD/ZzDdjX4AAP+XMN2NfgAA/2fF5I1+AAD/l8XkjX4AAP9vW+yB7QAA/29b7BvmAAD/j1vsge0AAP+PW+wb5gAA/2fF5B/BAAD/ZzDdH8EAAP9nMN3yhQAA/2cw3YHtAAD/ZzDdtd4AAP+XMN2B7QAA/5cw3R/BAAD/l8XkH8EAAP+XMN3yhQAA/5cw3bXeAAD/LxyoD2wAAP8/HKh1cwAA/z8cqKlkAAD/TxyoqWQAAP9PHKh1cwAA/69Gt3VzAAD/r0a3qWQAAP+/Rrd1cwAA/79Gt6lkAAD/z0a3D2wAAP9PRrd1cwAA/z9Gt3VzAAD/L0a3D2wAAP8/RrepZAAA/09Gt6lkAAD/rxyoqWQAAP+/HKipZAAA/78cqHVzAAD/rxyodXMAAP/PHKgPbAAA/090EKMnAAD/T0MgOQUAAP+vdBCjJwAA/69DIDkFAAD/z516//8AAP/PnXryhQAA/+9ya///AAD/73Jr8oUAAP8vx4nyhQAA/y/Hieb0AAD/z8eJ8oUAAP/Px4nm9AAA/880J/KFAAD/zzQn5vQAAP/vXjbyhQAA/+9eNub0AAD/L516//8AAP8vnXryhQAA/y80J/KFAAD/LzQn5vQAAP8PXjbyhQAA/w9eNub0AAD/D3Jr//8AAP8PcmvyhQAA/y9eNvKFAAD/L3Jr8oUAAP+vMoIlFQAA/08ygiUVAAD/rzKCIToAAP9PMoIhOgAA/y/ymPKFAAD/D/KY8oUAAP8PBs7yhQAA/y8GzvKFAAD/LzDd8oUAAP8PBs7//wAA/w/bvv//AAD/D9u+5vQAAP8P8pjm9AAA/+/ymOb0AAD/79u+5vQAAP/vBs7yhQAA/+8Gzv//AAD/79u+//8AAP/v8pjyhQAA/w9IXOb0AAD/D0hc//8AAP/PMN3//wAA/88w3fKFAAD/LzDd//8AAP/vSFzm9AAA/+9IXP//AAD/z1428oUAAP/PcmvyhQAA/8/ymPKFAAD/zwbO8oUAAP/Pcmv//wAA/89IXP//AAD/z0hc5vQAAP/PXjbm9AAA/y9ya///AAD/L1425vQAAP8vSFzm9AAA/y9IXP//AAD/L/KY5vQAAP8v277m9AAA/y8Gzv//AAD/L9u+//8AAP/P8pjm9AAA/88Gzv//AAD/z9u+//8AAP/P277m9AAA/y/bvq0/AAD/L9u+J3cAAP9P276tPwAA/0/bvid3AAD/L4egJ3cAAP9Ph6AndwAA/6/bvq0/AAD/r9u+J3cAAP/P276tPwAA/8/bvid3AAD/z4egrT8AAP+vh6CtPwAA/6+HoCd3AAD/z4egJ3cAAP9Ph6CtPwAA/y+HoK0/AAD/rzDdlTQAAP/PBs6VNAAA/88w3ZU0AAD/LzDdlTQAAP8vBs6VNAAA/08w3ZU0AAD/TzDd5gsAAP8vBs7mCwAA/88GzuYLAAD/rzDd5gsAAP8vMoLmCwAA/y8ygt5VAAD/L3QQXGgAAP8vXjbeVQAA/y90EPKFAAD/zzKC5gsAAP/PMoLeVQAA/890EFxoAAD/z1423lUAAP/PdBDyhQAA") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 438, -"index_data": PackedByteArray("5ADiAOMA5wDlAOYAvADEAMMAwwC9ALwAxQDEALwAvACZAMUAnwDFAJkAnwDHAMUAnwDIAMcAnwC3AMgAnQCfAJkAmQCXAJ0AkAC9AMMAwwDCAJAAwgCOAJAAwgDGAI4AxgCgAI4AoACaAI4AuACgAMYAxgDJALgAyAC3ALgAuADJAMgAtAC1ANAA0ADPALQAzwC5ALQAzwDMALkAzACtALkArQC7ALkArgCtAMwAzADNAK4AzgDRALIAsgCxAM4AsADOALEAsADKAM4AsADLAMoAsACvAMsAkwCwALEAsQCVAJMAsgDRANAA0AC1ALIAywCvAK4ArgDNAMsA6ADnAOYA5gDpAOgA6gDjAOIA4gDrAOoAmwCoAJIAqACbANMAmwCjANMAqwCoANMAowCiANMAqwDTAOUA5QCsAKsA0wDSAOUA0gDhAOUA5gDlAOEA1gDTAKIA7ADmAOEA7ADpAOYA7QDsAOEA7QDhANYA7gDtANYA7gDWAKIA7wDtAO4A8ADuAKIAogCcAPAAjwCUAMAAwADBAI8A2wCPAMEA2wC/AI8A5ADbAMEAwQC6AOQA5ADaANsA5ADcANoAvwDbAN8A5ADjANwA3ADjAPEA4wDqAPEA3ADxAPIA3wDcAPIAvwDfAPMA3wDyAPMA8gD0APMAvgC/APMAlgC+APMA8wD1AJYA7wDuAPMA8wD0AO8A6QDsAPEA8QDqAOkA6gDoAOkA6gDrAOgAUwBgAO0AUwDtAO8A7wD0AFMAVQBTAPQA9ADyAFUA8gBeAFUA8wDuAPAA8AD1APMAXgDyAPEAXwBeAPEApgBfAPEAYQBfAKYApACmAPEApgCnAGEAYABhAKcA7QBgAKcApQCkAPEApwClAO0ApQDxAOwA7ADtAKUAugB0AGUAZQAQALoAEQAQAGUAEQBlAGQAZAAIABEADQAIAGQABgAIAA0ADQBkAG4ADAAQAAYADQAMAAYADAAYABAAEAAYALoAGADiALoA4gDkALoA6wDiABgA6wAYABwA6ADrABwA6AAcAA0A6AANAG4A5wDoAG4A5wBuAKwArADlAOcAlACPAJsAmwCSAJQAlgD1APAA8ACcAJYAgwCCAHYAdgB4AIMAggCBAHcAdwB2AIIAiQB/AH4AfgCGAIkAhwB9AH8AfwCJAIcA"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 132, -"index_data": PackedByteArray("DAANABwAHAAYAAwAPQA8AEAAQABDAD0AKwAgACEAIQAqACsAEQAIAAYABgAQABEApAClAKcApwCmAKQAQQA+AD8APwBCAEEATABYAFkAWQBOAEwALwAtAEoASgBGAC8AYABTAFUAVQBeAGAAKAAlACQAJAApACgAXwBhAGAAYABeAF8ARwBLAEkASQBIAEcAUABaAFsAWwBRAFAAdABuAGQAZABlAHQAcQBvAHAAcAB1AHEAdABuAG0AbQByAHQAYwBSAFQAVABcAGMAvgCWAJwAnACiAL4ArACrAMEAwQC6AKwAugBuAKwAugB0AG4AqACSAJQAlADAAKgAmwCjAL8AvwCPAJsA"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_8tvdw"] -resource_name = "blasterQ_Mesh blasterQ" -_surfaces = [{ -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("c3r7VHN6DFGLhftUi4UMUYuF/09zev9Pc3pnXnN6OFiLhWdei4U4WIuFEFVzehBVi4UUUHN6FFCLhWdec3pnXouFOFhzejhYi4VnXnN6Z16LhThYc3o4WHN6y5NzetyPi4XLk4uF3I9zes+Oi4XPjouFH0yLhYtsc3ofTHN6i2wTwWdeE8E4WGnLZ14TwZZOPsbgTwrHn1AGymdTacs4WEWelk5FnjhYRZ5nXhqZ4E9OmJ9QUpVnU++TOFjvk2dec3pnXnN6OFiLhWdei4U4WHN6DmxzehJni4UObIuFEmeVNDhY+DVnU5U0Z170OJ9QwDngT+s+Z17rPjhY6z6WTrlhOFi5YZZOuWFnXuRm4E+wZ59QrGpnUw9sZ14PbDhYi4VBtIuFPrlzekG0c3o+uXN6i2xzeh9Mi4WLbIuFH0xzenNei4VzXnN6cGOLhXBj45lQo+OZFpKVnd6flZ2hb+OZaX3jmS9slh3en5YdoW/HM96fxzOhb5YdeoqWHZuFxzN6isczm4Vo4ml9aOIWkjfMaX03zBaSlh16ipYdm4XHM3qKxzObhRtmUKNpYt6fG2YWkmlioW8bZml9G2YvbFSym4VUsnqKI5ybhSOceopo4qFvaOLenzfMoW83zN6fv9QvvGH+f7Nd1unC//84uj8rL7yhKenCnQF/swAAOLo0cRfTNHEzzMqOF9PKjjPMaOKbhWjieoo3zJuFN8x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbGjim4Vo4nqKN8ybhTfMeoqWHRaSlh1pfcczFpLHM2l9VLKhb1Sy3p8jnKFvI5zen+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbOOZUKPjmRaSlZ3en5WdoW/jmWl945kvbMqO80Y0cfNGyo4zHzRxMx/KjhfTNHEX08qOM8w0cTPMVLKbhVSyeoojnJuFI5x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbKpNFpKqTWl922MWkttjaX0bZlCjaWLenxtmFpJpYqFvG2ZpfRtmL2wXi+tBF4uAYed060HndIBhqk3en6pNoW/bY96f22Ohb+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbFSyaX1UshaSI5xpfSOcFpLyyF2QB8z6mF+zXZAgqvqYIKrAh1+zwIeqTXqKqk2bhdtjeorbY5uFqk16iqpNm4XbY3qK22Obhd5VwIfeVfqYn0zAh59MXZD3M/qYDDddkIuFZ15zemdei4X1WnN69VoXi12Q53RdkBeLwIfndMCHTHzE7kx84Oeyg8TusoPg5x/B9VofwWdejX71WvKFZ16Nfmdege3RWYHt7GAb5tFZtd7sYOd0ykQXi8pE53TjWBeL41iLhWdec3pnXrKDg1dMfINXi4VnXnN6Z16LhfVac3r1Wt8+Z17fPvVaDHpnXnGB9VpxgWdec3psxXN6Z4eLhWzFi4Vnh30S7GB9EtFZSSHsYOMZ0VmLhWksc3ppLLKDqyJMfKsifZIsdsqOEH3KjkhvF4tIbxeLEH0XixB9F4tIb8qOEH3KjkhvfZIsdud0hXY0cYV253ShbzRxoW+BbSx2NHFIbzRxEH3ndBB953RIb+d0hXY0cYV253ShbzRxoW/KjoV2F4uFdsqOoW8Xi6Fv53RIb+d0EH00cUhvNHEQfYFtLHbKjoV2F4uFdsqOoW8Xi6FvNHEzH+d0gEM0cfNGyo7zRud0pSIXi4BDyo4zHxeLpSIAAKmWDHqplgAAaKAMemiglh1ooMczaKCqTWig22NooH2SS459kqj1gW1LjoFtqPUMehiZGAsYmQx6Wo8YC1qPgW3//4FtS459kv//fZJLjn2SS459kqj1gW1LjoFtqPXyhVqP5vRaj/KFGJnm9BiZ//+plv//aKDyhamWaOJooDfMaKBUsmigI5xooPKFaKB9khixfZI0quOZNKrjmRaSfZIWkn2SMovndDDW53RHpxeLMNYXi0en3cXAh9nqwIdb2G67xfpAtBeLdqXndHalF4tinOd0YpwhOsCHJRXAh6Mnbrs5BUC0fZJOhH2SaX3jmWl945lLZX2SS2V9kmde//9LZf//L2zyhUtl5vQvbGjiL2zm9Gl9aOJpfTfML2xUsi9sN8xpfVSyaX0jnC9sI5xpffKFaX0YC2l9GAsvbJYdaX2WHS9sDHpLZcczL2wAAEtlAAAvbKpNL2yqTWl9xzNpfdtjL2wMeml922NpfTfMFpI3zFCjVLIWklSyUKPyhTSqI5xQo2jiUKPyhRaSI5wWkub0NKpo4haS5vT6mP//+pj//xaS8oWtbyOcrW/yhWx5VLKtbzfMrW9o4q1v5vRseeb0rW8AAP12DHr9dgAAu4AMeruADHpseRgLbHkMeq1vGAutb9tjrW+WHa1vqk2tb8czrW///7uA8oW7gP///Xbyhf12DHoWkgx6NKrbYxaS22NQo6pNUKPHM1CjxzMWkqpNFpKWHVCjGAs0qhgL+piWHRaSAAAWkgAA+pgXi9zS53Tc0heLi67ndIuugW0YsRtmNKqBbTSqgW0WkhtmFpKBbTKLgW1OhBtmaX2BbWl9gW1LZRtmS2WBbWdei4VsxYuF/OBzemzFi4VLjn2SS459kv//i4XE7nN6/OBzekuOgW1LjnN6xO6Bbf////8Wkv//+pjyhRaS5vT6mOb0NKryhTSqfZJLjn2S//+BbUuOgW3//xgLNKoYC/qYDHo0qgx6FpIAABaSAAD6mIFtqPWBbUuOfZKo9X2SS44YC2l9GAsvbAx6aX0MektlAABLZQAAL2yBbaj1gW1Ljn2SqPV9kkuO//9LZf//L2zyhUtl5vQvbOb0aX3yhWl9fZJLjn2S//+BbUuOgW3//32SaX2BbWl9fZJLZYFtS2V9kjSqgW00qn2SFpKBbRaSfZLUTH2SgoAXi9RMF4uCgH2S93kXi/d5fZIvbBeLL2zndNRM53SCgIFt1EyBbYKAfZL3eReL93l9ki9sF4svbBeLgoAXi9RMfZKCgH2S1EzndPd5gW33eed0L2yBbS9sgW2CgIFt1EzndIKA53TUTOd093mBbfd553QvbIFtL2xVm6FviYyhb1HAL2xVm4V214gvbFHA93nXiPd5iYyFdqlkoW+tPy9sdXOhb6lkhXYndy9srT/3eSd393l1c4V253RnXoFtS2WBbWdefZJnXn2SS2UXi2degW2o9YFt//8bZqj1G2b//32S+pjjmfqYfZI0quOZNKobZjSqgW00qoFt+pgbZvqYgW0YsX2SGLHjmfqYfZL6mOOZFpJ9khaSfZIyi4FtFpIbZhaSgW0yixtm+piBbfqY45mo9eOZ//99kqj1fZL//+OZL2x9ki9s45lLZX2SS2V9kmdegW1LZRtmS2WBbWdeG2YvbIFtL2x9ki9s45kvbH2SaX3jmWl9G2ZpfYFtaX2BbS9sG2YvbIFtToR9kk6EgW2o9YFt//8bZqj1G2b//+OZqPXjmf//fZKo9X2S//+VNB1ylTTce+YLHXLmC9x7acvce2nLHXIY9Nx7GPQdcvKFaX3yhU6E8oUyiyd3L2zyhRaS8oVLZfKFNKqVNGde8oVnXq0/L2ytP/d5lTRLZSd393nmC8CH5gtLZd5VwIdcaG673lU0qvKFbrvyhRixDHpOhAx6aX0MejKLDHpLZdeIL2wMehaSactnXgx6Z15RwC9sUcD3edeI93lpy0tlGPTAhxj0S2UgqsCHopduuyCqNKoMejSqDHoYsQx6brt9kgSdgW0EnX2Sp4SBbaeEfZLAh4FtwId9kktlgW1LZReLZ17ndGdeF4vAh32SwIcXi/qYfZI0qoFtNKrndPqYgW3Ah+d0wId9krpyfZJLjoFtunKBbUuOgW2AYYFtlxzndIBh53TjWOd0qUcXi+NY53Q0JReLqUcXi4BhfZKAYReLNCV9kpcci4Vnh32SS46LhSx2c3osdnN6Z4dzeotsc3ofTIuFi2yLhR9Mi4V+QheLfkJ9kn5CF4uXHHN6fkLndJcc53R+QoFtS46BbX5CfZIyi4FtMot9kk6EgW1OhH2SbruBbW67fZIYsYFtGLFvdqFvb3aFdipuoW8qboV2Km6hbypuhXblZaFv5WWFdo+JoW/UkaFvj4mFdtSRhXbUkaFvGZqhb9SRhXYZmoV2E8GWThPBOFhFnpZOE8GWThPBOFhFnpZOi4USZ4uFDmxzehJni4USZ4uFDmxzehJn5vQYmfKFGJnm9FqP5vQYmfKFGJnm9FqPc3rcj3N6z46LhdyPc3rcj3N6z46LhdyP//84ul3W6cJh/n+z//84ul3W6cJh/n+zG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvyo7zRheLpSLKjjMfyo7zRheLpSLKjjMf53RinBeLYpzndHal53RinBeLYpzndHalG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvaOIvbOb0aX1o4ml9aOIvbOb0aX1o4ml922Ohb9tj3p+qTaFv22Ohb9tj3p+qTaFvxzOtb6pNrW+WHa1vxzOtb6pNrW+WHa1vfZL//32SqPXjmf//fZL//32SqPXjmf//lh1QoxgL+piWHRaSlh1QoxgL+piWHRaSjX5nXo1+9VryhWdejX5nXo1+9VryhWdeF4vjWOd041gXi8pEF4vjWOd041gXi8pETHyrIrKDqyJzemksTHyrIrKDqyJzemksactLZVHA93lpy2deactLZVHA93lpy2degW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbRaSfZIWkoFtNKqBbRaSfZIWkoFtNKqBbWdegW1LZRtmS2WBbWdegW1LZRtmS2U="), -"format": 34896613399, -"index_count": 582, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABAADAAEAAQAFAAQACAAGAAcABwAJAAgADAAKAAsACwANAAwAEAAOAA8ADwARABAAFAASABMAEwAVABQAGAAWABcAFwAZABgAGQAXABoAGgAbABkAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAIwAkACIAJAAlACIAJQAmACIAJgAnACIAKAAjACEAKAAhACkAKAApACoAKwAoACoALAArACoALQAsACoALgAtACoAKgAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOgA5ADsAOgA7ADwAPQA6ADwAPgA9ADwAPgA8AD8AQAA+AD8APwBBAEAAQgBAAEEAQgBBAEMAQgBDAEQAQgBEAEUARgBCAEUARQBHAEYASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIAVgBUAFUAVQBXAFYAVQBYAFcAWABZAFcAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgAbABqAGsAawBtAGwAbQBuAGwAbQBvAG4AcgBwAHEAcQBzAHIAdgB0AHUAdQB3AHYAegB4AHkAeQB7AHoAfgB8AH0AfQB/AH4AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAiwCMAIoAiwCNAIwAkACOAI8AjwCRAJAAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAnACaAJsAmwCdAJwAmwCeAJ0AngCfAJ0AogCgAKEAoQCjAKIAoQCkAKMApAClAKMAqACmAKcApwCpAKgArACqAKsAqwCtAKwAsACuAK8ArwCxALAAtACyALMAswC1ALQAtQC2ALQAtQC3ALYAugC4ALkAuQC7ALoAvgC8AL0AvQC/AL4AvwDAAL4AvwDBAMAAxADCAMMAwwDFAMQAyADGAMcAxwDJAMgAzADKAMsAywDNAMwAywDOAM0AzgDPAM0A0gDQANEA0QDTANIA1gDUANUA1gDVANcA1wDYANYA2QDWANgA3ADaANsA2wDdANwA4ADeAN8A3wDhAOAA5ADiAOMA4wDlAOQA4wDmAOUA5gDnAOUA6gDoAOkA6QDrAOoA7gDsAO0A7QDvAO4A8gDwAPEA8QDzAPIA9gD0APUA9QD3APYA9wD4APYA+wD5APoA+gD8APsA/wD9AP4A/gAAAf8AAwEBAQIBAgEEAQMBBwEFAQYBBgEIAQcBCwEJAQoBCgEMAQsBDAENAQsBEAEOAQ8BDwERARABFAESARMBEwEVARQBGAEWARcBFwEZARgBHAEaARsBGwEdARwBGwEeAR0BIQEfASABIAEiASEBIgEjASEBJgEkASUBJQEnASYBKgEoASkBKQErASoBKQEsASsBLwEtAS4BLgEwAS8BMwExATIBMgE0ATMBNwE1ATYBNgE4ATcBOAE5ATcBPAE6ATsBOwE9ATwBQAE+AT8BPwFBAUABQgE/AT4BPwFDAUEBPgFEAUIBQwFFAUEBRAFFAUIBRAFBAUUB"), -"material": SubResource("StandardMaterial3D_bn0g3"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(27.2512, 29.2512, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("/2dm9axqVJX/Z4X7sGf/n/+XZvWsalSV/5eF+7Bn/5//lyj95Gaqqv9nKP3kZqqq/5cw3blh////l83quWH///9nMN25Yf///2fN6rlh////l83qD2yqiv9nzeoPbKqK/5dm9axqVJX/Z2b1rGpUlf+XMN3rPgCA/2cw3es+AID/l83q6z4AgP9nzerrPgCA/5cw3Q9sAID/ZzDdD2wAgP+XzeoPbACA/2fN6g9sAID/l2b1+DX///+Xhfv0OP///2dm9fg1////Z4X79Dj///+XKP3AOf///2co/cA5////Z83q6z7///9nzeq5Yf///5fN6us+////l83quWH///+XMN3rPv+//5fN6us+/7//lzDdlTT/v/+X///rPv+//5co/cA5/7//l4X79Dj/v/+XZvX4Nf+//5fN6pU0/7//l///uWH/v/+Xzeq5Yf+//5cw3blh/7//lyj95Gb/v/+XhfuwZ/+//5dm9axq/7//l83qD2z/v/+XMN0PbP+//5cw3ZU0////l83qlTT///9nMN2VNP///2fN6pU0////l83qlTT///+XZvX4Nf///2fN6pU0////Z2b1+DX///9nzeqVNP+//2dm9fg1/7//ZzDdlTT/v/9nhfv0OP+//2co/cA5/7//ZzDd6z7/v/9nzerrPv+//2f//+s+/7//Z83quWH/v/9n//+5Yf+//2cw3blh/7//Zyj95Gb/v/9nhfuwZ/+//2dm9axq/7//ZzDdD2z/v/9nzeoPbP+//2f//+s+////Zyj9wDn///+X///rPv///5co/cA5////Z///uWH/v/9n///rPv+//5f//7lh/7//l///6z7/v/9n//+5YVS1/5f//7lhVLX/Zyj95Gaqqv+XKP3kZqqq/++JRWjiAID/73JraOIAgP//Hk1o4gCA//9Gt2jiAID/7/KYaOIAgP/v275o4gCA//8eTWjijMH//0a3aOKMwf//Hk03zIXc//9GtzfMjMH//0a3aOKMwf/v275o4vzF//9GtzfMjMH/79u+N8z8xf/v8pho4v+//+9ya2ji/7//7/KYN8z/v//vcms3zP+//++JRWji/MX//x5NaOKMwf/viUU3zKvW//8eTTfMhdz/74lFN8xT5///Hk03zDzg/+9yazfM/////0a3N8z////v8pg3zP///+/bvjfM//8AAB5NVLKMwf8PiUVUsvzFAAAeTSOcjMH/D4lFI5z8xQAARrdo4ozBAAAeTWjijMEAAEa3N8yMwQAAHk03zIzB/7/MDj8r/7//v+shnQH/v/+/AAChKf+//78fEwAA/7//P8wOPyv/v/8/AAChKf+//z/rIZ0B/7//Px8TAAD/v/+/HxMAAP///7/rIZ0B////Px8TAAD///8/6yGdAf///w/bvmji/MUAAEa3aOKMwf8P2743zPzFAABGtzfMjMH/D4lFaOIAgAAAHk1o4gCA/w9ya2jiAIAAAEa3aOIAgP8P8pho4gCA/w/bvmjiAIAAAB5NaOKMwf8PiUVo4vzFAAAeTTfMjMH/D4lFN8z8xf8Pcmto4v+//w/ymGji/7//D3JrN8z/v/8P8pg3zP+/AABGt1SyjMEAAB5NVLKMwQAARrcjnIzBAAAeTSOcjMH/D4lFI5z///8PcmsjnP//AAAeTSOc//8AAEa3I5z///8P8pgjnP///w/bviOc////D4lFN8z///8Pcms3zP//AAAeTTfM//8AAEa3N8z///8P8pg3zP///w/bvjfM////PwAAoSn///+/AAChKf///z8fEwAA////vx8TAAD///+/AAChKfqI/z8AAKEp+oj/v8wOPyv6iP8/zA4/K/qI/w/bvlSy/MUAAEa3VLKMwf8P274jnPzFAABGtyOcjMH/D4lFVLIAgAAAHk1UsgCA/w9ya1SyAIAAAEa3VLIAgP8P8phUsgCA/w/bvlSyAID/D3JrVLL/v/8P8phUsv+//w9yayOc/7//D/KYI5z/v//viUUjnFPn//8eTSOcPOD/73JrI5z/////RrcjnP///+/ymCOc////79u+I5z///9PSFz3M////09IXN5V////r0hc9zP///+vSFzeVf////8eTVSyjMH//0a3VLKMwf//Hk0jnIXc//9GtyOcjMH/74lFVLIAgP/vcmtUsgCA//8eTVSyAID//0a3VLIAgP/v8phUsgCA/+/bvlSyAID/7/KYVLL/v//vcmtUsv+//+/ymCOc/7//73JrI5z/v/+vPW8MN/+//69IXPcz/7//rz1vn0z/v/+vSFzeVf+//68ygt5V/7//rzKCn0z/v///RrdUsozB/+/bvlSy/MX//0a3I5yMwf/v274jnPzF/++JRVSy/MX//x5NVLKMwf/viUUjnKvW//8eTSOchdz/TzKC3lX/v/9PSFzeVf+//08ygp9M/7//Tz1vn0z/v/9PSFz3M/+//089bww3/7//ZzDdjX7///+XMN2Nfv///2fF5I1+////l8XkjX7///9PPW+fTP///689b59M////TzKCn0z///+vMoKfTP///29b7IHt/7//b1vsG+bj0P+PW+yB7f+//49b7Bvm49D/Z8XkH8H/v/9nMN0fwf+//2fF5I1+/7//ZzDd8oX/v/9nMN2Nfv+//29b7IHtmsD/ZzDdge2awP9vW+wb5prA/2cw3bXemsD/Tz1vDDf/v/+vPW8MN/+//089b59M/7//rz1vn0z/v/+XMN2B7QCA/2cw3YHtAID/j1vsge0AgP9vW+yB7QCA/5cw3R/BAID/ZzDdH8EAgP+XxeQfwQCA/2fF5B/BAID/lzDdH8H/v/+XxeQfwf+//5cw3fKF/7//l8XkjX7/v/+XMN2Nfv+//2fF5B/B/7//Z8XkjX7/v/+XxeQfwf+//5fF5I1+/7//lzDdge2awP+PW+yB7ZrA/5cw3bXemsD/j1vsG+aawP9nMN213v///5cw3bXe////b1vsG+b///+PW+wb5v///y8cqA9s////PxyodXP///8/HKipZP///08cqKlk////TxyodXP///+vRrd1c/+//69Gt6lk/7//v0a3dXP/v/+/RrepZP+//89Gtw9s/7//TxyodXMAgP8/HKh1cwCA/09Gt3VzAID/P0a3dXMAgP8vRrcPbP+//z9Gt6lk/7//P0a3dXP/v/9PRrd1c/+//09Gt6lk/7//rxyoqWT///+/HKipZP///69Gt6lk////v0a3qWT///+/HKh1cwCA/68cqHVzAID/v0a3dXMAgP+vRrd1cwCA/68cqKlk////rxyodXP///+/HKipZP///78cqHVz////zxyoD2z///8/HKipZP///08cqKlk////P0a3qWT///9PRrepZP///z/rIZ0BBLf/T3QQoycEt/8/zA4/KwS3/7/MDj8rBLf/T0MgOQUEt/+vdBCjJwS3/7/rIZ0BBLf/r0MgOQUEt//PnXr//1TV/8+devKFVNX/73Jr//9U1f/vcmvyhVTV/+9ya2jiVNX/73JrN8xU1f/vcmtUslTV/+9yayOcVNX/L8eJ8oVU1f8vx4nm9FTV/8/HifKFVNX/z8eJ5vRU1f/PNCfyhVTV/880J+b0VNX/71428oVU1f/vXjbm9FTV/y+dev//VNX/L5168oVU1f/PnXr//1TV/8+devKFVNX/LzQn8oVU1f8vNCfm9FTV/880J/KFVNX/zzQn5vRU1f8PXjbyhVTV/w9eNub0VNX/LzQn8oVU1f8vNCfm9FTV/y+dev//VNX/D3Jr//9U1f8vnXryhVTV/w9ya2jiVNX/D3JrN8xU1f8PcmtUslTV/w9yayOcVNX/D3Jr8oVU1f8vNCfyhf///y9eNvKF////D1428oX///8Pcmvyhf///y9ya/KF////L5168oX///+vQyA5Bb/2/68ygiUVv/b/T0MgOQW/9v9PMoIlFb/2/68ygiE6VNX/rzKCJRVU1f+vdBCjJ1TV/69DIDkFVNX/rz1vDDcKwf9PPW8MNwrB/68ygiE6CsH/TzKCIToKwf9PMoIhOlTV/08ygiUVVNX/T3QQoydU1f9PQyA5BVTV/y/HifKF////L/KY8oX///8P8pjyhf///w8GzvKF////LwbO8oX///8vMN3yhf///w8Gzv//VNX/D9u+//9U1f8PBs7yhVTV/w/bvub0VNX/D9u+aOJU1f8P8pjm9FTV/w/ymGjiVNX/D9u+N8xU1f8P275UslTV/w/ymDfMVNX/D/KYVLJU1f8P274jnFTV/w/ymCOcVNX/D/KY8oVU1f/v8pjm9FTV/+/bvub0VNX/7/KYaOJU1f/v275o4lTV/+8GzvKFVNX/79u+N8xU1f/vBs7//1TV/+/bvv//VNX/79u+VLJU1f/v8phUslTV/+/ymDfMVNX/79u+I5xU1f/v8pjyhVTV/+/ymCOcVNX/D3JrN8xU1f8PiUU3zFTV/w9ya1SyVNX/D4lFVLJU1f8PXjbyhVTV/w+JRSOcVNX/D4lFaOJU1f8PcmvyhVTV/w9yayOcVNX/D1425vRU1f8Pcmto4lTV/w9IXOb0VNX/D0hc//9U1f8Pcmv//1TV/w/ymPKFVNX/D/KYI5xU1f8vx4nyhVTV/w/ymFSyVNX/D/KYN8xU1f8P8pho4lTV/y/Hieb0VNX/D/KY5vRU1f/PMN3//1TV/88w3fKFVNX/7wbO//9U1f/vBs7yhVTV/8/HifKFVNX/z8eJ5vRU1f/v8pjyhVTV/+/ymOb0VNX/7/KYI5xU1f/v8pho4lTV/+/ymFSyVNX/7/KYN8xU1f8PBs7//1TV/w8GzvKFVNX/LzDd//9U1f8vMN3yhVTV/+9ya/KFVNX/71428oVU1f/vcmsjnFTV/++JRSOcVNX/74lFVLJU1f/viUU3zFTV/+9yazfMVNX/73JrVLJU1f/viUVo4lTV/+9eNub0VNX/70hc5vRU1f/vcmto4lTV/+9ya///VNX/70hc//9U1f+vdBCjJwrB/090EKMnCsH/r0hc9zMKwf9PSFz3MwrB/880J/KF////71428oX////PXjbyhf///89ya/KF////73Jr8oX////PnXryhf///8/HifKF////7/KY8oX////P8pjyhf///88GzvKF////7wbO8oX////PMN3yhf///5cw3R/BVNX/lzDdtd5U1f9nMN0fwVTV/5cw3fKFVNX/zzDd8oVU1f/PMN3//1TV/5cw3YHtVNX/ZzDdtd5U1f9nMN3yhVTV/y8w3fKFVNX/ZzDdge1U1f8vMN3//1TV/89ya///VNX/z0hc//9U1f/PcmvyhVTV/89IXOb0VNX/z1425vRU1f/PXjbyhVTV/y9ya/KFVNX/L3Jr//9U1f/PcmvyhVTV/89ya///VNX/L1425vRU1f8vSFzm9FTV/y9eNvKFVNX/L3Jr8oVU1f8vcmv//1TV/y9IXP//VNX/L1425vRU1f8vXjbyhVTV/89eNub0VNX/z1428oVU1f8v8pjm9FTV/y/bvub0VNX/L/KY8oVU1f8vBs7yhVTV/y8Gzv//VNX/L9u+//9U1f8v8pjm9FTV/y/ymPKFVNX/z/KY5vRU1f/P8pjyhVTV/88Gzv//VNX/z9u+//9U1f/PBs7yhVTV/8/bvub0VNX/z/KY5vRU1f/P8pjyhVTV/y8GzvKFVNX/LwbO//9U1f/PBs7yhVTV/88Gzv//VNX/z/KY8oX///8v8pjyhf///88GzvKF////LwbO8oX////PXjbyhf///y9eNvKF////z3Jr8oX///8vcmvyhf///y/bvq0/VNX/L9u+J3dU1f9P276tP1TV/0/bvid3VNX/L4egJ3f///9Ph6And////y/bvid3////T9u+J3f///+v276tP1TV/6/bvid3VNX/z9u+rT9U1f/P274nd1TV/8+HoK0/////r4egrT/////P276tP////6/bvq0/////r4egJ3dU1f+vh6CtP1TV/8+HoCd3VNX/z4egrT9U1f9Ph6CtP////y+HoK0/////T9u+rT////8v276tP////y+HoCd3VNX/L4egrT9U1f9Ph6And1TV/0+HoK0/VNX/r4egJ3f////Ph6And////6/bvid3////z9u+J3f///+vRrepZFTV/69Gt3VzVNX/r9u+rT9U1f+vHKipZFTV/6/bvid3VNX/r4egrT9U1f+vh6And1TV/68cqHVzVNX/T0a3qWRU1f9P276tP1TV/09Gt3VzVNX/TxyoqWRU1f9P274nd1TV/0+HoK0/VNX/T4egJ3dU1f9PHKh1c1TV/68w3ZU0////zwbOlTT////PMN2VNP///y8w3ZU0////LwbOlTT///9PMN2VNP///89IXOb0VNX/z0hc//9U1f/vSFzm9FTV/+9IXP//VNX/z0hc5vT////vSFzm9P///89eNub0////71425vT///8PXjbm9P///y9eNub0////L0hc5vT///8PSFzm9P///y80J+b0////zzQn5vT////vSFz//////89IXP//////73Jr///////Pcmv//////8+dev//////L3Jr//////8Pcmv//////y+dev//////D0hc//////8vSFz//////w9IXOb0VNX/D0hc//9U1f8vSFzm9FTV/y9IXP//VNX/79u+///////P277//////+8Gzv//////zwbO///////PMN3//////y8Gzv//////DwbO//////8vMN3//////w/bvv//////L9u+///////P277m9P///+/bvub0////z/KY5vT////v8pjm9P///w/ymOb0////L/KY5vT///8v277m9P///w/bvub0////L8eJ5vT////Px4nm9P///8/bvub0VNX/z9u+//9U1f/v277m9FTV/+/bvv//VNX/D9u+5vRU1f8P277//1TV/y/bvub0VNX/L9u+//9U1f9PMN2VNFTV/y8GzpU0VNX/TzDd5gtU1f8vBs7mC1TV/88GzpU0VNX/rzDdlTRU1f/PBs7mC1TV/68w3eYLVNX/L/KY8oVU1f8vx4nyhVTV/y+devKFVNX/L9u+J3dU1f8vcmvyhVTV/y8GzvKFVNX/L1428oVU1f8vMN2VNFTV/y8w3fKFVNX/L9u+rT9U1f8vh6CtP1TV/y8GzpU0VNX/L4egJ3dU1f8vMoLmC1TV/y8GzuYLVNX/LzKC3lVU1f8vdBBcaFTV/y9eNt5VVNX/L3QQ8oVU1f8vNCfyhVTV/8/HifKFVNX/z/KY8oVU1f/PnXryhVTV/88GzvKFVNX/z9u+J3dU1f/PcmvyhVTV/88w3ZU0VNX/zzDd8oVU1f/P276tP1TV/8+HoK0/VNX/z4egJ3dU1f/PBs6VNFTV/88yguYLVNX/zwbO5gtU1f/PMoLeVVTV/890EFxoVNX/z1423lVU1f/PXjbyhVTV/880J/KFVNX/z3QQ8oVU1f8vdBBcaKrp/890EFxoqun/L1423lWq6f/PXjbeVarp/y8yguYL////zzKC5gv///8vBs7mC////88GzuYL////TzDd5gv///+vMN3mC////08ygt5V////LzKC3lX///9PSFzeVf///y9eNt5V////z1423lX///+vSFzeVf///88ygt5V////rzKC3lX///8vdBBcaFTV/y90EPKFVNX/z3QQXGhU1f/PdBDyhVTV/88ygt5VVNX/zzKC5gtU1f+vMoLeVVTV/68ygp9MVNX/rzKCITpU1f9PMoKfTFTV/68ygiUVVNX/TzKCITpU1f9PMoLeVVTV/y8ygt5VVNX/TzKCJRVU1f8vMoLmC1TV/5cw3Y1+VNX/zzDd8oVU1f+XMN0PbFTV/2cw3Q9sVNX/ZzDdjX5U1f9nMN25YVTV/2cw3es+VNX/lzDduWFU1f+XMN3rPlTV/5cw3ZU0VNX/rzDdlTRU1f/PMN2VNFTV/68w3eYLVNX/ZzDdlTRU1f9PMN3mC1TV/08w3ZU0VNX/LzDd8oVU1f8vMN2VNFTV/8+devKF////L5168oX////Px4nyhf///y/HifKF////z3QQ8oX///8vdBDyhf///880J/KF////LzQn8oX///8vRrcPbFTV/y8cqA9sVNX/P0a3qWT14P8/HKipZPXg/z9Gt3VzaMv/PxyodXNoy/8vRrcPbFTV/y8cqA9sVNX/z0a3D2xU1f+/RrepZPXg/88cqA9sVNX/vxyoqWT14P+/Rrd1c2jL/89Gtw9sVNX/vxyodXNoy//PHKgPbFTV/2cw3es+VNX/ZzDdlTRU1f+XMN3rPlTV/5cw3ZU0VNX/lzDd6z5U1f9nMN2VNFTV/w/bvmjiVNX/D/KYaOJU1f8P2743zFTV/w/ymDfMVNX/D9u+N8xU1f8P8pho4lTV/++JRWjiVNX/73JraOJU1f/viUU3zFTV/+9yazfMVNX/74lFN8xU1f/vcmto4lTV/2cw3blhVNX/lzDduWFU1f9nMN0PbFTV/5cw3Q9sVNX/ZzDdD2xU1f+XMN25YVTV/08ygiUVVNX/TzKCITpU1f+vMoIlFVTV/68ygiE6VNX/rzKCJRVU1f9PMoIhOlTV/w+JRWjiVNX/D3JraOJU1f8PiUU3zFTV/w9yazfMVNX/D4lFN8xU1f8Pcmto4lTV/++JRVSyVNX/73JrVLJU1f/viUUjnFTV/+9yayOcVNX/74lFI5xU1f/vcmtUslTV/w+JRVSyVNX/D3JrVLJU1f8PiUUjnFTV/w9yayOcVNX/D4lFI5xU1f8PcmtUslTV/09IXN5V////r0hc3lX///9PMoLeVf///68ygt5V////TzKC3lX///+vSFzeVf///+/bvmjiVNX/7/KYaOJU1f/v2743zFTV/+/ymDfMVNX/79u+N8xU1f/v8pho4lTV/08ygp9MVNX/TzKC3lVU1f+vMoKfTFTV/68ygt5VVNX/rzKCn0xU1f9PMoLeVVTV/w/ymFSyVNX/D9u+VLJU1f8P8pgjnFTV/w/bviOcVNX/D/KYI5xU1f8P275UslTV/+/ymFSyVNX/79u+VLJU1f/v8pgjnFTV/+/bviOcVNX/7/KYI5xU1f/v275UslTV/2cw3fKFVNX/ZzDdjX5U1f+XMN3yhVTV/5cw3Y1+VNX/lzDd8oVU1f9nMN2NflTV/2cw3YHtVNX/ZzDdtd5U1f+XMN2B7VTV/5cw3bXeVNX/lzDdge1U1f9nMN213lTV/2cw3fKFVNX/ZzDdH8FU1f+XMN3yhVTV/5cw3R/BVNX/lzDd8oVU1f9nMN0fwVTV/09IXPczv/b/r0hc9zO/9v9PPW8MN7/2/689bww3v/b/Tz1vDDe/9v+vSFz3M7/2/880J/KF////LzQn8oX////PXjbyhf///y9eNvKF////z1428oX///8vNCfyhf///y8GzvKF////zwbO8oX///8vMN3yhf///88w3fKF////LzDd8oX////PBs7yhf///2cw3fKF////LzDd8oX////PMN3yhf///5cw3fKF////ZzDd8oX///8vx4nyhf///8/HifKF////L/KY8oX////P8pjyhf///y/ymPKF////z8eJ8oX///8vcmvyhf///89ya/KF////L5168oX////PnXryhf///y+devKF////z3Jr8oX//////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f/Lk/3+B2v9/8uT/f4Ha/38l0f9/JdH/f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fxrx/3/y5P9/GvH/f/Lk/3/+//9//v//f/7//3////9//v//f/7//3/+//9/////f////3////9/////f////3////9/////f/7//3/+//9/bMj/fyXR/39syP9/JdH///9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3///8htbSRtpDYSUWwNHW2kNhJtpDYS/bn/HG2kNhL9uf8c/3////9/////f////3///wBj/jnIbW0kQWBcM1FsDR3ejcw0L4nsHv9/////f/7//3/+//9//v+RW8jtAUb/4pFbyO0BRv/iNpKR25FbyO02kpHbkVvI7f9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////38+8/9/PvP/fz7z/38+8/6cAMY2kpHb/pwAxjaSkdv/f////3////9/////f////3////9///+RW8jtAUb/4pFbyO0BRv/i/38AAP9/AAD/fwAA/38AADaSkduRW8jtNpKR25FbyO3/f/7//3////9//v//f/7//3////9//v//f/7//3////9//v//f/7//3////9//v/quP//6rj//+q4///quP//AAD/fwAA/38AAP9/AAD/f/6cAMY2kpHb/pwAxjaSkdv/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA3o3MNC+J7B7/f////3/+//9//v//f/7//3//P/9//z//f/8//3//P8htbSRtpDYSUWwNHW2kNhL/f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAAbaQ2Ev25/xxtpDYS/bn/HABj/jnIbW0kQWBcM1FsDR3/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3//f////3////9/////f////3///6SMteakjLXmpIy15qSMteb///9/////f////3////9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////39JmaQMSZmkDEmZpAxJmaQM/3+B2v9/gdr/f3TN/390zf9//z//f/8//3//P/9//z//f/8/////f////3////9/////f////3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f/8//3////9/////f////3////7//3/+//9//v//f////3/+//9/////f/7//3/+//9/gdqCWoHaglp8pX0lfKV9JUevSC9Hr0gvR69IL0evSC99JXylfSV8pX0lglp9JYJafSWCWn0lglqCWn0lglp9JYHafKWB2nylgdqCWoHaglp9JXylfSV8pX0lglp9JYJaglqB2oJagdp9JXylfSV8pYHafKV8pYHagdp8pUevttBHr7bQR6+20EevttB8pYHa/3////9/////f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3///3ylgdr/f///fKWB2v9/////f///glqB2rdQttD/f////3///7dQttC3ULbQ/3///7dQttCCWoHaglp9Jf9/AAC3UEgv/38AAHylfSX/fwAAfKV9Jf9/AAD/fwAAt1BIL7dQSC//fwAAglp9JbdQSC9Hr7bQ/3///0evttD/f///glqB2v9/////f///fKWB2kevttCCWoHaR6+20P9/////f///fKWB2oJagdq3ULbQfSV8pbdQttC3ULbQt1C20H0lfKWCWoHagdqCWoHaglp8pX0lfKV9JX0lglp9JYJaglp9JYJafSW3UEgvt1BIL7dQSC+3UEgvfKWB2nylgdqB2nylgdp8pXylfSWCWn0lR69IL/9/AAD/fwAA/38AAEevSC9Hr0gv/38AAIJafSX/fwAAR69IL3ylfSX/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3+B2oJagdqCWv///3////9/////f4HafKX///9/gdp8pf9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3////9/////f////3////9//3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//7//v/+//7//v/+//7//v/+//z//v/8//7//P/+//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 384, -"index_data": PackedByteArray("SAFGAUcBRwFJAUgBSQFKAUgBSQFLAUoBSQFMAUsBSQFNAUwBUAFOAU8BTwFRAVABVAFSAVMBUwFVAVQBWAFWAVcBVwFZAVgBXAFaAVsBWwFdAVwBYAFeAV8BXwFhAWABZAFiAWMBYwFlAWQBZQFmAWQBZgFnAWQBZwFoAWQBaAFpAWQBbAFqAWsBawFtAWwBawFuAW0BbgFvAW0BcgFwAXEBcQFzAXIB1AB0AXUBdQHVANQAdQF2AdUAdQF3AXYBegF4AXkBeQF7AXoBfQF8AecA5wDmAH0B5gB+AX0BfgF/AX0BggGAAYEBgQGDAYIBgQGEAYMBhAGFAYMBiAGGAYcBhwGJAYgBiQGKAYgBiQGLAYoBjAGKAYsBigGNAYgBjQGOAYgBjQGPAY4BkAGOAY8BjgGRAYgBkQGSAYgBkgGTAYgBlgGUAZUBlwGWAZUBmAGXAZUBmAGZAZcBmgGYAZUBlQGbAZoBmAGcAZkBnAGdAZkBnQGeAZkBmAGfAZwBmAGgAZ8BoAGhAZ8BpAGiAaMBpQGkAaMBpgGlAaMBpgGnAaUBpgGjAagBpgGpAacBqQGqAacBqwGmAagBqwGoAawBrQGrAawBrgGtAawBrAGvAa4BsgGwAbEBsQGzAbIBswG0AbIBtAG1AbIBtgGyAbUBtQG3AbYBugG4AbkBuQG7AboBvgG8Ab0BvQG/Ab4BvwHAAb4BvwHBAcABwQHCAcABwQHDAcIBxgHEAcUBxQHHAcYBygHIAckBywHKAckBzAHLAckBzQHMAckBzQHOAcwBzwHMAc4B0AHNAckB0AHJAdEB0QHSAdAB0wHQAdIB1AHTAdIB0gHVAdQB2AHWAdcB1wHZAdgB3AHaAdsB2wHdAdwB2wHeAd0B3gHfAd0B4gHgAeEB4QHjAeIB4QHkAeMB5AHlAeMB6AHmAecB5gHpAecB6QHqAecB6gHrAecB7AHnAesB5wHtAegB7gHoAe0B7wHuAe0B8AHsAesB7QHwAe8B8AHrAfEB8QHvAfAB"), -"material": SubResource("StandardMaterial3D_fop1y"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///3//////////f///AID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/f/9//7//////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdr/////fKWB2v////+B2nyl/////4HafKX/////ttBHr////7+20Eev////v7bQR6////+/ttBHr////7+CWn0lfSW90oJafSV9Jb3SfKV9JX0lQK18pX0lfSVArXylfSX/////fKV9Jf////+B2oJa/////4Haglr/////glqB2oHavdKCWoHagdq90nylgdqB2kCtfKWB2oHaQK2CWn0lfSW90oJafSV9Jb3SfKV9JX0lQK18pX0lfSVArX0lglr/f/+/fSWCWv9//7+CWn0l/3//v4JafSX/f/+/glqB2v9//799JXyl/3//v4Jagdr/f/+/SC9Hr/9//79IL0ev/3//v0gvR6//f/+/SC9Hr/9//799JXyl/3//v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v//f//8AAP+//9///wAA/7//3///AAD/v//f//8AAP+/////f/////////9///8AgP///3/+/wCA////f/7/AID/f/9f////v/9//1////+//3//X////7//f/9f////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+/fSV8pf9//78AAP9//3//v30lfKX/f/+/AAD/f/9//78AAP9//3//v30lglr/f/+/SC+3UP9//78AAP9//3//vwAA/3//f/+/SC+3UP9//79IL7dQ/3//vwAA/3//f/+/SC+3UP9//799JYJa/3//v4Haglr/////////f/////+20LdQ/////////3//////gdp8pf////////9//////4HafKX/////////f/////////9//////7bQt1D/////ttC3UP////////9//////4Haglr/////ttC3UP////9IL0ev/3//vwAA/3//f/+/SC9Hr/9//78AAP9//3//v30lglr/f/+/AAD/f/9//78AAP9//3//v30lfKX/f/+/SC9Hr/9//799JYJa/3//v0gvR6//f/+/AAD/f/9//78AAP9//3//v30lfKX/f/+/fSWCWv9//79IL7dQ/3//v4JafSX/f/+/SC+3UP9//79IL7dQ/3//v0gvt1D/f/+/glp9Jf9//799JYJa/3//v3ylgdr/////fKWB2v////+B2nyl/////4HafKX/////fKV9Jf////98pX0l/////4Haglr/////gdqCWv////+20LdQ////v7bQt1D///+/ttC3UP///7+20LdQ////v30lfKX/f/+/fSV8pf9//7+CWoHa/3//v4Jagdr/f/+/gdp8pf////+B2oJaAAAAgLbQR6///wCA////f///AID///9//////////3//////ttBHr/////+20Eev/////////3///wCAgdqCWv////////9///8AgLbQR6///wCAgdp8pf////////9///////9//1////+//3//X////7//f/9f////v/9//1////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f////v//v/9///////+//3///////798pYHagdpArXylgdqB2kCt/3////7//7//f////v//v/9///////+/glqB2oHavdL/f///////v4JagdqB2r3SAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+/AAAAAACA/78AAAAAAID/vwAAAAAAgP+/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAKmqAAAAgAAAqaoAAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP//qaoAAACA////fwAAAID//6mqAAAAgFTV/38AAACA////fwAAAIBU1f9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgA==") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("c3r7VHN6DFGLhftUi4UMUYuF/09zev9Pc3pnXnN6OFiLhWdei4U4WIuFEFVzehBVi4UUUHN6FFCLhWdec3pnXouFOFhzejhYi4VnXnN6Z16LhThYc3o4WHN6y5NzetyPi4XLk4uF3I9zes+Oi4XPjouFH0yLhYtsc3ofTHN6i2wTwWdeE8E4WGnLZ14TwZZOPsbgTwrHn1AGymdTacs4WEWelk5FnjhYRZ5nXhqZ4E9OmJ9QUpVnU++TOFjvk2dec3pnXnN6OFiLhWdei4U4WHN6DmxzehJni4UObIuFEmeVNDhY+DVnU5U0Z170OJ9QwDngT+s+Z17rPjhY6z6WTrlhOFi5YZZOuWFnXuRm4E+wZ59QrGpnUw9sZ14PbDhYi4VBtIuFPrlzekG0c3o+uXN6i2xzeh9Mi4WLbIuFH0xzenNei4VzXnN6cGOLhXBj45lQo+OZFpKVnd6flZ2hb+OZaX3jmS9slh3en5YdoW/HM96fxzOhb5YdeoqWHZuFxzN6isczm4Vo4ml9aOIWkjfMaX03zBaSlh16ipYdm4XHM3qKxzObhRtmUKNpYt6fG2YWkmlioW8bZml9G2YvbFSym4VUsnqKI5ybhSOceopo4qFvaOLenzfMoW83zN6fv9QvvGH+f7Nd1unC//84uj8rL7yhKenCnQF/swAAOLo0cRfTNHEzzMqOF9PKjjPMaOKbhWjieoo3zJuFN8x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbGjim4Vo4nqKN8ybhTfMeoqWHRaSlh1pfcczFpLHM2l9VLKhb1Sy3p8jnKFvI5zen+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbOOZUKPjmRaSlZ3en5WdoW/jmWl945kvbMqO80Y0cfNGyo4zHzRxMx/KjhfTNHEX08qOM8w0cTPMVLKbhVSyeoojnJuFI5x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbKpNFpKqTWl922MWkttjaX0bZlCjaWLenxtmFpJpYqFvG2ZpfRtmL2wXi+tBF4uAYed060HndIBhqk3en6pNoW/bY96f22Ohb+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbFSyaX1UshaSI5xpfSOcFpLyyF2QB8z6mF+zXZAgqvqYIKrAh1+zwIeqTXqKqk2bhdtjeorbY5uFqk16iqpNm4XbY3qK22Obhd5VwIfeVfqYn0zAh59MXZD3M/qYDDddkIuFZ15zemdei4X1WnN69VoXi12Q53RdkBeLwIfndMCHTHzE7kx84Oeyg8TusoPg5x/B9VofwWdejX71WvKFZ16Nfmdege3RWYHt7GAb5tFZtd7sYOd0ykQXi8pE53TjWBeL41iLhWdec3pnXrKDg1dMfINXi4VnXnN6Z16LhfVac3r1Wt8+Z17fPvVaDHpnXnGB9VpxgWdec3psxXN6Z4eLhWzFi4Vnh30S7GB9EtFZSSHsYOMZ0VmLhWksc3ppLLKDqyJMfKsifZIsdsqOEH3KjkhvF4tIbxeLEH0XixB9F4tIb8qOEH3KjkhvfZIsdud0hXY0cYV253ShbzRxoW+BbSx2NHFIbzRxEH3ndBB953RIb+d0hXY0cYV253ShbzRxoW/KjoV2F4uFdsqOoW8Xi6Fv53RIb+d0EH00cUhvNHEQfYFtLHbKjoV2F4uFdsqOoW8Xi6FvNHEzH+d0gEM0cfNGyo7zRud0pSIXi4BDyo4zHxeLpSIAAKmWDHqplgAAaKAMemiglh1ooMczaKCqTWig22NooH2SS459kqj1gW1LjoFtqPUMehiZGAsYmQx6Wo8YC1qPgW3//4FtS459kv//fZJLjn2SS459kqj1gW1LjoFtqPXyhVqP5vRaj/KFGJnm9BiZ//+plv//aKDyhamWaOJooDfMaKBUsmigI5xooPKFaKB9khixfZI0quOZNKrjmRaSfZIWkn2SMovndDDW53RHpxeLMNYXi0en3cXAh9nqwIdb2G67xfpAtBeLdqXndHalF4tinOd0YpwhOsCHJRXAh6Mnbrs5BUC0fZJOhH2SaX3jmWl945lLZX2SS2V9kmde//9LZf//L2zyhUtl5vQvbGjiL2zm9Gl9aOJpfTfML2xUsi9sN8xpfVSyaX0jnC9sI5xpffKFaX0YC2l9GAsvbJYdaX2WHS9sDHpLZcczL2wAAEtlAAAvbKpNL2yqTWl9xzNpfdtjL2wMeml922NpfTfMFpI3zFCjVLIWklSyUKPyhTSqI5xQo2jiUKPyhRaSI5wWkub0NKpo4haS5vT6mP//+pj//xaS8oWtbyOcrW/yhWx5VLKtbzfMrW9o4q1v5vRseeb0rW8AAP12DHr9dgAAu4AMeruADHpseRgLbHkMeq1vGAutb9tjrW+WHa1vqk2tb8czrW///7uA8oW7gP///Xbyhf12DHoWkgx6NKrbYxaS22NQo6pNUKPHM1CjxzMWkqpNFpKWHVCjGAs0qhgL+piWHRaSAAAWkgAA+pgXi9zS53Tc0heLi67ndIuugW0YsRtmNKqBbTSqgW0WkhtmFpKBbTKLgW1OhBtmaX2BbWl9gW1LZRtmS2WBbWdei4VsxYuF/OBzemzFi4VLjn2SS459kv//i4XE7nN6/OBzekuOgW1LjnN6xO6Bbf////8Wkv//+pjyhRaS5vT6mOb0NKryhTSqfZJLjn2S//+BbUuOgW3//xgLNKoYC/qYDHo0qgx6FpIAABaSAAD6mIFtqPWBbUuOfZKo9X2SS44YC2l9GAsvbAx6aX0MektlAABLZQAAL2yBbaj1gW1Ljn2SqPV9kkuO//9LZf//L2zyhUtl5vQvbOb0aX3yhWl9fZJLjn2S//+BbUuOgW3//32SaX2BbWl9fZJLZYFtS2V9kjSqgW00qn2SFpKBbRaSfZLUTH2SgoAXi9RMF4uCgH2S93kXi/d5fZIvbBeLL2zndNRM53SCgIFt1EyBbYKAfZL3eReL93l9ki9sF4svbBeLgoAXi9RMfZKCgH2S1EzndPd5gW33eed0L2yBbS9sgW2CgIFt1EzndIKA53TUTOd093mBbfd553QvbIFtL2xVm6FviYyhb1HAL2xVm4V214gvbFHA93nXiPd5iYyFdqlkoW+tPy9sdXOhb6lkhXYndy9srT/3eSd393l1c4V253RnXoFtS2WBbWdefZJnXn2SS2UXi2degW2o9YFt//8bZqj1G2b//32S+pjjmfqYfZI0quOZNKobZjSqgW00qoFt+pgbZvqYgW0YsX2SGLHjmfqYfZL6mOOZFpJ9khaSfZIyi4FtFpIbZhaSgW0yixtm+piBbfqY45mo9eOZ//99kqj1fZL//+OZL2x9ki9s45lLZX2SS2V9kmdegW1LZRtmS2WBbWdeG2YvbIFtL2x9ki9s45kvbH2SaX3jmWl9G2ZpfYFtaX2BbS9sG2YvbIFtToR9kk6EgW2o9YFt//8bZqj1G2b//+OZqPXjmf//fZKo9X2S//+VNB1ylTTce+YLHXLmC9x7acvce2nLHXIY9Nx7GPQdcvKFaX3yhU6E8oUyiyd3L2zyhRaS8oVLZfKFNKqVNGde8oVnXq0/L2ytP/d5lTRLZSd393nmC8CH5gtLZd5VwIdcaG673lU0qvKFbrvyhRixDHpOhAx6aX0MejKLDHpLZdeIL2wMehaSactnXgx6Z15RwC9sUcD3edeI93lpy0tlGPTAhxj0S2UgqsCHopduuyCqNKoMejSqDHoYsQx6brt9kgSdgW0EnX2Sp4SBbaeEfZLAh4FtwId9kktlgW1LZReLZ17ndGdeF4vAh32SwIcXi/qYfZI0qoFtNKrndPqYgW3Ah+d0wId9krpyfZJLjoFtunKBbUuOgW2AYYFtlxzndIBh53TjWOd0qUcXi+NY53Q0JReLqUcXi4BhfZKAYReLNCV9kpcci4Vnh32SS46LhSx2c3osdnN6Z4dzeotsc3ofTIuFi2yLhR9Mi4V+QheLfkJ9kn5CF4uXHHN6fkLndJcc53R+QoFtS46BbX5CfZIyi4FtMot9kk6EgW1OhH2SbruBbW67fZIYsYFtGLFvdqFvb3aFdipuoW8qboV2Km6hbypuhXblZaFv5WWFdo+JoW/UkaFvj4mFdtSRhXbUkaFvGZqhb9SRhXYZmoV2E8GWThPBOFhFnpZOE8GWThPBOFhFnpZOi4USZ4uFDmxzehJni4USZ4uFDmxzehJn5vQYmfKFGJnm9FqP5vQYmfKFGJnm9FqPc3rcj3N6z46LhdyPc3rcj3N6z46LhdyP//84ul3W6cJh/n+z//84ul3W6cJh/n+zG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvyo7zRheLpSLKjjMfyo7zRheLpSLKjjMf53RinBeLYpzndHal53RinBeLYpzndHalG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvaOIvbOb0aX1o4ml9aOIvbOb0aX1o4ml922Ohb9tj3p+qTaFv22Ohb9tj3p+qTaFvxzOtb6pNrW+WHa1vxzOtb6pNrW+WHa1vfZL//32SqPXjmf//fZL//32SqPXjmf//lh1QoxgL+piWHRaSlh1QoxgL+piWHRaSjX5nXo1+9VryhWdejX5nXo1+9VryhWdeF4vjWOd041gXi8pEF4vjWOd041gXi8pETHyrIrKDqyJzemksTHyrIrKDqyJzemksactLZVHA93lpy2deactLZVHA93lpy2degW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbRaSfZIWkoFtNKqBbRaSfZIWkoFtNKqBbWdegW1LZRtmS2WBbWdegW1LZRtmS2U="), -"format": 34896613399, -"index_count": 180, -"index_data": PackedByteArray("9AHyAfMB8wH1AfQB9QH2AfQB9gH3AfQB+gH4AfkB+QH7AfoB/gH8Af0B/wH+Af0BAAL/Af0B/QEBAgACBAICAgMCAwIFAgQCCAIGAgcCCQIIAgcCCgIJAgcCBwILAgoCDgIMAg0CDQIPAg4CEgIQAhECEQITAhICEwIUAhICFAIVAhICGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCIAIeAh8CHwIhAiACJAIiAiMCIwIlAiQCKAImAicCJwIpAigCLAIqAisCKwItAiwCMAIuAi8CLwIxAjACNAIyAjMCMwI1AjQCOAI2AjcCNwI5AjgCPAI6AjsCOwI9AjwCQAI+Aj8CPwJBAkACRAJCAkMCRAJFAkICRgJEAkMCRQJEAkcCQwJIAkYCSQJFAkcCSAJDAkkCSQJHAkgCTAJKAksCSgJNAksCTAJLAk4CTwJLAk0CTgJQAkwCTwJNAlECUAJPAlECUQJMAlAC"), -"material": SubResource("StandardMaterial3D_srqfe"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(27.2512, 29.2512, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("/2dm9axqusL/Z4X7sGf8xf+XZvWsarrC/5eF+7Bn/MX/lyj95GZKyv9nKP3kZkrK/5cw3blh////l83quWH///9nMN25Yf///2fN6rlh////l83qD2ywwP9nzeoPbLDA/5dm9axqusL/Z2b1rGq6wv+XMN3rPv///2cw3es+////l83q6z7///9nzerrPv///5cw3Q9s////ZzDdD2z///+XzeoPbP///2fN6g9s////l2b1+DX/8P+Xhfv0OKrp/2dm9fg1//D/Z4X79Diq6f+XKP3AOYzi/2co/cA5jOL/Z83q6z5U1f9nzeq5YVTV/5fN6us+VNX/l83quWFU1f+XMN3rPlTV/5fN6us+VNX/lzDdlTRU1f+X///rPlTV/5co/cA5VNX/l4X79DhU1f+XZvX4NVTV/5fN6pU0VNX/l///uWFU1f+Xzeq5YVTV/5cw3blhVNX/lyj95GZU1f+XhfuwZ1TV/5dm9axqVNX/l83qD2xU1f+XMN0PbFTV/5cw3ZU0////l83qlTT///9nMN2VNP///2fN6pU0////l83qlTR2+P+XZvX4Nf/w/2fN6pU0dvj/Z2b1+DX/8P9nzeqVNFTV/2dm9fg1VNX/ZzDdlTRU1f9nhfv0OFTV/2co/cA5VNX/ZzDd6z5U1f9nzerrPlTV/2f//+s+VNX/Z83quWFU1f9n//+5YVTV/2cw3blhVNX/Zyj95GZU1f9nhfuwZ1TV/2dm9axqVNX/ZzDdD2xU1f9nzeoPbFTV/2f//+s+vNv/Zyj9wDmM4v+X///rPrzb/5co/cA5jOL/Z///uWFU1f9n///rPlTV/5f//7lhVNX/l///6z5U1f9n//+5YXfP/5f//7lhd8//Zyj95GZKyv+XKP3kZkrK/++JRWji////73JraOL/////Hk1o4v////9Gt2ji////7/KYaOL////v275o4v////8eTWjiVNX//0a3aOJU1f//Hk03zNLm//9GtzfMVNX//0a3aOJU1f/v275o4lTV//9GtzfMVNX/79u+N8xU1f/v8pho4lTV/+9ya2jiVNX/7/KYN8xU1f/vcms3zFTV/++JRWjiVNX//x5NaOJU1f/viUU3zPXg//8eTTfM0ub/74lFN8z14P//Hk03zNLm/+9yazfM/////0a3N8z////v8pg3zP///+/bvjfM//8AAB5NVLJU1f8PiUVUslTVAAAeTSOcVNX/D4lFI5xU1QAARrdo4lTVAAAeTWjiVNUAAEa3N8xU1QAAHk03zFTV/7/MDj8rVNX/v+shnQFU1f+/AAChKVTV/78fEwAAVNX/P8wOPytU1f8/AAChKVTV/z/rIZ0BVNX/Px8TAABU1f+/HxMAAKf5/7/rIZ0Bp/n/Px8TAACn+f8/6yGdAaf5/w/bvmjiVNUAAEa3aOJU1f8P2743zFTVAABGtzfMVNX/D4lFaOL//wAAHk1o4v///w9ya2ji//8AAEa3aOL///8P8pho4v///w/bvmji//8AAB5NaOJU1f8PiUVo4lTVAAAeTTfMVNX/D4lFN8xU1f8Pcmto4lTV/w/ymGjiVNX/D3JrN8xU1f8P8pg3zFTVAABGt1SyVNUAAB5NVLJU1QAARrcjnFTVAAAeTSOcVNX/D4lFI5z///8PcmsjnP//AAAeTSOc//8AAEa3I5z///8P8pgjnP///w/bviOc////D4lFN8z///8Pcms3zP//AAAeTTfM//8AAEa3N8z///8P8pg3zP///w/bvjfM////PwAAoSmw2v+/AAChKbDa/z8fEwAAsNr/vx8TAACw2v+/AAChKX3A/z8AAKEpfcD/v8wOPyt9wP8/zA4/K33A/w/bvlSyVNUAAEa3VLJU1f8P274jnFTVAABGtyOcVNX/D4lFVLL//wAAHk1Usv///w9ya1Sy//8AAEa3VLL///8P8phUsv///w/bvlSy////D3JrVLJU1f8P8phUslTV/w9yayOcVNX/D/KYI5xU1f/viUUjnPXg//8eTSOc0ub/73JrI5z/////RrcjnP///+/ymCOc////79u+I5z///9PSFz3M1TV/09IXN5VVNX/r0hc9zNU1f+vSFzeVVTV//8eTVSyVNX//0a3VLJU1f//Hk0jnNLm//9GtyOcVNX/74lFVLL////vcmtUsv////8eTVSy/////0a3VLL////v8phUsv///+/bvlSy////7/KYVLJU1f/vcmtUslTV/+/ymCOcVNX/73JrI5xU1f+vPW8MN1TV/69IXPczVNX/rz1vn0xU1f+vSFzeVVTV/68ygt5VVNX/rzKCn0xU1f//RrdUslTV/+/bvlSyVNX//0a3I5xU1f/v274jnFTV/++JRVSyVNX//x5NVLJU1f/viUUjnPXg//8eTSOc0ub/TzKC3lVU1f9PSFzeVVTV/08ygp9MVNX/Tz1vn0xU1f9PSFz3M1TV/089bww3VNX/ZzDdjX7///+XMN2Nfv///2fF5I1+////l8XkjX7///9PPW+fTP///689b59M////TzKCn0z///+vMoKfTP///29b7IHtVNX/b1vsG+ar3/+PW+yB7VTV/49b7Bvmq9//Z8XkH8FU1f9nMN0fwVTV/2fF5I1+VNX/ZzDd8oVU1f9nMN2NflTV/29b7IHtVNX/ZzDdge1U1f9vW+wb5lTV/2cw3bXeVNX/Tz1vDDdU1f+vPW8MN1TV/089b59MVNX/rz1vn0xU1f+XMN2B7f///2cw3YHt////j1vsge3///9vW+yB7f///5cw3R/B////ZzDdH8H///+XxeQfwf///2fF5B/B////lzDdH8FU1f+XxeQfwVTV/5cw3fKFVNX/l8XkjX5U1f+XMN2NflTV/2fF5B/BVNX/Z8XkjX5U1f+XxeQfwVTV/5fF5I1+VNX/lzDdge1U1f+PW+yB7VTV/5cw3bXeVNX/j1vsG+ZU1f9nMN213qrp/5cw3bXequn/b1vsG+ar3/+PW+wb5qvf/y8cqA9sVNX/PxyodXNU1f8/HKipZFTV/08cqKlkVNX/TxyodXNU1f+vRrd1c1TV/69Gt6lkVNX/v0a3dXNU1f+/RrepZFTV/89Gtw9sVNX/TxyodXP///8/HKh1c////09Gt3Vz////P0a3dXP///8vRrcPbFTV/z9Gt6lkVNX/P0a3dXNU1f9PRrd1c1TV/09Gt6lkVNX/rxyoqWT///+/HKipZP///69Gt6lk////v0a3qWT///+/HKh1c////68cqHVz////v0a3dXP///+vRrd1c////68cqKlkVNX/rxyodXNU1f+/HKipZFTV/78cqHVzVNX/zxyoD2xU1f8/HKipZP///08cqKlk////P0a3qWT///9PRrepZP///z/rIZ0BWdD/T3QQoydZ0P8/zA4/K1nQ/7/MDj8rWdD/T0MgOQVZ0P+vdBCjJ1nQ/7/rIZ0BWdD/r0MgOQVZ0P/PnXr//1TV/8+devKFVNX/73Jr//9U1f/vcmvyhVTV/+9ya2jiVNX/73JrN8xU1f/vcmtUslTV/+9yayOcVNX/L8eJ8oVU1f8vx4nm9FTV/8/HifKFVNX/z8eJ5vRU1f/PNCfyhVTV/880J+b0VNX/71428oVU1f/vXjbm9FTV/y+dev//VNX/L5168oVU1f/PnXr//1TV/8+devKFVNX/LzQn8oVU1f8vNCfm9FTV/880J/KFVNX/zzQn5vRU1f8PXjbyhVTV/w9eNub0VNX/LzQn8oVU1f8vNCfm9FTV/y+dev//VNX/D3Jr//9U1f8vnXryhVTV/w9ya2jiVNX/D3JrN8xU1f8PcmtUslTV/w9yayOcVNX/D3Jr8oVU1f8vNCfyhf///y9eNvKF////D1428oX///8Pcmvyhf///y9ya/KF////L5168oX///+vQyA5Bb/2/68ygiUVv/b/T0MgOQW/9v9PMoIlFb/2/68ygiE6VNX/rzKCJRVU1f+vdBCjJ1TV/69DIDkFVNX/rz1vDDcKwf9PPW8MNwrB/68ygiE6CsH/TzKCIToKwf9PMoIhOlTV/08ygiUVVNX/T3QQoydU1f9PQyA5BVTV/y/HifKF////L/KY8oX///8P8pjyhf///w8GzvKF////LwbO8oX///8vMN3yhf///w8Gzv//VNX/D9u+//9U1f8PBs7yhVTV/w/bvub0VNX/D9u+aOJU1f8P8pjm9FTV/w/ymGjiVNX/D9u+N8xU1f8P275UslTV/w/ymDfMVNX/D/KYVLJU1f8P274jnFTV/w/ymCOcVNX/D/KY8oVU1f/v8pjm9FTV/+/bvub0VNX/7/KYaOJU1f/v275o4lTV/+8GzvKFVNX/79u+N8xU1f/vBs7//1TV/+/bvv//VNX/79u+VLJU1f/v8phUslTV/+/ymDfMVNX/79u+I5xU1f/v8pjyhVTV/+/ymCOcVNX/D3JrN8xU1f8PiUU3zFTV/w9ya1SyVNX/D4lFVLJU1f8PXjbyhVTV/w+JRSOcVNX/D4lFaOJU1f8PcmvyhVTV/w9yayOcVNX/D1425vRU1f8Pcmto4lTV/w9IXOb0VNX/D0hc//9U1f8Pcmv//1TV/w/ymPKFVNX/D/KYI5xU1f8vx4nyhVTV/w/ymFSyVNX/D/KYN8xU1f8P8pho4lTV/y/Hieb0VNX/D/KY5vRU1f/PMN3//1TV/88w3fKFVNX/7wbO//9U1f/vBs7yhVTV/8/HifKFVNX/z8eJ5vRU1f/v8pjyhVTV/+/ymOb0VNX/7/KYI5xU1f/v8pho4lTV/+/ymFSyVNX/7/KYN8xU1f8PBs7//1TV/w8GzvKFVNX/LzDd//9U1f8vMN3yhVTV/+9ya/KFVNX/71428oVU1f/vcmsjnFTV/++JRSOcVNX/74lFVLJU1f/viUU3zFTV/+9yazfMVNX/73JrVLJU1f/viUVo4lTV/+9eNub0VNX/70hc5vRU1f/vcmto4lTV/+9ya///VNX/70hc//9U1f+vdBCjJwrB/090EKMnCsH/r0hc9zMKwf9PSFz3MwrB/880J/KF////71428oX////PXjbyhf///89ya/KF////73Jr8oX////PnXryhf///8/HifKF////7/KY8oX////P8pjyhf///88GzvKF////7wbO8oX////PMN3yhf///5cw3R/BVNX/lzDdtd5U1f9nMN0fwVTV/5cw3fKFVNX/zzDd8oVU1f/PMN3//1TV/5cw3YHtVNX/ZzDdtd5U1f9nMN3yhVTV/y8w3fKFVNX/ZzDdge1U1f8vMN3//1TV/89ya////7//z0hc////v//Pcmvyhf+//89IXOb0/7//z1425vT/v//PXjbyhf+//y9ya/KF////L3Jr///////Pcmvyhf///89ya///////L1425vT/v/8vSFzm9P+//y9eNvKF/7//L3Jr8oX/v/8vcmv///+//y9IXP///7//L1425vT/v/8vXjbyhf+//89eNub0/7//z1428oX/v/8v8pjm9P+//y/bvub0/7//L/KY8oX/v/8vBs7yhf+//y8Gzv///7//L9u+////v/8v8pjm9P+//y/ymPKF/7//z/KY5vT/v//P8pjyhf+//88Gzv///7//z9u+////v//PBs7yhf+//8/bvub0/7//z/KY5vT/v//P8pjyhf+//y8GzvKF////LwbO///////PBs7yhf///88Gzv//////z/KY8oUAgP8v8pjyhQCA/88GzvKFAID/LwbO8oUAgP/PXjbyhQCA/y9eNvKFAID/z3Jr8oUAgP8vcmvyhQCA/y/bvq0/////L9u+J3f///9P276tP////0/bvid3////L4egJ3f///9Ph6And////y/bvid3////T9u+J3f///+v276tP////6/bvid3////z9u+rT/////P274nd////8+HoK0/AID/r4egrT8AgP/P276tPwCA/6/bvq0/AID/r4egJ3f/v/+vh6CtP/+//8+HoCd3/7//z4egrT//v/9Ph6CtPwCA/y+HoK0/AID/T9u+rT8AgP8v276tPwCA/y+HoCd3/7//L4egrT//v/9Ph6And/+//0+HoK0//7//r4egJ3f////Ph6And////6/bvid3////z9u+J3f///+vRrepZP+//69Gt3Vz/7//r9u+rT//v/+vHKipZP+//6/bvid3/7//r4egrT//v/+vh6And/+//68cqHVz/7//T0a3qWT/v/9P276tP/+//09Gt3Vz/7//TxyoqWT/v/9P274nd/+//0+HoK0//7//T4egJ3f/v/9PHKh1c/+//68w3ZU0////zwbOlTT////PMN2VNP///y8w3ZU0////LwbOlTT///9PMN2VNP///89IXOb0VNX/z0hc//9U1f/vSFzm9FTV/+9IXP//VNX/z0hc5vT////vSFzm9P///89eNub0////71425vT///8PXjbm9P///y9eNub0////L0hc5vT///8PSFzm9P///y80J+b0////zzQn5vT////vSFz//////89IXP//////73Jr///////Pcmv//////8+dev//////L3Jr//////8Pcmv//////y+dev//////D0hc//////8vSFz//////w9IXOb0VNX/D0hc//9U1f8vSFzm9FTV/y9IXP//VNX/79u+///////P277//////+8Gzv//////zwbO///////PMN3//////y8Gzv//////DwbO//////8vMN3//////w/bvv//////L9u+///////P277m9P///+/bvub0////z/KY5vT////v8pjm9P///w/ymOb0////L/KY5vT///8v277m9P///w/bvub0////L8eJ5vT////Px4nm9P///8/bvub0VNX/z9u+//9U1f/v277m9FTV/+/bvv//VNX/D9u+5vRU1f8P277//1TV/y/bvub0VNX/L9u+//9U1f9PMN2VNFTV/y8GzpU0VNX/TzDd5gtU1f8vBs7mC1TV/88GzpU0VNX/rzDdlTRU1f/PBs7mC1TV/68w3eYLVNX/L/KY8oVU1f8vx4nyhVTV/y+devKFVNX/L9u+J3dU1f8vcmvyhVTV/y8GzvKFVNX/L1428oVU1f8vMN2VNFTV/y8w3fKFVNX/L9u+rT9U1f8vh6CtP1TV/y8GzpU0VNX/L4egJ3dU1f8vMoLmC1TV/y8GzuYLVNX/LzKC3lVU1f8vdBBcaFTV/y9eNt5VVNX/L3QQ8oVU1f8vNCfyhVTV/8/HifKFVNX/z/KY8oVU1f/PnXryhVTV/88GzvKFVNX/z9u+J3dU1f/PcmvyhVTV/88w3ZU0VNX/zzDd8oVU1f/P276tP1TV/8+HoK0/VNX/z4egJ3dU1f/PBs6VNFTV/88yguYLVNX/zwbO5gtU1f/PMoLeVVTV/890EFxoVNX/z1423lVU1f/PXjbyhVTV/880J/KFVNX/z3QQ8oVU1f8vdBBcaKrp/890EFxoqun/L1423lWq6f/PXjbeVarp/y8yguYL////zzKC5gv///8vBs7mC////88GzuYL////TzDd5gv///+vMN3mC////08ygt5V////LzKC3lX///9PSFzeVf///y9eNt5V////z1423lX///+vSFzeVf///88ygt5V////rzKC3lX///8vdBBcaFTV/y90EPKFVNX/z3QQXGhU1f/PdBDyhVTV/88ygt5VVNX/zzKC5gtU1f+vMoLeVVTV/68ygp9MVNX/rzKCITpU1f9PMoKfTFTV/68ygiUVVNX/TzKCITpU1f9PMoLeVVTV/y8ygt5VVNX/TzKCJRVU1f8vMoLmC1TV/5cw3Y1+VNX/zzDd8oVU1f+XMN0PbFTV/2cw3Q9sVNX/ZzDdjX5U1f9nMN25YVTV/2cw3es+VNX/lzDduWFU1f+XMN3rPlTV/5cw3ZU0VNX/rzDdlTRU1f/PMN2VNFTV/68w3eYLVNX/ZzDdlTRU1f9PMN3mC1TV/08w3ZU0VNX/LzDd8oVU1f8vMN2VNFTV/8+devKF////L5168oX////Px4nyhf///y/HifKF////z3QQ8oX///8vdBDyhf///880J/KF////LzQn8oX///8vRrcPbFTV/y8cqA9sVNX/P0a3qWT14P8/HKipZPXg/z9Gt3VzaMv/PxyodXNoy/8vRrcPbFTV/y8cqA9sVNX/z0a3D2xU1f+/RrepZPXg/88cqA9sVNX/vxyoqWT14P+/Rrd1c2jL/89Gtw9sVNX/vxyodXNoy//PHKgPbFTV/2cw3es+VNX/ZzDdlTRU1f+XMN3rPlTV/5cw3ZU0VNX/lzDd6z5U1f9nMN2VNFTV/w/bvmjiVNX/D/KYaOJU1f8P2743zFTV/w/ymDfMVNX/D9u+N8xU1f8P8pho4lTV/++JRWjiVNX/73JraOJU1f/viUU3zFTV/+9yazfMVNX/74lFN8xU1f/vcmto4lTV/2cw3blhVNX/lzDduWFU1f9nMN0PbFTV/5cw3Q9sVNX/ZzDdD2xU1f+XMN25YVTV/08ygiUVVNX/TzKCITpU1f+vMoIlFVTV/68ygiE6VNX/rzKCJRVU1f9PMoIhOlTV/w+JRWjiVNX/D3JraOJU1f8PiUU3zFTV/w9yazfMVNX/D4lFN8xU1f8Pcmto4lTV/++JRVSyVNX/73JrVLJU1f/viUUjnFTV/+9yayOcVNX/74lFI5xU1f/vcmtUslTV/w+JRVSyVNX/D3JrVLJU1f8PiUUjnFTV/w9yayOcVNX/D4lFI5xU1f8PcmtUslTV/09IXN5V////r0hc3lX///9PMoLeVf///68ygt5V////TzKC3lX///+vSFzeVf///+/bvmjiVNX/7/KYaOJU1f/v2743zFTV/+/ymDfMVNX/79u+N8xU1f/v8pho4lTV/08ygp9MVNX/TzKC3lVU1f+vMoKfTFTV/68ygt5VVNX/rzKCn0xU1f9PMoLeVVTV/w/ymFSyVNX/D9u+VLJU1f8P8pgjnFTV/w/bviOcVNX/D/KYI5xU1f8P275UslTV/+/ymFSyVNX/79u+VLJU1f/v8pgjnFTV/+/bviOcVNX/7/KYI5xU1f/v275UslTV/2cw3fKFVNX/ZzDdjX5U1f+XMN3yhVTV/5cw3Y1+VNX/lzDd8oVU1f9nMN2NflTV/2cw3YHtVNX/ZzDdtd5U1f+XMN2B7VTV/5cw3bXeVNX/lzDdge1U1f9nMN213lTV/2cw3fKFVNX/ZzDdH8FU1f+XMN3yhVTV/5cw3R/BVNX/lzDd8oVU1f9nMN0fwVTV/09IXPczv/b/r0hc9zO/9v9PPW8MN7/2/689bww3v/b/Tz1vDDe/9v+vSFz3M7/2/880J/KF////LzQn8oX////PXjbyhf///y9eNvKF////z1428oX///8vNCfyhf///y8GzvKF////zwbO8oX///8vMN3yhf///88w3fKF////LzDd8oX////PBs7yhf///2cw3fKF////LzDd8oX////PMN3yhf///5cw3fKF////ZzDd8oX///8vx4nyhf///8/HifKF////L/KY8oX////P8pjyhf///y/ymPKF////z8eJ8oX///8vcmvyhf///89ya/KF////L5168oX////PnXryhf///y+devKF////z3Jr8oX//////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f4JafSV8pX0lglp9JXylfSV8pX0l/7//P3ylfSX/v/8//3////9/////f////3////8//z+CWn0l/z//P4JafSX/P/8/glp9Jf9/////f////3////9///+CWoHa/z//v4Jagdr/P/+/fKWB2oJagdp8pYHaglqB2v9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f/+//798pYHa/7//v3ylgdr/f/9//3//f/9//3//f/9//3//f/9//3+CWoHa/z//v4Jagdr/P/+//38AAP9/AAD/fwAA/38AAHylgdqCWoHafKWB2oJagdr/f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/+//798pYHa/7//v3ylgdr/f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/z//P4JafSX/f////3////9/////f///AAD/fwAA/38AAP9/AAD/f4JafSV8pX0lglp9JXylfSX/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAAfKV9Jf+//z98pX0l/7//P/8//z+CWn0l/z//P4JafSX/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3//f////3////9/////f////3///5mZZeaZmWXmmZll5pmZZeb///9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3+ZmZkZmZmZGZmZmRmZmZkZ////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/gdqCWoHaglp8pX0lfKV9JUevSC9Hr0gvR69IL0evSC99JXylfSV8pX0lglp9JYJafSWCWn0lglqCWn0lglp9JYHafKWB2nylgdqCWoHaglp9JXylfSV8pX0lglp9JYJaglqB2oJagdp9JXylfSV8pYHafKV8pYHagdp8pUevttBHr7bQR6+20EevttB8pYHa/3////9/////f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3///3ylgdr/f///fKWB2v9/////f///glqB2rdQttD/f////3///7dQttC3ULbQ/3///7dQttCCWoHaglp9Jf9/AAC3UEgv/38AAHylfSX/fwAAfKV9Jf9/AAD/fwAAt1BIL7dQSC//fwAAglp9JbdQSC9Hr7bQ/3///0evttD/f///glqB2v9/////f///fKWB2kevttCCWoHaR6+20P9/////f///fKWB2oJagdq3ULbQfSV8pbdQttC3ULbQt1C20H0lfKWCWoHagdqCWoHaglp8pX0lfKV9JX0lglp9JYJaglp9JYJafSW3UEgvt1BIL7dQSC+3UEgvfKWB2nylgdqB2nylgdp8pXylfSWCWn0lR69IL/9/AAD/fwAA/38AAEevSC9Hr0gv/38AAIJafSX/fwAAR69IL3ylfSX/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3+B2oJagdqCWv///3////9/////f4HafKX///9/gdp8pf9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9/////f////3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9//v//f////3/+//9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//7//v/+//7//v/+//7//v/+//z//v/8//7//P/+//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 438, -"index_data": PackedByteArray("VAJSAlMCVwJVAlYCWgJYAlkCWQJbAloCXgJcAl0CXQJfAl4CYAJeAl8CYAJhAl4CYAJiAmECYAJjAmICZAJgAl8CXwJlAmQCaAJmAmcCZwJpAmgCaQJqAmgCaQJrAmoCawJsAmoCbAJtAmoCbgJsAmsCawJvAm4CcgJwAnECcQJzAnICdgJ0AnUCdQJ3AnYCdwJ4AnYCdwJ5AngCeQJ6AngCegJ7AngCfAJ6AnkCeQJ9AnwCgAJ+An8CfwKBAoACggKAAoECggKDAoACggKEAoMCggKFAoQChgKCAoECgQKHAoYCigKIAokCiQKLAooCjgKMAo0CjQKPAo4CkgKQApECkQKTApIClgKUApUClQKXApYCmgKYApkCmAKaApsCmgKcApsCnQKYApsCnAKeApsCnQKbAp8CnwKgAp0CmwKhAp8CoQKiAp8CowKfAqICpAKbAp4CpQKjAqICpQKmAqMCpwKlAqICpwKiAqQCqAKnAqQCqAKkAp4CqQKnAqgCqgKoAp4CngKrAqoCrgKsAq0CrQKvAq4CsAKuAq8CsAKxAq4CsgKwAq8CrwKzArICsgK0ArACsgK1ArQCsQKwArYCsgK3ArUCtQK3ArgCtwK5ArgCtQK4AroCtgK1AroCsQK2ArsCtgK6ArsCugK8ArsCvQKxArsCvgK9ArsCuwK/Ar4CwgLAAsECwQLDAsICxgLEAsUCxQLHAsYCxwLIAsYCxwLJAsgCzALKAssCzALLAs0CzQLOAswCzwLMAs4CzgLQAs8C0ALRAs8C1ALSAtMC0wLVAtQC2ALWAtcC2QLYAtcC2gLZAtcC2wLZAtoC3ALaAtcC2gLdAtsC3gLbAt0C3wLeAt0C4ALcAtcC3QLgAt8C4ALXAuEC4QLfAuAC4wLpAeIC4gLkAuMC5QLkAuIC5QLiAuYC5gLnAuUC6ALnAuYC6QLnAugC6ALmAu4B6gLkAukC6ALqAukC6gLrAuQC5ALrAuMC6wLsAuMC7ALtAuMC7gLsAusC7gLrAu8C8ALuAu8C8ALvAugC8ALoAu4B8QLwAu4B8QLuAfIC8gLzAvEC9gL0AvUC9QL3AvYC+gL4AvkC+QL7AvoC/gL8Av0C/QL/Av4CAgMAAwEDAQMDAwIDBgMEAwUDBQMHAwYDCgMIAwkDCQMLAwoD"), -"material": SubResource("StandardMaterial3D_07ipd"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAttBHrwAAAIC20EevAAAAgLbQR68AAACAttBHrwAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgHylfSUAAACAfKV9JQAAAICB2oJaAAAAgIHagloAAACAglqB2gAAAICCWoHaAAAAgHylgdoAAACAfKWB2gAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgH0lgloAAACAfSWCWgAAAICCWn0lAAAAgIJafSUAAACAglqB2gAAAIB9JXylAAAAgIJagdoAAACASC9HrwAAAIBIL0evAAAAgEgvR68AAACASC9HrwAAAIB9JXylAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAfSV8pQAAAIAAAP9/AAAAgH0lfKUAAACAAAD/fwAAAIAAAP9/AAAAgH0lgloAAACASC+3UAAAAIAAAP9/AAAAgAAA/38AAACASC+3UAAAAIBIL7dQAAAAgAAA/38AAACASC+3UAAAAIB9JYJaAAAAgIHagloAAACA////fwAAAIC20LdQAAAAgP///38AAACAgdp8pQAAAID///9/AAAAgIHafKUAAACA////fwAAAID///9/AAAAgLbQt1AAAACAttC3UAAAAID///9/AAAAgIHagloAAACAttC3UAAAAIBIL0evAAAAgAAA/38AAACASC9HrwAAAIAAAP9/AAAAgH0lgloAAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACASC9HrwAAAIB9JYJaAAAAgEgvR68AAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACAfSWCWgAAAIBIL7dQAAAAgIJafSUAAACASC+3UAAAAIBIL7dQAAAAgEgvt1AAAACAglp9JQAAAIB9JYJaAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAfKV9JQAAAIB8pX0lAAAAgIHagloAAACAgdqCWgAAAIC20LdQAAAAgLbQt1AAAACAttC3UAAAAIC20LdQAAAAgH0lfKUAAACAfSV8pQAAAICCWoHaAAAAgIJagdoAAACAgdp8pQAAAICB2oJaAAAAgLbQR68AAACA////fwAAAID///9/AAAAgP///38AAACAttBHrwAAAIC20EevAAAAgP///38AAACAgdqCWgAAAID///9/AAAAgLbQR68AAACAgdp8pQAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///////798pYHaAAAAgHylgdoAAACA/3///wAAAID/f///AAAAgP9///////+/glqB2gAAAID/f///AAAAgIJagdoAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/8//7//f/+//z//v/9//7//P/+//3//v/8//7//f/+//7//v///////v/+///////+//7///////7//v/////8AAP9//3//vwAA/3////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3////+/////f////7////9/////v////3/+/wCA////f/////////9///8AgP///3///wCA////f/////////9//////////3//////////f/////////9///8AgP///3//////////f/////////9//////////3///wCA////f///AID///9//v8AgP///3/+////////f/////////9///////+/AAAAAP+//78AAAAA/7//vwAAAAD/v/+/AAAAAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3////7//7//f///////v/9///////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////vwAA/3//f/+/AAD/f/9//78AAKmqVFX/vwAAqapUVf+/qir/f6qq/7+qKv9/qqr/vwAA/3//f/+/AAD/f/9//7////9/////////qaoAAKnq////f////////6mqAACp6lTV/3///6nq////f/////9U1f9///+p6v///3///////3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgA==") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 132, -"index_data": PackedByteArray("DgMMAw0DEQMPAxADFAMSAxMDFwMVAxYDGgMYAxkDHQMbAxwDIAMeAx8DIwMhAyIDJgMkAyUDKQMnAygDLAMqAysDLwMtAy4DMgMwAzEDNQMzAzQDOAM2AzcDOwM5AzoDPgM8Az0DQQM/A0ADRANCA0MDRwNFA0YDSgNIA0kDTQNLA0wDUANOA08DUwNRA1IDVgNUA1UDWQNXA1gDXANaA1sDXwNdA14DYgNgA2EDZQNjA2QDaANmA2cDawNpA2oDbgNsA20DcQNvA3ADdANyA3MDdwN1A3YDegN4A3kDfQN7A3wDgAN+A38DgAOBA4IDhQODA4QDiAOGA4cDiwOJA4oDjgOMA40D"), -"material": SubResource("StandardMaterial3D_2y71d"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAttBHrwAAAIC20EevAAAAgLbQR68AAACAttBHrwAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgHylfSUAAACAfKV9JQAAAICB2oJaAAAAgIHagloAAACAglqB2gAAAICCWoHaAAAAgHylgdoAAACAfKWB2gAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgH0lgloAAACAfSWCWgAAAICCWn0lAAAAgIJafSUAAACAglqB2gAAAIB9JXylAAAAgIJagdoAAACASC9HrwAAAIBIL0evAAAAgEgvR68AAACASC9HrwAAAIB9JXylAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAfSV8pQAAAIAAAP9/AAAAgH0lfKUAAACAAAD/fwAAAIAAAP9/AAAAgH0lgloAAACASC+3UAAAAIAAAP9/AAAAgAAA/38AAACASC+3UAAAAIBIL7dQAAAAgAAA/38AAACASC+3UAAAAIB9JYJaAAAAgIHagloAAACA////fwAAAIC20LdQAAAAgP///38AAACAgdp8pQAAAID///9/AAAAgIHafKUAAACA////fwAAAID///9/AAAAgLbQt1AAAACAttC3UAAAAID///9/AAAAgIHagloAAACAttC3UAAAAIBIL0evAAAAgAAA/38AAACASC9HrwAAAIAAAP9/AAAAgH0lgloAAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACASC9HrwAAAIB9JYJaAAAAgEgvR68AAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACAfSWCWgAAAIBIL7dQAAAAgIJafSUAAACASC+3UAAAAIBIL7dQAAAAgEgvt1AAAACAglp9JQAAAIB9JYJaAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAfKV9JQAAAIB8pX0lAAAAgIHagloAAACAgdqCWgAAAIC20LdQAAAAgLbQt1AAAACAttC3UAAAAIC20LdQAAAAgH0lfKUAAACAfSV8pQAAAICCWoHaAAAAgIJagdoAAACAgdp8pQAAAICB2oJaAAAAgLbQR68AAACA////fwAAAID///9/AAAAgP///38AAACAttBHrwAAAIC20EevAAAAgP///38AAACAgdqCWgAAAID///9/AAAAgLbQR68AAACAgdp8pQAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIB8pYHaAAAAgHylgdoAAACA/3///wAAAID/f///AAAAgP9///8AAACAglqB2gAAAID/f///AAAAgIJagdoAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+/AAAAAACA/78AAAAAAID/vwAAAAAAgP+/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAKmqAAAAgAAAqaoAAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP//qaoAAACA////fwAAAID//6mqAAAAgFTV/38AAACA////fwAAAIBU1f9/AAAAgP///38AAACA/3///wAA/7//f///AAD/v/9///8AAP+//3///////7//f///////v/9///////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/////8AAP9//////wAA/3//////////f/9/AID///9//38AgP///3//fwCA////f/9///////9//3///////3//f////3////9//7//f////3//v/9/////f/+//3//////////f/////////9//////////38AAAAAC+T/fwAAAAAL5P9/AAAAAAvk/38AAOW3/7//fwAA5bf/v/9/AADlt/+/////f/9/I8n///9//38jyf///3//fyPJ////f7XtAID///9/te0AgP///3+17QCA////f+3CAID///9/7cIAgP///3/twgCA////f/9/iN7///9//3+I3v///3//f4je////f/9///////9//3///////3//f///////f/9/AID///9//38AgP///3//fwCA/////8WYYoz/////xZhijP/////FmGKM/////zlnm/P/////OWeb8/////85Z5vzAAD/f/9/6KIAAP9//3/oogAA/3//f+iiAAD/f9DF//8AAP9/0MX//wAA/3/Qxf///38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAP///7//fwAA////v/9/AAD///+/////f////7////9/////v////3////+/////f////7////9/////v////3////+/////f/////////9//////////3//////////f/9//7////9//3//v////3//f/+//3///6C8/7//f///oLz/v/9///+gvP+//3///wAAruH/f///AACu4f9///8AAK7h/3///////7//f///////v/9///////+//3///wAA/7//f///AAD/v/9///8AAP+//38AAP//////fwAA//////9/AAD//////38AAP9//7//fwAA/3//v/9/AAD/f/+//9///////7//3///////v//f//////+//9///wAA/7//3///AAD/v//f//8AAP+//3//f//P/6f/f/9//8//p/9//3//z/+n/3//f/8v/9f/f/9//y//1/9//3//L//X/////////7//////////v/////////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAAAgP////8AAACA/////wAA/7//////AAAAgP////////+//////////7//////////v/////8AAP+//////wAA/7//////AAD/v/////+p6lS1/////6nqVLX/////qepUtf////9VFanK/////1UVqcr/////VRWpyg==") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_lkcrb") - -[sub_resource type="BoxShape3D" id="BoxShape3D_8hibu"] -size = Vector3(0.158218, 0.304778, 0.675) - -[node name="BlasterQ" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 13 -script = ExtResource("1_1ivwt") - -[node name="blasterQ" type="MeshInstance3D" parent="."] -mesh = SubResource("ArrayMesh_8tvdw") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.32392e-06, 0.0113547, 0) -shape = SubResource("BoxShape3D_8hibu") diff --git a/client/template/Spawnable_Objects/Weapons/blaster_I.tscn b/client/template/Spawnable_Objects/Weapons/blaster_I.tscn deleted file mode 100644 index ad7f637..0000000 --- a/client/template/Spawnable_Objects/Weapons/blaster_I.tscn +++ /dev/null @@ -1,172 +0,0 @@ -[gd_scene load_steps=10 format=4 uid="uid://cvbk5bxenpxey"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_7bvbn"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x17jo"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_w3uta"] -resource_name = "dark" -vertex_color_use_as_albedo = true -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5qy60"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mf1j8"] -resource_name = "purple" -vertex_color_use_as_albedo = true -albedo_color = Color(0.804665, 0.693804, 0.98256, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gwsv0"] -resource_name = "_defaultMat" -vertex_color_use_as_albedo = true -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_tpsog"] -_surfaces = [{ -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34359742465, -"index_count": 237, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAwAEAAUABQACAAMABQAGAAIABwAFAAQACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEAAMAA4ADgARABAADwASABMAEwARAA8AEQAOAA8ACgALABQAFAAVAAoAFgAIAAoACgAVABYAEAAXABgAGAANABAADQAMABAADwANABgAGAASAA8AFAALAAkACQAZABQAFAAZABYAFgAVABQAEwASABgAGAAXABMAHAAaABsAGwAdABwAHQAeABwAIQAfACAAIAAiACEAJQAjACQAJAAmACUAKAAnACUAJQApACgAJQAmACkAIQAqACsAKwAfACEAIwAsAC0ALQAkACMALQAuACQAKQAuAC0ALQAoACkALwAdABsAGwAwAC8AMQAaABwAHAAyADEALwAwADEAMQAyAC8AMgAzAC8ANgA0ADUANQA3ADYANwA1ADgAOAA5ADcAKgA5ADgAOAArACoAOwA6AAEAAQA8ADsAAQAAADwAAAA9ADwAOwA8AAUABQAHADsAPAA9AAYABgAFADwAQAA+AD8APwBBAEAAQQBCAEAARQBDAEQARABGAEUASABHAEUARQBGAEgARABDAEkASQBKAEQATQBLAEwATABOAE0A"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kMJ1PB+F6z1H4Xo+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kMJ1vB+F6z1H4Xo+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9kML1vOtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+JMRdvXsUrr17FK4+JMRdvXsUrr3C9Sg+kML1vArXo7sK16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vI7C9bzotIG9kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw+jxdhPElURD32KNw+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+nNXUPK1HYT3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+y2LtPMikQz3rUbg+nNXUPM3MzDz2KNw+nNXUPM3MzDzrUbg+zcxMPSlcDz10plE+zcxMPSlcDz1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvSlcDz10plE+zcxMvSlcDz1YBR8+kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz0K1yO9kML1PJqZmT0K1yO9zcxMPZqZmT0K1yO9kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+y2LtvEwJBD3rUbg+kML1vArXIz32KNw+kML1vArXIz3rUbg+y2LtvMikQz32KNw+y2LtvMikQz3rUbg+nNXUvK1HYT32KNw+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1vClcDz6+mOq9kMJ1vB+F6z0QUYk9kMJ1vClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1PArXo7spXI+9zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+zcxMPa1HYb17FK4+zcxMva1HYb17FK4+zcxMvZDCdTx7FK4+zcxMva1HYb3C9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+zcxMvQrXo7vrUTi+zcxMvR+F6z3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+zcxMva1HYb3rUbg+zcxMPa1HYb3rUbg+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+zcxMva1HYb0K16M8zcxMvQrXo7sK16M8zcxMPQrXo7sK16M8zcxMPa1HYb0K16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34359742465, -"index_count": 594, -"index_data": PackedByteArray("UQBPAFAAUABSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAXQBbAFwAXABeAF0AYQBfAGAAYABiAGEAZQBjAGQAZABmAGUATwBbAF0AXQBQAE8AaQBnAGgAaABqAGkAXwBrAGwAbABgAF8AZgBkAG0AbQBuAGYAcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAawB3AHgAeABsAGsAbQB5AHoAegBuAG0AewBhAGIAYgB8AHsAfwB9AH4AfgCAAH8AcgBwAHgAeAB3AHIAUwBRAFIAUgBUAFMAeQBVAFYAVgB6AHkAagBoAGMAYwBlAGoAgwCBAIIAggCEAIMAVwB7AHwAfABYAFcAhQB/AIAAgACGAIUAhACCAG8AbwBxAIQAXgBcAIEAgQCDAF4AfQB1AHYAdgB+AH0AiACHAGcAZwBpAIgAWQBaAIcAhwCIAFkAiwCJAIoAigCMAIsAjQCLAIwAjACOAI0AjwCNAI4AjgCQAI8AkwCRAJIAkgCUAJMAkwCUAJUAlQCWAJMAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoACfAJ0AnQCeAKAAowChAKIAogCkAKMApgClAJ8AnwCgAKYAqACnAKEAoQCjAKgAmwCPAJAAkACcAJsAqgCpAJkAmQCaAKoAlQCrAKwArACWAJUAlgCsACkAKQCTAJYAKQAmAJMAJgAkAJMALgApAKwArACRAC4AkQAkAC4AkQCTACQApACiAKUApQCmAKQAmACXAK0ArQCuAJgArACrAJIAkgCRAKwAsQCvALAAsACyALEAsACvALMAswC0ALAArwAwABsAGwCzAK8AGwAaALMAGgC1ALMAsQC1ADAAMACvALEAtQAxADAAtQAaADEAtgC0ALMAswC1ALYAtgC1ALEAsQCyALYAhQCGAKcApwCoAIUAcwC3ALgAuAB0AHMAuwC5ALoAugC8ALsAvgC9ALkAuQC7AL4AwAC/AL0AvQC+AMAAwgDBAL8AvwDAAMIAtwC8ALoAugC4ALcAxADDAMEAwQDCAMQAxgDFAMMAwwDEAMYAiQDFAMYAxgCKAIkAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0AzwDHAMkAyQDQAM8AyQDOANAAzgDRANAAzgDSANEAzgDMANIA0QDSANMA0wDUANEAyQDKAM0AzQDOAMkAygDIANUA1QDWAMoA1gDNAMoA1gDUAM0A1ADTAM0A0wDLAM0A0QDUANYA1gDQANEA1gDVAM8AzwDQANYAAgDXANgA2AAAAAIA2QAGAD0APQDaANkA3QDbANwA3ADeAN0A3gDfAN0A3ADbANgA2ADXANwABgDZAOAA4AACAAYA4ADeAAIA3gDXAAIA3gDcANcA3QDaAD0APQAAAN0AAADYAN0A2ADbAN0AVgBUAFIAUgB6AFYAUgBQAHoAUABdAHoAXQBuAHoAXQBmAG4AXQBeAGYAXgBlAGYAXgCDAGUAgwBqAGUAgwCEAGoAhABxAGoAcQBpAGoAcQByAGkAcgCIAGkAcgB3AIgAdwBZAIgAdwBXAFkAdwBrAFcAawBfAFcAXwB7AFcAXwBhAHsA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kMJ1PB+F6z1H4Xo+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kMJ1vB+F6z1H4Xo+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9kML1vOtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+JMRdvXsUrr17FK4+JMRdvXsUrr3C9Sg+kML1vArXo7sK16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vI7C9bzotIG9kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw+jxdhPElURD32KNw+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+nNXUPK1HYT3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+y2LtPMikQz3rUbg+nNXUPM3MzDz2KNw+nNXUPM3MzDzrUbg+zcxMPSlcDz10plE+zcxMPSlcDz1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvSlcDz10plE+zcxMvSlcDz1YBR8+kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz0K1yO9kML1PJqZmT0K1yO9zcxMPZqZmT0K1yO9kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+y2LtvEwJBD3rUbg+kML1vArXIz32KNw+kML1vArXIz3rUbg+y2LtvMikQz32KNw+y2LtvMikQz3rUbg+nNXUvK1HYT32KNw+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1vClcDz6+mOq9kMJ1vB+F6z0QUYk9kMJ1vClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1PArXo7spXI+9zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+zcxMPa1HYb17FK4+zcxMva1HYb17FK4+zcxMvZDCdTx7FK4+zcxMva1HYb3C9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+zcxMvQrXo7vrUTi+zcxMvR+F6z3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+zcxMva1HYb3rUbg+zcxMPa1HYb3rUbg+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+zcxMva1HYb0K16M8zcxMvQrXo7sK16M8zcxMPQrXo7sK16M8zcxMPa1HYb0K16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34359742465, -"index_count": 96, -"index_data": PackedByteArray("IADhAOIA4gAiACAAHwArADgAOAA1AB8ANQDjAB8A4wAgAB8A4wDhACAA5ADjADUANQA0AOQANADlAOQAOQAqACEAIQA3ADkAIQDmADcA5gA2ADcA5gDnADYA6ADmACEAIQAiAOgAIgDiAOgA5QA0ADYANgDnAOUASwA/AEUARQBMAEsARQBHAEwAQwBFAD8APwA+AEMAPgBJAEMAQgBNAEQARABAAEIARABKAEAARgBEAE0ATQBOAEYATgBIAEYA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kMJ1PB+F6z1H4Xo+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kMJ1vB+F6z1H4Xo+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9kML1vOtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+JMRdvXsUrr17FK4+JMRdvXsUrr3C9Sg+kML1vArXo7sK16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vI7C9bzotIG9kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw+jxdhPElURD32KNw+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+nNXUPK1HYT3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+y2LtPMikQz3rUbg+nNXUPM3MzDz2KNw+nNXUPM3MzDzrUbg+zcxMPSlcDz10plE+zcxMPSlcDz1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvSlcDz10plE+zcxMvSlcDz1YBR8+kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz0K1yO9kML1PJqZmT0K1yO9zcxMPZqZmT0K1yO9kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+y2LtvEwJBD3rUbg+kML1vArXIz32KNw+kML1vArXIz3rUbg+y2LtvMikQz32KNw+y2LtvMikQz3rUbg+nNXUvK1HYT32KNw+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1vClcDz6+mOq9kMJ1vB+F6z0QUYk9kMJ1vClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1PArXo7spXI+9zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+zcxMPa1HYb17FK4+zcxMva1HYb17FK4+zcxMvZDCdTx7FK4+zcxMva1HYb3C9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+zcxMvQrXo7vrUTi+zcxMvR+F6z3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+zcxMva1HYb3rUbg+zcxMPa1HYb3rUbg+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+zcxMva1HYb0K16M8zcxMvQrXo7sK16M8zcxMPQrXo7sK16M8zcxMPa1HYb0K16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34359742465, -"index_count": 483, -"index_data": PackedByteArray("6gDpAD8APwBLAOoASwBNAOoA6wDqAE0A7ADrAE0ATQBCAOwAJQAnACwALAAjACUAHQAvADMAMwAeAB0A7gDtAIUAhQCoAO4AqACjAO4AowDvAO4A7QB/AIUA7QB9AH8A7QB1AH0AowCkAO8ApACmAO8ApgCgAO8AoACeAO8AngCcAO8AnACQAO8AkACOAO8AcwB1AO0A8ADvAI4A8ACOAIwA8ACMAIoA8ACKAMYA8ADGAMQA8ADEAMIA8ADCAMAA8ADAAL4A7QDwAL4AvgC7AO0AuwC8AO0AvAC3AO0AtwBzAO0A8QCXAAkACQDyAPEACQAIAPIACAAWAPIAGQAJAJcAlwCZABkAmQAWABkAmQDyABYAmADqAMgAyACaAJgAyADHAJoAxwDPAJoAzwDSAJoA0gDMAJoAywDIAOoA6gDrAMsA6wDMAMsA6wCaAMwAywDVAMgAywDTANUAzwDVANMA0wDSAM8A9ADzAAEAAQA6APQA4wDkAO0A7QDuAOMA8QDwAO0A7QDlAPEA5QCtAPEA5QDnAK0ArQCXAPEA5wCuAK0A8wCuAOcA5wDmAPMA8wCrAK4AqwCVAK4AmACuAJUAlQDqAJgAlQCUAOoAlACSAOoAkgCrAPQA8wD0AKsA9ADpAJIA6QDqAJIA5ADlAO0A8gDvAPAA8ADxAPIAQQA/AN0A3QDfAEEA3wBCAEEA3wDeAEIA3gDgAEIA4ADZAEIABwBCANkAOwAHANkA2QDaADsA2gDdAD8ABwDsAEIABwAEAOwABAD1AOwA9ADaAD8APwDpAPQA9AA6ANoAOgA7ANoAJwAoAC0ALQAsACcAHgAzADIAMgAcAB4AAQDzAOYA5gAQAAEAEAARAAEAEQADAAEAEQATAAMAFwAQAOYA5gDoABcA6AATABcA6AADABMA6AD2AAMA9gDoAOIA4gCqAPYAqgCwAPYAqgCaALAAmgCyALAAsAD1APYAsAC0APUAtADsAPUAsgCaAOsA6wDsALQA6wC2ALIA6wC0ALYAqQCqAOIAqQDiAOEA8gCpAOEA7wDyAOEA7wDhAOMA4wDuAO8AmQCpAPIABAADAPYA9gD1AAQA+QD3APgA+AD6APkA+QD7APwA/AD3APkA+AD9AP4A/gD6APgA/gD7APkA+QD6AP4A+AD3APwA/AD9APgA/QD8AEAAQAD+AP0AQABKAP4ASgBIAP4ASgBJAEgASABOAP4ATgBMAP4APgBAAPwA/AD7AD4A+wBJAD4A+wD+AEwA+wBHAEkARwBIAEkA+wBMAEcA"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kMJ1PB+F6z1H4Xo+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kMJ1vB+F6z1H4Xo+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9kML1vOtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+JMRdvXsUrr17FK4+JMRdvXsUrr3C9Sg+kML1vArXo7sK16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vI7C9bzotIG9kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw+jxdhPElURD32KNw+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+nNXUPK1HYT3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+y2LtPMikQz3rUbg+nNXUPM3MzDz2KNw+nNXUPM3MzDzrUbg+zcxMPSlcDz10plE+zcxMPSlcDz1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvSlcDz10plE+zcxMvSlcDz1YBR8+kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz0K1yO9kML1PJqZmT0K1yO9zcxMPZqZmT0K1yO9kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+y2LtvEwJBD3rUbg+kML1vArXIz32KNw+kML1vArXIz3rUbg+y2LtvMikQz32KNw+y2LtvMikQz3rUbg+nNXUvK1HYT32KNw+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1vClcDz6+mOq9kMJ1vB+F6z0QUYk9kMJ1vClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1PArXo7spXI+9zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+zcxMPa1HYb17FK4+zcxMva1HYb17FK4+zcxMvZDCdTx7FK4+zcxMva1HYb3C9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+zcxMvQrXo7vrUTi+zcxMvR+F6z3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+zcxMva1HYb3rUbg+zcxMPa1HYb3rUbg+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+zcxMva1HYb0K16M8zcxMvQrXo7sK16M8zcxMPQrXo7sK16M8zcxMPa1HYb0K16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34359742465, -"index_count": 144, -"index_data": PackedByteArray("fgB2AHQAdACAAH4AdAC4AIAAuACGAIAAuAC6AIYAugCnAIYAugBTAKcAUwBVAKcAVQB5AKcAeQChAKcAeQBtAKEAbQBkAKEAZABjAKEAYwCiAKEAYwBoAKIAaAClAKIAaABnAKUAZwCHAKUAhwCfAKUAhwBaAJ8AWgBYAJ8AWAB8AJ8AfACdAJ8AfABiAJ0AUwC6ALkAuQBRAFMAuQBPAFEAuQC9AE8AvQBbAE8AvQBcAFsAvQCBAFwAvQC/AIEAvwCCAIEAvwBvAIIAvwDBAG8AwQBwAG8AwQDDAHAAwwB4AHAAwwBsAHgAwwBgAGwAwwDFAGAAxQBiAGAAxQCdAGIAxQCbAJ0AxQCJAJsAiQCPAJsAiQCLAI8AiwCNAI8A"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kMJ1PB+F6z1H4Xo+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kMJ1vB+F6z1H4Xo+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9kML1vOtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+JMRdvXsUrr17FK4+JMRdvXsUrr3C9Sg+kML1vArXo7sK16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vI7C9bzotIG9kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw+jxdhPElURD32KNw+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+nNXUPK1HYT3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+y2LtPMikQz3rUbg+nNXUPM3MzDz2KNw+nNXUPM3MzDzrUbg+zcxMPSlcDz10plE+zcxMPSlcDz1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvSlcDz10plE+zcxMvSlcDz1YBR8+kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz0K1yO9kML1PJqZmT0K1yO9zcxMPZqZmT0K1yO9kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+y2LtvEwJBD3rUbg+kML1vArXIz32KNw+kML1vArXIz3rUbg+y2LtvMikQz32KNw+y2LtvMikQz3rUbg+nNXUvK1HYT32KNw+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1vClcDz6+mOq9kMJ1vB+F6z0QUYk9kMJ1vClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1PArXo7spXI+9zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+zcxMPa1HYb17FK4+zcxMva1HYb17FK4+zcxMvZDCdTx7FK4+zcxMva1HYb3C9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+zcxMvQrXo7vrUTi+zcxMvR+F6z3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+zcxMva1HYb3rUbg+zcxMPa1HYb3rUbg+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+zcxMva1HYb0K16M8zcxMvQrXo7sK16M8zcxMPQrXo7sK16M8zcxMPa1HYb0K16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_uv12n"] -resource_name = "blasterD_Mesh blasterD" -_surfaces = [{ -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("XS6XP6Qn6b9dLpc/k8nkP10ul7+kJ+m/XS6Xv5PJ5D8mk0m/ZTKZPyOTST4ulwtAJpNJvyqVSkDSkzRAKpVKQH6UH0AulwtAI5NJPmUymT9dLhc/iMNhwF0uF7+Iw2HAJpPJPvJ4vMAmk8m+8ni8wF0ulz/GYjFAXS6XP16vl0BdLpe/xmIxQF0ul79er5dAXS6XP/J4/EBdLpe/8nj8QF0ulz8qlUpAXS6XvyqVSkBbrbbA9PncQFuttsAqlUpAvV5vwPJ4/ECLxeK/KpVKQIvF4r/yePxAJpPJvkEgUEEmk8m+dTo9QSaTyT5BIFBBJpPJPnU6PUFBIEDByJ9dwEEgQMElqrrAqVQawcifXcB1Oi3BJaq6wFuttkAqlUpAW622QPT53ECLxeI/KpVKQL1eb0DyePxAi8XiP/J4/EBdLpe/x2M8P10ul7+0g7u/XS6XP8djPD9dLpc/tIO7v0EgQEElqrrAQSBAQcifXcB1Oi1BJaq6wKlUGkHIn13AXS4XP7af68BdLhe/tp/rwCaTyT5/ESDBJpPJvn8RIMFdLpc/9PncQF0ul7/0+dxAXS6XPyqVSkBdLpe/KpVKQF0ul79dLldAXS6Xv/j7nUAmk8m/XS5XQCaTyb/4+51A8Pf7v5PJhEBZLFbBAgVVQFksVsFGo9E+v9/PwAIFVUC/38/ARqPRPiaTyT8Wi0W/XS6XPxaLRb8mk8k/Ho/Hv10ulz8ej8e/8Pf7v5PJhEAmk8m/XS5XQCaTyb/4+51AXS6Xv/j7nUBdLpe/XS5XQL/fz8BE9e0/WSxWwUT17T+/38/A3rPWPlksVsHes9Y+8Pf7P5PJhEAmk8k/+PudQCaTyT9dLldAXS6XP10uV0BdLpc/+PudQF0ul78Wi0W/JpPJvxaLRb9dLpe/Ho/HvyaTyb8ej8e/JpPJPxaLRb9dLpc/FotFvyaTyT8ej8e/XS6XPx6Px79dLpe/FotFvyaTyb8Wi0W/XS6Xvx6Px78mk8m/Ho/Hv10ulz/4+51AXS6XP10uV0Amk8k/+PudQCaTyT9dLldA8Pf7P5PJhEBZLFZBRqPRPlksVkECBVVAv9/PQEaj0T6/389AAgVVQFksVkHes9Y+WSxWQUT17T+/389A3rPWPr/fz0BE9e0/z2sIQL/f70DPawhAWSxmQc9rCMC/3+9Az2sIwFksZkEmk0k/ZTKZPyaTST8qlUpAI5NJvmUymT8jk0m+LpcLQNKTNMAqlUpAfpQfwC6XC0BdLpc/LpcLQF0ul78ulwtAXS6XP2UymT9dLpe/ZTKZP10ul7/8KL+/XS6XP/wov79dLpe/N5tNP10ulz83m00/XS6Xvx5QgEFdLpe/Uof9QF0ulz8eUIBB8IgOv1KH/UBdLpc/Uof9QF0ulz8Coow+XS6XvwKijD5dLpc/Ho/Hv10ul78ej8e/XS6XP71eX8FdLpc/IpHowF0ul7+9Xl/BXS6XvyKR6MBdLpc/5oQNQV0ulz/I5ntBXS6Xv+aEDUFdLpe/yOZ7QV0ul7+LxcLAXS6Xv71eX8FdLpc/i8XCwF0ulz+9Xl/B3m6HwRq0oT6LxWLBGrShPt5uh8GKLvU+i8ViwYou9T7ebodBfD9gP4vFYkF8P2A/3m6HQUSCNj+LxWJBRII2P4vFYkEAqiS93m6HQQCqJL2LxWJBwJT7Pd5uh0HAlPs93m6HwdDhK77ebofBWGupvovFYsHQ4Su+i8ViwVhrqb6LxWLBfD9gP95uh8F8P2A/i8ViwUSCNj/ebofBRII2P95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HwQCqJL2LxWLBAKokvd5uh8HAlPs9i8ViwcCU+z3ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vovFYsGKLvU+3m6HwYou9T6LxWLBGrShPt5uh8EatKE+3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebofBKC+/vt5uh8HMVAm/i8ViwSgvv76LxWLBzFQJv4vFYkGI6SM/3m6HQYjpIz+LxWJBONhyP95uh0E42HI/i8ViwcCU+z3ebofBwJT7PYvFYsEAqiS93m6HwQCqJL3ebodBwJT7PYvFYkHAlPs93m6HQQCqJL2LxWJBAKokvYvFYkFEgjY/3m6HQUSCNj+LxWJBfD9gP95uh0F8P2A/i8ViwQEwDT/ebofBATANP4vFYsFEBXk+3m6HwUQFeT7ebofB0OErvt5uh8FYa6m+i8ViwdDhK76LxWLBWGupvt5uh8FEgjY/i8ViwUSCNj/ebofBfD9gP4vFYsF8P2A/3m6HQYou9T6LxWJBii71Pt5uh0EatKE+i8ViQRq0oT7ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vt5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/i8ViQRq0oT7ebodBGrShPovFYkGKLvU+3m6HQYou9T6LxWLBUC1IPt5uh8FQLUg+i8ViweAa573ebofB4Brnvd5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/3m6HwSgvv77ebofBzFQJv4vFYsEoL7++i8ViwcxUCb+LxWLBONhyP95uh8E42HI/i8ViwYjpIz/ebofBiOkjP95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebodBATANP4vFYkEBMA0/3m6HQUQFeT6LxWJBRAV5Pt5uh0E42HI/i8ViQTjYcj/ebodBiOkjP4vFYkGI6SM/3m6HwYjpIz+LxWLBiOkjP95uh8E42HI/i8ViwTjYcj9dLpe/CIPBvvD3+78Ig8G+XS6Xv+jz+b/w9/u/6PP5v/D3+z9MJhO/8Pf7PyqVqkBdLpc/TCYTv10ulz8qlapA8Pf7v8j3EEHw9/u/UaXjQPD3+z/I9xBB8Pf7P1Gl40DebofB4BrnvYvFYsHgGue93m6HwVAtSD6LxWLBUC1IPt5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+3m6HwQR40L7ebofBsio3v4vFYsEEeNC+i8ViwbIqN7/ebofBsP2Zvt5uh8GI7Ru/i8ViwbD9mb6LxWLBiO0bv95uh8Gw/Zm+3m6HwYjtG7+LxWLBsP2ZvovFYsGI7Ru/3m6HwUQFeT6LxWLBRAV5Pt5uh8EBMA0/i8ViwQEwDT/I9wDBCIPBvsj3AMGIw2HAUaXDwAiDwb5RpcPAiMNhwPD3+z8Ig8G+XS6XPwiDwb7w9/s/6PP5v10ulz/o8/m/KpWKQAiDwb7w93tAHo/HvyqVikDo8/m/JpPJv+jz+b9dLhdAHo/Hv10uF0AWi0W/8Pd7QBaLRb8mk8m/CIPBvt5uh8EEeNC+3m6HwbIqN7+LxWLBBHjQvovFYsGyKje/yPcAQYjDYcDI9wBBCIPBvlGlw0CIw2HAUaXDQAiDwb7w9/u/KpWqQPD3+79MJhO/XS6XvyqVqkBdLpe/TCYTv10ul78Ig8G+8Pf7vwiDwb5dLpe/6PP5v/D3+7/o8/m/XS6XPyqVqkBdLpc/TCYTv/D3+z8qlapA8Pf7P0wmE7/w93vAHo/Hv/D3e8AWi0W/KpWKwAiDwb4mk8k/CIPBvl0uF8AWi0W/JpPJP+jz+b8qlYrA6PP5v10uF8Aej8e/8Pf7PwiDwb5dLpc/CIPBvvD3+z/o8/m/XS6XP+jz+b9dLpe/TCYTv10ul78qlapA8Pf7v0wmE7/w9/u/KpWqQN5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+i8ViQUQFeT7ebodBRAV5PovFYkEBMA0/3m6HQQEwDT/ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0GI7Ru/3m6HQbD9mb6LxWJBiO0bv4vFYkGw/Zm+3m6HQbIqN7/ebodBBHjQvovFYkGyKje/i8ViQQR40L7ebodBsio3v95uh0EEeNC+i8ViQbIqN7+LxWJBBHjQvovFYkHgGue93m6HQeAa572LxWJBUC1IPt5uh0FQLUg+3m6HQYjtG7/ebodBsP2ZvovFYkGI7Ru/i8ViQbD9mb7ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0FQLUg+i8ViQVAtSD7ebodB4BrnvYvFYkHgGue9XS4XPwA/sL9dLhe/AD+wv10uFz9M+mTAXS4Xv0z6ZMBdLhc/OBqkvl0uF784GqS+XS4XPxNeIcBdLhe/E14hwL1eb8CIw2HAwmAwwL/fr8BX8SjAiMNhwFlyCcDCYJDAj8ejQL/fr8BbUJBAwmCQwNoPoECIw2HAjUbDQIjDYcBdLhc/FAlQv10uF78UCVC/XS4XP1bf9L9dLhe/Vt/0v10uF7/CYHBAXS4Xv4/Hg8BdLhc/wmBwQF0uFz+Px4PAvV5vQIjDYcBX8ShAiMNhwMJgMEC/36/AWXIJQMJgkMCPx6PAv9+vwFtQkMDCYJDA2g+gwIjDYcCNRsPAiMNhwF0uFz+2oGDAXS4XP1lySUBdLhe/tqBgwF0uF79ZcklAXS4XP/w8779dLhe//Dzvv10uFz/kCz7AXS4Xv+QLPsBdLpc/D4sBQV0ul78PiwFBXS6XPx2TfEBdLpe/HZN8QF0ulz/WLDpAXS6Xv9YsOkBdLpc/HI3vP10ul78cje8/XS6XP4t2FUFdLpe/i3YVQV0ulz9+dEdAXS6Xv350R0DwiA4/fnRHQF0ulz+KROLAXS6XPyKRSMBdLpe/ikTiwF0ul78ikUjAKpUKQGUymT/CYDBAZTKZP41Gw0BlMpk/kUiEQI1G40BFIgFBjUbjQCqVCsBlMpk/jUbDwGUymT+RSITAjUbjQEUiAcGNRuNAAACgKGDQSz05hyW+QErpPDmHJT5ASuk8UuOfPsDrCr1S45++wOsKvaEd4r7wXQi+oR3iPvBdCL6Qdwo/SGmGvpB3Cr9IaYa+n3AaP/yI076fcBq//IjTvlLjHz9MJhO/UuMfv0wmE7+fcBq/Gog8v59wGj8aiDy/kHcKv/YXY7+Qdwo/9hdjv6Ed4r6OGoK/oR3iPo4agr9S458+7s6Ov1Ljn77uzo6/OYclvnbLlr85hyU+dsuWvwAAoCjQhJm/8Pf7P1ksZkHw9/s/v9/vQCaTSUBZLGZBJpNJQL/f70DPawhALBaLQM9rCMAsFotAJpNJQAIFVUAmk0nAAgVVQPD3+z8qlUpAJpNJQEaj0T7w9/s/RqPRPvD3+78qlUpAJpNJwEaj0T7w9/u/RqPRPs9rCMAsFotAJpNJwAIFVUDPawhALBaLQCaTSUACBVVA8Pf7PyqVSkAmk0lARqPRPvD3+z9Go9E+8Pf7vyqVSkAmk0nARqPRPvD3+79Go9E+JpNJwFksZkEmk0nAv9/vQPD3+79ZLGZB8Pf7v7/f70CLxeLAZTKZP5FIBMEej8e/i8XiwL1eL8C9Xm/BvV4vwL1eb8Eej8e/kUgEwQKijD69Xm/BKpVKQL1eb8HaVPk/i8XiQL1eL8CRSARBAqKMPovF4kBlMpk/vV5vQSqVSkC9Xm9B2lT5P5FIBEEej8e/vV5vQb1eL8C9Xm9BHo/Hv/D3+z9lMpk/XS6XP2UymT/w9/s/iMNhwF0ulz+9Xi/AXS6Xv71eL8Dw9/u/iMNhwPD3+79lMpk/XS6Xv2UymT/HomxAHo/Hv8eibEAWi0W/Q0s0QB6Px79DSzRAFotFv0NLNMAej8e/fOf3vx6Px79DSzTAFotFv3zn978Wi0W/8Pf7vyqVSkBozVU/Nk6FPvD3+z8qlUpAO+2CPwACgTycB5I/+MiJvvD3+z+LxSLAXS4XP1Jo5T6ig5w+7OgQPwAAoChtNhs/XS6XP0wmE7+cB5I/Hmhhvzvtgj9UKpW/aM1VP9p5tL9dLhc/YIDMv6KDnD7Cmtu/AACgKITB4L+ig5y+7OgQP/D3+7+LxSLAooOcvsKa279dLhe/YIDMv2jNVb/aebS/O+2Cv1Qqlb+cB5K/Hmhhv10ul79MJhO/nAeSv/jIib477YK/AAKBPGjNVb82ToU+XS4Xv1Jo5T5dLhe/QSBQQfD3+78MBmNB8Pf7PwwGY0FdLhc/QSBQQV0uFz+pVCpBXS4Xv6lUKkHw9/u/i8XCwF0uF79er5dAXS4XP16vl0BdLhc/V/FoQF0uFz/aD4DAXS4XP41Go8BdLhe/jUajwPD3+z+LxcLAXS4Xv1fxaEBdLhe/2g+AwPD3+z8qlUpAXS6XPyqVSkDw9/s/ZTKZP10ulz9lMpk/8Pf7P1ksZkHw9/s/i8VyQfD3+79ZLGZB8Pf7v4vFckGLxWJBi8UiwIvFYkEqlUpADAZTQYjDYcBZLFZBRqPRPr/fz0BGo9E+JpNJPyqVSkC/389AKpVKQCqVikAIg8G+KpWKQOjz+b+LxeLAiMNhwCaTyb/o8/m/JpPJvwiDwb4mk0k/ZTKZP4vF4sBlMpk/WSxWQSqVSkDw9/s/ikMIQfD3+7+KQwhB8Pf7P0r840Dw9/u/SvzjQF0ulz+LxcLAXS6XP41Go8DwiA4/i8XCwPCIDj+NRqPAXS6Xv4vFwsBdLpe/jUajwF0ul7+EweC/XS6Xv1Qqlb9dLpe/N5tNP10ulz83m00/XS6XP1Qqlb/w9/u/i8XCwF0ul7+TyeQ/8Pf7v5PJ5D/w9/s/k8nkP/D3+z+LxcLAXS6XP5PJ5D9DSzRAHo/Hv0NLNEAWi0W/fOf3Px6Px7985/c/FotFv8eibMAej8e/Q0s0wB6Px7/HomzAFotFv0NLNMAWi0W/8Pf7P5PJ5D/w9/s/v9/vQF0ulz/GYjFAXS6Xv8ZiMUBdLpe/W63WQF0ulz9brdZA8Pf7v7/f70Dw9/u/k8nkP7/fz8AqlUpAv9/PwEaj0T4mk0m/KpVKQCqVisAIg8G+KpWKwOjz+b8mk0m/ZTKZPyaTyT8Ig8G+i8XiQGUymT+LxeJAiMNhwCaTyT/o8/m/WSxWwUaj0T4MBlPBiMNhwIvFYsGLxSLAWSxWwSqVSkCLxWLBKpVKQF0ul78qlUpA8Pf7vyqVSkBdLpe/ZTKZP/D3+79lMpk/8Pf7P/T5fEDw9/u/9Pl8QPD3+z+Iw2HA8Pf7v4jDYcC9Xm/BiMNhwL1eb8H0+XxA3m6HwYjDYcDebofB9Pl8QL1eb0H0+XxAvV5vQYjDYcDebodB9Pl8QN5uh0GIw2HA8Pf7v71eX8Hw9/u/vN1+wfD3+z+9Xl/B8Pf7P7zdfsHw9/s/vN1+wfD3+z+9Xl/B8Pf7v7zdfsHw9/u/vV5fwfD3+7/0+XxAXS6XPyqVSkDw9/s/9Pl8QPD3+z+Iw2HAXS6XP9pU+T9dLpc/Ho/Hv10ul7/aVPk/XS6XP71eL8BdLpe/vV4vwF0ul78qlUpA8Pf7v4jDYcBdLpe/Ho/Hv8j3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+yPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HA"), -"format": 34359742487, -"index_count": 237, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABQAIAAcACQAFAAQADAAKAAsACwANAAwAEAAOAA8ADwARABAAFAASABMAEwAVABQAGAAWABcAFwAZABgAGQAaABgAHQAbABwAHAAeAB0AIQAfACAAIAAiACEAJQAjACQAJAAmACUAJgAnACUAKgAoACkAKQArACoALgAsAC0ALQAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOQA7ADoAOwA8ADoAPwA9AD4APgBAAD8AQwBBAEIAQgBEAEMARwBFAEYARgBIAEcARgBJAEgATABKAEsASwBNAEwAUABOAE8ATwBRAFAATwBSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAXQBbAFwAXABeAF0AYQBfAGAAYABiAGEAYgBjAGEAZgBkAGUAZQBnAGYAagBoAGkAaQBrAGoAbgBsAG0AbQBvAG4AcgBwAHEAcQBzAHIAcQB0AHMAdAB1AHMAeAB2AHcAdwB5AHgAfAB6AHsAewB9AHwAgAB+AH8AfwCBAIAAgQCCAIAAhQCDAIQAhACGAIUAiQCHAIgAiACKAIkAjQCLAIwAjACOAI0AkQCPAJAAkACSAJEA"), -"material": SubResource("StandardMaterial3D_x17jo"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PK1HYb0K16M8kML1PK1HYb35xZK9kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vDMzM77rUTg9kML1PDMzM77rUTg9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+kML1PDMzM75cj8I9kML1PK1HYb3rUTg9kML1PDMzM77rUTg9CtcjvDMzMz72KJw+CtcjvDMzMz7NzIw+CtcjPDMzMz72KJw+CtcjPDMzMz7NzIw+kMJ1PB+F6z32KJw+CtcjPDMzMz72KJw+kMJ1PB+F6z1H4Xo+CtcjPDMzMz7NzIw+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kML1vK1HYb3rUTg9kML1vDMzM75cj8I9kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1vJqZGb7hehQ+kML1PDMzM75cj8I9kML1PJqZGb7hehQ+CtcjvDMzMz72KJw+kMJ1vB+F6z32KJw+CtcjvDMzMz7NzIw+kMJ1vB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+kMJ1PB+F6z1H4Xo+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kML1PJqZGb7hehQ+kML1vJqZGb7hehQ+kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT2QwnU9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9kML1vLgehT2QwnU9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+CtejPQc/cr3C9Sg+CtejPQc/cr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9CtcjvetROD2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vOtROD3NzMw9CtcjvetROD3NzMw9kML1vLgehT3NzMw9CtcjvbgehT3NzMw9CtcjPetROD3NzMw9kML1POtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1POtROD2QwnU9CtcjPetROD2QwnU9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT3NzMw9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+CtejvQc/cr17FK4+JMRdvXsUrr17FK4+CtejvQc/cr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr17FK4+JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+kML1vArXo7sK16M8kML1vK1HYb0K16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vK1HYb35xZK9kML1vI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vAvXo7sH16O7kML1PAvXo7sH16O7kML1vI7C9bzotIG9kML1PI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1vLgehT09Cle+kML1PLgehT1cj8K+kML1PLgehT09Cle+kML1vHLsljw9Cle+kML1vIQ8xbxcj8K+kML1PHLsljw9Cle+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+cMk3vFzJ6zz2KNw+cMk3vFzJ6zzrUbg++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+jxdhPMxZAz32KNw+cMk3PFzJ6zz2KNw+jxdhPMxZAz3rUbg+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBvO4cXD3rUbg++vQBvO4cXD32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+jxdhvElURD32KNw+cMk3vGbJUT32KNw+jxdhvElURD3rUbg+cMk3vGbJUT3rUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg++vSBPArXIz32KNw+uw57PLcFEz32KNw++vSBPArXIz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw++vSBvArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz3rUbg+uw57vFyoND3rUbg+jxdhvMxZAz32KNw+uw57vLcFEz32KNw+jxdhvMxZAz3rUbg+uw57vLcFEz3rUbg+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+jxdhPElURD32KNw+uw57PFyoND32KNw+jxdhPElURD3rUbg+uw57PFyoND3rUbg+cMk3PGbJUT32KNw+jxdhPElURD32KNw+cMk3PGbJUT3rUbg+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT0K1yO9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+UMetPLK6ej32KNw+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+nNXUPK1HYT32KNw+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+nNXUPM3MzDz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+zcxMPSlcDz10plE+zcxMPR+F6z10plE+zcxMPSlcDz1YBR8+zcxMPR+F6z1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9kML1vClcDz2tR+E9kML1vLgehT3NzMw9kML1vJqZmT2tR+E9kML1vJqZmT0K1yO9kML1vLgehT2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vClcDz0K1yO9kML1PArXIz32KNw+y2LtPMikQz32KNw+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+zcxMvR+F6z10plE+zcxMvSlcDz10plE+zcxMvR+F6z1YBR8+zcxMvSlcDz1YBR8+zcxMvSlcDz2tR+E9zcxMvSlcDz0K1yO9kML1vClcDz2tR+E9kML1vClcDz0K1yO9kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz2tR+E9zcxMPSlcDz0K1yO9kML1PLgehT3NzMw9kML1POtROD3NzMw9kML1PClcDz2tR+E9kML1PClcDz0K1yO9kML1POtROD2QwnU9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9kML1PLgehT2QwnU9zcxMPSlcDz0K1yO9kML1PClcDz0K1yO9zcxMPZqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9zcxMPZqZmT0K1yO9zcxMPZqZmT2tR+E9UMetPMXmmTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTzrUbg+nNXUPM3MzDzrUbg+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+nNXUvM3MzDz2KNw+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+kML1vArXIz32KNw+y2LtvEwJBD32KNw+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+y2LtvMikQz32KNw+kML1vArXIz32KNw+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+UMetvMXmmTzrUbg+UMetvMXmmTz2KNw+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvK1HYT32KNw+y2LtvMikQz32KNw+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+UMetvLK6ej32KNw+nNXUvK1HYT32KNw+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PML1KD64HgW+kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1PClcDz6+mOq9kMJ1vClcDz6+mOq9kMJ1vML1KD4pXI89kMJ1vML1KD64HgW+kMJ1PML1KD4pXI89kMJ1PML1KD64HgW+kMJ1vB+F6z1cj8I9kMJ1vB+F6z0QUYk9kMJ1vML1KD4pXI89kMJ1vClcDz7tbl89kMJ1vML1KD64HgW+kMJ1vClcDz6+mOq9kMJ1vB+F6z0sGQK+kMJ1vB+F6z1SuB6+kMJ1vClcDz6+mOq9kMJ1vClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PClcDz7tbl89kMJ1vB+F6z0QUYk9kMJ1PB+F6z0QUYk9kMJ1vClcDz7tbl89kMJ1PClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PK1HYb35xZK9kML1vK1HYb35xZK9kML1PI7C9bzotIG9kML1vI7C9bzotIG9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1vFK4Hr6G61G+kML1vFK4Hr49Cte9kML1PFK4Hr6G61G+kML1PFK4Hr49Cte9kML1PArXo7utR2G9kML1PArXo7spXI+9kML1PArXo7tSuB6+kML1PFK4Hr49Cte9kML1PFK4Hr6G61G+kML1vArXo7utR2G9kML1vArXo7tSuB6+kML1vFK4Hr49Cte9kML1vFK4Hr6G61G+SgwCJhq5xTzrUbg+lYqGu7cmyjzrUbg+lYqGO7cmyjzrUbg++vQBPEwi1zzrUbg++vQBvEwi1zzrUbg+cMk3vFzJ6zzrUbg+cMk3PFzJ6zzrUbg+jxdhPMxZAz3rUbg+jxdhvMxZAz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz3rUbg++vSBPArXIz3rUbg++vSBvArXIz3rUbg+uw57vFyoND3rUbg+uw57PFyoND3rUbg+jxdhvElURD3rUbg+jxdhPElURD3rUbg+cMk3vGbJUT3rUbg+cMk3PGbJUT3rUbg++vQBPO4cXD3rUbg++vQBvO4cXD3rUbg+lYqGu7maYj3rUbg+lYqGO7maYj3rUbg+SgwCJojRZD3rUbg+zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+CtejPZDCdTx7FK4+CtejPZDCdTzC9Sg+JMRdPXsUrr17FK4+JMRdvXsUrr17FK4+CtejPQc/cr17FK4+CtejvQc/cr17FK4+zcxMPa1HYb17FK4+CtejPZDCdTx7FK4+zcxMPZDCdTx7FK4+zcxMva1HYb17FK4+CtejvZDCdTx7FK4+zcxMvZDCdTx7FK4+JMRdPXsUrr3C9Sg+CtejPQc/cr3C9Sg+JMRdvXsUrr3C9Sg+CtejvQc/cr3C9Sg+zcxMva1HYb3C9Sg+CtejvZDCdTzC9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+CtejPZDCdTzC9Sg+zcxMPZDCdTzC9Sg+CtejvZDCdTx7FK4+CtejvZDCdTzC9Sg+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+kML1vArXo7vrUTi+kML1vLgehT09Cle+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1vLgehT1cj8K+kML1vHLsljw9Cle+kML1vK1HYb1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj3rUTi+kML1PHLsljw9Cle+kML1PArXo7vrUTi+kML1PK1HYb1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT09Cle+kML1PFyPwj1cj8K+kML1PLgehT1cj8K+zcxMvQrXo7vrUTi+kML1vArXo7vrUTi+zcxMvR+F6z3rUTi+kML1vFyPwj3rUTi+kML1PFyPwj3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+kML1PArXo7vrUTi+zcxMvbgehT0K16M9zcxMvetROD0K16M9CtcjvbgehT2QwnU9CtcjvetROD2QwnU9CtcjPbgehT3NzMw9zcxMPbgehT0K16M9CtcjPetROD3NzMw9zcxMPetROD0K16M9zcxMva1HYb3rUbg+UMetPMXmmTzrUbg+zcxMPa1HYb3rUbg+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+zcxMPetRuD3rUbg+kMJ1PPGwZTzrUbg+8W3+O5CWNDzrUbg+SgwCJgrXIzzrUbg+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+kMJ1POwghz3rUbg+8W3+OzhEjT3rUbg+SgwCJilcjz3rUbg+8W3+u5CWNDzrUbg+zcxMvetRuD3rUbg+8W3+uzhEjT3rUbg+kMJ1vOwghz3rUbg+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+kMJ1vPGwZTzrUbg+kMJ1vB+F6z32KJw+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+kMJ1PB+F6z32KJw+kMJ1PB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+zcxMvR+F6z3rUTi+kMJ1vB+F6z1cj8I9kMJ1PB+F6z1cj8I9kMJ1PB+F6z0QUYk9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1vB+F6z1SuB6+zcxMPR+F6z3rUTi+kMJ1vB+F6z0QUYk9kMJ1vB+F6z0sGQK+zcxMva1HYb0K16M8kML1vK1HYb0K16M8zcxMvQrXo7sK16M8kML1vArXo7sK16M8zcxMva1HYb17FK4+zcxMva1HYb3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+zcxMvetRuD3rUbg+zcxMva1HYb3rUbg+zcxMvR+F6z0fhas+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+zcxMvSlcDz2tR+E9zcxMvZqZmT2tR+E9zcxMvR+F6z3rUTi+zcxMvZqZmT0K1yO9zcxMvSlcDz0K1yO9zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+zcxMva1HYb17FK4+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMPR+F6z0fhas+zcxMvR+F6z0fhas+kML1vArXo7vrUTi+kML1vArXo7tSuB6+a7RnvArXo7vrUTi+a7RnvArXo7tSuB6+kML1PArXo7vrUTi+kML1PArXo7tSuB6+kML1PArXo7spXI+9kML1PArXo7utR2G9kML1PAvXo7sH16O7kML1vAvXo7sH16O7kML1vArXo7utR2G9zcxMPQrXo7vrUTi+kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+kML1vArXo7sK16M8CtcjvbgehT3NzMw9CtcjvetROD3NzMw9zcxMvbgehT0K16M9zcxMvetROD0K16M9zcxMPbgehT0K16M9CtcjPbgehT2QwnU9zcxMPetROD0K16M9CtcjPetROD2QwnU9zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+zcxMPa1HYb3C9Sg+zcxMPa1HYb0K16M8zcxMPa1HYb3C9Sg+zcxMPZDCdTzC9Sg+zcxMPa1HYb0K16M8zcxMPSlcDz2tR+E9zcxMPZqZmT2tR+E9zcxMPQrXo7sK16M8zcxMPSlcDz0K1yO9zcxMPQrXo7vrUTi+zcxMPR+F6z3rUTi+zcxMPZqZmT0K1yO9zcxMPZDCdTx7FK4+zcxMPR+F6z0fhas+zcxMPetRuD3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+kML1PK1HYb0K16M8zcxMPa1HYb0K16M8kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMvR+F6z32KNy+zcxMvZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+zcxMPZqZmb32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvR+F6z32KNy+zcxMPR+F6z1cj8K+zcxMPR+F6z32KNy+zcxMvZqZmb32KNy+zcxMvZqZmb1cj8K+zcxMPZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMvZqZmb1cj8K+kML1PK1HYb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj1cj8K+kML1vFyPwj1cj8K+kML1vK1HYb1cj8K+zcxMvR+F6z1cj8K+kML1vLgehT1cj8K+SgwCJgrXIzz2KNw+8W3+u5CWNDz2KNw+8W3+O5CWNDz2KNw+kMJ1PPGwZTz2KNw+8W3+O5CWNDz2KNw+8W3+u5CWNDz2KNw+kMJ1vPGwZTz2KNw+kMJ1PPGwZTz2KNw+8W3+u5CWNDz2KNw+UMetPMXmmTz2KNw+kMJ1PPGwZTz2KNw+kMJ1vPGwZTz2KNw+UMetvMXmmTz2KNw+UMetPMXmmTz2KNw+kMJ1vPGwZTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTz2KNw+UMetvMXmmTz2KNw+SgwCJhq5xTz2KNw+nNXUPM3MzDz2KNw+UMetvMXmmTz2KNw+lYqGO7cmyjz2KNw+nNXUPM3MzDz2KNw+SgwCJhq5xTz2KNw++vQBPEwi1zz2KNw+lYqGO7cmyjz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDz2KNw++vQBPEwi1zz2KNw+cMk3PFzJ6zz2KNw+y2LtPEwJBD32KNw++vQBPEwi1zz2KNw+jxdhPMxZAz32KNw+y2LtPEwJBD32KNw+cMk3PFzJ6zz2KNw+uw57PLcFEz32KNw+y2LtPEwJBD32KNw+jxdhPMxZAz32KNw+kML1PArXIz32KNw+y2LtPEwJBD32KNw+uw57PLcFEz32KNw++vSBPArXIz32KNw+kML1PArXIz32KNw+uw57PLcFEz32KNw+y2LtPMikQz32KNw+kML1PArXIz32KNw++vSBPArXIz32KNw+uw57PFyoND32KNw+y2LtPMikQz32KNw++vSBPArXIz32KNw+jxdhPElURD32KNw+y2LtPMikQz32KNw+uw57PFyoND32KNw+nNXUPK1HYT32KNw+y2LtPMikQz32KNw+jxdhPElURD32KNw+cMk3PGbJUT32KNw+nNXUPK1HYT32KNw+jxdhPElURD32KNw++vQBPO4cXD32KNw+nNXUPK1HYT32KNw+cMk3PGbJUT32KNw+lYqGO7maYj32KNw+nNXUPK1HYT32KNw++vQBPO4cXD32KNw+UMetPLK6ej32KNw+nNXUPK1HYT32KNw+lYqGO7maYj32KNw+SgwCJojRZD32KNw+UMetPLK6ej32KNw+lYqGO7maYj32KNw+UMetvMXmmTz2KNw+nNXUvM3MzDz2KNw+SgwCJhq5xTz2KNw+lYqGu7cmyjz2KNw+SgwCJhq5xTz2KNw+nNXUvM3MzDz2KNw++vQBvEwi1zz2KNw+lYqGu7cmyjz2KNw+y2LtvEwJBD32KNw++vQBvEwi1zz2KNw+nNXUvM3MzDz2KNw+cMk3vFzJ6zz2KNw++vQBvEwi1zz2KNw+y2LtvEwJBD32KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zz2KNw+y2LtvEwJBD32KNw+uw57vLcFEz32KNw+jxdhvMxZAz32KNw+y2LtvEwJBD32KNw+kML1vArXIz32KNw+uw57vLcFEz32KNw+y2LtvEwJBD32KNw++vSBvArXIz32KNw+uw57vLcFEz32KNw+kML1vArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz32KNw+kML1vArXIz32KNw+y2LtvMikQz32KNw+uw57vFyoND32KNw+kML1vArXIz32KNw+jxdhvElURD32KNw+uw57vFyoND32KNw+y2LtvMikQz32KNw+nNXUvK1HYT32KNw+jxdhvElURD32KNw+y2LtvMikQz32KNw+cMk3vGbJUT32KNw+jxdhvElURD32KNw+nNXUvK1HYT32KNw++vQBvO4cXD32KNw+cMk3vGbJUT32KNw+nNXUvK1HYT32KNw+lYqGu7maYj32KNw++vQBvO4cXD32KNw+nNXUvK1HYT32KNw+UMetvLK6ej32KNw+lYqGu7maYj32KNw+nNXUvK1HYT32KNw+SgwCJojRZD32KNw+lYqGu7maYj32KNw+UMetvLK6ej32KNw+UMetPLK6ej32KNw+SgwCJojRZD32KNw+UMetvLK6ej32KNw+kMJ1POwghz32KNw+UMetPLK6ej32KNw+UMetvLK6ej32KNw+kMJ1vOwghz32KNw+kMJ1POwghz32KNw+UMetvLK6ej32KNw+8W3+OzhEjT32KNw+kMJ1POwghz32KNw+kMJ1vOwghz32KNw+8W3+uzhEjT32KNw+8W3+OzhEjT32KNw+kMJ1vOwghz32KNw+SgwCJilcjz32KNw+8W3+OzhEjT32KNw+8W3+uzhEjT32KNw+/38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7////9///8AgP///3///wCA////f///AID///9//////////3//////////f///AID/f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7////9//v///////3//////////f/////////9//////////3///////3///////7//f///////v/9///////+//3///////78m9tiJ/////yb22In/////JvbYif////8m9tiJ/////wAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f6oq////v/9/qir///+//3+qKv///7//f6oq////v9gJ2In/f/+/2AnYif9//7/YCdiJ/3//v9gJ2In/f/+/VNX//wAA/79U1f//AAD/v1TV//8AAP+/VNX//wAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7////9//////////3//////////f/////////9///////////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f///////v/9///////+//3///////7//f///////v/+//z///////7//P///////v/8///////+//z///////38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9///////+//3///////7//f///////v/9///////+//3///////78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/8//z//f/+//z//P/9//7//P/8//3//v/8//z//f/+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9///////+//3///////7//f///////v/9///////+//3+ZGf///7//f5kZ////v/9/mRn///+//3+ZGf///7//f5kZ////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7+Zmf//AAD/v5mZ//8AAP+/mZn//wAA/7+Zmf//AAD/v/9///////+//3///////7//f///////v/9///////+/2a4l0QAAAIDZriXRAAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVR2S4AAACAJVHZLgAAAID/P/8/AAAAgP8//z8AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgAwbDJsAAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACA/7//vwAAAID/v/+/AAAAgNmuJdEAAACA2a4l0QAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAAAP9/AAAAgNmu2S4AAACA2a7ZLgAAAIAMmwwbAAAAgAybDBsAAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDy5PJkAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA/7//PwAAAID/v/8/AAAAgNmu2S4AAACA2a7ZLgAAAIAlUSXRAAAAgCVRJdEAAACA/z//vwAAAID/P/+/AAAAgP9/AAAAAACA/38AAAAAAIDyZAwbAAAAgPJkDBsAAACADJsMGwAAAIAMmwwbAAAAgNmu2S4AAACA2a7ZLgAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVRJdEAAACAJVEl0QAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMGwybAAAAgPLkDJsAAACA////fwAAAIDy5AybAAAAgP///38AAACA8mQMGwAAAIDyZAwbAAAAgCVR2S4AAACAJVHZLgAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgP///38AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACAJdHZrgAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAID/fwAAAAAAgP9/AAAAAACADJsMGwAAAIAMmwwbAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIDZriXRAAAAgNmuJdEAAACA/7//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACA////fwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA8uQMmwAAAID///9/AAAAgPLkDJsAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgCXRJVEAAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgAwb8mQAAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAMGwybAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACA/3+qqgAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f1RVAAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f/+/AAAAgP9//78AAACA/3//vwAAAID/f/+/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("XS6XP6Qn6b9dLpc/k8nkP10ul7+kJ+m/XS6Xv5PJ5D8mk0m/ZTKZPyOTST4ulwtAJpNJvyqVSkDSkzRAKpVKQH6UH0AulwtAI5NJPmUymT9dLhc/iMNhwF0uF7+Iw2HAJpPJPvJ4vMAmk8m+8ni8wF0ulz/GYjFAXS6XP16vl0BdLpe/xmIxQF0ul79er5dAXS6XP/J4/EBdLpe/8nj8QF0ulz8qlUpAXS6XvyqVSkBbrbbA9PncQFuttsAqlUpAvV5vwPJ4/ECLxeK/KpVKQIvF4r/yePxAJpPJvkEgUEEmk8m+dTo9QSaTyT5BIFBBJpPJPnU6PUFBIEDByJ9dwEEgQMElqrrAqVQawcifXcB1Oi3BJaq6wFuttkAqlUpAW622QPT53ECLxeI/KpVKQL1eb0DyePxAi8XiP/J4/EBdLpe/x2M8P10ul7+0g7u/XS6XP8djPD9dLpc/tIO7v0EgQEElqrrAQSBAQcifXcB1Oi1BJaq6wKlUGkHIn13AXS4XP7af68BdLhe/tp/rwCaTyT5/ESDBJpPJvn8RIMFdLpc/9PncQF0ul7/0+dxAXS6XPyqVSkBdLpe/KpVKQF0ul79dLldAXS6Xv/j7nUAmk8m/XS5XQCaTyb/4+51A8Pf7v5PJhEBZLFbBAgVVQFksVsFGo9E+v9/PwAIFVUC/38/ARqPRPiaTyT8Wi0W/XS6XPxaLRb8mk8k/Ho/Hv10ulz8ej8e/8Pf7v5PJhEAmk8m/XS5XQCaTyb/4+51AXS6Xv/j7nUBdLpe/XS5XQL/fz8BE9e0/WSxWwUT17T+/38/A3rPWPlksVsHes9Y+8Pf7P5PJhEAmk8k/+PudQCaTyT9dLldAXS6XP10uV0BdLpc/+PudQF0ul78Wi0W/JpPJvxaLRb9dLpe/Ho/HvyaTyb8ej8e/JpPJPxaLRb9dLpc/FotFvyaTyT8ej8e/XS6XPx6Px79dLpe/FotFvyaTyb8Wi0W/XS6Xvx6Px78mk8m/Ho/Hv10ulz/4+51AXS6XP10uV0Amk8k/+PudQCaTyT9dLldA8Pf7P5PJhEBZLFZBRqPRPlksVkECBVVAv9/PQEaj0T6/389AAgVVQFksVkHes9Y+WSxWQUT17T+/389A3rPWPr/fz0BE9e0/z2sIQL/f70DPawhAWSxmQc9rCMC/3+9Az2sIwFksZkEmk0k/ZTKZPyaTST8qlUpAI5NJvmUymT8jk0m+LpcLQNKTNMAqlUpAfpQfwC6XC0BdLpc/LpcLQF0ul78ulwtAXS6XP2UymT9dLpe/ZTKZP10ul7/8KL+/XS6XP/wov79dLpe/N5tNP10ulz83m00/XS6Xvx5QgEFdLpe/Uof9QF0ulz8eUIBB8IgOv1KH/UBdLpc/Uof9QF0ulz8Coow+XS6XvwKijD5dLpc/Ho/Hv10ul78ej8e/XS6XP71eX8FdLpc/IpHowF0ul7+9Xl/BXS6XvyKR6MBdLpc/5oQNQV0ulz/I5ntBXS6Xv+aEDUFdLpe/yOZ7QV0ul7+LxcLAXS6Xv71eX8FdLpc/i8XCwF0ulz+9Xl/B3m6HwRq0oT6LxWLBGrShPt5uh8GKLvU+i8ViwYou9T7ebodBfD9gP4vFYkF8P2A/3m6HQUSCNj+LxWJBRII2P4vFYkEAqiS93m6HQQCqJL2LxWJBwJT7Pd5uh0HAlPs93m6HwdDhK77ebofBWGupvovFYsHQ4Su+i8ViwVhrqb6LxWLBfD9gP95uh8F8P2A/i8ViwUSCNj/ebofBRII2P95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HwQCqJL2LxWLBAKokvd5uh8HAlPs9i8ViwcCU+z3ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vovFYsGKLvU+3m6HwYou9T6LxWLBGrShPt5uh8EatKE+3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebofBKC+/vt5uh8HMVAm/i8ViwSgvv76LxWLBzFQJv4vFYkGI6SM/3m6HQYjpIz+LxWJBONhyP95uh0E42HI/i8ViwcCU+z3ebofBwJT7PYvFYsEAqiS93m6HwQCqJL3ebodBwJT7PYvFYkHAlPs93m6HQQCqJL2LxWJBAKokvYvFYkFEgjY/3m6HQUSCNj+LxWJBfD9gP95uh0F8P2A/i8ViwQEwDT/ebofBATANP4vFYsFEBXk+3m6HwUQFeT7ebofB0OErvt5uh8FYa6m+i8ViwdDhK76LxWLBWGupvt5uh8FEgjY/i8ViwUSCNj/ebofBfD9gP4vFYsF8P2A/3m6HQYou9T6LxWJBii71Pt5uh0EatKE+i8ViQRq0oT7ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vt5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/i8ViQRq0oT7ebodBGrShPovFYkGKLvU+3m6HQYou9T6LxWLBUC1IPt5uh8FQLUg+i8ViweAa573ebofB4Brnvd5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/3m6HwSgvv77ebofBzFQJv4vFYsEoL7++i8ViwcxUCb+LxWLBONhyP95uh8E42HI/i8ViwYjpIz/ebofBiOkjP95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebodBATANP4vFYkEBMA0/3m6HQUQFeT6LxWJBRAV5Pt5uh0E42HI/i8ViQTjYcj/ebodBiOkjP4vFYkGI6SM/3m6HwYjpIz+LxWLBiOkjP95uh8E42HI/i8ViwTjYcj9dLpe/CIPBvvD3+78Ig8G+XS6Xv+jz+b/w9/u/6PP5v/D3+z9MJhO/8Pf7PyqVqkBdLpc/TCYTv10ulz8qlapA8Pf7v8j3EEHw9/u/UaXjQPD3+z/I9xBB8Pf7P1Gl40DebofB4BrnvYvFYsHgGue93m6HwVAtSD6LxWLBUC1IPt5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+3m6HwQR40L7ebofBsio3v4vFYsEEeNC+i8ViwbIqN7/ebofBsP2Zvt5uh8GI7Ru/i8ViwbD9mb6LxWLBiO0bv95uh8Gw/Zm+3m6HwYjtG7+LxWLBsP2ZvovFYsGI7Ru/3m6HwUQFeT6LxWLBRAV5Pt5uh8EBMA0/i8ViwQEwDT/I9wDBCIPBvsj3AMGIw2HAUaXDwAiDwb5RpcPAiMNhwPD3+z8Ig8G+XS6XPwiDwb7w9/s/6PP5v10ulz/o8/m/KpWKQAiDwb7w93tAHo/HvyqVikDo8/m/JpPJv+jz+b9dLhdAHo/Hv10uF0AWi0W/8Pd7QBaLRb8mk8m/CIPBvt5uh8EEeNC+3m6HwbIqN7+LxWLBBHjQvovFYsGyKje/yPcAQYjDYcDI9wBBCIPBvlGlw0CIw2HAUaXDQAiDwb7w9/u/KpWqQPD3+79MJhO/XS6XvyqVqkBdLpe/TCYTv10ul78Ig8G+8Pf7vwiDwb5dLpe/6PP5v/D3+7/o8/m/XS6XPyqVqkBdLpc/TCYTv/D3+z8qlapA8Pf7P0wmE7/w93vAHo/Hv/D3e8AWi0W/KpWKwAiDwb4mk8k/CIPBvl0uF8AWi0W/JpPJP+jz+b8qlYrA6PP5v10uF8Aej8e/8Pf7PwiDwb5dLpc/CIPBvvD3+z/o8/m/XS6XP+jz+b9dLpe/TCYTv10ul78qlapA8Pf7v0wmE7/w9/u/KpWqQN5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+i8ViQUQFeT7ebodBRAV5PovFYkEBMA0/3m6HQQEwDT/ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0GI7Ru/3m6HQbD9mb6LxWJBiO0bv4vFYkGw/Zm+3m6HQbIqN7/ebodBBHjQvovFYkGyKje/i8ViQQR40L7ebodBsio3v95uh0EEeNC+i8ViQbIqN7+LxWJBBHjQvovFYkHgGue93m6HQeAa572LxWJBUC1IPt5uh0FQLUg+3m6HQYjtG7/ebodBsP2ZvovFYkGI7Ru/i8ViQbD9mb7ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0FQLUg+i8ViQVAtSD7ebodB4BrnvYvFYkHgGue9XS4XPwA/sL9dLhe/AD+wv10uFz9M+mTAXS4Xv0z6ZMBdLhc/OBqkvl0uF784GqS+XS4XPxNeIcBdLhe/E14hwL1eb8CIw2HAwmAwwL/fr8BX8SjAiMNhwFlyCcDCYJDAj8ejQL/fr8BbUJBAwmCQwNoPoECIw2HAjUbDQIjDYcBdLhc/FAlQv10uF78UCVC/XS4XP1bf9L9dLhe/Vt/0v10uF7/CYHBAXS4Xv4/Hg8BdLhc/wmBwQF0uFz+Px4PAvV5vQIjDYcBX8ShAiMNhwMJgMEC/36/AWXIJQMJgkMCPx6PAv9+vwFtQkMDCYJDA2g+gwIjDYcCNRsPAiMNhwF0uFz+2oGDAXS4XP1lySUBdLhe/tqBgwF0uF79ZcklAXS4XP/w8779dLhe//Dzvv10uFz/kCz7AXS4Xv+QLPsBdLpc/D4sBQV0ul78PiwFBXS6XPx2TfEBdLpe/HZN8QF0ulz/WLDpAXS6Xv9YsOkBdLpc/HI3vP10ul78cje8/XS6XP4t2FUFdLpe/i3YVQV0ulz9+dEdAXS6Xv350R0DwiA4/fnRHQF0ulz+KROLAXS6XPyKRSMBdLpe/ikTiwF0ul78ikUjAKpUKQGUymT/CYDBAZTKZP41Gw0BlMpk/kUiEQI1G40BFIgFBjUbjQCqVCsBlMpk/jUbDwGUymT+RSITAjUbjQEUiAcGNRuNAAACgKGDQSz05hyW+QErpPDmHJT5ASuk8UuOfPsDrCr1S45++wOsKvaEd4r7wXQi+oR3iPvBdCL6Qdwo/SGmGvpB3Cr9IaYa+n3AaP/yI076fcBq//IjTvlLjHz9MJhO/UuMfv0wmE7+fcBq/Gog8v59wGj8aiDy/kHcKv/YXY7+Qdwo/9hdjv6Ed4r6OGoK/oR3iPo4agr9S458+7s6Ov1Ljn77uzo6/OYclvnbLlr85hyU+dsuWvwAAoCjQhJm/8Pf7P1ksZkHw9/s/v9/vQCaTSUBZLGZBJpNJQL/f70DPawhALBaLQM9rCMAsFotAJpNJQAIFVUAmk0nAAgVVQPD3+z8qlUpAJpNJQEaj0T7w9/s/RqPRPvD3+78qlUpAJpNJwEaj0T7w9/u/RqPRPs9rCMAsFotAJpNJwAIFVUDPawhALBaLQCaTSUACBVVA8Pf7PyqVSkAmk0lARqPRPvD3+z9Go9E+8Pf7vyqVSkAmk0nARqPRPvD3+79Go9E+JpNJwFksZkEmk0nAv9/vQPD3+79ZLGZB8Pf7v7/f70CLxeLAZTKZP5FIBMEej8e/i8XiwL1eL8C9Xm/BvV4vwL1eb8Eej8e/kUgEwQKijD69Xm/BKpVKQL1eb8HaVPk/i8XiQL1eL8CRSARBAqKMPovF4kBlMpk/vV5vQSqVSkC9Xm9B2lT5P5FIBEEej8e/vV5vQb1eL8C9Xm9BHo/Hv/D3+z9lMpk/XS6XP2UymT/w9/s/iMNhwF0ulz+9Xi/AXS6Xv71eL8Dw9/u/iMNhwPD3+79lMpk/XS6Xv2UymT/HomxAHo/Hv8eibEAWi0W/Q0s0QB6Px79DSzRAFotFv0NLNMAej8e/fOf3vx6Px79DSzTAFotFv3zn978Wi0W/8Pf7vyqVSkBozVU/Nk6FPvD3+z8qlUpAO+2CPwACgTycB5I/+MiJvvD3+z+LxSLAXS4XP1Jo5T6ig5w+7OgQPwAAoChtNhs/XS6XP0wmE7+cB5I/Hmhhvzvtgj9UKpW/aM1VP9p5tL9dLhc/YIDMv6KDnD7Cmtu/AACgKITB4L+ig5y+7OgQP/D3+7+LxSLAooOcvsKa279dLhe/YIDMv2jNVb/aebS/O+2Cv1Qqlb+cB5K/Hmhhv10ul79MJhO/nAeSv/jIib477YK/AAKBPGjNVb82ToU+XS4Xv1Jo5T5dLhe/QSBQQfD3+78MBmNB8Pf7PwwGY0FdLhc/QSBQQV0uFz+pVCpBXS4Xv6lUKkHw9/u/i8XCwF0uF79er5dAXS4XP16vl0BdLhc/V/FoQF0uFz/aD4DAXS4XP41Go8BdLhe/jUajwPD3+z+LxcLAXS4Xv1fxaEBdLhe/2g+AwPD3+z8qlUpAXS6XPyqVSkDw9/s/ZTKZP10ulz9lMpk/8Pf7P1ksZkHw9/s/i8VyQfD3+79ZLGZB8Pf7v4vFckGLxWJBi8UiwIvFYkEqlUpADAZTQYjDYcBZLFZBRqPRPr/fz0BGo9E+JpNJPyqVSkC/389AKpVKQCqVikAIg8G+KpWKQOjz+b+LxeLAiMNhwCaTyb/o8/m/JpPJvwiDwb4mk0k/ZTKZP4vF4sBlMpk/WSxWQSqVSkDw9/s/ikMIQfD3+7+KQwhB8Pf7P0r840Dw9/u/SvzjQF0ulz+LxcLAXS6XP41Go8DwiA4/i8XCwPCIDj+NRqPAXS6Xv4vFwsBdLpe/jUajwF0ul7+EweC/XS6Xv1Qqlb9dLpe/N5tNP10ulz83m00/XS6XP1Qqlb/w9/u/i8XCwF0ul7+TyeQ/8Pf7v5PJ5D/w9/s/k8nkP/D3+z+LxcLAXS6XP5PJ5D9DSzRAHo/Hv0NLNEAWi0W/fOf3Px6Px7985/c/FotFv8eibMAej8e/Q0s0wB6Px7/HomzAFotFv0NLNMAWi0W/8Pf7P5PJ5D/w9/s/v9/vQF0ulz/GYjFAXS6Xv8ZiMUBdLpe/W63WQF0ulz9brdZA8Pf7v7/f70Dw9/u/k8nkP7/fz8AqlUpAv9/PwEaj0T4mk0m/KpVKQCqVisAIg8G+KpWKwOjz+b8mk0m/ZTKZPyaTyT8Ig8G+i8XiQGUymT+LxeJAiMNhwCaTyT/o8/m/WSxWwUaj0T4MBlPBiMNhwIvFYsGLxSLAWSxWwSqVSkCLxWLBKpVKQF0ul78qlUpA8Pf7vyqVSkBdLpe/ZTKZP/D3+79lMpk/8Pf7P/T5fEDw9/u/9Pl8QPD3+z+Iw2HA8Pf7v4jDYcC9Xm/BiMNhwL1eb8H0+XxA3m6HwYjDYcDebofB9Pl8QL1eb0H0+XxAvV5vQYjDYcDebodB9Pl8QN5uh0GIw2HA8Pf7v71eX8Hw9/u/vN1+wfD3+z+9Xl/B8Pf7P7zdfsHw9/s/vN1+wfD3+z+9Xl/B8Pf7v7zdfsHw9/u/vV5fwfD3+7/0+XxAXS6XPyqVSkDw9/s/9Pl8QPD3+z+Iw2HAXS6XP9pU+T9dLpc/Ho/Hv10ul7/aVPk/XS6XP71eL8BdLpe/vV4vwF0ul78qlUpA8Pf7v4jDYcBdLpe/Ho/Hv8j3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+yPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HA"), -"format": 34359742487, -"index_count": 594, -"index_data": PackedByteArray("lQCTAJQAlACWAJUAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoQCfAKAAoACiAKEApQCjAKQApACmAKUAqQCnAKgAqACqAKkArQCrAKwArACuAK0AsQCvALAAsACyALEAtQCzALQAtAC2ALUAuQC3ALgAuAC6ALkAvQC7ALwAvAC+AL0AwQC/AMAAwADCAMEAxQDDAMQAxADGAMUAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0A0QDPANAA0ADSANEA1QDTANQA1ADWANUA2QDXANgA2ADaANkA3QDbANwA3ADeAN0A4QDfAOAA4ADiAOEA5QDjAOQA5ADmAOUA6QDnAOgA6ADqAOkA7QDrAOwA7ADuAO0A8QDvAPAA8ADyAPEA9QDzAPQA9AD2APUA+QD3APgA+AD6APkA/QD7APwA/AD+AP0AAQH/AAABAAECAQEBBQEDAQQBBAEGAQUBCQEHAQgBCAEKAQkBDQELAQwBDAEOAQ0BEQEPARABEAESAREBFQETARQBFAEWARUBGQEXARgBGAEaARkBHQEbARwBHAEeAR0BIQEfASABIAEiASEBJQEjASQBJAEmASUBKQEnASgBKAEqASkBLQErASwBLAEuAS0BMQEvATABMAEyATEBNQEzATQBNAE2ATUBOQE3ATgBOAE6ATkBPQE7ATwBPAE+AT0BPAE/AT4BPwFAAT4BQQE8ATsBOwFCAUEBQgFAAUEBQgE+AUABRQFDAUQBRAFGAUUBSQFHAUgBSAFKAUkBTQFLAUwBTAFOAU0BUQFPAVABUAFSAVEBVQFTAVQBVAFWAVUBWQFXAVgBWAFaAVkBWAFbAVoBWwFcAVoBXQFcAVcBVwFZAV0BXAFeAVcBXAFbAV4BYQFfAWABYAFiAWEBZQFjAWQBZAFmAWUBaQFnAWgBaAFqAWkBbQFrAWwBbAFuAW0BcQFvAXABcAFyAXEBdQFzAXQBdAF2AXUBeQF3AXgBeAF6AXkBfQF7AXwBfAF+AX0BgQF/AYABgAGCAYEBhQGDAYQBhAGGAYUBiQGHAYgBiAGKAYkBjQGLAYwBjAGOAY0BkQGPAZABkAGSAZEBlQGTAZQBlAGWAZUBmQGXAZgBmAGaAZkBmAGbAZoBmwGcAZoBmwGdAZwBmwGeAZ0BoQGfAaABoAGiAaEBpQGjAaQBpAGmAaUBqQGnAagBqAGqAakBqgGrAakBqgGsAasBrAGtAasBrQGuAasBsQGvAbABsAGyAbEBtQGzAbQBtAG2AbUBuQG3AbgBuAG6AbkBvQG7AbwBvAG+Ab0BwQG/AcABwAHCAcEBwgHDAcEBxgHEAcUBxQHHAcYBCADIAckByQEHAAgAyQHKAQcAygHLAQcAygHMAcsBzgHNAXUAdQB0AM4BdADPAc4BzwHQAc4B0wHRAdIB0gHUAdMB0gHVAdQB1QHWAdQB1gHXAdQB1gHYAdcB1gHZAdgB2QHaAdgB2QHbAdoB2wHcAdoB2wHdAdwB3QHeAdwB3gHfAdwB3gHgAd8B4AHhAd8B4AHiAeEB4gHjAeEB4gHkAeMB4gHlAeQB5QHmAeQB5gHnAeQB5gHoAecB"), -"material": SubResource("StandardMaterial3D_w3uta"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PK1HYb0K16M8kML1PK1HYb35xZK9kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vDMzM77rUTg9kML1PDMzM77rUTg9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+kML1PDMzM75cj8I9kML1PK1HYb3rUTg9kML1PDMzM77rUTg9CtcjvDMzMz72KJw+CtcjvDMzMz7NzIw+CtcjPDMzMz72KJw+CtcjPDMzMz7NzIw+kMJ1PB+F6z32KJw+CtcjPDMzMz72KJw+kMJ1PB+F6z1H4Xo+CtcjPDMzMz7NzIw+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kML1vK1HYb3rUTg9kML1vDMzM75cj8I9kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1vJqZGb7hehQ+kML1PDMzM75cj8I9kML1PJqZGb7hehQ+CtcjvDMzMz72KJw+kMJ1vB+F6z32KJw+CtcjvDMzMz7NzIw+kMJ1vB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+kMJ1PB+F6z1H4Xo+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kML1PJqZGb7hehQ+kML1vJqZGb7hehQ+kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT2QwnU9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9kML1vLgehT2QwnU9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+CtejPQc/cr3C9Sg+CtejPQc/cr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9CtcjvetROD2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vOtROD3NzMw9CtcjvetROD3NzMw9kML1vLgehT3NzMw9CtcjvbgehT3NzMw9CtcjPetROD3NzMw9kML1POtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1POtROD2QwnU9CtcjPetROD2QwnU9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT3NzMw9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+CtejvQc/cr17FK4+JMRdvXsUrr17FK4+CtejvQc/cr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr17FK4+JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+kML1vArXo7sK16M8kML1vK1HYb0K16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vK1HYb35xZK9kML1vI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vAvXo7sH16O7kML1PAvXo7sH16O7kML1vI7C9bzotIG9kML1PI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1vLgehT09Cle+kML1PLgehT1cj8K+kML1PLgehT09Cle+kML1vHLsljw9Cle+kML1vIQ8xbxcj8K+kML1PHLsljw9Cle+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+cMk3vFzJ6zz2KNw+cMk3vFzJ6zzrUbg++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+jxdhPMxZAz32KNw+cMk3PFzJ6zz2KNw+jxdhPMxZAz3rUbg+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBvO4cXD3rUbg++vQBvO4cXD32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+jxdhvElURD32KNw+cMk3vGbJUT32KNw+jxdhvElURD3rUbg+cMk3vGbJUT3rUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg++vSBPArXIz32KNw+uw57PLcFEz32KNw++vSBPArXIz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw++vSBvArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz3rUbg+uw57vFyoND3rUbg+jxdhvMxZAz32KNw+uw57vLcFEz32KNw+jxdhvMxZAz3rUbg+uw57vLcFEz3rUbg+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+jxdhPElURD32KNw+uw57PFyoND32KNw+jxdhPElURD3rUbg+uw57PFyoND3rUbg+cMk3PGbJUT32KNw+jxdhPElURD32KNw+cMk3PGbJUT3rUbg+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT0K1yO9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+UMetPLK6ej32KNw+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+nNXUPK1HYT32KNw+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+nNXUPM3MzDz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+zcxMPSlcDz10plE+zcxMPR+F6z10plE+zcxMPSlcDz1YBR8+zcxMPR+F6z1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9kML1vClcDz2tR+E9kML1vLgehT3NzMw9kML1vJqZmT2tR+E9kML1vJqZmT0K1yO9kML1vLgehT2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vClcDz0K1yO9kML1PArXIz32KNw+y2LtPMikQz32KNw+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+zcxMvR+F6z10plE+zcxMvSlcDz10plE+zcxMvR+F6z1YBR8+zcxMvSlcDz1YBR8+zcxMvSlcDz2tR+E9zcxMvSlcDz0K1yO9kML1vClcDz2tR+E9kML1vClcDz0K1yO9kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz2tR+E9zcxMPSlcDz0K1yO9kML1PLgehT3NzMw9kML1POtROD3NzMw9kML1PClcDz2tR+E9kML1PClcDz0K1yO9kML1POtROD2QwnU9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9kML1PLgehT2QwnU9zcxMPSlcDz0K1yO9kML1PClcDz0K1yO9zcxMPZqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9zcxMPZqZmT0K1yO9zcxMPZqZmT2tR+E9UMetPMXmmTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTzrUbg+nNXUPM3MzDzrUbg+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+nNXUvM3MzDz2KNw+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+kML1vArXIz32KNw+y2LtvEwJBD32KNw+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+y2LtvMikQz32KNw+kML1vArXIz32KNw+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+UMetvMXmmTzrUbg+UMetvMXmmTz2KNw+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvK1HYT32KNw+y2LtvMikQz32KNw+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+UMetvLK6ej32KNw+nNXUvK1HYT32KNw+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PML1KD64HgW+kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1PClcDz6+mOq9kMJ1vClcDz6+mOq9kMJ1vML1KD4pXI89kMJ1vML1KD64HgW+kMJ1PML1KD4pXI89kMJ1PML1KD64HgW+kMJ1vB+F6z1cj8I9kMJ1vB+F6z0QUYk9kMJ1vML1KD4pXI89kMJ1vClcDz7tbl89kMJ1vML1KD64HgW+kMJ1vClcDz6+mOq9kMJ1vB+F6z0sGQK+kMJ1vB+F6z1SuB6+kMJ1vClcDz6+mOq9kMJ1vClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PClcDz7tbl89kMJ1vB+F6z0QUYk9kMJ1PB+F6z0QUYk9kMJ1vClcDz7tbl89kMJ1PClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PK1HYb35xZK9kML1vK1HYb35xZK9kML1PI7C9bzotIG9kML1vI7C9bzotIG9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1vFK4Hr6G61G+kML1vFK4Hr49Cte9kML1PFK4Hr6G61G+kML1PFK4Hr49Cte9kML1PArXo7utR2G9kML1PArXo7spXI+9kML1PArXo7tSuB6+kML1PFK4Hr49Cte9kML1PFK4Hr6G61G+kML1vArXo7utR2G9kML1vArXo7tSuB6+kML1vFK4Hr49Cte9kML1vFK4Hr6G61G+SgwCJhq5xTzrUbg+lYqGu7cmyjzrUbg+lYqGO7cmyjzrUbg++vQBPEwi1zzrUbg++vQBvEwi1zzrUbg+cMk3vFzJ6zzrUbg+cMk3PFzJ6zzrUbg+jxdhPMxZAz3rUbg+jxdhvMxZAz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz3rUbg++vSBPArXIz3rUbg++vSBvArXIz3rUbg+uw57vFyoND3rUbg+uw57PFyoND3rUbg+jxdhvElURD3rUbg+jxdhPElURD3rUbg+cMk3vGbJUT3rUbg+cMk3PGbJUT3rUbg++vQBPO4cXD3rUbg++vQBvO4cXD3rUbg+lYqGu7maYj3rUbg+lYqGO7maYj3rUbg+SgwCJojRZD3rUbg+zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+CtejPZDCdTx7FK4+CtejPZDCdTzC9Sg+JMRdPXsUrr17FK4+JMRdvXsUrr17FK4+CtejPQc/cr17FK4+CtejvQc/cr17FK4+zcxMPa1HYb17FK4+CtejPZDCdTx7FK4+zcxMPZDCdTx7FK4+zcxMva1HYb17FK4+CtejvZDCdTx7FK4+zcxMvZDCdTx7FK4+JMRdPXsUrr3C9Sg+CtejPQc/cr3C9Sg+JMRdvXsUrr3C9Sg+CtejvQc/cr3C9Sg+zcxMva1HYb3C9Sg+CtejvZDCdTzC9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+CtejPZDCdTzC9Sg+zcxMPZDCdTzC9Sg+CtejvZDCdTx7FK4+CtejvZDCdTzC9Sg+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+kML1vArXo7vrUTi+kML1vLgehT09Cle+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1vLgehT1cj8K+kML1vHLsljw9Cle+kML1vK1HYb1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj3rUTi+kML1PHLsljw9Cle+kML1PArXo7vrUTi+kML1PK1HYb1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT09Cle+kML1PFyPwj1cj8K+kML1PLgehT1cj8K+zcxMvQrXo7vrUTi+kML1vArXo7vrUTi+zcxMvR+F6z3rUTi+kML1vFyPwj3rUTi+kML1PFyPwj3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+kML1PArXo7vrUTi+zcxMvbgehT0K16M9zcxMvetROD0K16M9CtcjvbgehT2QwnU9CtcjvetROD2QwnU9CtcjPbgehT3NzMw9zcxMPbgehT0K16M9CtcjPetROD3NzMw9zcxMPetROD0K16M9zcxMva1HYb3rUbg+UMetPMXmmTzrUbg+zcxMPa1HYb3rUbg+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+zcxMPetRuD3rUbg+kMJ1PPGwZTzrUbg+8W3+O5CWNDzrUbg+SgwCJgrXIzzrUbg+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+kMJ1POwghz3rUbg+8W3+OzhEjT3rUbg+SgwCJilcjz3rUbg+8W3+u5CWNDzrUbg+zcxMvetRuD3rUbg+8W3+uzhEjT3rUbg+kMJ1vOwghz3rUbg+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+kMJ1vPGwZTzrUbg+kMJ1vB+F6z32KJw+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+kMJ1PB+F6z32KJw+kMJ1PB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+zcxMvR+F6z3rUTi+kMJ1vB+F6z1cj8I9kMJ1PB+F6z1cj8I9kMJ1PB+F6z0QUYk9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1vB+F6z1SuB6+zcxMPR+F6z3rUTi+kMJ1vB+F6z0QUYk9kMJ1vB+F6z0sGQK+zcxMva1HYb0K16M8kML1vK1HYb0K16M8zcxMvQrXo7sK16M8kML1vArXo7sK16M8zcxMva1HYb17FK4+zcxMva1HYb3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+zcxMvetRuD3rUbg+zcxMva1HYb3rUbg+zcxMvR+F6z0fhas+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+zcxMvSlcDz2tR+E9zcxMvZqZmT2tR+E9zcxMvR+F6z3rUTi+zcxMvZqZmT0K1yO9zcxMvSlcDz0K1yO9zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+zcxMva1HYb17FK4+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMPR+F6z0fhas+zcxMvR+F6z0fhas+kML1vArXo7vrUTi+kML1vArXo7tSuB6+a7RnvArXo7vrUTi+a7RnvArXo7tSuB6+kML1PArXo7vrUTi+kML1PArXo7tSuB6+kML1PArXo7spXI+9kML1PArXo7utR2G9kML1PAvXo7sH16O7kML1vAvXo7sH16O7kML1vArXo7utR2G9zcxMPQrXo7vrUTi+kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+kML1vArXo7sK16M8CtcjvbgehT3NzMw9CtcjvetROD3NzMw9zcxMvbgehT0K16M9zcxMvetROD0K16M9zcxMPbgehT0K16M9CtcjPbgehT2QwnU9zcxMPetROD0K16M9CtcjPetROD2QwnU9zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+zcxMPa1HYb3C9Sg+zcxMPa1HYb0K16M8zcxMPa1HYb3C9Sg+zcxMPZDCdTzC9Sg+zcxMPa1HYb0K16M8zcxMPSlcDz2tR+E9zcxMPZqZmT2tR+E9zcxMPQrXo7sK16M8zcxMPSlcDz0K1yO9zcxMPQrXo7vrUTi+zcxMPR+F6z3rUTi+zcxMPZqZmT0K1yO9zcxMPZDCdTx7FK4+zcxMPR+F6z0fhas+zcxMPetRuD3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+kML1PK1HYb0K16M8zcxMPa1HYb0K16M8kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMvR+F6z32KNy+zcxMvZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+zcxMPZqZmb32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvR+F6z32KNy+zcxMPR+F6z1cj8K+zcxMPR+F6z32KNy+zcxMvZqZmb32KNy+zcxMvZqZmb1cj8K+zcxMPZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMvZqZmb1cj8K+kML1PK1HYb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj1cj8K+kML1vFyPwj1cj8K+kML1vK1HYb1cj8K+zcxMvR+F6z1cj8K+kML1vLgehT1cj8K+SgwCJgrXIzz2KNw+8W3+u5CWNDz2KNw+8W3+O5CWNDz2KNw+kMJ1PPGwZTz2KNw+8W3+O5CWNDz2KNw+8W3+u5CWNDz2KNw+kMJ1vPGwZTz2KNw+kMJ1PPGwZTz2KNw+8W3+u5CWNDz2KNw+UMetPMXmmTz2KNw+kMJ1PPGwZTz2KNw+kMJ1vPGwZTz2KNw+UMetvMXmmTz2KNw+UMetPMXmmTz2KNw+kMJ1vPGwZTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTz2KNw+UMetvMXmmTz2KNw+SgwCJhq5xTz2KNw+nNXUPM3MzDz2KNw+UMetvMXmmTz2KNw+lYqGO7cmyjz2KNw+nNXUPM3MzDz2KNw+SgwCJhq5xTz2KNw++vQBPEwi1zz2KNw+lYqGO7cmyjz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDz2KNw++vQBPEwi1zz2KNw+cMk3PFzJ6zz2KNw+y2LtPEwJBD32KNw++vQBPEwi1zz2KNw+jxdhPMxZAz32KNw+y2LtPEwJBD32KNw+cMk3PFzJ6zz2KNw+uw57PLcFEz32KNw+y2LtPEwJBD32KNw+jxdhPMxZAz32KNw+kML1PArXIz32KNw+y2LtPEwJBD32KNw+uw57PLcFEz32KNw++vSBPArXIz32KNw+kML1PArXIz32KNw+uw57PLcFEz32KNw+y2LtPMikQz32KNw+kML1PArXIz32KNw++vSBPArXIz32KNw+uw57PFyoND32KNw+y2LtPMikQz32KNw++vSBPArXIz32KNw+jxdhPElURD32KNw+y2LtPMikQz32KNw+uw57PFyoND32KNw+nNXUPK1HYT32KNw+y2LtPMikQz32KNw+jxdhPElURD32KNw+cMk3PGbJUT32KNw+nNXUPK1HYT32KNw+jxdhPElURD32KNw++vQBPO4cXD32KNw+nNXUPK1HYT32KNw+cMk3PGbJUT32KNw+lYqGO7maYj32KNw+nNXUPK1HYT32KNw++vQBPO4cXD32KNw+UMetPLK6ej32KNw+nNXUPK1HYT32KNw+lYqGO7maYj32KNw+SgwCJojRZD32KNw+UMetPLK6ej32KNw+lYqGO7maYj32KNw+UMetvMXmmTz2KNw+nNXUvM3MzDz2KNw+SgwCJhq5xTz2KNw+lYqGu7cmyjz2KNw+SgwCJhq5xTz2KNw+nNXUvM3MzDz2KNw++vQBvEwi1zz2KNw+lYqGu7cmyjz2KNw+y2LtvEwJBD32KNw++vQBvEwi1zz2KNw+nNXUvM3MzDz2KNw+cMk3vFzJ6zz2KNw++vQBvEwi1zz2KNw+y2LtvEwJBD32KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zz2KNw+y2LtvEwJBD32KNw+uw57vLcFEz32KNw+jxdhvMxZAz32KNw+y2LtvEwJBD32KNw+kML1vArXIz32KNw+uw57vLcFEz32KNw+y2LtvEwJBD32KNw++vSBvArXIz32KNw+uw57vLcFEz32KNw+kML1vArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz32KNw+kML1vArXIz32KNw+y2LtvMikQz32KNw+uw57vFyoND32KNw+kML1vArXIz32KNw+jxdhvElURD32KNw+uw57vFyoND32KNw+y2LtvMikQz32KNw+nNXUvK1HYT32KNw+jxdhvElURD32KNw+y2LtvMikQz32KNw+cMk3vGbJUT32KNw+jxdhvElURD32KNw+nNXUvK1HYT32KNw++vQBvO4cXD32KNw+cMk3vGbJUT32KNw+nNXUvK1HYT32KNw+lYqGu7maYj32KNw++vQBvO4cXD32KNw+nNXUvK1HYT32KNw+UMetvLK6ej32KNw+lYqGu7maYj32KNw+nNXUvK1HYT32KNw+SgwCJojRZD32KNw+lYqGu7maYj32KNw+UMetvLK6ej32KNw+UMetPLK6ej32KNw+SgwCJojRZD32KNw+UMetvLK6ej32KNw+kMJ1POwghz32KNw+UMetPLK6ej32KNw+UMetvLK6ej32KNw+kMJ1vOwghz32KNw+kMJ1POwghz32KNw+UMetvLK6ej32KNw+8W3+OzhEjT32KNw+kMJ1POwghz32KNw+kMJ1vOwghz32KNw+8W3+uzhEjT32KNw+8W3+OzhEjT32KNw+kMJ1vOwghz32KNw+SgwCJilcjz32KNw+8W3+OzhEjT32KNw+8W3+uzhEjT32KNw+/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9///8AgP///3/+////////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAm9tiJAAAAgCb22IkAAACAJvbYiQAAAIAm9tiJAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgNgJ2IkAAACA2AnYiQAAAIDYCdiJAAAAgNgJ2IkAAACAVNX//wAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/f/9//7//////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+ZGQAAAID/f5kZAAAAgP9/mRkAAACA/3+ZGQAAAID/f5kZAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICZmf//AAAAgJmZ//8AAACAmZn//wAAAICZmf//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA2a4l0f/////ZriXR/////wyb8uT/////DJvy5P//////f////3//v/9/////f/+/8mTy5P9//7/yZPLk/3//vyVR2S7/f/+/JVHZLv9//7//P/8//3//v/8//z//f/+//7//v/////8l0dmu//////+//7//////JdHZrv////8Mmwwb/////wybDBv//////38AAP//////fwAA/////wwbDJv/f/+/2S7Zrv9//78MGwyb/3//v9ku2a7/f/+//7//v///////v/+//////9muJdH/////2a4l0f////8MG/Jk/3//vwAA/3//f/+/DBvyZP9//78AAP9//3//v9mu2S7/////2a7ZLv////8Mmwwb/////wybDBv/////2S7Zrv9//7//P/+//3//v9ku2a7/f/+//z//v/9//7/y5PJk/////yXRJVH/////8uTyZP////8l0SVR//////JkDBv/f/+/8mQMG/9//7//fwAA/3//v/9/AAD/f/+//7//P///////v/8//////9mu2S7/////2a7ZLv////8lUSXR/3//vyVRJdH/f/+//z//v/9//7//P/+//3//v/9/AAD/f/+//38AAP9//7/yZAwb/3//v/JkDBv/f/+/DJsMG/////8Mmwwb/////9mu2S7/////2a7ZLv////8l0SVR//////+//z//////JdElUf//////v/8//////wyb8uT/////DJvy5P//////f/////////9/////////8mTy5P9//7/yZPLk/3//vyVRJdH/f/+/JVEl0f9//78AAP9//3//vwwbDJv/f/+/AAD/f/9//78MGwyb/3//v/LkDJv/////////f//////y5Ayb/////////3//////8mQMG/9//7/yZAwb/3//vyVR2S7/f/+/JVHZLv9//7/Zrtku/////9mu2S7//////7//P///////v/8//////////3//////8uTyZP////////9///////Lk8mT/////JdHZrv/////y5Ayb/////yXR2a7/////8uQMm///////fwAA//////9/AAD/////DJsMG/////8Mmwwb/////9kuJVH/f/+/DBvyZP9//7/ZLiVR/3//vwwb8mT/f/+//z//P/9//7/ZLiVR/3//v/8//z//f/+/2S4lUf9//78lUSXR/3//vyVRJdH/f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//7//f////3//v/9/////f/+//3//////////f////////wyb8uT/////DJvy5P//////f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3///////7//f///////v/9///////+//3///////7/ZriXR/////9muJdH//////7//v///////v/+//////yXR2a7//////7//v/////8l0dmu//////+//7//////8uTyZP////////9///////Lk8mT/////////f//////y5Ayb/////yXR2a7/////8uQMm/////8l0dmu/////yXRJVH/////8uTyZP////8l0SVR//////Lk8mT/////DJvy5P////8Mm/Lk/////9muJdH/////2a4l0f////////9//////////3//////////f/////////9///////////8AAP+//////wAA/7//////AAD/v/////8AAP+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v////3//////8uQMm/////////9///////LkDJv/////AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f///////v/9///////+//3///////7//f///////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f///////v/9///////+//3///////7////9//v8AgP///3///wCA////f/7/AID///9//////////3//////////f/////////9//v8AgP///3///////3//f////7//f/9/////v/9//3////+//3//f////7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/+//z//////JdElUf//////v/8//////yXRJVH/////JVHZLv9//78lUdku/3//v/JkDBv/f/+/8mQMG/9//7/ZLiVR/3//v/8//z//f/+/2S4lUf9//7//P/8//3//vwwb8mT/f/+/2S4lUf9//78MG/Jk/3//v9kuJVH/f/+/AAD/f/9//78MG/Jk/3//vwAA/3//f/+/DBvyZP9//78MGwyb/3//vwAA/3//f/+/DBsMm/9//78AAP9//3//v/8//z//f/+//z//P/9//78lUdku/3//vyVR2S7/f/+/2S7Zrv9//78MGwyb/3//v9ku2a7/f/+/DBsMm/9//7//P/+//3//v9ku2a7/f/+//z//v/9//7/ZLtmu/3//v/8//7//f/+//z//v/9//78lUSXR/3//vyVRJdH/f/+//3+qqv///7//f6qq////v/9/qqr///+//3+qqv///79U1f//AAD/v1TV//8AAP+/VNX//wAA/79U1f//AAD/v////3//////////f///AID///9///8AgP///3///wCA////f/////////9//////////3//////////f///////f1RV////v/9/VFX///+//39UVf///7//f1RV////v/9///////+//3///////7//f///////v/9///////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/VNUAAAAA/79U1QAAAAD/v1TVAAAAAP+/VNUAAAAA/7//f/9f////v/9//1////+//3//X////7//f/9f////v/9//1////+//3//X////7//f/9f////v/9//1////+//9///wAA/7//3///AAD/v//f//8AAP+//9///wAA/7//3///////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/////f/////////9//////////3///wCA////f///AID///9//////wAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f/+/AAAAgP9//78AAACA/3//vwAAAID/f/+/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("XS6XP6Qn6b9dLpc/k8nkP10ul7+kJ+m/XS6Xv5PJ5D8mk0m/ZTKZPyOTST4ulwtAJpNJvyqVSkDSkzRAKpVKQH6UH0AulwtAI5NJPmUymT9dLhc/iMNhwF0uF7+Iw2HAJpPJPvJ4vMAmk8m+8ni8wF0ulz/GYjFAXS6XP16vl0BdLpe/xmIxQF0ul79er5dAXS6XP/J4/EBdLpe/8nj8QF0ulz8qlUpAXS6XvyqVSkBbrbbA9PncQFuttsAqlUpAvV5vwPJ4/ECLxeK/KpVKQIvF4r/yePxAJpPJvkEgUEEmk8m+dTo9QSaTyT5BIFBBJpPJPnU6PUFBIEDByJ9dwEEgQMElqrrAqVQawcifXcB1Oi3BJaq6wFuttkAqlUpAW622QPT53ECLxeI/KpVKQL1eb0DyePxAi8XiP/J4/EBdLpe/x2M8P10ul7+0g7u/XS6XP8djPD9dLpc/tIO7v0EgQEElqrrAQSBAQcifXcB1Oi1BJaq6wKlUGkHIn13AXS4XP7af68BdLhe/tp/rwCaTyT5/ESDBJpPJvn8RIMFdLpc/9PncQF0ul7/0+dxAXS6XPyqVSkBdLpe/KpVKQF0ul79dLldAXS6Xv/j7nUAmk8m/XS5XQCaTyb/4+51A8Pf7v5PJhEBZLFbBAgVVQFksVsFGo9E+v9/PwAIFVUC/38/ARqPRPiaTyT8Wi0W/XS6XPxaLRb8mk8k/Ho/Hv10ulz8ej8e/8Pf7v5PJhEAmk8m/XS5XQCaTyb/4+51AXS6Xv/j7nUBdLpe/XS5XQL/fz8BE9e0/WSxWwUT17T+/38/A3rPWPlksVsHes9Y+8Pf7P5PJhEAmk8k/+PudQCaTyT9dLldAXS6XP10uV0BdLpc/+PudQF0ul78Wi0W/JpPJvxaLRb9dLpe/Ho/HvyaTyb8ej8e/JpPJPxaLRb9dLpc/FotFvyaTyT8ej8e/XS6XPx6Px79dLpe/FotFvyaTyb8Wi0W/XS6Xvx6Px78mk8m/Ho/Hv10ulz/4+51AXS6XP10uV0Amk8k/+PudQCaTyT9dLldA8Pf7P5PJhEBZLFZBRqPRPlksVkECBVVAv9/PQEaj0T6/389AAgVVQFksVkHes9Y+WSxWQUT17T+/389A3rPWPr/fz0BE9e0/z2sIQL/f70DPawhAWSxmQc9rCMC/3+9Az2sIwFksZkEmk0k/ZTKZPyaTST8qlUpAI5NJvmUymT8jk0m+LpcLQNKTNMAqlUpAfpQfwC6XC0BdLpc/LpcLQF0ul78ulwtAXS6XP2UymT9dLpe/ZTKZP10ul7/8KL+/XS6XP/wov79dLpe/N5tNP10ulz83m00/XS6Xvx5QgEFdLpe/Uof9QF0ulz8eUIBB8IgOv1KH/UBdLpc/Uof9QF0ulz8Coow+XS6XvwKijD5dLpc/Ho/Hv10ul78ej8e/XS6XP71eX8FdLpc/IpHowF0ul7+9Xl/BXS6XvyKR6MBdLpc/5oQNQV0ulz/I5ntBXS6Xv+aEDUFdLpe/yOZ7QV0ul7+LxcLAXS6Xv71eX8FdLpc/i8XCwF0ulz+9Xl/B3m6HwRq0oT6LxWLBGrShPt5uh8GKLvU+i8ViwYou9T7ebodBfD9gP4vFYkF8P2A/3m6HQUSCNj+LxWJBRII2P4vFYkEAqiS93m6HQQCqJL2LxWJBwJT7Pd5uh0HAlPs93m6HwdDhK77ebofBWGupvovFYsHQ4Su+i8ViwVhrqb6LxWLBfD9gP95uh8F8P2A/i8ViwUSCNj/ebofBRII2P95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HwQCqJL2LxWLBAKokvd5uh8HAlPs9i8ViwcCU+z3ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vovFYsGKLvU+3m6HwYou9T6LxWLBGrShPt5uh8EatKE+3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebofBKC+/vt5uh8HMVAm/i8ViwSgvv76LxWLBzFQJv4vFYkGI6SM/3m6HQYjpIz+LxWJBONhyP95uh0E42HI/i8ViwcCU+z3ebofBwJT7PYvFYsEAqiS93m6HwQCqJL3ebodBwJT7PYvFYkHAlPs93m6HQQCqJL2LxWJBAKokvYvFYkFEgjY/3m6HQUSCNj+LxWJBfD9gP95uh0F8P2A/i8ViwQEwDT/ebofBATANP4vFYsFEBXk+3m6HwUQFeT7ebofB0OErvt5uh8FYa6m+i8ViwdDhK76LxWLBWGupvt5uh8FEgjY/i8ViwUSCNj/ebofBfD9gP4vFYsF8P2A/3m6HQYou9T6LxWJBii71Pt5uh0EatKE+i8ViQRq0oT7ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vt5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/i8ViQRq0oT7ebodBGrShPovFYkGKLvU+3m6HQYou9T6LxWLBUC1IPt5uh8FQLUg+i8ViweAa573ebofB4Brnvd5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/3m6HwSgvv77ebofBzFQJv4vFYsEoL7++i8ViwcxUCb+LxWLBONhyP95uh8E42HI/i8ViwYjpIz/ebofBiOkjP95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebodBATANP4vFYkEBMA0/3m6HQUQFeT6LxWJBRAV5Pt5uh0E42HI/i8ViQTjYcj/ebodBiOkjP4vFYkGI6SM/3m6HwYjpIz+LxWLBiOkjP95uh8E42HI/i8ViwTjYcj9dLpe/CIPBvvD3+78Ig8G+XS6Xv+jz+b/w9/u/6PP5v/D3+z9MJhO/8Pf7PyqVqkBdLpc/TCYTv10ulz8qlapA8Pf7v8j3EEHw9/u/UaXjQPD3+z/I9xBB8Pf7P1Gl40DebofB4BrnvYvFYsHgGue93m6HwVAtSD6LxWLBUC1IPt5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+3m6HwQR40L7ebofBsio3v4vFYsEEeNC+i8ViwbIqN7/ebofBsP2Zvt5uh8GI7Ru/i8ViwbD9mb6LxWLBiO0bv95uh8Gw/Zm+3m6HwYjtG7+LxWLBsP2ZvovFYsGI7Ru/3m6HwUQFeT6LxWLBRAV5Pt5uh8EBMA0/i8ViwQEwDT/I9wDBCIPBvsj3AMGIw2HAUaXDwAiDwb5RpcPAiMNhwPD3+z8Ig8G+XS6XPwiDwb7w9/s/6PP5v10ulz/o8/m/KpWKQAiDwb7w93tAHo/HvyqVikDo8/m/JpPJv+jz+b9dLhdAHo/Hv10uF0AWi0W/8Pd7QBaLRb8mk8m/CIPBvt5uh8EEeNC+3m6HwbIqN7+LxWLBBHjQvovFYsGyKje/yPcAQYjDYcDI9wBBCIPBvlGlw0CIw2HAUaXDQAiDwb7w9/u/KpWqQPD3+79MJhO/XS6XvyqVqkBdLpe/TCYTv10ul78Ig8G+8Pf7vwiDwb5dLpe/6PP5v/D3+7/o8/m/XS6XPyqVqkBdLpc/TCYTv/D3+z8qlapA8Pf7P0wmE7/w93vAHo/Hv/D3e8AWi0W/KpWKwAiDwb4mk8k/CIPBvl0uF8AWi0W/JpPJP+jz+b8qlYrA6PP5v10uF8Aej8e/8Pf7PwiDwb5dLpc/CIPBvvD3+z/o8/m/XS6XP+jz+b9dLpe/TCYTv10ul78qlapA8Pf7v0wmE7/w9/u/KpWqQN5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+i8ViQUQFeT7ebodBRAV5PovFYkEBMA0/3m6HQQEwDT/ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0GI7Ru/3m6HQbD9mb6LxWJBiO0bv4vFYkGw/Zm+3m6HQbIqN7/ebodBBHjQvovFYkGyKje/i8ViQQR40L7ebodBsio3v95uh0EEeNC+i8ViQbIqN7+LxWJBBHjQvovFYkHgGue93m6HQeAa572LxWJBUC1IPt5uh0FQLUg+3m6HQYjtG7/ebodBsP2ZvovFYkGI7Ru/i8ViQbD9mb7ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0FQLUg+i8ViQVAtSD7ebodB4BrnvYvFYkHgGue9XS4XPwA/sL9dLhe/AD+wv10uFz9M+mTAXS4Xv0z6ZMBdLhc/OBqkvl0uF784GqS+XS4XPxNeIcBdLhe/E14hwL1eb8CIw2HAwmAwwL/fr8BX8SjAiMNhwFlyCcDCYJDAj8ejQL/fr8BbUJBAwmCQwNoPoECIw2HAjUbDQIjDYcBdLhc/FAlQv10uF78UCVC/XS4XP1bf9L9dLhe/Vt/0v10uF7/CYHBAXS4Xv4/Hg8BdLhc/wmBwQF0uFz+Px4PAvV5vQIjDYcBX8ShAiMNhwMJgMEC/36/AWXIJQMJgkMCPx6PAv9+vwFtQkMDCYJDA2g+gwIjDYcCNRsPAiMNhwF0uFz+2oGDAXS4XP1lySUBdLhe/tqBgwF0uF79ZcklAXS4XP/w8779dLhe//Dzvv10uFz/kCz7AXS4Xv+QLPsBdLpc/D4sBQV0ul78PiwFBXS6XPx2TfEBdLpe/HZN8QF0ulz/WLDpAXS6Xv9YsOkBdLpc/HI3vP10ul78cje8/XS6XP4t2FUFdLpe/i3YVQV0ulz9+dEdAXS6Xv350R0DwiA4/fnRHQF0ulz+KROLAXS6XPyKRSMBdLpe/ikTiwF0ul78ikUjAKpUKQGUymT/CYDBAZTKZP41Gw0BlMpk/kUiEQI1G40BFIgFBjUbjQCqVCsBlMpk/jUbDwGUymT+RSITAjUbjQEUiAcGNRuNAAACgKGDQSz05hyW+QErpPDmHJT5ASuk8UuOfPsDrCr1S45++wOsKvaEd4r7wXQi+oR3iPvBdCL6Qdwo/SGmGvpB3Cr9IaYa+n3AaP/yI076fcBq//IjTvlLjHz9MJhO/UuMfv0wmE7+fcBq/Gog8v59wGj8aiDy/kHcKv/YXY7+Qdwo/9hdjv6Ed4r6OGoK/oR3iPo4agr9S458+7s6Ov1Ljn77uzo6/OYclvnbLlr85hyU+dsuWvwAAoCjQhJm/8Pf7P1ksZkHw9/s/v9/vQCaTSUBZLGZBJpNJQL/f70DPawhALBaLQM9rCMAsFotAJpNJQAIFVUAmk0nAAgVVQPD3+z8qlUpAJpNJQEaj0T7w9/s/RqPRPvD3+78qlUpAJpNJwEaj0T7w9/u/RqPRPs9rCMAsFotAJpNJwAIFVUDPawhALBaLQCaTSUACBVVA8Pf7PyqVSkAmk0lARqPRPvD3+z9Go9E+8Pf7vyqVSkAmk0nARqPRPvD3+79Go9E+JpNJwFksZkEmk0nAv9/vQPD3+79ZLGZB8Pf7v7/f70CLxeLAZTKZP5FIBMEej8e/i8XiwL1eL8C9Xm/BvV4vwL1eb8Eej8e/kUgEwQKijD69Xm/BKpVKQL1eb8HaVPk/i8XiQL1eL8CRSARBAqKMPovF4kBlMpk/vV5vQSqVSkC9Xm9B2lT5P5FIBEEej8e/vV5vQb1eL8C9Xm9BHo/Hv/D3+z9lMpk/XS6XP2UymT/w9/s/iMNhwF0ulz+9Xi/AXS6Xv71eL8Dw9/u/iMNhwPD3+79lMpk/XS6Xv2UymT/HomxAHo/Hv8eibEAWi0W/Q0s0QB6Px79DSzRAFotFv0NLNMAej8e/fOf3vx6Px79DSzTAFotFv3zn978Wi0W/8Pf7vyqVSkBozVU/Nk6FPvD3+z8qlUpAO+2CPwACgTycB5I/+MiJvvD3+z+LxSLAXS4XP1Jo5T6ig5w+7OgQPwAAoChtNhs/XS6XP0wmE7+cB5I/Hmhhvzvtgj9UKpW/aM1VP9p5tL9dLhc/YIDMv6KDnD7Cmtu/AACgKITB4L+ig5y+7OgQP/D3+7+LxSLAooOcvsKa279dLhe/YIDMv2jNVb/aebS/O+2Cv1Qqlb+cB5K/Hmhhv10ul79MJhO/nAeSv/jIib477YK/AAKBPGjNVb82ToU+XS4Xv1Jo5T5dLhe/QSBQQfD3+78MBmNB8Pf7PwwGY0FdLhc/QSBQQV0uFz+pVCpBXS4Xv6lUKkHw9/u/i8XCwF0uF79er5dAXS4XP16vl0BdLhc/V/FoQF0uFz/aD4DAXS4XP41Go8BdLhe/jUajwPD3+z+LxcLAXS4Xv1fxaEBdLhe/2g+AwPD3+z8qlUpAXS6XPyqVSkDw9/s/ZTKZP10ulz9lMpk/8Pf7P1ksZkHw9/s/i8VyQfD3+79ZLGZB8Pf7v4vFckGLxWJBi8UiwIvFYkEqlUpADAZTQYjDYcBZLFZBRqPRPr/fz0BGo9E+JpNJPyqVSkC/389AKpVKQCqVikAIg8G+KpWKQOjz+b+LxeLAiMNhwCaTyb/o8/m/JpPJvwiDwb4mk0k/ZTKZP4vF4sBlMpk/WSxWQSqVSkDw9/s/ikMIQfD3+7+KQwhB8Pf7P0r840Dw9/u/SvzjQF0ulz+LxcLAXS6XP41Go8DwiA4/i8XCwPCIDj+NRqPAXS6Xv4vFwsBdLpe/jUajwF0ul7+EweC/XS6Xv1Qqlb9dLpe/N5tNP10ulz83m00/XS6XP1Qqlb/w9/u/i8XCwF0ul7+TyeQ/8Pf7v5PJ5D/w9/s/k8nkP/D3+z+LxcLAXS6XP5PJ5D9DSzRAHo/Hv0NLNEAWi0W/fOf3Px6Px7985/c/FotFv8eibMAej8e/Q0s0wB6Px7/HomzAFotFv0NLNMAWi0W/8Pf7P5PJ5D/w9/s/v9/vQF0ulz/GYjFAXS6Xv8ZiMUBdLpe/W63WQF0ulz9brdZA8Pf7v7/f70Dw9/u/k8nkP7/fz8AqlUpAv9/PwEaj0T4mk0m/KpVKQCqVisAIg8G+KpWKwOjz+b8mk0m/ZTKZPyaTyT8Ig8G+i8XiQGUymT+LxeJAiMNhwCaTyT/o8/m/WSxWwUaj0T4MBlPBiMNhwIvFYsGLxSLAWSxWwSqVSkCLxWLBKpVKQF0ul78qlUpA8Pf7vyqVSkBdLpe/ZTKZP/D3+79lMpk/8Pf7P/T5fEDw9/u/9Pl8QPD3+z+Iw2HA8Pf7v4jDYcC9Xm/BiMNhwL1eb8H0+XxA3m6HwYjDYcDebofB9Pl8QL1eb0H0+XxAvV5vQYjDYcDebodB9Pl8QN5uh0GIw2HA8Pf7v71eX8Hw9/u/vN1+wfD3+z+9Xl/B8Pf7P7zdfsHw9/s/vN1+wfD3+z+9Xl/B8Pf7v7zdfsHw9/u/vV5fwfD3+7/0+XxAXS6XPyqVSkDw9/s/9Pl8QPD3+z+Iw2HAXS6XP9pU+T9dLpc/Ho/Hv10ul7/aVPk/XS6XP71eL8BdLpe/vV4vwF0ul78qlUpA8Pf7v4jDYcBdLpe/Ho/Hv8j3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+yPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HA"), -"format": 34359742487, -"index_count": 96, -"index_data": PackedByteArray("6wHpAeoB6gHsAesB7wHtAe4B7gHwAe8B8AHxAe8B8QHyAe8B8QHzAfIB9AHxAfAB8AH1AfQB9QH2AfQB+QH3AfgB+AH6AfkB+AH7AfoB+wH8AfoB+wH9AfwB/gH7AfgB+AH/Af4B/wEAAv4BAwIBAgICAgIEAgMCBwIFAgYCBgIIAgcCBgIJAggCCgIGAgUCBQILAgoCCwIMAgoCDwINAg4CDgIQAg8CDgIRAhACEgIOAg0CDQITAhICEwIUAhIC"), -"material": SubResource("StandardMaterial3D_5qy60"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PK1HYb0K16M8kML1PK1HYb35xZK9kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vDMzM77rUTg9kML1PDMzM77rUTg9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+kML1PDMzM75cj8I9kML1PK1HYb3rUTg9kML1PDMzM77rUTg9CtcjvDMzMz72KJw+CtcjvDMzMz7NzIw+CtcjPDMzMz72KJw+CtcjPDMzMz7NzIw+kMJ1PB+F6z32KJw+CtcjPDMzMz72KJw+kMJ1PB+F6z1H4Xo+CtcjPDMzMz7NzIw+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kML1vK1HYb3rUTg9kML1vDMzM75cj8I9kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1vJqZGb7hehQ+kML1PDMzM75cj8I9kML1PJqZGb7hehQ+CtcjvDMzMz72KJw+kMJ1vB+F6z32KJw+CtcjvDMzMz7NzIw+kMJ1vB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+kMJ1PB+F6z1H4Xo+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kML1PJqZGb7hehQ+kML1vJqZGb7hehQ+kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT2QwnU9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9kML1vLgehT2QwnU9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+CtejPQc/cr3C9Sg+CtejPQc/cr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9CtcjvetROD2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vOtROD3NzMw9CtcjvetROD3NzMw9kML1vLgehT3NzMw9CtcjvbgehT3NzMw9CtcjPetROD3NzMw9kML1POtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1POtROD2QwnU9CtcjPetROD2QwnU9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT3NzMw9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+CtejvQc/cr17FK4+JMRdvXsUrr17FK4+CtejvQc/cr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr17FK4+JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+kML1vArXo7sK16M8kML1vK1HYb0K16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vK1HYb35xZK9kML1vI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vAvXo7sH16O7kML1PAvXo7sH16O7kML1vI7C9bzotIG9kML1PI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1vLgehT09Cle+kML1PLgehT1cj8K+kML1PLgehT09Cle+kML1vHLsljw9Cle+kML1vIQ8xbxcj8K+kML1PHLsljw9Cle+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+cMk3vFzJ6zz2KNw+cMk3vFzJ6zzrUbg++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+jxdhPMxZAz32KNw+cMk3PFzJ6zz2KNw+jxdhPMxZAz3rUbg+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBvO4cXD3rUbg++vQBvO4cXD32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+jxdhvElURD32KNw+cMk3vGbJUT32KNw+jxdhvElURD3rUbg+cMk3vGbJUT3rUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg++vSBPArXIz32KNw+uw57PLcFEz32KNw++vSBPArXIz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw++vSBvArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz3rUbg+uw57vFyoND3rUbg+jxdhvMxZAz32KNw+uw57vLcFEz32KNw+jxdhvMxZAz3rUbg+uw57vLcFEz3rUbg+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+jxdhPElURD32KNw+uw57PFyoND32KNw+jxdhPElURD3rUbg+uw57PFyoND3rUbg+cMk3PGbJUT32KNw+jxdhPElURD32KNw+cMk3PGbJUT3rUbg+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT0K1yO9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+UMetPLK6ej32KNw+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+nNXUPK1HYT32KNw+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+nNXUPM3MzDz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+zcxMPSlcDz10plE+zcxMPR+F6z10plE+zcxMPSlcDz1YBR8+zcxMPR+F6z1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9kML1vClcDz2tR+E9kML1vLgehT3NzMw9kML1vJqZmT2tR+E9kML1vJqZmT0K1yO9kML1vLgehT2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vClcDz0K1yO9kML1PArXIz32KNw+y2LtPMikQz32KNw+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+zcxMvR+F6z10plE+zcxMvSlcDz10plE+zcxMvR+F6z1YBR8+zcxMvSlcDz1YBR8+zcxMvSlcDz2tR+E9zcxMvSlcDz0K1yO9kML1vClcDz2tR+E9kML1vClcDz0K1yO9kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz2tR+E9zcxMPSlcDz0K1yO9kML1PLgehT3NzMw9kML1POtROD3NzMw9kML1PClcDz2tR+E9kML1PClcDz0K1yO9kML1POtROD2QwnU9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9kML1PLgehT2QwnU9zcxMPSlcDz0K1yO9kML1PClcDz0K1yO9zcxMPZqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9zcxMPZqZmT0K1yO9zcxMPZqZmT2tR+E9UMetPMXmmTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTzrUbg+nNXUPM3MzDzrUbg+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+nNXUvM3MzDz2KNw+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+kML1vArXIz32KNw+y2LtvEwJBD32KNw+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+y2LtvMikQz32KNw+kML1vArXIz32KNw+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+UMetvMXmmTzrUbg+UMetvMXmmTz2KNw+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvK1HYT32KNw+y2LtvMikQz32KNw+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+UMetvLK6ej32KNw+nNXUvK1HYT32KNw+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PML1KD64HgW+kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1PClcDz6+mOq9kMJ1vClcDz6+mOq9kMJ1vML1KD4pXI89kMJ1vML1KD64HgW+kMJ1PML1KD4pXI89kMJ1PML1KD64HgW+kMJ1vB+F6z1cj8I9kMJ1vB+F6z0QUYk9kMJ1vML1KD4pXI89kMJ1vClcDz7tbl89kMJ1vML1KD64HgW+kMJ1vClcDz6+mOq9kMJ1vB+F6z0sGQK+kMJ1vB+F6z1SuB6+kMJ1vClcDz6+mOq9kMJ1vClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PClcDz7tbl89kMJ1vB+F6z0QUYk9kMJ1PB+F6z0QUYk9kMJ1vClcDz7tbl89kMJ1PClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PK1HYb35xZK9kML1vK1HYb35xZK9kML1PI7C9bzotIG9kML1vI7C9bzotIG9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1vFK4Hr6G61G+kML1vFK4Hr49Cte9kML1PFK4Hr6G61G+kML1PFK4Hr49Cte9kML1PArXo7utR2G9kML1PArXo7spXI+9kML1PArXo7tSuB6+kML1PFK4Hr49Cte9kML1PFK4Hr6G61G+kML1vArXo7utR2G9kML1vArXo7tSuB6+kML1vFK4Hr49Cte9kML1vFK4Hr6G61G+SgwCJhq5xTzrUbg+lYqGu7cmyjzrUbg+lYqGO7cmyjzrUbg++vQBPEwi1zzrUbg++vQBvEwi1zzrUbg+cMk3vFzJ6zzrUbg+cMk3PFzJ6zzrUbg+jxdhPMxZAz3rUbg+jxdhvMxZAz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz3rUbg++vSBPArXIz3rUbg++vSBvArXIz3rUbg+uw57vFyoND3rUbg+uw57PFyoND3rUbg+jxdhvElURD3rUbg+jxdhPElURD3rUbg+cMk3vGbJUT3rUbg+cMk3PGbJUT3rUbg++vQBPO4cXD3rUbg++vQBvO4cXD3rUbg+lYqGu7maYj3rUbg+lYqGO7maYj3rUbg+SgwCJojRZD3rUbg+zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+CtejPZDCdTx7FK4+CtejPZDCdTzC9Sg+JMRdPXsUrr17FK4+JMRdvXsUrr17FK4+CtejPQc/cr17FK4+CtejvQc/cr17FK4+zcxMPa1HYb17FK4+CtejPZDCdTx7FK4+zcxMPZDCdTx7FK4+zcxMva1HYb17FK4+CtejvZDCdTx7FK4+zcxMvZDCdTx7FK4+JMRdPXsUrr3C9Sg+CtejPQc/cr3C9Sg+JMRdvXsUrr3C9Sg+CtejvQc/cr3C9Sg+zcxMva1HYb3C9Sg+CtejvZDCdTzC9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+CtejPZDCdTzC9Sg+zcxMPZDCdTzC9Sg+CtejvZDCdTx7FK4+CtejvZDCdTzC9Sg+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+kML1vArXo7vrUTi+kML1vLgehT09Cle+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1vLgehT1cj8K+kML1vHLsljw9Cle+kML1vK1HYb1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj3rUTi+kML1PHLsljw9Cle+kML1PArXo7vrUTi+kML1PK1HYb1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT09Cle+kML1PFyPwj1cj8K+kML1PLgehT1cj8K+zcxMvQrXo7vrUTi+kML1vArXo7vrUTi+zcxMvR+F6z3rUTi+kML1vFyPwj3rUTi+kML1PFyPwj3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+kML1PArXo7vrUTi+zcxMvbgehT0K16M9zcxMvetROD0K16M9CtcjvbgehT2QwnU9CtcjvetROD2QwnU9CtcjPbgehT3NzMw9zcxMPbgehT0K16M9CtcjPetROD3NzMw9zcxMPetROD0K16M9zcxMva1HYb3rUbg+UMetPMXmmTzrUbg+zcxMPa1HYb3rUbg+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+zcxMPetRuD3rUbg+kMJ1PPGwZTzrUbg+8W3+O5CWNDzrUbg+SgwCJgrXIzzrUbg+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+kMJ1POwghz3rUbg+8W3+OzhEjT3rUbg+SgwCJilcjz3rUbg+8W3+u5CWNDzrUbg+zcxMvetRuD3rUbg+8W3+uzhEjT3rUbg+kMJ1vOwghz3rUbg+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+kMJ1vPGwZTzrUbg+kMJ1vB+F6z32KJw+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+kMJ1PB+F6z32KJw+kMJ1PB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+zcxMvR+F6z3rUTi+kMJ1vB+F6z1cj8I9kMJ1PB+F6z1cj8I9kMJ1PB+F6z0QUYk9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1vB+F6z1SuB6+zcxMPR+F6z3rUTi+kMJ1vB+F6z0QUYk9kMJ1vB+F6z0sGQK+zcxMva1HYb0K16M8kML1vK1HYb0K16M8zcxMvQrXo7sK16M8kML1vArXo7sK16M8zcxMva1HYb17FK4+zcxMva1HYb3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+zcxMvetRuD3rUbg+zcxMva1HYb3rUbg+zcxMvR+F6z0fhas+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+zcxMvSlcDz2tR+E9zcxMvZqZmT2tR+E9zcxMvR+F6z3rUTi+zcxMvZqZmT0K1yO9zcxMvSlcDz0K1yO9zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+zcxMva1HYb17FK4+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMPR+F6z0fhas+zcxMvR+F6z0fhas+kML1vArXo7vrUTi+kML1vArXo7tSuB6+a7RnvArXo7vrUTi+a7RnvArXo7tSuB6+kML1PArXo7vrUTi+kML1PArXo7tSuB6+kML1PArXo7spXI+9kML1PArXo7utR2G9kML1PAvXo7sH16O7kML1vAvXo7sH16O7kML1vArXo7utR2G9zcxMPQrXo7vrUTi+kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+kML1vArXo7sK16M8CtcjvbgehT3NzMw9CtcjvetROD3NzMw9zcxMvbgehT0K16M9zcxMvetROD0K16M9zcxMPbgehT0K16M9CtcjPbgehT2QwnU9zcxMPetROD0K16M9CtcjPetROD2QwnU9zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+zcxMPa1HYb3C9Sg+zcxMPa1HYb0K16M8zcxMPa1HYb3C9Sg+zcxMPZDCdTzC9Sg+zcxMPa1HYb0K16M8zcxMPSlcDz2tR+E9zcxMPZqZmT2tR+E9zcxMPQrXo7sK16M8zcxMPSlcDz0K1yO9zcxMPQrXo7vrUTi+zcxMPR+F6z3rUTi+zcxMPZqZmT0K1yO9zcxMPZDCdTx7FK4+zcxMPR+F6z0fhas+zcxMPetRuD3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+kML1PK1HYb0K16M8zcxMPa1HYb0K16M8kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMvR+F6z32KNy+zcxMvZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+zcxMPZqZmb32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvR+F6z32KNy+zcxMPR+F6z1cj8K+zcxMPR+F6z32KNy+zcxMvZqZmb32KNy+zcxMvZqZmb1cj8K+zcxMPZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMvZqZmb1cj8K+kML1PK1HYb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj1cj8K+kML1vFyPwj1cj8K+kML1vK1HYb1cj8K+zcxMvR+F6z1cj8K+kML1vLgehT1cj8K+SgwCJgrXIzz2KNw+8W3+u5CWNDz2KNw+8W3+O5CWNDz2KNw+kMJ1PPGwZTz2KNw+8W3+O5CWNDz2KNw+8W3+u5CWNDz2KNw+kMJ1vPGwZTz2KNw+kMJ1PPGwZTz2KNw+8W3+u5CWNDz2KNw+UMetPMXmmTz2KNw+kMJ1PPGwZTz2KNw+kMJ1vPGwZTz2KNw+UMetvMXmmTz2KNw+UMetPMXmmTz2KNw+kMJ1vPGwZTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTz2KNw+UMetvMXmmTz2KNw+SgwCJhq5xTz2KNw+nNXUPM3MzDz2KNw+UMetvMXmmTz2KNw+lYqGO7cmyjz2KNw+nNXUPM3MzDz2KNw+SgwCJhq5xTz2KNw++vQBPEwi1zz2KNw+lYqGO7cmyjz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDz2KNw++vQBPEwi1zz2KNw+cMk3PFzJ6zz2KNw+y2LtPEwJBD32KNw++vQBPEwi1zz2KNw+jxdhPMxZAz32KNw+y2LtPEwJBD32KNw+cMk3PFzJ6zz2KNw+uw57PLcFEz32KNw+y2LtPEwJBD32KNw+jxdhPMxZAz32KNw+kML1PArXIz32KNw+y2LtPEwJBD32KNw+uw57PLcFEz32KNw++vSBPArXIz32KNw+kML1PArXIz32KNw+uw57PLcFEz32KNw+y2LtPMikQz32KNw+kML1PArXIz32KNw++vSBPArXIz32KNw+uw57PFyoND32KNw+y2LtPMikQz32KNw++vSBPArXIz32KNw+jxdhPElURD32KNw+y2LtPMikQz32KNw+uw57PFyoND32KNw+nNXUPK1HYT32KNw+y2LtPMikQz32KNw+jxdhPElURD32KNw+cMk3PGbJUT32KNw+nNXUPK1HYT32KNw+jxdhPElURD32KNw++vQBPO4cXD32KNw+nNXUPK1HYT32KNw+cMk3PGbJUT32KNw+lYqGO7maYj32KNw+nNXUPK1HYT32KNw++vQBPO4cXD32KNw+UMetPLK6ej32KNw+nNXUPK1HYT32KNw+lYqGO7maYj32KNw+SgwCJojRZD32KNw+UMetPLK6ej32KNw+lYqGO7maYj32KNw+UMetvMXmmTz2KNw+nNXUvM3MzDz2KNw+SgwCJhq5xTz2KNw+lYqGu7cmyjz2KNw+SgwCJhq5xTz2KNw+nNXUvM3MzDz2KNw++vQBvEwi1zz2KNw+lYqGu7cmyjz2KNw+y2LtvEwJBD32KNw++vQBvEwi1zz2KNw+nNXUvM3MzDz2KNw+cMk3vFzJ6zz2KNw++vQBvEwi1zz2KNw+y2LtvEwJBD32KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zz2KNw+y2LtvEwJBD32KNw+uw57vLcFEz32KNw+jxdhvMxZAz32KNw+y2LtvEwJBD32KNw+kML1vArXIz32KNw+uw57vLcFEz32KNw+y2LtvEwJBD32KNw++vSBvArXIz32KNw+uw57vLcFEz32KNw+kML1vArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz32KNw+kML1vArXIz32KNw+y2LtvMikQz32KNw+uw57vFyoND32KNw+kML1vArXIz32KNw+jxdhvElURD32KNw+uw57vFyoND32KNw+y2LtvMikQz32KNw+nNXUvK1HYT32KNw+jxdhvElURD32KNw+y2LtvMikQz32KNw+cMk3vGbJUT32KNw+jxdhvElURD32KNw+nNXUvK1HYT32KNw++vQBvO4cXD32KNw+cMk3vGbJUT32KNw+nNXUvK1HYT32KNw+lYqGu7maYj32KNw++vQBvO4cXD32KNw+nNXUvK1HYT32KNw+UMetvLK6ej32KNw+lYqGu7maYj32KNw+nNXUvK1HYT32KNw+SgwCJojRZD32KNw+lYqGu7maYj32KNw+UMetvLK6ej32KNw+UMetPLK6ej32KNw+SgwCJojRZD32KNw+UMetvLK6ej32KNw+kMJ1POwghz32KNw+UMetPLK6ej32KNw+UMetvLK6ej32KNw+kMJ1vOwghz32KNw+kMJ1POwghz32KNw+UMetvLK6ej32KNw+8W3+OzhEjT32KNw+kMJ1POwghz32KNw+kMJ1vOwghz32KNw+8W3+uzhEjT32KNw+8W3+OzhEjT32KNw+kMJ1vOwghz32KNw+SgwCJilcjz32KNw+8W3+OzhEjT32KNw+8W3+uzhEjT32KNw+/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAm9tiJAAAAgCb22IkAAACAJvbYiQAAAIAm9tiJAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgNgJ2IkAAACA2AnYiQAAAIDYCdiJAAAAgNgJ2IkAAACAVNX//wAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+ZGQAAAID/f5kZAAAAgP9/mRkAAACA/3+ZGQAAAID/f5kZAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICZmf//AAAAgJmZ//8AAACAmZn//wAAAICZmf//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA2a4l0QAAAIDZriXRAAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVR2S4AAACAJVHZLgAAAID/P/8/AAAAgP8//z8AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgAwbDJsAAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACA/7//vwAAAID/v/+/AAAAgNmuJdEAAACA2a4l0QAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAAAP9/AAAAgNmu2S4AAACA2a7ZLgAAAIAMmwwbAAAAgAybDBsAAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDy5PJkAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA/7//PwAAAID/v/8/AAAAgNmu2S4AAACA2a7ZLgAAAIAlUSXRAAAAgCVRJdEAAACA/z//vwAAAID/P/+/AAAAgP9/AAAAAACA/38AAAAAAIDyZAwbAAAAgPJkDBsAAACADJsMGwAAAIAMmwwbAAAAgNmu2S4AAACA2a7ZLgAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVRJdEAAACAJVEl0QAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMGwybAAAAgPLkDJsAAACA////fwAAAIDy5AybAAAAgP///38AAACA8mQMGwAAAIDyZAwbAAAAgCVR2S4AAACAJVHZLgAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgP///38AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACAJdHZrgAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAID/fwAAAAAAgP9/AAAAAACADJsMGwAAAIAMmwwbAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIDZriXRAAAAgNmuJdEAAACA/7//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACA////fwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA8uQMmwAAAID///9/AAAAgPLkDJsAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgCXRJVEAAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgAwb8mQAAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAMGwybAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACA/3+qqgAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f1RVAAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///////7//f///////v/9///////+//3///////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f///////v/9///////+//3///////78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/////f///AID///9///8AgP///3///wCA////f/////////9//////////3///wCA////f/////////9///////////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f/+/AAAAgP9//78AAACA/3//vwAAAID/f/+/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("XS6XP6Qn6b9dLpc/k8nkP10ul7+kJ+m/XS6Xv5PJ5D8mk0m/ZTKZPyOTST4ulwtAJpNJvyqVSkDSkzRAKpVKQH6UH0AulwtAI5NJPmUymT9dLhc/iMNhwF0uF7+Iw2HAJpPJPvJ4vMAmk8m+8ni8wF0ulz/GYjFAXS6XP16vl0BdLpe/xmIxQF0ul79er5dAXS6XP/J4/EBdLpe/8nj8QF0ulz8qlUpAXS6XvyqVSkBbrbbA9PncQFuttsAqlUpAvV5vwPJ4/ECLxeK/KpVKQIvF4r/yePxAJpPJvkEgUEEmk8m+dTo9QSaTyT5BIFBBJpPJPnU6PUFBIEDByJ9dwEEgQMElqrrAqVQawcifXcB1Oi3BJaq6wFuttkAqlUpAW622QPT53ECLxeI/KpVKQL1eb0DyePxAi8XiP/J4/EBdLpe/x2M8P10ul7+0g7u/XS6XP8djPD9dLpc/tIO7v0EgQEElqrrAQSBAQcifXcB1Oi1BJaq6wKlUGkHIn13AXS4XP7af68BdLhe/tp/rwCaTyT5/ESDBJpPJvn8RIMFdLpc/9PncQF0ul7/0+dxAXS6XPyqVSkBdLpe/KpVKQF0ul79dLldAXS6Xv/j7nUAmk8m/XS5XQCaTyb/4+51A8Pf7v5PJhEBZLFbBAgVVQFksVsFGo9E+v9/PwAIFVUC/38/ARqPRPiaTyT8Wi0W/XS6XPxaLRb8mk8k/Ho/Hv10ulz8ej8e/8Pf7v5PJhEAmk8m/XS5XQCaTyb/4+51AXS6Xv/j7nUBdLpe/XS5XQL/fz8BE9e0/WSxWwUT17T+/38/A3rPWPlksVsHes9Y+8Pf7P5PJhEAmk8k/+PudQCaTyT9dLldAXS6XP10uV0BdLpc/+PudQF0ul78Wi0W/JpPJvxaLRb9dLpe/Ho/HvyaTyb8ej8e/JpPJPxaLRb9dLpc/FotFvyaTyT8ej8e/XS6XPx6Px79dLpe/FotFvyaTyb8Wi0W/XS6Xvx6Px78mk8m/Ho/Hv10ulz/4+51AXS6XP10uV0Amk8k/+PudQCaTyT9dLldA8Pf7P5PJhEBZLFZBRqPRPlksVkECBVVAv9/PQEaj0T6/389AAgVVQFksVkHes9Y+WSxWQUT17T+/389A3rPWPr/fz0BE9e0/z2sIQL/f70DPawhAWSxmQc9rCMC/3+9Az2sIwFksZkEmk0k/ZTKZPyaTST8qlUpAI5NJvmUymT8jk0m+LpcLQNKTNMAqlUpAfpQfwC6XC0BdLpc/LpcLQF0ul78ulwtAXS6XP2UymT9dLpe/ZTKZP10ul7/8KL+/XS6XP/wov79dLpe/N5tNP10ulz83m00/XS6Xvx5QgEFdLpe/Uof9QF0ulz8eUIBB8IgOv1KH/UBdLpc/Uof9QF0ulz8Coow+XS6XvwKijD5dLpc/Ho/Hv10ul78ej8e/XS6XP71eX8FdLpc/IpHowF0ul7+9Xl/BXS6XvyKR6MBdLpc/5oQNQV0ulz/I5ntBXS6Xv+aEDUFdLpe/yOZ7QV0ul7+LxcLAXS6Xv71eX8FdLpc/i8XCwF0ulz+9Xl/B3m6HwRq0oT6LxWLBGrShPt5uh8GKLvU+i8ViwYou9T7ebodBfD9gP4vFYkF8P2A/3m6HQUSCNj+LxWJBRII2P4vFYkEAqiS93m6HQQCqJL2LxWJBwJT7Pd5uh0HAlPs93m6HwdDhK77ebofBWGupvovFYsHQ4Su+i8ViwVhrqb6LxWLBfD9gP95uh8F8P2A/i8ViwUSCNj/ebofBRII2P95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HwQCqJL2LxWLBAKokvd5uh8HAlPs9i8ViwcCU+z3ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vovFYsGKLvU+3m6HwYou9T6LxWLBGrShPt5uh8EatKE+3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebofBKC+/vt5uh8HMVAm/i8ViwSgvv76LxWLBzFQJv4vFYkGI6SM/3m6HQYjpIz+LxWJBONhyP95uh0E42HI/i8ViwcCU+z3ebofBwJT7PYvFYsEAqiS93m6HwQCqJL3ebodBwJT7PYvFYkHAlPs93m6HQQCqJL2LxWJBAKokvYvFYkFEgjY/3m6HQUSCNj+LxWJBfD9gP95uh0F8P2A/i8ViwQEwDT/ebofBATANP4vFYsFEBXk+3m6HwUQFeT7ebofB0OErvt5uh8FYa6m+i8ViwdDhK76LxWLBWGupvt5uh8FEgjY/i8ViwUSCNj/ebofBfD9gP4vFYsF8P2A/3m6HQYou9T6LxWJBii71Pt5uh0EatKE+i8ViQRq0oT7ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vt5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/i8ViQRq0oT7ebodBGrShPovFYkGKLvU+3m6HQYou9T6LxWLBUC1IPt5uh8FQLUg+i8ViweAa573ebofB4Brnvd5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/3m6HwSgvv77ebofBzFQJv4vFYsEoL7++i8ViwcxUCb+LxWLBONhyP95uh8E42HI/i8ViwYjpIz/ebofBiOkjP95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebodBATANP4vFYkEBMA0/3m6HQUQFeT6LxWJBRAV5Pt5uh0E42HI/i8ViQTjYcj/ebodBiOkjP4vFYkGI6SM/3m6HwYjpIz+LxWLBiOkjP95uh8E42HI/i8ViwTjYcj9dLpe/CIPBvvD3+78Ig8G+XS6Xv+jz+b/w9/u/6PP5v/D3+z9MJhO/8Pf7PyqVqkBdLpc/TCYTv10ulz8qlapA8Pf7v8j3EEHw9/u/UaXjQPD3+z/I9xBB8Pf7P1Gl40DebofB4BrnvYvFYsHgGue93m6HwVAtSD6LxWLBUC1IPt5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+3m6HwQR40L7ebofBsio3v4vFYsEEeNC+i8ViwbIqN7/ebofBsP2Zvt5uh8GI7Ru/i8ViwbD9mb6LxWLBiO0bv95uh8Gw/Zm+3m6HwYjtG7+LxWLBsP2ZvovFYsGI7Ru/3m6HwUQFeT6LxWLBRAV5Pt5uh8EBMA0/i8ViwQEwDT/I9wDBCIPBvsj3AMGIw2HAUaXDwAiDwb5RpcPAiMNhwPD3+z8Ig8G+XS6XPwiDwb7w9/s/6PP5v10ulz/o8/m/KpWKQAiDwb7w93tAHo/HvyqVikDo8/m/JpPJv+jz+b9dLhdAHo/Hv10uF0AWi0W/8Pd7QBaLRb8mk8m/CIPBvt5uh8EEeNC+3m6HwbIqN7+LxWLBBHjQvovFYsGyKje/yPcAQYjDYcDI9wBBCIPBvlGlw0CIw2HAUaXDQAiDwb7w9/u/KpWqQPD3+79MJhO/XS6XvyqVqkBdLpe/TCYTv10ul78Ig8G+8Pf7vwiDwb5dLpe/6PP5v/D3+7/o8/m/XS6XPyqVqkBdLpc/TCYTv/D3+z8qlapA8Pf7P0wmE7/w93vAHo/Hv/D3e8AWi0W/KpWKwAiDwb4mk8k/CIPBvl0uF8AWi0W/JpPJP+jz+b8qlYrA6PP5v10uF8Aej8e/8Pf7PwiDwb5dLpc/CIPBvvD3+z/o8/m/XS6XP+jz+b9dLpe/TCYTv10ul78qlapA8Pf7v0wmE7/w9/u/KpWqQN5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+i8ViQUQFeT7ebodBRAV5PovFYkEBMA0/3m6HQQEwDT/ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0GI7Ru/3m6HQbD9mb6LxWJBiO0bv4vFYkGw/Zm+3m6HQbIqN7/ebodBBHjQvovFYkGyKje/i8ViQQR40L7ebodBsio3v95uh0EEeNC+i8ViQbIqN7+LxWJBBHjQvovFYkHgGue93m6HQeAa572LxWJBUC1IPt5uh0FQLUg+3m6HQYjtG7/ebodBsP2ZvovFYkGI7Ru/i8ViQbD9mb7ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0FQLUg+i8ViQVAtSD7ebodB4BrnvYvFYkHgGue9XS4XPwA/sL9dLhe/AD+wv10uFz9M+mTAXS4Xv0z6ZMBdLhc/OBqkvl0uF784GqS+XS4XPxNeIcBdLhe/E14hwL1eb8CIw2HAwmAwwL/fr8BX8SjAiMNhwFlyCcDCYJDAj8ejQL/fr8BbUJBAwmCQwNoPoECIw2HAjUbDQIjDYcBdLhc/FAlQv10uF78UCVC/XS4XP1bf9L9dLhe/Vt/0v10uF7/CYHBAXS4Xv4/Hg8BdLhc/wmBwQF0uFz+Px4PAvV5vQIjDYcBX8ShAiMNhwMJgMEC/36/AWXIJQMJgkMCPx6PAv9+vwFtQkMDCYJDA2g+gwIjDYcCNRsPAiMNhwF0uFz+2oGDAXS4XP1lySUBdLhe/tqBgwF0uF79ZcklAXS4XP/w8779dLhe//Dzvv10uFz/kCz7AXS4Xv+QLPsBdLpc/D4sBQV0ul78PiwFBXS6XPx2TfEBdLpe/HZN8QF0ulz/WLDpAXS6Xv9YsOkBdLpc/HI3vP10ul78cje8/XS6XP4t2FUFdLpe/i3YVQV0ulz9+dEdAXS6Xv350R0DwiA4/fnRHQF0ulz+KROLAXS6XPyKRSMBdLpe/ikTiwF0ul78ikUjAKpUKQGUymT/CYDBAZTKZP41Gw0BlMpk/kUiEQI1G40BFIgFBjUbjQCqVCsBlMpk/jUbDwGUymT+RSITAjUbjQEUiAcGNRuNAAACgKGDQSz05hyW+QErpPDmHJT5ASuk8UuOfPsDrCr1S45++wOsKvaEd4r7wXQi+oR3iPvBdCL6Qdwo/SGmGvpB3Cr9IaYa+n3AaP/yI076fcBq//IjTvlLjHz9MJhO/UuMfv0wmE7+fcBq/Gog8v59wGj8aiDy/kHcKv/YXY7+Qdwo/9hdjv6Ed4r6OGoK/oR3iPo4agr9S458+7s6Ov1Ljn77uzo6/OYclvnbLlr85hyU+dsuWvwAAoCjQhJm/8Pf7P1ksZkHw9/s/v9/vQCaTSUBZLGZBJpNJQL/f70DPawhALBaLQM9rCMAsFotAJpNJQAIFVUAmk0nAAgVVQPD3+z8qlUpAJpNJQEaj0T7w9/s/RqPRPvD3+78qlUpAJpNJwEaj0T7w9/u/RqPRPs9rCMAsFotAJpNJwAIFVUDPawhALBaLQCaTSUACBVVA8Pf7PyqVSkAmk0lARqPRPvD3+z9Go9E+8Pf7vyqVSkAmk0nARqPRPvD3+79Go9E+JpNJwFksZkEmk0nAv9/vQPD3+79ZLGZB8Pf7v7/f70CLxeLAZTKZP5FIBMEej8e/i8XiwL1eL8C9Xm/BvV4vwL1eb8Eej8e/kUgEwQKijD69Xm/BKpVKQL1eb8HaVPk/i8XiQL1eL8CRSARBAqKMPovF4kBlMpk/vV5vQSqVSkC9Xm9B2lT5P5FIBEEej8e/vV5vQb1eL8C9Xm9BHo/Hv/D3+z9lMpk/XS6XP2UymT/w9/s/iMNhwF0ulz+9Xi/AXS6Xv71eL8Dw9/u/iMNhwPD3+79lMpk/XS6Xv2UymT/HomxAHo/Hv8eibEAWi0W/Q0s0QB6Px79DSzRAFotFv0NLNMAej8e/fOf3vx6Px79DSzTAFotFv3zn978Wi0W/8Pf7vyqVSkBozVU/Nk6FPvD3+z8qlUpAO+2CPwACgTycB5I/+MiJvvD3+z+LxSLAXS4XP1Jo5T6ig5w+7OgQPwAAoChtNhs/XS6XP0wmE7+cB5I/Hmhhvzvtgj9UKpW/aM1VP9p5tL9dLhc/YIDMv6KDnD7Cmtu/AACgKITB4L+ig5y+7OgQP/D3+7+LxSLAooOcvsKa279dLhe/YIDMv2jNVb/aebS/O+2Cv1Qqlb+cB5K/Hmhhv10ul79MJhO/nAeSv/jIib477YK/AAKBPGjNVb82ToU+XS4Xv1Jo5T5dLhe/QSBQQfD3+78MBmNB8Pf7PwwGY0FdLhc/QSBQQV0uFz+pVCpBXS4Xv6lUKkHw9/u/i8XCwF0uF79er5dAXS4XP16vl0BdLhc/V/FoQF0uFz/aD4DAXS4XP41Go8BdLhe/jUajwPD3+z+LxcLAXS4Xv1fxaEBdLhe/2g+AwPD3+z8qlUpAXS6XPyqVSkDw9/s/ZTKZP10ulz9lMpk/8Pf7P1ksZkHw9/s/i8VyQfD3+79ZLGZB8Pf7v4vFckGLxWJBi8UiwIvFYkEqlUpADAZTQYjDYcBZLFZBRqPRPr/fz0BGo9E+JpNJPyqVSkC/389AKpVKQCqVikAIg8G+KpWKQOjz+b+LxeLAiMNhwCaTyb/o8/m/JpPJvwiDwb4mk0k/ZTKZP4vF4sBlMpk/WSxWQSqVSkDw9/s/ikMIQfD3+7+KQwhB8Pf7P0r840Dw9/u/SvzjQF0ulz+LxcLAXS6XP41Go8DwiA4/i8XCwPCIDj+NRqPAXS6Xv4vFwsBdLpe/jUajwF0ul7+EweC/XS6Xv1Qqlb9dLpe/N5tNP10ulz83m00/XS6XP1Qqlb/w9/u/i8XCwF0ul7+TyeQ/8Pf7v5PJ5D/w9/s/k8nkP/D3+z+LxcLAXS6XP5PJ5D9DSzRAHo/Hv0NLNEAWi0W/fOf3Px6Px7985/c/FotFv8eibMAej8e/Q0s0wB6Px7/HomzAFotFv0NLNMAWi0W/8Pf7P5PJ5D/w9/s/v9/vQF0ulz/GYjFAXS6Xv8ZiMUBdLpe/W63WQF0ulz9brdZA8Pf7v7/f70Dw9/u/k8nkP7/fz8AqlUpAv9/PwEaj0T4mk0m/KpVKQCqVisAIg8G+KpWKwOjz+b8mk0m/ZTKZPyaTyT8Ig8G+i8XiQGUymT+LxeJAiMNhwCaTyT/o8/m/WSxWwUaj0T4MBlPBiMNhwIvFYsGLxSLAWSxWwSqVSkCLxWLBKpVKQF0ul78qlUpA8Pf7vyqVSkBdLpe/ZTKZP/D3+79lMpk/8Pf7P/T5fEDw9/u/9Pl8QPD3+z+Iw2HA8Pf7v4jDYcC9Xm/BiMNhwL1eb8H0+XxA3m6HwYjDYcDebofB9Pl8QL1eb0H0+XxAvV5vQYjDYcDebodB9Pl8QN5uh0GIw2HA8Pf7v71eX8Hw9/u/vN1+wfD3+z+9Xl/B8Pf7P7zdfsHw9/s/vN1+wfD3+z+9Xl/B8Pf7v7zdfsHw9/u/vV5fwfD3+7/0+XxAXS6XPyqVSkDw9/s/9Pl8QPD3+z+Iw2HAXS6XP9pU+T9dLpc/Ho/Hv10ul7/aVPk/XS6XP71eL8BdLpe/vV4vwF0ul78qlUpA8Pf7v4jDYcBdLpe/Ho/Hv8j3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+yPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HA"), -"format": 34359742487, -"index_count": 483, -"index_data": PackedByteArray("FwIVAhYCFgIYAhcCGAIZAhcCGgIXAhkCGwIaAhkCGQIcAhsCHwIdAh4CHgIgAh8CIwIhAiICIgIkAiMCJwIlAiYCJgIoAicCKAIpAicCKQIqAicCJQIrAiYCJQIsAisCJQItAiwCKQIuAioCLgIvAioCLwIwAioCMAIxAioCMQIyAioCMgIzAioCMwI0AioCNQItAiUCNgIqAjQCNgI0AjcCNgI3AjgCNgI4AjkCNgI5AjoCNgI6AjsCNgI7AjwCNgI8Aj0CJQI2Aj0CPQI+AiUCPgI/AiUCPwJAAiUCQAI1AiUCQgIXAUECQQJDAkICQQJEAkMCRAJFAkMCRgJBAhcBFwEZAUYCGQFFAkYCGQFDAkUCGAFHAkgCSAIaARgBSAJJAhoBSQJKAhoBSgJLAhoBSwJMAhoBTQJIAkcCRwJOAk0CTgJMAk0CTgIaAUwCTQJPAkgCTQJQAk8CSgJPAlACUAJLAkoCUwJRAlICUgJUAlMCVwJVAlYCVgJYAlcCWwJZAloCWgJcAlsCXAJIAVsCXAJdAkgBSAFHAVsCXQJKAUgBXgJKAV0CXQJfAl4CXgJgAkoBYAJhAkoBSQFKAWECYQJiAkkBYQJjAmICYwJkAmICZAJgAmUCXgJlAmACZQJmAmQCZgJiAmQCZwJcAloCagJoAmkCaQJrAmoCbgJsAm0CbQJvAm4CbwJwAm4CbwJxAnACcQJyAnACcgJzAnACdAJwAnMCdQJ0AnMCcwJ2AnUCdgJtAmwCdAJ3AnACdAJ4AncCeAJ5AncCegJ2AmwCbAJ7AnoCegJ8AnYCfAJ1AnYCfwJ9An4CfgKAAn8CgwKBAoICggKEAoMCAQCFAoYChgKHAgEAhwKIAgEAiAIDAAEAiAKJAgMAigKHAoYChgKLAooCiwKJAooCiwIDAIkCiwKMAgMAjwKNAo4CjgI1AY8CNQGQAo8CNQE2AZACNgGRApACkAKSAo8CkAKTApICkwKUApICkQI2AZUClQKUApMClQKWApEClQKTApYCMwE1AY4CMwGOApcCmAIzAZcCmQKYApcCmQKXApoCmgKbApkCNAEzAZgCngKcAp0CnQKfAp4CogKgAqECoQKjAqICpgKkAqUCpQKnAqYCqgKoAqkCqQKrAqoCrgKsAq0CrQKvAq4CsgKwArECsQKzArICtgK0ArUCtQK3ArYCtQK4ArcCuAK5ArcCuAK6ArkCuQK7ArcCuwK8ArcCvQK1ArQCtAK+Ar0CvgK6Ar0CvgK3ArwCvgK/AroCvwK5AroCvgK8Ar8C"), -"material": SubResource("StandardMaterial3D_mf1j8"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PK1HYb0K16M8kML1PK1HYb35xZK9kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vDMzM77rUTg9kML1PDMzM77rUTg9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+kML1PDMzM75cj8I9kML1PK1HYb3rUTg9kML1PDMzM77rUTg9CtcjvDMzMz72KJw+CtcjvDMzMz7NzIw+CtcjPDMzMz72KJw+CtcjPDMzMz7NzIw+kMJ1PB+F6z32KJw+CtcjPDMzMz72KJw+kMJ1PB+F6z1H4Xo+CtcjPDMzMz7NzIw+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kML1vK1HYb3rUTg9kML1vDMzM75cj8I9kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1vJqZGb7hehQ+kML1PDMzM75cj8I9kML1PJqZGb7hehQ+CtcjvDMzMz72KJw+kMJ1vB+F6z32KJw+CtcjvDMzMz7NzIw+kMJ1vB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+kMJ1PB+F6z1H4Xo+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kML1PJqZGb7hehQ+kML1vJqZGb7hehQ+kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT2QwnU9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9kML1vLgehT2QwnU9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+CtejPQc/cr3C9Sg+CtejPQc/cr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9CtcjvetROD2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vOtROD3NzMw9CtcjvetROD3NzMw9kML1vLgehT3NzMw9CtcjvbgehT3NzMw9CtcjPetROD3NzMw9kML1POtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1POtROD2QwnU9CtcjPetROD2QwnU9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT3NzMw9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+CtejvQc/cr17FK4+JMRdvXsUrr17FK4+CtejvQc/cr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr17FK4+JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+kML1vArXo7sK16M8kML1vK1HYb0K16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vK1HYb35xZK9kML1vI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vAvXo7sH16O7kML1PAvXo7sH16O7kML1vI7C9bzotIG9kML1PI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1vLgehT09Cle+kML1PLgehT1cj8K+kML1PLgehT09Cle+kML1vHLsljw9Cle+kML1vIQ8xbxcj8K+kML1PHLsljw9Cle+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+cMk3vFzJ6zz2KNw+cMk3vFzJ6zzrUbg++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+jxdhPMxZAz32KNw+cMk3PFzJ6zz2KNw+jxdhPMxZAz3rUbg+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBvO4cXD3rUbg++vQBvO4cXD32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+jxdhvElURD32KNw+cMk3vGbJUT32KNw+jxdhvElURD3rUbg+cMk3vGbJUT3rUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg++vSBPArXIz32KNw+uw57PLcFEz32KNw++vSBPArXIz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw++vSBvArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz3rUbg+uw57vFyoND3rUbg+jxdhvMxZAz32KNw+uw57vLcFEz32KNw+jxdhvMxZAz3rUbg+uw57vLcFEz3rUbg+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+jxdhPElURD32KNw+uw57PFyoND32KNw+jxdhPElURD3rUbg+uw57PFyoND3rUbg+cMk3PGbJUT32KNw+jxdhPElURD32KNw+cMk3PGbJUT3rUbg+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT0K1yO9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+UMetPLK6ej32KNw+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+nNXUPK1HYT32KNw+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+nNXUPM3MzDz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+zcxMPSlcDz10plE+zcxMPR+F6z10plE+zcxMPSlcDz1YBR8+zcxMPR+F6z1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9kML1vClcDz2tR+E9kML1vLgehT3NzMw9kML1vJqZmT2tR+E9kML1vJqZmT0K1yO9kML1vLgehT2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vClcDz0K1yO9kML1PArXIz32KNw+y2LtPMikQz32KNw+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+zcxMvR+F6z10plE+zcxMvSlcDz10plE+zcxMvR+F6z1YBR8+zcxMvSlcDz1YBR8+zcxMvSlcDz2tR+E9zcxMvSlcDz0K1yO9kML1vClcDz2tR+E9kML1vClcDz0K1yO9kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz2tR+E9zcxMPSlcDz0K1yO9kML1PLgehT3NzMw9kML1POtROD3NzMw9kML1PClcDz2tR+E9kML1PClcDz0K1yO9kML1POtROD2QwnU9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9kML1PLgehT2QwnU9zcxMPSlcDz0K1yO9kML1PClcDz0K1yO9zcxMPZqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9zcxMPZqZmT0K1yO9zcxMPZqZmT2tR+E9UMetPMXmmTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTzrUbg+nNXUPM3MzDzrUbg+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+nNXUvM3MzDz2KNw+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+kML1vArXIz32KNw+y2LtvEwJBD32KNw+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+y2LtvMikQz32KNw+kML1vArXIz32KNw+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+UMetvMXmmTzrUbg+UMetvMXmmTz2KNw+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvK1HYT32KNw+y2LtvMikQz32KNw+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+UMetvLK6ej32KNw+nNXUvK1HYT32KNw+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PML1KD64HgW+kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1PClcDz6+mOq9kMJ1vClcDz6+mOq9kMJ1vML1KD4pXI89kMJ1vML1KD64HgW+kMJ1PML1KD4pXI89kMJ1PML1KD64HgW+kMJ1vB+F6z1cj8I9kMJ1vB+F6z0QUYk9kMJ1vML1KD4pXI89kMJ1vClcDz7tbl89kMJ1vML1KD64HgW+kMJ1vClcDz6+mOq9kMJ1vB+F6z0sGQK+kMJ1vB+F6z1SuB6+kMJ1vClcDz6+mOq9kMJ1vClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PClcDz7tbl89kMJ1vB+F6z0QUYk9kMJ1PB+F6z0QUYk9kMJ1vClcDz7tbl89kMJ1PClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PK1HYb35xZK9kML1vK1HYb35xZK9kML1PI7C9bzotIG9kML1vI7C9bzotIG9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1vFK4Hr6G61G+kML1vFK4Hr49Cte9kML1PFK4Hr6G61G+kML1PFK4Hr49Cte9kML1PArXo7utR2G9kML1PArXo7spXI+9kML1PArXo7tSuB6+kML1PFK4Hr49Cte9kML1PFK4Hr6G61G+kML1vArXo7utR2G9kML1vArXo7tSuB6+kML1vFK4Hr49Cte9kML1vFK4Hr6G61G+SgwCJhq5xTzrUbg+lYqGu7cmyjzrUbg+lYqGO7cmyjzrUbg++vQBPEwi1zzrUbg++vQBvEwi1zzrUbg+cMk3vFzJ6zzrUbg+cMk3PFzJ6zzrUbg+jxdhPMxZAz3rUbg+jxdhvMxZAz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz3rUbg++vSBPArXIz3rUbg++vSBvArXIz3rUbg+uw57vFyoND3rUbg+uw57PFyoND3rUbg+jxdhvElURD3rUbg+jxdhPElURD3rUbg+cMk3vGbJUT3rUbg+cMk3PGbJUT3rUbg++vQBPO4cXD3rUbg++vQBvO4cXD3rUbg+lYqGu7maYj3rUbg+lYqGO7maYj3rUbg+SgwCJojRZD3rUbg+zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+CtejPZDCdTx7FK4+CtejPZDCdTzC9Sg+JMRdPXsUrr17FK4+JMRdvXsUrr17FK4+CtejPQc/cr17FK4+CtejvQc/cr17FK4+zcxMPa1HYb17FK4+CtejPZDCdTx7FK4+zcxMPZDCdTx7FK4+zcxMva1HYb17FK4+CtejvZDCdTx7FK4+zcxMvZDCdTx7FK4+JMRdPXsUrr3C9Sg+CtejPQc/cr3C9Sg+JMRdvXsUrr3C9Sg+CtejvQc/cr3C9Sg+zcxMva1HYb3C9Sg+CtejvZDCdTzC9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+CtejPZDCdTzC9Sg+zcxMPZDCdTzC9Sg+CtejvZDCdTx7FK4+CtejvZDCdTzC9Sg+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+kML1vArXo7vrUTi+kML1vLgehT09Cle+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1vLgehT1cj8K+kML1vHLsljw9Cle+kML1vK1HYb1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj3rUTi+kML1PHLsljw9Cle+kML1PArXo7vrUTi+kML1PK1HYb1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT09Cle+kML1PFyPwj1cj8K+kML1PLgehT1cj8K+zcxMvQrXo7vrUTi+kML1vArXo7vrUTi+zcxMvR+F6z3rUTi+kML1vFyPwj3rUTi+kML1PFyPwj3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+kML1PArXo7vrUTi+zcxMvbgehT0K16M9zcxMvetROD0K16M9CtcjvbgehT2QwnU9CtcjvetROD2QwnU9CtcjPbgehT3NzMw9zcxMPbgehT0K16M9CtcjPetROD3NzMw9zcxMPetROD0K16M9zcxMva1HYb3rUbg+UMetPMXmmTzrUbg+zcxMPa1HYb3rUbg+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+zcxMPetRuD3rUbg+kMJ1PPGwZTzrUbg+8W3+O5CWNDzrUbg+SgwCJgrXIzzrUbg+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+kMJ1POwghz3rUbg+8W3+OzhEjT3rUbg+SgwCJilcjz3rUbg+8W3+u5CWNDzrUbg+zcxMvetRuD3rUbg+8W3+uzhEjT3rUbg+kMJ1vOwghz3rUbg+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+kMJ1vPGwZTzrUbg+kMJ1vB+F6z32KJw+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+kMJ1PB+F6z32KJw+kMJ1PB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+zcxMvR+F6z3rUTi+kMJ1vB+F6z1cj8I9kMJ1PB+F6z1cj8I9kMJ1PB+F6z0QUYk9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1vB+F6z1SuB6+zcxMPR+F6z3rUTi+kMJ1vB+F6z0QUYk9kMJ1vB+F6z0sGQK+zcxMva1HYb0K16M8kML1vK1HYb0K16M8zcxMvQrXo7sK16M8kML1vArXo7sK16M8zcxMva1HYb17FK4+zcxMva1HYb3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+zcxMvetRuD3rUbg+zcxMva1HYb3rUbg+zcxMvR+F6z0fhas+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+zcxMvSlcDz2tR+E9zcxMvZqZmT2tR+E9zcxMvR+F6z3rUTi+zcxMvZqZmT0K1yO9zcxMvSlcDz0K1yO9zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+zcxMva1HYb17FK4+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMPR+F6z0fhas+zcxMvR+F6z0fhas+kML1vArXo7vrUTi+kML1vArXo7tSuB6+a7RnvArXo7vrUTi+a7RnvArXo7tSuB6+kML1PArXo7vrUTi+kML1PArXo7tSuB6+kML1PArXo7spXI+9kML1PArXo7utR2G9kML1PAvXo7sH16O7kML1vAvXo7sH16O7kML1vArXo7utR2G9zcxMPQrXo7vrUTi+kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+kML1vArXo7sK16M8CtcjvbgehT3NzMw9CtcjvetROD3NzMw9zcxMvbgehT0K16M9zcxMvetROD0K16M9zcxMPbgehT0K16M9CtcjPbgehT2QwnU9zcxMPetROD0K16M9CtcjPetROD2QwnU9zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+zcxMPa1HYb3C9Sg+zcxMPa1HYb0K16M8zcxMPa1HYb3C9Sg+zcxMPZDCdTzC9Sg+zcxMPa1HYb0K16M8zcxMPSlcDz2tR+E9zcxMPZqZmT2tR+E9zcxMPQrXo7sK16M8zcxMPSlcDz0K1yO9zcxMPQrXo7vrUTi+zcxMPR+F6z3rUTi+zcxMPZqZmT0K1yO9zcxMPZDCdTx7FK4+zcxMPR+F6z0fhas+zcxMPetRuD3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+kML1PK1HYb0K16M8zcxMPa1HYb0K16M8kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMvR+F6z32KNy+zcxMvZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+zcxMPZqZmb32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvR+F6z32KNy+zcxMPR+F6z1cj8K+zcxMPR+F6z32KNy+zcxMvZqZmb32KNy+zcxMvZqZmb1cj8K+zcxMPZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMvZqZmb1cj8K+kML1PK1HYb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj1cj8K+kML1vFyPwj1cj8K+kML1vK1HYb1cj8K+zcxMvR+F6z1cj8K+kML1vLgehT1cj8K+SgwCJgrXIzz2KNw+8W3+u5CWNDz2KNw+8W3+O5CWNDz2KNw+kMJ1PPGwZTz2KNw+8W3+O5CWNDz2KNw+8W3+u5CWNDz2KNw+kMJ1vPGwZTz2KNw+kMJ1PPGwZTz2KNw+8W3+u5CWNDz2KNw+UMetPMXmmTz2KNw+kMJ1PPGwZTz2KNw+kMJ1vPGwZTz2KNw+UMetvMXmmTz2KNw+UMetPMXmmTz2KNw+kMJ1vPGwZTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTz2KNw+UMetvMXmmTz2KNw+SgwCJhq5xTz2KNw+nNXUPM3MzDz2KNw+UMetvMXmmTz2KNw+lYqGO7cmyjz2KNw+nNXUPM3MzDz2KNw+SgwCJhq5xTz2KNw++vQBPEwi1zz2KNw+lYqGO7cmyjz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDz2KNw++vQBPEwi1zz2KNw+cMk3PFzJ6zz2KNw+y2LtPEwJBD32KNw++vQBPEwi1zz2KNw+jxdhPMxZAz32KNw+y2LtPEwJBD32KNw+cMk3PFzJ6zz2KNw+uw57PLcFEz32KNw+y2LtPEwJBD32KNw+jxdhPMxZAz32KNw+kML1PArXIz32KNw+y2LtPEwJBD32KNw+uw57PLcFEz32KNw++vSBPArXIz32KNw+kML1PArXIz32KNw+uw57PLcFEz32KNw+y2LtPMikQz32KNw+kML1PArXIz32KNw++vSBPArXIz32KNw+uw57PFyoND32KNw+y2LtPMikQz32KNw++vSBPArXIz32KNw+jxdhPElURD32KNw+y2LtPMikQz32KNw+uw57PFyoND32KNw+nNXUPK1HYT32KNw+y2LtPMikQz32KNw+jxdhPElURD32KNw+cMk3PGbJUT32KNw+nNXUPK1HYT32KNw+jxdhPElURD32KNw++vQBPO4cXD32KNw+nNXUPK1HYT32KNw+cMk3PGbJUT32KNw+lYqGO7maYj32KNw+nNXUPK1HYT32KNw++vQBPO4cXD32KNw+UMetPLK6ej32KNw+nNXUPK1HYT32KNw+lYqGO7maYj32KNw+SgwCJojRZD32KNw+UMetPLK6ej32KNw+lYqGO7maYj32KNw+UMetvMXmmTz2KNw+nNXUvM3MzDz2KNw+SgwCJhq5xTz2KNw+lYqGu7cmyjz2KNw+SgwCJhq5xTz2KNw+nNXUvM3MzDz2KNw++vQBvEwi1zz2KNw+lYqGu7cmyjz2KNw+y2LtvEwJBD32KNw++vQBvEwi1zz2KNw+nNXUvM3MzDz2KNw+cMk3vFzJ6zz2KNw++vQBvEwi1zz2KNw+y2LtvEwJBD32KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zz2KNw+y2LtvEwJBD32KNw+uw57vLcFEz32KNw+jxdhvMxZAz32KNw+y2LtvEwJBD32KNw+kML1vArXIz32KNw+uw57vLcFEz32KNw+y2LtvEwJBD32KNw++vSBvArXIz32KNw+uw57vLcFEz32KNw+kML1vArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz32KNw+kML1vArXIz32KNw+y2LtvMikQz32KNw+uw57vFyoND32KNw+kML1vArXIz32KNw+jxdhvElURD32KNw+uw57vFyoND32KNw+y2LtvMikQz32KNw+nNXUvK1HYT32KNw+jxdhvElURD32KNw+y2LtvMikQz32KNw+cMk3vGbJUT32KNw+jxdhvElURD32KNw+nNXUvK1HYT32KNw++vQBvO4cXD32KNw+cMk3vGbJUT32KNw+nNXUvK1HYT32KNw+lYqGu7maYj32KNw++vQBvO4cXD32KNw+nNXUvK1HYT32KNw+UMetvLK6ej32KNw+lYqGu7maYj32KNw+nNXUvK1HYT32KNw+SgwCJojRZD32KNw+lYqGu7maYj32KNw+UMetvLK6ej32KNw+UMetPLK6ej32KNw+SgwCJojRZD32KNw+UMetvLK6ej32KNw+kMJ1POwghz32KNw+UMetPLK6ej32KNw+UMetvLK6ej32KNw+kMJ1vOwghz32KNw+kMJ1POwghz32KNw+UMetvLK6ej32KNw+8W3+OzhEjT32KNw+kMJ1POwghz32KNw+kMJ1vOwghz32KNw+8W3+uzhEjT32KNw+8W3+OzhEjT32KNw+kMJ1vOwghz32KNw+SgwCJilcjz32KNw+8W3+OzhEjT32KNw+8W3+uzhEjT32KNw+/38AAAAAAID/fwAAAAD/v/9/AAAAAACA/38AAAAA/7////9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAm9tiJAAAAgCb22IkAAACAJvbYiQAAAIAm9tiJAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgNgJ2IkAAACA2AnYiQAAAIDYCdiJAAAAgNgJ2IkAAACAVNX//wAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+ZGQAAAID/f5kZAAAAgP9/mRkAAACA/3+ZGQAAAID/f5kZAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICZmf//AAAAgJmZ//8AAACAmZn//wAAAICZmf//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA2a4l0QAAAIDZriXRAAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVR2S4AAACAJVHZLgAAAID/P/8/AAAAgP8//z8AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgAwbDJsAAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACA/7//vwAAAID/v/+/AAAAgNmuJdEAAACA2a4l0QAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAAAP9/AAAAgNmu2S4AAACA2a7ZLgAAAIAMmwwbAAAAgAybDBsAAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDy5PJkAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA/7//PwAAAID/v/8/AAAAgNmu2S4AAACA2a7ZLgAAAIAlUSXRAAAAgCVRJdEAAACA/z//vwAAAID/P/+/AAAAgP9/AAAAAACA/38AAAAAAIDyZAwbAAAAgPJkDBsAAACADJsMGwAAAIAMmwwbAAAAgNmu2S4AAACA2a7ZLgAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVRJdEAAACAJVEl0QAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMGwybAAAAgPLkDJsAAACA////fwAAAIDy5AybAAAAgP///38AAACA8mQMGwAAAIDyZAwbAAAAgCVR2S4AAACAJVHZLgAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgP///38AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACAJdHZrgAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAID/fwAAAAAAgP9/AAAAAACADJsMGwAAAIAMmwwbAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///////7//f////v//v/9///////+//3///////7/ZriXRAAAAgNmuJdEAAACA/7//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACA////fwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAID///9//////////3//////////f/////////9///////////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA8uQMmwAAAID///9/AAAAgPLkDJsAAACAAAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgCXRJVEAAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgAwb8mQAAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAMGwybAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACA/3+qqgAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f1RVAAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/78AAKmqVFX/vwAAqapUVf+/AACpqlRV/78AAKmqVFX/v1TV/3///6nqVNX/f///qepU1f9///+p6lTV/3///6nq/3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9/////v/9//3/+//+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3/+//+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3////+//3//f/7//7//f///////v/9///////+//3////7//7//f////v//v/9////+//+//3///////7//f///////v/9////+//+//3///////7//f///////v/9///////+//3////7//7//f///////v/9////+//+//3///////7//f///////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f/+/////v/9//7////+//3//v////7//f/+/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAD///+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7+qKv9/qqr/v6oq/3+qqv+/qir/f6qq/7+qKv9/qqr/v///qaoAAKnq//+pqgAAqer//6mqAACp6v//qaoAAKnq/38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v////3//////////f/////////9//////////3//////////f/7///////9//////////3///wCA////f///AID///9///8AgP///3///wCA////f/7///////9//////////3//////////f/7///////9///////////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v////3//////////f/////////9//////////3///////3///////7//f///////v/9///////+//3///////7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9//3/+//+//3//f/7//7//f/9/////v/9//3////+//3//f////7//f/9//v//v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9/////v/9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("XS6XP6Qn6b9dLpc/k8nkP10ul7+kJ+m/XS6Xv5PJ5D8mk0m/ZTKZPyOTST4ulwtAJpNJvyqVSkDSkzRAKpVKQH6UH0AulwtAI5NJPmUymT9dLhc/iMNhwF0uF7+Iw2HAJpPJPvJ4vMAmk8m+8ni8wF0ulz/GYjFAXS6XP16vl0BdLpe/xmIxQF0ul79er5dAXS6XP/J4/EBdLpe/8nj8QF0ulz8qlUpAXS6XvyqVSkBbrbbA9PncQFuttsAqlUpAvV5vwPJ4/ECLxeK/KpVKQIvF4r/yePxAJpPJvkEgUEEmk8m+dTo9QSaTyT5BIFBBJpPJPnU6PUFBIEDByJ9dwEEgQMElqrrAqVQawcifXcB1Oi3BJaq6wFuttkAqlUpAW622QPT53ECLxeI/KpVKQL1eb0DyePxAi8XiP/J4/EBdLpe/x2M8P10ul7+0g7u/XS6XP8djPD9dLpc/tIO7v0EgQEElqrrAQSBAQcifXcB1Oi1BJaq6wKlUGkHIn13AXS4XP7af68BdLhe/tp/rwCaTyT5/ESDBJpPJvn8RIMFdLpc/9PncQF0ul7/0+dxAXS6XPyqVSkBdLpe/KpVKQF0ul79dLldAXS6Xv/j7nUAmk8m/XS5XQCaTyb/4+51A8Pf7v5PJhEBZLFbBAgVVQFksVsFGo9E+v9/PwAIFVUC/38/ARqPRPiaTyT8Wi0W/XS6XPxaLRb8mk8k/Ho/Hv10ulz8ej8e/8Pf7v5PJhEAmk8m/XS5XQCaTyb/4+51AXS6Xv/j7nUBdLpe/XS5XQL/fz8BE9e0/WSxWwUT17T+/38/A3rPWPlksVsHes9Y+8Pf7P5PJhEAmk8k/+PudQCaTyT9dLldAXS6XP10uV0BdLpc/+PudQF0ul78Wi0W/JpPJvxaLRb9dLpe/Ho/HvyaTyb8ej8e/JpPJPxaLRb9dLpc/FotFvyaTyT8ej8e/XS6XPx6Px79dLpe/FotFvyaTyb8Wi0W/XS6Xvx6Px78mk8m/Ho/Hv10ulz/4+51AXS6XP10uV0Amk8k/+PudQCaTyT9dLldA8Pf7P5PJhEBZLFZBRqPRPlksVkECBVVAv9/PQEaj0T6/389AAgVVQFksVkHes9Y+WSxWQUT17T+/389A3rPWPr/fz0BE9e0/z2sIQL/f70DPawhAWSxmQc9rCMC/3+9Az2sIwFksZkEmk0k/ZTKZPyaTST8qlUpAI5NJvmUymT8jk0m+LpcLQNKTNMAqlUpAfpQfwC6XC0BdLpc/LpcLQF0ul78ulwtAXS6XP2UymT9dLpe/ZTKZP10ul7/8KL+/XS6XP/wov79dLpe/N5tNP10ulz83m00/XS6Xvx5QgEFdLpe/Uof9QF0ulz8eUIBB8IgOv1KH/UBdLpc/Uof9QF0ulz8Coow+XS6XvwKijD5dLpc/Ho/Hv10ul78ej8e/XS6XP71eX8FdLpc/IpHowF0ul7+9Xl/BXS6XvyKR6MBdLpc/5oQNQV0ulz/I5ntBXS6Xv+aEDUFdLpe/yOZ7QV0ul7+LxcLAXS6Xv71eX8FdLpc/i8XCwF0ulz+9Xl/B3m6HwRq0oT6LxWLBGrShPt5uh8GKLvU+i8ViwYou9T7ebodBfD9gP4vFYkF8P2A/3m6HQUSCNj+LxWJBRII2P4vFYkEAqiS93m6HQQCqJL2LxWJBwJT7Pd5uh0HAlPs93m6HwdDhK77ebofBWGupvovFYsHQ4Su+i8ViwVhrqb6LxWLBfD9gP95uh8F8P2A/i8ViwUSCNj/ebofBRII2P95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HwQCqJL2LxWLBAKokvd5uh8HAlPs9i8ViwcCU+z3ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vovFYsGKLvU+3m6HwYou9T6LxWLBGrShPt5uh8EatKE+3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebofBKC+/vt5uh8HMVAm/i8ViwSgvv76LxWLBzFQJv4vFYkGI6SM/3m6HQYjpIz+LxWJBONhyP95uh0E42HI/i8ViwcCU+z3ebofBwJT7PYvFYsEAqiS93m6HwQCqJL3ebodBwJT7PYvFYkHAlPs93m6HQQCqJL2LxWJBAKokvYvFYkFEgjY/3m6HQUSCNj+LxWJBfD9gP95uh0F8P2A/i8ViwQEwDT/ebofBATANP4vFYsFEBXk+3m6HwUQFeT7ebofB0OErvt5uh8FYa6m+i8ViwdDhK76LxWLBWGupvt5uh8FEgjY/i8ViwUSCNj/ebofBfD9gP4vFYsF8P2A/3m6HQYou9T6LxWJBii71Pt5uh0EatKE+i8ViQRq0oT7ebodB9pEkv95uh0F8qfW+i8ViQfaRJL+LxWJBfKn1vt5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/i8ViQRq0oT7ebodBGrShPovFYkGKLvU+3m6HQYou9T6LxWLBUC1IPt5uh8FQLUg+i8ViweAa573ebofB4Brnvd5uh8F8qfW+3m6HwfaRJL+LxWLBfKn1vovFYsH2kSS/3m6HwSgvv77ebofBzFQJv4vFYsEoL7++i8ViwcxUCb+LxWLBONhyP95uh8E42HI/i8ViwYjpIz/ebofBiOkjP95uh0HMVAm/3m6HQSgvv76LxWJBzFQJv4vFYkEoL7++3m6HQVhrqb7ebodB0OErvovFYkFYa6m+i8ViQdDhK77ebodBATANP4vFYkEBMA0/3m6HQUQFeT6LxWJBRAV5Pt5uh0E42HI/i8ViQTjYcj/ebodBiOkjP4vFYkGI6SM/3m6HwYjpIz+LxWLBiOkjP95uh8E42HI/i8ViwTjYcj9dLpe/CIPBvvD3+78Ig8G+XS6Xv+jz+b/w9/u/6PP5v/D3+z9MJhO/8Pf7PyqVqkBdLpc/TCYTv10ulz8qlapA8Pf7v8j3EEHw9/u/UaXjQPD3+z/I9xBB8Pf7P1Gl40DebofB4BrnvYvFYsHgGue93m6HwVAtSD6LxWLBUC1IPt5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+3m6HwQR40L7ebofBsio3v4vFYsEEeNC+i8ViwbIqN7/ebofBsP2Zvt5uh8GI7Ru/i8ViwbD9mb6LxWLBiO0bv95uh8Gw/Zm+3m6HwYjtG7+LxWLBsP2ZvovFYsGI7Ru/3m6HwUQFeT6LxWLBRAV5Pt5uh8EBMA0/i8ViwQEwDT/I9wDBCIPBvsj3AMGIw2HAUaXDwAiDwb5RpcPAiMNhwPD3+z8Ig8G+XS6XPwiDwb7w9/s/6PP5v10ulz/o8/m/KpWKQAiDwb7w93tAHo/HvyqVikDo8/m/JpPJv+jz+b9dLhdAHo/Hv10uF0AWi0W/8Pd7QBaLRb8mk8m/CIPBvt5uh8EEeNC+3m6HwbIqN7+LxWLBBHjQvovFYsGyKje/yPcAQYjDYcDI9wBBCIPBvlGlw0CIw2HAUaXDQAiDwb7w9/u/KpWqQPD3+79MJhO/XS6XvyqVqkBdLpe/TCYTv10ul78Ig8G+8Pf7vwiDwb5dLpe/6PP5v/D3+7/o8/m/XS6XPyqVqkBdLpc/TCYTv/D3+z8qlapA8Pf7P0wmE7/w93vAHo/Hv/D3e8AWi0W/KpWKwAiDwb4mk8k/CIPBvl0uF8AWi0W/JpPJP+jz+b8qlYrA6PP5v10uF8Aej8e/8Pf7PwiDwb5dLpc/CIPBvvD3+z/o8/m/XS6XP+jz+b9dLpe/TCYTv10ul78qlapA8Pf7v0wmE7/w9/u/KpWqQN5uh8HA/cK93m6HwdCczr6LxWLBwP3CvYvFYsHQnM6+i8ViQUQFeT7ebodBRAV5PovFYkEBMA0/3m6HQQEwDT/ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0GI7Ru/3m6HQbD9mb6LxWJBiO0bv4vFYkGw/Zm+3m6HQbIqN7/ebodBBHjQvovFYkGyKje/i8ViQQR40L7ebodBsio3v95uh0EEeNC+i8ViQbIqN7+LxWJBBHjQvovFYkHgGue93m6HQeAa572LxWJBUC1IPt5uh0FQLUg+3m6HQYjtG7/ebodBsP2ZvovFYkGI7Ru/i8ViQbD9mb7ebodB0JzOvt5uh0HA/cK9i8ViQdCczr6LxWJBwP3Cvd5uh0FQLUg+i8ViQVAtSD7ebodB4BrnvYvFYkHgGue9XS4XPwA/sL9dLhe/AD+wv10uFz9M+mTAXS4Xv0z6ZMBdLhc/OBqkvl0uF784GqS+XS4XPxNeIcBdLhe/E14hwL1eb8CIw2HAwmAwwL/fr8BX8SjAiMNhwFlyCcDCYJDAj8ejQL/fr8BbUJBAwmCQwNoPoECIw2HAjUbDQIjDYcBdLhc/FAlQv10uF78UCVC/XS4XP1bf9L9dLhe/Vt/0v10uF7/CYHBAXS4Xv4/Hg8BdLhc/wmBwQF0uFz+Px4PAvV5vQIjDYcBX8ShAiMNhwMJgMEC/36/AWXIJQMJgkMCPx6PAv9+vwFtQkMDCYJDA2g+gwIjDYcCNRsPAiMNhwF0uFz+2oGDAXS4XP1lySUBdLhe/tqBgwF0uF79ZcklAXS4XP/w8779dLhe//Dzvv10uFz/kCz7AXS4Xv+QLPsBdLpc/D4sBQV0ul78PiwFBXS6XPx2TfEBdLpe/HZN8QF0ulz/WLDpAXS6Xv9YsOkBdLpc/HI3vP10ul78cje8/XS6XP4t2FUFdLpe/i3YVQV0ulz9+dEdAXS6Xv350R0DwiA4/fnRHQF0ulz+KROLAXS6XPyKRSMBdLpe/ikTiwF0ul78ikUjAKpUKQGUymT/CYDBAZTKZP41Gw0BlMpk/kUiEQI1G40BFIgFBjUbjQCqVCsBlMpk/jUbDwGUymT+RSITAjUbjQEUiAcGNRuNAAACgKGDQSz05hyW+QErpPDmHJT5ASuk8UuOfPsDrCr1S45++wOsKvaEd4r7wXQi+oR3iPvBdCL6Qdwo/SGmGvpB3Cr9IaYa+n3AaP/yI076fcBq//IjTvlLjHz9MJhO/UuMfv0wmE7+fcBq/Gog8v59wGj8aiDy/kHcKv/YXY7+Qdwo/9hdjv6Ed4r6OGoK/oR3iPo4agr9S458+7s6Ov1Ljn77uzo6/OYclvnbLlr85hyU+dsuWvwAAoCjQhJm/8Pf7P1ksZkHw9/s/v9/vQCaTSUBZLGZBJpNJQL/f70DPawhALBaLQM9rCMAsFotAJpNJQAIFVUAmk0nAAgVVQPD3+z8qlUpAJpNJQEaj0T7w9/s/RqPRPvD3+78qlUpAJpNJwEaj0T7w9/u/RqPRPs9rCMAsFotAJpNJwAIFVUDPawhALBaLQCaTSUACBVVA8Pf7PyqVSkAmk0lARqPRPvD3+z9Go9E+8Pf7vyqVSkAmk0nARqPRPvD3+79Go9E+JpNJwFksZkEmk0nAv9/vQPD3+79ZLGZB8Pf7v7/f70CLxeLAZTKZP5FIBMEej8e/i8XiwL1eL8C9Xm/BvV4vwL1eb8Eej8e/kUgEwQKijD69Xm/BKpVKQL1eb8HaVPk/i8XiQL1eL8CRSARBAqKMPovF4kBlMpk/vV5vQSqVSkC9Xm9B2lT5P5FIBEEej8e/vV5vQb1eL8C9Xm9BHo/Hv/D3+z9lMpk/XS6XP2UymT/w9/s/iMNhwF0ulz+9Xi/AXS6Xv71eL8Dw9/u/iMNhwPD3+79lMpk/XS6Xv2UymT/HomxAHo/Hv8eibEAWi0W/Q0s0QB6Px79DSzRAFotFv0NLNMAej8e/fOf3vx6Px79DSzTAFotFv3zn978Wi0W/8Pf7vyqVSkBozVU/Nk6FPvD3+z8qlUpAO+2CPwACgTycB5I/+MiJvvD3+z+LxSLAXS4XP1Jo5T6ig5w+7OgQPwAAoChtNhs/XS6XP0wmE7+cB5I/Hmhhvzvtgj9UKpW/aM1VP9p5tL9dLhc/YIDMv6KDnD7Cmtu/AACgKITB4L+ig5y+7OgQP/D3+7+LxSLAooOcvsKa279dLhe/YIDMv2jNVb/aebS/O+2Cv1Qqlb+cB5K/Hmhhv10ul79MJhO/nAeSv/jIib477YK/AAKBPGjNVb82ToU+XS4Xv1Jo5T5dLhe/QSBQQfD3+78MBmNB8Pf7PwwGY0FdLhc/QSBQQV0uFz+pVCpBXS4Xv6lUKkHw9/u/i8XCwF0uF79er5dAXS4XP16vl0BdLhc/V/FoQF0uFz/aD4DAXS4XP41Go8BdLhe/jUajwPD3+z+LxcLAXS4Xv1fxaEBdLhe/2g+AwPD3+z8qlUpAXS6XPyqVSkDw9/s/ZTKZP10ulz9lMpk/8Pf7P1ksZkHw9/s/i8VyQfD3+79ZLGZB8Pf7v4vFckGLxWJBi8UiwIvFYkEqlUpADAZTQYjDYcBZLFZBRqPRPr/fz0BGo9E+JpNJPyqVSkC/389AKpVKQCqVikAIg8G+KpWKQOjz+b+LxeLAiMNhwCaTyb/o8/m/JpPJvwiDwb4mk0k/ZTKZP4vF4sBlMpk/WSxWQSqVSkDw9/s/ikMIQfD3+7+KQwhB8Pf7P0r840Dw9/u/SvzjQF0ulz+LxcLAXS6XP41Go8DwiA4/i8XCwPCIDj+NRqPAXS6Xv4vFwsBdLpe/jUajwF0ul7+EweC/XS6Xv1Qqlb9dLpe/N5tNP10ulz83m00/XS6XP1Qqlb/w9/u/i8XCwF0ul7+TyeQ/8Pf7v5PJ5D/w9/s/k8nkP/D3+z+LxcLAXS6XP5PJ5D9DSzRAHo/Hv0NLNEAWi0W/fOf3Px6Px7985/c/FotFv8eibMAej8e/Q0s0wB6Px7/HomzAFotFv0NLNMAWi0W/8Pf7P5PJ5D/w9/s/v9/vQF0ulz/GYjFAXS6Xv8ZiMUBdLpe/W63WQF0ulz9brdZA8Pf7v7/f70Dw9/u/k8nkP7/fz8AqlUpAv9/PwEaj0T4mk0m/KpVKQCqVisAIg8G+KpWKwOjz+b8mk0m/ZTKZPyaTyT8Ig8G+i8XiQGUymT+LxeJAiMNhwCaTyT/o8/m/WSxWwUaj0T4MBlPBiMNhwIvFYsGLxSLAWSxWwSqVSkCLxWLBKpVKQF0ul78qlUpA8Pf7vyqVSkBdLpe/ZTKZP/D3+79lMpk/8Pf7P/T5fEDw9/u/9Pl8QPD3+z+Iw2HA8Pf7v4jDYcC9Xm/BiMNhwL1eb8H0+XxA3m6HwYjDYcDebofB9Pl8QL1eb0H0+XxAvV5vQYjDYcDebodB9Pl8QN5uh0GIw2HA8Pf7v71eX8Hw9/u/vN1+wfD3+z+9Xl/B8Pf7P7zdfsHw9/s/vN1+wfD3+z+9Xl/B8Pf7v7zdfsHw9/u/vV5fwfD3+7/0+XxAXS6XPyqVSkDw9/s/9Pl8QPD3+z+Iw2HAXS6XP9pU+T9dLpc/Ho/Hv10ul7/aVPk/XS6XP71eL8BdLpe/vV4vwF0ul78qlUpA8Pf7v4jDYcBdLpe/Ho/Hv8j3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+DAZTwYjDYcDI9wDBiMNhwMj3AMEIg8G+yPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwYjDYcDI9wDBCIPBvgwGU8GIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HAyPcAwQiDwb4MBlPBiMNhwMj3AMGIw2HA"), -"format": 34359742487, -"index_count": 144, -"index_data": PackedByteArray("wgLAAsECxQLDAsQCyALGAscCywLJAsoCzgLMAs0C0QLPAtAC1ALSAtMC1wLVAtYC2QLYAtYC3ALaAtsC3wLdAt4C4gLgAuEC5QLjAuQC6ALmAucC6wLpAuoC7gLsAu0C8QLvAvAC9ALyAvMC9wL1AvYC+gL4AvkC/QL7AvwCAAP+Av8CAwMBAwIDBgMEAwUDCQMHAwgDDAMKAwsDDAMNAw4DEQMPAxADFAMSAxMDFwMVAxYDGgMYAxkDHQMbAxwDIAMeAx8DIwMhAyIDJgMkAyUDKQMnAygDLAMqAysDLwMtAy4DMgMwAzEDNQMzAzQDOAM2AzcDOwM5AzoDPgM8Az0DQQM/A0ADRANCA0MDRwNFA0YDSgNIA0kDTQNLA0wD"), -"material": SubResource("StandardMaterial3D_gwsv0"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("kML1vK1HYb35xZK9kML1vK1HYb0K16M8kML1PK1HYb35xZK9kML1PK1HYb0K16M8kML1PArXo7sK16M8kML1PI7C9bwH16O7kML1PK1HYb0K16M8kML1PK1HYb35xZK9kML1PI7C9bzotIG9kML1PAvXo7sH16O7kMJ1PB+F6z32KJw+kMJ1vB+F6z32KJw+CtcjPDMzMz72KJw+CtcjvDMzMz72KJw+kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1PDMzM77rUTg9kML1PDMzM75cj8I9kML1vDMzM77rUTg9kML1PDMzM77rUTg9kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PJqZGb7hehQ+kML1PK1HYb3hehQ+kML1PDMzM75cj8I9kML1PK1HYb3rUTg9kML1PDMzM77rUTg9CtcjvDMzMz72KJw+CtcjvDMzMz7NzIw+CtcjPDMzMz72KJw+CtcjPDMzMz7NzIw+kMJ1PB+F6z32KJw+CtcjPDMzMz72KJw+kMJ1PB+F6z1H4Xo+CtcjPDMzMz7NzIw+kML1vK1HYb3hehQ+kML1vJqZGb7hehQ+kML1vK1HYb3rUTg9kML1vDMzM75cj8I9kML1vDMzM77rUTg9kML1vDMzM75cj8I9kML1vJqZGb7hehQ+kML1PDMzM75cj8I9kML1PJqZGb7hehQ+CtcjvDMzMz72KJw+kMJ1vB+F6z32KJw+CtcjvDMzMz7NzIw+kMJ1vB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+kMJ1PB+F6z1H4Xo+CtcjvDMzMz7NzIw+CtcjPDMzMz7NzIw+kML1PJqZGb7hehQ+kML1vJqZGb7hehQ+kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+kML1POtROD2QwnU9kML1POtROD3NzMw9CtcjPetROD2QwnU9CtcjPetROD3NzMw9zcxMPetROD0K16M9CtejPQc/cr17FK4+CtejPZDCdTx7FK4+CtejPQc/cr3C9Sg+CtejPZDCdTzC9Sg+CtcjvetROD2QwnU9kML1vOtROD2QwnU9CtcjvbgehT2QwnU9kML1vLgehT2QwnU9zcxMvbgehT0K16M9CtcjvbgehT2QwnU9CtcjvbgehT3NzMw9kML1vLgehT3NzMw9kML1vLgehT2QwnU9JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+CtejPQc/cr3C9Sg+CtejPQc/cr17FK4+zcxMvetROD0K16M9CtcjvetROD3NzMw9CtcjvetROD2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vOtROD3NzMw9CtcjvetROD3NzMw9kML1vLgehT3NzMw9CtcjvbgehT3NzMw9CtcjPetROD3NzMw9kML1POtROD3NzMw9CtcjPbgehT3NzMw9kML1PLgehT3NzMw9kML1POtROD2QwnU9CtcjPetROD2QwnU9kML1PLgehT2QwnU9CtcjPbgehT2QwnU9kML1PLgehT3NzMw9kML1PLgehT2QwnU9CtcjPbgehT3NzMw9CtcjPbgehT2QwnU9zcxMPbgehT0K16M9CtejvZDCdTx7FK4+CtejvQc/cr17FK4+CtejvZDCdTzC9Sg+CtejvQc/cr3C9Sg+CtejvQc/cr17FK4+JMRdvXsUrr17FK4+CtejvQc/cr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr3C9Sg+JMRdvXsUrr17FK4+JMRdPXsUrr3C9Sg+JMRdPXsUrr17FK4+kML1vArXo7sK16M8kML1vK1HYb0K16M8kML1vAvXo7sH16O7kML1vI7C9bwH16O7kML1vK1HYb35xZK9kML1vI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vAvXo7sH16O7kML1PAvXo7sH16O7kML1vI7C9bzotIG9kML1PI7C9bzotIG9kML1vI7C9bwH16O7kML1PI7C9bwH16O7kML1vK1HYb1cj8K+kML1vArXo7vrUTi+kML1PK1HYb1cj8K+a7RnvArXo7vrUTi+kML1PArXo7vrUTi+kML1vHLsljw9Cle+kML1PHLsljw9Cle+kML1vLgehT09Cle+kML1PLgehT09Cle+kML1vLgehT1cj8K+kML1vLgehT09Cle+kML1PLgehT1cj8K+kML1PLgehT09Cle+kML1vHLsljw9Cle+kML1vIQ8xbxcj8K+kML1PHLsljw9Cle+kML1PIQ8xbxcj8K+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1PFyPwj3rUTi+kML1PFyPwj1cj8K++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+cMk3PGbJUT3rUbg+cMk3PGbJUT32KNw+cMk3vFzJ6zz2KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zzrUbg+jxdhvMxZAz3rUbg+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+uw57PLcFEz32KNw+jxdhPMxZAz32KNw+uw57PLcFEz3rUbg+jxdhPMxZAz3rUbg+cMk3vFzJ6zz2KNw+cMk3vFzJ6zzrUbg++vQBvEwi1zz2KNw++vQBvEwi1zzrUbg+uw57PFyoND32KNw++vSBPArXIz32KNw+uw57PFyoND3rUbg++vSBPArXIz3rUbg++vQBvO4cXD3rUbg++vQBvO4cXD32KNw+lYqGu7maYj3rUbg+lYqGu7maYj32KNw+jxdhPMxZAz32KNw+cMk3PFzJ6zz2KNw+jxdhPMxZAz3rUbg+cMk3PFzJ6zzrUbg+uw57vFyoND32KNw+jxdhvElURD32KNw+uw57vFyoND3rUbg+jxdhvElURD3rUbg+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+cMk3vGbJUT3rUbg+cMk3vGbJUT32KNw++vQBvO4cXD3rUbg++vQBvO4cXD32KNw++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg+cMk3PFzJ6zz2KNw+cMk3PFzJ6zzrUbg+SgwCJojRZD3rUbg+SgwCJojRZD32KNw+lYqGO7maYj3rUbg+lYqGO7maYj32KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+jxdhvElURD32KNw+cMk3vGbJUT32KNw+jxdhvElURD3rUbg+cMk3vGbJUT3rUbg+lYqGu7cmyjz2KNw+lYqGu7cmyjzrUbg+SgwCJhq5xTz2KNw+SgwCJhq5xTzrUbg+lYqGO7cmyjz2KNw+lYqGO7cmyjzrUbg++vQBPEwi1zz2KNw++vQBPEwi1zzrUbg++vSBPArXIz32KNw+uw57PLcFEz32KNw++vSBPArXIz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz32KNw++vSBvArXIz32KNw+uw57vLcFEz3rUbg++vSBvArXIz3rUbg+lYqGO7maYj3rUbg+lYqGO7maYj32KNw++vQBPO4cXD3rUbg++vQBPO4cXD32KNw+kMJ1PPGwZTzrUbg+kMJ1PPGwZTz2KNw+UMetPMXmmTzrUbg+UMetPMXmmTz2KNw++vSBvArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz3rUbg+uw57vFyoND3rUbg+jxdhvMxZAz32KNw+uw57vLcFEz32KNw+jxdhvMxZAz3rUbg+uw57vLcFEz3rUbg+SgwCJgrXIzzrUbg+SgwCJgrXIzz2KNw+8W3+O5CWNDzrUbg+8W3+O5CWNDz2KNw+jxdhPElURD32KNw+uw57PFyoND32KNw+jxdhPElURD3rUbg+uw57PFyoND3rUbg+cMk3PGbJUT32KNw+jxdhPElURD32KNw+cMk3PGbJUT3rUbg+jxdhPElURD3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+8W3+uzhEjT32KNw+8W3+uzhEjT3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+SgwCJilcjz32KNw+SgwCJilcjz3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kML1vClcDz0K1yO9zcxMvSlcDz0K1yO9kML1vJqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT0K1yO9zcxMvZqZmT2tR+E9kML1vJqZmT0K1yO9kML1vJqZmT2tR+E9zcxMvR+F6z10plE+zcxMvR+F6z1YBR8+zcxMPR+F6z10plE+zcxMPR+F6z1YBR8+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+UMetPLK6ej32KNw+UMetPLK6ej3rUbg+nNXUPK1HYT32KNw+UMetPLK6ej32KNw+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+y2LtPEwJBD32KNw+kML1PArXIz32KNw+y2LtPEwJBD3rUbg+kML1PArXIz3rUbg+y2LtPMikQz32KNw+nNXUPK1HYT32KNw+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+nNXUPM3MzDz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+8W3+OzhEjT32KNw+8W3+OzhEjT3rUbg+kMJ1POwghz32KNw+kMJ1POwghz3rUbg+zcxMPSlcDz10plE+zcxMPR+F6z10plE+zcxMPSlcDz1YBR8+zcxMPR+F6z1YBR8+zcxMvSlcDz2tR+E9kML1vClcDz2tR+E9zcxMvZqZmT2tR+E9kML1vJqZmT2tR+E9kML1vClcDz2tR+E9kML1vLgehT3NzMw9kML1vJqZmT2tR+E9kML1vJqZmT0K1yO9kML1vLgehT2QwnU9kML1vOtROD2QwnU9kML1vOtROD3NzMw9kML1vClcDz0K1yO9kML1PArXIz32KNw+y2LtPMikQz32KNw+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+zcxMvR+F6z10plE+zcxMvSlcDz10plE+zcxMvR+F6z1YBR8+zcxMvSlcDz1YBR8+zcxMvSlcDz2tR+E9zcxMvSlcDz0K1yO9kML1vClcDz2tR+E9kML1vClcDz0K1yO9kML1PClcDz2tR+E9zcxMPSlcDz2tR+E9kML1PJqZmT2tR+E9zcxMPZqZmT2tR+E9kML1PClcDz2tR+E9kML1PClcDz0K1yO9zcxMPSlcDz2tR+E9zcxMPSlcDz0K1yO9kML1PLgehT3NzMw9kML1POtROD3NzMw9kML1PClcDz2tR+E9kML1PClcDz0K1yO9kML1POtROD2QwnU9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9kML1PLgehT2QwnU9zcxMPSlcDz0K1yO9kML1PClcDz0K1yO9zcxMPZqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT0K1yO9kML1PJqZmT2tR+E9zcxMPZqZmT0K1yO9zcxMPZqZmT2tR+E9UMetPMXmmTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTzrUbg+nNXUPM3MzDzrUbg+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+8W3+u5CWNDzrUbg+8W3+u5CWNDz2KNw+nNXUvM3MzDz2KNw+UMetvMXmmTz2KNw+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+y2LtvEwJBD32KNw+nNXUvM3MzDz2KNw+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+kML1vArXIz32KNw+y2LtvEwJBD32KNw+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+y2LtvMikQz32KNw+kML1vArXIz32KNw+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+UMetvMXmmTzrUbg+UMetvMXmmTz2KNw+kMJ1vPGwZTzrUbg+kMJ1vPGwZTz2KNw+nNXUvK1HYT32KNw+y2LtvMikQz32KNw+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+UMetvLK6ej32KNw+nNXUvK1HYT32KNw+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+UMetvLK6ej32KNw+UMetvLK6ej3rUbg+kMJ1vOwghz32KNw+kMJ1vOwghz3rUbg+kMJ1PB+F6z1cj8I9kMJ1vB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1vML1KD4pXI89kMJ1vB+F6z1SuB6+kMJ1PB+F6z1SuB6+kMJ1vML1KD64HgW+kMJ1PML1KD64HgW+kMJ1PB+F6z1cj8I9kMJ1PML1KD4pXI89kMJ1PB+F6z0QUYk9kMJ1PClcDz7tbl89kMJ1PML1KD64HgW+kMJ1PClcDz6+mOq9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1PB+F6z0sGQK+kMJ1vB+F6z0sGQK+kMJ1PClcDz6+mOq9kMJ1vClcDz6+mOq9kMJ1vML1KD4pXI89kMJ1vML1KD64HgW+kMJ1PML1KD4pXI89kMJ1PML1KD64HgW+kMJ1vB+F6z1cj8I9kMJ1vB+F6z0QUYk9kMJ1vML1KD4pXI89kMJ1vClcDz7tbl89kMJ1vML1KD64HgW+kMJ1vClcDz6+mOq9kMJ1vB+F6z0sGQK+kMJ1vB+F6z1SuB6+kMJ1vClcDz6+mOq9kMJ1vClcDz7tbl89kMJ1PClcDz6+mOq9kMJ1PClcDz7tbl89kMJ1vB+F6z0QUYk9kMJ1PB+F6z0QUYk9kMJ1vClcDz7tbl89kMJ1PClcDz7tbl89kML1PFK4Hr49Cte9kML1vFK4Hr49Cte9kML1PK1HYb35xZK9kML1vK1HYb35xZK9kML1PI7C9bzotIG9kML1vI7C9bzotIG9kML1PArXo7utR2G9kML1vArXo7utR2G9kML1vFK4Hr6G61G+kML1PFK4Hr6G61G+kML1vArXo7tSuB6+kML1PArXo7tSuB6+a7RnvArXo7tSuB6+kML1vFK4Hr6G61G+kML1vFK4Hr49Cte9kML1PFK4Hr6G61G+kML1PFK4Hr49Cte9kML1PArXo7utR2G9kML1PArXo7spXI+9kML1PArXo7tSuB6+kML1PFK4Hr49Cte9kML1PFK4Hr6G61G+kML1vArXo7utR2G9kML1vArXo7tSuB6+kML1vFK4Hr49Cte9kML1vFK4Hr6G61G+SgwCJhq5xTzrUbg+lYqGu7cmyjzrUbg+lYqGO7cmyjzrUbg++vQBPEwi1zzrUbg++vQBvEwi1zzrUbg+cMk3vFzJ6zzrUbg+cMk3PFzJ6zzrUbg+jxdhPMxZAz3rUbg+jxdhvMxZAz3rUbg+uw57PLcFEz3rUbg+uw57vLcFEz3rUbg++vSBPArXIz3rUbg++vSBvArXIz3rUbg+uw57vFyoND3rUbg+uw57PFyoND3rUbg+jxdhvElURD3rUbg+jxdhPElURD3rUbg+cMk3vGbJUT3rUbg+cMk3PGbJUT3rUbg++vQBPO4cXD3rUbg++vQBvO4cXD3rUbg+lYqGu7maYj3rUbg+lYqGO7maYj3rUbg+SgwCJojRZD3rUbg+zcxMPZDCdTx7FK4+zcxMPZDCdTzC9Sg+CtejPZDCdTx7FK4+CtejPZDCdTzC9Sg+JMRdPXsUrr17FK4+JMRdvXsUrr17FK4+CtejPQc/cr17FK4+CtejvQc/cr17FK4+zcxMPa1HYb17FK4+CtejPZDCdTx7FK4+zcxMPZDCdTx7FK4+zcxMva1HYb17FK4+CtejvZDCdTx7FK4+zcxMvZDCdTx7FK4+JMRdPXsUrr3C9Sg+CtejPQc/cr3C9Sg+JMRdvXsUrr3C9Sg+CtejvQc/cr3C9Sg+zcxMva1HYb3C9Sg+CtejvZDCdTzC9Sg+zcxMvZDCdTzC9Sg+zcxMPa1HYb3C9Sg+CtejPZDCdTzC9Sg+zcxMPZDCdTzC9Sg+CtejvZDCdTx7FK4+CtejvZDCdTzC9Sg+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+kML1vArXo7vrUTi+kML1vLgehT09Cle+kML1vFyPwj3rUTi+kML1vFyPwj1cj8K+kML1vLgehT1cj8K+kML1vHLsljw9Cle+kML1vK1HYb1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj3rUTi+kML1PHLsljw9Cle+kML1PArXo7vrUTi+kML1PK1HYb1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT09Cle+kML1PFyPwj1cj8K+kML1PLgehT1cj8K+zcxMvQrXo7vrUTi+kML1vArXo7vrUTi+zcxMvR+F6z3rUTi+kML1vFyPwj3rUTi+kML1PFyPwj3rUTi+zcxMPR+F6z3rUTi+zcxMPQrXo7vrUTi+kML1PArXo7vrUTi+zcxMvbgehT0K16M9zcxMvetROD0K16M9CtcjvbgehT2QwnU9CtcjvetROD2QwnU9CtcjPbgehT3NzMw9zcxMPbgehT0K16M9CtcjPetROD3NzMw9zcxMPetROD0K16M9zcxMva1HYb3rUbg+UMetPMXmmTzrUbg+zcxMPa1HYb3rUbg+nNXUPM3MzDzrUbg+y2LtPEwJBD3rUbg+zcxMPetRuD3rUbg+kMJ1PPGwZTzrUbg+8W3+O5CWNDzrUbg+SgwCJgrXIzzrUbg+kML1PArXIz3rUbg+y2LtPMikQz3rUbg+nNXUPK1HYT3rUbg+UMetPLK6ej3rUbg+kMJ1POwghz3rUbg+8W3+OzhEjT3rUbg+SgwCJilcjz3rUbg+8W3+u5CWNDzrUbg+zcxMvetRuD3rUbg+8W3+uzhEjT3rUbg+kMJ1vOwghz3rUbg+UMetvLK6ej3rUbg+nNXUvK1HYT3rUbg+y2LtvMikQz3rUbg+kML1vArXIz3rUbg+y2LtvEwJBD3rUbg+nNXUvM3MzDzrUbg+UMetvMXmmTzrUbg+kMJ1vPGwZTzrUbg+kMJ1vB+F6z32KJw+zcxMvR+F6z0fhas+zcxMPR+F6z0fhas+kMJ1PB+F6z32KJw+kMJ1PB+F6z1H4Xo+kMJ1vB+F6z1H4Xo+zcxMvR+F6z3rUTi+kMJ1vB+F6z1cj8I9kMJ1PB+F6z1cj8I9kMJ1PB+F6z0QUYk9kMJ1PB+F6z0sGQK+kMJ1PB+F6z1SuB6+kMJ1vB+F6z1SuB6+zcxMPR+F6z3rUTi+kMJ1vB+F6z0QUYk9kMJ1vB+F6z0sGQK+zcxMva1HYb0K16M8kML1vK1HYb0K16M8zcxMvQrXo7sK16M8kML1vArXo7sK16M8zcxMva1HYb17FK4+zcxMva1HYb3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+zcxMvetRuD3rUbg+zcxMva1HYb3rUbg+zcxMvR+F6z0fhas+zcxMvZDCdTx7FK4+zcxMvZDCdTzC9Sg+zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+zcxMvSlcDz2tR+E9zcxMvZqZmT2tR+E9zcxMvR+F6z3rUTi+zcxMvZqZmT0K1yO9zcxMvSlcDz0K1yO9zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+zcxMva1HYb17FK4+zcxMPetRuD3rUbg+zcxMvetRuD3rUbg+zcxMPR+F6z0fhas+zcxMvR+F6z0fhas+kML1vArXo7vrUTi+kML1vArXo7tSuB6+a7RnvArXo7vrUTi+a7RnvArXo7tSuB6+kML1PArXo7vrUTi+kML1PArXo7tSuB6+kML1PArXo7spXI+9kML1PArXo7utR2G9kML1PAvXo7sH16O7kML1vAvXo7sH16O7kML1vArXo7utR2G9zcxMPQrXo7vrUTi+kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvQrXo7sK16M8zcxMvQrXo7vrUTi+kML1vArXo7sK16M8CtcjvbgehT3NzMw9CtcjvetROD3NzMw9zcxMvbgehT0K16M9zcxMvetROD0K16M9zcxMPbgehT0K16M9CtcjPbgehT2QwnU9zcxMPetROD0K16M9CtcjPetROD2QwnU9zcxMva1HYb0K16M8zcxMva1HYb3C9Sg+kML1vK1HYb3rUTg9kML1PK1HYb3rUTg9kML1PK1HYb3hehQ+kML1vK1HYb3hehQ+zcxMPa1HYb3C9Sg+zcxMPa1HYb0K16M8zcxMPa1HYb3C9Sg+zcxMPZDCdTzC9Sg+zcxMPa1HYb0K16M8zcxMPSlcDz2tR+E9zcxMPZqZmT2tR+E9zcxMPQrXo7sK16M8zcxMPSlcDz0K1yO9zcxMPQrXo7vrUTi+zcxMPR+F6z3rUTi+zcxMPZqZmT0K1yO9zcxMPZDCdTx7FK4+zcxMPR+F6z0fhas+zcxMPetRuD3rUbg+zcxMPa1HYb17FK4+zcxMPa1HYb3rUbg+kML1PK1HYb0K16M8zcxMPa1HYb0K16M8kML1PArXo7sK16M8zcxMPQrXo7sK16M8zcxMvZqZmb32KNy+zcxMPZqZmb32KNy+zcxMvR+F6z32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvZqZmb1cj8K+zcxMvR+F6z32KNy+zcxMvZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+zcxMPZqZmb32KNy+zcxMPR+F6z32KNy+zcxMvR+F6z1cj8K+zcxMvR+F6z32KNy+zcxMPR+F6z1cj8K+zcxMPR+F6z32KNy+zcxMvZqZmb32KNy+zcxMvZqZmb1cj8K+zcxMPZqZmb32KNy+zcxMPZqZmb1cj8K+zcxMvZqZmb1cj8K+kML1PK1HYb1cj8K+zcxMPZqZmb1cj8K+zcxMPR+F6z1cj8K+kML1PIQ8xbxcj8K+kML1PLgehT1cj8K+kML1vIQ8xbxcj8K+kML1PFyPwj1cj8K+kML1vFyPwj1cj8K+kML1vK1HYb1cj8K+zcxMvR+F6z1cj8K+kML1vLgehT1cj8K+SgwCJgrXIzz2KNw+8W3+u5CWNDz2KNw+8W3+O5CWNDz2KNw+kMJ1PPGwZTz2KNw+8W3+O5CWNDz2KNw+8W3+u5CWNDz2KNw+kMJ1vPGwZTz2KNw+kMJ1PPGwZTz2KNw+8W3+u5CWNDz2KNw+UMetPMXmmTz2KNw+kMJ1PPGwZTz2KNw+kMJ1vPGwZTz2KNw+UMetvMXmmTz2KNw+UMetPMXmmTz2KNw+kMJ1vPGwZTz2KNw+nNXUPM3MzDz2KNw+UMetPMXmmTz2KNw+UMetvMXmmTz2KNw+SgwCJhq5xTz2KNw+nNXUPM3MzDz2KNw+UMetvMXmmTz2KNw+lYqGO7cmyjz2KNw+nNXUPM3MzDz2KNw+SgwCJhq5xTz2KNw++vQBPEwi1zz2KNw+lYqGO7cmyjz2KNw+y2LtPEwJBD32KNw+nNXUPM3MzDz2KNw++vQBPEwi1zz2KNw+cMk3PFzJ6zz2KNw+y2LtPEwJBD32KNw++vQBPEwi1zz2KNw+jxdhPMxZAz32KNw+y2LtPEwJBD32KNw+cMk3PFzJ6zz2KNw+uw57PLcFEz32KNw+y2LtPEwJBD32KNw+jxdhPMxZAz32KNw+kML1PArXIz32KNw+y2LtPEwJBD32KNw+uw57PLcFEz32KNw++vSBPArXIz32KNw+kML1PArXIz32KNw+uw57PLcFEz32KNw+y2LtPMikQz32KNw+kML1PArXIz32KNw++vSBPArXIz32KNw+uw57PFyoND32KNw+y2LtPMikQz32KNw++vSBPArXIz32KNw+jxdhPElURD32KNw+y2LtPMikQz32KNw+uw57PFyoND32KNw+nNXUPK1HYT32KNw+y2LtPMikQz32KNw+jxdhPElURD32KNw+cMk3PGbJUT32KNw+nNXUPK1HYT32KNw+jxdhPElURD32KNw++vQBPO4cXD32KNw+nNXUPK1HYT32KNw+cMk3PGbJUT32KNw+lYqGO7maYj32KNw+nNXUPK1HYT32KNw++vQBPO4cXD32KNw+UMetPLK6ej32KNw+nNXUPK1HYT32KNw+lYqGO7maYj32KNw+SgwCJojRZD32KNw+UMetPLK6ej32KNw+lYqGO7maYj32KNw+UMetvMXmmTz2KNw+nNXUvM3MzDz2KNw+SgwCJhq5xTz2KNw+lYqGu7cmyjz2KNw+SgwCJhq5xTz2KNw+nNXUvM3MzDz2KNw++vQBvEwi1zz2KNw+lYqGu7cmyjz2KNw+y2LtvEwJBD32KNw++vQBvEwi1zz2KNw+nNXUvM3MzDz2KNw+cMk3vFzJ6zz2KNw++vQBvEwi1zz2KNw+y2LtvEwJBD32KNw+jxdhvMxZAz32KNw+cMk3vFzJ6zz2KNw+y2LtvEwJBD32KNw+uw57vLcFEz32KNw+jxdhvMxZAz32KNw+y2LtvEwJBD32KNw+kML1vArXIz32KNw+uw57vLcFEz32KNw+y2LtvEwJBD32KNw++vSBvArXIz32KNw+uw57vLcFEz32KNw+kML1vArXIz32KNw+uw57vFyoND32KNw++vSBvArXIz32KNw+kML1vArXIz32KNw+y2LtvMikQz32KNw+uw57vFyoND32KNw+kML1vArXIz32KNw+jxdhvElURD32KNw+uw57vFyoND32KNw+y2LtvMikQz32KNw+nNXUvK1HYT32KNw+jxdhvElURD32KNw+y2LtvMikQz32KNw+cMk3vGbJUT32KNw+jxdhvElURD32KNw+nNXUvK1HYT32KNw++vQBvO4cXD32KNw+cMk3vGbJUT32KNw+nNXUvK1HYT32KNw+lYqGu7maYj32KNw++vQBvO4cXD32KNw+nNXUvK1HYT32KNw+UMetvLK6ej32KNw+lYqGu7maYj32KNw+nNXUvK1HYT32KNw+SgwCJojRZD32KNw+lYqGu7maYj32KNw+UMetvLK6ej32KNw+UMetPLK6ej32KNw+SgwCJojRZD32KNw+UMetvLK6ej32KNw+kMJ1POwghz32KNw+UMetPLK6ej32KNw+UMetvLK6ej32KNw+kMJ1vOwghz32KNw+kMJ1POwghz32KNw+UMetvLK6ej32KNw+8W3+OzhEjT32KNw+kMJ1POwghz32KNw+kMJ1vOwghz32KNw+8W3+uzhEjT32KNw+8W3+OzhEjT32KNw+kMJ1vOwghz32KNw+SgwCJilcjz32KNw+8W3+OzhEjT32KNw+8W3+uzhEjT32KNw+/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAm9tiJAAAAgCb22IkAAACAJvbYiQAAAIAm9tiJAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f6oqAAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgNgJ2IkAAACA2AnYiQAAAIDYCdiJAAAAgNgJ2IkAAACAVNX//wAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3+ZGQAAAID/f5kZAAAAgP9/mRkAAACA/3+ZGQAAAID/f5kZAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICZmf//AAAAgJmZ//8AAACAmZn//wAAAICZmf//AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA2a4l0QAAAIDZriXRAAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVR2S4AAACAJVHZLgAAAID/P/8/AAAAgP8//z8AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgAwbDJsAAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACA/7//vwAAAID/v/+/AAAAgNmuJdEAAACA2a4l0QAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAAAP9/AAAAgNmu2S4AAACA2a7ZLgAAAIAMmwwbAAAAgAybDBsAAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDy5PJkAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA/7//PwAAAID/v/8/AAAAgNmu2S4AAACA2a7ZLgAAAIAlUSXRAAAAgCVRJdEAAACA/z//vwAAAID/P/+/AAAAgP9/AAAAAACA/38AAAAAAIDyZAwbAAAAgPJkDBsAAACADJsMGwAAAIAMmwwbAAAAgNmu2S4AAACA2a7ZLgAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgAyb8uQAAACADJvy5AAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgCVRJdEAAACAJVEl0QAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMGwybAAAAgPLkDJsAAACA////fwAAAIDy5AybAAAAgP///38AAACA8mQMGwAAAIDyZAwbAAAAgCVR2S4AAACAJVHZLgAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgP///38AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACAJdHZrgAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAID/fwAAAAAAgP9/AAAAAACADJsMGwAAAIAMmwwbAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIDZriXRAAAAgNmuJdEAAACA/7//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA8uTyZAAAAID///9/AAAAgPLk8mQAAACA////fwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA8uQMmwAAAID///9/AAAAgPLkDJsAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgCXRJVEAAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgAwb8mQAAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACADBvyZAAAAIAMGwybAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACA/3+qqgAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f1RVAAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f/+/AAAAgP9//78AAACA/3//vwAAAID/f/+/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//3////+//3//f////7//f/9/////v/9//38AAP+//3//fwAA/7//f/9/AAD/v/9//3/kDo24/3//f+QOjbj/f/9/5A6NuP9//38AAP+//3//fwAA/7//f/9/AAD/v/9//3/kDo24/3//f+QOjbj/f/9/5A6NuP9//38AAP+//3//fwAA/7//f/9/AAD/v/9//3/kDo24/3//f+QOjbj/f/9/5A6NuP9//38eBPC9/3//f90BEL//f/9/HgTwvf9//3/dARC//3//f90BEL//f/9/XAgtxP9//39cCC3E/3//f1wILcT/f/9/TBzYsf9//39MHNix/3//f0wc2LH/f/9/1RSUtf9//3/VFJS1/3//f9UUlLX/f/9/YwFNv/9//39jAU2//3//f2MBTb//f/9/DBuFzf9//38MG4XN/3//fwwbhc3/f/9/+xsBsv9//3/6GwGy/3//f/obAbL/f/9/AAD/v/9//38AAP+//3//fwAA/7//f/9/mi8yqP9//3+aLzKo/3//f5ovMqj/f/9/DBt4sv9//38MG3iy/3//fwwbeLL/f/9/YwGxwP9//39jAbHA/3//f2MBscD/f/9/2S6SqP9//3/ZLpKo/3//f9kukqj/f/9/Gxrxsv9//38bGvGy/3//fxsa8bL/f/9/XAjQu/9//39cCNC7/3//f1wI0Lv/f/9/3QHtwP9//3/dAe3A/3//f90B7cD/f/9/yCCbr/9//3/IIJuv/3//f8ggm6//f/9/4Pvwvf9//3/g+/C9/3//f+D78L3/f/9/HgQOwv9//38eBA7C/3//f90B7cD/f/9/3QHtwP9//3/dAe3A/3//f1wI0Lv/f/9/XAjQu/9//39cCNC7/3//f0wcJc7/f/9/TBwlzv9//39MHCXO/3//f9UUasr/f/9/1RRqyv9//3/VFGrK/3//f2MBscD/f/9/YwGxwP9//39jAbHA/3//fwwbeLL/f/9/DBt4sv9//38MG3iy/3//f/sb/M3/f/9/+hv8zf9//3/6G/zN/3//fwAA/7//f/9/AAD/v/9//38AAP+//3//f/obAbL/f/9/+hsBsv9//3/6GwGy/3//fwwbhc3/f/9/DBuFzf9//38MG4XN/3//f2MBTb//f/9/YwFNv/9//39jAU2//3//f9kubNf/f/9/2S5s1/9//3/ZLmzX/3//fxsaDM3/f/9/GxoMzf9//38bGgzN/3//f1wILcT/f/9/XAgtxP9//39cCC3E/3//f90BEL//f/9/3QEQv/9//3/dARC//3//f8ggY9D/f/9/yCBj0P9//3/IIGPQ/3//f8YZ4sz/f/9/xhnizP9//3/GGeLM/3//fwAA/7//f/9/AAD/v/9//38AAP+//3//f+QOjbj/f/9/5A6NuP9//3/kDo24/3//fwAA/7//f/9/AAD/v/9//38AAP+//3//f+QOjbj/f/9/5A6NuP9//3/kDo24/3//fwAA/7//f/9/AAD/v/9//38AAP+/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_tpsog") - -[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_4b68w"] -points = PackedVector3Array(-0.0300078, -0.175, 0.044953, 0.0299922, -0.175, 0.044953, -0.0300078, -0.175, 0.0949569, -0.08, -0.059167, 0.164996, -0.0300078, -0.155026, -0.205067, 0.08, -0.059167, 0.164996, 0.0299922, -0.175, 0.0949569, 0.0299922, -0.155026, -0.205067, -0.0541425, -0.0850333, 0.339926, -0.08, -0.059167, 0.339926, -0.08, 0.0149716, 0.164996, -0.0500078, -0.0750294, -0.43, 0.0499922, -0.0750294, -0.43, 0.08, 0.0149716, 0.164996, 0.08, -0.059167, 0.339926, 0.0541269, -0.0850333, 0.339926, 0, 0.00996967, 0.43, -0.00776821, 0.0109975, 0.43, -0.0150039, 0.0140123, 0.43, -0.0212216, 0.0187745, 0.43, -0.0259828, 0.0249755, 0.43, -0.0289898, 0.0322044, 0.43, -0.0300078, 0.0399814, 0.43, -0.08, 0.0149716, 0.339926, -0.0500078, 0.114977, -0.43, 0.0499922, 0.114977, -0.43, 0.08, 0.0149716, 0.339926, 0.0299922, 0.0399814, 0.43, 0.0289742, 0.0322044, 0.43, 0.0259671, 0.0249755, 0.43, 0.0212059, 0.0187745, 0.43, 0.0149883, 0.0140123, 0.43, 0.00775254, 0.0109975, 0.43, -0.0289898, 0.0477584, 0.43, -0.0500078, 0.0899667, 0.359961, -0.0500078, 0.114977, 0.334959, -0.0150039, 0.164996, -0.130061, -0.0100078, 0.174966, 0.274937, 0.0149883, 0.164996, -0.130061, 0.00999217, 0.174966, 0.274937, 0.0499922, 0.114977, 0.334959, 0.0499922, 0.0899667, 0.359961, 0.0289742, 0.0477584, 0.43, -0.0259828, 0.0549873, 0.43, -0.0100078, 0.174966, 0.30499, -0.0212216, 0.0611883, 0.43, 0.00999217, 0.174966, 0.30499, 0.0212059, 0.0611883, 0.43, 0.0259671, 0.0549873, 0.43, -0.0150039, 0.0659505, 0.43, -0.00776821, 0.0689654, 0.43, 0, 0.0699932, 0.43, 0.00775254, 0.0689654, 0.43, 0.0149883, 0.0659505, 0.43) - -[node name="blasterI" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 13 -script = ExtResource("1_7bvbn") -_weapon_name = "blasterI" -_current_ammo = 30 -_reserve_ammo = 30 - -[node name="blasterD2" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -mesh = SubResource("ArrayMesh_uv12n") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -shape = SubResource("ConvexPolygonShape3D_4b68w") diff --git a/client/template/Spawnable_Objects/Weapons/blaster_L.tscn b/client/template/Spawnable_Objects/Weapons/blaster_L.tscn deleted file mode 100644 index e8cab28..0000000 --- a/client/template/Spawnable_Objects/Weapons/blaster_L.tscn +++ /dev/null @@ -1,143 +0,0 @@ -[gd_scene load_steps=9 format=4 uid="uid://catx2kysw47d8"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_0vlch"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_chq13"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_85lg4"] -resource_name = "dark" -vertex_color_use_as_albedo = true -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fgu6n"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_karnx"] -resource_name = "purple" -vertex_color_use_as_albedo = true -albedo_color = Color(0.804665, 0.693804, 0.98256, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_buocb"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34359742465, -"index_count": 420, -"index_data": PackedByteArray("AgAAAAEAAwACAAEABAADAAEAAQAFAAQACAAGAAcABwAJAAgACQAKAAgACgALAAgADgAMAA0ADQAPAA4ADAALAAoACgANAAwABAAQABEAEQADAAQAEAASABMAEwARABAAEgAGAAgACAATABIAAgAOAA8ADwAAAAIAFgAUABUAFQAXABYAFwAYABYAGwAZABoAGgAcABsAFQAdAB4AHgAXABUAFgAfACAAIAAUABYAGQAhACIAIgAaABkAIgAjABoAHgAdACAAIAAfAB4AHwAkAB4AJgAlABsAGwAnACYAGwAcACcAJwAjACIAIgAmACcAKgAoACkAKQArACoAKwAsACoALAAtACoALQAuACoALgAvACoAMAArACkAMAApADEAMAAxADIAMwAwADIANAAzADIANQA0ADIANgA1ADIAMgA3ADYAKQAoADgAOAA5ACkAPAA6ADsAOwA5ADwAOQA9ADwAOQA4AD0AOAA+AD0APgA/AD0APgBAAD8APgBBAEAAQgA7ADoAQgA6AEMAQgBDAEQAQgBEAEUARgBCAEUARQBHAEYAQgAyADEAMQA7AEIAKQA5ADsAOwAxACkASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUABIAEoASgBRAFAAVABSAFMAUwBVAFQAWABWAFcAVwBZAFgAWwBaAFAAUABRAFsAXgBcAF0AXQBfAF4AVgBgAGEAYQBXAFYAYwBiAFwAXABeAGMAUwBSAGQAZABlAFMAZgBlAGQAZABnAGYAXQBoAGkAaQBfAF0AUABaAEkASQBIAFAASgBLAFsAWwBRAEoAbABqAGsAawBtAGwAawBqAE0ATQBMAGsATgBPAGwAbABtAE4AawBMAE4ATgBtAGsAcABuAG8AbwBxAHAAcQByAHAAcQBzAHIAcwB0AHIAcwB1AHQAdwB2AFcAVwB4AHcAVwBhAHgAWQBXAHYAWAB5AHoAegBWAFgAegB7AFYAewBgAFYASwB0AEYARgBbAEsAdABCAEYARgA3AFsANwBPAFsANwBsAE8ANwAqAGwAKgB1AGwAdAB1AD4AdQAqAD4APgA4AHQAOABCAHQAMgBCADgAOAAoADIAKAA3ADIAKAAqADcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+kML1vEhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1vDbwJT7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+CtcjvDbwJT72KFw+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9zcxMPdnAFz2amRk+zcxMPdnAFz1LN0m+KVyPvV+saT2amRk+KVyPvV+saT1LN0m+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PJMftL0K16O8kML1PJMftL1/seS9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vJMftL1/seS9kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7zjNvKozcxMPakNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+kML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1vJMftL1cj4I+kML1vJMftL1SuB4+kML1vBHxVL5SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8zcxMvRxoRL0K16M+zcxMvVV1ET72KFw+zcxMvVpyG732KFw+zcxMvVpyG70K16O8zcxMvWMJqD2tR2G+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34359742465, -"index_count": 192, -"index_data": PackedByteArray("fgB8AH0AfwB+AH0AgAB/AH0AfQCBAIAAggB8AH4AfgCDAIIAhgCEAIUAhQCHAIYAhwCCAIYAggCDAIYAhgB/AIAAgACEAIYAigCIAIkAiQCLAIoAiQCIAIwAjACNAIkAjgCNAIwAjACPAI4AjgCPAIoAigCLAI4AiAAUACAAIACMAIgAIAAdAIwAHQCPAIwAigCPABQAFACIAIoAjwAVABQAjwAdABUAkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAkgCTAJYAlgCXAJIAlwCVACcAJwCSAJcAJwAcAJIAHAAaAJIAIwAnAJUAlQCQACMAkAAaACMAkACSABoAlQCUAJEAkQCQAJUAmQCYAGAAYAB7AJkAewCaAJkAmgCbAJkAYQCcAJ0AnQB4AGEAnQCeAHgAnQCfAJ4AnQCgAJ8AnABhAGAAYACYAJwAmQCbAKAAoACdAJkAoACbAJoAmgCfAKAAngCfAJoAmgB7AJ4AewB4AJ4AhgCDAH4AfgB/AIYA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+kML1vEhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1vDbwJT7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+CtcjvDbwJT72KFw+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9zcxMPdnAFz2amRk+zcxMPdnAFz1LN0m+KVyPvV+saT2amRk+KVyPvV+saT1LN0m+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PJMftL0K16O8kML1PJMftL1/seS9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vJMftL1/seS9kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7zjNvKozcxMPakNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+kML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1vJMftL1cj4I+kML1vJMftL1SuB4+kML1vBHxVL5SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8zcxMvRxoRL0K16M+zcxMvVV1ET72KFw+zcxMvVpyG732KFw+zcxMvVpyG70K16O8zcxMvWMJqD2tR2G+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34359742465, -"index_count": 294, -"index_data": PackedByteArray("AQAAAIIAggCHAAEACgCCAAAADQAKAAAAAAAPAA0ACgB8AIIACgB9AHwACgAJAH0AAQCHAIUAhQAFAAEABAAFAIUAhQCEAAQAhAAQAAQAhACAABAAgAAGABAABgASABAABwAGAIAAgACBAAcAfQAJAAcABwCBAH0AowChAKIAogCkAKMApAClAKMAowCmAKcApwChAKMAqQCoAKcApwCmAKkApgCqAKkApQCqAKYApgCjAKUAogChAKcApwCoAKIAqQCqAKUApQCkAKkArQCrAKwArACuAK0ArwCsAKsAAwCvAKsAAgADAKsAqwCwAAIAeAB7AHoAegB3AHgApAB3AHoAqQCkAHoAsQCpAHoAegCyALEAsQCoAKkApACiAHcAqACxAKsAqwCiAKgAqwB3AKIAqwCtAHcAsACrALEAsQCzALAAAgCwALMAswAOAAIADAAOALMAswALAAwAMAA6ADwAPAArADAAQAAuAC0ALQA/AEAALQAsAD8ALAA9AD8ANQA2AEcARwBFADUAKwA8AD0APQAsACsAQQAvAC4ALgBAAEEAQwA6ADAAMAAzAEMANAA1AEUARQBEADQARAAzADQARABDADMANgA3AEYARgBHADYAQQA+ACoAKgAvAEEArwADABEAEQBqAK8AagBsAK8ATwBNAFsAWgBbAE0AWgBNABEAWgARABMAEwBJAFoATQBqABEAtAAIAAsACwCzALQAswCxALQAsQC1ALQAsQCyALUAsgC2ALUASQATAAgACAC0AEkAtABLAEkA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+kML1vEhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1vDbwJT7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+CtcjvDbwJT72KFw+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9zcxMPdnAFz2amRk+zcxMPdnAFz1LN0m+KVyPvV+saT2amRk+KVyPvV+saT1LN0m+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PJMftL0K16O8kML1PJMftL1/seS9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vJMftL1/seS9kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7zjNvKozcxMPakNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+kML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1vJMftL1cj4I+kML1vJMftL1SuB4+kML1vBHxVL5SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8zcxMvRxoRL0K16M+zcxMvVV1ET72KFw+zcxMvVpyG732KFw+zcxMvVpyG70K16O8zcxMvWMJqD2tR2G+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34359742465, -"index_count": 240, -"index_data": PackedByteArray("GwAlACEAIQAZABsAtgCyAHoAegB5ALYAtAC1AFQAVAByALQAtQCWAFQAVABVAHIAVQC3AHIAVQBmALcAtwBwAHIAZwBUAJYAlgCTAGcAkwBmAGcAkwCRAGYAkQC2AGYAtgC4AGYAuAC3AGYAtQC2AJQAlACWALUAtgCRAJQAuAC2AJkAmQC5ALgAmQCdALkAnQCcALkAnABZALkAWQB2ALkAdgCuALkAWABZAJwAnACYAFgAmACZALYAtgB5AJgAeQBYAJgAJAAYABcAFwAeACQAJQAmACIAIgAhACUAHwAWABgAGAAkAB8AtwC4ALkAuQC6ALcAuwC6ALkAuQC8ALsAZQBmAFUAVQBTAGUAaQBjAF4AXgBfAGkAbwBuALoAugC7AG8AVABnAGQAZABSAFQAXABiAGgAaABdAFwAcQBvALsAuwC8AHEAdABLALQAtAByAHQAdgB3AK0ArQCuAHYAbgBwALcAtwC6AG4ArACvAIkAiQCuAKwArwCLAIkAiQCNAK4AYwCuAI0AYwCNAI4AjgCLAGIAYgBjAI4AYwC5AK4AYwBpALkAaQC8ALkAaACLAK8AaABiAIsArwBzAGgAcwBpAGgAcwC8AGkAcwBxALwAcwCvAGwAbAB1AHMA"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+kML1vEhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1vDbwJT7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+CtcjvDbwJT72KFw+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9zcxMPdnAFz2amRk+zcxMPdnAFz1LN0m+KVyPvV+saT2amRk+KVyPvV+saT1LN0m+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PJMftL0K16O8kML1PJMftL1/seS9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vJMftL1/seS9kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7zjNvKozcxMPakNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+kML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1vJMftL1cj4I+kML1vJMftL1SuB4+kML1vBHxVL5SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8zcxMvRxoRL0K16M+zcxMvVV1ET72KFw+zcxMvVpyG732KFw+zcxMvVpyG70K16O8zcxMvWMJqD2tR2G+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_dqoe4"] -resource_name = "blasterA_Mesh blasterA" -_surfaces = [{ -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("vV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPARSKBQab1ksBFIoFBgoZzwCaTSUGm9ZLAvV5vQYKGc8C9Xm9B77wOwCaTSUHvvA7AXS6XPyaTWUFdLpc/vV5/QV0ul78mk1lBXS6Xv71ef0Emk0lBKkUrwL1eb0EqRSvAJpNJQWQByL+9Xm9BZAHIv0UigcEqRSvAJpNJwSpFK8BFIoHBZAHIvyaTScFkAci/XS6Xv0UiiUFdLpe/JpNZQV0ulz9FIolBXS6XPyaTWUFFIoFBZAHIvyaTSUFkAci/RSKBQSpFK8Amk0lBKkUrwCaTScFkAci/vV5vwWQByL8mk0nBKkUrwL1eb8EqRSvAXS6XP8Jg0EBdLpc/+PudQCaTyT/CYNBAJpPJP/j7nUDw9/s/XS63QCaTyT85Eag/XS6XPzkRqD8mk8k/TI8GP10ulz9MjwY/XS6XvzkRqD8mk8m/ORGoP10ul79MjwY/JpPJv0yPBj8mk8k/ORGoP10ulz85Eag/JpPJP0yPBj9dLpc/TI8GP/D3+z9dLrdAJpPJP8Jg0EAmk8k/+PudQF0ulz/4+51AXS6XP8Jg0EBdLpe/+PudQF0ul7/CYNBAJpPJv/j7nUAmk8m/wmDQQPD3+79dLrdA8Pf7v10ut0Amk8m/+PudQCaTyb/CYNBAXS6Xv8Jg0EBdLpe/+PudQF0ul785Eag/JpPJvzkRqD9dLpe/TI8GPyaTyb9MjwY/2I6/QAoorMDYjr9Ai8XCwIvF4kAKKKzA2I6/QD785cAyKtFAgEThwN7h00DUjN7AzQ3eQOVg1MCLxeJAi8XCwEHDmcA+/OXAQcOZwIvFwsBBw5nACiiswJpeq8CAROHARxauwNSM3sA2QrjA5WDUwPT5vMCLxcLA9Pm8wAoorMBdLhc/CiiswF0uF78KKKzAXS4XP4vFwsBdLhe/i8XCwEHDmUA+/OXAQcOZQIvFwsDYjr/APvzlwNiOv8CLxcLAMirRwIBE4cDYjr/ACiiswIvF4sAKKKzA3uHTwNSM3sDNDd7A5WDUwIvF4sCLxcLAQcOZQAoorMCaXqtAgEThwEcWrkDUjN7ANkK4QOVg1MD0+bxACiiswPT5vECLxcLAXS4XvwoorMBdLhe/i8XCwF0uFz8KKKzAXS4XP4vFwsBdLhc/2I6fwF0uFz9Bw7lAXS4Xv9iOn8BdLhe/QcO5QHU6LUFUe8nAdTotQUYqo8CpVBpBVHvJwN5uB0FGKqPAdTotQTTE0cB1Oi1BJ3OrwKlUGkE0xNHA3m4HQSdzq8Dw93u/dTo9QfD3e7+pVCpBXS4Xv3U6PUFdLhe/qVQqQfT5vEBYnZ6+Ho/3wFidnr70+bxARjC2vx6P98BGMLa/XS6XP8edXkBdLpe/x51eQF0ulz/Lnx9AXS6Xv8ufH0B1Oi3BJ3OrwHU6LcE0xNHA3m4HwSdzq8CpVBrBNMTRwPT5vMDmfZ+/9Pm8wFDtZsAej/dA5n2fvx6P90BQ7WbAXS6XvxJeRMBdLpc/El5EwF0ul78Wi0W/XS6XPxaLRb/0+bzARjC2v/T5vMCbXCLAHo/3QEYwtr8ej/dAm1wiwPT5vEBQ7WbA9Pm8QOZ9n78ej/fAUO1mwB6P98DmfZ+/Ho/3wJtcIsD0+bxAm1wiwB6P98BGMLa/9Pm8QEYwtr/0+bzARjC2vx6P90BGMLa/9Pm8wFidnr4ej/dAWJ2eviaTyb4KKKzAXS6XvwoorMBdLhe/ovPRwPD3e7+i89HAXS6XPyLyF8Emk8k+IvIXwfD3ez/PqzLBXS4XP8+rMsF1Oi3BRiqjwHU6LcFUe8nA3m4HwUYqo8CpVBrBVHvJwF0ulz8KKKzAJpPJPgoorMDw93s/ovPRwF0uFz+i89HAJpPJviLyF8FdLpe/IvIXwV0uF7/PqzLB8Pd7v8+rMsFdLhc/dTo9QV0uFz+pVCpB8Pd7P3U6PUHw93s/qVQqQV0ulz9KsLi/XS6Xv0qwuL/w9/s/77wOwPD3+7/vvA7A8Pf7P6b1ksDw9/u/pvWSwF0ulz8KKKzAXS6XvwoorMAmk0k/y58fQIvF4j/HnV5AJpNJP+LNjkCzroxA4s2OQAkvgkDHnV5Ai8XiP8ufH0Amk0m/y58fQCaTSb/izY5Ai8Xiv8ufH0CLxeK/x51eQLOujMDizY5ACS+CwMedXkBdLpe/ikRywV0uF7/0+dxAXS6Xv95uF0Emk8m+3m4XQV0uF79Bw7lAXS4XP/T53EAmk8k+3m4XQV0ulz/ebhdBXS4XP4vFwsBdLpc/ikRywV0uF7+LxcLAXS4Xv9iOn8BdLhc/QcO5QF0uFz/Yjp/AvV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPAXS6Xv71ef0FdLpe/JpNZQV0ulz+9Xn9BXS6XPyaTWUFFIoFBpvWSwEUigUGChnPAJpNJQab1ksC9Xm9BgoZzwL1eb0HvvA7AJpNJQe+8DsBdLpc/JpNZQV0ulz9FIolBXS6XvyaTWUFdLpe/RSKJQV0ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+XS6XP/T53EBdLpc/AACAP/D3+z/0+dxA8Pf7PwAAgD/w9/s/AnbaP10ulz8Cdto/8Pf7P+AWBz5dLpc/4BYHPl0ul78AAIA/XS6Xv/T53EDw9/u/AACAP/D3+7/0+dxAwmCwwEyPBj/CYLDAORGoP/T5vMACdto/AACVKwJ22j/w93vAORGoPwAAICrgFgc+9Pm8wOAWBz7w93vATI8GP10ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+8Pf7PwJ22j9dLpc/AnbaP/D3+z/gFgc+XS6XP+AWBz7w9/s/AACAP/D3+z/0+dxAXS6XPwAAgD9dLpc/9PncQPT5vEACdto/wmCwQEyPBj/0+bxA4BYHPgAAAKrgFgc+8Pd7QEyPBj/w93tAORGoP8JgsEA5Eag/AAAAqgJ22j/w9/u/9PncQPD3+78AAIA/XS6Xv/T53EBdLpe/AACAP71eb8DLnx9AV6v1wMufH0BbrbbA7GQGQalUGsHsZAZBvV5vQMufH0BXq/VAy58fQLkijkD2KZNAW622QOxkBkGpVBpB7GQGQV0ulz/yZ5RAXS6Xv/JnlEBdLpc/nGlmQF0ul7+caWZAXS6XP04fMUFdLpe/Th8xQV0ulz/GC5tAXS6Xv8YLm0BdLpc/qVQKwV0ulz9brZbAXS6Xv6lUCsFdLpe/W62WwF0ulz/SMx1BXS6Xv9IzHUFdLpc/iTO6QF0ul78Wm7VAXS6XPxabtUBdLpc/77wOwF0ul7/vvA7AXS6XP6b1ksBdLpe/pvWSwPD3+z/vvA7AXS6XP++8DsDw9/s/goZzwF0ulz+ChnPA8Pf7v++8DsBdLpe/SrC4v10ulz9KsLi/XS6Xv++8DsBdLpe/goZzwPD3+7+ChnPAXS6Xv71ef0FdLpe/RSKJQfD3+7+9Xn9B8Pf7v0UiiUHw9/s/goZzwF0ulz+ChnPA8Pf7P6b1ksBdLpc/pvWSwF0ulz8KKKzAXS6Xv6b1ksDw9/u/pvWSwF0ul78KKKzA8Pf7v4KGc8BdLpe/goZzwPD3+z+9Xn9B8Pf7P0UiiUFdLpc/vV5/QV0ulz9FIolBQ6EgwaA+A0FDoSDB4s2OQEUiAcEf/hJBjUbDwOLNjkCNRsPAH/4SQV0ul78yrSPAXS6Xv/9DmMBdLpc/Mq0jwF0ulz//Q5jAQ6EgQeLNjkBDoSBBoD4DQY1Gw0DizY5ARSIBQR/+EkGNRsNAH/4SQV0ulz+NRuNAXS6XP0UiEUFdLpe/jUbjQF0ul79FIhFBXS6XP6A+A0FdLpe/oD4DQV0ulz/izY5AXS6Xv+LNjkBdLpc/H/4SQV0ul78f/hJBXS6XP+LNjkBdLpe/4s2OQMJgMMHizY5A3m4HwcufH0Amk0k/4s2OQCaTST/Lnx9A3m4Hwab1ksAmk0nBMNI4QF0ulz9mXVnAXS6XP2izWT5dLpe/Zl1ZwF0ul79os1k+XS6Xv41G40BdLpc/jUbjQPD3+z/CYEBB8Pf7P2izWT5dLpc/Q6EwQV0ul79DoTBB8Pf7v8JgQEHw9/u/aLNZPvD3+z/vFYvA8Pf7v+8Vi8Dw9/s/Z1rSwPD3+79nWtLA8Pf7PzDSOEDw9/u/MNI4QPD3+z/vvA7AXS6XP0qwuL9dLpe/SrC4v/D3+7/vvA7AXS4Xv0HDuUBdLhe/2I6fwF0uFz9Bw7lAXS4XP9iOn8BdLhe/kbYBP10uF79wJmo9XS4XP5G2AT9dLhc/cCZqPV0uF78A4oC9XS4XPwDigL1dLhc/SCKKwF0uF79IIorAXS4XP6JcnMBdLhe/olycwF0uFz9ZOZVAXS4XP7Nzp0BdLhe/WTmVQF0uF7+zc6dAXS4Xvw5agMBdLhe/aJSSwF0uFz8OWoDAXS4XP2iUksBdLhe/5G5hQF0uFz/kbmFAXS4Xv8zxgkBdLhc/zPGCQF0uFz+sLai+XS4Xv6wtqL5dLhc/AitHv10uF78CK0e/XS4XP6bpZb9dLhe/pullv10uFz8KKKzAXS4XvwoorMBdLhc/i8XCwF0uF7+LxcLAXS4XPwoorMBdLhe/CiiswF0uFz+LxcLAXS4Xv4vFwsDebgfBZAHIv3U6LcEqRSvA3m4HwSpFK8Amk8k+dTo9QSaTyb51Oj1BXS6Xv3U6PUFdLpc/dTo9Qd5uB0Gm9ZLAJpNJQTDSOEDCYDBB4s2OQN5uB0HLnx9AJpNJv+LNjkAmk0m/y58fQHU6LUEqRSvA3m4HQWQByL/ebgdBKkUrwDRko0BMjwY/NGSjQDkRqD9yOIdATI8GP3I4h0A5Eag/8Pf7P+LNjkBdLpc/4s2OQPD3+z/Lnx9AXS6XP8ufH0D0+bxADKmMwEUigcGm9ZLA9Pm8QOAWBz4ej/fADKmMwCqVCsHvvA7AHo/3wEjR6r5FIoHB77wOwPT5vEBI0eq+AAAAquAWBz4AAACqAnbaPyqVCsHLnx9A9Pm8QAJ22j/w9/s/aLNZPl0ulz9Xq9XA8Pf7P1Qq9cDw9/u/VCr1wF0ul79Xq9XAXS6Xv71eL8BdLpe/FotFv10ul79os1k+8Pf7v2izWT5dLpc/FotFv10ulz+9Xi/AXS6XP2izWT40ZKPATI8GP3I4h8BMjwY/NGSjwDkRqD9yOIfAORGoP3I4h0BMjwY/cjiHQDkRqD9fGVZATI8GP18ZVkA5Eag/cjiHwEyPBj9fGVbATI8GP3I4h8A5Eag/XxlWwDkRqD/w9/s/y58fQPD3+7/Lnx9A8Pf7P++8DsBdLpc/SrC4v10ul79KsLi/8Pf7v++8DsDw9/s/SNHqvvD3+z8MqYzAwmAwQOZ9n7/CYDBAUO1mwPD3+79I0eq+wmAwwOZ9n7/w9/u/DKmMwMJgMMBQ7WbAXS6XP4pEcsFdLpc/VCr1wF0ul7+KRHLBXS6Xv1Qq9cDw9/u/SNHqvsJgMMDmfZ+/8Pf7vwypjMDCYDDAUO1mwPD3+z9I0eq+8Pf7PwypjMDCYDBA5n2fv8JgMEBQ7WbARSKBQWQByL8qlQpBZAHIv0UigUEqRSvAKpUKQSpFK8BFIoHBKkUrwEUigcFkAci/XS6Xv+LNjkDw9/u/4s2OQF0ul7/Lnx9A8Pf7v8ufH0BFIoHBKkUrwCqVCsEqRSvARSKBwWQByL8qlQrBZAHIv/T5vMACdto/9Pm8wOAWBz4AAJUrAnbaPx6P90BI0eq+AAAgKuAWBz70+bzASNHqviqVCkHLnx9AHo/3QAypjMAqlQpB77wOwPT5vMAMqYzARSKBQab1ksBFIoFB77wOwEUigUFkAci/RSKBQSpFK8A="), -"format": 34359742487, -"index_count": 420, -"index_data": PackedByteArray("AgAAAAEAAwACAAEABAADAAEAAQAFAAQACAAGAAcABwAJAAgACQAKAAgACgALAAgADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJwAoACYAKwApACoAKgAsACsALwAtAC4ALgAwAC8AMwAxADIAMgA0ADMANwA1ADYANgA4ADcANgA5ADgAPAA6ADsAOwA9ADwAPQA+ADwAQQA/AEAAQABCAEEAQABDAEIARgBEAEUARQBHAEYASgBIAEkASQBLAEoASwBMAEoATABNAEoATQBOAEoATgBPAEoAUABLAEkAUABJAFEAUABRAFIAUwBQAFIAVABTAFIAVQBUAFIAVgBVAFIAUgBXAFYAWgBYAFkAWQBbAFoAXgBcAF0AXQBfAF4AXwBgAF4AXwBhAGAAYQBiAGAAYgBjAGAAYgBkAGMAYgBlAGQAZgBdAFwAZgBcAGcAZgBnAGgAZgBoAGkAagBmAGkAaQBrAGoAbgBsAG0AbQBvAG4AcgBwAHEAcQBzAHIAdgB0AHUAdQB3AHYAegB4AHkAeQB7AHoAfgB8AH0AfQB/AH4AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYAqgCoAKkAqQCrAKoArgCsAK0ArQCvAK4AsgCwALEAsQCzALIAtgC0ALUAtQC3ALYAugC4ALkAuQC7ALoAvgC8AL0AvQC/AL4AvwDAAL4AvwDBAMAAwQDCAMAAwQDDAMIAxgDEAMUAxQDHAMYAxQDIAMcAyQDFAMQAzADKAMsAywDNAMwAywDOAM0AzgDPAM0A0gDQANEA0QDTANIA0ADUANEA0QDVANMA1QDWANMA1QDXANYA1QDYANcA2ADZANcA0ADZANoA2QDYANoA2gDbANAA2wDUANAA3ADUANsA2wDdANwA3QDVANwA3QDYANUA"), -"material": SubResource("StandardMaterial3D_chq13"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMvWMJqD0K16M+zcxMvWMJqD1cj8I+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMPVV1ET6G69E+zcxMPVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMvVV1ET6G69E+zcxMvVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMPWMJqD0K16M+zcxMPWMJqD1cj8I+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9kML1PMxpRTzNzMw9CtcjPcxpRTzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+CtcjPcxpRTwpXA8+kML1PMxpRTwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+CtcjvUhEArzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1PEhEArzNzMw9kML1PEhEArwpXA8+CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTzNzMw9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kML1vMxpRTzNzMw9kML1vEhEArwpXA8+CtcjvUhEArwpXA8+kML1vMxpRTwpXA8+CtcjvcxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1PDbwJT7Gshu+kMJ1vDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vOtROD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7Gshu+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+kMJ1PDbwJT7o9Pk9kMJ1POtROD7o9Pk9kMJ1vDbwJT7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vOtROD7Gshu+kMJ1vOtROD7o9Pk9kMJ1POtROD7Gshu+kMJ1POtROD7o9Pk9zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+zczMvIioRD7NzIw+zczMvIioRD5H4Xo+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+kMJ1vIioRD7NzIw+CtcjvDbwJT72KFw+kMJ1vIioRD5H4Xo+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9zcxMPdnAFz2amRk+KVyPPV+saT2amRk+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+KVyPvXe37z2amRk+KVyPvV+saT2amRk+KVyPvXe37z1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT2amRk+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+KVyPPXe37z2amRk+KVyPPXe37z1LN0m+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kMJ1vIioRD7NzIw+zczMvIioRD7NzIw+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+zczMvIioRD5H4Xo+kMJ1vIioRD5H4Xo+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1PDbwJT7NzIw+CtcjPDbwJT7NzIw+zczMPIioRD7NzIw+kMJ1PIioRD7NzIw+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PIioRD5H4Xo+zczMPIioRD5H4Xo+kMJ1PIioRD7NzIw+kMJ1PIioRD5H4Xo+zczMPIioRD7NzIw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PGDsgL3rUTi9kML1PJMftL0K16O8kML1PJMftL1/seS9kML1PGDsgL1toNO9kML1PFpyG73rUTi9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vFpyG73rUTi9kML1vGDsgL3rUTi9kML1vJMftL1/seS9kML1vGDsgL1toNO9kML1vDbwJT6G69G+kMJ1vDbwJT6amRk+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+kMJ1vDbwJT7o9Pk9kMJ1PDbwJT6amRk+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PDbwJT7rUTi+kML1PDbwJT6G69G+kMJ1vDbwJT7rUTi+kMJ1vDbwJT7Gshu+kMJ1PDbwJT7o9Pk9kMJ1PDbwJT7Gshu+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1vGMJqD1cj8I+kML1vGMJqD0K16M+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1PFV1ET4K16M+kML1PFV1ET6G69E+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7yamRk+kML1PKkNk7zjNvKozcxMPakNk7yamRk+zcxMPakNk7zjNvKozcxMPakNk7zjNvKokML1PKkNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDyamRk+zcxMPWygtDxKDIKnzcxMPWygtDyamRk+kML1PMxpRTwpXA8+kML1PEhEArwpXA8+kML1PKkNk7yamRk+kML1PKkNk7zjNvKokML1PEhEArzNzMw9kML1PGygtDxKDIKnkML1PGygtDyamRk+kML1PMxpRTzNzMw9kML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+zcxMvWygtDypE1CnzcxMvWygtDyamRk+kML1vGygtDypE1CnkML1vGygtDyamRk+kML1vKkNk7yamRk+kML1vMxpRTwpXA8+kML1vGygtDyamRk+kML1vGygtDypE1CnkML1vMxpRTzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1vKkNk7ypE1CnzcxMvakNk7yamRk+zcxMvakNk7ypE1CnkML1vKkNk7yamRk+kML1vKkNk7ypE1CnkML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PGDsgL1toNO9kML1vGDsgL1toNO9kML1PFpyG71cj8K9kML1vFpyG71cj8K9kML1vDB2QL5H4Xq+kML1PDB2QL5H4Xq+kML1vFpyG70Vrke+kML1PFpyG70Vrke+kML1vDB2QL5H4Xq+kML1vDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PDB2QL7hehS+kML1PDB2QL7hehS+kML1vDB2QL7hehS+kML1PN81u71BDue9kML1vJMftL1/seS9kML1PJMftL1/seS9kML1PGMJqD0K16M+kML1vGMJqD0K16M+kML1PFV1ET4K16M+kML1vFV1ET4K16M+zcxMPWMJqD1cj8I+kML1PGMJqD1cj8I+zcxMPej0+T1cj8I+kML1POj0+T1cj8I+zcxMvWMJqD1cj8I+kML1vEAnfj1cj8I+kML1PEAnfj1cj8I+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+zcxMvej0+T1cj8I+kML1POj0+T1cj8I+kML1POj0+T2G69E+zcxMPej0+T1cj8I+zcxMPej0+T2G69E+zcxMPej0+T2G69E+kML1POj0+T2G69E+zcxMPVV1ET6G69E+kML1PFV1ET6G69E+kML1PDbwJT6G69E+kML1vFV1ET6G69E+zcxMvVV1ET6G69E+kML1vDbwJT6G69E+zcxMvej0+T2G69E+kML1vOj0+T2G69E+zcxMvej0+T1cj8I+zcxMvej0+T2G69E+kML1vOj0+T1cj8I+kML1vOj0+T2G69E+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vJMftL1cj4I+kML1vHdXO75cj4I+kML1vJMftL1SuB4+kML1vBHxVL6G61E+kML1vBHxVL5SuB4+kML1vBHxVL5SuB4+kML1vBHxVL6G61E+kML1PBHxVL5SuB4+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vHdXO75cj4I+kML1PJMftL1cj4I+kML1vJMftL1cj4I+kML1vBHxVL5SuB4+kML1PBHxVL5SuB4+kML1vJMftL1SuB4+kML1PJMftL1SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+kML1vJMftL1/seS9kML1vJMftL0K16O8kML1PJMftL1/seS9kML1PJMftL0K16O8kML1PJMftL1SuB4+kML1vJMftL1SuB4+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8kML1vJMftL1cj4I+kML1PJMftL1cj4I+zcxMPZMftL0pXI8+zcxMPZMftL0K16O8zcxMPZMftL0pXI8+zcxMvZMftL0pXI8+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPWMJqD0K16M+kML1PEAnfj0K16M+kML1vEAnfj0K16M+zcxMvWMJqD0K16M+kMJ1vBHxVD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1PBHxVD7o9Pk9kMJ1PBHxVD7Gshu+kMJ1PH+hRj5EfDS+kMJ1PPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vPnlTj7KNyy+kMJ1PGobUT5ZAiq+kMJ1vGobUT5ZAiq+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1POtROD7rUTi+kMJ1PH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vH+hRj5EfDS+kMJ1vBHxVD7o9Pk9kMJ1PBHxVD7o9Pk9kMJ1vGobUT4GSgs+kMJ1PGobUT4GSgs+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1PPnlTj54fw0+kMJ1vPnlTj54fw0+kMJ1PGobUT4GSgs+kMJ1vGobUT4GSgs+kMJ1PDbwJT6amRk+kMJ1vDbwJT6amRk+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1vDbwJT7rUTi+kMJ1PDbwJT7rUTi+kMJ1vOtROD7rUTi+kMJ1POtROD7rUTi+zcxMPVV1ET72KFw+kML1PDbwJT7NzIw+kML1PDbwJT72KFw+CtcjPDbwJT7NzIw+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kML1PDbwJT7NzIw+zcxMvVV1ET72KFw+zcxMvRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvVpyG732KFw+zcxMvZMftL0K16O8zcxMvVpyG70K16O8kML1vDbwJT7NzIw+zcxMvVV1ET72KFw+kML1vDbwJT72KFw+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjvcxpRTzNzMw9CtcjvUhEArzNzMw9zcxMvZMftL0K16O8kML1vJMftL0K16O8zcxMvVpyG70K16O8kML1vFpyG70K16O8zcxMvZxWDD6amRk+zcxMvVV1ET6G69G+zcxMvWygtDyamRk+zcxMvZxWDD5LN0m+zcxMvWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvWMJqD2G69G+zcxMvdnAFz2amRk+zcxMvWygtDypE1CnzcxMvakNk7ypE1CnzcxMvVpyG72tR2G+zcxMvakNk7yamRk+zcxMvVpyG70K16O8kML1vFpyG70Vrke+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1PFpyG70Vrke+kML1PFpyG71cj8K9kML1PFpyG73rUTi9kML1PFpyG70K16O8zcxMPVpyG70K16O8kML1vFpyG73rUTi9kML1vFpyG71cj8K9kML1vFpyG70K16O8zcxMPcxpRTyQwvU9CtcjPcxpRTzNzMw9zcxMPUhEAryQwvU9CtcjPUhEArzNzMw9CtcjvcxpRTwpXA8+CtcjvUhEArwpXA8+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjPcxpRTwpXA8+zcxMPcxpRTyQwvU9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+zcxMvWMJqD2tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvZxWDD5LN0m+KVyPvV+saT1LN0m+KVyPvXe37z1LN0m+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+zcxMPZxWDD5LN0m+KVyPPXe37z1LN0m+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMvdnAFz2amRk+KVyPvV+saT2amRk+zcxMvZxWDD6amRk+KVyPvXe37z2amRk+zcxMPdnAFz2amRk+zcxMPZxWDD6amRk+KVyPPV+saT2amRk+KVyPPXe37z2amRk+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMPWMJqD2G69G+zcxMPWMJqD2tR2G+kML1vDbwJT6G69G+zcxMvVV1ET6G69G+kML1PJMftL0K16O8zcxMPZMftL0K16O8kML1PFpyG70K16O8zcxMPVpyG70K16O8zcxMvWMJqD2G69G+zcxMvWMJqD2tR2G+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+zcxMPakNk7yamRk+zcxMPWygtDyamRk+zcxMPakNk7zjNvKozcxMPdnAFz1LN0m+zcxMPWygtDxKDIKnzcxMPdnAFz2amRk+zcxMPVpyG72tR2G+zcxMPZxWDD5LN0m+zcxMPWMJqD2tR2G+zcxMPZxWDD6amRk+zcxMPVV1ET6G69G+zcxMPWMJqD2G69G+zcxMPVV1ET6G69G+kML1PDbwJT6G69G+////f/////////9///8AgP///3///wCA////f///AID///9//////////3//////AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//P/8//3//v/8//z//f/+//z//P/9//7//P/8//3//v/+//7///////7//v///////v/+///////+//7///////3///////7//f///////v/9///////+//3///////7//P/+//3//v/8//7//f/+//z//v/9//7//P/+//3//v/+//z///////7//P///////v/8///////+//z///////3///////7//f///////v/9////+//+//3////7//7//f////v//v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3///////7//f///////v/9///////+//3///////7//f///////v/9//3////+//3//f////7//f/9/////v/9//3////+/////f/////////9//v///////3/+/wCA////f/7///////9//v///////3/+////////f/7///////9//v8AgP///3///wCA////f/////////9//////////3/+/wCA////f/7/AID///9//////////3/+////////f///////f/9/////v/9//3////+//3//f////7//f/9/////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v0kSSJL/f/+/SRJIkv9//79JEkiS/3//v0kSSJL/f/+/SRJIkv9//79JEkiS/3//v0kSSJL/f/+/SRJIkv9//7//f///////v/9///////+//3///////7//f///////v/8//7//f/+//z//v/9//7//P/+//3//v/8//7//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/7+17UiS/////7XtSJL/////te1Ikv////+17UiS/////////3//////////f/////////9//////////3///////3///////7//f///////v/9///////+//3///////7//v/8///////+//z///////7//P///////v/8//////wAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//z//P/9//7//P/8//3//v/8//z//f/+//z//P/9//7//v/+///////+//7///////7//v///////v/+///////9//3////+//3//f////7//f/9/////v/9//3////+//7///wAA/7//v///AAD/v/+///8AAP+//7///wAA/7+17UiS/////7XtSJL/////te1Ikv////+17UiS//////9//3////+//3//f////7//f/9/////v/9//3////+//7///wAA/7//v///AAD/v/+///8AAP+//7///wAA/7//f///////v/9///////+//3///////7//f///////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7////9///8AgP///3///wCA////f///AID///9//////////3//////////f/////8AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f///////v/9////+//+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9////+//+//3///////7//f///////v/9///////+/////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgAyb//8AAACA2a7//wAAAIAMm///AAAAgNmu//8AAACA8uT//wAAAIAl0f//AAAAgPLk//8AAACAJdH//wAAAID/f/LkAAAAgP9/8uQAAACA/38l0QAAAID/fyXRAAAAgP9/2a4AAACA/3/ZrgAAAID/f/+/AAAAgP9//78AAACA/38l0QAAAID/fyXRAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID//6mqAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgKoq/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+//78AAACA/7//vwAAAIA=") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("vV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPARSKBQab1ksBFIoFBgoZzwCaTSUGm9ZLAvV5vQYKGc8C9Xm9B77wOwCaTSUHvvA7AXS6XPyaTWUFdLpc/vV5/QV0ul78mk1lBXS6Xv71ef0Emk0lBKkUrwL1eb0EqRSvAJpNJQWQByL+9Xm9BZAHIv0UigcEqRSvAJpNJwSpFK8BFIoHBZAHIvyaTScFkAci/XS6Xv0UiiUFdLpe/JpNZQV0ulz9FIolBXS6XPyaTWUFFIoFBZAHIvyaTSUFkAci/RSKBQSpFK8Amk0lBKkUrwCaTScFkAci/vV5vwWQByL8mk0nBKkUrwL1eb8EqRSvAXS6XP8Jg0EBdLpc/+PudQCaTyT/CYNBAJpPJP/j7nUDw9/s/XS63QCaTyT85Eag/XS6XPzkRqD8mk8k/TI8GP10ulz9MjwY/XS6XvzkRqD8mk8m/ORGoP10ul79MjwY/JpPJv0yPBj8mk8k/ORGoP10ulz85Eag/JpPJP0yPBj9dLpc/TI8GP/D3+z9dLrdAJpPJP8Jg0EAmk8k/+PudQF0ulz/4+51AXS6XP8Jg0EBdLpe/+PudQF0ul7/CYNBAJpPJv/j7nUAmk8m/wmDQQPD3+79dLrdA8Pf7v10ut0Amk8m/+PudQCaTyb/CYNBAXS6Xv8Jg0EBdLpe/+PudQF0ul785Eag/JpPJvzkRqD9dLpe/TI8GPyaTyb9MjwY/2I6/QAoorMDYjr9Ai8XCwIvF4kAKKKzA2I6/QD785cAyKtFAgEThwN7h00DUjN7AzQ3eQOVg1MCLxeJAi8XCwEHDmcA+/OXAQcOZwIvFwsBBw5nACiiswJpeq8CAROHARxauwNSM3sA2QrjA5WDUwPT5vMCLxcLA9Pm8wAoorMBdLhc/CiiswF0uF78KKKzAXS4XP4vFwsBdLhe/i8XCwEHDmUA+/OXAQcOZQIvFwsDYjr/APvzlwNiOv8CLxcLAMirRwIBE4cDYjr/ACiiswIvF4sAKKKzA3uHTwNSM3sDNDd7A5WDUwIvF4sCLxcLAQcOZQAoorMCaXqtAgEThwEcWrkDUjN7ANkK4QOVg1MD0+bxACiiswPT5vECLxcLAXS4XvwoorMBdLhe/i8XCwF0uFz8KKKzAXS4XP4vFwsBdLhc/2I6fwF0uFz9Bw7lAXS4Xv9iOn8BdLhe/QcO5QHU6LUFUe8nAdTotQUYqo8CpVBpBVHvJwN5uB0FGKqPAdTotQTTE0cB1Oi1BJ3OrwKlUGkE0xNHA3m4HQSdzq8Dw93u/dTo9QfD3e7+pVCpBXS4Xv3U6PUFdLhe/qVQqQfT5vEBYnZ6+Ho/3wFidnr70+bxARjC2vx6P98BGMLa/XS6XP8edXkBdLpe/x51eQF0ulz/Lnx9AXS6Xv8ufH0B1Oi3BJ3OrwHU6LcE0xNHA3m4HwSdzq8CpVBrBNMTRwPT5vMDmfZ+/9Pm8wFDtZsAej/dA5n2fvx6P90BQ7WbAXS6XvxJeRMBdLpc/El5EwF0ul78Wi0W/XS6XPxaLRb/0+bzARjC2v/T5vMCbXCLAHo/3QEYwtr8ej/dAm1wiwPT5vEBQ7WbA9Pm8QOZ9n78ej/fAUO1mwB6P98DmfZ+/Ho/3wJtcIsD0+bxAm1wiwB6P98BGMLa/9Pm8QEYwtr/0+bzARjC2vx6P90BGMLa/9Pm8wFidnr4ej/dAWJ2eviaTyb4KKKzAXS6XvwoorMBdLhe/ovPRwPD3e7+i89HAXS6XPyLyF8Emk8k+IvIXwfD3ez/PqzLBXS4XP8+rMsF1Oi3BRiqjwHU6LcFUe8nA3m4HwUYqo8CpVBrBVHvJwF0ulz8KKKzAJpPJPgoorMDw93s/ovPRwF0uFz+i89HAJpPJviLyF8FdLpe/IvIXwV0uF7/PqzLB8Pd7v8+rMsFdLhc/dTo9QV0uFz+pVCpB8Pd7P3U6PUHw93s/qVQqQV0ulz9KsLi/XS6Xv0qwuL/w9/s/77wOwPD3+7/vvA7A8Pf7P6b1ksDw9/u/pvWSwF0ulz8KKKzAXS6XvwoorMAmk0k/y58fQIvF4j/HnV5AJpNJP+LNjkCzroxA4s2OQAkvgkDHnV5Ai8XiP8ufH0Amk0m/y58fQCaTSb/izY5Ai8Xiv8ufH0CLxeK/x51eQLOujMDizY5ACS+CwMedXkBdLpe/ikRywV0uF7/0+dxAXS6Xv95uF0Emk8m+3m4XQV0uF79Bw7lAXS4XP/T53EAmk8k+3m4XQV0ulz/ebhdBXS4XP4vFwsBdLpc/ikRywV0uF7+LxcLAXS4Xv9iOn8BdLhc/QcO5QF0uFz/Yjp/AvV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPAXS6Xv71ef0FdLpe/JpNZQV0ulz+9Xn9BXS6XPyaTWUFFIoFBpvWSwEUigUGChnPAJpNJQab1ksC9Xm9BgoZzwL1eb0HvvA7AJpNJQe+8DsBdLpc/JpNZQV0ulz9FIolBXS6XvyaTWUFdLpe/RSKJQV0ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+XS6XP/T53EBdLpc/AACAP/D3+z/0+dxA8Pf7PwAAgD/w9/s/AnbaP10ulz8Cdto/8Pf7P+AWBz5dLpc/4BYHPl0ul78AAIA/XS6Xv/T53EDw9/u/AACAP/D3+7/0+dxAwmCwwEyPBj/CYLDAORGoP/T5vMACdto/AACVKwJ22j/w93vAORGoPwAAICrgFgc+9Pm8wOAWBz7w93vATI8GP10ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+8Pf7PwJ22j9dLpc/AnbaP/D3+z/gFgc+XS6XP+AWBz7w9/s/AACAP/D3+z/0+dxAXS6XPwAAgD9dLpc/9PncQPT5vEACdto/wmCwQEyPBj/0+bxA4BYHPgAAAKrgFgc+8Pd7QEyPBj/w93tAORGoP8JgsEA5Eag/AAAAqgJ22j/w9/u/9PncQPD3+78AAIA/XS6Xv/T53EBdLpe/AACAP71eb8DLnx9AV6v1wMufH0BbrbbA7GQGQalUGsHsZAZBvV5vQMufH0BXq/VAy58fQLkijkD2KZNAW622QOxkBkGpVBpB7GQGQV0ulz/yZ5RAXS6Xv/JnlEBdLpc/nGlmQF0ul7+caWZAXS6XP04fMUFdLpe/Th8xQV0ulz/GC5tAXS6Xv8YLm0BdLpc/qVQKwV0ulz9brZbAXS6Xv6lUCsFdLpe/W62WwF0ulz/SMx1BXS6Xv9IzHUFdLpc/iTO6QF0ul78Wm7VAXS6XPxabtUBdLpc/77wOwF0ul7/vvA7AXS6XP6b1ksBdLpe/pvWSwPD3+z/vvA7AXS6XP++8DsDw9/s/goZzwF0ulz+ChnPA8Pf7v++8DsBdLpe/SrC4v10ulz9KsLi/XS6Xv++8DsBdLpe/goZzwPD3+7+ChnPAXS6Xv71ef0FdLpe/RSKJQfD3+7+9Xn9B8Pf7v0UiiUHw9/s/goZzwF0ulz+ChnPA8Pf7P6b1ksBdLpc/pvWSwF0ulz8KKKzAXS6Xv6b1ksDw9/u/pvWSwF0ul78KKKzA8Pf7v4KGc8BdLpe/goZzwPD3+z+9Xn9B8Pf7P0UiiUFdLpc/vV5/QV0ulz9FIolBQ6EgwaA+A0FDoSDB4s2OQEUiAcEf/hJBjUbDwOLNjkCNRsPAH/4SQV0ul78yrSPAXS6Xv/9DmMBdLpc/Mq0jwF0ulz//Q5jAQ6EgQeLNjkBDoSBBoD4DQY1Gw0DizY5ARSIBQR/+EkGNRsNAH/4SQV0ulz+NRuNAXS6XP0UiEUFdLpe/jUbjQF0ul79FIhFBXS6XP6A+A0FdLpe/oD4DQV0ulz/izY5AXS6Xv+LNjkBdLpc/H/4SQV0ul78f/hJBXS6XP+LNjkBdLpe/4s2OQMJgMMHizY5A3m4HwcufH0Amk0k/4s2OQCaTST/Lnx9A3m4Hwab1ksAmk0nBMNI4QF0ulz9mXVnAXS6XP2izWT5dLpe/Zl1ZwF0ul79os1k+XS6Xv41G40BdLpc/jUbjQPD3+z/CYEBB8Pf7P2izWT5dLpc/Q6EwQV0ul79DoTBB8Pf7v8JgQEHw9/u/aLNZPvD3+z/vFYvA8Pf7v+8Vi8Dw9/s/Z1rSwPD3+79nWtLA8Pf7PzDSOEDw9/u/MNI4QPD3+z/vvA7AXS6XP0qwuL9dLpe/SrC4v/D3+7/vvA7AXS4Xv0HDuUBdLhe/2I6fwF0uFz9Bw7lAXS4XP9iOn8BdLhe/kbYBP10uF79wJmo9XS4XP5G2AT9dLhc/cCZqPV0uF78A4oC9XS4XPwDigL1dLhc/SCKKwF0uF79IIorAXS4XP6JcnMBdLhe/olycwF0uFz9ZOZVAXS4XP7Nzp0BdLhe/WTmVQF0uF7+zc6dAXS4Xvw5agMBdLhe/aJSSwF0uFz8OWoDAXS4XP2iUksBdLhe/5G5hQF0uFz/kbmFAXS4Xv8zxgkBdLhc/zPGCQF0uFz+sLai+XS4Xv6wtqL5dLhc/AitHv10uF78CK0e/XS4XP6bpZb9dLhe/pullv10uFz8KKKzAXS4XvwoorMBdLhc/i8XCwF0uF7+LxcLAXS4XPwoorMBdLhe/CiiswF0uFz+LxcLAXS4Xv4vFwsDebgfBZAHIv3U6LcEqRSvA3m4HwSpFK8Amk8k+dTo9QSaTyb51Oj1BXS6Xv3U6PUFdLpc/dTo9Qd5uB0Gm9ZLAJpNJQTDSOEDCYDBB4s2OQN5uB0HLnx9AJpNJv+LNjkAmk0m/y58fQHU6LUEqRSvA3m4HQWQByL/ebgdBKkUrwDRko0BMjwY/NGSjQDkRqD9yOIdATI8GP3I4h0A5Eag/8Pf7P+LNjkBdLpc/4s2OQPD3+z/Lnx9AXS6XP8ufH0D0+bxADKmMwEUigcGm9ZLA9Pm8QOAWBz4ej/fADKmMwCqVCsHvvA7AHo/3wEjR6r5FIoHB77wOwPT5vEBI0eq+AAAAquAWBz4AAACqAnbaPyqVCsHLnx9A9Pm8QAJ22j/w9/s/aLNZPl0ulz9Xq9XA8Pf7P1Qq9cDw9/u/VCr1wF0ul79Xq9XAXS6Xv71eL8BdLpe/FotFv10ul79os1k+8Pf7v2izWT5dLpc/FotFv10ulz+9Xi/AXS6XP2izWT40ZKPATI8GP3I4h8BMjwY/NGSjwDkRqD9yOIfAORGoP3I4h0BMjwY/cjiHQDkRqD9fGVZATI8GP18ZVkA5Eag/cjiHwEyPBj9fGVbATI8GP3I4h8A5Eag/XxlWwDkRqD/w9/s/y58fQPD3+7/Lnx9A8Pf7P++8DsBdLpc/SrC4v10ul79KsLi/8Pf7v++8DsDw9/s/SNHqvvD3+z8MqYzAwmAwQOZ9n7/CYDBAUO1mwPD3+79I0eq+wmAwwOZ9n7/w9/u/DKmMwMJgMMBQ7WbAXS6XP4pEcsFdLpc/VCr1wF0ul7+KRHLBXS6Xv1Qq9cDw9/u/SNHqvsJgMMDmfZ+/8Pf7vwypjMDCYDDAUO1mwPD3+z9I0eq+8Pf7PwypjMDCYDBA5n2fv8JgMEBQ7WbARSKBQWQByL8qlQpBZAHIv0UigUEqRSvAKpUKQSpFK8BFIoHBKkUrwEUigcFkAci/XS6Xv+LNjkDw9/u/4s2OQF0ul7/Lnx9A8Pf7v8ufH0BFIoHBKkUrwCqVCsEqRSvARSKBwWQByL8qlQrBZAHIv/T5vMACdto/9Pm8wOAWBz4AAJUrAnbaPx6P90BI0eq+AAAgKuAWBz70+bzASNHqviqVCkHLnx9AHo/3QAypjMAqlQpB77wOwPT5vMAMqYzARSKBQab1ksBFIoFB77wOwEUigUFkAci/RSKBQSpFK8A="), -"format": 34359742487, -"index_count": 192, -"index_data": PackedByteArray("4ADeAN8A4QDgAN8A4gDhAN8A3wDjAOIA5gDkAOUA5QDnAOYA6gDoAOkA6QDrAOoA6wDsAOoA7ADtAOoA8ADuAO8A7wDxAPAA9ADyAPMA8wD1APQA+AD2APcA9wD5APgA/AD6APsA+wD9APwAAAH+AP8A/wABAQABBAECAQMBAwEFAQQBAwEGAQUBBgEHAQUBCAEHAQIBAgEEAQgBBwEJAQIBBwEGAQkBDAEKAQsBCwENAQwBEAEOAQ8BDwERARABFAESARMBEwEVARQBGAEWARcBFwEZARgBFwEaARkBGgEbARkBHAEXARYBFgEdARwBHQEbARwBHQEZARsBIAEeAR8BHwEhASABIwEiAc8AzwDOACMBzgAkASMBJAElASMByAAmAScBJwHHAMgAJwEoAccAJwEpASgBJwEqASkBLQErASwBLAEuAS0BMQEvATABMAEyATEBNQEzATQBNAE2ATUBOQE3ATgBOAE6ATkBOgE7ATkBPgE8AT0BPQE/AT4B"), -"material": SubResource("StandardMaterial3D_85lg4"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMvWMJqD0K16M+zcxMvWMJqD1cj8I+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMPVV1ET6G69E+zcxMPVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMvVV1ET6G69E+zcxMvVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMPWMJqD0K16M+zcxMPWMJqD1cj8I+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9kML1PMxpRTzNzMw9CtcjPcxpRTzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+CtcjPcxpRTwpXA8+kML1PMxpRTwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+CtcjvUhEArzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1PEhEArzNzMw9kML1PEhEArwpXA8+CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTzNzMw9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kML1vMxpRTzNzMw9kML1vEhEArwpXA8+CtcjvUhEArwpXA8+kML1vMxpRTwpXA8+CtcjvcxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1PDbwJT7Gshu+kMJ1vDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vOtROD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7Gshu+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+kMJ1PDbwJT7o9Pk9kMJ1POtROD7o9Pk9kMJ1vDbwJT7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vOtROD7Gshu+kMJ1vOtROD7o9Pk9kMJ1POtROD7Gshu+kMJ1POtROD7o9Pk9zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+zczMvIioRD7NzIw+zczMvIioRD5H4Xo+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+kMJ1vIioRD7NzIw+CtcjvDbwJT72KFw+kMJ1vIioRD5H4Xo+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9zcxMPdnAFz2amRk+KVyPPV+saT2amRk+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+KVyPvXe37z2amRk+KVyPvV+saT2amRk+KVyPvXe37z1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT2amRk+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+KVyPPXe37z2amRk+KVyPPXe37z1LN0m+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kMJ1vIioRD7NzIw+zczMvIioRD7NzIw+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+zczMvIioRD5H4Xo+kMJ1vIioRD5H4Xo+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1PDbwJT7NzIw+CtcjPDbwJT7NzIw+zczMPIioRD7NzIw+kMJ1PIioRD7NzIw+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PIioRD5H4Xo+zczMPIioRD5H4Xo+kMJ1PIioRD7NzIw+kMJ1PIioRD5H4Xo+zczMPIioRD7NzIw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PGDsgL3rUTi9kML1PJMftL0K16O8kML1PJMftL1/seS9kML1PGDsgL1toNO9kML1PFpyG73rUTi9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vFpyG73rUTi9kML1vGDsgL3rUTi9kML1vJMftL1/seS9kML1vGDsgL1toNO9kML1vDbwJT6G69G+kMJ1vDbwJT6amRk+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+kMJ1vDbwJT7o9Pk9kMJ1PDbwJT6amRk+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PDbwJT7rUTi+kML1PDbwJT6G69G+kMJ1vDbwJT7rUTi+kMJ1vDbwJT7Gshu+kMJ1PDbwJT7o9Pk9kMJ1PDbwJT7Gshu+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1vGMJqD1cj8I+kML1vGMJqD0K16M+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1PFV1ET4K16M+kML1PFV1ET6G69E+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7yamRk+kML1PKkNk7zjNvKozcxMPakNk7yamRk+zcxMPakNk7zjNvKozcxMPakNk7zjNvKokML1PKkNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDyamRk+zcxMPWygtDxKDIKnzcxMPWygtDyamRk+kML1PMxpRTwpXA8+kML1PEhEArwpXA8+kML1PKkNk7yamRk+kML1PKkNk7zjNvKokML1PEhEArzNzMw9kML1PGygtDxKDIKnkML1PGygtDyamRk+kML1PMxpRTzNzMw9kML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+zcxMvWygtDypE1CnzcxMvWygtDyamRk+kML1vGygtDypE1CnkML1vGygtDyamRk+kML1vKkNk7yamRk+kML1vMxpRTwpXA8+kML1vGygtDyamRk+kML1vGygtDypE1CnkML1vMxpRTzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1vKkNk7ypE1CnzcxMvakNk7yamRk+zcxMvakNk7ypE1CnkML1vKkNk7yamRk+kML1vKkNk7ypE1CnkML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PGDsgL1toNO9kML1vGDsgL1toNO9kML1PFpyG71cj8K9kML1vFpyG71cj8K9kML1vDB2QL5H4Xq+kML1PDB2QL5H4Xq+kML1vFpyG70Vrke+kML1PFpyG70Vrke+kML1vDB2QL5H4Xq+kML1vDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PDB2QL7hehS+kML1PDB2QL7hehS+kML1vDB2QL7hehS+kML1PN81u71BDue9kML1vJMftL1/seS9kML1PJMftL1/seS9kML1PGMJqD0K16M+kML1vGMJqD0K16M+kML1PFV1ET4K16M+kML1vFV1ET4K16M+zcxMPWMJqD1cj8I+kML1PGMJqD1cj8I+zcxMPej0+T1cj8I+kML1POj0+T1cj8I+zcxMvWMJqD1cj8I+kML1vEAnfj1cj8I+kML1PEAnfj1cj8I+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+zcxMvej0+T1cj8I+kML1POj0+T1cj8I+kML1POj0+T2G69E+zcxMPej0+T1cj8I+zcxMPej0+T2G69E+zcxMPej0+T2G69E+kML1POj0+T2G69E+zcxMPVV1ET6G69E+kML1PFV1ET6G69E+kML1PDbwJT6G69E+kML1vFV1ET6G69E+zcxMvVV1ET6G69E+kML1vDbwJT6G69E+zcxMvej0+T2G69E+kML1vOj0+T2G69E+zcxMvej0+T1cj8I+zcxMvej0+T2G69E+kML1vOj0+T1cj8I+kML1vOj0+T2G69E+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vJMftL1cj4I+kML1vHdXO75cj4I+kML1vJMftL1SuB4+kML1vBHxVL6G61E+kML1vBHxVL5SuB4+kML1vBHxVL5SuB4+kML1vBHxVL6G61E+kML1PBHxVL5SuB4+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vHdXO75cj4I+kML1PJMftL1cj4I+kML1vJMftL1cj4I+kML1vBHxVL5SuB4+kML1PBHxVL5SuB4+kML1vJMftL1SuB4+kML1PJMftL1SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+kML1vJMftL1/seS9kML1vJMftL0K16O8kML1PJMftL1/seS9kML1PJMftL0K16O8kML1PJMftL1SuB4+kML1vJMftL1SuB4+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8kML1vJMftL1cj4I+kML1PJMftL1cj4I+zcxMPZMftL0pXI8+zcxMPZMftL0K16O8zcxMPZMftL0pXI8+zcxMvZMftL0pXI8+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPWMJqD0K16M+kML1PEAnfj0K16M+kML1vEAnfj0K16M+zcxMvWMJqD0K16M+kMJ1vBHxVD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1PBHxVD7o9Pk9kMJ1PBHxVD7Gshu+kMJ1PH+hRj5EfDS+kMJ1PPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vPnlTj7KNyy+kMJ1PGobUT5ZAiq+kMJ1vGobUT5ZAiq+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1POtROD7rUTi+kMJ1PH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vH+hRj5EfDS+kMJ1vBHxVD7o9Pk9kMJ1PBHxVD7o9Pk9kMJ1vGobUT4GSgs+kMJ1PGobUT4GSgs+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1PPnlTj54fw0+kMJ1vPnlTj54fw0+kMJ1PGobUT4GSgs+kMJ1vGobUT4GSgs+kMJ1PDbwJT6amRk+kMJ1vDbwJT6amRk+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1vDbwJT7rUTi+kMJ1PDbwJT7rUTi+kMJ1vOtROD7rUTi+kMJ1POtROD7rUTi+zcxMPVV1ET72KFw+kML1PDbwJT7NzIw+kML1PDbwJT72KFw+CtcjPDbwJT7NzIw+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kML1PDbwJT7NzIw+zcxMvVV1ET72KFw+zcxMvRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvVpyG732KFw+zcxMvZMftL0K16O8zcxMvVpyG70K16O8kML1vDbwJT7NzIw+zcxMvVV1ET72KFw+kML1vDbwJT72KFw+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjvcxpRTzNzMw9CtcjvUhEArzNzMw9zcxMvZMftL0K16O8kML1vJMftL0K16O8zcxMvVpyG70K16O8kML1vFpyG70K16O8zcxMvZxWDD6amRk+zcxMvVV1ET6G69G+zcxMvWygtDyamRk+zcxMvZxWDD5LN0m+zcxMvWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvWMJqD2G69G+zcxMvdnAFz2amRk+zcxMvWygtDypE1CnzcxMvakNk7ypE1CnzcxMvVpyG72tR2G+zcxMvakNk7yamRk+zcxMvVpyG70K16O8kML1vFpyG70Vrke+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1PFpyG70Vrke+kML1PFpyG71cj8K9kML1PFpyG73rUTi9kML1PFpyG70K16O8zcxMPVpyG70K16O8kML1vFpyG73rUTi9kML1vFpyG71cj8K9kML1vFpyG70K16O8zcxMPcxpRTyQwvU9CtcjPcxpRTzNzMw9zcxMPUhEAryQwvU9CtcjPUhEArzNzMw9CtcjvcxpRTwpXA8+CtcjvUhEArwpXA8+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjPcxpRTwpXA8+zcxMPcxpRTyQwvU9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+zcxMvWMJqD2tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvZxWDD5LN0m+KVyPvV+saT1LN0m+KVyPvXe37z1LN0m+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+zcxMPZxWDD5LN0m+KVyPPXe37z1LN0m+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMvdnAFz2amRk+KVyPvV+saT2amRk+zcxMvZxWDD6amRk+KVyPvXe37z2amRk+zcxMPdnAFz2amRk+zcxMPZxWDD6amRk+KVyPPV+saT2amRk+KVyPPXe37z2amRk+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMPWMJqD2G69G+zcxMPWMJqD2tR2G+kML1vDbwJT6G69G+zcxMvVV1ET6G69G+kML1PJMftL0K16O8zcxMPZMftL0K16O8kML1PFpyG70K16O8zcxMPVpyG70K16O8zcxMvWMJqD2G69G+zcxMvWMJqD2tR2G+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+zcxMPakNk7yamRk+zcxMPWygtDyamRk+zcxMPakNk7zjNvKozcxMPdnAFz1LN0m+zcxMPWygtDxKDIKnzcxMPdnAFz2amRk+zcxMPVpyG72tR2G+zcxMPZxWDD5LN0m+zcxMPWMJqD2tR2G+zcxMPZxWDD6amRk+zcxMPVV1ET6G69G+zcxMPWMJqD2G69G+zcxMPVV1ET6G69G+kML1PDbwJT6G69G+////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9//v8AgP///3//////////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/f/9//7//f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////f/////////9///8AgP///3///wCA////f///AID///9//////////3///////3///////7//f///////v/9///////+//3///////78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f///////v/9///////+//3///////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/////f/////////9//////////3//////////f///AID///9///8AgP///3///wCA////f/////////9///////9//3////+//3//f////7//f/9/////v/9//3////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f///////v/9///////+//3///////7//f///////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/////f/////////9//v8AgP///3/+/wCA////f/7/AID///9///////9//1////+//3//X////7//f/9f////v/9//1////+//9///wAA/7//3///AAD/v//f//8AAP+//9///wAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9//1////+//3//X////7//f/9f////v/9//1/+//+//3//X////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgAyb//8AAACA2a7//wAAAIAMm///AAAAgNmu//8AAACA8uT//wAAAIAl0f//AAAAgPLk//8AAACAJdH//wAAAID/f/LkAAAAgP9/8uQAAACA/38l0QAAAID/fyXRAAAAgP9/2a4AAACA/3/ZrgAAAID/f/+/AAAAgP9//78AAACA/38l0QAAAID/fyXRAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgAAAqaoAAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID//6mqAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgKoq/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+//78AAACA/7//vwAAAIA=") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("vV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPARSKBQab1ksBFIoFBgoZzwCaTSUGm9ZLAvV5vQYKGc8C9Xm9B77wOwCaTSUHvvA7AXS6XPyaTWUFdLpc/vV5/QV0ul78mk1lBXS6Xv71ef0Emk0lBKkUrwL1eb0EqRSvAJpNJQWQByL+9Xm9BZAHIv0UigcEqRSvAJpNJwSpFK8BFIoHBZAHIvyaTScFkAci/XS6Xv0UiiUFdLpe/JpNZQV0ulz9FIolBXS6XPyaTWUFFIoFBZAHIvyaTSUFkAci/RSKBQSpFK8Amk0lBKkUrwCaTScFkAci/vV5vwWQByL8mk0nBKkUrwL1eb8EqRSvAXS6XP8Jg0EBdLpc/+PudQCaTyT/CYNBAJpPJP/j7nUDw9/s/XS63QCaTyT85Eag/XS6XPzkRqD8mk8k/TI8GP10ulz9MjwY/XS6XvzkRqD8mk8m/ORGoP10ul79MjwY/JpPJv0yPBj8mk8k/ORGoP10ulz85Eag/JpPJP0yPBj9dLpc/TI8GP/D3+z9dLrdAJpPJP8Jg0EAmk8k/+PudQF0ulz/4+51AXS6XP8Jg0EBdLpe/+PudQF0ul7/CYNBAJpPJv/j7nUAmk8m/wmDQQPD3+79dLrdA8Pf7v10ut0Amk8m/+PudQCaTyb/CYNBAXS6Xv8Jg0EBdLpe/+PudQF0ul785Eag/JpPJvzkRqD9dLpe/TI8GPyaTyb9MjwY/2I6/QAoorMDYjr9Ai8XCwIvF4kAKKKzA2I6/QD785cAyKtFAgEThwN7h00DUjN7AzQ3eQOVg1MCLxeJAi8XCwEHDmcA+/OXAQcOZwIvFwsBBw5nACiiswJpeq8CAROHARxauwNSM3sA2QrjA5WDUwPT5vMCLxcLA9Pm8wAoorMBdLhc/CiiswF0uF78KKKzAXS4XP4vFwsBdLhe/i8XCwEHDmUA+/OXAQcOZQIvFwsDYjr/APvzlwNiOv8CLxcLAMirRwIBE4cDYjr/ACiiswIvF4sAKKKzA3uHTwNSM3sDNDd7A5WDUwIvF4sCLxcLAQcOZQAoorMCaXqtAgEThwEcWrkDUjN7ANkK4QOVg1MD0+bxACiiswPT5vECLxcLAXS4XvwoorMBdLhe/i8XCwF0uFz8KKKzAXS4XP4vFwsBdLhc/2I6fwF0uFz9Bw7lAXS4Xv9iOn8BdLhe/QcO5QHU6LUFUe8nAdTotQUYqo8CpVBpBVHvJwN5uB0FGKqPAdTotQTTE0cB1Oi1BJ3OrwKlUGkE0xNHA3m4HQSdzq8Dw93u/dTo9QfD3e7+pVCpBXS4Xv3U6PUFdLhe/qVQqQfT5vEBYnZ6+Ho/3wFidnr70+bxARjC2vx6P98BGMLa/XS6XP8edXkBdLpe/x51eQF0ulz/Lnx9AXS6Xv8ufH0B1Oi3BJ3OrwHU6LcE0xNHA3m4HwSdzq8CpVBrBNMTRwPT5vMDmfZ+/9Pm8wFDtZsAej/dA5n2fvx6P90BQ7WbAXS6XvxJeRMBdLpc/El5EwF0ul78Wi0W/XS6XPxaLRb/0+bzARjC2v/T5vMCbXCLAHo/3QEYwtr8ej/dAm1wiwPT5vEBQ7WbA9Pm8QOZ9n78ej/fAUO1mwB6P98DmfZ+/Ho/3wJtcIsD0+bxAm1wiwB6P98BGMLa/9Pm8QEYwtr/0+bzARjC2vx6P90BGMLa/9Pm8wFidnr4ej/dAWJ2eviaTyb4KKKzAXS6XvwoorMBdLhe/ovPRwPD3e7+i89HAXS6XPyLyF8Emk8k+IvIXwfD3ez/PqzLBXS4XP8+rMsF1Oi3BRiqjwHU6LcFUe8nA3m4HwUYqo8CpVBrBVHvJwF0ulz8KKKzAJpPJPgoorMDw93s/ovPRwF0uFz+i89HAJpPJviLyF8FdLpe/IvIXwV0uF7/PqzLB8Pd7v8+rMsFdLhc/dTo9QV0uFz+pVCpB8Pd7P3U6PUHw93s/qVQqQV0ulz9KsLi/XS6Xv0qwuL/w9/s/77wOwPD3+7/vvA7A8Pf7P6b1ksDw9/u/pvWSwF0ulz8KKKzAXS6XvwoorMAmk0k/y58fQIvF4j/HnV5AJpNJP+LNjkCzroxA4s2OQAkvgkDHnV5Ai8XiP8ufH0Amk0m/y58fQCaTSb/izY5Ai8Xiv8ufH0CLxeK/x51eQLOujMDizY5ACS+CwMedXkBdLpe/ikRywV0uF7/0+dxAXS6Xv95uF0Emk8m+3m4XQV0uF79Bw7lAXS4XP/T53EAmk8k+3m4XQV0ulz/ebhdBXS4XP4vFwsBdLpc/ikRywV0uF7+LxcLAXS4Xv9iOn8BdLhc/QcO5QF0uFz/Yjp/AvV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPAXS6Xv71ef0FdLpe/JpNZQV0ulz+9Xn9BXS6XPyaTWUFFIoFBpvWSwEUigUGChnPAJpNJQab1ksC9Xm9BgoZzwL1eb0HvvA7AJpNJQe+8DsBdLpc/JpNZQV0ulz9FIolBXS6XvyaTWUFdLpe/RSKJQV0ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+XS6XP/T53EBdLpc/AACAP/D3+z/0+dxA8Pf7PwAAgD/w9/s/AnbaP10ulz8Cdto/8Pf7P+AWBz5dLpc/4BYHPl0ul78AAIA/XS6Xv/T53EDw9/u/AACAP/D3+7/0+dxAwmCwwEyPBj/CYLDAORGoP/T5vMACdto/AACVKwJ22j/w93vAORGoPwAAICrgFgc+9Pm8wOAWBz7w93vATI8GP10ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+8Pf7PwJ22j9dLpc/AnbaP/D3+z/gFgc+XS6XP+AWBz7w9/s/AACAP/D3+z/0+dxAXS6XPwAAgD9dLpc/9PncQPT5vEACdto/wmCwQEyPBj/0+bxA4BYHPgAAAKrgFgc+8Pd7QEyPBj/w93tAORGoP8JgsEA5Eag/AAAAqgJ22j/w9/u/9PncQPD3+78AAIA/XS6Xv/T53EBdLpe/AACAP71eb8DLnx9AV6v1wMufH0BbrbbA7GQGQalUGsHsZAZBvV5vQMufH0BXq/VAy58fQLkijkD2KZNAW622QOxkBkGpVBpB7GQGQV0ulz/yZ5RAXS6Xv/JnlEBdLpc/nGlmQF0ul7+caWZAXS6XP04fMUFdLpe/Th8xQV0ulz/GC5tAXS6Xv8YLm0BdLpc/qVQKwV0ulz9brZbAXS6Xv6lUCsFdLpe/W62WwF0ulz/SMx1BXS6Xv9IzHUFdLpc/iTO6QF0ul78Wm7VAXS6XPxabtUBdLpc/77wOwF0ul7/vvA7AXS6XP6b1ksBdLpe/pvWSwPD3+z/vvA7AXS6XP++8DsDw9/s/goZzwF0ulz+ChnPA8Pf7v++8DsBdLpe/SrC4v10ulz9KsLi/XS6Xv++8DsBdLpe/goZzwPD3+7+ChnPAXS6Xv71ef0FdLpe/RSKJQfD3+7+9Xn9B8Pf7v0UiiUHw9/s/goZzwF0ulz+ChnPA8Pf7P6b1ksBdLpc/pvWSwF0ulz8KKKzAXS6Xv6b1ksDw9/u/pvWSwF0ul78KKKzA8Pf7v4KGc8BdLpe/goZzwPD3+z+9Xn9B8Pf7P0UiiUFdLpc/vV5/QV0ulz9FIolBQ6EgwaA+A0FDoSDB4s2OQEUiAcEf/hJBjUbDwOLNjkCNRsPAH/4SQV0ul78yrSPAXS6Xv/9DmMBdLpc/Mq0jwF0ulz//Q5jAQ6EgQeLNjkBDoSBBoD4DQY1Gw0DizY5ARSIBQR/+EkGNRsNAH/4SQV0ulz+NRuNAXS6XP0UiEUFdLpe/jUbjQF0ul79FIhFBXS6XP6A+A0FdLpe/oD4DQV0ulz/izY5AXS6Xv+LNjkBdLpc/H/4SQV0ul78f/hJBXS6XP+LNjkBdLpe/4s2OQMJgMMHizY5A3m4HwcufH0Amk0k/4s2OQCaTST/Lnx9A3m4Hwab1ksAmk0nBMNI4QF0ulz9mXVnAXS6XP2izWT5dLpe/Zl1ZwF0ul79os1k+XS6Xv41G40BdLpc/jUbjQPD3+z/CYEBB8Pf7P2izWT5dLpc/Q6EwQV0ul79DoTBB8Pf7v8JgQEHw9/u/aLNZPvD3+z/vFYvA8Pf7v+8Vi8Dw9/s/Z1rSwPD3+79nWtLA8Pf7PzDSOEDw9/u/MNI4QPD3+z/vvA7AXS6XP0qwuL9dLpe/SrC4v/D3+7/vvA7AXS4Xv0HDuUBdLhe/2I6fwF0uFz9Bw7lAXS4XP9iOn8BdLhe/kbYBP10uF79wJmo9XS4XP5G2AT9dLhc/cCZqPV0uF78A4oC9XS4XPwDigL1dLhc/SCKKwF0uF79IIorAXS4XP6JcnMBdLhe/olycwF0uFz9ZOZVAXS4XP7Nzp0BdLhe/WTmVQF0uF7+zc6dAXS4Xvw5agMBdLhe/aJSSwF0uFz8OWoDAXS4XP2iUksBdLhe/5G5hQF0uFz/kbmFAXS4Xv8zxgkBdLhc/zPGCQF0uFz+sLai+XS4Xv6wtqL5dLhc/AitHv10uF78CK0e/XS4XP6bpZb9dLhe/pullv10uFz8KKKzAXS4XvwoorMBdLhc/i8XCwF0uF7+LxcLAXS4XPwoorMBdLhe/CiiswF0uFz+LxcLAXS4Xv4vFwsDebgfBZAHIv3U6LcEqRSvA3m4HwSpFK8Amk8k+dTo9QSaTyb51Oj1BXS6Xv3U6PUFdLpc/dTo9Qd5uB0Gm9ZLAJpNJQTDSOEDCYDBB4s2OQN5uB0HLnx9AJpNJv+LNjkAmk0m/y58fQHU6LUEqRSvA3m4HQWQByL/ebgdBKkUrwDRko0BMjwY/NGSjQDkRqD9yOIdATI8GP3I4h0A5Eag/8Pf7P+LNjkBdLpc/4s2OQPD3+z/Lnx9AXS6XP8ufH0D0+bxADKmMwEUigcGm9ZLA9Pm8QOAWBz4ej/fADKmMwCqVCsHvvA7AHo/3wEjR6r5FIoHB77wOwPT5vEBI0eq+AAAAquAWBz4AAACqAnbaPyqVCsHLnx9A9Pm8QAJ22j/w9/s/aLNZPl0ulz9Xq9XA8Pf7P1Qq9cDw9/u/VCr1wF0ul79Xq9XAXS6Xv71eL8BdLpe/FotFv10ul79os1k+8Pf7v2izWT5dLpc/FotFv10ulz+9Xi/AXS6XP2izWT40ZKPATI8GP3I4h8BMjwY/NGSjwDkRqD9yOIfAORGoP3I4h0BMjwY/cjiHQDkRqD9fGVZATI8GP18ZVkA5Eag/cjiHwEyPBj9fGVbATI8GP3I4h8A5Eag/XxlWwDkRqD/w9/s/y58fQPD3+7/Lnx9A8Pf7P++8DsBdLpc/SrC4v10ul79KsLi/8Pf7v++8DsDw9/s/SNHqvvD3+z8MqYzAwmAwQOZ9n7/CYDBAUO1mwPD3+79I0eq+wmAwwOZ9n7/w9/u/DKmMwMJgMMBQ7WbAXS6XP4pEcsFdLpc/VCr1wF0ul7+KRHLBXS6Xv1Qq9cDw9/u/SNHqvsJgMMDmfZ+/8Pf7vwypjMDCYDDAUO1mwPD3+z9I0eq+8Pf7PwypjMDCYDBA5n2fv8JgMEBQ7WbARSKBQWQByL8qlQpBZAHIv0UigUEqRSvAKpUKQSpFK8BFIoHBKkUrwEUigcFkAci/XS6Xv+LNjkDw9/u/4s2OQF0ul7/Lnx9A8Pf7v8ufH0BFIoHBKkUrwCqVCsEqRSvARSKBwWQByL8qlQrBZAHIv/T5vMACdto/9Pm8wOAWBz4AAJUrAnbaPx6P90BI0eq+AAAgKuAWBz70+bzASNHqviqVCkHLnx9AHo/3QAypjMAqlQpB77wOwPT5vMAMqYzARSKBQab1ksBFIoFB77wOwEUigUFkAci/RSKBQSpFK8A="), -"format": 34359742487, -"index_count": 294, -"index_data": PackedByteArray("QgFAAUEBQQFDAUIBRAFBAUABRQFEAUABQAFGAUUBRAFHAUEBRAFIAUcBRAFJAUgBTAFKAUsBSwFNAUwBUAFOAU8BTwFRAVABUQFSAVABUQFTAVIBUwFUAVIBVAFVAVIBVgFUAVMBUwFXAVYBWgFYAVkBWQFbAVoBXgFcAV0BXQFfAV4BXwFgAV4BYwFhAWIBYgFkAWMBZwFlAWYBZgFoAWcBaAFpAWcBbAFqAWsBawFtAWwBcAFuAW8BbwFxAXABdAFyAXMBcwF1AXQBeAF2AXcBdwF5AXgBegF3AXYBAwB6AXYBAgADAHYBdgF7AQIAfgF8AX0BfQF/AX4BgAF/AX0BgQGAAX0BggGBAX0BfQGDAYIBggGEAYEBgAGFAX8BhAGCAYYBhgGFAYQBhgF/AYUBhgGHAX8BigGIAYkBiQGLAYoBjgGMAY0BjQGPAY4BkAGPAY0BjQGRAZABlAGSAZMBkwGVAZQBmAGWAZcBlwGZAZgBlwGaAZkBmgGbAZkBngGcAZ0BnQGfAZ4BogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqgGoAakBqQGrAaoBrgGsAa0BrQGvAa4BrwGwAa4BrwGxAbABtAGyAbMBswG1AbQBuAG2AbcBtwG5AbgBugEXABUAFQC7AboBuwG8AboB1gC9AdMAvgHTAL0BvgG9ARsAvgEbABkAGQC/Ab4BvQHAARsAwQEIAAsACwDCAcEBwgHDAcEBwwHEAcEBwwHFAcQBxQHGAcQBxwEfAB0AHQDIAccByAHJAccB"), -"material": SubResource("StandardMaterial3D_fgu6n"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMvWMJqD0K16M+zcxMvWMJqD1cj8I+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMPVV1ET6G69E+zcxMPVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMvVV1ET6G69E+zcxMvVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMPWMJqD0K16M+zcxMPWMJqD1cj8I+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9kML1PMxpRTzNzMw9CtcjPcxpRTzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+CtcjPcxpRTwpXA8+kML1PMxpRTwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+CtcjvUhEArzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1PEhEArzNzMw9kML1PEhEArwpXA8+CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTzNzMw9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kML1vMxpRTzNzMw9kML1vEhEArwpXA8+CtcjvUhEArwpXA8+kML1vMxpRTwpXA8+CtcjvcxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1PDbwJT7Gshu+kMJ1vDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vOtROD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7Gshu+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+kMJ1PDbwJT7o9Pk9kMJ1POtROD7o9Pk9kMJ1vDbwJT7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vOtROD7Gshu+kMJ1vOtROD7o9Pk9kMJ1POtROD7Gshu+kMJ1POtROD7o9Pk9zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+zczMvIioRD7NzIw+zczMvIioRD5H4Xo+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+kMJ1vIioRD7NzIw+CtcjvDbwJT72KFw+kMJ1vIioRD5H4Xo+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9zcxMPdnAFz2amRk+KVyPPV+saT2amRk+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+KVyPvXe37z2amRk+KVyPvV+saT2amRk+KVyPvXe37z1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT2amRk+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+KVyPPXe37z2amRk+KVyPPXe37z1LN0m+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kMJ1vIioRD7NzIw+zczMvIioRD7NzIw+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+zczMvIioRD5H4Xo+kMJ1vIioRD5H4Xo+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1PDbwJT7NzIw+CtcjPDbwJT7NzIw+zczMPIioRD7NzIw+kMJ1PIioRD7NzIw+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PIioRD5H4Xo+zczMPIioRD5H4Xo+kMJ1PIioRD7NzIw+kMJ1PIioRD5H4Xo+zczMPIioRD7NzIw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PGDsgL3rUTi9kML1PJMftL0K16O8kML1PJMftL1/seS9kML1PGDsgL1toNO9kML1PFpyG73rUTi9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vFpyG73rUTi9kML1vGDsgL3rUTi9kML1vJMftL1/seS9kML1vGDsgL1toNO9kML1vDbwJT6G69G+kMJ1vDbwJT6amRk+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+kMJ1vDbwJT7o9Pk9kMJ1PDbwJT6amRk+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PDbwJT7rUTi+kML1PDbwJT6G69G+kMJ1vDbwJT7rUTi+kMJ1vDbwJT7Gshu+kMJ1PDbwJT7o9Pk9kMJ1PDbwJT7Gshu+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1vGMJqD1cj8I+kML1vGMJqD0K16M+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1PFV1ET4K16M+kML1PFV1ET6G69E+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7yamRk+kML1PKkNk7zjNvKozcxMPakNk7yamRk+zcxMPakNk7zjNvKozcxMPakNk7zjNvKokML1PKkNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDyamRk+zcxMPWygtDxKDIKnzcxMPWygtDyamRk+kML1PMxpRTwpXA8+kML1PEhEArwpXA8+kML1PKkNk7yamRk+kML1PKkNk7zjNvKokML1PEhEArzNzMw9kML1PGygtDxKDIKnkML1PGygtDyamRk+kML1PMxpRTzNzMw9kML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+zcxMvWygtDypE1CnzcxMvWygtDyamRk+kML1vGygtDypE1CnkML1vGygtDyamRk+kML1vKkNk7yamRk+kML1vMxpRTwpXA8+kML1vGygtDyamRk+kML1vGygtDypE1CnkML1vMxpRTzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1vKkNk7ypE1CnzcxMvakNk7yamRk+zcxMvakNk7ypE1CnkML1vKkNk7yamRk+kML1vKkNk7ypE1CnkML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PGDsgL1toNO9kML1vGDsgL1toNO9kML1PFpyG71cj8K9kML1vFpyG71cj8K9kML1vDB2QL5H4Xq+kML1PDB2QL5H4Xq+kML1vFpyG70Vrke+kML1PFpyG70Vrke+kML1vDB2QL5H4Xq+kML1vDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PDB2QL7hehS+kML1PDB2QL7hehS+kML1vDB2QL7hehS+kML1PN81u71BDue9kML1vJMftL1/seS9kML1PJMftL1/seS9kML1PGMJqD0K16M+kML1vGMJqD0K16M+kML1PFV1ET4K16M+kML1vFV1ET4K16M+zcxMPWMJqD1cj8I+kML1PGMJqD1cj8I+zcxMPej0+T1cj8I+kML1POj0+T1cj8I+zcxMvWMJqD1cj8I+kML1vEAnfj1cj8I+kML1PEAnfj1cj8I+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+zcxMvej0+T1cj8I+kML1POj0+T1cj8I+kML1POj0+T2G69E+zcxMPej0+T1cj8I+zcxMPej0+T2G69E+zcxMPej0+T2G69E+kML1POj0+T2G69E+zcxMPVV1ET6G69E+kML1PFV1ET6G69E+kML1PDbwJT6G69E+kML1vFV1ET6G69E+zcxMvVV1ET6G69E+kML1vDbwJT6G69E+zcxMvej0+T2G69E+kML1vOj0+T2G69E+zcxMvej0+T1cj8I+zcxMvej0+T2G69E+kML1vOj0+T1cj8I+kML1vOj0+T2G69E+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vJMftL1cj4I+kML1vHdXO75cj4I+kML1vJMftL1SuB4+kML1vBHxVL6G61E+kML1vBHxVL5SuB4+kML1vBHxVL5SuB4+kML1vBHxVL6G61E+kML1PBHxVL5SuB4+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vHdXO75cj4I+kML1PJMftL1cj4I+kML1vJMftL1cj4I+kML1vBHxVL5SuB4+kML1PBHxVL5SuB4+kML1vJMftL1SuB4+kML1PJMftL1SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+kML1vJMftL1/seS9kML1vJMftL0K16O8kML1PJMftL1/seS9kML1PJMftL0K16O8kML1PJMftL1SuB4+kML1vJMftL1SuB4+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8kML1vJMftL1cj4I+kML1PJMftL1cj4I+zcxMPZMftL0pXI8+zcxMPZMftL0K16O8zcxMPZMftL0pXI8+zcxMvZMftL0pXI8+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPWMJqD0K16M+kML1PEAnfj0K16M+kML1vEAnfj0K16M+zcxMvWMJqD0K16M+kMJ1vBHxVD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1PBHxVD7o9Pk9kMJ1PBHxVD7Gshu+kMJ1PH+hRj5EfDS+kMJ1PPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vPnlTj7KNyy+kMJ1PGobUT5ZAiq+kMJ1vGobUT5ZAiq+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1POtROD7rUTi+kMJ1PH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vH+hRj5EfDS+kMJ1vBHxVD7o9Pk9kMJ1PBHxVD7o9Pk9kMJ1vGobUT4GSgs+kMJ1PGobUT4GSgs+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1PPnlTj54fw0+kMJ1vPnlTj54fw0+kMJ1PGobUT4GSgs+kMJ1vGobUT4GSgs+kMJ1PDbwJT6amRk+kMJ1vDbwJT6amRk+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1vDbwJT7rUTi+kMJ1PDbwJT7rUTi+kMJ1vOtROD7rUTi+kMJ1POtROD7rUTi+zcxMPVV1ET72KFw+kML1PDbwJT7NzIw+kML1PDbwJT72KFw+CtcjPDbwJT7NzIw+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kML1PDbwJT7NzIw+zcxMvVV1ET72KFw+zcxMvRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvVpyG732KFw+zcxMvZMftL0K16O8zcxMvVpyG70K16O8kML1vDbwJT7NzIw+zcxMvVV1ET72KFw+kML1vDbwJT72KFw+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjvcxpRTzNzMw9CtcjvUhEArzNzMw9zcxMvZMftL0K16O8kML1vJMftL0K16O8zcxMvVpyG70K16O8kML1vFpyG70K16O8zcxMvZxWDD6amRk+zcxMvVV1ET6G69G+zcxMvWygtDyamRk+zcxMvZxWDD5LN0m+zcxMvWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvWMJqD2G69G+zcxMvdnAFz2amRk+zcxMvWygtDypE1CnzcxMvakNk7ypE1CnzcxMvVpyG72tR2G+zcxMvakNk7yamRk+zcxMvVpyG70K16O8kML1vFpyG70Vrke+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1PFpyG70Vrke+kML1PFpyG71cj8K9kML1PFpyG73rUTi9kML1PFpyG70K16O8zcxMPVpyG70K16O8kML1vFpyG73rUTi9kML1vFpyG71cj8K9kML1vFpyG70K16O8zcxMPcxpRTyQwvU9CtcjPcxpRTzNzMw9zcxMPUhEAryQwvU9CtcjPUhEArzNzMw9CtcjvcxpRTwpXA8+CtcjvUhEArwpXA8+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjPcxpRTwpXA8+zcxMPcxpRTyQwvU9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+zcxMvWMJqD2tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvZxWDD5LN0m+KVyPvV+saT1LN0m+KVyPvXe37z1LN0m+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+zcxMPZxWDD5LN0m+KVyPPXe37z1LN0m+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMvdnAFz2amRk+KVyPvV+saT2amRk+zcxMvZxWDD6amRk+KVyPvXe37z2amRk+zcxMPdnAFz2amRk+zcxMPZxWDD6amRk+KVyPPV+saT2amRk+KVyPPXe37z2amRk+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMPWMJqD2G69G+zcxMPWMJqD2tR2G+kML1vDbwJT6G69G+zcxMvVV1ET6G69G+kML1PJMftL0K16O8zcxMPZMftL0K16O8kML1PFpyG70K16O8zcxMPVpyG70K16O8zcxMvWMJqD2G69G+zcxMvWMJqD2tR2G+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+zcxMPakNk7yamRk+zcxMPWygtDyamRk+zcxMPakNk7zjNvKozcxMPdnAFz1LN0m+zcxMPWygtDxKDIKnzcxMPdnAFz2amRk+zcxMPVpyG72tR2G+zcxMPZxWDD5LN0m+zcxMPWMJqD2tR2G+zcxMPZxWDD6amRk+zcxMPVV1ET6G69G+zcxMPWMJqD2G69G+zcxMPVV1ET6G69G+kML1PDbwJT6G69G+////fwAAAID///9/AAAAgP///3//////////f/////////9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/fwAAAIAAAP9/AAAAgAAA/3//f/+//38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP+//78AAACA/7//v///////v/+/AAAAgP+//7///////3///wAAAID/f///////v/9///8AAACA/3///////7//P/+/AAAAgP8//7//f/+//z//vwAAAID/P/+//3//v/+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///////v/9///8AAACA/3///wAAAID/f///////v/9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/////f/7/AID///9///8AgP///3///wCA////f/////////9///////9/qir///+//3+qKv///7//f6oq////v/9/qir///+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3//f////7//f/9/////v/9//3////+//3//f////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v////3///wCA////f/7/AID///9//////////3//////////f///AID///9//v////9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9//z////+//3//P////7//f/8/////v/9//z////+//3//f////7//f/9/////v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//3///////7//f///////v/9///////+//3///////78l0f//AAD/v/+///8AAP+/JdH//wAA/7//v///AAD/v9mu//8AAP+/2a7//wAA/7//fwyb////v/9/DJv///+//3/Zrv///7//f9mu////vwyb//8AAP+/2a7//wAA/78Mm///AAD/v9mu//8AAP+/8uT//wAA/78l0f//AAD/v/Lk//8AAP+/JdH//wAA/7//f/Lk////v/9/8uT///+//38l0f///7//fyXR////v/9/2a7///+//3/Zrv///7//f/+/////v/9//7////+//38l0f///7//fyXR////v/9//3////+//3//f////7//f/9/////v/9//3////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//v/+///////+//7///////7//v///////f///////v/9///////+//3///////7//f///////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/8//7//f/+//z//v/9//7//P/+//3//vwAAqaoAAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID//6mqAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgKoq/38AAACAVNX/fwAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+//78AAACA/7//vwAAAIA=") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("vV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPARSKBQab1ksBFIoFBgoZzwCaTSUGm9ZLAvV5vQYKGc8C9Xm9B77wOwCaTSUHvvA7AXS6XPyaTWUFdLpc/vV5/QV0ul78mk1lBXS6Xv71ef0Emk0lBKkUrwL1eb0EqRSvAJpNJQWQByL+9Xm9BZAHIv0UigcEqRSvAJpNJwSpFK8BFIoHBZAHIvyaTScFkAci/XS6Xv0UiiUFdLpe/JpNZQV0ulz9FIolBXS6XPyaTWUFFIoFBZAHIvyaTSUFkAci/RSKBQSpFK8Amk0lBKkUrwCaTScFkAci/vV5vwWQByL8mk0nBKkUrwL1eb8EqRSvAXS6XP8Jg0EBdLpc/+PudQCaTyT/CYNBAJpPJP/j7nUDw9/s/XS63QCaTyT85Eag/XS6XPzkRqD8mk8k/TI8GP10ulz9MjwY/XS6XvzkRqD8mk8m/ORGoP10ul79MjwY/JpPJv0yPBj8mk8k/ORGoP10ulz85Eag/JpPJP0yPBj9dLpc/TI8GP/D3+z9dLrdAJpPJP8Jg0EAmk8k/+PudQF0ulz/4+51AXS6XP8Jg0EBdLpe/+PudQF0ul7/CYNBAJpPJv/j7nUAmk8m/wmDQQPD3+79dLrdA8Pf7v10ut0Amk8m/+PudQCaTyb/CYNBAXS6Xv8Jg0EBdLpe/+PudQF0ul785Eag/JpPJvzkRqD9dLpe/TI8GPyaTyb9MjwY/2I6/QAoorMDYjr9Ai8XCwIvF4kAKKKzA2I6/QD785cAyKtFAgEThwN7h00DUjN7AzQ3eQOVg1MCLxeJAi8XCwEHDmcA+/OXAQcOZwIvFwsBBw5nACiiswJpeq8CAROHARxauwNSM3sA2QrjA5WDUwPT5vMCLxcLA9Pm8wAoorMBdLhc/CiiswF0uF78KKKzAXS4XP4vFwsBdLhe/i8XCwEHDmUA+/OXAQcOZQIvFwsDYjr/APvzlwNiOv8CLxcLAMirRwIBE4cDYjr/ACiiswIvF4sAKKKzA3uHTwNSM3sDNDd7A5WDUwIvF4sCLxcLAQcOZQAoorMCaXqtAgEThwEcWrkDUjN7ANkK4QOVg1MD0+bxACiiswPT5vECLxcLAXS4XvwoorMBdLhe/i8XCwF0uFz8KKKzAXS4XP4vFwsBdLhc/2I6fwF0uFz9Bw7lAXS4Xv9iOn8BdLhe/QcO5QHU6LUFUe8nAdTotQUYqo8CpVBpBVHvJwN5uB0FGKqPAdTotQTTE0cB1Oi1BJ3OrwKlUGkE0xNHA3m4HQSdzq8Dw93u/dTo9QfD3e7+pVCpBXS4Xv3U6PUFdLhe/qVQqQfT5vEBYnZ6+Ho/3wFidnr70+bxARjC2vx6P98BGMLa/XS6XP8edXkBdLpe/x51eQF0ulz/Lnx9AXS6Xv8ufH0B1Oi3BJ3OrwHU6LcE0xNHA3m4HwSdzq8CpVBrBNMTRwPT5vMDmfZ+/9Pm8wFDtZsAej/dA5n2fvx6P90BQ7WbAXS6XvxJeRMBdLpc/El5EwF0ul78Wi0W/XS6XPxaLRb/0+bzARjC2v/T5vMCbXCLAHo/3QEYwtr8ej/dAm1wiwPT5vEBQ7WbA9Pm8QOZ9n78ej/fAUO1mwB6P98DmfZ+/Ho/3wJtcIsD0+bxAm1wiwB6P98BGMLa/9Pm8QEYwtr/0+bzARjC2vx6P90BGMLa/9Pm8wFidnr4ej/dAWJ2eviaTyb4KKKzAXS6XvwoorMBdLhe/ovPRwPD3e7+i89HAXS6XPyLyF8Emk8k+IvIXwfD3ez/PqzLBXS4XP8+rMsF1Oi3BRiqjwHU6LcFUe8nA3m4HwUYqo8CpVBrBVHvJwF0ulz8KKKzAJpPJPgoorMDw93s/ovPRwF0uFz+i89HAJpPJviLyF8FdLpe/IvIXwV0uF7/PqzLB8Pd7v8+rMsFdLhc/dTo9QV0uFz+pVCpB8Pd7P3U6PUHw93s/qVQqQV0ulz9KsLi/XS6Xv0qwuL/w9/s/77wOwPD3+7/vvA7A8Pf7P6b1ksDw9/u/pvWSwF0ulz8KKKzAXS6XvwoorMAmk0k/y58fQIvF4j/HnV5AJpNJP+LNjkCzroxA4s2OQAkvgkDHnV5Ai8XiP8ufH0Amk0m/y58fQCaTSb/izY5Ai8Xiv8ufH0CLxeK/x51eQLOujMDizY5ACS+CwMedXkBdLpe/ikRywV0uF7/0+dxAXS6Xv95uF0Emk8m+3m4XQV0uF79Bw7lAXS4XP/T53EAmk8k+3m4XQV0ulz/ebhdBXS4XP4vFwsBdLpc/ikRywV0uF7+LxcLAXS4Xv9iOn8BdLhc/QcO5QF0uFz/Yjp/AvV5vwe+8DsC9Xm/BgoZzwCaTScHvvA7AJpNJwab1ksBFIoHBpvWSwEUigcGChnPAXS6Xv71ef0FdLpe/JpNZQV0ulz+9Xn9BXS6XPyaTWUFFIoFBpvWSwEUigUGChnPAJpNJQab1ksC9Xm9BgoZzwL1eb0HvvA7AJpNJQe+8DsBdLpc/JpNZQV0ulz9FIolBXS6XvyaTWUFdLpe/RSKJQV0ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+XS6XP/T53EBdLpc/AACAP/D3+z/0+dxA8Pf7PwAAgD/w9/s/AnbaP10ulz8Cdto/8Pf7P+AWBz5dLpc/4BYHPl0ul78AAIA/XS6Xv/T53EDw9/u/AACAP/D3+7/0+dxAwmCwwEyPBj/CYLDAORGoP/T5vMACdto/AACVKwJ22j/w93vAORGoPwAAICrgFgc+9Pm8wOAWBz7w93vATI8GP10ul78Cdto/8Pf7vwJ22j9dLpe/4BYHPvD3+7/gFgc+8Pf7PwJ22j9dLpc/AnbaP/D3+z/gFgc+XS6XP+AWBz7w9/s/AACAP/D3+z/0+dxAXS6XPwAAgD9dLpc/9PncQPT5vEACdto/wmCwQEyPBj/0+bxA4BYHPgAAAKrgFgc+8Pd7QEyPBj/w93tAORGoP8JgsEA5Eag/AAAAqgJ22j/w9/u/9PncQPD3+78AAIA/XS6Xv/T53EBdLpe/AACAP71eb8DLnx9AV6v1wMufH0BbrbbA7GQGQalUGsHsZAZBvV5vQMufH0BXq/VAy58fQLkijkD2KZNAW622QOxkBkGpVBpB7GQGQV0ulz/yZ5RAXS6Xv/JnlEBdLpc/nGlmQF0ul7+caWZAXS6XP04fMUFdLpe/Th8xQV0ulz/GC5tAXS6Xv8YLm0BdLpc/qVQKwV0ulz9brZbAXS6Xv6lUCsFdLpe/W62WwF0ulz/SMx1BXS6Xv9IzHUFdLpc/iTO6QF0ul78Wm7VAXS6XPxabtUBdLpc/77wOwF0ul7/vvA7AXS6XP6b1ksBdLpe/pvWSwPD3+z/vvA7AXS6XP++8DsDw9/s/goZzwF0ulz+ChnPA8Pf7v++8DsBdLpe/SrC4v10ulz9KsLi/XS6Xv++8DsBdLpe/goZzwPD3+7+ChnPAXS6Xv71ef0FdLpe/RSKJQfD3+7+9Xn9B8Pf7v0UiiUHw9/s/goZzwF0ulz+ChnPA8Pf7P6b1ksBdLpc/pvWSwF0ulz8KKKzAXS6Xv6b1ksDw9/u/pvWSwF0ul78KKKzA8Pf7v4KGc8BdLpe/goZzwPD3+z+9Xn9B8Pf7P0UiiUFdLpc/vV5/QV0ulz9FIolBQ6EgwaA+A0FDoSDB4s2OQEUiAcEf/hJBjUbDwOLNjkCNRsPAH/4SQV0ul78yrSPAXS6Xv/9DmMBdLpc/Mq0jwF0ulz//Q5jAQ6EgQeLNjkBDoSBBoD4DQY1Gw0DizY5ARSIBQR/+EkGNRsNAH/4SQV0ulz+NRuNAXS6XP0UiEUFdLpe/jUbjQF0ul79FIhFBXS6XP6A+A0FdLpe/oD4DQV0ulz/izY5AXS6Xv+LNjkBdLpc/H/4SQV0ul78f/hJBXS6XP+LNjkBdLpe/4s2OQMJgMMHizY5A3m4HwcufH0Amk0k/4s2OQCaTST/Lnx9A3m4Hwab1ksAmk0nBMNI4QF0ulz9mXVnAXS6XP2izWT5dLpe/Zl1ZwF0ul79os1k+XS6Xv41G40BdLpc/jUbjQPD3+z/CYEBB8Pf7P2izWT5dLpc/Q6EwQV0ul79DoTBB8Pf7v8JgQEHw9/u/aLNZPvD3+z/vFYvA8Pf7v+8Vi8Dw9/s/Z1rSwPD3+79nWtLA8Pf7PzDSOEDw9/u/MNI4QPD3+z/vvA7AXS6XP0qwuL9dLpe/SrC4v/D3+7/vvA7AXS4Xv0HDuUBdLhe/2I6fwF0uFz9Bw7lAXS4XP9iOn8BdLhe/kbYBP10uF79wJmo9XS4XP5G2AT9dLhc/cCZqPV0uF78A4oC9XS4XPwDigL1dLhc/SCKKwF0uF79IIorAXS4XP6JcnMBdLhe/olycwF0uFz9ZOZVAXS4XP7Nzp0BdLhe/WTmVQF0uF7+zc6dAXS4Xvw5agMBdLhe/aJSSwF0uFz8OWoDAXS4XP2iUksBdLhe/5G5hQF0uFz/kbmFAXS4Xv8zxgkBdLhc/zPGCQF0uFz+sLai+XS4Xv6wtqL5dLhc/AitHv10uF78CK0e/XS4XP6bpZb9dLhe/pullv10uFz8KKKzAXS4XvwoorMBdLhc/i8XCwF0uF7+LxcLAXS4XPwoorMBdLhe/CiiswF0uFz+LxcLAXS4Xv4vFwsDebgfBZAHIv3U6LcEqRSvA3m4HwSpFK8Amk8k+dTo9QSaTyb51Oj1BXS6Xv3U6PUFdLpc/dTo9Qd5uB0Gm9ZLAJpNJQTDSOEDCYDBB4s2OQN5uB0HLnx9AJpNJv+LNjkAmk0m/y58fQHU6LUEqRSvA3m4HQWQByL/ebgdBKkUrwDRko0BMjwY/NGSjQDkRqD9yOIdATI8GP3I4h0A5Eag/8Pf7P+LNjkBdLpc/4s2OQPD3+z/Lnx9AXS6XP8ufH0D0+bxADKmMwEUigcGm9ZLA9Pm8QOAWBz4ej/fADKmMwCqVCsHvvA7AHo/3wEjR6r5FIoHB77wOwPT5vEBI0eq+AAAAquAWBz4AAACqAnbaPyqVCsHLnx9A9Pm8QAJ22j/w9/s/aLNZPl0ulz9Xq9XA8Pf7P1Qq9cDw9/u/VCr1wF0ul79Xq9XAXS6Xv71eL8BdLpe/FotFv10ul79os1k+8Pf7v2izWT5dLpc/FotFv10ulz+9Xi/AXS6XP2izWT40ZKPATI8GP3I4h8BMjwY/NGSjwDkRqD9yOIfAORGoP3I4h0BMjwY/cjiHQDkRqD9fGVZATI8GP18ZVkA5Eag/cjiHwEyPBj9fGVbATI8GP3I4h8A5Eag/XxlWwDkRqD/w9/s/y58fQPD3+7/Lnx9A8Pf7P++8DsBdLpc/SrC4v10ul79KsLi/8Pf7v++8DsDw9/s/SNHqvvD3+z8MqYzAwmAwQOZ9n7/CYDBAUO1mwPD3+79I0eq+wmAwwOZ9n7/w9/u/DKmMwMJgMMBQ7WbAXS6XP4pEcsFdLpc/VCr1wF0ul7+KRHLBXS6Xv1Qq9cDw9/u/SNHqvsJgMMDmfZ+/8Pf7vwypjMDCYDDAUO1mwPD3+z9I0eq+8Pf7PwypjMDCYDBA5n2fv8JgMEBQ7WbARSKBQWQByL8qlQpBZAHIv0UigUEqRSvAKpUKQSpFK8BFIoHBKkUrwEUigcFkAci/XS6Xv+LNjkDw9/u/4s2OQF0ul7/Lnx9A8Pf7v8ufH0BFIoHBKkUrwCqVCsEqRSvARSKBwWQByL8qlQrBZAHIv/T5vMACdto/9Pm8wOAWBz4AAJUrAnbaPx6P90BI0eq+AAAgKuAWBz70+bzASNHqviqVCkHLnx9AHo/3QAypjMAqlQpB77wOwPT5vMAMqYzARSKBQab1ksBFIoFB77wOwEUigUFkAci/RSKBQSpFK8A="), -"format": 34359742487, -"index_count": 240, -"index_data": PackedByteArray("zAHKAcsBywHNAcwB0AHOAc8BzwHRAdABwQHEAdIB0gHTAcEBxAHUAdIB0gHVAdMB1QHWAdMB1QHXAdYB1gHYAdMB2QHSAdQB1AHaAdkB2gHXAdkB2gHbAdcB2wHGAdcBxgHcAdcB3AHWAdcBxAHGAd0B3QHUAcQBxgHbAd0B4AHeAd8B3wHhAeAB3wHiAeEB4gHjAeEB4wHkAeEB5AHlAeEB5QHmAeEB5wHkAeMB4wHoAecB6AHfAd4B3gHpAegB6QHnAegB7AHqAesB6wHtAewB8AHuAe8B7wHxAfAB9AHyAfMB8wH1AfQB+AH2AfcB9wH5AfgB+gH5AfcB9wH7AfoB/gH8Af0B/QH/Af4BAgIAAgECAQIDAgICBgIEAgUCBQIHAgYCCgIIAgkCCQILAgoCDgIMAg0CDQIPAg4CEgIQAhECEQITAhICFALJAcgByAEVAhQCGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCdwF6AR4CHgJ5AXcBegEfAh4CHgIgAnkBIQJ5ASACIQIgAiICIgIfAiMCIwIhAiICIQIkAnkBIQIlAiQCJQImAiQCJwIfAnoBJwIjAh8CegEoAicCKAIlAicCKAImAiUCKAIpAiYCKgK6AbwBvAErAioC"), -"material": SubResource("StandardMaterial3D_karnx"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("zcxMPWMJqD1cj8I+zcxMPej0+T1cj8I+zcxMPWMJqD0K16M+zcxMPVV1ET4K16M+zcxMPVV1ET6G69E+zcxMPej0+T2G69E+zcxMvVV1ET6G69E+zcxMvej0+T2G69E+zcxMvVV1ET4K16M+zcxMvej0+T1cj8I+zcxMvWMJqD1cj8I+zcxMvWMJqD0K16M+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMvWMJqD0K16M+zcxMvWMJqD1cj8I+kML1vEAnfj0K16M+kML1vEAnfj1cj8I+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMPVV1ET6G69E+zcxMPVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PDbwJT6G69E+kML1PDbwJT4K16M+zcxMvVV1ET6G69E+zcxMvVV1ET4K16M+kML1vDbwJT6G69E+kML1vDbwJT4K16M+kML1PEAnfj0K16M+kML1PEAnfj1cj8I+zcxMPWMJqD0K16M+zcxMPWMJqD1cj8I+kML1PMxpRTwpXA8+kML1PMxpRTzNzMw9CtcjPcxpRTwpXA8+CtcjPcxpRTzNzMw9zcxMPcxpRTyQwvU9CtcjvUhEArzNzMw9kML1vEhEArzNzMw9CtcjvcxpRTzNzMw9kML1vMxpRTzNzMw9kML1PEhEArzNzMw9CtcjPUhEArzNzMw9kML1PMxpRTzNzMw9CtcjPcxpRTzNzMw9CtcjPUhEArwpXA8+kML1PEhEArwpXA8+CtcjPcxpRTwpXA8+kML1PMxpRTwpXA8+zcxMvUhEAryQwvU9CtcjvUhEArwpXA8+CtcjvUhEArzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1PEhEArzNzMw9kML1PEhEArwpXA8+CtcjPUhEArzNzMw9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvcxpRTyQwvU9CtcjvcxpRTzNzMw9CtcjvcxpRTwpXA8+kML1vMxpRTwpXA8+kML1vMxpRTzNzMw9kML1vEhEArwpXA8+CtcjvUhEArwpXA8+kML1vMxpRTwpXA8+CtcjvcxpRTwpXA8+kMJ1PDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1PDbwJT7rUTi+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1PPnlTj7KNyy+kMJ1PH+hRj5EfDS+kMJ1POtROD7rUTi+kMJ1PBHxVD7o9Pk9kMJ1POtROD7o9Pk9kMJ1PDbwJT7o9Pk9kMJ1PGobUT4GSgs+kMJ1PPnlTj54fw0+kMJ1PH+hRj7ywxU+kMJ1POtROD6amRk+kMJ1PDbwJT6amRk+kMJ1PDbwJT7Gshu+kMJ1vDbwJT7Gshu+kMJ1POtROD7Gshu+kMJ1vOtROD7Gshu+kMJ1vBHxVD7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1vOtROD7Gshu+kMJ1vGobUT5ZAiq+kMJ1vDbwJT7Gshu+kMJ1vDbwJT7rUTi+kMJ1vPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vDbwJT7o9Pk9kMJ1vGobUT4GSgs+kMJ1vPnlTj54fw0+kMJ1vH+hRj7ywxU+kMJ1vDbwJT6amRk+kMJ1vOtROD6amRk+kMJ1PDbwJT7o9Pk9kMJ1POtROD7o9Pk9kMJ1vDbwJT7o9Pk9kMJ1vOtROD7o9Pk9kMJ1vOtROD7Gshu+kMJ1vOtROD7o9Pk9kMJ1POtROD7Gshu+kMJ1POtROD7o9Pk9zczMvIioRD7NzIw+kML1vDbwJT7NzIw+zczMvIioRD5H4Xo+kML1vDbwJT72KFw+kMJ1PIioRD7NzIw+CtcjPDbwJT7NzIw+kMJ1PIioRD5H4Xo+CtcjPDbwJT72KFw+zczMvIioRD7NzIw+zczMvIioRD5H4Xo+kMJ1vIioRD7NzIw+kMJ1vIioRD5H4Xo+KVyPvXe37z2amRk+KVyPvXe37z1LN0m+zcxMvZxWDD6amRk+zcxMvZxWDD5LN0m+kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9kML1vFpyG73rUTi9kML1PFpyG73rUTi9CtcjvDbwJT7NzIw+kMJ1vIioRD7NzIw+CtcjvDbwJT72KFw+kMJ1vIioRD5H4Xo+KVyPPV+saT2amRk+KVyPPXe37z2amRk+KVyPPV+saT1LN0m+KVyPPXe37z1LN0m+kML1vGDsgL1toNO9kML1PGDsgL1toNO9kML1vGDsgL3rUTi9kML1PGDsgL3rUTi9zcxMPdnAFz2amRk+KVyPPV+saT2amRk+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+KVyPvXe37z2amRk+KVyPvV+saT2amRk+KVyPvXe37z1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT1LN0m+KVyPvV+saT2amRk+zcxMvdnAFz1LN0m+zcxMvdnAFz2amRk+zcxMPZxWDD6amRk+zcxMPZxWDD5LN0m+KVyPPXe37z2amRk+KVyPPXe37z1LN0m+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kMJ1vIioRD7NzIw+zczMvIioRD7NzIw+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+zczMvIioRD5H4Xo+kMJ1vIioRD5H4Xo+kML1PDbwJT7NzIw+zczMPIioRD7NzIw+kML1PDbwJT72KFw+zczMPIioRD5H4Xo+kML1PDbwJT7NzIw+CtcjPDbwJT7NzIw+zczMPIioRD7NzIw+kMJ1PIioRD7NzIw+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PIioRD5H4Xo+zczMPIioRD5H4Xo+kMJ1PIioRD7NzIw+kMJ1PIioRD5H4Xo+zczMPIioRD7NzIw+zczMPIioRD5H4Xo+kML1vEAnfj2G69G+kML1PEAnfj2G69G+zcxMvWMJqD2G69G+zcxMPWMJqD2G69G+zcxMvVV1ET6G69G+zcxMPVV1ET6G69G+kML1vDbwJT6G69G+kML1PDbwJT6G69G+kML1PFpyG70K16O8kML1PGDsgL3rUTi9kML1PJMftL0K16O8kML1PJMftL1/seS9kML1PGDsgL1toNO9kML1PFpyG73rUTi9kML1vFpyG70K16O8kML1vJMftL0K16O8kML1vFpyG73rUTi9kML1vGDsgL3rUTi9kML1vJMftL1/seS9kML1vGDsgL1toNO9kML1vDbwJT6G69G+kMJ1vDbwJT6amRk+kML1vDbwJT72KFw+CtcjvDbwJT72KFw+kMJ1vDbwJT7o9Pk9kMJ1PDbwJT6amRk+CtcjPDbwJT72KFw+kML1PDbwJT72KFw+kMJ1PDbwJT7rUTi+kML1PDbwJT6G69G+kMJ1vDbwJT7rUTi+kMJ1vDbwJT7Gshu+kMJ1PDbwJT7o9Pk9kMJ1PDbwJT7Gshu+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+kML1vGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1vOj0+T2G69E+kML1vGMJqD1cj8I+kML1vGMJqD0K16M+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1PFV1ET6G69E+kML1POj0+T2G69E+kML1PFV1ET4K16M+kML1POj0+T1cj8I+kML1PGMJqD1cj8I+kML1PGMJqD0K16M+kML1vFV1ET4K16M+kML1vFV1ET6G69E+kML1PFV1ET4K16M+kML1PFV1ET6G69E+kML1PKkNk7yamRk+zcxMPakNk7yamRk+kML1PGygtDyamRk+zcxMPWygtDyamRk+kML1PKkNk7yamRk+kML1PKkNk7zjNvKozcxMPakNk7yamRk+zcxMPakNk7zjNvKozcxMPakNk7zjNvKokML1PKkNk7zjNvKozcxMPWygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDxKDIKnkML1PGygtDyamRk+zcxMPWygtDxKDIKnzcxMPWygtDyamRk+kML1PMxpRTwpXA8+kML1PEhEArwpXA8+kML1PKkNk7yamRk+kML1PKkNk7zjNvKokML1PEhEArzNzMw9kML1PGygtDxKDIKnkML1PGygtDyamRk+kML1PMxpRTzNzMw9kML1vKkNk7ypE1CnzcxMvakNk7ypE1CnkML1vGygtDypE1CnzcxMvWygtDypE1CnzcxMvakNk7yamRk+kML1vKkNk7yamRk+zcxMvWygtDyamRk+kML1vGygtDyamRk+zcxMvWygtDypE1CnzcxMvWygtDyamRk+kML1vGygtDypE1CnkML1vGygtDyamRk+kML1vKkNk7yamRk+kML1vMxpRTwpXA8+kML1vGygtDyamRk+kML1vGygtDypE1CnkML1vMxpRTzNzMw9kML1vEhEArzNzMw9kML1vEhEArwpXA8+kML1vKkNk7ypE1CnzcxMvakNk7yamRk+zcxMvakNk7ypE1CnkML1vKkNk7yamRk+kML1vKkNk7ypE1CnkML1vFpyG71cj8K9kML1vFpyG70Vrke+kML1vDB2QL7hehS+kML1vDB2QL5H4Xq+kML1PFpyG71cj8K9kML1PFpyG70Vrke+kML1PN81u71BDue9kML1PDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PGDsgL1toNO9kML1vGDsgL1toNO9kML1PFpyG71cj8K9kML1vFpyG71cj8K9kML1vDB2QL5H4Xq+kML1PDB2QL5H4Xq+kML1vFpyG70Vrke+kML1PFpyG70Vrke+kML1vDB2QL5H4Xq+kML1vDB2QL7hehS+kML1PDB2QL5H4Xq+kML1PDB2QL7hehS+kML1PDB2QL7hehS+kML1vDB2QL7hehS+kML1PN81u71BDue9kML1vJMftL1/seS9kML1PJMftL1/seS9kML1PGMJqD0K16M+kML1vGMJqD0K16M+kML1PFV1ET4K16M+kML1vFV1ET4K16M+zcxMPWMJqD1cj8I+kML1PGMJqD1cj8I+zcxMPej0+T1cj8I+kML1POj0+T1cj8I+zcxMvWMJqD1cj8I+kML1vEAnfj1cj8I+kML1PEAnfj1cj8I+kML1vGMJqD1cj8I+kML1vOj0+T1cj8I+zcxMvej0+T1cj8I+kML1POj0+T1cj8I+kML1POj0+T2G69E+zcxMPej0+T1cj8I+zcxMPej0+T2G69E+zcxMPej0+T2G69E+kML1POj0+T2G69E+zcxMPVV1ET6G69E+kML1PFV1ET6G69E+kML1PDbwJT6G69E+kML1vFV1ET6G69E+zcxMvVV1ET6G69E+kML1vDbwJT6G69E+zcxMvej0+T2G69E+kML1vOj0+T2G69E+zcxMvej0+T1cj8I+zcxMvej0+T2G69E+kML1vOj0+T1cj8I+kML1vOj0+T2G69E+kML1PHdXO75cj4I+kML1PJMftL1cj4I+kML1PBHxVL6G61E+kML1PJMftL1SuB4+kML1PBHxVL5SuB4+kML1vBHxVL6G61E+kML1vHdXO75cj4I+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vJMftL1cj4I+kML1vHdXO75cj4I+kML1vJMftL1SuB4+kML1vBHxVL6G61E+kML1vBHxVL5SuB4+kML1vBHxVL5SuB4+kML1vBHxVL6G61E+kML1PBHxVL5SuB4+kML1PBHxVL6G61E+kML1PHdXO75cj4I+kML1vHdXO75cj4I+kML1PJMftL1cj4I+kML1vJMftL1cj4I+kML1vBHxVL5SuB4+kML1PBHxVL5SuB4+kML1vJMftL1SuB4+kML1PJMftL1SuB4+zcxMPZMftL0pXI8+zcxMPVpyG732KFw+zcxMPZMftL0K16O8zcxMPVpyG70K16O8zcxMPVV1ET72KFw+zcxMPRxoRL0K16M+kML1vJMftL1/seS9kML1vJMftL0K16O8kML1PJMftL1/seS9kML1PJMftL0K16O8kML1PJMftL1SuB4+kML1vJMftL1SuB4+zcxMvZMftL0pXI8+zcxMvZMftL0K16O8kML1vJMftL1cj4I+kML1PJMftL1cj4I+zcxMPZMftL0pXI8+zcxMPZMftL0K16O8zcxMPZMftL0pXI8+zcxMvZMftL0pXI8+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPRxoRL0K16M+zcxMvRxoRL0K16M+zcxMPWMJqD0K16M+kML1PEAnfj0K16M+kML1vEAnfj0K16M+zcxMvWMJqD0K16M+kMJ1vBHxVD7o9Pk9kMJ1vBHxVD7Gshu+kMJ1PBHxVD7o9Pk9kMJ1PBHxVD7Gshu+kMJ1PH+hRj5EfDS+kMJ1PPnlTj7KNyy+kMJ1vH+hRj5EfDS+kMJ1vPnlTj7KNyy+kMJ1PGobUT5ZAiq+kMJ1vGobUT5ZAiq+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1vBHxVD7Gshu+kMJ1vGobUT5ZAiq+kMJ1PBHxVD7Gshu+kMJ1PGobUT5ZAiq+kMJ1POtROD7rUTi+kMJ1PH+hRj5EfDS+kMJ1vOtROD7rUTi+kMJ1vH+hRj5EfDS+kMJ1vBHxVD7o9Pk9kMJ1PBHxVD7o9Pk9kMJ1vGobUT4GSgs+kMJ1PGobUT4GSgs+kMJ1PH+hRj7ywxU+kMJ1vH+hRj7ywxU+kMJ1PPnlTj54fw0+kMJ1vPnlTj54fw0+kMJ1PGobUT4GSgs+kMJ1vGobUT4GSgs+kMJ1PDbwJT6amRk+kMJ1vDbwJT6amRk+kMJ1POtROD6amRk+kMJ1vOtROD6amRk+kMJ1vDbwJT7rUTi+kMJ1PDbwJT7rUTi+kMJ1vOtROD7rUTi+kMJ1POtROD7rUTi+zcxMPVV1ET72KFw+kML1PDbwJT7NzIw+kML1PDbwJT72KFw+CtcjPDbwJT7NzIw+CtcjvDbwJT7NzIw+kML1vDbwJT7NzIw+kML1PDbwJT7NzIw+zcxMvVV1ET72KFw+zcxMvRxoRL0K16M+zcxMvZMftL0pXI8+zcxMvVpyG732KFw+zcxMvZMftL0K16O8zcxMvVpyG70K16O8kML1vDbwJT7NzIw+zcxMvVV1ET72KFw+kML1vDbwJT72KFw+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjvcxpRTzNzMw9CtcjvUhEArzNzMw9zcxMvZMftL0K16O8kML1vJMftL0K16O8zcxMvVpyG70K16O8kML1vFpyG70K16O8zcxMvZxWDD6amRk+zcxMvVV1ET6G69G+zcxMvWygtDyamRk+zcxMvZxWDD5LN0m+zcxMvWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvWMJqD2G69G+zcxMvdnAFz2amRk+zcxMvWygtDypE1CnzcxMvakNk7ypE1CnzcxMvVpyG72tR2G+zcxMvakNk7yamRk+zcxMvVpyG70K16O8kML1vFpyG70Vrke+zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+kML1PFpyG70Vrke+kML1PFpyG71cj8K9kML1PFpyG73rUTi9kML1PFpyG70K16O8zcxMPVpyG70K16O8kML1vFpyG73rUTi9kML1vFpyG71cj8K9kML1vFpyG70K16O8zcxMPcxpRTyQwvU9CtcjPcxpRTzNzMw9zcxMPUhEAryQwvU9CtcjPUhEArzNzMw9CtcjvcxpRTwpXA8+CtcjvUhEArwpXA8+zcxMvcxpRTyQwvU9zcxMvUhEAryQwvU9CtcjPcxpRTwpXA8+zcxMPcxpRTyQwvU9CtcjPUhEArwpXA8+zcxMPUhEAryQwvU9zcxMvVpyG72tR2G+zcxMPVpyG72tR2G+zcxMvWMJqD2tR2G+kML1vEAnfj2tR2G+kML1PEAnfj2tR2G+zcxMPWMJqD2tR2G+zcxMvdnAFz1LN0m+zcxMvZxWDD5LN0m+KVyPvV+saT1LN0m+KVyPvXe37z1LN0m+zcxMPdnAFz1LN0m+KVyPPV+saT1LN0m+zcxMPZxWDD5LN0m+KVyPPXe37z1LN0m+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMvdnAFz2amRk+KVyPvV+saT2amRk+zcxMvZxWDD6amRk+KVyPvXe37z2amRk+zcxMPdnAFz2amRk+zcxMPZxWDD6amRk+KVyPPV+saT2amRk+KVyPPXe37z2amRk+kML1PEAnfj2G69G+kML1PEAnfj2tR2G+zcxMPWMJqD2G69G+zcxMPWMJqD2tR2G+kML1vDbwJT6G69G+zcxMvVV1ET6G69G+kML1PJMftL0K16O8zcxMPZMftL0K16O8kML1PFpyG70K16O8zcxMPVpyG70K16O8zcxMvWMJqD2G69G+zcxMvWMJqD2tR2G+kML1vEAnfj2G69G+kML1vEAnfj2tR2G+zcxMPakNk7yamRk+zcxMPWygtDyamRk+zcxMPakNk7zjNvKozcxMPdnAFz1LN0m+zcxMPWygtDxKDIKnzcxMPdnAFz2amRk+zcxMPVpyG72tR2G+zcxMPZxWDD5LN0m+zcxMPWMJqD2tR2G+zcxMPZxWDD6amRk+zcxMPVV1ET6G69G+zcxMPWMJqD2G69G+zcxMPVV1ET6G69G+kML1PDbwJT6G69G+////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/P/8/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgP+//z8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAIBJEkiSAAAAgEkSSJIAAACASRJIkgAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/v/8/AAAAgP+//z8AAACA/7//PwAAAID/v/8/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/z//PwAAAID/P/8/AAAAgP8//z8AAACA/z//PwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAIC17UiSAAAAgLXtSJIAAACAte1IkgAAAIC17UiSAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/7///wAAAID/v///AAAAgP+///8AAACA/7///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9/qioAAACA/3+qKgAAAID/f6oqAAAAgP9/qioAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////f/////////9/AAAAgP///3//////////f/////////9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgAyb//8AAACA2a7//wAAAIAMm///AAAAgNmu//8AAACA8uT//wAAAIAl0f//AAAAgPLk//8AAACAJdH//wAAAID/f/LkAAAAgP9/8uQAAACA/38l0QAAAID/fyXRAAAAgP9/2a4AAACA/3/ZrgAAAID/f/+/AAAAgP9//78AAACA/38l0QAAAID/fyXRAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/v/+///////+//78AAACA/7//v///////f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAAA/3//f/+/AAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/fwAAAIAAAP9//3//v/8//78AAACA/z//v/9//7//P/+//3//vwAAqapUVf+/AACpqlRV/78AAKmqVFX/vwAAqapUVf+//////wAA/7//////AAD/v/////8AAP+//////wAA/78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7///6mqAACp6v//qaoAAKnq//+pqgAAqer//6mqAACp6qoq/3+qqv+/qir/f6qq/7+qKv9/qqr/v6oq/3+qqv+/VNX/f///qepU1f9///+p6lTV/3///6nqVNX/f///qer/////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//3//f////7//f/9//v//v/9//3////+//7//P///////v/8///////+//z///////7//P///////P/+//3//v/8//7//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//P/8//3//v/8//z//f/+//z//P/9//7//P/8//3//v////3//////////f/7///////9///8AgP///3/+/wCA////f///AID///9//////////3///wCA////f///AID///9//////////3///wCA////f/////////9///////+//7///////7//v/////8=") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_buocb") - -[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ftdt3"] -points = PackedVector3Array(-0.0300117, -0.207951, 0.154994, 0.029998, -0.207951, 0.154994, -0.0300117, -0.207951, 0.205, -0.0500059, -0.0879761, -0.0200666, -0.0300117, -0.187962, -0.245053, 0.029998, -0.207951, 0.205, 0.029998, -0.187962, -0.245053, 0.0499922, -0.0879761, -0.0200666, -0.0300117, -0.182954, 0.254926, -0.0500059, -0.0879761, 0.279969, -0.07, 0.0570359, -0.196572, -0.0500059, 0.0820323, -0.41, -0.0300117, 0.0620433, -0.41, 0.029998, -0.182954, 0.254926, 0.0499922, -0.0879761, 0.279969, 0.029998, 0.0620433, -0.41, 0.0499922, 0.0820323, -0.41, 0.07, 0.0570359, -0.196572, -0.0300117, 0.0620433, 0.37998, -0.0500059, 0.12201, 0.41, -0.0500059, -0.0479573, 0.319941, -0.07, 0.0570359, 0.149937, -0.07, 0.117044, -0.196572, -0.0500059, 0.14204, -0.41, 0.0499922, -0.0479573, 0.319941, 0.0499922, 0.12201, 0.41, 0.029998, 0.0620433, 0.37998, 0.07, 0.0570359, 0.149937, 0.0499922, 0.14204, -0.41, 0.07, 0.117044, -0.196572, -0.0500059, 0.14204, 0.41, -0.07, 0.117044, 0.149937, -0.0150059, 0.20791, -0.152105, -0.0250098, 0.192033, 0.244973, -0.0300117, 0.162029, -0.41, 0.0499922, 0.14204, 0.41, 0.07, 0.117044, 0.149937, 0.029998, 0.162029, -0.41, 0.0149922, 0.20791, -0.152105, 0.0249961, 0.192033, 0.244973, -0.0300117, 0.162029, 0.41, -0.0250098, 0.192033, 0.274992, -0.0150059, 0.20791, 0.122005, 0.0249961, 0.192033, 0.274992, 0.029998, 0.162029, 0.41, 0.0149922, 0.20791, 0.122005) - -[node name="blasterL" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 13 -script = ExtResource("1_0vlch") -_weapon_name = "blasterL" -_current_ammo = 30 -_reserve_ammo = 30 - -[node name="blasterA2" type="MeshInstance3D" parent="."] -mesh = SubResource("ArrayMesh_dqoe4") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("ConvexPolygonShape3D_ftdt3") diff --git a/client/template/Spawnable_Objects/Weapons/blaster_m.tscn b/client/template/Spawnable_Objects/Weapons/blaster_m.tscn deleted file mode 100644 index 7bab316..0000000 --- a/client/template/Spawnable_Objects/Weapons/blaster_m.tscn +++ /dev/null @@ -1,113 +0,0 @@ -[gd_scene load_steps=8 format=4 uid="uid://x8nhs2cer2to"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_jnt62"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rdwmw"] -resource_name = "dark" -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y6anq"] -resource_name = "metal" -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_trcaa"] -resource_name = "yellow" -albedo_color = Color(1, 0.894118, 0.505882, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_bnntu"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 729, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABgAHAAAAAAACAAYACQAIAAEAAQAKAAkAAQAFAAoAAQAHAAUAAQAAAAcACAAJAAsACwAMAAgACgAFAAQABAANAAoAEAAOAA8ADwARABAADgASAA8ADgATABIADgAUABMADgAVABQADgAWABUAFwAWAA4AGAAXAA4AGQAYAA4AGgAZAA4AGwAaAA4ADgAcABsAHgARAB0AHQAfAB4AHwAgAB4AIAAhAB4AIQAiAB4AIgAjAB4AJQAcACQAJAAmACUAJAAnACYAJAAoACcAJAApACgAJAAjACkALAAqACsAKwAtACwAKwAuAC0ALgAvAC0ALwAwAC0ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANAA2ADUANgA3ADUANwA4ADUANwA5ADgAOQA6ADgAOQA7ADoAOwA8ADoAOwA9ADwAOwA+AD0APgA/AD0APwBAAD0APwBBAEAARABCAEMAQwBFAEQASABGAEcARwBJAEgATABKAEsASwBNAEwASwBOAE0ATgBPAE0AUABLAEoASgBRAFAAUQBPAFAAUQBNAE8ATQBRAFIAUgBTAE0ARwBCAEQARABJAEcAQgBUAFUAVQBDAEIAVQBWAEMAVgBGAEMARwBGAFQAVABCAEcARgBXAFQARgBWAFcAWQBYAEoASgBMAFkASABFAEMAQwBGAEgASgBYAFIAUgBRAEoATQBTAFkAWQBMAE0AXABaAFsAWwBdAFwAXwBeAFwAXABdAF8AYgBgAGEAYQBjAGIAYwBkAGIAZABlAGIAZABeAGUAXgBfAGUAZgBkAGMAYwBnAGYAZwBoAGYAZwBpAGgAaABpAGoAagBrAGgAbABgAGIAYgBtAGwAbgBjAGEAYQBvAG4AcABnAGMAYwBuAHAAbgBxAHAAcgBwAHEAcQBzAHIAagBwAHIAcgBrAGoAWwBaAHQAdAB1AFsAbgBvAGwAbABtAG4AbQB2AG4AdgBxAG4AdgBzAHEAdwB2AG0AbQB1AHcAdQB0AHcAbABvAGEAYQBgAGwAYgBlAFsAWwBtAGIAWwB1AG0AGAAZAHgAeAB5ABgAGgB6AHgAeAAZABoAGwB7AHoAegAaABsAFwAYAHkAeQB8ABcAfwB9AH4AfgAjAH8AIwAiAH8AgAB/ACIAIgAhAIAAggCBAHsAewAbAIIAGwAcAIIAhACDACgAKAApAIQAJwCFAIYAhgAmACcAhwCAACEAIQAgAIcAJQCIAIEAgQCCACUAggAcACUAHwCJAIcAhwAgAB8AfQCEACkAKQAjAH0AIwB+AH0AJgCGAIgAiAAlACYAgwCFACcAJwAoAIMAHQCKAIkAiQAfAB0AjACLAIoAigAdAIwAHQARAIwAEwCNAI4AjgASABMADwCPAIsAiwCMAA8AjAARAA8AEgCOAI8AjwAPABIAEwAUAJAAkACNABMAFAAVAJEAkQCQABQAFQAWAJIAkgCRABUAFgAXAHwAfACSABYAQQA/AJMAkwCUAEEAPwA+AJUAlQCTAD8ANwCWAJcAlwA5ADcANgCYAJYAlgA3ADYAPgA7AJkAmQCVAD4ALwCaAJsAmwAyAC8AnQCcACoAKgAsAJ0AngCdACwALAAtAJ4AnwCeAC0ALQAwAJ8AMQCgAJ8AnwAwADEAMwChAKAAoAAxADMANQCiAKEAoQAzADUAOACjAKIAogA1ADgAOgCkAKMAowA4ADoAPAClAKQApAA6ADwAPAA9AKYApgClADwAPQBAAKcApwCmAD0AOQCXAJkAmQA7ADkAqACaAC8ALwAuAKgANACpAJgAmAA2ADQAMgCbAKkAqQA0ADIAqgCoAC4ALgArAKoAnACqACsAKwAqAJwAQABBAJQAlACnAEAAAwAMAAsACwANAAMADQAEAAMABAAGAAMABgACAAMA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 384, -"index_data": PackedByteArray("rQCrAKwArACuAK0ArAANAK4ADQALAK4AHACCAK8ArwAkABwAggAcAA4ADgCwAIIAEQCMALEAsQAQABEAjAARAB4AHgCyAIwAtQCzALQAtAC2ALUAHgAjAH4AfgCyAB4ArwB+ACMAIwAkAK8AuQC3ALgAuAC6ALkAuAC3ALsAuwC8ALgAvQC8ALsAuwC+AL0AtACzAL8AvwDAALQAwwDBAMIAwgDEAMMAxQDAAL8AvwDGAMUAvQC+ALkAuQC6AL0AuAC8AL0AvQC6ALgAwwDEAMcAxwDIAMMAxQDGALUAtQC2AMUAtADAAMUAxQC2ALQAyQDBAMMAwwDIAMkArQCuAMoAygDLAK0ArgALAAkACQDKAK4AzQDMAE8ATwBOAM0ASwBQAM4AzgDPAEsA0QDQAFUAVQBUANEAsQCwAA4ADgAQALEA0gBWAFUAVQDQANIA0ADTANIA0QBUAFcAVwDUANEA1ADVANEAVwBWANIA0gDUAFcAzADWAM4AzgBPAMwAzgBQAE8AzwDXAM0AzQBLAM8AzQBOAEsAagBpAGcAZwBwAGoAWwBlAF8AXwBdAFsAkQCSAHwAfACQAJEAfAB5AJAAeQCNAJAAeQB4AI0AeACOAI0AeACcAI4AnACdAI4AnQCeAI4AngCPAI4AngCfAI8AnwCgAI8AoAChAI8AoQCLAI8AoQCiAIsAogCKAIsAogCjAIoAowCkAIoApACJAIoApAClAIkApQCmAIkApgCnAIkApwCHAIkApwCUAIcAlACFAIcAhQCDAIcAgwCAAIcAgwB/AIAAgwCEAH8AhAB9AH8AhQCUAJMAhgCFAJMAhgCTAJUAhgCVAJkAhgCZAJcAiACGAJcAiACXAJYAgQCIAJYAgQCWAJgAgQCYAKkAewCBAKkAewCpAJsAewCbAJoAewCaAKgAegB7AKgAegCoAKoAegCqAJwAnAB4AHoACgANAKwArADYAAoA2QDJAMgAyADHANkA2ADaAMoAygAKANgAygAJAAoAywDKANoA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 411, -"index_data": PackedByteArray("3QDbANwA4ADeAN8A4wDhAOIA4gDkAOMA3QDcAOUA5QDmAN0A6ADnAOAA4ADfAOgA5ADiAOkA5wDoAOEA4QDjAOcA4wDlAOcA4wDqAOUA6gDmAOUA6gDrAOYA7QDsAOsA6wDqAO0A2gDYAO4A7gDvANoA0ADRANUA1QDTANAA0wDVANQA1ADSANMAzQDXANYA1gDMAM0A8QDwAL8AvwDyAPEAvwCzAPIAswC7APIAswC1ALsAuwC3APIAtwC5APIAxgC/APAA8ADzAMYA8wC1AMYA8wDyALkA8wC+ALUAvgC7ALUA8wC5AL4A9ADwAFkAWQBTAPQAUwDbAPQAUwBSANsAUgD1ANsA9QDcANsA4ADcAPUA5QDcAOAA4ADnAOUA9QDeAOAAWABZAPAAcgBYAPAAawByAPAAaABrAPAAaADwAPEA8QD2AGgAcgBzAFgAcwBSAFgAcwB2AFIAdgD3AFIA9wD1AFIAZgBoAPYA+AD2ALEAsQDyAPgAsQCMAPIAjACyAPIAsgB+APIAfgCvAPIAsACxAPYA9gDxALAA8QDyAK8A8QCCALAA8QCvAIIA9QD3AKwArACrAPUA4QDoAN8A3wADAOEAAwDiAOEAAwABAOIAAQDpAOIAAQAIAOkACADLAOkAywDaAOkA2gDvAOkArQDLAAgACAAMAK0ADAADAN8A9QAMAN8A3wDeAPUA9QCrAAwAqwCtAAwA+QDsAO0A+gDZAMcA+QD6AMcA7AD5AMcA5gDsAMcA3QDmAMcA3QDHAMQA3QDEAMIA2wDdAMIAwgD0ANsA6wDsAOYA1wDPAM4AzgDWANcAZABmAPYA9gD4AGQA7gB3AHQARQDuAHQARABFAHQARAB0AFoAWgBcAEQAXADzAEQA8wBJAEQARQDvAO4ARQDpAO8ARQDkAOkASQDzAPoA+gBIAEkA+gD5AEgA+QBFAEgA+QDtAEUA7QDkAEUA4wDkAO0A7QDqAOMA8wBcAF4A8gDzAF4A8gBeAGQAZAD4APIA8AD0AMIAwgDBAPAAwQDJAPAA8wDwAMkA+gDzAMkAyQDZAPoArAD3AHYAdgB3AKwAdwDYAKwAdwDuANgA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_j5hjo"] -resource_name = "blasterM_Mesh blasterM" -_surfaces = [{ -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 729, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4ADQAQAA8ADQARABAADQASABEAFQATABQAFAAWABUAGQAXABgAGAAaABkAHQAbABwAHAAeAB0AGwAfABwAGwAgAB8AGwAhACAAGwAiACEAGwAjACIAJAAjABsAJQAkABsAJgAlABsAJwAmABsAKAAnABsAGwApACgAKwAeACoAKgAsACsALAAtACsALQAuACsALgAvACsALwAwACsAMgApADEAMQAzADIAMQA0ADMAMQA1ADQAMQA2ADUAMQAwADYAOQA3ADgAOAA6ADkAOAA7ADoAOwA8ADoAPAA9ADoAPAA+AD0APAA/AD4APwBAAD4APwBBAEAAQQBCAEAAQQBDAEIAQwBEAEIARABFAEIARABGAEUARgBHAEUARgBIAEcASABJAEcASABKAEkASABLAEoASwBMAEoATABNAEoATABOAE0AUQBPAFAAUABSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAWABbAFoAWwBcAFoAXQBYAFcAVwBeAF0AXgBcAF0AXgBaAFwAYQBfAGAAYABiAGEAZQBjAGQAZABmAGUAaQBnAGgAaABqAGkAaABrAGoAawBsAGoAbQBsAGcAZwBpAG0AbABuAGcAbABrAG4AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAeQB3AHgAeAB6AHkAfQB7AHwAfAB+AH0AgQB/AIAAgACCAIEAhQCDAIQAhACGAIUAiQCHAIgAiACKAIkAigCLAIkAiwCMAIkAiwCNAIwAjQCOAIwAjwCLAIoAigCQAI8AkACRAI8AkACSAJEAlQCTAJQAlACWAJUAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoQCfAKAAoACiAKEAogCjAKEApgCkAKUApQCnAKYAqgCoAKkAqQCrAKoArgCsAK0ArQCvAK4AsgCwALEAsQCzALIAswC0ALIAtAC1ALIAtAC2ALUAtwC0ALMAswC4ALcAuAC5ALcAvAC6ALsAuwC9ALwAwAC+AL8AvwDBAMAAvwDCAMEAxQDDAMQAxADGAMUAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0A0QDPANAA0ADSANEA1QDTANQA1ADWANUA1gDXANUA2gDYANkA2QDbANoA3gDcAN0A3QDfAN4A3wDgAN4A4wDhAOIA4gDkAOMA5wDlAOYA5gDoAOcA6wDpAOoA6gDsAOsA7wDtAO4A7gDwAO8A8ADxAO8A9ADyAPMA8wD1APQA+AD2APcA9wD5APgA+QD6APgA/QD7APwA/AD+AP0AAQH/AAABAAECAQEBBQEDAQQBBAEGAQUBCQEHAQgBCAEKAQkBCgELAQkBDgEMAQ0BDQEPAQ4BEgEQAREBEQETARIBEwEUARIBFwEVARYBFgEYARcBGwEZARoBGgEcARsBHwEdAR4BHgEgAR8BIwEhASIBIgEkASMBJwElASYBJgEoAScBKwEpASoBKgEsASsBLwEtAS4BLgEwAS8BMwExATIBMgE0ATMBNwE1ATYBNgE4ATcBOwE5AToBOgE8ATsBPwE9AT4BPgFAAT8BQwFBAUIBQgFEAUMBRwFFAUYBRgFIAUcBSwFJAUoBSgFMAUsBTwFNAU4BTgFQAU8BUwFRAVIBUgFUAVMBVwFVAVYBVgFYAVcBWwFZAVoBWgFcAVsBXwFdAV4BXgFgAV8BYwFhAWIBYgFkAWMBZwFlAWYBZgFoAWcBawFpAWoBagFsAWsBbwFtAW4BbgFwAW8BcwFxAXIBcgF0AXMBdwF1AXYBdgF4AXcBewF5AXoBegF8AXsBfwF9AX4BfgGAAX8BgwGBAYIBggGEAYMBhwGFAYYBhgGIAYcBiwGJAYoBigGMAYsBjAGNAYsBjQGOAYsBjgGPAYsB"), -"material": SubResource("StandardMaterial3D_rdwmw"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0K///atipsaRr//yRJaRUdCv//JEkqbGka//8kSQAAui7//9q2AAC6Lv//JEkAAM8S///atgAAzxL//9q2AADPEv//2rZpFR0K//8kSQAAzxL//yRJaRUdCv//2rYqbAtD/7/atipsaRr/v9q2I1qpP/+/2rYcSEY8/7/atgAAui7/v9q2AADPEv+/2rZpFR0K/7/atiNaqT8bjSRJI1qpPxuN2rYqbAtDG40kSSpsC0Mbjdq2AAC6LhuNJEkAALouG43athxIRjwbjSRJHEhGPBuNJEmIVq3r/3/8tLXArev/f9q2iFat6/9/2rZOxq3r/3+Br327rev/f8mmAret6/9/bZuSs63r/38yjmmxrev/f/9/rLCt6/9/zHFpsa3r/3+RZJKzrev/fzVZAret6/9/fVB9u63r/38CS7XArev/fyRJTsat6/9//LTny63r/3/atvDbrev/f4GvH9Gt6/9/yaaa1a3r/39tmwrZrev/fzKONNut6/9//3/w263r/38kSfDbrev/fwJL58ut6/9/fVAf0a3r/381WZrVrev/f5FkCtmt6/9/zHE0263r/3//f926rev/f314Qbut6/9/gYdBu63r/3+Ajma8rev/f35xZryt6/9/fGs3vq3r/3+ClDe+rev/fx6ZlsCt6/9/4GaWwK3r/38EnFjDrev/f/pjWMOt6/9/AZ1Oxq3r/3/9Yk7Grev/f/pjRMmt6/9/BJxEya3r/3/gZgbMrev/fx6ZBsyt6/9/fGtlzq3r/3+ClGXOrev/f4CONtCt6/9/fnE20K3r/399eFvRrev/f4GHW9Gt6/9//3+/0a3r/3/atpZ6eZ7/v9q2lnqFYf+/bNuWenme/79s25Z6hWH/v9q2b5eFYf//2rZvl3me//9s22+XhWH//2zbb5d5nv//JEmWenme/78kSTmQaZr/vyRJb5d5nv+/JElvl4Vh/78kSTmQKIr/vyRJzYEoiv+/JEnNgWma/78kSZZ6hWH/vyRJlnqFYf9/kiSWeoVh/38kSW+XhWH/f5Ikb5eFYf9/2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZr/v9q2zYFpmv+/2raWenme/7/atpZ6hWH/v9q2zYEoiv+/2rZvl4Vh/7/atm+XeZ7/v9q2OZAoiv+/kiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH/f9q2lnqFYf9/bNtvl4Vh/3/atm+XhWH/f5Iklnp5nv+/kiSWeoVh/78kSZZ6eZ7/vyRJlnqFYf+/kiRvl4Vh//+SJG+XeZ7//yRJb5eFYf//JElvl3me//9s2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z/+/bNussO2w/7+17aywPM//v7XtrLDtsP+/bNtEKzzP/3+SJEQrPM//f/7/sDk8z/9/AACwOTzP/39s2xxIPM//f/7/Kmw8z/9/bNussDzP/3+17aywPM//f5IkHEg8z/9/AAAqbDzP/3+SJKywPM//f0kSrLA8z/9/SRKssDzP/79JEqyw7bD/v5IkrLA8z/+/kiSssO2w/79s20QrPM/8xf7/sDk8z/zFbNtEK8Zx/MX+/7A5xnH8xQAAsDk8z/zFkiREKzzP/MUAALA5xnH8xZIkRCvGcfzFAAAqbDzP/78AALA5PM//vwAAKmztsP+/AACwOcZx/78AACpsxnH/vwAAKmztsP+/AAAqbMZx/7+SJCps7bD/v5IkKmzGcf+/AAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bD/v2zbKmzGcf+//v8qbO2w/7/+/ypsxnH/v5IkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8Zx//+SJEQrPM///2zbRCvGcf//bNtEKzzP///+/ypsPM//v/7/KmztsP+//v+wOTzP/7/+/7A5xnH/v/7/KmzGcf+/NVkCt63r/MU1WQK3///8xZFkkrOt60rKkWSSs///Ssp9UH27//+6wjVZArf///zFfVB9u63rusI1WQK3rev8xQJLtcD//7DAfVB9u///usICS7XAreuwwH1Qfbut67rCkWSSs63rSsqRZJKz//9KysxxabGt63fPzHFpsf//d8//f/Db//9U1f9/8Nve91TVMo402///d8//f/DbretS0jKONNut63fPMo402///d88yjjTbret3z22bCtn//0rKbZsK2a3rSsokSU7G////vwJLtcD//7DAJElOxt73/78CS7XAreuwwCRJTsat6yvAkWQK2f//SsqRZArZretKysxxNNv//3fPzHE0263rd881WZrV///8xX1QH9H//7rCNVma1a3r/MV9UB/Rreu6wm2bCtn//0rKbZsK2a3rSsrJpprV///8xcmmmtWt6/zFAkvny///sMAkSU7G////vwJL58ut67DAJElOxt73/78kSU7GresrwIGvH9H//7rCyaaa1f///MWBrx/Rreu6wsmmmtWt6/zFzHE02///d8/McTTbret3z/9/8Nv//1TV/3/w263rUtL/f/Db3vf/v31QH9H//7rCAkvny///sMB9UB/Rreu6wgJL58ut67DANVma1f///MU1WZrVrev8xZFkCtn//0rKkWQK2a3rSsr8tOfL//+wwIGvH9H//7rC/LTny63rsMCBrx/Rreu6wtq2Tsb///+//LTny///sMDatk7G3vf/v/y058ut67DA2rZOxq3rK8DJpgK3///8xYGvfbv//7rCyaYCt63r/MWBr327reu6wvy0tcD//7DA2rZOxv///7/8tLXAreuwwNq2Tsbe9/+/2rZOxq3rK8CBr327//+6wvy0tcD//7DAga99u63rusL8tLXAreuwwG2bkrOt60rKbZuSs///SsrJpgK3rev8xcmmArf///zFMo5psa3rd88yjmmx//93z22bkrOt60rKbZuSs///Ssr/f6ywretU1f9/rLD//1TVMo5psa3rd88yjmmx//93z8xxabGt63fPzHFpsf//d8//f6ywretU1f9/rLD//1TVfXhb0a3rd899eFvR//93z/9/v9Gt61TV/3+/0f//VNV+cTbQretKyn5xNtD//0rKfXhb0a3rd899eFvR//93z/pjRMn//7DA4GYGzP//usL6Y0TJreuwwOBmBsyt67rC/WJOxv///7/6Y0TJ//+wwP1iTsat6/+/+mNEya3rsMB8a2XOrev8xXxrZc7///zFfnE20K3rSsp+cTbQ//9KynxrN77///zF4GaWwP//usJ8aze+rev8xeBmlsCt67rC/3/duv//VNX/f926retU1YGHQbv//3fPgYdBu63rd8+Bh0G7//93z4GHQbut63fPgI5mvP//SsqAjma8retKyoCOZrz//0rKgI5mvK3rSsqClDe+///8xYKUN76t6/zFHpmWwP//usKClDe+///8xR6ZlsCt67rCgpQ3vq3r/MUEnFjD//+wwB6ZlsD//7rCBJxYw63rsMAemZbAreu6wgGdTsb///+/BJxYw///sMABnU7Grev/vwScWMOt67DABJxEyf//sMABnU7G////vwScRMmt67DAAZ1Oxq3r/78emQbM//+6wgScRMn//7DAHpkGzK3rusIEnETJreuwwIKUZc7///zFHpkGzP//usKClGXOrev8xR6ZBsyt67rCgI420K3rSsqAjjbQ//9KyoKUZc6t6/zFgpRlzv///MWBh1vRret3z4GHW9H//3fPgI420K3rSsqAjjbQ//9KyuBmBsz//7rCfGtlzv///MXgZgbMreu6wnxrZc6t6/zFfGs3vv///MV8aze+rev8xX5xZrz//0rKfnFmvK3rSsr6Y1jD//+wwP1iTsb///+/+mNYw63rsMD9Yk7Grev/v+BmlsD//7rC+mNYw///sMDgZpbAreu6wvpjWMOt67DAfnFmvP//Ssp+cWa8retKyn14Qbv//3fPfXhBu63rd899eEG7//93z314Qbut63fP/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRret3z4GHW9H//3fPJEkqbAtD/78kSSNaqT//vyRJKmxpGv+/JEkcSEY8/78kSQAAui7/vyRJAADPEv+/JElpFR0K/78kSSpshWFU1SRJHEiFYVTVJEkqbF1XVNUkSSNaXVdU1SRJTsbe91TVJEnw2973VNUkSU7GretU1SRJ8Nut61TVJEmIVq3rVNUkSYhW3vdU1dq2Tsbe91TV2raIVt73VNXatk7GretU1dq2iFat61TV2rbw263rVNXatvDb3vdU1bZtXOq+71TVkWT//77vVNW2bVzqXNdU1ZFk//+N41TV/3/w263rVNX/f/Db3vdU1dq28Nut61TV2rbw2973VNUkSfDb3vdU1SRJ8Nut61TV2rZc6r7vVNW2rf//vu9U1dq2XOpc11TVtq3//43jVNXatlzqvu///0iSXOq+7///tq3//77v//9tm///vu///22b//++71TVSJJc6r7vVNVtm///jeNU1UiSXOpc11TVtm1c6r7v//8kSVzqvu///5Fk//++7///SFL//77v//8kSfDbjaNU1SRJrLA4jlTVJEnw2wE5VNUkSaywsCRU1UhS//++71TVJElc6r7vVNVIUv//jeNU1SRJXOpc11TVSJJc6lzXqunatlzqXNeq6W2b//+N46rptq3//43jqultm///vu9U1W2b//+N41TVtq3//77vVNW2rf//jeNU1SRJrLCwJC/s2rassLAkL+wkSfDbATkv7Nq28NsBOS/sJElc6lzXqum2bVzqXNeq6UhS//+N46rpkWT//43jqulIUv//vu9U1UhS//+N41TVkWT//77vVNWRZP//jeNU1SRJ8NuNo1TVJEnw2wE5VNXatvDbjaNU1dq28NsBOVTVJEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT9U1dq2I1qpP1TVJEkjWl1XVNXatiNaXVdU1ds2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma///bNs2BaZr//yRJOZBpmv//2zY5kGma//8jyc2BaZr//9q2zYFpmv//I8k5kGma///atjmQaZr//yRJiFbe91TVJEmIVq3rVNXatohW3vdU1dq2iFat61TV2rbNgSiKVNXats2BaZpU1SPJzYEoilTVI8nNgWmaVNVs282BSJJU1dq2OZBpmlTV2rY5kCiKVNUjyTmQaZpU1SPJOZAoilTVbNs5kEiSVNXats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIklTV2zbNgWmaVNXbNs2BKIpU1SRJzYEoilTVJEnNgWmaVNWSJDmQSJJU1ds2OZAoilTV2zY5kGmaVNUkSTmQaZpU1SRJOZAoilTVSRKssDzPVNUAACpsPM9U1UkSrLDtsFTVAAAqbO2wVNX+/ypsPM9U1bXtrLA8z1TV/v8qbO2wVNW17ayw7bBU1f9/rLD/////zHFpsf////8yjmmx/////22bkrP/////kWSSs//////JpgK3/////zVZArf/////ga99u///////f926/////4GHQbv/////gI5mvP/////8tLXA/////4KUN77/////HpmWwP////8EnFjD/////9q2Tsb/////AZ1Oxv/////8tOfL/////wScRMn/////HpkGzP////+Brx/R/////4KUZc7/////gI420P////+Bh1vR/////8mmmtX//////3+/0f////81WZrV/////5FkCtn/////bZsK2f////8yjjTb/////8xxNNv//////3/w2/////99eFvR/////31QH9H/////fnE20P////98a2XO/////+BmBsz/////Akvny//////6Y0TJ/////yRJTsb//////WJOxv/////6Y1jD/////wJLtcD/////4GaWwP////98aze+/////35xZrz/////fVB9u/////99eEG7/////yRJHEhGPFTVJEkcSIVhVNXathxIRjxU1dq2HEiFYVTV2rbw242jVNXatvDbATlU1dq2rLA4jlTV2rassLAkVNXatipshWFU1dq2I1pdV1TV2rYcSIVhVNXatipsXVdU1ZIkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAFTV2rYqbEAQVNVs25Z6AABU1WzblnpAEFTVkiRAokAQVNWSJECiAABU1SRJrLBAEFTVJEmssAAAVNWSJJZ6AABU1ZIklnpAEFTVJEkqbAAAVNUkSSpsQBBU1dq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBBU1dq2rLAAAFTVbNtAokAQVNVs20CiAABU1dq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaaMts2zmQSJJoyyPJzYFpmmjLbNvNgUiSaMts2zmQSJL14CPJOZAoivXgbNvNgUiS9eAjyc2BKIr14JIkOZBIkvXgkiTNgUiS9eDbNjmQKIr14Ns2zYEoivXgkiRc6qmqVNUkSVzqvu9U1ZIkXOre91TVbNtc6t73VNW2bVzqvu9U1UiSXOq+71TVtm1c6lzXVNXatlzqvu9U1dq2XOpc11TVJElc6lzXVNVs21zqqapU1UiSXOpc11TVkiRc6qmqVNWSJG+XeZ5U1ZIkrLA4jlTVkiRvl4VhVNWSJKywQBBU1ZIklnqFYVTVkiQqbIVhVNWSJECiQBBU1ZIklnpAEFTVkiRAogAAVNWSJJZ6AABU1ZIkKmxAEFTVkiSWenmeVNWSJCps7bBU1ZIkrLDtsFTVkiSssDzPVNWSJFzq3vdU1ZIkHEje91TVkiQqbMZxVNWSJBxIxnFU1ZIkHEiFYVTVkiQcSDzPVNWSJBxI3vf//9q2iFbe9///bNscSN73//9s21zq3vf//9q2Tsbe9///2rbw2973////f/Db3vf//yRJ8Nve9///JEmIVt73//+SJFzq3vf//yRJTsbe9///kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAABU1SRJKmxAEFTV2rYqbAAAVNUkSSpsaRpU1dq2KmxAEFTV2rYqbGkaVNVs2ypsQBBU1dq2KmwLQ1TV2rYqbF1XVNXatipshWFU1WzbKmyFYVTVJEkqbF1XVNUkSSpsC0NU1ZIkKmyFYVTVkiQqbEAQVNUkSSpshWFU1dq2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jlTV2rassLAkVNVs26ywOI5U1WzbrLBAEFTV2rassEAQVNUkSaywAABU1SRJrLBAEFTVJEmssLAkVNUkSaywOI5U1ZIkrLBAEFTVkiSssDiOVNXatqywAABU1ds2OZBpmmjL2zbNgWmaaMuSJDmQSJJoy5IkzYFIkmjLkiQcSDzPVNWSJBxI3vdU1WzbHEg8z1TVbNscSN73VNVs2xxIxnFU1WzbKmzGcVTVbNscSIVhVNVs25Z6hWFU1Wzblnp5nlTVbNsqbO2wVNVs26yw7bBU1WzbXOqpqlTVbNtvl3meVNVs2ypshWFU1WzbKmxAEFTVbNuWekAQVNVs26ywOI5U1Wzbb5eFYVTVbNussEAQVNVs20CiQBBU1WzblnoAAFTVbNtAogAAVNVs26ywPM9U1WzbXOre91TVbNscSDzPVNVs2xxI3vdU1ZIkrLA4joPrJEmssDiOg+uSJFzqqaqD6yRJ8NuNo4Pr2rbw242jg+ts21zqqaqD62zbrLA4joPr2rassDiOg+uSJBxIhWFU1ZIkHEjGcVTVbNscSMZxVNVs2xxIhWFU1f9/H+7/fx/u/38f7v9/H+7/f/8//3//P/9//z//f/8/PJ///zyf//88n///PJ////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9//3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9//z//f/8//3//P/9//z//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AY/45AGP+OQBj/jkAY/45AUb/4gFG/+IBRv/iAUb/4v9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f/7//3/+//9//v//f/7//3////9//v//f/7//3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAAFG/+IBRv/iZzuy3Wc7st1WU6rpAUb/4lZTqukBRv/iUWWo8lZTqulRZajyVlOq6Wc7st1nO7LdfzI/2X8yP9lU1aoqVNWqKn/NvyaE0cIof82/Jn/NvyZ/zb8ml8RMIpfETCL/f///UWWo8v9///9RZajyKXGU+EuiZrtLoma7v6Z/sr+mf7L+nADGVJZV0/6cAMZUllXTl8RMIpfETCL9uf8c/bn/HFaNUeX/f///Vo1R5f9///9qhynxqKxUFv25/xyorFQW/bn/HL+mf7K/pn+yqqqqqsKoea7///9/VJZV01aNUeVUllXTVo1R5f6cAMb+nADGS6Jmu0uiZrutmlYNqKxUFq2aVg2orFQW/38AAK2aVg3/fwAArZpWDdWOagcAY/45qmmpLABj/jmqaaksqHKtGv9/AACocq0a/38AAJR41Q6qaaksqHKtGqppqSyocq0as12YRLNdmEQAY/45AGP+OT9Zf00/WX9Ns12YRLNdmERUVVRVVFVUVT9Zf00/WX9NfzI/2X8yP9mqKlTVqipU1T9Zf00/WX9NVFVUVVRVVFWzXZhEs12YRD9Zf00/WX9NqHKtGqppqSyocq0aqmmpLP9/AACocq0a/38AAKhyrRoAY/45AGP+ObNdmESzXZhE/bn/HKisVBb9uf8cqKxUFqqqqqqqqqqqv6Z/sr+mf7K/pn+yv6Z/skuiZrtLoma7S6Jmu0uiZrv+nADG/pwAxlSWVdP+nADGVJZV0/6cAMZWjVHlVJZV01aNUeVUllXT/3///1aNUeX/f///Vo1R5VFlqPL/f///UWWo8v9///9WU6rpUWWo8lZTqulRZajyAUb/4lZTqukBRv/iVlOq6Wc7st1nO7LdAUb/4gFG/+J/Mj/ZfzI/2Wc7st1nO7LdqmmpLABj/jmqaaksAGP+Of25/xz9uf8cl8RMIpfETCKtmlYN/38AAK2aVg3/fwAAqKxUFq2aVg2orFQWrZpWDZfETCKXxEwif82/Jn/NvyZ/zb8mf82/JlTVqipU1aoqqipU1aoqVNV/Mj/ZfzI/2f9/////f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEgAA/38AAP9/AAD/fwAA/38AAP9/AAD/f0iSSRJIkkkSSJJJEkiSSRL/f/9//3//f/9//3//f/9/SJK17UiSte1IkrXtSJK17f9//3//f/9//3//f/9//3//f////3////9/////f///SJK17UiSte1IkrXtSJK17f///3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////fzCMzvMwjM7zMIzO8zCMzvMwjDAMMIwwDDCMMAwwjDAM/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////z//P/8//z//P/8//z//P/+//7//v/+//7//v/+//7//P/+//z//v/8//7//P/+//3////9/////f////3////9/////f////3////9/////f////3////9/////v/8//7//P/+//z//v/8//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 384, -"index_data": PackedByteArray("kgGQAZEBkQGTAZIBkQGMAZMBjAGKAZMBlgGUAZUBlQGXAZYBlAGWAZgBmAGZAZQBnAGaAZsBmwGdAZwBmgGcAZ4BngGfAZoBogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqAGlAaQBpAGpAagBrAGqAasBqwGtAawBsAGuAa8BrwGxAbABtAGyAbMBswG1AbQBuAG2AbcBtwG5AbgBvAG6AbsBuwG9AbwBwAG+Ab8BvwHBAcABxAHCAcMBwwHFAcQByAHGAccBxwHJAcgBzAHKAcsBywHNAcwB0AHOAc8BzwHRAdAB1AHSAdMB0wHVAdQB2AHWAdcB1wHZAdgB3AHaAdsB2wHdAdwB4AHeAd8B3wHhAeAB5AHiAeMB4wHlAeQB6AHmAecB5wHpAegB7AHqAesB6wHtAewB8AHuAe8B7wHxAfAB9AHyAfMB8wH1AfQB9QH2AfQB+QH3AfgB+AH6AfkB+gH7AfkB/gH8Af0B/QH/Af4BAgIAAgECAQIDAgICAQIEAgMCBwIFAgYCBgIIAgcCBgIJAggCDAIKAgsCCwINAgwCEAIOAg8CDwIRAhACFAISAhMCEwIVAhQCEwIWAhUCFgIXAhUCFgIYAhcCGAIZAhcCGAIaAhkCGgIbAhkCGwIcAhkCHAIdAhkCHAIeAh0CHgIfAh0CHwIgAh0CIAIhAh0CIAIiAiECIgIjAiECIgIkAiMCJAIlAiMCJQImAiMCJQInAiYCJwIoAiYCKAIpAiYCKQIqAiYCKQIrAioCKwIsAioCLAItAioCLQIuAioCLQIvAi4CLQIwAi8CMAIxAi8CLAIrAjICMwIsAjICMwIyAjQCMwI0AjUCMwI1AjYCNwIzAjYCNwI2AjgCOQI3AjgCOQI4AjoCOQI6AjsCPAI5AjsCPAI7Aj0CPAI9Aj4CPAI+Aj8CQAI8Aj8CQAI/AkECQAJBAhoCGgIYAkACRAJCAkMCQwJFAkQCSAJGAkcCRwJJAkgCTAJKAksCSwIPAEwCSwIOAA8ATQJLAkoC"), -"material": SubResource("StandardMaterial3D_y6anq"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0Kv/batipsaRq/9iRJaRUdCr/2JEkqbGkav/YkSQAAui5U1dq2AAC6LlTVJEkAAM8SVNXatgAAzxJU1dq2AADPEifu2rZpFR0KJ+4kSQAAzxIn7iRJaRUdCifu2rYqbAtDVNXatipsaRpU1dq2I1qpP/+/2rYcSEY8/7/atgAAui5U1dq2AADPElTV2rZpFR0KVNXatiNaqT8KwSRJI1qpPwrB2rYqbAtDCsEkSSpsC0MKwdq2AAC6LgrBJEkAALouCsHathxIRjwKwSRJHEhGPArBJEmIVq3r///8tLXArev//9q2iFat6///2rZOxq3r//+Br327rev//8mmAret6///bZuSs63r//8yjmmxrev///9/rLCt6///zHFpsa3r//+RZJKzrev//zVZAret6///fVB9u63r//8CS7XArev//yRJTsat6////LTny63r///atvDbrev//4GvH9Gt6///yaaa1a3r//9tmwrZrev//zKONNut6////3/w263r//8kSfDbrev//wJL58ut6///fVAf0a3r//81WZrVrev//5FkCtmt6///zHE0263r////f926rev//314Qbut6///gYdBu63r//+Ajma8rev//35xZryt6///fGs3vq3r//+ClDe+rev//x6ZlsCt6///4GaWwK3r//8EnFjDrev///pjWMOt6///AZ1Oxq3r///9Yk7Grev///pjRMmt6///BJxEya3r///gZgbMrev//x6ZBsyt6///fGtlzq3r//+ClGXOrev//4CONtCt6///fnE20K3r//99eFvRrev//4GHW9Gt6////3+/0a3r///atpZ6eZ5U1dq2lnqFYVTVbNuWenmeVNVs25Z6hWFU1dq2b5eFYVTV2rZvl3meVNVs22+XhWFU1Wzbb5d5nlTVJEmWenmeVNUkSTmQaZpU1SRJb5d5nlTVJElvl4VhVNUkSTmQKIpU1SRJzYEoilTVJEnNgWmaVNUkSZZ6hWFU1SRJlnqFYf//kiSWeoVh//8kSW+XhWH//5Ikb5eFYf//2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZpU1dq2zYFpmlTV2raWenmeVNXatpZ6hWFU1dq2zYEoilTV2rZvl4VhVNXatm+XeZ5U1dq2OZAoilTVkiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH//9q2lnqFYf//bNtvl4Vh///atm+XhWH//5Iklnp5nlTVkiSWeoVhVNUkSZZ6eZ5U1SRJlnqFYVTVkiRvl4VhVNWSJG+XeZ5U1SRJb5eFYVTVJElvl3meVNVs2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z1TVbNussO2wVNW17aywPM9U1bXtrLDtsFTVbNtEKzzP//+SJEQrPM////7/sDk8z///AACwOTzP//9s2xxIPM////7/Kmw8z///bNussDzP//+17aywPM///5IkHEg8z///AAAqbDzP//+SJKywPM///0kSrLA8z///SRKssDzPVNVJEqyw7bBU1ZIkrLA8z1TVkiSssO2wVNVs20QrPM9U1f7/sDk8z1TVbNtEK8ZxVNX+/7A5xnFU1QAAsDk8z1TVkiREKzzPVNUAALA5xnFU1ZIkRCvGcVTVAAAqbDzPVNUAALA5PM9U1QAAKmztsFTVAACwOcZxVNUAACpsxnFU1QAAKmztsFTVAAAqbMZxVNWSJCps7bBU1ZIkKmzGcVTVAAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bBU1WzbKmzGcVTV/v8qbO2wVNX+/ypsxnFU1ZIkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8ZxVNWSJEQrPM9U1WzbRCvGcVTVbNtEKzzPVNX+/ypsPM9U1f7/KmztsFTV/v+wOTzPVNX+/7A5xnFU1f7/KmzGcVTVNVkCt63rVNU1WQK3//9U1ZFkkrOt61TVkWSSs///VNV9UH27//9U1TVZArf//1TVfVB9u63rVNU1WQK3retU1QJLtcD//1TVfVB9u///VNUCS7XAretU1X1Qfbut61TVkWSSs63rVNWRZJKz//9U1cxxabGt61TVzHFpsf//VNX/f/Db//9U1f9/8Nve91TVMo402///VNX/f/DbretU1TKONNut61TVMo402///VNUyjjTbretU1W2bCtn//1TVbZsK2a3rVNUkSU7G//9U1QJLtcD//1TVJElOxt73VNUCS7XAretU1SRJTsat61TVkWQK2f//VNWRZArZretU1cxxNNv//1TVzHE0263rVNU1WZrV//9U1X1QH9H//1TVNVma1a3rVNV9UB/RretU1W2bCtn//1TVbZsK2a3rVNXJpprV//9U1cmmmtWt61TVAkvny///VNUkSU7G//9U1QJL58ut61TVJElOxt73VNUkSU7GretU1YGvH9H//1TVyaaa1f//VNWBrx/RretU1cmmmtWt61TVzHE02///VNXMcTTbretU1f9/8Nv//1TV/3/w263rVNX/f/Db3vdU1X1QH9H//1TVAkvny///VNV9UB/RretU1QJL58ut61TVNVma1f//VNU1WZrVretU1ZFkCtn//1TVkWQK2a3rVNX8tOfL//9U1YGvH9H//1TV/LTny63rVNWBrx/RretU1dq2Tsb//1TV/LTny///VNXatk7G3vdU1fy058ut61TV2rZOxq3rVNXJpgK3//9U1YGvfbv//1TVyaYCt63rVNWBr327retU1fy0tcD//1TV2rZOxv//VNX8tLXAretU1dq2Tsbe91TV2rZOxq3rVNWBr327//9U1fy0tcD//1TVga99u63rVNX8tLXAretU1W2bkrOt61TVbZuSs///VNXJpgK3retU1cmmArf//1TVMo5psa3rVNUyjmmx//9U1W2bkrOt61TVbZuSs///VNX/f6ywretU1f9/rLD//1TVMo5psa3rVNUyjmmx//9U1cxxabGt61TVzHFpsf//VNX/f6ywretU1f9/rLD//1TVfXhb0a3rVNV9eFvR//9U1f9/v9Gt61TV/3+/0f//VNV+cTbQretU1X5xNtD//1TVfXhb0a3rVNV9eFvR//9U1fpjRMn//1TV4GYGzP//VNX6Y0TJretU1eBmBsyt61TV/WJOxv//VNX6Y0TJ//9U1f1iTsat61TV+mNEya3rVNV8a2XOretU1XxrZc7//1TVfnE20K3rVNV+cTbQ//9U1XxrN77//1TV4GaWwP//VNV8aze+retU1eBmlsCt61TV/3/duv//VNX/f926retU1YGHQbv//1TVgYdBu63rVNWBh0G7//9U1YGHQbut61TVgI5mvP//VNWAjma8retU1YCOZrz//1TVgI5mvK3rVNWClDe+//9U1YKUN76t61TVHpmWwP//VNWClDe+//9U1R6ZlsCt61TVgpQ3vq3rVNUEnFjD//9U1R6ZlsD//1TVBJxYw63rVNUemZbAretU1QGdTsb//1TVBJxYw///VNUBnU7GretU1QScWMOt61TVBJxEyf//VNUBnU7G//9U1QScRMmt61TVAZ1Oxq3rVNUemQbM//9U1QScRMn//1TVHpkGzK3rVNUEnETJretU1YKUZc7//1TVHpkGzP//VNWClGXOretU1R6ZBsyt61TVgI420K3rVNWAjjbQ//9U1YKUZc6t61TVgpRlzv//VNWBh1vRretU1YGHW9H//1TVgI420K3rVNWAjjbQ//9U1eBmBsz//1TVfGtlzv//VNXgZgbMretU1XxrZc6t61TVfGs3vv//VNV8aze+retU1X5xZrz//1TVfnFmvK3rVNX6Y1jD//9U1f1iTsb//1TV+mNYw63rVNX9Yk7GretU1eBmlsD//1TV+mNYw///VNXgZpbAretU1fpjWMOt61TVfnFmvP//VNV+cWa8retU1X14Qbv//1TVfXhBu63rVNV9eEG7//9U1X14Qbut61TV/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRretU1YGHW9H//1TVJEkqbAtDVNUkSSNaqT//vyRJKmxpGlTVJEkcSEY8/78kSQAAui5U1SRJAADPElTVJElpFR0KVNUkSSpshWH/vyRJHEiFYf+/JEkqbF1X/78kSSNaXVf/vyRJTsbe9/+/JEnw2973/78kSU7Grev/vyRJ8Nut6/+/JEmIVq3r/78kSYhW3vf/v9q2Tsbe9/+/2raIVt73/7/atk7Grev/v9q2iFat6/+/2rbw263r/7/atvDb3vf/v7ZtXOq+70bAkWT//77vRsC2bVzqXNdGwJFk//+N40bA/3/w263r////f/Db3vf//9q28Nut6///2rbw2973//8kSfDb3vf//yRJ8Nut6///2rZc6r7vRsC2rf//vu9GwNq2XOpc10bAtq3//43jRsDatlzqvu//f0iSXOq+7/9/tq3//77v/39tm///vu//f22b//++70bASJJc6r7vRsBtm///jeNGwEiSXOpc10bAtm1c6r7v/38kSVzqvu//f5Fk//++7/9/SFL//77v/38kSfDbjaP/vyRJrLA4jv+/JEnw2wE5/78kSaywsCT/v0hS//++70bAJElc6r7vRsBIUv//jeNGwCRJXOpc10bASJJc6lzX///atlzqXNf//22b//+N4///tq3//43j//9tm///vu//v22b//+N4/+/tq3//77v/7+2rf//jeP/vyRJrLCwJP//2rassLAk//8kSfDbATn//9q28NsBOf//JElc6lzX//+2bVzqXNf//0hS//+N4///kWT//43j//9IUv//vu//v0hS//+N4/+/kWT//77v/7+RZP//jeP/vyRJ8NuNo/+/JEnw2wE5/7/atvDbjaP/v9q28NsBOf+/JEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT//v9q2I1qpP/+/JEkjWl1X/7/atiNaXVf/v9s2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma/3/bNs2BaZr/fyRJOZBpmv9/2zY5kGma/38jyc2BaZr/f9q2zYFpmv9/I8k5kGma/3/atjmQaZr/fyRJiFbe9/+/JEmIVq3r/7/atohW3vf/v9q2iFat6/+/2rbNgSiK///ats2BaZr//yPJzYEoiv//I8nNgWma//9s282BSJL//9q2OZBpmv+/2rY5kCiK/78jyTmQaZr/vyPJOZAoiv+/bNs5kEiS/7/ats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIkv//2zbNgWma///bNs2BKIr//yRJzYEoiv//JEnNgWma//+SJDmQSJL/v9s2OZAoiv+/2zY5kGma/78kSTmQaZr/vyRJOZAoiv+/SRKssDzPG8AAACpsPM8bwEkSrLDtsBvAAAAqbO2wG8D+/ypsPM8bwLXtrLA8zxvA/v8qbO2wG8C17ayw7bAbwP9/rLD///9/zHFpsf///38yjmmx////f22bkrP///9/kWSSs////3/JpgK3////fzVZArf///9/ga99u////3//f926////f4GHQbv///9/gI5mvP///3/8tLXA////f4KUN77///9/HpmWwP///38EnFjD////f9q2Tsb///9/AZ1Oxv///3/8tOfL////fwScRMn///9/HpkGzP///3+Brx/R////f4KUZc7///9/gI420P///3+Bh1vR////f8mmmtX///9//3+/0f///381WZrV////f5FkCtn///9/bZsK2f///38yjjTb////f8xxNNv///9//3/w2////399eFvR////f31QH9H///9/fnE20P///398a2XO////f+BmBsz///9/Akvny////3/6Y0TJ////fyRJTsb///9//WJOxv///3/6Y1jD////fwJLtcD///9/4GaWwP///398aze+////f35xZrz///9/fVB9u////399eEG7////fyRJHEhGPP//JEkcSIVh///athxIRjz//9q2HEiFYf//2rbw242j/7/atvDbATn/v9q2rLA4jv+/2rassLAk/7/atipshWH/v9q2I1pdV/+/2rYcSIVh/7/atipsXVf/v5IkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAFTV2rYqbEAQVNVs25Z6AABU1WzblnpAEFTVkiRAokAQVNWSJECiAABU1SRJrLBAEFTVJEmssAAAVNWSJJZ6AABU1ZIklnpAEFTVJEkqbAAAVNUkSSpsQBBU1dq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBBU1dq2rLAAAFTVbNtAokAQVNVs20CiAABU1dq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaaMts2zmQSJJoyyPJzYFpmmjLbNvNgUiSaMts2zmQSJL14CPJOZAoivXgbNvNgUiS9eAjyc2BKIr14JIkOZBIkvXgkiTNgUiS9eDbNjmQKIr14Ns2zYEoivXgkiRc6qmqVNUkSVzqvu9U1ZIkXOre91TVbNtc6t73VNW2bVzqvu9U1UiSXOq+71TVtm1c6lzXVNXatlzqvu9U1dq2XOpc11TVJElc6lzXVNVs21zqqapU1UiSXOpc11TVkiRc6qmqVNWSJG+XeZ5U1ZIkrLA4jlTVkiRvl4VhVNWSJKywQBBU1ZIklnqFYVTVkiQqbIVhVNWSJECiQBBU1ZIklnpAEFTVkiRAogAAVNWSJJZ6AABU1ZIkKmxAEFTVkiSWenmeVNWSJCps7bBU1ZIkrLDtsFTVkiSssDzPVNWSJFzq3vdU1ZIkHEje91TVkiQqbMZxVNWSJBxIxnFU1ZIkHEiFYVTVkiQcSDzPVNWSJBxI3vf//9q2iFbe9///bNscSN73//9s21zq3vf//9q2Tsbe9///2rbw2973////f/Db3vf//yRJ8Nve9///JEmIVt73//+SJFzq3vf//yRJTsbe9///kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAABU1SRJKmxAEFTV2rYqbAAAVNUkSSpsaRpU1dq2KmxAEFTV2rYqbGkaVNVs2ypsQBBU1dq2KmwLQ1TV2rYqbF1XVNXatipshWFU1WzbKmyFYVTVJEkqbF1XVNUkSSpsC0NU1ZIkKmyFYVTVkiQqbEAQVNUkSSpshWFU1dq2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jlTV2rassLAkVNVs26ywOI5U1WzbrLBAEFTV2rassEAQVNUkSaywAABU1SRJrLBAEFTVJEmssLAkVNUkSaywOI5U1ZIkrLBAEFTVkiSssDiOVNXatqywAABU1ds2OZBpmmjL2zbNgWmaaMuSJDmQSJJoy5IkzYFIkmjLkiQcSDzPVNWSJBxI3vdU1WzbHEg8z1TVbNscSN73VNVs2xxIxnFU1WzbKmzGcVTVbNscSIVhVNVs25Z6hWFU1Wzblnp5nlTVbNsqbO2wVNVs26yw7bBU1WzbXOqpqlTVbNtvl3meVNVs2ypshWFU1WzbKmxAEFTVbNuWekAQVNVs26ywOI5U1Wzbb5eFYVTVbNussEAQVNVs20CiQBBU1WzblnoAAFTVbNtAogAAVNVs26ywPM9U1WzbXOre91TVbNscSDzPVNVs2xxI3vdU1ZIkrLA4joPrJEmssDiOg+uSJFzqqaqD6yRJ8NuNo4Pr2rbw242jg+ts21zqqaqD62zbrLA4joPr2rassDiOg+uSJBxIhWFU1ZIkHEjGcVTVbNscSMZxVNVs2xxIhWFU1f///3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3//P/8//z//P/8//z//P/8//z//v/8//7//P/+//z//v/9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/8mTy5CVRJdHyZPLkJVEl0dku2a7ZLtmuDBsMmwwbDJv///9/////f/Lk8mQa8Rtx8uTyZPLk8mTy5PJkJdElUSXRJVH/f///8mTy5P9////yZPLkG3Ea8SXR2a4l0dmu8uQMm/LkDJv/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//Pwyb8uT/f///DJvy5P9////jjhrx2a7ZLv+//z/Zrtku/7//P/LkDJvy5Ayb////fxrx447///9/2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4Mmwwb2a7ZLgybDBvZrtku/38AAAybDBv/fwAADJsMG+OO5A7/P/8/JVHZLv8//z8lUdku8mQMG/9/AADyZAwb/38AABtx5A4lUdku8mQMGyVR2S7yZAwb2S4lUdkuJVH/P/8//z//Pwwb8mQMG/Jk2S4lUdkuJVEAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/fwwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk8mQMGyVR2S7yZAwbJVHZLv9/AADyZAwb/38AAPJkDBv/P/8//z//P9kuJVHZLiVR/7//P9mu2S7/v/8/2a7ZLv///3////9/8uQMm/LkDJvy5Ayb8uQMmyXR2a4l0dmuJdHZriXR2a7/v/+//7//v9muJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5PJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0dku2a7ZLtmu/z//v/8//78MGwybDBsMm9ku2a7ZLtmuJVHZLv8//z8lUdku/z//P/+//z//v/8/JdElUSXRJVEMmwwb/38AAAybDBv/fwAA2a7ZLgybDBvZrtkuDJsMGyXRJVEl0SVR8uTyZPLk8mTy5PJk8uTyZP///3////9/AAD/fwAA/38MGwybDBsMm/9/////f////3////9/////f////3////9/////f////3////9//v//f/7//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///LZIWCS2SFgktkhYJLZIWCf9//z//f/8//3//P/9//z//f/8//3//Py2SFgktkhYJLZIWCS2SFgn/f////3////9/////f///FonR7RaJ0e0WidHtFonR7f9/////f////3////9/////f////3////9/////f///FonR7RaJ0e0WidHtFonR7f9/gdr/f4Ha/3+B2v9/gdr///9/////f////3////9//3/43f9/+N3/f/jd/3/43f9/gdr/f4Ha/3+B2v9/gdr///9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9//z//f/8//3//P/9//z//f/8/////f////3////9/////f/7//3//f////3////9/////f////3//P/9//z//f/8//3//P/9//z/+//9/////f////3////9/////fxOG1vMThtbzE4bW8xOG1vMojBQGKIwUBiiMFAYojBQG/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////z//P/8//z//P/8//z//P/+//7//v/+//7//v/+//7//P/+//z//v/8//7//P/+//3////9/////f////3////9/////f////3////9/////f////3////9/////v/8//7//P/+//z//v/8//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 411, -"index_data": PackedByteArray("UAJOAk8CUwJRAlICVgJUAlUCVQJXAlYCWgJYAlkCWQJbAloCXgJcAl0CXQJfAl4CYgJgAmECZQJjAmQCZAJmAmUCZgJnAmUCZgJoAmcCaAJpAmcCaAJqAmkCbQJrAmwCbAJuAm0CcQJvAnACcAJyAnECdQJzAnQCdAJ2AnUCeQJ3AngCeAJ6AnkCfQJ7AnwCfAJ+An0CgQJ/AoACgAKCAoECgAKDAoICgwKEAoICgwKFAoQChAKGAoIChgKHAoICiAKAAn8CfwKJAogCiQKFAogCiQKCAocCiQKKAoUCigKEAoUCiQKHAooCjQKLAowCjAKOAo0CjgKPAo0CjgKQAo8CkAKRAo8CkQKSAo8CkwKSApEClAKSApMCkwKVApQCkQKWApMClwKMAosCmAKXAosCmQKYAosCmgKZAosCmgKLApsCmwKcApoCmAKdApcCnQKQApcCnQKeApACngKfApACnwKRApACoAKaApwCowKhAqICogKkAqMCogKlAqQCpQKmAqQCpgKnAqQCpwKoAqQCqQKiAqECoQKqAqkCqgKkAqgCqgKrAqkCqgKoAqsCrgKsAq0CrQKvAq4CsgKwArECsQKzArICswK0ArICswK1ArQCtQK2ArQCtQK3ArYCtwK4ArYCuAK5ArYCuQK6ArYCuwK4ArcCtwK8ArsCvAKzArECvQK8ArECsQK+Ar0CvQK/ArwCvwK7ArwCwgLAAsECxQLDAsQCxgLFAsQCxwLGAsQCyALHAsQCyQLIAsQCyQLEAsoCyQLKAssCzALJAssCywLNAswCzgLHAsgC0QLPAtAC0ALSAtEC1QLTAtQC1ALWAtUC2QLXAtgC2gLZAtgC2wLaAtgC2wLYAtwC3ALdAtsC3QLeAtsC3gLfAtsC2gLgAtkC2gLhAuAC2gLiAuEC3wLeAuMC4wLkAt8C4wLlAuQC5QLaAuQC5QLmAtoC5gLiAtoC5wLiAuYC5gLoAucC3gLdAukC6gLeAukC6gLpAusC6wLsAuoC7wLtAu4C7gLwAu8C8ALxAu8C8gLvAvEC8wLyAvEC8QL0AvMCQwL1AvYC9gL3AkMC9wJFAkMC9wL4AkUC"), -"material": SubResource("StandardMaterial3D_trcaa"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0Kv/batipsaRq/9iRJaRUdCr/2JEkqbGkav/YkSQAAui5U1dq2AAC6LlTVJEkAAM8SVNXatgAAzxJU1dq2AADPEifu2rZpFR0KJ+4kSQAAzxIn7iRJaRUdCifu2rYqbAtDVNXatipsaRpU1dq2I1qpP1TV2rYcSEY8VNXatgAAui5U1dq2AADPElTV2rZpFR0KVNXatiNaqT8KwSRJI1qpPwrB2rYqbAtDCsEkSSpsC0MKwdq2AAC6LgrBJEkAALouCsHathxIRjwKwSRJHEhGPArBJEmIVq3r///8tLXArev//9q2iFat6///2rZOxq3r//+Br327rev//8mmAret6///bZuSs63r//8yjmmxrev///9/rLCt6///zHFpsa3r//+RZJKzrev//zVZAret6///fVB9u63r//8CS7XArev//yRJTsat6////LTny63r///atvDbrev//4GvH9Gt6///yaaa1a3r//9tmwrZrev//zKONNut6////3/w263r//8kSfDbrev//wJL58ut6///fVAf0a3r//81WZrVrev//5FkCtmt6///zHE0263r////f926rev//314Qbut6///gYdBu63r//+Ajma8rev//35xZryt6///fGs3vq3r//+ClDe+rev//x6ZlsCt6///4GaWwK3r//8EnFjDrev///pjWMOt6///AZ1Oxq3r///9Yk7Grev///pjRMmt6///BJxEya3r///gZgbMrev//x6ZBsyt6///fGtlzq3r//+ClGXOrev//4CONtCt6///fnE20K3r//99eFvRrev//4GHW9Gt6////3+/0a3r///atpZ6eZ5U1dq2lnqFYVTVbNuWenmeVNVs25Z6hWFU1dq2b5eFYVTV2rZvl3meVNVs22+XhWFU1Wzbb5d5nlTVJEmWenmeVNUkSTmQaZpU1SRJb5d5nlTVJElvl4VhVNUkSTmQKIpU1SRJzYEoilTVJEnNgWmaVNUkSZZ6hWFU1SRJlnqFYf//kiSWeoVh//8kSW+XhWH//5Ikb5eFYf//2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZpU1dq2zYFpmlTV2raWenmeVNXatpZ6hWFU1dq2zYEoilTV2rZvl4VhVNXatm+XeZ5U1dq2OZAoilTVkiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH//9q2lnqFYf//bNtvl4Vh///atm+XhWH//5Iklnp5nlTVkiSWeoVhVNUkSZZ6eZ5U1SRJlnqFYVTVkiRvl4VhVNWSJG+XeZ5U1SRJb5eFYVTVJElvl3meVNVs2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z1TVbNussO2wVNW17aywPM9U1bXtrLDtsFTVbNtEKzzP//+SJEQrPM////7/sDk8z///AACwOTzP//9s2xxIPM////7/Kmw8z///bNussDzP//+17aywPM///5IkHEg8z///AAAqbDzP//+SJKywPM///0kSrLA8z///SRKssDzPVNVJEqyw7bBU1ZIkrLA8z1TVkiSssO2wVNVs20QrPM9U1f7/sDk8z1TVbNtEK8ZxVNX+/7A5xnFU1QAAsDk8z1TVkiREKzzPVNUAALA5xnFU1ZIkRCvGcVTVAAAqbDzPVNUAALA5PM9U1QAAKmztsFTVAACwOcZxVNUAACpsxnFU1QAAKmztsFTVAAAqbMZxVNWSJCps7bBU1ZIkKmzGcVTVAAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bBU1WzbKmzGcVTV/v8qbO2wVNX+/ypsxnFU1ZIkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8ZxVNWSJEQrPM9U1WzbRCvGcVTVbNtEKzzPVNX+/ypsPM9U1f7/KmztsFTV/v+wOTzPVNX+/7A5xnFU1f7/KmzGcVTVNVkCt63rVNU1WQK3//9U1ZFkkrOt61TVkWSSs///VNV9UH27//9U1TVZArf//1TVfVB9u63rVNU1WQK3retU1QJLtcD//1TVfVB9u///VNUCS7XAretU1X1Qfbut61TVkWSSs63rVNWRZJKz//9U1cxxabGt61TVzHFpsf//VNX/f/Db//9U1f9/8Nve91TVMo402///VNX/f/DbretU1TKONNut61TVMo402///VNUyjjTbretU1W2bCtn//1TVbZsK2a3rVNUkSU7G//9U1QJLtcD//1TVJElOxt73VNUCS7XAretU1SRJTsat61TVkWQK2f//VNWRZArZretU1cxxNNv//1TVzHE0263rVNU1WZrV//9U1X1QH9H//1TVNVma1a3rVNV9UB/RretU1W2bCtn//1TVbZsK2a3rVNXJpprV//9U1cmmmtWt61TVAkvny///VNUkSU7G//9U1QJL58ut61TVJElOxt73VNUkSU7GretU1YGvH9H//1TVyaaa1f//VNWBrx/RretU1cmmmtWt61TVzHE02///VNXMcTTbretU1f9/8Nv//1TV/3/w263rVNX/f/Db3vdU1X1QH9H//1TVAkvny///VNV9UB/RretU1QJL58ut61TVNVma1f//VNU1WZrVretU1ZFkCtn//1TVkWQK2a3rVNX8tOfL//9U1YGvH9H//1TV/LTny63rVNWBrx/RretU1dq2Tsb//1TV/LTny///VNXatk7G3vdU1fy058ut61TV2rZOxq3rVNXJpgK3//9U1YGvfbv//1TVyaYCt63rVNWBr327retU1fy0tcD//1TV2rZOxv//VNX8tLXAretU1dq2Tsbe91TV2rZOxq3rVNWBr327//9U1fy0tcD//1TVga99u63rVNX8tLXAretU1W2bkrOt61TVbZuSs///VNXJpgK3retU1cmmArf//1TVMo5psa3rVNUyjmmx//9U1W2bkrOt61TVbZuSs///VNX/f6ywretU1f9/rLD//1TVMo5psa3rVNUyjmmx//9U1cxxabGt61TVzHFpsf//VNX/f6ywretU1f9/rLD//1TVfXhb0a3rVNV9eFvR//9U1f9/v9Gt61TV/3+/0f//VNV+cTbQretU1X5xNtD//1TVfXhb0a3rVNV9eFvR//9U1fpjRMn//1TV4GYGzP//VNX6Y0TJretU1eBmBsyt61TV/WJOxv//VNX6Y0TJ//9U1f1iTsat61TV+mNEya3rVNV8a2XOretU1XxrZc7//1TVfnE20K3rVNV+cTbQ//9U1XxrN77//1TV4GaWwP//VNV8aze+retU1eBmlsCt61TV/3/duv//VNX/f926retU1YGHQbv//1TVgYdBu63rVNWBh0G7//9U1YGHQbut61TVgI5mvP//VNWAjma8retU1YCOZrz//1TVgI5mvK3rVNWClDe+//9U1YKUN76t61TVHpmWwP//VNWClDe+//9U1R6ZlsCt61TVgpQ3vq3rVNUEnFjD//9U1R6ZlsD//1TVBJxYw63rVNUemZbAretU1QGdTsb//1TVBJxYw///VNUBnU7GretU1QScWMOt61TVBJxEyf//VNUBnU7G//9U1QScRMmt61TVAZ1Oxq3rVNUemQbM//9U1QScRMn//1TVHpkGzK3rVNUEnETJretU1YKUZc7//1TVHpkGzP//VNWClGXOretU1R6ZBsyt61TVgI420K3rVNWAjjbQ//9U1YKUZc6t61TVgpRlzv//VNWBh1vRretU1YGHW9H//1TVgI420K3rVNWAjjbQ//9U1eBmBsz//1TVfGtlzv//VNXgZgbMretU1XxrZc6t61TVfGs3vv//VNV8aze+retU1X5xZrz//1TVfnFmvK3rVNX6Y1jD//9U1f1iTsb//1TV+mNYw63rVNX9Yk7GretU1eBmlsD//1TV+mNYw///VNXgZpbAretU1fpjWMOt61TVfnFmvP//VNV+cWa8retU1X14Qbv//1TVfXhBu63rVNV9eEG7//9U1X14Qbut61TV/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRretU1YGHW9H//1TVJEkqbAtDVNUkSSNaqT9U1SRJKmxpGlTVJEkcSEY8VNUkSQAAui5U1SRJAADPElTVJElpFR0KVNUkSSpshWFU1SRJHEiFYVTVJEkqbF1XVNUkSSNaXVdU1SRJTsbe91TVJEnw2973VNUkSU7GretU1SRJ8Nut61TVJEmIVq3rVNUkSYhW3vdU1dq2Tsbe91TV2raIVt73VNXatk7GretU1dq2iFat61TV2rbw263rVNXatvDb3vdU1bZtXOq+71TVkWT//77vVNW2bVzqXNdU1ZFk//+N41TV/3/w263rVNX/f/Db3vdU1dq28Nut61TV2rbw2973VNUkSfDb3vdU1SRJ8Nut61TV2rZc6r7vVNW2rf//vu9U1dq2XOpc11TVtq3//43jVNXatlzqvu///0iSXOq+7///tq3//77v//9tm///vu///22b//++71TVSJJc6r7vVNVtm///jeNU1UiSXOpc11TVtm1c6r7v//8kSVzqvu///5Fk//++7///SFL//77v//8kSfDbjaNU1SRJrLA4jlTVJEnw2wE5VNUkSaywsCRU1UhS//++71TVJElc6r7vVNVIUv//jeNU1SRJXOpc11TVSJJc6lzXqunatlzqXNeq6W2b//+N46rptq3//43jqultm///vu9U1W2b//+N41TVtq3//77vVNW2rf//jeNU1SRJrLCwJC/s2rassLAkL+wkSfDbATkv7Nq28NsBOS/sJElc6lzXqum2bVzqXNeq6UhS//+N46rpkWT//43jqulIUv//vu9U1UhS//+N41TVkWT//77vVNWRZP//jeNU1SRJ8NuNo1TVJEnw2wE5VNXatvDbjaNU1dq28NsBOVTVJEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT9U1dq2I1qpP1TVJEkjWl1XVNXatiNaXVdU1ds2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma///bNs2BaZr//yRJOZBpmv//2zY5kGma//8jyc2BaZr//9q2zYFpmv//I8k5kGma///atjmQaZr//yRJiFbe91TVJEmIVq3rVNXatohW3vdU1dq2iFat61TV2rbNgSiKVNXats2BaZpU1SPJzYEoilTVI8nNgWmaVNVs282BSJJU1dq2OZBpmlTV2rY5kCiKVNUjyTmQaZpU1SPJOZAoilTVbNs5kEiSVNXats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIklTV2zbNgWmaVNXbNs2BKIpU1SRJzYEoilTVJEnNgWmaVNWSJDmQSJJU1ds2OZAoilTV2zY5kGmaVNUkSTmQaZpU1SRJOZAoilTVSRKssDzPVNUAACpsPM9U1UkSrLDtsFTVAAAqbO2wVNX+/ypsPM9U1bXtrLA8z1TV/v8qbO2wVNW17ayw7bBU1f9/rLD/////zHFpsf////8yjmmx/////22bkrP/////kWSSs//////JpgK3/////zVZArf/////ga99u///////f926/////4GHQbv/////gI5mvP/////8tLXA/////4KUN77/////HpmWwP////8EnFjD/////9q2Tsb/////AZ1Oxv/////8tOfL/////wScRMn/////HpkGzP////+Brx/R/////4KUZc7/////gI420P////+Bh1vR/////8mmmtX//////3+/0f////81WZrV/////5FkCtn/////bZsK2f////8yjjTb/////8xxNNv//////3/w2/////99eFvR/////31QH9H/////fnE20P////98a2XO/////+BmBsz/////Akvny//////6Y0TJ/////yRJTsb//////WJOxv/////6Y1jD/////wJLtcD/////4GaWwP////98aze+/////35xZrz/////fVB9u/////99eEG7/////yRJHEhGPFTVJEkcSIVh///athxIRjxU1dq2HEiFYf//2rbw242jVNXatvDbATlU1dq2rLA4jlTV2rassLAkVNXatipshWFU1dq2I1pdV1TV2rYcSIVhVNXatipsXVdU1ZIkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAPzF2rYqbEAQ/MVs25Z6AAD8xWzblnpAEPzFkiRAokAQ/MWSJECiAAD8xSRJrLBAEPzFJEmssAAA/MWSJJZ6AAD8xZIklnpAEPzFJEkqbAAA/MUkSSpsQBD8xdq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBD8xdq2rLAAAPzFbNtAokAQ/MVs20CiAAD8xdq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaG61s2zmQSJIbrSPJzYFpmhutbNvNgUiSG61s2zmQSJLj0iPJOZAoiuPSbNvNgUiS49Ijyc2BKIrj0pIkOZBIkuPSkiTNgUiS49LbNjmQKIrj0ts2zYEoiuPSkiRc6qmq/78kSVzqvu//v5IkXOre9/+/bNtc6t73/7+2bVzqvu//v0iSXOq+7/+/tm1c6lzX/7/atlzqvu//v9q2XOpc1/+/JElc6lzX/79s21zqqar/v0iSXOpc1/+/kiRc6qmq/7+SJG+XeZ7/v5IkrLA4jv+/kiRvl4Vh/7+SJKywQBD/v5IklnqFYf+/kiQqbIVh/7+SJECiQBD/v5IklnpAEP+/kiRAogAA/7+SJJZ6AAD/v5IkKmxAEP+/kiSWenme/7+SJCps7bD/v5IkrLDtsP+/kiSssDzP/7+SJFzq3vf/v5IkHEje9/+/kiQqbMZx/7+SJBxIxnH/v5IkHEiFYf+/kiQcSDzP/7+SJBxI3vf/f9q2iFbe9/9/bNscSN73/39s21zq3vf/f9q2Tsbe9/9/2rbw2973/3//f/Db3vf/fyRJ8Nve9/9/JEmIVt73/3+SJFzq3vf/fyRJTsbe9/9/kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAAD//yRJKmxAEP//2rYqbAAA//8kSSpsaRr//9q2KmxAEP//2rYqbGka//9s2ypsQBD//9q2KmwLQ///2rYqbF1X///atipshWH//2zbKmyFYf//JEkqbF1X//8kSSpsC0P//5IkKmyFYf//kiQqbEAQ//8kSSpshWH//9q2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jv+/2rassLAk/79s26ywOI7/v2zbrLBAEP+/2rassEAQ/78kSaywAAD/vyRJrLBAEP+/JEmssLAk/78kSaywOI7/v5IkrLBAEP+/kiSssDiO/7/atqywAAD/v9s2OZBpmhut2zbNgWmaG62SJDmQSJIbrZIkzYFIkhutkiQcSDzP//+SJBxI3vf//2zbHEg8z///bNscSN73//9s2xxIxnH/v2zbKmzGcf+/bNscSIVh/79s25Z6hWH/v2zblnp5nv+/bNsqbO2w/79s26yw7bD/v2zbXOqpqv+/bNtvl3me/79s2ypshWH/v2zbKmxAEP+/bNuWekAQ/79s26ywOI7/v2zbb5eFYf+/bNussEAQ/79s20CiQBD/v2zblnoAAP+/bNtAogAA/79s26ywPM//v2zbXOre9/+/bNscSDzP/79s2xxI3vf/v5IkrLA4jv//JEmssDiO//+SJFzqqar//yRJ8NuNo///2rbw242j//9s21zqqar//2zbrLA4jv//2rassDiO//+SJBxIhWH//5IkHEjGcf//bNscSMZx//9s2xxIhWH//////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3//P/8//z//P/8//z//P/8//z//v/8//7//P/+//z//v/9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/8mTy5CVRJdHyZPLkJVEl0dku2a7ZLtmuDBsMmwwbDJv///9/////f/Lk8mQa8Rtx8uTyZPLk8mTy5PJkJdElUSXRJVH/f///8mTy5P9////yZPLkG3Ea8SXR2a4l0dmu8uQMm/LkDJv/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//Pwyb8uT/f///DJvy5P9////jjhrx2a7ZLv+//z/Zrtku/7//P/LkDJvy5Ayb////fxrx447///9/2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4Mmwwb2a7ZLgybDBvZrtku/38AAAybDBv/fwAADJsMG+OO5A7/P/8/JVHZLv8//z8lUdku8mQMG/9/AADyZAwb/38AABtx5A4lUdku8mQMGyVR2S7yZAwb2S4lUdkuJVH/P/8//z//Pwwb8mQMG/Jk2S4lUdkuJVEAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/fwwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk8mQMGyVR2S7yZAwbJVHZLv9/AADyZAwb/38AAPJkDBv/P/8//z//P9kuJVHZLiVR/7//P9mu2S7/v/8/2a7ZLv///3////9/8uQMm/LkDJvy5Ayb8uQMmyXR2a4l0dmuJdHZriXR2a7/v/+//7//v9muJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5PJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0dku2a7ZLtmu/z//v/8//78MGwybDBsMm9ku2a7ZLtmuJVHZLv8//z8lUdku/z//P/+//z//v/8/JdElUSXRJVEMmwwb/38AAAybDBv/fwAA2a7ZLgybDBvZrtkuDJsMGyXRJVEl0SVR8uTyZPLk8mTy5PJk8uTyZP///3////9/AAD/fwAA/38MGwybDBsMm/9/////f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEgAA/38AAP9/AAD/fwAA/38AAP9/AAD/f0iSSRJIkkkSSJJJEkiSSRL/f/9//3//f/9//3//f/9/SJK17UiSte1IkrXtSJK17f9//3//f/9//3//f/9//3//f////3////9/////f///SJK17UiSte1IkrXtSJK17f///3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////fzCMzvMwjM7zMIzO8zCMzvMwjDAMMIwwDDCMMAwwjDAM/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/f/9//z8AAP9//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///AGP+OQBj/jkAY/45AGP+Of6cAMb+nADG/pwAxv6cAMYBRv/iAUb/4gFG/+IBRv/i/3////9/////f////3////9/////f////3////9/////f////3////9////9uf8c/bn/HP25/xz9uf8c/3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3/+//9//v//f/7//3////9/////f////3/+//9/////f/7//3////9/////f/9/////f/7//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3////9/////f///////f////3////9/////f////3////9//v//f////3////9/////f////3////9//3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38J3f9/Cd3/fwnd/38J3f9/Cd3/fwnd/38J3f9/Cd3/f/8//3//P/9//z//f/8/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_bnntu") - -[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_hx5en"] -points = PackedVector3Array(-0.0349892, -0.1825, -0.279969, -0.0549873, -0.0224452, -0.32, 0.0549726, 0.0574765, -0.32, 0.0669117, -0.100588, 0.178403, -0.0669117, -0.100588, 0.178403, -0.0349892, 0.1775, 0.229976, 0.0349745, -0.1825, -0.279969, -0.0549873, 0.0574765, -0.32, 0.0549726, 0.147477, 0.0899608, -0.05, -0.0752049, 0.272748, -0.075, 0.0274883, 0.119969, 0.075, 0.0274883, 0.119969, 0.05, -0.0752244, 0.27282, -0.03, 0.10896, -0.16286, -0.05, 0.133874, 0.272748, 0.0349745, 0.1775, 0.279969, 0.0656764, -0.0987774, -0.035, 0.0349745, -0.1825, -0.189945, -0.0249902, 0.0674843, 0.32, -0.0549873, 0.147477, 0.0899608, -0.0656764, -0.0987774, -0.035, 0.0549726, -0.0224452, -0.32, -0.0579798, -0.10952, 0.178409, 0.05, 0.13391, 0.27282, 0.03, 0.109006, -0.162929, -0.0349892, -0.1825, -0.189945, 0.0579713, -0.109529, 0.178423, 0.0249755, 0.0674843, 0.32, -0.0349892, -0.152441, -0.299953, -0.0349892, 0.1775, 0.279969, -0.0449883, 0.0674843, -0.32, 0.0349745, 0.1775, 0.229976) - -[node name="blasterM" type="RigidBody3D"] -collision_layer = 8 -script = ExtResource("1_jnt62") -_weapon_name = "blasterM" -_current_ammo = 6 -_reserve_ammo = 24 - -[node name="blasterM2" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -mesh = SubResource("ArrayMesh_j5hjo") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -shape = SubResource("ConvexPolygonShape3D_hx5en") diff --git a/client/template/Spawnable_Objects/Weapons/blaster_n.tscn b/client/template/Spawnable_Objects/Weapons/blaster_n.tscn deleted file mode 100644 index ac00080..0000000 --- a/client/template/Spawnable_Objects/Weapons/blaster_n.tscn +++ /dev/null @@ -1,167 +0,0 @@ -[gd_scene load_steps=10 format=4 uid="uid://gtthejj2wmyj"] - -[ext_resource type="Script" uid="uid://deaf6cmuofa0" path="res://client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd" id="1_v38gi"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dwwv8"] -resource_name = "dark" -vertex_color_use_as_albedo = true -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4nnic"] -resource_name = "metal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xjv6l"] -resource_name = "pink" -vertex_color_use_as_albedo = true -albedo_color = Color(0.998274, 0.505969, 0.673936, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1wqtj"] -resource_name = "darkMetal" -vertex_color_use_as_albedo = true -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y7a7m"] -resource_name = "_defaultMat" -vertex_color_use_as_albedo = true -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_fiwtu"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34359742465, -"index_count": 744, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABQACAAMAAwAHAAUACgAIAAkACQAGAAoACQALAAYACwAMAAYACwANAAwADAAOAAYADgAPAAYAEAAJAAgACAAEABAABAANABAABAAGAA8ABAARAA0AEQAMAA0ABAAPABEAAQAAAAgACAAKAAEAAQAKAAYABgAHAAEABwADAAEABQAEAAgACAAAAAUAAAACAAUAFAASABMAEwAVABQAFwAWABQAFAAVABcAEwASABgAGAAZABMAEgAaABsAGwAYABIAGwAcABgAHAAWABgAFAAWABoAGgASABQAFgAdABoAFgAcAB0AFwAZABgAGAAWABcAIAAeAB8AHwAhACAAIAAhACIAIgAjACAAIwAkACUAJQAgACMAJQAmACAAJgAnACAAKAAlACQAJAAeACgAHgAnACgAHgAgACcAIgApACQAJAAjACIALAAqACsAKwAtACwAJAApAB8AHwAeACQAMAAuAC8ALwAxADAAMwAyAC4ALgAwADMANQA0ADIAMgAzADUAOAA2ADcANwA5ADgAPAA6ADsAOwA9ADwAQAA+AD8APwBBAEAAQwBCADQANAA1AEMAQwBEAEUARQBCAEMARABGAEcARwBFAEQARgBIAEkASQBHAEYATABKAEsASwBNAEwAKgBOAE8ATwArACoATQBLAE8ATwBOAE0AOQA3AEoASgBMADkAUQBQADYANgA4AFEAVABSAFMAUwBVAFQAVgBUAFUAVQBXAFYAWABWAFcAVwBZAFgAOgBYAFkAWQA7ADoAUwBSAFAAUABRAFMAPwA8AD0APQBBAD8AMQAvAD4APgBAADEAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgASAAsAC0ALQBJAEgAawBqAGIAYgBkAGsAZQBjAF8AXwBeAGUAbgBsAG0AbQBvAG4AWgBgAGEAYQBbAFoAaQBnAGoAagBrAGkAcABuAG8AbwBxAHAAcgBwAHEAcQBzAHIAdAByAHMAcwB1AHQAdgB0AHUAdQB3AHYAeAB2AHcAdwB5AHgAbQBsAGYAZgBoAG0AfAB6AHsAewB9AHwAfwB+AHgAeAB5AH8AgQCAAH4AfgB/AIEAgwCCAIAAgACBAIMAdQBzAHEAcQB3AHUAcQBvAHcAbwBtAHcAbQB5AHcAbQB/AHkAbQBoAH8AaACBAH8AaABpAIEAaQCDAIEAaQBrAIMAawBkAIMAZACEAIMAZABlAIQAZQCFAIQAZQBeAIUAXgCGAIUAXgB8AIYAXgBgAHwAYABaAHwAWgB6AHwAWgBcAHoAhgCHAIgAiACFAIYALABIAEYARgAqACwARgBEACoARABOACoARABDAE4AQwCJAE4AiQCKAE4AigBNAE4AigCLAE0AiwCMAE0AjABMAE0AjACNAEwAjQCOAEwAjgA5AEwAjgCPADkAjwA4ADkAjwCQADgAkACRADgAkQBRADgAkQCSAFEAkgCTAFEAkwBTAFEAkwCUAFMAlACVAFMAQQBTAJUAQQCVAJYAQQCWAJcAQABBAJcAQACXAJgAQACYAJkAMQBAAJkAMQCZAJoAMAAxAJoAMACaAJsAMACbAJwAMwAwAJwAMwCcAJ0AMwCdAJ4ANQAzAJ4ANQCeAJ8ANQCfAKAAQwA1AKAAoACJAEMAQQBVAFMAQQA9AFUAPQBXAFUAPQA7AFcAOwBZAFcAhgB8AH0AfQCHAIYAhAChAIIAggCDAIQAhQCIAKEAoQCEAIUAegBcAF0AXQB7AHoApACiAKMAowClAKQAqACmAKcApwCpAKgAqgCnAKYApgCrAKoApgCsAKsApgCtAKwAogCkAK4ArgCoAKIArgCmAKgArgCtAKYAsACvAKoAqgCrALAAsACrAKwArACxALAAsQCsAK0ArQCuALEArwClAKMAowCpAK8AqQCnAK8ApwCqAK8A"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+kML1vPYonD24HoW+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9zcxMPfYonD0K16O9kML1POF6FD0K16O9zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1PKNwPT0K16M8kML1PBWuhz0K16M8kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9zcxMveF6FD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+y2LtPBZCjD2QwnU+nNXUPEfhej3hepQ+nNXUPEfhej2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+UMetPERuYT2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+nNXUvEjhuj3hepQ+nNXUvEjhuj2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo++vSBvPYonD3hepQ++vSBvPYonD1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+jxdhPFbqiz1wPYo+uw57PEzAkz3hepQ+uw57PEzAkz1wPYo++vSBPPYonD3hepQ++vSBPPYonD1wPYo+uw57PJ+RpD1wPYo+jxdhPJVnrD1wPYo+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+uw57PJ+RpD3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbt7FK69kML1vJDCdbt7FK69C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1vPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1vLgexT24HgW+CtcjPaNwPT2QwnU9CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9CtcjPaNwPT0K16M8zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9kMJ1veF6FD3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2tR2E+oJ6pO225wz2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+CtcjPA1gcT2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2tR2E+veONvNejsD2tR2E+a7RnvIMfuT2tR2E+3kGevAuPkT2tR2E+C9cjvOWhvz2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2tR2E+NcF1r2ZmZj2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+CtcjPOWhvz2tR2E+op6pu/wwaT2tR2E+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2QwvU9kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1PJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9kMJ1PeF6FD3hepQ+kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9zcxMveF6FD17FC4+zcxMPZDCdbu4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vHsU7j24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+zcxMvZDCdbuQwvU9zcxMPZDCdbuQwvU9kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34359742465, -"index_count": 606, -"index_data": PackedByteArray("DQCyALMAswAQAA0ACQAQALMAswC0AAkACQC0ALUAtQALAAkADAARALYAtgC3AAwADAC3ALgAuAAOAAwAuAC5AA8ADwAOALgAtQCyAA0ADQALALUADwC5ALYAtgARAA8AuwC6ABsAGwAaALsAuwAaAB0AHQC8ALsAvAC9ALsAvgAcABsAGwC6AL4AugC/AL4AwgDAAMEAwQAnAMIAwQAoACcAHQAcAL4AvgC8AB0AxQDDAMQAxAAlAMUAxAAmACUAxADCACcAJwAmAMQAJQAoAMEAwQDFACUAyADGAMcAxwDJAMgAzADKAMsAywDHAMwAywDJAMcAygDNAM4AzgDLAMoANABCAHIAcgB0ADQAdAB2ADQAdgAyADQAdgB4ADIAeAB+ADIAfgCAADIAgAAuADIAgACCAC4AggAvAC4AggChAC8AoQCIAC8AiAA+AC8AiACHAD4AhwB9AD4AfQB7AD4AewA/AD4AewBdAD8AXQBSAD8AUgBUAD8AVAA8AD8AVAA6ADwAVABWADoAVgBYADoAUgBdAFsAUABSAFsAUABbAGEAUABhAF8AUABfAGMANgBQAGMANgBjAGIANwA2AGIANwBiAGoANwBqAGcASgA3AGcASgBnAGYASgBmAGwASgBsAG4ASwBKAG4ASwBuAHAASwBwAHIASwByAEIATwBLAEIAKwBPAEIAKwBCAEUALQArAEUALQBFAEcARwBJAC0AxgDPAMwAzADHAMYA0gDQANEA0QDTANIA0wDUANIA0wCjANQA0wCpAKMAlgCVANUA1QDWAJYA1wCZAJgAmADYANcA2QCbAJoAmgDaANkA2wCdAJwAnADcANsA3gDdAKAAoACfAN4A3wCQAI8AjwDgAN8AlQCUAOEA4QDVAJUA4gCRAJAAkADfAOIA4wCSAJEAkQDiAOMA4ACPAI4AjgDkAOAAkwCSAOMA4wDlAJMA5ACOAI0AjQDmAOQA5wCeAJ0AnQDbAOcA3QDoAIkAiQCgAN0A6gDpAIwAjACLAOoA5gCNAIwAjADpAOYAmACXAOsA6wDYAJgAlwCWANYA1gDrAJcA3ACcAJsAmwDZANwA5wDeAJ8AnwCeAOcA7ADqAIsAiwCKAOwA2gCaAJkAmQDXANoAlACTAOUA5QDhAJQA6ADsAIoAigCJAOgA7wDtAO4A7gDwAO8A7QDvAPEA8QDyAO0A8QDzAPIAqACpANMA0wD0AKgA9gD1ANEA0QDQAPYA+QD3APgA+AD6APkA/QD7APwA/ADwAP0A8AD+AP0A/gDwAO4A8gD+AO4A7gDtAPIA+wD9APMA8wDxAPsA0gDUAP8A/wAAAdIA+QABAQIBAgH3APkABQEDAQQBBAEGAQUBBQEGAQcBBwEIAQUBCAEJAQUBCgEJAQgBCAELAQoBBwEGAQQBBAEMAQcB+AANAQ4BDgH6APgADwEBAfkA+QAQAQ8B+QD6ABAB+gARARAB+gASAREB+gAOARIB1ACjAKIAogD/ANQA9QD0ANMA0wDRAPUACwEMAQQBBAEDAQsBAwEKAQsBzgDNAM8AzwDIAM4AzwDGAMgAyAATAc4AqAD0AP8A/wCiAKgAAAH/APQA9gAAAfQA9AD1APYA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+kML1vPYonD24HoW+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9zcxMPfYonD0K16O9kML1POF6FD0K16O9zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1PKNwPT0K16M8kML1PBWuhz0K16M8kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9zcxMveF6FD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+y2LtPBZCjD2QwnU+nNXUPEfhej3hepQ+nNXUPEfhej2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+UMetPERuYT2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+nNXUvEjhuj3hepQ+nNXUvEjhuj2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo++vSBvPYonD3hepQ++vSBvPYonD1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+jxdhPFbqiz1wPYo+uw57PEzAkz3hepQ+uw57PEzAkz1wPYo++vSBPPYonD3hepQ++vSBPPYonD1wPYo+uw57PJ+RpD1wPYo+jxdhPJVnrD1wPYo+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+uw57PJ+RpD3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbt7FK69kML1vJDCdbt7FK69C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1vPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1vLgexT24HgW+CtcjPaNwPT2QwnU9CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9CtcjPaNwPT0K16M8zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9kMJ1veF6FD3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2tR2E+oJ6pO225wz2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+CtcjPA1gcT2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2tR2E+veONvNejsD2tR2E+a7RnvIMfuT2tR2E+3kGevAuPkT2tR2E+C9cjvOWhvz2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2tR2E+NcF1r2ZmZj2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+CtcjPOWhvz2tR2E+op6pu/wwaT2tR2E+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2QwvU9kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1PJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9kMJ1PeF6FD3hepQ+kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9zcxMveF6FD17FC4+zcxMPZDCdbu4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vHsU7j24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+zcxMvZDCdbuQwvU9zcxMPZDCdbuQwvU9kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34359742465, -"index_count": 348, -"index_data": PackedByteArray("FQEUAbMAswAWARUBswCyABYBsgC2ABYBsgC1ALYAtgC5ABYBuQAXARYBuQC4ABcBuAAYARcBGAEZARcBFAEYAbQAtACzABQBGAG1ALQAGAG3ALUAtwC2ALUAGAG4ALcAGwEaARMBEwH8ABsBugC7AL0AvQC/ALoABQEJARkBGQHvAAUBGQEYAe8AGAHxAO8AGwH8APsA+wAUARsB+wATABQB+wDxABMA8QAVABMAEwAZABQBFQDxABgBGAEUARkAGAEXABUAGAEZABcAFQEaAa8ArwCwABUBsAAUARUBGgGlAK8AsACxABQBsQCuABQBrgCkABQBpAAAARQBAAH2ABQB0AClABoBGgEbAdAAGwH2ANAAGwEUAfYA0ADSAKUApAClANIA0gAAAaQAvwC9ALwAvAC+AL8A8ADIAN0A3QDeAPAA3gDnAPAA5wDvAPAAyADoAN0A5wDbAO8A2wDcAO8A3ADZAO8A2QDaAO8A2gDXAO8A1wDYAO8A2ADrAO8A6wDWAO8A1gDVAO8A1QDJAO8AyQADAe8AAwEFAe8AyQDVAOEAyQDhAOUAyQDlAOMAyQDjAOIAyQDiAN8AyQDfAOAAyQDgAOQAyQDkAOYAyQDmAOkAyADJAOkA6QDqAMgA6gDsAMgA7ADoAMgACgEDAckAyQDLAAoBywAXAQoBywAWARcBxADDAMAAwADCAMQAwwDFAMEAwQDAAMMAywDOACIAIgAWAcsAIgAhABYBIQAfABYBKQAiAM4AFQEpAM4AFQEfACkAFQEWAR8AGgEVAc4AzgATARoBCgEXAQIBAgEJAQoBAgEBAQkBAQEPAQkBDwESAQkBEgEOAQkBDQECARcBFwEZAQ0BGQEOAQ0BGQEJAQ4BDQEcAQIBDQEdARwBDwEcAR0BHQESAQ8B/AATAcgAyADwAPwA"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+kML1vPYonD24HoW+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9zcxMPfYonD0K16O9kML1POF6FD0K16O9zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1PKNwPT0K16M8kML1PBWuhz0K16M8kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9zcxMveF6FD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+y2LtPBZCjD2QwnU+nNXUPEfhej3hepQ+nNXUPEfhej2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+UMetPERuYT2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+nNXUvEjhuj3hepQ+nNXUvEjhuj2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo++vSBvPYonD3hepQ++vSBvPYonD1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+jxdhPFbqiz1wPYo+uw57PEzAkz3hepQ+uw57PEzAkz1wPYo++vSBPPYonD3hepQ++vSBPPYonD1wPYo+uw57PJ+RpD1wPYo+jxdhPJVnrD1wPYo+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+uw57PJ+RpD3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbt7FK69kML1vJDCdbt7FK69C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1vPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1vLgexT24HgW+CtcjPaNwPT2QwnU9CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9CtcjPaNwPT0K16M8zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9kMJ1veF6FD3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2tR2E+oJ6pO225wz2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+CtcjPA1gcT2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2tR2E+veONvNejsD2tR2E+a7RnvIMfuT2tR2E+3kGevAuPkT2tR2E+C9cjvOWhvz2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2tR2E+NcF1r2ZmZj2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+CtcjPOWhvz2tR2E+op6pu/wwaT2tR2E+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2QwvU9kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1PJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9kMJ1PeF6FD3hepQ+kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9zcxMveF6FD17FC4+zcxMPZDCdbu4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vHsU7j24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+zcxMvZDCdbuQwvU9zcxMPZDCdbuQwvU9kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34359742465, -"index_count": 54, -"index_data": PackedByteArray("ygDMAM8AzwDNAMoAEQEeAR8BHwEQAREB9wACARwBHAEfAfcAHwH4APcAHwEeAfgAHgEdAfgAHQENAfgAEQESAR0BHQEeAREBHwEcAQ8BDwEQAR8B/QD+APIA8gDzAP0ABwEMAQsBCwEIAQcB"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+kML1vPYonD24HoW+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9zcxMPfYonD0K16O9kML1POF6FD0K16O9zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1PKNwPT0K16M8kML1PBWuhz0K16M8kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9zcxMveF6FD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+y2LtPBZCjD2QwnU+nNXUPEfhej3hepQ+nNXUPEfhej2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+UMetPERuYT2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+nNXUvEjhuj3hepQ+nNXUvEjhuj2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo++vSBvPYonD3hepQ++vSBvPYonD1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+jxdhPFbqiz1wPYo+uw57PEzAkz3hepQ+uw57PEzAkz1wPYo++vSBPPYonD3hepQ++vSBPPYonD1wPYo+uw57PJ+RpD1wPYo+jxdhPJVnrD1wPYo+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+uw57PJ+RpD3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbt7FK69kML1vJDCdbt7FK69C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1vPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1vLgexT24HgW+CtcjPaNwPT2QwnU9CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9CtcjPaNwPT0K16M8zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9kMJ1veF6FD3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2tR2E+oJ6pO225wz2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+CtcjPA1gcT2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2tR2E+veONvNejsD2tR2E+a7RnvIMfuT2tR2E+3kGevAuPkT2tR2E+C9cjvOWhvz2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2tR2E+NcF1r2ZmZj2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+CtcjPOWhvz2tR2E+op6pu/wwaT2tR2E+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2QwvU9kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1PJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9kMJ1PeF6FD3hepQ+kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9zcxMveF6FD17FC4+zcxMPZDCdbu4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vHsU7j24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+zcxMvZDCdbuQwvU9zcxMPZDCdbuQwvU9kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34359742465, -"index_count": 18, -"index_data": PackedByteArray("7wDwAPwA/ADxAO8A/AD7APEAEwHIAMkAyQDLABMBywDOABMB"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+kML1vPYonD24HoW+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9zcxMPfYonD0K16O9kML1POF6FD0K16O9zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1PKNwPT0K16M8kML1PBWuhz0K16M8kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9zcxMveF6FD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+y2LtPBZCjD2QwnU+nNXUPEfhej3hepQ+nNXUPEfhej2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+UMetPERuYT2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+nNXUvEjhuj3hepQ+nNXUvEjhuj2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo++vSBvPYonD3hepQ++vSBvPYonD1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+jxdhPFbqiz1wPYo+uw57PEzAkz3hepQ+uw57PEzAkz1wPYo++vSBPPYonD3hepQ++vSBPPYonD1wPYo+uw57PJ+RpD1wPYo+jxdhPJVnrD1wPYo+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+uw57PJ+RpD3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbt7FK69kML1vJDCdbt7FK69C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1vPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1vLgexT24HgW+CtcjPaNwPT2QwnU9CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9CtcjPaNwPT0K16M8zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9kMJ1veF6FD3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2tR2E+oJ6pO225wz2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+CtcjPA1gcT2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2tR2E+veONvNejsD2tR2E+a7RnvIMfuT2tR2E+3kGevAuPkT2tR2E+C9cjvOWhvz2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2tR2E+NcF1r2ZmZj2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+CtcjPOWhvz2tR2E+op6pu/wwaT2tR2E+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2QwvU9kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1PJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9kMJ1PeF6FD3hepQ+kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9zcxMveF6FD17FC4+zcxMPZDCdbu4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vHsU7j24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+zcxMvZDCdbuQwvU9zcxMPZDCdbuQwvU9kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_1ovk8"] -resource_name = "blasterN_Mesh blasterN" -_surfaces = [{ -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("JpPJP+50Tb8mk8m/7nRNvyaTyT9oiGXAJpPJv2iIZcAmk8m/j8cTwSaTyb9brSbBJpPJP4/HE8Emk8k/W60mwSaTyT9BIADAJpPJv0EgAMAmk8k/brdLwCaTyb9ut0vAJpPJvwQCQT9dLpc/bLXaviaTyT8EAkE/JpPJP263S8BdLpc/7nabv10ulz9BIADAXS6Xv+52m79dLpc/CoUywF0ul78KhTLAXS6Xv2y12r4mk8m/brdLwF0ul79BIADAJpPJP8JgIMEmk8k/j8cTwSaTyb/CYCDBJpPJv4/HE8GPxyNBBAJBP4/HI0Fut0vAwmAwQQQCQT9brTZBbrdLwFutNkFBIADAj8cjwW63S8CPxyPBBAJBP1utNsFut0vAwmAwwQQCQT9brTbBQSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADAXS6XvyaTCcBdLpe/wmBwQPD3+78mkwnA8Pf7v8JgcEBdLpc/wmBwQF0ulz8mkwnA8Pf7P8JgcEDw9/s/JpMJwF0uF8C4282/XS4XwEgkUr/CYDDAbLXaviaTSUBstdq+JpNJv0gkUr8mk0lAQSAAwMJgMMBBIADAJpNJv7jbzb/w9/s/bLXavl0ulz9stdq+8Pf7P0EgAMBdLpc/QSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADA8Pf7PyaTCcDw9/s/wmBwQF0ulz8mkwnAXS6XP8JgcEDCYDBAbLXavl0uF0C4282/wmAwQEEgAMAmk0nAQSAAwCaTST+4282/JpNJP0gkUr9dLhdASCRSvyaTScBstdq+8Pf7P2y12r5dLpc/bLXavvD3+z9BIADAXS6XP0EgAMBdLhdBrB6bvlutNkGsHpu+XS4XQQCtrztbrTZBAK2vO/D3+7/CYHBA8Pf7vyaTCcBdLpe/wmBwQF0ul78mkwnAW602wUY76b9brTbBT1kIwF0uF8FGO+m/XS4XwU9ZCMBbrTbBRjvpv1utNsFPWQjAXS4XwUY76b9dLhfBT1kIwFutNsH6RM+/W602wVK89r9dLhfB+kTPv10uF8FSvPa/W602QU9ZCMBbrTZBRjvpv10uF0FPWQjAXS4XQUY76b9brTbBrB6bvl0uF8GsHpu+W602wQCtrztdLhfBAK2vO1utNsFQHZ2/W602waiUxL9dLhfBUB2dv10uF8GolMS/W602wVAdnb9brTbBqJTEv10uF8FQHZ2/XS4XwaiUxL9dLhfBjl4sv1utNsGOXiy/XS4XwT5Ne79brTbBPk17v10uF8EAra87W602wQCtrztdLhfBrB6bvlutNsGsHpu+XS4XwQMoQz9brTbBAyhDP10uF8Gmcug+W602waZy6D5brTZBUrz2v1utNkH6RM+/XS4XQVK89r9dLhdB+kTPv10uF0FATXu/W602QUBNe79dLhdBjl4sv1utNkGOXiy/W602QaiUxL9brTZBUB2dv10uF0GolMS/XS4XQVAdnb9brTZBT1kIwFutNkFGO+m/XS4XQU9ZCMBdLhdBRjvpv1utNkFSvPa/W602QfpEz79dLhdBUrz2v10uF0H6RM+/W602QY5eLL9dLhdBjl4sv1utNkE+TXu/XS4XQT5Ne79brTZBAK2vO10uF0EAra87W602Qawem75dLhdBrB6bvlutNkEDKEM/XS4XQQMoQz9brTZBpnLoPl0uF0Gmcug+W602waZy6D5dLhfBpnLoPlutNsEDKEM/XS4XwQMoQz9brTZBqJTEv1utNkFQHZ2/XS4XQaiUxL9dLhdBUB2dv1utNsFATXu/XS4XwUBNe79brTbBjl4sv10uF8GOXiy/W602wfpEz79brTbBUrz2v10uF8H6RM+/XS4XwVK89r8oFCrBR48wP1utNsFHjzA/KBQqwQ/SBj9brTbBD9IGPygUKsFK9z6/W602wUr3Pr8oFCrBgrRov1utNsGCtGi/W602wViR2L9brTbB9G/tvygUKsFYkdi/KBQqwfRv7b9brTbBWJHYv1utNsH0b+2/KBQqwViR2L8oFCrB9G/tv10uF0Gmcug+W602QaZy6D5dLhdBAyhDP1utNkEDKEM/W602waSH8r9brTbBILMDwCgUKsGkh/K/KBQqwSCzA8BbrTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7v1utNsGEtGi/KBQqwYS0aL9brTbBTPc+vygUKsFM9z6/KBQqwRDLib1brTbBEMuJvSgUKsFo2mu+W602wWjaa75brTbBpIfyv1utNsEgswPAKBQqwaSH8r8oFCrBILMDwFutNsFo2mu+KBQqwWjaa75brTbBEMuJvSgUKsEQy4m9W602wQ7SBj8oFCrBDtIGP1utNsFHjzA/KBQqwUePMD9brTZBR48wPygUKkFHjzA/W602QQ/SBj8oFCpBD9IGP1utNkEQy4m9KBQqQRDLib1brTZBaNprvigUKkFo2mu+W602QUr3Pr8oFCpBSvc+v1utNkGCtGi/KBQqQYK0aL9brTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7vygUKkFo2mu+W602QWjaa74oFCpBEMuJvVutNkEQy4m9W602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr9brTZB9G/tv1utNkFYkdi/KBQqQfRv7b8oFCpBWJHYv1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/iC0XsthOsL85hyW+MgizvziHJT4yCLO/UuOfPrgEu79S45++uAS7v6Ed4r4Yuce/oR3iPhi5x7+Qdwo/rEfYv5B3Cr+sR9i/n3AaP5qP67+fcBq/mo/rv1LjHz9BIADAUuMfv0EgAMCfcBq/tHgKwJ9wGj+0eArAkHcKv6scFMCQdwo/qxwUwKEd4r71YxzAoR3iPvVjHMBS458+Jb4iwFLjn74lviLAOYclvmi8JsA4hyU+aLwmwIgtF7IVGSjAW602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr+ILRcySCRSv6KDnL7KcVy/o4OcPspxXL9dLhc/jKZ6v10uF7+Mpnq/aM1VP85Zlb9ozVW/zlmVv4gtFzLudpu/hK9QPhjmnr877YI/Uqm0vyeTyT6w96i/8IgOPwr8uL+dB5I/mB/Zv6SRLj+4282/0bRCP5Aq5r9dLpc/QSAAwCaTST9BIADAnQeSP7WwE8DRtEI/OSsNwKSRLj+lUhnAO+2CP9jrJcDwiA4/fMIjwCeTyT6pxCvAaM1VP5qTNcCEr1A+dc0wwIgtFzIKhTLAaM1Vv5qTNcCCr1C+dc0wwCaTyb6pxCvAO+2Cv9jrJcDwiA6/fMIjwKORLr+lUhnAnAeSv7WwE8DQtEK/OSsNwF0ul79BIADAJpNJv0EgAMDQtEK/kCrmv5wHkr+YH9m/o5Euv7jbzb/wiA6/Cvy4vzvtgr9SqbS/JpPJvrD3qL+Cr1C+GOaev10uFz/elkHAXS4Xv96WQcCjg5w+DiRJwKKDnL4OJEnAiC0XMm63S8AoFCpBhLRov1utNkGEtGi/KBQqQUz3Pr9brTZBTPc+v1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/W602QfRv7b9brTZBWJHYvygUKkH0b+2/KBQqQViR2L8oFCpBDtIGP1utNkEO0gY/KBQqQUePMD9brTZBR48wP10ulz/yWA9AXS6Xv/JYD0BdLpc/VOWZP10ul79U5Zk/XS6XPyys7UBdLpe/LKztQF0ulz85v1FAXS6Xvzm/UUBdLpc/VCqVv10ul79UKpW/XS6XPygUisAnk8k+jUajwCaTyb6NRqPAXS6XvygUisAmk0k+zOWSP1ksVkDM5ZI/GWIGP+JwCEBpX1o/3m5HQCqVCkBns+FAKBSqQGez4UBK/MO/yGfwP7sTO8CRQf5AnUIpwMhn8D8ZLIHAkUH+QCeTyT6SwQpBJpPJvpLBCkEnk8k+mqAcQCaTyb6aoBxAGSyBQJFB/kC7EztAkUH+QJ1CKUDIZ/A/SvzDP8hn8D8mk0m+zOWSPxliBr/icAhAWSxWwMzlkj9pX1q/3m5HQCqVCsBns+FAKBSqwGez4UCPx6PAbLXavo/Ho8DicLg+j8cjwe52m7+PxyPBbLXavl0ulz/kWBXBXS6XP/D8hMBdLpe/5FgVwV0ul7/w/ITAj8ejQOJwuD6Px6NAbLXavo/HI0Fstdq+j8cjQe52m79dLpc/j8cTwV0ulz+Px4PAXS6Xv4/HE8FdLpe/j8eDwI/Ho0BBIADAj8ejQAqFMsCPxyNBQSAAwI/HI0EKhTLAXS6Xv4/Hg8BdLpe/j8cTwV0ulz+Px4PAXS6XP4/HE8FdLpe/xNGIwF0ul79OQxfBXS6XP8TRiMBdLpc/TkMXwY/Ho8AKhTLAj8ejwEEgAMCPxyPBCoUywI/HI8FBIADAJpPJP0gkUr9dLpc/SCRSvyaTyT+4282/XS6XP7jbzb9dLpc/XS5XQF0ulz+TyeQ/JpPJP10uV0Amk8k/k8nkP/D3+z+TySRAXS6Xv5PJ5D9dLpe/XS5XQCaTyb+TyeQ/JpPJv10uV0Dw9/u/k8kkQPD3+z+TySRAJpPJP10uV0Amk8k/k8nkP10ulz+TyeQ/XS6XP10uV0BdLpe/SCRSvyaTyb9IJFK/XS6Xv7jbzb8mk8m/uNvNv/D3+7+TySRAJpPJv5PJ5D8mk8m/XS5XQF0ul79dLldAXS6Xv5PJ5D8mk8k/SCRSv10ulz9IJFK/JpPJP7jbzb9dLpc/uNvNv10ul79IJFK/JpPJv0gkUr9dLpe/uNvNvyaTyb+4282/W602wWy12r5brTbBCoUywCqVCsFstdq+KpUKwQqFMsDCYDDAXS63QPD3+79dLrdAXS4XwFutRkHw9/u/W61GQfD3+78qlRpBwmAwQGy12r7w9/s/bLXavsJgMEAKhTLA8Pf7PwqFMsBozVU/zlmVv4gtF7LYTrC/O+2CP1KptL84hyU+Mgizv1Ljnz64BLu/nAeSP5gf2b+hHeI+GLnHv5B3Cj+sR9i/n3AaP5qP679dLpc/QSAAwFLjHz9BIADAnAeSP7WwE8CfcBo/tHgKwJB3Cj+rHBTAO+2CP9jrJcChHeI+9WMcwFLjnz4lviLAOIclPmi8JsBozVU/mpM1wIgtF7IVGSjAaM1Vv5qTNcBdLhe/3pZBwF0uFz/elkHAooOcPg4kScCjg5y+DiRJwIgtF7Jut0vAOYclvmi8JsA77YK/2OslwFLjn74lviLAoR3ivvVjHMCQdwq/qxwUwJ0Hkr+1sBPAn3Aav7R4CsBdLpe/QSAAwFLjH79BIADAn3Aav5qP67+dB5K/mB/Zv5B3Cr+sR9i/oR3ivhi5x79S45++uAS7vzvtgr9SqbS/OYclvjIIs79ozVW/zlmVv10uF7+Mpnq/XS4XP4ymer+jg5y+ynFcv6KDnD7KcVy/iC0XskgkUr9dLhfAbLXavl0uF8AKhTLA8Pf7v2y12r7w9/u/CoUywMJgMEDM5ZI/wmAwQOJwCECMxeI/zOWSP4zF4j/ebkdAjMXiP+JwCEBdLhfBGmEBPyqVCsEaYQE/XS4XwTsANj8qlQrBOwA2P10uF8E0saO/XS4XwcQAvr8qlQrBNLGjvyqVCsHEAL6/XS4XwSrP779dLhfBXQ8FwCqVCsEqz++/KpUKwV0PBcBdLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwvyqVCsHghjy9XS4XweCGPL0qlQrBHM+Avl0uF8Ecz4C+XS4XQV0PBcBdLhdBKs/vvyqVCkFdDwXAKpUKQSrP779dLhdBOwA2PyqVCkE7ADY/XS4XQRthAT8qlQpBG2EBP10uF0FuKPC/XS4XQd7Y1b8qlQpBbijwvyqVCkHe2NW/XS4XQcQAvr9dLhdBNLGjvyqVCkHEAL6/KpUKQTSxo79dLhdBXQ8FwF0uF0Eqz++/KpUKQV0PBcAqlQpBKs/vv10uF0FWhjm/KpUKQVaGOb9dLhdBdiVuvyqVCkF2JW6/XS4XQW4o8L9dLhdB3tjVvyqVCkFuKPC/KpUKQd7Y1b9dLhfBNLGjv10uF8HEAL6/KpUKwTSxo78qlQrBxAC+vyqVCsE7ADY/XS4XwTsANj8qlQrBG2EBP10uF8EbYQE/KpUKQXglbr9dLhdBeCVuvyqVCkFYhjm/XS4XQViGOb9dLhdBxAC+v10uF0E0saO/KpUKQcQAvr8qlQpBNLGjv10uF8F4JW6/KpUKwXglbr9dLhfBWIY5vyqVCsFYhjm/XS4XwRzPgL4qlQrBHM+Avl0uF8Hghjy9KpUKweCGPL1dLhfBKs/vv10uF8FdDwXAKpUKwSrP778qlQrBXQ8FwCqVCsFWhjm/XS4XwVaGOb8qlQrBdiVuv10uF8F2JW6/KpUKQRzPgL5dLhdBHM+AviqVCkHghjy9XS4XQeCGPL1dLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwv10uF0Hghjy9KpUKQeCGPL1dLhdBHM+AviqVCkEcz4C+KpUKQRphAT9dLhdBGmEBPyqVCkE7ADY/XS4XQTsANj9brTZBCoUywFutNkFstdq+KpUKQQqFMsAqlQpBbLXavu/3+z8qlRpB8Pf7P10ut0Dw9/s/W61GQV0uF0BbrUZBwWAwQF0ut0BdLpc/XIIWPl0ulz/GYjFAXS6Xv1yCFj5dLpe/xmIxQF0ulz/icAhAXS6Xv+JwCEBdLpc/zOWSP10ul7/M5ZI/XS4Xv0UiQUBdLhe/IBCov10uFz9FIkFAXS4XPyAQqL/w9/u/XS63QPD3+79ZLPZAwWAwwF0ut0Dw9/u/KpUaQV0uF8BbrUZB8Pf7v1utRkFdLhdAbLXavvD3+z9stdq+XS4XQAqFMsDw9/s/CoUywMFgMMBstdq+wmAwwAqFMsDw9/u/bLXavvD3+78KhTLAXS6XP+JwCEBdLpe/4nAIQF0ulz/M5ZI/XS6Xv8zlkj9dLhc/4Djuv10uF7/gOO6/XS4XP4jAYMBdLhe/iMBgwF0ulz8qlRpBXS6XP1utRkFcLpe/KpUaQVwul79brUZBW602wdTpZMBbrTbBOBx+wCqVCsHU6WTAXS6XwE+ni8BdLpfA1OlkwF0ul7/U6WTAXS6Xv0+ni8BdLpc/1OlkwF0ulz9Pp4vAXS6XP9TpZMBdLpe/1OlkwF0ulz84HH7AXS6XvzgcfsBdLhc/0lHdv10uF7/SUd2/XS4XPwJNWMBdLhe/Ak1YwMJgMMDU6WTARSIBwGezocC35tO/1OlkwLlntL9pNILAEAgUQGezocBQM9o/aTSCwE6y+T/U6WTAjUZDQNTpZMBdLpe/zjvzPl0ulz/OO/M+XS6Xv8ZiMUBdLpc/xmIxQF0ulz/1LZ8/XS6Xv/Utnz9dLpc/uOkXvl0ul7+46Re+W602QTgcfsBbrTZB1OlkwF0ul0BPp4vAKpUKQdTpZMBdLpdA1OlkwMJgMEBdLrdAXS4XQFutRkHw9/s/XS63QPD3+z8qlRpB8Pf7P1utRkHw9/s/WSz2QIzF4r/ebkdAjMXiv+JwCECMxeK/zOWSP8JgMMDM5ZI/wmAwwOJwCEDw9/u/zOWSP10ulz/icLg+8Pf7P8zlkj/w9/s/CoUywF0ulz9stdq+XS6XP0EgAMBdLpe/bLXavl0ulz8KhTLAXS6XP9TpZMBdLpe/CoUywPD3+78KhTLAXS6Xv9TpZMBdLpe/4nC4Pl0ul79BIADA8Pf7v90zJsDw9/u/RMWjwPD3+z/dMybA8Pf7P0TFo8BDS7S/uNvNv3I4B7+4282/Q0u0v0gkUr9yOAe/SCRSv10ul8BEV7O/j8ejQERXs78qlQrBRFezvyqVCsFUOZO+j8ejQFQ5k75dLpfAVDmTvlks1sBstdq+XS6XwGy12r5dLpfAzOWSP4/Ho0DM5ZI/wmAwwGy12r5dLpfACoUywMJgMMBBIADAJpNJQGy12r6Px6NACoUywCaTSUBBIADA8Pf7P10ut0BdLpc/WSwWwPD3+z+Px4PAJ5PJPiKRSMDw9/u/j8eDwF0ulz82m00/JpPJviKRSMBdLpe/WSwWwF0ul782m00/XS6Xv8ZiMUBdLpe/wmBwQF0ulz/CYHBA8Pf7v10ut0BdLpc/xmIxQCZ9EsC4282/Q0u0v7jbzb8mfRLASCRSv0NLtL9IJFK/8Pf7v2y12r6Cr1A+GOaev/D3+z9stdq+JpPJPrD3qL/wiA4/Cvy4v/D3+z8KhTLATC0Xsu52m7+jkS4/uNvNv9C0Qj+QKua/JpNJP0EgAMDQtEI/OSsNwKORLj+lUhnA8IgOP3zCI8Amk8k+qcQrwIKvUD51zTDATC0XsgqFMsDw9/u/CoUywF0ul7/U6WTAXS6XP9TpZMCEr1C+dc0wwCeTyb6pxCvA8IgOv3zCI8CkkS6/pVIZwNG0Qr85Kw3AJpNJv0EgAMDRtEK/kCrmv6SRLr+4282/8IgOvwr8uL8nk8m+sPeov4SvUL4Y5p6/KpUKQUZXs78qlQpBVDmTvl0ul0BGV7O/XS6XQFQ5k76Px6PARlezv4/Ho8BUOZO+Jn0SQLjbzb8mfRJASCRSv0NLtD+4282/Q0u0P0gkUr9DS7Q/uNvNv0NLtD9IJFK/cjgHP7jbzb9yOAc/SCRSv10ul0Bstdq+wmAwQEEgAMBdLpdACoUywI/Ho8AKhTLAJpNJwEEgAMAmk0nAbLXavsJgMEBstdq+j8ejwMzlkj9dLpdAzOWSP1ks1kBstdq+XS6Xv4/Hg8BdLhe/wWBwQF0ul79dLrdAXC6XP10ut0BcLhc/wWBwQFwuFz9c8ylAXC4XP5xkc79cLhc/jUYDwF0uF7+NRgPAXC6XP4/Hg8BdLhe/XPMpQF0uF7+cZHO/8Pf7P1ks9kB8JDRBCoUywHwkNEFstdq+2b2RQAqFMsDZvZFAbLXavl0uFz+gZjS/XS4XP9wzGkBdLhe/oGY0v10uF7/cMxpAwmAwQNTpZMC35tM/1OlkwEUiAUBns6HAuWe0P2k0gsAQCBTAZ7OhwFAz2r9pNILATrL5v9TpZMCNRkPA1OlkwF0uFz/nJw7AXS4Xv+cnDsBdLhc/ml4xwF0uF7+aXjHAXS4XP26bFsBdLhe/bpsWwF0uFz8h0jnAXS4XvyHSOcB8JDTBbLXavnwkNMEKhTLA2b2RwGy12r7ZvZHACoUywHUul78hsUFBZy6XvyLXrEBELpc/IrFBQVMulz8k16xA8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/KpUaQQ=="), -"format": 34359742487, -"index_count": 744, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4ADQAQAA8AEAARAA8AEAASABEAEQATAA8AEwAUAA8AFQANAAwADAAWABUAFgASABUAFgAPABQAFgAXABIAFwARABIAFgAUABcAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AHwAgAB4AIwAhACIAIgAkACMAJAAlACMAKAAmACcAJwApACgALAAqACsAKwAtACwAMAAuAC8ALwAxADAANAAyADMAMwA1ADQAMwA2ADUANgA3ADUAOAA3ADIAMgA0ADgANwA5ADIANwA2ADkAPAA6ADsAOwA9ADwAQAA+AD8APwBBAEAARABCAEMAQwBFAEQASABGAEcARwBJAEgARwBKAEkASgBLAEkATABHAEYARgBNAEwATQBLAEwATQBJAEsAUABOAE8ATwBRAFAAVABSAFMAUwBVAFQAWABWAFcAVwBZAFgAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgAbABqAGsAawBtAGwAcABuAG8AbwBxAHAAdAByAHMAcwB1AHQAeAB2AHcAdwB5AHgAfAB6AHsAewB9AHwAgAB+AH8AfwCBAIAAhACCAIMAgwCFAIQAiACGAIcAhwCJAIgAjACKAIsAiwCNAIwAkACOAI8AjwCRAJAAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAnACaAJsAmwCdAJwAoACeAJ8AnwChAKAApACiAKMAowClAKQAqACmAKcApwCpAKgArACqAKsAqwCtAKwAsACuAK8ArwCxALAAtACyALMAswC1ALQAuAC2ALcAtwC5ALgAvAC6ALsAuwC9ALwAwAC+AL8AvwDBAMAAxADCAMMAwwDFAMQAyADGAMcAxwDJAMgAzADKAMsAywDNAMwA0ADOAM8AzwDRANAA1ADSANMA0wDVANQA2ADWANcA1wDZANgA3ADaANsA2wDdANwA4ADeAN8A3wDhAOAA5ADiAOMA4wDlAOQA6ADmAOcA5wDpAOgA7ADqAOsA6wDtAOwA8ADuAO8A7wDxAPAA9ADyAPMA8wD1APQA+AD2APcA9wD5APgA/AD6APsA+wD9APwAAAH+AP8A/wABAQABBAECAQMBAwEFAQQBAwEGAQUBBgEHAQUBBwEIAQUBBwEJAQgBBwEKAQkBCgELAQkBCgEMAQsBDAENAQsBDAEOAQ0BDgEPAQ0BDwEQAQ0BDwERARABEQESARABEQETARIBEwEUARIBEwEVARQBEwEWARUBFgEXARUBFwEYARUBFwEZARgBHAEaARsBGwEdARwBIAEeAR8BHwEhASABHwEiASEBIgEjASEBIgEkASMBJAElASMBJQEmASMBJgEnASMBJgEoAScBKAEpAScBKQEqAScBKQErASoBKwEsASoBLAEtASoBLAEuAS0BLgEvAS0BLgEwAS8BMAExAS8BMQEyAS8BMQEzATIBMwE0ATIBNAE1ATIBNAE2ATUBNgE3ATUBOAE1ATcBOAE3ATkBOAE5AToBOwE4AToBOwE6ATwBOwE8AT0BPgE7AT0BPgE9AT8BQAE+AT8BQAE/AUEBQAFBAUIBQwFAAUIBQwFCAUQBQwFEAUUBRgFDAUUBRgFFAUcBRgFHAUgBJAFGAUgBSAElASQBOAFJATUBOAFKAUkBSgFLAUkBSgFMAUsBTAFNAUsBUAFOAU8BTwFRAVABVAFSAVMBUwFVAVQBWAFWAVcBVwFZAVgBXAFaAVsBWwFdAVwBYAFeAV8BXwFhAWABZAFiAWMBYwFlAWQBaAFmAWcBZwFpAWgBZwFqAWkBZwFrAWoBbgFsAW0BbQFvAW4BbQFwAW8BbQFxAXABdAFyAXMBcwF1AXQBeAF2AXcBdwF5AXgBfAF6AXsBewF9AXwBgAF+AX8BfwGBAYABgQGCAYABggGDAYAB"), -"material": SubResource("StandardMaterial3D_dwwv8"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T3hepS+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+CtcjvZmZ2T24HoW+kML1vPYonD24HoW+Ctcjvc3MzDspXI++Ctcjvc3MzDu4HoW+CtcjPc3MzDspXI++CtcjPc3MzDu4HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+CtcjPc3MzDspXI++CtcjPZmZ2T3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+Ctcjvc3MzDu4HoW+CtcjvZmZ2T3hepS+Ctcjvc3MzDspXI++CtcjvfYonD3hepS+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9kML1PPYonD0pXI89zcxMPfYonD0K16O9zcxMPfYonD0pXI89kML1POF6FD0pXI89kML1POF6FD0K16O9zcxMPeF6FD0pXI89zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1POF6FD0pXI89kML1POF6FD0K16O9kML1PKNwPT0K16M8kML1PPYonD0K16O9kML1PPYonD0pXI89kML1PBWuhz0K16M8zcxMPeF6FD0K16O9kML1POF6FD0K16O9zcxMPfYonD0K16O9kML1PPYonD0K16O9kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0K16O9kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vPYonD0pXI89kML1vPYonD0K16O9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1vOF6FD0K16O9zcxMveF6FD0pXI89kML1vOF6FD0pXI89zcxMvfYonD0pXI89kML1vPYonD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+zcxMveF6FD0pXI89zcxMveF6FD0K16O9kML1vOF6FD0pXI89kML1vOF6FD0K16O9kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+kML1PPYonD3hepQ+y2LtPBZCjD2QwnU+kML1PPYonD2QwnU+nNXUPEfhej3hepQ+y2LtPBZCjD3hepQ+nNXUPEfhej2QwnU+y2LtPBZCjD2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+nNXUPEfhej3hepQ+UMetPERuYT2QwnU+nNXUPEfhej2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+UMetPERuYT2QwnU+UMetPERuYT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+nNXUvEfhej3hepQ+UMetvERuYT3hepQ+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+kML1vPYonD3hepQ+zWLtvBZCjD3hepQ+kML1vPYonD2QwnU+zWLtvBZCjD2QwnU+nNXUvEjhuj3hepQ+zWLtvNUPrD3hepQ+nNXUvEjhuj2QwnU+zWLtvNUPrD2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+UMetvMmaxz3hepQ+nNXUvEjhuj3hepQ+UMetvMmaxz2QwnU+nNXUvEjhuj2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+UMetPMmaxz3hepQ+UMetPMmaxz2QwnU+y2LtPNUPrD3hepQ+nNXUPEjhuj3hepQ+y2LtPNUPrD2QwnU+nNXUPEjhuj2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo+823+u4agQT2QwnU+823+u4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ++vSBvPYonD3hepQ+uw57vJ+RpD3hepQ++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+jxdhvJVnrD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+uw57vEzAkz3hepQ++vSBvPYonD3hepQ+uw57vEzAkz1wPYo++vSBvPYonD1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+cMk3vMcvhT3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT1wPYo+jxdhvFbqiz1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz1wPYo+cMk3PMcvhT1wPYo+uw57PEzAkz3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz1wPYo+jxdhPFbqiz1wPYo++vSBPPYonD3hepQ+uw57PEzAkz3hepQ++vSBPPYonD1wPYo+uw57PEzAkz1wPYo+NcF1r25Xdz1wPYo+lYqGuz2OeT1wPYo+lIqGOz2OeT1wPYo++vQBPAMGgD1wPYo++vQBvAMGgD1wPYo+cMk3vMcvhT1wPYo+cMk3PMcvhT1wPYo+jxdhPFbqiz1wPYo+jxdhvFbqiz1wPYo+uw57PEzAkz1wPYo+uw57vEzAkz1wPYo++vSBPPYonD1wPYo++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+uw57PJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhPJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3PCQisz1wPYo++vQBPOhLuD1wPYo++vQBvOhLuD1wPYo+lYqGu82Kuz1wPYo+lIqGO82Kuz1wPYo+NcF1rzSmvD1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+cMk3PCQisz1wPYo+jxdhPJVnrD1wPYo+NcF1r6NwPT2QwnU+8W3+O4agQT2QwnU+823+u4agQT2QwnU+kMJ1vB3nTT2QwnU+kMJ1PB3nTT2QwnU+UMetvERuYT2QwnU+UMetPERuYT2QwnU+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+nNXUvEfhej2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+zWLtvBZCjD2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+kML1vPYonD2QwnU+CtejvPYonD2QwnU+zWLtvNUPrD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+nNXUvEjhuj2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+UMetvMmaxz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+UMetPMmaxz2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+nNXUPEjhuj2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+y2LtPNUPrD2QwnU+3UGePODCpj2QwnU+kML1PPYonD2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+y2LtPBZCjD2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+nNXUPEfhej2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+kMJ1vF1e0T2QwnU+kMJ1PF1e0T2QwnU+823+u6iB1z2QwnU+8W3+O6iB1z2QwnU+NcF1r5mZ2T2QwnU++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+uw57PJ+RpD3hepQ++vSBPPYonD3hepQ+uw57PJ+RpD1wPYo++vSBPPYonD1wPYo+jxdhPJVnrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD1wPYo+uw57PJ+RpD1wPYo+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1PKRwHb6tR2G9kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbsK16O7kML1PJDCdbt7FK69kML1PB6F67wNdFq8kML1PPYoXL1LfrG8kML1PKRwHb6tR2G9kML1PKRwHb5wPQq+kML1vJDCdbt7FK69kML1vKRwHb5wPQq+C9cjvJDCdbs9Cte9C9cjvKRwHb5SuB6+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1vJDCdbsK16O7kML1vB6F67wNdFq8kML1vJDCdbt7FK69kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1vKRwHb5wPQq+kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1vGZmZj24HoW+kML1vOF6FD24HoW+kML1vOF6FD24HoW+kML1vLgehTy4HgW+kML1POF6FD24HoW+kML1PLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1POF6FD24HoW+kML1PGZmZj24HoW+kML1vPYonD24HoW+kML1vPYonD24HgW+kML1PPYonD24HoW+kML1PPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1PPYonD24HoW+kML1PLgexT24HoW+kML1vLgexT24HgW+kML1vLgexT24HoW+kML1PLgexT24HgW+kML1PLgexT24HoW+kML1vOF6FD24HgW+kML1vGZmZj24HoW+kML1POF6FD24HgW+kML1PGZmZj24HoW+kML1vLgexT24HgW+kML1vPYonD24HgW+kML1vLgexT24HoW+kML1vPYonD24HoW+CtcjPaNwPT2QwnU9kML1PKNwPT2QwnU9CtcjPRWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz0K16M8CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9kML1PKNwPT0K16M8kML1PKNwPT2QwnU9CtcjPaNwPT0K16M8CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1PKNwPT0K16M8CtcjPaNwPT0K16M8kML1PBWuhz0K16M8CtcjPRWuhz0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9kML1vBWuhz2QwnU9kML1vBWuhz0K16M8CtcjvaNwPT0K16M8kML1vKNwPT0K16M8CtcjvRWuhz0K16M8kML1vBWuhz0K16M8kML1vKNwPT2QwnU9CtcjvaNwPT2QwnU9kML1vBWuhz2QwnU9CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+zcxMvbgexT3hepQ+zcxMvbgexT2tR2E+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9UMetPERuYT3hepQ+NcF1r25Xdz3hepQ+nNXUPEfhej3hepQ+lIqGOz2OeT3hepQ++vQBPAMGgD3hepQ+y2LtPBZCjD3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz3hepQ+kML1PPYonD3hepQ++vSBPPYonD3hepQ+y2LtPNUPrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD3hepQ+nNXUPEjhuj3hepQ+cMk3PCQisz3hepQ++vQBPOhLuD3hepQ+lIqGO82Kuz3hepQ+UMetPMmaxz3hepQ+NcF1rzSmvD3hepQ+UMetvMmaxz3hepQ+kMJ1vF1e0T3hepQ+kMJ1PF1e0T3hepQ+8W3+O6iB1z3hepQ+823+u6iB1z3hepQ+NcF1r5mZ2T3hepQ+lYqGu82Kuz3hepQ+nNXUvEjhuj3hepQ++vQBvOhLuD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD3hepQ+zWLtvNUPrD3hepQ+uw57vJ+RpD3hepQ+kML1vPYonD3hepQ++vSBvPYonD3hepQ+uw57vEzAkz3hepQ+zWLtvBZCjD3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT3hepQ++vQBvAMGgD3hepQ+nNXUvEfhej3hepQ+lYqGuz2OeT3hepQ+UMetvERuYT3hepQ+kMJ1vB3nTT3hepQ+kMJ1PB3nTT3hepQ+823+u4agQT3hepQ+8W3+O4agQT3hepQ+NcF1r6NwPT3hepQ+kMJ1veF6FD3hepQ+kMJ1vbgexT3hepQ+zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+vOONPNejsD2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+3kGevODCpj2QwnU+CtejvPYonD2QwnU+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+veONvNejsD2QwnU+3kGevODCpj2QwnU+veONvNejsD2tR2E+3kGevODCpj2tR2E+a7RnvIMfuT2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+CtejvPYonD2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+a7RnvIMfuT2QwnU+a7RnvIMfuT2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+3kGevAuPkT2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2tR2E+vOONPBWuhz2tR2E+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+a7RnvNFkfj2tR2E+a7RnvNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+veONvBWuhz2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+a7RnPIMfuT2QwnU+a7RnPIMfuT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+3UGePAuPkT2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+a7RnPNFkfj2tR2E+a7RnPNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+3UGePODCpj2QwnU+vOONPNejsD2QwnU+3UGePODCpj2tR2E+vOONPNejsD2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT3hepQ+kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1vPYoXL1LfrG8kML1vPYoXL3sUTg9kML1PPYoXL1LfrG8kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1PJDCdbspXI89kML1vJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9zcxMPeF6FD2tR2E+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PbgexT3hepQ+zcxMPbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1vJPCdbvsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1vKRwHT6G61E9kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PHsU7j2tR2E+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1PHsU7j2QwvU9kML1PB+FCz6QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1PHsU7j3hepQ+kML1vHsU7j3hepQ+kML1PK5HAT7hepQ+kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1vKRwHT7Xo3C9kMJ1PKRwHT7Xo3C9kMJ1PHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PKRwHT7Xo3C9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kML1vB6F67wNdFq8kML1PB6F67wNdFq8kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1PPYoXL3sUTg9kML1vPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1vK5HAT7hepQ+kML1vHsU7j3hepQ+kML1vB+FCz6QwvU9kML1vHsU7j2tR2E+kML1vHsU7j2QwvU9KVyPveF6FD2QwvU9kMJ1veF6FD3hepQ+zcxMveF6FD2QwvU9zcxMveF6FD2tR2E+zcxMveF6FD3hepQ+zcxMveF6FD17FC4+kML1PPYoXL3sUTg9kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1PB6F67wpXI89zcxMPZDCdbu4HgW+kML1vLgehTy4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vOF6FD24HgW+kML1vPYonD24HgW+kML1POF6FD24HgW+kML1vLgexT24HgW+kML1vHsU7j24HgW+kML1PLgexT24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+kML1PLgehTy4HgW+kML1PPYonD24HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+zcxMPZDCdbuQwvU9zcxMPeF6FD17FC4+CtcjPRWuhz2QwnU9zcxMPRWuhz0K1yM9CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9kML1PHsU7j2QwvU9kML1PHsU7j24HgW+kML1PHsU7j2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT24HgW+zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPZDCdbuQwvU9zcxMPZDCdbu4HgW+zcxMPeF6FD0pXI89zcxMPbgexT2QwvU9zcxMPfYonD0pXI89zcxMPeF6FD0K16O9zcxMPbgexT24HgW+zcxMPfYonD0K16O9zcxMvZDCdbuQwvU9kML1vJDCdbt7FK69zcxMvZDCdbu4HgW+C9cjvJDCdbs9Cte9zcxMPZDCdbu4HgW+kML1vJDCdbsK16O7CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1PJDCdbsK16O7kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1vJDCdbspXI89zcxMPZDCdbuQwvU9kML1vJPCdbvsUTg9zcxMPRWuhz0K1yM9CtcjPRWuhz0K16M8zcxMPaNwPT0K1yM9CtcjPaNwPT0K16M8zcxMveF6FD2tR2E+oJ6pO/wwaT2tR2E+zcxMPeF6FD2tR2E+CtcjPA1gcT2tR2E+a7RnPNFkfj2tR2E+zcxMPbgexT2tR2E+NcF1r2ZmZj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtcjPOWhvz2tR2E+oJ6pO225wz2tR2E+NcF1r7gexT2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2tR2E+kML1PHsU7j2tR2E+op6pu225wz2tR2E+C9cjvOWhvz2tR2E+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+op6pu/wwaT2tR2E+kML1vHsU7j2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2QwvU9zcxMvbgexT2QwvU9kML1vHsU7j24HgW+zcxMvbgexT24HgW+zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9CtcjvRWuhz0K16M8CtcjvaNwPT0K16M8CtcjvRWuhz2QwnU9CtcjvaNwPT2QwnU9zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9zcxMveF6FD2QwvU9zcxMvfYonD0pXI89zcxMvbgexT2QwvU9zcxMvbgexT24HgW+zcxMvfYonD0K16O9zcxMveF6FD0K16O9zcxMveF6FD0pXI89zcxMvZDCdbu4HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+kML1vHsU7j24HgW+kMJ1vHsU7j0pXI89kML1vHsU7j2QwvU9kML1PHsU7j2QwvU9kMJ1PHsU7j0pXI89kMJ1PHsU7j27Oyw9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kMJ1vHsU7j1SuJ69kML1PHsU7j24HgW+kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9zcxMveF6FD17FC4+kMJ1vbgexT3hepQ+kMJ1veF6FD3hepQ+KVyPvbgexT2QwvU9KVyPveF6FD2QwvU9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PArXAz4hohI9kMJ1vHsU7j0pXI89kMJ1vHsU7j27Oyw9kMJ1vKRwHT6G61E9kMJ1vArXAz4hohI9kMJ1vKRwHT7Xo3C9kMJ1vArXAz5zWjG9kMJ1vHsU7j0M9Eq9kMJ1vHsU7j1SuJ69kMJ1PHsU7j0M9Eq9kMJ1vHsU7j0M9Eq9kMJ1PArXAz5zWjG9kMJ1vArXAz5zWjG9kMJ1vHsU7j27Oyw9kMJ1PHsU7j27Oyw9kMJ1vArXAz4hohI9kMJ1PArXAz4hohI9kMJ1PeF6FD3hepQ+kMJ1PbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9kML1vK5HAT7hepQ+kML1vB+FCz6QwvU9kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9zcxMPeF6FD2tR2E+zcxMPeF6FD17FC4+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT2tR2E+zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+zcxMveF6FD17FC4+zcxMvbgexT2QwvU9zcxMveF6FD17FC4+zcxMvbgexT2tR2E+zcxMveF6FD2QwvU9zcxMvbgexT2QwvU9/+8AAAAA/7//7wAAAAD/v//vAAAAAP+//+8AAAAA/7//f///////v/9///////+//3///////7//f///////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7////9//////////3//////////f///AID///9///8AgP///3/+/wCAAAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f///////v/9///////+//3///////7//f///////v////3/+////////f/7/AID///9//////////3//////////f///AID///9///8AgP///3/+////////f///AID/f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/78lUdku/3//vyVR2S7/f/+/8mQMG/9//7/yZAwb/3//v/9///////+//3///////7//f///////v/9///////+/////f//////y5Ayb/////////3//////8uQMm//////y5PJk/////////3//////8uTyZP////////9//////yXRJVH/////8uTyZP////8l0SVR//////Lk8mT/////DBsMm/9//78AAP9//3//vwwbDJv/f/+/AAD/f/9//78Mm/Lk/////wyb8uT/////2a4l0f/////ZriXR/////yXR2a7//////7//v/////8l0dmu//////+//7///////7//P/////8l0SVR//////+//z//////JdElUf/////Zrtku/////9mu2S7//////7//P///////v/8//////wybDBv/////DJsMG//////Zrtku/////9mu2S7//////38AAP//////fwAA/////wybDBv/////DJsMG/////8MG/Jk/3//v9kuJVH/f/+/DBvyZP9//7/ZLiVR/3//v/8//z//f/+//z//P/9//78lUdku/3//vyVR2S7/f/+/2S4lUf9//7//P/8//3//v9kuJVH/f/+//z//P/9//78AAP9//3//vwwb8mT/f/+/AAD/f/9//78MG/Jk/3//v9ku2a7/f/+/DBsMm/9//7/ZLtmu/3//vwwbDJv/f/+//z//v/9//7//P/+//3//vyVRJdH/f/+/JVEl0f9//78lUSXR/3//vyVRJdH/f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//7//f////3//v/9/////f/+//3//////////f////////wyb8uT/////DJvy5P//////P/+//3//v9ku2a7/f/+//z//v/9//7/ZLtmu/3//v9muJdH/////2a4l0f//////v/+///////+//7//////8uQMm/////8l0dmu//////LkDJv/////JdHZrv////8Mmwwb/////wybDBv//////38AAP//////fwAA//////+//z///////7//P//////Zrtku/////9mu2S7/////8uTyZP////8l0SVR//////Lk8mT/////JdElUf////8l0dmu//////LkDJv/////JdHZrv/////y5Ayb//////JkDBv/f/+/8mQMG/9//7//fwAA/3//v/9/AAD/f/+/////f//////y5PJk/////////3//////8uTyZP////8l0SVR//////+//z//////JdElUf//////v/8///////+//7///////7//v//////ZriXR/////9muJdH/////2a7ZLv/////Zrtku/////wybDBv/////DJsMG//////y5Ayb/////////3//////8uQMm/////////9//////9muJdH/////2a4l0f////8Mm/Lk/////wyb8uT/////DJvy5P////8Mm/Lk//////9//////////3//////////f////3//v/9/////f/+/8mTy5P9//7/yZPLk/3//v/Jk8uT/f/+/8mTy5P9//78lUSXR/3//vyVRJdH/f/+/JVEl0f9//78lUSXR/3//v/8//7//f/+//z//v/9//7//v/+//////yXR2a7//////7//v/////8l0dmu//////JkDBv/f/+/8mQMG/9//78lUdku/3//vyVR2S7/f/+/2S7Zrv9//7//P/+//3//v9ku2a7/f/+//z//v/9//78MGwyb/3//v9ku2a7/f/+/DBsMm/9//7/ZLtmu/3//vwAA/3//f/+/DBsMm/9//78AAP9//3//vwwbDJv/f/+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//z//P/9//7/ZLiVR/3//v/8//z//f/+/2S4lUf9//7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/78lUdku/3//vyVR2S7/f/+//z//P/9//7//P/8//3//vwwb8mT/f/+/AAD/f/9//78MG/Jk/3//vwAA/3//f/+/2S4lUf9//78MG/Jk/3//v9kuJVH/f/+/DBvyZP9//7//fwAA/3//v/9/AAD/f/+/8mQMG/9//7/yZAwb/3//v/9//1////+//3//X////7//f/9f////v/9//1////+//3//X////7//f/9f////v/9//1////+//3//X////7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7////9//////////3///wCA////f///AID///9///8AgP///3//////////f/////9JEiPJ/z//v0kSI8n/P/+/SRIjyf8//79JEiPJ/z//v//f//8AAP+//9///wAA/7//3///AAD/v//f//8AAP+/te0jyQAA/5+17SPJAAD/n7XtI8kAAP/fte0jyQAA/98AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgBCRAAAAAACAEJEAAAAAAIAQkQAAAAAAgBCRAAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f+3uAAAAgP9/7e4AAACA/3/t7gAAAID/f+3uAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIDy5PJkAAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIDyZPLkAAAAgPJk8uQAAACA/3///wAAAID/f///AAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA2S7ZrgAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA2S4lUQAAAID/v/8/AAAAgCXRJVEAAACA/7//PwAAAIAl0SVRAAAAgP9/AAAAAACA/38AAAAAAIAMmwwbAAAAgAybDBsAAACA/z//PwAAAID/P/8/AAAAgCVR2S4AAACAJVHZLgAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgNmu2S4AAACA2a7ZLgAAAID/v/8/AAAAgP+//z8AAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCVRJdEAAACAJVEl0QAAAIDyZPLkAAAAgPJk8uQAAACA8mQMGwAAAIDyZAwbAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAID/f6qqAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3/jOAAAAID/f+M4AAAAgP9/4zgAAACA/3/jOAAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAIAcB/9/AAAAgBwH/38AAACAHAf/fwAAAIAcB/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9/VFUAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAIDi+P9/AAAAgOL4/38AAACA4vj/fwAAAIDi+P9/AAAAgP9/4vgAAACA/3/i+AAAAID/f+L4AAAAgP9/4vgAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgA==") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("JpPJP+50Tb8mk8m/7nRNvyaTyT9oiGXAJpPJv2iIZcAmk8m/j8cTwSaTyb9brSbBJpPJP4/HE8Emk8k/W60mwSaTyT9BIADAJpPJv0EgAMAmk8k/brdLwCaTyb9ut0vAJpPJvwQCQT9dLpc/bLXaviaTyT8EAkE/JpPJP263S8BdLpc/7nabv10ulz9BIADAXS6Xv+52m79dLpc/CoUywF0ul78KhTLAXS6Xv2y12r4mk8m/brdLwF0ul79BIADAJpPJP8JgIMEmk8k/j8cTwSaTyb/CYCDBJpPJv4/HE8GPxyNBBAJBP4/HI0Fut0vAwmAwQQQCQT9brTZBbrdLwFutNkFBIADAj8cjwW63S8CPxyPBBAJBP1utNsFut0vAwmAwwQQCQT9brTbBQSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADAXS6XvyaTCcBdLpe/wmBwQPD3+78mkwnA8Pf7v8JgcEBdLpc/wmBwQF0ulz8mkwnA8Pf7P8JgcEDw9/s/JpMJwF0uF8C4282/XS4XwEgkUr/CYDDAbLXaviaTSUBstdq+JpNJv0gkUr8mk0lAQSAAwMJgMMBBIADAJpNJv7jbzb/w9/s/bLXavl0ulz9stdq+8Pf7P0EgAMBdLpc/QSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADA8Pf7PyaTCcDw9/s/wmBwQF0ulz8mkwnAXS6XP8JgcEDCYDBAbLXavl0uF0C4282/wmAwQEEgAMAmk0nAQSAAwCaTST+4282/JpNJP0gkUr9dLhdASCRSvyaTScBstdq+8Pf7P2y12r5dLpc/bLXavvD3+z9BIADAXS6XP0EgAMBdLhdBrB6bvlutNkGsHpu+XS4XQQCtrztbrTZBAK2vO/D3+7/CYHBA8Pf7vyaTCcBdLpe/wmBwQF0ul78mkwnAW602wUY76b9brTbBT1kIwF0uF8FGO+m/XS4XwU9ZCMBbrTbBRjvpv1utNsFPWQjAXS4XwUY76b9dLhfBT1kIwFutNsH6RM+/W602wVK89r9dLhfB+kTPv10uF8FSvPa/W602QU9ZCMBbrTZBRjvpv10uF0FPWQjAXS4XQUY76b9brTbBrB6bvl0uF8GsHpu+W602wQCtrztdLhfBAK2vO1utNsFQHZ2/W602waiUxL9dLhfBUB2dv10uF8GolMS/W602wVAdnb9brTbBqJTEv10uF8FQHZ2/XS4XwaiUxL9dLhfBjl4sv1utNsGOXiy/XS4XwT5Ne79brTbBPk17v10uF8EAra87W602wQCtrztdLhfBrB6bvlutNsGsHpu+XS4XwQMoQz9brTbBAyhDP10uF8Gmcug+W602waZy6D5brTZBUrz2v1utNkH6RM+/XS4XQVK89r9dLhdB+kTPv10uF0FATXu/W602QUBNe79dLhdBjl4sv1utNkGOXiy/W602QaiUxL9brTZBUB2dv10uF0GolMS/XS4XQVAdnb9brTZBT1kIwFutNkFGO+m/XS4XQU9ZCMBdLhdBRjvpv1utNkFSvPa/W602QfpEz79dLhdBUrz2v10uF0H6RM+/W602QY5eLL9dLhdBjl4sv1utNkE+TXu/XS4XQT5Ne79brTZBAK2vO10uF0EAra87W602Qawem75dLhdBrB6bvlutNkEDKEM/XS4XQQMoQz9brTZBpnLoPl0uF0Gmcug+W602waZy6D5dLhfBpnLoPlutNsEDKEM/XS4XwQMoQz9brTZBqJTEv1utNkFQHZ2/XS4XQaiUxL9dLhdBUB2dv1utNsFATXu/XS4XwUBNe79brTbBjl4sv10uF8GOXiy/W602wfpEz79brTbBUrz2v10uF8H6RM+/XS4XwVK89r8oFCrBR48wP1utNsFHjzA/KBQqwQ/SBj9brTbBD9IGPygUKsFK9z6/W602wUr3Pr8oFCrBgrRov1utNsGCtGi/W602wViR2L9brTbB9G/tvygUKsFYkdi/KBQqwfRv7b9brTbBWJHYv1utNsH0b+2/KBQqwViR2L8oFCrB9G/tv10uF0Gmcug+W602QaZy6D5dLhdBAyhDP1utNkEDKEM/W602waSH8r9brTbBILMDwCgUKsGkh/K/KBQqwSCzA8BbrTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7v1utNsGEtGi/KBQqwYS0aL9brTbBTPc+vygUKsFM9z6/KBQqwRDLib1brTbBEMuJvSgUKsFo2mu+W602wWjaa75brTbBpIfyv1utNsEgswPAKBQqwaSH8r8oFCrBILMDwFutNsFo2mu+KBQqwWjaa75brTbBEMuJvSgUKsEQy4m9W602wQ7SBj8oFCrBDtIGP1utNsFHjzA/KBQqwUePMD9brTZBR48wPygUKkFHjzA/W602QQ/SBj8oFCpBD9IGP1utNkEQy4m9KBQqQRDLib1brTZBaNprvigUKkFo2mu+W602QUr3Pr8oFCpBSvc+v1utNkGCtGi/KBQqQYK0aL9brTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7vygUKkFo2mu+W602QWjaa74oFCpBEMuJvVutNkEQy4m9W602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr9brTZB9G/tv1utNkFYkdi/KBQqQfRv7b8oFCpBWJHYv1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/iC0XsthOsL85hyW+MgizvziHJT4yCLO/UuOfPrgEu79S45++uAS7v6Ed4r4Yuce/oR3iPhi5x7+Qdwo/rEfYv5B3Cr+sR9i/n3AaP5qP67+fcBq/mo/rv1LjHz9BIADAUuMfv0EgAMCfcBq/tHgKwJ9wGj+0eArAkHcKv6scFMCQdwo/qxwUwKEd4r71YxzAoR3iPvVjHMBS458+Jb4iwFLjn74lviLAOYclvmi8JsA4hyU+aLwmwIgtF7IVGSjAW602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr+ILRcySCRSv6KDnL7KcVy/o4OcPspxXL9dLhc/jKZ6v10uF7+Mpnq/aM1VP85Zlb9ozVW/zlmVv4gtFzLudpu/hK9QPhjmnr877YI/Uqm0vyeTyT6w96i/8IgOPwr8uL+dB5I/mB/Zv6SRLj+4282/0bRCP5Aq5r9dLpc/QSAAwCaTST9BIADAnQeSP7WwE8DRtEI/OSsNwKSRLj+lUhnAO+2CP9jrJcDwiA4/fMIjwCeTyT6pxCvAaM1VP5qTNcCEr1A+dc0wwIgtFzIKhTLAaM1Vv5qTNcCCr1C+dc0wwCaTyb6pxCvAO+2Cv9jrJcDwiA6/fMIjwKORLr+lUhnAnAeSv7WwE8DQtEK/OSsNwF0ul79BIADAJpNJv0EgAMDQtEK/kCrmv5wHkr+YH9m/o5Euv7jbzb/wiA6/Cvy4vzvtgr9SqbS/JpPJvrD3qL+Cr1C+GOaev10uFz/elkHAXS4Xv96WQcCjg5w+DiRJwKKDnL4OJEnAiC0XMm63S8AoFCpBhLRov1utNkGEtGi/KBQqQUz3Pr9brTZBTPc+v1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/W602QfRv7b9brTZBWJHYvygUKkH0b+2/KBQqQViR2L8oFCpBDtIGP1utNkEO0gY/KBQqQUePMD9brTZBR48wP10ulz/yWA9AXS6Xv/JYD0BdLpc/VOWZP10ul79U5Zk/XS6XPyys7UBdLpe/LKztQF0ulz85v1FAXS6Xvzm/UUBdLpc/VCqVv10ul79UKpW/XS6XPygUisAnk8k+jUajwCaTyb6NRqPAXS6XvygUisAmk0k+zOWSP1ksVkDM5ZI/GWIGP+JwCEBpX1o/3m5HQCqVCkBns+FAKBSqQGez4UBK/MO/yGfwP7sTO8CRQf5AnUIpwMhn8D8ZLIHAkUH+QCeTyT6SwQpBJpPJvpLBCkEnk8k+mqAcQCaTyb6aoBxAGSyBQJFB/kC7EztAkUH+QJ1CKUDIZ/A/SvzDP8hn8D8mk0m+zOWSPxliBr/icAhAWSxWwMzlkj9pX1q/3m5HQCqVCsBns+FAKBSqwGez4UCPx6PAbLXavo/Ho8DicLg+j8cjwe52m7+PxyPBbLXavl0ulz/kWBXBXS6XP/D8hMBdLpe/5FgVwV0ul7/w/ITAj8ejQOJwuD6Px6NAbLXavo/HI0Fstdq+j8cjQe52m79dLpc/j8cTwV0ulz+Px4PAXS6Xv4/HE8FdLpe/j8eDwI/Ho0BBIADAj8ejQAqFMsCPxyNBQSAAwI/HI0EKhTLAXS6Xv4/Hg8BdLpe/j8cTwV0ulz+Px4PAXS6XP4/HE8FdLpe/xNGIwF0ul79OQxfBXS6XP8TRiMBdLpc/TkMXwY/Ho8AKhTLAj8ejwEEgAMCPxyPBCoUywI/HI8FBIADAJpPJP0gkUr9dLpc/SCRSvyaTyT+4282/XS6XP7jbzb9dLpc/XS5XQF0ulz+TyeQ/JpPJP10uV0Amk8k/k8nkP/D3+z+TySRAXS6Xv5PJ5D9dLpe/XS5XQCaTyb+TyeQ/JpPJv10uV0Dw9/u/k8kkQPD3+z+TySRAJpPJP10uV0Amk8k/k8nkP10ulz+TyeQ/XS6XP10uV0BdLpe/SCRSvyaTyb9IJFK/XS6Xv7jbzb8mk8m/uNvNv/D3+7+TySRAJpPJv5PJ5D8mk8m/XS5XQF0ul79dLldAXS6Xv5PJ5D8mk8k/SCRSv10ulz9IJFK/JpPJP7jbzb9dLpc/uNvNv10ul79IJFK/JpPJv0gkUr9dLpe/uNvNvyaTyb+4282/W602wWy12r5brTbBCoUywCqVCsFstdq+KpUKwQqFMsDCYDDAXS63QPD3+79dLrdAXS4XwFutRkHw9/u/W61GQfD3+78qlRpBwmAwQGy12r7w9/s/bLXavsJgMEAKhTLA8Pf7PwqFMsBozVU/zlmVv4gtF7LYTrC/O+2CP1KptL84hyU+Mgizv1Ljnz64BLu/nAeSP5gf2b+hHeI+GLnHv5B3Cj+sR9i/n3AaP5qP679dLpc/QSAAwFLjHz9BIADAnAeSP7WwE8CfcBo/tHgKwJB3Cj+rHBTAO+2CP9jrJcChHeI+9WMcwFLjnz4lviLAOIclPmi8JsBozVU/mpM1wIgtF7IVGSjAaM1Vv5qTNcBdLhe/3pZBwF0uFz/elkHAooOcPg4kScCjg5y+DiRJwIgtF7Jut0vAOYclvmi8JsA77YK/2OslwFLjn74lviLAoR3ivvVjHMCQdwq/qxwUwJ0Hkr+1sBPAn3Aav7R4CsBdLpe/QSAAwFLjH79BIADAn3Aav5qP67+dB5K/mB/Zv5B3Cr+sR9i/oR3ivhi5x79S45++uAS7vzvtgr9SqbS/OYclvjIIs79ozVW/zlmVv10uF7+Mpnq/XS4XP4ymer+jg5y+ynFcv6KDnD7KcVy/iC0XskgkUr9dLhfAbLXavl0uF8AKhTLA8Pf7v2y12r7w9/u/CoUywMJgMEDM5ZI/wmAwQOJwCECMxeI/zOWSP4zF4j/ebkdAjMXiP+JwCEBdLhfBGmEBPyqVCsEaYQE/XS4XwTsANj8qlQrBOwA2P10uF8E0saO/XS4XwcQAvr8qlQrBNLGjvyqVCsHEAL6/XS4XwSrP779dLhfBXQ8FwCqVCsEqz++/KpUKwV0PBcBdLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwvyqVCsHghjy9XS4XweCGPL0qlQrBHM+Avl0uF8Ecz4C+XS4XQV0PBcBdLhdBKs/vvyqVCkFdDwXAKpUKQSrP779dLhdBOwA2PyqVCkE7ADY/XS4XQRthAT8qlQpBG2EBP10uF0FuKPC/XS4XQd7Y1b8qlQpBbijwvyqVCkHe2NW/XS4XQcQAvr9dLhdBNLGjvyqVCkHEAL6/KpUKQTSxo79dLhdBXQ8FwF0uF0Eqz++/KpUKQV0PBcAqlQpBKs/vv10uF0FWhjm/KpUKQVaGOb9dLhdBdiVuvyqVCkF2JW6/XS4XQW4o8L9dLhdB3tjVvyqVCkFuKPC/KpUKQd7Y1b9dLhfBNLGjv10uF8HEAL6/KpUKwTSxo78qlQrBxAC+vyqVCsE7ADY/XS4XwTsANj8qlQrBG2EBP10uF8EbYQE/KpUKQXglbr9dLhdBeCVuvyqVCkFYhjm/XS4XQViGOb9dLhdBxAC+v10uF0E0saO/KpUKQcQAvr8qlQpBNLGjv10uF8F4JW6/KpUKwXglbr9dLhfBWIY5vyqVCsFYhjm/XS4XwRzPgL4qlQrBHM+Avl0uF8Hghjy9KpUKweCGPL1dLhfBKs/vv10uF8FdDwXAKpUKwSrP778qlQrBXQ8FwCqVCsFWhjm/XS4XwVaGOb8qlQrBdiVuv10uF8F2JW6/KpUKQRzPgL5dLhdBHM+AviqVCkHghjy9XS4XQeCGPL1dLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwv10uF0Hghjy9KpUKQeCGPL1dLhdBHM+AviqVCkEcz4C+KpUKQRphAT9dLhdBGmEBPyqVCkE7ADY/XS4XQTsANj9brTZBCoUywFutNkFstdq+KpUKQQqFMsAqlQpBbLXavu/3+z8qlRpB8Pf7P10ut0Dw9/s/W61GQV0uF0BbrUZBwWAwQF0ut0BdLpc/XIIWPl0ulz/GYjFAXS6Xv1yCFj5dLpe/xmIxQF0ulz/icAhAXS6Xv+JwCEBdLpc/zOWSP10ul7/M5ZI/XS4Xv0UiQUBdLhe/IBCov10uFz9FIkFAXS4XPyAQqL/w9/u/XS63QPD3+79ZLPZAwWAwwF0ut0Dw9/u/KpUaQV0uF8BbrUZB8Pf7v1utRkFdLhdAbLXavvD3+z9stdq+XS4XQAqFMsDw9/s/CoUywMFgMMBstdq+wmAwwAqFMsDw9/u/bLXavvD3+78KhTLAXS6XP+JwCEBdLpe/4nAIQF0ulz/M5ZI/XS6Xv8zlkj9dLhc/4Djuv10uF7/gOO6/XS4XP4jAYMBdLhe/iMBgwF0ulz8qlRpBXS6XP1utRkFcLpe/KpUaQVwul79brUZBW602wdTpZMBbrTbBOBx+wCqVCsHU6WTAXS6XwE+ni8BdLpfA1OlkwF0ul7/U6WTAXS6Xv0+ni8BdLpc/1OlkwF0ulz9Pp4vAXS6XP9TpZMBdLpe/1OlkwF0ulz84HH7AXS6XvzgcfsBdLhc/0lHdv10uF7/SUd2/XS4XPwJNWMBdLhe/Ak1YwMJgMMDU6WTARSIBwGezocC35tO/1OlkwLlntL9pNILAEAgUQGezocBQM9o/aTSCwE6y+T/U6WTAjUZDQNTpZMBdLpe/zjvzPl0ulz/OO/M+XS6Xv8ZiMUBdLpc/xmIxQF0ulz/1LZ8/XS6Xv/Utnz9dLpc/uOkXvl0ul7+46Re+W602QTgcfsBbrTZB1OlkwF0ul0BPp4vAKpUKQdTpZMBdLpdA1OlkwMJgMEBdLrdAXS4XQFutRkHw9/s/XS63QPD3+z8qlRpB8Pf7P1utRkHw9/s/WSz2QIzF4r/ebkdAjMXiv+JwCECMxeK/zOWSP8JgMMDM5ZI/wmAwwOJwCEDw9/u/zOWSP10ulz/icLg+8Pf7P8zlkj/w9/s/CoUywF0ulz9stdq+XS6XP0EgAMBdLpe/bLXavl0ulz8KhTLAXS6XP9TpZMBdLpe/CoUywPD3+78KhTLAXS6Xv9TpZMBdLpe/4nC4Pl0ul79BIADA8Pf7v90zJsDw9/u/RMWjwPD3+z/dMybA8Pf7P0TFo8BDS7S/uNvNv3I4B7+4282/Q0u0v0gkUr9yOAe/SCRSv10ul8BEV7O/j8ejQERXs78qlQrBRFezvyqVCsFUOZO+j8ejQFQ5k75dLpfAVDmTvlks1sBstdq+XS6XwGy12r5dLpfAzOWSP4/Ho0DM5ZI/wmAwwGy12r5dLpfACoUywMJgMMBBIADAJpNJQGy12r6Px6NACoUywCaTSUBBIADA8Pf7P10ut0BdLpc/WSwWwPD3+z+Px4PAJ5PJPiKRSMDw9/u/j8eDwF0ulz82m00/JpPJviKRSMBdLpe/WSwWwF0ul782m00/XS6Xv8ZiMUBdLpe/wmBwQF0ulz/CYHBA8Pf7v10ut0BdLpc/xmIxQCZ9EsC4282/Q0u0v7jbzb8mfRLASCRSv0NLtL9IJFK/8Pf7v2y12r6Cr1A+GOaev/D3+z9stdq+JpPJPrD3qL/wiA4/Cvy4v/D3+z8KhTLATC0Xsu52m7+jkS4/uNvNv9C0Qj+QKua/JpNJP0EgAMDQtEI/OSsNwKORLj+lUhnA8IgOP3zCI8Amk8k+qcQrwIKvUD51zTDATC0XsgqFMsDw9/u/CoUywF0ul7/U6WTAXS6XP9TpZMCEr1C+dc0wwCeTyb6pxCvA8IgOv3zCI8CkkS6/pVIZwNG0Qr85Kw3AJpNJv0EgAMDRtEK/kCrmv6SRLr+4282/8IgOvwr8uL8nk8m+sPeov4SvUL4Y5p6/KpUKQUZXs78qlQpBVDmTvl0ul0BGV7O/XS6XQFQ5k76Px6PARlezv4/Ho8BUOZO+Jn0SQLjbzb8mfRJASCRSv0NLtD+4282/Q0u0P0gkUr9DS7Q/uNvNv0NLtD9IJFK/cjgHP7jbzb9yOAc/SCRSv10ul0Bstdq+wmAwQEEgAMBdLpdACoUywI/Ho8AKhTLAJpNJwEEgAMAmk0nAbLXavsJgMEBstdq+j8ejwMzlkj9dLpdAzOWSP1ks1kBstdq+XS6Xv4/Hg8BdLhe/wWBwQF0ul79dLrdAXC6XP10ut0BcLhc/wWBwQFwuFz9c8ylAXC4XP5xkc79cLhc/jUYDwF0uF7+NRgPAXC6XP4/Hg8BdLhe/XPMpQF0uF7+cZHO/8Pf7P1ks9kB8JDRBCoUywHwkNEFstdq+2b2RQAqFMsDZvZFAbLXavl0uFz+gZjS/XS4XP9wzGkBdLhe/oGY0v10uF7/cMxpAwmAwQNTpZMC35tM/1OlkwEUiAUBns6HAuWe0P2k0gsAQCBTAZ7OhwFAz2r9pNILATrL5v9TpZMCNRkPA1OlkwF0uFz/nJw7AXS4Xv+cnDsBdLhc/ml4xwF0uF7+aXjHAXS4XP26bFsBdLhe/bpsWwF0uFz8h0jnAXS4XvyHSOcB8JDTBbLXavnwkNMEKhTLA2b2RwGy12r7ZvZHACoUywHUul78hsUFBZy6XvyLXrEBELpc/IrFBQVMulz8k16xA8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/KpUaQQ=="), -"format": 34359742487, -"index_count": 606, -"index_data": PackedByteArray("hgGEAYUBhQGHAYYBigGIAYkBiQGLAYoBjgGMAY0BjQGPAY4BkgGQAZEBkQGTAZIBlgGUAZUBlQGXAZYBmgGYAZkBmQGbAZoBngGcAZ0BnQGfAZ4BogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqgGoAakBqQGrAaoBqwGsAaoBrwGtAa4BrgGwAa8BsAGxAa8BtAGyAbMBswG1AbQBswG2AbUBuQG3AbgBuAG6AbkBvQG7AbwBvAG+Ab0BvAG/Ab4BwgHAAcEBwQHDAcIBxgHEAcUBxQHHAcYBygHIAckByQHLAcoBzgHMAc0BzQHPAc4BzQHQAc8B0wHRAdIB0gHUAdMB1wHVAdYB1gHYAdcB2AHZAdcB2QHaAdcB2QHbAdoB2wHcAdoB3AHdAdoB3QHeAdoB3QHfAd4B3wHgAd4B3wHhAeAB4QHiAeAB4gHjAeAB4gHkAeMB5AHlAeMB5QHmAeMB5gHnAeMB5gHoAecB6AHpAecB6QHqAecB6gHrAecB6gHsAesB6gHtAewB7QHuAewB6QHoAe8B8AHpAe8B8AHvAfEB8AHxAfIB8AHyAfMB9AHwAfMB9AHzAfUB9gH0AfUB9gH1AfcB9gH3AfgB+QH2AfgB+QH4AfoB+QH6AfsB+QH7AfwB/QH5AfwB/QH8Af4B/QH+AdYB/QHWAdUB/wH9AdUBAAL/AdUBAALVAQECAgIAAgECAgIBAgMCAwIEAgICBwIFAgYCBgIIAgcCCwIJAgoCCgIMAgsCDAINAgsCDAJ/AQ0CDAKBAX8BEAIOAg8CDwIRAhACFAISAhMCEwIVAhQCGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCIAIeAh8CHwIhAiACJAIiAiMCIwIlAiQCKAImAicCJwIpAigCLAIqAisCKwItAiwCMAIuAi8CLwIxAjACNAIyAjMCMwI1AjQCOAI2AjcCNwI5AjgCPAI6AjsCOwI9AjwCQAI+Aj8CPwJBAkACRAJCAkMCQwJFAkQCSAJGAkcCRwJJAkgCTAJKAksCSwJNAkwCUAJOAk8CTwJRAlACVAJSAlMCUwJVAlQCWAJWAlcCVwJZAlgCXAJaAlsCWwJdAlwCYAJeAl8CXwJhAmACZAJiAmMCYwJlAmQCaAJmAmcCZwJpAmgCbAJqAmsCawJtAmwCcAJuAm8CbwJxAnACdAJyAnMCcwJ1AnQCcwJ2AnUCeQJ3AngCeAJ6AnkCfQJ7AnwCfAJ+An0CgQJ/AoACgAKCAoEChQKDAoQChAKGAoUChgKHAoUChwKGAogCiwKJAooCigKMAosCjwKNAo4CjgKQAo8CkwKRApICkgKUApMClwKVApYClgKYApcCmwKZApoCmgKcApsCnwKdAp4CngKgAp8CoAKhAp8CpAKiAqMCowKlAqQCqAKmAqcCpwKpAqgCrAKqAqsCqwKtAqwCsAKuAq8CrwKxArACrwKyArECsgKzArECsgK0ArMCsgK1ArQCuAK2ArcCtwK5ArgCvAK6ArsCuwK9ArwCwAK+Ar8CvwLBAsACwQLCAsACxQLDAsQCxALGAsUCxALHAsYCxgLIAsUCbwHJAsoCygJuAW8BywLKAskCzALLAskCyQLNAswC"), -"material": SubResource("StandardMaterial3D_4nnic"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T3hepS+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+CtcjvZmZ2T24HoW+kML1vPYonD24HoW+Ctcjvc3MzDspXI++Ctcjvc3MzDu4HoW+CtcjPc3MzDspXI++CtcjPc3MzDu4HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+CtcjPc3MzDspXI++CtcjPZmZ2T3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+Ctcjvc3MzDu4HoW+CtcjvZmZ2T3hepS+Ctcjvc3MzDspXI++CtcjvfYonD3hepS+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9kML1PPYonD0pXI89zcxMPfYonD0K16O9zcxMPfYonD0pXI89kML1POF6FD0pXI89kML1POF6FD0K16O9zcxMPeF6FD0pXI89zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1POF6FD0pXI89kML1POF6FD0K16O9kML1PKNwPT0K16M8kML1PPYonD0K16O9kML1PPYonD0pXI89kML1PBWuhz0K16M8zcxMPeF6FD0K16O9kML1POF6FD0K16O9zcxMPfYonD0K16O9kML1PPYonD0K16O9kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0K16O9kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vPYonD0pXI89kML1vPYonD0K16O9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1vOF6FD0K16O9zcxMveF6FD0pXI89kML1vOF6FD0pXI89zcxMvfYonD0pXI89kML1vPYonD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+zcxMveF6FD0pXI89zcxMveF6FD0K16O9kML1vOF6FD0pXI89kML1vOF6FD0K16O9kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+kML1PPYonD3hepQ+y2LtPBZCjD2QwnU+kML1PPYonD2QwnU+nNXUPEfhej3hepQ+y2LtPBZCjD3hepQ+nNXUPEfhej2QwnU+y2LtPBZCjD2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+nNXUPEfhej3hepQ+UMetPERuYT2QwnU+nNXUPEfhej2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+UMetPERuYT2QwnU+UMetPERuYT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+nNXUvEfhej3hepQ+UMetvERuYT3hepQ+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+kML1vPYonD3hepQ+zWLtvBZCjD3hepQ+kML1vPYonD2QwnU+zWLtvBZCjD2QwnU+nNXUvEjhuj3hepQ+zWLtvNUPrD3hepQ+nNXUvEjhuj2QwnU+zWLtvNUPrD2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+UMetvMmaxz3hepQ+nNXUvEjhuj3hepQ+UMetvMmaxz2QwnU+nNXUvEjhuj2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+UMetPMmaxz3hepQ+UMetPMmaxz2QwnU+y2LtPNUPrD3hepQ+nNXUPEjhuj3hepQ+y2LtPNUPrD2QwnU+nNXUPEjhuj2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo+823+u4agQT2QwnU+823+u4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ++vSBvPYonD3hepQ+uw57vJ+RpD3hepQ++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+jxdhvJVnrD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+uw57vEzAkz3hepQ++vSBvPYonD3hepQ+uw57vEzAkz1wPYo++vSBvPYonD1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+cMk3vMcvhT3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT1wPYo+jxdhvFbqiz1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz1wPYo+cMk3PMcvhT1wPYo+uw57PEzAkz3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz1wPYo+jxdhPFbqiz1wPYo++vSBPPYonD3hepQ+uw57PEzAkz3hepQ++vSBPPYonD1wPYo+uw57PEzAkz1wPYo+NcF1r25Xdz1wPYo+lYqGuz2OeT1wPYo+lIqGOz2OeT1wPYo++vQBPAMGgD1wPYo++vQBvAMGgD1wPYo+cMk3vMcvhT1wPYo+cMk3PMcvhT1wPYo+jxdhPFbqiz1wPYo+jxdhvFbqiz1wPYo+uw57PEzAkz1wPYo+uw57vEzAkz1wPYo++vSBPPYonD1wPYo++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+uw57PJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhPJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3PCQisz1wPYo++vQBPOhLuD1wPYo++vQBvOhLuD1wPYo+lYqGu82Kuz1wPYo+lIqGO82Kuz1wPYo+NcF1rzSmvD1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+cMk3PCQisz1wPYo+jxdhPJVnrD1wPYo+NcF1r6NwPT2QwnU+8W3+O4agQT2QwnU+823+u4agQT2QwnU+kMJ1vB3nTT2QwnU+kMJ1PB3nTT2QwnU+UMetvERuYT2QwnU+UMetPERuYT2QwnU+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+nNXUvEfhej2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+zWLtvBZCjD2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+kML1vPYonD2QwnU+CtejvPYonD2QwnU+zWLtvNUPrD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+nNXUvEjhuj2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+UMetvMmaxz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+UMetPMmaxz2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+nNXUPEjhuj2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+y2LtPNUPrD2QwnU+3UGePODCpj2QwnU+kML1PPYonD2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+y2LtPBZCjD2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+nNXUPEfhej2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+kMJ1vF1e0T2QwnU+kMJ1PF1e0T2QwnU+823+u6iB1z2QwnU+8W3+O6iB1z2QwnU+NcF1r5mZ2T2QwnU++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+uw57PJ+RpD3hepQ++vSBPPYonD3hepQ+uw57PJ+RpD1wPYo++vSBPPYonD1wPYo+jxdhPJVnrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD1wPYo+uw57PJ+RpD1wPYo+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1PKRwHb6tR2G9kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbsK16O7kML1PJDCdbt7FK69kML1PB6F67wNdFq8kML1PPYoXL1LfrG8kML1PKRwHb6tR2G9kML1PKRwHb5wPQq+kML1vJDCdbt7FK69kML1vKRwHb5wPQq+C9cjvJDCdbs9Cte9C9cjvKRwHb5SuB6+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1vJDCdbsK16O7kML1vB6F67wNdFq8kML1vJDCdbt7FK69kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1vKRwHb5wPQq+kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1vGZmZj24HoW+kML1vOF6FD24HoW+kML1vOF6FD24HoW+kML1vLgehTy4HgW+kML1POF6FD24HoW+kML1PLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1POF6FD24HoW+kML1PGZmZj24HoW+kML1vPYonD24HoW+kML1vPYonD24HgW+kML1PPYonD24HoW+kML1PPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1PPYonD24HoW+kML1PLgexT24HoW+kML1vLgexT24HgW+kML1vLgexT24HoW+kML1PLgexT24HgW+kML1PLgexT24HoW+kML1vOF6FD24HgW+kML1vGZmZj24HoW+kML1POF6FD24HgW+kML1PGZmZj24HoW+kML1vLgexT24HgW+kML1vPYonD24HgW+kML1vLgexT24HoW+kML1vPYonD24HoW+CtcjPaNwPT2QwnU9kML1PKNwPT2QwnU9CtcjPRWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz0K16M8CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9kML1PKNwPT0K16M8kML1PKNwPT2QwnU9CtcjPaNwPT0K16M8CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1PKNwPT0K16M8CtcjPaNwPT0K16M8kML1PBWuhz0K16M8CtcjPRWuhz0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9kML1vBWuhz2QwnU9kML1vBWuhz0K16M8CtcjvaNwPT0K16M8kML1vKNwPT0K16M8CtcjvRWuhz0K16M8kML1vBWuhz0K16M8kML1vKNwPT2QwnU9CtcjvaNwPT2QwnU9kML1vBWuhz2QwnU9CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+zcxMvbgexT3hepQ+zcxMvbgexT2tR2E+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9UMetPERuYT3hepQ+NcF1r25Xdz3hepQ+nNXUPEfhej3hepQ+lIqGOz2OeT3hepQ++vQBPAMGgD3hepQ+y2LtPBZCjD3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz3hepQ+kML1PPYonD3hepQ++vSBPPYonD3hepQ+y2LtPNUPrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD3hepQ+nNXUPEjhuj3hepQ+cMk3PCQisz3hepQ++vQBPOhLuD3hepQ+lIqGO82Kuz3hepQ+UMetPMmaxz3hepQ+NcF1rzSmvD3hepQ+UMetvMmaxz3hepQ+kMJ1vF1e0T3hepQ+kMJ1PF1e0T3hepQ+8W3+O6iB1z3hepQ+823+u6iB1z3hepQ+NcF1r5mZ2T3hepQ+lYqGu82Kuz3hepQ+nNXUvEjhuj3hepQ++vQBvOhLuD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD3hepQ+zWLtvNUPrD3hepQ+uw57vJ+RpD3hepQ+kML1vPYonD3hepQ++vSBvPYonD3hepQ+uw57vEzAkz3hepQ+zWLtvBZCjD3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT3hepQ++vQBvAMGgD3hepQ+nNXUvEfhej3hepQ+lYqGuz2OeT3hepQ+UMetvERuYT3hepQ+kMJ1vB3nTT3hepQ+kMJ1PB3nTT3hepQ+823+u4agQT3hepQ+8W3+O4agQT3hepQ+NcF1r6NwPT3hepQ+kMJ1veF6FD3hepQ+kMJ1vbgexT3hepQ+zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+vOONPNejsD2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+3kGevODCpj2QwnU+CtejvPYonD2QwnU+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+veONvNejsD2QwnU+3kGevODCpj2QwnU+veONvNejsD2tR2E+3kGevODCpj2tR2E+a7RnvIMfuT2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+CtejvPYonD2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+a7RnvIMfuT2QwnU+a7RnvIMfuT2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+3kGevAuPkT2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2tR2E+vOONPBWuhz2tR2E+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+a7RnvNFkfj2tR2E+a7RnvNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+veONvBWuhz2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+a7RnPIMfuT2QwnU+a7RnPIMfuT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+3UGePAuPkT2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+a7RnPNFkfj2tR2E+a7RnPNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+3UGePODCpj2QwnU+vOONPNejsD2QwnU+3UGePODCpj2tR2E+vOONPNejsD2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT3hepQ+kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1vPYoXL1LfrG8kML1vPYoXL3sUTg9kML1PPYoXL1LfrG8kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1PJDCdbspXI89kML1vJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9zcxMPeF6FD2tR2E+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PbgexT3hepQ+zcxMPbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1vJPCdbvsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1vKRwHT6G61E9kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PHsU7j2tR2E+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1PHsU7j2QwvU9kML1PB+FCz6QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1PHsU7j3hepQ+kML1vHsU7j3hepQ+kML1PK5HAT7hepQ+kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1vKRwHT7Xo3C9kMJ1PKRwHT7Xo3C9kMJ1PHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PKRwHT7Xo3C9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kML1vB6F67wNdFq8kML1PB6F67wNdFq8kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1PPYoXL3sUTg9kML1vPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1vK5HAT7hepQ+kML1vHsU7j3hepQ+kML1vB+FCz6QwvU9kML1vHsU7j2tR2E+kML1vHsU7j2QwvU9KVyPveF6FD2QwvU9kMJ1veF6FD3hepQ+zcxMveF6FD2QwvU9zcxMveF6FD2tR2E+zcxMveF6FD3hepQ+zcxMveF6FD17FC4+kML1PPYoXL3sUTg9kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1PB6F67wpXI89zcxMPZDCdbu4HgW+kML1vLgehTy4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vOF6FD24HgW+kML1vPYonD24HgW+kML1POF6FD24HgW+kML1vLgexT24HgW+kML1vHsU7j24HgW+kML1PLgexT24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+kML1PLgehTy4HgW+kML1PPYonD24HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+zcxMPZDCdbuQwvU9zcxMPeF6FD17FC4+CtcjPRWuhz2QwnU9zcxMPRWuhz0K1yM9CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9kML1PHsU7j2QwvU9kML1PHsU7j24HgW+kML1PHsU7j2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT24HgW+zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPZDCdbuQwvU9zcxMPZDCdbu4HgW+zcxMPeF6FD0pXI89zcxMPbgexT2QwvU9zcxMPfYonD0pXI89zcxMPeF6FD0K16O9zcxMPbgexT24HgW+zcxMPfYonD0K16O9zcxMvZDCdbuQwvU9kML1vJDCdbt7FK69zcxMvZDCdbu4HgW+C9cjvJDCdbs9Cte9zcxMPZDCdbu4HgW+kML1vJDCdbsK16O7CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1PJDCdbsK16O7kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1vJDCdbspXI89zcxMPZDCdbuQwvU9kML1vJPCdbvsUTg9zcxMPRWuhz0K1yM9CtcjPRWuhz0K16M8zcxMPaNwPT0K1yM9CtcjPaNwPT0K16M8zcxMveF6FD2tR2E+oJ6pO/wwaT2tR2E+zcxMPeF6FD2tR2E+CtcjPA1gcT2tR2E+a7RnPNFkfj2tR2E+zcxMPbgexT2tR2E+NcF1r2ZmZj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtcjPOWhvz2tR2E+oJ6pO225wz2tR2E+NcF1r7gexT2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2tR2E+kML1PHsU7j2tR2E+op6pu225wz2tR2E+C9cjvOWhvz2tR2E+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+op6pu/wwaT2tR2E+kML1vHsU7j2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2QwvU9zcxMvbgexT2QwvU9kML1vHsU7j24HgW+zcxMvbgexT24HgW+zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9CtcjvRWuhz0K16M8CtcjvaNwPT0K16M8CtcjvRWuhz2QwnU9CtcjvaNwPT2QwnU9zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9zcxMveF6FD2QwvU9zcxMvfYonD0pXI89zcxMvbgexT2QwvU9zcxMvbgexT24HgW+zcxMvfYonD0K16O9zcxMveF6FD0K16O9zcxMveF6FD0pXI89zcxMvZDCdbu4HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+kML1vHsU7j24HgW+kMJ1vHsU7j0pXI89kML1vHsU7j2QwvU9kML1PHsU7j2QwvU9kMJ1PHsU7j0pXI89kMJ1PHsU7j27Oyw9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kMJ1vHsU7j1SuJ69kML1PHsU7j24HgW+kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9zcxMveF6FD17FC4+kMJ1vbgexT3hepQ+kMJ1veF6FD3hepQ+KVyPvbgexT2QwvU9KVyPveF6FD2QwvU9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PArXAz4hohI9kMJ1vHsU7j0pXI89kMJ1vHsU7j27Oyw9kMJ1vKRwHT6G61E9kMJ1vArXAz4hohI9kMJ1vKRwHT7Xo3C9kMJ1vArXAz5zWjG9kMJ1vHsU7j0M9Eq9kMJ1vHsU7j1SuJ69kMJ1PHsU7j0M9Eq9kMJ1vHsU7j0M9Eq9kMJ1PArXAz5zWjG9kMJ1vArXAz5zWjG9kMJ1vHsU7j27Oyw9kMJ1PHsU7j27Oyw9kMJ1vArXAz4hohI9kMJ1PArXAz4hohI9kMJ1PeF6FD3hepQ+kMJ1PbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9kML1vK5HAT7hepQ+kML1vB+FCz6QwvU9kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9zcxMPeF6FD2tR2E+zcxMPeF6FD17FC4+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT2tR2E+zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+zcxMveF6FD17FC4+zcxMvbgexT2QwvU9zcxMveF6FD17FC4+zcxMvbgexT2tR2E+zcxMveF6FD2QwvU9zcxMvbgexT2QwvU9/+8AAAAAAID/7wAAAAAAgP/vAAAAAACA/+8AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA8mQMGwAAAIDyZAwbAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMm/LkAAAAgAyb8uQAAACA2a4l0QAAAIDZriXRAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA/7//PwAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACA/38AAAAAAID/fwAAAAAAgAybDBsAAACADJsMGwAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S4lUQAAAID/P/8/AAAAgNkuJVEAAACA/z//PwAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAID/P/+/AAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACA/7//PwAAAIDZrtkuAAAAgNmu2S4AAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIDy5AybAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgP+//78AAACA/7//vwAAAIDZriXRAAAAgNmuJdEAAACA2a7ZLgAAAIDZrtkuAAAAgAybDBsAAACADJsMGwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAID///9/AAAAgNmuJdEAAACA2a4l0QAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIAMm/LkAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAIAlUSXRAAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgP8//78AAACA/z//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgPJkDBsAAACA8mQMGwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA/z//PwAAAID/P/8/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAID/fwAAAAAAgP9/AAAAAACA8mQMGwAAAIDyZAwbAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////f/////////9//////////38AAACA////fwAAAIBJEiPJAAAAgEkSI8kAAACASRIjyQAAAIBJEiPJAAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACAte0jyQAAAIC17SPJAAAAgLXtI8kAAACAte0jyQAAAIAAAP9/AAAAgAAA/3//f/+/AAD/fwAAAIAAAP9//3//vwAA/38AAACAAAD/fwAAAIAAAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vxCRAAAAAP+/EJEAAAAA/78QkQAAAAD/vxCRAAAAAP+/////f/////////9//////////3//////////f///////fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v////3//////////f/////////9//////////3///////3///////7//f///////v/9///////+//3///////7//f+3u////v/9/7e7///+//3/t7v///7//f+3u////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//3//f////7//f/9/////v/9//3////+//3//f////7//f///////v/9///////+//3///////7//f///////v/9///////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9///////+//3///////7//f///////v/9///////+//3///////7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9//3////+//3//f////7//f/9/////v/9//3////+/////f/////////9//////////3//////////f///////f///////v/9///////+//3///////7//f///////v/9///////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9/////v/9//3////+//3//f////7//f/9//v//v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9//v//v/9//3/+//+//3//f/7//7//f/9/////v/9//3/+//+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//7//f/////////9/////////DJvy5P////8Mm/Lk/////yXR2a7//////7//v/////8l0dmu//////+//7//////////f//////y5Ayb/////////3//////8uQMm/////8l0SVR//////Lk8mT/////JdElUf/////y5PJk/////wybDBv/////DJsMG//////Zrtku/////9mu2S7/////DBsMm/9//78AAP9//3//vwwbDJv/f/+/AAD/f/9//7/yZPLk/3//v/Jk8uT/f/+//3////9//7//f////3//v9ku2a7/f/+/DBsMm/9//7/ZLtmu/3//vwwbDJv/f/+//z//v/9//7/ZLtmu/3//v/8//7//f/+/2S7Zrv9//78AAP9//3//vwwb8mT/f/+/AAD/f/9//78MG/Jk/3//v/8//7//f/+//z//v/9//78lUSXR/3//vyVRJdH/f/+/DBvyZP9//7/ZLiVR/3//vwwb8mT/f/+/2S4lUf9//7//v/8//////yXRJVH//////7//P/////8l0SVR//////9/AAD//////38AAP////8Mmwwb/////wybDBv//////z//P/9//7//P/8//3//vyVR2S7/f/+/JVHZLv9//7/ZLiVR/3//v/8//z//f/+/2S4lUf9//7//P/8//3//v9muJdH/////2a4l0f//////v/+///////+//7//////DJvy5P////8Mm/Lk/////9muJdH/////2a4l0f/////y5PJk/////////3//////8uTyZP////////9//////9mu2S7/////2a7ZLv//////v/8///////+//z//////JVHZLv9//78lUdku/3//v/JkDBv/f/+/8mQMG/9//7/y5Ayb/////yXR2a7/////8uQMm/////8l0dmu/////yVRJdH/f/+/JVEl0f9//7/yZPLk/3//v/Jk8uT/f/+/8mQMG/9//7/yZAwb/3//v/9/AAD/f/+//38AAP9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/9///////+//3///////7//f///////v/9///////+//3///////7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9//3////+//3//f////7//f/9/////v/9//3////+//3///////7//f///////v/9///////+//3///////7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//f6qq////v/9/qqr///+//3+qqv///7//f6qq////v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/////f/////////9///8AgP///3///wCA////f///AID///9///////////8AAP+//////wAA/7//////AAD/v/////8AAP+//3//f////7//f/9/////v/9//3////+//3//f////79U1f//AAD/v1TV//8AAP+/VNX//wAA/79U1f//AAD/v////3//////////f///AID///9//v8AgP///3/+/wCA////f/////////9//v///////3/+////////f///////f///////v/9///////+//3///////7//f///////v/9//z////+//3//P////7//f/8/////v/9//z////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAA////v////3///wCA////f/////////9///8AgP///3///wCA////f/7/AID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3/jOAAAAID/f+M4AAAAgP9/4zgAAACA/3/jOAAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAIAcB/9/AAAAgBwH/38AAACAHAf/fwAAAIAcB/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9/VFUAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAIDi+P9/AAAAgOL4/38AAACA4vj/fwAAAIDi+P9/AAAAgP9/4vgAAACA/3/i+AAAAID/f+L4AAAAgP9/4vgAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgA==") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("JpPJP+50Tb8mk8m/7nRNvyaTyT9oiGXAJpPJv2iIZcAmk8m/j8cTwSaTyb9brSbBJpPJP4/HE8Emk8k/W60mwSaTyT9BIADAJpPJv0EgAMAmk8k/brdLwCaTyb9ut0vAJpPJvwQCQT9dLpc/bLXaviaTyT8EAkE/JpPJP263S8BdLpc/7nabv10ulz9BIADAXS6Xv+52m79dLpc/CoUywF0ul78KhTLAXS6Xv2y12r4mk8m/brdLwF0ul79BIADAJpPJP8JgIMEmk8k/j8cTwSaTyb/CYCDBJpPJv4/HE8GPxyNBBAJBP4/HI0Fut0vAwmAwQQQCQT9brTZBbrdLwFutNkFBIADAj8cjwW63S8CPxyPBBAJBP1utNsFut0vAwmAwwQQCQT9brTbBQSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADAXS6XvyaTCcBdLpe/wmBwQPD3+78mkwnA8Pf7v8JgcEBdLpc/wmBwQF0ulz8mkwnA8Pf7P8JgcEDw9/s/JpMJwF0uF8C4282/XS4XwEgkUr/CYDDAbLXaviaTSUBstdq+JpNJv0gkUr8mk0lAQSAAwMJgMMBBIADAJpNJv7jbzb/w9/s/bLXavl0ulz9stdq+8Pf7P0EgAMBdLpc/QSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADA8Pf7PyaTCcDw9/s/wmBwQF0ulz8mkwnAXS6XP8JgcEDCYDBAbLXavl0uF0C4282/wmAwQEEgAMAmk0nAQSAAwCaTST+4282/JpNJP0gkUr9dLhdASCRSvyaTScBstdq+8Pf7P2y12r5dLpc/bLXavvD3+z9BIADAXS6XP0EgAMBdLhdBrB6bvlutNkGsHpu+XS4XQQCtrztbrTZBAK2vO/D3+7/CYHBA8Pf7vyaTCcBdLpe/wmBwQF0ul78mkwnAW602wUY76b9brTbBT1kIwF0uF8FGO+m/XS4XwU9ZCMBbrTbBRjvpv1utNsFPWQjAXS4XwUY76b9dLhfBT1kIwFutNsH6RM+/W602wVK89r9dLhfB+kTPv10uF8FSvPa/W602QU9ZCMBbrTZBRjvpv10uF0FPWQjAXS4XQUY76b9brTbBrB6bvl0uF8GsHpu+W602wQCtrztdLhfBAK2vO1utNsFQHZ2/W602waiUxL9dLhfBUB2dv10uF8GolMS/W602wVAdnb9brTbBqJTEv10uF8FQHZ2/XS4XwaiUxL9dLhfBjl4sv1utNsGOXiy/XS4XwT5Ne79brTbBPk17v10uF8EAra87W602wQCtrztdLhfBrB6bvlutNsGsHpu+XS4XwQMoQz9brTbBAyhDP10uF8Gmcug+W602waZy6D5brTZBUrz2v1utNkH6RM+/XS4XQVK89r9dLhdB+kTPv10uF0FATXu/W602QUBNe79dLhdBjl4sv1utNkGOXiy/W602QaiUxL9brTZBUB2dv10uF0GolMS/XS4XQVAdnb9brTZBT1kIwFutNkFGO+m/XS4XQU9ZCMBdLhdBRjvpv1utNkFSvPa/W602QfpEz79dLhdBUrz2v10uF0H6RM+/W602QY5eLL9dLhdBjl4sv1utNkE+TXu/XS4XQT5Ne79brTZBAK2vO10uF0EAra87W602Qawem75dLhdBrB6bvlutNkEDKEM/XS4XQQMoQz9brTZBpnLoPl0uF0Gmcug+W602waZy6D5dLhfBpnLoPlutNsEDKEM/XS4XwQMoQz9brTZBqJTEv1utNkFQHZ2/XS4XQaiUxL9dLhdBUB2dv1utNsFATXu/XS4XwUBNe79brTbBjl4sv10uF8GOXiy/W602wfpEz79brTbBUrz2v10uF8H6RM+/XS4XwVK89r8oFCrBR48wP1utNsFHjzA/KBQqwQ/SBj9brTbBD9IGPygUKsFK9z6/W602wUr3Pr8oFCrBgrRov1utNsGCtGi/W602wViR2L9brTbB9G/tvygUKsFYkdi/KBQqwfRv7b9brTbBWJHYv1utNsH0b+2/KBQqwViR2L8oFCrB9G/tv10uF0Gmcug+W602QaZy6D5dLhdBAyhDP1utNkEDKEM/W602waSH8r9brTbBILMDwCgUKsGkh/K/KBQqwSCzA8BbrTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7v1utNsGEtGi/KBQqwYS0aL9brTbBTPc+vygUKsFM9z6/KBQqwRDLib1brTbBEMuJvSgUKsFo2mu+W602wWjaa75brTbBpIfyv1utNsEgswPAKBQqwaSH8r8oFCrBILMDwFutNsFo2mu+KBQqwWjaa75brTbBEMuJvSgUKsEQy4m9W602wQ7SBj8oFCrBDtIGP1utNsFHjzA/KBQqwUePMD9brTZBR48wPygUKkFHjzA/W602QQ/SBj8oFCpBD9IGP1utNkEQy4m9KBQqQRDLib1brTZBaNprvigUKkFo2mu+W602QUr3Pr8oFCpBSvc+v1utNkGCtGi/KBQqQYK0aL9brTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7vygUKkFo2mu+W602QWjaa74oFCpBEMuJvVutNkEQy4m9W602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr9brTZB9G/tv1utNkFYkdi/KBQqQfRv7b8oFCpBWJHYv1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/iC0XsthOsL85hyW+MgizvziHJT4yCLO/UuOfPrgEu79S45++uAS7v6Ed4r4Yuce/oR3iPhi5x7+Qdwo/rEfYv5B3Cr+sR9i/n3AaP5qP67+fcBq/mo/rv1LjHz9BIADAUuMfv0EgAMCfcBq/tHgKwJ9wGj+0eArAkHcKv6scFMCQdwo/qxwUwKEd4r71YxzAoR3iPvVjHMBS458+Jb4iwFLjn74lviLAOYclvmi8JsA4hyU+aLwmwIgtF7IVGSjAW602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr+ILRcySCRSv6KDnL7KcVy/o4OcPspxXL9dLhc/jKZ6v10uF7+Mpnq/aM1VP85Zlb9ozVW/zlmVv4gtFzLudpu/hK9QPhjmnr877YI/Uqm0vyeTyT6w96i/8IgOPwr8uL+dB5I/mB/Zv6SRLj+4282/0bRCP5Aq5r9dLpc/QSAAwCaTST9BIADAnQeSP7WwE8DRtEI/OSsNwKSRLj+lUhnAO+2CP9jrJcDwiA4/fMIjwCeTyT6pxCvAaM1VP5qTNcCEr1A+dc0wwIgtFzIKhTLAaM1Vv5qTNcCCr1C+dc0wwCaTyb6pxCvAO+2Cv9jrJcDwiA6/fMIjwKORLr+lUhnAnAeSv7WwE8DQtEK/OSsNwF0ul79BIADAJpNJv0EgAMDQtEK/kCrmv5wHkr+YH9m/o5Euv7jbzb/wiA6/Cvy4vzvtgr9SqbS/JpPJvrD3qL+Cr1C+GOaev10uFz/elkHAXS4Xv96WQcCjg5w+DiRJwKKDnL4OJEnAiC0XMm63S8AoFCpBhLRov1utNkGEtGi/KBQqQUz3Pr9brTZBTPc+v1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/W602QfRv7b9brTZBWJHYvygUKkH0b+2/KBQqQViR2L8oFCpBDtIGP1utNkEO0gY/KBQqQUePMD9brTZBR48wP10ulz/yWA9AXS6Xv/JYD0BdLpc/VOWZP10ul79U5Zk/XS6XPyys7UBdLpe/LKztQF0ulz85v1FAXS6Xvzm/UUBdLpc/VCqVv10ul79UKpW/XS6XPygUisAnk8k+jUajwCaTyb6NRqPAXS6XvygUisAmk0k+zOWSP1ksVkDM5ZI/GWIGP+JwCEBpX1o/3m5HQCqVCkBns+FAKBSqQGez4UBK/MO/yGfwP7sTO8CRQf5AnUIpwMhn8D8ZLIHAkUH+QCeTyT6SwQpBJpPJvpLBCkEnk8k+mqAcQCaTyb6aoBxAGSyBQJFB/kC7EztAkUH+QJ1CKUDIZ/A/SvzDP8hn8D8mk0m+zOWSPxliBr/icAhAWSxWwMzlkj9pX1q/3m5HQCqVCsBns+FAKBSqwGez4UCPx6PAbLXavo/Ho8DicLg+j8cjwe52m7+PxyPBbLXavl0ulz/kWBXBXS6XP/D8hMBdLpe/5FgVwV0ul7/w/ITAj8ejQOJwuD6Px6NAbLXavo/HI0Fstdq+j8cjQe52m79dLpc/j8cTwV0ulz+Px4PAXS6Xv4/HE8FdLpe/j8eDwI/Ho0BBIADAj8ejQAqFMsCPxyNBQSAAwI/HI0EKhTLAXS6Xv4/Hg8BdLpe/j8cTwV0ulz+Px4PAXS6XP4/HE8FdLpe/xNGIwF0ul79OQxfBXS6XP8TRiMBdLpc/TkMXwY/Ho8AKhTLAj8ejwEEgAMCPxyPBCoUywI/HI8FBIADAJpPJP0gkUr9dLpc/SCRSvyaTyT+4282/XS6XP7jbzb9dLpc/XS5XQF0ulz+TyeQ/JpPJP10uV0Amk8k/k8nkP/D3+z+TySRAXS6Xv5PJ5D9dLpe/XS5XQCaTyb+TyeQ/JpPJv10uV0Dw9/u/k8kkQPD3+z+TySRAJpPJP10uV0Amk8k/k8nkP10ulz+TyeQ/XS6XP10uV0BdLpe/SCRSvyaTyb9IJFK/XS6Xv7jbzb8mk8m/uNvNv/D3+7+TySRAJpPJv5PJ5D8mk8m/XS5XQF0ul79dLldAXS6Xv5PJ5D8mk8k/SCRSv10ulz9IJFK/JpPJP7jbzb9dLpc/uNvNv10ul79IJFK/JpPJv0gkUr9dLpe/uNvNvyaTyb+4282/W602wWy12r5brTbBCoUywCqVCsFstdq+KpUKwQqFMsDCYDDAXS63QPD3+79dLrdAXS4XwFutRkHw9/u/W61GQfD3+78qlRpBwmAwQGy12r7w9/s/bLXavsJgMEAKhTLA8Pf7PwqFMsBozVU/zlmVv4gtF7LYTrC/O+2CP1KptL84hyU+Mgizv1Ljnz64BLu/nAeSP5gf2b+hHeI+GLnHv5B3Cj+sR9i/n3AaP5qP679dLpc/QSAAwFLjHz9BIADAnAeSP7WwE8CfcBo/tHgKwJB3Cj+rHBTAO+2CP9jrJcChHeI+9WMcwFLjnz4lviLAOIclPmi8JsBozVU/mpM1wIgtF7IVGSjAaM1Vv5qTNcBdLhe/3pZBwF0uFz/elkHAooOcPg4kScCjg5y+DiRJwIgtF7Jut0vAOYclvmi8JsA77YK/2OslwFLjn74lviLAoR3ivvVjHMCQdwq/qxwUwJ0Hkr+1sBPAn3Aav7R4CsBdLpe/QSAAwFLjH79BIADAn3Aav5qP67+dB5K/mB/Zv5B3Cr+sR9i/oR3ivhi5x79S45++uAS7vzvtgr9SqbS/OYclvjIIs79ozVW/zlmVv10uF7+Mpnq/XS4XP4ymer+jg5y+ynFcv6KDnD7KcVy/iC0XskgkUr9dLhfAbLXavl0uF8AKhTLA8Pf7v2y12r7w9/u/CoUywMJgMEDM5ZI/wmAwQOJwCECMxeI/zOWSP4zF4j/ebkdAjMXiP+JwCEBdLhfBGmEBPyqVCsEaYQE/XS4XwTsANj8qlQrBOwA2P10uF8E0saO/XS4XwcQAvr8qlQrBNLGjvyqVCsHEAL6/XS4XwSrP779dLhfBXQ8FwCqVCsEqz++/KpUKwV0PBcBdLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwvyqVCsHghjy9XS4XweCGPL0qlQrBHM+Avl0uF8Ecz4C+XS4XQV0PBcBdLhdBKs/vvyqVCkFdDwXAKpUKQSrP779dLhdBOwA2PyqVCkE7ADY/XS4XQRthAT8qlQpBG2EBP10uF0FuKPC/XS4XQd7Y1b8qlQpBbijwvyqVCkHe2NW/XS4XQcQAvr9dLhdBNLGjvyqVCkHEAL6/KpUKQTSxo79dLhdBXQ8FwF0uF0Eqz++/KpUKQV0PBcAqlQpBKs/vv10uF0FWhjm/KpUKQVaGOb9dLhdBdiVuvyqVCkF2JW6/XS4XQW4o8L9dLhdB3tjVvyqVCkFuKPC/KpUKQd7Y1b9dLhfBNLGjv10uF8HEAL6/KpUKwTSxo78qlQrBxAC+vyqVCsE7ADY/XS4XwTsANj8qlQrBG2EBP10uF8EbYQE/KpUKQXglbr9dLhdBeCVuvyqVCkFYhjm/XS4XQViGOb9dLhdBxAC+v10uF0E0saO/KpUKQcQAvr8qlQpBNLGjv10uF8F4JW6/KpUKwXglbr9dLhfBWIY5vyqVCsFYhjm/XS4XwRzPgL4qlQrBHM+Avl0uF8Hghjy9KpUKweCGPL1dLhfBKs/vv10uF8FdDwXAKpUKwSrP778qlQrBXQ8FwCqVCsFWhjm/XS4XwVaGOb8qlQrBdiVuv10uF8F2JW6/KpUKQRzPgL5dLhdBHM+AviqVCkHghjy9XS4XQeCGPL1dLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwv10uF0Hghjy9KpUKQeCGPL1dLhdBHM+AviqVCkEcz4C+KpUKQRphAT9dLhdBGmEBPyqVCkE7ADY/XS4XQTsANj9brTZBCoUywFutNkFstdq+KpUKQQqFMsAqlQpBbLXavu/3+z8qlRpB8Pf7P10ut0Dw9/s/W61GQV0uF0BbrUZBwWAwQF0ut0BdLpc/XIIWPl0ulz/GYjFAXS6Xv1yCFj5dLpe/xmIxQF0ulz/icAhAXS6Xv+JwCEBdLpc/zOWSP10ul7/M5ZI/XS4Xv0UiQUBdLhe/IBCov10uFz9FIkFAXS4XPyAQqL/w9/u/XS63QPD3+79ZLPZAwWAwwF0ut0Dw9/u/KpUaQV0uF8BbrUZB8Pf7v1utRkFdLhdAbLXavvD3+z9stdq+XS4XQAqFMsDw9/s/CoUywMFgMMBstdq+wmAwwAqFMsDw9/u/bLXavvD3+78KhTLAXS6XP+JwCEBdLpe/4nAIQF0ulz/M5ZI/XS6Xv8zlkj9dLhc/4Djuv10uF7/gOO6/XS4XP4jAYMBdLhe/iMBgwF0ulz8qlRpBXS6XP1utRkFcLpe/KpUaQVwul79brUZBW602wdTpZMBbrTbBOBx+wCqVCsHU6WTAXS6XwE+ni8BdLpfA1OlkwF0ul7/U6WTAXS6Xv0+ni8BdLpc/1OlkwF0ulz9Pp4vAXS6XP9TpZMBdLpe/1OlkwF0ulz84HH7AXS6XvzgcfsBdLhc/0lHdv10uF7/SUd2/XS4XPwJNWMBdLhe/Ak1YwMJgMMDU6WTARSIBwGezocC35tO/1OlkwLlntL9pNILAEAgUQGezocBQM9o/aTSCwE6y+T/U6WTAjUZDQNTpZMBdLpe/zjvzPl0ulz/OO/M+XS6Xv8ZiMUBdLpc/xmIxQF0ulz/1LZ8/XS6Xv/Utnz9dLpc/uOkXvl0ul7+46Re+W602QTgcfsBbrTZB1OlkwF0ul0BPp4vAKpUKQdTpZMBdLpdA1OlkwMJgMEBdLrdAXS4XQFutRkHw9/s/XS63QPD3+z8qlRpB8Pf7P1utRkHw9/s/WSz2QIzF4r/ebkdAjMXiv+JwCECMxeK/zOWSP8JgMMDM5ZI/wmAwwOJwCEDw9/u/zOWSP10ulz/icLg+8Pf7P8zlkj/w9/s/CoUywF0ulz9stdq+XS6XP0EgAMBdLpe/bLXavl0ulz8KhTLAXS6XP9TpZMBdLpe/CoUywPD3+78KhTLAXS6Xv9TpZMBdLpe/4nC4Pl0ul79BIADA8Pf7v90zJsDw9/u/RMWjwPD3+z/dMybA8Pf7P0TFo8BDS7S/uNvNv3I4B7+4282/Q0u0v0gkUr9yOAe/SCRSv10ul8BEV7O/j8ejQERXs78qlQrBRFezvyqVCsFUOZO+j8ejQFQ5k75dLpfAVDmTvlks1sBstdq+XS6XwGy12r5dLpfAzOWSP4/Ho0DM5ZI/wmAwwGy12r5dLpfACoUywMJgMMBBIADAJpNJQGy12r6Px6NACoUywCaTSUBBIADA8Pf7P10ut0BdLpc/WSwWwPD3+z+Px4PAJ5PJPiKRSMDw9/u/j8eDwF0ulz82m00/JpPJviKRSMBdLpe/WSwWwF0ul782m00/XS6Xv8ZiMUBdLpe/wmBwQF0ulz/CYHBA8Pf7v10ut0BdLpc/xmIxQCZ9EsC4282/Q0u0v7jbzb8mfRLASCRSv0NLtL9IJFK/8Pf7v2y12r6Cr1A+GOaev/D3+z9stdq+JpPJPrD3qL/wiA4/Cvy4v/D3+z8KhTLATC0Xsu52m7+jkS4/uNvNv9C0Qj+QKua/JpNJP0EgAMDQtEI/OSsNwKORLj+lUhnA8IgOP3zCI8Amk8k+qcQrwIKvUD51zTDATC0XsgqFMsDw9/u/CoUywF0ul7/U6WTAXS6XP9TpZMCEr1C+dc0wwCeTyb6pxCvA8IgOv3zCI8CkkS6/pVIZwNG0Qr85Kw3AJpNJv0EgAMDRtEK/kCrmv6SRLr+4282/8IgOvwr8uL8nk8m+sPeov4SvUL4Y5p6/KpUKQUZXs78qlQpBVDmTvl0ul0BGV7O/XS6XQFQ5k76Px6PARlezv4/Ho8BUOZO+Jn0SQLjbzb8mfRJASCRSv0NLtD+4282/Q0u0P0gkUr9DS7Q/uNvNv0NLtD9IJFK/cjgHP7jbzb9yOAc/SCRSv10ul0Bstdq+wmAwQEEgAMBdLpdACoUywI/Ho8AKhTLAJpNJwEEgAMAmk0nAbLXavsJgMEBstdq+j8ejwMzlkj9dLpdAzOWSP1ks1kBstdq+XS6Xv4/Hg8BdLhe/wWBwQF0ul79dLrdAXC6XP10ut0BcLhc/wWBwQFwuFz9c8ylAXC4XP5xkc79cLhc/jUYDwF0uF7+NRgPAXC6XP4/Hg8BdLhe/XPMpQF0uF7+cZHO/8Pf7P1ks9kB8JDRBCoUywHwkNEFstdq+2b2RQAqFMsDZvZFAbLXavl0uFz+gZjS/XS4XP9wzGkBdLhe/oGY0v10uF7/cMxpAwmAwQNTpZMC35tM/1OlkwEUiAUBns6HAuWe0P2k0gsAQCBTAZ7OhwFAz2r9pNILATrL5v9TpZMCNRkPA1OlkwF0uFz/nJw7AXS4Xv+cnDsBdLhc/ml4xwF0uF7+aXjHAXS4XP26bFsBdLhe/bpsWwF0uFz8h0jnAXS4XvyHSOcB8JDTBbLXavnwkNMEKhTLA2b2RwGy12r7ZvZHACoUywHUul78hsUFBZy6XvyLXrEBELpc/IrFBQVMulz8k16xA8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/KpUaQQ=="), -"format": 34359742487, -"index_count": 348, -"index_data": PackedByteArray("0ALOAs8CzwLRAtACzwLSAtEC0gLTAtEC0gLUAtMC0wLVAtEC1QLWAtEC1QLXAtYC1wLYAtYC2ALZAtYCzgLYAtoC2gLPAs4C2ALUAtoC2ALbAtQC2wLTAtQC2ALXAtsC3gLcAt0C3QLfAt4C4gLgAuEC4QLjAuIC5gLkAuUC5QLnAuYC5QLoAucC6ALpAucC7ALqAusC6wLtAuwC6wLuAu0C6wLvAu4C7wLwAu4C7gLxAu0C8ALvAvIC8gLtAvEC8gLzAvAC8gLxAvMC9gL0AvUC9QL3AvYC9wL4AvYC9AL5AvUC9wL6AvgC+gL7AvgC+wL8AvgC/AL9AvgC/QL+AvgC/wL5AvQC9AIAA/8CAAP+Av8CAAP4Av4C/wIBA/kC/AL5AgEDAQP9AvwCBAMCAwMDAwMFAwQDCAMGAwcDBwMJAwgDCQMKAwgDCgMLAwgDBgMMAwcDCgMNAwsDDQMOAwsDDgMPAwsDDwMQAwsDEAMRAwsDEQMSAwsDEgMTAwsDEwMUAwsDFAMVAwsDFQMWAwsDFgMXAwsDFwMYAwsDFgMVAxkDFgMZAxoDFgMaAxsDFgMbAxwDFgMcAx0DFgMdAx4DFgMeAx8DFgMfAyADFgMgAyEDBgMWAyEDIQMiAwYDIgMjAwYDIwMMAwYDJgMkAyUDJQMnAyYDJwMoAyYDJwMpAygDLAMqAysDKwMtAywDMAMuAy8DLwMxAzADNAMyAzMDMwM1AzQDMwM2AzUDNgM3AzUDOAMzAzIDOQM4AzIDOQM3AzgDOQM1AzcDOgM5AzIDMgM7AzoDPgM8Az0DPQM/Az4DPQNAAz8DQANBAz8DQQNCAz8DQgNDAz8DRAM9AzwDPANFA0QDRQNDA0QDRQM/A0MDRANGAz0DRANHA0YDQQNGA0cDRwNCA0EDhAJIA8YCxgKGAoQC"), -"material": SubResource("StandardMaterial3D_xjv6l"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T3hepS+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+CtcjvZmZ2T24HoW+kML1vPYonD24HoW+Ctcjvc3MzDspXI++Ctcjvc3MzDu4HoW+CtcjPc3MzDspXI++CtcjPc3MzDu4HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+CtcjPc3MzDspXI++CtcjPZmZ2T3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+Ctcjvc3MzDu4HoW+CtcjvZmZ2T3hepS+Ctcjvc3MzDspXI++CtcjvfYonD3hepS+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9kML1PPYonD0pXI89zcxMPfYonD0K16O9zcxMPfYonD0pXI89kML1POF6FD0pXI89kML1POF6FD0K16O9zcxMPeF6FD0pXI89zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1POF6FD0pXI89kML1POF6FD0K16O9kML1PKNwPT0K16M8kML1PPYonD0K16O9kML1PPYonD0pXI89kML1PBWuhz0K16M8zcxMPeF6FD0K16O9kML1POF6FD0K16O9zcxMPfYonD0K16O9kML1PPYonD0K16O9kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0K16O9kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vPYonD0pXI89kML1vPYonD0K16O9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1vOF6FD0K16O9zcxMveF6FD0pXI89kML1vOF6FD0pXI89zcxMvfYonD0pXI89kML1vPYonD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+zcxMveF6FD0pXI89zcxMveF6FD0K16O9kML1vOF6FD0pXI89kML1vOF6FD0K16O9kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+kML1PPYonD3hepQ+y2LtPBZCjD2QwnU+kML1PPYonD2QwnU+nNXUPEfhej3hepQ+y2LtPBZCjD3hepQ+nNXUPEfhej2QwnU+y2LtPBZCjD2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+nNXUPEfhej3hepQ+UMetPERuYT2QwnU+nNXUPEfhej2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+UMetPERuYT2QwnU+UMetPERuYT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+nNXUvEfhej3hepQ+UMetvERuYT3hepQ+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+kML1vPYonD3hepQ+zWLtvBZCjD3hepQ+kML1vPYonD2QwnU+zWLtvBZCjD2QwnU+nNXUvEjhuj3hepQ+zWLtvNUPrD3hepQ+nNXUvEjhuj2QwnU+zWLtvNUPrD2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+UMetvMmaxz3hepQ+nNXUvEjhuj3hepQ+UMetvMmaxz2QwnU+nNXUvEjhuj2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+UMetPMmaxz3hepQ+UMetPMmaxz2QwnU+y2LtPNUPrD3hepQ+nNXUPEjhuj3hepQ+y2LtPNUPrD2QwnU+nNXUPEjhuj2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo+823+u4agQT2QwnU+823+u4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ++vSBvPYonD3hepQ+uw57vJ+RpD3hepQ++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+jxdhvJVnrD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+uw57vEzAkz3hepQ++vSBvPYonD3hepQ+uw57vEzAkz1wPYo++vSBvPYonD1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+cMk3vMcvhT3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT1wPYo+jxdhvFbqiz1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz1wPYo+cMk3PMcvhT1wPYo+uw57PEzAkz3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz1wPYo+jxdhPFbqiz1wPYo++vSBPPYonD3hepQ+uw57PEzAkz3hepQ++vSBPPYonD1wPYo+uw57PEzAkz1wPYo+NcF1r25Xdz1wPYo+lYqGuz2OeT1wPYo+lIqGOz2OeT1wPYo++vQBPAMGgD1wPYo++vQBvAMGgD1wPYo+cMk3vMcvhT1wPYo+cMk3PMcvhT1wPYo+jxdhPFbqiz1wPYo+jxdhvFbqiz1wPYo+uw57PEzAkz1wPYo+uw57vEzAkz1wPYo++vSBPPYonD1wPYo++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+uw57PJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhPJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3PCQisz1wPYo++vQBPOhLuD1wPYo++vQBvOhLuD1wPYo+lYqGu82Kuz1wPYo+lIqGO82Kuz1wPYo+NcF1rzSmvD1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+cMk3PCQisz1wPYo+jxdhPJVnrD1wPYo+NcF1r6NwPT2QwnU+8W3+O4agQT2QwnU+823+u4agQT2QwnU+kMJ1vB3nTT2QwnU+kMJ1PB3nTT2QwnU+UMetvERuYT2QwnU+UMetPERuYT2QwnU+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+nNXUvEfhej2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+zWLtvBZCjD2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+kML1vPYonD2QwnU+CtejvPYonD2QwnU+zWLtvNUPrD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+nNXUvEjhuj2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+UMetvMmaxz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+UMetPMmaxz2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+nNXUPEjhuj2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+y2LtPNUPrD2QwnU+3UGePODCpj2QwnU+kML1PPYonD2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+y2LtPBZCjD2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+nNXUPEfhej2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+kMJ1vF1e0T2QwnU+kMJ1PF1e0T2QwnU+823+u6iB1z2QwnU+8W3+O6iB1z2QwnU+NcF1r5mZ2T2QwnU++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+uw57PJ+RpD3hepQ++vSBPPYonD3hepQ+uw57PJ+RpD1wPYo++vSBPPYonD1wPYo+jxdhPJVnrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD1wPYo+uw57PJ+RpD1wPYo+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1PKRwHb6tR2G9kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbsK16O7kML1PJDCdbt7FK69kML1PB6F67wNdFq8kML1PPYoXL1LfrG8kML1PKRwHb6tR2G9kML1PKRwHb5wPQq+kML1vJDCdbt7FK69kML1vKRwHb5wPQq+C9cjvJDCdbs9Cte9C9cjvKRwHb5SuB6+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1vJDCdbsK16O7kML1vB6F67wNdFq8kML1vJDCdbt7FK69kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1vKRwHb5wPQq+kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1vGZmZj24HoW+kML1vOF6FD24HoW+kML1vOF6FD24HoW+kML1vLgehTy4HgW+kML1POF6FD24HoW+kML1PLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1POF6FD24HoW+kML1PGZmZj24HoW+kML1vPYonD24HoW+kML1vPYonD24HgW+kML1PPYonD24HoW+kML1PPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1PPYonD24HoW+kML1PLgexT24HoW+kML1vLgexT24HgW+kML1vLgexT24HoW+kML1PLgexT24HgW+kML1PLgexT24HoW+kML1vOF6FD24HgW+kML1vGZmZj24HoW+kML1POF6FD24HgW+kML1PGZmZj24HoW+kML1vLgexT24HgW+kML1vPYonD24HgW+kML1vLgexT24HoW+kML1vPYonD24HoW+CtcjPaNwPT2QwnU9kML1PKNwPT2QwnU9CtcjPRWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz0K16M8CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9kML1PKNwPT0K16M8kML1PKNwPT2QwnU9CtcjPaNwPT0K16M8CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1PKNwPT0K16M8CtcjPaNwPT0K16M8kML1PBWuhz0K16M8CtcjPRWuhz0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9kML1vBWuhz2QwnU9kML1vBWuhz0K16M8CtcjvaNwPT0K16M8kML1vKNwPT0K16M8CtcjvRWuhz0K16M8kML1vBWuhz0K16M8kML1vKNwPT2QwnU9CtcjvaNwPT2QwnU9kML1vBWuhz2QwnU9CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+zcxMvbgexT3hepQ+zcxMvbgexT2tR2E+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9UMetPERuYT3hepQ+NcF1r25Xdz3hepQ+nNXUPEfhej3hepQ+lIqGOz2OeT3hepQ++vQBPAMGgD3hepQ+y2LtPBZCjD3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz3hepQ+kML1PPYonD3hepQ++vSBPPYonD3hepQ+y2LtPNUPrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD3hepQ+nNXUPEjhuj3hepQ+cMk3PCQisz3hepQ++vQBPOhLuD3hepQ+lIqGO82Kuz3hepQ+UMetPMmaxz3hepQ+NcF1rzSmvD3hepQ+UMetvMmaxz3hepQ+kMJ1vF1e0T3hepQ+kMJ1PF1e0T3hepQ+8W3+O6iB1z3hepQ+823+u6iB1z3hepQ+NcF1r5mZ2T3hepQ+lYqGu82Kuz3hepQ+nNXUvEjhuj3hepQ++vQBvOhLuD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD3hepQ+zWLtvNUPrD3hepQ+uw57vJ+RpD3hepQ+kML1vPYonD3hepQ++vSBvPYonD3hepQ+uw57vEzAkz3hepQ+zWLtvBZCjD3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT3hepQ++vQBvAMGgD3hepQ+nNXUvEfhej3hepQ+lYqGuz2OeT3hepQ+UMetvERuYT3hepQ+kMJ1vB3nTT3hepQ+kMJ1PB3nTT3hepQ+823+u4agQT3hepQ+8W3+O4agQT3hepQ+NcF1r6NwPT3hepQ+kMJ1veF6FD3hepQ+kMJ1vbgexT3hepQ+zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+vOONPNejsD2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+3kGevODCpj2QwnU+CtejvPYonD2QwnU+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+veONvNejsD2QwnU+3kGevODCpj2QwnU+veONvNejsD2tR2E+3kGevODCpj2tR2E+a7RnvIMfuT2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+CtejvPYonD2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+a7RnvIMfuT2QwnU+a7RnvIMfuT2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+3kGevAuPkT2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2tR2E+vOONPBWuhz2tR2E+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+a7RnvNFkfj2tR2E+a7RnvNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+veONvBWuhz2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+a7RnPIMfuT2QwnU+a7RnPIMfuT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+3UGePAuPkT2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+a7RnPNFkfj2tR2E+a7RnPNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+3UGePODCpj2QwnU+vOONPNejsD2QwnU+3UGePODCpj2tR2E+vOONPNejsD2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT3hepQ+kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1vPYoXL1LfrG8kML1vPYoXL3sUTg9kML1PPYoXL1LfrG8kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1PJDCdbspXI89kML1vJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9zcxMPeF6FD2tR2E+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PbgexT3hepQ+zcxMPbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1vJPCdbvsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1vKRwHT6G61E9kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PHsU7j2tR2E+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1PHsU7j2QwvU9kML1PB+FCz6QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1PHsU7j3hepQ+kML1vHsU7j3hepQ+kML1PK5HAT7hepQ+kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1vKRwHT7Xo3C9kMJ1PKRwHT7Xo3C9kMJ1PHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PKRwHT7Xo3C9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kML1vB6F67wNdFq8kML1PB6F67wNdFq8kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1PPYoXL3sUTg9kML1vPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1vK5HAT7hepQ+kML1vHsU7j3hepQ+kML1vB+FCz6QwvU9kML1vHsU7j2tR2E+kML1vHsU7j2QwvU9KVyPveF6FD2QwvU9kMJ1veF6FD3hepQ+zcxMveF6FD2QwvU9zcxMveF6FD2tR2E+zcxMveF6FD3hepQ+zcxMveF6FD17FC4+kML1PPYoXL3sUTg9kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1PB6F67wpXI89zcxMPZDCdbu4HgW+kML1vLgehTy4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vOF6FD24HgW+kML1vPYonD24HgW+kML1POF6FD24HgW+kML1vLgexT24HgW+kML1vHsU7j24HgW+kML1PLgexT24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+kML1PLgehTy4HgW+kML1PPYonD24HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+zcxMPZDCdbuQwvU9zcxMPeF6FD17FC4+CtcjPRWuhz2QwnU9zcxMPRWuhz0K1yM9CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9kML1PHsU7j2QwvU9kML1PHsU7j24HgW+kML1PHsU7j2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT24HgW+zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPZDCdbuQwvU9zcxMPZDCdbu4HgW+zcxMPeF6FD0pXI89zcxMPbgexT2QwvU9zcxMPfYonD0pXI89zcxMPeF6FD0K16O9zcxMPbgexT24HgW+zcxMPfYonD0K16O9zcxMvZDCdbuQwvU9kML1vJDCdbt7FK69zcxMvZDCdbu4HgW+C9cjvJDCdbs9Cte9zcxMPZDCdbu4HgW+kML1vJDCdbsK16O7CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1PJDCdbsK16O7kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1vJDCdbspXI89zcxMPZDCdbuQwvU9kML1vJPCdbvsUTg9zcxMPRWuhz0K1yM9CtcjPRWuhz0K16M8zcxMPaNwPT0K1yM9CtcjPaNwPT0K16M8zcxMveF6FD2tR2E+oJ6pO/wwaT2tR2E+zcxMPeF6FD2tR2E+CtcjPA1gcT2tR2E+a7RnPNFkfj2tR2E+zcxMPbgexT2tR2E+NcF1r2ZmZj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtcjPOWhvz2tR2E+oJ6pO225wz2tR2E+NcF1r7gexT2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2tR2E+kML1PHsU7j2tR2E+op6pu225wz2tR2E+C9cjvOWhvz2tR2E+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+op6pu/wwaT2tR2E+kML1vHsU7j2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2QwvU9zcxMvbgexT2QwvU9kML1vHsU7j24HgW+zcxMvbgexT24HgW+zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9CtcjvRWuhz0K16M8CtcjvaNwPT0K16M8CtcjvRWuhz2QwnU9CtcjvaNwPT2QwnU9zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9zcxMveF6FD2QwvU9zcxMvfYonD0pXI89zcxMvbgexT2QwvU9zcxMvbgexT24HgW+zcxMvfYonD0K16O9zcxMveF6FD0K16O9zcxMveF6FD0pXI89zcxMvZDCdbu4HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+kML1vHsU7j24HgW+kMJ1vHsU7j0pXI89kML1vHsU7j2QwvU9kML1PHsU7j2QwvU9kMJ1PHsU7j0pXI89kMJ1PHsU7j27Oyw9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kMJ1vHsU7j1SuJ69kML1PHsU7j24HgW+kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9zcxMveF6FD17FC4+kMJ1vbgexT3hepQ+kMJ1veF6FD3hepQ+KVyPvbgexT2QwvU9KVyPveF6FD2QwvU9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PArXAz4hohI9kMJ1vHsU7j0pXI89kMJ1vHsU7j27Oyw9kMJ1vKRwHT6G61E9kMJ1vArXAz4hohI9kMJ1vKRwHT7Xo3C9kMJ1vArXAz5zWjG9kMJ1vHsU7j0M9Eq9kMJ1vHsU7j1SuJ69kMJ1PHsU7j0M9Eq9kMJ1vHsU7j0M9Eq9kMJ1PArXAz5zWjG9kMJ1vArXAz5zWjG9kMJ1vHsU7j27Oyw9kMJ1PHsU7j27Oyw9kMJ1vArXAz4hohI9kMJ1PArXAz4hohI9kMJ1PeF6FD3hepQ+kMJ1PbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9kML1vK5HAT7hepQ+kML1vB+FCz6QwvU9kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9zcxMPeF6FD2tR2E+zcxMPeF6FD17FC4+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT2tR2E+zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+zcxMveF6FD17FC4+zcxMvbgexT2QwvU9zcxMveF6FD17FC4+zcxMvbgexT2tR2E+zcxMveF6FD2QwvU9zcxMvbgexT2QwvU9/+8AAAAAAID/7wAAAAAAgP/vAAAAAACA/+8AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA8mQMGwAAAIDyZAwbAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMm/LkAAAAgAyb8uQAAACA2a4l0QAAAIDZriXRAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA/7//PwAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACA/38AAAAAAID/fwAAAAAAgAybDBsAAACADJsMGwAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S4lUQAAAID/P/8/AAAAgNkuJVEAAACA/z//PwAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAID/P/+/AAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACA/7//PwAAAIDZrtkuAAAAgNmu2S4AAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIDy5AybAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgP+//78AAACA/7//vwAAAIDZriXRAAAAgNmuJdEAAACA2a7ZLgAAAIDZrtkuAAAAgAybDBsAAACADJsMGwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAID///9/AAAAgNmuJdEAAACA2a4l0QAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIAMm/LkAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAIAlUSXRAAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgP8//78AAACA/z//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgPJkDBsAAACA8mQMGwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA/z//PwAAAID/P/8/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAID/fwAAAAAAgP9/AAAAAACA8mQMGwAAAIDyZAwbAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIBJEiPJAAAAgEkSI8kAAACASRIjyQAAAIBJEiPJAAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACAte0jyQAAAIC17SPJAAAAgLXtI8kAAACAte0jyQAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgBCRAAAAAACAEJEAAAAAAIAQkQAAAAAAgBCRAAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f+3uAAAAgP9/7e4AAACA/3/t7gAAAID/f+3uAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIDy5PJkAAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIDyZPLkAAAAgPJk8uQAAACA/3///wAAAID/f///AAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA2S7ZrgAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA2S4lUQAAAID/v/8/AAAAgCXRJVEAAACA/7//PwAAAIAl0SVRAAAAgP9/AAAAAACA/38AAAAAAIAMmwwbAAAAgAybDBsAAACA/z//PwAAAID/P/8/AAAAgCVR2S4AAACAJVHZLgAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgNmu2S4AAACA2a7ZLgAAAID/v/8/AAAAgP+//z8AAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCVRJdEAAACAJVEl0QAAAIDyZPLkAAAAgPJk8uQAAACA8mQMGwAAAIDyZAwbAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAP+//38AAAAAAID/fwAAAAD/v/9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAID/f6qqAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAP+//38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3/jOP///7//f+M4////v/9/4zj///+//3/jOP///79U1f9///+p6lTV/3///6nqVNX/f///qepU1f9///+p6v+//7////+//7//v///////v/+///////+//7///////7//v///////v/+/////v////3//////////f/////////9//////////3//////////f/////////9//////////3//////////f/////////9//////////3///wCA/38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v///qaoAAKnq//+pqgAAqer//6mqAACp6v//qaoAAKnq/3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//3//f/7//7//f/9//v//v/9//3/+//+//z//v/9//7//P/+//3//v/8//7//f/+//z//v/9//7//P/+//3//v/8//7//f/+/AACpqlRV/78AAKmqVFX/vwAAqapUVf+/AACpqlRV/7+qKv9/qqr/v6oq/3+qqv+/qir/f6qq/7+qKv9/qqr/vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//3///////7//f////v//v/9///////+//3///////7//f///////v/9///////+//3///////7//f////v//v/9///////+//3////7//7//f///////v/9///////+//38AAAAA/78cB/9/AAAAgBwH/38AAACAHAf/fwAAAIAcB/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9/VFUAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAIDi+P9/AAAAgOL4/38AAACA4vj/fwAAAIDi+P9/AAAAgP9/4vgAAACA/3/i+AAAAID/f+L4AAAAgP9/4vgAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgA==") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("JpPJP+50Tb8mk8m/7nRNvyaTyT9oiGXAJpPJv2iIZcAmk8m/j8cTwSaTyb9brSbBJpPJP4/HE8Emk8k/W60mwSaTyT9BIADAJpPJv0EgAMAmk8k/brdLwCaTyb9ut0vAJpPJvwQCQT9dLpc/bLXaviaTyT8EAkE/JpPJP263S8BdLpc/7nabv10ulz9BIADAXS6Xv+52m79dLpc/CoUywF0ul78KhTLAXS6Xv2y12r4mk8m/brdLwF0ul79BIADAJpPJP8JgIMEmk8k/j8cTwSaTyb/CYCDBJpPJv4/HE8GPxyNBBAJBP4/HI0Fut0vAwmAwQQQCQT9brTZBbrdLwFutNkFBIADAj8cjwW63S8CPxyPBBAJBP1utNsFut0vAwmAwwQQCQT9brTbBQSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADAXS6XvyaTCcBdLpe/wmBwQPD3+78mkwnA8Pf7v8JgcEBdLpc/wmBwQF0ulz8mkwnA8Pf7P8JgcEDw9/s/JpMJwF0uF8C4282/XS4XwEgkUr/CYDDAbLXaviaTSUBstdq+JpNJv0gkUr8mk0lAQSAAwMJgMMBBIADAJpNJv7jbzb/w9/s/bLXavl0ulz9stdq+8Pf7P0EgAMBdLpc/QSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADA8Pf7PyaTCcDw9/s/wmBwQF0ulz8mkwnAXS6XP8JgcEDCYDBAbLXavl0uF0C4282/wmAwQEEgAMAmk0nAQSAAwCaTST+4282/JpNJP0gkUr9dLhdASCRSvyaTScBstdq+8Pf7P2y12r5dLpc/bLXavvD3+z9BIADAXS6XP0EgAMBdLhdBrB6bvlutNkGsHpu+XS4XQQCtrztbrTZBAK2vO/D3+7/CYHBA8Pf7vyaTCcBdLpe/wmBwQF0ul78mkwnAW602wUY76b9brTbBT1kIwF0uF8FGO+m/XS4XwU9ZCMBbrTbBRjvpv1utNsFPWQjAXS4XwUY76b9dLhfBT1kIwFutNsH6RM+/W602wVK89r9dLhfB+kTPv10uF8FSvPa/W602QU9ZCMBbrTZBRjvpv10uF0FPWQjAXS4XQUY76b9brTbBrB6bvl0uF8GsHpu+W602wQCtrztdLhfBAK2vO1utNsFQHZ2/W602waiUxL9dLhfBUB2dv10uF8GolMS/W602wVAdnb9brTbBqJTEv10uF8FQHZ2/XS4XwaiUxL9dLhfBjl4sv1utNsGOXiy/XS4XwT5Ne79brTbBPk17v10uF8EAra87W602wQCtrztdLhfBrB6bvlutNsGsHpu+XS4XwQMoQz9brTbBAyhDP10uF8Gmcug+W602waZy6D5brTZBUrz2v1utNkH6RM+/XS4XQVK89r9dLhdB+kTPv10uF0FATXu/W602QUBNe79dLhdBjl4sv1utNkGOXiy/W602QaiUxL9brTZBUB2dv10uF0GolMS/XS4XQVAdnb9brTZBT1kIwFutNkFGO+m/XS4XQU9ZCMBdLhdBRjvpv1utNkFSvPa/W602QfpEz79dLhdBUrz2v10uF0H6RM+/W602QY5eLL9dLhdBjl4sv1utNkE+TXu/XS4XQT5Ne79brTZBAK2vO10uF0EAra87W602Qawem75dLhdBrB6bvlutNkEDKEM/XS4XQQMoQz9brTZBpnLoPl0uF0Gmcug+W602waZy6D5dLhfBpnLoPlutNsEDKEM/XS4XwQMoQz9brTZBqJTEv1utNkFQHZ2/XS4XQaiUxL9dLhdBUB2dv1utNsFATXu/XS4XwUBNe79brTbBjl4sv10uF8GOXiy/W602wfpEz79brTbBUrz2v10uF8H6RM+/XS4XwVK89r8oFCrBR48wP1utNsFHjzA/KBQqwQ/SBj9brTbBD9IGPygUKsFK9z6/W602wUr3Pr8oFCrBgrRov1utNsGCtGi/W602wViR2L9brTbB9G/tvygUKsFYkdi/KBQqwfRv7b9brTbBWJHYv1utNsH0b+2/KBQqwViR2L8oFCrB9G/tv10uF0Gmcug+W602QaZy6D5dLhdBAyhDP1utNkEDKEM/W602waSH8r9brTbBILMDwCgUKsGkh/K/KBQqwSCzA8BbrTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7v1utNsGEtGi/KBQqwYS0aL9brTbBTPc+vygUKsFM9z6/KBQqwRDLib1brTbBEMuJvSgUKsFo2mu+W602wWjaa75brTbBpIfyv1utNsEgswPAKBQqwaSH8r8oFCrBILMDwFutNsFo2mu+KBQqwWjaa75brTbBEMuJvSgUKsEQy4m9W602wQ7SBj8oFCrBDtIGP1utNsFHjzA/KBQqwUePMD9brTZBR48wPygUKkFHjzA/W602QQ/SBj8oFCpBD9IGP1utNkEQy4m9KBQqQRDLib1brTZBaNprvigUKkFo2mu+W602QUr3Pr8oFCpBSvc+v1utNkGCtGi/KBQqQYK0aL9brTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7vygUKkFo2mu+W602QWjaa74oFCpBEMuJvVutNkEQy4m9W602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr9brTZB9G/tv1utNkFYkdi/KBQqQfRv7b8oFCpBWJHYv1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/iC0XsthOsL85hyW+MgizvziHJT4yCLO/UuOfPrgEu79S45++uAS7v6Ed4r4Yuce/oR3iPhi5x7+Qdwo/rEfYv5B3Cr+sR9i/n3AaP5qP67+fcBq/mo/rv1LjHz9BIADAUuMfv0EgAMCfcBq/tHgKwJ9wGj+0eArAkHcKv6scFMCQdwo/qxwUwKEd4r71YxzAoR3iPvVjHMBS458+Jb4iwFLjn74lviLAOYclvmi8JsA4hyU+aLwmwIgtF7IVGSjAW602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr+ILRcySCRSv6KDnL7KcVy/o4OcPspxXL9dLhc/jKZ6v10uF7+Mpnq/aM1VP85Zlb9ozVW/zlmVv4gtFzLudpu/hK9QPhjmnr877YI/Uqm0vyeTyT6w96i/8IgOPwr8uL+dB5I/mB/Zv6SRLj+4282/0bRCP5Aq5r9dLpc/QSAAwCaTST9BIADAnQeSP7WwE8DRtEI/OSsNwKSRLj+lUhnAO+2CP9jrJcDwiA4/fMIjwCeTyT6pxCvAaM1VP5qTNcCEr1A+dc0wwIgtFzIKhTLAaM1Vv5qTNcCCr1C+dc0wwCaTyb6pxCvAO+2Cv9jrJcDwiA6/fMIjwKORLr+lUhnAnAeSv7WwE8DQtEK/OSsNwF0ul79BIADAJpNJv0EgAMDQtEK/kCrmv5wHkr+YH9m/o5Euv7jbzb/wiA6/Cvy4vzvtgr9SqbS/JpPJvrD3qL+Cr1C+GOaev10uFz/elkHAXS4Xv96WQcCjg5w+DiRJwKKDnL4OJEnAiC0XMm63S8AoFCpBhLRov1utNkGEtGi/KBQqQUz3Pr9brTZBTPc+v1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/W602QfRv7b9brTZBWJHYvygUKkH0b+2/KBQqQViR2L8oFCpBDtIGP1utNkEO0gY/KBQqQUePMD9brTZBR48wP10ulz/yWA9AXS6Xv/JYD0BdLpc/VOWZP10ul79U5Zk/XS6XPyys7UBdLpe/LKztQF0ulz85v1FAXS6Xvzm/UUBdLpc/VCqVv10ul79UKpW/XS6XPygUisAnk8k+jUajwCaTyb6NRqPAXS6XvygUisAmk0k+zOWSP1ksVkDM5ZI/GWIGP+JwCEBpX1o/3m5HQCqVCkBns+FAKBSqQGez4UBK/MO/yGfwP7sTO8CRQf5AnUIpwMhn8D8ZLIHAkUH+QCeTyT6SwQpBJpPJvpLBCkEnk8k+mqAcQCaTyb6aoBxAGSyBQJFB/kC7EztAkUH+QJ1CKUDIZ/A/SvzDP8hn8D8mk0m+zOWSPxliBr/icAhAWSxWwMzlkj9pX1q/3m5HQCqVCsBns+FAKBSqwGez4UCPx6PAbLXavo/Ho8DicLg+j8cjwe52m7+PxyPBbLXavl0ulz/kWBXBXS6XP/D8hMBdLpe/5FgVwV0ul7/w/ITAj8ejQOJwuD6Px6NAbLXavo/HI0Fstdq+j8cjQe52m79dLpc/j8cTwV0ulz+Px4PAXS6Xv4/HE8FdLpe/j8eDwI/Ho0BBIADAj8ejQAqFMsCPxyNBQSAAwI/HI0EKhTLAXS6Xv4/Hg8BdLpe/j8cTwV0ulz+Px4PAXS6XP4/HE8FdLpe/xNGIwF0ul79OQxfBXS6XP8TRiMBdLpc/TkMXwY/Ho8AKhTLAj8ejwEEgAMCPxyPBCoUywI/HI8FBIADAJpPJP0gkUr9dLpc/SCRSvyaTyT+4282/XS6XP7jbzb9dLpc/XS5XQF0ulz+TyeQ/JpPJP10uV0Amk8k/k8nkP/D3+z+TySRAXS6Xv5PJ5D9dLpe/XS5XQCaTyb+TyeQ/JpPJv10uV0Dw9/u/k8kkQPD3+z+TySRAJpPJP10uV0Amk8k/k8nkP10ulz+TyeQ/XS6XP10uV0BdLpe/SCRSvyaTyb9IJFK/XS6Xv7jbzb8mk8m/uNvNv/D3+7+TySRAJpPJv5PJ5D8mk8m/XS5XQF0ul79dLldAXS6Xv5PJ5D8mk8k/SCRSv10ulz9IJFK/JpPJP7jbzb9dLpc/uNvNv10ul79IJFK/JpPJv0gkUr9dLpe/uNvNvyaTyb+4282/W602wWy12r5brTbBCoUywCqVCsFstdq+KpUKwQqFMsDCYDDAXS63QPD3+79dLrdAXS4XwFutRkHw9/u/W61GQfD3+78qlRpBwmAwQGy12r7w9/s/bLXavsJgMEAKhTLA8Pf7PwqFMsBozVU/zlmVv4gtF7LYTrC/O+2CP1KptL84hyU+Mgizv1Ljnz64BLu/nAeSP5gf2b+hHeI+GLnHv5B3Cj+sR9i/n3AaP5qP679dLpc/QSAAwFLjHz9BIADAnAeSP7WwE8CfcBo/tHgKwJB3Cj+rHBTAO+2CP9jrJcChHeI+9WMcwFLjnz4lviLAOIclPmi8JsBozVU/mpM1wIgtF7IVGSjAaM1Vv5qTNcBdLhe/3pZBwF0uFz/elkHAooOcPg4kScCjg5y+DiRJwIgtF7Jut0vAOYclvmi8JsA77YK/2OslwFLjn74lviLAoR3ivvVjHMCQdwq/qxwUwJ0Hkr+1sBPAn3Aav7R4CsBdLpe/QSAAwFLjH79BIADAn3Aav5qP67+dB5K/mB/Zv5B3Cr+sR9i/oR3ivhi5x79S45++uAS7vzvtgr9SqbS/OYclvjIIs79ozVW/zlmVv10uF7+Mpnq/XS4XP4ymer+jg5y+ynFcv6KDnD7KcVy/iC0XskgkUr9dLhfAbLXavl0uF8AKhTLA8Pf7v2y12r7w9/u/CoUywMJgMEDM5ZI/wmAwQOJwCECMxeI/zOWSP4zF4j/ebkdAjMXiP+JwCEBdLhfBGmEBPyqVCsEaYQE/XS4XwTsANj8qlQrBOwA2P10uF8E0saO/XS4XwcQAvr8qlQrBNLGjvyqVCsHEAL6/XS4XwSrP779dLhfBXQ8FwCqVCsEqz++/KpUKwV0PBcBdLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwvyqVCsHghjy9XS4XweCGPL0qlQrBHM+Avl0uF8Ecz4C+XS4XQV0PBcBdLhdBKs/vvyqVCkFdDwXAKpUKQSrP779dLhdBOwA2PyqVCkE7ADY/XS4XQRthAT8qlQpBG2EBP10uF0FuKPC/XS4XQd7Y1b8qlQpBbijwvyqVCkHe2NW/XS4XQcQAvr9dLhdBNLGjvyqVCkHEAL6/KpUKQTSxo79dLhdBXQ8FwF0uF0Eqz++/KpUKQV0PBcAqlQpBKs/vv10uF0FWhjm/KpUKQVaGOb9dLhdBdiVuvyqVCkF2JW6/XS4XQW4o8L9dLhdB3tjVvyqVCkFuKPC/KpUKQd7Y1b9dLhfBNLGjv10uF8HEAL6/KpUKwTSxo78qlQrBxAC+vyqVCsE7ADY/XS4XwTsANj8qlQrBG2EBP10uF8EbYQE/KpUKQXglbr9dLhdBeCVuvyqVCkFYhjm/XS4XQViGOb9dLhdBxAC+v10uF0E0saO/KpUKQcQAvr8qlQpBNLGjv10uF8F4JW6/KpUKwXglbr9dLhfBWIY5vyqVCsFYhjm/XS4XwRzPgL4qlQrBHM+Avl0uF8Hghjy9KpUKweCGPL1dLhfBKs/vv10uF8FdDwXAKpUKwSrP778qlQrBXQ8FwCqVCsFWhjm/XS4XwVaGOb8qlQrBdiVuv10uF8F2JW6/KpUKQRzPgL5dLhdBHM+AviqVCkHghjy9XS4XQeCGPL1dLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwv10uF0Hghjy9KpUKQeCGPL1dLhdBHM+AviqVCkEcz4C+KpUKQRphAT9dLhdBGmEBPyqVCkE7ADY/XS4XQTsANj9brTZBCoUywFutNkFstdq+KpUKQQqFMsAqlQpBbLXavu/3+z8qlRpB8Pf7P10ut0Dw9/s/W61GQV0uF0BbrUZBwWAwQF0ut0BdLpc/XIIWPl0ulz/GYjFAXS6Xv1yCFj5dLpe/xmIxQF0ulz/icAhAXS6Xv+JwCEBdLpc/zOWSP10ul7/M5ZI/XS4Xv0UiQUBdLhe/IBCov10uFz9FIkFAXS4XPyAQqL/w9/u/XS63QPD3+79ZLPZAwWAwwF0ut0Dw9/u/KpUaQV0uF8BbrUZB8Pf7v1utRkFdLhdAbLXavvD3+z9stdq+XS4XQAqFMsDw9/s/CoUywMFgMMBstdq+wmAwwAqFMsDw9/u/bLXavvD3+78KhTLAXS6XP+JwCEBdLpe/4nAIQF0ulz/M5ZI/XS6Xv8zlkj9dLhc/4Djuv10uF7/gOO6/XS4XP4jAYMBdLhe/iMBgwF0ulz8qlRpBXS6XP1utRkFcLpe/KpUaQVwul79brUZBW602wdTpZMBbrTbBOBx+wCqVCsHU6WTAXS6XwE+ni8BdLpfA1OlkwF0ul7/U6WTAXS6Xv0+ni8BdLpc/1OlkwF0ulz9Pp4vAXS6XP9TpZMBdLpe/1OlkwF0ulz84HH7AXS6XvzgcfsBdLhc/0lHdv10uF7/SUd2/XS4XPwJNWMBdLhe/Ak1YwMJgMMDU6WTARSIBwGezocC35tO/1OlkwLlntL9pNILAEAgUQGezocBQM9o/aTSCwE6y+T/U6WTAjUZDQNTpZMBdLpe/zjvzPl0ulz/OO/M+XS6Xv8ZiMUBdLpc/xmIxQF0ulz/1LZ8/XS6Xv/Utnz9dLpc/uOkXvl0ul7+46Re+W602QTgcfsBbrTZB1OlkwF0ul0BPp4vAKpUKQdTpZMBdLpdA1OlkwMJgMEBdLrdAXS4XQFutRkHw9/s/XS63QPD3+z8qlRpB8Pf7P1utRkHw9/s/WSz2QIzF4r/ebkdAjMXiv+JwCECMxeK/zOWSP8JgMMDM5ZI/wmAwwOJwCEDw9/u/zOWSP10ulz/icLg+8Pf7P8zlkj/w9/s/CoUywF0ulz9stdq+XS6XP0EgAMBdLpe/bLXavl0ulz8KhTLAXS6XP9TpZMBdLpe/CoUywPD3+78KhTLAXS6Xv9TpZMBdLpe/4nC4Pl0ul79BIADA8Pf7v90zJsDw9/u/RMWjwPD3+z/dMybA8Pf7P0TFo8BDS7S/uNvNv3I4B7+4282/Q0u0v0gkUr9yOAe/SCRSv10ul8BEV7O/j8ejQERXs78qlQrBRFezvyqVCsFUOZO+j8ejQFQ5k75dLpfAVDmTvlks1sBstdq+XS6XwGy12r5dLpfAzOWSP4/Ho0DM5ZI/wmAwwGy12r5dLpfACoUywMJgMMBBIADAJpNJQGy12r6Px6NACoUywCaTSUBBIADA8Pf7P10ut0BdLpc/WSwWwPD3+z+Px4PAJ5PJPiKRSMDw9/u/j8eDwF0ulz82m00/JpPJviKRSMBdLpe/WSwWwF0ul782m00/XS6Xv8ZiMUBdLpe/wmBwQF0ulz/CYHBA8Pf7v10ut0BdLpc/xmIxQCZ9EsC4282/Q0u0v7jbzb8mfRLASCRSv0NLtL9IJFK/8Pf7v2y12r6Cr1A+GOaev/D3+z9stdq+JpPJPrD3qL/wiA4/Cvy4v/D3+z8KhTLATC0Xsu52m7+jkS4/uNvNv9C0Qj+QKua/JpNJP0EgAMDQtEI/OSsNwKORLj+lUhnA8IgOP3zCI8Amk8k+qcQrwIKvUD51zTDATC0XsgqFMsDw9/u/CoUywF0ul7/U6WTAXS6XP9TpZMCEr1C+dc0wwCeTyb6pxCvA8IgOv3zCI8CkkS6/pVIZwNG0Qr85Kw3AJpNJv0EgAMDRtEK/kCrmv6SRLr+4282/8IgOvwr8uL8nk8m+sPeov4SvUL4Y5p6/KpUKQUZXs78qlQpBVDmTvl0ul0BGV7O/XS6XQFQ5k76Px6PARlezv4/Ho8BUOZO+Jn0SQLjbzb8mfRJASCRSv0NLtD+4282/Q0u0P0gkUr9DS7Q/uNvNv0NLtD9IJFK/cjgHP7jbzb9yOAc/SCRSv10ul0Bstdq+wmAwQEEgAMBdLpdACoUywI/Ho8AKhTLAJpNJwEEgAMAmk0nAbLXavsJgMEBstdq+j8ejwMzlkj9dLpdAzOWSP1ks1kBstdq+XS6Xv4/Hg8BdLhe/wWBwQF0ul79dLrdAXC6XP10ut0BcLhc/wWBwQFwuFz9c8ylAXC4XP5xkc79cLhc/jUYDwF0uF7+NRgPAXC6XP4/Hg8BdLhe/XPMpQF0uF7+cZHO/8Pf7P1ks9kB8JDRBCoUywHwkNEFstdq+2b2RQAqFMsDZvZFAbLXavl0uFz+gZjS/XS4XP9wzGkBdLhe/oGY0v10uF7/cMxpAwmAwQNTpZMC35tM/1OlkwEUiAUBns6HAuWe0P2k0gsAQCBTAZ7OhwFAz2r9pNILATrL5v9TpZMCNRkPA1OlkwF0uFz/nJw7AXS4Xv+cnDsBdLhc/ml4xwF0uF7+aXjHAXS4XP26bFsBdLhe/bpsWwF0uFz8h0jnAXS4XvyHSOcB8JDTBbLXavnwkNMEKhTLA2b2RwGy12r7ZvZHACoUywHUul78hsUFBZy6XvyLXrEBELpc/IrFBQVMulz8k16xA8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/KpUaQQ=="), -"format": 34359742487, -"index_count": 54, -"index_data": PackedByteArray("SwNJA0oDSgNMA0sDTwNNA04DTgNQA08DUwNRA1IDUgNUA1MDVANVA1MDVANWA1UDVgNXA1UDVwNYA1UDWwNZA1oDWgNcA1sDXwNdA14DXgNgA18DYwNhA2IDYgNkA2MDZwNlA2YDZgNoA2cD"), -"material": SubResource("StandardMaterial3D_1wqtj"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T3hepS+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+CtcjvZmZ2T24HoW+kML1vPYonD24HoW+Ctcjvc3MzDspXI++Ctcjvc3MzDu4HoW+CtcjPc3MzDspXI++CtcjPc3MzDu4HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+CtcjPc3MzDspXI++CtcjPZmZ2T3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+Ctcjvc3MzDu4HoW+CtcjvZmZ2T3hepS+Ctcjvc3MzDspXI++CtcjvfYonD3hepS+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9kML1PPYonD0pXI89zcxMPfYonD0K16O9zcxMPfYonD0pXI89kML1POF6FD0pXI89kML1POF6FD0K16O9zcxMPeF6FD0pXI89zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1POF6FD0pXI89kML1POF6FD0K16O9kML1PKNwPT0K16M8kML1PPYonD0K16O9kML1PPYonD0pXI89kML1PBWuhz0K16M8zcxMPeF6FD0K16O9kML1POF6FD0K16O9zcxMPfYonD0K16O9kML1PPYonD0K16O9kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0K16O9kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vPYonD0pXI89kML1vPYonD0K16O9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1vOF6FD0K16O9zcxMveF6FD0pXI89kML1vOF6FD0pXI89zcxMvfYonD0pXI89kML1vPYonD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+zcxMveF6FD0pXI89zcxMveF6FD0K16O9kML1vOF6FD0pXI89kML1vOF6FD0K16O9kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+kML1PPYonD3hepQ+y2LtPBZCjD2QwnU+kML1PPYonD2QwnU+nNXUPEfhej3hepQ+y2LtPBZCjD3hepQ+nNXUPEfhej2QwnU+y2LtPBZCjD2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+nNXUPEfhej3hepQ+UMetPERuYT2QwnU+nNXUPEfhej2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+UMetPERuYT2QwnU+UMetPERuYT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+nNXUvEfhej3hepQ+UMetvERuYT3hepQ+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+kML1vPYonD3hepQ+zWLtvBZCjD3hepQ+kML1vPYonD2QwnU+zWLtvBZCjD2QwnU+nNXUvEjhuj3hepQ+zWLtvNUPrD3hepQ+nNXUvEjhuj2QwnU+zWLtvNUPrD2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+UMetvMmaxz3hepQ+nNXUvEjhuj3hepQ+UMetvMmaxz2QwnU+nNXUvEjhuj2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+UMetPMmaxz3hepQ+UMetPMmaxz2QwnU+y2LtPNUPrD3hepQ+nNXUPEjhuj3hepQ+y2LtPNUPrD2QwnU+nNXUPEjhuj2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo+823+u4agQT2QwnU+823+u4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ++vSBvPYonD3hepQ+uw57vJ+RpD3hepQ++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+jxdhvJVnrD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+uw57vEzAkz3hepQ++vSBvPYonD3hepQ+uw57vEzAkz1wPYo++vSBvPYonD1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+cMk3vMcvhT3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT1wPYo+jxdhvFbqiz1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz1wPYo+cMk3PMcvhT1wPYo+uw57PEzAkz3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz1wPYo+jxdhPFbqiz1wPYo++vSBPPYonD3hepQ+uw57PEzAkz3hepQ++vSBPPYonD1wPYo+uw57PEzAkz1wPYo+NcF1r25Xdz1wPYo+lYqGuz2OeT1wPYo+lIqGOz2OeT1wPYo++vQBPAMGgD1wPYo++vQBvAMGgD1wPYo+cMk3vMcvhT1wPYo+cMk3PMcvhT1wPYo+jxdhPFbqiz1wPYo+jxdhvFbqiz1wPYo+uw57PEzAkz1wPYo+uw57vEzAkz1wPYo++vSBPPYonD1wPYo++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+uw57PJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhPJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3PCQisz1wPYo++vQBPOhLuD1wPYo++vQBvOhLuD1wPYo+lYqGu82Kuz1wPYo+lIqGO82Kuz1wPYo+NcF1rzSmvD1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+cMk3PCQisz1wPYo+jxdhPJVnrD1wPYo+NcF1r6NwPT2QwnU+8W3+O4agQT2QwnU+823+u4agQT2QwnU+kMJ1vB3nTT2QwnU+kMJ1PB3nTT2QwnU+UMetvERuYT2QwnU+UMetPERuYT2QwnU+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+nNXUvEfhej2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+zWLtvBZCjD2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+kML1vPYonD2QwnU+CtejvPYonD2QwnU+zWLtvNUPrD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+nNXUvEjhuj2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+UMetvMmaxz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+UMetPMmaxz2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+nNXUPEjhuj2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+y2LtPNUPrD2QwnU+3UGePODCpj2QwnU+kML1PPYonD2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+y2LtPBZCjD2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+nNXUPEfhej2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+kMJ1vF1e0T2QwnU+kMJ1PF1e0T2QwnU+823+u6iB1z2QwnU+8W3+O6iB1z2QwnU+NcF1r5mZ2T2QwnU++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+uw57PJ+RpD3hepQ++vSBPPYonD3hepQ+uw57PJ+RpD1wPYo++vSBPPYonD1wPYo+jxdhPJVnrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD1wPYo+uw57PJ+RpD1wPYo+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1PKRwHb6tR2G9kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbsK16O7kML1PJDCdbt7FK69kML1PB6F67wNdFq8kML1PPYoXL1LfrG8kML1PKRwHb6tR2G9kML1PKRwHb5wPQq+kML1vJDCdbt7FK69kML1vKRwHb5wPQq+C9cjvJDCdbs9Cte9C9cjvKRwHb5SuB6+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1vJDCdbsK16O7kML1vB6F67wNdFq8kML1vJDCdbt7FK69kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1vKRwHb5wPQq+kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1vGZmZj24HoW+kML1vOF6FD24HoW+kML1vOF6FD24HoW+kML1vLgehTy4HgW+kML1POF6FD24HoW+kML1PLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1POF6FD24HoW+kML1PGZmZj24HoW+kML1vPYonD24HoW+kML1vPYonD24HgW+kML1PPYonD24HoW+kML1PPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1PPYonD24HoW+kML1PLgexT24HoW+kML1vLgexT24HgW+kML1vLgexT24HoW+kML1PLgexT24HgW+kML1PLgexT24HoW+kML1vOF6FD24HgW+kML1vGZmZj24HoW+kML1POF6FD24HgW+kML1PGZmZj24HoW+kML1vLgexT24HgW+kML1vPYonD24HgW+kML1vLgexT24HoW+kML1vPYonD24HoW+CtcjPaNwPT2QwnU9kML1PKNwPT2QwnU9CtcjPRWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz0K16M8CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9kML1PKNwPT0K16M8kML1PKNwPT2QwnU9CtcjPaNwPT0K16M8CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1PKNwPT0K16M8CtcjPaNwPT0K16M8kML1PBWuhz0K16M8CtcjPRWuhz0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9kML1vBWuhz2QwnU9kML1vBWuhz0K16M8CtcjvaNwPT0K16M8kML1vKNwPT0K16M8CtcjvRWuhz0K16M8kML1vBWuhz0K16M8kML1vKNwPT2QwnU9CtcjvaNwPT2QwnU9kML1vBWuhz2QwnU9CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+zcxMvbgexT3hepQ+zcxMvbgexT2tR2E+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9UMetPERuYT3hepQ+NcF1r25Xdz3hepQ+nNXUPEfhej3hepQ+lIqGOz2OeT3hepQ++vQBPAMGgD3hepQ+y2LtPBZCjD3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz3hepQ+kML1PPYonD3hepQ++vSBPPYonD3hepQ+y2LtPNUPrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD3hepQ+nNXUPEjhuj3hepQ+cMk3PCQisz3hepQ++vQBPOhLuD3hepQ+lIqGO82Kuz3hepQ+UMetPMmaxz3hepQ+NcF1rzSmvD3hepQ+UMetvMmaxz3hepQ+kMJ1vF1e0T3hepQ+kMJ1PF1e0T3hepQ+8W3+O6iB1z3hepQ+823+u6iB1z3hepQ+NcF1r5mZ2T3hepQ+lYqGu82Kuz3hepQ+nNXUvEjhuj3hepQ++vQBvOhLuD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD3hepQ+zWLtvNUPrD3hepQ+uw57vJ+RpD3hepQ+kML1vPYonD3hepQ++vSBvPYonD3hepQ+uw57vEzAkz3hepQ+zWLtvBZCjD3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT3hepQ++vQBvAMGgD3hepQ+nNXUvEfhej3hepQ+lYqGuz2OeT3hepQ+UMetvERuYT3hepQ+kMJ1vB3nTT3hepQ+kMJ1PB3nTT3hepQ+823+u4agQT3hepQ+8W3+O4agQT3hepQ+NcF1r6NwPT3hepQ+kMJ1veF6FD3hepQ+kMJ1vbgexT3hepQ+zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+vOONPNejsD2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+3kGevODCpj2QwnU+CtejvPYonD2QwnU+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+veONvNejsD2QwnU+3kGevODCpj2QwnU+veONvNejsD2tR2E+3kGevODCpj2tR2E+a7RnvIMfuT2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+CtejvPYonD2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+a7RnvIMfuT2QwnU+a7RnvIMfuT2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+3kGevAuPkT2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2tR2E+vOONPBWuhz2tR2E+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+a7RnvNFkfj2tR2E+a7RnvNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+veONvBWuhz2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+a7RnPIMfuT2QwnU+a7RnPIMfuT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+3UGePAuPkT2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+a7RnPNFkfj2tR2E+a7RnPNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+3UGePODCpj2QwnU+vOONPNejsD2QwnU+3UGePODCpj2tR2E+vOONPNejsD2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT3hepQ+kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1vPYoXL1LfrG8kML1vPYoXL3sUTg9kML1PPYoXL1LfrG8kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1PJDCdbspXI89kML1vJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9zcxMPeF6FD2tR2E+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PbgexT3hepQ+zcxMPbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1vJPCdbvsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1vKRwHT6G61E9kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PHsU7j2tR2E+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1PHsU7j2QwvU9kML1PB+FCz6QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1PHsU7j3hepQ+kML1vHsU7j3hepQ+kML1PK5HAT7hepQ+kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1vKRwHT7Xo3C9kMJ1PKRwHT7Xo3C9kMJ1PHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PKRwHT7Xo3C9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kML1vB6F67wNdFq8kML1PB6F67wNdFq8kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1PPYoXL3sUTg9kML1vPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1vK5HAT7hepQ+kML1vHsU7j3hepQ+kML1vB+FCz6QwvU9kML1vHsU7j2tR2E+kML1vHsU7j2QwvU9KVyPveF6FD2QwvU9kMJ1veF6FD3hepQ+zcxMveF6FD2QwvU9zcxMveF6FD2tR2E+zcxMveF6FD3hepQ+zcxMveF6FD17FC4+kML1PPYoXL3sUTg9kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1PB6F67wpXI89zcxMPZDCdbu4HgW+kML1vLgehTy4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vOF6FD24HgW+kML1vPYonD24HgW+kML1POF6FD24HgW+kML1vLgexT24HgW+kML1vHsU7j24HgW+kML1PLgexT24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+kML1PLgehTy4HgW+kML1PPYonD24HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+zcxMPZDCdbuQwvU9zcxMPeF6FD17FC4+CtcjPRWuhz2QwnU9zcxMPRWuhz0K1yM9CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9kML1PHsU7j2QwvU9kML1PHsU7j24HgW+kML1PHsU7j2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT24HgW+zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPZDCdbuQwvU9zcxMPZDCdbu4HgW+zcxMPeF6FD0pXI89zcxMPbgexT2QwvU9zcxMPfYonD0pXI89zcxMPeF6FD0K16O9zcxMPbgexT24HgW+zcxMPfYonD0K16O9zcxMvZDCdbuQwvU9kML1vJDCdbt7FK69zcxMvZDCdbu4HgW+C9cjvJDCdbs9Cte9zcxMPZDCdbu4HgW+kML1vJDCdbsK16O7CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1PJDCdbsK16O7kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1vJDCdbspXI89zcxMPZDCdbuQwvU9kML1vJPCdbvsUTg9zcxMPRWuhz0K1yM9CtcjPRWuhz0K16M8zcxMPaNwPT0K1yM9CtcjPaNwPT0K16M8zcxMveF6FD2tR2E+oJ6pO/wwaT2tR2E+zcxMPeF6FD2tR2E+CtcjPA1gcT2tR2E+a7RnPNFkfj2tR2E+zcxMPbgexT2tR2E+NcF1r2ZmZj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtcjPOWhvz2tR2E+oJ6pO225wz2tR2E+NcF1r7gexT2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2tR2E+kML1PHsU7j2tR2E+op6pu225wz2tR2E+C9cjvOWhvz2tR2E+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+op6pu/wwaT2tR2E+kML1vHsU7j2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2QwvU9zcxMvbgexT2QwvU9kML1vHsU7j24HgW+zcxMvbgexT24HgW+zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9CtcjvRWuhz0K16M8CtcjvaNwPT0K16M8CtcjvRWuhz2QwnU9CtcjvaNwPT2QwnU9zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9zcxMveF6FD2QwvU9zcxMvfYonD0pXI89zcxMvbgexT2QwvU9zcxMvbgexT24HgW+zcxMvfYonD0K16O9zcxMveF6FD0K16O9zcxMveF6FD0pXI89zcxMvZDCdbu4HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+kML1vHsU7j24HgW+kMJ1vHsU7j0pXI89kML1vHsU7j2QwvU9kML1PHsU7j2QwvU9kMJ1PHsU7j0pXI89kMJ1PHsU7j27Oyw9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kMJ1vHsU7j1SuJ69kML1PHsU7j24HgW+kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9zcxMveF6FD17FC4+kMJ1vbgexT3hepQ+kMJ1veF6FD3hepQ+KVyPvbgexT2QwvU9KVyPveF6FD2QwvU9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PArXAz4hohI9kMJ1vHsU7j0pXI89kMJ1vHsU7j27Oyw9kMJ1vKRwHT6G61E9kMJ1vArXAz4hohI9kMJ1vKRwHT7Xo3C9kMJ1vArXAz5zWjG9kMJ1vHsU7j0M9Eq9kMJ1vHsU7j1SuJ69kMJ1PHsU7j0M9Eq9kMJ1vHsU7j0M9Eq9kMJ1PArXAz5zWjG9kMJ1vArXAz5zWjG9kMJ1vHsU7j27Oyw9kMJ1PHsU7j27Oyw9kMJ1vArXAz4hohI9kMJ1PArXAz4hohI9kMJ1PeF6FD3hepQ+kMJ1PbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9kML1vK5HAT7hepQ+kML1vB+FCz6QwvU9kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9zcxMPeF6FD2tR2E+zcxMPeF6FD17FC4+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT2tR2E+zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+zcxMveF6FD17FC4+zcxMvbgexT2QwvU9zcxMveF6FD17FC4+zcxMvbgexT2tR2E+zcxMveF6FD2QwvU9zcxMvbgexT2QwvU9/+8AAAAAAID/7wAAAAAAgP/vAAAAAACA/+8AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA8mQMGwAAAIDyZAwbAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMm/LkAAAAgAyb8uQAAACA2a4l0QAAAIDZriXRAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA/7//PwAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACA/38AAAAAAID/fwAAAAAAgAybDBsAAACADJsMGwAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S4lUQAAAID/P/8/AAAAgNkuJVEAAACA/z//PwAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAID/P/+/AAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACA/7//PwAAAIDZrtkuAAAAgNmu2S4AAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIDy5AybAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgP+//78AAACA/7//vwAAAIDZriXRAAAAgNmuJdEAAACA2a7ZLgAAAIDZrtkuAAAAgAybDBsAAACADJsMGwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAID///9/AAAAgNmuJdEAAACA2a4l0QAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIAMm/LkAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAIAlUSXRAAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgP8//78AAACA/z//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgPJkDBsAAACA8mQMGwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA/z//PwAAAID/P/8/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAID/fwAAAAAAgP9/AAAAAACA8mQMGwAAAIDyZAwbAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIBJEiPJAAAAgEkSI8kAAACASRIjyQAAAIBJEiPJAAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACAte0jyQAAAIC17SPJAAAAgLXtI8kAAACAte0jyQAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgBCRAAAAAACAEJEAAAAAAIAQkQAAAAAAgBCRAAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f+3uAAAAgP9/7e4AAACA/3/t7gAAAID/f+3uAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIDy5PJkAAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIDyZPLkAAAAgPJk8uQAAACA/3///wAAAID/f///AAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA2S7ZrgAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA2S4lUQAAAID/v/8/AAAAgCXRJVEAAACA/7//PwAAAIAl0SVRAAAAgP9/AAAAAACA/38AAAAAAIAMmwwbAAAAgAybDBsAAACA/z//PwAAAID/P/8/AAAAgCVR2S4AAACAJVHZLgAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgNmu2S4AAACA2a7ZLgAAAID/v/8/AAAAgP+//z8AAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCVRJdEAAACAJVEl0QAAAIDyZPLkAAAAgPJk8uQAAACA8mQMGwAAAIDyZAwbAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAID/f6qqAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3/jOAAAAID/f+M4AAAAgP9/4zgAAACA/3/jOAAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAIAcB/9/G4f/vxwH/38bh/+/HAf/fxuH/78cB/9/G4f/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//v/9/VFX///+//39UVf///7//f1RV////v/9/VFX///+/VNUAAAAA/79U1QAAAAD/v1TVAAAAAP+/VNUAAAAA/7/i+P9///9w/OL4/3///3D84vj/f///cPzi+P9///9w/P9/4vj///+//3/i+P///7//f+L4////v/9/4vj///+/AAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgA==") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("JpPJP+50Tb8mk8m/7nRNvyaTyT9oiGXAJpPJv2iIZcAmk8m/j8cTwSaTyb9brSbBJpPJP4/HE8Emk8k/W60mwSaTyT9BIADAJpPJv0EgAMAmk8k/brdLwCaTyb9ut0vAJpPJvwQCQT9dLpc/bLXaviaTyT8EAkE/JpPJP263S8BdLpc/7nabv10ulz9BIADAXS6Xv+52m79dLpc/CoUywF0ul78KhTLAXS6Xv2y12r4mk8m/brdLwF0ul79BIADAJpPJP8JgIMEmk8k/j8cTwSaTyb/CYCDBJpPJv4/HE8GPxyNBBAJBP4/HI0Fut0vAwmAwQQQCQT9brTZBbrdLwFutNkFBIADAj8cjwW63S8CPxyPBBAJBP1utNsFut0vAwmAwwQQCQT9brTbBQSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADAXS6XvyaTCcBdLpe/wmBwQPD3+78mkwnA8Pf7v8JgcEBdLpc/wmBwQF0ulz8mkwnA8Pf7P8JgcEDw9/s/JpMJwF0uF8C4282/XS4XwEgkUr/CYDDAbLXaviaTSUBstdq+JpNJv0gkUr8mk0lAQSAAwMJgMMBBIADAJpNJv7jbzb/w9/s/bLXavl0ulz9stdq+8Pf7P0EgAMBdLpc/QSAAwF0ul79stdq+8Pf7v2y12r5dLpe/QSAAwPD3+79BIADA8Pf7PyaTCcDw9/s/wmBwQF0ulz8mkwnAXS6XP8JgcEDCYDBAbLXavl0uF0C4282/wmAwQEEgAMAmk0nAQSAAwCaTST+4282/JpNJP0gkUr9dLhdASCRSvyaTScBstdq+8Pf7P2y12r5dLpc/bLXavvD3+z9BIADAXS6XP0EgAMBdLhdBrB6bvlutNkGsHpu+XS4XQQCtrztbrTZBAK2vO/D3+7/CYHBA8Pf7vyaTCcBdLpe/wmBwQF0ul78mkwnAW602wUY76b9brTbBT1kIwF0uF8FGO+m/XS4XwU9ZCMBbrTbBRjvpv1utNsFPWQjAXS4XwUY76b9dLhfBT1kIwFutNsH6RM+/W602wVK89r9dLhfB+kTPv10uF8FSvPa/W602QU9ZCMBbrTZBRjvpv10uF0FPWQjAXS4XQUY76b9brTbBrB6bvl0uF8GsHpu+W602wQCtrztdLhfBAK2vO1utNsFQHZ2/W602waiUxL9dLhfBUB2dv10uF8GolMS/W602wVAdnb9brTbBqJTEv10uF8FQHZ2/XS4XwaiUxL9dLhfBjl4sv1utNsGOXiy/XS4XwT5Ne79brTbBPk17v10uF8EAra87W602wQCtrztdLhfBrB6bvlutNsGsHpu+XS4XwQMoQz9brTbBAyhDP10uF8Gmcug+W602waZy6D5brTZBUrz2v1utNkH6RM+/XS4XQVK89r9dLhdB+kTPv10uF0FATXu/W602QUBNe79dLhdBjl4sv1utNkGOXiy/W602QaiUxL9brTZBUB2dv10uF0GolMS/XS4XQVAdnb9brTZBT1kIwFutNkFGO+m/XS4XQU9ZCMBdLhdBRjvpv1utNkFSvPa/W602QfpEz79dLhdBUrz2v10uF0H6RM+/W602QY5eLL9dLhdBjl4sv1utNkE+TXu/XS4XQT5Ne79brTZBAK2vO10uF0EAra87W602Qawem75dLhdBrB6bvlutNkEDKEM/XS4XQQMoQz9brTZBpnLoPl0uF0Gmcug+W602waZy6D5dLhfBpnLoPlutNsEDKEM/XS4XwQMoQz9brTZBqJTEv1utNkFQHZ2/XS4XQaiUxL9dLhdBUB2dv1utNsFATXu/XS4XwUBNe79brTbBjl4sv10uF8GOXiy/W602wfpEz79brTbBUrz2v10uF8H6RM+/XS4XwVK89r8oFCrBR48wP1utNsFHjzA/KBQqwQ/SBj9brTbBD9IGPygUKsFK9z6/W602wUr3Pr8oFCrBgrRov1utNsGCtGi/W602wViR2L9brTbB9G/tvygUKsFYkdi/KBQqwfRv7b9brTbBWJHYv1utNsH0b+2/KBQqwViR2L8oFCrB9G/tv10uF0Gmcug+W602QaZy6D5dLhdBAyhDP1utNkEDKEM/W602waSH8r9brTbBILMDwCgUKsGkh/K/KBQqwSCzA8BbrTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7v1utNsGEtGi/KBQqwYS0aL9brTbBTPc+vygUKsFM9z6/KBQqwRDLib1brTbBEMuJvSgUKsFo2mu+W602wWjaa75brTbBpIfyv1utNsEgswPAKBQqwaSH8r8oFCrBILMDwFutNsFo2mu+KBQqwWjaa75brTbBEMuJvSgUKsEQy4m9W602wQ7SBj8oFCrBDtIGP1utNsFHjzA/KBQqwUePMD9brTZBR48wPygUKkFHjzA/W602QQ/SBj8oFCpBD9IGP1utNkEQy4m9KBQqQRDLib1brTZBaNprvigUKkFo2mu+W602QUr3Pr8oFCpBSvc+v1utNkGCtGi/KBQqQYK0aL9brTbBrmmmv1utNsFKSLu/KBQqwa5ppr8oFCrBSki7vygUKkFo2mu+W602QWjaa74oFCpBEMuJvVutNkEQy4m9W602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr9brTZB9G/tv1utNkFYkdi/KBQqQfRv7b8oFCpBWJHYv1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/iC0XsthOsL85hyW+MgizvziHJT4yCLO/UuOfPrgEu79S45++uAS7v6Ed4r4Yuce/oR3iPhi5x7+Qdwo/rEfYv5B3Cr+sR9i/n3AaP5qP67+fcBq/mo/rv1LjHz9BIADAUuMfv0EgAMCfcBq/tHgKwJ9wGj+0eArAkHcKv6scFMCQdwo/qxwUwKEd4r71YxzAoR3iPvVjHMBS458+Jb4iwFLjn74lviLAOYclvmi8JsA4hyU+aLwmwIgtF7IVGSjAW602QUpIu79brTZBrmmmvygUKkFKSLu/KBQqQa5ppr+ILRcySCRSv6KDnL7KcVy/o4OcPspxXL9dLhc/jKZ6v10uF7+Mpnq/aM1VP85Zlb9ozVW/zlmVv4gtFzLudpu/hK9QPhjmnr877YI/Uqm0vyeTyT6w96i/8IgOPwr8uL+dB5I/mB/Zv6SRLj+4282/0bRCP5Aq5r9dLpc/QSAAwCaTST9BIADAnQeSP7WwE8DRtEI/OSsNwKSRLj+lUhnAO+2CP9jrJcDwiA4/fMIjwCeTyT6pxCvAaM1VP5qTNcCEr1A+dc0wwIgtFzIKhTLAaM1Vv5qTNcCCr1C+dc0wwCaTyb6pxCvAO+2Cv9jrJcDwiA6/fMIjwKORLr+lUhnAnAeSv7WwE8DQtEK/OSsNwF0ul79BIADAJpNJv0EgAMDQtEK/kCrmv5wHkr+YH9m/o5Euv7jbzb/wiA6/Cvy4vzvtgr9SqbS/JpPJvrD3qL+Cr1C+GOaev10uFz/elkHAXS4Xv96WQcCjg5w+DiRJwKKDnL4OJEnAiC0XMm63S8AoFCpBhLRov1utNkGEtGi/KBQqQUz3Pr9brTZBTPc+v1utNkEgswPAW602QaSH8r8oFCpBILMDwCgUKkGkh/K/W602QfRv7b9brTZBWJHYvygUKkH0b+2/KBQqQViR2L8oFCpBDtIGP1utNkEO0gY/KBQqQUePMD9brTZBR48wP10ulz/yWA9AXS6Xv/JYD0BdLpc/VOWZP10ul79U5Zk/XS6XPyys7UBdLpe/LKztQF0ulz85v1FAXS6Xvzm/UUBdLpc/VCqVv10ul79UKpW/XS6XPygUisAnk8k+jUajwCaTyb6NRqPAXS6XvygUisAmk0k+zOWSP1ksVkDM5ZI/GWIGP+JwCEBpX1o/3m5HQCqVCkBns+FAKBSqQGez4UBK/MO/yGfwP7sTO8CRQf5AnUIpwMhn8D8ZLIHAkUH+QCeTyT6SwQpBJpPJvpLBCkEnk8k+mqAcQCaTyb6aoBxAGSyBQJFB/kC7EztAkUH+QJ1CKUDIZ/A/SvzDP8hn8D8mk0m+zOWSPxliBr/icAhAWSxWwMzlkj9pX1q/3m5HQCqVCsBns+FAKBSqwGez4UCPx6PAbLXavo/Ho8DicLg+j8cjwe52m7+PxyPBbLXavl0ulz/kWBXBXS6XP/D8hMBdLpe/5FgVwV0ul7/w/ITAj8ejQOJwuD6Px6NAbLXavo/HI0Fstdq+j8cjQe52m79dLpc/j8cTwV0ulz+Px4PAXS6Xv4/HE8FdLpe/j8eDwI/Ho0BBIADAj8ejQAqFMsCPxyNBQSAAwI/HI0EKhTLAXS6Xv4/Hg8BdLpe/j8cTwV0ulz+Px4PAXS6XP4/HE8FdLpe/xNGIwF0ul79OQxfBXS6XP8TRiMBdLpc/TkMXwY/Ho8AKhTLAj8ejwEEgAMCPxyPBCoUywI/HI8FBIADAJpPJP0gkUr9dLpc/SCRSvyaTyT+4282/XS6XP7jbzb9dLpc/XS5XQF0ulz+TyeQ/JpPJP10uV0Amk8k/k8nkP/D3+z+TySRAXS6Xv5PJ5D9dLpe/XS5XQCaTyb+TyeQ/JpPJv10uV0Dw9/u/k8kkQPD3+z+TySRAJpPJP10uV0Amk8k/k8nkP10ulz+TyeQ/XS6XP10uV0BdLpe/SCRSvyaTyb9IJFK/XS6Xv7jbzb8mk8m/uNvNv/D3+7+TySRAJpPJv5PJ5D8mk8m/XS5XQF0ul79dLldAXS6Xv5PJ5D8mk8k/SCRSv10ulz9IJFK/JpPJP7jbzb9dLpc/uNvNv10ul79IJFK/JpPJv0gkUr9dLpe/uNvNvyaTyb+4282/W602wWy12r5brTbBCoUywCqVCsFstdq+KpUKwQqFMsDCYDDAXS63QPD3+79dLrdAXS4XwFutRkHw9/u/W61GQfD3+78qlRpBwmAwQGy12r7w9/s/bLXavsJgMEAKhTLA8Pf7PwqFMsBozVU/zlmVv4gtF7LYTrC/O+2CP1KptL84hyU+Mgizv1Ljnz64BLu/nAeSP5gf2b+hHeI+GLnHv5B3Cj+sR9i/n3AaP5qP679dLpc/QSAAwFLjHz9BIADAnAeSP7WwE8CfcBo/tHgKwJB3Cj+rHBTAO+2CP9jrJcChHeI+9WMcwFLjnz4lviLAOIclPmi8JsBozVU/mpM1wIgtF7IVGSjAaM1Vv5qTNcBdLhe/3pZBwF0uFz/elkHAooOcPg4kScCjg5y+DiRJwIgtF7Jut0vAOYclvmi8JsA77YK/2OslwFLjn74lviLAoR3ivvVjHMCQdwq/qxwUwJ0Hkr+1sBPAn3Aav7R4CsBdLpe/QSAAwFLjH79BIADAn3Aav5qP67+dB5K/mB/Zv5B3Cr+sR9i/oR3ivhi5x79S45++uAS7vzvtgr9SqbS/OYclvjIIs79ozVW/zlmVv10uF7+Mpnq/XS4XP4ymer+jg5y+ynFcv6KDnD7KcVy/iC0XskgkUr9dLhfAbLXavl0uF8AKhTLA8Pf7v2y12r7w9/u/CoUywMJgMEDM5ZI/wmAwQOJwCECMxeI/zOWSP4zF4j/ebkdAjMXiP+JwCEBdLhfBGmEBPyqVCsEaYQE/XS4XwTsANj8qlQrBOwA2P10uF8E0saO/XS4XwcQAvr8qlQrBNLGjvyqVCsHEAL6/XS4XwSrP779dLhfBXQ8FwCqVCsEqz++/KpUKwV0PBcBdLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwvyqVCsHghjy9XS4XweCGPL0qlQrBHM+Avl0uF8Ecz4C+XS4XQV0PBcBdLhdBKs/vvyqVCkFdDwXAKpUKQSrP779dLhdBOwA2PyqVCkE7ADY/XS4XQRthAT8qlQpBG2EBP10uF0FuKPC/XS4XQd7Y1b8qlQpBbijwvyqVCkHe2NW/XS4XQcQAvr9dLhdBNLGjvyqVCkHEAL6/KpUKQTSxo79dLhdBXQ8FwF0uF0Eqz++/KpUKQV0PBcAqlQpBKs/vv10uF0FWhjm/KpUKQVaGOb9dLhdBdiVuvyqVCkF2JW6/XS4XQW4o8L9dLhdB3tjVvyqVCkFuKPC/KpUKQd7Y1b9dLhfBNLGjv10uF8HEAL6/KpUKwTSxo78qlQrBxAC+vyqVCsE7ADY/XS4XwTsANj8qlQrBG2EBP10uF8EbYQE/KpUKQXglbr9dLhdBeCVuvyqVCkFYhjm/XS4XQViGOb9dLhdBxAC+v10uF0E0saO/KpUKQcQAvr8qlQpBNLGjv10uF8F4JW6/KpUKwXglbr9dLhfBWIY5vyqVCsFYhjm/XS4XwRzPgL4qlQrBHM+Avl0uF8Hghjy9KpUKweCGPL1dLhfBKs/vv10uF8FdDwXAKpUKwSrP778qlQrBXQ8FwCqVCsFWhjm/XS4XwVaGOb8qlQrBdiVuv10uF8F2JW6/KpUKQRzPgL5dLhdBHM+AviqVCkHghjy9XS4XQeCGPL1dLhfB3tjVv10uF8FuKPC/KpUKwd7Y1b8qlQrBbijwv10uF0Hghjy9KpUKQeCGPL1dLhdBHM+AviqVCkEcz4C+KpUKQRphAT9dLhdBGmEBPyqVCkE7ADY/XS4XQTsANj9brTZBCoUywFutNkFstdq+KpUKQQqFMsAqlQpBbLXavu/3+z8qlRpB8Pf7P10ut0Dw9/s/W61GQV0uF0BbrUZBwWAwQF0ut0BdLpc/XIIWPl0ulz/GYjFAXS6Xv1yCFj5dLpe/xmIxQF0ulz/icAhAXS6Xv+JwCEBdLpc/zOWSP10ul7/M5ZI/XS4Xv0UiQUBdLhe/IBCov10uFz9FIkFAXS4XPyAQqL/w9/u/XS63QPD3+79ZLPZAwWAwwF0ut0Dw9/u/KpUaQV0uF8BbrUZB8Pf7v1utRkFdLhdAbLXavvD3+z9stdq+XS4XQAqFMsDw9/s/CoUywMFgMMBstdq+wmAwwAqFMsDw9/u/bLXavvD3+78KhTLAXS6XP+JwCEBdLpe/4nAIQF0ulz/M5ZI/XS6Xv8zlkj9dLhc/4Djuv10uF7/gOO6/XS4XP4jAYMBdLhe/iMBgwF0ulz8qlRpBXS6XP1utRkFcLpe/KpUaQVwul79brUZBW602wdTpZMBbrTbBOBx+wCqVCsHU6WTAXS6XwE+ni8BdLpfA1OlkwF0ul7/U6WTAXS6Xv0+ni8BdLpc/1OlkwF0ulz9Pp4vAXS6XP9TpZMBdLpe/1OlkwF0ulz84HH7AXS6XvzgcfsBdLhc/0lHdv10uF7/SUd2/XS4XPwJNWMBdLhe/Ak1YwMJgMMDU6WTARSIBwGezocC35tO/1OlkwLlntL9pNILAEAgUQGezocBQM9o/aTSCwE6y+T/U6WTAjUZDQNTpZMBdLpe/zjvzPl0ulz/OO/M+XS6Xv8ZiMUBdLpc/xmIxQF0ulz/1LZ8/XS6Xv/Utnz9dLpc/uOkXvl0ul7+46Re+W602QTgcfsBbrTZB1OlkwF0ul0BPp4vAKpUKQdTpZMBdLpdA1OlkwMJgMEBdLrdAXS4XQFutRkHw9/s/XS63QPD3+z8qlRpB8Pf7P1utRkHw9/s/WSz2QIzF4r/ebkdAjMXiv+JwCECMxeK/zOWSP8JgMMDM5ZI/wmAwwOJwCEDw9/u/zOWSP10ulz/icLg+8Pf7P8zlkj/w9/s/CoUywF0ulz9stdq+XS6XP0EgAMBdLpe/bLXavl0ulz8KhTLAXS6XP9TpZMBdLpe/CoUywPD3+78KhTLAXS6Xv9TpZMBdLpe/4nC4Pl0ul79BIADA8Pf7v90zJsDw9/u/RMWjwPD3+z/dMybA8Pf7P0TFo8BDS7S/uNvNv3I4B7+4282/Q0u0v0gkUr9yOAe/SCRSv10ul8BEV7O/j8ejQERXs78qlQrBRFezvyqVCsFUOZO+j8ejQFQ5k75dLpfAVDmTvlks1sBstdq+XS6XwGy12r5dLpfAzOWSP4/Ho0DM5ZI/wmAwwGy12r5dLpfACoUywMJgMMBBIADAJpNJQGy12r6Px6NACoUywCaTSUBBIADA8Pf7P10ut0BdLpc/WSwWwPD3+z+Px4PAJ5PJPiKRSMDw9/u/j8eDwF0ulz82m00/JpPJviKRSMBdLpe/WSwWwF0ul782m00/XS6Xv8ZiMUBdLpe/wmBwQF0ulz/CYHBA8Pf7v10ut0BdLpc/xmIxQCZ9EsC4282/Q0u0v7jbzb8mfRLASCRSv0NLtL9IJFK/8Pf7v2y12r6Cr1A+GOaev/D3+z9stdq+JpPJPrD3qL/wiA4/Cvy4v/D3+z8KhTLATC0Xsu52m7+jkS4/uNvNv9C0Qj+QKua/JpNJP0EgAMDQtEI/OSsNwKORLj+lUhnA8IgOP3zCI8Amk8k+qcQrwIKvUD51zTDATC0XsgqFMsDw9/u/CoUywF0ul7/U6WTAXS6XP9TpZMCEr1C+dc0wwCeTyb6pxCvA8IgOv3zCI8CkkS6/pVIZwNG0Qr85Kw3AJpNJv0EgAMDRtEK/kCrmv6SRLr+4282/8IgOvwr8uL8nk8m+sPeov4SvUL4Y5p6/KpUKQUZXs78qlQpBVDmTvl0ul0BGV7O/XS6XQFQ5k76Px6PARlezv4/Ho8BUOZO+Jn0SQLjbzb8mfRJASCRSv0NLtD+4282/Q0u0P0gkUr9DS7Q/uNvNv0NLtD9IJFK/cjgHP7jbzb9yOAc/SCRSv10ul0Bstdq+wmAwQEEgAMBdLpdACoUywI/Ho8AKhTLAJpNJwEEgAMAmk0nAbLXavsJgMEBstdq+j8ejwMzlkj9dLpdAzOWSP1ks1kBstdq+XS6Xv4/Hg8BdLhe/wWBwQF0ul79dLrdAXC6XP10ut0BcLhc/wWBwQFwuFz9c8ylAXC4XP5xkc79cLhc/jUYDwF0uF7+NRgPAXC6XP4/Hg8BdLhe/XPMpQF0uF7+cZHO/8Pf7P1ks9kB8JDRBCoUywHwkNEFstdq+2b2RQAqFMsDZvZFAbLXavl0uFz+gZjS/XS4XP9wzGkBdLhe/oGY0v10uF7/cMxpAwmAwQNTpZMC35tM/1OlkwEUiAUBns6HAuWe0P2k0gsAQCBTAZ7OhwFAz2r9pNILATrL5v9TpZMCNRkPA1OlkwF0uFz/nJw7AXS4Xv+cnDsBdLhc/ml4xwF0uF7+aXjHAXS4XP26bFsBdLhe/bpsWwF0uFz8h0jnAXS4XvyHSOcB8JDTBbLXavnwkNMEKhTLA2b2RwGy12r7ZvZHACoUywHUul78hsUFBZy6XvyLXrEBELpc/IrFBQVMulz8k16xA8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7vyqVGkHw9/u/WSz2QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/XS63QPD3+z8qlRpB8Pf7P1ks9kDw9/s/KpUaQQ=="), -"format": 34359742487, -"index_count": 18, -"index_data": PackedByteArray("awNpA2oDbgNsA20DcQNvA3ADdANyA3MDdwN1A3YDeQN4A3YD"), -"material": SubResource("StandardMaterial3D_y7a7m"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("Ctcjvc3MzDspXI++CtcjPc3MzDspXI++CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+CtcjvZmZ2T3hepS+CtcjPZmZ2T24HoW+CtcjPZmZ2T3hepS+CtcjvfYonD3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T3hepS+CtcjPZmZ2T3hepS+Ctcjvc3MzDu4HoW+kML1POF6FD24HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+kML1PGZmZj24HoW+kML1PPYonD24HoW+kML1vGZmZj24HoW+kML1PLgexT24HoW+kML1vLgexT24HoW+kML1vOF6FD24HoW+CtcjvZmZ2T24HoW+kML1vPYonD24HoW+Ctcjvc3MzDspXI++Ctcjvc3MzDu4HoW+CtcjPc3MzDspXI++CtcjPc3MzDu4HoW+CtcjPc3MzDu4HoW+CtcjPZmZ2T24HoW+CtcjPc3MzDspXI++CtcjPZmZ2T3hepS+CtcjPfYonD3hepS+CtcjvZmZ2T24HoW+Ctcjvc3MzDu4HoW+CtcjvZmZ2T3hepS+Ctcjvc3MzDspXI++CtcjvfYonD3hepS+kML1POF6FD0pXI89zcxMPeF6FD0pXI89kML1PPYonD0pXI89zcxMPfYonD0pXI89kML1PPYonD0K16O9kML1PPYonD0pXI89zcxMPfYonD0K16O9zcxMPfYonD0pXI89kML1POF6FD0pXI89kML1POF6FD0K16O9zcxMPeF6FD0pXI89zcxMPeF6FD0K16O9kML1PBWuhz2QwnU9kML1PKNwPT2QwnU9kML1POF6FD0pXI89kML1POF6FD0K16O9kML1PKNwPT0K16M8kML1PPYonD0K16O9kML1PPYonD0pXI89kML1PBWuhz0K16M8zcxMPeF6FD0K16O9kML1POF6FD0K16O9zcxMPfYonD0K16O9kML1PPYonD0K16O9kML1vOF6FD0K16O9zcxMveF6FD0K16O9kML1vPYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0K16O9zcxMvfYonD0pXI89kML1vPYonD0K16O9kML1vPYonD0pXI89kML1vOF6FD0pXI89kML1vBWuhz2QwnU9kML1vPYonD0pXI89kML1vPYonD0K16O9kML1vBWuhz0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1vOF6FD0K16O9zcxMveF6FD0pXI89kML1vOF6FD0pXI89zcxMvfYonD0pXI89kML1vPYonD0pXI89kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+823+u4agQT2QwnU+823+u4agQT3hepQ+zcxMveF6FD0pXI89zcxMveF6FD0K16O9kML1vOF6FD0pXI89kML1vOF6FD0K16O9kML1PPYonD3hepQ+y2LtPNUPrD3hepQ+kML1PPYonD2QwnU+y2LtPNUPrD2QwnU+y2LtPBZCjD3hepQ+kML1PPYonD3hepQ+y2LtPBZCjD2QwnU+kML1PPYonD2QwnU+nNXUPEfhej3hepQ+y2LtPBZCjD3hepQ+nNXUPEfhej2QwnU+y2LtPBZCjD2QwnU+zWLtvNUPrD3hepQ+kML1vPYonD3hepQ+zWLtvNUPrD2QwnU+kML1vPYonD2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+nNXUPEjhuj3hepQ+UMetPMmaxz3hepQ+nNXUPEjhuj2QwnU+UMetPMmaxz2QwnU+UMetPERuYT3hepQ+nNXUPEfhej3hepQ+UMetPERuYT2QwnU+nNXUPEfhej2QwnU+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+UMetPERuYT2QwnU+UMetPERuYT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+kMJ1PB3nTT2QwnU+kMJ1PB3nTT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ+8W3+O4agQT2QwnU+8W3+O4agQT3hepQ+zWLtvBZCjD3hepQ+nNXUvEfhej3hepQ+zWLtvBZCjD2QwnU+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+UMetvERuYT3hepQ+kMJ1vB3nTT2QwnU+kMJ1vB3nTT3hepQ+nNXUvEfhej3hepQ+UMetvERuYT3hepQ+nNXUvEfhej2QwnU+UMetvERuYT2QwnU+kML1vPYonD3hepQ+zWLtvBZCjD3hepQ+kML1vPYonD2QwnU+zWLtvBZCjD2QwnU+nNXUvEjhuj3hepQ+zWLtvNUPrD3hepQ+nNXUvEjhuj2QwnU+zWLtvNUPrD2QwnU+UMetvMmaxz3hepQ+UMetvMmaxz2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+kMJ1vF1e0T3hepQ+kMJ1vF1e0T2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+823+u6iB1z3hepQ+823+u6iB1z2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+NcF1r5mZ2T3hepQ+NcF1r5mZ2T2QwnU+8W3+O6iB1z3hepQ+8W3+O6iB1z2QwnU+UMetvMmaxz3hepQ+nNXUvEjhuj3hepQ+UMetvMmaxz2QwnU+nNXUvEjhuj2QwnU+kMJ1PF1e0T3hepQ+kMJ1PF1e0T2QwnU+UMetPMmaxz3hepQ+UMetPMmaxz2QwnU+y2LtPNUPrD3hepQ+nNXUPEjhuj3hepQ+y2LtPNUPrD2QwnU+nNXUPEjhuj2QwnU+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+cMk3vCQisz1wPYo+cMk3vCQisz3hepQ++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+uw57vJ+RpD3hepQ+jxdhvJVnrD3hepQ+uw57vJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhvFbqiz3hepQ+uw57vEzAkz3hepQ+jxdhvFbqiz1wPYo+uw57vEzAkz1wPYo+823+u4agQT2QwnU+823+u4agQT3hepQ+NcF1r6NwPT2QwnU+NcF1r6NwPT3hepQ++vSBvPYonD3hepQ+uw57vJ+RpD3hepQ++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+jxdhvJVnrD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3vMcvhT3hepQ+cMk3vMcvhT1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo++vQBvOhLuD1wPYo++vQBvOhLuD3hepQ+lYqGu82Kuz1wPYo+lYqGu82Kuz3hepQ+uw57vEzAkz3hepQ++vSBvPYonD3hepQ+uw57vEzAkz1wPYo++vSBvPYonD1wPYo++vQBvAMGgD3hepQ++vQBvAMGgD1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+lYqGuz2OeT3hepQ+lYqGuz2OeT1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+NcF1r25Xdz3hepQ+NcF1r25Xdz1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo+lIqGOz2OeT3hepQ+lIqGOz2OeT1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo++vQBPAMGgD3hepQ++vQBPAMGgD1wPYo+cMk3PMcvhT3hepQ+cMk3PMcvhT1wPYo+cMk3vMcvhT3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT1wPYo+jxdhvFbqiz1wPYo+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+jxdhPFbqiz3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz1wPYo+cMk3PMcvhT1wPYo+uw57PEzAkz3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz1wPYo+jxdhPFbqiz1wPYo++vSBPPYonD3hepQ+uw57PEzAkz3hepQ++vSBPPYonD1wPYo+uw57PEzAkz1wPYo+NcF1r25Xdz1wPYo+lYqGuz2OeT1wPYo+lIqGOz2OeT1wPYo++vQBPAMGgD1wPYo++vQBvAMGgD1wPYo+cMk3vMcvhT1wPYo+cMk3PMcvhT1wPYo+jxdhPFbqiz1wPYo+jxdhvFbqiz1wPYo+uw57PEzAkz1wPYo+uw57vEzAkz1wPYo++vSBPPYonD1wPYo++vSBvPYonD1wPYo+uw57vJ+RpD1wPYo+uw57PJ+RpD1wPYo+jxdhvJVnrD1wPYo+jxdhPJVnrD1wPYo+cMk3vCQisz1wPYo+cMk3PCQisz1wPYo++vQBPOhLuD1wPYo++vQBvOhLuD1wPYo+lYqGu82Kuz1wPYo+lIqGO82Kuz1wPYo+NcF1rzSmvD1wPYo+cMk3PCQisz3hepQ+jxdhPJVnrD3hepQ+cMk3PCQisz1wPYo+jxdhPJVnrD1wPYo+NcF1r6NwPT2QwnU+8W3+O4agQT2QwnU+823+u4agQT2QwnU+kMJ1vB3nTT2QwnU+kMJ1PB3nTT2QwnU+UMetvERuYT2QwnU+UMetPERuYT2QwnU+NcF1r2ZmZj2QwnU+op6pu/wwaT2QwnU+nNXUvEfhej2QwnU+C9cjvA1gcT2QwnU+a7RnvNFkfj2QwnU+zWLtvBZCjD2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2QwnU+kML1vPYonD2QwnU+CtejvPYonD2QwnU+zWLtvNUPrD2QwnU+3kGevODCpj2QwnU+veONvNejsD2QwnU+nNXUvEjhuj2QwnU+a7RnvIMfuT2QwnU+C9cjvOWhvz2QwnU+UMetvMmaxz2QwnU+op6pu225wz2QwnU+NcF1r7gexT2QwnU+UMetPMmaxz2QwnU+oJ6pO225wz2QwnU+CtcjPOWhvz2QwnU+nNXUPEjhuj2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2QwnU+y2LtPNUPrD2QwnU+3UGePODCpj2QwnU+kML1PPYonD2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2QwnU+y2LtPBZCjD2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2QwnU+nNXUPEfhej2QwnU+CtcjPA1gcT2QwnU+oJ6pO/wwaT2QwnU+kMJ1vF1e0T2QwnU+kMJ1PF1e0T2QwnU+823+u6iB1z2QwnU+8W3+O6iB1z2QwnU+NcF1r5mZ2T2QwnU++vQBPOhLuD1wPYo++vQBPOhLuD3hepQ+cMk3PCQisz1wPYo+cMk3PCQisz3hepQ+uw57PJ+RpD3hepQ++vSBPPYonD3hepQ+uw57PJ+RpD1wPYo++vSBPPYonD1wPYo+jxdhPJVnrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD1wPYo+uw57PJ+RpD1wPYo+NcF1rzSmvD1wPYo+NcF1rzSmvD3hepQ+lIqGO82Kuz1wPYo+lIqGO82Kuz3hepQ+kML1PB6F67wNdFq8kML1vB6F67wNdFq8kML1PJDCdbsK16O7kML1vJDCdbsK16O7kML1PKRwHb6tR2G9kML1vKRwHb6tR2G9kML1PPYoXL1LfrG8kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1PKRwHb6tR2G9kML1vKRwHb5wPQq+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+kML1PJDCdbsK16O7kML1PJDCdbt7FK69kML1PB6F67wNdFq8kML1PPYoXL1LfrG8kML1PKRwHb6tR2G9kML1PKRwHb5wPQq+kML1vJDCdbt7FK69kML1vKRwHb5wPQq+C9cjvJDCdbs9Cte9C9cjvKRwHb5SuB6+C9cjvKRwHb5SuB6+CtcjPKRwHb5SuB6+C9cjvJDCdbs9Cte9CtcjPJDCdbs9Cte9CtcjPKRwHb5SuB6+kML1PKRwHb5wPQq+CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1vJDCdbsK16O7kML1vB6F67wNdFq8kML1vJDCdbt7FK69kML1vPYoXL1LfrG8kML1vKRwHb6tR2G9kML1vKRwHb5wPQq+kML1vOF6FD24HgW+kML1vLgehTy4HgW+kML1vGZmZj24HoW+kML1vOF6FD24HoW+kML1vOF6FD24HoW+kML1vLgehTy4HgW+kML1POF6FD24HoW+kML1PLgehTy4HgW+kML1PLgehTy4HgW+kML1POF6FD24HgW+kML1POF6FD24HoW+kML1PGZmZj24HoW+kML1vPYonD24HoW+kML1vPYonD24HgW+kML1PPYonD24HoW+kML1PPYonD24HgW+kML1PPYonD24HgW+kML1PLgexT24HgW+kML1PPYonD24HoW+kML1PLgexT24HoW+kML1vLgexT24HgW+kML1vLgexT24HoW+kML1PLgexT24HgW+kML1PLgexT24HoW+kML1vOF6FD24HgW+kML1vGZmZj24HoW+kML1POF6FD24HgW+kML1PGZmZj24HoW+kML1vLgexT24HgW+kML1vPYonD24HgW+kML1vLgexT24HoW+kML1vPYonD24HoW+CtcjPaNwPT2QwnU9kML1PKNwPT2QwnU9CtcjPRWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz2QwnU9kML1PBWuhz0K16M8CtcjPRWuhz2QwnU9CtcjPRWuhz0K16M8zcxMPRWuhz0K1yM9kML1PKNwPT0K16M8kML1PKNwPT2QwnU9CtcjPaNwPT0K16M8CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9zcxMvaNwPT0K1yM9CtcjvaNwPT2QwnU9CtcjvaNwPT0K16M8kML1vKNwPT0K16M8kML1vKNwPT2QwnU9kML1PKNwPT0K16M8CtcjPaNwPT0K16M8kML1PBWuhz0K16M8CtcjPRWuhz0K16M8zcxMvRWuhz0K1yM9CtcjvRWuhz0K16M8CtcjvRWuhz2QwnU9kML1vBWuhz2QwnU9kML1vBWuhz0K16M8CtcjvaNwPT0K16M8kML1vKNwPT0K16M8CtcjvRWuhz0K16M8kML1vBWuhz0K16M8kML1vKNwPT2QwnU9CtcjvaNwPT2QwnU9kML1vBWuhz2QwnU9CtcjvRWuhz2QwnU9zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9kMJ1vbgexT3hepQ+zcxMvbgexT3hepQ+zcxMvbgexT2tR2E+KVyPveF6FD2QwvU9zcxMveF6FD2QwvU9KVyPvbgexT2QwvU9zcxMvbgexT2QwvU9UMetPERuYT3hepQ+NcF1r25Xdz3hepQ+nNXUPEfhej3hepQ+lIqGOz2OeT3hepQ++vQBPAMGgD3hepQ+y2LtPBZCjD3hepQ+cMk3PMcvhT3hepQ+jxdhPFbqiz3hepQ+uw57PEzAkz3hepQ+kML1PPYonD3hepQ++vSBPPYonD3hepQ+y2LtPNUPrD3hepQ+uw57PJ+RpD3hepQ+jxdhPJVnrD3hepQ+nNXUPEjhuj3hepQ+cMk3PCQisz3hepQ++vQBPOhLuD3hepQ+lIqGO82Kuz3hepQ+UMetPMmaxz3hepQ+NcF1rzSmvD3hepQ+UMetvMmaxz3hepQ+kMJ1vF1e0T3hepQ+kMJ1PF1e0T3hepQ+8W3+O6iB1z3hepQ+823+u6iB1z3hepQ+NcF1r5mZ2T3hepQ+lYqGu82Kuz3hepQ+nNXUvEjhuj3hepQ++vQBvOhLuD3hepQ+cMk3vCQisz3hepQ+jxdhvJVnrD3hepQ+zWLtvNUPrD3hepQ+uw57vJ+RpD3hepQ+kML1vPYonD3hepQ++vSBvPYonD3hepQ+uw57vEzAkz3hepQ+zWLtvBZCjD3hepQ+jxdhvFbqiz3hepQ+cMk3vMcvhT3hepQ++vQBvAMGgD3hepQ+nNXUvEfhej3hepQ+lYqGuz2OeT3hepQ+UMetvERuYT3hepQ+kMJ1vB3nTT3hepQ+kMJ1PB3nTT3hepQ+823+u4agQT3hepQ+8W3+O4agQT3hepQ+NcF1r6NwPT3hepQ+kMJ1veF6FD3hepQ+kMJ1vbgexT3hepQ+zcxMveF6FD3hepQ+zcxMvbgexT3hepQ+kML1vJDCdbspXI89kML1vB6F67wpXI89kML1vJPCdbvsUTg9kML1vPYoXL3sUTg9kML1vB6F67zsUTg9NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+vOONPNejsD2QwnU+a7RnPIMfuT2QwnU+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtejPPYonD2QwnU+3UGePODCpj2QwnU+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPBWuhz2QwnU+3UGePAuPkT2QwnU+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+3kGevODCpj2QwnU+CtejvPYonD2QwnU+3kGevODCpj2tR2E+CtejvPYonD2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+NcF1r7gexT2QwnU+NcF1r7gexT2tR2E+veONvNejsD2QwnU+3kGevODCpj2QwnU+veONvNejsD2tR2E+3kGevODCpj2tR2E+a7RnvIMfuT2QwnU+veONvNejsD2QwnU+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+CtejvPYonD2QwnU+3kGevAuPkT2QwnU+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+a7RnvIMfuT2QwnU+a7RnvIMfuT2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+3kGevAuPkT2QwnU+veONvBWuhz2QwnU+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnPNFkfj2QwnU+vOONPBWuhz2QwnU+a7RnPNFkfj2tR2E+vOONPBWuhz2tR2E+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+oJ6pO/wwaT2tR2E+oJ6pO/wwaT2QwnU+a7RnvNFkfj2tR2E+a7RnvNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+veONvBWuhz2QwnU+a7RnvNFkfj2QwnU+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+a7RnPIMfuT2QwnU+a7RnPIMfuT2tR2E+oJ6pO225wz2QwnU+oJ6pO225wz2tR2E+CtcjPOWhvz2QwnU+CtcjPOWhvz2tR2E+3UGePAuPkT2QwnU+CtejPPYonD2QwnU+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+CtcjPA1gcT2tR2E+CtcjPA1gcT2QwnU+a7RnPNFkfj2tR2E+a7RnPNFkfj2QwnU+C9cjvA1gcT2tR2E+C9cjvA1gcT2QwnU+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+3UGePODCpj2QwnU+vOONPNejsD2QwnU+3UGePODCpj2tR2E+vOONPNejsD2tR2E+C9cjvOWhvz2QwnU+C9cjvOWhvz2tR2E+op6pu225wz2QwnU+op6pu225wz2tR2E+op6pu/wwaT2tR2E+op6pu/wwaT2QwnU+NcF1r2ZmZj2tR2E+NcF1r2ZmZj2QwnU+zcxMPbgexT3hepQ+zcxMPeF6FD3hepQ+zcxMPbgexT2tR2E+zcxMPeF6FD2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT3hepQ+kMJ1PbgexT3hepQ+KVyPPbgexT2QwvU9kML1vPYoXL1LfrG8kML1vPYoXL3sUTg9kML1PPYoXL1LfrG8kML1PPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1PJDCdbspXI89kML1vJDCdbspXI89kMJ1vKRwHT6G61E9kMJ1vKRwHT7Xo3C9kMJ1PKRwHT6G61E9kMJ1PKRwHT7Xo3C9zcxMPeF6FD2QwvU9zcxMPeF6FD17FC4+KFyPPeF6FD2QwvU9zcxMPeF6FD2tR2E+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PeF6FD3hepQ+zcxMPeF6FD3hepQ+kMJ1PbgexT3hepQ+zcxMPbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1vJPCdbvsUTg9kML1PJPCdbvsUTg9kMJ1PHsU7j0pXI89kMJ1vHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1vKRwHT6G61E9kML1vHsU7j2tR2E+kML1vHsU7j3hepQ+kML1PHsU7j2tR2E+kML1PHsU7j3hepQ+kML1PHsU7j3hepQ+kML1PK5HAT7hepQ+kML1PHsU7j2tR2E+kML1PB+FCz6QwvU9kML1PHsU7j2QwvU9kML1PHsU7j2QwvU9kML1PB+FCz6QwvU9kML1vHsU7j2QwvU9kML1vB+FCz6QwvU9kML1PHsU7j3hepQ+kML1vHsU7j3hepQ+kML1PK5HAT7hepQ+kML1vK5HAT7hepQ+kMJ1vHsU7j1SuJ69kMJ1PHsU7j1SuJ69kMJ1vKRwHT7Xo3C9kMJ1PKRwHT7Xo3C9kMJ1PHsU7j0pXI89kMJ1PKRwHT6G61E9kMJ1PHsU7j27Oyw9kMJ1PArXAz4hohI9kMJ1PKRwHT7Xo3C9kMJ1PArXAz5zWjG9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kML1vB6F67wNdFq8kML1PB6F67wNdFq8kML1vB6F67zsUTg9kML1PB6F67zsUTg9kML1PPYoXL3sUTg9kML1vPYoXL3sUTg9kML1PB6F67wpXI89kML1vB6F67wpXI89kML1vK5HAT7hepQ+kML1vHsU7j3hepQ+kML1vB+FCz6QwvU9kML1vHsU7j2tR2E+kML1vHsU7j2QwvU9KVyPveF6FD2QwvU9kMJ1veF6FD3hepQ+zcxMveF6FD2QwvU9zcxMveF6FD2tR2E+zcxMveF6FD3hepQ+zcxMveF6FD17FC4+kML1PPYoXL3sUTg9kML1PB6F67zsUTg9kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1PB6F67wpXI89zcxMPZDCdbu4HgW+kML1vLgehTy4HgW+zcxMvZDCdbu4HgW+zcxMvbgexT24HgW+kML1vOF6FD24HgW+kML1vPYonD24HgW+kML1POF6FD24HgW+kML1vLgexT24HgW+kML1vHsU7j24HgW+kML1PLgexT24HgW+zcxMPbgexT24HgW+kML1PHsU7j24HgW+kML1PLgehTy4HgW+kML1PPYonD24HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+zcxMPZDCdbuQwvU9zcxMPeF6FD17FC4+CtcjPRWuhz2QwnU9zcxMPRWuhz0K1yM9CtcjPaNwPT2QwnU9zcxMPaNwPT0K1yM9kML1PHsU7j2QwvU9kML1PHsU7j24HgW+kML1PHsU7j2tR2E+zcxMPbgexT2tR2E+zcxMPbgexT24HgW+zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPZDCdbuQwvU9zcxMPZDCdbu4HgW+zcxMPeF6FD0pXI89zcxMPbgexT2QwvU9zcxMPfYonD0pXI89zcxMPeF6FD0K16O9zcxMPbgexT24HgW+zcxMPfYonD0K16O9zcxMvZDCdbuQwvU9kML1vJDCdbt7FK69zcxMvZDCdbu4HgW+C9cjvJDCdbs9Cte9zcxMPZDCdbu4HgW+kML1vJDCdbsK16O7CtcjPJDCdbs9Cte9kML1PJDCdbt7FK69kML1PJDCdbsK16O7kML1PJPCdbvsUTg9kML1PJDCdbspXI89kML1vJDCdbspXI89zcxMPZDCdbuQwvU9kML1vJPCdbvsUTg9zcxMPRWuhz0K1yM9CtcjPRWuhz0K16M8zcxMPaNwPT0K1yM9CtcjPaNwPT0K16M8zcxMveF6FD2tR2E+oJ6pO/wwaT2tR2E+zcxMPeF6FD2tR2E+CtcjPA1gcT2tR2E+a7RnPNFkfj2tR2E+zcxMPbgexT2tR2E+NcF1r2ZmZj2tR2E+vOONPBWuhz2tR2E+3UGePAuPkT2tR2E+CtejPPYonD2tR2E+3UGePODCpj2tR2E+vOONPNejsD2tR2E+a7RnPIMfuT2tR2E+CtcjPOWhvz2tR2E+oJ6pO225wz2tR2E+NcF1r7gexT2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2tR2E+kML1PHsU7j2tR2E+op6pu225wz2tR2E+C9cjvOWhvz2tR2E+a7RnvIMfuT2tR2E+veONvNejsD2tR2E+3kGevODCpj2tR2E+CtejvPYonD2tR2E+3kGevAuPkT2tR2E+veONvBWuhz2tR2E+a7RnvNFkfj2tR2E+C9cjvA1gcT2tR2E+op6pu/wwaT2tR2E+kML1vHsU7j2tR2E+zcxMvbgexT2tR2E+kML1vHsU7j2QwvU9zcxMvbgexT2QwvU9kML1vHsU7j24HgW+zcxMvbgexT24HgW+zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9CtcjvRWuhz0K16M8CtcjvaNwPT0K16M8CtcjvRWuhz2QwnU9CtcjvaNwPT2QwnU9zcxMvRWuhz0K1yM9zcxMvaNwPT0K1yM9zcxMveF6FD2QwvU9zcxMvfYonD0pXI89zcxMvbgexT2QwvU9zcxMvbgexT24HgW+zcxMvfYonD0K16O9zcxMveF6FD0K16O9zcxMveF6FD0pXI89zcxMvZDCdbu4HgW+zcxMvZDCdbuQwvU9zcxMveF6FD17FC4+kML1vHsU7j24HgW+kMJ1vHsU7j0pXI89kML1vHsU7j2QwvU9kML1PHsU7j2QwvU9kMJ1PHsU7j0pXI89kMJ1PHsU7j27Oyw9kMJ1PHsU7j0M9Eq9kMJ1PHsU7j1SuJ69kMJ1vHsU7j1SuJ69kML1PHsU7j24HgW+kMJ1vHsU7j27Oyw9kMJ1vHsU7j0M9Eq9zcxMveF6FD17FC4+kMJ1vbgexT3hepQ+kMJ1veF6FD3hepQ+KVyPvbgexT2QwvU9KVyPveF6FD2QwvU9kMJ1vArXAz5zWjG9kMJ1vArXAz4hohI9kMJ1PArXAz5zWjG9kMJ1PArXAz4hohI9kMJ1vHsU7j0pXI89kMJ1vHsU7j27Oyw9kMJ1vKRwHT6G61E9kMJ1vArXAz4hohI9kMJ1vKRwHT7Xo3C9kMJ1vArXAz5zWjG9kMJ1vHsU7j0M9Eq9kMJ1vHsU7j1SuJ69kMJ1PHsU7j0M9Eq9kMJ1vHsU7j0M9Eq9kMJ1PArXAz5zWjG9kMJ1vArXAz5zWjG9kMJ1vHsU7j27Oyw9kMJ1PHsU7j27Oyw9kMJ1vArXAz4hohI9kMJ1PArXAz4hohI9kMJ1PeF6FD3hepQ+kMJ1PbgexT3hepQ+KFyPPeF6FD2QwvU9KVyPPbgexT2QwvU9kML1vK5HAT7hepQ+kML1vB+FCz6QwvU9kML1PK5HAT7hepQ+kML1PB+FCz6QwvU9zcxMPeF6FD2tR2E+zcxMPeF6FD17FC4+zcxMPbgexT2tR2E+zcxMPbgexT2QwvU9zcxMPbgexT2tR2E+zcxMPeF6FD17FC4+zcxMPeF6FD2QwvU9zcxMPbgexT2QwvU9zcxMPeF6FD17FC4+zcxMveF6FD2tR2E+zcxMvbgexT2tR2E+zcxMveF6FD17FC4+zcxMvbgexT2QwvU9zcxMveF6FD17FC4+zcxMvbgexT2tR2E+zcxMveF6FD2QwvU9zcxMvbgexT2QwvU9/+8AAAAAAID/7wAAAAAAgP/vAAAAAACA/+8AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA8mQMGwAAAIDyZAwbAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgCXRJVEAAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIAMm/LkAAAAgAyb8uQAAACA2a4l0QAAAIDZriXRAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA/7//PwAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAIDZrtkuAAAAgNmu2S4AAACA/7//PwAAAID/v/8/AAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACA/38AAAAAAID/fwAAAAAAgAybDBsAAACADJsMGwAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAIDZLiVRAAAAgP8//z8AAACA/z//PwAAAIAlUdkuAAAAgCVR2S4AAACA2S4lUQAAAID/P/8/AAAAgNkuJVEAAACA/z//PwAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAID/P/+/AAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgCVRJdEAAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgAyb8uQAAACADJvy5AAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIDZLtmuAAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACA8uQMmwAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIAMmwwbAAAAgAybDBsAAACA/38AAAAAAID/fwAAAAAAgP+//z8AAACA/7//PwAAAIDZrtkuAAAAgNmu2S4AAACA8uTyZAAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIAl0dmuAAAAgPLkDJsAAACAJdHZrgAAAIDy5AybAAAAgPJkDBsAAACA8mQMGwAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAIAl0SVRAAAAgP+//z8AAACAJdElUQAAAID/v/8/AAAAgP+//78AAACA/7//vwAAAIDZriXRAAAAgNmuJdEAAACA2a7ZLgAAAIDZrtkuAAAAgAybDBsAAACADJsMGwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAID///9/AAAAgNmuJdEAAACA2a4l0QAAAIAMm/LkAAAAgAyb8uQAAACADJvy5AAAAIAMm/LkAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA8mTy5AAAAIDyZPLkAAAAgPJk8uQAAACA8mTy5AAAAIAlUSXRAAAAgCVRJdEAAACAJVEl0QAAAIAlUSXRAAAAgP8//78AAACA/z//vwAAAID/v/+/AAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgPJkDBsAAACA8mQMGwAAAIAlUdkuAAAAgCVR2S4AAACA2S7ZrgAAAID/P/+/AAAAgNku2a4AAACA/z//vwAAAIAMGwybAAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAAA/38AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//PwAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIAlUdkuAAAAgCVR2S4AAACA/z//PwAAAID/P/8/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgAAA/38AAACA2S4lUQAAAIAMG/JkAAAAgNkuJVEAAACADBvyZAAAAID/fwAAAAAAgP9/AAAAAACA8mQMGwAAAIDyZAwbAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIBJEiPJAAAAgEkSI8kAAACASRIjyQAAAIBJEiPJAAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACAte0jyQAAAIC17SPJAAAAgLXtI8kAAACAte0jyQAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgBCRAAAAAACAEJEAAAAAAIAQkQAAAAAAgBCRAAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f+3uAAAAgP9/7e4AAACA/3/t7gAAAID/f+3uAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/f///AAAAgP9///8AAACADJvy5AAAAIAMm/LkAAAAgCXR2a4AAACA/7//vwAAAIAl0dmuAAAAgP+//78AAACA////fwAAAIDy5AybAAAAgP///38AAACA8uQMmwAAAIAl0SVRAAAAgPLk8mQAAACAJdElUQAAAIDy5PJkAAAAgAybDBsAAACADJsMGwAAAIDZrtkuAAAAgNmu2S4AAACADBsMmwAAAIAAAP9/AAAAgAwbDJsAAACAAAD/fwAAAIDyZPLkAAAAgPJk8uQAAACA/3///wAAAID/f///AAAAgNku2a4AAACADBsMmwAAAIDZLtmuAAAAgAwbDJsAAACA/z//vwAAAIDZLtmuAAAAgP8//78AAACA2S7ZrgAAAIAAAP9/AAAAgAwb8mQAAACAAAD/fwAAAIAMG/JkAAAAgP8//78AAACA/z//vwAAAIAlUSXRAAAAgCVRJdEAAACADBvyZAAAAIDZLiVRAAAAgAwb8mQAAACA2S4lUQAAAID/v/8/AAAAgCXRJVEAAACA/7//PwAAAIAl0SVRAAAAgP9/AAAAAACA/38AAAAAAIAMmwwbAAAAgAybDBsAAACA/z//PwAAAID/P/8/AAAAgCVR2S4AAACAJVHZLgAAAIDZLiVRAAAAgP8//z8AAACA2S4lUQAAAID/P/8/AAAAgNmuJdEAAACA2a4l0QAAAID/v/+/AAAAgP+//78AAACADJvy5AAAAIAMm/LkAAAAgNmuJdEAAACA2a4l0QAAAIDy5PJkAAAAgP///38AAACA8uTyZAAAAID///9/AAAAgNmu2S4AAACA2a7ZLgAAAID/v/8/AAAAgP+//z8AAACAJVHZLgAAAIAlUdkuAAAAgPJkDBsAAACA8mQMGwAAAIDy5AybAAAAgCXR2a4AAACA8uQMmwAAAIAl0dmuAAAAgCVRJdEAAACAJVEl0QAAAIDyZPLkAAAAgPJk8uQAAACA8mQMGwAAAIDyZAwbAAAAgP9/AAAAAACA/38AAAAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/f6qqAAAAgP9/qqoAAACA/3+qqgAAAID/f6qqAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIBU1f//AAAAgFTV//8AAACAVNX//wAAAIBU1f//AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//z8AAACA/3//PwAAAID/f/8/AAAAgP9//z8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3/jOAAAAID/f+M4AAAAgP9/4zgAAACA/3/jOAAAAIBU1f9/AAAAgFTV/38AAACAVNX/fwAAAIBU1f9/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAID/v/+/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP//qaoAAACA//+pqgAAAID//6mqAAAAgP//qaoAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACAAACpqgAAAIAAAKmqAAAAgAAAqaoAAACAAACpqgAAAICqKv9/AAAAgKoq/38AAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAIAcB/9/AAAAgBwH/38AAACAHAf/fwAAAIAcB/9/AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP9/VFUAAACA/39UVQAAAID/f1RVAAAAgP9/VFUAAACAVNUAAAAAAIBU1QAAAAAAgFTVAAAAAACAVNUAAAAAAIDi+P9/AAAAgOL4/38AAACA4vj/fwAAAIDi+P9/AAAAgP9/4vgAAACA/3/i+AAAAID/f+L4AAAAgP9/4vgAAACAAAD/f/9///8AAP9//3///wAA/3//f///AAD/f/9/Fp0AAP9//38WnQAA/3//fxadAAD/f/9//78AAP9//3//vwAA/3//f/+/////f////7////9/////v////3////+/////f////7////9/////v////3////+/////f////7////9/////vw==") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_fiwtu") - -[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_gr7x2"] -points = PackedVector3Array(-0.0100039, -0.15375, -0.155049, -0.040002, 0.00623067, -0.280008, 0.00999022, -0.15375, -0.155049, -0.0300117, -0.15375, -0.135008, -0.040002, 0.0762429, -0.29, 0.0399883, 0.00623067, -0.280008, -0.0500059, -0.00376248, -0.130012, -0.07, 0.0362402, 0.119963, 0.029998, -0.15375, -0.135008, -0.0300117, -0.15375, -0.0550137, -0.040002, 0.106222, -0.29, 0.0399883, 0.0762429, -0.29, 0.0699863, 0.0362402, 0.119963, 0.0499922, -0.00376248, -0.130012, -0.07, 0.0962292, 0.119963, -0.0600098, 0.0362402, 0.29, 0.029998, -0.15375, -0.0550137, -0.0150059, 0.15375, -0.0587608, 0.0399883, 0.106222, -0.29, 0.07, 0.0962292, 0.119963, 0.0599961, 0.0362402, 0.29, -0.0300117, 0.136232, 0.119963, -0.0150059, 0.15375, 0.0512099, -0.0600098, 0.0962292, 0.29, -0.0300117, 0.126239, 0.29, 0.0149922, 0.15375, -0.0587608, 0.0149922, 0.15375, 0.0512099, 0.029998, 0.136232, 0.119963, 0.029998, 0.126239, 0.29, 0.0599961, 0.0962292, 0.29) - -[node name="blasterN" type="RigidBody3D"] -collision_layer = 8 -collision_mask = 13 -script = ExtResource("1_v38gi") - -[node name="blasterN2" type="MeshInstance3D" parent="."] -mesh = SubResource("ArrayMesh_1ovk8") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource("ConvexPolygonShape3D_gr7x2") diff --git a/client/template/Spawnable_Objects/bullet.tscn b/client/template/Spawnable_Objects/bullet.tscn deleted file mode 100644 index 6a244d0..0000000 --- a/client/template/Spawnable_Objects/bullet.tscn +++ /dev/null @@ -1,65 +0,0 @@ -[gd_scene load_steps=5 format=4 uid="uid://dxlkgbr1p580"] - -[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_bix2d"] -radius = 0.099605 -height = 0.419677 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x0fj0"] -resource_name = "yellow" -vertex_color_use_as_albedo = true -albedo_color = Color(0.0627451, 0.639216, 0.576471, 1) -metallic = 1.0 -emission_enabled = true -emission = Color(0, 0.960784, 0.960784, 1) -emission_energy_multiplier = 1.78 - -[sub_resource type="ArrayMesh" id="ArrayMesh_ly6dy"] -_surfaces = [{ -"aabb": AABB(-0.01, -0.025, -0.01, 0.02, 0.05, 0.02), -"format": 34359742465, -"index_count": 276, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAQAEAAMABAAFAAMABAAGAAUABgAHAAUABgAIAAcACAAJAAcACAAKAAkACgALAAkACgAMAAsADAANAAsADAAOAA0ADgAPAA0ADwAQAA0ADwARABAADwASABEAEgATABEAEgAUABMAFAAVABMAFAAWABUAFgAXABUAGQAYAAYABgAEABkAFgAUABoAGgAbABYAHAASAA8ADwAdABwAHgAFAAcABwAfAB4AIAAOAAwADAAhACAAEQATACIAIgAjABEAIQAMAAoACgAkACEAJwAlACYAJgAZACcAJgAoABkAKAAYABkAKAAeABgAHgApABgAHgAfACkAHwAkACkAHwAqACQAKgAhACQAKgArACEAKwAgACEAKwAsACAALAAdACAALAAtAB0ALQAcAB0ALQAjABwAIwAaABwAIwAiABoAIgAbABoAIgAuABsALgAvABsAKwALAA0ADQAsACsALAANABAAEAAtACwAHgAoAAMAAwAFAB4AJgAlAAAAAAACACYAJAAKAAgACAApACQAHwAHAAkACQAqAB8AJQAnAAEAAQAAACUALQAQABEAEQAjAC0AFAASABwAHAAaABQAFwAWABsAGwAvABcAEwAVAC4ALgAiABMAHQAPAA4ADgAgAB0AFQAXAC8ALwAuABUAJwAZAAQABAABACcAKQAIAAYABgAYACkAKAAmAAIAAgADACgAKgAJAAsACwArACoA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 48, -"vertex_data": PackedByteArray("CtcjvM3MzLwAAACA3kEevM3MzLyhnik73kEevM3MzLyhnim7vOMNvM3MzLwK16O7vOMNvM3MzLwK16M7a7Tnu83MzLxrtOe7a7Tnu83MzLxrtOc7Cteju83MzLy84w28Cteju83MzLy84w08oZ4pu83MzLzeQR68oZ4pu83MzLzeQR48AAAAAM3MzLwK1yO8AAAAAM3MzLwK1yM8oZ4pO83MzLzeQR68oZ4pO83MzLzeQR48CtejO83MzLy84w08CtejO83MzLy84w28a7TnO83MzLxrtOe7a7TnO83MzLxrtOc7vOMNPM3MzLwK16O7vOMNPM3MzLwK16M73kEePM3MzLyhnim73kEePM3MzLyhnik7CtcjPM3MzLwAAACAa7Tnu83MzDxrtOc7vOMNvM3MzDwK16M7vOMNPM3MzDwK16M73kEePM3MzDyhnik7a7TnO83MzDxrtOc7CtejO83MzDy84w08a7Tnu83MzDxrtOe7Cteju83MzDy84w28oZ4pO83MzDzeQR48AAAAAM3MzDwK1yM8vOMNPM3MzDwK16O7a7TnO83MzDxrtOe7oZ4pu83MzDzeQR48CtcjvM3MzDwAAACA3kEevM3MzDyhnim73kEevM3MzDyhnik7vOMNvM3MzDwK16O7Cteju83MzDy84w08oZ4pu83MzDzeQR68AAAAAM3MzDwK1yO8oZ4pO83MzDzeQR68CtejO83MzDy84w283kEePM3MzDyhnim7CtcjPM3MzDwAAACA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_sqgwv"] -resource_name = "foamBulletA_Mesh foamBulletA" -_surfaces = [{ -"aabb": AABB(-0.01, -0.025, -0.01, 0.02, 0.05, 0.02), -"attribute_data": PackedByteArray("JpPJPgAAgD/RtMI++AqNP9G0wj4Q6mU/o5GuPjabTT+jka4+ZTKZP/CIjj6Iuzg/8IiOPjyioz8mk0k+LrcoPyaTST5ppKs/g6/QPZilHj+Dr9A9NK2wPwAAAABtNhs/AAAAAMpksj+Dr9C9mKUeP4Ov0L00rbA/JpNJvmmkqz8mk0m+LrcoP/CIjr6Iuzg/8IiOvjyioz+jka6+NptNP6ORrr5lMpk/0bTCvhDqZT/RtMK++AqNPyaTyb4AAIA/gHxSPQACgTyAfFI9+Pv9P4B8Ur0AAoE8gHxSvfj7/T+AfFK9+Pv9P4B8Ur0AAoE8gHxSPfj7/T+AfFI9AAKBPIB8Uj34+/0/gHxSvfj7/T+AfFI9AAKBPIB8Ur0AAoE8gHxSPfj7/T+AfFK9+Pv9P4B8Uj0AAoE8gHxSvQACgTyAfFI9+Pv9P4B8Ur34+/0/gHxSPQACgTyAfFK9AAKBPIB8Ur34+/0/gHxSvQACgTyAfFI9+Pv9P4B8Uj0AAoE8gHxSPfj7/T+AfFK9+Pv9P4B8Uj0AAoE8gHxSvQACgTwmk8m+AACAP9G0wr4Q6mU/0bTCvvgKjT+jka6+ZTKZP6ORrr42m00/8IiOvjyioz/wiI6+iLs4PyaTSb5ppKs/JpNJvi63KD+Dr9C9NK2wP4Ov0L2YpR4/AAAAAMpksj8AAAAAbTYbP4Ov0D00rbA/g6/QPZilHj8mk0k+aaSrPyaTST4utyg/8IiOPjyioz/wiI4+iLs4P6ORrj5lMpk/o5GuPjabTT/RtMI++AqNP9G0wj4Q6mU/JpPJPgAAgD+AfFI9+Pv9P4B8Ur34+/0/gHxSPQACgTyAfFK9AAKBPIB8Uj34+/0/gHxSvfj7/T+AfFI9AAKBPIB8Ur0AAoE8gHxSPQACgTyAfFI9+Pv9P4B8Ur0AAoE8gHxSvfj7/T+AfFI9AAKBPIB8Uj34+/0/gHxSvQACgTyAfFK9+Pv9P4B8Uj34+/0/gHxSvfj7/T+AfFI9AAKBPIB8Ur0AAoE8gHxSPfj7/T+AfFK9+Pv9P4B8Uj0AAoE8gHxSvQACgTyAfFI9AAKBPIB8Uj34+/0/gHxSvQACgTyAfFK9+Pv9P4B8Uj34+/0/gHxSvfj7/T+AfFI9AAKBPIB8Ur0AAoE8gHxSvfj7/T+AfFK9AAKBPIB8Uj34+/0/gHxSPQACgTyAfFK9+Pv9P4B8Ur0AAoE8gHxSPfj7/T+AfFI9AAKBPIB8Ur34+/0/gHxSvQACgTyAfFI9+Pv9P4B8Uj0AAoE8gHxSPfj7/T+AfFK9+Pv9P4B8Uj0AAoE8gHxSvQACgTyAfFK9+Pv9P4B8Ur0AAoE8gHxSPfj7/T+AfFI9AAKBPIB8Uj0AAoE8gHxSPfj7/T+AfFK9AAKBPIB8Ur34+/0/gHxSPfj7/T+AfFK9+Pv9P4B8Uj0AAoE8gHxSvQACgTyAfFI9AAKBPIB8Uj34+/0/gHxSvQACgTyAfFK9+Pv9P4B8Uj34+/0/gHxSvfj7/T+AfFI9AAKBPIB8Ur0AAoE8"), -"format": 34359742487, -"index_count": 276, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAQAEAAMABAAFAAMABAAGAAUABgAHAAUABgAIAAcACAAJAAcACAAKAAkACgALAAkACgAMAAsADAANAAsADAAOAA0ADgAPAA0ADwAQAA0ADwARABAADwASABEAEgATABEAEgAUABMAFAAVABMAFAAWABUAFgAXABUAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAKgAoACkAKQArACoALgAsAC0ALQAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYANQA4ADcAOAA5ADcAOAA6ADkAOgA7ADkAOgA8ADsAPAA9ADsAPAA+AD0APgA/AD0APgBAAD8AQABBAD8AQABCAEEAQgBDAEEAQgBEAEMARABFAEMARABGAEUARgBHAEUARgBIAEcASABJAEcASABKAEkASgBLAEkATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIAVgBUAFUAVQBXAFYAWgBYAFkAWQBbAFoAXgBcAF0AXQBfAF4AYgBgAGEAYQBjAGIAZgBkAGUAZQBnAGYAagBoAGkAaQBrAGoAbgBsAG0AbQBvAG4AcgBwAHEAcQBzAHIAdgB0AHUAdQB3AHYAegB4AHkAeQB7AHoAfgB8AH0AfQB/AH4AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4A"), -"material": SubResource("StandardMaterial3D_x0fj0"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 144, -"vertex_data": PackedByteArray("CtcjvM3MzLwAAACA3kEevM3MzLyhnik73kEevM3MzLyhnim7vOMNvM3MzLwK16O7vOMNvM3MzLwK16M7a7Tnu83MzLxrtOe7a7Tnu83MzLxrtOc7Cteju83MzLy84w28Cteju83MzLy84w08oZ4pu83MzLzeQR68oZ4pu83MzLzeQR48AAAAAM3MzLwK1yO8AAAAAM3MzLwK1yM8oZ4pO83MzLzeQR68oZ4pO83MzLzeQR48CtejO83MzLy84w08CtejO83MzLy84w28a7TnO83MzLxrtOe7a7TnO83MzLxrtOc7vOMNPM3MzLwK16O7vOMNPM3MzLwK16M73kEePM3MzLyhnim73kEePM3MzLyhnik7CtcjPM3MzLwAAACAa7Tnu83MzDxrtOc7a7Tnu83MzLxrtOc7vOMNvM3MzDwK16M7vOMNvM3MzLwK16M7vOMNPM3MzLwK16M7vOMNPM3MzDwK16M73kEePM3MzLyhnik73kEePM3MzDyhnik7a7TnO83MzLxrtOc7CtejO83MzLy84w08a7TnO83MzDxrtOc7CtejO83MzDy84w08a7Tnu83MzLxrtOe7Cteju83MzLy84w28a7Tnu83MzDxrtOe7Cteju83MzDy84w28oZ4pO83MzLzeQR48AAAAAM3MzLwK1yM8oZ4pO83MzDzeQR48AAAAAM3MzDwK1yM8vOMNPM3MzLwK16O7vOMNPM3MzDwK16O7a7TnO83MzLxrtOe7a7TnO83MzDxrtOe7AAAAAM3MzLwK1yM8oZ4pu83MzLzeQR48AAAAAM3MzDwK1yM8oZ4pu83MzDzeQR48CtcjvM3MzDwAAACA3kEevM3MzDyhnim73kEevM3MzDyhnik7vOMNvM3MzDwK16M7vOMNvM3MzDwK16O7a7Tnu83MzDxrtOc7a7Tnu83MzDxrtOe7Cteju83MzDy84w08Cteju83MzDy84w28oZ4pu83MzDzeQR48oZ4pu83MzDzeQR68AAAAAM3MzDwK1yM8AAAAAM3MzDwK1yO8oZ4pO83MzDzeQR48oZ4pO83MzDzeQR68CtejO83MzDy84w08CtejO83MzDy84w28a7TnO83MzDxrtOc7a7TnO83MzDxrtOe7vOMNPM3MzDwK16M7vOMNPM3MzDwK16O73kEePM3MzDyhnik73kEePM3MzDyhnim7CtcjPM3MzDwAAACAAAAAAM3MzLwK1yO8oZ4pO83MzLzeQR68AAAAAM3MzDwK1yO8oZ4pO83MzDzeQR68oZ4pO83MzLzeQR68CtejO83MzLy84w28oZ4pO83MzDzeQR68CtejO83MzDy84w28vOMNvM3MzDwK16O7vOMNvM3MzLwK16O7a7Tnu83MzDxrtOe7a7Tnu83MzLxrtOe7CtcjvM3MzDwAAACACtcjvM3MzLwAAACA3kEevM3MzDyhnim73kEevM3MzLyhnim7oZ4pu83MzLzeQR48Cteju83MzLy84w08oZ4pu83MzDzeQR48Cteju83MzDy84w08Cteju83MzLy84w28oZ4pu83MzLzeQR68Cteju83MzDy84w28oZ4pu83MzDzeQR683kEevM3MzDyhnik73kEevM3MzLyhnik7CtcjvM3MzDwAAACACtcjvM3MzLwAAACACtejO83MzLy84w28a7TnO83MzLxrtOe7CtejO83MzDy84w28a7TnO83MzDxrtOe7a7TnO83MzLxrtOc7a7TnO83MzDxrtOc7vOMNPM3MzLwK16M7vOMNPM3MzDwK16M73kEePM3MzLyhnik73kEePM3MzDyhnik7CtcjPM3MzLwAAACACtcjPM3MzDwAAACA3kEePM3MzLyhnim73kEePM3MzDyhnim7vOMNPM3MzLwK16O7vOMNPM3MzDwK16O7CtejO83MzLy84w08oZ4pO83MzLzeQR48CtejO83MzDy84w08oZ4pO83MzDzeQR48CtcjPM3MzLwAAACACtcjPM3MzDwAAACA3kEePM3MzLyhnim73kEePM3MzDyhnim7vOMNvM3MzDwK16M7vOMNvM3MzLwK16M73kEevM3MzDyhnik73kEevM3MzLyhnik7Cteju83MzLy84w08a7Tnu83MzLxrtOc7Cteju83MzDy84w08a7Tnu83MzDxrtOc73kEevM3MzDyhnim73kEevM3MzLyhnim7vOMNvM3MzDwK16O7vOMNvM3MzLwK16O7oZ4pu83MzLzeQR68AAAAAM3MzLwK1yO8oZ4pu83MzDzeQR68AAAAAM3MzDwK1yO8/38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//z//f/+//7//P/9//7//v9ku/3/Zrv+/2S7/f9mu/78l0f9///+S6CXR/3///5Lo8uT/f///ePLy5P9///948v+//3/////f2a7/f///bNf/v/9/////39mu/3///2zXAAD/v/8//78AACXR2S7/vwAA/7//P/+/AAAl0dku/78Mm/9///+Fzf9//3////+/DJv/f///hc3/f/9/////v///2a4AAJLo///ZrgAAkuj///+/AAD/3////78AAP/f/3//f////7/yZP9/8uT/v/9//3////+/8mT/f/Lk/7//f///////v/9////+//+//3///////7//f///////v/9///////+//3///////7//f////v//v/9////+//+//3///////7//f///////v/9///////+//3///////7//f///////v/9////+//+//3////7//7//f///////v/9////+//+//3////7//7//f///////v/9///////+//3////7//7//f////v//v/9///////+//3///////7//////AAD/v///8uQAAIXN/////wAA/7////LkAACFzf//8uQAAIXN//8l0QAAbNf///LkAACFzf//JdEAAGzXAADZriVR/78AANmuJVH/vwAA/7//P/+/AAD/v/8//78AAP9//3//vwAA/3//f/+/AAAMm/Jk/78AAAyb8mT/v/Jk/3/y5P+/JVH/fyXR/7/yZP9/8uT/vyVR/38l0f+/AAAl0dku/78AAPLkDBv/vwAAJdHZLv+/AADy5Awb/78MG/9/DJv/vwwb/38Mm/+/AAD/f/9//78AAP9//3//v///JdEAAGzX////vwAA/9///yXRAABs1////78AAP/f/7//f////9//v/9/////3yXR/3///5LoJdH/f///kujy5P9///948vLk/3///3jy////f/////////9/////////DJsAAHjy//8MmwAAePL//9muAACS6P//2a4AAJLo2a7/f///bNcMm/9///+Fzdmu/3///2zXDJv/f///hc3///9//////////3////////8MmwAAePL//wybAAB48tku/3/Zrv+/2S7/f9mu/78MG/9/DJv/vwwb/38Mm/+/JVH/fyXR/7//P/9//7//vyVR/38l0f+//z//f/+//78AAAyb8mT/vwAADJvyZP+/AADZriVR/78AANmuJVH/vwAA8uQMG/+//////wAA/78AAPLkDBv/v/////8AAP+/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_ly6dy") - -[node name="bullet" type="RigidBody3D"] -collision_layer = 16 -collision_mask = 37 -gravity_scale = 0.0 -continuous_cd = true -contact_monitor = true -max_contacts_reported = 5 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0) -shape = SubResource("CapsuleShape3D_bix2d") - -[node name="foamBulletA2" type="MeshInstance3D" parent="."] -transform = Transform3D(5, 0, 0, 0, -2.18557e-07, -5, 0, 5, -2.18557e-07, 0, 0, 0) -mesh = SubResource("ArrayMesh_sqgwv") -skeleton = NodePath("") - -[connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/client/template/Spawnable_Objects/hit_debug.tscn b/client/template/Spawnable_Objects/hit_debug.tscn deleted file mode 100644 index e64ef79..0000000 --- a/client/template/Spawnable_Objects/hit_debug.tscn +++ /dev/null @@ -1,15 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://dguqnsdowqt3w"] - -[ext_resource type="Texture2D" uid="uid://clfvflhvcccy1" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/debug_sprite.png" id="1_smdbx"] -[ext_resource type="Script" uid="uid://dkt6w5wvebi72" path="res://client/template/scripts/Weapon_State_Machine/hit_debug.gd" id="2_gvqnn"] - -[node name="Node3D" type="Sprite3D"] -transform = Transform3D(0.1, 0, 0, 0, 0.1, 0, 0, 0, 0.1, 0, 0, 0) -billboard = 2 -texture = ExtResource("1_smdbx") -script = ExtResource("2_gvqnn") - -[node name="Timer" type="Timer" parent="."] -autostart = true - -[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"] diff --git a/client/template/Spawnable_Objects/hit_debug_2.tscn b/client/template/Spawnable_Objects/hit_debug_2.tscn deleted file mode 100644 index cadc4bc..0000000 --- a/client/template/Spawnable_Objects/hit_debug_2.tscn +++ /dev/null @@ -1,17 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://bj15ogfi1535l"] - -[ext_resource type="Script" uid="uid://dkt6w5wvebi72" path="res://client/template/scripts/Weapon_State_Machine/hit_debug.gd" id="2_w2l74"] - -[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_kr237"] -load_path = "res://.godot/imported/crosshair046.png-adf558f9d87ef20104f2ce22346ed1b7.s3tc.ctex" - -[node name="Node3D" type="Sprite3D"] -modulate = Color(0, 0, 1, 1) -billboard = 2 -texture = SubResource("CompressedTexture2D_kr237") -script = ExtResource("2_w2l74") - -[node name="Timer" type="Timer" parent="."] -autostart = true - -[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"] diff --git a/client/template/Spawnable_Objects/rocket.tscn b/client/template/Spawnable_Objects/rocket.tscn deleted file mode 100644 index 60eac75..0000000 --- a/client/template/Spawnable_Objects/rocket.tscn +++ /dev/null @@ -1,87 +0,0 @@ -[gd_scene load_steps=6 format=4 uid="uid://cqhlfy6ccomm3"] - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_030fb"] -resource_name = "yellow" -albedo_color = Color(0.996078, 0, 0.219608, 1) -metallic = 1.0 -emission_enabled = true -emission = Color(1, 0, 0, 1) -emission_energy_multiplier = 19.35 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_urtjv"] -resource_name = "pink" -albedo_color = Color(0.996078, 0.219608, 0.411765, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_iqbgl"] -_surfaces = [{ -"aabb": AABB(-0.01, -0.03, -0.01, 0.02, 0.06, 0.02), -"format": 34896613377, -"index_count": 66, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAQAAAAQABAAFAAEABQAEAAYABgAHAAUACAAHAAYABgAJAAgADAAKAAsACwANAAwADgAJAAYABgAKAA4ABgAEAAoABAALAAoABAAAAAsAAAACAAsADwAIAAkACQAOAA8ADwAOAAoACgAMAA8ACwACAAMAAwANAAsA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 24, -"vertex_data": PackedByteArray("/98AAP/fAAD/31TV/98AAP//AAD/fwAA//9U1f9/AAD/fwAA//8AAP9/VNX//wAA/x8AAP/fAAD/H1TV/98AAAAAVNX/fwAAAAAAAP9/AAD/fwAAAAAAAP/fAAD/HwAA/39U1QAAAAD/31TV/x8AAP8fAAD/HwAA/x9U1f8fAAD/H////38AAP83////NwAA/zf////HAAD/f////98AAP9/////HwAA/8f////HAAD/x////zcAAP/f////fwAA") -}, { -"aabb": AABB(-0.01, -0.03, -0.01, 0.02, 0.06, 0.02), -"format": 34896613377, -"index_count": 66, -"index_data": PackedByteArray("EgAQABEAEQATABIAEQAUABMAFAAVABMAFAAWABUAFgAXABUAFAAMAA0ADQAWABQAEQAPAAwADAAUABEAEwAFAAcABwASABMAEQAQAAgACAAPABEAEgAHAAgACAAQABIAFQABAAUABQATABUAAwABABUAFQAXAAMADQADABcAFwAWAA0A"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 24, -"vertex_data": PackedByteArray("/98AAP/fAAD/31TV/98AAP//AAD/fwAA//9U1f9/AAD/fwAA//8AAP9/VNX//wAA/x8AAP/fAAD/H1TV/98AAAAAVNX/fwAAAAAAAP9/AAD/fwAAAAAAAP/fAAD/HwAA/39U1QAAAAD/31TV/x8AAP8fAAD/HwAA/x9U1f8fAAD/H////38AAP83////NwAA/zf////HAAD/f////98AAP9/////HwAA/8f////HAAD/x////zcAAP/f////fwAA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_mt61o"] -resource_name = "foamBulletB-low_Mesh foamBulletB-low" -_surfaces = [{ -"aabb": AABB(-0.01, -0.03, -0.01, 0.02, 0.06, 0.02), -"attribute_data": PackedByteArray("SEP//0hDeYx5qP//eah5jLa8//+FV///trx5jIVXeYx5qP//SEP//3moeYxIQ3mMtrx5jLa8//+FV3mMhVf//3mo//9IQ///eah5jEhDeYz//666/98CzP/fWqn/f5Sj/3/J0f8fWqn/HwLMAACuunmoeYx5qP//SEN5jEhD//+2vP//hVf//7a8eYyFV3mMhVf//4VXeYy2vP//trx5jP8frrr/N6+t/zetx/9/Asz/f1qp/8etx//Hr63/3666eajHkkhDx5Jangh7dlIIe7a8x5KFV8eSiK0Ie6RhCHt5qMeSSEPHklqeCHt2Ugh7Wp4Ie3mox5J2Ugh7SEPHkra8x5KFV8eSiK0Ie6RhCHu2vMeShVfHkoitCHukYQh7SEPHknZSCHt5qMeSWp4Ie4VXx5KkYQh7trzHkoitCHs="), -"format": 34896613399, -"index_count": 66, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAFQAYABcAGAAZABcAGAAaABkAGgAbABkAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYA"), -"material": SubResource("StandardMaterial3D_030fb"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0.787402, 4.3622, 0, 0), -"vertex_count": 80, -"vertex_data": PackedByteArray("/98AAP/f/5//31TV/9//n///AAD/f/+///9U1f9//7//3wAA/9//n/9/AAD//wCA/99U1f/f/5//f1TV//8AgP9/AAD//wCA/x8AAP/f/5//f1TV//8AgP8fVNX/3/+f/x9U1f/f/5//HwAA/9//nwAAVNX/f/+/AAAAAP9//7//fwAAAAD////fAAD/H//f/39U1QAA////31TV/x//3wAAAAD/f////x8AAP/f////HwAA/x////9/AAAAAP///38AAP//////3wAA/x/////fAAD/3/////8AAP9///8AAFTV/3//vwAAAAD/f/+//x9U1f8f/9//HwAA/x//3/8fAAD/H//f/38AAAAA////H1TV/x//3/9/VNUAAP////8AAP9//7///1TV/3//v//fAAD/H//f/99U1f8f/9//H////39U1f83////N1TV/zf////HVNX/f////99U1f9/////H1TV/8f////HVNX/x////zdU1f/f////f1TV/39U1QAA8vj/31TV/x/C6P9/////H/L4/8f///83wuj/H1TV/x/C6P9/VNUAAPL4/zf///83wuj/f////x/y+P9/VNX//5rA/x9U1f/feMb/f////9+awP83////x3jG/x////9/VNUAAFTV/39U1f83////N8Lo/x9U1f8fwuj/H1TV/994xgAAVNX/f1TV/zf////HeMb/H////39U1f/fVNX/33jG/39U1f//msD/x////8d4xv9/////35rA/99U1f/feMb/x////8d4xv//VNX/f1TV/9////9/VNX//1TV/39U1f/f////f1TV/99U1f8fwuj/x////zfC6P9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/AAD/f////3////9/////f////3////9/////f////3////9/////f////38AAP9/////fwAA/3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f////3////9/////f////3/oougi////f+ii6CLoohbd////f+iiFt3///9/////f+iiFt3///9/6KIW3ZmZZeaZmWXm6KIW3eiiFt3oohbdmZll5uiiFt2ZmWXm6KLoIv///3/oougi////f+ii6CLoougimZmZGZmZmRmZmZkZmZmZGeii6CLoougi") -}, { -"aabb": AABB(-0.01, -0.03, -0.01, 0.02, 0.06, 0.02), -"attribute_data": PackedByteArray("SEP//0hDeYx5qP//eah5jLa8//+FV///trx5jIVXeYx5qP//SEP//3moeYxIQ3mMtrx5jLa8//+FV3mMhVf//3mo//9IQ///eah5jEhDeYz//666/98CzP/fWqn/f5Sj/3/J0f8fWqn/HwLMAACuunmoeYx5qP//SEN5jEhD//+2vP//hVf//7a8eYyFV3mMhVf//4VXeYy2vP//trx5jP8frrr/N6+t/zetx/9/Asz/f1qp/8etx//Hr63/3666eajHkkhDx5Jangh7dlIIe7a8x5KFV8eSiK0Ie6RhCHt5qMeSSEPHklqeCHt2Ugh7Wp4Ie3mox5J2Ugh7SEPHkra8x5KFV8eSiK0Ie6RhCHu2vMeShVfHkoitCHukYQh7SEPHknZSCHt5qMeSWp4Ie4VXx5KkYQh7trzHkoitCHs="), -"format": 34896613399, -"index_count": 66, -"index_data": PackedByteArray("KgAoACkAKQArACoAKQAsACsALAAtACsALAAuAC0ALgAvAC0AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOQA7ADoAPgA8AD0APQA/AD4AQgBAAEEAQQBDAEIARgBEAEUARQBHAEYASgBIAEkASQBLAEoATgBMAE0ATQBPAE4A"), -"material": SubResource("StandardMaterial3D_urtjv"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(0.787402, 4.3622, 0, 0), -"vertex_count": 80, -"vertex_data": PackedByteArray("/98AAP/f/MX/31TV/9/8xf//AAD/f1TV//9U1f9/VNX/3wAA/9/8xf9/AAD//////99U1f/f/MX/f1TV//////9/AAD//////x8AAP/f/MX/f1TV//////8fVNX/3/zF/x9U1f/f/MX/HwAA/9/8xQAAVNX/f1TVAAAAAP9/VNX/fwAAAAD////fAAD/H6rp/39U1QAA////31TV/x+q6QAAAAD/f1TV/x8AAP/fVNX/HwAA/x9U1f9/AAAAAFTV/38AAP//VNX/3wAA/x9U1f/fAAD/31TV//8AAP9/VNUAAFTV/39U1QAAAAD/f1TV/x9U1f8fqun/HwAA/x+q6f8fAAD/H6rp/38AAAAA////H1TV/x+q6f9/VNUAAP////8AAP9/VNX//1TV/39U1f/fAAD/H6rp/99U1f8fqun/H////3//v/83////N/+//zf////H/7//f////9//v/9/////H/+//8f////H/7//x////zf/v//f////f/+//39U1QAAmP//31TV/x8E4f9/////H5j//8f///83BOH/H1TV/x8E4f9/VNUAAJj//zf///83BOH/f////x+Y//9/VNX//4CK/x9U1f/fWKH/f////9+Aiv83////x1ih/x////9/EcEAAFTV/38Rwf83////N63f/x9U1f8frd//H1TV/9+cogAAVNX/f0XA/zf////HnKL/H////39FwP/fVNX/31ih/39U1f//gIr/x////8dYof9/////34CK/99U1f/fnKL/x////8ecov//VNX/f0XA/9////9/RcD//1TV/38Rwf/f////fxHB/99U1f8frd//x////zet3/9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9/AAD/f/9//3//f/9/////f/9//3////9/////f////3////9/////f////38AAP9/////fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD+//9/////f/7//3////9/////f////3/+//9//v//f/uRcATFbRMB+5FwBMVtEwHsfsXtcIQD7ux+xe1whAPujd3Ggz6l8tyN3caDPqXy3HaIzuZ2iM7mYIyz6GCMs+iklPLT2pCb5qSU8tPakJvmDKM/JTj8jV0Moz8lOPyNXQuspBQLrKQUY5nbEGOZ2xAvmXcIL5l3CEqXYAxKl2AM") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_iqbgl") - -[sub_resource type="CylinderShape3D" id="CylinderShape3D_r5ds2"] -height = 0.202453 -radius = 0.0673677 - -[node name="RigidBody3D" type="RigidBody3D"] -gravity_scale = 0.0 -continuous_cd = true -contact_monitor = true -max_contacts_reported = 5 - -[node name="foamBulletB-low" type="MeshInstance3D" parent="."] -transform = Transform3D(10, 0, 0, 0, -4.37114e-07, 10, 0, -10, -4.37114e-07, 0, 0, 0) -mesh = SubResource("ArrayMesh_mt61o") -skeleton = NodePath("") - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0) -shape = SubResource("CylinderShape3D_r5ds2") diff --git a/client/template/Weapon_Models/blasterA.glb b/client/template/Weapon_Models/blasterA.glb deleted file mode 100755 index a9b7541..0000000 Binary files a/client/template/Weapon_Models/blasterA.glb and /dev/null differ diff --git a/client/template/Weapon_Models/blasterD.glb b/client/template/Weapon_Models/blasterD.glb deleted file mode 100755 index bd06b52..0000000 Binary files a/client/template/Weapon_Models/blasterD.glb and /dev/null differ diff --git a/client/template/Weapon_Models/blasterL.glb b/client/template/Weapon_Models/blasterL.glb deleted file mode 100755 index ac0a4c5..0000000 Binary files a/client/template/Weapon_Models/blasterL.glb and /dev/null differ diff --git a/client/template/Weapon_Models/blasterN.glb b/client/template/Weapon_Models/blasterN.glb deleted file mode 100755 index c7c0c65..0000000 Binary files a/client/template/Weapon_Models/blasterN.glb and /dev/null differ diff --git a/client/template/Weapon_Models/foamBulletA.glb b/client/template/Weapon_Models/foamBulletA.glb deleted file mode 100755 index 13c7632..0000000 Binary files a/client/template/Weapon_Models/foamBulletA.glb and /dev/null differ diff --git a/client/template/player_character.tscn b/client/template/player_character.tscn deleted file mode 100644 index 8c857b5..0000000 --- a/client/template/player_character.tscn +++ /dev/null @@ -1,2420 +0,0 @@ -[gd_scene format=4 uid="uid://oc13h3au02ro"] - -[ext_resource type="Script" uid="uid://cfdt8t4r8pxel" path="res://client/template/scripts/Player_Character/player_character.gd" id="1_h0t42"] -[ext_resource type="Script" uid="uid://cc3t6vk7qpwey" path="res://client/template/scripts/Player_Character/HUD.gd" id="2_tvwwj"] -[ext_resource type="Texture2D" uid="uid://bjh5ic6qy4jtl" path="res://client/template/HUD ASSETS/crosshair001.png" id="3_7f0mw"] -[ext_resource type="Texture2D" uid="uid://uidicgaojgdi" path="res://client/template/HUD ASSETS/crosshair046.png" id="4_l32wb"] -[ext_resource type="Script" uid="uid://cxxpp8cfxb8jp" path="res://client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd" id="5_wuueu"] -[ext_resource type="Resource" uid="uid://yc1f2j7pl4vr" path="res://client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterI.tres" id="6_tpjp5"] -[ext_resource type="Script" uid="uid://bw4j1fbww4k8s" path="res://client/template/scripts/Weapon_State_Machine/WeaponSlot.gd" id="6_wj0qi"] -[ext_resource type="AnimationLibrary" uid="uid://uybino34n0sj" path="res://client/template/weapon_animation.res" id="13_lmhsg"] - -[sub_resource type="ImageTexture" id="ImageTexture_rj3p7"] - -[sub_resource type="ImageTexture" id="ImageTexture_j4t2g"] - -[sub_resource type="StyleBoxLine" id="StyleBoxLine_8ilid"] -color = Color(0, 0, 0, 0) -grow_begin = 6.0 -thickness = 6 - -[sub_resource type="StyleBoxLine" id="StyleBoxLine_drrrm"] -color = Color(1, 1, 1, 1) -thickness = 10 - -[sub_resource type="Resource" id="Resource_4pcyg"] -script = ExtResource("6_wj0qi") -weapon = ExtResource("6_tpjp5") -reserve_ammo = 60 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ifhgq"] -render_priority = 1 -transparency = 1 -no_depth_test = true -shading_mode = 0 -albedo_color = Color(0.43137255, 0.47843137, 0.5254902, 1) -stencil_mode = 3 -stencil_flags = 1 -stencil_compare = 5 -metadata/_stencil_owned = true - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0fswt"] -resource_name = "dark" -next_pass = SubResource("StandardMaterial3D_ifhgq") -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 -stencil_mode = 2 -stencil_flags = 2 -stencil_color = Color(0.43137255, 0.47843137, 0.5254902, 1) - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_giihu"] -render_priority = 1 -transparency = 1 -no_depth_test = true -shading_mode = 0 -albedo_color = Color(0.90588236, 0.9137255, 0.94509804, 1) -stencil_mode = 3 -stencil_flags = 1 -stencil_compare = 5 -metadata/_stencil_owned = true - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bbdhu"] -resource_name = "metal" -next_pass = SubResource("StandardMaterial3D_giihu") -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 -stencil_mode = 2 -stencil_flags = 2 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n3ia4"] -render_priority = 1 -transparency = 1 -no_depth_test = true -shading_mode = 0 -albedo_color = Color(1, 0.5058824, 0.6745098, 1) -stencil_mode = 3 -stencil_flags = 1 -stencil_compare = 5 -metadata/_stencil_owned = true - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_45i0f"] -resource_name = "pink" -next_pass = SubResource("StandardMaterial3D_n3ia4") -albedo_color = Color(0.998274, 0.505969, 0.673936, 1) -metallic = 1.0 -stencil_mode = 2 -stencil_flags = 2 -stencil_color = Color(1, 0.5058824, 0.6745098, 1) - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_aiyg7"] -render_priority = 1 -transparency = 1 -no_depth_test = true -shading_mode = 0 -albedo_color = Color(0.7921569, 0.81960785, 0.8901961, 1) -stencil_mode = 3 -stencil_flags = 1 -stencil_compare = 5 -metadata/_stencil_owned = true - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r2ge3"] -resource_name = "darkMetal" -next_pass = SubResource("StandardMaterial3D_aiyg7") -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 -stencil_mode = 2 -stencil_flags = 2 -stencil_color = Color(0.7921569, 0.81960785, 0.8901961, 1) - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5oggu"] -render_priority = 1 -transparency = 1 -no_depth_test = true -shading_mode = 0 -stencil_mode = 3 -stencil_flags = 1 -stencil_compare = 5 -metadata/_stencil_owned = true - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_c8p85"] -resource_name = "_defaultMat" -next_pass = SubResource("StandardMaterial3D_5oggu") -metallic = 1.0 -stencil_mode = 2 -stencil_flags = 2 -stencil_color = Color(1, 1, 1, 1) - -[sub_resource type="ArrayMesh" id="ArrayMesh_ifhgq"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34896613377, -"index_count": 744, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABQACAAMAAwAHAAUACgAIAAkACQAGAAoACQALAAYACwAMAAYACwANAAwADAAOAAYADgAPAAYAEAAJAAgACAAEABAABAANABAABAAGAA8ABAARAA0AEQAMAA0ABAAPABEAAQAAAAgACAAKAAEAAQAKAAYABgAHAAEABwADAAEABQAEAAgACAAAAAUAAAACAAUAFAASABMAEwAVABQAFwAWABQAFAAVABcAEwASABgAGAAZABMAEgAaABsAGwAYABIAGwAcABgAHAAWABgAFAAWABoAGgASABQAFgAdABoAFgAcAB0AFwAZABgAGAAWABcAIAAeAB8AHwAhACAAIAAhACIAIgAjACAAIwAkACUAJQAgACMAJQAmACAAJgAnACAAKAAlACQAJAAeACgAHgAnACgAHgAgACcAIgApACQAJAAjACIALAAqACsAKwAtACwAJAApAB8AHwAeACQAMAAuAC8ALwAxADAAMwAyAC4ALgAwADMANQA0ADIAMgAzADUAOAA2ADcANwA5ADgAPAA6ADsAOwA9ADwAQAA+AD8APwBBAEAAQwBCADQANAA1AEMAQwBEAEUARQBCAEMARABGAEcARwBFAEQARgBIAEkASQBHAEYATABKAEsASwBNAEwAKgBOAE8ATwArACoATQBLAE8ATwBOAE0AOQA3AEoASgBMADkAUQBQADYANgA4AFEAVABSAFMAUwBVAFQAVgBUAFUAVQBXAFYAWABWAFcAVwBZAFgAOgBYAFkAWQA7ADoAUwBSAFAAUABRAFMAPwA8AD0APQBBAD8AMQAvAD4APgBAADEAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgASAAsAC0ALQBJAEgAawBqAGIAYgBkAGsAZQBjAF8AXwBeAGUAbgBsAG0AbQBvAG4AWgBgAGEAYQBbAFoAaQBnAGoAagBrAGkAcABuAG8AbwBxAHAAcgBwAHEAcQBzAHIAdAByAHMAcwB1AHQAdgB0AHUAdQB3AHYAeAB2AHcAdwB5AHgAbQBsAGYAZgBoAG0AfAB6AHsAewB9AHwAfwB+AHgAeAB5AH8AgQCAAH4AfgB/AIEAgwCCAIAAgACBAIMAdQBzAHEAcQB3AHUAcQBvAHcAbwBtAHcAbQB5AHcAbQB/AHkAbQBoAH8AaACBAH8AaABpAIEAaQCDAIEAaQBrAIMAawBkAIMAZACEAIMAZABlAIQAZQCFAIQAZQBeAIUAXgCGAIUAXgB8AIYAXgBgAHwAYABaAHwAWgB6AHwAWgBcAHoAhgCHAIgAiACFAIYALABIAEYARgAqACwARgBEACoARABOACoARABDAE4AQwCJAE4AiQCKAE4AigBNAE4AigCLAE0AiwCMAE0AjABMAE0AjACNAEwAjQCOAEwAjgA5AEwAjgCPADkAjwA4ADkAjwCQADgAkACRADgAkQBRADgAkQCSAFEAkgCTAFEAkwBTAFEAkwCUAFMAlACVAFMAQQBTAJUAQQCVAJYAQQCWAJcAQABBAJcAQACXAJgAQACYAJkAMQBAAJkAMQCZAJoAMAAxAJoAMACaAJsAMACbAJwAMwAwAJwAMwCcAJ0AMwCdAJ4ANQAzAJ4ANQCeAJ8ANQCfAKAAQwA1AKAAoACJAEMAQQBVAFMAQQA9AFUAPQBXAFUAPQA7AFcAOwBZAFcAhgB8AH0AfQCHAIYAhAChAIIAggCDAIQAhQCIAKEAoQCEAIUAegBcAF0AXQB7AHoApACiAKMAowClAKQAqACmAKcApwCpAKgAqgCnAKYApgCrAKoApgCsAKsApgCtAKwAogCkAK4ArgCoAKIArgCmAKgArgCtAKYAsACvAKoAqgCrALAAsACrAKwArACxALAAsQCsAK0ArQCuALEArwClAKMAowCpAK8AqQCnAK8ApwCqAK8A"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("2zYzhWkEAAAjyTOFaQQAANs2er8AAAAAI8l6vwAAAADbNnPYPQ0AANs2c9gAAAAAI8lz2D0NAAAjyXPYAAAAANs2M4U9DQAA2rYtnj0NAAAjyTOFPQ0AANq20649DQAA2rZ6vz0NAAAkSdOuPQ0AANq2INA9DQAAJEkg0D0NAAAkSS2ePQ0AACRJer89DQAA2rYtnuSeAABs2y2e5J4AANq2er/kngAAbNt6v+SeAADatnq/sFwAAGzber+wXAAA2rYtnrBcAABs2y2esFwAANq2Jrd6mgAA2raApnqaAADatoCm04gAANq2JrfTiAAAJEktnrBcAACSJC2esFwAACRJer+wXAAAkiR6v7BcAACSJHq/5J4AACRJer/kngAAJEktnuSeAAAkSSa3epoAACRJJrfTiAAAJEmAptOIAAAkSYCmepoAAJIkLZ7kngAAkWTYqe3pAACRZNip//8AAMxxWqft6QAAzHFap///AADatnq///8AAPy08MX//wAA2rZ6v+3pAAD8tPDF7ekAAPy0A7n//wAA/LQDue3pAACBr/2y//8AAIGv/bLt6QAAAkvwxf//AAAkSXq///8AAAJL8MXt6QAAJEl6v+3pAAAyjpnX//8AADKOmdft6QAAbZsb1f//AABtmxvV7ekAAIGv9sv//wAAyaYj0f//AACBr/bL7ekAAMmmI9Ht6QAAyabRrf//AADJptGt7ekAAG2b2Knt6QAAbZvYqf//AAAyjlqn7ekAADKOWqf//wAA/3+Apu3pAAD/f4Cm//8AAAJLA7n//wAAfVD9sv//AAACSwO57ekAAH1Q/bLt6QAANVnRre3pAAA1WdGt//8AAH1Q9sv//wAAfVD2y+3pAAA1WSPR//8AADVZI9Ht6QAAkWQb1f//AACRZBvV7ekAAMxxmdf//wAAzHGZ1+3pAAD/f3PY//8AAP9/c9jt6QAAfXg7zCv3AAB9eDvM//8AAP9/rswr9wAA/3+uzP//AAB8a9DIK/cAAHxr0Mj//wAAfnHqyiv3AAB+cerK//8AAPpj5cL//wAA4GYUxv//AAD6Y+XCK/cAAOBmFMYr9wAA4GbfuP//AAD6Yw68//8AAOBm37gr9wAA+mMOvCv3AAD9Ynq///8AAP1ier8r9wAAfGsjtv//AAB8ayO2K/cAAH5xCrT//wAAfnEKtCv3AAB9eLiy//8AAH14uLIr9wAA/39Fsv//AAD/f0WyK/cAAIGHuLL//wAAgYe4siv3AACAjgq0//8AAICOCrQr9wAAgpQjtv//AACClCO2K/cAAIGHO8wr9wAAgYc7zP//AACAjurKK/cAAICO6sr//wAAHpnfuP//AAAemd+4K/cAAAScDrz//wAABJwOvCv3AAABnXq///8AAAGder8r9wAABJzlwiv3AAAemRTGK/cAAIKU0Mgr9wAAgpTQyP//AAAemRTG//8AAP9/067t6QAAiHZkr+3pAAC2bQ6x7ekAACNmtLPt6QAAU2Amt+3pAACsXCq77ekAAG1ber/t6QAArFzJw+3pAABTYM3H7ekAACNmQMvt6QAAtm3lze3pAACIdo/P7ekAAP9/INDt6QAAdomPz+3pAABIkuXN7ekAANuZQMvt6QAAq5/Nx+3pAABSo8nD7ekAAJGker/t6QAAUqMqu+3pAACrnya37ekAANuZtLPt6QAASJIOse3pAAB2iWSv7ekAAASc5cL//wAA2rYQaBx6AAAkSRBoHHoAANq24HzKfQAAJEngfMp9AADatgAAuGcAACRJAAC4ZwAA2rZAU292AAAkSUBTb3YAACRJAABpRAAAtm0AAJU7AABIkgAAlTsAANq2AABpRAAA2rbgfHtaAAAkSeB8e1oAALZt4HynUQAASJLgfKdRAAAkSS2enkYAACRJho2eRgAA2raGjZ5GAADati2enkYAACRJer+eRgAA2rZ6v55GAADatiDQnkYAACRJINCeRgAAI8mApnqaAAAjySa3epoAACPJJrfTiAAAbNsmt6eRAAAjyYCm04gAAGzbgKankQAAkiSApqeRAADbNoCmepoAANs2gKbTiAAAkiQmt6eRAADbNia304gAANs2Jrd6mgAAkiQtnv//AACSJCDQ//8AAJIkLZ4Z4QAAkiQg0BnhAAAAACDQ9rQAAJIkIND2tAAASRIg0P//AAAAAC2e9rQAAJIkLZ72tAAASRItnv//AAAkSeB85J4AACRJEGjkngAAJEngfNyTAAAkSUBT3JMAACRJEGjckwAA/38g0BnhAAB2iY/PGeEAAKufzccZ4QAA25lAyxnhAACRpHq/GeEAAFKjycMZ4QAAq58mtxnhAABSoyq7GeEAAHaJZK8Z4QAASJIOsRnhAACsXMnDGeEAAG1ber8Z4QAAiHaPzxnhAABTYM3HGeEAACNmQMsZ4QAArFwquxnhAAC2beXNGeEAAFNgJrcZ4QAA25m0sxnhAAD/f9OuGeEAACNmtLMZ4QAAtm0OsRnhAABIkuXNGeEAAIh2ZK8Z4QAAbNsg0P//AABs2y2e//8AAGzbINAZ4QAAbNstnhnhAABs2yDQ9rQAALXtIND//wAA//8g0Pa0AADatkBT3JMAANq2EGjkngAA2rbgfOSeAACRZP//npYAAJFk//8RZgAAbZv//56WAABtm///EWYAAGzbLZ72tAAAbNstngjLAAD+/y2e9rQAALXtLZ7//wAA2rYQaNyTAADatuB83JMAAG2bxuDkngAAkWTG4OSeAAAkScbgGeEAACRJxuD//wAA2rbG4BnhAADatsbg//8AANq2Gun//wAA2rZt8fa0AADatsbg9rQAACRJxuD2tAAAJElt8fa0AAAkSRrp//8AAJFkxuDKXQAAbZvG4MpdAABtm8bgjpIAAG2bLuvMjwAAbZsu6+NsAABtm8bgIGoAAJIkLZ4IywAAbNvgfJ5GAACSJOB8nkYAAJIkINCeRgAAJEnG4J5GAABs2yDQnkYAANq2xuCeRgAAkiTgfPa0AABs2+B89rQAAJFkxuCOkgAAkWTG4CBqAACRZC7r42wAAJFkLuvMjwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34896613377, -"index_count": 606, -"index_data": PackedByteArray("DQCyALMAswAQAA0ACQAQALMAswC0AAkACQC0ALUAtQALAAkADAARALYAtgC3AAwADAC3ALgAuAAOAAwAuAC5AA8ADwAOALgAtQCyAA0ADQALALUADwC5ALYAtgARAA8AuwC6ABsAGwAaALsAuwAaAB0AHQC8ALsAvAC9ALsAvgAcABsAGwC6AL4AugC/AL4AwgDAAMEAwQAnAMIAwQAoACcAHQAcAL4AvgC8AB0AxQDDAMQAxAAlAMUAxAAmACUAxADCACcAJwAmAMQAJQAoAMEAwQDFACUAyADGAMcAxwDJAMgAzADKAMsAywDHAMwAywDJAMcAygDNAM4AzgDLAMoANABCAHIAcgB0ADQAdAB2ADQAdgAyADQAdgB4ADIAeAB+ADIAfgCAADIAgAAuADIAgACCAC4AggAvAC4AggChAC8AoQCIAC8AiAA+AC8AiACHAD4AhwB9AD4AfQB7AD4AewA/AD4AewBdAD8AXQBSAD8AUgBUAD8AVAA8AD8AVAA6ADwAVABWADoAVgBYADoAUgBdAFsAUABSAFsAUABbAGEAUABhAF8AUABfAGMANgBQAGMANgBjAGIANwA2AGIANwBiAGoANwBqAGcASgA3AGcASgBnAGYASgBmAGwASgBsAG4ASwBKAG4ASwBuAHAASwBwAHIASwByAEIATwBLAEIAKwBPAEIAKwBCAEUALQArAEUALQBFAEcARwBJAC0AxgDPAMwAzADHAMYA0gDQANEA0QDTANIA0wDUANIA0wCjANQA0wCpAKMAlgCVANUA1QDWAJYA1wCZAJgAmADYANcA2QCbAJoAmgDaANkA2wCdAJwAnADcANsA3gDdAKAAoACfAN4A3wCQAI8AjwDgAN8AlQCUAOEA4QDVAJUA4gCRAJAAkADfAOIA4wCSAJEAkQDiAOMA4ACPAI4AjgDkAOAAkwCSAOMA4wDlAJMA5ACOAI0AjQDmAOQA5wCeAJ0AnQDbAOcA3QDoAIkAiQCgAN0A6gDpAIwAjACLAOoA5gCNAIwAjADpAOYAmACXAOsA6wDYAJgAlwCWANYA1gDrAJcA3ACcAJsAmwDZANwA5wDeAJ8AnwCeAOcA7ADqAIsAiwCKAOwA2gCaAJkAmQDXANoAlACTAOUA5QDhAJQA6ADsAIoAigCJAOgA7wDtAO4A7gDwAO8A7QDvAPEA8QDyAO0A8QDzAPIAqACpANMA0wD0AKgA9gD1ANEA0QDQAPYA+QD3APgA+AD6APkA/QD7APwA/ADwAP0A8AD+AP0A/gDwAO4A8gD+AO4A7gDtAPIA+wD9APMA8wDxAPsA0gDUAP8A/wAAAdIA+QABAQIBAgH3APkABQEDAQQBBAEGAQUBBQEGAQcBBwEIAQUBCAEJAQUBCgEJAQgBCAELAQoBBwEGAQQBBAEMAQcB+AANAQ4BDgH6APgADwEBAfkA+QAQAQ8B+QD6ABAB+gARARAB+gASAREB+gAOARIB1ACjAKIAogD/ANQA9QD0ANMA0wDRAPUACwEMAQQBBAEDAQsBAwEKAQsBzgDNAM8AzwDIAM4AzwDGAMgAyAATAc4AqAD0AP8A/wCiAKgAAAH/APQA9gAAAfQA9AD1APYA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("2zYzhWkEAAAjyTOFaQQAANs2er8AAAAAI8l6vwAAAADbNnPYPQ0AANs2c9gAAAAAI8lz2D0NAAAjyXPYAAAAANs2M4U9DQAA2rYtnj0NAAAjyTOFPQ0AANq20649DQAA2rZ6vz0NAAAkSdOuPQ0AANq2INA9DQAAJEkg0D0NAAAkSS2ePQ0AACRJer89DQAA2rYtnuSeAABs2y2e5J4AANq2er/kngAAbNt6v+SeAADatnq/sFwAAGzber+wXAAA2rYtnrBcAABs2y2esFwAANq2Jrd6mgAA2raApnqaAADatoCm04gAANq2JrfTiAAAJEktnrBcAACSJC2esFwAACRJer+wXAAAkiR6v7BcAACSJHq/5J4AACRJer/kngAAJEktnuSeAAAkSSa3epoAACRJJrfTiAAAJEmAptOIAAAkSYCmepoAAJIkLZ7kngAAkWTYqe3pAACRZNip//8AAMxxWqft6QAAzHFap///AADatnq///8AAPy08MX//wAA2rZ6v+3pAAD8tPDF7ekAAPy0A7n//wAA/LQDue3pAACBr/2y//8AAIGv/bLt6QAAAkvwxf//AAAkSXq///8AAAJL8MXt6QAAJEl6v+3pAAAyjpnX//8AADKOmdft6QAAbZsb1f//AABtmxvV7ekAAIGv9sv//wAAyaYj0f//AACBr/bL7ekAAMmmI9Ht6QAAyabRrf//AADJptGt7ekAAG2b2Knt6QAAbZvYqf//AAAyjlqn7ekAADKOWqf//wAA/3+Apu3pAAD/f4Cm//8AAAJLA7n//wAAfVD9sv//AAACSwO57ekAAH1Q/bLt6QAANVnRre3pAAA1WdGt//8AAH1Q9sv//wAAfVD2y+3pAAA1WSPR//8AADVZI9Ht6QAAkWQb1f//AACRZBvV7ekAAMxxmdf//wAAzHGZ1+3pAAD/f3PY//8AAP9/c9jt6QAAfXg7zCv3AAB9eDvM//8AAP9/rswr9wAA/3+uzP//AAB8a9DIK/cAAHxr0Mj//wAAfnHqyiv3AAB+cerK//8AAPpj5cL//wAA4GYUxv//AAD6Y+XCK/cAAOBmFMYr9wAA4GbfuP//AAD6Yw68//8AAOBm37gr9wAA+mMOvCv3AAD9Ynq///8AAP1ier8r9wAAfGsjtv//AAB8ayO2K/cAAH5xCrT//wAAfnEKtCv3AAB9eLiy//8AAH14uLIr9wAA/39Fsv//AAD/f0WyK/cAAIGHuLL//wAAgYe4siv3AACAjgq0//8AAICOCrQr9wAAgpQjtv//AACClCO2K/cAAIGHO8wr9wAAgYc7zP//AACAjurKK/cAAICO6sr//wAAHpnfuP//AAAemd+4K/cAAAScDrz//wAABJwOvCv3AAABnXq///8AAAGder8r9wAABJzlwiv3AAAemRTGK/cAAIKU0Mgr9wAAgpTQyP//AAAemRTG//8AAP9/067t6QAAiHZkr+3pAAC2bQ6x7ekAACNmtLPt6QAAU2Amt+3pAACsXCq77ekAAG1ber/t6QAArFzJw+3pAABTYM3H7ekAACNmQMvt6QAAtm3lze3pAACIdo/P7ekAAP9/INDt6QAAdomPz+3pAABIkuXN7ekAANuZQMvt6QAAq5/Nx+3pAABSo8nD7ekAAJGker/t6QAAUqMqu+3pAACrnya37ekAANuZtLPt6QAASJIOse3pAAB2iWSv7ekAAASc5cL//wAA2rYQaBx6AAAkSRBoHHoAANq24HzKfQAAJEngfMp9AADatgAAuGcAACRJAAC4ZwAA2rZAU292AAAkSUBTb3YAACRJAABpRAAAtm0AAJU7AABIkgAAlTsAANq2AABpRAAA2rbgfHtaAAAkSeB8e1oAALZt4HynUQAASJLgfKdRAAAkSS2enkYAACRJho2eRgAA2raGjZ5GAADati2enkYAACRJer+eRgAA2rZ6v55GAADatiDQnkYAACRJINCeRgAAI8mApnqaAAAjySa3epoAACPJJrfTiAAAbNsmt6eRAAAjyYCm04gAAGzbgKankQAAkiSApqeRAADbNoCmepoAANs2gKbTiAAAkiQmt6eRAADbNia304gAANs2Jrd6mgAAkiQtnv//AACSJCDQ//8AAJIkLZ4Z4QAAkiQg0BnhAAAAACDQ9rQAAJIkIND2tAAASRIg0P//AAAAAC2e9rQAAJIkLZ72tAAASRItnv//AAAkSeB85J4AACRJEGjkngAAJEngfNyTAAAkSUBT3JMAACRJEGjckwAA/38g0BnhAAB2iY/PGeEAAKufzccZ4QAA25lAyxnhAACRpHq/GeEAAFKjycMZ4QAAq58mtxnhAABSoyq7GeEAAHaJZK8Z4QAASJIOsRnhAACsXMnDGeEAAG1ber8Z4QAAiHaPzxnhAABTYM3HGeEAACNmQMsZ4QAArFwquxnhAAC2beXNGeEAAFNgJrcZ4QAA25m0sxnhAAD/f9OuGeEAACNmtLMZ4QAAtm0OsRnhAABIkuXNGeEAAIh2ZK8Z4QAAbNsg0P//AABs2y2e//8AAGzbINAZ4QAAbNstnhnhAABs2yDQ9rQAALXtIND//wAA//8g0Pa0AADatkBT3JMAANq2EGjkngAA2rbgfOSeAACRZP//npYAAJFk//8RZgAAbZv//56WAABtm///EWYAAGzbLZ72tAAAbNstngjLAAD+/y2e9rQAALXtLZ7//wAA2rYQaNyTAADatuB83JMAAG2bxuDkngAAkWTG4OSeAAAkScbgGeEAACRJxuD//wAA2rbG4BnhAADatsbg//8AANq2Gun//wAA2rZt8fa0AADatsbg9rQAACRJxuD2tAAAJElt8fa0AAAkSRrp//8AAJFkxuDKXQAAbZvG4MpdAABtm8bgjpIAAG2bLuvMjwAAbZsu6+NsAABtm8bgIGoAAJIkLZ4IywAAbNvgfJ5GAACSJOB8nkYAAJIkINCeRgAAJEnG4J5GAABs2yDQnkYAANq2xuCeRgAAkiTgfPa0AABs2+B89rQAAJFkxuCOkgAAkWTG4CBqAACRZC7r42wAAJFkLuvMjwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34896613377, -"index_count": 348, -"index_data": PackedByteArray("FQEUAbMAswAWARUBswCyABYBsgC2ABYBsgC1ALYAtgC5ABYBuQAXARYBuQC4ABcBuAAYARcBGAEZARcBFAEYAbQAtACzABQBGAG1ALQAGAG3ALUAtwC2ALUAGAG4ALcAGwEaARMBEwH8ABsBugC7AL0AvQC/ALoABQEJARkBGQHvAAUBGQEYAe8AGAHxAO8AGwH8APsA+wAUARsB+wATABQB+wDxABMA8QAVABMAEwAZABQBFQDxABgBGAEUARkAGAEXABUAGAEZABcAFQEaAa8ArwCwABUBsAAUARUBGgGlAK8AsACxABQBsQCuABQBrgCkABQBpAAAARQBAAH2ABQB0AClABoBGgEbAdAAGwH2ANAAGwEUAfYA0ADSAKUApAClANIA0gAAAaQAvwC9ALwAvAC+AL8A8ADIAN0A3QDeAPAA3gDnAPAA5wDvAPAAyADoAN0A5wDbAO8A2wDcAO8A3ADZAO8A2QDaAO8A2gDXAO8A1wDYAO8A2ADrAO8A6wDWAO8A1gDVAO8A1QDJAO8AyQADAe8AAwEFAe8AyQDVAOEAyQDhAOUAyQDlAOMAyQDjAOIAyQDiAN8AyQDfAOAAyQDgAOQAyQDkAOYAyQDmAOkAyADJAOkA6QDqAMgA6gDsAMgA7ADoAMgACgEDAckAyQDLAAoBywAXAQoBywAWARcBxADDAMAAwADCAMQAwwDFAMEAwQDAAMMAywDOACIAIgAWAcsAIgAhABYBIQAfABYBKQAiAM4AFQEpAM4AFQEfACkAFQEWAR8AGgEVAc4AzgATARoBCgEXAQIBAgEJAQoBAgEBAQkBAQEPAQkBDwESAQkBEgEOAQkBDQECARcBFwEZAQ0BGQEOAQ0BGQEJAQ4BDQEcAQIBDQEdARwBDwEcAR0BHQESAQ8B/AATAcgAyADwAPwA"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("2zYzhWkEAAAjyTOFaQQAANs2er8AAAAAI8l6vwAAAADbNnPYPQ0AANs2c9gAAAAAI8lz2D0NAAAjyXPYAAAAANs2M4U9DQAA2rYtnj0NAAAjyTOFPQ0AANq20649DQAA2rZ6vz0NAAAkSdOuPQ0AANq2INA9DQAAJEkg0D0NAAAkSS2ePQ0AACRJer89DQAA2rYtnuSeAABs2y2e5J4AANq2er/kngAAbNt6v+SeAADatnq/sFwAAGzber+wXAAA2rYtnrBcAABs2y2esFwAANq2Jrd6mgAA2raApnqaAADatoCm04gAANq2JrfTiAAAJEktnrBcAACSJC2esFwAACRJer+wXAAAkiR6v7BcAACSJHq/5J4AACRJer/kngAAJEktnuSeAAAkSSa3epoAACRJJrfTiAAAJEmAptOIAAAkSYCmepoAAJIkLZ7kngAAkWTYqe3pAACRZNip//8AAMxxWqft6QAAzHFap///AADatnq///8AAPy08MX//wAA2rZ6v+3pAAD8tPDF7ekAAPy0A7n//wAA/LQDue3pAACBr/2y//8AAIGv/bLt6QAAAkvwxf//AAAkSXq///8AAAJL8MXt6QAAJEl6v+3pAAAyjpnX//8AADKOmdft6QAAbZsb1f//AABtmxvV7ekAAIGv9sv//wAAyaYj0f//AACBr/bL7ekAAMmmI9Ht6QAAyabRrf//AADJptGt7ekAAG2b2Knt6QAAbZvYqf//AAAyjlqn7ekAADKOWqf//wAA/3+Apu3pAAD/f4Cm//8AAAJLA7n//wAAfVD9sv//AAACSwO57ekAAH1Q/bLt6QAANVnRre3pAAA1WdGt//8AAH1Q9sv//wAAfVD2y+3pAAA1WSPR//8AADVZI9Ht6QAAkWQb1f//AACRZBvV7ekAAMxxmdf//wAAzHGZ1+3pAAD/f3PY//8AAP9/c9jt6QAAfXg7zCv3AAB9eDvM//8AAP9/rswr9wAA/3+uzP//AAB8a9DIK/cAAHxr0Mj//wAAfnHqyiv3AAB+cerK//8AAPpj5cL//wAA4GYUxv//AAD6Y+XCK/cAAOBmFMYr9wAA4GbfuP//AAD6Yw68//8AAOBm37gr9wAA+mMOvCv3AAD9Ynq///8AAP1ier8r9wAAfGsjtv//AAB8ayO2K/cAAH5xCrT//wAAfnEKtCv3AAB9eLiy//8AAH14uLIr9wAA/39Fsv//AAD/f0WyK/cAAIGHuLL//wAAgYe4siv3AACAjgq0//8AAICOCrQr9wAAgpQjtv//AACClCO2K/cAAIGHO8wr9wAAgYc7zP//AACAjurKK/cAAICO6sr//wAAHpnfuP//AAAemd+4K/cAAAScDrz//wAABJwOvCv3AAABnXq///8AAAGder8r9wAABJzlwiv3AAAemRTGK/cAAIKU0Mgr9wAAgpTQyP//AAAemRTG//8AAP9/067t6QAAiHZkr+3pAAC2bQ6x7ekAACNmtLPt6QAAU2Amt+3pAACsXCq77ekAAG1ber/t6QAArFzJw+3pAABTYM3H7ekAACNmQMvt6QAAtm3lze3pAACIdo/P7ekAAP9/INDt6QAAdomPz+3pAABIkuXN7ekAANuZQMvt6QAAq5/Nx+3pAABSo8nD7ekAAJGker/t6QAAUqMqu+3pAACrnya37ekAANuZtLPt6QAASJIOse3pAAB2iWSv7ekAAASc5cL//wAA2rYQaBx6AAAkSRBoHHoAANq24HzKfQAAJEngfMp9AADatgAAuGcAACRJAAC4ZwAA2rZAU292AAAkSUBTb3YAACRJAABpRAAAtm0AAJU7AABIkgAAlTsAANq2AABpRAAA2rbgfHtaAAAkSeB8e1oAALZt4HynUQAASJLgfKdRAAAkSS2enkYAACRJho2eRgAA2raGjZ5GAADati2enkYAACRJer+eRgAA2rZ6v55GAADatiDQnkYAACRJINCeRgAAI8mApnqaAAAjySa3epoAACPJJrfTiAAAbNsmt6eRAAAjyYCm04gAAGzbgKankQAAkiSApqeRAADbNoCmepoAANs2gKbTiAAAkiQmt6eRAADbNia304gAANs2Jrd6mgAAkiQtnv//AACSJCDQ//8AAJIkLZ4Z4QAAkiQg0BnhAAAAACDQ9rQAAJIkIND2tAAASRIg0P//AAAAAC2e9rQAAJIkLZ72tAAASRItnv//AAAkSeB85J4AACRJEGjkngAAJEngfNyTAAAkSUBT3JMAACRJEGjckwAA/38g0BnhAAB2iY/PGeEAAKufzccZ4QAA25lAyxnhAACRpHq/GeEAAFKjycMZ4QAAq58mtxnhAABSoyq7GeEAAHaJZK8Z4QAASJIOsRnhAACsXMnDGeEAAG1ber8Z4QAAiHaPzxnhAABTYM3HGeEAACNmQMsZ4QAArFwquxnhAAC2beXNGeEAAFNgJrcZ4QAA25m0sxnhAAD/f9OuGeEAACNmtLMZ4QAAtm0OsRnhAABIkuXNGeEAAIh2ZK8Z4QAAbNsg0P//AABs2y2e//8AAGzbINAZ4QAAbNstnhnhAABs2yDQ9rQAALXtIND//wAA//8g0Pa0AADatkBT3JMAANq2EGjkngAA2rbgfOSeAACRZP//npYAAJFk//8RZgAAbZv//56WAABtm///EWYAAGzbLZ72tAAAbNstngjLAAD+/y2e9rQAALXtLZ7//wAA2rYQaNyTAADatuB83JMAAG2bxuDkngAAkWTG4OSeAAAkScbgGeEAACRJxuD//wAA2rbG4BnhAADatsbg//8AANq2Gun//wAA2rZt8fa0AADatsbg9rQAACRJxuD2tAAAJElt8fa0AAAkSRrp//8AAJFkxuDKXQAAbZvG4MpdAABtm8bgjpIAAG2bLuvMjwAAbZsu6+NsAABtm8bgIGoAAJIkLZ4IywAAbNvgfJ5GAACSJOB8nkYAAJIkINCeRgAAJEnG4J5GAABs2yDQnkYAANq2xuCeRgAAkiTgfPa0AABs2+B89rQAAJFkxuCOkgAAkWTG4CBqAACRZC7r42wAAJFkLuvMjwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34896613377, -"index_count": 54, -"index_data": PackedByteArray("ygDMAM8AzwDNAMoAEQEeAR8BHwEQAREB9wACARwBHAEfAfcAHwH4APcAHwEeAfgAHgEdAfgAHQENAfgAEQESAR0BHQEeAREBHwEcAQ8BDwEQAR8B/QD+APIA8gDzAP0ABwEMAQsBCwEIAQcB"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("2zYzhWkEAAAjyTOFaQQAANs2er8AAAAAI8l6vwAAAADbNnPYPQ0AANs2c9gAAAAAI8lz2D0NAAAjyXPYAAAAANs2M4U9DQAA2rYtnj0NAAAjyTOFPQ0AANq20649DQAA2rZ6vz0NAAAkSdOuPQ0AANq2INA9DQAAJEkg0D0NAAAkSS2ePQ0AACRJer89DQAA2rYtnuSeAABs2y2e5J4AANq2er/kngAAbNt6v+SeAADatnq/sFwAAGzber+wXAAA2rYtnrBcAABs2y2esFwAANq2Jrd6mgAA2raApnqaAADatoCm04gAANq2JrfTiAAAJEktnrBcAACSJC2esFwAACRJer+wXAAAkiR6v7BcAACSJHq/5J4AACRJer/kngAAJEktnuSeAAAkSSa3epoAACRJJrfTiAAAJEmAptOIAAAkSYCmepoAAJIkLZ7kngAAkWTYqe3pAACRZNip//8AAMxxWqft6QAAzHFap///AADatnq///8AAPy08MX//wAA2rZ6v+3pAAD8tPDF7ekAAPy0A7n//wAA/LQDue3pAACBr/2y//8AAIGv/bLt6QAAAkvwxf//AAAkSXq///8AAAJL8MXt6QAAJEl6v+3pAAAyjpnX//8AADKOmdft6QAAbZsb1f//AABtmxvV7ekAAIGv9sv//wAAyaYj0f//AACBr/bL7ekAAMmmI9Ht6QAAyabRrf//AADJptGt7ekAAG2b2Knt6QAAbZvYqf//AAAyjlqn7ekAADKOWqf//wAA/3+Apu3pAAD/f4Cm//8AAAJLA7n//wAAfVD9sv//AAACSwO57ekAAH1Q/bLt6QAANVnRre3pAAA1WdGt//8AAH1Q9sv//wAAfVD2y+3pAAA1WSPR//8AADVZI9Ht6QAAkWQb1f//AACRZBvV7ekAAMxxmdf//wAAzHGZ1+3pAAD/f3PY//8AAP9/c9jt6QAAfXg7zCv3AAB9eDvM//8AAP9/rswr9wAA/3+uzP//AAB8a9DIK/cAAHxr0Mj//wAAfnHqyiv3AAB+cerK//8AAPpj5cL//wAA4GYUxv//AAD6Y+XCK/cAAOBmFMYr9wAA4GbfuP//AAD6Yw68//8AAOBm37gr9wAA+mMOvCv3AAD9Ynq///8AAP1ier8r9wAAfGsjtv//AAB8ayO2K/cAAH5xCrT//wAAfnEKtCv3AAB9eLiy//8AAH14uLIr9wAA/39Fsv//AAD/f0WyK/cAAIGHuLL//wAAgYe4siv3AACAjgq0//8AAICOCrQr9wAAgpQjtv//AACClCO2K/cAAIGHO8wr9wAAgYc7zP//AACAjurKK/cAAICO6sr//wAAHpnfuP//AAAemd+4K/cAAAScDrz//wAABJwOvCv3AAABnXq///8AAAGder8r9wAABJzlwiv3AAAemRTGK/cAAIKU0Mgr9wAAgpTQyP//AAAemRTG//8AAP9/067t6QAAiHZkr+3pAAC2bQ6x7ekAACNmtLPt6QAAU2Amt+3pAACsXCq77ekAAG1ber/t6QAArFzJw+3pAABTYM3H7ekAACNmQMvt6QAAtm3lze3pAACIdo/P7ekAAP9/INDt6QAAdomPz+3pAABIkuXN7ekAANuZQMvt6QAAq5/Nx+3pAABSo8nD7ekAAJGker/t6QAAUqMqu+3pAACrnya37ekAANuZtLPt6QAASJIOse3pAAB2iWSv7ekAAASc5cL//wAA2rYQaBx6AAAkSRBoHHoAANq24HzKfQAAJEngfMp9AADatgAAuGcAACRJAAC4ZwAA2rZAU292AAAkSUBTb3YAACRJAABpRAAAtm0AAJU7AABIkgAAlTsAANq2AABpRAAA2rbgfHtaAAAkSeB8e1oAALZt4HynUQAASJLgfKdRAAAkSS2enkYAACRJho2eRgAA2raGjZ5GAADati2enkYAACRJer+eRgAA2rZ6v55GAADatiDQnkYAACRJINCeRgAAI8mApnqaAAAjySa3epoAACPJJrfTiAAAbNsmt6eRAAAjyYCm04gAAGzbgKankQAAkiSApqeRAADbNoCmepoAANs2gKbTiAAAkiQmt6eRAADbNia304gAANs2Jrd6mgAAkiQtnv//AACSJCDQ//8AAJIkLZ4Z4QAAkiQg0BnhAAAAACDQ9rQAAJIkIND2tAAASRIg0P//AAAAAC2e9rQAAJIkLZ72tAAASRItnv//AAAkSeB85J4AACRJEGjkngAAJEngfNyTAAAkSUBT3JMAACRJEGjckwAA/38g0BnhAAB2iY/PGeEAAKufzccZ4QAA25lAyxnhAACRpHq/GeEAAFKjycMZ4QAAq58mtxnhAABSoyq7GeEAAHaJZK8Z4QAASJIOsRnhAACsXMnDGeEAAG1ber8Z4QAAiHaPzxnhAABTYM3HGeEAACNmQMsZ4QAArFwquxnhAAC2beXNGeEAAFNgJrcZ4QAA25m0sxnhAAD/f9OuGeEAACNmtLMZ4QAAtm0OsRnhAABIkuXNGeEAAIh2ZK8Z4QAAbNsg0P//AABs2y2e//8AAGzbINAZ4QAAbNstnhnhAABs2yDQ9rQAALXtIND//wAA//8g0Pa0AADatkBT3JMAANq2EGjkngAA2rbgfOSeAACRZP//npYAAJFk//8RZgAAbZv//56WAABtm///EWYAAGzbLZ72tAAAbNstngjLAAD+/y2e9rQAALXtLZ7//wAA2rYQaNyTAADatuB83JMAAG2bxuDkngAAkWTG4OSeAAAkScbgGeEAACRJxuD//wAA2rbG4BnhAADatsbg//8AANq2Gun//wAA2rZt8fa0AADatsbg9rQAACRJxuD2tAAAJElt8fa0AAAkSRrp//8AAJFkxuDKXQAAbZvG4MpdAABtm8bgjpIAAG2bLuvMjwAAbZsu6+NsAABtm8bgIGoAAJIkLZ4IywAAbNvgfJ5GAACSJOB8nkYAAJIkINCeRgAAJEnG4J5GAABs2yDQnkYAANq2xuCeRgAAkiTgfPa0AABs2+B89rQAAJFkxuCOkgAAkWTG4CBqAACRZC7r42wAAJFkLuvMjwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"format": 34896613377, -"index_count": 18, -"index_data": PackedByteArray("7wDwAPwA/ADxAO8A/AD7APEAEwHIAMkAyQDLABMBywDOABMB"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 288, -"vertex_data": PackedByteArray("2zYzhWkEAAAjyTOFaQQAANs2er8AAAAAI8l6vwAAAADbNnPYPQ0AANs2c9gAAAAAI8lz2D0NAAAjyXPYAAAAANs2M4U9DQAA2rYtnj0NAAAjyTOFPQ0AANq20649DQAA2rZ6vz0NAAAkSdOuPQ0AANq2INA9DQAAJEkg0D0NAAAkSS2ePQ0AACRJer89DQAA2rYtnuSeAABs2y2e5J4AANq2er/kngAAbNt6v+SeAADatnq/sFwAAGzber+wXAAA2rYtnrBcAABs2y2esFwAANq2Jrd6mgAA2raApnqaAADatoCm04gAANq2JrfTiAAAJEktnrBcAACSJC2esFwAACRJer+wXAAAkiR6v7BcAACSJHq/5J4AACRJer/kngAAJEktnuSeAAAkSSa3epoAACRJJrfTiAAAJEmAptOIAAAkSYCmepoAAJIkLZ7kngAAkWTYqe3pAACRZNip//8AAMxxWqft6QAAzHFap///AADatnq///8AAPy08MX//wAA2rZ6v+3pAAD8tPDF7ekAAPy0A7n//wAA/LQDue3pAACBr/2y//8AAIGv/bLt6QAAAkvwxf//AAAkSXq///8AAAJL8MXt6QAAJEl6v+3pAAAyjpnX//8AADKOmdft6QAAbZsb1f//AABtmxvV7ekAAIGv9sv//wAAyaYj0f//AACBr/bL7ekAAMmmI9Ht6QAAyabRrf//AADJptGt7ekAAG2b2Knt6QAAbZvYqf//AAAyjlqn7ekAADKOWqf//wAA/3+Apu3pAAD/f4Cm//8AAAJLA7n//wAAfVD9sv//AAACSwO57ekAAH1Q/bLt6QAANVnRre3pAAA1WdGt//8AAH1Q9sv//wAAfVD2y+3pAAA1WSPR//8AADVZI9Ht6QAAkWQb1f//AACRZBvV7ekAAMxxmdf//wAAzHGZ1+3pAAD/f3PY//8AAP9/c9jt6QAAfXg7zCv3AAB9eDvM//8AAP9/rswr9wAA/3+uzP//AAB8a9DIK/cAAHxr0Mj//wAAfnHqyiv3AAB+cerK//8AAPpj5cL//wAA4GYUxv//AAD6Y+XCK/cAAOBmFMYr9wAA4GbfuP//AAD6Yw68//8AAOBm37gr9wAA+mMOvCv3AAD9Ynq///8AAP1ier8r9wAAfGsjtv//AAB8ayO2K/cAAH5xCrT//wAAfnEKtCv3AAB9eLiy//8AAH14uLIr9wAA/39Fsv//AAD/f0WyK/cAAIGHuLL//wAAgYe4siv3AACAjgq0//8AAICOCrQr9wAAgpQjtv//AACClCO2K/cAAIGHO8wr9wAAgYc7zP//AACAjurKK/cAAICO6sr//wAAHpnfuP//AAAemd+4K/cAAAScDrz//wAABJwOvCv3AAABnXq///8AAAGder8r9wAABJzlwiv3AAAemRTGK/cAAIKU0Mgr9wAAgpTQyP//AAAemRTG//8AAP9/067t6QAAiHZkr+3pAAC2bQ6x7ekAACNmtLPt6QAAU2Amt+3pAACsXCq77ekAAG1ber/t6QAArFzJw+3pAABTYM3H7ekAACNmQMvt6QAAtm3lze3pAACIdo/P7ekAAP9/INDt6QAAdomPz+3pAABIkuXN7ekAANuZQMvt6QAAq5/Nx+3pAABSo8nD7ekAAJGker/t6QAAUqMqu+3pAACrnya37ekAANuZtLPt6QAASJIOse3pAAB2iWSv7ekAAASc5cL//wAA2rYQaBx6AAAkSRBoHHoAANq24HzKfQAAJEngfMp9AADatgAAuGcAACRJAAC4ZwAA2rZAU292AAAkSUBTb3YAACRJAABpRAAAtm0AAJU7AABIkgAAlTsAANq2AABpRAAA2rbgfHtaAAAkSeB8e1oAALZt4HynUQAASJLgfKdRAAAkSS2enkYAACRJho2eRgAA2raGjZ5GAADati2enkYAACRJer+eRgAA2rZ6v55GAADatiDQnkYAACRJINCeRgAAI8mApnqaAAAjySa3epoAACPJJrfTiAAAbNsmt6eRAAAjyYCm04gAAGzbgKankQAAkiSApqeRAADbNoCmepoAANs2gKbTiAAAkiQmt6eRAADbNia304gAANs2Jrd6mgAAkiQtnv//AACSJCDQ//8AAJIkLZ4Z4QAAkiQg0BnhAAAAACDQ9rQAAJIkIND2tAAASRIg0P//AAAAAC2e9rQAAJIkLZ72tAAASRItnv//AAAkSeB85J4AACRJEGjkngAAJEngfNyTAAAkSUBT3JMAACRJEGjckwAA/38g0BnhAAB2iY/PGeEAAKufzccZ4QAA25lAyxnhAACRpHq/GeEAAFKjycMZ4QAAq58mtxnhAABSoyq7GeEAAHaJZK8Z4QAASJIOsRnhAACsXMnDGeEAAG1ber8Z4QAAiHaPzxnhAABTYM3HGeEAACNmQMsZ4QAArFwquxnhAAC2beXNGeEAAFNgJrcZ4QAA25m0sxnhAAD/f9OuGeEAACNmtLMZ4QAAtm0OsRnhAABIkuXNGeEAAIh2ZK8Z4QAAbNsg0P//AABs2y2e//8AAGzbINAZ4QAAbNstnhnhAABs2yDQ9rQAALXtIND//wAA//8g0Pa0AADatkBT3JMAANq2EGjkngAA2rbgfOSeAACRZP//npYAAJFk//8RZgAAbZv//56WAABtm///EWYAAGzbLZ72tAAAbNstngjLAAD+/y2e9rQAALXtLZ7//wAA2rYQaNyTAADatuB83JMAAG2bxuDkngAAkWTG4OSeAAAkScbgGeEAACRJxuD//wAA2rbG4BnhAADatsbg//8AANq2Gun//wAA2rZt8fa0AADatsbg9rQAACRJxuD2tAAAJElt8fa0AAAkSRrp//8AAJFkxuDKXQAAbZvG4MpdAABtm8bgjpIAAG2bLuvMjwAAbZsu6+NsAABtm8bgIGoAAJIkLZ4IywAAbNvgfJ5GAACSJOB8nkYAAJIkINCeRgAAJEnG4J5GAABs2yDQnkYAANq2xuCeRgAAkiTgfPa0AABs2+B89rQAAJFkxuCOkgAAkWTG4CBqAACRZC7r42wAAJFkLuvMjwAA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_giihu"] -resource_name = "blasterN_Mesh blasterN" -_surfaces = [{ -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("p5G5d1duuXenkQdbV24HW1duyiBXbp0Up5HKIKeRnRSnkVxrV25ca6eRL19Xbi9fV27Fhz2NmHunkcWHp5EvXz2NenM9jVxrwXJ6cz2NPmPBcj5jwXKYe1duL1/Bclxrp5GsGKeRyiBXbqwYV27KIMHyxYfB8i9flfvFh///L1///1xrPQ0vXz0NxYcAAC9faQTFhwAAXGvBcph77WmYe8FyXGvtaVxrwXLXacFytqbtaddp7Wm2pj2NtqY9jddpEZa2phGW12mEZWtvhGWJdxphmHtOo5h7K3eJd06jXGsaYVxrK3drbxGWmHs9jZh7EZZcaz2NXGvBcph77WmYe8FyXGvtaVxrEZbXaRGWtqY9jddpPY22puSemHt6mmtv5J5ca7BcXGvTiGtv04iJd3qaiXewXJh7EZaYez2NmHsRllxrPY1ca+3p4Hz//+B87ekNgP//DYDtabam7WnXacFytqbBctdpAAA3bQAACWoRFjdtERYJagAAN20AAAlqERY3bREWCWoAAE5vAAAgbBEWTm8RFiBs//8Jav//N23t6Qlq7ek3bQAA4HwRFuB8AAANgBEWDYAAAFhzAAAqcBEWWHMRFipwAABYcwAAKnARFlhzERYqcBEWDnkAAA55ERbhdQAA4XURFg2AAAANgBEW4HwAAOB8ERbbhwAA24cRFq2EAACthP//IGz//05v7ekgbO3pTm/t6eF1///hde3pDnn//w55//8qcP//WHPt6Spw7elYc///CWr//zdt7ekJau3pN23//yBs//9Ob+3pIGzt6U5v//8Oee3pDnn//+F17enhdf//DYDt6Q2A///gfO3p4Hz//9uH7enbh///rYTt6a2EAACthBEWrYQAANuHERbbh///KnD//1hz7ekqcO3pWHMAAOF1ERbhdQAADnkRFg55AABObwAAIGwRFk5vERYgbNMIG4cAABuH0whthQAAbYXTCE94AABPeNMIoHYAAKB2AACObgAA4GzTCI5u0wjgbAAAjm4AAOBs0wiObtMI4Gzt6a2E//+thO3p24f//9uHAAB3bAAAyWrTCHds0wjJagAAmHIAAOpw0wiYctMI6nAAAKB20wigdgAAT3jTCE940whNfwAATX/TCJ99AACffQAAd2wAAMlq0wh3bNMIyWoAAJ990wiffQAATX/TCE1/AABthdMIbYUAABuH0wgbh///G4cr9xuH//9thSv3bYX//01/K/dNf///n30r9599//9PeCv3T3j//6B2K/egdgAAmHIAAOpw0wiYctMI6nAr9599//+ffSv3TX///01////qcP//mHIr9+pwK/eYcv//4Gz//45uK/fgbCv3jm7//8lq//93bCv3yWor93ds/3/McS9+lHHPgZRxf4PvcH9873AMe+pv8oTqbw+GlG7veZRuwoYHbTx5B23/hlxr/3hcazx5smnChrJp73kkaA+GJGgMe89m8oTPZn+DyWV/fMllL34kZc+BJGX/f+xk///qcP//mHIr9+pwK/eYcv9/iXeSfB93bIMfd56G53Vgeed1XIn4c6J2+HP/f3pzSIIzc3eLcnFphGRyPYYZccmMg26kh2tvhoh2bT2NXGvTiFxryYw1aIaIQmmkh01nd4tGZT2Gn2VphFVkXInAYkiChWP/fz5jonbAYrZ9hWOVe1Vkh3RGZcF5n2VaeE1nNXM1aHh3QmnBclxrK3dca3h3dm01c4NuWnhrb8F5GXGHdHJxlXtkcrZ9M3OehtFgYHnRYGyDml+SfJpf/38vXyv3oHb//6B2K/dPeP//T3j//8lq//93bCv3yWor93ds///gbP//jm4r9+BsK/eObiv3bYX//22FK/cbh///G4c9jRaXwXIWlz2NZIzBcmSMPY2OzMFyjsw9jcehwXLHoT2N/HPBcvxzPY2EU2mEZ0uVe2dLwXKEUzSC04uDpdOL4oX5lY+JHqBGmLPIlbuzyNVuW5M6X+bRWWJbk75S5tFphGTZlXtk2WmEOZmVezmZQK3m0cSg5tGlnVuTKZFbk8p904scevmVe1rTi292HqC4Z7PIaUSzyJ5GmHueRraDPQ16cz0NmHs9jccfPY0oVcFyxx/BcihVYLm2g2C5mHvB8ph7wfJ6cz2NyiA9jYxVwXLKIMFyjFVguVxrYLk+Y8HyXGvB8j5jwXKMVcFyyiA9jYxVPY3KIMFy7FPBcosePY3sUz2Nix6eRj5jnkZcaz0NPmM9DVxrp5GJdz2NiXenkWtvPY1rbz2Np6I9jWySp5GnoqeRbJIRloqawXJsksFyp6JXbmySV26nou1pipoRloqap5GnoqeRbJI9jWySPY2nosFyiXdXbol3wXJrb1dua2/taYqaV25skldup6LBcqeiwXJskqeRiXc9jYl3p5Frbz2Na2/Bcol3V26Jd8Fya29XbmtvAACYewAAPmPlHph75R4+YxphAbvtaQG7hGX//+1p///taZbj5J6YexGWmHvknj5jEZY+Y1yJ+HP/f8xxd4tycc+BlHF/g+9wyYyDbvKE6m8PhpRuwoYHbT2NXGv/hlxryYw1aMKGsmkPhiRod4tGZfKEz2Z/g8llz4EkZVyJwGL/f+xkonbAYmB50WCehtFgbIOaX5J8ml//fy9fL34kZYd0RmV/fMllDHvPZu95JGg1czVoPHmyacFyXGv/eFxrPHkHbTVzg27veZRuDHvqb39873CHdHJxL36UcaJ2+HNgeed1nobndZJ8H3dsgx93/3+Jd4RlmHuEZT5j7WmYe+1pPmPkntOL5J75ldyT04vckx6g3JP5lREWNYXlHjWFERZTh+UeU4cRFtByERaycOUe0HLlHrJwERavbBEWkWrlHq9s5R6RahEWxm4RFqhs5R7GbuUeqGzlHoZ/ERaGf+UeZ30RFmd97emRau3pr2wZ4ZFqGeGvbO3pU4cZ4VOH7ek1hRnhNYXt6ahs7enGbhnhqGwZ4cZu7emycO3p0HIZ4bJwGeHQcu3pkWrt6a9sGeGRahnhr2zt6Yd4GeGHeO3paHYZ4Wh27emobO3pxm4Z4ahsGeHGbhEW0HIRFrJw5R7QcuUesnDlHlOHERZTh+UeNYURFjWFGeFodu3paHYZ4Yd47emHeO3psnDt6dByGeGycBnh0HIRFmh25R5odhEWh3jlHod4ERZnfeUeZ30RFoZ/5R6GfxEWr2wRFpFq5R6vbOUekWrlHod4ERaHeOUeaHYRFmh2GeFnfe3pZ30Z4YZ/7emGfxEWxm4RFqhs5R7GbuUeqGzt6YZ/GeGGf+3pZ30Z4Wd9GeE1he3pNYUZ4VOH7elTh///PmP//5h7GeE+YxnhmHsRlpbjEZYBuxGW//96mv//5J4Buz2Ng4E9jZGcwXKDgcFykZw9jfmVwXL5lT2N04vBctOLYHkan2B5dnKehhqfnoZ2cu1pAbvtaUvPGmEBu+1pluOEZf//7Wn//3qamHsRlph7epo+YxGWPmMaYZh7GmE+Y+1pmHvtaT5jPY35lcFy+ZU9jdOLwXLTi56G0GxgedBsnobMW2B5zFs9jZbjPY3//8FyluPBcv//AAAgWwAAElflHiBbCEsDUwhLIFvBciBbwXIDUz2NIFs9jQNTPY0gW8FyIFs9jRJXwXISV56GLG5geSxunoYoXWB5KF0aYSBbYGnoS3BtIFsycA5W7ZnoSxuTDlbelSBbNKIgW8Fy5YQ9jeWEwXKRnD2NkZw9jdGMwXLRjD2NeH7Bcnh+//8SV///IFv2tANTGeEgW/a0IFvkngG7epr//xGWAbsRlpbjEZb//xGWS88ibB6gImz5lSJs04saYdOLGmH5le1p04s9jbaDEZbTixGWPmM9jZh7PY1ca8FymHs9jT5jPY0gW8FyPmPtaT5jwXIgW8FytoPBclxr7Wk6Ze1pPksRljplEZY+SzRwa28TemtvNHCJdxN6iXcIS45xYLmOceUejnHlHgh9YLkIfQhLCH32NJh7CEuYewhL04tgudOLGmGYewhLPmMaYVxrTqOYe2C5PmNOo1xrEZYBuz2Nz2cRloxVaYSxX+1pjFU9jUaIlXuxX8Fyz2fBckaIwXKRnMFytqY9jbam7WkBuz2NkZxWZmtvNHBrb1ZmiXc0cIl37WmYe0iCM3MRlph7aYRkcj2GGXERlj5j/396c6SHa2+GiHZt04hca4aIQmmkh01nPYafZWmEVWRIgoVj/38+Y+1pPmPBciBbPY0gW7Z9hWOVe1VkwXmfZVp4TWd4d0JpK3dca3h3dm1aeGtvwXkZcZV7ZHK2fTNzGeGOcRnhCH32tI5x9rQIfZ5GjnGeRgh9qJlrb6iZiXfKj2tvyo+Jd8qPa2/Kj4l364Vrb+uFiXf2tJh75J5ca/a0PmOeRj5jsFxca7BcmHvknph7nkbTi/a004sIy5h7wXKMVWB5tqbBcgG7PY0Bu56Gtqaehl6bnoYydp6G2mpgedpqPY2MVWB5XptgeTJ2EZZLzzj+PmM4/ph7DrM+Yw6zmHuehrt4nobVmGB5u3hgedWY5J4gW46SIFueluhLzI8OVhFm6EvjbA5WIGogW8pdIFuehhppYHkaaZ6GbmNgeW5jnoa9Z2B5vWeehhFiYHkRYsYBmHvGAT5j8EyYe/BMPmPBcsj8wXKstz2NyPw9jay37WmW4+1pS88Rlpbj7WmW4+1pS88Rlpbj7WmW4+1pS88RlpbjEZZLzxGWAbsRlpbjEZZLzxGWAbsRlpbjEZZLzxGWluM="), -"format": 34896613399, -"index_count": 744, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4ADQAQAA8AEAARAA8AEAASABEAEQATAA8AEwAUAA8AFQANAAwADAAWABUAFgASABUAFgAPABQAFgAXABIAFwARABIAFgAUABcAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AHwAgAB4AIwAhACIAIgAkACMAJAAlACMAKAAmACcAJwApACgALAAqACsAKwAtACwAMAAuAC8ALwAxADAANAAyADMAMwA1ADQAMwA2ADUANgA3ADUAOAA3ADIAMgA0ADgANwA5ADIANwA2ADkAPAA6ADsAOwA9ADwAQAA+AD8APwBBAEAARABCAEMAQwBFAEQASABGAEcARwBJAEgARwBKAEkASgBLAEkATABHAEYARgBNAEwATQBLAEwATQBJAEsAUABOAE8ATwBRAFAAVABSAFMAUwBVAFQAWABWAFcAVwBZAFgAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgAbABqAGsAawBtAGwAcABuAG8AbwBxAHAAdAByAHMAcwB1AHQAeAB2AHcAdwB5AHgAfAB6AHsAewB9AHwAgAB+AH8AfwCBAIAAhACCAIMAgwCFAIQAiACGAIcAhwCJAIgAjACKAIsAiwCNAIwAkACOAI8AjwCRAJAAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAnACaAJsAmwCdAJwAoACeAJ8AnwChAKAApACiAKMAowClAKQAqACmAKcApwCpAKgArACqAKsAqwCtAKwAsACuAK8ArwCxALAAtACyALMAswC1ALQAuAC2ALcAtwC5ALgAvAC6ALsAuwC9ALwAwAC+AL8AvwDBAMAAxADCAMMAwwDFAMQAyADGAMcAxwDJAMgAzADKAMsAywDNAMwA0ADOAM8AzwDRANAA1ADSANMA0wDVANQA2ADWANcA1wDZANgA3ADaANsA2wDdANwA4ADeAN8A3wDhAOAA5ADiAOMA4wDlAOQA6ADmAOcA5wDpAOgA7ADqAOsA6wDtAOwA8ADuAO8A7wDxAPAA9ADyAPMA8wD1APQA+AD2APcA9wD5APgA/AD6APsA+wD9APwAAAH+AP8A/wABAQABBAECAQMBAwEFAQQBAwEGAQUBBgEHAQUBBwEIAQUBBwEJAQgBBwEKAQkBCgELAQkBCgEMAQsBDAENAQsBDAEOAQ0BDgEPAQ0BDwEQAQ0BDwERARABEQESARABEQETARIBEwEUARIBEwEVARQBEwEWARUBFgEXARUBFwEYARUBFwEZARgBHAEaARsBGwEdARwBIAEeAR8BHwEhASABHwEiASEBIgEjASEBIgEkASMBJAElASMBJQEmASMBJgEnASMBJgEoAScBKAEpAScBKQEqAScBKQErASoBKwEsASoBLAEtASoBLAEuAS0BLgEvAS0BLgEwAS8BMAExAS8BMQEyAS8BMQEzATIBMwE0ATIBNAE1ATIBNAE2ATUBNgE3ATUBOAE1ATcBOAE3ATkBOAE5AToBOwE4AToBOwE6ATwBOwE8AT0BPgE7AT0BPgE9AT8BQAE+AT8BQAE/AUEBQAFBAUIBQwFAAUIBQwFCAUQBQwFEAUUBRgFDAUUBRgFFAUcBRgFHAUgBJAFGAUgBSAElASQBOAFJATUBOAFKAUkBSgFLAUkBSgFMAUsBTAFNAUsBUAFOAU8BTwFRAVABVAFSAVMBUwFVAVQBWAFWAVcBVwFZAVgBXAFaAVsBWwFdAVwBYAFeAV8BXwFhAWABZAFiAWMBYwFlAWQBaAFmAWcBZwFpAWgBZwFqAWkBZwFrAWoBbgFsAW0BbQFvAW4BbQFwAW8BbQFxAXABdAFyAXMBcwF1AXQBeAF2AXcBdwF5AXgBfAF6AXsBewF9AXwBgAF+AX8BfwGBAYABgQGCAYABggGDAYAB"), -"material": SubResource("StandardMaterial3D_0fswt"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(22.8346, 24.8346, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("2zYzhWkE//8jyTOFaQT//9s2er8AAP//I8l6vwAA///bNnPYPQ3/v9s2c9gAAP+/I8lz2D0N/78jyXPYAAD/v9s2er8AAP//I8l6vwAA///bNnPYAAD//yPJc9gAAP//2zYzhT0N/3/ati2ePQ3/fyPJM4U9Df9/I8lz2D0N/3/attOuPQ3/f9q2er89Df9/JEnTrj0N/3/atiDQPQ3/fyRJINA9Df9/JEktnj0N/3/bNnPYPQ3/fyRJer89Df9/2zYzhWkE///bNjOFPQ3//yPJM4VpBP//I8kzhT0N//8jyTOFPQ3/vyPJc9g9Df+/I8kzhWkE/78jyXPYAAD/vyPJer8AAP+/2zZz2D0N/7/bNjOFPQ3/v9s2c9gAAP+/2zYzhWkE/7/bNnq/AAD/v9q2LZ7knv//bNstnuSe///atnq/5J7//2zber/knv//2rZ6v7Bc///atnq/5J7//2zber+wXP//bNt6v+Se///ati2e5J7/v9q2LZ6wXP+/bNstnuSe/79s2y2esFz/v9q2Jrd6mv+/2raApnqa/7/ati2e5J7/v9q2LZ6wXP+/2raAptOI/7/atnq/sFz/v9q2er/knv+/2rYmt9OI/79s2y2esFz/f9q2LZ6wXP9/bNt6v7Bc/3/atnq/sFz/fyRJLZ6wXP9/kiQtnrBc/38kSXq/sFz/f5Iker+wXP9/kiR6v7Bc//+SJHq/5J7//yRJer+wXP//JEl6v+Se//8kSS2e5J7/vyRJJrd6mv+/JEl6v+Se/78kSXq/sFz/vyRJJrfTiP+/JEmAptOI/78kSYCmepr/vyRJLZ6wXP+/kiQtnuSe//8kSS2e5J7//5Iker/knv//JEl6v+Se//+RZNip7elKypFk2Kn//0rKzHFap+3pd8/McVqn//93z5IkLZ7knv+/kiQtnrBc/78kSS2e5J7/vyRJLZ6wXP+/2rZ6v////7/8tPDF//+wwNq2er/t6f+//LTwxe3psMD8tAO5//+wwNq2er////+//LQDue3psMDatnq/7en/v4Gv/bL//7rC/LQDuf//sMCBr/2y7em6wvy0A7nt6bDAAkvwxf//sMAkSXq/////vwJL8MXt6bDAJEl6v+3p/78yjpnX//93zzKOmdft6XfPbZsb1f//SsptmxvV7elKyoGv9sv//7rCyaYj0f///MWBr/bL7em6wsmmI9Ht6fzFyabRrf///MWBr/2y//+6wsmm0a3t6fzFga/9su3pusJtm9ip7elKym2b2Kn//0rKyabRre3p/MXJptGt///8xTKOWqft6XfPMo5ap///d89tm9ip7elKym2b2Kn//0rK/3+Apu3pVNX/f4Cm//9U1TKOWqft6XfPMo5ap///d88CSwO5//+wwH1Q/bL//7rCAksDue3psMB9UP2y7em6wjVZ0a3t6fzFNVnRrf///MWRZNip7elKypFk2Kn//0rKfVD9sv//usI1WdGt///8xX1Q/bLt6brCNVnRre3p/MUkSXq/////vwJLA7n//7DAJEl6v+3p/78CSwO57emwwH1Q9sv//7rCAkvwxf//sMB9UPbL7em6wgJL8MXt6bDANVkj0f///MU1WSPR7en8xZFkG9X//0rKkWQb1e3pSsqRZBvV//9KypFkG9Xt6UrKzHGZ1///d8/McZnX7el3z8xxmdf//3fPzHGZ1+3pd8//f3PY//9U1f9/c9jt6VTV/39z2P//VNX/f3PY7elU1TKOmdf//3fPMo6Z1+3pd881WSPR///8xX1Q9sv//7rCNVkj0e3p/MV9UPbL7em6wm2bG9X//0rKbZsb1e3pSsrJpiPR///8xcmmI9Ht6fzF/LTwxf//sMCBr/bL//+6wvy08MXt6bDAga/2y+3pusJ9eDvMK/d3z314O8z//3fP/3+uzCv3VNX/f67M//9U1Xxr0Mgr9/zFfGvQyP///MV+cerKK/dKyn5x6sr//0rK+mPlwv//sMDgZhTG//+6wvpj5cIr97DA4GYUxiv3usLgZt+4//+6wvpjDrz//7DA4GbfuCv3usL6Yw68K/ewwMxxWqft6XfPzHFap///d8//f4Cm7elU1f9/gKb//1TV/WJ6v////7/6Y+XC//+wwP1ier8r9/+/+mPlwiv3sMDgZhTG//+6wnxr0Mj///zF4GYUxiv3usJ8a9DIK/f8xXxrI7b///zFfGsjtiv3/MV+cQq0//9Kyn5xCrQr90rKfnHqyiv3Ssp+cerK//9Kyn14O8wr93fPfXg7zP//d8/6Yw68//+wwP1ier////+/+mMOvCv3sMD9Ynq/K/f/v35xCrT//0rKfnEKtCv3Ssp9eLiy//93z314uLIr93fPfXi4sv//d899eLiyK/d3z/9/RbL//1TV/39Fsiv3VNX/f0Wy//9U1f9/RbIr91TVgYe4sv//d8+Bh7iyK/d3z4GHuLL//3fPgYe4siv3d8+Ajgq0//9KyoCOCrQr90rKgI4KtP//SsqAjgq0K/dKyoKUI7b///zFgpQjtiv3/MV8ayO2///8xeBm37j//7rCfGsjtiv3/MXgZt+4K/e6woGHO8wr93fPgYc7zP//d8+AjurKK/dKyoCO6sr//0rKHpnfuP//usKClCO2///8xR6Z37gr97rCgpQjtiv3/MUEnA68//+wwB6Z37j//7rCBJwOvCv3sMAemd+4K/e6wgGder////+/BJwOvP//sMABnXq/K/f/vwScDrwr97DA/39Fsiv3/399eLiyK/f/f4GHuLIr9/9/gI4KtCv3/39+cQq0K/f/f3xrI7Yr9/9/gpQjtiv3/38emd+4K/f/f+Bm37gr9/9/BJwOvCv3/3/6Yw68K/f/fwGder8r9/9//WJ6vyv3/3/6Y+XCK/f/fwSc5cIr9/9/4GYUxiv3/38emRTGK/f/f3xr0Mgr9/9/gpTQyCv3/3+AjurKK/f/f35x6sor9/9/fXg7zCv3/3+BhzvMK/f/f/9/rswr9/9/gpTQyP///MUemRTG//+6woKU0Mgr9/zFHpkUxiv3usL/f4Cm7en//zKOWqft6f//zHFap+3p//+RZNip7en//22b2Knt6f//NVnRre3p///JptGt7en///9/067t6f//iHZkr+3p//99UP2y7en//7ZtDrHt6f//I2a0s+3p//8CSwO57en//1NgJrft6f//rFwqu+3p//8kSXq/7en//21ber/t6f//Akvwxe3p//+sXMnD7en//1Ngzcft6f//fVD2y+3p//8jZkDL7en//7Zt5c3t6f//NVkj0e3p//+Ido/P7en///9/INDt6f//yaYj0e3p//92iY/P7en//0iS5c3t6f//ga/2y+3p///bmUDL7en//6ufzcft6f///LTwxe3p//9So8nD7en//9q2er/t6f//kaR6v+3p//9Soyq77en///y0A7nt6f//q58mt+3p///bmbSz7en//4Gv/bLt6f//SJIOse3p//92iWSv7en//5FkG9Xt6f//bZsb1e3p///McZnX7en//zKOmdft6f///39z2O3p//+AjurKK/dKyoCO6sr//0rKgpTQyCv3/MWClNDI///8xQSc5cL//7DAAZ16v////78EnOXCK/ewwAGder8r9/+/HpkUxv//usIEnOXC//+wwB6ZFMYr97rCBJzlwiv3sMD/f67MK/dU1f9/rsz//1TVgYc7zCv3d8+BhzvM//93z9q2EGgcehuNJEkQaBx6G43atuB8yn0bjSRJ4HzKfRuN2rYAALhnG40kSQAAuGcbjdq2QFNvdhuNJElAU292G40kSQAAuGf//9q2AAC4Z///JEkAAGlE//+2bQAAlTv//0iSAACVO///2rYAAGlE///atuB8yn3/v9q24Hx7Wv+/2rYQaBx6/7/atkBTb3b/v9q2AAC4Z/+/2rYAAGlE/78kSeB8e1o44CRJAABpRDjgtm3gfKdROOC2bQAAlTs44LZtAACVO///SJIAAJU7//+2beB8p1H//0iS4HynUf//SJIAAJU7OODatgAAaUQ44EiS4HynUTjg2rbgfHtaOOAkSeB8yn3/vyRJEGgcev+/JEngfHta/78kSUBTb3b/vyRJAAC4Z/+/JEkAAGlE/78kSS2enkZU1SRJho2eRlTVJEnTrj0NVNUkSS2ePQ1U1SRJLZ49DQHZJEmGjZ5GAdnati2ePQ0B2dq2ho2eRgHZ2raGjZ5GVNXati2enkZU1dq2LZ49DVTV2rbTrj0NVNUkSXq/PQ1U1SRJer+eRlTV2rZ6vz0NVNXatnq/nkZU1dq2er+eRlTV2rYg0J5GVNXatnq/PQ1U1dq2INA9DVTVJEkg0J5GVNUkSSDQPQ1U1dq2INCeRlTV2rYg0D0NVNUkSS2enkbV0SRJ0649DdXR2rYtnp5G1dHattOuPQ3V0SRJINCeRlTVJEl6v55GVNUkSSDQPQ1U1SRJer89DVTVI8mApnqa///atoCmepr//yPJJrd6mv//2rYmt3qa///atia3eppU1dq2JrfTiFTVI8kmt3qaVNUjySa304hU1WzbJrenkVTV2raAptOIVNXatoCmeppU1SPJgKbTiFTVI8mApnqaVNVs24Cmp5FU1ZIkgKankVTV2zaApnqaVNXbNoCm04hU1SRJgKbTiFTVJEmApnqaVNXatoCm04j//yPJgKbTiP//2rYmt9OI//8jySa304j//5IkJrenkVTV2zYmt9OIVNXbNia3eppU1SRJJrd6mlTVJEkmt9OIVNXbNoCm04j//yRJgKbTiP//2zYmt9OI//8kSSa304j//yRJgKZ6mv//2zaApnqa//8kSSa3epr//9s2Jrd6mv//kiQtnv//VNWSJCDQ//9U1ZIkLZ4Z4VTVkiQg0BnhVNUAACDQ9rRU1ZIkIND2tFTVSRIg0P//VNWSJCDQ//9U1ZIkINAZ4VTVAAAtnva0//+SJC2e9rT//wAAIND2tP//kiQg0Pa0///JptGt//////9/RbL/////ga/9sv////+Bh7iy/////4COCrT//////LQDuf////+ClCO2/////x6Z37j/////BJwOvP/////atnq//////wGder///////LTwxf////8EnOXC/////x6ZFMb/////ga/2y/////+ClNDI/////4CO6sr/////gYc7zP/////JpiPR//////9/rsz/////NVkj0f////+RZBvV/////22bG9X/////Mo6Z1//////McZnX//////9/c9j/////fXg7zP////99UPbL/////35x6sr/////fGvQyP/////gZhTG/////wJL8MX/////+mPlwv////8kSXq///////1ier//////+mMOvP////8CSwO5/////+Bm37j/////fGsjtv////9+cQq0/////31Q/bL/////fXi4sv////81WdGt/////5Fk2Kn/////bZvYqf/////McVqn/////zKOWqf//////3+Apv////9JEi2e/////0kSIND/////kiQtnv////+SJCDQ/////yRJ4HzknlTVJEkQaOSeVNUkSeB83JNU1SRJQFPck1TVJEkQaNyTVNX/fyDQ7elU1f9/INAZ4VTVdomPz+3pVNV2iY/PGeFU1aufzcft6VTV25lAy+3pVNWrn83HGeFU1duZQMsZ4VTVkaR6v+3pVNVSo8nD7elU1ZGker8Z4VTVUqPJwxnhVNWrnya37elU1VKjKrvt6VTVq58mtxnhVNVSoyq7GeFU1XaJZK8Z4VTVdolkr+3pVNVIkg6xGeFU1UiSDrHt6VTVrFzJw+3pVNVtW3q/7elU1axcycMZ4VTVbVt6vxnhVNWIdo/P7elU1Yh2j88Z4VTV/38g0O3pVNX/fyDQGeFU1VNgzcft6VTVrFzJw+3pVNVTYM3HGeFU1axcycMZ4VTVI2ZAy+3pVNVTYM3H7elU1SNmQMsZ4VTVU2DNxxnhVNVtW3q/7elU1axcKrvt6VTVbVt6vxnhVNWsXCq7GeFU1SNmQMvt6VTVI2ZAyxnhVNW2beXN7elU1bZt5c0Z4VTVrFwqu+3pVNVTYCa37elU1axcKrsZ4VTVU2AmtxnhVNXbmbSz7elU1aufJrft6VTV25m0sxnhVNWrnya3GeFU1f9/064Z4VTV/3/Tru3pVNV2iWSvGeFU1XaJZK/t6VTVI2a0sxnhVNUjZrSz7elU1bZtDrEZ4VTVtm0Ose3pVNVTYCa37elU1SNmtLPt6VTVU2AmtxnhVNUjZrSzGeFU1UiS5c3t6VTVSJLlzRnhVNXbmUDL7elU1duZQMsZ4VTVdomPz+3pVNV2iY/PGeFU1UiS5c3t6VTVSJLlzRnhVNVSoyq77elU1ZGker/t6VTVUqMquxnhVNWRpHq/GeFU1UiSDrEZ4VTVSJIOse3pVNXbmbSzGeFU1duZtLPt6VTVtm0OsRnhVNW2bQ6x7elU1Yh2ZK8Z4VTViHZkr+3pVNVSo8nD7elU1aufzcft6VTVUqPJwxnhVNWrn83HGeFU1bZt5c3t6VTVtm3lzRnhVNWIdo/P7elU1Yh2j88Z4VTViHZkrxnhVNWIdmSv7elU1f9/064Z4VTV/3/Tru3pVNVs2yDQ//9U1WzbLZ7//1TVbNsg0BnhVNVs2y2eGeFU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQ//9U1bXtIND//1TV//8g0Pa0VNUkSUBTb3ZU1SRJQFPck1TV2rZAU292VNXatkBT3JNU1dq2EGjknv//JEkQaOSe///atuB85J7//yRJ4Hzknv//kWT//56WVNWRZP//EWZU1W2b//+ellTVbZv//xFmVNVs2y2e9rRU1WzbLZ4Iy1TV/v8tnva0VNVs2y2eGeFU1bXtLZ7//1TVbNstnv//VNW17S2e/////2zbLZ7/////te0g0P////9s2yDQ//////7/LZ72tP////8g0Pa0//9s2y2e9rT//2zbIND2tP//JEkQaNyT///athBo3JP//yRJ4Hzck///2rbgfNyT//9tm8bg5J4mwpFkxuDknibCbZv//56WJsKRZP//npYmwiRJxuAZ4VTVJEnG4P//VNXatsbgGeFU1dq2xuD//1TV2rbG4P//VNXathrp//9U1dq2xuAZ4VTV2rZt8fa0VNXatsbg9rRU1dq2xuD2tP//2rZt8fa0//8kScbg9rT//yRJbfH2tP//2rbG4P////8kScbg/////9q2Gun/////JEka6f////+RZMbgyl2y8m2bxuDKXbLykWT//xFmsvJtm///EWay8m2bxuDknlTVbZv//56WVNVtm8bgjpJU1W2bLuvMj1TVbZv//xFmVNVtmy7r42xU1W2bxuAgalTVbZvG4MpdVNUkSRBoHHpU1dq2EGgcelTVJEkQaNyTVNXathBo3JNU1dq2QFPck/zFJElAU9yT/MXathBo5J78xSRJEGjknvzFJEka6f//VNUkScbg//9U1SRJbfH2tFTVJEnG4BnhVNUkScbg9rRU1QAALZ72tFTVSRItnv//VNWSJC2e9rRU1ZIkLZ4Z4VTVkiQtnv//VNWSJC2eCMtU1dq2QFPck1TV2rYQaNyTVNXatuB83JNU1dq24HzknlTV2rYQaOSeVNVs2+B8nkb//yRJho2eRv//kiTgfJ5G//+SJCDQnkb//yRJLZ6eRv//JEl6v55G///ati2enkb//yRJINCeRv//JEnG4J5G///atiDQnkb//2zbINCeRv//2rbG4J5G///atoaNnkb//9q2er+eRv//kiTgfPa0sMeSJC2eCMuwx2zb4Hz2tLDHbNstngjLsMcjySa3eppoy2zbJrenkWjLI8mApnqaaMts24Cmp5Foy9q2xuD2tFTV2rbG4J5GVNXatsbgGeFU1WzbINAZ4VTVbNsg0J5GVNVs2yDQ9rRU1WzbLZ4Iy1TVbNstnva0VNVs2+B89rRU1Wzb4HyeRlTVbNstnuSeVNVs2yDQ9rRU1Wzber/knlTVbNstnrBcVNVs2yDQnkZU1Wzber+wXFTVkiTgfPa0VNUkSeB8e1pU1ZIk4HyeRlTVtm3gfKdRVNVs2+B8nkZU1SRJ4HzKfVTVSJLgfKdRVNXatuB8e1pU1dq24HzKfVTV2rbgfNyTVNXatuB85J5U1SRJ4HzknlTVbNvgfPa0VNUkSeB83JNU1WzbJrenkfXgI8kmt9OI9eBs24Cmp5H14CPJgKbTiPXgkiQtnhnh//92iWSvGeH//2zbLZ4Z4f//SJIOsRnh///bmbSzGeH//2zbINAZ4f///3/Trhnh//+rnya3GeH//1KjKrsZ4f//kaR6vxnh//9So8nDGeH//6ufzccZ4f//25lAyxnh//9IkuXNGeH//3aJj88Z4f///38g0Bnh//+SJCDQGeH//yRJxuAZ4f//2rbG4Bnh//+Ido/PGeH//7Zt5c0Z4f//I2ZAyxnh//9TYM3HGeH//6xcycMZ4f//bVt6vxnh//+sXCq7GeH//1NgJrcZ4f//I2a0sxnh//+2bQ6xGeH//4h2ZK8Z4f//JEnG4BnhVNWSJCDQGeFU1SRJxuD2tFTVkiQg0Pa0VNUkScbgnkZU1ZIkINCeRlTVkiQmt6eR9eCSJICmp5H14Ns2JrfTiPXg2zaAptOI9eDbNia3eppoy9s2gKZ6mmjLkiQmt6eRaMuSJICmp5Foy5IkLZ72tFTVkiR6v+SeVNWSJCDQ9rRU1ZIkINCeRlTVkiR6v7BcVNWSJC2esFxU1ZIkLZ7knlTVkiTgfJ5GVNWSJOB89rRU1ZIkLZ4Iy1TVJEnG4J5GVNWRZMbg5J5U1SRJxuD2tFTV2rbG4Pa0VNVtm8bg5J5U1W2bxuCOklTVbZvG4CBqVNVtm8bgyl1U1ZFkxuDKXVTV2rbG4J5GVNWRZMbgjpJU1ZFkxuAgalTVkiQtngjLVNVJEiDQ///200kSLZ7///bTAAAg0Pa09tMAAC2e9rT205FkLuvjbFTVkWQu68yPVNVtmy7r42xU1W2bLuvMj1TVkWTG4OSeVNWRZMbgjpJU1ZFk//+ellTVkWQu68yPVNWRZP//EWZU1ZFkLuvjbFTVkWTG4CBqVNWRZMbgyl1U1W2bxuAgaibCkWTG4CBqJsJtmy7r42wmwpFkLuvjbCbCkWTG4I6SsvJtm8bgjpKy8pFkLuvMj7LybZsu68yPsvK17S2e///207XtIND///bT/v8tnva09tP//yDQ9rT20yRJGun///bTJElt8fa09tPathrp///209q2bfH2tPbTbNstnhnhVNVs2y2eCMtU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQGeFU1WzbLZ4Iy1TVbNstnva0VNVs2yDQ9rRU1WzbLZ4Iy1TVkiQtnhnhVNWSJCDQGeFU1ZIkLZ4Iy1TVkiQg0Pa0VNWSJC2eCMtU1ZIkINAZ4VTVkiQtnva0VNWSJCDQ9rRU1X2I//99iP//fYj//32I//////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3/+//9//v//f////3////9/////f////3////9/////f////3////9///9nO7LdZzuy3X8yP9l/Mj/Z////f////3////9/////f/9/AACtmlYN/38AAK2aVg2ocq0a/38AAKhyrRr/fwAAqmmpLKhyrRqqaaksqHKtGlaNUeX/f///Vo1R5f9///9/zb8mf82/JpfETCKXxEwiqKxUFv25/xyorFQW/bn/HABj/jmqaaksAGP+OappqSyzXZhEs12YRABj/jkAY/45P1l/TT9Zf02zXZhEs12YRFRVVFVUVVRVP1l/TT9Zf01RZajyVlOq6VFlqPJWU6rpAUb/4gFG/+JnO7LdZzuy3VZTqukBRv/iVlOq6QFG/+L/f///UWWo8v9///9RZajyVJZV01aNUeVUllXTVo1R5f6cAMb+nADGS6Jmu0uiZrtLoma7S6Jmu7+mf7K/pn+yv6Z/sr+mf7KqqqqqqqqqqlTVqipU1aoqf82/Jn/Nvyb+nADGVJZV0/6cAMZUllXTl8RMIpfETCL9uf8c/bn/HK2aVg2orFQWrZpWDaisVBY/WX9NP1l/TVRVVFVUVVRVAGP+OQBj/jmzXZhEs12YRKhyrRqqaaksqHKtGqppqSyorFQWrZpWDaisVBatmlYNfzI/2X8yP9mqKlTVqipU1f9/AACocq0a/38AAKhyrRqqaaksAGP+OappqSwAY/45/bn/HP25/xyXxEwil8RMIrNdmESzXZhEP1l/TT9Zf02tmlYN/38AAK2aVg3/fwAAl8RMIpfETCJ/zb8mf82/Jn/NvyZ/zb8mVNWqKlTVqiqqqqqqqqqqqr+mf7K/pn+yv6Z/sr+mf7JLoma7S6Jmu0uiZrtLoma7/pwAxv6cAMb9uf8cqKxUFv25/xyorFQWfzI/2X8yP9lnO7LdZzuy3VSWVdP+nADGVJZV0/6cAMZWjVHlVJZV01aNUeVUllXT/3///1aNUeX/f///Vo1R5f9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wFG/+JWU6rpAUb/4lZTqun/f////3////9/////f////3////9/////f////3////9/////f////3/+//9/////f////3/+//9//v//f////3////9/////f////3/+//9//v//f/7//3/+//9/////f////3////9/////f////3/+//9//v//f/7//3/+//9/////f////3////9/////f/7//3////9//v//f////3////9//v//f////3////9/////f////3////9///9nO7LdZzuy3QFG/+IBRv/iUWWo8v9///9RZajy/3///1ZTqulRZajyVlOq6VFlqPKqKlTVqipU1X8yP9l/Mj/ZAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/8//3//P/9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AABKheztSoXs7UqF7O1Khezt/38f7v9/H+7/fx/u/38f7hKSSwUSkksFEpJLBRKSSwX/f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9///////9/////f/Lk8mTy5PJk2a7ZLv+//z/Zrtku/7//P/9/AAAMmwwb/38AAAybDBslUdku8mQMGyVR2S7yZAwbDBvyZAwb8mTZLiVR2S4lUQyb8uT/f///DJvy5P9////y5Ayb8uQMm////3////9/2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/f///8mTy5P9////yZPLk/7//v/+//78l0dmuJdHZrvJk8uQlUSXR8mTy5CVRJdH/P/8/JVHZLv8//z8lUdkuAAD/fwAA/38MG/JkDBvyZP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/JdElUSXRJVH/v/8//7//P/Lk8mTy5PJkJdElUSXRJVHyZAwb/38AAPJkDBv/fwAA2S4lUdkuJVH/P/8//z//P9ku2a7ZLtmuDBsMmwwbDJsMmwwb2a7ZLgybDBvZrtkuJdHZriXR2a7y5Ayb8uQMmwwbDJsMGwybAAD/fwAA/3//f////3////9/////f///////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/7//P/+//z//v/8//7//P/+//z//v/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/+//7//v/+//7//v/+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("p5G5d1duuXenkQdbV24HW1duyiBXbp0Up5HKIKeRnRSnkVxrV25ca6eRL19Xbi9fV27Fhz2NmHunkcWHp5EvXz2NenM9jVxrwXJ6cz2NPmPBcj5jwXKYe1duL1/Bclxrp5GsGKeRyiBXbqwYV27KIMHyxYfB8i9flfvFh///L1///1xrPQ0vXz0NxYcAAC9faQTFhwAAXGvBcph77WmYe8FyXGvtaVxrwXLXacFytqbtaddp7Wm2pj2NtqY9jddpEZa2phGW12mEZWtvhGWJdxphmHtOo5h7K3eJd06jXGsaYVxrK3drbxGWmHs9jZh7EZZcaz2NXGvBcph77WmYe8FyXGvtaVxrEZbXaRGWtqY9jddpPY22puSemHt6mmtv5J5ca7BcXGvTiGtv04iJd3qaiXewXJh7EZaYez2NmHsRllxrPY1ca+3p4Hz//+B87ekNgP//DYDtabam7WnXacFytqbBctdpAAA3bQAACWoRFjdtERYJagAAN20AAAlqERY3bREWCWoAAE5vAAAgbBEWTm8RFiBs//8Jav//N23t6Qlq7ek3bQAA4HwRFuB8AAANgBEWDYAAAFhzAAAqcBEWWHMRFipwAABYcwAAKnARFlhzERYqcBEWDnkAAA55ERbhdQAA4XURFg2AAAANgBEW4HwAAOB8ERbbhwAA24cRFq2EAACthP//IGz//05v7ekgbO3pTm/t6eF1///hde3pDnn//w55//8qcP//WHPt6Spw7elYc///CWr//zdt7ekJau3pN23//yBs//9Ob+3pIGzt6U5v//8Oee3pDnn//+F17enhdf//DYDt6Q2A///gfO3p4Hz//9uH7enbh///rYTt6a2EAACthBEWrYQAANuHERbbh///KnD//1hz7ekqcO3pWHMAAOF1ERbhdQAADnkRFg55AABObwAAIGwRFk5vERYgbNMIG4cAABuH0whthQAAbYXTCE94AABPeNMIoHYAAKB2AACObgAA4GzTCI5u0wjgbAAAjm4AAOBs0wiObtMI4Gzt6a2E//+thO3p24f//9uHAAB3bAAAyWrTCHds0wjJagAAmHIAAOpw0wiYctMI6nAAAKB20wigdgAAT3jTCE940whNfwAATX/TCJ99AACffQAAd2wAAMlq0wh3bNMIyWoAAJ990wiffQAATX/TCE1/AABthdMIbYUAABuH0wgbh///G4cr9xuH//9thSv3bYX//01/K/dNf///n30r9599//9PeCv3T3j//6B2K/egdgAAmHIAAOpw0wiYctMI6nAr9599//+ffSv3TX///01////qcP//mHIr9+pwK/eYcv//4Gz//45uK/fgbCv3jm7//8lq//93bCv3yWor93ds/3/McS9+lHHPgZRxf4PvcH9873AMe+pv8oTqbw+GlG7veZRuwoYHbTx5B23/hlxr/3hcazx5smnChrJp73kkaA+GJGgMe89m8oTPZn+DyWV/fMllL34kZc+BJGX/f+xk///qcP//mHIr9+pwK/eYcv9/iXeSfB93bIMfd56G53Vgeed1XIn4c6J2+HP/f3pzSIIzc3eLcnFphGRyPYYZccmMg26kh2tvhoh2bT2NXGvTiFxryYw1aIaIQmmkh01nd4tGZT2Gn2VphFVkXInAYkiChWP/fz5jonbAYrZ9hWOVe1Vkh3RGZcF5n2VaeE1nNXM1aHh3QmnBclxrK3dca3h3dm01c4NuWnhrb8F5GXGHdHJxlXtkcrZ9M3OehtFgYHnRYGyDml+SfJpf/38vXyv3oHb//6B2K/dPeP//T3j//8lq//93bCv3yWor93ds///gbP//jm4r9+BsK/eObiv3bYX//22FK/cbh///G4c9jRaXwXIWlz2NZIzBcmSMPY2OzMFyjsw9jcehwXLHoT2N/HPBcvxzPY2EU2mEZ0uVe2dLwXKEUzSC04uDpdOL4oX5lY+JHqBGmLPIlbuzyNVuW5M6X+bRWWJbk75S5tFphGTZlXtk2WmEOZmVezmZQK3m0cSg5tGlnVuTKZFbk8p904scevmVe1rTi292HqC4Z7PIaUSzyJ5GmHueRraDPQ16cz0NmHs9jccfPY0oVcFyxx/BcihVYLm2g2C5mHvB8ph7wfJ6cz2NyiA9jYxVwXLKIMFyjFVguVxrYLk+Y8HyXGvB8j5jwXKMVcFyyiA9jYxVPY3KIMFy7FPBcosePY3sUz2Nix6eRj5jnkZcaz0NPmM9DVxrp5GJdz2NiXenkWtvPY1rbz2Np6I9jWySp5GnoqeRbJIRloqawXJsksFyp6JXbmySV26nou1pipoRloqap5GnoqeRbJI9jWySPY2nosFyiXdXbol3wXJrb1dua2/taYqaV25skldup6LBcqeiwXJskqeRiXc9jYl3p5Frbz2Na2/Bcol3V26Jd8Fya29XbmtvAACYewAAPmPlHph75R4+YxphAbvtaQG7hGX//+1p///taZbj5J6YexGWmHvknj5jEZY+Y1yJ+HP/f8xxd4tycc+BlHF/g+9wyYyDbvKE6m8PhpRuwoYHbT2NXGv/hlxryYw1aMKGsmkPhiRod4tGZfKEz2Z/g8llz4EkZVyJwGL/f+xkonbAYmB50WCehtFgbIOaX5J8ml//fy9fL34kZYd0RmV/fMllDHvPZu95JGg1czVoPHmyacFyXGv/eFxrPHkHbTVzg27veZRuDHvqb39873CHdHJxL36UcaJ2+HNgeed1nobndZJ8H3dsgx93/3+Jd4RlmHuEZT5j7WmYe+1pPmPkntOL5J75ldyT04vckx6g3JP5lREWNYXlHjWFERZTh+UeU4cRFtByERaycOUe0HLlHrJwERavbBEWkWrlHq9s5R6RahEWxm4RFqhs5R7GbuUeqGzlHoZ/ERaGf+UeZ30RFmd97emRau3pr2wZ4ZFqGeGvbO3pU4cZ4VOH7ek1hRnhNYXt6ahs7enGbhnhqGwZ4cZu7emycO3p0HIZ4bJwGeHQcu3pkWrt6a9sGeGRahnhr2zt6Yd4GeGHeO3paHYZ4Wh27emobO3pxm4Z4ahsGeHGbhEW0HIRFrJw5R7QcuUesnDlHlOHERZTh+UeNYURFjWFGeFodu3paHYZ4Yd47emHeO3psnDt6dByGeGycBnh0HIRFmh25R5odhEWh3jlHod4ERZnfeUeZ30RFoZ/5R6GfxEWr2wRFpFq5R6vbOUekWrlHod4ERaHeOUeaHYRFmh2GeFnfe3pZ30Z4YZ/7emGfxEWxm4RFqhs5R7GbuUeqGzt6YZ/GeGGf+3pZ30Z4Wd9GeE1he3pNYUZ4VOH7elTh///PmP//5h7GeE+YxnhmHsRlpbjEZYBuxGW//96mv//5J4Buz2Ng4E9jZGcwXKDgcFykZw9jfmVwXL5lT2N04vBctOLYHkan2B5dnKehhqfnoZ2cu1pAbvtaUvPGmEBu+1pluOEZf//7Wn//3qamHsRlph7epo+YxGWPmMaYZh7GmE+Y+1pmHvtaT5jPY35lcFy+ZU9jdOLwXLTi56G0GxgedBsnobMW2B5zFs9jZbjPY3//8FyluPBcv//AAAgWwAAElflHiBbCEsDUwhLIFvBciBbwXIDUz2NIFs9jQNTPY0gW8FyIFs9jRJXwXISV56GLG5geSxunoYoXWB5KF0aYSBbYGnoS3BtIFsycA5W7ZnoSxuTDlbelSBbNKIgW8Fy5YQ9jeWEwXKRnD2NkZw9jdGMwXLRjD2NeH7Bcnh+//8SV///IFv2tANTGeEgW/a0IFvkngG7epr//xGWAbsRlpbjEZb//xGWS88ibB6gImz5lSJs04saYdOLGmH5le1p04s9jbaDEZbTixGWPmM9jZh7PY1ca8FymHs9jT5jPY0gW8FyPmPtaT5jwXIgW8FytoPBclxr7Wk6Ze1pPksRljplEZY+SzRwa28TemtvNHCJdxN6iXcIS45xYLmOceUejnHlHgh9YLkIfQhLCH32NJh7CEuYewhL04tgudOLGmGYewhLPmMaYVxrTqOYe2C5PmNOo1xrEZYBuz2Nz2cRloxVaYSxX+1pjFU9jUaIlXuxX8Fyz2fBckaIwXKRnMFytqY9jbam7WkBuz2NkZxWZmtvNHBrb1ZmiXc0cIl37WmYe0iCM3MRlph7aYRkcj2GGXERlj5j/396c6SHa2+GiHZt04hca4aIQmmkh01nPYafZWmEVWRIgoVj/38+Y+1pPmPBciBbPY0gW7Z9hWOVe1VkwXmfZVp4TWd4d0JpK3dca3h3dm1aeGtvwXkZcZV7ZHK2fTNzGeGOcRnhCH32tI5x9rQIfZ5GjnGeRgh9qJlrb6iZiXfKj2tvyo+Jd8qPa2/Kj4l364Vrb+uFiXf2tJh75J5ca/a0PmOeRj5jsFxca7BcmHvknph7nkbTi/a004sIy5h7wXKMVWB5tqbBcgG7PY0Bu56Gtqaehl6bnoYydp6G2mpgedpqPY2MVWB5XptgeTJ2EZZLzzj+PmM4/ph7DrM+Yw6zmHuehrt4nobVmGB5u3hgedWY5J4gW46SIFueluhLzI8OVhFm6EvjbA5WIGogW8pdIFuehhppYHkaaZ6GbmNgeW5jnoa9Z2B5vWeehhFiYHkRYsYBmHvGAT5j8EyYe/BMPmPBcsj8wXKstz2NyPw9jay37WmW4+1pS88Rlpbj7WmW4+1pS88Rlpbj7WmW4+1pS88RlpbjEZZLzxGWAbsRlpbjEZZLzxGWAbsRlpbjEZZLzxGWluM="), -"format": 34896613399, -"index_count": 606, -"index_data": PackedByteArray("hgGEAYUBhQGHAYYBigGIAYkBiQGLAYoBjgGMAY0BjQGPAY4BkgGQAZEBkQGTAZIBlgGUAZUBlQGXAZYBmgGYAZkBmQGbAZoBngGcAZ0BnQGfAZ4BogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqgGoAakBqQGrAaoBqwGsAaoBrwGtAa4BrgGwAa8BsAGxAa8BtAGyAbMBswG1AbQBswG2AbUBuQG3AbgBuAG6AbkBvQG7AbwBvAG+Ab0BvAG/Ab4BwgHAAcEBwQHDAcIBxgHEAcUBxQHHAcYBygHIAckByQHLAcoBzgHMAc0BzQHPAc4BzQHQAc8B0wHRAdIB0gHUAdMB1wHVAdYB1gHYAdcB2AHZAdcB2QHaAdcB2QHbAdoB2wHcAdoB3AHdAdoB3QHeAdoB3QHfAd4B3wHgAd4B3wHhAeAB4QHiAeAB4gHjAeAB4gHkAeMB5AHlAeMB5QHmAeMB5gHnAeMB5gHoAecB6AHpAecB6QHqAecB6gHrAecB6gHsAesB6gHtAewB7QHuAewB6QHoAe8B8AHpAe8B8AHvAfEB8AHxAfIB8AHyAfMB9AHwAfMB9AHzAfUB9gH0AfUB9gH1AfcB9gH3AfgB+QH2AfgB+QH4AfoB+QH6AfsB+QH7AfwB/QH5AfwB/QH8Af4B/QH+AdYB/QHWAdUB/wH9AdUBAAL/AdUBAALVAQECAgIAAgECAgIBAgMCAwIEAgICBwIFAgYCBgIIAgcCCwIJAgoCCgIMAgsCDAINAgsCDAJ/AQ0CDAKBAX8BEAIOAg8CDwIRAhACFAISAhMCEwIVAhQCGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCIAIeAh8CHwIhAiACJAIiAiMCIwIlAiQCKAImAicCJwIpAigCLAIqAisCKwItAiwCMAIuAi8CLwIxAjACNAIyAjMCMwI1AjQCOAI2AjcCNwI5AjgCPAI6AjsCOwI9AjwCQAI+Aj8CPwJBAkACRAJCAkMCQwJFAkQCSAJGAkcCRwJJAkgCTAJKAksCSwJNAkwCUAJOAk8CTwJRAlACVAJSAlMCUwJVAlQCWAJWAlcCVwJZAlgCXAJaAlsCWwJdAlwCYAJeAl8CXwJhAmACZAJiAmMCYwJlAmQCaAJmAmcCZwJpAmgCbAJqAmsCawJtAmwCcAJuAm8CbwJxAnACdAJyAnMCcwJ1AnQCcwJ2AnUCeQJ3AngCeAJ6AnkCfQJ7AnwCfAJ+An0CgQJ/AoACgAKCAoEChQKDAoQChAKGAoUChgKHAoUChwKGAogCiwKJAooCigKMAosCjwKNAo4CjgKQAo8CkwKRApICkgKUApMClwKVApYClgKYApcCmwKZApoCmgKcApsCnwKdAp4CngKgAp8CoAKhAp8CpAKiAqMCowKlAqQCqAKmAqcCpwKpAqgCrAKqAqsCqwKtAqwCsAKuAq8CrwKxArACrwKyArECsgKzArECsgK0ArMCsgK1ArQCuAK2ArcCtwK5ArgCvAK6ArsCuwK9ArwCwAK+Ar8CvwLBAsACwQLCAsACxQLDAsQCxALGAsUCxALHAsYCxgLIAsUCbwHJAsoCygJuAW8BywLKAskCzALLAskCyQLNAswC"), -"material": SubResource("StandardMaterial3D_bbdhu"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(22.8346, 24.8346, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("2zYzhWkE6PsjyTOFaQTo+9s2er8AAOj7I8l6vwAA6PvbNnPYPQ1U1ds2c9gAAFTVI8lz2D0NVNUjyXPYAABU1ds2er8AAP//I8l6vwAA///bNnPYAAD//yPJc9gAAP//2zYzhT0N///ati2ePQ3//yPJM4U9Df//I8lz2D0N///attOuPQ3//9q2er89Df//JEnTrj0N///atiDQPQ3//yRJINA9Df//JEktnj0N///bNnPYPQ3//yRJer89Df//2zYzhWkEVNXbNjOFPQ1U1SPJM4VpBFTVI8kzhT0NVNUjyTOFPQ1U1SPJc9g9DVTVI8kzhWkEVNUjyXPYAABU1SPJer8AAFTV2zZz2D0NVNXbNjOFPQ1U1ds2c9gAAFTV2zYzhWkEVNXbNnq/AABU1dq2LZ7knv//bNstnuSe///atnq/5J7//2zber/knv//2rZ6v7BcVNXatnq/5J5U1Wzber+wXFTVbNt6v+SeVNXati2e5J5U1dq2LZ6wXFTVbNstnuSeVNVs2y2esFxU1dq2Jrd6mlTV2raApnqaVNXati2e5J5U1dq2LZ6wXFTV2raAptOIVNXatnq/sFxU1dq2er/knlTV2rYmt9OIVNVs2y2esFz//9q2LZ6wXP//bNt6v7Bc///atnq/sFz//yRJLZ6wXP//kiQtnrBc//8kSXq/sFz//5Iker+wXP//kiR6v7BcVNWSJHq/5J5U1SRJer+wXFTVJEl6v+SeVNUkSS2e5J5U1SRJJrd6mlTVJEl6v+SeVNUkSXq/sFxU1SRJJrfTiFTVJEmAptOIVNUkSYCmeppU1SRJLZ6wXFTVkiQtnuSe//8kSS2e5J7//5Iker/knv//JEl6v+Se//+RZNip7elU1ZFk2Kn//1TVzHFap+3pVNXMcVqn//9U1ZIkLZ7knlTVkiQtnrBcVNUkSS2e5J5U1SRJLZ6wXFTV2rZ6v///VNX8tPDF//9U1dq2er/t6VTV/LTwxe3pVNX8tAO5//9U1dq2er///1TV/LQDue3pVNXatnq/7elU1YGv/bL//1TV/LQDuf//VNWBr/2y7elU1fy0A7nt6VTVAkvwxf//VNUkSXq///9U1QJL8MXt6VTVJEl6v+3pVNUyjpnX//9U1TKOmdft6VTVbZsb1f//VNVtmxvV7elU1YGv9sv//1TVyaYj0f//VNWBr/bL7elU1cmmI9Ht6VTVyabRrf//VNWBr/2y//9U1cmm0a3t6VTVga/9su3pVNVtm9ip7elU1W2b2Kn//1TVyabRre3pVNXJptGt//9U1TKOWqft6VTVMo5ap///VNVtm9ip7elU1W2b2Kn//1TV/3+Apu3pVNX/f4Cm//9U1TKOWqft6VTVMo5ap///VNUCSwO5//9U1X1Q/bL//1TVAksDue3pVNV9UP2y7elU1TVZ0a3t6VTVNVnRrf//VNWRZNip7elU1ZFk2Kn//1TVfVD9sv//VNU1WdGt//9U1X1Q/bLt6VTVNVnRre3pVNUkSXq///9U1QJLA7n//1TVJEl6v+3pVNUCSwO57elU1X1Q9sv//1TVAkvwxf//VNV9UPbL7elU1QJL8MXt6VTVNVkj0f//VNU1WSPR7elU1ZFkG9X//1TVkWQb1e3pVNWRZBvV//9U1ZFkG9Xt6VTVzHGZ1///VNXMcZnX7elU1cxxmdf//1TVzHGZ1+3pVNX/f3PY//9U1f9/c9jt6VTV/39z2P//VNX/f3PY7elU1TKOmdf//1TVMo6Z1+3pVNU1WSPR//9U1X1Q9sv//1TVNVkj0e3pVNV9UPbL7elU1W2bG9X//1TVbZsb1e3pVNXJpiPR//9U1cmmI9Ht6VTV/LTwxf//VNWBr/bL//9U1fy08MXt6VTVga/2y+3pVNV9eDvMK/dU1X14O8z//1TV/3+uzCv3VNX/f67M//9U1Xxr0Mgr91TVfGvQyP//VNV+cerKK/dU1X5x6sr//1TV+mPlwv//VNXgZhTG//9U1fpj5cIr91TV4GYUxiv3VNXgZt+4//9U1fpjDrz//1TV4GbfuCv3VNX6Yw68K/dU1cxxWqft6VTVzHFap///VNX/f4Cm7elU1f9/gKb//1TV/WJ6v///VNX6Y+XC//9U1f1ier8r91TV+mPlwiv3VNXgZhTG//9U1Xxr0Mj//1TV4GYUxiv3VNV8a9DIK/dU1XxrI7b//1TVfGsjtiv3VNV+cQq0//9U1X5xCrQr91TVfnHqyiv3VNV+cerK//9U1X14O8wr91TVfXg7zP//VNX6Yw68//9U1f1ier///1TV+mMOvCv3VNX9Ynq/K/dU1X5xCrT//1TVfnEKtCv3VNV9eLiy//9U1X14uLIr91TVfXi4sv//VNV9eLiyK/dU1f9/RbL//1TV/39Fsiv3VNX/f0Wy//9U1f9/RbIr91TVgYe4sv//VNWBh7iyK/dU1YGHuLL//1TVgYe4siv3VNWAjgq0//9U1YCOCrQr91TVgI4KtP//VNWAjgq0K/dU1YKUI7b//1TVgpQjtiv3VNV8ayO2//9U1eBm37j//1TVfGsjtiv3VNXgZt+4K/dU1YGHO8wr91TVgYc7zP//VNWAjurKK/dU1YCO6sr//1TVHpnfuP//VNWClCO2//9U1R6Z37gr91TVgpQjtiv3VNUEnA68//9U1R6Z37j//1TVBJwOvCv3VNUemd+4K/dU1QGder///1TVBJwOvP//VNUBnXq/K/dU1QScDrwr91TV/39Fsiv3//99eLiyK/f//4GHuLIr9///gI4KtCv3//9+cQq0K/f//3xrI7Yr9///gpQjtiv3//8emd+4K/f//+Bm37gr9///BJwOvCv3///6Yw68K/f//wGder8r9////WJ6vyv3///6Y+XCK/f//wSc5cIr9///4GYUxiv3//8emRTGK/f//3xr0Mgr9///gpTQyCv3//+AjurKK/f//35x6sor9///fXg7zCv3//+BhzvMK/f///9/rswr9///gpTQyP//VNUemRTG//9U1YKU0Mgr91TVHpkUxiv3VNX/f4Cm7en//zKOWqft6f//zHFap+3p//+RZNip7en//22b2Knt6f//NVnRre3p///JptGt7en///9/067t6f//iHZkr+3p//99UP2y7en//7ZtDrHt6f//I2a0s+3p//8CSwO57en//1NgJrft6f//rFwqu+3p//8kSXq/7en//21ber/t6f//Akvwxe3p//+sXMnD7en//1Ngzcft6f//fVD2y+3p//8jZkDL7en//7Zt5c3t6f//NVkj0e3p//+Ido/P7en///9/INDt6f//yaYj0e3p//92iY/P7en//0iS5c3t6f//ga/2y+3p///bmUDL7en//6ufzcft6f///LTwxe3p//9So8nD7en//9q2er/t6f//kaR6v+3p//9Soyq77en///y0A7nt6f//q58mt+3p///bmbSz7en//4Gv/bLt6f//SJIOse3p//92iWSv7en//5FkG9Xt6f//bZsb1e3p///McZnX7en//zKOmdft6f///39z2O3p//+AjurKK/dU1YCO6sr//1TVgpTQyCv3VNWClNDI//9U1QSc5cL//1TVAZ16v///VNUEnOXCK/dU1QGder8r91TVHpkUxv//VNUEnOXC//9U1R6ZFMYr91TVBJzlwiv3VNX/f67MK/dU1f9/rsz//1TVgYc7zCv3VNWBhzvM//9U1dq2EGgcegrBJEkQaBx6CsHatuB8yn0KwSRJ4HzKfQrB2rYAALhnCsEkSQAAuGcKwdq2QFNvdgrBJElAU292CsEkSQAAuGdU1dq2AAC4Z1TVJEkAAGlEVNW2bQAAlTtU1UiSAACVO1TV2rYAAGlEVNXatuB8yn1U1dq24Hx7WlTV2rYQaBx6/7/atkBTb3b/v9q2AAC4Z1TV2rYAAGlEVNUkSeB8e1rw6CRJAABpRPDotm3gfKdR8Oi2bQAAlTvw6LZtAACVO7/2SJIAAJU7v/a2beB8p1G/9kiS4HynUb/2SJIAAJU78OjatgAAaUTw6EiS4HynUfDo2rbgfHta8OgkSeB8yn1U1SRJEGgcev+/JEngfHtaVNUkSUBTb3b/vyRJAAC4Z1TVJEkAAGlEVNUkSS2enkb/vyRJho2eRv+/JEnTrj0N/78kSS2ePQ3/vyRJLZ49Df//JEmGjZ5G///ati2ePQ3//9q2ho2eRv//2raGjZ5G/7/ati2enkb/v9q2LZ49Df+/2rbTrj0N/78kSXq/PQ3//yRJer+eRv//2rZ6vz0N///atnq/nkb//9q2er+eRv+/2rYg0J5G/7/atnq/PQ3/v9q2INA9Df+/JEkg0J5G/78kSSDQPQ3/v9q2INCeRv+/2rYg0D0N/78kSS2enkbHuSRJ0649Dce52rYtnp5Gx7nattOuPQ3HuSRJINCeRv+/JEl6v55G/78kSSDQPQ3/vyRJer89Df+/I8mApnqa/3/atoCmepr/fyPJJrd6mv9/2rYmt3qa/3/atia3epr/v9q2JrfTiP+/I8kmt3qa/78jySa304j/v2zbJrenkf+/2raAptOI///atoCmepr//yPJgKbTiP//I8mApnqa//9s24Cmp5H//5IkgKankf//2zaApnqa///bNoCm04j//yRJgKbTiP//JEmApnqa///atoCm04j//yPJgKbTiP//2rYmt9OI//8jySa304j//5IkJrenkf+/2zYmt9OI/7/bNia3epr/vyRJJrd6mv+/JEkmt9OI/7/bNoCm04j//yRJgKbTiP//2zYmt9OI//8kSSa304j//yRJgKZ6mv9/2zaApnqa/38kSSa3epr/f9s2Jrd6mv9/kiQtnv///7+SJCDQ////v5IkLZ4Z4f+/kiQg0Bnh/78AACDQ9rT/v5IkIND2tP+/SRIg0P///7+SJCDQ////v5IkINAZ4f+/AAAtnva0//+SJC2e9rT//wAAIND2tP//kiQg0Pa0///JptGt////f/9/RbL///9/ga/9sv///3+Bh7iy////f4COCrT///9//LQDuf///3+ClCO2////fx6Z37j///9/BJwOvP///3/atnq/////fwGder////9//LTwxf///38EnOXC////fx6ZFMb///9/ga/2y////3+ClNDI////f4CO6sr///9/gYc7zP///3/JpiPR////f/9/rsz///9/NVkj0f///3+RZBvV////f22bG9X///9/Mo6Z1////3/McZnX////f/9/c9j///9/fXg7zP///399UPbL////f35x6sr///9/fGvQyP///3/gZhTG////fwJL8MX///9/+mPlwv///38kSXq/////f/1ier////9/+mMOvP///38CSwO5////f+Bm37j///9/fGsjtv///39+cQq0////f31Q/bL///9/fXi4sv///381WdGt////f5Fk2Kn///9/bZvYqf///3/McVqn////fzKOWqf///9//3+Apv///39JEi2e////f0kSIND///9/kiQtnv///3+SJCDQ////fyRJ4Hzknv+/JEkQaOSe/78kSeB83JP/vyRJQFPck/+/JEkQaNyT/7//fyDQ7elU1f9/INAZ4VTVdomPz+3pd892iY/PGeF3z6ufzcft6brC25lAy+3p/MWrn83HGeG6wtuZQMsZ4fzFkaR6v+3p/79So8nD7emwwJGker8Z4f+/UqPJwxnhsMCrnya37em6wlKjKrvt6bDAq58mtxnhusJSoyq7GeGwwHaJZK8Z4XfPdolkr+3pd89Ikg6xGeFKykiSDrHt6UrKrFzJw+3psMBtW3q/7en/v6xcycMZ4bDAbVt6vxnh/7+Ido/P7el3z4h2j88Z4XfP/38g0O3pVNX/fyDQGeFU1VNgzcft6brCrFzJw+3psMBTYM3HGeG6wqxcycMZ4bDAI2ZAy+3p/MVTYM3H7em6wiNmQMsZ4fzFU2DNxxnhusJtW3q/7en/v6xcKrvt6bDAbVt6vxnh/7+sXCq7GeGwwCNmQMvt6fzFI2ZAyxnh/MW2beXN7elKyrZt5c0Z4UrKrFwqu+3psMBTYCa37em6wqxcKrsZ4bDAU2AmtxnhusLbmbSz7en8xaufJrft6brC25m0sxnh/MWrnya3GeG6wv9/064Z4VTV/3/Tru3pVNV2iWSvGeF3z3aJZK/t6XfPI2a0sxnh/MUjZrSz7en8xbZtDrEZ4UrKtm0Ose3pSspTYCa37em6wiNmtLPt6fzFU2AmtxnhusIjZrSzGeH8xUiS5c3t6UrKSJLlzRnhSsrbmUDL7en8xduZQMsZ4fzFdomPz+3pd892iY/PGeF3z0iS5c3t6UrKSJLlzRnhSspSoyq77emwwJGker/t6f+/UqMquxnhsMCRpHq/GeH/v0iSDrEZ4UrKSJIOse3pSsrbmbSzGeH8xduZtLPt6fzFtm0OsRnhSsq2bQ6x7elKyoh2ZK8Z4XfPiHZkr+3pd89So8nD7emwwKufzcft6brCUqPJwxnhsMCrn83HGeG6wrZt5c3t6UrKtm3lzRnhSsqIdo/P7el3z4h2j88Z4XfPiHZkrxnhd8+IdmSv7el3z/9/064Z4VTV/3/Tru3pVNVs2yDQ////v2zbLZ7///+/bNsg0Bnh/79s2y2eGeH/v2zbINAZ4f+/bNsg0Pa0/79s2yDQ////v7XtIND///+///8g0Pa0/78kSUBTb3b//yRJQFPck///2rZAU292///atkBT3JP//9q2EGjknv9/JEkQaOSe/3/atuB85J7/fyRJ4Hzknv9/kWT//56W/7+RZP//EWb/v22b//+elv+/bZv//xFm/79s2y2e9rT//2zbLZ4Iy////v8tnva0//9s2y2eGeH//7XtLZ7/////bNstnv////+17S2e////f2zbLZ7///9/te0g0P///39s2yDQ////f/7/LZ72tP////8g0Pa0//9s2y2e9rT//2zbIND2tP//JEkQaNyT///athBo3JP//yRJ4Hzck///2rbgfNyT//9tm8bg5J7jkpFkxuDknuOSbZv//56W45KRZP//npbjkiRJxuAZ4f//JEnG4P/////atsbgGeH//9q2xuD/////2rbG4P///7/athrp////v9q2xuAZ4f+/2rZt8fa0/7/atsbg9rT/v9q2xuD2tP//2rZt8fa0//8kScbg9rT//yRJbfH2tP//2rbG4P///38kScbg////f9q2Gun///9/JEka6f///3+RZMbgyl3//22bxuDKXf//kWT//xFm//9tm///EWb//22bxuDknv+/bZv//56W/79tm8bgjpL/v22bLuvMj/+/bZv//xFm/79tmy7r42z/v22bxuAgav+/bZvG4Mpd/78kSRBoHHr/v9q2EGgcev+/JEkQaNyT/7/athBo3JP/v9q2QFPck/+fJElAU9yT/5/athBo5J7/nyRJEGjknv+fJEka6f///78kScbg////vyRJbfH2tP+/JEnG4Bnh/78kScbg9rT/vwAALZ72tP//SRItnv////+SJC2e9rT//5IkLZ4Z4f//kiQtnv////+SJC2eCMv/v9q2QFPck/+/2rYQaNyT/7/atuB83JP/v9q24Hzknv+/2rYQaOSe/79s2+B8nkb//yRJho2eRv//kiTgfJ5G//+SJCDQnkb//yRJLZ6eRv//JEl6v55G///ati2enkb//yRJINCeRv//JEnG4J5G///atiDQnkb//2zbINCeRv//2rbG4J5G///atoaNnkb//9q2er+eRv//kiTgfPa0sMeSJC2eCMuwx2zb4Hz2tLDHbNstngjLsMcjySa3eppoy2zbJrenkWjLI8mApnqaaMts24Cmp5Foy9q2xuD2tFTV2rbG4J5GVNXatsbgGeFU1WzbINAZ4VTVbNsg0J5GVNVs2yDQ9rRU1WzbLZ4Iy1TVbNstnva0VNVs2+B89rRU1Wzb4HyeRlTVbNstnuSeVNVs2yDQ9rRU1Wzber/knlTVbNstnrBcVNVs2yDQnkZU1Wzber+wXFTVkiTgfPa0VNUkSeB8e1pU1ZIk4HyeRlTVtm3gfKdRVNVs2+B8nkZU1SRJ4HzKfVTVSJLgfKdRVNXatuB8e1pU1dq24HzKfVTV2rbgfNyTVNXatuB85J5U1SRJ4HzknlTVbNvgfPa0VNUkSeB83JNU1WzbJrenkfXgI8kmt9OI9eBs24Cmp5H14CPJgKbTiPXgkiQtnhnh//92iWSvGeH//2zbLZ4Z4f//SJIOsRnh///bmbSzGeH//2zbINAZ4f///3/Trhnh//+rnya3GeH//1KjKrsZ4f//kaR6vxnh//9So8nDGeH//6ufzccZ4f//25lAyxnh//9IkuXNGeH//3aJj88Z4f///38g0Bnh//+SJCDQGeH//yRJxuAZ4f//2rbG4Bnh//+Ido/PGeH//7Zt5c0Z4f//I2ZAyxnh//9TYM3HGeH//6xcycMZ4f//bVt6vxnh//+sXCq7GeH//1NgJrcZ4f//I2a0sxnh//+2bQ6xGeH//4h2ZK8Z4f//JEnG4BnhVNWSJCDQGeFU1SRJxuD2tFTVkiQg0Pa0VNUkScbgnkZU1ZIkINCeRlTVkiQmt6eR9eCSJICmp5H14Ns2JrfTiPXg2zaAptOI9eDbNia3eppoy9s2gKZ6mmjLkiQmt6eRaMuSJICmp5Foy5IkLZ72tFTVkiR6v+SeVNWSJCDQ9rRU1ZIkINCeRlTVkiR6v7BcVNWSJC2esFxU1ZIkLZ7knlTVkiTgfJ5GVNWSJOB89rRU1ZIkLZ4Iy1TVJEnG4J5GVNWRZMbg5J5U1SRJxuD2tFTV2rbG4Pa0VNVtm8bg5J5U1W2bxuCOklTVbZvG4CBqVNVtm8bgyl1U1ZFkxuDKXVTV2rbG4J5GVNWRZMbgjpJU1ZFkxuAgalTVkiQtngjLVNVJEiDQ///200kSLZ7///bTAAAg0Pa09tMAAC2e9rT205FkLuvjbFTVkWQu68yPVNVtmy7r42xU1W2bLuvMj1TVkWTG4OSeVNWRZMbgjpJU1ZFk//+ellTVkWQu68yPVNWRZP//EWZU1ZFkLuvjbFTVkWTG4CBqVNWRZMbgyl1U1W2bxuAgaibCkWTG4CBqJsJtmy7r42wmwpFkLuvjbCbCkWTG4I6SsvJtm8bgjpKy8pFkLuvMj7LybZsu68yPsvK17S2e///207XtIND///bT/v8tnva09tP//yDQ9rT20yRJGun///bTJElt8fa09tPathrp///209q2bfH2tPbTbNstnhnhVNVs2y2eCMtU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQGeFU1WzbLZ4Iy1TVbNstnva0VNVs2yDQ9rRU1WzbLZ4Iy1TVkiQtnhnhVNWSJCDQGeFU1ZIkLZ4Iy1TVkiQg0Pa0VNWSJC2eCMtU1ZIkINAZ4VTVkiQtnva0VNWSJCDQ9rRU1QAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwyb////f////3////9/////f/9/AAAMmwwb/38AAAybDBvyZAwb/38AAPJkDBv/fwAAJVHZLvJkDBslUdku8mQMGwyb8uT/f///DJvy5P9////y5PJk8uTyZCXRJVEl0SVR2a7ZLv+//z/Zrtku/7//P/8//z8lUdku/z//PyVR2S7ZLiVR2S4lUf8//z//P/8/DBvyZAwb8mTZLiVR2S4lUQAA/38AAP9/DBvyZAwb8mTyZPLkJVEl0fJk8uQlUSXR/z//v/8//7/ZLtmu2S7ZriVRJdH/P/+/JVEl0f8//7//f///8mTy5P9////yZPLk2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4l0dmuJdHZrvLkDJvy5Ayb8uQMm/LkDJv///9/////f////3////9/8uTyZPLk8mT/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//PwybDBvZrtkuDJsMG9mu2S4MG/JkDBvyZAAA/38AAP9//z//P/8//z/ZLiVR2S4lUfJkDBslUdku8mQMGyVR2S7ZrtkuDJsMG9mu2S4MmwwbDBsMmwwbDJsAAP9/AAD/f/9/AADyZAwb/38AAPJkDBslUdku/z//PyVR2S7/P/8//7//P/+//z8l0SVRJdElUdkuJVHZLiVRDBvyZAwb8mQMmwwb/38AAAybDBv/fwAAJdElUSXRJVHy5PJk8uTyZPLk8mTy5PJk////f////3////9/////f/LkDJvy5Ayb8uQMm/LkDJsl0dmuJdHZriXR2a4l0dmu/7//v/+//7//v/8/2a7ZLv+//z/ZrtkuDBsMmwwbDJvZLtmu2S7ZrtmuJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5P9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/8//78lUSXR/z//vyVRJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7Zrv8//7//P/+/8mTy5P9////yZPLk/3///yVRJdHyZPLkJVEl0fJk8uQAAP9/AAD/fwwbDJsMGwybAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/n//f/5//3/+f/9//n//f////f////3////9/////f/+f/x//n/8f/5//H/+f/x//f////3////9/////f////3////9/////f////3////9/////f///Grv//xq7//8au///Grv///9/AAD/fwAA/38AAP9/AAD/f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9//3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///9U1aoqVNWqKn/NvyZ/zb8mqKxUFv25/xyorFQW/bn/HP9/AACtmlYN/38AAK2aVg2qaaksqHKtGqppqSyocq0aP1l/TT9Zf02zXZhEs12YRFaNUeX/f///Vo1R5f9///+/pn+yv6Z/sqqqqqqqqqqqVJZV01aNUeVUllXTVo1R5f6cAMZUllXT/pwAxlSWVdP/f///UWWo8v9///9RZajy/pwAxv6cAMZLoma7S6Jmu1FlqPJWU6rpUWWo8lZTqukAY/45qmmpLABj/jmqaaksVFVUVVRVVFU/WX9NP1l/TQFG/+IBRv/iZzuy3Wc7st1WU6rpAUb/4lZTqukBRv/il8RMIpfETCL9uf8c/bn/HH/NvyZ/zb8ml8RMIpfETCKocq0a/38AAKhyrRr/fwAAs12YRLNdmEQAY/45AGP+OWc7st1nO7LdfzI/2X8yP9mtmlYNqKxUFq2aVg2orFQWS6Jmu0uiZru/pn+yv6Z/sn8yP9l/Mj/ZqipU1aoqVNX/f////3////9/////f///////f////3////9/////f////3//f/8//3//P/9//z//f/8//3////9/////f////3///////3////9/////f////3//f/8//3//P/9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9//3//P/9//z//f/8//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////f4zn/3+M5/9/jOf/f4zn/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3//P/9//z//f/8//3//P/9//z8AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/7//P/+//z//v/8//7//P/+//z//v/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/+//7//v/+//7//v/+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("p5G5d1duuXenkQdbV24HW1duyiBXbp0Up5HKIKeRnRSnkVxrV25ca6eRL19Xbi9fV27Fhz2NmHunkcWHp5EvXz2NenM9jVxrwXJ6cz2NPmPBcj5jwXKYe1duL1/Bclxrp5GsGKeRyiBXbqwYV27KIMHyxYfB8i9flfvFh///L1///1xrPQ0vXz0NxYcAAC9faQTFhwAAXGvBcph77WmYe8FyXGvtaVxrwXLXacFytqbtaddp7Wm2pj2NtqY9jddpEZa2phGW12mEZWtvhGWJdxphmHtOo5h7K3eJd06jXGsaYVxrK3drbxGWmHs9jZh7EZZcaz2NXGvBcph77WmYe8FyXGvtaVxrEZbXaRGWtqY9jddpPY22puSemHt6mmtv5J5ca7BcXGvTiGtv04iJd3qaiXewXJh7EZaYez2NmHsRllxrPY1ca+3p4Hz//+B87ekNgP//DYDtabam7WnXacFytqbBctdpAAA3bQAACWoRFjdtERYJagAAN20AAAlqERY3bREWCWoAAE5vAAAgbBEWTm8RFiBs//8Jav//N23t6Qlq7ek3bQAA4HwRFuB8AAANgBEWDYAAAFhzAAAqcBEWWHMRFipwAABYcwAAKnARFlhzERYqcBEWDnkAAA55ERbhdQAA4XURFg2AAAANgBEW4HwAAOB8ERbbhwAA24cRFq2EAACthP//IGz//05v7ekgbO3pTm/t6eF1///hde3pDnn//w55//8qcP//WHPt6Spw7elYc///CWr//zdt7ekJau3pN23//yBs//9Ob+3pIGzt6U5v//8Oee3pDnn//+F17enhdf//DYDt6Q2A///gfO3p4Hz//9uH7enbh///rYTt6a2EAACthBEWrYQAANuHERbbh///KnD//1hz7ekqcO3pWHMAAOF1ERbhdQAADnkRFg55AABObwAAIGwRFk5vERYgbNMIG4cAABuH0whthQAAbYXTCE94AABPeNMIoHYAAKB2AACObgAA4GzTCI5u0wjgbAAAjm4AAOBs0wiObtMI4Gzt6a2E//+thO3p24f//9uHAAB3bAAAyWrTCHds0wjJagAAmHIAAOpw0wiYctMI6nAAAKB20wigdgAAT3jTCE940whNfwAATX/TCJ99AACffQAAd2wAAMlq0wh3bNMIyWoAAJ990wiffQAATX/TCE1/AABthdMIbYUAABuH0wgbh///G4cr9xuH//9thSv3bYX//01/K/dNf///n30r9599//9PeCv3T3j//6B2K/egdgAAmHIAAOpw0wiYctMI6nAr9599//+ffSv3TX///01////qcP//mHIr9+pwK/eYcv//4Gz//45uK/fgbCv3jm7//8lq//93bCv3yWor93ds/3/McS9+lHHPgZRxf4PvcH9873AMe+pv8oTqbw+GlG7veZRuwoYHbTx5B23/hlxr/3hcazx5smnChrJp73kkaA+GJGgMe89m8oTPZn+DyWV/fMllL34kZc+BJGX/f+xk///qcP//mHIr9+pwK/eYcv9/iXeSfB93bIMfd56G53Vgeed1XIn4c6J2+HP/f3pzSIIzc3eLcnFphGRyPYYZccmMg26kh2tvhoh2bT2NXGvTiFxryYw1aIaIQmmkh01nd4tGZT2Gn2VphFVkXInAYkiChWP/fz5jonbAYrZ9hWOVe1Vkh3RGZcF5n2VaeE1nNXM1aHh3QmnBclxrK3dca3h3dm01c4NuWnhrb8F5GXGHdHJxlXtkcrZ9M3OehtFgYHnRYGyDml+SfJpf/38vXyv3oHb//6B2K/dPeP//T3j//8lq//93bCv3yWor93ds///gbP//jm4r9+BsK/eObiv3bYX//22FK/cbh///G4c9jRaXwXIWlz2NZIzBcmSMPY2OzMFyjsw9jcehwXLHoT2N/HPBcvxzPY2EU2mEZ0uVe2dLwXKEUzSC04uDpdOL4oX5lY+JHqBGmLPIlbuzyNVuW5M6X+bRWWJbk75S5tFphGTZlXtk2WmEOZmVezmZQK3m0cSg5tGlnVuTKZFbk8p904scevmVe1rTi292HqC4Z7PIaUSzyJ5GmHueRraDPQ16cz0NmHs9jccfPY0oVcFyxx/BcihVYLm2g2C5mHvB8ph7wfJ6cz2NyiA9jYxVwXLKIMFyjFVguVxrYLk+Y8HyXGvB8j5jwXKMVcFyyiA9jYxVPY3KIMFy7FPBcosePY3sUz2Nix6eRj5jnkZcaz0NPmM9DVxrp5GJdz2NiXenkWtvPY1rbz2Np6I9jWySp5GnoqeRbJIRloqawXJsksFyp6JXbmySV26nou1pipoRloqap5GnoqeRbJI9jWySPY2nosFyiXdXbol3wXJrb1dua2/taYqaV25skldup6LBcqeiwXJskqeRiXc9jYl3p5Frbz2Na2/Bcol3V26Jd8Fya29XbmtvAACYewAAPmPlHph75R4+YxphAbvtaQG7hGX//+1p///taZbj5J6YexGWmHvknj5jEZY+Y1yJ+HP/f8xxd4tycc+BlHF/g+9wyYyDbvKE6m8PhpRuwoYHbT2NXGv/hlxryYw1aMKGsmkPhiRod4tGZfKEz2Z/g8llz4EkZVyJwGL/f+xkonbAYmB50WCehtFgbIOaX5J8ml//fy9fL34kZYd0RmV/fMllDHvPZu95JGg1czVoPHmyacFyXGv/eFxrPHkHbTVzg27veZRuDHvqb39873CHdHJxL36UcaJ2+HNgeed1nobndZJ8H3dsgx93/3+Jd4RlmHuEZT5j7WmYe+1pPmPkntOL5J75ldyT04vckx6g3JP5lREWNYXlHjWFERZTh+UeU4cRFtByERaycOUe0HLlHrJwERavbBEWkWrlHq9s5R6RahEWxm4RFqhs5R7GbuUeqGzlHoZ/ERaGf+UeZ30RFmd97emRau3pr2wZ4ZFqGeGvbO3pU4cZ4VOH7ek1hRnhNYXt6ahs7enGbhnhqGwZ4cZu7emycO3p0HIZ4bJwGeHQcu3pkWrt6a9sGeGRahnhr2zt6Yd4GeGHeO3paHYZ4Wh27emobO3pxm4Z4ahsGeHGbhEW0HIRFrJw5R7QcuUesnDlHlOHERZTh+UeNYURFjWFGeFodu3paHYZ4Yd47emHeO3psnDt6dByGeGycBnh0HIRFmh25R5odhEWh3jlHod4ERZnfeUeZ30RFoZ/5R6GfxEWr2wRFpFq5R6vbOUekWrlHod4ERaHeOUeaHYRFmh2GeFnfe3pZ30Z4YZ/7emGfxEWxm4RFqhs5R7GbuUeqGzt6YZ/GeGGf+3pZ30Z4Wd9GeE1he3pNYUZ4VOH7elTh///PmP//5h7GeE+YxnhmHsRlpbjEZYBuxGW//96mv//5J4Buz2Ng4E9jZGcwXKDgcFykZw9jfmVwXL5lT2N04vBctOLYHkan2B5dnKehhqfnoZ2cu1pAbvtaUvPGmEBu+1pluOEZf//7Wn//3qamHsRlph7epo+YxGWPmMaYZh7GmE+Y+1pmHvtaT5jPY35lcFy+ZU9jdOLwXLTi56G0GxgedBsnobMW2B5zFs9jZbjPY3//8FyluPBcv//AAAgWwAAElflHiBbCEsDUwhLIFvBciBbwXIDUz2NIFs9jQNTPY0gW8FyIFs9jRJXwXISV56GLG5geSxunoYoXWB5KF0aYSBbYGnoS3BtIFsycA5W7ZnoSxuTDlbelSBbNKIgW8Fy5YQ9jeWEwXKRnD2NkZw9jdGMwXLRjD2NeH7Bcnh+//8SV///IFv2tANTGeEgW/a0IFvkngG7epr//xGWAbsRlpbjEZb//xGWS88ibB6gImz5lSJs04saYdOLGmH5le1p04s9jbaDEZbTixGWPmM9jZh7PY1ca8FymHs9jT5jPY0gW8FyPmPtaT5jwXIgW8FytoPBclxr7Wk6Ze1pPksRljplEZY+SzRwa28TemtvNHCJdxN6iXcIS45xYLmOceUejnHlHgh9YLkIfQhLCH32NJh7CEuYewhL04tgudOLGmGYewhLPmMaYVxrTqOYe2C5PmNOo1xrEZYBuz2Nz2cRloxVaYSxX+1pjFU9jUaIlXuxX8Fyz2fBckaIwXKRnMFytqY9jbam7WkBuz2NkZxWZmtvNHBrb1ZmiXc0cIl37WmYe0iCM3MRlph7aYRkcj2GGXERlj5j/396c6SHa2+GiHZt04hca4aIQmmkh01nPYafZWmEVWRIgoVj/38+Y+1pPmPBciBbPY0gW7Z9hWOVe1VkwXmfZVp4TWd4d0JpK3dca3h3dm1aeGtvwXkZcZV7ZHK2fTNzGeGOcRnhCH32tI5x9rQIfZ5GjnGeRgh9qJlrb6iZiXfKj2tvyo+Jd8qPa2/Kj4l364Vrb+uFiXf2tJh75J5ca/a0PmOeRj5jsFxca7BcmHvknph7nkbTi/a004sIy5h7wXKMVWB5tqbBcgG7PY0Bu56Gtqaehl6bnoYydp6G2mpgedpqPY2MVWB5XptgeTJ2EZZLzzj+PmM4/ph7DrM+Yw6zmHuehrt4nobVmGB5u3hgedWY5J4gW46SIFueluhLzI8OVhFm6EvjbA5WIGogW8pdIFuehhppYHkaaZ6GbmNgeW5jnoa9Z2B5vWeehhFiYHkRYsYBmHvGAT5j8EyYe/BMPmPBcsj8wXKstz2NyPw9jay37WmW4+1pS88Rlpbj7WmW4+1pS88Rlpbj7WmW4+1pS88RlpbjEZZLzxGWAbsRlpbjEZZLzxGWAbsRlpbjEZZLzxGWluM="), -"format": 34896613399, -"index_count": 348, -"index_data": PackedByteArray("0ALOAs8CzwLRAtACzwLSAtEC0gLTAtEC0gLUAtMC0wLVAtEC1QLWAtEC1QLXAtYC1wLYAtYC2ALZAtYCzgLYAtoC2gLPAs4C2ALUAtoC2ALbAtQC2wLTAtQC2ALXAtsC3gLcAt0C3QLfAt4C4gLgAuEC4QLjAuIC5gLkAuUC5QLnAuYC5QLoAucC6ALpAucC7ALqAusC6wLtAuwC6wLuAu0C6wLvAu4C7wLwAu4C7gLxAu0C8ALvAvIC8gLtAvEC8gLzAvAC8gLxAvMC9gL0AvUC9QL3AvYC9wL4AvYC9AL5AvUC9wL6AvgC+gL7AvgC+wL8AvgC/AL9AvgC/QL+AvgC/wL5AvQC9AIAA/8CAAP+Av8CAAP4Av4C/wIBA/kC/AL5AgEDAQP9AvwCBAMCAwMDAwMFAwQDCAMGAwcDBwMJAwgDCQMKAwgDCgMLAwgDBgMMAwcDCgMNAwsDDQMOAwsDDgMPAwsDDwMQAwsDEAMRAwsDEQMSAwsDEgMTAwsDEwMUAwsDFAMVAwsDFQMWAwsDFgMXAwsDFwMYAwsDFgMVAxkDFgMZAxoDFgMaAxsDFgMbAxwDFgMcAx0DFgMdAx4DFgMeAx8DFgMfAyADFgMgAyEDBgMWAyEDIQMiAwYDIgMjAwYDIwMMAwYDJgMkAyUDJQMnAyYDJwMoAyYDJwMpAygDLAMqAysDKwMtAywDMAMuAy8DLwMxAzADNAMyAzMDMwM1AzQDMwM2AzUDNgM3AzUDOAMzAzIDOQM4AzIDOQM3AzgDOQM1AzcDOgM5AzIDMgM7AzoDPgM8Az0DPQM/Az4DPQNAAz8DQANBAz8DQQNCAz8DQgNDAz8DRAM9AzwDPANFA0QDRQNDA0QDRQM/A0MDRANGAz0DRANHA0YDQQNGA0cDRwNCA0EDhAJIA8YCxgKGAoQC"), -"material": SubResource("StandardMaterial3D_45i0f"), -"name": "pink", -"primitive": 3, -"uv_scale": Vector4(22.8346, 24.8346, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("2zYzhWkE6PsjyTOFaQTo+9s2er8AAOj7I8l6vwAA6PvbNnPYPQ1U1ds2c9gAAFTVI8lz2D0NVNUjyXPYAABU1ds2er8AAP//I8l6vwAA///bNnPYAAD//yPJc9gAAP//2zYzhT0N///ati2ePQ3//yPJM4U9Df//I8lz2D0N///attOuPQ3//9q2er89Df//JEnTrj0N///atiDQPQ3//yRJINA9Df//JEktnj0N///bNnPYPQ3//yRJer89Df//2zYzhWkEVNXbNjOFPQ1U1SPJM4VpBFTVI8kzhT0NVNUjyTOFPQ1U1SPJc9g9DVTVI8kzhWkEVNUjyXPYAABU1SPJer8AAFTV2zZz2D0NVNXbNjOFPQ1U1ds2c9gAAFTV2zYzhWkEVNXbNnq/AABU1dq2LZ7knv//bNstnuSe///atnq/5J7//2zber/knv//2rZ6v7BcVNXatnq/5J5U1Wzber+wXFTVbNt6v+SeVNXati2e5J5U1dq2LZ6wXFTVbNstnuSeVNVs2y2esFxU1dq2Jrd6mlTV2raApnqaVNXati2e5J5U1dq2LZ6wXFTV2raAptOIVNXatnq/sFxU1dq2er/knlTV2rYmt9OIVNVs2y2esFz//9q2LZ6wXP//bNt6v7Bc///atnq/sFz//yRJLZ6wXP//kiQtnrBc//8kSXq/sFz//5Iker+wXP//kiR6v7BcVNWSJHq/5J5U1SRJer+wXFTVJEl6v+SeVNUkSS2e5J5U1SRJJrd6mlTVJEl6v+SeVNUkSXq/sFxU1SRJJrfTiFTVJEmAptOIVNUkSYCmeppU1SRJLZ6wXFTVkiQtnuSe//8kSS2e5J7//5Iker/knv//JEl6v+Se//+RZNip7elU1ZFk2Kn//1TVzHFap+3pVNXMcVqn//9U1ZIkLZ7knlTVkiQtnrBcVNUkSS2e5J5U1SRJLZ6wXFTV2rZ6v///VNX8tPDF//9U1dq2er/t6VTV/LTwxe3pVNX8tAO5//9U1dq2er///1TV/LQDue3pVNXatnq/7elU1YGv/bL//1TV/LQDuf//VNWBr/2y7elU1fy0A7nt6VTVAkvwxf//VNUkSXq///9U1QJL8MXt6VTVJEl6v+3pVNUyjpnX//9U1TKOmdft6VTVbZsb1f//VNVtmxvV7elU1YGv9sv//1TVyaYj0f//VNWBr/bL7elU1cmmI9Ht6VTVyabRrf//VNWBr/2y//9U1cmm0a3t6VTVga/9su3pVNVtm9ip7elU1W2b2Kn//1TVyabRre3pVNXJptGt//9U1TKOWqft6VTVMo5ap///VNVtm9ip7elU1W2b2Kn//1TV/3+Apu3pVNX/f4Cm//9U1TKOWqft6VTVMo5ap///VNUCSwO5//9U1X1Q/bL//1TVAksDue3pVNV9UP2y7elU1TVZ0a3t6VTVNVnRrf//VNWRZNip7elU1ZFk2Kn//1TVfVD9sv//VNU1WdGt//9U1X1Q/bLt6VTVNVnRre3pVNUkSXq///9U1QJLA7n//1TVJEl6v+3pVNUCSwO57elU1X1Q9sv//1TVAkvwxf//VNV9UPbL7elU1QJL8MXt6VTVNVkj0f//VNU1WSPR7elU1ZFkG9X//1TVkWQb1e3pVNWRZBvV//9U1ZFkG9Xt6VTVzHGZ1///VNXMcZnX7elU1cxxmdf//1TVzHGZ1+3pVNX/f3PY//9U1f9/c9jt6VTV/39z2P//VNX/f3PY7elU1TKOmdf//1TVMo6Z1+3pVNU1WSPR//9U1X1Q9sv//1TVNVkj0e3pVNV9UPbL7elU1W2bG9X//1TVbZsb1e3pVNXJpiPR//9U1cmmI9Ht6VTV/LTwxf//VNWBr/bL//9U1fy08MXt6VTVga/2y+3pVNV9eDvMK/dU1X14O8z//1TV/3+uzCv3VNX/f67M//9U1Xxr0Mgr91TVfGvQyP//VNV+cerKK/dU1X5x6sr//1TV+mPlwv//VNXgZhTG//9U1fpj5cIr91TV4GYUxiv3VNXgZt+4//9U1fpjDrz//1TV4GbfuCv3VNX6Yw68K/dU1cxxWqft6VTVzHFap///VNX/f4Cm7elU1f9/gKb//1TV/WJ6v///VNX6Y+XC//9U1f1ier8r91TV+mPlwiv3VNXgZhTG//9U1Xxr0Mj//1TV4GYUxiv3VNV8a9DIK/dU1XxrI7b//1TVfGsjtiv3VNV+cQq0//9U1X5xCrQr91TVfnHqyiv3VNV+cerK//9U1X14O8wr91TVfXg7zP//VNX6Yw68//9U1f1ier///1TV+mMOvCv3VNX9Ynq/K/dU1X5xCrT//1TVfnEKtCv3VNV9eLiy//9U1X14uLIr91TVfXi4sv//VNV9eLiyK/dU1f9/RbL//1TV/39Fsiv3VNX/f0Wy//9U1f9/RbIr91TVgYe4sv//VNWBh7iyK/dU1YGHuLL//1TVgYe4siv3VNWAjgq0//9U1YCOCrQr91TVgI4KtP//VNWAjgq0K/dU1YKUI7b//1TVgpQjtiv3VNV8ayO2//9U1eBm37j//1TVfGsjtiv3VNXgZt+4K/dU1YGHO8wr91TVgYc7zP//VNWAjurKK/dU1YCO6sr//1TVHpnfuP//VNWClCO2//9U1R6Z37gr91TVgpQjtiv3VNUEnA68//9U1R6Z37j//1TVBJwOvCv3VNUemd+4K/dU1QGder///1TVBJwOvP//VNUBnXq/K/dU1QScDrwr91TV/39Fsiv3//99eLiyK/f//4GHuLIr9///gI4KtCv3//9+cQq0K/f//3xrI7Yr9///gpQjtiv3//8emd+4K/f//+Bm37gr9///BJwOvCv3///6Yw68K/f//wGder8r9////WJ6vyv3///6Y+XCK/f//wSc5cIr9///4GYUxiv3//8emRTGK/f//3xr0Mgr9///gpTQyCv3//+AjurKK/f//35x6sor9///fXg7zCv3//+BhzvMK/f///9/rswr9///gpTQyP//VNUemRTG//9U1YKU0Mgr91TVHpkUxiv3VNX/f4Cm7en//zKOWqft6f//zHFap+3p//+RZNip7en//22b2Knt6f//NVnRre3p///JptGt7en///9/067t6f//iHZkr+3p//99UP2y7en//7ZtDrHt6f//I2a0s+3p//8CSwO57en//1NgJrft6f//rFwqu+3p//8kSXq/7en//21ber/t6f//Akvwxe3p//+sXMnD7en//1Ngzcft6f//fVD2y+3p//8jZkDL7en//7Zt5c3t6f//NVkj0e3p//+Ido/P7en///9/INDt6f//yaYj0e3p//92iY/P7en//0iS5c3t6f//ga/2y+3p///bmUDL7en//6ufzcft6f///LTwxe3p//9So8nD7en//9q2er/t6f//kaR6v+3p//9Soyq77en///y0A7nt6f//q58mt+3p///bmbSz7en//4Gv/bLt6f//SJIOse3p//92iWSv7en//5FkG9Xt6f//bZsb1e3p///McZnX7en//zKOmdft6f///39z2O3p//+AjurKK/dU1YCO6sr//1TVgpTQyCv3VNWClNDI//9U1QSc5cL//1TVAZ16v///VNUEnOXCK/dU1QGder8r91TVHpkUxv//VNUEnOXC//9U1R6ZFMYr91TVBJzlwiv3VNX/f67MK/dU1f9/rsz//1TVgYc7zCv3VNWBhzvM//9U1dq2EGgcegrBJEkQaBx6CsHatuB8yn0KwSRJ4HzKfQrB2rYAALhnCsEkSQAAuGcKwdq2QFNvdgrBJElAU292CsEkSQAAuGdU1dq2AAC4Z1TVJEkAAGlEVNW2bQAAlTtU1UiSAACVO1TV2rYAAGlEVNXatuB8yn1U1dq24Hx7WlTV2rYQaBx6VNXatkBTb3ZU1dq2AAC4Z1TV2rYAAGlEVNUkSeB8e1rw6CRJAABpRPDotm3gfKdR8Oi2bQAAlTvw6LZtAACVO7/2SJIAAJU7v/a2beB8p1G/9kiS4HynUb/2SJIAAJU78OjatgAAaUTw6EiS4HynUfDo2rbgfHta8OgkSeB8yn1U1SRJEGgcelTVJEngfHtaVNUkSUBTb3ZU1SRJAAC4Z1TVJEkAAGlEVNUkSS2enkZU1SRJho2eRlTVJEnTrj0NVNUkSS2ePQ1U1SRJLZ49DQHZJEmGjZ5GAdnati2ePQ0B2dq2ho2eRgHZ2raGjZ5GVNXati2enkZU1dq2LZ49DVTV2rbTrj0NVNUkSXq/PQ1U1SRJer+eRlTV2rZ6vz0NVNXatnq/nkZU1dq2er+eRlTV2rYg0J5GVNXatnq/PQ1U1dq2INA9DVTVJEkg0J5GVNUkSSDQPQ1U1dq2INCeRlTV2rYg0D0NVNUkSS2enkbV0SRJ0649DdXR2rYtnp5G1dHattOuPQ3V0SRJINCeRlTVJEl6v55GVNUkSSDQPQ1U1SRJer89DVTVI8mApnqa///atoCmepr//yPJJrd6mv//2rYmt3qa///atia3eppU1dq2JrfTiFTVI8kmt3qaVNUjySa304hU1WzbJrenkVTV2raAptOIVNXatoCmeppU1SPJgKbTiFTVI8mApnqaVNVs24Cmp5FU1ZIkgKankVTV2zaApnqaVNXbNoCm04hU1SRJgKbTiFTVJEmApnqaVNXatoCm04j//yPJgKbTiP//2rYmt9OI//8jySa304j//5IkJrenkVTV2zYmt9OIVNXbNia3eppU1SRJJrd6mlTVJEkmt9OIVNXbNoCm04j//yRJgKbTiP//2zYmt9OI//8kSSa304j//yRJgKZ6mv//2zaApnqa//8kSSa3epr//9s2Jrd6mv//kiQtnv//VNWSJCDQ//9U1ZIkLZ4Z4VTVkiQg0BnhVNUAACDQ9rRU1ZIkIND2tFTVSRIg0P//VNWSJCDQ//9U1ZIkINAZ4VTVAAAtnva0//+SJC2e9rT//wAAIND2tP//kiQg0Pa0///JptGt//////9/RbL/////ga/9sv////+Bh7iy/////4COCrT//////LQDuf////+ClCO2/////x6Z37j/////BJwOvP/////atnq//////wGder///////LTwxf////8EnOXC/////x6ZFMb/////ga/2y/////+ClNDI/////4CO6sr/////gYc7zP/////JpiPR//////9/rsz/////NVkj0f////+RZBvV/////22bG9X/////Mo6Z1//////McZnX//////9/c9j/////fXg7zP////99UPbL/////35x6sr/////fGvQyP/////gZhTG/////wJL8MX/////+mPlwv////8kSXq///////1ier//////+mMOvP////8CSwO5/////+Bm37j/////fGsjtv////9+cQq0/////31Q/bL/////fXi4sv////81WdGt/////5Fk2Kn/////bZvYqf/////McVqn/////zKOWqf//////3+Apv////9JEi2e/////0kSIND/////kiQtnv////+SJCDQ/////yRJ4HzknlTVJEkQaOSeVNUkSeB83JNU1SRJQFPck1TVJEkQaNyTVNX/fyDQ7elU1f9/INAZ4VTVdomPz+3pVNV2iY/PGeFU1aufzcft6VTV25lAy+3pVNWrn83HGeFU1duZQMsZ4VTVkaR6v+3pVNVSo8nD7elU1ZGker8Z4VTVUqPJwxnhVNWrnya37elU1VKjKrvt6VTVq58mtxnhVNVSoyq7GeFU1XaJZK8Z4VTVdolkr+3pVNVIkg6xGeFU1UiSDrHt6VTVrFzJw+3pVNVtW3q/7elU1axcycMZ4VTVbVt6vxnhVNWIdo/P7elU1Yh2j88Z4VTV/38g0O3pVNX/fyDQGeFU1VNgzcft6VTVrFzJw+3pVNVTYM3HGeFU1axcycMZ4VTVI2ZAy+3pVNVTYM3H7elU1SNmQMsZ4VTVU2DNxxnhVNVtW3q/7elU1axcKrvt6VTVbVt6vxnhVNWsXCq7GeFU1SNmQMvt6VTVI2ZAyxnhVNW2beXN7elU1bZt5c0Z4VTVrFwqu+3pVNVTYCa37elU1axcKrsZ4VTVU2AmtxnhVNXbmbSz7elU1aufJrft6VTV25m0sxnhVNWrnya3GeFU1f9/064Z4VTV/3/Tru3pVNV2iWSvGeFU1XaJZK/t6VTVI2a0sxnhVNUjZrSz7elU1bZtDrEZ4VTVtm0Ose3pVNVTYCa37elU1SNmtLPt6VTVU2AmtxnhVNUjZrSzGeFU1UiS5c3t6VTVSJLlzRnhVNXbmUDL7elU1duZQMsZ4VTVdomPz+3pVNV2iY/PGeFU1UiS5c3t6VTVSJLlzRnhVNVSoyq77elU1ZGker/t6VTVUqMquxnhVNWRpHq/GeFU1UiSDrEZ4VTVSJIOse3pVNXbmbSzGeFU1duZtLPt6VTVtm0OsRnhVNW2bQ6x7elU1Yh2ZK8Z4VTViHZkr+3pVNVSo8nD7elU1aufzcft6VTVUqPJwxnhVNWrn83HGeFU1bZt5c3t6VTVtm3lzRnhVNWIdo/P7elU1Yh2j88Z4VTViHZkrxnhVNWIdmSv7elU1f9/064Z4VTV/3/Tru3pVNVs2yDQ//9U1WzbLZ7//1TVbNsg0BnhVNVs2y2eGeFU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQ//9U1bXtIND//1TV//8g0Pa0VNUkSUBTb3ZU1SRJQFPck1TV2rZAU292VNXatkBT3JNU1dq2EGjknv//JEkQaOSe///atuB85J7//yRJ4Hzknv//kWT//56WVNWRZP//EWZU1W2b//+ellTVbZv//xFmVNVs2y2e9rRU1WzbLZ4Iy////v8tnva0VNVs2y2eGeH//7XtLZ7//1TVbNstnv//VNW17S2e/////2zbLZ7/////te0g0P////9s2yDQ//////7/LZ72tP////8g0Pa0//9s2y2e9rT//2zbIND2tP//JEkQaNyT///athBo3JP//yRJ4Hzck///2rbgfNyT//9tm8bg5J4mwpFkxuDknibCbZv//56WJsKRZP//npYmwiRJxuAZ4VTVJEnG4P//VNXatsbgGeFU1dq2xuD//1TV2rbG4P//VNXathrp//9U1dq2xuAZ4VTV2rZt8fa0VNXatsbg9rRU1dq2xuD2tP//2rZt8fa0//8kScbg9rT//yRJbfH2tP//2rbG4P////8kScbg/////9q2Gun/////JEka6f////+RZMbgyl2y8m2bxuDKXbLykWT//xFmsvJtm///EWay8m2bxuDknlTVbZv//56WVNVtm8bgjpJU1W2bLuvMj1TVbZv//xFmVNVtmy7r42xU1W2bxuAgalTVbZvG4MpdVNUkSRBoHHpU1dq2EGgcelTVJEkQaNyTVNXathBo3JNU1dq2QFPck/zFJElAU9yT/MXathBo5J78xSRJEGjknvzFJEka6f//VNUkScbg//9U1SRJbfH2tFTVJEnG4BnhVNUkScbg9rRU1QAALZ72tFTVSRItnv//VNWSJC2e9rRU1ZIkLZ4Z4f//kiQtnv//VNWSJC2eCMtU1dq2QFPck1TV2rYQaNyTVNXatuB83JNU1dq24HzknlTV2rYQaOSeVNVs2+B8nkb//yRJho2eRv//kiTgfJ5G//+SJCDQnkb//yRJLZ6eRv//JEl6v55G///ati2enkb//yRJINCeRv//JEnG4J5G///atiDQnkb//2zbINCeRv//2rbG4J5G///atoaNnkb//9q2er+eRv//kiTgfPa0gaSSJC2eCMuBpGzb4Hz2tIGkbNstngjLgaQjySa3epobrWzbJrenkRutI8mApnqaG61s24Cmp5Ebrdq2xuD2tP+/2rbG4J5G/MXatsbgGeH8xWzbINAZ4fzFbNsg0J5G/MVs2yDQ9rT/v2zbLZ4Iy/+/bNstnva0/79s2+B89rT/v2zb4HyeRv+/bNstnuSe/79s2yDQ9rT/v2zber/knv+/bNstnrBc/79s2yDQnkb/v2zber+wXP+/kiTgfPa0//8kSeB8e1r//5Ik4HyeRv//tm3gfKdR//9s2+B8nkb//yRJ4HzKff//SJLgfKdR///atuB8e1r//9q24HzKff//2rbgfNyT///atuB85J7//yRJ4Hzknv//bNvgfPa0//8kSeB83JP//2zbJrenkePSI8kmt9OI49Js24Cmp5Hj0iPJgKbTiOPSkiQtnhnh/392iWSvGeH/f2zbLZ4Z4f9/SJIOsRnh/3/bmbSzGeH/f2zbINAZ4f9//3/Trhnh/3+rnya3GeH/f1KjKrsZ4f9/kaR6vxnh/39So8nDGeH/f6ufzccZ4f9/25lAyxnh/39IkuXNGeH/f3aJj88Z4f9//38g0Bnh/3+SJCDQGeH/fyRJxuAZ4f9/2rbG4Bnh/3+Ido/PGeH/f7Zt5c0Z4f9/I2ZAyxnh/39TYM3HGeH/f6xcycMZ4f9/bVt6vxnh/3+sXCq7GeH/f1NgJrcZ4f9/I2a0sxnh/3+2bQ6xGeH/f4h2ZK8Z4f9/JEnG4Bnh/MWSJCDQGeH8xSRJxuD2tPzFkiQg0Pa0/MUkScbgnkb8xZIkINCeRvzFkiQmt6eR49KSJICmp5Hj0ts2JrfTiOPS2zaAptOI49LbNia3epobrds2gKZ6mhutkiQmt6eRG62SJICmp5EbrZIkLZ72tP+/kiR6v+Se/7+SJCDQ9rT/v5IkINCeRv+/kiR6v7Bc/7+SJC2esFz/v5IkLZ7knv+/kiTgfJ5G/7+SJOB89rT/v5IkLZ4Iy/+/JEnG4J5G/7+RZMbg5J7/vyRJxuD2tP+/2rbG4Pa0/79tm8bg5J7/v22bxuCOkv+/bZvG4CBq/79tm8bgyl3/v5FkxuDKXf+/2rbG4J5G/7+RZMbgjpL/v5FkxuAgav+/kiQtngjL//9JEiDQ///200kSLZ7///bTAAAg0Pa09tMAAC2e9rT205FkLuvjbFTVkWQu68yPVNVtmy7r42xU1W2bLuvMj1TVkWTG4OSeVNWRZMbgjpJU1ZFk//+ellTVkWQu68yPVNWRZP//EWZU1ZFkLuvjbFTVkWTG4CBqVNWRZMbgyl1U1W2bxuAgaibCkWTG4CBqJsJtmy7r42wmwpFkLuvjbCbCkWTG4I6SsvJtm8bgjpKy8pFkLuvMj7LybZsu68yPsvK17S2e///207XtIND///bT/v8tnva09tP//yDQ9rT20yRJGun///bTJElt8fa09tPathrp///209q2bfH2tPbTbNstnhnhVNVs2y2eCMtU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQGeFU1WzbLZ4Iy1TVbNstnva0VNVs2yDQ9rRU1WzbLZ4Iy1TVkiQtnhnhVNWSJCDQGeFU1ZIkLZ4Iy1TVkiQg0Pa0VNWSJC2eCMtU1ZIkINAZ4VTVkiQtnva0VNWSJCDQ9rRU1QAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwyb////f////3////9/////f/9/AAAMmwwb/38AAAybDBvyZAwb/38AAPJkDBv/fwAAJVHZLvJkDBslUdku8mQMGwyb8uT/f///DJvy5P9////y5PJk8uTyZCXRJVEl0SVR2a7ZLv+//z/Zrtku/7//P/8//z8lUdku/z//PyVR2S7ZLiVR2S4lUf8//z//P/8/DBvyZAwb8mTZLiVR2S4lUQAA/38AAP9/DBvyZAwb8mTyZPLkJVEl0fJk8uQlUSXR/z//v/8//7/ZLtmu2S7ZriVRJdH/P/+/JVEl0f8//7//f///8mTy5P9////yZPLk2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4l0dmuJdHZrvLkDJvy5Ayb8uQMm/LkDJv///9/////f////3////9/8uTyZPLk8mT/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//PwybDBvZrtkuDJsMG9mu2S4MG/JkDBvyZAAA/38AAP9//z//P/8//z/ZLiVR2S4lUfJkDBslUdku8mQMGyVR2S7ZrtkuDJsMG9mu2S4MmwwbDBsMmwwbDJsAAP9/AAD/f/9/AADyZAwb/38AAPJkDBslUdku/z//PyVR2S7/P/8//7//P/+//z8l0SVRJdElUdkuJVHZLiVRDBvyZAwb8mQMmwwb/38AAAybDBv/fwAAJdElUSXRJVHy5PJk8uTyZPLk8mTy5PJk////f////3////9/////f/LkDJvy5Ayb8uQMm/LkDJsl0dmuJdHZriXR2a4l0dmu/7//v/+//7//v/8/2a7ZLv+//z/ZrtkuDBsMmwwbDJvZLtmu2S7ZrtmuJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5P9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/8//78lUSXR/z//vyVRJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7Zrv8//7//P/+/8mTy5P9////yZPLk/3///yVRJdHyZPLkJVEl0fJk8uQAAP9/AAD/fwwbDJsMGwybAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/n//f/5//3/+f/9//n//f////f////3////9/////f/+f/x//n/8f/5//H/+f/x//f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9///////9/////f/Lk8mTy5PJk2a7ZLv+//z/Zrtku/7//P/9/AAAMmwwb/38AAAybDBslUdku8mQMGyVR2S7yZAwbDBvyZAwb8mTZLiVR2S4lUQyb8uT/f///DJvy5P9////y5Ayb8uQMm////3////9/2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/f///8mTy5P9////yZPLk/7//v/+//78l0dmuJdHZrvJk8uQlUSXR8mTy5CVRJdH/P/8/JVHZLv8//z8lUdkuAAD/fwAA/38MG/JkDBvyZP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/JdElUSXRJVH/v/8//7//P/Lk8mTy5PJkJdElUSXRJVHyZAwb/38AAPJkDBv/fwAA2S4lUdkuJVH/P/8//z//P9ku2a7ZLtmuDBsMmwwbDJsMmwwb2a7ZLgybDBvZrtkuJdHZriXR2a7y5Ayb8uQMmwwbDJsMGwybAAD/fwAA/3//f////3////9/////f///////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9//3//PwAA/3//f/8/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f///AAD/fwAA/38AAP9//3//PwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAAgdqCWv25/xz9uf8c/bn/HP25/xyB2oJa/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////6cAMb+nADG/pwAxv6cAMb+nADG/pwAxv9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3/+//9/////f/7//3/+//9//v//f////3////9/////f/9//z//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("p5G5d1duuXenkQdbV24HW1duyiBXbp0Up5HKIKeRnRSnkVxrV25ca6eRL19Xbi9fV27Fhz2NmHunkcWHp5EvXz2NenM9jVxrwXJ6cz2NPmPBcj5jwXKYe1duL1/Bclxrp5GsGKeRyiBXbqwYV27KIMHyxYfB8i9flfvFh///L1///1xrPQ0vXz0NxYcAAC9faQTFhwAAXGvBcph77WmYe8FyXGvtaVxrwXLXacFytqbtaddp7Wm2pj2NtqY9jddpEZa2phGW12mEZWtvhGWJdxphmHtOo5h7K3eJd06jXGsaYVxrK3drbxGWmHs9jZh7EZZcaz2NXGvBcph77WmYe8FyXGvtaVxrEZbXaRGWtqY9jddpPY22puSemHt6mmtv5J5ca7BcXGvTiGtv04iJd3qaiXewXJh7EZaYez2NmHsRllxrPY1ca+3p4Hz//+B87ekNgP//DYDtabam7WnXacFytqbBctdpAAA3bQAACWoRFjdtERYJagAAN20AAAlqERY3bREWCWoAAE5vAAAgbBEWTm8RFiBs//8Jav//N23t6Qlq7ek3bQAA4HwRFuB8AAANgBEWDYAAAFhzAAAqcBEWWHMRFipwAABYcwAAKnARFlhzERYqcBEWDnkAAA55ERbhdQAA4XURFg2AAAANgBEW4HwAAOB8ERbbhwAA24cRFq2EAACthP//IGz//05v7ekgbO3pTm/t6eF1///hde3pDnn//w55//8qcP//WHPt6Spw7elYc///CWr//zdt7ekJau3pN23//yBs//9Ob+3pIGzt6U5v//8Oee3pDnn//+F17enhdf//DYDt6Q2A///gfO3p4Hz//9uH7enbh///rYTt6a2EAACthBEWrYQAANuHERbbh///KnD//1hz7ekqcO3pWHMAAOF1ERbhdQAADnkRFg55AABObwAAIGwRFk5vERYgbNMIG4cAABuH0whthQAAbYXTCE94AABPeNMIoHYAAKB2AACObgAA4GzTCI5u0wjgbAAAjm4AAOBs0wiObtMI4Gzt6a2E//+thO3p24f//9uHAAB3bAAAyWrTCHds0wjJagAAmHIAAOpw0wiYctMI6nAAAKB20wigdgAAT3jTCE940whNfwAATX/TCJ99AACffQAAd2wAAMlq0wh3bNMIyWoAAJ990wiffQAATX/TCE1/AABthdMIbYUAABuH0wgbh///G4cr9xuH//9thSv3bYX//01/K/dNf///n30r9599//9PeCv3T3j//6B2K/egdgAAmHIAAOpw0wiYctMI6nAr9599//+ffSv3TX///01////qcP//mHIr9+pwK/eYcv//4Gz//45uK/fgbCv3jm7//8lq//93bCv3yWor93ds/3/McS9+lHHPgZRxf4PvcH9873AMe+pv8oTqbw+GlG7veZRuwoYHbTx5B23/hlxr/3hcazx5smnChrJp73kkaA+GJGgMe89m8oTPZn+DyWV/fMllL34kZc+BJGX/f+xk///qcP//mHIr9+pwK/eYcv9/iXeSfB93bIMfd56G53Vgeed1XIn4c6J2+HP/f3pzSIIzc3eLcnFphGRyPYYZccmMg26kh2tvhoh2bT2NXGvTiFxryYw1aIaIQmmkh01nd4tGZT2Gn2VphFVkXInAYkiChWP/fz5jonbAYrZ9hWOVe1Vkh3RGZcF5n2VaeE1nNXM1aHh3QmnBclxrK3dca3h3dm01c4NuWnhrb8F5GXGHdHJxlXtkcrZ9M3OehtFgYHnRYGyDml+SfJpf/38vXyv3oHb//6B2K/dPeP//T3j//8lq//93bCv3yWor93ds///gbP//jm4r9+BsK/eObiv3bYX//22FK/cbh///G4c9jRaXwXIWlz2NZIzBcmSMPY2OzMFyjsw9jcehwXLHoT2N/HPBcvxzPY2EU2mEZ0uVe2dLwXKEUzSC04uDpdOL4oX5lY+JHqBGmLPIlbuzyNVuW5M6X+bRWWJbk75S5tFphGTZlXtk2WmEOZmVezmZQK3m0cSg5tGlnVuTKZFbk8p904scevmVe1rTi292HqC4Z7PIaUSzyJ5GmHueRraDPQ16cz0NmHs9jccfPY0oVcFyxx/BcihVYLm2g2C5mHvB8ph7wfJ6cz2NyiA9jYxVwXLKIMFyjFVguVxrYLk+Y8HyXGvB8j5jwXKMVcFyyiA9jYxVPY3KIMFy7FPBcosePY3sUz2Nix6eRj5jnkZcaz0NPmM9DVxrp5GJdz2NiXenkWtvPY1rbz2Np6I9jWySp5GnoqeRbJIRloqawXJsksFyp6JXbmySV26nou1pipoRloqap5GnoqeRbJI9jWySPY2nosFyiXdXbol3wXJrb1dua2/taYqaV25skldup6LBcqeiwXJskqeRiXc9jYl3p5Frbz2Na2/Bcol3V26Jd8Fya29XbmtvAACYewAAPmPlHph75R4+YxphAbvtaQG7hGX//+1p///taZbj5J6YexGWmHvknj5jEZY+Y1yJ+HP/f8xxd4tycc+BlHF/g+9wyYyDbvKE6m8PhpRuwoYHbT2NXGv/hlxryYw1aMKGsmkPhiRod4tGZfKEz2Z/g8llz4EkZVyJwGL/f+xkonbAYmB50WCehtFgbIOaX5J8ml//fy9fL34kZYd0RmV/fMllDHvPZu95JGg1czVoPHmyacFyXGv/eFxrPHkHbTVzg27veZRuDHvqb39873CHdHJxL36UcaJ2+HNgeed1nobndZJ8H3dsgx93/3+Jd4RlmHuEZT5j7WmYe+1pPmPkntOL5J75ldyT04vckx6g3JP5lREWNYXlHjWFERZTh+UeU4cRFtByERaycOUe0HLlHrJwERavbBEWkWrlHq9s5R6RahEWxm4RFqhs5R7GbuUeqGzlHoZ/ERaGf+UeZ30RFmd97emRau3pr2wZ4ZFqGeGvbO3pU4cZ4VOH7ek1hRnhNYXt6ahs7enGbhnhqGwZ4cZu7emycO3p0HIZ4bJwGeHQcu3pkWrt6a9sGeGRahnhr2zt6Yd4GeGHeO3paHYZ4Wh27emobO3pxm4Z4ahsGeHGbhEW0HIRFrJw5R7QcuUesnDlHlOHERZTh+UeNYURFjWFGeFodu3paHYZ4Yd47emHeO3psnDt6dByGeGycBnh0HIRFmh25R5odhEWh3jlHod4ERZnfeUeZ30RFoZ/5R6GfxEWr2wRFpFq5R6vbOUekWrlHod4ERaHeOUeaHYRFmh2GeFnfe3pZ30Z4YZ/7emGfxEWxm4RFqhs5R7GbuUeqGzt6YZ/GeGGf+3pZ30Z4Wd9GeE1he3pNYUZ4VOH7elTh///PmP//5h7GeE+YxnhmHsRlpbjEZYBuxGW//96mv//5J4Buz2Ng4E9jZGcwXKDgcFykZw9jfmVwXL5lT2N04vBctOLYHkan2B5dnKehhqfnoZ2cu1pAbvtaUvPGmEBu+1pluOEZf//7Wn//3qamHsRlph7epo+YxGWPmMaYZh7GmE+Y+1pmHvtaT5jPY35lcFy+ZU9jdOLwXLTi56G0GxgedBsnobMW2B5zFs9jZbjPY3//8FyluPBcv//AAAgWwAAElflHiBbCEsDUwhLIFvBciBbwXIDUz2NIFs9jQNTPY0gW8FyIFs9jRJXwXISV56GLG5geSxunoYoXWB5KF0aYSBbYGnoS3BtIFsycA5W7ZnoSxuTDlbelSBbNKIgW8Fy5YQ9jeWEwXKRnD2NkZw9jdGMwXLRjD2NeH7Bcnh+//8SV///IFv2tANTGeEgW/a0IFvkngG7epr//xGWAbsRlpbjEZb//xGWS88ibB6gImz5lSJs04saYdOLGmH5le1p04s9jbaDEZbTixGWPmM9jZh7PY1ca8FymHs9jT5jPY0gW8FyPmPtaT5jwXIgW8FytoPBclxr7Wk6Ze1pPksRljplEZY+SzRwa28TemtvNHCJdxN6iXcIS45xYLmOceUejnHlHgh9YLkIfQhLCH32NJh7CEuYewhL04tgudOLGmGYewhLPmMaYVxrTqOYe2C5PmNOo1xrEZYBuz2Nz2cRloxVaYSxX+1pjFU9jUaIlXuxX8Fyz2fBckaIwXKRnMFytqY9jbam7WkBuz2NkZxWZmtvNHBrb1ZmiXc0cIl37WmYe0iCM3MRlph7aYRkcj2GGXERlj5j/396c6SHa2+GiHZt04hca4aIQmmkh01nPYafZWmEVWRIgoVj/38+Y+1pPmPBciBbPY0gW7Z9hWOVe1VkwXmfZVp4TWd4d0JpK3dca3h3dm1aeGtvwXkZcZV7ZHK2fTNzGeGOcRnhCH32tI5x9rQIfZ5GjnGeRgh9qJlrb6iZiXfKj2tvyo+Jd8qPa2/Kj4l364Vrb+uFiXf2tJh75J5ca/a0PmOeRj5jsFxca7BcmHvknph7nkbTi/a004sIy5h7wXKMVWB5tqbBcgG7PY0Bu56Gtqaehl6bnoYydp6G2mpgedpqPY2MVWB5XptgeTJ2EZZLzzj+PmM4/ph7DrM+Yw6zmHuehrt4nobVmGB5u3hgedWY5J4gW46SIFueluhLzI8OVhFm6EvjbA5WIGogW8pdIFuehhppYHkaaZ6GbmNgeW5jnoa9Z2B5vWeehhFiYHkRYsYBmHvGAT5j8EyYe/BMPmPBcsj8wXKstz2NyPw9jay37WmW4+1pS88Rlpbj7WmW4+1pS88Rlpbj7WmW4+1pS88RlpbjEZZLzxGWAbsRlpbjEZZLzxGWAbsRlpbjEZZLzxGWluM="), -"format": 34896613399, -"index_count": 54, -"index_data": PackedByteArray("SwNJA0oDSgNMA0sDTwNNA04DTgNQA08DUwNRA1IDUgNUA1MDVANVA1MDVANWA1UDVgNXA1UDVwNYA1UDWwNZA1oDWgNcA1sDXwNdA14DXgNgA18DYwNhA2IDYgNkA2MDZwNlA2YDZgNoA2cD"), -"material": SubResource("StandardMaterial3D_r2ge3"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(22.8346, 24.8346, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("2zYzhWkE6PsjyTOFaQTo+9s2er8AAOj7I8l6vwAA6PvbNnPYPQ1U1ds2c9gAAFTVI8lz2D0NVNUjyXPYAABU1ds2er8AAP//I8l6vwAA///bNnPYAAD//yPJc9gAAP//2zYzhT0N///ati2ePQ3//yPJM4U9Df//I8lz2D0N///attOuPQ3//9q2er89Df//JEnTrj0N///atiDQPQ3//yRJINA9Df//JEktnj0N///bNnPYPQ3//yRJer89Df//2zYzhWkEVNXbNjOFPQ1U1SPJM4VpBFTVI8kzhT0NVNUjyTOFPQ1U1SPJc9g9DVTVI8kzhWkEVNUjyXPYAABU1SPJer8AAFTV2zZz2D0NVNXbNjOFPQ1U1ds2c9gAAFTV2zYzhWkEVNXbNnq/AABU1dq2LZ7knv//bNstnuSe///atnq/5J7//2zber/knv//2rZ6v7BcVNXatnq/5J5U1Wzber+wXFTVbNt6v+SeVNXati2e5J5U1dq2LZ6wXFTVbNstnuSeVNVs2y2esFxU1dq2Jrd6mlTV2raApnqaVNXati2e5J5U1dq2LZ6wXFTV2raAptOIVNXatnq/sFxU1dq2er/knlTV2rYmt9OIVNVs2y2esFz//9q2LZ6wXP//bNt6v7Bc///atnq/sFz//yRJLZ6wXP//kiQtnrBc//8kSXq/sFz//5Iker+wXP//kiR6v7BcVNWSJHq/5J5U1SRJer+wXFTVJEl6v+SeVNUkSS2e5J5U1SRJJrd6mlTVJEl6v+SeVNUkSXq/sFxU1SRJJrfTiFTVJEmAptOIVNUkSYCmeppU1SRJLZ6wXFTVkiQtnuSe//8kSS2e5J7//5Iker/knv//JEl6v+Se//+RZNip7elU1ZFk2Kn//1TVzHFap+3pVNXMcVqn//9U1ZIkLZ7knlTVkiQtnrBcVNUkSS2e5J5U1SRJLZ6wXFTV2rZ6v///VNX8tPDF//9U1dq2er/t6VTV/LTwxe3pVNX8tAO5//9U1dq2er///1TV/LQDue3pVNXatnq/7elU1YGv/bL//1TV/LQDuf//VNWBr/2y7elU1fy0A7nt6VTVAkvwxf//VNUkSXq///9U1QJL8MXt6VTVJEl6v+3pVNUyjpnX//9U1TKOmdft6VTVbZsb1f//VNVtmxvV7elU1YGv9sv//1TVyaYj0f//VNWBr/bL7elU1cmmI9Ht6VTVyabRrf//VNWBr/2y//9U1cmm0a3t6VTVga/9su3pVNVtm9ip7elU1W2b2Kn//1TVyabRre3pVNXJptGt//9U1TKOWqft6VTVMo5ap///VNVtm9ip7elU1W2b2Kn//1TV/3+Apu3pVNX/f4Cm//9U1TKOWqft6VTVMo5ap///VNUCSwO5//9U1X1Q/bL//1TVAksDue3pVNV9UP2y7elU1TVZ0a3t6VTVNVnRrf//VNWRZNip7elU1ZFk2Kn//1TVfVD9sv//VNU1WdGt//9U1X1Q/bLt6VTVNVnRre3pVNUkSXq///9U1QJLA7n//1TVJEl6v+3pVNUCSwO57elU1X1Q9sv//1TVAkvwxf//VNV9UPbL7elU1QJL8MXt6VTVNVkj0f//VNU1WSPR7elU1ZFkG9X//1TVkWQb1e3pVNWRZBvV//9U1ZFkG9Xt6VTVzHGZ1///VNXMcZnX7elU1cxxmdf//1TVzHGZ1+3pVNX/f3PY//9U1f9/c9jt6VTV/39z2P//VNX/f3PY7elU1TKOmdf//1TVMo6Z1+3pVNU1WSPR//9U1X1Q9sv//1TVNVkj0e3pVNV9UPbL7elU1W2bG9X//1TVbZsb1e3pVNXJpiPR//9U1cmmI9Ht6VTV/LTwxf//VNWBr/bL//9U1fy08MXt6VTVga/2y+3pVNV9eDvMK/dU1X14O8z//1TV/3+uzCv3VNX/f67M//9U1Xxr0Mgr91TVfGvQyP//VNV+cerKK/dU1X5x6sr//1TV+mPlwv//VNXgZhTG//9U1fpj5cIr91TV4GYUxiv3VNXgZt+4//9U1fpjDrz//1TV4GbfuCv3VNX6Yw68K/dU1cxxWqft6VTVzHFap///VNX/f4Cm7elU1f9/gKb//1TV/WJ6v///VNX6Y+XC//9U1f1ier8r91TV+mPlwiv3VNXgZhTG//9U1Xxr0Mj//1TV4GYUxiv3VNV8a9DIK/dU1XxrI7b//1TVfGsjtiv3VNV+cQq0//9U1X5xCrQr91TVfnHqyiv3VNV+cerK//9U1X14O8wr91TVfXg7zP//VNX6Yw68//9U1f1ier///1TV+mMOvCv3VNX9Ynq/K/dU1X5xCrT//1TVfnEKtCv3VNV9eLiy//9U1X14uLIr91TVfXi4sv//VNV9eLiyK/dU1f9/RbL//1TV/39Fsiv3VNX/f0Wy//9U1f9/RbIr91TVgYe4sv//VNWBh7iyK/dU1YGHuLL//1TVgYe4siv3VNWAjgq0//9U1YCOCrQr91TVgI4KtP//VNWAjgq0K/dU1YKUI7b//1TVgpQjtiv3VNV8ayO2//9U1eBm37j//1TVfGsjtiv3VNXgZt+4K/dU1YGHO8wr91TVgYc7zP//VNWAjurKK/dU1YCO6sr//1TVHpnfuP//VNWClCO2//9U1R6Z37gr91TVgpQjtiv3VNUEnA68//9U1R6Z37j//1TVBJwOvCv3VNUemd+4K/dU1QGder///1TVBJwOvP//VNUBnXq/K/dU1QScDrwr91TV/39Fsiv3//99eLiyK/f//4GHuLIr9///gI4KtCv3//9+cQq0K/f//3xrI7Yr9///gpQjtiv3//8emd+4K/f//+Bm37gr9///BJwOvCv3///6Yw68K/f//wGder8r9////WJ6vyv3///6Y+XCK/f//wSc5cIr9///4GYUxiv3//8emRTGK/f//3xr0Mgr9///gpTQyCv3//+AjurKK/f//35x6sor9///fXg7zCv3//+BhzvMK/f///9/rswr9///gpTQyP//VNUemRTG//9U1YKU0Mgr91TVHpkUxiv3VNX/f4Cm7en//zKOWqft6f//zHFap+3p//+RZNip7en//22b2Knt6f//NVnRre3p///JptGt7en///9/067t6f//iHZkr+3p//99UP2y7en//7ZtDrHt6f//I2a0s+3p//8CSwO57en//1NgJrft6f//rFwqu+3p//8kSXq/7en//21ber/t6f//Akvwxe3p//+sXMnD7en//1Ngzcft6f//fVD2y+3p//8jZkDL7en//7Zt5c3t6f//NVkj0e3p//+Ido/P7en///9/INDt6f//yaYj0e3p//92iY/P7en//0iS5c3t6f//ga/2y+3p///bmUDL7en//6ufzcft6f///LTwxe3p//9So8nD7en//9q2er/t6f//kaR6v+3p//9Soyq77en///y0A7nt6f//q58mt+3p///bmbSz7en//4Gv/bLt6f//SJIOse3p//92iWSv7en//5FkG9Xt6f//bZsb1e3p///McZnX7en//zKOmdft6f///39z2O3p//+AjurKK/dU1YCO6sr//1TVgpTQyCv3VNWClNDI//9U1QSc5cL//1TVAZ16v///VNUEnOXCK/dU1QGder8r91TVHpkUxv//VNUEnOXC//9U1R6ZFMYr91TVBJzlwiv3VNX/f67MK/dU1f9/rsz//1TVgYc7zCv3VNWBhzvM//9U1dq2EGgcegrBJEkQaBx6CsHatuB8yn0KwSRJ4HzKfQrB2rYAALhnCsEkSQAAuGcKwdq2QFNvdgrBJElAU292CsEkSQAAuGdU1dq2AAC4Z1TVJEkAAGlEVNW2bQAAlTtU1UiSAACVO1TV2rYAAGlEVNXatuB8yn1U1dq24Hx7WlTV2rYQaBx6VNXatkBTb3ZU1dq2AAC4Z1TV2rYAAGlEVNUkSeB8e1rw6CRJAABpRPDotm3gfKdR8Oi2bQAAlTvw6LZtAACVO7/2SJIAAJU7v/a2beB8p1G/9kiS4HynUb/2SJIAAJU78OjatgAAaUTw6EiS4HynUfDo2rbgfHta8OgkSeB8yn1U1SRJEGgcelTVJEngfHtaVNUkSUBTb3ZU1SRJAAC4Z1TVJEkAAGlEVNUkSS2enkZU1SRJho2eRlTVJEnTrj0NVNUkSS2ePQ1U1SRJLZ49DQHZJEmGjZ5GAdnati2ePQ0B2dq2ho2eRgHZ2raGjZ5GVNXati2enkZU1dq2LZ49DVTV2rbTrj0NVNUkSXq/PQ1U1SRJer+eRlTV2rZ6vz0NVNXatnq/nkZU1dq2er+eRlTV2rYg0J5GVNXatnq/PQ1U1dq2INA9DVTVJEkg0J5GVNUkSSDQPQ1U1dq2INCeRlTV2rYg0D0NVNUkSS2enkbV0SRJ0649DdXR2rYtnp5G1dHattOuPQ3V0SRJINCeRlTVJEl6v55GVNUkSSDQPQ1U1SRJer89DVTVI8mApnqa///atoCmepr//yPJJrd6mv//2rYmt3qa///atia3eppU1dq2JrfTiFTVI8kmt3qaVNUjySa304hU1WzbJrenkVTV2raAptOIVNXatoCmeppU1SPJgKbTiFTVI8mApnqaVNVs24Cmp5FU1ZIkgKankVTV2zaApnqaVNXbNoCm04hU1SRJgKbTiFTVJEmApnqaVNXatoCm04j//yPJgKbTiP//2rYmt9OI//8jySa304j//5IkJrenkVTV2zYmt9OIVNXbNia3eppU1SRJJrd6mlTVJEkmt9OIVNXbNoCm04j//yRJgKbTiP//2zYmt9OI//8kSSa304j//yRJgKZ6mv//2zaApnqa//8kSSa3epr//9s2Jrd6mv//kiQtnv//VNWSJCDQ//9U1ZIkLZ4Z4VTVkiQg0BnhVNUAACDQ9rRU1ZIkIND2tFTVSRIg0P//VNWSJCDQ//9U1ZIkINAZ4VTVAAAtnva0//+SJC2e9rT//wAAIND2tP//kiQg0Pa0///JptGt//////9/RbL/////ga/9sv////+Bh7iy/////4COCrT//////LQDuf////+ClCO2/////x6Z37j/////BJwOvP/////atnq//////wGder///////LTwxf////8EnOXC/////x6ZFMb/////ga/2y/////+ClNDI/////4CO6sr/////gYc7zP/////JpiPR//////9/rsz/////NVkj0f////+RZBvV/////22bG9X/////Mo6Z1//////McZnX//////9/c9j/////fXg7zP////99UPbL/////35x6sr/////fGvQyP/////gZhTG/////wJL8MX/////+mPlwv////8kSXq///////1ier//////+mMOvP////8CSwO5/////+Bm37j/////fGsjtv////9+cQq0/////31Q/bL/////fXi4sv////81WdGt/////5Fk2Kn/////bZvYqf/////McVqn/////zKOWqf//////3+Apv////9JEi2e/////0kSIND/////kiQtnv////+SJCDQ/////yRJ4HzknlTVJEkQaOSeVNUkSeB83JNU1SRJQFPck1TVJEkQaNyTVNX/fyDQ7elU1f9/INAZ4VTVdomPz+3pVNV2iY/PGeFU1aufzcft6VTV25lAy+3pVNWrn83HGeFU1duZQMsZ4VTVkaR6v+3pVNVSo8nD7elU1ZGker8Z4VTVUqPJwxnhVNWrnya37elU1VKjKrvt6VTVq58mtxnhVNVSoyq7GeFU1XaJZK8Z4VTVdolkr+3pVNVIkg6xGeFU1UiSDrHt6VTVrFzJw+3pVNVtW3q/7elU1axcycMZ4VTVbVt6vxnhVNWIdo/P7elU1Yh2j88Z4VTV/38g0O3pVNX/fyDQGeFU1VNgzcft6VTVrFzJw+3pVNVTYM3HGeFU1axcycMZ4VTVI2ZAy+3pVNVTYM3H7elU1SNmQMsZ4VTVU2DNxxnhVNVtW3q/7elU1axcKrvt6VTVbVt6vxnhVNWsXCq7GeFU1SNmQMvt6VTVI2ZAyxnhVNW2beXN7elU1bZt5c0Z4VTVrFwqu+3pVNVTYCa37elU1axcKrsZ4VTVU2AmtxnhVNXbmbSz7elU1aufJrft6VTV25m0sxnhVNWrnya3GeFU1f9/064Z4VTV/3/Tru3pVNV2iWSvGeFU1XaJZK/t6VTVI2a0sxnhVNUjZrSz7elU1bZtDrEZ4VTVtm0Ose3pVNVTYCa37elU1SNmtLPt6VTVU2AmtxnhVNUjZrSzGeFU1UiS5c3t6VTVSJLlzRnhVNXbmUDL7elU1duZQMsZ4VTVdomPz+3pVNV2iY/PGeFU1UiS5c3t6VTVSJLlzRnhVNVSoyq77elU1ZGker/t6VTVUqMquxnhVNWRpHq/GeFU1UiSDrEZ4VTVSJIOse3pVNXbmbSzGeFU1duZtLPt6VTVtm0OsRnhVNW2bQ6x7elU1Yh2ZK8Z4VTViHZkr+3pVNVSo8nD7elU1aufzcft6VTVUqPJwxnhVNWrn83HGeFU1bZt5c3t6VTVtm3lzRnhVNWIdo/P7elU1Yh2j88Z4VTViHZkrxnhVNWIdmSv7elU1f9/064Z4VTV/3/Tru3pVNVs2yDQ//9U1WzbLZ7//1TVbNsg0BnhVNVs2y2eGeFU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQ//9U1bXtIND//1TV//8g0Pa0VNUkSUBTb3ZU1SRJQFPck1TV2rZAU292VNXatkBT3JNU1dq2EGjknv//JEkQaOSe///atuB85J7//yRJ4Hzknv//kWT//56WVNWRZP//EWZU1W2b//+ellTVbZv//xFmVNVs2y2e9rRU1WzbLZ4Iy1TV/v8tnva0VNVs2y2eGeFU1bXtLZ7//1TVbNstnv//VNW17S2e/////2zbLZ7/////te0g0P////9s2yDQ//////7/LZ72tP////8g0Pa0//9s2y2e9rT//2zbIND2tP//JEkQaNyT///athBo3JP//yRJ4Hzck///2rbgfNyT//9tm8bg5J4mwpFkxuDknibCbZv//56WJsKRZP//npYmwiRJxuAZ4VTVJEnG4P//VNXatsbgGeFU1dq2xuD//1TV2rbG4P//VNXathrp//9U1dq2xuAZ4VTV2rZt8fa0VNXatsbg9rRU1dq2xuD2tP//2rZt8fa0//8kScbg9rT//yRJbfH2tP//2rbG4P////8kScbg/////9q2Gun/////JEka6f////+RZMbgyl2y8m2bxuDKXbLykWT//xFmsvJtm///EWay8m2bxuDknlTVbZv//56WVNVtm8bgjpJU1W2bLuvMj1TVbZv//xFmVNVtmy7r42xU1W2bxuAgalTVbZvG4MpdVNUkSRBoHHpU1dq2EGgcelTVJEkQaNyTVNXathBo3JNU1dq2QFPck/zFJElAU9yT/MXathBo5J78xSRJEGjknvzFJEka6f//VNUkScbg//9U1SRJbfH2tFTVJEnG4BnhVNUkScbg9rRU1QAALZ72tFTVSRItnv//VNWSJC2e9rRU1ZIkLZ4Z4VTVkiQtnv//VNWSJC2eCMtU1dq2QFPck1TV2rYQaNyTVNXatuB83JNU1dq24HzknlTV2rYQaOSeVNVs2+B8nkb//yRJho2eRv//kiTgfJ5G//+SJCDQnkb//yRJLZ6eRv//JEl6v55G///ati2enkb//yRJINCeRv//JEnG4J5G///atiDQnkb//2zbINCeRv//2rbG4J5G///atoaNnkb//9q2er+eRv//kiTgfPa0sMeSJC2eCMuwx2zb4Hz2tLDHbNstngjLsMcjySa3eppoy2zbJrenkWjLI8mApnqaaMts24Cmp5Foy9q2xuD2tFTV2rbG4J5GVNXatsbgGeFU1WzbINAZ4VTVbNsg0J5GVNVs2yDQ9rRU1WzbLZ4Iy1TVbNstnva0VNVs2+B89rRU1Wzb4HyeRlTVbNstnuSeVNVs2yDQ9rRU1Wzber/knlTVbNstnrBcVNVs2yDQnkZU1Wzber+wXFTVkiTgfPa0VNUkSeB8e1pU1ZIk4HyeRlTVtm3gfKdRVNVs2+B8nkZU1SRJ4HzKfVTVSJLgfKdRVNXatuB8e1pU1dq24HzKfVTV2rbgfNyTVNXatuB85J5U1SRJ4HzknlTVbNvgfPa0VNUkSeB83JNU1WzbJrenkfXgI8kmt9OI9eBs24Cmp5H14CPJgKbTiPXgkiQtnhnh//92iWSvGeH//2zbLZ4Z4f//SJIOsRnh///bmbSzGeH//2zbINAZ4f///3/Trhnh//+rnya3GeH//1KjKrsZ4f//kaR6vxnh//9So8nDGeH//6ufzccZ4f//25lAyxnh//9IkuXNGeH//3aJj88Z4f///38g0Bnh//+SJCDQGeH//yRJxuAZ4f//2rbG4Bnh//+Ido/PGeH//7Zt5c0Z4f//I2ZAyxnh//9TYM3HGeH//6xcycMZ4f//bVt6vxnh//+sXCq7GeH//1NgJrcZ4f//I2a0sxnh//+2bQ6xGeH//4h2ZK8Z4f//JEnG4BnhVNWSJCDQGeFU1SRJxuD2tFTVkiQg0Pa0VNUkScbgnkZU1ZIkINCeRlTVkiQmt6eR9eCSJICmp5H14Ns2JrfTiPXg2zaAptOI9eDbNia3eppoy9s2gKZ6mmjLkiQmt6eRaMuSJICmp5Foy5IkLZ72tFTVkiR6v+SeVNWSJCDQ9rRU1ZIkINCeRlTVkiR6v7BcVNWSJC2esFxU1ZIkLZ7knlTVkiTgfJ5GVNWSJOB89rRU1ZIkLZ4Iy1TVJEnG4J5GVNWRZMbg5J5U1SRJxuD2tFTV2rbG4Pa0VNVtm8bg5J5U1W2bxuCOklTVbZvG4CBqVNVtm8bgyl1U1ZFkxuDKXVTV2rbG4J5GVNWRZMbgjpJU1ZFkxuAgalTVkiQtngjLVNVJEiDQ//+avUkSLZ7//5q9AAAg0Pa0mr0AAC2e9rSavZFkLuvjbP//kWQu68yP//9tmy7r42z//22bLuvMj///kWTG4OSe/7+RZMbgjpL/v5Fk//+elv+/kWQu68yP/7+RZP//EWb/v5FkLuvjbP+/kWTG4CBq/7+RZMbgyl3/v22bxuAgauOSkWTG4CBq45Jtmy7r42zjkpFkLuvjbOOSkWTG4I6S//9tm8bgjpL//5FkLuvMj///bZsu68yP//+17S2e//+avbXtIND//5q9/v8tnva0mr3//yDQ9rSavSRJGun//5q9JElt8fa0mr3athrp//+avdq2bfH2tJq9bNstnhnhVNVs2y2eCMtU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQGeFU1WzbLZ4Iy1TVbNstnva0VNVs2yDQ9rRU1WzbLZ4Iy1TVkiQtnhnhVNWSJCDQGeFU1ZIkLZ4Iy1TVkiQg0Pa0VNWSJC2eCMtU1ZIkINAZ4VTVkiQtnva0VNWSJCDQ9rRU1QAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwyb////f////3////9/////f/9/AAAMmwwb/38AAAybDBvyZAwb/38AAPJkDBv/fwAAJVHZLvJkDBslUdku8mQMGwyb8uT/f///DJvy5P9////y5PJk8uTyZCXRJVEl0SVR2a7ZLv+//z/Zrtku/7//P/8//z8lUdku/z//PyVR2S7ZLiVR2S4lUf8//z//P/8/DBvyZAwb8mTZLiVR2S4lUQAA/38AAP9/DBvyZAwb8mTyZPLkJVEl0fJk8uQlUSXR/z//v/8//7/ZLtmu2S7ZriVRJdH/P/+/JVEl0f8//7//f///8mTy5P9////yZPLk2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4l0dmuJdHZrvLkDJvy5Ayb8uQMm/LkDJv///9/////f////3////9/8uTyZPLk8mT/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//PwybDBvZrtkuDJsMG9mu2S4MG/JkDBvyZAAA/38AAP9//z//P/8//z/ZLiVR2S4lUfJkDBslUdku8mQMGyVR2S7ZrtkuDJsMG9mu2S4MmwwbDBsMmwwbDJsAAP9/AAD/f/9/AADyZAwb/38AAPJkDBslUdku/z//PyVR2S7/P/8//7//P/+//z8l0SVRJdElUdkuJVHZLiVRDBvyZAwb8mQMmwwb/38AAAybDBv/fwAAJdElUSXRJVHy5PJk8uTyZPLk8mTy5PJk////f////3////9/////f/LkDJvy5Ayb8uQMm/LkDJsl0dmuJdHZriXR2a4l0dmu/7//v/+//7//v/8/2a7ZLv+//z/ZrtkuDBsMmwwbDJvZLtmu2S7ZrtmuJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5P9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/8//78lUSXR/z//vyVRJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7Zrv8//7//P/+/8mTy5P9////yZPLk/3///yVRJdHyZPLkJVEl0fJk8uQAAP9/AAD/fwwbDJsMGwybAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/n//f/5//3/+f/9//n//f////f////3////9/////f/+f/x//n/8f/5//H/+f/x//f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9///////9/////f/Lk8mTy5PJk2a7ZLv+//z/Zrtku/7//P/9/AAAMmwwb/38AAAybDBslUdku8mQMGyVR2S7yZAwbDBvyZAwb8mTZLiVR2S4lUQyb8uT/f///DJvy5P9////y5Ayb8uQMm////3////9/2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/f///8mTy5P9////yZPLk/7//v/+//78l0dmuJdHZrvJk8uQlUSXR8mTy5CVRJdH/P/8/JVHZLv8//z8lUdkuAAD/fwAA/38MG/JkDBvyZP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/JdElUSXRJVH/v/8//7//P/Lk8mTy5PJkJdElUSXRJVHyZAwb/38AAPJkDBv/fwAA2S4lUdkuJVH/P/8//z//P9ku2a7ZLtmuDBsMmwwbDJsMmwwb2a7ZLgybDBvZrtkuJdHZriXR2a7y5Ayb8uQMmwwbDJsMGwybAAD/fwAA/3//f////3////9/////f///////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/7//P/+//z//v/8//7//P/+//z//v/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/+//7//v/+//7//v/+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/3//f////3////9/////f////3//P/9//z//f/8//3//P/9/////f/7//3////9//v//f////3/+//9//v//f///AAD/fwAA/38AAP9/AAD/f3GY//9xmP//cZj//3GY////fwAA/38AAP9/AAD/fwAA/v//f/7//3/+//9//v//f/9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA") -}, { -"aabb": AABB(-0.07, -0.15375, -0.29, 0.14, 0.3075, 0.58), -"attribute_data": PackedByteArray("p5G5d1duuXenkQdbV24HW1duyiBXbp0Up5HKIKeRnRSnkVxrV25ca6eRL19Xbi9fV27Fhz2NmHunkcWHp5EvXz2NenM9jVxrwXJ6cz2NPmPBcj5jwXKYe1duL1/Bclxrp5GsGKeRyiBXbqwYV27KIMHyxYfB8i9flfvFh///L1///1xrPQ0vXz0NxYcAAC9faQTFhwAAXGvBcph77WmYe8FyXGvtaVxrwXLXacFytqbtaddp7Wm2pj2NtqY9jddpEZa2phGW12mEZWtvhGWJdxphmHtOo5h7K3eJd06jXGsaYVxrK3drbxGWmHs9jZh7EZZcaz2NXGvBcph77WmYe8FyXGvtaVxrEZbXaRGWtqY9jddpPY22puSemHt6mmtv5J5ca7BcXGvTiGtv04iJd3qaiXewXJh7EZaYez2NmHsRllxrPY1ca+3p4Hz//+B87ekNgP//DYDtabam7WnXacFytqbBctdpAAA3bQAACWoRFjdtERYJagAAN20AAAlqERY3bREWCWoAAE5vAAAgbBEWTm8RFiBs//8Jav//N23t6Qlq7ek3bQAA4HwRFuB8AAANgBEWDYAAAFhzAAAqcBEWWHMRFipwAABYcwAAKnARFlhzERYqcBEWDnkAAA55ERbhdQAA4XURFg2AAAANgBEW4HwAAOB8ERbbhwAA24cRFq2EAACthP//IGz//05v7ekgbO3pTm/t6eF1///hde3pDnn//w55//8qcP//WHPt6Spw7elYc///CWr//zdt7ekJau3pN23//yBs//9Ob+3pIGzt6U5v//8Oee3pDnn//+F17enhdf//DYDt6Q2A///gfO3p4Hz//9uH7enbh///rYTt6a2EAACthBEWrYQAANuHERbbh///KnD//1hz7ekqcO3pWHMAAOF1ERbhdQAADnkRFg55AABObwAAIGwRFk5vERYgbNMIG4cAABuH0whthQAAbYXTCE94AABPeNMIoHYAAKB2AACObgAA4GzTCI5u0wjgbAAAjm4AAOBs0wiObtMI4Gzt6a2E//+thO3p24f//9uHAAB3bAAAyWrTCHds0wjJagAAmHIAAOpw0wiYctMI6nAAAKB20wigdgAAT3jTCE940whNfwAATX/TCJ99AACffQAAd2wAAMlq0wh3bNMIyWoAAJ990wiffQAATX/TCE1/AABthdMIbYUAABuH0wgbh///G4cr9xuH//9thSv3bYX//01/K/dNf///n30r9599//9PeCv3T3j//6B2K/egdgAAmHIAAOpw0wiYctMI6nAr9599//+ffSv3TX///01////qcP//mHIr9+pwK/eYcv//4Gz//45uK/fgbCv3jm7//8lq//93bCv3yWor93ds/3/McS9+lHHPgZRxf4PvcH9873AMe+pv8oTqbw+GlG7veZRuwoYHbTx5B23/hlxr/3hcazx5smnChrJp73kkaA+GJGgMe89m8oTPZn+DyWV/fMllL34kZc+BJGX/f+xk///qcP//mHIr9+pwK/eYcv9/iXeSfB93bIMfd56G53Vgeed1XIn4c6J2+HP/f3pzSIIzc3eLcnFphGRyPYYZccmMg26kh2tvhoh2bT2NXGvTiFxryYw1aIaIQmmkh01nd4tGZT2Gn2VphFVkXInAYkiChWP/fz5jonbAYrZ9hWOVe1Vkh3RGZcF5n2VaeE1nNXM1aHh3QmnBclxrK3dca3h3dm01c4NuWnhrb8F5GXGHdHJxlXtkcrZ9M3OehtFgYHnRYGyDml+SfJpf/38vXyv3oHb//6B2K/dPeP//T3j//8lq//93bCv3yWor93ds///gbP//jm4r9+BsK/eObiv3bYX//22FK/cbh///G4c9jRaXwXIWlz2NZIzBcmSMPY2OzMFyjsw9jcehwXLHoT2N/HPBcvxzPY2EU2mEZ0uVe2dLwXKEUzSC04uDpdOL4oX5lY+JHqBGmLPIlbuzyNVuW5M6X+bRWWJbk75S5tFphGTZlXtk2WmEOZmVezmZQK3m0cSg5tGlnVuTKZFbk8p904scevmVe1rTi292HqC4Z7PIaUSzyJ5GmHueRraDPQ16cz0NmHs9jccfPY0oVcFyxx/BcihVYLm2g2C5mHvB8ph7wfJ6cz2NyiA9jYxVwXLKIMFyjFVguVxrYLk+Y8HyXGvB8j5jwXKMVcFyyiA9jYxVPY3KIMFy7FPBcosePY3sUz2Nix6eRj5jnkZcaz0NPmM9DVxrp5GJdz2NiXenkWtvPY1rbz2Np6I9jWySp5GnoqeRbJIRloqawXJsksFyp6JXbmySV26nou1pipoRloqap5GnoqeRbJI9jWySPY2nosFyiXdXbol3wXJrb1dua2/taYqaV25skldup6LBcqeiwXJskqeRiXc9jYl3p5Frbz2Na2/Bcol3V26Jd8Fya29XbmtvAACYewAAPmPlHph75R4+YxphAbvtaQG7hGX//+1p///taZbj5J6YexGWmHvknj5jEZY+Y1yJ+HP/f8xxd4tycc+BlHF/g+9wyYyDbvKE6m8PhpRuwoYHbT2NXGv/hlxryYw1aMKGsmkPhiRod4tGZfKEz2Z/g8llz4EkZVyJwGL/f+xkonbAYmB50WCehtFgbIOaX5J8ml//fy9fL34kZYd0RmV/fMllDHvPZu95JGg1czVoPHmyacFyXGv/eFxrPHkHbTVzg27veZRuDHvqb39873CHdHJxL36UcaJ2+HNgeed1nobndZJ8H3dsgx93/3+Jd4RlmHuEZT5j7WmYe+1pPmPkntOL5J75ldyT04vckx6g3JP5lREWNYXlHjWFERZTh+UeU4cRFtByERaycOUe0HLlHrJwERavbBEWkWrlHq9s5R6RahEWxm4RFqhs5R7GbuUeqGzlHoZ/ERaGf+UeZ30RFmd97emRau3pr2wZ4ZFqGeGvbO3pU4cZ4VOH7ek1hRnhNYXt6ahs7enGbhnhqGwZ4cZu7emycO3p0HIZ4bJwGeHQcu3pkWrt6a9sGeGRahnhr2zt6Yd4GeGHeO3paHYZ4Wh27emobO3pxm4Z4ahsGeHGbhEW0HIRFrJw5R7QcuUesnDlHlOHERZTh+UeNYURFjWFGeFodu3paHYZ4Yd47emHeO3psnDt6dByGeGycBnh0HIRFmh25R5odhEWh3jlHod4ERZnfeUeZ30RFoZ/5R6GfxEWr2wRFpFq5R6vbOUekWrlHod4ERaHeOUeaHYRFmh2GeFnfe3pZ30Z4YZ/7emGfxEWxm4RFqhs5R7GbuUeqGzt6YZ/GeGGf+3pZ30Z4Wd9GeE1he3pNYUZ4VOH7elTh///PmP//5h7GeE+YxnhmHsRlpbjEZYBuxGW//96mv//5J4Buz2Ng4E9jZGcwXKDgcFykZw9jfmVwXL5lT2N04vBctOLYHkan2B5dnKehhqfnoZ2cu1pAbvtaUvPGmEBu+1pluOEZf//7Wn//3qamHsRlph7epo+YxGWPmMaYZh7GmE+Y+1pmHvtaT5jPY35lcFy+ZU9jdOLwXLTi56G0GxgedBsnobMW2B5zFs9jZbjPY3//8FyluPBcv//AAAgWwAAElflHiBbCEsDUwhLIFvBciBbwXIDUz2NIFs9jQNTPY0gW8FyIFs9jRJXwXISV56GLG5geSxunoYoXWB5KF0aYSBbYGnoS3BtIFsycA5W7ZnoSxuTDlbelSBbNKIgW8Fy5YQ9jeWEwXKRnD2NkZw9jdGMwXLRjD2NeH7Bcnh+//8SV///IFv2tANTGeEgW/a0IFvkngG7epr//xGWAbsRlpbjEZb//xGWS88ibB6gImz5lSJs04saYdOLGmH5le1p04s9jbaDEZbTixGWPmM9jZh7PY1ca8FymHs9jT5jPY0gW8FyPmPtaT5jwXIgW8FytoPBclxr7Wk6Ze1pPksRljplEZY+SzRwa28TemtvNHCJdxN6iXcIS45xYLmOceUejnHlHgh9YLkIfQhLCH32NJh7CEuYewhL04tgudOLGmGYewhLPmMaYVxrTqOYe2C5PmNOo1xrEZYBuz2Nz2cRloxVaYSxX+1pjFU9jUaIlXuxX8Fyz2fBckaIwXKRnMFytqY9jbam7WkBuz2NkZxWZmtvNHBrb1ZmiXc0cIl37WmYe0iCM3MRlph7aYRkcj2GGXERlj5j/396c6SHa2+GiHZt04hca4aIQmmkh01nPYafZWmEVWRIgoVj/38+Y+1pPmPBciBbPY0gW7Z9hWOVe1VkwXmfZVp4TWd4d0JpK3dca3h3dm1aeGtvwXkZcZV7ZHK2fTNzGeGOcRnhCH32tI5x9rQIfZ5GjnGeRgh9qJlrb6iZiXfKj2tvyo+Jd8qPa2/Kj4l364Vrb+uFiXf2tJh75J5ca/a0PmOeRj5jsFxca7BcmHvknph7nkbTi/a004sIy5h7wXKMVWB5tqbBcgG7PY0Bu56Gtqaehl6bnoYydp6G2mpgedpqPY2MVWB5XptgeTJ2EZZLzzj+PmM4/ph7DrM+Yw6zmHuehrt4nobVmGB5u3hgedWY5J4gW46SIFueluhLzI8OVhFm6EvjbA5WIGogW8pdIFuehhppYHkaaZ6GbmNgeW5jnoa9Z2B5vWeehhFiYHkRYsYBmHvGAT5j8EyYe/BMPmPBcsj8wXKstz2NyPw9jay37WmW4+1pS88Rlpbj7WmW4+1pS88Rlpbj7WmW4+1pS88RlpbjEZZLzxGWAbsRlpbjEZZLzxGWAbsRlpbjEZZLzxGWluM="), -"format": 34896613399, -"index_count": 18, -"index_data": PackedByteArray("awNpA2oDbgNsA20DcQNvA3ADdANyA3MDdwN1A3YDeQN4A3YD"), -"material": SubResource("StandardMaterial3D_c8p85"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(22.8346, 24.8346, 0, 0), -"vertex_count": 890, -"vertex_data": PackedByteArray("2zYzhWkE6PsjyTOFaQTo+9s2er8AAOj7I8l6vwAA6PvbNnPYPQ1U1ds2c9gAAFTVI8lz2D0NVNUjyXPYAABU1ds2er8AAP//I8l6vwAA///bNnPYAAD//yPJc9gAAP//2zYzhT0N///ati2ePQ3//yPJM4U9Df//I8lz2D0N///attOuPQ3//9q2er89Df//JEnTrj0N///atiDQPQ3//yRJINA9Df//JEktnj0N///bNnPYPQ3//yRJer89Df//2zYzhWkEVNXbNjOFPQ1U1SPJM4VpBFTVI8kzhT0NVNUjyTOFPQ1U1SPJc9g9DVTVI8kzhWkEVNUjyXPYAABU1SPJer8AAFTV2zZz2D0NVNXbNjOFPQ1U1ds2c9gAAFTV2zYzhWkEVNXbNnq/AABU1dq2LZ7knv//bNstnuSe///atnq/5J7//2zber/knv//2rZ6v7BcVNXatnq/5J5U1Wzber+wXFTVbNt6v+SeVNXati2e5J5U1dq2LZ6wXFTVbNstnuSeVNVs2y2esFxU1dq2Jrd6mlTV2raApnqaVNXati2e5J5U1dq2LZ6wXFTV2raAptOIVNXatnq/sFxU1dq2er/knlTV2rYmt9OIVNVs2y2esFz//9q2LZ6wXP//bNt6v7Bc///atnq/sFz//yRJLZ6wXP//kiQtnrBc//8kSXq/sFz//5Iker+wXP//kiR6v7BcVNWSJHq/5J5U1SRJer+wXFTVJEl6v+SeVNUkSS2e5J5U1SRJJrd6mlTVJEl6v+SeVNUkSXq/sFxU1SRJJrfTiFTVJEmAptOIVNUkSYCmeppU1SRJLZ6wXFTVkiQtnuSe//8kSS2e5J7//5Iker/knv//JEl6v+Se//+RZNip7elU1ZFk2Kn//1TVzHFap+3pVNXMcVqn//9U1ZIkLZ7knlTVkiQtnrBcVNUkSS2e5J5U1SRJLZ6wXFTV2rZ6v///VNX8tPDF//9U1dq2er/t6VTV/LTwxe3pVNX8tAO5//9U1dq2er///1TV/LQDue3pVNXatnq/7elU1YGv/bL//1TV/LQDuf//VNWBr/2y7elU1fy0A7nt6VTVAkvwxf//VNUkSXq///9U1QJL8MXt6VTVJEl6v+3pVNUyjpnX//9U1TKOmdft6VTVbZsb1f//VNVtmxvV7elU1YGv9sv//1TVyaYj0f//VNWBr/bL7elU1cmmI9Ht6VTVyabRrf//VNWBr/2y//9U1cmm0a3t6VTVga/9su3pVNVtm9ip7elU1W2b2Kn//1TVyabRre3pVNXJptGt//9U1TKOWqft6VTVMo5ap///VNVtm9ip7elU1W2b2Kn//1TV/3+Apu3pVNX/f4Cm//9U1TKOWqft6VTVMo5ap///VNUCSwO5//9U1X1Q/bL//1TVAksDue3pVNV9UP2y7elU1TVZ0a3t6VTVNVnRrf//VNWRZNip7elU1ZFk2Kn//1TVfVD9sv//VNU1WdGt//9U1X1Q/bLt6VTVNVnRre3pVNUkSXq///9U1QJLA7n//1TVJEl6v+3pVNUCSwO57elU1X1Q9sv//1TVAkvwxf//VNV9UPbL7elU1QJL8MXt6VTVNVkj0f//VNU1WSPR7elU1ZFkG9X//1TVkWQb1e3pVNWRZBvV//9U1ZFkG9Xt6VTVzHGZ1///VNXMcZnX7elU1cxxmdf//1TVzHGZ1+3pVNX/f3PY//9U1f9/c9jt6VTV/39z2P//VNX/f3PY7elU1TKOmdf//1TVMo6Z1+3pVNU1WSPR//9U1X1Q9sv//1TVNVkj0e3pVNV9UPbL7elU1W2bG9X//1TVbZsb1e3pVNXJpiPR//9U1cmmI9Ht6VTV/LTwxf//VNWBr/bL//9U1fy08MXt6VTVga/2y+3pVNV9eDvMK/dU1X14O8z//1TV/3+uzCv3VNX/f67M//9U1Xxr0Mgr91TVfGvQyP//VNV+cerKK/dU1X5x6sr//1TV+mPlwv//VNXgZhTG//9U1fpj5cIr91TV4GYUxiv3VNXgZt+4//9U1fpjDrz//1TV4GbfuCv3VNX6Yw68K/dU1cxxWqft6VTVzHFap///VNX/f4Cm7elU1f9/gKb//1TV/WJ6v///VNX6Y+XC//9U1f1ier8r91TV+mPlwiv3VNXgZhTG//9U1Xxr0Mj//1TV4GYUxiv3VNV8a9DIK/dU1XxrI7b//1TVfGsjtiv3VNV+cQq0//9U1X5xCrQr91TVfnHqyiv3VNV+cerK//9U1X14O8wr91TVfXg7zP//VNX6Yw68//9U1f1ier///1TV+mMOvCv3VNX9Ynq/K/dU1X5xCrT//1TVfnEKtCv3VNV9eLiy//9U1X14uLIr91TVfXi4sv//VNV9eLiyK/dU1f9/RbL//1TV/39Fsiv3VNX/f0Wy//9U1f9/RbIr91TVgYe4sv//VNWBh7iyK/dU1YGHuLL//1TVgYe4siv3VNWAjgq0//9U1YCOCrQr91TVgI4KtP//VNWAjgq0K/dU1YKUI7b//1TVgpQjtiv3VNV8ayO2//9U1eBm37j//1TVfGsjtiv3VNXgZt+4K/dU1YGHO8wr91TVgYc7zP//VNWAjurKK/dU1YCO6sr//1TVHpnfuP//VNWClCO2//9U1R6Z37gr91TVgpQjtiv3VNUEnA68//9U1R6Z37j//1TVBJwOvCv3VNUemd+4K/dU1QGder///1TVBJwOvP//VNUBnXq/K/dU1QScDrwr91TV/39Fsiv3//99eLiyK/f//4GHuLIr9///gI4KtCv3//9+cQq0K/f//3xrI7Yr9///gpQjtiv3//8emd+4K/f//+Bm37gr9///BJwOvCv3///6Yw68K/f//wGder8r9////WJ6vyv3///6Y+XCK/f//wSc5cIr9///4GYUxiv3//8emRTGK/f//3xr0Mgr9///gpTQyCv3//+AjurKK/f//35x6sor9///fXg7zCv3//+BhzvMK/f///9/rswr9///gpTQyP//VNUemRTG//9U1YKU0Mgr91TVHpkUxiv3VNX/f4Cm7en//zKOWqft6f//zHFap+3p//+RZNip7en//22b2Knt6f//NVnRre3p///JptGt7en///9/067t6f//iHZkr+3p//99UP2y7en//7ZtDrHt6f//I2a0s+3p//8CSwO57en//1NgJrft6f//rFwqu+3p//8kSXq/7en//21ber/t6f//Akvwxe3p//+sXMnD7en//1Ngzcft6f//fVD2y+3p//8jZkDL7en//7Zt5c3t6f//NVkj0e3p//+Ido/P7en///9/INDt6f//yaYj0e3p//92iY/P7en//0iS5c3t6f//ga/2y+3p///bmUDL7en//6ufzcft6f///LTwxe3p//9So8nD7en//9q2er/t6f//kaR6v+3p//9Soyq77en///y0A7nt6f//q58mt+3p///bmbSz7en//4Gv/bLt6f//SJIOse3p//92iWSv7en//5FkG9Xt6f//bZsb1e3p///McZnX7en//zKOmdft6f///39z2O3p//+AjurKK/dU1YCO6sr//1TVgpTQyCv3VNWClNDI//9U1QSc5cL//1TVAZ16v///VNUEnOXCK/dU1QGder8r91TVHpkUxv//VNUEnOXC//9U1R6ZFMYr91TVBJzlwiv3VNX/f67MK/dU1f9/rsz//1TVgYc7zCv3VNWBhzvM//9U1dq2EGgcegrBJEkQaBx6CsHatuB8yn0KwSRJ4HzKfQrB2rYAALhnCsEkSQAAuGcKwdq2QFNvdgrBJElAU292CsEkSQAAuGdU1dq2AAC4Z1TVJEkAAGlEVNW2bQAAlTtU1UiSAACVO1TV2rYAAGlEVNXatuB8yn1U1dq24Hx7WlTV2rYQaBx6VNXatkBTb3ZU1dq2AAC4Z1TV2rYAAGlEVNUkSeB8e1rw6CRJAABpRPDotm3gfKdR8Oi2bQAAlTvw6LZtAACVO7/2SJIAAJU7v/a2beB8p1G/9kiS4HynUb/2SJIAAJU78OjatgAAaUTw6EiS4HynUfDo2rbgfHta8OgkSeB8yn1U1SRJEGgcelTVJEngfHtaVNUkSUBTb3ZU1SRJAAC4Z1TVJEkAAGlEVNUkSS2enkZU1SRJho2eRlTVJEnTrj0NVNUkSS2ePQ1U1SRJLZ49DQHZJEmGjZ5GAdnati2ePQ0B2dq2ho2eRgHZ2raGjZ5GVNXati2enkZU1dq2LZ49DVTV2rbTrj0NVNUkSXq/PQ1U1SRJer+eRlTV2rZ6vz0NVNXatnq/nkZU1dq2er+eRlTV2rYg0J5GVNXatnq/PQ1U1dq2INA9DVTVJEkg0J5GVNUkSSDQPQ1U1dq2INCeRlTV2rYg0D0NVNUkSS2enkbV0SRJ0649DdXR2rYtnp5G1dHattOuPQ3V0SRJINCeRlTVJEl6v55GVNUkSSDQPQ1U1SRJer89DVTVI8mApnqa///atoCmepr//yPJJrd6mv//2rYmt3qa///atia3eppU1dq2JrfTiFTVI8kmt3qaVNUjySa304hU1WzbJrenkVTV2raAptOIVNXatoCmeppU1SPJgKbTiFTVI8mApnqaVNVs24Cmp5FU1ZIkgKankVTV2zaApnqaVNXbNoCm04hU1SRJgKbTiFTVJEmApnqaVNXatoCm04j//yPJgKbTiP//2rYmt9OI//8jySa304j//5IkJrenkVTV2zYmt9OIVNXbNia3eppU1SRJJrd6mlTVJEkmt9OIVNXbNoCm04j//yRJgKbTiP//2zYmt9OI//8kSSa304j//yRJgKZ6mv//2zaApnqa//8kSSa3epr//9s2Jrd6mv//kiQtnv//VNWSJCDQ//9U1ZIkLZ4Z4VTVkiQg0BnhVNUAACDQ9rRU1ZIkIND2tFTVSRIg0P//VNWSJCDQ//9U1ZIkINAZ4VTVAAAtnva0//+SJC2e9rT//wAAIND2tP//kiQg0Pa0///JptGt//////9/RbL/////ga/9sv////+Bh7iy/////4COCrT//////LQDuf////+ClCO2/////x6Z37j/////BJwOvP/////atnq//////wGder///////LTwxf////8EnOXC/////x6ZFMb/////ga/2y/////+ClNDI/////4CO6sr/////gYc7zP/////JpiPR//////9/rsz/////NVkj0f////+RZBvV/////22bG9X/////Mo6Z1//////McZnX//////9/c9j/////fXg7zP////99UPbL/////35x6sr/////fGvQyP/////gZhTG/////wJL8MX/////+mPlwv////8kSXq///////1ier//////+mMOvP////8CSwO5/////+Bm37j/////fGsjtv////9+cQq0/////31Q/bL/////fXi4sv////81WdGt/////5Fk2Kn/////bZvYqf/////McVqn/////zKOWqf//////3+Apv////9JEi2e/////0kSIND/////kiQtnv////+SJCDQ/////yRJ4HzknlTVJEkQaOSeVNUkSeB83JNU1SRJQFPck1TVJEkQaNyTVNX/fyDQ7elU1f9/INAZ4VTVdomPz+3pVNV2iY/PGeFU1aufzcft6VTV25lAy+3pVNWrn83HGeFU1duZQMsZ4VTVkaR6v+3pVNVSo8nD7elU1ZGker8Z4VTVUqPJwxnhVNWrnya37elU1VKjKrvt6VTVq58mtxnhVNVSoyq7GeFU1XaJZK8Z4VTVdolkr+3pVNVIkg6xGeFU1UiSDrHt6VTVrFzJw+3pVNVtW3q/7elU1axcycMZ4VTVbVt6vxnhVNWIdo/P7elU1Yh2j88Z4VTV/38g0O3pVNX/fyDQGeFU1VNgzcft6VTVrFzJw+3pVNVTYM3HGeFU1axcycMZ4VTVI2ZAy+3pVNVTYM3H7elU1SNmQMsZ4VTVU2DNxxnhVNVtW3q/7elU1axcKrvt6VTVbVt6vxnhVNWsXCq7GeFU1SNmQMvt6VTVI2ZAyxnhVNW2beXN7elU1bZt5c0Z4VTVrFwqu+3pVNVTYCa37elU1axcKrsZ4VTVU2AmtxnhVNXbmbSz7elU1aufJrft6VTV25m0sxnhVNWrnya3GeFU1f9/064Z4VTV/3/Tru3pVNV2iWSvGeFU1XaJZK/t6VTVI2a0sxnhVNUjZrSz7elU1bZtDrEZ4VTVtm0Ose3pVNVTYCa37elU1SNmtLPt6VTVU2AmtxnhVNUjZrSzGeFU1UiS5c3t6VTVSJLlzRnhVNXbmUDL7elU1duZQMsZ4VTVdomPz+3pVNV2iY/PGeFU1UiS5c3t6VTVSJLlzRnhVNVSoyq77elU1ZGker/t6VTVUqMquxnhVNWRpHq/GeFU1UiSDrEZ4VTVSJIOse3pVNXbmbSzGeFU1duZtLPt6VTVtm0OsRnhVNW2bQ6x7elU1Yh2ZK8Z4VTViHZkr+3pVNVSo8nD7elU1aufzcft6VTVUqPJwxnhVNWrn83HGeFU1bZt5c3t6VTVtm3lzRnhVNWIdo/P7elU1Yh2j88Z4VTViHZkrxnhVNWIdmSv7elU1f9/064Z4VTV/3/Tru3pVNVs2yDQ//9U1WzbLZ7//1TVbNsg0BnhVNVs2y2eGeFU1WzbINAZ4VTVbNsg0Pa0VNVs2yDQ//9U1bXtIND//1TV//8g0Pa0VNUkSUBTb3ZU1SRJQFPck1TV2rZAU292VNXatkBT3JNU1dq2EGjknv//JEkQaOSe///atuB85J7//yRJ4Hzknv//kWT//56WVNWRZP//EWZU1W2b//+ellTVbZv//xFmVNVs2y2e9rRU1WzbLZ4Iy1TV/v8tnva0VNVs2y2eGeFU1bXtLZ7//1TVbNstnv//VNW17S2e/////2zbLZ7/////te0g0P////9s2yDQ//////7/LZ72tP////8g0Pa0//9s2y2e9rT//2zbIND2tP//JEkQaNyT///athBo3JP//yRJ4Hzck///2rbgfNyT//9tm8bg5J4mwpFkxuDknibCbZv//56WJsKRZP//npYmwiRJxuAZ4VTVJEnG4P//VNXatsbgGeFU1dq2xuD//1TV2rbG4P//VNXathrp//9U1dq2xuAZ4VTV2rZt8fa0VNXatsbg9rRU1dq2xuD2tP//2rZt8fa0//8kScbg9rT//yRJbfH2tP//2rbG4P////8kScbg/////9q2Gun/////JEka6f////+RZMbgyl2y8m2bxuDKXbLykWT//xFmsvJtm///EWay8m2bxuDknlTVbZv//56WVNVtm8bgjpJU1W2bLuvMj1TVbZv//xFmVNVtmy7r42xU1W2bxuAgalTVbZvG4MpdVNUkSRBoHHpU1dq2EGgcelTVJEkQaNyTVNXathBo3JNU1dq2QFPck/zFJElAU9yT/MXathBo5J78xSRJEGjknvzFJEka6f//VNUkScbg//9U1SRJbfH2tFTVJEnG4BnhVNUkScbg9rRU1QAALZ72tFTVSRItnv//VNWSJC2e9rRU1ZIkLZ4Z4VTVkiQtnv//VNWSJC2eCMtU1dq2QFPck1TV2rYQaNyTVNXatuB83JNU1dq24HzknlTV2rYQaOSeVNVs2+B8nkb//yRJho2eRv//kiTgfJ5G//+SJCDQnkb//yRJLZ6eRv//JEl6v55G///ati2enkb//yRJINCeRv//JEnG4J5G///atiDQnkb//2zbINCeRv//2rbG4J5G///atoaNnkb//9q2er+eRv//kiTgfPa0sMeSJC2eCMuwx2zb4Hz2tLDHbNstngjLsMcjySa3eppoy2zbJrenkWjLI8mApnqaaMts24Cmp5Foy9q2xuD2tFTV2rbG4J5GVNXatsbgGeFU1WzbINAZ4VTVbNsg0J5GVNVs2yDQ9rRU1WzbLZ4Iy1TVbNstnva0VNVs2+B89rRU1Wzb4HyeRlTVbNstnuSeVNVs2yDQ9rRU1Wzber/knlTVbNstnrBcVNVs2yDQnkZU1Wzber+wXFTVkiTgfPa0VNUkSeB8e1pU1ZIk4HyeRlTVtm3gfKdRVNVs2+B8nkZU1SRJ4HzKfVTVSJLgfKdRVNXatuB8e1pU1dq24HzKfVTV2rbgfNyTVNXatuB85J5U1SRJ4HzknlTVbNvgfPa0VNUkSeB83JNU1WzbJrenkfXgI8kmt9OI9eBs24Cmp5H14CPJgKbTiPXgkiQtnhnh//92iWSvGeH//2zbLZ4Z4f//SJIOsRnh///bmbSzGeH//2zbINAZ4f///3/Trhnh//+rnya3GeH//1KjKrsZ4f//kaR6vxnh//9So8nDGeH//6ufzccZ4f//25lAyxnh//9IkuXNGeH//3aJj88Z4f///38g0Bnh//+SJCDQGeH//yRJxuAZ4f//2rbG4Bnh//+Ido/PGeH//7Zt5c0Z4f//I2ZAyxnh//9TYM3HGeH//6xcycMZ4f//bVt6vxnh//+sXCq7GeH//1NgJrcZ4f//I2a0sxnh//+2bQ6xGeH//4h2ZK8Z4f//JEnG4BnhVNWSJCDQGeFU1SRJxuD2tFTVkiQg0Pa0VNUkScbgnkZU1ZIkINCeRlTVkiQmt6eR9eCSJICmp5H14Ns2JrfTiPXg2zaAptOI9eDbNia3eppoy9s2gKZ6mmjLkiQmt6eRaMuSJICmp5Foy5IkLZ72tFTVkiR6v+SeVNWSJCDQ9rRU1ZIkINCeRlTVkiR6v7BcVNWSJC2esFxU1ZIkLZ7knlTVkiTgfJ5GVNWSJOB89rRU1ZIkLZ4Iy1TVJEnG4J5GVNWRZMbg5J5U1SRJxuD2tFTV2rbG4Pa0VNVtm8bg5J5U1W2bxuCOklTVbZvG4CBqVNVtm8bgyl1U1ZFkxuDKXVTV2rbG4J5GVNWRZMbgjpJU1ZFkxuAgalTVkiQtngjLVNVJEiDQ///200kSLZ7///bTAAAg0Pa09tMAAC2e9rT205FkLuvjbFTVkWQu68yPVNVtmy7r42xU1W2bLuvMj1TVkWTG4OSeVNWRZMbgjpJU1ZFk//+ellTVkWQu68yPVNWRZP//EWZU1ZFkLuvjbFTVkWTG4CBqVNWRZMbgyl1U1W2bxuAgaibCkWTG4CBqJsJtmy7r42wmwpFkLuvjbCbCkWTG4I6SsvJtm8bgjpKy8pFkLuvMj7LybZsu68yPsvK17S2e///207XtIND///bT/v8tnva09tP//yDQ9rT20yRJGun///bTJElt8fa09tPathrp///209q2bfH2tPbTbNstnhnhVNVs2y2eCMtU1WzbINAZ4VTVbNsg0Pa0Xsds2yDQGeFex2zbLZ4Iy17HbNstnva0/79s2yDQ9rT/v2zbLZ4Iy/+/kiQtnhnh/7+SJCDQGeH/v5IkLZ4Iy/+/kiQg0Pa0/7+SJC2eCMv/v5IkINAZ4f+/kiQtnva0/7+SJCDQ9rT/vwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwyb////f////3////9/////f/9/AAAMmwwb/38AAAybDBvyZAwb/38AAPJkDBv/fwAAJVHZLvJkDBslUdku8mQMGwyb8uT/f///DJvy5P9////y5PJk8uTyZCXRJVEl0SVR2a7ZLv+//z/Zrtku/7//P/8//z8lUdku/z//PyVR2S7ZLiVR2S4lUf8//z//P/8/DBvyZAwb8mTZLiVR2S4lUQAA/38AAP9/DBvyZAwb8mTyZPLkJVEl0fJk8uQlUSXR/z//v/8//7/ZLtmu2S7ZriVRJdH/P/+/JVEl0f8//7//f///8mTy5P9////yZPLk2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4l0dmuJdHZrvLkDJvy5Ayb8uQMm/LkDJv///9/////f////3////9/8uTyZPLk8mT/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//PwybDBvZrtkuDJsMG9mu2S4MG/JkDBvyZAAA/38AAP9//z//P/8//z/ZLiVR2S4lUfJkDBslUdku8mQMGyVR2S7ZrtkuDJsMG9mu2S4MmwwbDBsMmwwbDJsAAP9/AAD/f/9/AADyZAwb/38AAPJkDBslUdku/z//PyVR2S7/P/8//7//P/+//z8l0SVRJdElUdkuJVHZLiVRDBvyZAwb8mQMmwwb/38AAAybDBv/fwAAJdElUSXRJVHy5PJk8uTyZPLk8mTy5PJk////f////3////9/////f/LkDJvy5Ayb8uQMm/LkDJsl0dmuJdHZriXR2a4l0dmu/7//v/+//7//v/8/2a7ZLv+//z/ZrtkuDBsMmwwbDJvZLtmu2S7ZrtmuJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5P9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/8//78lUSXR/z//vyVRJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7Zrv8//7//P/+/8mTy5P9////yZPLk/3///yVRJdHyZPLkJVEl0fJk8uQAAP9/AAD/fwwbDJsMGwybAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/n//f/5//3/+f/9//n//f////f////3////9/////f/+f/x//n/8f/5//H/+f/x//f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9///////9/////f/Lk8mTy5PJk2a7ZLv+//z/Zrtku/7//P/9/AAAMmwwb/38AAAybDBslUdku8mQMGyVR2S7yZAwbDBvyZAwb8mTZLiVR2S4lUQyb8uT/f///DJvy5P9////y5Ayb8uQMm////3////9/2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/f///8mTy5P9////yZPLk/7//v/+//78l0dmuJdHZrvJk8uQlUSXR8mTy5CVRJdH/P/8/JVHZLv8//z8lUdkuAAD/fwAA/38MG/JkDBvyZP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/JdElUSXRJVH/v/8//7//P/Lk8mTy5PJkJdElUSXRJVHyZAwb/38AAPJkDBv/fwAA2S4lUdkuJVH/P/8//z//P9ku2a7ZLtmuDBsMmwwbDJsMmwwb2a7ZLgybDBvZrtkuJdHZriXR2a7y5Ayb8uQMmwwbDJsMGwybAAD/fwAA/3//f////3////9/////f///////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3////9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/7//P/+//z//v/8//7//P/+//z//v/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/+//7//v/+//7//v/+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA////f////3////9/////f1TVVNVU1VTVVNVU1QthFsILYRbCC2EWwv9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_ifhgq") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_paj24"] -resource_name = "metal" -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eh7gb"] -resource_name = "dark" -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wgg5d"] -resource_name = "darkMetal" -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nw6dh"] -resource_name = "purple" -albedo_color = Color(0.804665, 0.693804, 0.98256, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ypdl4"] -resource_name = "_defaultMat" -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_hwb5q"] -_surfaces = [{ -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34896613377, -"index_count": 237, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAwAEAAUABQACAAMABQAGAAIABwAFAAQACgAIAAkACQALAAoADgAMAA0ADQAPAA4AEAAMAA4ADgARABAADwASABMAEwARAA8AEQAOAA8ACgALABQAFAAVAAoAFgAIAAoACgAVABYAEAAXABgAGAANABAADQAMABAADwANABgAGAASAA8AFAALAAkACQAZABQAFAAZABYAFgAVABQAEwASABgAGAAXABMAHAAaABsAGwAdABwAHQAeABwAIQAfACAAIAAiACEAJQAjACQAJAAmACUAKAAnACUAJQApACgAJQAmACkAIQAqACsAKwAfACEAIwAsAC0ALQAkACMALQAuACQAKQAuAC0ALQAoACkALwAdABsAGwAwAC8AMQAaABwAHAAyADEALwAwADEAMQAyAC8AMgAzAC8ANgA0ADUANQA3ADYANwA1ADgAOAA5ADcAKgA5ADgAOAArACoAOwA6AAEAAQA8ADsAAQAAADwAAAA9ADwAOwA8AAUABQAHADsAPAA9AAYABgAFADwAQAA+AD8APwBBAEAAQQBCAEAARQBDAEQARABGAEUASABHAEUARQBGAEgARABDAEkASQBKAEQATQBLAEwATABOAE0A"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("/0/FV6pqAAD/T8VX84UAAP+vxVeqagAA/6/FV/OFAAD/r1d884UAAP+vDmqCfgAA/68OaiVtAAD/r1d8gn4AAP+XHNTJ2gAA/2cc1MnaAAD/j///ydoAAP9v///J2gAA/08AAGSNAAD/TwAARpwAAP+vAABkjQAA/68AAEacAAD/T8VXZI0AAP+vxVdkjQAA/69JEimrAAD/r8VXKasAAP9v///b0QAA/4///9vRAAD/lxzU7cgAAP9PxVcpqwAA/09JEimrAAD/ZxzU7cgAAP+v6aDbkQAA/6/poMOdAAD/v+mg25EAAP+/6aDDnQAA/8/poM+XAAD//71UNOUAAP//+Io05QAA//+9VB2xAAD///iKHbEAAP8/6aDbkQAA/0/poNuRAAD/P4qv25EAAP9Piq/bkQAA/y+Kr8+XAAD/P4qvw50AAP9Piq/DnQAAn9bTQR2xAACf1tNBNOUAAP8v6aDPlwAA/z/poMOdAAD/T+mgw50AAP+/iq/DnQAA/6+Kr8OdAAD/r4qv25EAAP+/iq/bkQAA/8+Kr8+XAAAAAPiKNOUAAAAAvVQ05QAAAAD4ih2xAAAAAL1UHbEAAF8p00E05QAAXynTQR2xAAD/T1d884UAAP9PV3yCfgAA/08OaoJ+AAD/Tw5qJW0AAP9PxVfiDgAA/09XfGpKAAD/r8VX4g4AAF5pV3xqSgAA/69XfGpKAAD/T3mNfEEAAP+veY18QQAA/0+Kr3xBAAD/r4qvfEEAAP9Piq/iDgAA/6+Kr+IOAAD/T2Nu4g4AAP+vY27iDgAA/097xWpKAAD/T3vF4g4AAP+ve8VqSgAA/697xeIOAABOczST//8AAE5zNJMo6wAAbXkMkv//AABteQySKOsAAP9/ppH//wAA/3+mkSjrAACRhgyS//8AAJGGDJIo6wAAsIxNpyjrAACwjE2n//8AAPKRdaUo6wAA8pF1pf//AAAMbgyV//8AAARqdJf//wAADG4MlSjrAAAEanSXKOsAAG15dqgo6wAAbXl2qP//AAD/f9uoKOsAAP9/26j//wAAg5hAmv//AAD6lXSX//8AAIOYQJoo6wAA+pV0lyjrAACDmEKg//8AAGGZQZ3//wAAg5hCoCjrAABhmUGdKOsAAE5zTaco6wAATnNNp///AADykQyV//8AAPKRDJUo6wAAe2dCoP//AAAEag6j//8AAHtnQqAo6wAABGoOoyjrAACTcw+IKOsAAJNzD4j//wAA/39PhyjrAAD/f0+H//8AAAxudaUo6wAADG51pf//AACwjDST//8AALCMNJMo6wAAkYZ2qCjrAACRhnao//8AAGuMD4go6wAAa4wPiP//AAD/l0CKKOsAAP+XQIr//wAAe2dAmv//AACdZkGd//8AAHtnQJoo6wAAnWZBnSjrAADwob2NKOsAAPChvY3//wAA+pUOo///AAD6lQ6jKOsAAP9nQbD//wAA/2dBsCjrAACTc3Oy//8AAJNzc7Io6wAA/38ys///AAD/fzKzKOsAAGuMc7L//wAAa4xzsijrAAD/T5iZF3QAAP8vmJkXdAAA/0/athd0AAD/L9q2F3QAAP8v2ra9oAAA/0/atr2gAAD/LxzU8bwAAP8vHNQ5rgAA/88c1PG8AAD/zxzUOa4AAP+XQbD//wAA/5dBsCjrAADwocWs//8AAPChxawo6wAAkak5qP//AACRqTmoKOsAAFyuk5f//wAA/69Bnf//AABcrpOXKOsAAP+vQZ0o6wAAXK7vov//AABcru+iKOsAAJGpSJL//wAAkalIkijrAAD/z5iZ8bwAAP/PmJk5rgAA/y+Ymb2gAAD/T5iZvaAAAP8vmJnxvAAA/y+YmTmuAAD/r5iZvaAAAP/PmJm9oAAA/6/atr2gAAD/z9q2vaAAAP+vmJkXdAAA/8+YmRd0AAD/r9q2F3QAAP/P2rYXdAAA/2dAiijrAAD/Z0CK//8AAG1WSJL//wAADl69jf//AABtVkiSKOsAAA5evY0o6wAAolGTl///AACiUZOXKOsAAP9PQZ3//wAA/09BnSjrAACiUe+i//8AAKJR76Io6wAAbVY5qP//AABtVjmoKOsAAA5exaz//wAADl7FrCjrAAD/lxzURpwAAP9nHNRGnAAA/5eu+NWUAAD/Z6741ZQAAP9nHNTbUQAA/5cc1NtRAAD/Z674TVkAAP+XrvhNWQAA/5cc1PSTAAD/l2XmPJAAAP+XZebmXQAA/5cc1C1aAAD/ZxzULVoAAP9nZebmXQAA/2cc1PSTAAD/Z2XmPJAAAP+voA6+YAAA/0+gDr5gAAD/r1d8oG8AAP9PV3ygbwAA/0+gDvlCAAD/r6AO+UIAAP9PV3zbUQAA/69XfNtRAABeaVd821EAAP+vV3wpawAA/8/4ijTlAAD/z/iKHbEAAP/PxVc05QAA/y/FVzTlAAD/L/iKNOUAAP8vxVcdsQAA/y/4ih2xAAD/z8VXHbEAAP8vV3xqSgAA/y8c1GpKAAD/zxzUakoAAP/PV3xqSgAA/y/FVyjrAAD/z8VXKOsAAP/P08Eo6wAA/y/TwSjrAAD/LxzUt+MAAP/PHNS34wAA/y/FV/OFAAD/L1d884UAAP/PV3zzhQAA/8/FV/OFAAD/LyRJAAAAAP/PJEkAAAAA/y8c1AAAAAD/zxzUAAAAAP8vHNTiDgAA/y8kSeIOAAD/zyRJ4g4AAP/PHNTiDgAA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34896613377, -"index_count": 594, -"index_data": PackedByteArray("UQBPAFAAUABSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAXQBbAFwAXABeAF0AYQBfAGAAYABiAGEAZQBjAGQAZABmAGUATwBbAF0AXQBQAE8AaQBnAGgAaABqAGkAXwBrAGwAbABgAF8AZgBkAG0AbQBuAGYAcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAawB3AHgAeABsAGsAbQB5AHoAegBuAG0AewBhAGIAYgB8AHsAfwB9AH4AfgCAAH8AcgBwAHgAeAB3AHIAUwBRAFIAUgBUAFMAeQBVAFYAVgB6AHkAagBoAGMAYwBlAGoAgwCBAIIAggCEAIMAVwB7AHwAfABYAFcAhQB/AIAAgACGAIUAhACCAG8AbwBxAIQAXgBcAIEAgQCDAF4AfQB1AHYAdgB+AH0AiACHAGcAZwBpAIgAWQBaAIcAhwCIAFkAiwCJAIoAigCMAIsAjQCLAIwAjACOAI0AjwCNAI4AjgCQAI8AkwCRAJIAkgCUAJMAkwCUAJUAlQCWAJMAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoACfAJ0AnQCeAKAAowChAKIAogCkAKMApgClAJ8AnwCgAKYAqACnAKEAoQCjAKgAmwCPAJAAkACcAJsAqgCpAJkAmQCaAKoAlQCrAKwArACWAJUAlgCsACkAKQCTAJYAKQAmAJMAJgAkAJMALgApAKwArACRAC4AkQAkAC4AkQCTACQApACiAKUApQCmAKQAmACXAK0ArQCuAJgArACrAJIAkgCRAKwAsQCvALAAsACyALEAsACvALMAswC0ALAArwAwABsAGwCzAK8AGwAaALMAGgC1ALMAsQC1ADAAMACvALEAtQAxADAAtQAaADEAtgC0ALMAswC1ALYAtgC1ALEAsQCyALYAhQCGAKcApwCoAIUAcwC3ALgAuAB0AHMAuwC5ALoAugC8ALsAvgC9ALkAuQC7AL4AwAC/AL0AvQC+AMAAwgDBAL8AvwDAAMIAtwC8ALoAugC4ALcAxADDAMEAwQDCAMQAxgDFAMMAwwDEAMYAiQDFAMYAxgCKAIkAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0AzwDHAMkAyQDQAM8AyQDOANAAzgDRANAAzgDSANEAzgDMANIA0QDSANMA0wDUANEAyQDKAM0AzQDOAMkAygDIANUA1QDWAMoA1gDNAMoA1gDUAM0A1ADTAM0A0wDLAM0A0QDUANYA1gDQANEA1gDVAM8AzwDQANYAAgDXANgA2AAAAAIA2QAGAD0APQDaANkA3QDbANwA3ADeAN0A3gDfAN0A3ADbANgA2ADXANwABgDZAOAA4AACAAYA4ADeAAIA3gDXAAIA3gDcANcA3QDaAD0APQAAAN0AAADYAN0A2ADbAN0AVgBUAFIAUgB6AFYAUgBQAHoAUABdAHoAXQBuAHoAXQBmAG4AXQBeAGYAXgBlAGYAXgCDAGUAgwBqAGUAgwCEAGoAhABxAGoAcQBpAGoAcQByAGkAcgCIAGkAcgB3AIgAdwBZAIgAdwBXAFkAdwBrAFcAawBfAFcAXwB7AFcAXwBhAHsA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("/0/FV6pqAAD/T8VX84UAAP+vxVeqagAA/6/FV/OFAAD/r1d884UAAP+vDmqCfgAA/68OaiVtAAD/r1d8gn4AAP+XHNTJ2gAA/2cc1MnaAAD/j///ydoAAP9v///J2gAA/08AAGSNAAD/TwAARpwAAP+vAABkjQAA/68AAEacAAD/T8VXZI0AAP+vxVdkjQAA/69JEimrAAD/r8VXKasAAP9v///b0QAA/4///9vRAAD/lxzU7cgAAP9PxVcpqwAA/09JEimrAAD/ZxzU7cgAAP+v6aDbkQAA/6/poMOdAAD/v+mg25EAAP+/6aDDnQAA/8/poM+XAAD//71UNOUAAP//+Io05QAA//+9VB2xAAD///iKHbEAAP8/6aDbkQAA/0/poNuRAAD/P4qv25EAAP9Piq/bkQAA/y+Kr8+XAAD/P4qvw50AAP9Piq/DnQAAn9bTQR2xAACf1tNBNOUAAP8v6aDPlwAA/z/poMOdAAD/T+mgw50AAP+/iq/DnQAA/6+Kr8OdAAD/r4qv25EAAP+/iq/bkQAA/8+Kr8+XAAAAAPiKNOUAAAAAvVQ05QAAAAD4ih2xAAAAAL1UHbEAAF8p00E05QAAXynTQR2xAAD/T1d884UAAP9PV3yCfgAA/08OaoJ+AAD/Tw5qJW0AAP9PxVfiDgAA/09XfGpKAAD/r8VX4g4AAF5pV3xqSgAA/69XfGpKAAD/T3mNfEEAAP+veY18QQAA/0+Kr3xBAAD/r4qvfEEAAP9Piq/iDgAA/6+Kr+IOAAD/T2Nu4g4AAP+vY27iDgAA/097xWpKAAD/T3vF4g4AAP+ve8VqSgAA/697xeIOAABOczST//8AAE5zNJMo6wAAbXkMkv//AABteQySKOsAAP9/ppH//wAA/3+mkSjrAACRhgyS//8AAJGGDJIo6wAAsIxNpyjrAACwjE2n//8AAPKRdaUo6wAA8pF1pf//AAAMbgyV//8AAARqdJf//wAADG4MlSjrAAAEanSXKOsAAG15dqgo6wAAbXl2qP//AAD/f9uoKOsAAP9/26j//wAAg5hAmv//AAD6lXSX//8AAIOYQJoo6wAA+pV0lyjrAACDmEKg//8AAGGZQZ3//wAAg5hCoCjrAABhmUGdKOsAAE5zTaco6wAATnNNp///AADykQyV//8AAPKRDJUo6wAAe2dCoP//AAAEag6j//8AAHtnQqAo6wAABGoOoyjrAACTcw+IKOsAAJNzD4j//wAA/39PhyjrAAD/f0+H//8AAAxudaUo6wAADG51pf//AACwjDST//8AALCMNJMo6wAAkYZ2qCjrAACRhnao//8AAGuMD4go6wAAa4wPiP//AAD/l0CKKOsAAP+XQIr//wAAe2dAmv//AACdZkGd//8AAHtnQJoo6wAAnWZBnSjrAADwob2NKOsAAPChvY3//wAA+pUOo///AAD6lQ6jKOsAAP9nQbD//wAA/2dBsCjrAACTc3Oy//8AAJNzc7Io6wAA/38ys///AAD/fzKzKOsAAGuMc7L//wAAa4xzsijrAAD/T5iZF3QAAP8vmJkXdAAA/0/athd0AAD/L9q2F3QAAP8v2ra9oAAA/0/atr2gAAD/LxzU8bwAAP8vHNQ5rgAA/88c1PG8AAD/zxzUOa4AAP+XQbD//wAA/5dBsCjrAADwocWs//8AAPChxawo6wAAkak5qP//AACRqTmoKOsAAFyuk5f//wAA/69Bnf//AABcrpOXKOsAAP+vQZ0o6wAAXK7vov//AABcru+iKOsAAJGpSJL//wAAkalIkijrAAD/z5iZ8bwAAP/PmJk5rgAA/y+Ymb2gAAD/T5iZvaAAAP8vmJnxvAAA/y+YmTmuAAD/r5iZvaAAAP/PmJm9oAAA/6/atr2gAAD/z9q2vaAAAP+vmJkXdAAA/8+YmRd0AAD/r9q2F3QAAP/P2rYXdAAA/2dAiijrAAD/Z0CK//8AAG1WSJL//wAADl69jf//AABtVkiSKOsAAA5evY0o6wAAolGTl///AACiUZOXKOsAAP9PQZ3//wAA/09BnSjrAACiUe+i//8AAKJR76Io6wAAbVY5qP//AABtVjmoKOsAAA5exaz//wAADl7FrCjrAAD/lxzURpwAAP9nHNRGnAAA/5eu+NWUAAD/Z6741ZQAAP9nHNTbUQAA/5cc1NtRAAD/Z674TVkAAP+XrvhNWQAA/5cc1PSTAAD/l2XmPJAAAP+XZebmXQAA/5cc1C1aAAD/ZxzULVoAAP9nZebmXQAA/2cc1PSTAAD/Z2XmPJAAAP+voA6+YAAA/0+gDr5gAAD/r1d8oG8AAP9PV3ygbwAA/0+gDvlCAAD/r6AO+UIAAP9PV3zbUQAA/69XfNtRAABeaVd821EAAP+vV3wpawAA/8/4ijTlAAD/z/iKHbEAAP/PxVc05QAA/y/FVzTlAAD/L/iKNOUAAP8vxVcdsQAA/y/4ih2xAAD/z8VXHbEAAP8vV3xqSgAA/y8c1GpKAAD/zxzUakoAAP/PV3xqSgAA/y/FVyjrAAD/z8VXKOsAAP/P08Eo6wAA/y/TwSjrAAD/LxzUt+MAAP/PHNS34wAA/y/FV/OFAAD/L1d884UAAP/PV3zzhQAA/8/FV/OFAAD/LyRJAAAAAP/PJEkAAAAA/y8c1AAAAAD/zxzUAAAAAP8vHNTiDgAA/y8kSeIOAAD/zyRJ4g4AAP/PHNTiDgAA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34896613377, -"index_count": 96, -"index_data": PackedByteArray("IADhAOIA4gAiACAAHwArADgAOAA1AB8ANQDjAB8A4wAgAB8A4wDhACAA5ADjADUANQA0AOQANADlAOQAOQAqACEAIQA3ADkAIQDmADcA5gA2ADcA5gDnADYA6ADmACEAIQAiAOgAIgDiAOgA5QA0ADYANgDnAOUASwA/AEUARQBMAEsARQBHAEwAQwBFAD8APwA+AEMAPgBJAEMAQgBNAEQARABAAEIARABKAEAARgBEAE0ATQBOAEYATgBIAEYA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("/0/FV6pqAAD/T8VX84UAAP+vxVeqagAA/6/FV/OFAAD/r1d884UAAP+vDmqCfgAA/68OaiVtAAD/r1d8gn4AAP+XHNTJ2gAA/2cc1MnaAAD/j///ydoAAP9v///J2gAA/08AAGSNAAD/TwAARpwAAP+vAABkjQAA/68AAEacAAD/T8VXZI0AAP+vxVdkjQAA/69JEimrAAD/r8VXKasAAP9v///b0QAA/4///9vRAAD/lxzU7cgAAP9PxVcpqwAA/09JEimrAAD/ZxzU7cgAAP+v6aDbkQAA/6/poMOdAAD/v+mg25EAAP+/6aDDnQAA/8/poM+XAAD//71UNOUAAP//+Io05QAA//+9VB2xAAD///iKHbEAAP8/6aDbkQAA/0/poNuRAAD/P4qv25EAAP9Piq/bkQAA/y+Kr8+XAAD/P4qvw50AAP9Piq/DnQAAn9bTQR2xAACf1tNBNOUAAP8v6aDPlwAA/z/poMOdAAD/T+mgw50AAP+/iq/DnQAA/6+Kr8OdAAD/r4qv25EAAP+/iq/bkQAA/8+Kr8+XAAAAAPiKNOUAAAAAvVQ05QAAAAD4ih2xAAAAAL1UHbEAAF8p00E05QAAXynTQR2xAAD/T1d884UAAP9PV3yCfgAA/08OaoJ+AAD/Tw5qJW0AAP9PxVfiDgAA/09XfGpKAAD/r8VX4g4AAF5pV3xqSgAA/69XfGpKAAD/T3mNfEEAAP+veY18QQAA/0+Kr3xBAAD/r4qvfEEAAP9Piq/iDgAA/6+Kr+IOAAD/T2Nu4g4AAP+vY27iDgAA/097xWpKAAD/T3vF4g4AAP+ve8VqSgAA/697xeIOAABOczST//8AAE5zNJMo6wAAbXkMkv//AABteQySKOsAAP9/ppH//wAA/3+mkSjrAACRhgyS//8AAJGGDJIo6wAAsIxNpyjrAACwjE2n//8AAPKRdaUo6wAA8pF1pf//AAAMbgyV//8AAARqdJf//wAADG4MlSjrAAAEanSXKOsAAG15dqgo6wAAbXl2qP//AAD/f9uoKOsAAP9/26j//wAAg5hAmv//AAD6lXSX//8AAIOYQJoo6wAA+pV0lyjrAACDmEKg//8AAGGZQZ3//wAAg5hCoCjrAABhmUGdKOsAAE5zTaco6wAATnNNp///AADykQyV//8AAPKRDJUo6wAAe2dCoP//AAAEag6j//8AAHtnQqAo6wAABGoOoyjrAACTcw+IKOsAAJNzD4j//wAA/39PhyjrAAD/f0+H//8AAAxudaUo6wAADG51pf//AACwjDST//8AALCMNJMo6wAAkYZ2qCjrAACRhnao//8AAGuMD4go6wAAa4wPiP//AAD/l0CKKOsAAP+XQIr//wAAe2dAmv//AACdZkGd//8AAHtnQJoo6wAAnWZBnSjrAADwob2NKOsAAPChvY3//wAA+pUOo///AAD6lQ6jKOsAAP9nQbD//wAA/2dBsCjrAACTc3Oy//8AAJNzc7Io6wAA/38ys///AAD/fzKzKOsAAGuMc7L//wAAa4xzsijrAAD/T5iZF3QAAP8vmJkXdAAA/0/athd0AAD/L9q2F3QAAP8v2ra9oAAA/0/atr2gAAD/LxzU8bwAAP8vHNQ5rgAA/88c1PG8AAD/zxzUOa4AAP+XQbD//wAA/5dBsCjrAADwocWs//8AAPChxawo6wAAkak5qP//AACRqTmoKOsAAFyuk5f//wAA/69Bnf//AABcrpOXKOsAAP+vQZ0o6wAAXK7vov//AABcru+iKOsAAJGpSJL//wAAkalIkijrAAD/z5iZ8bwAAP/PmJk5rgAA/y+Ymb2gAAD/T5iZvaAAAP8vmJnxvAAA/y+YmTmuAAD/r5iZvaAAAP/PmJm9oAAA/6/atr2gAAD/z9q2vaAAAP+vmJkXdAAA/8+YmRd0AAD/r9q2F3QAAP/P2rYXdAAA/2dAiijrAAD/Z0CK//8AAG1WSJL//wAADl69jf//AABtVkiSKOsAAA5evY0o6wAAolGTl///AACiUZOXKOsAAP9PQZ3//wAA/09BnSjrAACiUe+i//8AAKJR76Io6wAAbVY5qP//AABtVjmoKOsAAA5exaz//wAADl7FrCjrAAD/lxzURpwAAP9nHNRGnAAA/5eu+NWUAAD/Z6741ZQAAP9nHNTbUQAA/5cc1NtRAAD/Z674TVkAAP+XrvhNWQAA/5cc1PSTAAD/l2XmPJAAAP+XZebmXQAA/5cc1C1aAAD/ZxzULVoAAP9nZebmXQAA/2cc1PSTAAD/Z2XmPJAAAP+voA6+YAAA/0+gDr5gAAD/r1d8oG8AAP9PV3ygbwAA/0+gDvlCAAD/r6AO+UIAAP9PV3zbUQAA/69XfNtRAABeaVd821EAAP+vV3wpawAA/8/4ijTlAAD/z/iKHbEAAP/PxVc05QAA/y/FVzTlAAD/L/iKNOUAAP8vxVcdsQAA/y/4ih2xAAD/z8VXHbEAAP8vV3xqSgAA/y8c1GpKAAD/zxzUakoAAP/PV3xqSgAA/y/FVyjrAAD/z8VXKOsAAP/P08Eo6wAA/y/TwSjrAAD/LxzUt+MAAP/PHNS34wAA/y/FV/OFAAD/L1d884UAAP/PV3zzhQAA/8/FV/OFAAD/LyRJAAAAAP/PJEkAAAAA/y8c1AAAAAD/zxzUAAAAAP8vHNTiDgAA/y8kSeIOAAD/zyRJ4g4AAP/PHNTiDgAA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34896613377, -"index_count": 483, -"index_data": PackedByteArray("6gDpAD8APwBLAOoASwBNAOoA6wDqAE0A7ADrAE0ATQBCAOwAJQAnACwALAAjACUAHQAvADMAMwAeAB0A7gDtAIUAhQCoAO4AqACjAO4AowDvAO4A7QB/AIUA7QB9AH8A7QB1AH0AowCkAO8ApACmAO8ApgCgAO8AoACeAO8AngCcAO8AnACQAO8AkACOAO8AcwB1AO0A8ADvAI4A8ACOAIwA8ACMAIoA8ACKAMYA8ADGAMQA8ADEAMIA8ADCAMAA8ADAAL4A7QDwAL4AvgC7AO0AuwC8AO0AvAC3AO0AtwBzAO0A8QCXAAkACQDyAPEACQAIAPIACAAWAPIAGQAJAJcAlwCZABkAmQAWABkAmQDyABYAmADqAMgAyACaAJgAyADHAJoAxwDPAJoAzwDSAJoA0gDMAJoAywDIAOoA6gDrAMsA6wDMAMsA6wCaAMwAywDVAMgAywDTANUAzwDVANMA0wDSAM8A9ADzAAEAAQA6APQA4wDkAO0A7QDuAOMA8QDwAO0A7QDlAPEA5QCtAPEA5QDnAK0ArQCXAPEA5wCuAK0A8wCuAOcA5wDmAPMA8wCrAK4AqwCVAK4AmACuAJUAlQDqAJgAlQCUAOoAlACSAOoAkgCrAPQA8wD0AKsA9ADpAJIA6QDqAJIA5ADlAO0A8gDvAPAA8ADxAPIAQQA/AN0A3QDfAEEA3wBCAEEA3wDeAEIA3gDgAEIA4ADZAEIABwBCANkAOwAHANkA2QDaADsA2gDdAD8ABwDsAEIABwAEAOwABAD1AOwA9ADaAD8APwDpAPQA9AA6ANoAOgA7ANoAJwAoAC0ALQAsACcAHgAzADIAMgAcAB4AAQDzAOYA5gAQAAEAEAARAAEAEQADAAEAEQATAAMAFwAQAOYA5gDoABcA6AATABcA6AADABMA6AD2AAMA9gDoAOIA4gCqAPYAqgCwAPYAqgCaALAAmgCyALAAsAD1APYAsAC0APUAtADsAPUAsgCaAOsA6wDsALQA6wC2ALIA6wC0ALYAqQCqAOIAqQDiAOEA8gCpAOEA7wDyAOEA7wDhAOMA4wDuAO8AmQCpAPIABAADAPYA9gD1AAQA+QD3APgA+AD6APkA+QD7APwA/AD3APkA+AD9AP4A/gD6APgA/gD7APkA+QD6AP4A+AD3APwA/AD9APgA/QD8AEAAQAD+AP0AQABKAP4ASgBIAP4ASgBJAEgASABOAP4ATgBMAP4APgBAAPwA/AD7AD4A+wBJAD4A+wD+AEwA+wBHAEkARwBIAEkA+wBMAEcA"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("/0/FV6pqAAD/T8VX84UAAP+vxVeqagAA/6/FV/OFAAD/r1d884UAAP+vDmqCfgAA/68OaiVtAAD/r1d8gn4AAP+XHNTJ2gAA/2cc1MnaAAD/j///ydoAAP9v///J2gAA/08AAGSNAAD/TwAARpwAAP+vAABkjQAA/68AAEacAAD/T8VXZI0AAP+vxVdkjQAA/69JEimrAAD/r8VXKasAAP9v///b0QAA/4///9vRAAD/lxzU7cgAAP9PxVcpqwAA/09JEimrAAD/ZxzU7cgAAP+v6aDbkQAA/6/poMOdAAD/v+mg25EAAP+/6aDDnQAA/8/poM+XAAD//71UNOUAAP//+Io05QAA//+9VB2xAAD///iKHbEAAP8/6aDbkQAA/0/poNuRAAD/P4qv25EAAP9Piq/bkQAA/y+Kr8+XAAD/P4qvw50AAP9Piq/DnQAAn9bTQR2xAACf1tNBNOUAAP8v6aDPlwAA/z/poMOdAAD/T+mgw50AAP+/iq/DnQAA/6+Kr8OdAAD/r4qv25EAAP+/iq/bkQAA/8+Kr8+XAAAAAPiKNOUAAAAAvVQ05QAAAAD4ih2xAAAAAL1UHbEAAF8p00E05QAAXynTQR2xAAD/T1d884UAAP9PV3yCfgAA/08OaoJ+AAD/Tw5qJW0AAP9PxVfiDgAA/09XfGpKAAD/r8VX4g4AAF5pV3xqSgAA/69XfGpKAAD/T3mNfEEAAP+veY18QQAA/0+Kr3xBAAD/r4qvfEEAAP9Piq/iDgAA/6+Kr+IOAAD/T2Nu4g4AAP+vY27iDgAA/097xWpKAAD/T3vF4g4AAP+ve8VqSgAA/697xeIOAABOczST//8AAE5zNJMo6wAAbXkMkv//AABteQySKOsAAP9/ppH//wAA/3+mkSjrAACRhgyS//8AAJGGDJIo6wAAsIxNpyjrAACwjE2n//8AAPKRdaUo6wAA8pF1pf//AAAMbgyV//8AAARqdJf//wAADG4MlSjrAAAEanSXKOsAAG15dqgo6wAAbXl2qP//AAD/f9uoKOsAAP9/26j//wAAg5hAmv//AAD6lXSX//8AAIOYQJoo6wAA+pV0lyjrAACDmEKg//8AAGGZQZ3//wAAg5hCoCjrAABhmUGdKOsAAE5zTaco6wAATnNNp///AADykQyV//8AAPKRDJUo6wAAe2dCoP//AAAEag6j//8AAHtnQqAo6wAABGoOoyjrAACTcw+IKOsAAJNzD4j//wAA/39PhyjrAAD/f0+H//8AAAxudaUo6wAADG51pf//AACwjDST//8AALCMNJMo6wAAkYZ2qCjrAACRhnao//8AAGuMD4go6wAAa4wPiP//AAD/l0CKKOsAAP+XQIr//wAAe2dAmv//AACdZkGd//8AAHtnQJoo6wAAnWZBnSjrAADwob2NKOsAAPChvY3//wAA+pUOo///AAD6lQ6jKOsAAP9nQbD//wAA/2dBsCjrAACTc3Oy//8AAJNzc7Io6wAA/38ys///AAD/fzKzKOsAAGuMc7L//wAAa4xzsijrAAD/T5iZF3QAAP8vmJkXdAAA/0/athd0AAD/L9q2F3QAAP8v2ra9oAAA/0/atr2gAAD/LxzU8bwAAP8vHNQ5rgAA/88c1PG8AAD/zxzUOa4AAP+XQbD//wAA/5dBsCjrAADwocWs//8AAPChxawo6wAAkak5qP//AACRqTmoKOsAAFyuk5f//wAA/69Bnf//AABcrpOXKOsAAP+vQZ0o6wAAXK7vov//AABcru+iKOsAAJGpSJL//wAAkalIkijrAAD/z5iZ8bwAAP/PmJk5rgAA/y+Ymb2gAAD/T5iZvaAAAP8vmJnxvAAA/y+YmTmuAAD/r5iZvaAAAP/PmJm9oAAA/6/atr2gAAD/z9q2vaAAAP+vmJkXdAAA/8+YmRd0AAD/r9q2F3QAAP/P2rYXdAAA/2dAiijrAAD/Z0CK//8AAG1WSJL//wAADl69jf//AABtVkiSKOsAAA5evY0o6wAAolGTl///AACiUZOXKOsAAP9PQZ3//wAA/09BnSjrAACiUe+i//8AAKJR76Io6wAAbVY5qP//AABtVjmoKOsAAA5exaz//wAADl7FrCjrAAD/lxzURpwAAP9nHNRGnAAA/5eu+NWUAAD/Z6741ZQAAP9nHNTbUQAA/5cc1NtRAAD/Z674TVkAAP+XrvhNWQAA/5cc1PSTAAD/l2XmPJAAAP+XZebmXQAA/5cc1C1aAAD/ZxzULVoAAP9nZebmXQAA/2cc1PSTAAD/Z2XmPJAAAP+voA6+YAAA/0+gDr5gAAD/r1d8oG8AAP9PV3ygbwAA/0+gDvlCAAD/r6AO+UIAAP9PV3zbUQAA/69XfNtRAABeaVd821EAAP+vV3wpawAA/8/4ijTlAAD/z/iKHbEAAP/PxVc05QAA/y/FVzTlAAD/L/iKNOUAAP8vxVcdsQAA/y/4ih2xAAD/z8VXHbEAAP8vV3xqSgAA/y8c1GpKAAD/zxzUakoAAP/PV3xqSgAA/y/FVyjrAAD/z8VXKOsAAP/P08Eo6wAA/y/TwSjrAAD/LxzUt+MAAP/PHNS34wAA/y/FV/OFAAD/L1d884UAAP/PV3zzhQAA/8/FV/OFAAD/LyRJAAAAAP/PJEkAAAAA/y8c1AAAAAD/zxzUAAAAAP8vHNTiDgAA/y8kSeIOAAD/zyRJ4g4AAP/PHNTiDgAA") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"format": 34896613377, -"index_count": 144, -"index_data": PackedByteArray("fgB2AHQAdACAAH4AdAC4AIAAuACGAIAAuAC6AIYAugCnAIYAugBTAKcAUwBVAKcAVQB5AKcAeQChAKcAeQBtAKEAbQBkAKEAZABjAKEAYwCiAKEAYwBoAKIAaAClAKIAaABnAKUAZwCHAKUAhwCfAKUAhwBaAJ8AWgBYAJ8AWAB8AJ8AfACdAJ8AfABiAJ0AUwC6ALkAuQBRAFMAuQBPAFEAuQC9AE8AvQBbAE8AvQBcAFsAvQCBAFwAvQC/AIEAvwCCAIEAvwBvAIIAvwDBAG8AwQBwAG8AwQDDAHAAwwB4AHAAwwBsAHgAwwBgAGwAwwDFAGAAxQBiAGAAxQCdAGIAxQCbAJ0AxQCJAJsAiQCPAJsAiQCLAI8AiwCNAI8A"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 255, -"vertex_data": PackedByteArray("/0/FV6pqAAD/T8VX84UAAP+vxVeqagAA/6/FV/OFAAD/r1d884UAAP+vDmqCfgAA/68OaiVtAAD/r1d8gn4AAP+XHNTJ2gAA/2cc1MnaAAD/j///ydoAAP9v///J2gAA/08AAGSNAAD/TwAARpwAAP+vAABkjQAA/68AAEacAAD/T8VXZI0AAP+vxVdkjQAA/69JEimrAAD/r8VXKasAAP9v///b0QAA/4///9vRAAD/lxzU7cgAAP9PxVcpqwAA/09JEimrAAD/ZxzU7cgAAP+v6aDbkQAA/6/poMOdAAD/v+mg25EAAP+/6aDDnQAA/8/poM+XAAD//71UNOUAAP//+Io05QAA//+9VB2xAAD///iKHbEAAP8/6aDbkQAA/0/poNuRAAD/P4qv25EAAP9Piq/bkQAA/y+Kr8+XAAD/P4qvw50AAP9Piq/DnQAAn9bTQR2xAACf1tNBNOUAAP8v6aDPlwAA/z/poMOdAAD/T+mgw50AAP+/iq/DnQAA/6+Kr8OdAAD/r4qv25EAAP+/iq/bkQAA/8+Kr8+XAAAAAPiKNOUAAAAAvVQ05QAAAAD4ih2xAAAAAL1UHbEAAF8p00E05QAAXynTQR2xAAD/T1d884UAAP9PV3yCfgAA/08OaoJ+AAD/Tw5qJW0AAP9PxVfiDgAA/09XfGpKAAD/r8VX4g4AAF5pV3xqSgAA/69XfGpKAAD/T3mNfEEAAP+veY18QQAA/0+Kr3xBAAD/r4qvfEEAAP9Piq/iDgAA/6+Kr+IOAAD/T2Nu4g4AAP+vY27iDgAA/097xWpKAAD/T3vF4g4AAP+ve8VqSgAA/697xeIOAABOczST//8AAE5zNJMo6wAAbXkMkv//AABteQySKOsAAP9/ppH//wAA/3+mkSjrAACRhgyS//8AAJGGDJIo6wAAsIxNpyjrAACwjE2n//8AAPKRdaUo6wAA8pF1pf//AAAMbgyV//8AAARqdJf//wAADG4MlSjrAAAEanSXKOsAAG15dqgo6wAAbXl2qP//AAD/f9uoKOsAAP9/26j//wAAg5hAmv//AAD6lXSX//8AAIOYQJoo6wAA+pV0lyjrAACDmEKg//8AAGGZQZ3//wAAg5hCoCjrAABhmUGdKOsAAE5zTaco6wAATnNNp///AADykQyV//8AAPKRDJUo6wAAe2dCoP//AAAEag6j//8AAHtnQqAo6wAABGoOoyjrAACTcw+IKOsAAJNzD4j//wAA/39PhyjrAAD/f0+H//8AAAxudaUo6wAADG51pf//AACwjDST//8AALCMNJMo6wAAkYZ2qCjrAACRhnao//8AAGuMD4go6wAAa4wPiP//AAD/l0CKKOsAAP+XQIr//wAAe2dAmv//AACdZkGd//8AAHtnQJoo6wAAnWZBnSjrAADwob2NKOsAAPChvY3//wAA+pUOo///AAD6lQ6jKOsAAP9nQbD//wAA/2dBsCjrAACTc3Oy//8AAJNzc7Io6wAA/38ys///AAD/fzKzKOsAAGuMc7L//wAAa4xzsijrAAD/T5iZF3QAAP8vmJkXdAAA/0/athd0AAD/L9q2F3QAAP8v2ra9oAAA/0/atr2gAAD/LxzU8bwAAP8vHNQ5rgAA/88c1PG8AAD/zxzUOa4AAP+XQbD//wAA/5dBsCjrAADwocWs//8AAPChxawo6wAAkak5qP//AACRqTmoKOsAAFyuk5f//wAA/69Bnf//AABcrpOXKOsAAP+vQZ0o6wAAXK7vov//AABcru+iKOsAAJGpSJL//wAAkalIkijrAAD/z5iZ8bwAAP/PmJk5rgAA/y+Ymb2gAAD/T5iZvaAAAP8vmJnxvAAA/y+YmTmuAAD/r5iZvaAAAP/PmJm9oAAA/6/atr2gAAD/z9q2vaAAAP+vmJkXdAAA/8+YmRd0AAD/r9q2F3QAAP/P2rYXdAAA/2dAiijrAAD/Z0CK//8AAG1WSJL//wAADl69jf//AABtVkiSKOsAAA5evY0o6wAAolGTl///AACiUZOXKOsAAP9PQZ3//wAA/09BnSjrAACiUe+i//8AAKJR76Io6wAAbVY5qP//AABtVjmoKOsAAA5exaz//wAADl7FrCjrAAD/lxzURpwAAP9nHNRGnAAA/5eu+NWUAAD/Z6741ZQAAP9nHNTbUQAA/5cc1NtRAAD/Z674TVkAAP+XrvhNWQAA/5cc1PSTAAD/l2XmPJAAAP+XZebmXQAA/5cc1C1aAAD/ZxzULVoAAP9nZebmXQAA/2cc1PSTAAD/Z2XmPJAAAP+voA6+YAAA/0+gDr5gAAD/r1d8oG8AAP9PV3ygbwAA/0+gDvlCAAD/r6AO+UIAAP9PV3zbUQAA/69XfNtRAABeaVd821EAAP+vV3wpawAA/8/4ijTlAAD/z/iKHbEAAP/PxVc05QAA/y/FVzTlAAD/L/iKNOUAAP8vxVcdsQAA/y/4ih2xAAD/z8VXHbEAAP8vV3xqSgAA/y8c1GpKAAD/zxzUakoAAP/PV3xqSgAA/y/FVyjrAAD/z8VXKOsAAP/P08Eo6wAA/y/TwSjrAAD/LxzUt+MAAP/PHNS34wAA/y/FV/OFAAD/L1d884UAAP/PV3zzhQAA/8/FV/OFAAD/LyRJAAAAAP/PJEkAAAAA/y8c1AAAAAD/zxzUAAAAAP8vHNTiDgAA/y8kSeIOAAD/zyRJ4g4AAP/PHNTiDgAA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_eo1ub"] -resource_name = "blasterD_Mesh blasterD" -_surfaces = [{ -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("7Yh2ce2IQ44Rd3ZxEXdDjgt6jIl8gWeRC3pCmVSVQpnZkmeRfIGMiXaE2GOIe9hj+YL+UAV9/lDtiB2W7YjTpRF3HZYRd9Ol7Yj2vhF39r7tiEKZEXdCmdVUG7fVVEKZuGP2vppyQpmacva+BX3O5wV9Yd75gs7n+YJh3jUlXGQ1JXJRETdcZCMuclEpq0KZKasbt2SNQplGnPa+ZI32vhF33oURd0507Yjehe2ITnTJ2nJRydpcZNvRclHtyFxkdoQ8RYh7PEX5gikwBX0pMO2IG7cRdxu37YhCmRF3QpkRd9SaEXdlpxd01JoXdGWnHXEdocoaj5rKGkOD4U6PmuFOQ4Pni9d57YjXeeeLjnPtiI5zHXEdoRd01JoXdGWnEXdlpxF31JrhTtWOyhrVjuFOWIPKGliD4Y4doeeLZafni9Sa7YjUmu2IZacRd9d5F3TXeRF3jnMXdI5z54vXee2I13nni45z7YiOcxF313kXdNd5EXeOcxd0jnPtiGWn7YjUmueLZafni9Sa4Y4doTTlQ4M05Y+aHbFDgx2xj5o05ViDNOXVjh2xWIMdsdWOHZDRux2QzfLhb9G74W/N8vOFjInzhUKZgn6MiYJ+Z5GqakKZJW1nke2IZ5ERd2eR7YiMiRF3jIkRdxR07YgUdBF3aIbtiGiGEXf//xF3Ob/tiP//yXs5v+2IOb/tiDCCEXcwgu2IjnMRd45z7YiWEO2I/0URd5YQEXf/Re2IlcbtiKP9EXeVxhF3o/0Rd2xPEXeWEO2IbE/tiJYQAACEgtYUhIIAANGD1hTRg////YYo6/2G//+vhSjrr4Uo661///+tfyjr+oD///qAAACofgAAW33WFKh+1hRbfdYU/YYAAP2G1hSvhQAAr4X//7d7//8EfSjrt3so6wR9AACtf9YUrX8AAPqA1hT6gP//3nr//yt8KOveeijrK3zWFNGDAADRg9YUhIIAAISC//9bff//qH4o61t9KOuofgAABH0AALd71hQEfdYUt3so6xuF//8bhSjrkYf//5GH1hT6gAAA+oDWFK1/AACtf///+oAo6/qA//+tfyjrrX8o66+F//+vhSjr/Yb///2G1hRmhAAAZoTWFPCBAADwgQAAqH4AAFt91hSoftYUW30AAK+F1hSvhQAA/YbWFP2G///Rgyjr0YP//4SCKOuEgv//3nr//yt8KOveeijrK3wAACt8AADeetYUK3zWFN56KOuEgv//hIIo69GD///Rg9YUjoEAAI6B1hQYfwAAGH8AACt8AADeetYUK3zWFN56AAAEfQAAt3vWFAR91hS3e9YUkYcAAJGH1hQbhQAAG4X//7d7//8EfSjrt3so6wR9//9bff//qH4o61t9KOuofv//ZoQo62aE///wgSjr8IH//5GHKOuRh///G4Uo6xuFAAAbhdYUG4UAAJGH1hSRhxF3+3wdcft8EXdqcB1xanDhjml74Y6Jqu2IaXvtiImqHXFNyB1xxbjhjk3I4Y7FuAAAGH/WFBh/AACOgdYUjoEAADx/AADHfNYUPH/WFMd8AAC/fAAASXrWFL981hRJegAAmX0AACN71hSZfdYUI3sAAJl9AAAje9YUmX3WFCN7AADwgdYU8IEAAGaE1hRmhA1D+3wNQ9hjxVH7fMVR2GPhjvt87Yj7fOGOanDtiGpwvaD7fMOdjnO9oGpwF3RqcNuRjnPbkdd5w53XeRd0+3wAAL98AABJetYUv3zWFEl68bzYY/G8+3w5rthjOa77fB1xiaodcWl7EXeJqhF3aXsRd/t8HXH7fBF3anAdcWpw7YiJqu2IaXvhjomq4Y5peztijnM7Ytd5QV/7fOeL+3wjbtd554tqcEFfanAjbo5z4Y77fO2I+3zhjmpw7YhqcBF3aXsRd4mqHXFpex1xiaoAADx/AADHfNYUPH/WFMd8KOvwgf//8IEo62aE//9mhP//x3z//zx/KOvHfCjrPH///yN7//+ZfSjrI3so65l9//9Jev//v3wo60l6KOu/fP//SXr//798KOtJeijrv3wo6xh///8YfyjrjoH//46B//8je///mX0o6yN7KOuZff//x3z//zx/KOvHfCjrPH///46BKOuOgf//GH8o6xh/doQCdYh7AnV2hHJjiHtyY3aEcH2Ie3B9doTga4h74Gu4Y9hjKWsjVAps2GPCb/1bsaYjVBii/VvRpdhjI67YY3aEg3mIe4N5doS7cIh7u3CIe/idiHsiX3aE+J12hCJfRpzYY/ST2GPVlCNUPJD9W01ZI1TmXf1bLVrYY9tR2GN2hP1jdoQdmYh7/WOIex2ZdoQVcYh7FXF2hExoiHtMaO2InMARd5zA7Yh+nxF3fp/tiDaXEXc2l+2I7o4Rd+6O7YiLyhF3i8rtiN6YEXfemDWE3pjtiJFH7Yj9ZhF3kUcRd/1mXpCMidWUjIkjroyJQJ+tuAW9rbigb4yJ21GMib5grbj5Qq24/39lgMZ+OYA4gTmAW4K6f6N9un+ofO9+VoPvfhaE533oe+d9j4SzfG97s3y4hGl7Rntpe297HnqPhB566HvreBaE63iofOJ3VoPid1uCGHejfRh3xn6YdjiBmHb/f2124Y7N8uGO0bvPl83yz5fRux2Qr6Lhb6+iz5ePmi9oj5rhjkKZz5dDg+GOQ4MdcUKZL2hDgx1xQ4Phb6+iL2iPmh2Qr6LPl4+a4Y5Cmc+XQ4PhjkODHXFCmS9oQ4MdcUODL2jN8i9o0bsdcc3yHXHRu2pKjIl8QY5zakohauIOIWriDo5zfEEwguIOQpniDouPlLUhaoK+MIKUtYyJHPFCmRzxi4+Cvo5zHPEhahzxjnPhjoyJ7YiMieGO2GPtiCFqEXchah1x2GMdcYyJEXeMifSbjnP0m9d5TJWOc0yV13myao5zWnGOc7Jq13lacdd5HXFCmVCGE4LhjkKZu4cfgJ+I2X3hjrNrdoSSg0+Cg4T/f9aE7Yhpe5+I+Hi7h7J2UIa+dHaEP3NPgk5y/3/8ca99g4QdcbNrr31Ocoh7P3Oueb50Q3iydl93+HgRd2l7X3fZfUN4H4CueROCiHuSg4h7zucdcTvx4Y478XaEzud2hPTUiHv01B1xbE+Ie9OldoTTpXaEC512hA9gdoRHV4h7R1fhjmxPiHsLnYh7D2DhjkKZ7YhCmeGOjIntiIyJ4Y7N8uGOFvkdcc3yHXEW+Sjrs2so60KZt+PYYzTlQ4MdsUOD84VCmR2xQpm9oPt8vaBqcGpK2GMXdGpwF3T7fPOFjIlqSoyJNOVCmeGO9sMdcfbD4Y7auB1x2rjtiGxP7YhHVzWEbE81hEdXEXdsTxF3R1cRd/xxEXeydhF3aIbtiGiG7Yiydh1xbE8Rd0OOHXFDjuGOQ47hjmxP7YhDjkyVjnNMldd5pI6Oc6SO13kKZI5zsmqOcwpk13myatd54Y5DjuGO0bvtiB2WEXcdlhF3ibXtiIm1HXHRux1xQ47hTkKZ4U5Dgwt6QplBX/t8QV9qcAt6jInni/t8lLWMiZS12GPni2pwyhpDg0cc2GPWFLNryhpCmdYUQpkRd0KZHXFCmRF3jIkdcYyJ4Y6Knx1xip/hjthjHXHYY+IO2GPiDoqfAADYYwAAip8c8YqfHPHYY///ip///9hjHXGWEB1x4ADhjpYQ4Y7gAOGO4ADhjpYQHXHgAB1xlhAdcYqf7YhCmeGOip/hjthj7YiLj+2IjnMRd4uP7YghahF3IWoRd0KZHXHYYxF3jnMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8DUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hj"), -"format": 34896613399, -"index_count": 237, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABQAIAAcACQAFAAQADAAKAAsACwANAAwAEAAOAA8ADwARABAAFAASABMAEwAVABQAGAAWABcAFwAZABgAGQAaABgAHQAbABwAHAAeAB0AIQAfACAAIAAiACEAJQAjACQAJAAmACUAJgAnACUAKgAoACkAKQArACoALgAsAC0ALQAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOQA7ADoAOwA8ADoAPwA9AD4APgBAAD8AQwBBAEIAQgBEAEMARwBFAEYARgBIAEcARgBJAEgATABKAEsASwBNAEwAUABOAE8ATwBRAFAATwBSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAXQBbAFwAXABeAF0AYQBfAGAAYABiAGEAYgBjAGEAZgBkAGUAZQBnAGYAagBoAGkAaQBrAGoAbgBsAG0AbQBvAG4AcgBwAHEAcQBzAHIAcQB0AHMAdAB1AHMAeAB2AHcAdwB5AHgAfAB6AHsAewB9AHwAgAB+AH8AfwCBAIAAgQCCAIAAhQCDAIQAhACGAIUAiQCHAIgAiACKAIkAjQCLAIwAjACOAI0AkQCPAJAAkACSAJEA"), -"material": SubResource("StandardMaterial3D_paj24"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(33.8583, 32.0782, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("/0/FV6pq////T8VX84X///+vxVeqav///6/FV/OF////r1d884X/v/+vDmqCfv+//6/FV/OF/7//r8VXqmr/v/+vDmolbf+//69XfIJ+/7//lxzUydr/f/9nHNTJ2v9//4///8na/3//b///ydr/f/9PAABkjf///08AAEac////rwAAZI3///+vAABGnP///08AAGSN////rwAAZI3///9PxVdkjf///6/FV2SN////r0kSKav/v/+vxVcpq/+//68AAEac/7//r8VXZI3/v/+vAABkjf+//2///8na/7//b///29H/v/+P///J2v+//4///9vR/7//lxzUydoRwP+P///J2hHA/5cc1O3IEcD/j///29ERwP9PxVcpq/+//09JEimr/7//T8VXZI3/v/9PAABGnP+//08AAGSN/7//TwAARpwbrf9PSRIpqxut/68AAEacG63/r0kSKasbrf9v///J2hHA/2cc1MnaEcD/b///29ERwP9nHNTtyBHA/2cc1O3I////lxzU7cj///9v///b0f///4///9vR////r0kSKav/f/9PSRIpq/9//6/FVymr/3//T8VXKav/f/+v6aDbkf///6/poMOd////v+mg25H///+/6aDDnf///8/poM+X/////71UNOX/v///+Io05f+///+9VB2x/7////iKHbH/v/8/6aDbkf///0/poNuR////P4qv25H///9Piq/bkf///y+Kr8+X/7//P4qv25H/v/8/iq/Dnf+//0+Kr8Od/7//T4qv25H/v5/W00EdsfzFn9bTQTTl/MX//71UHbH8xf//vVQ05fzF/y/poM+X////P+mgw53///8/6aDbkf///0/poNuR////T+mgw53///9P6aDDnf9//z/poMOd/3//T4qvw53/f/8/iq/Dnf9//7/poMOd/3//r+mgw53/f/+/iq/Dnf9//6+Kr8Od/3//r+mg25H///+/6aDbkf///6+Kr9uR////v4qv25H///+viq/Dnf+//6+Kr9uR/7//v4qvw53/v/+/iq/bkf+//8+Kr8+X/78AAPiKNOX/vwAAvVQ05f+/AAD4ih2x/78AAL1UHbH/vwAAvVQ05fzFXynTQTTl/MUAAL1UHbH8xV8p00EdsfzFXynTQR2x//9fKdNBNOX//5/W00Edsf//n9bTQTTl////T1d884X/v/9PxVfzhf+//09XfIJ+/7//Tw5qgn7/v/9PxVeqav+//08OaiVt/7//Tw5qgn7///+vDmqCfv///09XfIJ+////r1d8gn7///9PDmolbf+//68OaiVt/7//Tw5qgn7/v/+vDmqCfv+//0/FV+IOBLb/T1d8akoEtv+vxVfiDgS2XmlXfGpKBLb/r1d8akoEtv9PeY18Qf///695jXxB////T4qvfEH///+viq98Qf///0+Kr+IO////T4qvfEH///+viq/iDv///6+Kr3xB////T3mNfEH///9PY27iDv///695jXxB////r2Nu4g7///9Pe8VqSv+//097xeIO/7//r3vFakr/v/+ve8XiDv+/TnM0k///VNVOczSTKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMTaco61TVsIxNp///VNXykXWlKOtU1fKRdaX//1TVDG4Mlf//VNUEanSX//9U1QxuDJUo61TVBGp0lyjrVNVteXaoKOtU1W15dqj//1TV/3/bqCjrVNX/f9uo//9U1YOYQJr//1TV+pV0l///VNWDmECaKOtU1fqVdJco61TVDG4Mlf//VNUMbgyVKOtU1U5zNJP//1TVTnM0kyjrVNWDmEKg//9U1WGZQZ3//1TVg5hCoCjrVNVhmUGdKOtU1U5zTaco61TVTnNNp///VNVteXaoKOtU1W15dqj//1TV+pV0l///VNXykQyV//9U1fqVdJco61TV8pEMlSjrVNV7Z0Kg//9U1QRqDqP//1TVe2dCoCjrVNUEag6jKOtU1ZNzD4go61TVk3MPiP//VNX/f0+HKOtU1f9/T4f//1TVDG51pSjrVNUMbnWl//9U1U5zTaco61TVTnNNp///VNWwjDST//9U1bCMNJMo61TV8pEMlf//VNXykQyVKOtU1f9/26go61TV/3/bqP//VNWRhnaoKOtU1ZGGdqj//1TVa4wPiCjrVNVrjA+I//9U1f+XQIoo61TV/5dAiv//VNUEag6j//9U1QxudaX//1TVBGoOoyjrVNUMbnWlKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMNJP//1TVsIw0kyjrVNVhmUGd//9U1YOYQJr//1TVYZlBnSjrVNWDmECaKOtU1XtnQJr//1TVnWZBnf//VNV7Z0CaKOtU1Z1mQZ0o61TVkYZ2qCjrVNWRhnao//9U1bCMTaco61TVsIxNp///VNX/l0CKKOtU1f+XQIr//1TV8KG9jSjrVNXwob2N//9U1Z1mQZ3//1TVe2dCoP//VNWdZkGdKOtU1XtnQqAo61TVBGp0l///VNV7Z0Ca//9U1QRqdJco61TVe2dAmijrVNX/f0+HKOtU1f9/T4f//1TVa4wPiCjrVNVrjA+I//9U1fqVDqP//1TVg5hCoP//VNX6lQ6jKOtU1YOYQqAo61TV8pF1pf//VNX6lQ6j//9U1fKRdaUo61TV+pUOoyjrVNX/Z0Gw//9U1f9nQbAo61TVk3Nzsv//VNWTc3OyKOtU1ZNzc7L//1TVk3NzsijrVNX/fzKz//9U1f9/MrMo61TV/38ys///VNX/fzKzKOtU1WuMc7L//1TVa4xzsijrVNX/T5iZF3T///8vmJkXdP///0/athd0////L9q2F3T///8v2rYXdFTV/y/atr2gVNX/T9q2F3RU1f9P2ra9oFTV/y8c1PG8VNX/LxzUOa5U1f/PHNTxvFTV/88c1DmuVNX/l0Gw//9U1f+XQbAo61TV8KHFrP//VNXwocWsKOtU1ZGpOaj//1TV8KHFrP//VNWRqTmoKOtU1fChxawo61TVXK6Tl///VNX/r0Gd//9U1Vyuk5co61TV/69BnSjrVNVcru+i//9U1ZGpOaj//1TVXK7voijrVNWRqTmoKOtU1ZGpSJL//1TVXK6Tl///VNWRqUiSKOtU1Vyuk5co61TVa4xzsv//VNVrjHOyKOtU1f+XQbD//1TV/5dBsCjrVNX/z5iZ8bxU1f/PHNTxvFTV/8+YmTmuVNX/zxzUOa5U1f8vmJm9oP///0+Ymb2g////L9q2vaD///9P2ra9oP///0+Ymb2gVNX/T4qvw51U1f9P2ra9oFTV/0/athd0VNX/T4qv25FU1f9P6aDbkVTV/0/poMOdVNX/T5iZF3RU1f+vQZ3//1TVXK7vov//VNX/r0GdKOtU1Vyu76Io61TV/y8c1PG8VNX/L5iZ8bxU1f8vHNQ5rlTV/y+YmTmuVNX/L5iZvaBU1f8vmJkXdFTV/0+Ymb2gVNX/T5iZF3RU1f+vmJm9oP///8+Ymb2g////r9q2vaD////P2ra9oP///6+Ymb2gVNX/r5iZF3RU1f/PmJm9oFTV/8+YmRd0VNX/r4qvw51U1f+v6aDDnVTV/6+Ymb2gVNX/r5iZF3RU1f+v6aDbkVTV/6/athd0VNX/r9q2vaBU1f+viq/bkVTV/8+YmRd0////r5iZF3T////P2rYXdP///6/athd0////r9q2F3RU1f+v2ra9oFTV/8/athd0VNX/z9q2vaBU1fChvY3//1TVkalIkv//VNXwob2NKOtU1ZGpSJIo61TV/2dAiijrVNX/Z0CK//9U1ZNzD4go61TVk3MPiP//VNVtVkiS//9U1Q5evY3//1TVbVZIkijrVNUOXr2NKOtU1aJRk5f//1TVbVZIkv//VNWiUZOXKOtU1W1WSJIo61TV/09Bnf//VNWiUZOX//9U1f9PQZ0o61TVolGTlyjrVNWiUe+i//9U1f9PQZ3//1TVolHvoijrVNX/T0GdKOtU1Q5evY0o61TVDl69jf//VNX/Z0CKKOtU1f9nQIr//1TVbVY5qP//VNWiUe+i//9U1W1WOago61TVolHvoijrVNUOXsWs//9U1W1WOaj//1TVDl7FrCjrVNVtVjmoKOtU1Q5exaz//1TVDl7FrCjrVNX/Z0Gw//9U1f9nQbAo61TV/5cc1EacJsL/ZxzURpwmwv+XrvjVlCbC/2eu+NWUJsL/ZxzU21Gy8v+XHNTbUbLy/2eu+E1ZsvL/l674TVmy8v+XHNRGnFTV/5eu+NWUVNX/lxzU9JNU1f+XZeY8kFTV/5eu+E1ZVNX/l2Xm5l1U1f+XHNQtWlTV/5cc1NtRVNX/lxzULVomwv9nHNQtWibC/5dl5uZdJsL/Z2Xm5l0mwv9nrvjVlFTV/2eu+E1ZVNX/l6741ZRU1f+XrvhNWVTV/2cc1EacVNX/ZxzU9JNU1f9nrvjVlFTV/2dl5jyQVNX/Z674TVlU1f9nZebmXVTV/2cc1C1aVNX/ZxzU21FU1f9nZebmXVTV/2dl5jyQVNX/l2Xm5l1U1f+XZeY8kFTV/2cc1PSTsvL/lxzU9JOy8v9nZeY8kLLy/5dl5jyQsvL/r6AOvmAKwf9PoA6+YArB/6/FV6pqCsH/T8VXqmoKwf+vDmolbQrB/08OaiVtCsH/r1d8oG8Kwf9PV3ygbwrB/0+gDvlCv/b/r6AO+UK/9v9PV3zbUb/2/69XfNtRv/ZeaVd821G/9v9PoA75QlTV/0+gDr5gVNX/r6AO+UJU1f+voA6+YFTV/69XfKBvVNX/r1d8KWtU1f+vV3zbUVTV/6+gDr5gVNX/r6AO+UJU1f9PV3ygb1TV/09XfNtRVNX/T6AOvmBU1f9PoA75QlTV/3+mkSjr//9teQySKOv//5GGDJIo6///sIw0kyjr//9OczSTKOv//wxuDJUo6///8pEMlSjr///6lXSXKOv//wRqdJco6///g5hAmijr//97Z0CaKOv//2GZQZ0o6///nWZBnSjr//97Z0KgKOv//4OYQqAo6///BGoOoyjr///6lQ6jKOv//wxudaUo6///8pF1pSjr//+wjE2nKOv//05zTaco6///bXl2qCjr//+RhnaoKOv///9/26go6////8/4ijTlVNX/z/iKHbFU1f//+Io05VTV///4ih2xVNWf1tNBNOX//18p00E05f////+9VDTl//8AAL1UNOX////PxVc05f/////4ijTl////z/iKNOX///8vxVc05f//AAD4ijTl////L/iKNOX//5/W00Edsf////+9VB2x//9fKdNBHbH//wAAvVQdsf///y/FVx2x//8AAPiKHbH///8v+Iodsf///8/FVx2x//////iKHbH////P+Iodsf//AAD4ijTlVNUAAPiKHbFU1f8v+Io05VTV/y/4ih2xVNX/T1d8akpU1f9Piq98QVTV/097xWpKVNX/T3vF4g5U1f9Piq/iDlTV/095jXxBVNX/T8VX4g5U1f9PY27iDlTV/697xWpKVNX/r3mNfEFU1f+vV3xqSlTV/6/FV+IOVNX/r2Nu4g5U1f+viq98QVTV/697xeIOVNX/r4qv4g5U1f8vV3xqSv///09XfGpK////LxzUakr///9Pe8VqSv///697xWpK////zxzUakr////PV3xqSv///69XfGpK////L4qvz5f14P8v6aDPl/Xg/z+Kr9uR9eD/P+mg25H14P+/iq/DnWjL/8+Kr8+XaMv/v+mgw51oy//P6aDPl2jL/y/FVyjr///wob2NKOv////PxVco6///kalIkijr//9crpOXKOv////P08Eo6////5dAiijr//9rjA+IKOv///9/T4co6////69BnSjr//9cru+iKOv//5GpOago6///8KHFrCjr////l0GwKOv//2uMc7Io6////38ysyjr//+Tcw+IKOv///8v08Eo6///k3Nzsijr////Z0GwKOv//w5exawo6///bVY5qCjr//+iUe+iKOv///9PQZ0o6///olGTlyjr//9tVkiSKOv//w5evY0o6////2dAiijr////ZxzUydpU1f8vHNS341TV/88c1LfjVNX/lxzUydpU1f+XHNTtyFTV/2cc1O3IVNX/LxzUakpU1f9nHNRGnFTV/5cc1EacVNX/lxzU9JNU1f+XHNQtWlTV/5cc1NtRVNX/ZxzU21FU1f/PHNRqSlTV/2cc1PSTVNX/ZxzULVpU1f8vxVfzhf///0/FV/OF////L1d884X///9PV3zzhf///y/FVzTlVNX/L8VXKOtU1f/PxVc05VTV/8/FVyjrVNX/L9PBKOtU1f8vxVco61TV/y8c1LfjVNX/L/iKNOVU1f8v+IodsVTV/y/FV/OFVNX/L8VXHbFU1f8vmJm9oFTV/y/atr2gVNX/LxzUakpU1f8v2rYXdFTV/y+YmRd0VNX/L1d884VU1f8vV3xqSlTV/y/FVzTlVNX/z9PBKOv8xf8v08Eo6/zF/88c1Lfj/MX/LxzUt+P8xf9PV3xqSlTV/09XfNtRVNVeaVd8akpU1V5pV3zbUVTV/69XfGpKVNX/r1d821FU1f+vV3wpa1TV/69XfKBvVNX/r1d8gn5U1f9PV3yCflTV/09XfKBvVNX/z1d8akpU1f+vV3zzhVTV/89XfPOFVNX/L1d884VU1f8vV3xqSlTV/09XfPOFVNX/P4qvw51oy/8/6aDDnWjL/y+Kr8+XaMv/L+mgz5doy//Piq/Pl/Xg/7+Kr9uR9eD/z+mgz5f14P+/6aDbkfXg/y/FV/OFVNX/L8VXHbFU1f9PxVdkjVTV/6/FV2SNVNX/r8VXKatU1f9PxVcpq1TV/8/FVx2xVNX/z8VX84VU1f/PxVcdsVTV/8/4ih2xVNX/z8VX84VU1f/PmJm9oFTV/8/atr2gVNX/z1d884VU1f/PmJkXdFTV/89XfGpKVNX/zxzUakpU1f/P2rYXdFTV/8/4ijTlVNX/zxzUt+NU1f/P08Eo61TV/8/FVzTlVNX/z8VXKOtU1f+vxVfzhf///8/FV/OF////r1d884X////PV3zzhf///y8kSQAA////zyRJAAD///8vHNQAAP///88c1AAA////LxzU4g5U1f8vJEniDlTV/y8c1AAAVNX/LyRJAABU1f/PJEniDlTV/88c1OIOVNX/zyRJAABU1f/PHNQAAFTV/y8c1OIOVNX/LxzUAABU1f/PHNTiDlTV/88c1AAAVNX/LyRJAABU1f8vJEniDlTV/88kSQAAVNX/zyRJ4g5U1f8vJEniDv///6/FV+IO////zyRJ4g7////PHNTiDv///69jbuIO////r4qv4g7///9PY27iDv///697xeIO////T3vF4g7///9PxVfiDv///y8c1OIO////T4qv4g7///9/T4f/////k3MPiP////9rjA+I//////+XQIr/////a4wPiP////+Tcw+I//////9nQIr//////5dAiv////+Tcw+I//////ChvY3//////5dAiv//////Z0CK/////w5evY3/////8KG9jf//////Z0CK/////5GpSJL/////8KG9jf////8OXr2N//////9/ppH/////kalIkv////8OXr2N/////5GGDJL/////kalIkv//////f6aR/////7CMNJP/////kYYMkv////9crpOX/////5GpSJL/////sIw0k//////ykQyV/////1yuk5f/////sIw0k//////6lXSX/////1yuk5f/////8pEMlf////+DmECa/////1yuk5f/////+pV0l///////r0Gd/////1yuk5f/////g5hAmv////9hmUGd//////+vQZ3/////g5hAmv////9cru+i//////+vQZ3/////YZlBnf////+DmEKg/////1yu76L/////YZlBnf/////6lQ6j/////1yu76L/////g5hCoP////+RqTmo/////1yu76L/////+pUOo//////ykXWl/////5GpOaj/////+pUOo/////+wjE2n/////5GpOaj/////8pF1pf////+Rhnao/////5GpOaj/////sIxNp//////wocWs/////5GpOaj/////kYZ2qP//////f9uo//////Chxaz/////kYZ2qP////8OXr2N/////21WSJL//////3+mkf////9teQyS//////9/ppH/////bVZIkv////9OczST/////215DJL/////olGTl/////9OczST/////21WSJL/////DG4Mlf////9OczST/////6JRk5f/////BGp0l/////8MbgyV/////6JRk5f/////e2dAmv////8EanSX/////6JRk5f//////09Bnf////97Z0Ca/////6JRk5f/////nWZBnf////97Z0Ca//////9PQZ3/////e2dCoP////+dZkGd//////9PQZ3/////olHvov////97Z0Kg//////9PQZ3/////BGoOo/////97Z0Kg/////6JR76L/////bVY5qP////8Eag6j/////6JR76L/////DG51pf////8Eag6j/////21WOaj/////TnNNp/////8MbnWl/////21WOaj/////bXl2qP////9Oc02n/////21WOaj/////Dl7FrP////9teXao/////21WOaj//////3/bqP////9teXao/////w5exaz/////8KHFrP//////f9uo/////w5exaz//////5dBsP/////wocWs/////w5exaz//////2dBsP//////l0Gw/////w5exaz/////a4xzsv//////l0Gw//////9nQbD/////k3Nzsv////9rjHOy//////9nQbD//////38ys/////9rjHOy/////5Nzc7L//////3//P/9//z//f/8//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/8//3//P/9//z//f/8//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f9SJ6gTUieoE1InqBNSJ6gT/f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3/phCr26YQq9umEKvbphCr2/3+M5/9/jOf/f4zn/3+M5/9/////f////3////9/////f/8//3//P/9//z//f/8//3//P/9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f////38AY/45AGP+OQBj/jkAY/45/3//P/9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f/9/////f////3////9///8BRv/iAUb/4gFG/+IBRv/i/3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3//P/9//z//f/8//3//P/9/4Mf/f+DH/3/gx/9/4Mf///9/////f////3////9/JdElUSXRJVHy5PJk8uTyZP///3////9/8uQMm/LkDJvZLtmu2S7Zrv8//7//P/+//7//P9mu2S7/v/8/2a7ZLgwb8mQMG/JkAAD/fwAA/38Mm/Lk2a4l0Qyb8uTZriXR/7//P/+//z8l0SVRJdElUfJk8uT/f///8mTy5P9////ZLiVR2S4lUQwb8mQMG/Jk2a4l0f+//7/ZriXR/7//v/JkDBslUdku8mQMGyVR2S4MGwybDBsMmwAA/38AAP9//z//P/8//z/ZLiVR2S4lUSXR2a4l0dmu/7//v/+//78AAP9/AAD/fwwbDJsMGwybDBvyZAwb8mTZLiVR2S4lUSVR2S7/P/8/JVHZLv8//z/y5PJk8uTyZP///3////9/8uQMm/LkDJsl0dmuJdHZrv9///8Mm/Lk/3///wyb8uQMmwwb/38AAAybDBv/fwAADBsMmwwbDJvZLtmu2S7ZrtkuJVHZLiVR/z//P/8//z//fwAA8mQMG/9/AADyZAwb2a7ZLgybDBvZrtkuDJsMGwAA/38AAP9/DBvyZAwb8mQlUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0SXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/////f////3/y5PJk8uTyZP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fyXRJVEl0SVR/7//P/+//z/Zrtku/7//P9mu2S7/v/8/8mQMG/9/AADyZAwb/38AAAybDBvZrtkuDJsMG9mu2S4lUdku8mQMGyVR2S7yZAwb8uTyZPLk8mQl0SVRJdElUf9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/3////9/////f////3///////3////9/////f////3//f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//P/8/JVHZLv8//z8lUdku2S7Zrtku2a4MGwybDBsMmyVRJdH/P/+/JVEl0f8//7/yZPLkJVEl0fJk8uQlUSXR/3////Jk8uT/f///8mTy5Ayb8uT/f///DJvy5P9/////P/+//z//v9ku2a7ZLtmu2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/v/+//7//vyXR2a4l0dmu////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("7Yh2ce2IQ44Rd3ZxEXdDjgt6jIl8gWeRC3pCmVSVQpnZkmeRfIGMiXaE2GOIe9hj+YL+UAV9/lDtiB2W7YjTpRF3HZYRd9Ol7Yj2vhF39r7tiEKZEXdCmdVUG7fVVEKZuGP2vppyQpmacva+BX3O5wV9Yd75gs7n+YJh3jUlXGQ1JXJRETdcZCMuclEpq0KZKasbt2SNQplGnPa+ZI32vhF33oURd0507Yjehe2ITnTJ2nJRydpcZNvRclHtyFxkdoQ8RYh7PEX5gikwBX0pMO2IG7cRdxu37YhCmRF3QpkRd9SaEXdlpxd01JoXdGWnHXEdocoaj5rKGkOD4U6PmuFOQ4Pni9d57YjXeeeLjnPtiI5zHXEdoRd01JoXdGWnEXdlpxF31JrhTtWOyhrVjuFOWIPKGliD4Y4doeeLZafni9Sa7YjUmu2IZacRd9d5F3TXeRF3jnMXdI5z54vXee2I13nni45z7YiOcxF313kXdNd5EXeOcxd0jnPtiGWn7YjUmueLZafni9Sa4Y4doTTlQ4M05Y+aHbFDgx2xj5o05ViDNOXVjh2xWIMdsdWOHZDRux2QzfLhb9G74W/N8vOFjInzhUKZgn6MiYJ+Z5GqakKZJW1nke2IZ5ERd2eR7YiMiRF3jIkRdxR07YgUdBF3aIbtiGiGEXf//xF3Ob/tiP//yXs5v+2IOb/tiDCCEXcwgu2IjnMRd45z7YiWEO2I/0URd5YQEXf/Re2IlcbtiKP9EXeVxhF3o/0Rd2xPEXeWEO2IbE/tiJYQAACEgtYUhIIAANGD1hTRg////YYo6/2G//+vhSjrr4Uo661///+tfyjr+oD///qAAACofgAAW33WFKh+1hRbfdYU/YYAAP2G1hSvhQAAr4X//7d7//8EfSjrt3so6wR9AACtf9YUrX8AAPqA1hT6gP//3nr//yt8KOveeijrK3zWFNGDAADRg9YUhIIAAISC//9bff//qH4o61t9KOuofgAABH0AALd71hQEfdYUt3so6xuF//8bhSjrkYf//5GH1hT6gAAA+oDWFK1/AACtf///+oAo6/qA//+tfyjrrX8o66+F//+vhSjr/Yb///2G1hRmhAAAZoTWFPCBAADwgQAAqH4AAFt91hSoftYUW30AAK+F1hSvhQAA/YbWFP2G///Rgyjr0YP//4SCKOuEgv//3nr//yt8KOveeijrK3wAACt8AADeetYUK3zWFN56KOuEgv//hIIo69GD///Rg9YUjoEAAI6B1hQYfwAAGH8AACt8AADeetYUK3zWFN56AAAEfQAAt3vWFAR91hS3e9YUkYcAAJGH1hQbhQAAG4X//7d7//8EfSjrt3so6wR9//9bff//qH4o61t9KOuofv//ZoQo62aE///wgSjr8IH//5GHKOuRh///G4Uo6xuFAAAbhdYUG4UAAJGH1hSRhxF3+3wdcft8EXdqcB1xanDhjml74Y6Jqu2IaXvtiImqHXFNyB1xxbjhjk3I4Y7FuAAAGH/WFBh/AACOgdYUjoEAADx/AADHfNYUPH/WFMd8AAC/fAAASXrWFL981hRJegAAmX0AACN71hSZfdYUI3sAAJl9AAAje9YUmX3WFCN7AADwgdYU8IEAAGaE1hRmhA1D+3wNQ9hjxVH7fMVR2GPhjvt87Yj7fOGOanDtiGpwvaD7fMOdjnO9oGpwF3RqcNuRjnPbkdd5w53XeRd0+3wAAL98AABJetYUv3zWFEl68bzYY/G8+3w5rthjOa77fB1xiaodcWl7EXeJqhF3aXsRd/t8HXH7fBF3anAdcWpw7YiJqu2IaXvhjomq4Y5peztijnM7Ytd5QV/7fOeL+3wjbtd554tqcEFfanAjbo5z4Y77fO2I+3zhjmpw7YhqcBF3aXsRd4mqHXFpex1xiaoAADx/AADHfNYUPH/WFMd8KOvwgf//8IEo62aE//9mhP//x3z//zx/KOvHfCjrPH///yN7//+ZfSjrI3so65l9//9Jev//v3wo60l6KOu/fP//SXr//798KOtJeijrv3wo6xh///8YfyjrjoH//46B//8je///mX0o6yN7KOuZff//x3z//zx/KOvHfCjrPH///46BKOuOgf//GH8o6xh/doQCdYh7AnV2hHJjiHtyY3aEcH2Ie3B9doTga4h74Gu4Y9hjKWsjVAps2GPCb/1bsaYjVBii/VvRpdhjI67YY3aEg3mIe4N5doS7cIh7u3CIe/idiHsiX3aE+J12hCJfRpzYY/ST2GPVlCNUPJD9W01ZI1TmXf1bLVrYY9tR2GN2hP1jdoQdmYh7/WOIex2ZdoQVcYh7FXF2hExoiHtMaO2InMARd5zA7Yh+nxF3fp/tiDaXEXc2l+2I7o4Rd+6O7YiLyhF3i8rtiN6YEXfemDWE3pjtiJFH7Yj9ZhF3kUcRd/1mXpCMidWUjIkjroyJQJ+tuAW9rbigb4yJ21GMib5grbj5Qq24/39lgMZ+OYA4gTmAW4K6f6N9un+ofO9+VoPvfhaE533oe+d9j4SzfG97s3y4hGl7Rntpe297HnqPhB566HvreBaE63iofOJ3VoPid1uCGHejfRh3xn6YdjiBmHb/f2124Y7N8uGO0bvPl83yz5fRux2Qr6Lhb6+iz5ePmi9oj5rhjkKZz5dDg+GOQ4MdcUKZL2hDgx1xQ4Phb6+iL2iPmh2Qr6LPl4+a4Y5Cmc+XQ4PhjkODHXFCmS9oQ4MdcUODL2jN8i9o0bsdcc3yHXHRu2pKjIl8QY5zakohauIOIWriDo5zfEEwguIOQpniDouPlLUhaoK+MIKUtYyJHPFCmRzxi4+Cvo5zHPEhahzxjnPhjoyJ7YiMieGO2GPtiCFqEXchah1x2GMdcYyJEXeMifSbjnP0m9d5TJWOc0yV13myao5zWnGOc7Jq13lacdd5HXFCmVCGE4LhjkKZu4cfgJ+I2X3hjrNrdoSSg0+Cg4T/f9aE7Yhpe5+I+Hi7h7J2UIa+dHaEP3NPgk5y/3/8ca99g4QdcbNrr31Ocoh7P3Oueb50Q3iydl93+HgRd2l7X3fZfUN4H4CueROCiHuSg4h7zucdcTvx4Y478XaEzud2hPTUiHv01B1xbE+Ie9OldoTTpXaEC512hA9gdoRHV4h7R1fhjmxPiHsLnYh7D2DhjkKZ7YhCmeGOjIntiIyJ4Y7N8uGOFvkdcc3yHXEW+Sjrs2so60KZt+PYYzTlQ4MdsUOD84VCmR2xQpm9oPt8vaBqcGpK2GMXdGpwF3T7fPOFjIlqSoyJNOVCmeGO9sMdcfbD4Y7auB1x2rjtiGxP7YhHVzWEbE81hEdXEXdsTxF3R1cRd/xxEXeydhF3aIbtiGiG7Yiydh1xbE8Rd0OOHXFDjuGOQ47hjmxP7YhDjkyVjnNMldd5pI6Oc6SO13kKZI5zsmqOcwpk13myatd54Y5DjuGO0bvtiB2WEXcdlhF3ibXtiIm1HXHRux1xQ47hTkKZ4U5Dgwt6QplBX/t8QV9qcAt6jInni/t8lLWMiZS12GPni2pwyhpDg0cc2GPWFLNryhpCmdYUQpkRd0KZHXFCmRF3jIkdcYyJ4Y6Knx1xip/hjthjHXHYY+IO2GPiDoqfAADYYwAAip8c8YqfHPHYY///ip///9hjHXGWEB1x4ADhjpYQ4Y7gAOGO4ADhjpYQHXHgAB1xlhAdcYqf7YhCmeGOip/hjthj7YiLj+2IjnMRd4uP7YghahF3IWoRd0KZHXHYYxF3jnMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8DUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hj"), -"format": 34896613399, -"index_count": 594, -"index_data": PackedByteArray("lQCTAJQAlACWAJUAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoQCfAKAAoACiAKEApQCjAKQApACmAKUAqQCnAKgAqACqAKkArQCrAKwArACuAK0AsQCvALAAsACyALEAtQCzALQAtAC2ALUAuQC3ALgAuAC6ALkAvQC7ALwAvAC+AL0AwQC/AMAAwADCAMEAxQDDAMQAxADGAMUAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0A0QDPANAA0ADSANEA1QDTANQA1ADWANUA2QDXANgA2ADaANkA3QDbANwA3ADeAN0A4QDfAOAA4ADiAOEA5QDjAOQA5ADmAOUA6QDnAOgA6ADqAOkA7QDrAOwA7ADuAO0A8QDvAPAA8ADyAPEA9QDzAPQA9AD2APUA+QD3APgA+AD6APkA/QD7APwA/AD+AP0AAQH/AAABAAECAQEBBQEDAQQBBAEGAQUBCQEHAQgBCAEKAQkBDQELAQwBDAEOAQ0BEQEPARABEAESAREBFQETARQBFAEWARUBGQEXARgBGAEaARkBHQEbARwBHAEeAR0BIQEfASABIAEiASEBJQEjASQBJAEmASUBKQEnASgBKAEqASkBLQErASwBLAEuAS0BMQEvATABMAEyATEBNQEzATQBNAE2ATUBOQE3ATgBOAE6ATkBPQE7ATwBPAE+AT0BPAE/AT4BPwFAAT4BQQE8ATsBOwFCAUEBQgFAAUEBQgE+AUABRQFDAUQBRAFGAUUBSQFHAUgBSAFKAUkBTQFLAUwBTAFOAU0BUQFPAVABUAFSAVEBVQFTAVQBVAFWAVUBWQFXAVgBWAFaAVkBWAFbAVoBWwFcAVoBXQFcAVcBVwFZAV0BXAFeAVcBXAFbAV4BYQFfAWABYAFiAWEBZQFjAWQBZAFmAWUBaQFnAWgBaAFqAWkBbQFrAWwBbAFuAW0BcQFvAXABcAFyAXEBdQFzAXQBdAF2AXUBeQF3AXgBeAF6AXkBfQF7AXwBfAF+AX0BgQF/AYABgAGCAYEBhQGDAYQBhAGGAYUBiQGHAYgBiAGKAYkBjQGLAYwBjAGOAY0BkQGPAZABkAGSAZEBlQGTAZQBlAGWAZUBmQGXAZgBmAGaAZkBmAGbAZoBmwGcAZoBmwGdAZwBmwGeAZ0BoQGfAaABoAGiAaEBpQGjAaQBpAGmAaUBqQGnAagBqAGqAakBqgGrAakBqgGsAasBrAGtAasBrQGuAasBsQGvAbABsAGyAbEBtQGzAbQBtAG2AbUBuQG3AbgBuAG6AbkBvQG7AbwBvAG+Ab0BwQG/AcABwAHCAcEBwgHDAcEBxgHEAcUBxQHHAcYBCADIAckByQEHAAgAyQHKAQcAygHLAQcAygHMAcsBzgHNAXUAdQB0AM4BdADPAc4BzwHQAc4B0wHRAdIB0gHUAdMB0gHVAdQB1QHWAdQB1gHXAdQB1gHYAdcB1gHZAdgB2QHaAdgB2QHbAdoB2wHcAdoB2wHdAdwB3QHeAdwB3gHfAdwB3gHgAd8B4AHhAd8B4AHiAeEB4gHjAeEB4gHkAeMB4gHlAeQB5QHmAeQB5gHnAeQB5gHoAecB"), -"material": SubResource("StandardMaterial3D_eh7gb"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(33.8583, 32.0782, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("/0/FV6pqVNX/T8VX84VU1f+vxVeqalTV/6/FV/OFVNX/r1d884VU1f+vDmqCflTV/6/FV/OFVNX/r8VXqmr/v/+vDmolbf+//69XfIJ+VNX/lxzUydr///9nHNTJ2v///4///8na////b///ydr///9PAABkjVTV/08AAEacVNX/rwAAZI1U1f+vAABGnFTV/08AAGSN////rwAAZI3///9PxVdkjf///6/FV2SN////r0kSKatU1f+vxVcpq1TV/68AAEacVNX/r8VXZI1U1f+vAABkjVTV/2///8naVNX/b///29FU1f+P///J2lTV/4///9vRVNX/lxzUydpU1f+P///J2lTV/5cc1O3IVNX/j///29FU1f9PxVcpq1TV/09JEimrVNX/T8VXZI1U1f9PAABGnFTV/08AAGSNVNX/TwAARpxoy/9PSRIpq2jL/68AAEacaMv/r0kSKatoy/9v///J2lTV/2cc1MnaVNX/b///29FU1f9nHNTtyFTV/2cc1O3IsvL/lxzU7ciy8v9v///b0bLy/4///9vRsvL/r0kSKav///9PSRIpq////6/FVymr////T8VXKav///+v6aDbkVTV/6/poMOdVNX/v+mg25FU1f+/6aDDnVTV/8/poM+XVNX//71UNOVU1f//+Io05VTV//+9VB2xVNX///iKHbFU1f8/6aDbkf///0/poNuR////P4qv25H///9Piq/bkf///y+Kr8+XVNX/P4qv25FU1f8/iq/DnVTV/0+Kr8OdVNX/T4qv25FU1Z/W00EdsVTVn9bTQTTlVNX//71UHbFU1f//vVQ05VTV/y/poM+XVNX/P+mgw51U1f8/6aDbkVTV/0/poNuRVNX/T+mgw51U1f9P6aDDnf///z/poMOd////T4qvw53///8/iq/Dnf///7/poMOd////r+mgw53///+/iq/Dnf///6+Kr8Od////r+mg25H///+/6aDbkf///6+Kr9uR////v4qv25H///+viq/DnVTV/6+Kr9uRVNX/v4qvw51U1f+/iq/bkVTV/8+Kr8+XVNUAAPiKNOVU1QAAvVQ05VTVAAD4ih2xVNUAAL1UHbFU1QAAvVQ05VTVXynTQTTlVNUAAL1UHbFU1V8p00EdsVTVXynTQR2xVNVfKdNBNOVU1Z/W00EdsVTVn9bTQTTlVNX/T1d884VU1f9PxVfzhVTV/09XfIJ+VNX/Tw5qgn5U1f9PxVeqav+//08OaiVt/7//Tw5qgn7///+vDmqCfv///09XfIJ+////r1d8gn7///9PDmolbVTV/68OaiVtVNX/Tw5qgn5U1f+vDmqCflTV/0/FV+IO0s//T1d8akrSz/+vxVfiDtLPXmlXfGpK0s//r1d8akrSz/9PeY18Qf///695jXxB////T4qvfEH///+viq98Qf///0+Kr+IOVNX/T4qvfEFU1f+viq/iDlTV/6+Kr3xBVNX/T3mNfEFP2/9PY27iDk/b/695jXxBT9v/r2Nu4g5P2/9Pe8VqSlTV/097xeIOVNX/r3vFakpU1f+ve8XiDlTVTnM0k///SspOczSTKOtKym15DJL//3fPbXkMkijrd8//f6aR//9U1f9/ppEo61TVkYYMkv//d8+RhgySKOt3z7CMTaco60rKsIxNp///SsrykXWlKOv8xfKRdaX///zFDG4Mlf///MUEanSX//+6wgxuDJUo6/zFBGp0lyjrusJteXaoKOt3z215dqj//3fP/3/bqCjrVNX/f9uo//9U1YOYQJr//7DA+pV0l///usKDmECaKOuwwPqVdJco67rCDG4Mlf///MUMbgyVKOv8xU5zNJP//0rKTnM0kyjrSsqDmEKg//+wwGGZQZ3///+/g5hCoCjrsMBhmUGdKOv/v05zTaco60rKTnNNp///SspteXaoKOt3z215dqj//3fP+pV0l///usLykQyV///8xfqVdJco67rC8pEMlSjr/MV7Z0Kg//+wwARqDqP//7rCe2dCoCjrsMAEag6jKOu6wpNzD4go63fPk3MPiP//d8//f0+HKOtU1f9/T4f//1TVDG51pSjr/MUMbnWl///8xU5zTaco60rKTnNNp///SsqwjDST//9KyrCMNJMo60rK8pEMlf///MXykQyVKOv8xf9/26go61TV/3/bqP//VNWRhnaoKOt3z5GGdqj//3fPa4wPiCjrd89rjA+I//93z/+XQIoo60rK/5dAiv//SsoEag6j//+6wgxudaX///zFBGoOoyjrusIMbnWlKOv8xW15DJL//3fPbXkMkijrd8//f6aR//9U1f9/ppEo61TVkYYMkv//d8+RhgySKOt3z7CMNJP//0rKsIw0kyjrSsphmUGd////v4OYQJr//7DAYZlBnSjr/7+DmECaKOuwwHtnQJr//7DAnWZBnf///797Z0CaKOuwwJ1mQZ0o6/+/kYZ2qCjrd8+Rhnao//93z7CMTaco60rKsIxNp///Ssr/l0CKKOtKyv+XQIr//0rK8KG9jSjr/MXwob2N///8xZ1mQZ3///+/e2dCoP//sMCdZkGdKOv/v3tnQqAo67DABGp0l///usJ7Z0Ca//+wwARqdJco67rCe2dAmijrsMD/f0+HKOtU1f9/T4f//1TVa4wPiCjrd89rjA+I//93z/qVDqP//7rCg5hCoP//sMD6lQ6jKOu6woOYQqAo67DA8pF1pf///MX6lQ6j//+6wvKRdaUo6/zF+pUOoyjrusL/Z0Gw//9Kyv9nQbAo60rKk3Nzsv//d8+Tc3OyKOt3z5Nzc7L//3fPk3Nzsijrd8//fzKz//9U1f9/MrMo61TV/38ys///VNX/fzKzKOtU1WuMc7L//3fPa4xzsijrd8//T5iZF3T/f/8vmJkXdP9//0/athd0/3//L9q2F3T/f/8v2rYXdP///y/atr2g////T9q2F3T///9P2ra9oP///y8c1PG8/7//LxzUOa7/v//PHNTxvP+//88c1Dmu/7//l0Gw//9Kyv+XQbAo60rK8KHFrP///MXwocWsKOv8xZGpOaj//7rC8KHFrP///MWRqTmoKOu6wvChxawo6/zFXK6Tl///sMD/r0Gd////v1yuk5co67DA/69BnSjr/79cru+i//+wwJGpOaj//7rCXK7voijrsMCRqTmoKOu6wpGpSJL//7rCXK6Tl///sMCRqUiSKOu6wlyuk5co67DAa4xzsv//d89rjHOyKOt3z/+XQbD//0rK/5dBsCjrSsr/z5iZ8bz/v//PHNTxvP+//8+YmTmu/7//zxzUOa7/v/8vmJm9oP///0+Ymb2g////L9q2vaD///9P2ra9oP///0+Ymb2g/7//T4qvw53/v/9P2ra9oP+//0/athd0/7//T4qv25H/v/9P6aDbkf+//0/poMOd/7//T5iZF3T/v/+vQZ3///+/XK7vov//sMD/r0GdKOv/v1yu76Io67DA/y8c1PG8/7//L5iZ8bz/v/8vHNQ5rv+//y+YmTmu/7//L5iZvaD/v/8vmJkXdP+//0+Ymb2g/7//T5iZF3T/v/+vmJm9oP///8+Ymb2g////r9q2vaD////P2ra9oP///6+Ymb2g/7//r5iZF3T/v//PmJm9oP+//8+YmRd0/7//r4qvw53/v/+v6aDDnf+//6+Ymb2g/7//r5iZF3T/v/+v6aDbkf+//6/athd0/7//r9q2vaD/v/+viq/bkf+//8+YmRd0/3//r5iZF3T/f//P2rYXdP9//6/athd0/3//r9q2F3T///+v2ra9oP///8/athd0////z9q2vaD///ChvY3///zFkalIkv//usLwob2NKOv8xZGpSJIo67rC/2dAiijrSsr/Z0CK//9KypNzD4go63fPk3MPiP//d89tVkiS//+6wg5evY3///zFbVZIkijrusIOXr2NKOv8xaJRk5f//7DAbVZIkv//usKiUZOXKOuwwG1WSJIo67rC/09Bnf///7+iUZOX//+wwP9PQZ0o6/+/olGTlyjrsMCiUe+i//+wwP9PQZ3///+/olHvoijrsMD/T0GdKOv/vw5evY0o6/zFDl69jf///MX/Z0CKKOtKyv9nQIr//0rKbVY5qP//usKiUe+i//+wwG1WOago67rColHvoijrsMAOXsWs///8xW1WOaj//7rCDl7FrCjr/MVtVjmoKOu6wg5exaz///zFDl7FrCjr/MX/Z0Gw//9Kyv9nQbAo60rK/5cc1Eac45L/ZxzURpzjkv+XrvjVlOOS/2eu+NWU45L/ZxzU21H///+XHNTbUf///2eu+E1Z////l674TVn///+XHNRGnP+//5eu+NWU/7//lxzU9JP/v/+XZeY8kP+//5eu+E1Z/7//l2Xm5l3/v/+XHNQtWv+//5cc1NtR/7//lxzULVrjkv9nHNQtWuOS/5dl5uZd45L/Z2Xm5l3jkv9nrvjVlP+//2eu+E1Z/7//l6741ZT/v/+XrvhNWf+//2cc1Eac/7//ZxzU9JP/v/9nrvjVlP+//2dl5jyQ/7//Z674TVn/v/9nZebmXf+//2cc1C1a/7//ZxzU21H/v/9nZebmXf///2dl5jyQ////l2Xm5l3///+XZeY8kP///2cc1PST////lxzU9JP///9nZeY8kP///5dl5jyQ////r6AOvmAbjf9PoA6+YBuN/6/FV6pqG43/T8VXqmobjf+vDmolbRuN/08OaiVtG43/r1d8oG8bjf9PV3ygbxuN/0+gDvlC////r6AO+UL///9PV3zbUf///69XfNtR//9eaVd821Hj8v9PoA75Qv///0+gDr5g////r6AO+UL///+voA6+YP///69XfKBv/7//r1d8KWv/v/+vV3zbUf+//6+gDr5g/7//r6AO+UL/v/9PV3ygb/+//09XfNtR/7//T6AOvmD/v/9PoA75Qv+//3+mkSjr/39teQySKOv/f5GGDJIo6/9/sIw0kyjr/39OczSTKOv/fwxuDJUo6/9/8pEMlSjr/3/6lXSXKOv/fwRqdJco6/9/g5hAmijr/397Z0CaKOv/f2GZQZ0o6/9/nWZBnSjr/397Z0KgKOv/f4OYQqAo6/9/BGoOoyjr/3/6lQ6jKOv/fwxudaUo6/9/8pF1pSjr/3+wjE2nKOv/f05zTaco6/9/bXl2qCjr/3+RhnaoKOv/f/9/26go6/9//8/4ijTlVNX/z/iKHbFU1f//+Io05VTV///4ih2xVNWf1tNBNOX//18p00E05f////+9VDTl//8AAL1UNOX////PxVc05f/////4ijTl////z/iKNOX///8vxVc05f//AAD4ijTl////L/iKNOX//5/W00Edsf////+9VB2x//9fKdNBHbH//wAAvVQdsf///y/FVx2x//8AAPiKHbH///8v+Iodsf///8/FVx2x//////iKHbH////P+Iodsf//AAD4ijTlVNUAAPiKHbFU1f8v+Io05VTV/y/4ih2xVNX/T1d8akpU1f9Piq98QVTV/097xWpKVNX/T3vF4g5U1f9Piq/iDlTV/095jXxBVNX/T8VX4g5U1f9PY27iDlTV/697xWpKVNX/r3mNfEFU1f+vV3xqSlTV/6/FV+IOVNX/r2Nu4g5U1f+viq98QVTV/697xeIOVNX/r4qv4g5U1f8vV3xqSv///09XfGpK////LxzUakr///9Pe8VqSv///697xWpK////zxzUakr////PV3xqSv///69XfGpK////L4qvz5f14P8v6aDPl/Xg/z+Kr9uR9eD/P+mg25H14P+/iq/DnWjL/8+Kr8+XaMv/v+mgw51oy//P6aDPl2jL/y/FVyjr///wob2NKOv////PxVco6///kalIkijr//9crpOXKOv////P08Eo6////5dAiijr//9rjA+IKOv///9/T4co6////69BnSjr//9cru+iKOv//5GpOago6///8KHFrCjr////l0GwKOv//2uMc7Io6////38ysyjr//+Tcw+IKOv///8v08Eo6///k3Nzsijr////Z0GwKOv//w5exawo6///bVY5qCjr//+iUe+iKOv///9PQZ0o6///olGTlyjr//9tVkiSKOv//w5evY0o6////2dAiijr////ZxzUydpU1f8vHNS341TV/88c1LfjVNX/lxzUydpU1f+XHNTtyFTV/2cc1O3IVNX/LxzUakpU1f9nHNRGnFTV/5cc1EacVNX/lxzU9JNU1f+XHNQtWlTV/5cc1NtRVNX/ZxzU21FU1f/PHNRqSlTV/2cc1PSTVNX/ZxzULVpU1f8vxVfzhf///0/FV/OF////L1d884X///9PV3zzhf///y/FVzTlVNX/L8VXKOtU1f/PxVc05VTV/8/FVyjrVNX/L9PBKOtU1f8vxVco61TV/y8c1LfjVNX/L/iKNOVU1f8v+IodsVTV/y/FV/OFVNX/L8VXHbFU1f8vmJm9oFTV/y/atr2gVNX/LxzUakpU1f8v2rYXdFTV/y+YmRd0VNX/L1d884VU1f8vV3xqSlTV/y/FVzTlVNX/z9PBKOv8xf8v08Eo6/zF/88c1Lfj/MX/LxzUt+P8xf9PV3xqSlTV/09XfNtRVNVeaVd8akpU1V5pV3zbUVTV/69XfGpKVNX/r1d821FU1f+vV3wpa1TV/69XfKBvVNX/r1d8gn5U1f9PV3yCflTV/09XfKBvVNX/z1d8akpU1f+vV3zzhVTV/89XfPOFVNX/L1d884VU1f8vV3xqSlTV/09XfPOFVNX/P4qvw51oy/8/6aDDnWjL/y+Kr8+XaMv/L+mgz5doy//Piq/Pl/Xg/7+Kr9uR9eD/z+mgz5f14P+/6aDbkfXg/y/FV/OFVNX/L8VXHbFU1f9PxVdkjVTV/6/FV2SNVNX/r8VXKatU1f9PxVcpq1TV/8/FVx2xVNX/z8VX84VU1f/PxVcdsVTV/8/4ih2xVNX/z8VX84VU1f/PmJm9oFTV/8/atr2gVNX/z1d884VU1f/PmJkXdFTV/89XfGpKVNX/zxzUakpU1f/P2rYXdFTV/8/4ijTlVNX/zxzUt+NU1f/P08Eo61TV/8/FVzTlVNX/z8VXKOtU1f+vxVfzhf///8/FV/OF////r1d884X////PV3zzhf///y8kSQAA////zyRJAAD///8vHNQAAP///88c1AAA////LxzU4g5U1f8vJEniDlTV/y8c1AAAVNX/LyRJAABU1f/PJEniDlTV/88c1OIOVNX/zyRJAABU1f/PHNQAAFTV/y8c1OIOVNX/LxzUAABU1f/PHNTiDlTV/88c1AAAVNX/LyRJAABU1f8vJEniDlTV/88kSQAAVNX/zyRJ4g5U1f8vJEniDv///6/FV+IO////zyRJ4g7////PHNTiDv///69jbuIO////r4qv4g7///9PY27iDv///697xeIO////T3vF4g7///9PxVfiDv///y8c1OIO////T4qv4g7///9/T4f/////k3MPiP////9rjA+I//////+XQIr/////a4wPiP////+Tcw+I//////9nQIr//////5dAiv////+Tcw+I//////ChvY3//////5dAiv//////Z0CK/////w5evY3/////8KG9jf//////Z0CK/////5GpSJL/////8KG9jf////8OXr2N//////9/ppH/////kalIkv////8OXr2N/////5GGDJL/////kalIkv//////f6aR/////7CMNJP/////kYYMkv////9crpOX/////5GpSJL/////sIw0k//////ykQyV/////1yuk5f/////sIw0k//////6lXSX/////1yuk5f/////8pEMlf////+DmECa/////1yuk5f/////+pV0l///////r0Gd/////1yuk5f/////g5hAmv////9hmUGd//////+vQZ3/////g5hAmv////9cru+i//////+vQZ3/////YZlBnf////+DmEKg/////1yu76L/////YZlBnf/////6lQ6j/////1yu76L/////g5hCoP////+RqTmo/////1yu76L/////+pUOo//////ykXWl/////5GpOaj/////+pUOo/////+wjE2n/////5GpOaj/////8pF1pf////+Rhnao/////5GpOaj/////sIxNp//////wocWs/////5GpOaj/////kYZ2qP//////f9uo//////Chxaz/////kYZ2qP////8OXr2N/////21WSJL//////3+mkf////9teQyS//////9/ppH/////bVZIkv////9OczST/////215DJL/////olGTl/////9OczST/////21WSJL/////DG4Mlf////9OczST/////6JRk5f/////BGp0l/////8MbgyV/////6JRk5f/////e2dAmv////8EanSX/////6JRk5f//////09Bnf////97Z0Ca/////6JRk5f/////nWZBnf////97Z0Ca//////9PQZ3/////e2dCoP////+dZkGd//////9PQZ3/////olHvov////97Z0Kg//////9PQZ3/////BGoOo/////97Z0Kg/////6JR76L/////bVY5qP////8Eag6j/////6JR76L/////DG51pf////8Eag6j/////21WOaj/////TnNNp/////8MbnWl/////21WOaj/////bXl2qP////9Oc02n/////21WOaj/////Dl7FrP////9teXao/////21WOaj//////3/bqP////9teXao/////w5exaz/////8KHFrP//////f9uo/////w5exaz//////5dBsP/////wocWs/////w5exaz//////2dBsP//////l0Gw/////w5exaz/////a4xzsv//////l0Gw//////9nQbD/////k3Nzsv////9rjHOy//////9nQbD//////38ys/////9rjHOy/////5Nzc7L/////AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f9iJ2AnYidgJ2InYCdiJ2An/f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3/YiSb22Ikm9tiJJvbYiSb2////f////3////9/////f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f////3//P/8//z//P/8//z//P/8/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///////9/////f////3////9/////f/9/////f////3////9/////P/+//z//v/8//7//P/+/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/l8RMIpfETCJ/zb8mf82/Jqqqqqqqqqqqv6Z/sr+mf7JnO7LdZzuy3QFG/+IBRv/i/bn/HKisVBb9uf8cqKxUFj9Zf00/WX9NVFVUVVRVVFVWjVHlVJZV01aNUeVUllXT/bn/HP25/xyXxEwil8RMIlFlqPL/f///UWWo8v9///+zXZhEs12YRD9Zf00/WX9NVJZV0/6cAMZUllXT/pwAxqhyrRqqaaksqHKtGqppqSx/Mj/ZfzI/2aoqVNWqKlTVAGP+OQBj/jmzXZhEs12YREuiZrtLoma7/pwAxv6cAMaqKlTVqipU1X8yP9l/Mj/ZP1l/TT9Zf02zXZhEs12YRKppqSwAY/45qmmpLABj/jl/zb8mf82/JlTVqipU1aoqv6Z/sr+mf7JLoma7S6Jmu/9///9WjVHl/3///1aNUeWtmlYN/38AAK2aVg3/fwAAfzI/2X8yP9lnO7LdZzuy3bNdmESzXZhEAGP+OQBj/jn/fwAAqHKtGv9/AACocq0aqKxUFq2aVg2orFQWrZpWDVRVVFVUVVRVP1l/TT9Zf01WU6rpUWWo8lZTqulRZajyAUb/4lZTqukBRv/iVlOq6UuiZrtLoma7v6Z/sr+mf7K/pn+yv6Z/sqqqqqqqqqqqVNWqKlTVqip/zb8mf82/Jv9/////f////3////9/////f/8//3//P/9//z//f/8/////f////3////9/////f5fETCKXxEwi/bn/HP25/xyorFQW/bn/HKisVBb9uf8cqHKtGv9/AACocq0a/38AAK2aVg2orFQWrZpWDaisVBaqaaksqHKtGqppqSyocq0af82/Jn/NvyaXxEwil8RMIv9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAArZpWDf9/AACtmlYN/3////9/////f////3///////3////9/////f////3//f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9//z//f/8//3//P/9//z8AY/45qmmpLABj/jmqaaksZzuy3Wc7st1/Mj/ZfzI/2VZTqukBRv/iVlOq6QFG/+JRZajyVlOq6VFlqPJWU6rp/3///1FlqPL/f///UWWo8laNUeX/f///Vo1R5f9///8BRv/iAUb/4mc7st1nO7LdVJZV01aNUeVUllXTVo1R5f6cAMZUllXT/pwAxlSWVdP+nADG/pwAxkuiZrtLoma7////f////3////9/////f/9/jOf/f4zn/3+M5/9/jOf/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f/8//3//P/9//z//f/8/cZj//3GY//9xmP//cZj//wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38f7v9/H+7/fx/u/38f7v///3//f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("7Yh2ce2IQ44Rd3ZxEXdDjgt6jIl8gWeRC3pCmVSVQpnZkmeRfIGMiXaE2GOIe9hj+YL+UAV9/lDtiB2W7YjTpRF3HZYRd9Ol7Yj2vhF39r7tiEKZEXdCmdVUG7fVVEKZuGP2vppyQpmacva+BX3O5wV9Yd75gs7n+YJh3jUlXGQ1JXJRETdcZCMuclEpq0KZKasbt2SNQplGnPa+ZI32vhF33oURd0507Yjehe2ITnTJ2nJRydpcZNvRclHtyFxkdoQ8RYh7PEX5gikwBX0pMO2IG7cRdxu37YhCmRF3QpkRd9SaEXdlpxd01JoXdGWnHXEdocoaj5rKGkOD4U6PmuFOQ4Pni9d57YjXeeeLjnPtiI5zHXEdoRd01JoXdGWnEXdlpxF31JrhTtWOyhrVjuFOWIPKGliD4Y4doeeLZafni9Sa7YjUmu2IZacRd9d5F3TXeRF3jnMXdI5z54vXee2I13nni45z7YiOcxF313kXdNd5EXeOcxd0jnPtiGWn7YjUmueLZafni9Sa4Y4doTTlQ4M05Y+aHbFDgx2xj5o05ViDNOXVjh2xWIMdsdWOHZDRux2QzfLhb9G74W/N8vOFjInzhUKZgn6MiYJ+Z5GqakKZJW1nke2IZ5ERd2eR7YiMiRF3jIkRdxR07YgUdBF3aIbtiGiGEXf//xF3Ob/tiP//yXs5v+2IOb/tiDCCEXcwgu2IjnMRd45z7YiWEO2I/0URd5YQEXf/Re2IlcbtiKP9EXeVxhF3o/0Rd2xPEXeWEO2IbE/tiJYQAACEgtYUhIIAANGD1hTRg////YYo6/2G//+vhSjrr4Uo661///+tfyjr+oD///qAAACofgAAW33WFKh+1hRbfdYU/YYAAP2G1hSvhQAAr4X//7d7//8EfSjrt3so6wR9AACtf9YUrX8AAPqA1hT6gP//3nr//yt8KOveeijrK3zWFNGDAADRg9YUhIIAAISC//9bff//qH4o61t9KOuofgAABH0AALd71hQEfdYUt3so6xuF//8bhSjrkYf//5GH1hT6gAAA+oDWFK1/AACtf///+oAo6/qA//+tfyjrrX8o66+F//+vhSjr/Yb///2G1hRmhAAAZoTWFPCBAADwgQAAqH4AAFt91hSoftYUW30AAK+F1hSvhQAA/YbWFP2G///Rgyjr0YP//4SCKOuEgv//3nr//yt8KOveeijrK3wAACt8AADeetYUK3zWFN56KOuEgv//hIIo69GD///Rg9YUjoEAAI6B1hQYfwAAGH8AACt8AADeetYUK3zWFN56AAAEfQAAt3vWFAR91hS3e9YUkYcAAJGH1hQbhQAAG4X//7d7//8EfSjrt3so6wR9//9bff//qH4o61t9KOuofv//ZoQo62aE///wgSjr8IH//5GHKOuRh///G4Uo6xuFAAAbhdYUG4UAAJGH1hSRhxF3+3wdcft8EXdqcB1xanDhjml74Y6Jqu2IaXvtiImqHXFNyB1xxbjhjk3I4Y7FuAAAGH/WFBh/AACOgdYUjoEAADx/AADHfNYUPH/WFMd8AAC/fAAASXrWFL981hRJegAAmX0AACN71hSZfdYUI3sAAJl9AAAje9YUmX3WFCN7AADwgdYU8IEAAGaE1hRmhA1D+3wNQ9hjxVH7fMVR2GPhjvt87Yj7fOGOanDtiGpwvaD7fMOdjnO9oGpwF3RqcNuRjnPbkdd5w53XeRd0+3wAAL98AABJetYUv3zWFEl68bzYY/G8+3w5rthjOa77fB1xiaodcWl7EXeJqhF3aXsRd/t8HXH7fBF3anAdcWpw7YiJqu2IaXvhjomq4Y5peztijnM7Ytd5QV/7fOeL+3wjbtd554tqcEFfanAjbo5z4Y77fO2I+3zhjmpw7YhqcBF3aXsRd4mqHXFpex1xiaoAADx/AADHfNYUPH/WFMd8KOvwgf//8IEo62aE//9mhP//x3z//zx/KOvHfCjrPH///yN7//+ZfSjrI3so65l9//9Jev//v3wo60l6KOu/fP//SXr//798KOtJeijrv3wo6xh///8YfyjrjoH//46B//8je///mX0o6yN7KOuZff//x3z//zx/KOvHfCjrPH///46BKOuOgf//GH8o6xh/doQCdYh7AnV2hHJjiHtyY3aEcH2Ie3B9doTga4h74Gu4Y9hjKWsjVAps2GPCb/1bsaYjVBii/VvRpdhjI67YY3aEg3mIe4N5doS7cIh7u3CIe/idiHsiX3aE+J12hCJfRpzYY/ST2GPVlCNUPJD9W01ZI1TmXf1bLVrYY9tR2GN2hP1jdoQdmYh7/WOIex2ZdoQVcYh7FXF2hExoiHtMaO2InMARd5zA7Yh+nxF3fp/tiDaXEXc2l+2I7o4Rd+6O7YiLyhF3i8rtiN6YEXfemDWE3pjtiJFH7Yj9ZhF3kUcRd/1mXpCMidWUjIkjroyJQJ+tuAW9rbigb4yJ21GMib5grbj5Qq24/39lgMZ+OYA4gTmAW4K6f6N9un+ofO9+VoPvfhaE533oe+d9j4SzfG97s3y4hGl7Rntpe297HnqPhB566HvreBaE63iofOJ3VoPid1uCGHejfRh3xn6YdjiBmHb/f2124Y7N8uGO0bvPl83yz5fRux2Qr6Lhb6+iz5ePmi9oj5rhjkKZz5dDg+GOQ4MdcUKZL2hDgx1xQ4Phb6+iL2iPmh2Qr6LPl4+a4Y5Cmc+XQ4PhjkODHXFCmS9oQ4MdcUODL2jN8i9o0bsdcc3yHXHRu2pKjIl8QY5zakohauIOIWriDo5zfEEwguIOQpniDouPlLUhaoK+MIKUtYyJHPFCmRzxi4+Cvo5zHPEhahzxjnPhjoyJ7YiMieGO2GPtiCFqEXchah1x2GMdcYyJEXeMifSbjnP0m9d5TJWOc0yV13myao5zWnGOc7Jq13lacdd5HXFCmVCGE4LhjkKZu4cfgJ+I2X3hjrNrdoSSg0+Cg4T/f9aE7Yhpe5+I+Hi7h7J2UIa+dHaEP3NPgk5y/3/8ca99g4QdcbNrr31Ocoh7P3Oueb50Q3iydl93+HgRd2l7X3fZfUN4H4CueROCiHuSg4h7zucdcTvx4Y478XaEzud2hPTUiHv01B1xbE+Ie9OldoTTpXaEC512hA9gdoRHV4h7R1fhjmxPiHsLnYh7D2DhjkKZ7YhCmeGOjIntiIyJ4Y7N8uGOFvkdcc3yHXEW+Sjrs2so60KZt+PYYzTlQ4MdsUOD84VCmR2xQpm9oPt8vaBqcGpK2GMXdGpwF3T7fPOFjIlqSoyJNOVCmeGO9sMdcfbD4Y7auB1x2rjtiGxP7YhHVzWEbE81hEdXEXdsTxF3R1cRd/xxEXeydhF3aIbtiGiG7Yiydh1xbE8Rd0OOHXFDjuGOQ47hjmxP7YhDjkyVjnNMldd5pI6Oc6SO13kKZI5zsmqOcwpk13myatd54Y5DjuGO0bvtiB2WEXcdlhF3ibXtiIm1HXHRux1xQ47hTkKZ4U5Dgwt6QplBX/t8QV9qcAt6jInni/t8lLWMiZS12GPni2pwyhpDg0cc2GPWFLNryhpCmdYUQpkRd0KZHXFCmRF3jIkdcYyJ4Y6Knx1xip/hjthjHXHYY+IO2GPiDoqfAADYYwAAip8c8YqfHPHYY///ip///9hjHXGWEB1x4ADhjpYQ4Y7gAOGO4ADhjpYQHXHgAB1xlhAdcYqf7YhCmeGOip/hjthj7YiLj+2IjnMRd4uP7YghahF3IWoRd0KZHXHYYxF3jnMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8DUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hj"), -"format": 34896613399, -"index_count": 96, -"index_data": PackedByteArray("6wHpAeoB6gHsAesB7wHtAe4B7gHwAe8B8AHxAe8B8QHyAe8B8QHzAfIB9AHxAfAB8AH1AfQB9QH2AfQB+QH3AfgB+AH6AfkB+AH7AfoB+wH8AfoB+wH9AfwB/gH7AfgB+AH/Af4B/wEAAv4BAwIBAgICAgIEAgMCBwIFAgYCBgIIAgcCBgIJAggCCgIGAgUCBQILAgoCCwIMAgoCDwINAg4CDgIQAg8CDgIRAhACEgIOAg0CDQITAhICEwIUAhIC"), -"material": SubResource("StandardMaterial3D_wgg5d"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(33.8583, 32.0782, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("/0/FV6pqVNX/T8VX84VU1f+vxVeqalTV/6/FV/OFVNX/r1d884VU1f+vDmqCflTV/6/FV/OFVNX/r8VXqmpU1f+vDmolbVTV/69XfIJ+VNX/lxzUydr///9nHNTJ2v///4///8na////b///ydr///9PAABkjVTV/08AAEacVNX/rwAAZI1U1f+vAABGnFTV/08AAGSN////rwAAZI3///9PxVdkjf///6/FV2SN////r0kSKatU1f+vxVcpq1TV/68AAEacVNX/r8VXZI1U1f+vAABkjVTV/2///8naVNX/b///29FU1f+P///J2lTV/4///9vRVNX/lxzUydpU1f+P///J2lTV/5cc1O3IVNX/j///29FU1f9PxVcpq1TV/09JEimrVNX/T8VXZI1U1f9PAABGnFTV/08AAGSNVNX/TwAARpxoy/9PSRIpq2jL/68AAEacaMv/r0kSKatoy/9v///J2lTV/2cc1MnaVNX/b///29FU1f9nHNTtyFTV/2cc1O3IsvL/lxzU7ciy8v9v///b0bLy/4///9vRsvL/r0kSKav///9PSRIpq////6/FVymr////T8VXKav///+v6aDbkVTV/6/poMOdVNX/v+mg25FU1f+/6aDDnVTV/8/poM+XVNX//71UNOVU1f//+Io05VTV//+9VB2xVNX///iKHbFU1f8/6aDbkf///0/poNuR////P4qv25H///9Piq/bkf///y+Kr8+XVNX/P4qv25FU1f8/iq/DnVTV/0+Kr8OdVNX/T4qv25FU1Z/W00EdsVTVn9bTQTTlVNX//71UHbFU1f//vVQ05VTV/y/poM+XVNX/P+mgw51U1f8/6aDbkVTV/0/poNuRVNX/T+mgw51U1f9P6aDDnf///z/poMOd////T4qvw53///8/iq/Dnf///7/poMOd////r+mgw53///+/iq/Dnf///6+Kr8Od////r+mg25H///+/6aDbkf///6+Kr9uR////v4qv25H///+viq/DnVTV/6+Kr9uRVNX/v4qvw51U1f+/iq/bkVTV/8+Kr8+XVNUAAPiKNOVU1QAAvVQ05VTVAAD4ih2xVNUAAL1UHbFU1QAAvVQ05VTVXynTQTTlVNUAAL1UHbFU1V8p00EdsVTVXynTQR2xVNVfKdNBNOVU1Z/W00EdsVTVn9bTQTTlVNX/T1d884VU1f9PxVfzhVTV/09XfIJ+VNX/Tw5qgn5U1f9PxVeqalTV/08OaiVtVNX/Tw5qgn7///+vDmqCfv///09XfIJ+////r1d8gn7///9PDmolbVTV/68OaiVtVNX/Tw5qgn5U1f+vDmqCflTV/0/FV+IO0s//T1d8akrSz/+vxVfiDtLPXmlXfGpK0s//r1d8akrSz/9PeY18Qf///695jXxB////T4qvfEH///+viq98Qf///0+Kr+IOVNX/T4qvfEFU1f+viq/iDlTV/6+Kr3xBVNX/T3mNfEFP2/9PY27iDk/b/695jXxBT9v/r2Nu4g5P2/9Pe8VqSlTV/097xeIOVNX/r3vFakpU1f+ve8XiDlTVTnM0k///VNVOczSTKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMTaco61TVsIxNp///VNXykXWlKOtU1fKRdaX//1TVDG4Mlf//VNUEanSX//9U1QxuDJUo61TVBGp0lyjrVNVteXaoKOtU1W15dqj//1TV/3/bqCjrVNX/f9uo//9U1YOYQJr//1TV+pV0l///VNWDmECaKOtU1fqVdJco61TVDG4Mlf//VNUMbgyVKOtU1U5zNJP//1TVTnM0kyjrVNWDmEKg//9U1WGZQZ3//1TVg5hCoCjrVNVhmUGdKOtU1U5zTaco61TVTnNNp///VNVteXaoKOtU1W15dqj//1TV+pV0l///VNXykQyV//9U1fqVdJco61TV8pEMlSjrVNV7Z0Kg//9U1QRqDqP//1TVe2dCoCjrVNUEag6jKOtU1ZNzD4go61TVk3MPiP//VNX/f0+HKOtU1f9/T4f//1TVDG51pSjrVNUMbnWl//9U1U5zTaco61TVTnNNp///VNWwjDST//9U1bCMNJMo61TV8pEMlf//VNXykQyVKOtU1f9/26go61TV/3/bqP//VNWRhnaoKOtU1ZGGdqj//1TVa4wPiCjrVNVrjA+I//9U1f+XQIoo61TV/5dAiv//VNUEag6j//9U1QxudaX//1TVBGoOoyjrVNUMbnWlKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMNJP//1TVsIw0kyjrVNVhmUGd//9U1YOYQJr//1TVYZlBnSjrVNWDmECaKOtU1XtnQJr//1TVnWZBnf//VNV7Z0CaKOtU1Z1mQZ0o61TVkYZ2qCjrVNWRhnao//9U1bCMTaco61TVsIxNp///VNX/l0CKKOtU1f+XQIr//1TV8KG9jSjrVNXwob2N//9U1Z1mQZ3//1TVe2dCoP//VNWdZkGdKOtU1XtnQqAo61TVBGp0l///VNV7Z0Ca//9U1QRqdJco61TVe2dAmijrVNX/f0+HKOtU1f9/T4f//1TVa4wPiCjrVNVrjA+I//9U1fqVDqP//1TVg5hCoP//VNX6lQ6jKOtU1YOYQqAo61TV8pF1pf//VNX6lQ6j//9U1fKRdaUo61TV+pUOoyjrVNX/Z0Gw//9U1f9nQbAo61TVk3Nzsv//VNWTc3OyKOtU1ZNzc7L//1TVk3NzsijrVNX/fzKz//9U1f9/MrMo61TV/38ys///VNX/fzKzKOtU1WuMc7L//1TVa4xzsijrVNX/T5iZF3T///8vmJkXdP///0/athd0////L9q2F3T///8v2rYXdFTV/y/atr2gVNX/T9q2F3RU1f9P2ra9oFTV/y8c1PG8VNX/LxzUOa5U1f/PHNTxvFTV/88c1DmuVNX/l0Gw//9U1f+XQbAo61TV8KHFrP//VNXwocWsKOtU1ZGpOaj//1TV8KHFrP//VNWRqTmoKOtU1fChxawo61TVXK6Tl///VNX/r0Gd//9U1Vyuk5co61TV/69BnSjrVNVcru+i//9U1ZGpOaj//1TVXK7voijrVNWRqTmoKOtU1ZGpSJL//1TVXK6Tl///VNWRqUiSKOtU1Vyuk5co61TVa4xzsv//VNVrjHOyKOtU1f+XQbD//1TV/5dBsCjrVNX/z5iZ8bxU1f/PHNTxvFTV/8+YmTmuVNX/zxzUOa5U1f8vmJm9oP///0+Ymb2g////L9q2vaD///9P2ra9oP///0+Ymb2gVNX/T4qvw51U1f9P2ra9oFTV/0/athd0VNX/T4qv25FU1f9P6aDbkVTV/0/poMOdVNX/T5iZF3RU1f+vQZ3//1TVXK7vov//VNX/r0GdKOtU1Vyu76Io61TV/y8c1PG8VNX/L5iZ8bxU1f8vHNQ5rlTV/y+YmTmuVNX/L5iZvaBU1f8vmJkXdFTV/0+Ymb2gVNX/T5iZF3RU1f+vmJm9oP///8+Ymb2g////r9q2vaD////P2ra9oP///6+Ymb2gVNX/r5iZF3RU1f/PmJm9oFTV/8+YmRd0VNX/r4qvw51U1f+v6aDDnVTV/6+Ymb2gVNX/r5iZF3RU1f+v6aDbkVTV/6/athd0VNX/r9q2vaBU1f+viq/bkVTV/8+YmRd0////r5iZF3T////P2rYXdP///6/athd0////r9q2F3RU1f+v2ra9oFTV/8/athd0VNX/z9q2vaBU1fChvY3//1TVkalIkv//VNXwob2NKOtU1ZGpSJIo61TV/2dAiijrVNX/Z0CK//9U1ZNzD4go61TVk3MPiP//VNVtVkiS//9U1Q5evY3//1TVbVZIkijrVNUOXr2NKOtU1aJRk5f//1TVbVZIkv//VNWiUZOXKOtU1W1WSJIo61TV/09Bnf//VNWiUZOX//9U1f9PQZ0o61TVolGTlyjrVNWiUe+i//9U1f9PQZ3//1TVolHvoijrVNX/T0GdKOtU1Q5evY0o61TVDl69jf//VNX/Z0CKKOtU1f9nQIr//1TVbVY5qP//VNWiUe+i//9U1W1WOago61TVolHvoijrVNUOXsWs//9U1W1WOaj//1TVDl7FrCjrVNVtVjmoKOtU1Q5exaz//1TVDl7FrCjrVNX/Z0Gw//9U1f9nQbAo61TV/5cc1EacJsL/ZxzURpwmwv+XrvjVlCbC/2eu+NWUJsL/ZxzU21Gy8v+XHNTbUbLy/2eu+E1ZsvL/l674TVmy8v+XHNRGnFTV/5eu+NWUVNX/lxzU9JNU1f+XZeY8kFTV/5eu+E1ZVNX/l2Xm5l1U1f+XHNQtWlTV/5cc1NtRVNX/lxzULVomwv9nHNQtWibC/5dl5uZdJsL/Z2Xm5l0mwv9nrvjVlFTV/2eu+E1ZVNX/l6741ZRU1f+XrvhNWVTV/2cc1EacVNX/ZxzU9JNU1f9nrvjVlFTV/2dl5jyQVNX/Z674TVlU1f9nZebmXVTV/2cc1C1aVNX/ZxzU21FU1f9nZebmXVTV/2dl5jyQVNX/l2Xm5l1U1f+XZeY8kFTV/2cc1PSTsvL/lxzU9JOy8v9nZeY8kLLy/5dl5jyQsvL/r6AOvmAKwf9PoA6+YArB/6/FV6pqCsH/T8VXqmoKwf+vDmolbQrB/08OaiVtCsH/r1d8oG8Kwf9PV3ygbwrB/0+gDvlCv/b/r6AO+UK/9v9PV3zbUb/2/69XfNtRv/ZeaVd821G/9v9PoA75QlTV/0+gDr5gVNX/r6AO+UJU1f+voA6+YFTV/69XfKBvVNX/r1d8KWtU1f+vV3zbUVTV/6+gDr5gVNX/r6AO+UJU1f9PV3ygb1TV/09XfNtRVNX/T6AOvmBU1f9PoA75QlTV/3+mkSjr//9teQySKOv//5GGDJIo6///sIw0kyjr//9OczSTKOv//wxuDJUo6///8pEMlSjr///6lXSXKOv//wRqdJco6///g5hAmijr//97Z0CaKOv//2GZQZ0o6///nWZBnSjr//97Z0KgKOv//4OYQqAo6///BGoOoyjr///6lQ6jKOv//wxudaUo6///8pF1pSjr//+wjE2nKOv//05zTaco6///bXl2qCjr//+RhnaoKOv///9/26go6////8/4ijTl/7//z/iKHbH/v///+Io05f+////4ih2x/7+f1tNBNOX/f18p00E05f9///+9VDTl/38AAL1UNOX/f//PxVc05f9////4ijTl/3//z/iKNOX/f/8vxVc05f9/AAD4ijTl/3//L/iKNOX/f5/W00Edsf////+9VB2x//9fKdNBHbH//wAAvVQdsf///y/FVx2x//8AAPiKHbH///8v+Iodsf///8/FVx2x//////iKHbH////P+Iodsf//AAD4ijTl/78AAPiKHbH/v/8v+Io05f+//y/4ih2x/7//T1d8akr/v/9Piq98Qf+//097xWpK/7//T3vF4g7/v/9Piq/iDv+//095jXxB/7//T8VX4g7/v/9PY27iDv+//697xWpK/7//r3mNfEH/v/+vV3xqSv+//6/FV+IO/7//r2Nu4g7/v/+viq98Qf+//697xeIO/7//r4qv4g7/v/8vV3xqSv///09XfGpK////LxzUakr///9Pe8VqSv///697xWpK////zxzUakr////PV3xqSv///69XfGpK////L4qvz5f14P8v6aDPl/Xg/z+Kr9uR9eD/P+mg25H14P+/iq/DnWjL/8+Kr8+XaMv/v+mgw51oy//P6aDPl2jL/y/FVyjr///wob2NKOv////PxVco6///kalIkijr//9crpOXKOv////P08Eo6////5dAiijr//9rjA+IKOv///9/T4co6////69BnSjr//9cru+iKOv//5GpOago6///8KHFrCjr////l0GwKOv//2uMc7Io6////38ysyjr//+Tcw+IKOv///8v08Eo6///k3Nzsijr////Z0GwKOv//w5exawo6///bVY5qCjr//+iUe+iKOv///9PQZ0o6///olGTlyjr//9tVkiSKOv//w5evY0o6////2dAiijr////ZxzUydpU1f8vHNS341TV/88c1LfjVNX/lxzUydpU1f+XHNTtyFTV/2cc1O3IVNX/LxzUakpU1f9nHNRGnFTV/5cc1EacVNX/lxzU9JNU1f+XHNQtWlTV/5cc1NtRVNX/ZxzU21FU1f/PHNRqSlTV/2cc1PSTVNX/ZxzULVpU1f8vxVfzhf///0/FV/OF////L1d884X///9PV3zzhf///y/FVzTlVNX/L8VXKOtU1f/PxVc05VTV/8/FVyjrVNX/L9PBKOtU1f8vxVco61TV/y8c1LfjVNX/L/iKNOVU1f8v+IodsVTV/y/FV/OFVNX/L8VXHbFU1f8vmJm9oFTV/y/atr2gVNX/LxzUakpU1f8v2rYXdFTV/y+YmRd0VNX/L1d884VU1f8vV3xqSlTV/y/FVzTlVNX/z9PBKOv8xf8v08Eo6/zF/88c1Lfj/MX/LxzUt+P8xf9PV3xqSlTV/09XfNtRVNVeaVd8akpU1V5pV3zbUVTV/69XfGpKVNX/r1d821FU1f+vV3wpa1TV/69XfKBvVNX/r1d8gn5U1f9PV3yCflTV/09XfKBvVNX/z1d8akpU1f+vV3zzhVTV/89XfPOFVNX/L1d884VU1f8vV3xqSlTV/09XfPOFVNX/P4qvw51oy/8/6aDDnWjL/y+Kr8+XaMv/L+mgz5doy//Piq/Pl/Xg/7+Kr9uR9eD/z+mgz5f14P+/6aDbkfXg/y/FV/OFVNX/L8VXHbFU1f9PxVdkjVTV/6/FV2SNVNX/r8VXKatU1f9PxVcpq1TV/8/FVx2xVNX/z8VX84VU1f/PxVcdsVTV/8/4ih2xVNX/z8VX84VU1f/PmJm9oFTV/8/atr2gVNX/z1d884VU1f/PmJkXdFTV/89XfGpKVNX/zxzUakpU1f/P2rYXdFTV/8/4ijTlVNX/zxzUt+NU1f/P08Eo61TV/8/FVzTlVNX/z8VXKOtU1f+vxVfzhf///8/FV/OF////r1d884X////PV3zzhf///y8kSQAA////zyRJAAD///8vHNQAAP///88c1AAA////LxzU4g5U1f8vJEniDlTV/y8c1AAAVNX/LyRJAABU1f/PJEniDlTV/88c1OIOVNX/zyRJAABU1f/PHNQAAFTV/y8c1OIOVNX/LxzUAABU1f/PHNTiDlTV/88c1AAAVNX/LyRJAABU1f8vJEniDlTV/88kSQAAVNX/zyRJ4g5U1f8vJEniDv///6/FV+IO////zyRJ4g7////PHNTiDv///69jbuIO////r4qv4g7///9PY27iDv///697xeIO////T3vF4g7///9PxVfiDv///y8c1OIO////T4qv4g7///9/T4f/////k3MPiP////9rjA+I//////+XQIr/////a4wPiP////+Tcw+I//////9nQIr//////5dAiv////+Tcw+I//////ChvY3//////5dAiv//////Z0CK/////w5evY3/////8KG9jf//////Z0CK/////5GpSJL/////8KG9jf////8OXr2N//////9/ppH/////kalIkv////8OXr2N/////5GGDJL/////kalIkv//////f6aR/////7CMNJP/////kYYMkv////9crpOX/////5GpSJL/////sIw0k//////ykQyV/////1yuk5f/////sIw0k//////6lXSX/////1yuk5f/////8pEMlf////+DmECa/////1yuk5f/////+pV0l///////r0Gd/////1yuk5f/////g5hAmv////9hmUGd//////+vQZ3/////g5hAmv////9cru+i//////+vQZ3/////YZlBnf////+DmEKg/////1yu76L/////YZlBnf/////6lQ6j/////1yu76L/////g5hCoP////+RqTmo/////1yu76L/////+pUOo//////ykXWl/////5GpOaj/////+pUOo/////+wjE2n/////5GpOaj/////8pF1pf////+Rhnao/////5GpOaj/////sIxNp//////wocWs/////5GpOaj/////kYZ2qP//////f9uo//////Chxaz/////kYZ2qP////8OXr2N/////21WSJL//////3+mkf////9teQyS//////9/ppH/////bVZIkv////9OczST/////215DJL/////olGTl/////9OczST/////21WSJL/////DG4Mlf////9OczST/////6JRk5f/////BGp0l/////8MbgyV/////6JRk5f/////e2dAmv////8EanSX/////6JRk5f//////09Bnf////97Z0Ca/////6JRk5f/////nWZBnf////97Z0Ca//////9PQZ3/////e2dCoP////+dZkGd//////9PQZ3/////olHvov////97Z0Kg//////9PQZ3/////BGoOo/////97Z0Kg/////6JR76L/////bVY5qP////8Eag6j/////6JR76L/////DG51pf////8Eag6j/////21WOaj/////TnNNp/////8MbnWl/////21WOaj/////bXl2qP////9Oc02n/////21WOaj/////Dl7FrP////9teXao/////21WOaj//////3/bqP////9teXao/////w5exaz/////8KHFrP//////f9uo/////w5exaz//////5dBsP/////wocWs/////w5exaz//////2dBsP//////l0Gw/////w5exaz/////a4xzsv//////l0Gw//////9nQbD/////k3Nzsv////9rjHOy//////9nQbD//////38ys/////9rjHOy/////5Nzc7L/////AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f9iJ2AnYidgJ2InYCdiJ2An/f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3/YiSb22Ikm9tiJJvbYiSb2////f////3////9/////f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f////3//P/8//z//P/8//z//P/8/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///////9/////f////3////9/////f/9/////f////3////9/////P/+//z//v/8//7//P/+/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/JdElUSXRJVHy5PJk8uTyZP///3////9/8uQMm/LkDJvZLtmu2S7Zrv8//7//P/+//7//P9mu2S7/v/8/2a7ZLgwb8mQMG/JkAAD/fwAA/38Mm/Lk2a4l0Qyb8uTZriXR/7//P/+//z8l0SVRJdElUfJk8uT/f///8mTy5P9////ZLiVR2S4lUQwb8mQMG/Jk2a4l0f+//7/ZriXR/7//v/JkDBslUdku8mQMGyVR2S4MGwybDBsMmwAA/38AAP9//z//P/8//z/ZLiVR2S4lUSXR2a4l0dmu/7//v/+//78AAP9/AAD/fwwbDJsMGwybDBvyZAwb8mTZLiVR2S4lUSVR2S7/P/8/JVHZLv8//z/y5PJk8uTyZP///3////9/8uQMm/LkDJsl0dmuJdHZrv9///8Mm/Lk/3///wyb8uQMmwwb/38AAAybDBv/fwAADBsMmwwbDJvZLtmu2S7ZrtkuJVHZLiVR/z//P/8//z//fwAA8mQMG/9/AADyZAwb2a7ZLgybDBvZrtkuDJsMGwAA/38AAP9/DBvyZAwb8mQlUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0SXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/////f////3/y5PJk8uTyZP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fyXRJVEl0SVR/7//P/+//z/Zrtku/7//P9mu2S7/v/8/8mQMG/9/AADyZAwb/38AAAybDBvZrtkuDJsMG9mu2S4lUdku8mQMGyVR2S7yZAwb8uTyZPLk8mQl0SVRJdElUf9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/3////9/////f////3///////3////9/////f////3//f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//P/8/JVHZLv8//z8lUdku2S7Zrtku2a4MGwybDBsMmyVRJdH/P/+/JVEl0f8//7/yZPLkJVEl0fJk8uQlUSXR/3////Jk8uT/f///8mTy5Ayb8uT/f///DJvy5P9/////P/+//z//v9ku2a7ZLtmu2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/v/+//7//vyXR2a4l0dmu////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("7Yh2ce2IQ44Rd3ZxEXdDjgt6jIl8gWeRC3pCmVSVQpnZkmeRfIGMiXaE2GOIe9hj+YL+UAV9/lDtiB2W7YjTpRF3HZYRd9Ol7Yj2vhF39r7tiEKZEXdCmdVUG7fVVEKZuGP2vppyQpmacva+BX3O5wV9Yd75gs7n+YJh3jUlXGQ1JXJRETdcZCMuclEpq0KZKasbt2SNQplGnPa+ZI32vhF33oURd0507Yjehe2ITnTJ2nJRydpcZNvRclHtyFxkdoQ8RYh7PEX5gikwBX0pMO2IG7cRdxu37YhCmRF3QpkRd9SaEXdlpxd01JoXdGWnHXEdocoaj5rKGkOD4U6PmuFOQ4Pni9d57YjXeeeLjnPtiI5zHXEdoRd01JoXdGWnEXdlpxF31JrhTtWOyhrVjuFOWIPKGliD4Y4doeeLZafni9Sa7YjUmu2IZacRd9d5F3TXeRF3jnMXdI5z54vXee2I13nni45z7YiOcxF313kXdNd5EXeOcxd0jnPtiGWn7YjUmueLZafni9Sa4Y4doTTlQ4M05Y+aHbFDgx2xj5o05ViDNOXVjh2xWIMdsdWOHZDRux2QzfLhb9G74W/N8vOFjInzhUKZgn6MiYJ+Z5GqakKZJW1nke2IZ5ERd2eR7YiMiRF3jIkRdxR07YgUdBF3aIbtiGiGEXf//xF3Ob/tiP//yXs5v+2IOb/tiDCCEXcwgu2IjnMRd45z7YiWEO2I/0URd5YQEXf/Re2IlcbtiKP9EXeVxhF3o/0Rd2xPEXeWEO2IbE/tiJYQAACEgtYUhIIAANGD1hTRg////YYo6/2G//+vhSjrr4Uo661///+tfyjr+oD///qAAACofgAAW33WFKh+1hRbfdYU/YYAAP2G1hSvhQAAr4X//7d7//8EfSjrt3so6wR9AACtf9YUrX8AAPqA1hT6gP//3nr//yt8KOveeijrK3zWFNGDAADRg9YUhIIAAISC//9bff//qH4o61t9KOuofgAABH0AALd71hQEfdYUt3so6xuF//8bhSjrkYf//5GH1hT6gAAA+oDWFK1/AACtf///+oAo6/qA//+tfyjrrX8o66+F//+vhSjr/Yb///2G1hRmhAAAZoTWFPCBAADwgQAAqH4AAFt91hSoftYUW30AAK+F1hSvhQAA/YbWFP2G///Rgyjr0YP//4SCKOuEgv//3nr//yt8KOveeijrK3wAACt8AADeetYUK3zWFN56KOuEgv//hIIo69GD///Rg9YUjoEAAI6B1hQYfwAAGH8AACt8AADeetYUK3zWFN56AAAEfQAAt3vWFAR91hS3e9YUkYcAAJGH1hQbhQAAG4X//7d7//8EfSjrt3so6wR9//9bff//qH4o61t9KOuofv//ZoQo62aE///wgSjr8IH//5GHKOuRh///G4Uo6xuFAAAbhdYUG4UAAJGH1hSRhxF3+3wdcft8EXdqcB1xanDhjml74Y6Jqu2IaXvtiImqHXFNyB1xxbjhjk3I4Y7FuAAAGH/WFBh/AACOgdYUjoEAADx/AADHfNYUPH/WFMd8AAC/fAAASXrWFL981hRJegAAmX0AACN71hSZfdYUI3sAAJl9AAAje9YUmX3WFCN7AADwgdYU8IEAAGaE1hRmhA1D+3wNQ9hjxVH7fMVR2GPhjvt87Yj7fOGOanDtiGpwvaD7fMOdjnO9oGpwF3RqcNuRjnPbkdd5w53XeRd0+3wAAL98AABJetYUv3zWFEl68bzYY/G8+3w5rthjOa77fB1xiaodcWl7EXeJqhF3aXsRd/t8HXH7fBF3anAdcWpw7YiJqu2IaXvhjomq4Y5peztijnM7Ytd5QV/7fOeL+3wjbtd554tqcEFfanAjbo5z4Y77fO2I+3zhjmpw7YhqcBF3aXsRd4mqHXFpex1xiaoAADx/AADHfNYUPH/WFMd8KOvwgf//8IEo62aE//9mhP//x3z//zx/KOvHfCjrPH///yN7//+ZfSjrI3so65l9//9Jev//v3wo60l6KOu/fP//SXr//798KOtJeijrv3wo6xh///8YfyjrjoH//46B//8je///mX0o6yN7KOuZff//x3z//zx/KOvHfCjrPH///46BKOuOgf//GH8o6xh/doQCdYh7AnV2hHJjiHtyY3aEcH2Ie3B9doTga4h74Gu4Y9hjKWsjVAps2GPCb/1bsaYjVBii/VvRpdhjI67YY3aEg3mIe4N5doS7cIh7u3CIe/idiHsiX3aE+J12hCJfRpzYY/ST2GPVlCNUPJD9W01ZI1TmXf1bLVrYY9tR2GN2hP1jdoQdmYh7/WOIex2ZdoQVcYh7FXF2hExoiHtMaO2InMARd5zA7Yh+nxF3fp/tiDaXEXc2l+2I7o4Rd+6O7YiLyhF3i8rtiN6YEXfemDWE3pjtiJFH7Yj9ZhF3kUcRd/1mXpCMidWUjIkjroyJQJ+tuAW9rbigb4yJ21GMib5grbj5Qq24/39lgMZ+OYA4gTmAW4K6f6N9un+ofO9+VoPvfhaE533oe+d9j4SzfG97s3y4hGl7Rntpe297HnqPhB566HvreBaE63iofOJ3VoPid1uCGHejfRh3xn6YdjiBmHb/f2124Y7N8uGO0bvPl83yz5fRux2Qr6Lhb6+iz5ePmi9oj5rhjkKZz5dDg+GOQ4MdcUKZL2hDgx1xQ4Phb6+iL2iPmh2Qr6LPl4+a4Y5Cmc+XQ4PhjkODHXFCmS9oQ4MdcUODL2jN8i9o0bsdcc3yHXHRu2pKjIl8QY5zakohauIOIWriDo5zfEEwguIOQpniDouPlLUhaoK+MIKUtYyJHPFCmRzxi4+Cvo5zHPEhahzxjnPhjoyJ7YiMieGO2GPtiCFqEXchah1x2GMdcYyJEXeMifSbjnP0m9d5TJWOc0yV13myao5zWnGOc7Jq13lacdd5HXFCmVCGE4LhjkKZu4cfgJ+I2X3hjrNrdoSSg0+Cg4T/f9aE7Yhpe5+I+Hi7h7J2UIa+dHaEP3NPgk5y/3/8ca99g4QdcbNrr31Ocoh7P3Oueb50Q3iydl93+HgRd2l7X3fZfUN4H4CueROCiHuSg4h7zucdcTvx4Y478XaEzud2hPTUiHv01B1xbE+Ie9OldoTTpXaEC512hA9gdoRHV4h7R1fhjmxPiHsLnYh7D2DhjkKZ7YhCmeGOjIntiIyJ4Y7N8uGOFvkdcc3yHXEW+Sjrs2so60KZt+PYYzTlQ4MdsUOD84VCmR2xQpm9oPt8vaBqcGpK2GMXdGpwF3T7fPOFjIlqSoyJNOVCmeGO9sMdcfbD4Y7auB1x2rjtiGxP7YhHVzWEbE81hEdXEXdsTxF3R1cRd/xxEXeydhF3aIbtiGiG7Yiydh1xbE8Rd0OOHXFDjuGOQ47hjmxP7YhDjkyVjnNMldd5pI6Oc6SO13kKZI5zsmqOcwpk13myatd54Y5DjuGO0bvtiB2WEXcdlhF3ibXtiIm1HXHRux1xQ47hTkKZ4U5Dgwt6QplBX/t8QV9qcAt6jInni/t8lLWMiZS12GPni2pwyhpDg0cc2GPWFLNryhpCmdYUQpkRd0KZHXFCmRF3jIkdcYyJ4Y6Knx1xip/hjthjHXHYY+IO2GPiDoqfAADYYwAAip8c8YqfHPHYY///ip///9hjHXGWEB1x4ADhjpYQ4Y7gAOGO4ADhjpYQHXHgAB1xlhAdcYqf7YhCmeGOip/hjthj7YiLj+2IjnMRd4uP7YghahF3IWoRd0KZHXHYYxF3jnMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8DUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hj"), -"format": 34896613399, -"index_count": 483, -"index_data": PackedByteArray("FwIVAhYCFgIYAhcCGAIZAhcCGgIXAhkCGwIaAhkCGQIcAhsCHwIdAh4CHgIgAh8CIwIhAiICIgIkAiMCJwIlAiYCJgIoAicCKAIpAicCKQIqAicCJQIrAiYCJQIsAisCJQItAiwCKQIuAioCLgIvAioCLwIwAioCMAIxAioCMQIyAioCMgIzAioCMwI0AioCNQItAiUCNgIqAjQCNgI0AjcCNgI3AjgCNgI4AjkCNgI5AjoCNgI6AjsCNgI7AjwCNgI8Aj0CJQI2Aj0CPQI+AiUCPgI/AiUCPwJAAiUCQAI1AiUCQgIXAUECQQJDAkICQQJEAkMCRAJFAkMCRgJBAhcBFwEZAUYCGQFFAkYCGQFDAkUCGAFHAkgCSAIaARgBSAJJAhoBSQJKAhoBSgJLAhoBSwJMAhoBTQJIAkcCRwJOAk0CTgJMAk0CTgIaAUwCTQJPAkgCTQJQAk8CSgJPAlACUAJLAkoCUwJRAlICUgJUAlMCVwJVAlYCVgJYAlcCWwJZAloCWgJcAlsCXAJIAVsCXAJdAkgBSAFHAVsCXQJKAUgBXgJKAV0CXQJfAl4CXgJgAkoBYAJhAkoBSQFKAWECYQJiAkkBYQJjAmICYwJkAmICZAJgAmUCXgJlAmACZQJmAmQCZgJiAmQCZwJcAloCagJoAmkCaQJrAmoCbgJsAm0CbQJvAm4CbwJwAm4CbwJxAnACcQJyAnACcgJzAnACdAJwAnMCdQJ0AnMCcwJ2AnUCdgJtAmwCdAJ3AnACdAJ4AncCeAJ5AncCegJ2AmwCbAJ7AnoCegJ8AnYCfAJ1AnYCfwJ9An4CfgKAAn8CgwKBAoICggKEAoMCAQCFAoYChgKHAgEAhwKIAgEAiAIDAAEAiAKJAgMAigKHAoYChgKLAooCiwKJAooCiwIDAIkCiwKMAgMAjwKNAo4CjgI1AY8CNQGQAo8CNQE2AZACNgGRApACkAKSAo8CkAKTApICkwKUApICkQI2AZUClQKUApMClQKWApEClQKTApYCMwE1AY4CMwGOApcCmAIzAZcCmQKYApcCmQKXApoCmgKbApkCNAEzAZgCngKcAp0CnQKfAp4CogKgAqECoQKjAqICpgKkAqUCpQKnAqYCqgKoAqkCqQKrAqoCrgKsAq0CrQKvAq4CsgKwArECsQKzArICtgK0ArUCtQK3ArYCtQK4ArcCuAK5ArcCuAK6ArkCuQK7ArcCuwK8ArcCvQK1ArQCtAK+Ar0CvgK6Ar0CvgK3ArwCvgK/AroCvwK5AroCvgK8Ar8C"), -"material": SubResource("StandardMaterial3D_nw6dh"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(33.8583, 32.0782, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("/0/FV6pqVNX/T8VX84X///+vxVeqalTV/6/FV/OF////r1d884VU1f+vDmqCflTV/6/FV/OFVNX/r8VXqmpU1f+vDmolbVTV/69XfIJ+VNX/lxzUydr///9nHNTJ2v///4///8na////b///ydr///9PAABkjVTV/08AAEacVNX/rwAAZI1U1f+vAABGnFTV/08AAGSN////rwAAZI3///9PxVdkjf///6/FV2SN////r0kSKatU1f+vxVcpq1TV/68AAEacVNX/r8VXZI1U1f+vAABkjVTV/2///8naVNX/b///29FU1f+P///J2lTV/4///9vRVNX/lxzUydpU1f+P///J2lTV/5cc1O3IVNX/j///29FU1f9PxVcpq1TV/09JEimrVNX/T8VXZI1U1f9PAABGnFTV/08AAGSNVNX/TwAARpxoy/9PSRIpq2jL/68AAEacaMv/r0kSKatoy/9v///J2lTV/2cc1MnaVNX/b///29FU1f9nHNTtyFTV/2cc1O3IsvL/lxzU7ciy8v9v///b0bLy/4///9vRsvL/r0kSKav///9PSRIpq////6/FVymr////T8VXKav///+v6aDbkVTV/6/poMOdVNX/v+mg25FU1f+/6aDDnVTV/8/poM+XVNX//71UNOVU1f//+Io05VTV//+9VB2xVNX///iKHbFU1f8/6aDbkf///0/poNuR////P4qv25H///9Piq/bkf///y+Kr8+XVNX/P4qv25FU1f8/iq/DnVTV/0+Kr8OdVNX/T4qv25FU1Z/W00EdsVTVn9bTQTTlVNX//71UHbFU1f//vVQ05VTV/y/poM+XVNX/P+mgw51U1f8/6aDbkVTV/0/poNuRVNX/T+mgw51U1f9P6aDDnf///z/poMOd////T4qvw53///8/iq/Dnf///7/poMOd////r+mgw53///+/iq/Dnf///6+Kr8Od////r+mg25H///+/6aDbkf///6+Kr9uR////v4qv25H///+viq/DnVTV/6+Kr9uRVNX/v4qvw51U1f+/iq/bkVTV/8+Kr8+XVNUAAPiKNOVU1QAAvVQ05VTVAAD4ih2xVNUAAL1UHbFU1QAAvVQ05VTVXynTQTTlVNUAAL1UHbFU1V8p00EdsVTVXynTQR2xVNVfKdNBNOVU1Z/W00EdsVTVn9bTQTTlVNX/T1d884VU1f9PxVfzhVTV/09XfIJ+VNX/Tw5qgn5U1f9PxVeqalTV/08OaiVtVNX/Tw5qgn7///+vDmqCfv///09XfIJ+////r1d8gn7///9PDmolbVTV/68OaiVtVNX/Tw5qgn5U1f+vDmqCflTV/0/FV+IO0s//T1d8akrSz/+vxVfiDtLPXmlXfGpK0s//r1d8akrSz/9PeY18Qf///695jXxB////T4qvfEH///+viq98Qf///0+Kr+IOVNX/T4qvfEFU1f+viq/iDlTV/6+Kr3xBVNX/T3mNfEFP2/9PY27iDk/b/695jXxBT9v/r2Nu4g5P2/9Pe8VqSlTV/097xeIOVNX/r3vFakpU1f+ve8XiDlTVTnM0k///VNVOczSTKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMTaco61TVsIxNp///VNXykXWlKOtU1fKRdaX//1TVDG4Mlf//VNUEanSX//9U1QxuDJUo61TVBGp0lyjrVNVteXaoKOtU1W15dqj//1TV/3/bqCjrVNX/f9uo//9U1YOYQJr//1TV+pV0l///VNWDmECaKOtU1fqVdJco61TVDG4Mlf//VNUMbgyVKOtU1U5zNJP//1TVTnM0kyjrVNWDmEKg//9U1WGZQZ3//1TVg5hCoCjrVNVhmUGdKOtU1U5zTaco61TVTnNNp///VNVteXaoKOtU1W15dqj//1TV+pV0l///VNXykQyV//9U1fqVdJco61TV8pEMlSjrVNV7Z0Kg//9U1QRqDqP//1TVe2dCoCjrVNUEag6jKOtU1ZNzD4go61TVk3MPiP//VNX/f0+HKOtU1f9/T4f//1TVDG51pSjrVNUMbnWl//9U1U5zTaco61TVTnNNp///VNWwjDST//9U1bCMNJMo61TV8pEMlf//VNXykQyVKOtU1f9/26go61TV/3/bqP//VNWRhnaoKOtU1ZGGdqj//1TVa4wPiCjrVNVrjA+I//9U1f+XQIoo61TV/5dAiv//VNUEag6j//9U1QxudaX//1TVBGoOoyjrVNUMbnWlKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMNJP//1TVsIw0kyjrVNVhmUGd//9U1YOYQJr//1TVYZlBnSjrVNWDmECaKOtU1XtnQJr//1TVnWZBnf//VNV7Z0CaKOtU1Z1mQZ0o61TVkYZ2qCjrVNWRhnao//9U1bCMTaco61TVsIxNp///VNX/l0CKKOtU1f+XQIr//1TV8KG9jSjrVNXwob2N//9U1Z1mQZ3//1TVe2dCoP//VNWdZkGdKOtU1XtnQqAo61TVBGp0l///VNV7Z0Ca//9U1QRqdJco61TVe2dAmijrVNX/f0+HKOtU1f9/T4f//1TVa4wPiCjrVNVrjA+I//9U1fqVDqP//1TVg5hCoP//VNX6lQ6jKOtU1YOYQqAo61TV8pF1pf//VNX6lQ6j//9U1fKRdaUo61TV+pUOoyjrVNX/Z0Gw//9U1f9nQbAo61TVk3Nzsv//VNWTc3OyKOtU1ZNzc7L//1TVk3NzsijrVNX/fzKz//9U1f9/MrMo61TV/38ys///VNX/fzKzKOtU1WuMc7L//1TVa4xzsijrVNX/T5iZF3T///8vmJkXdP///0/athd0////L9q2F3T///8v2rYXdFTV/y/atr2gVNX/T9q2F3RU1f9P2ra9oFTV/y8c1PG8/7//LxzUOa7/v//PHNTxvP+//88c1Dmu/7//l0Gw//9U1f+XQbAo61TV8KHFrP//VNXwocWsKOtU1ZGpOaj//1TV8KHFrP//VNWRqTmoKOtU1fChxawo61TVXK6Tl///VNX/r0Gd//9U1Vyuk5co61TV/69BnSjrVNVcru+i//9U1ZGpOaj//1TVXK7voijrVNWRqTmoKOtU1ZGpSJL//1TVXK6Tl///VNWRqUiSKOtU1Vyuk5co61TVa4xzsv//VNVrjHOyKOtU1f+XQbD//1TV/5dBsCjrVNX/z5iZ8bz/v//PHNTxvP+//8+YmTmu/7//zxzUOa7/v/8vmJm9oP///0+Ymb2g////L9q2vaD///9P2ra9oP///0+Ymb2gVNX/T4qvw51U1f9P2ra9oFTV/0/athd0VNX/T4qv25FU1f9P6aDbkVTV/0/poMOdVNX/T5iZF3RU1f+vQZ3//1TVXK7vov//VNX/r0GdKOtU1Vyu76Io61TV/y8c1PG8/7//L5iZ8bz/v/8vHNQ5rv+//y+YmTmu/7//L5iZvaBU1f8vmJkXdFTV/0+Ymb2gVNX/T5iZF3RU1f+vmJm9oP///8+Ymb2g////r9q2vaD////P2ra9oP///6+Ymb2gVNX/r5iZF3RU1f/PmJm9oFTV/8+YmRd0VNX/r4qvw51U1f+v6aDDnVTV/6+Ymb2gVNX/r5iZF3RU1f+v6aDbkVTV/6/athd0VNX/r9q2vaBU1f+viq/bkVTV/8+YmRd0////r5iZF3T////P2rYXdP///6/athd0////r9q2F3RU1f+v2ra9oFTV/8/athd0VNX/z9q2vaBU1fChvY3//1TVkalIkv//VNXwob2NKOtU1ZGpSJIo61TV/2dAiijrVNX/Z0CK//9U1ZNzD4go61TVk3MPiP//VNVtVkiS//9U1Q5evY3//1TVbVZIkijrVNUOXr2NKOtU1aJRk5f//1TVbVZIkv//VNWiUZOXKOtU1W1WSJIo61TV/09Bnf//VNWiUZOX//9U1f9PQZ0o61TVolGTlyjrVNWiUe+i//9U1f9PQZ3//1TVolHvoijrVNX/T0GdKOtU1Q5evY0o61TVDl69jf//VNX/Z0CKKOtU1f9nQIr//1TVbVY5qP//VNWiUe+i//9U1W1WOago61TVolHvoijrVNUOXsWs//9U1W1WOaj//1TVDl7FrCjrVNVtVjmoKOtU1Q5exaz//1TVDl7FrCjrVNX/Z0Gw//9U1f9nQbAo61TV/5cc1EacJsL/ZxzURpwmwv+XrvjVlCbC/2eu+NWUJsL/ZxzU21Gy8v+XHNTbUbLy/2eu+E1ZsvL/l674TVmy8v+XHNRGnFTV/5eu+NWUVNX/lxzU9JNU1f+XZeY8kFTV/5eu+E1ZVNX/l2Xm5l1U1f+XHNQtWlTV/5cc1NtRVNX/lxzULVomwv9nHNQtWibC/5dl5uZdJsL/Z2Xm5l0mwv9nrvjVlFTV/2eu+E1ZVNX/l6741ZRU1f+XrvhNWVTV/2cc1EacVNX/ZxzU9JNU1f9nrvjVlFTV/2dl5jyQVNX/Z674TVlU1f9nZebmXVTV/2cc1C1aVNX/ZxzU21FU1f9nZebmXVTV/2dl5jyQVNX/l2Xm5l1U1f+XZeY8kFTV/2cc1PSTsvL/lxzU9JOy8v9nZeY8kLLy/5dl5jyQsvL/r6AOvmAKwf9PoA6+YArB/6/FV6pqCsH/T8VXqmoKwf+vDmolbQrB/08OaiVtCsH/r1d8oG8Kwf9PV3ygbwrB/0+gDvlCv/b/r6AO+UK/9v9PV3zbUb/2/69XfNtRv/ZeaVd821G/9v9PoA75QlTV/0+gDr5gVNX/r6AO+UJU1f+voA6+YFTV/69XfKBvVNX/r1d8KWtU1f+vV3zbUVTV/6+gDr5gVNX/r6AO+UJU1f9PV3ygb1TV/09XfNtRVNX/T6AOvmBU1f9PoA75QlTV/3+mkSjr//9teQySKOv//5GGDJIo6///sIw0kyjr//9OczSTKOv//wxuDJUo6///8pEMlSjr///6lXSXKOv//wRqdJco6///g5hAmijr//97Z0CaKOv//2GZQZ0o6///nWZBnSjr//97Z0KgKOv//4OYQqAo6///BGoOoyjr///6lQ6jKOv//wxudaUo6///8pF1pSjr//+wjE2nKOv//05zTaco6///bXl2qCjr//+RhnaoKOv///9/26go6////8/4ijTlVNX/z/iKHbFU1f//+Io05VTV///4ih2xVNWf1tNBNOX//18p00E05f////+9VDTl//8AAL1UNOX////PxVc05f/////4ijTl////z/iKNOX///8vxVc05f//AAD4ijTl////L/iKNOX//5/W00Edsf////+9VB2x//9fKdNBHbH//wAAvVQdsf///y/FVx2x//8AAPiKHbH///8v+Iodsf///8/FVx2x//////iKHbH////P+Iodsf//AAD4ijTlVNUAAPiKHbFU1f8v+Io05VTV/y/4ih2xVNX/T1d8akpU1f9Piq98QVTV/097xWpKVNX/T3vF4g5U1f9Piq/iDlTV/095jXxBVNX/T8VX4g5U1f9PY27iDlTV/697xWpKVNX/r3mNfEFU1f+vV3xqSlTV/6/FV+IOVNX/r2Nu4g5U1f+viq98QVTV/697xeIOVNX/r4qv4g5U1f8vV3xqSv///09XfGpK////LxzUakr///9Pe8VqSv///697xWpK////zxzUakr////PV3xqSv///69XfGpK////L4qvz5fj0v8v6aDPl+PS/z+Kr9uR49L/P+mg25Hj0v+/iq/DnRut/8+Kr8+XG63/v+mgw50brf/P6aDPlxut/y/FVyjr/3/wob2NKOv/f//PxVco6/9/kalIkijr/39crpOXKOv/f//P08Eo6/9//5dAiijr/39rjA+IKOv/f/9/T4co6/9//69BnSjr/39cru+iKOv/f5GpOago6/9/8KHFrCjr/3//l0GwKOv/f2uMc7Io6/9//38ysyjr/3+Tcw+IKOv/f/8v08Eo6/9/k3Nzsijr/3//Z0GwKOv/fw5exawo6/9/bVY5qCjr/3+iUe+iKOv/f/9PQZ0o6/9/olGTlyjr/39tVkiSKOv/fw5evY0o6/9//2dAiijr/3//ZxzUydr/v/8vHNS34/+//88c1Lfj/7//lxzUydr/v/+XHNTtyP+//2cc1O3I/7//LxzUakr/v/9nHNRGnP+//5cc1Eac/7//lxzU9JP/v/+XHNQtWv+//5cc1NtR/7//ZxzU21H/v//PHNRqSv+//2cc1PST/7//ZxzULVr/v/8vxVfzhf///0/FV/OF////L1d884X///9PV3zzhf///y/FVzTl////L8VXKOv////PxVc05f///8/FVyjr////L9PBKOv/v/8vxVco6/+//y8c1Lfj/7//L/iKNOX/v/8v+Iodsf+//y/FV/OF/7//L8VXHbH/v/8vmJm9oP+//y/atr2g/7//LxzUakr/v/8v2rYXdP+//y+YmRd0/7//L1d884X/v/8vV3xqSv+//y/FVzTl/7//z9PBKOv/n/8v08Eo6/+f/88c1Lfj/5//LxzUt+P/n/9PV3xqSv///09XfNtR//9eaVd8akr//15pV3zbUf///69XfGpK////r1d821H///+vV3wpa/+//69XfKBv////r1d8gn7///9PV3yCfv///09XfKBv////z1d8akr///+vV3zzhf///89XfPOF////L1d884X///8vV3xqSv///09XfPOF////P4qvw50brf8/6aDDnRut/y+Kr8+XG63/L+mgz5cbrf/Piq/Pl+PS/7+Kr9uR49L/z+mgz5fj0v+/6aDbkePS/y/FV/OF////L8VXHbH///9PxVdkjf///6/FV2SN////r8VXKav///9PxVcpq////8/FVx2x////z8VX84X////PxVcdsf+//8/4ih2x/7//z8VX84X/v//PmJm9oP+//8/atr2g/7//z1d884X/v//PmJkXdP+//89XfGpK/7//zxzUakr/v//P2rYXdP+//8/4ijTl/7//zxzUt+P/v//P08Eo6/+//8/FVzTl/7//z8VXKOv/v/+vxVfzhf///8/FV/OF////r1d884X////PV3zzhf///y8kSQAA////zyRJAAD///8vHNQAAP///88c1AAA////LxzU4g7/v/8vJEniDv+//y8c1AAA/7//LyRJAAD/v//PJEniDv+//88c1OIO/7//zyRJAAD/v//PHNQAAP+//y8c1OIO/7//LxzUAAD/v//PHNTiDv+//88c1AAA/7//LyRJAAD///8vJEniDv///88kSQAA////zyRJ4g7///8vJEniDv9//6/FV+IO/3//zyRJ4g7/f//PHNTiDv9//69jbuIO/3//r4qv4g7/f/9PY27iDv9//697xeIO/3//T3vF4g7/f/9PxVfiDv9//y8c1OIO/3//T4qv4g7/f/9/T4f/////k3MPiP////9rjA+I//////+XQIr/////a4wPiP////+Tcw+I//////9nQIr//////5dAiv////+Tcw+I//////ChvY3//////5dAiv//////Z0CK/////w5evY3/////8KG9jf//////Z0CK/////5GpSJL/////8KG9jf////8OXr2N//////9/ppH/////kalIkv////8OXr2N/////5GGDJL/////kalIkv//////f6aR/////7CMNJP/////kYYMkv////9crpOX/////5GpSJL/////sIw0k//////ykQyV/////1yuk5f/////sIw0k//////6lXSX/////1yuk5f/////8pEMlf////+DmECa/////1yuk5f/////+pV0l///////r0Gd/////1yuk5f/////g5hAmv////9hmUGd//////+vQZ3/////g5hAmv////9cru+i//////+vQZ3/////YZlBnf////+DmEKg/////1yu76L/////YZlBnf/////6lQ6j/////1yu76L/////g5hCoP////+RqTmo/////1yu76L/////+pUOo//////ykXWl/////5GpOaj/////+pUOo/////+wjE2n/////5GpOaj/////8pF1pf////+Rhnao/////5GpOaj/////sIxNp//////wocWs/////5GpOaj/////kYZ2qP//////f9uo//////Chxaz/////kYZ2qP////8OXr2N/////21WSJL//////3+mkf////9teQyS//////9/ppH/////bVZIkv////9OczST/////215DJL/////olGTl/////9OczST/////21WSJL/////DG4Mlf////9OczST/////6JRk5f/////BGp0l/////8MbgyV/////6JRk5f/////e2dAmv////8EanSX/////6JRk5f//////09Bnf////97Z0Ca/////6JRk5f/////nWZBnf////97Z0Ca//////9PQZ3/////e2dCoP////+dZkGd//////9PQZ3/////olHvov////97Z0Kg//////9PQZ3/////BGoOo/////97Z0Kg/////6JR76L/////bVY5qP////8Eag6j/////6JR76L/////DG51pf////8Eag6j/////21WOaj/////TnNNp/////8MbnWl/////21WOaj/////bXl2qP////9Oc02n/////21WOaj/////Dl7FrP////9teXao/////21WOaj//////3/bqP////9teXao/////w5exaz/////8KHFrP//////f9uo/////w5exaz//////5dBsP/////wocWs/////w5exaz//////2dBsP//////l0Gw/////w5exaz/////a4xzsv//////l0Gw//////9nQbD/////k3Nzsv////9rjHOy//////9nQbD//////38ys/////9rjHOy/////5Nzc7L/////AAD/f/9//z8AAP9//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f9iJ2AnYidgJ2InYCdiJ2An/f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3/YiSb22Ikm9tiJJvbYiSb2////f////3////9/////f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f////3//P/8//z//P/8//z//P/8/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///////9/////f////3////9/////f/9/////f////3////9/////P/+//z//v/8//7//P/+/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/JdElUSXRJVHy5PJk8uTyZP///3////9/8uQMm/LkDJvZLtmu2S7Zrv8//7//P/+//7//P9mu2S7/v/8/2a7ZLgwb8mQMG/JkAAD/fwAA/38Mm/Lk2a4l0Qyb8uTZriXR/7//P/+//z8l0SVRJdElUfJk8uT/f///8mTy5P9////ZLiVR2S4lUQwb8mQMG/Jk2a4l0f+//7/ZriXR/7//v/JkDBslUdku8mQMGyVR2S4MGwybDBsMmwAA/38AAP9//z//P/8//z/ZLiVR2S4lUSXR2a4l0dmu/7//v/+//78AAP9/AAD/fwwbDJsMGwybDBvyZAwb8mTZLiVR2S4lUSVR2S7/P/8/JVHZLv8//z/y5PJk8uTyZP///3////9/8uQMm/LkDJsl0dmuJdHZrv9///8Mm/Lk/3///wyb8uQMmwwb/38AAAybDBv/fwAADBsMmwwbDJvZLtmu2S7ZrtkuJVHZLiVR/z//P/8//z//fwAA8mQMG/9/AADyZAwb2a7ZLgybDBvZrtkuDJsMGwAA/38AAP9/DBvyZAwb8mQlUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0SXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/////f////3/y5PJk8uTyZP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f/7//3////9/////fyXRJVEl0SVR/7//P/+//z/Zrtku/7//P9mu2S7/v/8/8mQMG/9/AADyZAwb/38AAAybDBvZrtkuDJsMG9mu2S4lUdku8mQMGyVR2S7yZAwb8uTyZPLk8mQl0SVRJdElUf9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/3////9/////f////3///////3////9/////f////3//f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//P/8/JVHZLv8//z8lUdku2S7Zrtku2a4MGwybDBsMmyVRJdH/P/+/JVEl0f8//7/yZPLkJVEl0fJk8uQlUSXR/3////Jk8uT/f///8mTy5Ayb8uT/f///DJvy5P9/////P/+//z//v9ku2a7ZLtmu2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/v/+//7//vyXR2a4l0dmu////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3/+//9//v//f/7//3////9/////f////3/+//9//v//f////3/+//9/////f////3/+//9/////f////3//f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9//v//f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3//f/8//3//P/9//z//f/8//3//P/9//z8AAP9//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/") -}, { -"aabb": AABB(-0.08, -0.175, -0.43, 0.16, 0.35, 0.86), -"attribute_data": PackedByteArray("7Yh2ce2IQ44Rd3ZxEXdDjgt6jIl8gWeRC3pCmVSVQpnZkmeRfIGMiXaE2GOIe9hj+YL+UAV9/lDtiB2W7YjTpRF3HZYRd9Ol7Yj2vhF39r7tiEKZEXdCmdVUG7fVVEKZuGP2vppyQpmacva+BX3O5wV9Yd75gs7n+YJh3jUlXGQ1JXJRETdcZCMuclEpq0KZKasbt2SNQplGnPa+ZI32vhF33oURd0507Yjehe2ITnTJ2nJRydpcZNvRclHtyFxkdoQ8RYh7PEX5gikwBX0pMO2IG7cRdxu37YhCmRF3QpkRd9SaEXdlpxd01JoXdGWnHXEdocoaj5rKGkOD4U6PmuFOQ4Pni9d57YjXeeeLjnPtiI5zHXEdoRd01JoXdGWnEXdlpxF31JrhTtWOyhrVjuFOWIPKGliD4Y4doeeLZafni9Sa7YjUmu2IZacRd9d5F3TXeRF3jnMXdI5z54vXee2I13nni45z7YiOcxF313kXdNd5EXeOcxd0jnPtiGWn7YjUmueLZafni9Sa4Y4doTTlQ4M05Y+aHbFDgx2xj5o05ViDNOXVjh2xWIMdsdWOHZDRux2QzfLhb9G74W/N8vOFjInzhUKZgn6MiYJ+Z5GqakKZJW1nke2IZ5ERd2eR7YiMiRF3jIkRdxR07YgUdBF3aIbtiGiGEXf//xF3Ob/tiP//yXs5v+2IOb/tiDCCEXcwgu2IjnMRd45z7YiWEO2I/0URd5YQEXf/Re2IlcbtiKP9EXeVxhF3o/0Rd2xPEXeWEO2IbE/tiJYQAACEgtYUhIIAANGD1hTRg////YYo6/2G//+vhSjrr4Uo661///+tfyjr+oD///qAAACofgAAW33WFKh+1hRbfdYU/YYAAP2G1hSvhQAAr4X//7d7//8EfSjrt3so6wR9AACtf9YUrX8AAPqA1hT6gP//3nr//yt8KOveeijrK3zWFNGDAADRg9YUhIIAAISC//9bff//qH4o61t9KOuofgAABH0AALd71hQEfdYUt3so6xuF//8bhSjrkYf//5GH1hT6gAAA+oDWFK1/AACtf///+oAo6/qA//+tfyjrrX8o66+F//+vhSjr/Yb///2G1hRmhAAAZoTWFPCBAADwgQAAqH4AAFt91hSoftYUW30AAK+F1hSvhQAA/YbWFP2G///Rgyjr0YP//4SCKOuEgv//3nr//yt8KOveeijrK3wAACt8AADeetYUK3zWFN56KOuEgv//hIIo69GD///Rg9YUjoEAAI6B1hQYfwAAGH8AACt8AADeetYUK3zWFN56AAAEfQAAt3vWFAR91hS3e9YUkYcAAJGH1hQbhQAAG4X//7d7//8EfSjrt3so6wR9//9bff//qH4o61t9KOuofv//ZoQo62aE///wgSjr8IH//5GHKOuRh///G4Uo6xuFAAAbhdYUG4UAAJGH1hSRhxF3+3wdcft8EXdqcB1xanDhjml74Y6Jqu2IaXvtiImqHXFNyB1xxbjhjk3I4Y7FuAAAGH/WFBh/AACOgdYUjoEAADx/AADHfNYUPH/WFMd8AAC/fAAASXrWFL981hRJegAAmX0AACN71hSZfdYUI3sAAJl9AAAje9YUmX3WFCN7AADwgdYU8IEAAGaE1hRmhA1D+3wNQ9hjxVH7fMVR2GPhjvt87Yj7fOGOanDtiGpwvaD7fMOdjnO9oGpwF3RqcNuRjnPbkdd5w53XeRd0+3wAAL98AABJetYUv3zWFEl68bzYY/G8+3w5rthjOa77fB1xiaodcWl7EXeJqhF3aXsRd/t8HXH7fBF3anAdcWpw7YiJqu2IaXvhjomq4Y5peztijnM7Ytd5QV/7fOeL+3wjbtd554tqcEFfanAjbo5z4Y77fO2I+3zhjmpw7YhqcBF3aXsRd4mqHXFpex1xiaoAADx/AADHfNYUPH/WFMd8KOvwgf//8IEo62aE//9mhP//x3z//zx/KOvHfCjrPH///yN7//+ZfSjrI3so65l9//9Jev//v3wo60l6KOu/fP//SXr//798KOtJeijrv3wo6xh///8YfyjrjoH//46B//8je///mX0o6yN7KOuZff//x3z//zx/KOvHfCjrPH///46BKOuOgf//GH8o6xh/doQCdYh7AnV2hHJjiHtyY3aEcH2Ie3B9doTga4h74Gu4Y9hjKWsjVAps2GPCb/1bsaYjVBii/VvRpdhjI67YY3aEg3mIe4N5doS7cIh7u3CIe/idiHsiX3aE+J12hCJfRpzYY/ST2GPVlCNUPJD9W01ZI1TmXf1bLVrYY9tR2GN2hP1jdoQdmYh7/WOIex2ZdoQVcYh7FXF2hExoiHtMaO2InMARd5zA7Yh+nxF3fp/tiDaXEXc2l+2I7o4Rd+6O7YiLyhF3i8rtiN6YEXfemDWE3pjtiJFH7Yj9ZhF3kUcRd/1mXpCMidWUjIkjroyJQJ+tuAW9rbigb4yJ21GMib5grbj5Qq24/39lgMZ+OYA4gTmAW4K6f6N9un+ofO9+VoPvfhaE533oe+d9j4SzfG97s3y4hGl7Rntpe297HnqPhB566HvreBaE63iofOJ3VoPid1uCGHejfRh3xn6YdjiBmHb/f2124Y7N8uGO0bvPl83yz5fRux2Qr6Lhb6+iz5ePmi9oj5rhjkKZz5dDg+GOQ4MdcUKZL2hDgx1xQ4Phb6+iL2iPmh2Qr6LPl4+a4Y5Cmc+XQ4PhjkODHXFCmS9oQ4MdcUODL2jN8i9o0bsdcc3yHXHRu2pKjIl8QY5zakohauIOIWriDo5zfEEwguIOQpniDouPlLUhaoK+MIKUtYyJHPFCmRzxi4+Cvo5zHPEhahzxjnPhjoyJ7YiMieGO2GPtiCFqEXchah1x2GMdcYyJEXeMifSbjnP0m9d5TJWOc0yV13myao5zWnGOc7Jq13lacdd5HXFCmVCGE4LhjkKZu4cfgJ+I2X3hjrNrdoSSg0+Cg4T/f9aE7Yhpe5+I+Hi7h7J2UIa+dHaEP3NPgk5y/3/8ca99g4QdcbNrr31Ocoh7P3Oueb50Q3iydl93+HgRd2l7X3fZfUN4H4CueROCiHuSg4h7zucdcTvx4Y478XaEzud2hPTUiHv01B1xbE+Ie9OldoTTpXaEC512hA9gdoRHV4h7R1fhjmxPiHsLnYh7D2DhjkKZ7YhCmeGOjIntiIyJ4Y7N8uGOFvkdcc3yHXEW+Sjrs2so60KZt+PYYzTlQ4MdsUOD84VCmR2xQpm9oPt8vaBqcGpK2GMXdGpwF3T7fPOFjIlqSoyJNOVCmeGO9sMdcfbD4Y7auB1x2rjtiGxP7YhHVzWEbE81hEdXEXdsTxF3R1cRd/xxEXeydhF3aIbtiGiG7Yiydh1xbE8Rd0OOHXFDjuGOQ47hjmxP7YhDjkyVjnNMldd5pI6Oc6SO13kKZI5zsmqOcwpk13myatd54Y5DjuGO0bvtiB2WEXcdlhF3ibXtiIm1HXHRux1xQ47hTkKZ4U5Dgwt6QplBX/t8QV9qcAt6jInni/t8lLWMiZS12GPni2pwyhpDg0cc2GPWFLNryhpCmdYUQpkRd0KZHXFCmRF3jIkdcYyJ4Y6Knx1xip/hjthjHXHYY+IO2GPiDoqfAADYYwAAip8c8YqfHPHYY///ip///9hjHXGWEB1x4ADhjpYQ4Y7gAOGO4ADhjpYQHXHgAB1xlhAdcYqf7YhCmeGOip/hjthj7YiLj+2IjnMRd4uP7YghahF3IWoRd0KZHXHYYxF3jnMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8RxzYYw1D2GMNQ/t8DUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUPYYw1D+3xHHNhjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hjDUP7fEcc2GMNQ9hj"), -"format": 34896613399, -"index_count": 144, -"index_data": PackedByteArray("wgLAAsECxQLDAsQCyALGAscCywLJAsoCzgLMAs0C0QLPAtAC1ALSAtMC1wLVAtYC2QLYAtYC3ALaAtsC3wLdAt4C4gLgAuEC5QLjAuQC6ALmAucC6wLpAuoC7gLsAu0C8QLvAvAC9ALyAvMC9wL1AvYC+gL4AvkC/QL7AvwCAAP+Av8CAwMBAwIDBgMEAwUDCQMHAwgDDAMKAwsDDAMNAw4DEQMPAxADFAMSAxMDFwMVAxYDGgMYAxkDHQMbAxwDIAMeAx8DIwMhAyIDJgMkAyUDKQMnAygDLAMqAysDLwMtAy4DMgMwAzEDNQMzAzQDOAM2AzcDOwM5AzoDPgM8Az0DQQM/A0ADRANCA0MDRwNFA0YDSgNIA0kDTQNLA0wD"), -"material": SubResource("StandardMaterial3D_ypdl4"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(33.8583, 32.0782, 0, 0), -"vertex_count": 846, -"vertex_data": PackedByteArray("/0/FV6pqVNX/T8VX84VU1f+vxVeqalTV/6/FV/OFVNX/r1d884VU1f+vDmqCflTV/6/FV/OFVNX/r8VXqmpU1f+vDmolbVTV/69XfIJ+VNX/lxzUydr///9nHNTJ2v///4///8na////b///ydr///9PAABkjVTV/08AAEacVNX/rwAAZI1U1f+vAABGnFTV/08AAGSN////rwAAZI3///9PxVdkjf///6/FV2SN////r0kSKatU1f+vxVcpq1TV/68AAEacVNX/r8VXZI1U1f+vAABkjVTV/2///8naVNX/b///29FU1f+P///J2lTV/4///9vRVNX/lxzUydpU1f+P///J2lTV/5cc1O3IVNX/j///29FU1f9PxVcpq1TV/09JEimrVNX/T8VXZI1U1f9PAABGnFTV/08AAGSNVNX/TwAARpxoy/9PSRIpq2jL/68AAEacaMv/r0kSKatoy/9v///J2lTV/2cc1MnaVNX/b///29FU1f9nHNTtyFTV/2cc1O3IsvL/lxzU7ciy8v9v///b0bLy/4///9vRsvL/r0kSKav///9PSRIpq////6/FVymr////T8VXKav///+v6aDbkVTV/6/poMOdVNX/v+mg25FU1f+/6aDDnVTV/8/poM+XVNX//71UNOVU1f//+Io05VTV//+9VB2xVNX///iKHbFU1f8/6aDbkf///0/poNuR////P4qv25H///9Piq/bkf///y+Kr8+XVNX/P4qv25FU1f8/iq/DnVTV/0+Kr8OdVNX/T4qv25FU1Z/W00EdsVTVn9bTQTTlVNX//71UHbFU1f//vVQ05VTV/y/poM+XVNX/P+mgw51U1f8/6aDbkVTV/0/poNuRVNX/T+mgw51U1f9P6aDDnf///z/poMOd////T4qvw53///8/iq/Dnf///7/poMOd////r+mgw53///+/iq/Dnf///6+Kr8Od////r+mg25H///+/6aDbkf///6+Kr9uR////v4qv25H///+viq/DnVTV/6+Kr9uRVNX/v4qvw51U1f+/iq/bkVTV/8+Kr8+XVNUAAPiKNOVU1QAAvVQ05VTVAAD4ih2xVNUAAL1UHbFU1QAAvVQ05VTVXynTQTTlVNUAAL1UHbFU1V8p00EdsVTVXynTQR2xVNVfKdNBNOVU1Z/W00EdsVTVn9bTQTTlVNX/T1d884VU1f9PxVfzhVTV/09XfIJ+VNX/Tw5qgn5U1f9PxVeqalTV/08OaiVtVNX/Tw5qgn7///+vDmqCfv///09XfIJ+////r1d8gn7///9PDmolbVTV/68OaiVtVNX/Tw5qgn5U1f+vDmqCflTV/0/FV+IO0s//T1d8akrSz/+vxVfiDtLPXmlXfGpK0s//r1d8akrSz/9PeY18Qf///695jXxB////T4qvfEH///+viq98Qf///0+Kr+IOVNX/T4qvfEFU1f+viq/iDlTV/6+Kr3xBVNX/T3mNfEFP2/9PY27iDk/b/695jXxBT9v/r2Nu4g5P2/9Pe8VqSlTV/097xeIOVNX/r3vFakpU1f+ve8XiDlTVTnM0k///VNVOczSTKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMTaco61TVsIxNp///VNXykXWlKOtU1fKRdaX//1TVDG4Mlf//VNUEanSX//9U1QxuDJUo61TVBGp0lyjrVNVteXaoKOtU1W15dqj//1TV/3/bqCjrVNX/f9uo//9U1YOYQJr//1TV+pV0l///VNWDmECaKOtU1fqVdJco61TVDG4Mlf//VNUMbgyVKOtU1U5zNJP//1TVTnM0kyjrVNWDmEKg//9U1WGZQZ3//1TVg5hCoCjrVNVhmUGdKOtU1U5zTaco61TVTnNNp///VNVteXaoKOtU1W15dqj//1TV+pV0l///VNXykQyV//9U1fqVdJco61TV8pEMlSjrVNV7Z0Kg//9U1QRqDqP//1TVe2dCoCjrVNUEag6jKOtU1ZNzD4go61TVk3MPiP//VNX/f0+HKOtU1f9/T4f//1TVDG51pSjrVNUMbnWl//9U1U5zTaco61TVTnNNp///VNWwjDST//9U1bCMNJMo61TV8pEMlf//VNXykQyVKOtU1f9/26go61TV/3/bqP//VNWRhnaoKOtU1ZGGdqj//1TVa4wPiCjrVNVrjA+I//9U1f+XQIoo61TV/5dAiv//VNUEag6j//9U1QxudaX//1TVBGoOoyjrVNUMbnWlKOtU1W15DJL//1TVbXkMkijrVNX/f6aR//9U1f9/ppEo61TVkYYMkv//VNWRhgySKOtU1bCMNJP//1TVsIw0kyjrVNVhmUGd//9U1YOYQJr//1TVYZlBnSjrVNWDmECaKOtU1XtnQJr//1TVnWZBnf//VNV7Z0CaKOtU1Z1mQZ0o61TVkYZ2qCjrVNWRhnao//9U1bCMTaco61TVsIxNp///VNX/l0CKKOtU1f+XQIr//1TV8KG9jSjrVNXwob2N//9U1Z1mQZ3//1TVe2dCoP//VNWdZkGdKOtU1XtnQqAo61TVBGp0l///VNV7Z0Ca//9U1QRqdJco61TVe2dAmijrVNX/f0+HKOtU1f9/T4f//1TVa4wPiCjrVNVrjA+I//9U1fqVDqP//1TVg5hCoP//VNX6lQ6jKOtU1YOYQqAo61TV8pF1pf//VNX6lQ6j//9U1fKRdaUo61TV+pUOoyjrVNX/Z0Gw//9U1f9nQbAo61TVk3Nzsv//VNWTc3OyKOtU1ZNzc7L//1TVk3NzsijrVNX/fzKz//9U1f9/MrMo61TV/38ys///VNX/fzKzKOtU1WuMc7L//1TVa4xzsijrVNX/T5iZF3T///8vmJkXdP///0/athd0////L9q2F3T///8v2rYXdFTV/y/atr2gVNX/T9q2F3RU1f9P2ra9oFTV/y8c1PG8VNX/LxzUOa5U1f/PHNTxvFTV/88c1DmuVNX/l0Gw//9U1f+XQbAo61TV8KHFrP//VNXwocWsKOtU1ZGpOaj//1TV8KHFrP//VNWRqTmoKOtU1fChxawo61TVXK6Tl///VNX/r0Gd//9U1Vyuk5co61TV/69BnSjrVNVcru+i//9U1ZGpOaj//1TVXK7voijrVNWRqTmoKOtU1ZGpSJL//1TVXK6Tl///VNWRqUiSKOtU1Vyuk5co61TVa4xzsv//VNVrjHOyKOtU1f+XQbD//1TV/5dBsCjrVNX/z5iZ8bxU1f/PHNTxvFTV/8+YmTmuVNX/zxzUOa5U1f8vmJm9oP///0+Ymb2g////L9q2vaD///9P2ra9oP///0+Ymb2gVNX/T4qvw51U1f9P2ra9oFTV/0/athd0VNX/T4qv25FU1f9P6aDbkVTV/0/poMOdVNX/T5iZF3RU1f+vQZ3//1TVXK7vov//VNX/r0GdKOtU1Vyu76Io61TV/y8c1PG8VNX/L5iZ8bxU1f8vHNQ5rlTV/y+YmTmuVNX/L5iZvaBU1f8vmJkXdFTV/0+Ymb2gVNX/T5iZF3RU1f+vmJm9oP///8+Ymb2g////r9q2vaD////P2ra9oP///6+Ymb2gVNX/r5iZF3RU1f/PmJm9oFTV/8+YmRd0VNX/r4qvw51U1f+v6aDDnVTV/6+Ymb2gVNX/r5iZF3RU1f+v6aDbkVTV/6/athd0VNX/r9q2vaBU1f+viq/bkVTV/8+YmRd0////r5iZF3T////P2rYXdP///6/athd0////r9q2F3RU1f+v2ra9oFTV/8/athd0VNX/z9q2vaBU1fChvY3//1TVkalIkv//VNXwob2NKOtU1ZGpSJIo61TV/2dAiijrVNX/Z0CK//9U1ZNzD4go61TVk3MPiP//VNVtVkiS//9U1Q5evY3//1TVbVZIkijrVNUOXr2NKOtU1aJRk5f//1TVbVZIkv//VNWiUZOXKOtU1W1WSJIo61TV/09Bnf//VNWiUZOX//9U1f9PQZ0o61TVolGTlyjrVNWiUe+i//9U1f9PQZ3//1TVolHvoijrVNX/T0GdKOtU1Q5evY0o61TVDl69jf//VNX/Z0CKKOtU1f9nQIr//1TVbVY5qP//VNWiUe+i//9U1W1WOago61TVolHvoijrVNUOXsWs//9U1W1WOaj//1TVDl7FrCjrVNVtVjmoKOtU1Q5exaz//1TVDl7FrCjrVNX/Z0Gw//9U1f9nQbAo61TV/5cc1EacJsL/ZxzURpwmwv+XrvjVlCbC/2eu+NWUJsL/ZxzU21Gy8v+XHNTbUbLy/2eu+E1ZsvL/l674TVmy8v+XHNRGnFTV/5eu+NWUVNX/lxzU9JNU1f+XZeY8kFTV/5eu+E1ZVNX/l2Xm5l1U1f+XHNQtWlTV/5cc1NtRVNX/lxzULVomwv9nHNQtWibC/5dl5uZdJsL/Z2Xm5l0mwv9nrvjVlFTV/2eu+E1ZVNX/l6741ZRU1f+XrvhNWVTV/2cc1EacVNX/ZxzU9JNU1f9nrvjVlFTV/2dl5jyQVNX/Z674TVlU1f9nZebmXVTV/2cc1C1aVNX/ZxzU21FU1f9nZebmXVTV/2dl5jyQVNX/l2Xm5l1U1f+XZeY8kFTV/2cc1PSTsvL/lxzU9JOy8v9nZeY8kLLy/5dl5jyQsvL/r6AOvmAKwf9PoA6+YArB/6/FV6pqCsH/T8VXqmoKwf+vDmolbQrB/08OaiVtCsH/r1d8oG8Kwf9PV3ygbwrB/0+gDvlCv/b/r6AO+UK/9v9PV3zbUb/2/69XfNtRv/ZeaVd821G/9v9PoA75QlTV/0+gDr5gVNX/r6AO+UJU1f+voA6+YFTV/69XfKBvVNX/r1d8KWtU1f+vV3zbUVTV/6+gDr5gVNX/r6AO+UJU1f9PV3ygb1TV/09XfNtRVNX/T6AOvmBU1f9PoA75QlTV/3+mkSjr//9teQySKOv//5GGDJIo6///sIw0kyjr//9OczSTKOv//wxuDJUo6///8pEMlSjr///6lXSXKOv//wRqdJco6///g5hAmijr//97Z0CaKOv//2GZQZ0o6///nWZBnSjr//97Z0KgKOv//4OYQqAo6///BGoOoyjr///6lQ6jKOv//wxudaUo6///8pF1pSjr//+wjE2nKOv//05zTaco6///bXl2qCjr//+RhnaoKOv///9/26go6////8/4ijTlVNX/z/iKHbFU1f//+Io05VTV///4ih2xVNWf1tNBNOX//18p00E05f////+9VDTl//8AAL1UNOX////PxVc05f/////4ijTl////z/iKNOX///8vxVc05f//AAD4ijTl////L/iKNOX//5/W00Edsf////+9VB2x//9fKdNBHbH//wAAvVQdsf///y/FVx2x//8AAPiKHbH///8v+Iodsf///8/FVx2x//////iKHbH////P+Iodsf//AAD4ijTlVNUAAPiKHbFU1f8v+Io05VTV/y/4ih2xVNX/T1d8akpU1f9Piq98QVTV/097xWpKVNX/T3vF4g5U1f9Piq/iDlTV/095jXxBVNX/T8VX4g5U1f9PY27iDlTV/697xWpKVNX/r3mNfEFU1f+vV3xqSlTV/6/FV+IOVNX/r2Nu4g5U1f+viq98QVTV/697xeIOVNX/r4qv4g5U1f8vV3xqSv///09XfGpK////LxzUakr///9Pe8VqSv///697xWpK////zxzUakr////PV3xqSv///69XfGpK////L4qvz5f14P8v6aDPl/Xg/z+Kr9uR9eD/P+mg25H14P+/iq/DnWjL/8+Kr8+XaMv/v+mgw51oy//P6aDPl2jL/y/FVyjr///wob2NKOv////PxVco6///kalIkijr//9crpOXKOv////P08Eo6////5dAiijr//9rjA+IKOv///9/T4co6////69BnSjr//9cru+iKOv//5GpOago6///8KHFrCjr////l0GwKOv//2uMc7Io6////38ysyjr//+Tcw+IKOv///8v08Eo6///k3Nzsijr////Z0GwKOv//w5exawo6///bVY5qCjr//+iUe+iKOv///9PQZ0o6///olGTlyjr//9tVkiSKOv//w5evY0o6////2dAiijr////ZxzUydpU1f8vHNS341TV/88c1LfjVNX/lxzUydpU1f+XHNTtyFTV/2cc1O3IVNX/LxzUakpU1f9nHNRGnFTV/5cc1EacVNX/lxzU9JNU1f+XHNQtWlTV/5cc1NtRVNX/ZxzU21FU1f/PHNRqSlTV/2cc1PSTVNX/ZxzULVpU1f8vxVfzhf///0/FV/OF////L1d884X///9PV3zzhf///y/FVzTlVNX/L8VXKOtU1f/PxVc05VTV/8/FVyjrVNX/L9PBKOtU1f8vxVco61TV/y8c1LfjVNX/L/iKNOVU1f8v+IodsVTV/y/FV/OFVNX/L8VXHbFU1f8vmJm9oFTV/y/atr2gVNX/LxzUakpU1f8v2rYXdFTV/y+YmRd0VNX/L1d884VU1f8vV3xqSlTV/y/FVzTlVNX/z9PBKOv8xf8v08Eo6/zF/88c1Lfj/MX/LxzUt+P8xf9PV3xqSlTV/09XfNtRVNVeaVd8akpU1V5pV3zbUVTV/69XfGpKVNX/r1d821FU1f+vV3wpa1TV/69XfKBvVNX/r1d8gn5U1f9PV3yCflTV/09XfKBvVNX/z1d8akpU1f+vV3zzhVTV/89XfPOFVNX/L1d884VU1f8vV3xqSlTV/09XfPOFVNX/P4qvw51oy/8/6aDDnWjL/y+Kr8+XaMv/L+mgz5doy//Piq/Pl/Xg/7+Kr9uR9eD/z+mgz5f14P+/6aDbkfXg/y/FV/OFVNX/L8VXHbFU1f9PxVdkjVTV/6/FV2SNVNX/r8VXKatU1f9PxVcpq1TV/8/FVx2xVNX/z8VX84VU1f/PxVcdsVTV/8/4ih2xVNX/z8VX84VU1f/PmJm9oFTV/8/atr2gVNX/z1d884VU1f/PmJkXdFTV/89XfGpKVNX/zxzUakpU1f/P2rYXdFTV/8/4ijTlVNX/zxzUt+NU1f/P08Eo61TV/8/FVzTlVNX/z8VXKOtU1f+vxVfzhf///8/FV/OF////r1d884X////PV3zzhf///y8kSQAA////zyRJAAD///8vHNQAAP///88c1AAA////LxzU4g5U1f8vJEniDlTV/y8c1AAAVNX/LyRJAABU1f/PJEniDlTV/88c1OIOVNX/zyRJAABU1f/PHNQAAFTV/y8c1OIOVNX/LxzUAABU1f/PHNTiDlTV/88c1AAAVNX/LyRJAABU1f8vJEniDlTV/88kSQAAVNX/zyRJ4g5U1f8vJEniDv///6/FV+IO////zyRJ4g7////PHNTiDv///69jbuIO////r4qv4g7///9PY27iDv///697xeIO////T3vF4g7///9PxVfiDv///y8c1OIO////T4qv4g7///9/T4f///9/k3MPiP///39rjA+I////f/+XQIr/////a4wPiP////+Tcw+I//////9nQIr//6n6/5dAiv//qfqTcw+I//+p+vChvY3//////5dAiv//////Z0CK/////w5evY3//6n68KG9jf//qfr/Z0CK//+p+pGpSJL/////8KG9jf////8OXr2N//////9/ppH//6n6kalIkv//qfoOXr2N//+p+pGGDJL//6T+kalIkv//ZP//f6aR//+k/rCMNJP//2T/kYYMkv//ZP9crpOX//8n/ZGpSJL//yf9sIw0k///J/3ykQyV//+69Fyuk5f//7r0sIw0k///uvT6lXSX//8s+Fyuk5f//yz48pEMlf//LPiDmECa//+M/1yuk5f//4z/+pV0l///jP//r0Gd//9U9Vyuk5f//1T1g5hAmv//VPVhmUGd///h9P+vQZ3//+H0g5hAmv//4fRcru+i//////+vQZ3/////YZlBnf////+DmEKg//836lyu76L//zfqYZlBnf//N+r6lQ6j//9U9Vyu76L//1T1g5hCoP//VPWRqTmo//+M/1yu76L//4z/+pUOo///jP/ykXWl//+p6pGpOaj//6nq+pUOo///qeqwjE2n///G9ZGpOaj//8b18pF1pf//xvWRhnao//8n/ZGpOaj//yf9sIxNp///J/3wocWs//9k/5GpOaj//2T/kYZ2qP//ZP//f9uo//988vChxaz//3zykYZ2qP//fPIOXr2N//9agW1WSJL//1qB/3+mkf//WoFteQyS//+k/v9/ppH//6T+bVZIkv//ZP9OczST//9k/215DJL//2T/olGTl///J/1OczST//8n/W1WSJL//yf9DG4Mlf//uvROczST//+69KJRk5f//7r0BGp0l///LPgMbgyV//8s+KJRk5f//yz4e2dAmv//jP8EanSX//+M/6JRk5f//4z//09Bnf//VPV7Z0Ca//9U9aJRk5f//1T1nWZBnf//4fR7Z0Ca///h9P9PQZ3//+H0e2dCoP////+dZkGd//////9PQZ3/////olHvov//4fR7Z0Kg///h9P9PQZ3//+H0BGoOo///VPV7Z0Kg//9U9aJR76L//1T1bVY5qP//jP8Eag6j//+M/6JR76L//4z/DG51pf//qeoEag6j//+p6m1WOaj//6nqTnNNp///xvUMbnWl///G9W1WOaj//8b1bXl2qP//J/1Oc02n//8n/W1WOaj//yf9Dl7FrP//ZP9teXao//9k/21WOaj//2T//3/bqP//fPJteXao//988g5exaz//3zy8KHFrP//7vX/f9uo///u9Q5exaz//+71/5dBsP/////wocWs/////w5exaz//////2dBsP//qfr/l0Gw//+p+g5exaz//6n6a4xzsv//////l0Gw//////9nQbD/////k3Nzsv//qfprjHOy//+p+v9nQbD//6n6/38ys/////9rjHOy/////5Nzc7L/////AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f9iJ2AnYidgJ2InYCdiJ2An/f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3/YiSb22Ikm9tiJJvbYiSb2////f////3////9/////f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f////3//P/8//z//P/8//z//P/8/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///////9/////f////3////9/////f/9/////f////3////9/////P/+//z//v/8//7//P/+/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/JdElUSXRJVHy5PJk8uTyZP///3////9/8uQMm/LkDJvZLtmu2S7Zrv8//7//P/+//7//P9mu2S7/v/8/2a7ZLgwb8mQMG/JkAAD/fwAA/38Mm/Lk2a4l0Qyb8uTZriXR/7//P/+//z8l0SVRJdElUfJk8uT/f///8mTy5P9////ZLiVR2S4lUQwb8mQMG/Jk2a4l0f+//7/ZriXR/7//v/JkDBslUdku8mQMGyVR2S4MGwybDBsMmwAA/38AAP9//z//P/8//z/ZLiVR2S4lUSXR2a4l0dmu/7//v/+//78AAP9/AAD/fwwbDJsMGwybDBvyZAwb8mTZLiVR2S4lUSVR2S7/P/8/JVHZLv8//z/y5PJk8uTyZP///3////9/8uQMm/LkDJsl0dmuJdHZrv9///8Mm/Lk/3///wyb8uQMmwwb/38AAAybDBv/fwAADBsMmwwbDJvZLtmu2S7ZrtkuJVHZLiVR/z//P/8//z//fwAA8mQMG/9/AADyZAwb2a7ZLgybDBvZrtkuDJsMGwAA/38AAP9/DBvyZAwb8mQlUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0SXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/////f////3/y5PJk8uTyZP9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fyXRJVEl0SVR/7//P/+//z/Zrtku/7//P9mu2S7/v/8/8mQMG/9/AADyZAwb/38AAAybDBvZrtkuDJsMG9mu2S4lUdku8mQMGyVR2S7yZAwb8uTyZPLk8mQl0SVRJdElUf9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/3////9/////f////3///////3////9/////f////3//f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//P/8/JVHZLv8//z8lUdku2S7Zrtku2a4MGwybDBsMmyVRJdH/P/+/JVEl0f8//7/yZPLkJVEl0fJk8uQlUSXR/3////Jk8uT/f///8mTy5Ayb8uT/f///DJvy5P9/////P/+//z//v9ku2a7ZLtmu2a4l0Qyb8uTZriXRDJvy5P+//7/ZriXR/7//v9muJdH/v/+//7//vyXR2a4l0dmu////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/////////////////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/////////////////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/////////////////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/////////////////9//3//f/9//3//f/9//3//f/9//3//f////////////////////////////3//f/9//3//f/9//////////////////////////////////////////////////3//f/9//3//f/9//////////////////3//f/9//3//f/9//3//f/9//3//f/9//////////////////3//f/9//3//f/9//////////////////////////////////////////////////3//f/9//3//f/9//////////////////////////////////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_hwb5q") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qu0i7"] -resource_name = "metal" -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cdt4h"] -resource_name = "dark" -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fycn1"] -resource_name = "darkMetal" -albedo_color = Color(0.793075, 0.81829, 0.89044, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_20it6"] -resource_name = "purple" -albedo_color = Color(0.804665, 0.693804, 0.98256, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_og8k7"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34896613377, -"index_count": 420, -"index_data": PackedByteArray("AgAAAAEAAwACAAEABAADAAEAAQAFAAQACAAGAAcABwAJAAgACQAKAAgACgALAAgADgAMAA0ADQAPAA4ADAALAAoACgANAAwABAAQABEAEQADAAQAEAASABMAEwARABAAEgAGAAgACAATABIAAgAOAA8ADwAAAAIAFgAUABUAFQAXABYAFwAYABYAGwAZABoAGgAcABsAFQAdAB4AHgAXABUAFgAfACAAIAAUABYAGQAhACIAIgAaABkAIgAjABoAHgAdACAAIAAfAB4AHwAkAB4AJgAlABsAGwAnACYAGwAcACcAJwAjACIAIgAmACcAKgAoACkAKQArACoAKwAsACoALAAtACoALQAuACoALgAvACoAMAArACkAMAApADEAMAAxADIAMwAwADIANAAzADIANQA0ADIANgA1ADIAMgA3ADYAKQAoADgAOAA5ACkAPAA6ADsAOwA5ADwAOQA9ADwAOQA4AD0AOAA+AD0APgA/AD0APgBAAD8APgBBAEAAQgA7ADoAQgA6AEMAQgBDAEQAQgBEAEUARgBCAEUARQBHAEYAQgAyADEAMQA7AEIAKQA5ADsAOwAxACkASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUABIAEoASgBRAFAAVABSAFMAUwBVAFQAWABWAFcAVwBZAFgAWwBaAFAAUABRAFsAXgBcAF0AXQBfAF4AVgBgAGEAYQBXAFYAYwBiAFwAXABeAGMAUwBSAGQAZABlAFMAZgBlAGQAZABnAGYAXQBoAGkAaQBfAF0AUABaAEkASQBIAFAASgBLAFsAWwBRAEoAbABqAGsAawBtAGwAawBqAE0ATQBMAGsATgBPAGwAbABtAE4AawBMAE4ATgBtAGsAcABuAG8AbwBxAHAAcQByAHAAcQBzAHIAcwB0AHIAcwB1AHQAdwB2AFcAVwB4AHcAVwBhAHgAWQBXAHYAWAB5AHoAegBWAFgAegB7AFYAewBgAFYASwB0AEYARgBbAEsAdABCAEYARgA3AFsANwBPAFsANwBsAE8ANwAqAGwAKgB1AGwAdAB1AD4AdQAqAD4APgA4AHQAOABCAHQAMgBCADgAOAAoADIAKAA3ADIAKAAqADcA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("bNuAsqH2AABs2x/LofYAAGzbgLLm4wAAbNtu1+bjAABs227X//8AAGzbH8v//wAAkiRu1///AACSJB/L//8AAJIkbtfm4wAAkiQfy6H2AACSJICyofYAAJIkgLLm4wAAJEkwpubjAAAkSTCmofYAANq2MKbm4wAA2rYwpqH2AADatr7j//8AANq2vuPm4wAAJEm+4///AAAkSb7j5uMAANq2aoe0qwAA2rZqhzefAAAjyWqHtKsAACPJaoc3nwAAbNtqh3WlAADbNhp7N58AACRJGns3nwAA2zZqhzefAAAkSWqHN58AANq2Gns3nwAAI8kaezefAAAjyRp7tKsAANq2Gnu0qwAAkiQae3WlAADbNhp7tKsAACRJGnu0qwAAbNsae3WlAACSJGqHdaUAANs2aoe0qwAAJElqh7SrAABtm77jh1AAAG2byu6HUAAAbZu+481HAABtm/7/h1AAAG2bsP0qTAAAbZtd/H5LAABtm2T3+UgAAG2byu7NRwAAbZv+/xmmAABtm8ruGaYAAG2bvuMZpgAAbZuw/XaqAABtm138I6sAAG2bZPeorQAAbZvK7tOuAABtm77j064AAJFkvuOHUAAAkWTK7odQAACRZP7/GaYAAJFkyu4ZpgAAkWT+/4dQAACRZLD9KkwAAJFkvuPNRwAAkWRd/H5LAACRZGT3+UgAAJFkyu7NRwAAkWS+4xmmAACRZLD9dqoAAJFkXfwjqwAAkWRk96itAACRZL7j064AAJFkyu7TrgAASFI19tnVAAAkSb7j2dUAAEhSNfZ8zAAAJEm+4x7DAABtmzX22dUAAEiSvuPZ1QAAbZs19nzMAABIkr7jHsMAAJFkNfbZ1QAAkWQ19nzMAAAAAAvI064AAAAAC8inQgAAkiRa1NOuAACSJFrUp0IAACRJQFnzcQAA2rZAWfNxAAAkSaNo83EAANq2o2jzcQAAtm2+49nVAAC2bb7jHsMAAP//HKPTrgAA//8LyNOuAAD//xyjp0IAAP//C8inQgAAJElAWb1fAADatkBZvV8AAGzbzZbTrgAAbNvNlqdCAAAAAByj064AAAAAHKOnQgAAkiTNlqdCAACSJM2W064AAGzbWtTTrgAAbNta1KdCAADatr7j2dUAALatNfbZ1QAA2ra+4x7DAAC2rTX2fMwAACRJMKYAAAAA2rYwpgAAAACSJICyAAAAAGzbgLIAAAAAkiRu1wAAAABs227XAAAAACRJvuMAAAAA2ra+4wAAAADatqNowXkAANq23EnBeQAA2rbcSSNdAAAkSaNowXkAACRJ3EnBeQAAJEncSSNdAAAkSYCyofYAACRJH8uh9gAAJEmAsubjAAAkSW7X5uMAACRJbtf//wAAJEkfy///AADatoCyofYAANq2gLLm4wAA2rZu1///AADath/L//8AANq2btfm4wAA2rYfy6H2AADatvJ0064AAGzb8nTTrgAA2raRjdOuAABs25GN064AANq28nT/fwAAbNvydP9/AABs25GN/38AANq2kY3/fwAAJEnydP9/AACSJPJ0/38AACRJkY3/fwAAkiSRjf9/AACSJPJ0064AACRJ8nTTrgAAkiSRjdOuAAAkSZGN064AACRJo2hXYgAAJEmjaB5DAAAkSU8MulIAACRJTwyCMwAA2rajaFdiAADatqNoHkMAANq2u0fGXAAA2rZPDLpSAADatk8MgjMAANq2Yw+bzwAA2rbcSZvPAADatgAA/78AANq23EljsAAA2rYAAGOwAAAkSQAA/78AACRJYw+bzwAAJEncSZvPAAAkSdxJY7AAACRJAABjsAAAbNvcSWnXAABs26NoHsMAAGzb3EnBeQAAbNujaMF5AABs227XHsMAAGzbe2Lm4wAAkiTcSWnXAACSJNxJwXkAAJIke2Lm4wAAkiRu1x7DAACSJKNoHsMAAJIko2jBeQAAkiSAslA7AACSJKNoUDsAAGzbo2hQOwAAJEkwplA7AADatjCmUDsAAGzbgLJQOwAA") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34896613377, -"index_count": 192, -"index_data": PackedByteArray("fgB8AH0AfwB+AH0AgAB/AH0AfQCBAIAAggB8AH4AfgCDAIIAhgCEAIUAhQCHAIYAhwCCAIYAggCDAIYAhgB/AIAAgACEAIYAigCIAIkAiQCLAIoAiQCIAIwAjACNAIkAjgCNAIwAjACPAI4AjgCPAIoAigCLAI4AiAAUACAAIACMAIgAIAAdAIwAHQCPAIwAigCPABQAFACIAIoAjwAVABQAjwAdABUAkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAkgCTAJYAlgCXAJIAlwCVACcAJwCSAJcAJwAcAJIAHAAaAJIAIwAnAJUAlQCQACMAkAAaACMAkACSABoAlQCUAJEAkQCQAJUAmQCYAGAAYAB7AJkAewCaAJkAmgCbAJkAYQCcAJ0AnQB4AGEAnQCeAHgAnQCfAJ4AnQCgAJ8AnABhAGAAYACYAJwAmQCbAKAAoACdAJkAoACbAJoAmgCfAKAAngCfAJoAmgB7AJ4AewB4AJ4AhgCDAH4AfgB/AIYA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("bNuAsqH2AABs2x/LofYAAGzbgLLm4wAAbNtu1+bjAABs227X//8AAGzbH8v//wAAkiRu1///AACSJB/L//8AAJIkbtfm4wAAkiQfy6H2AACSJICyofYAAJIkgLLm4wAAJEkwpubjAAAkSTCmofYAANq2MKbm4wAA2rYwpqH2AADatr7j//8AANq2vuPm4wAAJEm+4///AAAkSb7j5uMAANq2aoe0qwAA2rZqhzefAAAjyWqHtKsAACPJaoc3nwAAbNtqh3WlAADbNhp7N58AACRJGns3nwAA2zZqhzefAAAkSWqHN58AANq2Gns3nwAAI8kaezefAAAjyRp7tKsAANq2Gnu0qwAAkiQae3WlAADbNhp7tKsAACRJGnu0qwAAbNsae3WlAACSJGqHdaUAANs2aoe0qwAAJElqh7SrAABtm77jh1AAAG2byu6HUAAAbZu+481HAABtm/7/h1AAAG2bsP0qTAAAbZtd/H5LAABtm2T3+UgAAG2byu7NRwAAbZv+/xmmAABtm8ruGaYAAG2bvuMZpgAAbZuw/XaqAABtm138I6sAAG2bZPeorQAAbZvK7tOuAABtm77j064AAJFkvuOHUAAAkWTK7odQAACRZP7/GaYAAJFkyu4ZpgAAkWT+/4dQAACRZLD9KkwAAJFkvuPNRwAAkWRd/H5LAACRZGT3+UgAAJFkyu7NRwAAkWS+4xmmAACRZLD9dqoAAJFkXfwjqwAAkWRk96itAACRZL7j064AAJFkyu7TrgAASFI19tnVAAAkSb7j2dUAAEhSNfZ8zAAAJEm+4x7DAABtmzX22dUAAEiSvuPZ1QAAbZs19nzMAABIkr7jHsMAAJFkNfbZ1QAAkWQ19nzMAAAAAAvI064AAAAAC8inQgAAkiRa1NOuAACSJFrUp0IAACRJQFnzcQAA2rZAWfNxAAAkSaNo83EAANq2o2jzcQAAtm2+49nVAAC2bb7jHsMAAP//HKPTrgAA//8LyNOuAAD//xyjp0IAAP//C8inQgAAJElAWb1fAADatkBZvV8AAGzbzZbTrgAAbNvNlqdCAAAAAByj064AAAAAHKOnQgAAkiTNlqdCAACSJM2W064AAGzbWtTTrgAAbNta1KdCAADatr7j2dUAALatNfbZ1QAA2ra+4x7DAAC2rTX2fMwAACRJMKYAAAAA2rYwpgAAAACSJICyAAAAAGzbgLIAAAAAkiRu1wAAAABs227XAAAAACRJvuMAAAAA2ra+4wAAAADatqNowXkAANq23EnBeQAA2rbcSSNdAAAkSaNowXkAACRJ3EnBeQAAJEncSSNdAAAkSYCyofYAACRJH8uh9gAAJEmAsubjAAAkSW7X5uMAACRJbtf//wAAJEkfy///AADatoCyofYAANq2gLLm4wAA2rZu1///AADath/L//8AANq2btfm4wAA2rYfy6H2AADatvJ0064AAGzb8nTTrgAA2raRjdOuAABs25GN064AANq28nT/fwAAbNvydP9/AABs25GN/38AANq2kY3/fwAAJEnydP9/AACSJPJ0/38AACRJkY3/fwAAkiSRjf9/AACSJPJ0064AACRJ8nTTrgAAkiSRjdOuAAAkSZGN064AACRJo2hXYgAAJEmjaB5DAAAkSU8MulIAACRJTwyCMwAA2rajaFdiAADatqNoHkMAANq2u0fGXAAA2rZPDLpSAADatk8MgjMAANq2Yw+bzwAA2rbcSZvPAADatgAA/78AANq23EljsAAA2rYAAGOwAAAkSQAA/78AACRJYw+bzwAAJEncSZvPAAAkSdxJY7AAACRJAABjsAAAbNvcSWnXAABs26NoHsMAAGzb3EnBeQAAbNujaMF5AABs227XHsMAAGzbe2Lm4wAAkiTcSWnXAACSJNxJwXkAAJIke2Lm4wAAkiRu1x7DAACSJKNoHsMAAJIko2jBeQAAkiSAslA7AACSJKNoUDsAAGzbo2hQOwAAJEkwplA7AADatjCmUDsAAGzbgLJQOwAA") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34896613377, -"index_count": 294, -"index_data": PackedByteArray("AQAAAIIAggCHAAEACgCCAAAADQAKAAAAAAAPAA0ACgB8AIIACgB9AHwACgAJAH0AAQCHAIUAhQAFAAEABAAFAIUAhQCEAAQAhAAQAAQAhACAABAAgAAGABAABgASABAABwAGAIAAgACBAAcAfQAJAAcABwCBAH0AowChAKIAogCkAKMApAClAKMAowCmAKcApwChAKMAqQCoAKcApwCmAKkApgCqAKkApQCqAKYApgCjAKUAogChAKcApwCoAKIAqQCqAKUApQCkAKkArQCrAKwArACuAK0ArwCsAKsAAwCvAKsAAgADAKsAqwCwAAIAeAB7AHoAegB3AHgApAB3AHoAqQCkAHoAsQCpAHoAegCyALEAsQCoAKkApACiAHcAqACxAKsAqwCiAKgAqwB3AKIAqwCtAHcAsACrALEAsQCzALAAAgCwALMAswAOAAIADAAOALMAswALAAwAMAA6ADwAPAArADAAQAAuAC0ALQA/AEAALQAsAD8ALAA9AD8ANQA2AEcARwBFADUAKwA8AD0APQAsACsAQQAvAC4ALgBAAEEAQwA6ADAAMAAzAEMANAA1AEUARQBEADQARAAzADQARABDADMANgA3AEYARgBHADYAQQA+ACoAKgAvAEEArwADABEAEQBqAK8AagBsAK8ATwBNAFsAWgBbAE0AWgBNABEAWgARABMAEwBJAFoATQBqABEAtAAIAAsACwCzALQAswCxALQAsQC1ALQAsQCyALUAsgC2ALUASQATAAgACAC0AEkAtABLAEkA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("bNuAsqH2AABs2x/LofYAAGzbgLLm4wAAbNtu1+bjAABs227X//8AAGzbH8v//wAAkiRu1///AACSJB/L//8AAJIkbtfm4wAAkiQfy6H2AACSJICyofYAAJIkgLLm4wAAJEkwpubjAAAkSTCmofYAANq2MKbm4wAA2rYwpqH2AADatr7j//8AANq2vuPm4wAAJEm+4///AAAkSb7j5uMAANq2aoe0qwAA2rZqhzefAAAjyWqHtKsAACPJaoc3nwAAbNtqh3WlAADbNhp7N58AACRJGns3nwAA2zZqhzefAAAkSWqHN58AANq2Gns3nwAAI8kaezefAAAjyRp7tKsAANq2Gnu0qwAAkiQae3WlAADbNhp7tKsAACRJGnu0qwAAbNsae3WlAACSJGqHdaUAANs2aoe0qwAAJElqh7SrAABtm77jh1AAAG2byu6HUAAAbZu+481HAABtm/7/h1AAAG2bsP0qTAAAbZtd/H5LAABtm2T3+UgAAG2byu7NRwAAbZv+/xmmAABtm8ruGaYAAG2bvuMZpgAAbZuw/XaqAABtm138I6sAAG2bZPeorQAAbZvK7tOuAABtm77j064AAJFkvuOHUAAAkWTK7odQAACRZP7/GaYAAJFkyu4ZpgAAkWT+/4dQAACRZLD9KkwAAJFkvuPNRwAAkWRd/H5LAACRZGT3+UgAAJFkyu7NRwAAkWS+4xmmAACRZLD9dqoAAJFkXfwjqwAAkWRk96itAACRZL7j064AAJFkyu7TrgAASFI19tnVAAAkSb7j2dUAAEhSNfZ8zAAAJEm+4x7DAABtmzX22dUAAEiSvuPZ1QAAbZs19nzMAABIkr7jHsMAAJFkNfbZ1QAAkWQ19nzMAAAAAAvI064AAAAAC8inQgAAkiRa1NOuAACSJFrUp0IAACRJQFnzcQAA2rZAWfNxAAAkSaNo83EAANq2o2jzcQAAtm2+49nVAAC2bb7jHsMAAP//HKPTrgAA//8LyNOuAAD//xyjp0IAAP//C8inQgAAJElAWb1fAADatkBZvV8AAGzbzZbTrgAAbNvNlqdCAAAAAByj064AAAAAHKOnQgAAkiTNlqdCAACSJM2W064AAGzbWtTTrgAAbNta1KdCAADatr7j2dUAALatNfbZ1QAA2ra+4x7DAAC2rTX2fMwAACRJMKYAAAAA2rYwpgAAAACSJICyAAAAAGzbgLIAAAAAkiRu1wAAAABs227XAAAAACRJvuMAAAAA2ra+4wAAAADatqNowXkAANq23EnBeQAA2rbcSSNdAAAkSaNowXkAACRJ3EnBeQAAJEncSSNdAAAkSYCyofYAACRJH8uh9gAAJEmAsubjAAAkSW7X5uMAACRJbtf//wAAJEkfy///AADatoCyofYAANq2gLLm4wAA2rZu1///AADath/L//8AANq2btfm4wAA2rYfy6H2AADatvJ0064AAGzb8nTTrgAA2raRjdOuAABs25GN064AANq28nT/fwAAbNvydP9/AABs25GN/38AANq2kY3/fwAAJEnydP9/AACSJPJ0/38AACRJkY3/fwAAkiSRjf9/AACSJPJ0064AACRJ8nTTrgAAkiSRjdOuAAAkSZGN064AACRJo2hXYgAAJEmjaB5DAAAkSU8MulIAACRJTwyCMwAA2rajaFdiAADatqNoHkMAANq2u0fGXAAA2rZPDLpSAADatk8MgjMAANq2Yw+bzwAA2rbcSZvPAADatgAA/78AANq23EljsAAA2rYAAGOwAAAkSQAA/78AACRJYw+bzwAAJEncSZvPAAAkSdxJY7AAACRJAABjsAAAbNvcSWnXAABs26NoHsMAAGzb3EnBeQAAbNujaMF5AABs227XHsMAAGzbe2Lm4wAAkiTcSWnXAACSJNxJwXkAAJIke2Lm4wAAkiRu1x7DAACSJKNoHsMAAJIko2jBeQAAkiSAslA7AACSJKNoUDsAAGzbo2hQOwAAJEkwplA7AADatjCmUDsAAGzbgLJQOwAA") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"format": 34896613377, -"index_count": 240, -"index_data": PackedByteArray("GwAlACEAIQAZABsAtgCyAHoAegB5ALYAtAC1AFQAVAByALQAtQCWAFQAVABVAHIAVQC3AHIAVQBmALcAtwBwAHIAZwBUAJYAlgCTAGcAkwBmAGcAkwCRAGYAkQC2AGYAtgC4AGYAuAC3AGYAtQC2AJQAlACWALUAtgCRAJQAuAC2AJkAmQC5ALgAmQCdALkAnQCcALkAnABZALkAWQB2ALkAdgCuALkAWABZAJwAnACYAFgAmACZALYAtgB5AJgAeQBYAJgAJAAYABcAFwAeACQAJQAmACIAIgAhACUAHwAWABgAGAAkAB8AtwC4ALkAuQC6ALcAuwC6ALkAuQC8ALsAZQBmAFUAVQBTAGUAaQBjAF4AXgBfAGkAbwBuALoAugC7AG8AVABnAGQAZABSAFQAXABiAGgAaABdAFwAcQBvALsAuwC8AHEAdABLALQAtAByAHQAdgB3AK0ArQCuAHYAbgBwALcAtwC6AG4ArACvAIkAiQCuAKwArwCLAIkAiQCNAK4AYwCuAI0AYwCNAI4AjgCLAGIAYgBjAI4AYwC5AK4AYwBpALkAaQC8ALkAaACLAK8AaABiAIsArwBzAGgAcwBpAGgAcwC8AGkAcwBxALwAcwCvAGwAbAB1AHMA"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 189, -"vertex_data": PackedByteArray("bNuAsqH2AABs2x/LofYAAGzbgLLm4wAAbNtu1+bjAABs227X//8AAGzbH8v//wAAkiRu1///AACSJB/L//8AAJIkbtfm4wAAkiQfy6H2AACSJICyofYAAJIkgLLm4wAAJEkwpubjAAAkSTCmofYAANq2MKbm4wAA2rYwpqH2AADatr7j//8AANq2vuPm4wAAJEm+4///AAAkSb7j5uMAANq2aoe0qwAA2rZqhzefAAAjyWqHtKsAACPJaoc3nwAAbNtqh3WlAADbNhp7N58AACRJGns3nwAA2zZqhzefAAAkSWqHN58AANq2Gns3nwAAI8kaezefAAAjyRp7tKsAANq2Gnu0qwAAkiQae3WlAADbNhp7tKsAACRJGnu0qwAAbNsae3WlAACSJGqHdaUAANs2aoe0qwAAJElqh7SrAABtm77jh1AAAG2byu6HUAAAbZu+481HAABtm/7/h1AAAG2bsP0qTAAAbZtd/H5LAABtm2T3+UgAAG2byu7NRwAAbZv+/xmmAABtm8ruGaYAAG2bvuMZpgAAbZuw/XaqAABtm138I6sAAG2bZPeorQAAbZvK7tOuAABtm77j064AAJFkvuOHUAAAkWTK7odQAACRZP7/GaYAAJFkyu4ZpgAAkWT+/4dQAACRZLD9KkwAAJFkvuPNRwAAkWRd/H5LAACRZGT3+UgAAJFkyu7NRwAAkWS+4xmmAACRZLD9dqoAAJFkXfwjqwAAkWRk96itAACRZL7j064AAJFkyu7TrgAASFI19tnVAAAkSb7j2dUAAEhSNfZ8zAAAJEm+4x7DAABtmzX22dUAAEiSvuPZ1QAAbZs19nzMAABIkr7jHsMAAJFkNfbZ1QAAkWQ19nzMAAAAAAvI064AAAAAC8inQgAAkiRa1NOuAACSJFrUp0IAACRJQFnzcQAA2rZAWfNxAAAkSaNo83EAANq2o2jzcQAAtm2+49nVAAC2bb7jHsMAAP//HKPTrgAA//8LyNOuAAD//xyjp0IAAP//C8inQgAAJElAWb1fAADatkBZvV8AAGzbzZbTrgAAbNvNlqdCAAAAAByj064AAAAAHKOnQgAAkiTNlqdCAACSJM2W064AAGzbWtTTrgAAbNta1KdCAADatr7j2dUAALatNfbZ1QAA2ra+4x7DAAC2rTX2fMwAACRJMKYAAAAA2rYwpgAAAACSJICyAAAAAGzbgLIAAAAAkiRu1wAAAABs227XAAAAACRJvuMAAAAA2ra+4wAAAADatqNowXkAANq23EnBeQAA2rbcSSNdAAAkSaNowXkAACRJ3EnBeQAAJEncSSNdAAAkSYCyofYAACRJH8uh9gAAJEmAsubjAAAkSW7X5uMAACRJbtf//wAAJEkfy///AADatoCyofYAANq2gLLm4wAA2rZu1///AADath/L//8AANq2btfm4wAA2rYfy6H2AADatvJ0064AAGzb8nTTrgAA2raRjdOuAABs25GN064AANq28nT/fwAAbNvydP9/AABs25GN/38AANq2kY3/fwAAJEnydP9/AACSJPJ0/38AACRJkY3/fwAAkiSRjf9/AACSJPJ0064AACRJ8nTTrgAAkiSRjdOuAAAkSZGN064AACRJo2hXYgAAJEmjaB5DAAAkSU8MulIAACRJTwyCMwAA2rajaFdiAADatqNoHkMAANq2u0fGXAAA2rZPDLpSAADatk8MgjMAANq2Yw+bzwAA2rbcSZvPAADatgAA/78AANq23EljsAAA2rYAAGOwAAAkSQAA/78AACRJYw+bzwAAJEncSZvPAAAkSdxJY7AAACRJAABjsAAAbNvcSWnXAABs26NoHsMAAGzb3EnBeQAAbNujaMF5AABs227XHsMAAGzbe2Lm4wAAkiTcSWnXAACSJNxJwXkAAJIke2Lm4wAAkiRu1x7DAACSJKNoHsMAAJIko2jBeQAAkiSAslA7AACSJKNoUDsAAGzbo2hQOwAAJEkwplA7AADatjCmUDsAAGzbgLJQOwAA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_33sn6"] -resource_name = "blasterA_Mesh blasterA" -_surfaces = [{ -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("XQlYb10JlWMYHFhvGBy0XQAAtF0AAJVj//+0Xf//lWPm47RdofaVY6H2WG/m41hvXYmJ5V2JLfehdonloXYt9+bjA2yh9gNs5uNUdKH2VHQAAANsGBwDbAAAVHQYHFR0oXb//6F2ieVdif//XYmJ5f//VHTm41R0//8DbObjA2wYHFR0XQlUdBgcA2xdCQNsXYmfsF2J3KR8jJ+wfIzcpJuPvqp8jM2JXYnNiXyM7INdieyDoXbNiYJzzYmhduyDgnPsg3yMzYldic2JfIzsg12J7IObj76qfIyfsHyM3KRdidykXYmfsKF23KShdp+wgnPcpIJzn7BjcL6qY3C+qoJz3KSCc5+woXafsKF23KShds2JgnPNiaF27IOCc+yDd6/TV3evjFIxuNNXd69VStSzbkuAtBFMBbdwTjG4jFLlWVVK5VmMUuVZ01eIVW5L21QRTFZScE4rUYxSK1HTV66E01dQe9NXroSMUlB7jFIZplVKGaaMUodQVUqHUIxSKkxuS4dQ01fNR9NXfksRTPlIcE7NR4xSGabTV3aqbksjqxFMqK1wTtOu01fTroxSUHvTV1B7jFKuhNNXroSMUq6ExFquhFirUHvEWlB7WKvZ1ftQ2dXsWXzM+1Aew+xZ2dUMT9nV/Vd8zAxPHsP9VzF4T9gxeH3PUHtP2FB7fc/Trq99p0KvfdOuXnWnQl51XYn4maF2+JldiZ+SoXafkiUq/VclKgxP4Dz9V4IzDE8rUbF2K1EOZVe9sXZXvQ5loXYWaV2JFmmhdjx6XYk8eitRXnUrUQ5tV71edVe9Dm3Trg5l066xdqdCDmWnQrF2p0IObdOuDm2nQl51065edStRXnVXvV51K1GvfVe9r33gfNNXoXbTV1B7AU8xeAFPXYkWOR6DFjnNh50sroSdLCUq7FklKvtQ4DzsWYIz+1BdidNXHoPTV82HAU+uhAFP4HwWOaF2FjlQe50sMXidLK6ET9iuhH3PzYdP2M2Hfc9diTl1oXY5dZuPWG9jcFhvm4+0XWNwtF1didNXoXbTVz2Gn5ILjviZPYZSoduiUqFBoPiZC46fksF5n5LBeVKh83GfkvNx+JkjXVKhvV/4maF27w5Qe4+zoXarxuB8q8ZQe1irroSPsx6Dq8ZdiavGroSMUl2J7w5Qe4xSUHvEWq6EWKuuhMRaXQlYb10JlWMYHFhvGBy0XQAAtF0AAJVjoXYt96F2ieVdiS33XYmJ5f//tF3//5Vj5uO0XaH2lWOh9lhv5uNYb12JieVdif//oXaJ5aF2//+hdr6MY3C+jKF2+4BjcPuAXYmPs12Jd4ebj4+zm493h5uPvoxdib6Mm4/7gF2J+4ChdneHoXaPs2Nwd4djcI+zSlTsg0pUzYkrUb6M/3++jMdgzYn/f/uAK1H7gMdg7IOhdr6MY3C+jKF2+4BjcPuAm4++jF2Jvoybj/uAXYn7gJuPd4ebj4+zXYl3h12Jj7PTrr6MtKvsg9Ou+4D/f/uAN5/sgzefzYm0q82J/3++jGNwj7NjcHeHoXaPs6F2d4dXYp+SHkOfkrpSt76CM7e+p52fkuC8n5I4o1aiRK23vnzMt75diaCioXagol2J4ZqhduGaXYmo0qF2qNJdiS2koXYtpF2JcD9didZcoXZwP6F21lxdiVzJoXZcyV2Jcquhdl+qXYlfql2JWG+hdlhvXYm0XaF2tF2bj1hvXYlYb5uPlWNdiZVjY3BYb6F2OXVdiTl1oXZYb6F2lWNjcJVjoXYt96F2//9jcC33Y3D//5uPlWNdiZVjm4+0XV2JtF1didNXoXa0XWNwtF2hdtNXY3CVY6F2lWObjy33m4///12JLfddif//YzA/vWMwUqH/P5nEm09SoZtPmcShduZsoXZ3XF2J5mxdiXdcm89SoZvPP71jsFKh/7+ZxGOwmcRdiQi1XYm7w6F2CLWhdrvDXYk/vaF2P71diVKhoXZSoV2JmcShdpnEXYlSoaF2UqGVKFKh4Dyfkj2GUqE9hp+S4Dy0XRgcj5VdiaNmXYmVgaF2o2ahdpWBoXYItV2JCLWbj8fZm4+VgV2JbdKhdm3SY3DH2WNwlYGbj4tfY3CLX5uP6U5jcOlOm4+PlWNwj5Wbj1hvXYk5daF2OXVjcFhvUHtYq1B7xFquhFirroTEWlB7yINQe2yAroTIg66EbIBQe4d/roSHf66Ew19Qe8NfroSDW1B7g1uuhNGiroQSp1B70aJQexKnUHsMYlB7y12uhAxiroTLXVB7TJquhEyaUHuNnq6EjZ6uhIt9UHuLfa6EMHpQezB6roRKeVB7SnmuhNNXUHvTV66EjFJQe4xSroTTV1B701euhIxSUHuMUuA8VHQlKgNs4DwDbB6DT9jgfE/YoXZP2F2JT9gew7Rd5uOPlWnXUqEew5+SwXlSocF5n5LZ1QNsHsNUdB7DA2x8qOyDfKjNiYGh7IOBoc2Jm49SoV2JUqGbj5+SXYmfktOuLF8AALRd0677gKdCLF9QO1hvp0KSfAAAWG/TrpJ8/3/7gP9/voxQO5+S066+jJuPlYFdiSNOm4/KRmNwykahdiNOoXaJa6F2PHqhdpWBY3CVgV2JPHpdiYlrXYmVgYJX7IN9XuyDglfNiX1ezYmBoeyDgaHNiYaa7IOGms2JfV7sg3hl7IN9Xs2JeGXNiZuPn5JjcJ+Sm49Yb12JOXWhdjl1Y3BYb5uPknybjyxf2ZWxdtmVDmVjcJJ8JWqxdmNwLF8lag5lXYnvDl2Jykahdu8OoXbKRmNwknwlarF2Y3AsXyVqDmWbj5J8m48sX9mVsXbZlQ5l//9UdK7EVHT//wNsrsQDbAAAA2wAAFR0oXZSoWNwUqGhdp+SY3CfkgAAA2xQOwNsAABUdFA7VHQrUb6MK1H7gP9/voxXvZJ8/3/7gCtRknyuxJ+SV70sX67EWG8rUSxf//+0Xf//WG///1R0//8DbA=="), -"format": 34896613399, -"index_count": 420, -"index_data": PackedByteArray("AgAAAAEAAwACAAEABAADAAEAAQAFAAQACAAGAAcABwAJAAgACQAKAAgACgALAAgADgAMAA0ADQAPAA4AEgAQABEAEQATABIAFgAUABUAFQAXABYAGgAYABkAGQAbABoAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAJgAkACUAJQAnACYAJwAoACYAKwApACoAKgAsACsALwAtAC4ALgAwAC8AMwAxADIAMgA0ADMANwA1ADYANgA4ADcANgA5ADgAPAA6ADsAOwA9ADwAPQA+ADwAQQA/AEAAQABCAEEAQABDAEIARgBEAEUARQBHAEYASgBIAEkASQBLAEoASwBMAEoATABNAEoATQBOAEoATgBPAEoAUABLAEkAUABJAFEAUABRAFIAUwBQAFIAVABTAFIAVQBUAFIAVgBVAFIAUgBXAFYAWgBYAFkAWQBbAFoAXgBcAF0AXQBfAF4AXwBgAF4AXwBhAGAAYQBiAGAAYgBjAGAAYgBkAGMAYgBlAGQAZgBdAFwAZgBcAGcAZgBnAGgAZgBoAGkAagBmAGkAaQBrAGoAbgBsAG0AbQBvAG4AcgBwAHEAcQBzAHIAdgB0AHUAdQB3AHYAegB4AHkAeQB7AHoAfgB8AH0AfQB/AH4AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAjgCMAI0AjQCPAI4AkgCQAJEAkQCTAJIAlgCUAJUAlQCXAJYAmgCYAJkAmQCbAJoAngCcAJ0AnQCfAJ4AogCgAKEAoQCjAKIApgCkAKUApQCnAKYAqgCoAKkAqQCrAKoArgCsAK0ArQCvAK4AsgCwALEAsQCzALIAtgC0ALUAtQC3ALYAugC4ALkAuQC7ALoAvgC8AL0AvQC/AL4AvwDAAL4AvwDBAMAAwQDCAMAAwQDDAMIAxgDEAMUAxQDHAMYAxQDIAMcAyQDFAMQAzADKAMsAywDNAMwAywDOAM0AzgDPAM0A0gDQANEA0QDTANIA0ADUANEA0QDVANMA1QDWANMA1QDXANYA1QDYANcA2ADZANcA0ADZANoA2QDYANoA2gDbANAA2wDUANAA3ADUANsA2wDdANwA3QDVANwA3QDYANUA"), -"material": SubResource("StandardMaterial3D_qu0i7"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(32.2835, 34.2835, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("bNuAsqH2/79s2x/Lofb/v2zbgLLm4/+/bNtu1+bj/79s227X////v2zbH8v///+/kiRu1////7+SJB/L////v5Ikbtfm4/+/kiQfy6H2/7+SJICyofb/v5IkgLLm4/+/JEkwpubj//8kSTCmofb//9q2MKbm4///2rYwpqH2//+SJICy5uP8xZIkgLKh9vzFJEkwpubj/MUkSTCmofb8xdq2vuP///zF2ra+4+bj/MVs227X///8xWzbbtfm4/zFJEm+4////78kSb7j5uP/v9q2vuP///+/2ra+4+bj/7+SJG7X///8xZIkbtfm4/zFJEm+4////MUkSb7j5uP8xdq2MKbm4/zF2rYwpqH2/MVs24Cy5uP8xWzbgLKh9vzF2rZqh7Sr/7/atmqHN5//vyPJaoe0q/+/I8lqhzef/79s22qHdaX/v9s2Gns3n///JEkaezef///bNmqHN5///yRJaoc3n///2rYaezef//8jyRp7N5///9q2aoc3n///I8lqhzef//8jyRp7tKv/f9q2Gnu0q/9/I8lqh7Sr/3/atmqHtKv/f5IkGnt1pf//2zYae7Sr///bNhp7N5///yRJGns3n///JEkae7Sr///athp7N5///9q2Gnu0q///I8kaezef//8jyRp7tKv//2zbGnt1pf//kiRqh3Wl/7/bNmqHN5//v9s2aoe0q/+/JElqh7Sr/78kSWqHN5//vyRJGnu0q/9/2zYae7Sr/38kSWqHtKv/f9s2aoe0q/9/bZu+44dQ/79tm8ruh1D/v22bvuPNR/+/bZv+/4dQ/79tm7D9Kkz/v22bXfx+S/+/bZtk9/lI/79tm8ruzUf/v22b/v8Zpv+/bZvK7hmm/79tm77jGab/v22bsP12qv+/bZtd/COr/79tm2T3qK3/v22byu7Trv+/bZu+49Ou/79tm77jh1D/f5FkvuOHUP9/bZvK7odQ/3+RZMruh1D/f5Fk/v8Zpv+/kWTK7hmm/7+RZP7/h1D/v5Fkyu6HUP+/kWSw/SpM/7+RZL7jh1D/v5FkvuPNR/+/kWRd/H5L/7+RZGT3+Uj/v5Fkyu7NR/+/kWS+4xmm/7+RZLD9dqr/v5FkXfwjq/+/kWRk96it/7+RZL7j067/v5Fkyu7Trv+/bZu+4xmm//9tm8ruGab//5FkvuMZpv//kWTK7hmm//+RZMruh1D//5Fkyu4Zpv//bZvK7odQ//9tm8ruGab//0hSNfbZ1UbAJEm+49nVRsBIUjX2fMxGwCRJvuMew0bAbZs19tnVRsBIkr7j2dVGwG2bNfZ8zEbASJK+4x7DRsBIUjX22dX/v0hSNfZ8zP+/kWQ19tnV/7+RZDX2fMz/vwAAC8jTrvzFAAALyKdC/MWSJFrU0678xZIkWtSnQvzFJElAWfNx///atkBZ83H//yRJo2jzcf//2rajaPNx//+2bb7j2dVGwJFkNfbZ1UbAtm2+4x7DRsCRZDX2fMxGwP//HKPTrv+///8LyNOu/7///xyjp0L/v///C8inQv+/JElAWb1f/7/atkBZvV//vyRJQFnzcf+/2rZAWfNx/79s282W0678xf//HKPTrvzFbNvNlqdC/MX//xyjp0L8xQAAC8jTrv+/AAAco9Ou/78AAAvIp0L/vwAAHKOnQv+/AAAco6dC/MUAAByj0678xZIkzZanQvzFkiTNltOu/MVs21rU0678xWzbWtSnQvzF//8LyNOu/MX//wvIp0L8xbZtvuPZ1f9/JEm+49nV/3+RZDX22dX/f0hSNfbZ1f9/JEm+4x7D//+2bb7jHsP//0hSNfZ8zP//kWQ19nzM///atr7j2dVGwLatNfbZ1UbA2ra+4x7DRsC2rTX2fMxGwNq2vuPZ1f9/SJK+49nV/3+2rTX22dX/f22bNfbZ1f9/SJK+4x7D///atr7jHsP//22bNfZ8zP//tq019nzM//9tmzX22dX/v22bNfZ8zP+/tq019tnV/7+2rTX2fMz/vyRJMKYAAP//2rYwpgAA//+SJICyAAD//2zbgLIAAP//kiRu1wAA//9s227XAAD//yRJvuMAAP//2ra+4wAA///atqNowXn/v9q2QFnzcf+/2rbcScF5/7/attxJI13/v9q2QFm9X/+/2rajaPNx/78kSaNowXn/vyRJ3EnBef+/JEmjaPNx/78kSUBZ83H/vyRJ3EkjXf+/JElAWb1f/78kSb7jAAD/v5FkvuPTrv+/JEm+4x7D/7+2bb7jHsP/v5FkvuMZpv+/bZu+49Ou/79Ikr7jHsP/v9q2vuMew/+/bZu+481H/7/atr7jAAD/v5FkvuPNR/+/kWS+44dQ/79tm77jGab/v22bvuOHUP+/JEmAsqH2VNUkSR/LofZU1SRJgLLm41TVJElu1+bjVNUkSW7X//9U1SRJH8v//1TVJEmAsqH2VNUkSYCy5uNU1dq2gLKh9lTV2raAsubjVNXatm7X//9U1dq2H8v//1TV2rZu1+bjVNXath/LofZU1dq2gLKh9lTV2raAsubjVNUkSW7X5uNU1SRJbtf//1TV2rZu1+bjVNXatm7X//9U1dq28nTTrv//bNvydNOu///atpGN067//2zbkY3Trv//2rbydNOuVNXatvJ0/39U1Wzb8nTTrlTVbNvydP9/VNVs2/J0/3///9q28nT/f///bNuRjf9////atpGN/3///9q2kY3/f1TV2raRjdOuVNVs25GN/39U1WzbkY3TrlTV2rZqh7SrVNXathp7tKtU1dq28nTTrlTV2rbydP9/VNXathp7N59U1dq2kY3/f1TV2raRjdOuVNXatmqHN59U1SRJ8nT/f///kiTydP9///8kSZGN/3///5IkkY3/f///kiTydNOu//8kSfJ0067//5IkkY3Trv//JEmRjdOu//+SJJGN/39U1ZIkkY3TrlTVJEmRjf9/VNUkSZGN065U1SRJ8nTTrlTVJElqh7SrVNUkSZGN065U1SRJkY3/f1TVJElqhzefVNUkSRp7N59U1SRJGnu0q1TVJEnydP9/VNWSJPJ0065U1ZIk8nT/f1TVJEnydNOuVNUkSfJ0/39U1SRJo2hXYlTVJEmjaB5DVNUkSU8MulJU1SRJTwyCM1TV2rajaFdiVNXatqNoHkNU1dq2u0fGXFTV2rZPDLpSVNXatk8MgjNU1dq2QFm9XwrBJElAWb1fCsHatqNoV2IKwSRJo2hXYgrBJElPDIIzv/batk8MgjO/9iRJo2geQ7/22rajaB5Dv/YkSU8MgjNU1SRJTwy6UlTV2rZPDIIzVNXatk8MulJU1dq2Twy6UgrBJElPDLpSCsHatrtHxlwKwSRJ3EkjXQrB2rbcSSNdCsHatoCy5uP//yRJgLLm4///2rZu1+bj//8kSW7X5uP//2zbgLKh9v//2raAsqH2//9s2x/Lofb//9q2H8uh9v//kiSAsqH2//8kSTCmofb//9q2MKah9v//JEmAsqH2//8kSR/Lofb//5IkH8uh9v//2rYfy6H2VNXath/L//9U1WzbH8uh9lTVbNsfy///VNVs2x/L/////9q2H8v/////bNtu1//////atm7X/////9q2vuP/////JElu1/////+SJG7X/////yRJvuP/////kiQfy/////8kSR/L/////5IkH8uh9lTVkiQfy///VNUkSR/LofZU1SRJH8v//1TV2rZjD5vPVNXattxJm89U1dq2AAD/v1TV2rbcSWOwVNXatgAAY7BU1SRJAAD/v2jLJEljD5vPaMvatgAA/79oy9q2Yw+bz2jLJEncSZvPVNUkSWMPm89U1SRJ3EljsFTVJEkAAP+/VNUkSQAAY7BU1SRJAABjsFTVJEkAAP+/VNXatgAAY7BU1dq2AAD/v1TV2rZjD5vP//8kSWMPm8///9q23Embz///JEncSZvP//8kSQAAY7D//9q2AABjsP//JEncSWOw///attxJY7D//2zb3Elp11TVbNujaB7DVNVs29xJwXlU1Wzbo2jBeVTVbNtu1x7DVNVs23ti5uNU1SRJ3EkjXVTVJEncScF5VNXattxJI11U1dq23EnBeVTV2rbcSWOwVNUkSdxJY7BU1ZIk3Elp11TVkiTcScF5VNUkSdxJm89U1dq23Embz1TVbNvcSWnXVNVs29xJwXlU1Wzb3Elp1/zFkiTcSWnX/MVs23ti5uP8xZIke2Lm4/zFbNt7Yubj//+SJHti5uP//2zbgLLm4///2rYwpubj//8kSTCm5uP//5IkgLLm4///kWT+/xmmVNWRZP7/h1BU1W2b/v8ZplTVbZv+/4dQVNVtm2T3+Uj/8G2bXfx+S6rpkWRk9/lI//CRZF38fkuq6W2bsP0qTIzikWSw/SpMjOJtm8ru066wwJFkyu7TrrDAbZtk96itusKRZGT3qK26wpFk/v+HULzbkWSw/SpMjOJtm/7/h1C8222bsP0qTIzibZvK7s1Hdvhtm2T3+Uj/8JFkyu7NR3b4kWRk9/lI//CRZP7/GaZ3z22b/v8ZpnfPkWSw/XaqSsptm7D9dqpKym2bZPeorbrCkWRk96itusJtm138I6v8xZFkXfwjq/zFbZuw/XaqSsqRZLD9dqpKym2bvuPTrv//kWS+49Ou//9tm8ru067//5Fkyu7Trv//kWS+481H//9tm77jzUf//5Fkyu7NR///bZvK7s1H//9s227XHsNU1dq2vuPZ1VTV2ra+4x7DVNVIkr7j2dVU1bZtvuPZ1VTVJEm+49nVVNXatr7j2dVU1ZIkbtcew1TVkiR7YubjVNWSJNxJaddU1ZIko2gew1TVkiTcScF5VNWSJKNowXlU1SRJvuPZ1VTVkiRu1x7DVNUkSb7jHsNU1ZIkaod1pfXgkiQae3Wl9eDbNmqHN5/14Ns2Gns3n/XgkiTcScF5//8kSdxJwXn//5Iko2jBef//JEmjaMF5//+SJFrU065U1ZIkbtcAAFTVkiSRjdOuVNWSJFrUp0JU1ZIkgLJQO1TVkiTNlqdCVNWSJICyAABU1ZIkzZbTrlTVkiSRjf9/VNWSJPJ0/39U1ZIko2hQO1TVkiTydNOuVNWSJKNowXlU1SRJo2geQ1TVkiSjaFA7VNVs26NoUDtU1dq2o2geQ1TV2rajaFdiVNXatqNo83FU1dq2o2jBeVTVbNujaMF5VNUkSaNo83FU1SRJo2hXYlTVJEmjaMF5VNVs22qHdaX14CPJaoc3n/XgbNsae3Wl9eAjyRp7N5/14Ns2aoe0q2jL2zYae7SraMuSJGqHdaVoy5IkGnt1pWjLI8lqh7SraMts22qHdaVoyyPJGnu0q2jLbNsae3WlaMuSJKNoUDv//2zbo2hQO///kiSAslA7//8kSTCmUDv//9q2MKZQO///bNuAslA7//+SJM2Wp0L//5IkWtSnQv//AAAco6dC//8AAAvIp0L//2zbzZanQv////8co6dC//9s21rUp0L/////C8inQv//JEkwpgAAVNUkSTCmUDtU1dq2MKYAAFTV2rYwplA7VNWSJM2W067//wAAHKPTrv//kiRa1NOu//8AAAvI067//2zbzZbTrv//bNta1NOu/////xyj067/////C8jTrv//2rYwpgAAVNXatjCmUDtU1WzbgLIAAFTVbNuAslA7VNUkSb7jAABU1ZIkbtcAAFTV2rbcScF5//9s29xJwXn//9q2o2jBef//bNujaMF5//+SJICyAABU1ZIkgLJQO1TVJEkwpgAAVNUkSTCmUDtU1Wzb8nTTrlTVbNuRjdOuVNVs2/J0/39U1WzbzZanQlTVbNuRjf9/VNVs282W065U1Wzbo2hQO1TVbNta1KdCVNVs24CyUDtU1WzbWtTTrlTVbNtu1wAAVNVs24CyAABU1WzbbtcAAFTV2ra+4wAAVNX/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/8//3//P/9//z//f/8/AUb/4gFG/+IBRv/iAUb/4v25/xz9uf8c/bn/HP25/xz///9/////f////3////9//pwAxv6cAMb+nADG/pwAxgBj/jkAY/45AGP+OQBj/jn///9/////f////3////9//v//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z/+//9/////f////3////9/////f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9//v//f/7//3/+//9//v//f////3/+//9//v//f////3////9/////f////3/+//9//v//f////3////9/////f////3//P/9//z//f/8//3//PxaJ0e0WidHtFonR7RaJ0e0WidHtFonR7RaJ0e0WidHt////f////3////9/////f/6cAMb+nADG/pwAxv6cAMb/f////3////9/////f///LZIWCS2SFgktkhYJLZIWCf9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/AGP+OQBj/jkAY/45AGP+Of9/////f////3////9///8BRv/iAUb/4gFG/+IBRv/i/bn/HP25/xz9uf8c/bn/HP9/////f////3////9/////f4Ha/3+B2v9/gdr/f4HaLZIWCS2SFgktkhYJLZIWCf9/////f////3////9/////f4Ha/3+B2v9/gdr/f4Ha////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///////f/7//3////9/////f////3////9/////f////3/+//9/////f/7//3/+//9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f////7//P/+//z//v/8/////f////3////9/////f/9/////f////3////9/////f////3////+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//P/8//z//P/8//z//P/8//7//v/+//7//f////3////9/////f////z//v/8//7//P/+//z//v/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP+//z//v/8/") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("XQlYb10JlWMYHFhvGBy0XQAAtF0AAJVj//+0Xf//lWPm47RdofaVY6H2WG/m41hvXYmJ5V2JLfehdonloXYt9+bjA2yh9gNs5uNUdKH2VHQAAANsGBwDbAAAVHQYHFR0oXb//6F2ieVdif//XYmJ5f//VHTm41R0//8DbObjA2wYHFR0XQlUdBgcA2xdCQNsXYmfsF2J3KR8jJ+wfIzcpJuPvqp8jM2JXYnNiXyM7INdieyDoXbNiYJzzYmhduyDgnPsg3yMzYldic2JfIzsg12J7IObj76qfIyfsHyM3KRdidykXYmfsKF23KShdp+wgnPcpIJzn7BjcL6qY3C+qoJz3KSCc5+woXafsKF23KShds2JgnPNiaF27IOCc+yDd6/TV3evjFIxuNNXd69VStSzbkuAtBFMBbdwTjG4jFLlWVVK5VmMUuVZ01eIVW5L21QRTFZScE4rUYxSK1HTV66E01dQe9NXroSMUlB7jFIZplVKGaaMUodQVUqHUIxSKkxuS4dQ01fNR9NXfksRTPlIcE7NR4xSGabTV3aqbksjqxFMqK1wTtOu01fTroxSUHvTV1B7jFKuhNNXroSMUq6ExFquhFirUHvEWlB7WKvZ1ftQ2dXsWXzM+1Aew+xZ2dUMT9nV/Vd8zAxPHsP9VzF4T9gxeH3PUHtP2FB7fc/Trq99p0KvfdOuXnWnQl51XYn4maF2+JldiZ+SoXafkiUq/VclKgxP4Dz9V4IzDE8rUbF2K1EOZVe9sXZXvQ5loXYWaV2JFmmhdjx6XYk8eitRXnUrUQ5tV71edVe9Dm3Trg5l066xdqdCDmWnQrF2p0IObdOuDm2nQl51065edStRXnVXvV51K1GvfVe9r33gfNNXoXbTV1B7AU8xeAFPXYkWOR6DFjnNh50sroSdLCUq7FklKvtQ4DzsWYIz+1BdidNXHoPTV82HAU+uhAFP4HwWOaF2FjlQe50sMXidLK6ET9iuhH3PzYdP2M2Hfc9diTl1oXY5dZuPWG9jcFhvm4+0XWNwtF1didNXoXbTVz2Gn5ILjviZPYZSoduiUqFBoPiZC46fksF5n5LBeVKh83GfkvNx+JkjXVKhvV/4maF27w5Qe4+zoXarxuB8q8ZQe1irroSPsx6Dq8ZdiavGroSMUl2J7w5Qe4xSUHvEWq6EWKuuhMRaXQlYb10JlWMYHFhvGBy0XQAAtF0AAJVjoXYt96F2ieVdiS33XYmJ5f//tF3//5Vj5uO0XaH2lWOh9lhv5uNYb12JieVdif//oXaJ5aF2//+hdr6MY3C+jKF2+4BjcPuAXYmPs12Jd4ebj4+zm493h5uPvoxdib6Mm4/7gF2J+4ChdneHoXaPs2Nwd4djcI+zSlTsg0pUzYkrUb6M/3++jMdgzYn/f/uAK1H7gMdg7IOhdr6MY3C+jKF2+4BjcPuAm4++jF2Jvoybj/uAXYn7gJuPd4ebj4+zXYl3h12Jj7PTrr6MtKvsg9Ou+4D/f/uAN5/sgzefzYm0q82J/3++jGNwj7NjcHeHoXaPs6F2d4dXYp+SHkOfkrpSt76CM7e+p52fkuC8n5I4o1aiRK23vnzMt75diaCioXagol2J4ZqhduGaXYmo0qF2qNJdiS2koXYtpF2JcD9didZcoXZwP6F21lxdiVzJoXZcyV2Jcquhdl+qXYlfql2JWG+hdlhvXYm0XaF2tF2bj1hvXYlYb5uPlWNdiZVjY3BYb6F2OXVdiTl1oXZYb6F2lWNjcJVjoXYt96F2//9jcC33Y3D//5uPlWNdiZVjm4+0XV2JtF1didNXoXa0XWNwtF2hdtNXY3CVY6F2lWObjy33m4///12JLfddif//YzA/vWMwUqH/P5nEm09SoZtPmcShduZsoXZ3XF2J5mxdiXdcm89SoZvPP71jsFKh/7+ZxGOwmcRdiQi1XYm7w6F2CLWhdrvDXYk/vaF2P71diVKhoXZSoV2JmcShdpnEXYlSoaF2UqGVKFKh4Dyfkj2GUqE9hp+S4Dy0XRgcj5VdiaNmXYmVgaF2o2ahdpWBoXYItV2JCLWbj8fZm4+VgV2JbdKhdm3SY3DH2WNwlYGbj4tfY3CLX5uP6U5jcOlOm4+PlWNwj5Wbj1hvXYk5daF2OXVjcFhvUHtYq1B7xFquhFirroTEWlB7yINQe2yAroTIg66EbIBQe4d/roSHf66Ew19Qe8NfroSDW1B7g1uuhNGiroQSp1B70aJQexKnUHsMYlB7y12uhAxiroTLXVB7TJquhEyaUHuNnq6EjZ6uhIt9UHuLfa6EMHpQezB6roRKeVB7SnmuhNNXUHvTV66EjFJQe4xSroTTV1B701euhIxSUHuMUuA8VHQlKgNs4DwDbB6DT9jgfE/YoXZP2F2JT9gew7Rd5uOPlWnXUqEew5+SwXlSocF5n5LZ1QNsHsNUdB7DA2x8qOyDfKjNiYGh7IOBoc2Jm49SoV2JUqGbj5+SXYmfktOuLF8AALRd0677gKdCLF9QO1hvp0KSfAAAWG/TrpJ8/3/7gP9/voxQO5+S066+jJuPlYFdiSNOm4/KRmNwykahdiNOoXaJa6F2PHqhdpWBY3CVgV2JPHpdiYlrXYmVgYJX7IN9XuyDglfNiX1ezYmBoeyDgaHNiYaa7IOGms2JfV7sg3hl7IN9Xs2JeGXNiZuPn5JjcJ+Sm49Yb12JOXWhdjl1Y3BYb5uPknybjyxf2ZWxdtmVDmVjcJJ8JWqxdmNwLF8lag5lXYnvDl2Jykahdu8OoXbKRmNwknwlarF2Y3AsXyVqDmWbj5J8m48sX9mVsXbZlQ5l//9UdK7EVHT//wNsrsQDbAAAA2wAAFR0oXZSoWNwUqGhdp+SY3CfkgAAA2xQOwNsAABUdFA7VHQrUb6MK1H7gP9/voxXvZJ8/3/7gCtRknyuxJ+SV70sX67EWG8rUSxf//+0Xf//WG///1R0//8DbA=="), -"format": 34896613399, -"index_count": 192, -"index_data": PackedByteArray("4ADeAN8A4QDgAN8A4gDhAN8A3wDjAOIA5gDkAOUA5QDnAOYA6gDoAOkA6QDrAOoA6wDsAOoA7ADtAOoA8ADuAO8A7wDxAPAA9ADyAPMA8wD1APQA+AD2APcA9wD5APgA/AD6APsA+wD9APwAAAH+AP8A/wABAQABBAECAQMBAwEFAQQBAwEGAQUBBgEHAQUBCAEHAQIBAgEEAQgBBwEJAQIBBwEGAQkBDAEKAQsBCwENAQwBEAEOAQ8BDwERARABFAESARMBEwEVARQBGAEWARcBFwEZARgBFwEaARkBGgEbARkBHAEXARYBFgEdARwBHQEbARwBHQEZARsBIAEeAR8BHwEhASABIwEiAc8AzwDOACMBzgAkASMBJAElASMByAAmAScBJwHHAMgAJwEoAccAJwEpASgBJwEqASkBLQErASwBLAEuAS0BMQEvATABMAEyATEBNQEzATQBNAE2ATUBOQE3ATgBOAE6ATkBOgE7ATkBPgE8AT0BPQE/AT4B"), -"material": SubResource("StandardMaterial3D_cdt4h"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(32.2835, 34.2835, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("bNuAsqH2VNVs2x/LofZU1WzbgLLm41TVbNtu1+bjVNVs227X//9U1WzbH8v//1TVkiRu1///VNWSJB/L//9U1ZIkbtfm41TVkiQfy6H2VNWSJICyofZU1ZIkgLLm41TVJEkwpubjVNUkSTCmofZU1dq2MKbm41TV2rYwpqH2VNWSJICy5uNU1ZIkgLKh9lTVJEkwpubjVNUkSTCmofZU1dq2vuP//1TV2ra+4+bjVNVs227X//9U1Wzbbtfm41TVJEm+4///VNUkSb7j5uNU1dq2vuP//1TV2ra+4+bjVNWSJG7X//9U1ZIkbtfm41TVJEm+4///VNUkSb7j5uNU1dq2MKbm41TV2rYwpqH2VNVs24Cy5uNU1WzbgLKh9lTV2rZqh7SrVNXatmqHN59U1SPJaoe0q1TVI8lqhzefVNVs22qHdaVU1ds2Gns3n///JEkaezef///bNmqHN5///yRJaoc3n///2rYaezef//8jyRp7N5///9q2aoc3n///I8lqhzef//8jyRp7tKv//9q2Gnu0q///I8lqh7Sr///atmqHtKv//5IkGnt1pVTV2zYae7SrVNXbNhp7N59U1SRJGns3n1TVJEkae7SrVNXathp7N59U1dq2Gnu0q1TVI8kaezefVNUjyRp7tKtU1WzbGnt1pVTVkiRqh3WlVNXbNmqHN59U1ds2aoe0q1TVJElqh7SrVNUkSWqHN59U1SRJGnu0q///2zYae7Sr//8kSWqHtKv//9s2aoe0q///bZu+44dQVNVtm8ruh1BU1W2bvuPNR1TVbZv+/4dQVNVtm7D9KkxU1W2bXfx+S1TVbZtk9/lIVNVtm8ruzUdU1W2b/v8ZplTVbZvK7hmmVNVtm77jGaZU1W2bsP12qlTVbZtd/COrVNVtm2T3qK1U1W2byu7TrlTVbZu+49OuVNVtm77jh1D//5FkvuOHUP//bZvK7odQ//+RZMruh1D//5Fk/v8ZplTVkWTK7hmmVNWRZP7/h1BU1ZFkyu6HUFTVkWSw/SpMVNWRZL7jh1BU1ZFkvuPNR1TVkWRd/H5LVNWRZGT3+UhU1ZFkyu7NR1TVkWS+4xmmVNWRZLD9dqpU1ZFkXfwjq1TVkWRk96itVNWRZL7j065U1ZFkyu7TrlTVbZu+4xmm//9tm8ruGab//5FkvuMZpv//kWTK7hmm//+RZMruh1BU1ZFkyu4ZplTVbZvK7odQVNVtm8ruGaZU1UhSNfbZ1VTVJEm+49nVVNVIUjX2fMxU1SRJvuMew1TVbZs19tnVVNVIkr7j2dVU1W2bNfZ8zFTVSJK+4x7DVNVIUjX22dVU1UhSNfZ8zFTVkWQ19tnVVNWRZDX2fMxU1QAAC8jTrlTVAAALyKdCVNWSJFrU065U1ZIkWtSnQlTVJElAWfNx///atkBZ83H//yRJo2jzcf//2rajaPNx//+2bb7j2dVU1ZFkNfbZ1VTVtm2+4x7DVNWRZDX2fMxU1f//HKPTrlTV//8LyNOuVNX//xyjp0JU1f//C8inQlTVJElAWb1fVNXatkBZvV9U1SRJQFnzcVTV2rZAWfNxVNVs282W065U1f//HKPTrlTVbNvNlqdCVNX//xyjp0JU1QAAC8jTrlTVAAAco9OuVNUAAAvIp0JU1QAAHKOnQlTVAAAco6dCVNUAAByj065U1ZIkzZanQlTVkiTNltOuVNVs21rU065U1WzbWtSnQlTV//8LyNOuVNX//wvIp0JU1bZtvuPZ1f//JEm+49nV//+RZDX22dX//0hSNfbZ1f//JEm+4x7Dqum2bb7jHsOq6UhSNfZ8zKrpkWQ19nzMqunatr7j2dVU1batNfbZ1VTV2ra+4x7DVNW2rTX2fMxU1dq2vuPZ1f//SJK+49nV//+2rTX22dX//22bNfbZ1f//SJK+4x7Dqunatr7jHsOq6W2bNfZ8zKrptq019nzMqultmzX22dVU1W2bNfZ8zFTVtq019tnVVNW2rTX2fMxU1SRJMKYAAP//2rYwpgAA//+SJICyAAD//2zbgLIAAP//kiRu1wAA//9s227XAAD//yRJvuMAAP//2ra+4wAA///atqNowXlU1dq2QFnzcVTV2rbcScF5VNXattxJI13/v9q2QFm9X/+/2rajaPNxVNUkSaNowXlU1SRJ3EnBeVTVJEmjaPNxVNUkSUBZ83FU1SRJ3EkjXf+/JElAWb1f/78kSb7jAABU1ZFkvuPTrlTVJEm+4x7DVNW2bb7jHsNU1ZFkvuMZplTVbZu+49OuVNVIkr7jHsNU1dq2vuMew1TVbZu+481HVNXatr7jAABU1ZFkvuPNR1TVkWS+44dQVNVtm77jGaZU1W2bvuOHUFTVJEmAsqH2/78kSR/Lofb/vyRJgLLm4/+/JElu1+bj/78kSW7X////vyRJH8v///+/JEmAsqH2/78kSYCy5uP/v9q2gLKh9v+/2raAsubj/7/atm7X////v9q2H8v///+/2rZu1+bj/7/ath/Lofb/v9q2gLKh9v+/2raAsubj/78kSW7X5uP//yRJbtf/////2rZu1+bj///atm7X/////9q28nTTrv//bNvydNOu///atpGN067//2zbkY3Trv//2rbydNOu/7/atvJ0/3//v2zb8nTTrv+/bNvydP9//79s2/J0/3//f9q28nT/f/9/bNuRjf9//3/atpGN/3//f9q2kY3/f///2raRjdOu//9s25GN/3///2zbkY3Trv//2rZqh7Sr/7/athp7tKv/v9q28nTTrv+/2rbydP9//7/athp7N5//v9q2kY3/f/+/2raRjdOu/7/atmqHN5//vyRJ8nT/f/9/kiTydP9//38kSZGN/3//f5IkkY3/f/9/kiTydNOu//8kSfJ0067//5IkkY3Trv//JEmRjdOu//+SJJGN/3///5IkkY3Trv//JEmRjf9///8kSZGN067//yRJ8nTTrv+/JElqh7Sr/78kSZGN067/vyRJkY3/f/+/JElqhzef/78kSRp7N5//vyRJGnu0q/+/JEnydP9//7+SJPJ0067/v5Ik8nT/f/+/JEnydNOu/78kSfJ0/3//vyRJo2hXYv+/JEmjaB5D/78kSU8MulL/vyRJTwyCM/+/2rajaFdi/7/atqNoHkP/v9q2u0fGXP+/2rZPDLpS/7/atk8MgjP/v9q2QFm9XxuNJElAWb1fG43atqNoV2IbjSRJo2hXYhuNJElPDIIz///atk8MgjP//yRJo2geQ///2rajaB5D//8kSU8MgjP//yRJTwy6Uv//2rZPDIIz///atk8MulL//9q2Twy6UhuNJElPDLpSG43atrtHxlwbjSRJ3EkjXRuN2rbcSSNdG43atoCy5uP/fyRJgLLm4/9/2rZu1+bj/38kSW7X5uP/f2zbgLKh9v//2raAsqH2//9s2x/Lofb//9q2H8uh9v//kiSAsqH2//8kSTCmofb//9q2MKah9v//JEmAsqH2//8kSR/Lofb//5IkH8uh9v//2rYfy6H2VNXath/L//9U1WzbH8uh9lTVbNsfy///VNVs2x/L/////9q2H8v/////bNtu1//////atm7X/////9q2vuP/////JElu1/////+SJG7X/////yRJvuP/////kiQfy/////8kSR/L/////5IkH8uh9lTVkiQfy///VNUkSR/LofZU1SRJH8v//1TV2rZjD5vPVNXattxJm89U1dq2AAD/v1TV2rbcSWOwVNXatgAAY7BU1SRJAAD/v2jLJEljD5vPaMvatgAA/79oy9q2Yw+bz2jLJEncSZvPVNUkSWMPm89U1SRJ3EljsFTVJEkAAP+/VNUkSQAAY7BU1SRJAABjsFTVJEkAAP+/VNXatgAAY7BU1dq2AAD/v1TV2rZjD5vP//8kSWMPm8///9q23Embz///JEncSZvP//8kSQAAY7D//9q2AABjsP//JEncSWOw///attxJY7D//2zb3Elp11TVbNujaB7DVNVs29xJwXlU1Wzbo2jBeVTVbNtu1x7DVNVs23ti5uNU1SRJ3EkjXVTVJEncScF5VNXattxJI11U1dq23EnBeVTV2rbcSWOwVNUkSdxJY7BU1ZIk3Elp11TVkiTcScF5VNUkSdxJm89U1dq23Embz1TVbNvcSWnXVNVs29xJwXlU1Wzb3Elp1/zFkiTcSWnX/MVs23ti5uP8xZIke2Lm4/zFbNt7Yubj//+SJHti5uP//2zbgLLm4///2rYwpubj//8kSTCm5uP//5IkgLLm4///kWT+/xmmVNWRZP7/h1BU1W2b/v8ZplTVbZv+/4dQVNVtm2T3+Uj/8G2bXfx+S6rpkWRk9/lI//CRZF38fkuq6W2bsP0qTIzikWSw/SpMjOJtm8ru066wwJFkyu7TrrDAbZtk96itusKRZGT3qK26wpFk/v+HULzbkWSw/SpMjOJtm/7/h1C8222bsP0qTIzibZvK7s1Hdvhtm2T3+Uj/8JFkyu7NR3b4kWRk9/lI//CRZP7/GaZ3z22b/v8ZpnfPkWSw/XaqSsptm7D9dqpKym2bZPeorbrCkWRk96itusJtm138I6v8xZFkXfwjq/zFbZuw/XaqSsqRZLD9dqpKym2bvuPTrv//kWS+49Ou//9tm8ru067//5Fkyu7Trv//kWS+481H//9tm77jzUf//5Fkyu7NR///bZvK7s1H//9s227XHsNU1dq2vuPZ1VTV2ra+4x7DVNVIkr7j2dVU1bZtvuPZ1VTVJEm+49nVVNXatr7j2dVU1ZIkbtcew1TVkiR7YubjVNWSJNxJaddU1ZIko2gew1TVkiTcScF5VNWSJKNowXlU1SRJvuPZ1VTVkiRu1x7DVNUkSb7jHsNU1ZIkaod1pfXgkiQae3Wl9eDbNmqHN5/14Ns2Gns3n/XgkiTcScF5//8kSdxJwXn//5Iko2jBef//JEmjaMF5//+SJFrU065U1ZIkbtcAAFTVkiSRjdOuVNWSJFrUp0JU1ZIkgLJQO1TVkiTNlqdCVNWSJICyAABU1ZIkzZbTrlTVkiSRjf9/VNWSJPJ0/39U1ZIko2hQO1TVkiTydNOuVNWSJKNowXlU1SRJo2geQ1TVkiSjaFA7VNVs26NoUDtU1dq2o2geQ1TV2rajaFdiVNXatqNo83FU1dq2o2jBeVTVbNujaMF5VNUkSaNo83FU1SRJo2hXYlTVJEmjaMF5VNVs22qHdaX14CPJaoc3n/XgbNsae3Wl9eAjyRp7N5/14Ns2aoe0q2jL2zYae7SraMuSJGqHdaVoy5IkGnt1pWjLI8lqh7SraMts22qHdaVoyyPJGnu0q2jLbNsae3WlaMuSJKNoUDv//2zbo2hQO///kiSAslA7//8kSTCmUDv//9q2MKZQO///bNuAslA7//+SJM2Wp0L//5IkWtSnQv//AAAco6dC//8AAAvIp0L//2zbzZanQv////8co6dC//9s21rUp0L/////C8inQv//JEkwpgAAVNUkSTCmUDtU1dq2MKYAAFTV2rYwplA7VNWSJM2W067//wAAHKPTrv//kiRa1NOu//8AAAvI067//2zbzZbTrv//bNta1NOu/////xyj067/////C8jTrv//2rYwpgAAVNXatjCmUDtU1WzbgLIAAFTVbNuAslA7VNUkSb7jAABU1ZIkbtcAAFTV2rbcScF5//9s29xJwXn//9q2o2jBef//bNujaMF5//+SJICyAABU1ZIkgLJQO1TVJEkwpgAAVNUkSTCmUDtU1Wzb8nTTrlTVbNuRjdOuVNVs2/J0/39U1WzbzZanQlTVbNuRjf9/VNVs282W065U1Wzbo2hQO1TVbNta1KdCVNVs24CyUDtU1WzbWtTTrlTVbNtu1wAAVNVs24CyAABU1WzbbtcAAFTV2ra+4wAAVNX/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//z//v/8//7//P/+//z//v/+//z//v/8//7//P/+//z////9/////f////3////9//7//v/+//7//v/+//7//v/8//z//P/8//z//P/8//z////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f0iSte1IkrXtSJK17UiSte1IkrXtSJK17UiSte1IkrXt////f////3////9/////f/+//7//v/+//7//v/+//7//f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEv9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//z//P/8//z//P/8//z//P/9/////f////3////9/////P/+//z//v/8//7//P/+//7//P/+//z//v/8//7//P/9//3//f/9//3//f/9//3////9/////f////3////9/SJJJEkiSSRJIkkkSSJJJEv9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3//fx/u/38f7v9/H+7/fx/u/3//P/9//z//f/8//3//PwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f////7//P/+//z//v/8/////f////3////9/////f/9/////f////3////9/////f////3////+//7//v/+//7//v/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//P/8//z//P/8//z//P/8//7//v/+//7//f////3////9/////f////z//v/8//7//P/+//z//v/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP+//z//v/8/") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("XQlYb10JlWMYHFhvGBy0XQAAtF0AAJVj//+0Xf//lWPm47RdofaVY6H2WG/m41hvXYmJ5V2JLfehdonloXYt9+bjA2yh9gNs5uNUdKH2VHQAAANsGBwDbAAAVHQYHFR0oXb//6F2ieVdif//XYmJ5f//VHTm41R0//8DbObjA2wYHFR0XQlUdBgcA2xdCQNsXYmfsF2J3KR8jJ+wfIzcpJuPvqp8jM2JXYnNiXyM7INdieyDoXbNiYJzzYmhduyDgnPsg3yMzYldic2JfIzsg12J7IObj76qfIyfsHyM3KRdidykXYmfsKF23KShdp+wgnPcpIJzn7BjcL6qY3C+qoJz3KSCc5+woXafsKF23KShds2JgnPNiaF27IOCc+yDd6/TV3evjFIxuNNXd69VStSzbkuAtBFMBbdwTjG4jFLlWVVK5VmMUuVZ01eIVW5L21QRTFZScE4rUYxSK1HTV66E01dQe9NXroSMUlB7jFIZplVKGaaMUodQVUqHUIxSKkxuS4dQ01fNR9NXfksRTPlIcE7NR4xSGabTV3aqbksjqxFMqK1wTtOu01fTroxSUHvTV1B7jFKuhNNXroSMUq6ExFquhFirUHvEWlB7WKvZ1ftQ2dXsWXzM+1Aew+xZ2dUMT9nV/Vd8zAxPHsP9VzF4T9gxeH3PUHtP2FB7fc/Trq99p0KvfdOuXnWnQl51XYn4maF2+JldiZ+SoXafkiUq/VclKgxP4Dz9V4IzDE8rUbF2K1EOZVe9sXZXvQ5loXYWaV2JFmmhdjx6XYk8eitRXnUrUQ5tV71edVe9Dm3Trg5l066xdqdCDmWnQrF2p0IObdOuDm2nQl51065edStRXnVXvV51K1GvfVe9r33gfNNXoXbTV1B7AU8xeAFPXYkWOR6DFjnNh50sroSdLCUq7FklKvtQ4DzsWYIz+1BdidNXHoPTV82HAU+uhAFP4HwWOaF2FjlQe50sMXidLK6ET9iuhH3PzYdP2M2Hfc9diTl1oXY5dZuPWG9jcFhvm4+0XWNwtF1didNXoXbTVz2Gn5ILjviZPYZSoduiUqFBoPiZC46fksF5n5LBeVKh83GfkvNx+JkjXVKhvV/4maF27w5Qe4+zoXarxuB8q8ZQe1irroSPsx6Dq8ZdiavGroSMUl2J7w5Qe4xSUHvEWq6EWKuuhMRaXQlYb10JlWMYHFhvGBy0XQAAtF0AAJVjoXYt96F2ieVdiS33XYmJ5f//tF3//5Vj5uO0XaH2lWOh9lhv5uNYb12JieVdif//oXaJ5aF2//+hdr6MY3C+jKF2+4BjcPuAXYmPs12Jd4ebj4+zm493h5uPvoxdib6Mm4/7gF2J+4ChdneHoXaPs2Nwd4djcI+zSlTsg0pUzYkrUb6M/3++jMdgzYn/f/uAK1H7gMdg7IOhdr6MY3C+jKF2+4BjcPuAm4++jF2Jvoybj/uAXYn7gJuPd4ebj4+zXYl3h12Jj7PTrr6MtKvsg9Ou+4D/f/uAN5/sgzefzYm0q82J/3++jGNwj7NjcHeHoXaPs6F2d4dXYp+SHkOfkrpSt76CM7e+p52fkuC8n5I4o1aiRK23vnzMt75diaCioXagol2J4ZqhduGaXYmo0qF2qNJdiS2koXYtpF2JcD9didZcoXZwP6F21lxdiVzJoXZcyV2Jcquhdl+qXYlfql2JWG+hdlhvXYm0XaF2tF2bj1hvXYlYb5uPlWNdiZVjY3BYb6F2OXVdiTl1oXZYb6F2lWNjcJVjoXYt96F2//9jcC33Y3D//5uPlWNdiZVjm4+0XV2JtF1didNXoXa0XWNwtF2hdtNXY3CVY6F2lWObjy33m4///12JLfddif//YzA/vWMwUqH/P5nEm09SoZtPmcShduZsoXZ3XF2J5mxdiXdcm89SoZvPP71jsFKh/7+ZxGOwmcRdiQi1XYm7w6F2CLWhdrvDXYk/vaF2P71diVKhoXZSoV2JmcShdpnEXYlSoaF2UqGVKFKh4Dyfkj2GUqE9hp+S4Dy0XRgcj5VdiaNmXYmVgaF2o2ahdpWBoXYItV2JCLWbj8fZm4+VgV2JbdKhdm3SY3DH2WNwlYGbj4tfY3CLX5uP6U5jcOlOm4+PlWNwj5Wbj1hvXYk5daF2OXVjcFhvUHtYq1B7xFquhFirroTEWlB7yINQe2yAroTIg66EbIBQe4d/roSHf66Ew19Qe8NfroSDW1B7g1uuhNGiroQSp1B70aJQexKnUHsMYlB7y12uhAxiroTLXVB7TJquhEyaUHuNnq6EjZ6uhIt9UHuLfa6EMHpQezB6roRKeVB7SnmuhNNXUHvTV66EjFJQe4xSroTTV1B701euhIxSUHuMUuA8VHQlKgNs4DwDbB6DT9jgfE/YoXZP2F2JT9gew7Rd5uOPlWnXUqEew5+SwXlSocF5n5LZ1QNsHsNUdB7DA2x8qOyDfKjNiYGh7IOBoc2Jm49SoV2JUqGbj5+SXYmfktOuLF8AALRd0677gKdCLF9QO1hvp0KSfAAAWG/TrpJ8/3/7gP9/voxQO5+S066+jJuPlYFdiSNOm4/KRmNwykahdiNOoXaJa6F2PHqhdpWBY3CVgV2JPHpdiYlrXYmVgYJX7IN9XuyDglfNiX1ezYmBoeyDgaHNiYaa7IOGms2JfV7sg3hl7IN9Xs2JeGXNiZuPn5JjcJ+Sm49Yb12JOXWhdjl1Y3BYb5uPknybjyxf2ZWxdtmVDmVjcJJ8JWqxdmNwLF8lag5lXYnvDl2Jykahdu8OoXbKRmNwknwlarF2Y3AsXyVqDmWbj5J8m48sX9mVsXbZlQ5l//9UdK7EVHT//wNsrsQDbAAAA2wAAFR0oXZSoWNwUqGhdp+SY3CfkgAAA2xQOwNsAABUdFA7VHQrUb6MK1H7gP9/voxXvZJ8/3/7gCtRknyuxJ+SV70sX67EWG8rUSxf//+0Xf//WG///1R0//8DbA=="), -"format": 34896613399, -"index_count": 294, -"index_data": PackedByteArray("QgFAAUEBQQFDAUIBRAFBAUABRQFEAUABQAFGAUUBRAFHAUEBRAFIAUcBRAFJAUgBTAFKAUsBSwFNAUwBUAFOAU8BTwFRAVABUQFSAVABUQFTAVIBUwFUAVIBVAFVAVIBVgFUAVMBUwFXAVYBWgFYAVkBWQFbAVoBXgFcAV0BXQFfAV4BXwFgAV4BYwFhAWIBYgFkAWMBZwFlAWYBZgFoAWcBaAFpAWcBbAFqAWsBawFtAWwBcAFuAW8BbwFxAXABdAFyAXMBcwF1AXQBeAF2AXcBdwF5AXgBegF3AXYBAwB6AXYBAgADAHYBdgF7AQIAfgF8AX0BfQF/AX4BgAF/AX0BgQGAAX0BggGBAX0BfQGDAYIBggGEAYEBgAGFAX8BhAGCAYYBhgGFAYQBhgF/AYUBhgGHAX8BigGIAYkBiQGLAYoBjgGMAY0BjQGPAY4BkAGPAY0BjQGRAZABlAGSAZMBkwGVAZQBmAGWAZcBlwGZAZgBlwGaAZkBmgGbAZkBngGcAZ0BnQGfAZ4BogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqgGoAakBqQGrAaoBrgGsAa0BrQGvAa4BrwGwAa4BrwGxAbABtAGyAbMBswG1AbQBuAG2AbcBtwG5AbgBugEXABUAFQC7AboBuwG8AboB1gC9AdMAvgHTAL0BvgG9ARsAvgEbABkAGQC/Ab4BvQHAARsAwQEIAAsACwDCAcEBwgHDAcEBwwHEAcEBwwHFAcQBxQHGAcQBxwEfAB0AHQDIAccByAHJAccB"), -"material": SubResource("StandardMaterial3D_fycn1"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(32.2835, 34.2835, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("bNuAsqH2VNVs2x/LofZU1WzbgLLm4/+/bNtu1+bj/79s227X//9U1WzbH8v//1TVkiRu1///VNWSJB/L//9U1ZIkbtfm4/+/kiQfy6H2VNWSJICyofZU1ZIkgLLm4/+/JEkwpubjVNUkSTCmofZU1dq2MKbm41TV2rYwpqH2VNWSJICy5uNU1ZIkgLKh9lTVJEkwpubjVNUkSTCmofZU1dq2vuP//1TV2ra+4+bj/MVs227X//9U1Wzbbtfm4/zFJEm+4///VNUkSb7j5uP/v9q2vuP//1TV2ra+4+bj/7+SJG7X//9U1ZIkbtfm4/zFJEm+4///VNUkSb7j5uP8xdq2MKbm41TV2rYwpqH2VNVs24Cy5uNU1WzbgLKh9lTV2rZqh7SrVNXatmqHN59U1SPJaoe0q1TVI8lqhzefVNVs22qHdaVU1ds2Gns3n///JEkaezef///bNmqHN5///yRJaoc3n///2rYaezef//8jyRp7N5///9q2aoc3n///I8lqhzef//8jyRp7tKv//9q2Gnu0q///I8lqh7Sr///atmqHtKv//5IkGnt1pVTV2zYae7SrVNXbNhp7N59U1SRJGns3n1TVJEkae7SrVNXathp7N59U1dq2Gnu0q1TVI8kaezefVNUjyRp7tKtU1WzbGnt1pVTVkiRqh3WlVNXbNmqHN59U1ds2aoe0q1TVJElqh7SrVNUkSWqHN59U1SRJGnu0q///2zYae7Sr//8kSWqHtKv//9s2aoe0q///bZu+44dQVNVtm8ruh1BU1W2bvuPNR1TVbZv+/4dQVNVtm7D9KkxU1W2bXfx+S1TVbZtk9/lIVNVtm8ruzUdU1W2b/v8ZplTVbZvK7hmmVNVtm77jGaZU1W2bsP12qlTVbZtd/COrVNVtm2T3qK1U1W2byu7TrlTVbZu+49OuVNVtm77jh1D//5FkvuOHUP//bZvK7odQ//+RZMruh1D//5Fk/v8ZplTVkWTK7hmmVNWRZP7/h1BU1ZFkyu6HUFTVkWSw/SpMVNWRZL7jh1BU1ZFkvuPNR1TVkWRd/H5LVNWRZGT3+UhU1ZFkyu7NR1TVkWS+4xmmVNWRZLD9dqpU1ZFkXfwjq1TVkWRk96itVNWRZL7j065U1ZFkyu7TrlTVbZu+4xmm//9tm8ruGab//5FkvuMZpv//kWTK7hmm//+RZMruh1BU1ZFkyu4ZplTVbZvK7odQVNVtm8ruGaZU1UhSNfbZ1VTVJEm+49nVVNVIUjX2fMxU1SRJvuMew1TVbZs19tnVVNVIkr7j2dVU1W2bNfZ8zFTVSJK+4x7DVNVIUjX22dVU1UhSNfZ8zFTVkWQ19tnVVNWRZDX2fMxU1QAAC8jTrlTVAAALyKdCVNWSJFrU065U1ZIkWtSnQlTVJElAWfNx///atkBZ83H//yRJo2jzcf//2rajaPNx//+2bb7j2dVU1ZFkNfbZ1VTVtm2+4x7DVNWRZDX2fMxU1f//HKPTrlTV//8LyNOuVNX//xyjp0JU1f//C8inQlTVJElAWb1fVNXatkBZvV9U1SRJQFnzcVTV2rZAWfNxVNVs282W065U1f//HKPTrlTVbNvNlqdCVNX//xyjp0JU1QAAC8jTrlTVAAAco9OuVNUAAAvIp0JU1QAAHKOnQlTVAAAco6dCVNUAAByj065U1ZIkzZanQlTVkiTNltOuVNVs21rU065U1WzbWtSnQlTV//8LyNOuVNX//wvIp0JU1bZtvuPZ1f//JEm+49nV//+RZDX22dX//0hSNfbZ1f//JEm+4x7Dqum2bb7jHsOq6UhSNfZ8zKrpkWQ19nzMqunatr7j2dVU1batNfbZ1VTV2ra+4x7DVNW2rTX2fMxU1dq2vuPZ1f//SJK+49nV//+2rTX22dX//22bNfbZ1f//SJK+4x7Dqunatr7jHsOq6W2bNfZ8zKrptq019nzMqultmzX22dVU1W2bNfZ8zFTVtq019tnVVNW2rTX2fMxU1SRJMKYAAP//2rYwpgAA//+SJICyAAD//2zbgLIAAP//kiRu1wAA//9s227XAAD//yRJvuMAAP//2ra+4wAA///atqNowXlU1dq2QFnzcVTV2rbcScF5VNXattxJI11U1dq2QFm9X1TV2rajaPNxVNUkSaNowXlU1SRJ3EnBeVTVJEmjaPNxVNUkSUBZ83FU1SRJ3EkjXVTVJElAWb1fVNUkSb7jAABU1ZFkvuPTrlTVJEm+4x7DVNW2bb7jHsP/v5FkvuMZplTVbZu+49OuVNVIkr7jHsP/v9q2vuMew1TVbZu+481HVNXatr7jAABU1ZFkvuPNR1TVkWS+44dQVNVtm77jGaZU1W2bvuOHUFTVJEmAsqH2VNUkSR/LofZU1SRJgLLm41TVJElu1+bjVNUkSW7X//9U1SRJH8v//1TVJEmAsqH2VNUkSYCy5uNU1dq2gLKh9lTV2raAsubjVNXatm7X//9U1dq2H8v//1TV2rZu1+bjVNXath/LofZU1dq2gLKh9lTV2raAsubjVNUkSW7X5uNU1SRJbtf//1TV2rZu1+bjVNXatm7X//9U1dq28nTTrv//bNvydNOu///atpGN067//2zbkY3Trv//2rbydNOuVNXatvJ0/39U1Wzb8nTTrlTVbNvydP9/VNVs2/J0/3///9q28nT/f///bNuRjf9////atpGN/3///9q2kY3/f1TV2raRjdOuVNVs25GN/39U1WzbkY3TrlTV2rZqh7SrVNXathp7tKtU1dq28nTTrlTV2rbydP9/VNXathp7N59U1dq2kY3/f1TV2raRjdOuVNXatmqHN59U1SRJ8nT/f///kiTydP9///8kSZGN/3///5IkkY3/f///kiTydNOu//8kSfJ0067//5IkkY3Trv//JEmRjdOu//+SJJGN/39U1ZIkkY3TrlTVJEmRjf9/VNUkSZGN065U1SRJ8nTTrlTVJElqh7SrVNUkSZGN065U1SRJkY3/f1TVJElqhzefVNUkSRp7N59U1SRJGnu0q1TVJEnydP9/VNWSJPJ0065U1ZIk8nT/f1TVJEnydNOuVNUkSfJ0/39U1SRJo2hXYlTVJEmjaB5DVNUkSU8MulJU1SRJTwyCM1TV2rajaFdiVNXatqNoHkNU1dq2u0fGXFTV2rZPDLpSVNXatk8MgjNU1dq2QFm9XwrBJElAWb1fCsHatqNoV2IKwSRJo2hXYgrBJElPDIIzv/batk8MgjO/9iRJo2geQ7/22rajaB5Dv/YkSU8MgjNU1SRJTwy6UlTV2rZPDIIzVNXatk8MulJU1dq2Twy6UgrBJElPDLpSCsHatrtHxlwKwSRJ3EkjXQrB2rbcSSNdCsHatoCy5uP//yRJgLLm4///2rZu1+bj//8kSW7X5uP//2zbgLKh9v9/2raAsqH2/39s2x/Lofb/f9q2H8uh9v9/kiSAsqH2/38kSTCmofb/f9q2MKah9v9/JEmAsqH2/38kSR/Lofb/f5IkH8uh9v9/2rYfy6H2///ath/L/////2zbH8uh9v//bNsfy/////9s2x/L////f9q2H8v///9/bNtu1////3/atm7X////f9q2vuP///9/JElu1////3+SJG7X////fyRJvuP///9/kiQfy////38kSR/L////f5IkH8uh9v//kiQfy/////8kSR/Lofb//yRJH8v/////2rZjD5vP/7/attxJm8//v9q2AAD/v/+/2rbcSWOw/7/atgAAY7D/vyRJAAD/vxutJEljD5vPG63atgAA/78brdq2Yw+bzxutJEncSZvP/78kSWMPm8//vyRJ3EljsP+/JEkAAP+//78kSQAAY7D/vyRJAABjsP//JEkAAP+////atgAAY7D//9q2AAD/v///2rZjD5vP/38kSWMPm8//f9q23Embz/9/JEncSZvP/38kSQAAY7D//9q2AABjsP//JEncSWOw///attxJY7D//2zb3Elp1/+/bNujaB7D/79s29xJwXn/v2zbo2jBef+/bNtu1x7D/79s23ti5uP/vyRJ3EkjXf//JEncScF5///attxJI13//9q23EnBef//2rbcSWOw//8kSdxJY7D//5Ik3Elp1///kiTcScF5//8kSdxJm8///9q23Embz///bNvcSWnX//9s29xJwXn//2zb3Elp1/+fkiTcSWnX/59s23ti5uP/n5Ike2Lm4/+fbNt7Yubj/3+SJHti5uP/f2zbgLLm4/9/2rYwpubj/38kSTCm5uP/f5IkgLLm4/9/kWT+/xmm/7+RZP7/h1D/v22b/v8Zpv+/bZv+/4dQ/79tm2T3+Uj//22bXfx+S///kWRk9/lI//+RZF38fkv//22bsP0qTP//kWSw/SpM//9tm8ru066qipFkyu7TrqqKbZtk96itVJWRZGT3qK1UlZFk/v+HUP//kWSw/SpM//9tm/7/h1D//22bsP0qTP//bZvK7s1H//9tm2T3+Uj//5Fkyu7NR///kWRk9/lI//+RZP7/GaZUtW2b/v8ZplS1kWSw/Xaqqqptm7D9dqqqqm2bZPeorVSVkWRk96itVJVtm138I6v/n5FkXfwjq/+fbZuw/XaqqqqRZLD9dqqqqm2bvuPTrv9/kWS+49Ou/39tm8ru067/f5Fkyu7Trv9/kWS+481H//9tm77jzUf//5Fkyu7NR///bZvK7s1H//9s227XHsP8xdq2vuPZ1fzF2ra+4x7D/MVIkr7j2dX/v7ZtvuPZ1f+/JEm+49nV/7/atr7j2dX/v5Ikbtcew/+/kiR7Yubj/7+SJNxJadf/v5Iko2gew/+/kiTcScF5/7+SJKNowXn/vyRJvuPZ1fzFkiRu1x7D/MUkSb7jHsP8xZIkaod1pfXgkiQae3Wl9eDbNmqHN5/14Ns2Gns3n/XgkiTcScF5//8kSdxJwXn//5Iko2jBef//JEmjaMF5//+SJFrU065U1ZIkbtcAAFTVkiSRjdOuVNWSJFrUp0JU1ZIkgLJQO1TVkiTNlqdCVNWSJICyAABU1ZIkzZbTrlTVkiSRjf9/VNWSJPJ0/39U1ZIko2hQO1TVkiTydNOuVNWSJKNowXlU1SRJo2geQ1TVkiSjaFA7VNVs26NoUDtU1dq2o2geQ1TV2rajaFdiVNXatqNo83FU1dq2o2jBeVTVbNujaMF5VNUkSaNo83FU1SRJo2hXYlTVJEmjaMF5VNVs22qHdaX14CPJaoc3n/XgbNsae3Wl9eAjyRp7N5/14Ns2aoe0q2jL2zYae7SraMuSJGqHdaVoy5IkGnt1pWjLI8lqh7SraMts22qHdaVoyyPJGnu0q2jLbNsae3WlaMuSJKNoUDv//2zbo2hQO///kiSAslA7//8kSTCmUDv//9q2MKZQO///bNuAslA7//+SJM2Wp0L//5IkWtSnQv//AAAco6dC//8AAAvIp0L//2zbzZanQv////8co6dC//9s21rUp0L/////C8inQv//JEkwpgAAVNUkSTCmUDtU1dq2MKYAAFTV2rYwplA7VNWSJM2W067//wAAHKPTrv//kiRa1NOu//8AAAvI067//2zbzZbTrv//bNta1NOu/////xyj067/////C8jTrv//2rYwpgAAVNXatjCmUDtU1WzbgLIAAFTVbNuAslA7VNUkSb7jAABU1ZIkbtcAAFTV2rbcScF5//9s29xJwXn//9q2o2jBef//bNujaMF5//+SJICyAABU1ZIkgLJQO1TVJEkwpgAAVNUkSTCmUDtU1Wzb8nTTrlTVbNuRjdOuVNVs2/J0/39U1WzbzZanQlTVbNuRjf9/VNVs282W065U1Wzbo2hQO1TVbNta1KdCVNVs24CyUDtU1WzbWtTTrlTVbNtu1wAAVNVs24CyAABU1WzbbtcAAFTV2ra+4wAAVNX/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//z//v/8//7//P/+//z//v/+//z/9uf8c/7//P/25/xz///9/////f////3////9//7//v/6cAMb/v/+//pwAxv8//z//P/8//z//P/8//z////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f0iSte1IkrXtSJK17UiSte1IkrXtSJK17UiSte1IkrXt////f////3////9/////f/+//7//v/+//7//v/+//7//f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEv9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//z//P/8//z//P/8//z//P/9/////f////3////9/////P/+//z//v/8//7//P/+//7//P/+//z//v/8//7//P/9//3//f/9//3//f/9//3////9/////f////3////9/SJJJEkiSSRJIkkkSSJJJEv9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f/8//3//P/9//z//f/8//3////9/////f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//PwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9///////9/////f////3////9//3/y5P9/gdr/f/Lk/3+B2v9/JdH/fyXR////f////3////9/////f/9/bMj/fyXR/39syP9/JdH/fxrx/3/y5P9/GvH/f/Lk////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////bn/HP25/xz9uf8c////f////3////9/////f/9/////f////3////9/////f////3////6cAMb+nADG/pwAxv9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//P/8//z//P/8//z//P/8//7//v/+//7//f////3////9/////f////z//v/8//7//P/+//z//v/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP+//z//v/8/") -}, { -"aabb": AABB(-0.07, -0.207951, -0.41, 0.14, 0.415902, 0.82), -"attribute_data": PackedByteArray("XQlYb10JlWMYHFhvGBy0XQAAtF0AAJVj//+0Xf//lWPm47RdofaVY6H2WG/m41hvXYmJ5V2JLfehdonloXYt9+bjA2yh9gNs5uNUdKH2VHQAAANsGBwDbAAAVHQYHFR0oXb//6F2ieVdif//XYmJ5f//VHTm41R0//8DbObjA2wYHFR0XQlUdBgcA2xdCQNsXYmfsF2J3KR8jJ+wfIzcpJuPvqp8jM2JXYnNiXyM7INdieyDoXbNiYJzzYmhduyDgnPsg3yMzYldic2JfIzsg12J7IObj76qfIyfsHyM3KRdidykXYmfsKF23KShdp+wgnPcpIJzn7BjcL6qY3C+qoJz3KSCc5+woXafsKF23KShds2JgnPNiaF27IOCc+yDd6/TV3evjFIxuNNXd69VStSzbkuAtBFMBbdwTjG4jFLlWVVK5VmMUuVZ01eIVW5L21QRTFZScE4rUYxSK1HTV66E01dQe9NXroSMUlB7jFIZplVKGaaMUodQVUqHUIxSKkxuS4dQ01fNR9NXfksRTPlIcE7NR4xSGabTV3aqbksjqxFMqK1wTtOu01fTroxSUHvTV1B7jFKuhNNXroSMUq6ExFquhFirUHvEWlB7WKvZ1ftQ2dXsWXzM+1Aew+xZ2dUMT9nV/Vd8zAxPHsP9VzF4T9gxeH3PUHtP2FB7fc/Trq99p0KvfdOuXnWnQl51XYn4maF2+JldiZ+SoXafkiUq/VclKgxP4Dz9V4IzDE8rUbF2K1EOZVe9sXZXvQ5loXYWaV2JFmmhdjx6XYk8eitRXnUrUQ5tV71edVe9Dm3Trg5l066xdqdCDmWnQrF2p0IObdOuDm2nQl51065edStRXnVXvV51K1GvfVe9r33gfNNXoXbTV1B7AU8xeAFPXYkWOR6DFjnNh50sroSdLCUq7FklKvtQ4DzsWYIz+1BdidNXHoPTV82HAU+uhAFP4HwWOaF2FjlQe50sMXidLK6ET9iuhH3PzYdP2M2Hfc9diTl1oXY5dZuPWG9jcFhvm4+0XWNwtF1didNXoXbTVz2Gn5ILjviZPYZSoduiUqFBoPiZC46fksF5n5LBeVKh83GfkvNx+JkjXVKhvV/4maF27w5Qe4+zoXarxuB8q8ZQe1irroSPsx6Dq8ZdiavGroSMUl2J7w5Qe4xSUHvEWq6EWKuuhMRaXQlYb10JlWMYHFhvGBy0XQAAtF0AAJVjoXYt96F2ieVdiS33XYmJ5f//tF3//5Vj5uO0XaH2lWOh9lhv5uNYb12JieVdif//oXaJ5aF2//+hdr6MY3C+jKF2+4BjcPuAXYmPs12Jd4ebj4+zm493h5uPvoxdib6Mm4/7gF2J+4ChdneHoXaPs2Nwd4djcI+zSlTsg0pUzYkrUb6M/3++jMdgzYn/f/uAK1H7gMdg7IOhdr6MY3C+jKF2+4BjcPuAm4++jF2Jvoybj/uAXYn7gJuPd4ebj4+zXYl3h12Jj7PTrr6MtKvsg9Ou+4D/f/uAN5/sgzefzYm0q82J/3++jGNwj7NjcHeHoXaPs6F2d4dXYp+SHkOfkrpSt76CM7e+p52fkuC8n5I4o1aiRK23vnzMt75diaCioXagol2J4ZqhduGaXYmo0qF2qNJdiS2koXYtpF2JcD9didZcoXZwP6F21lxdiVzJoXZcyV2Jcquhdl+qXYlfql2JWG+hdlhvXYm0XaF2tF2bj1hvXYlYb5uPlWNdiZVjY3BYb6F2OXVdiTl1oXZYb6F2lWNjcJVjoXYt96F2//9jcC33Y3D//5uPlWNdiZVjm4+0XV2JtF1didNXoXa0XWNwtF2hdtNXY3CVY6F2lWObjy33m4///12JLfddif//YzA/vWMwUqH/P5nEm09SoZtPmcShduZsoXZ3XF2J5mxdiXdcm89SoZvPP71jsFKh/7+ZxGOwmcRdiQi1XYm7w6F2CLWhdrvDXYk/vaF2P71diVKhoXZSoV2JmcShdpnEXYlSoaF2UqGVKFKh4Dyfkj2GUqE9hp+S4Dy0XRgcj5VdiaNmXYmVgaF2o2ahdpWBoXYItV2JCLWbj8fZm4+VgV2JbdKhdm3SY3DH2WNwlYGbj4tfY3CLX5uP6U5jcOlOm4+PlWNwj5Wbj1hvXYk5daF2OXVjcFhvUHtYq1B7xFquhFirroTEWlB7yINQe2yAroTIg66EbIBQe4d/roSHf66Ew19Qe8NfroSDW1B7g1uuhNGiroQSp1B70aJQexKnUHsMYlB7y12uhAxiroTLXVB7TJquhEyaUHuNnq6EjZ6uhIt9UHuLfa6EMHpQezB6roRKeVB7SnmuhNNXUHvTV66EjFJQe4xSroTTV1B701euhIxSUHuMUuA8VHQlKgNs4DwDbB6DT9jgfE/YoXZP2F2JT9gew7Rd5uOPlWnXUqEew5+SwXlSocF5n5LZ1QNsHsNUdB7DA2x8qOyDfKjNiYGh7IOBoc2Jm49SoV2JUqGbj5+SXYmfktOuLF8AALRd0677gKdCLF9QO1hvp0KSfAAAWG/TrpJ8/3/7gP9/voxQO5+S066+jJuPlYFdiSNOm4/KRmNwykahdiNOoXaJa6F2PHqhdpWBY3CVgV2JPHpdiYlrXYmVgYJX7IN9XuyDglfNiX1ezYmBoeyDgaHNiYaa7IOGms2JfV7sg3hl7IN9Xs2JeGXNiZuPn5JjcJ+Sm49Yb12JOXWhdjl1Y3BYb5uPknybjyxf2ZWxdtmVDmVjcJJ8JWqxdmNwLF8lag5lXYnvDl2Jykahdu8OoXbKRmNwknwlarF2Y3AsXyVqDmWbj5J8m48sX9mVsXbZlQ5l//9UdK7EVHT//wNsrsQDbAAAA2wAAFR0oXZSoWNwUqGhdp+SY3CfkgAAA2xQOwNsAABUdFA7VHQrUb6MK1H7gP9/voxXvZJ8/3/7gCtRknyuxJ+SV70sX67EWG8rUSxf//+0Xf//WG///1R0//8DbA=="), -"format": 34896613399, -"index_count": 240, -"index_data": PackedByteArray("zAHKAcsBywHNAcwB0AHOAc8BzwHRAdABwQHEAdIB0gHTAcEBxAHUAdIB0gHVAdMB1QHWAdMB1QHXAdYB1gHYAdMB2QHSAdQB1AHaAdkB2gHXAdkB2gHbAdcB2wHGAdcBxgHcAdcB3AHWAdcBxAHGAd0B3QHUAcQBxgHbAd0B4AHeAd8B3wHhAeAB3wHiAeEB4gHjAeEB4wHkAeEB5AHlAeEB5QHmAeEB5wHkAeMB4wHoAecB6AHfAd4B3gHpAegB6QHnAegB7AHqAesB6wHtAewB8AHuAe8B7wHxAfAB9AHyAfMB8wH1AfQB+AH2AfcB9wH5AfgB+gH5AfcB9wH7AfoB/gH8Af0B/QH/Af4BAgIAAgECAQIDAgICBgIEAgUCBQIHAgYCCgIIAgkCCQILAgoCDgIMAg0CDQIPAg4CEgIQAhECEQITAhICFALJAcgByAEVAhQCGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCdwF6AR4CHgJ5AXcBegEfAh4CHgIgAnkBIQJ5ASACIQIgAiICIgIfAiMCIwIhAiICIQIkAnkBIQIlAiQCJQImAiQCJwIfAnoBJwIjAh8CegEoAicCKAIlAicCKAImAiUCKAIpAiYCKgK6AbwBvAErAioC"), -"material": SubResource("StandardMaterial3D_20it6"), -"name": "purple", -"primitive": 3, -"uv_scale": Vector4(32.2835, 34.2835, 0, 0), -"vertex_count": 556, -"vertex_data": PackedByteArray("bNuAsqH2VNVs2x/LofZU1WzbgLLm41TVbNtu1+bjVNVs227X//9U1WzbH8v//1TVkiRu1///VNWSJB/L//9U1ZIkbtfm41TVkiQfy6H2VNWSJICyofZU1ZIkgLLm41TVJEkwpubjVNUkSTCmofZU1dq2MKbm41TV2rYwpqH2VNWSJICy5uNU1ZIkgLKh9lTVJEkwpubjVNUkSTCmofZU1dq2vuP//1TV2ra+4+bjVNVs227X//9U1Wzbbtfm41TVJEm+4///VNUkSb7j5uNU1dq2vuP//1TV2ra+4+bjVNWSJG7X//9U1ZIkbtfm41TVJEm+4///VNUkSb7j5uNU1dq2MKbm41TV2rYwpqH2VNVs24Cy5uNU1WzbgLKh9lTV2rZqh7SrVNXatmqHN59U1SPJaoe0q1TVI8lqhzefVNVs22qHdaVU1ds2Gns3n///JEkaezef///bNmqHN5///yRJaoc3n///2rYaezef//8jyRp7N5///9q2aoc3n///I8lqhzef//8jyRp7tKv//9q2Gnu0q///I8lqh7Sr///atmqHtKv//5IkGnt1pVTV2zYae7SrVNXbNhp7N59U1SRJGns3n1TVJEkae7SrVNXathp7N59U1dq2Gnu0q1TVI8kaezefVNUjyRp7tKtU1WzbGnt1pVTVkiRqh3WlVNXbNmqHN59U1ds2aoe0q1TVJElqh7SrVNUkSWqHN59U1SRJGnu0q///2zYae7Sr//8kSWqHtKv//9s2aoe0q///bZu+44dQVNVtm8ruh1BU1W2bvuPNR1TVbZv+/4dQVNVtm7D9KkxU1W2bXfx+S1TVbZtk9/lIVNVtm8ruzUdU1W2b/v8ZplTVbZvK7hmmVNVtm77jGaZU1W2bsP12qlTVbZtd/COrVNVtm2T3qK1U1W2byu7TrlTVbZu+49OuVNVtm77jh1D//5FkvuOHUP//bZvK7odQ//+RZMruh1D//5Fk/v8ZplTVkWTK7hmmVNWRZP7/h1BU1ZFkyu6HUFTVkWSw/SpMVNWRZL7jh1BU1ZFkvuPNR1TVkWRd/H5LVNWRZGT3+UhU1ZFkyu7NR1TVkWS+4xmmVNWRZLD9dqpU1ZFkXfwjq1TVkWRk96itVNWRZL7j065U1ZFkyu7TrlTVbZu+4xmm//9tm8ruGab//5FkvuMZpv//kWTK7hmm//+RZMruh1BU1ZFkyu4ZplTVbZvK7odQVNVtm8ruGaZU1UhSNfbZ1VTVJEm+49nVVNVIUjX2fMxU1SRJvuMew1TVbZs19tnVVNVIkr7j2dVU1W2bNfZ8zFTVSJK+4x7DVNVIUjX22dVU1UhSNfZ8zFTVkWQ19tnVVNWRZDX2fMxU1QAAC8jTrlTVAAALyKdCVNWSJFrU065U1ZIkWtSnQlTVJElAWfNx///atkBZ83H//yRJo2jzcf//2rajaPNx//+2bb7j2dVU1ZFkNfbZ1VTVtm2+4x7DVNWRZDX2fMxU1f//HKPTrlTV//8LyNOuVNX//xyjp0JU1f//C8inQlTVJElAWb1fVNXatkBZvV9U1SRJQFnzcVTV2rZAWfNxVNVs282W065U1f//HKPTrlTVbNvNlqdCVNX//xyjp0JU1QAAC8jTrlTVAAAco9OuVNUAAAvIp0JU1QAAHKOnQlTVAAAco6dCVNUAAByj065U1ZIkzZanQlTVkiTNltOuVNVs21rU065U1WzbWtSnQlTV//8LyNOuVNX//wvIp0JU1bZtvuPZ1f//JEm+49nV//+RZDX22dX//0hSNfbZ1f//JEm+4x7Dqum2bb7jHsOq6UhSNfZ8zKrpkWQ19nzMqunatr7j2dVU1batNfbZ1VTV2ra+4x7DVNW2rTX2fMxU1dq2vuPZ1f//SJK+49nV//+2rTX22dX//22bNfbZ1f//SJK+4x7Dqunatr7jHsOq6W2bNfZ8zKrptq019nzMqultmzX22dVU1W2bNfZ8zFTVtq019tnVVNW2rTX2fMxU1SRJMKYAAP//2rYwpgAA//+SJICyAAD//2zbgLIAAP//kiRu1wAA//9s227XAAD//yRJvuMAAP//2ra+4wAA///atqNowXlU1dq2QFnzcVTV2rbcScF5VNXattxJI11U1dq2QFm9X1TV2rajaPNxVNUkSaNowXlU1SRJ3EnBeVTVJEmjaPNxVNUkSUBZ83FU1SRJ3EkjXVTVJElAWb1fVNUkSb7jAABU1ZFkvuPTrlTVJEm+4x7DVNW2bb7jHsNU1ZFkvuMZplTVbZu+49OuVNVIkr7jHsNU1dq2vuMew1TVbZu+481HVNXatr7jAABU1ZFkvuPNR1TVkWS+44dQVNVtm77jGaZU1W2bvuOHUFTVJEmAsqH2VNUkSR/LofZU1SRJgLLm41TVJElu1+bjVNUkSW7X//9U1SRJH8v//1TVJEmAsqH2VNUkSYCy5uNU1dq2gLKh9lTV2raAsubjVNXatm7X//9U1dq2H8v//1TV2rZu1+bjVNXath/LofZU1dq2gLKh9lTV2raAsubjVNUkSW7X5uNU1SRJbtf//1TV2rZu1+bjVNXatm7X//9U1dq28nTTrv//bNvydNOu///atpGN067//2zbkY3Trv//2rbydNOuVNXatvJ0/39U1Wzb8nTTrlTVbNvydP9/VNVs2/J0/3///9q28nT/f///bNuRjf9////atpGN/3///9q2kY3/f1TV2raRjdOuVNVs25GN/39U1WzbkY3TrlTV2rZqh7SrVNXathp7tKtU1dq28nTTrlTV2rbydP9/VNXathp7N59U1dq2kY3/f1TV2raRjdOuVNXatmqHN59U1SRJ8nT/f///kiTydP9///8kSZGN/3///5IkkY3/f///kiTydNOu//8kSfJ0067//5IkkY3Trv//JEmRjdOu//+SJJGN/39U1ZIkkY3TrlTVJEmRjf9/VNUkSZGN065U1SRJ8nTTrlTVJElqh7SrVNUkSZGN065U1SRJkY3/f1TVJElqhzefVNUkSRp7N59U1SRJGnu0q1TVJEnydP9/VNWSJPJ0065U1ZIk8nT/f1TVJEnydNOuVNUkSfJ0/39U1SRJo2hXYlTVJEmjaB5DVNUkSU8MulJU1SRJTwyCM1TV2rajaFdiVNXatqNoHkNU1dq2u0fGXFTV2rZPDLpSVNXatk8MgjNU1dq2QFm9XwrBJElAWb1fCsHatqNoV2IKwSRJo2hXYgrBJElPDIIzv/batk8MgjO/9iRJo2geQ7/22rajaB5Dv/YkSU8MgjNU1SRJTwy6UlTV2rZPDIIzVNXatk8MulJU1dq2Twy6UgrBJElPDLpSCsHatrtHxlwKwSRJ3EkjXQrB2rbcSSNdCsHatoCy5uP//yRJgLLm4///2rZu1+bj//8kSW7X5uP//2zbgLKh9v//2raAsqH2//9s2x/Lofb//9q2H8uh9v//kiSAsqH2//8kSTCmofb//9q2MKah9v//JEmAsqH2//8kSR/Lofb//5IkH8uh9v//2rYfy6H2VNXath/L//9U1WzbH8uh9lTVbNsfy///VNVs2x/L/////9q2H8v/////bNtu1//////atm7X/////9q2vuP/////JElu1/////+SJG7X/////yRJvuP/////kiQfy/////8kSR/L/////5IkH8uh9lTVkiQfy///VNUkSR/LofZU1SRJH8v//1TV2rZjD5vPVNXattxJm89U1dq2AAD/v1TV2rbcSWOwVNXatgAAY7BU1SRJAAD/v2jLJEljD5vPaMvatgAA/79oy9q2Yw+bz2jLJEncSZvPVNUkSWMPm89U1SRJ3EljsFTVJEkAAP+/VNUkSQAAY7BU1SRJAABjsFTVJEkAAP+/VNXatgAAY7BU1dq2AAD/v1TV2rZjD5vP//8kSWMPm8///9q23Embz///JEncSZvP//8kSQAAY7D//9q2AABjsP//JEncSWOw///attxJY7D//2zb3Elp11TVbNujaB7D/79s29xJwXlU1Wzbo2jBef+/bNtu1x7D/79s23ti5uNU1SRJ3EkjXVTVJEncScF5VNXattxJI11U1dq23EnBeVTV2rbcSWOwVNUkSdxJY7BU1ZIk3Elp11TVkiTcScF5VNUkSdxJm89U1dq23Embz1TVbNvcSWnXVNVs29xJwXlU1Wzb3Elp1/zFkiTcSWnX/MVs23ti5uP8xZIke2Lm4/zFbNt7Yubj//+SJHti5uP//2zbgLLm4///2rYwpubj//8kSTCm5uP//5IkgLLm4///kWT+/xmmVNWRZP7/h1BU1W2b/v8ZplTVbZv+/4dQVNVtm2T3+Uj/8G2bXfx+S6rpkWRk9/lI//CRZF38fkuq6W2bsP0qTIzikWSw/SpMjOJtm8ru066wwJFkyu7TrrDAbZtk96itusKRZGT3qK26wpFk/v+HULzbkWSw/SpMjOJtm/7/h1C8222bsP0qTIzibZvK7s1Hdvhtm2T3+Uj/8JFkyu7NR3b4kWRk9/lI//CRZP7/GaZ3z22b/v8ZpnfPkWSw/XaqSsptm7D9dqpKym2bZPeorbrCkWRk96itusJtm138I6v8xZFkXfwjq/zFbZuw/XaqSsqRZLD9dqpKym2bvuPTrv//kWS+49Ou//9tm8ru067//5Fkyu7Trv//kWS+481H//9tm77jzUf//5Fkyu7NR///bZvK7s1H//9s227XHsP8xdq2vuPZ1VTV2ra+4x7D/MVIkr7j2dVU1bZtvuPZ1VTVJEm+49nVVNXatr7j2dVU1ZIkbtcew/+/kiR7YubjVNWSJNxJaddU1ZIko2gew/+/kiTcScF5VNWSJKNowXn/vyRJvuPZ1VTVkiRu1x7D/MUkSb7jHsP8xZIkaod1pePSkiQae3Wl49LbNmqHN5/j0ts2Gns3n+PSkiTcScF5//8kSdxJwXn//5Iko2jBef//JEmjaMF5//+SJFrU067/v5IkbtcAAP+/kiSRjdOu/7+SJFrUp0L/v5IkgLJQO/+/kiTNlqdC/7+SJICyAAD/v5IkzZbTrv+/kiSRjf9//7+SJPJ0/3//v5Iko2hQO/+/kiTydNOu/7+SJKNowXn//yRJo2geQ///kiSjaFA7//9s26NoUDv//9q2o2geQ///2rajaFdi///atqNo83H//9q2o2jBef//bNujaMF5//8kSaNo83H//yRJo2hXYv//JEmjaMF5//9s22qHdaXj0iPJaoc3n+PSbNsae3Wl49IjyRp7N5/j0ts2aoe0qxut2zYae7SrG62SJGqHdaUbrZIkGnt1pRutI8lqh7SrG61s22qHdaUbrSPJGnu0qxutbNsae3WlG62SJKNoUDv//2zbo2hQO///kiSAslA7//8kSTCmUDv//9q2MKZQO///bNuAslA7//+SJM2Wp0L//5IkWtSnQv//AAAco6dC//8AAAvIp0L//2zbzZanQv////8co6dC//9s21rUp0L/////C8inQv//JEkwpgAA//8kSTCmUDv//9q2MKYAAP//2rYwplA7//+SJM2W067/fwAAHKPTrv9/kiRa1NOu/38AAAvI067/f2zbzZbTrv9/bNta1NOu/3///xyj067/f///C8jTrv9/2rYwpgAA/MXatjCmUDv8xWzbgLIAAPzFbNuAslA7/MUkSb7jAAD8xZIkbtcAAPzF2rbcScF5//9s29xJwXn//9q2o2jBef//bNujaMF5//+SJICyAAD8xZIkgLJQO/zFJEkwpgAA/MUkSTCmUDv8xWzb8nTTrv+/bNuRjdOu/79s2/J0/3//v2zbzZanQv+/bNuRjf9//79s282W067/v2zbo2hQO/+/bNta1KdC/79s24CyUDv/v2zbWtTTrv+/bNtu1wAA/79s24CyAAD/v2zbbtcAAPzF2ra+4wAA/MX/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//z//v/8//7//P/+//z//v/+//z//v/8//7//P/+//z////9/////f////3////9//7//v/+//7//v/+//7//v/8//z//P/8//z//P/8//z////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f0iSte1IkrXtSJK17UiSte1IkrXtSJK17UiSte1IkrXt////f////3////9/////f/+//7//v/+//7//v/+//7//f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEv9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//z//P/8//z//P/8//z//P/9/////f////3////9/////P/+//z//v/8//7//P/+//7//P/+//z//v/8//7//P/9//3//f/9//3//f/9//3////9/////f////3////9/SJJJEkiSSRJIkkkSSJJJEv9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f////bn/HP+//z/9uf8c////f////3////9/////f/9/////f////3////9/////f////3////+//7/+nADG/pwAxv9/////f////3////9/////f////3////9/////f////3////9/////f////3////9//v//f////3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3/+//9/////f/7//3////9//v//f/7//3/+//9//v//f/8//3//P/9//z//f/8//3////9/////f////3////9/////f////3////9///8AY/45AGP+OQBj/jkAY/45/pwAxv6cAMb/f////3////9/////f///AUb/4gFG/+IBRv/iAUb/4v9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP25/xz9uf8c") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_og8k7") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_p5nl0"] -resource_name = "dark" -albedo_color = Color(0.432587, 0.480096, 0.526319, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0u3yf"] -resource_name = "metal" -albedo_color = Color(0.904365, 0.914141, 0.944534, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1w1t4"] -resource_name = "yellow" -albedo_color = Color(0.998274, 0.894448, 0.505969, 1) -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_y65vf"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 729, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABgAHAAAAAAACAAYACQAIAAEAAQAKAAkAAQAFAAoAAQAHAAUAAQAAAAcACAAJAAsACwAMAAgACgAFAAQABAANAAoAEAAOAA8ADwARABAADgASAA8ADgATABIADgAUABMADgAVABQADgAWABUAFwAWAA4AGAAXAA4AGQAYAA4AGgAZAA4AGwAaAA4ADgAcABsAHgARAB0AHQAfAB4AHwAgAB4AIAAhAB4AIQAiAB4AIgAjAB4AJQAcACQAJAAmACUAJAAnACYAJAAoACcAJAApACgAJAAjACkALAAqACsAKwAtACwAKwAuAC0ALgAvAC0ALwAwAC0ALwAxADAALwAyADEAMgAzADEAMgA0ADMANAA1ADMANAA2ADUANgA3ADUANwA4ADUANwA5ADgAOQA6ADgAOQA7ADoAOwA8ADoAOwA9ADwAOwA+AD0APgA/AD0APwBAAD0APwBBAEAARABCAEMAQwBFAEQASABGAEcARwBJAEgATABKAEsASwBNAEwASwBOAE0ATgBPAE0AUABLAEoASgBRAFAAUQBPAFAAUQBNAE8ATQBRAFIAUgBTAE0ARwBCAEQARABJAEcAQgBUAFUAVQBDAEIAVQBWAEMAVgBGAEMARwBGAFQAVABCAEcARgBXAFQARgBWAFcAWQBYAEoASgBMAFkASABFAEMAQwBGAEgASgBYAFIAUgBRAEoATQBTAFkAWQBMAE0AXABaAFsAWwBdAFwAXwBeAFwAXABdAF8AYgBgAGEAYQBjAGIAYwBkAGIAZABlAGIAZABeAGUAXgBfAGUAZgBkAGMAYwBnAGYAZwBoAGYAZwBpAGgAaABpAGoAagBrAGgAbABgAGIAYgBtAGwAbgBjAGEAYQBvAG4AcABnAGMAYwBuAHAAbgBxAHAAcgBwAHEAcQBzAHIAagBwAHIAcgBrAGoAWwBaAHQAdAB1AFsAbgBvAGwAbABtAG4AbQB2AG4AdgBxAG4AdgBzAHEAdwB2AG0AbQB1AHcAdQB0AHcAbABvAGEAYQBgAGwAYgBlAFsAWwBtAGIAWwB1AG0AGAAZAHgAeAB5ABgAGgB6AHgAeAAZABoAGwB7AHoAegAaABsAFwAYAHkAeQB8ABcAfwB9AH4AfgAjAH8AIwAiAH8AgAB/ACIAIgAhAIAAggCBAHsAewAbAIIAGwAcAIIAhACDACgAKAApAIQAJwCFAIYAhgAmACcAhwCAACEAIQAgAIcAJQCIAIEAgQCCACUAggAcACUAHwCJAIcAhwAgAB8AfQCEACkAKQAjAH0AIwB+AH0AJgCGAIgAiAAlACYAgwCFACcAJwAoAIMAHQCKAIkAiQAfAB0AjACLAIoAigAdAIwAHQARAIwAEwCNAI4AjgASABMADwCPAIsAiwCMAA8AjAARAA8AEgCOAI8AjwAPABIAEwAUAJAAkACNABMAFAAVAJEAkQCQABQAFQAWAJIAkgCRABUAFgAXAHwAfACSABYAQQA/AJMAkwCUAEEAPwA+AJUAlQCTAD8ANwCWAJcAlwA5ADcANgCYAJYAlgA3ADYAPgA7AJkAmQCVAD4ALwCaAJsAmwAyAC8AnQCcACoAKgAsAJ0AngCdACwALAAtAJ4AnwCeAC0ALQAwAJ8AMQCgAJ8AnwAwADEAMwChAKAAoAAxADMANQCiAKEAoQAzADUAOACjAKIAogA1ADgAOgCkAKMAowA4ADoAPAClAKQApAA6ADwAPAA9AKYApgClADwAPQBAAKcApwCmAD0AOQCXAJkAmQA7ADkAqACaAC8ALwAuAKgANACpAJgAmAA2ADQAMgCbAKkAqQA0ADIAqgCoAC4ALgArAKoAnACqACsAKwAqAJwAQABBAJQAlACnAEAAAwAMAAsACwANAAMADQAEAAMABAAGAAMABgACAAMA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 384, -"index_data": PackedByteArray("rQCrAKwArACuAK0ArAANAK4ADQALAK4AHACCAK8ArwAkABwAggAcAA4ADgCwAIIAEQCMALEAsQAQABEAjAARAB4AHgCyAIwAtQCzALQAtAC2ALUAHgAjAH4AfgCyAB4ArwB+ACMAIwAkAK8AuQC3ALgAuAC6ALkAuAC3ALsAuwC8ALgAvQC8ALsAuwC+AL0AtACzAL8AvwDAALQAwwDBAMIAwgDEAMMAxQDAAL8AvwDGAMUAvQC+ALkAuQC6AL0AuAC8AL0AvQC6ALgAwwDEAMcAxwDIAMMAxQDGALUAtQC2AMUAtADAAMUAxQC2ALQAyQDBAMMAwwDIAMkArQCuAMoAygDLAK0ArgALAAkACQDKAK4AzQDMAE8ATwBOAM0ASwBQAM4AzgDPAEsA0QDQAFUAVQBUANEAsQCwAA4ADgAQALEA0gBWAFUAVQDQANIA0ADTANIA0QBUAFcAVwDUANEA1ADVANEAVwBWANIA0gDUAFcAzADWAM4AzgBPAMwAzgBQAE8AzwDXAM0AzQBLAM8AzQBOAEsAagBpAGcAZwBwAGoAWwBlAF8AXwBdAFsAkQCSAHwAfACQAJEAfAB5AJAAeQCNAJAAeQB4AI0AeACOAI0AeACcAI4AnACdAI4AnQCeAI4AngCPAI4AngCfAI8AnwCgAI8AoAChAI8AoQCLAI8AoQCiAIsAogCKAIsAogCjAIoAowCkAIoApACJAIoApAClAIkApQCmAIkApgCnAIkApwCHAIkApwCUAIcAlACFAIcAhQCDAIcAgwCAAIcAgwB/AIAAgwCEAH8AhAB9AH8AhQCUAJMAhgCFAJMAhgCTAJUAhgCVAJkAhgCZAJcAiACGAJcAiACXAJYAgQCIAJYAgQCWAJgAgQCYAKkAewCBAKkAewCpAJsAewCbAJoAewCaAKgAegB7AKgAegCoAKoAegCqAJwAnAB4AHoACgANAKwArADYAAoA2QDJAMgAyADHANkA2ADaAMoAygAKANgAygAJAAoAywDKANoA"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"format": 34896613377, -"index_count": 411, -"index_data": PackedByteArray("3QDbANwA4ADeAN8A4wDhAOIA4gDkAOMA3QDcAOUA5QDmAN0A6ADnAOAA4ADfAOgA5ADiAOkA5wDoAOEA4QDjAOcA4wDlAOcA4wDqAOUA6gDmAOUA6gDrAOYA7QDsAOsA6wDqAO0A2gDYAO4A7gDvANoA0ADRANUA1QDTANAA0wDVANQA1ADSANMAzQDXANYA1gDMAM0A8QDwAL8AvwDyAPEAvwCzAPIAswC7APIAswC1ALsAuwC3APIAtwC5APIAxgC/APAA8ADzAMYA8wC1AMYA8wDyALkA8wC+ALUAvgC7ALUA8wC5AL4A9ADwAFkAWQBTAPQAUwDbAPQAUwBSANsAUgD1ANsA9QDcANsA4ADcAPUA5QDcAOAA4ADnAOUA9QDeAOAAWABZAPAAcgBYAPAAawByAPAAaABrAPAAaADwAPEA8QD2AGgAcgBzAFgAcwBSAFgAcwB2AFIAdgD3AFIA9wD1AFIAZgBoAPYA+AD2ALEAsQDyAPgAsQCMAPIAjACyAPIAsgB+APIAfgCvAPIAsACxAPYA9gDxALAA8QDyAK8A8QCCALAA8QCvAIIA9QD3AKwArACrAPUA4QDoAN8A3wADAOEAAwDiAOEAAwABAOIAAQDpAOIAAQAIAOkACADLAOkAywDaAOkA2gDvAOkArQDLAAgACAAMAK0ADAADAN8A9QAMAN8A3wDeAPUA9QCrAAwAqwCtAAwA+QDsAO0A+gDZAMcA+QD6AMcA7AD5AMcA5gDsAMcA3QDmAMcA3QDHAMQA3QDEAMIA2wDdAMIAwgD0ANsA6wDsAOYA1wDPAM4AzgDWANcAZABmAPYA9gD4AGQA7gB3AHQARQDuAHQARABFAHQARAB0AFoAWgBcAEQAXADzAEQA8wBJAEQARQDvAO4ARQDpAO8ARQDkAOkASQDzAPoA+gBIAEkA+gD5AEgA+QBFAEgA+QDtAEUA7QDkAEUA4wDkAO0A7QDqAOMA8wBcAF4A8gDzAF4A8gBeAGQAZAD4APIA8AD0AMIAwgDBAPAAwQDJAPAA8wDwAMkA+gDzAMkAyQDZAPoArAD3AHYAdgB3AKwAdwDYAKwAdwDuANgA"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 251, -"vertex_data": PackedByteArray("2rZpFR0KAADatipsaRoAACRJaRUdCgAAJEkqbGkaAAAkSQAAui4AANq2AAC6LgAAJEkAAM8SAADatgAAzxIAANq2KmwLQwAA2rYjWqk/AADathxIRjwAACRJI1qpPwAAJEkqbAtDAAAkSRxIRjwAACRJiFat6wAA/LS1wK3rAADatohWresAANq2Tsat6wAAga99u63rAADJpgK3resAAG2bkrOt6wAAMo5psa3rAAD/f6ywresAAMxxabGt6wAAkWSSs63rAAA1WQK3resAAH1Qfbut6wAAAku1wK3rAAAkSU7GresAAPy058ut6wAA2rbw263rAACBrx/RresAAMmmmtWt6wAAbZsK2a3rAAAyjjTbresAAP9/8Nut6wAAJEnw263rAAACS+fLresAAH1QH9Gt6wAANVma1a3rAACRZArZresAAMxxNNut6wAA/3/duq3rAAB9eEG7resAAIGHQbut6wAAgI5mvK3rAAB+cWa8resAAHxrN76t6wAAgpQ3vq3rAAAemZbAresAAOBmlsCt6wAABJxYw63rAAD6Y1jDresAAAGdTsat6wAA/WJOxq3rAAD6Y0TJresAAAScRMmt6wAA4GYGzK3rAAAemQbMresAAHxrZc6t6wAAgpRlzq3rAACAjjbQresAAH5xNtCt6wAAfXhb0a3rAACBh1vRresAAP9/v9Gt6wAA2raWenmeAADatpZ6hWEAAGzblnp5ngAAbNuWeoVhAADatm+XhWEAANq2b5d5ngAAbNtvl4VhAABs22+XeZ4AACRJlnp5ngAAJEk5kGmaAAAkSW+XeZ4AACRJb5eFYQAAJEk5kCiKAAAkSc2BKIoAACRJzYFpmgAAJEmWeoVhAACSJJZ6hWEAAJIkb5eFYQAA2rY5kGmaAADats2BaZoAANq2zYEoigAA2rY5kCiKAACSJJZ6eZ4AAJIkb5d5ngAAbNsqbO2wAAD+/yps7bAAAGzbrLDtsAAAte2ssO2wAABs26ywPM8AALXtrLA8zwAAbNtEKzzPAACSJEQrPM8AAP7/sDk8zwAAAACwOTzPAABs2xxIPM8AAP7/Kmw8zwAAkiQcSDzPAAAAACpsPM8AAJIkrLA8zwAASRKssDzPAABJEqyw7bAAAJIkrLDtsAAAbNtEK8ZxAAD+/7A5xnEAAAAAsDnGcQAAkiREK8ZxAAAAACps7bAAAAAAKmzGcQAAkiQqbO2wAACSJCpsxnEAAGzbKmzGcQAA/v8qbMZxAACSJBxIxnEAAGzbHEjGcQAANVkCt///AACRZJKz//8AAH1Qfbv//wAAAku1wP//AADMcWmx//8AAP9/8Nv//wAA/3/w2973AAAyjjTb//8AAG2bCtn//wAAJElOxv//AAAkSU7G3vcAAJFkCtn//wAAzHE02///AAA1WZrV//8AAH1QH9H//wAAyaaa1f//AAACS+fL//8AAIGvH9H//wAA/LTny///AADatk7G//8AANq2Tsbe9wAAyaYCt///AACBr327//8AAPy0tcD//wAAbZuSs///AAAyjmmx//8AAP9/rLD//wAAfXhb0f//AAD/f7/R//8AAH5xNtD//wAA+mNEyf//AADgZgbM//8AAP1iTsb//wAAfGtlzv//AAB8aze+//8AAOBmlsD//wAA/3/duv//AACBh0G7//8AAICOZrz//wAAgpQ3vv//AAAemZbA//8AAAScWMP//wAAAZ1Oxv//AAAEnETJ//8AAB6ZBsz//wAAgpRlzv//AACAjjbQ//8AAIGHW9H//wAAfnFmvP//AAD6Y1jD//8AAH14Qbv//wAAJEkqbIVhAAAkSRxIhWEAACRJKmxdVwAAJEkjWl1XAAAkSfDb3vcAACRJiFbe9wAA2raIVt73AADatvDb3vcAALZtXOq+7wAAkWT//77vAAC2bVzqXNcAAJFk//+N4wAA2rZc6r7vAAC2rf//vu8AANq2XOpc1wAAtq3//43jAABIklzqvu8AAG2b//++7wAAbZv//43jAABIklzqXNcAACRJXOq+7wAASFL//77vAAAkSfDbjaMAACRJrLA4jgAAJEnw2wE5AAAkSaywsCQAAEhS//+N4wAAJElc6lzXAADatqywsCQAANq28NsBOQAA2rbw242jAADatiNaXVcAANq2KmxdVwAA2zbNgSiKAADbNjmQKIoAANs2zYFpmgAA2zY5kGmaAAAjyc2BaZoAACPJOZBpmgAAI8nNgSiKAABs282BSJIAACPJOZAoigAAbNs5kEiSAACSJM2BSJIAAJIkOZBIkgAA2rYcSIVhAADatqywOI4AANq2KmyFYQAAkiSssEAQAACSJECiQBAAACRJrLBAEAAAkiQqbEAQAAAkSSpsQBAAAJIklnpAEAAA2rYqbAAAAADatipsQBAAAGzblnoAAAAAbNuWekAQAACSJECiAAAAACRJrLAAAAAAkiSWegAAAAAkSSpsAAAAAGzbKmxAEAAAbNtAogAAAADatqywAAAAANq2rLBAEAAAbNtAokAQAABs2xxIhWEAAGzbKmyFYQAAkiRc6qmqAACSJFzq3vcAAGzbXOre9wAAbNtc6qmqAACSJKywOI4AAJIkKmyFYQAAkiQcSN73AACSJBxIhWEAAGzbHEje9wAAbNussEAQAABs26ywOI4AAA==") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_kn6m3"] -resource_name = "blasterM_Mesh blasterM" -_surfaces = [{ -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 729, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYACgAIAAkACQALAAoADgAMAA0ADQAPAA4ADQAQAA8ADQARABAADQASABEAFQATABQAFAAWABUAGQAXABgAGAAaABkAHQAbABwAHAAeAB0AGwAfABwAGwAgAB8AGwAhACAAGwAiACEAGwAjACIAJAAjABsAJQAkABsAJgAlABsAJwAmABsAKAAnABsAGwApACgAKwAeACoAKgAsACsALAAtACsALQAuACsALgAvACsALwAwACsAMgApADEAMQAzADIAMQA0ADMAMQA1ADQAMQA2ADUAMQAwADYAOQA3ADgAOAA6ADkAOAA7ADoAOwA8ADoAPAA9ADoAPAA+AD0APAA/AD4APwBAAD4APwBBAEAAQQBCAEAAQQBDAEIAQwBEAEIARABFAEIARABGAEUARgBHAEUARgBIAEcASABJAEcASABKAEkASABLAEoASwBMAEoATABNAEoATABOAE0AUQBPAFAAUABSAFEAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAWABbAFoAWwBcAFoAXQBYAFcAVwBeAF0AXgBcAF0AXgBaAFwAYQBfAGAAYABiAGEAZQBjAGQAZABmAGUAaQBnAGgAaABqAGkAaABrAGoAawBsAGoAbQBsAGcAZwBpAG0AbABuAGcAbABrAG4AcQBvAHAAcAByAHEAdQBzAHQAdAB2AHUAeQB3AHgAeAB6AHkAfQB7AHwAfAB+AH0AgQB/AIAAgACCAIEAhQCDAIQAhACGAIUAiQCHAIgAiACKAIkAigCLAIkAiwCMAIkAiwCNAIwAjQCOAIwAjwCLAIoAigCQAI8AkACRAI8AkACSAJEAlQCTAJQAlACWAJUAmQCXAJgAmACaAJkAnQCbAJwAnACeAJ0AoQCfAKAAoACiAKEAogCjAKEApgCkAKUApQCnAKYAqgCoAKkAqQCrAKoArgCsAK0ArQCvAK4AsgCwALEAsQCzALIAswC0ALIAtAC1ALIAtAC2ALUAtwC0ALMAswC4ALcAuAC5ALcAvAC6ALsAuwC9ALwAwAC+AL8AvwDBAMAAvwDCAMEAxQDDAMQAxADGAMUAyQDHAMgAyADKAMkAzQDLAMwAzADOAM0A0QDPANAA0ADSANEA1QDTANQA1ADWANUA1gDXANUA2gDYANkA2QDbANoA3gDcAN0A3QDfAN4A3wDgAN4A4wDhAOIA4gDkAOMA5wDlAOYA5gDoAOcA6wDpAOoA6gDsAOsA7wDtAO4A7gDwAO8A8ADxAO8A9ADyAPMA8wD1APQA+AD2APcA9wD5APgA+QD6APgA/QD7APwA/AD+AP0AAQH/AAABAAECAQEBBQEDAQQBBAEGAQUBCQEHAQgBCAEKAQkBCgELAQkBDgEMAQ0BDQEPAQ4BEgEQAREBEQETARIBEwEUARIBFwEVARYBFgEYARcBGwEZARoBGgEcARsBHwEdAR4BHgEgAR8BIwEhASIBIgEkASMBJwElASYBJgEoAScBKwEpASoBKgEsASsBLwEtAS4BLgEwAS8BMwExATIBMgE0ATMBNwE1ATYBNgE4ATcBOwE5AToBOgE8ATsBPwE9AT4BPgFAAT8BQwFBAUIBQgFEAUMBRwFFAUYBRgFIAUcBSwFJAUoBSgFMAUsBTwFNAU4BTgFQAU8BUwFRAVIBUgFUAVMBVwFVAVYBVgFYAVcBWwFZAVoBWgFcAVsBXwFdAV4BXgFgAV8BYwFhAWIBYgFkAWMBZwFlAWYBZgFoAWcBawFpAWoBagFsAWsBbwFtAW4BbgFwAW8BcwFxAXIBcgF0AXMBdwF1AXYBdgF4AXcBewF5AXoBegF8AXsBfwF9AX4BfgGAAX8BgwGBAYIBggGEAYMBhwGFAYYBhgGIAYcBiwGJAYoBigGMAYsBjAGNAYsBjQGOAYsBjgGPAYsB"), -"material": SubResource("StandardMaterial3D_p5nl0"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0K///atipsaRr//yRJaRUdCv//JEkqbGka//8kSQAAui7//9q2AAC6Lv//JEkAAM8S///atgAAzxL//9q2AADPEv//2rZpFR0K//8kSQAAzxL//yRJaRUdCv//2rYqbAtD/7/atipsaRr/v9q2I1qpP/+/2rYcSEY8/7/atgAAui7/v9q2AADPEv+/2rZpFR0K/7/atiNaqT8bjSRJI1qpPxuN2rYqbAtDG40kSSpsC0Mbjdq2AAC6LhuNJEkAALouG43athxIRjwbjSRJHEhGPBuNJEmIVq3r/3/8tLXArev/f9q2iFat6/9/2rZOxq3r/3+Br327rev/f8mmAret6/9/bZuSs63r/38yjmmxrev/f/9/rLCt6/9/zHFpsa3r/3+RZJKzrev/fzVZAret6/9/fVB9u63r/38CS7XArev/fyRJTsat6/9//LTny63r/3/atvDbrev/f4GvH9Gt6/9/yaaa1a3r/39tmwrZrev/fzKONNut6/9//3/w263r/38kSfDbrev/fwJL58ut6/9/fVAf0a3r/381WZrVrev/f5FkCtmt6/9/zHE0263r/3//f926rev/f314Qbut6/9/gYdBu63r/3+Ajma8rev/f35xZryt6/9/fGs3vq3r/3+ClDe+rev/fx6ZlsCt6/9/4GaWwK3r/38EnFjDrev/f/pjWMOt6/9/AZ1Oxq3r/3/9Yk7Grev/f/pjRMmt6/9/BJxEya3r/3/gZgbMrev/fx6ZBsyt6/9/fGtlzq3r/3+ClGXOrev/f4CONtCt6/9/fnE20K3r/399eFvRrev/f4GHW9Gt6/9//3+/0a3r/3/atpZ6eZ7/v9q2lnqFYf+/bNuWenme/79s25Z6hWH/v9q2b5eFYf//2rZvl3me//9s22+XhWH//2zbb5d5nv//JEmWenme/78kSTmQaZr/vyRJb5d5nv+/JElvl4Vh/78kSTmQKIr/vyRJzYEoiv+/JEnNgWma/78kSZZ6hWH/vyRJlnqFYf9/kiSWeoVh/38kSW+XhWH/f5Ikb5eFYf9/2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZr/v9q2zYFpmv+/2raWenme/7/atpZ6hWH/v9q2zYEoiv+/2rZvl4Vh/7/atm+XeZ7/v9q2OZAoiv+/kiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH/f9q2lnqFYf9/bNtvl4Vh/3/atm+XhWH/f5Iklnp5nv+/kiSWeoVh/78kSZZ6eZ7/vyRJlnqFYf+/kiRvl4Vh//+SJG+XeZ7//yRJb5eFYf//JElvl3me//9s2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z/+/bNussO2w/7+17aywPM//v7XtrLDtsP+/bNtEKzzP/3+SJEQrPM//f/7/sDk8z/9/AACwOTzP/39s2xxIPM//f/7/Kmw8z/9/bNussDzP/3+17aywPM//f5IkHEg8z/9/AAAqbDzP/3+SJKywPM//f0kSrLA8z/9/SRKssDzP/79JEqyw7bD/v5IkrLA8z/+/kiSssO2w/79s20QrPM/8xf7/sDk8z/zFbNtEK8Zx/MX+/7A5xnH8xQAAsDk8z/zFkiREKzzP/MUAALA5xnH8xZIkRCvGcfzFAAAqbDzP/78AALA5PM//vwAAKmztsP+/AACwOcZx/78AACpsxnH/vwAAKmztsP+/AAAqbMZx/7+SJCps7bD/v5IkKmzGcf+/AAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bD/v2zbKmzGcf+//v8qbO2w/7/+/ypsxnH/v5IkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8Zx//+SJEQrPM///2zbRCvGcf//bNtEKzzP///+/ypsPM//v/7/KmztsP+//v+wOTzP/7/+/7A5xnH/v/7/KmzGcf+/NVkCt63r/MU1WQK3///8xZFkkrOt60rKkWSSs///Ssp9UH27//+6wjVZArf///zFfVB9u63rusI1WQK3rev8xQJLtcD//7DAfVB9u///usICS7XAreuwwH1Qfbut67rCkWSSs63rSsqRZJKz//9KysxxabGt63fPzHFpsf//d8//f/Db//9U1f9/8Nve91TVMo402///d8//f/DbretS0jKONNut63fPMo402///d88yjjTbret3z22bCtn//0rKbZsK2a3rSsokSU7G////vwJLtcD//7DAJElOxt73/78CS7XAreuwwCRJTsat6yvAkWQK2f//SsqRZArZretKysxxNNv//3fPzHE0263rd881WZrV///8xX1QH9H//7rCNVma1a3r/MV9UB/Rreu6wm2bCtn//0rKbZsK2a3rSsrJpprV///8xcmmmtWt6/zFAkvny///sMAkSU7G////vwJL58ut67DAJElOxt73/78kSU7GresrwIGvH9H//7rCyaaa1f///MWBrx/Rreu6wsmmmtWt6/zFzHE02///d8/McTTbret3z/9/8Nv//1TV/3/w263rUtL/f/Db3vf/v31QH9H//7rCAkvny///sMB9UB/Rreu6wgJL58ut67DANVma1f///MU1WZrVrev8xZFkCtn//0rKkWQK2a3rSsr8tOfL//+wwIGvH9H//7rC/LTny63rsMCBrx/Rreu6wtq2Tsb///+//LTny///sMDatk7G3vf/v/y058ut67DA2rZOxq3rK8DJpgK3///8xYGvfbv//7rCyaYCt63r/MWBr327reu6wvy0tcD//7DA2rZOxv///7/8tLXAreuwwNq2Tsbe9/+/2rZOxq3rK8CBr327//+6wvy0tcD//7DAga99u63rusL8tLXAreuwwG2bkrOt60rKbZuSs///SsrJpgK3rev8xcmmArf///zFMo5psa3rd88yjmmx//93z22bkrOt60rKbZuSs///Ssr/f6ywretU1f9/rLD//1TVMo5psa3rd88yjmmx//93z8xxabGt63fPzHFpsf//d8//f6ywretU1f9/rLD//1TVfXhb0a3rd899eFvR//93z/9/v9Gt61TV/3+/0f//VNV+cTbQretKyn5xNtD//0rKfXhb0a3rd899eFvR//93z/pjRMn//7DA4GYGzP//usL6Y0TJreuwwOBmBsyt67rC/WJOxv///7/6Y0TJ//+wwP1iTsat6/+/+mNEya3rsMB8a2XOrev8xXxrZc7///zFfnE20K3rSsp+cTbQ//9KynxrN77///zF4GaWwP//usJ8aze+rev8xeBmlsCt67rC/3/duv//VNX/f926retU1YGHQbv//3fPgYdBu63rd8+Bh0G7//93z4GHQbut63fPgI5mvP//SsqAjma8retKyoCOZrz//0rKgI5mvK3rSsqClDe+///8xYKUN76t6/zFHpmWwP//usKClDe+///8xR6ZlsCt67rCgpQ3vq3r/MUEnFjD//+wwB6ZlsD//7rCBJxYw63rsMAemZbAreu6wgGdTsb///+/BJxYw///sMABnU7Grev/vwScWMOt67DABJxEyf//sMABnU7G////vwScRMmt67DAAZ1Oxq3r/78emQbM//+6wgScRMn//7DAHpkGzK3rusIEnETJreuwwIKUZc7///zFHpkGzP//usKClGXOrev8xR6ZBsyt67rCgI420K3rSsqAjjbQ//9KyoKUZc6t6/zFgpRlzv///MWBh1vRret3z4GHW9H//3fPgI420K3rSsqAjjbQ//9KyuBmBsz//7rCfGtlzv///MXgZgbMreu6wnxrZc6t6/zFfGs3vv///MV8aze+rev8xX5xZrz//0rKfnFmvK3rSsr6Y1jD//+wwP1iTsb///+/+mNYw63rsMD9Yk7Grev/v+BmlsD//7rC+mNYw///sMDgZpbAreu6wvpjWMOt67DAfnFmvP//Ssp+cWa8retKyn14Qbv//3fPfXhBu63rd899eEG7//93z314Qbut63fP/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRret3z4GHW9H//3fPJEkqbAtD/78kSSNaqT//vyRJKmxpGv+/JEkcSEY8/78kSQAAui7/vyRJAADPEv+/JElpFR0K/78kSSpshWFU1SRJHEiFYVTVJEkqbF1XVNUkSSNaXVdU1SRJTsbe91TVJEnw2973VNUkSU7GretU1SRJ8Nut61TVJEmIVq3rVNUkSYhW3vdU1dq2Tsbe91TV2raIVt73VNXatk7GretU1dq2iFat61TV2rbw263rVNXatvDb3vdU1bZtXOq+71TVkWT//77vVNW2bVzqXNdU1ZFk//+N41TV/3/w263rVNX/f/Db3vdU1dq28Nut61TV2rbw2973VNUkSfDb3vdU1SRJ8Nut61TV2rZc6r7vVNW2rf//vu9U1dq2XOpc11TVtq3//43jVNXatlzqvu///0iSXOq+7///tq3//77v//9tm///vu///22b//++71TVSJJc6r7vVNVtm///jeNU1UiSXOpc11TVtm1c6r7v//8kSVzqvu///5Fk//++7///SFL//77v//8kSfDbjaNU1SRJrLA4jlTVJEnw2wE5VNUkSaywsCRU1UhS//++71TVJElc6r7vVNVIUv//jeNU1SRJXOpc11TVSJJc6lzXqunatlzqXNeq6W2b//+N46rptq3//43jqultm///vu9U1W2b//+N41TVtq3//77vVNW2rf//jeNU1SRJrLCwJC/s2rassLAkL+wkSfDbATkv7Nq28NsBOS/sJElc6lzXqum2bVzqXNeq6UhS//+N46rpkWT//43jqulIUv//vu9U1UhS//+N41TVkWT//77vVNWRZP//jeNU1SRJ8NuNo1TVJEnw2wE5VNXatvDbjaNU1dq28NsBOVTVJEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT9U1dq2I1qpP1TVJEkjWl1XVNXatiNaXVdU1ds2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma///bNs2BaZr//yRJOZBpmv//2zY5kGma//8jyc2BaZr//9q2zYFpmv//I8k5kGma///atjmQaZr//yRJiFbe91TVJEmIVq3rVNXatohW3vdU1dq2iFat61TV2rbNgSiKVNXats2BaZpU1SPJzYEoilTVI8nNgWmaVNVs282BSJJU1dq2OZBpmlTV2rY5kCiKVNUjyTmQaZpU1SPJOZAoilTVbNs5kEiSVNXats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIklTV2zbNgWmaVNXbNs2BKIpU1SRJzYEoilTVJEnNgWmaVNWSJDmQSJJU1ds2OZAoilTV2zY5kGmaVNUkSTmQaZpU1SRJOZAoilTVSRKssDzPVNUAACpsPM9U1UkSrLDtsFTVAAAqbO2wVNX+/ypsPM9U1bXtrLA8z1TV/v8qbO2wVNW17ayw7bBU1f9/rLD/////zHFpsf////8yjmmx/////22bkrP/////kWSSs//////JpgK3/////zVZArf/////ga99u///////f926/////4GHQbv/////gI5mvP/////8tLXA/////4KUN77/////HpmWwP////8EnFjD/////9q2Tsb/////AZ1Oxv/////8tOfL/////wScRMn/////HpkGzP////+Brx/R/////4KUZc7/////gI420P////+Bh1vR/////8mmmtX//////3+/0f////81WZrV/////5FkCtn/////bZsK2f////8yjjTb/////8xxNNv//////3/w2/////99eFvR/////31QH9H/////fnE20P////98a2XO/////+BmBsz/////Akvny//////6Y0TJ/////yRJTsb//////WJOxv/////6Y1jD/////wJLtcD/////4GaWwP////98aze+/////35xZrz/////fVB9u/////99eEG7/////yRJHEhGPFTVJEkcSIVhVNXathxIRjxU1dq2HEiFYVTV2rbw242jVNXatvDbATlU1dq2rLA4jlTV2rassLAkVNXatipshWFU1dq2I1pdV1TV2rYcSIVhVNXatipsXVdU1ZIkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAFTV2rYqbEAQVNVs25Z6AABU1WzblnpAEFTVkiRAokAQVNWSJECiAABU1SRJrLBAEFTVJEmssAAAVNWSJJZ6AABU1ZIklnpAEFTVJEkqbAAAVNUkSSpsQBBU1dq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBBU1dq2rLAAAFTVbNtAokAQVNVs20CiAABU1dq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaaMts2zmQSJJoyyPJzYFpmmjLbNvNgUiSaMts2zmQSJL14CPJOZAoivXgbNvNgUiS9eAjyc2BKIr14JIkOZBIkvXgkiTNgUiS9eDbNjmQKIr14Ns2zYEoivXgkiRc6qmqVNUkSVzqvu9U1ZIkXOre91TVbNtc6t73VNW2bVzqvu9U1UiSXOq+71TVtm1c6lzXVNXatlzqvu9U1dq2XOpc11TVJElc6lzXVNVs21zqqapU1UiSXOpc11TVkiRc6qmqVNWSJG+XeZ5U1ZIkrLA4jlTVkiRvl4VhVNWSJKywQBBU1ZIklnqFYVTVkiQqbIVhVNWSJECiQBBU1ZIklnpAEFTVkiRAogAAVNWSJJZ6AABU1ZIkKmxAEFTVkiSWenmeVNWSJCps7bBU1ZIkrLDtsFTVkiSssDzPVNWSJFzq3vdU1ZIkHEje91TVkiQqbMZxVNWSJBxIxnFU1ZIkHEiFYVTVkiQcSDzPVNWSJBxI3vf//9q2iFbe9///bNscSN73//9s21zq3vf//9q2Tsbe9///2rbw2973////f/Db3vf//yRJ8Nve9///JEmIVt73//+SJFzq3vf//yRJTsbe9///kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAABU1SRJKmxAEFTV2rYqbAAAVNUkSSpsaRpU1dq2KmxAEFTV2rYqbGkaVNVs2ypsQBBU1dq2KmwLQ1TV2rYqbF1XVNXatipshWFU1WzbKmyFYVTVJEkqbF1XVNUkSSpsC0NU1ZIkKmyFYVTVkiQqbEAQVNUkSSpshWFU1dq2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jlTV2rassLAkVNVs26ywOI5U1WzbrLBAEFTV2rassEAQVNUkSaywAABU1SRJrLBAEFTVJEmssLAkVNUkSaywOI5U1ZIkrLBAEFTVkiSssDiOVNXatqywAABU1ds2OZBpmmjL2zbNgWmaaMuSJDmQSJJoy5IkzYFIkmjLkiQcSDzPVNWSJBxI3vdU1WzbHEg8z1TVbNscSN73VNVs2xxIxnFU1WzbKmzGcVTVbNscSIVhVNVs25Z6hWFU1Wzblnp5nlTVbNsqbO2wVNVs26yw7bBU1WzbXOqpqlTVbNtvl3meVNVs2ypshWFU1WzbKmxAEFTVbNuWekAQVNVs26ywOI5U1Wzbb5eFYVTVbNussEAQVNVs20CiQBBU1WzblnoAAFTVbNtAogAAVNVs26ywPM9U1WzbXOre91TVbNscSDzPVNVs2xxI3vdU1ZIkrLA4joPrJEmssDiOg+uSJFzqqaqD6yRJ8NuNo4Pr2rbw242jg+ts21zqqaqD62zbrLA4joPr2rassDiOg+uSJBxIhWFU1ZIkHEjGcVTVbNscSMZxVNVs2xxIhWFU1f9/H+7/fx/u/38f7v9/H+7/f/8//3//P/9//z//f/8/PJ///zyf//88n///PJ////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9//3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9//z//f/8//3//P/9//z//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////38AY/45AGP+OQBj/jkAY/45AUb/4gFG/+IBRv/iAUb/4v9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f/7//3/+//9//v//f/7//3////9//v//f/7//3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAAFG/+IBRv/iZzuy3Wc7st1WU6rpAUb/4lZTqukBRv/iUWWo8lZTqulRZajyVlOq6Wc7st1nO7LdfzI/2X8yP9lU1aoqVNWqKn/NvyaE0cIof82/Jn/NvyZ/zb8ml8RMIpfETCL/f///UWWo8v9///9RZajyKXGU+EuiZrtLoma7v6Z/sr+mf7L+nADGVJZV0/6cAMZUllXTl8RMIpfETCL9uf8c/bn/HFaNUeX/f///Vo1R5f9///9qhynxqKxUFv25/xyorFQW/bn/HL+mf7K/pn+yqqqqqsKoea7///9/VJZV01aNUeVUllXTVo1R5f6cAMb+nADGS6Jmu0uiZrutmlYNqKxUFq2aVg2orFQW/38AAK2aVg3/fwAArZpWDdWOagcAY/45qmmpLABj/jmqaaksqHKtGv9/AACocq0a/38AAJR41Q6qaaksqHKtGqppqSyocq0as12YRLNdmEQAY/45AGP+OT9Zf00/WX9Ns12YRLNdmERUVVRVVFVUVT9Zf00/WX9NfzI/2X8yP9mqKlTVqipU1T9Zf00/WX9NVFVUVVRVVFWzXZhEs12YRD9Zf00/WX9NqHKtGqppqSyocq0aqmmpLP9/AACocq0a/38AAKhyrRoAY/45AGP+ObNdmESzXZhE/bn/HKisVBb9uf8cqKxUFqqqqqqqqqqqv6Z/sr+mf7K/pn+yv6Z/skuiZrtLoma7S6Jmu0uiZrv+nADG/pwAxlSWVdP+nADGVJZV0/6cAMZWjVHlVJZV01aNUeVUllXT/3///1aNUeX/f///Vo1R5VFlqPL/f///UWWo8v9///9WU6rpUWWo8lZTqulRZajyAUb/4lZTqukBRv/iVlOq6Wc7st1nO7LdAUb/4gFG/+J/Mj/ZfzI/2Wc7st1nO7LdqmmpLABj/jmqaaksAGP+Of25/xz9uf8cl8RMIpfETCKtmlYN/38AAK2aVg3/fwAAqKxUFq2aVg2orFQWrZpWDZfETCKXxEwif82/Jn/NvyZ/zb8mf82/JlTVqipU1aoqqipU1aoqVNV/Mj/ZfzI/2f9/////f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEgAA/38AAP9/AAD/fwAA/38AAP9/AAD/f0iSSRJIkkkSSJJJEkiSSRL/f/9//3//f/9//3//f/9/SJK17UiSte1IkrXtSJK17f9//3//f/9//3//f/9//3//f////3////9/////f///SJK17UiSte1IkrXtSJK17f///3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////fzCMzvMwjM7zMIzO8zCMzvMwjDAMMIwwDDCMMAwwjDAM/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////z//P/8//z//P/8//z//P/+//7//v/+//7//v/+//7//P/+//z//v/8//7//P/+//3////9/////f////3////9/////f////3////9/////f////3////9/////v/8//7//P/+//z//v/8//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 384, -"index_data": PackedByteArray("kgGQAZEBkQGTAZIBkQGMAZMBjAGKAZMBlgGUAZUBlQGXAZYBlAGWAZgBmAGZAZQBnAGaAZsBmwGdAZwBmgGcAZ4BngGfAZoBogGgAaEBoQGjAaIBpgGkAaUBpQGnAaYBqAGlAaQBpAGpAagBrAGqAasBqwGtAawBsAGuAa8BrwGxAbABtAGyAbMBswG1AbQBuAG2AbcBtwG5AbgBvAG6AbsBuwG9AbwBwAG+Ab8BvwHBAcABxAHCAcMBwwHFAcQByAHGAccBxwHJAcgBzAHKAcsBywHNAcwB0AHOAc8BzwHRAdAB1AHSAdMB0wHVAdQB2AHWAdcB1wHZAdgB3AHaAdsB2wHdAdwB4AHeAd8B3wHhAeAB5AHiAeMB4wHlAeQB6AHmAecB5wHpAegB7AHqAesB6wHtAewB8AHuAe8B7wHxAfAB9AHyAfMB8wH1AfQB9QH2AfQB+QH3AfgB+AH6AfkB+gH7AfkB/gH8Af0B/QH/Af4BAgIAAgECAQIDAgICAQIEAgMCBwIFAgYCBgIIAgcCBgIJAggCDAIKAgsCCwINAgwCEAIOAg8CDwIRAhACFAISAhMCEwIVAhQCEwIWAhUCFgIXAhUCFgIYAhcCGAIZAhcCGAIaAhkCGgIbAhkCGwIcAhkCHAIdAhkCHAIeAh0CHgIfAh0CHwIgAh0CIAIhAh0CIAIiAiECIgIjAiECIgIkAiMCJAIlAiMCJQImAiMCJQInAiYCJwIoAiYCKAIpAiYCKQIqAiYCKQIrAioCKwIsAioCLAItAioCLQIuAioCLQIvAi4CLQIwAi8CMAIxAi8CLAIrAjICMwIsAjICMwIyAjQCMwI0AjUCMwI1AjYCNwIzAjYCNwI2AjgCOQI3AjgCOQI4AjoCOQI6AjsCPAI5AjsCPAI7Aj0CPAI9Aj4CPAI+Aj8CQAI8Aj8CQAI/AkECQAJBAhoCGgIYAkACRAJCAkMCQwJFAkQCSAJGAkcCRwJJAkgCTAJKAksCSwIPAEwCSwIOAA8ATQJLAkoC"), -"material": SubResource("StandardMaterial3D_0u3yf"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0Kv/batipsaRq/9iRJaRUdCr/2JEkqbGkav/YkSQAAui5U1dq2AAC6LlTVJEkAAM8SVNXatgAAzxJU1dq2AADPEifu2rZpFR0KJ+4kSQAAzxIn7iRJaRUdCifu2rYqbAtDVNXatipsaRpU1dq2I1qpP/+/2rYcSEY8/7/atgAAui5U1dq2AADPElTV2rZpFR0KVNXatiNaqT8KwSRJI1qpPwrB2rYqbAtDCsEkSSpsC0MKwdq2AAC6LgrBJEkAALouCsHathxIRjwKwSRJHEhGPArBJEmIVq3r///8tLXArev//9q2iFat6///2rZOxq3r//+Br327rev//8mmAret6///bZuSs63r//8yjmmxrev///9/rLCt6///zHFpsa3r//+RZJKzrev//zVZAret6///fVB9u63r//8CS7XArev//yRJTsat6////LTny63r///atvDbrev//4GvH9Gt6///yaaa1a3r//9tmwrZrev//zKONNut6////3/w263r//8kSfDbrev//wJL58ut6///fVAf0a3r//81WZrVrev//5FkCtmt6///zHE0263r////f926rev//314Qbut6///gYdBu63r//+Ajma8rev//35xZryt6///fGs3vq3r//+ClDe+rev//x6ZlsCt6///4GaWwK3r//8EnFjDrev///pjWMOt6///AZ1Oxq3r///9Yk7Grev///pjRMmt6///BJxEya3r///gZgbMrev//x6ZBsyt6///fGtlzq3r//+ClGXOrev//4CONtCt6///fnE20K3r//99eFvRrev//4GHW9Gt6////3+/0a3r///atpZ6eZ5U1dq2lnqFYVTVbNuWenmeVNVs25Z6hWFU1dq2b5eFYVTV2rZvl3meVNVs22+XhWFU1Wzbb5d5nlTVJEmWenmeVNUkSTmQaZpU1SRJb5d5nlTVJElvl4VhVNUkSTmQKIpU1SRJzYEoilTVJEnNgWmaVNUkSZZ6hWFU1SRJlnqFYf//kiSWeoVh//8kSW+XhWH//5Ikb5eFYf//2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZpU1dq2zYFpmlTV2raWenmeVNXatpZ6hWFU1dq2zYEoilTV2rZvl4VhVNXatm+XeZ5U1dq2OZAoilTVkiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH//9q2lnqFYf//bNtvl4Vh///atm+XhWH//5Iklnp5nlTVkiSWeoVhVNUkSZZ6eZ5U1SRJlnqFYVTVkiRvl4VhVNWSJG+XeZ5U1SRJb5eFYVTVJElvl3meVNVs2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z1TVbNussO2wVNW17aywPM9U1bXtrLDtsFTVbNtEKzzP//+SJEQrPM////7/sDk8z///AACwOTzP//9s2xxIPM////7/Kmw8z///bNussDzP//+17aywPM///5IkHEg8z///AAAqbDzP//+SJKywPM///0kSrLA8z///SRKssDzPVNVJEqyw7bBU1ZIkrLA8z1TVkiSssO2wVNVs20QrPM9U1f7/sDk8z1TVbNtEK8ZxVNX+/7A5xnFU1QAAsDk8z1TVkiREKzzPVNUAALA5xnFU1ZIkRCvGcVTVAAAqbDzPVNUAALA5PM9U1QAAKmztsFTVAACwOcZxVNUAACpsxnFU1QAAKmztsFTVAAAqbMZxVNWSJCps7bBU1ZIkKmzGcVTVAAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bBU1WzbKmzGcVTV/v8qbO2wVNX+/ypsxnFU1ZIkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8ZxVNWSJEQrPM9U1WzbRCvGcVTVbNtEKzzPVNX+/ypsPM9U1f7/KmztsFTV/v+wOTzPVNX+/7A5xnFU1f7/KmzGcVTVNVkCt63rVNU1WQK3//9U1ZFkkrOt61TVkWSSs///VNV9UH27//9U1TVZArf//1TVfVB9u63rVNU1WQK3retU1QJLtcD//1TVfVB9u///VNUCS7XAretU1X1Qfbut61TVkWSSs63rVNWRZJKz//9U1cxxabGt61TVzHFpsf//VNX/f/Db//9U1f9/8Nve91TVMo402///VNX/f/DbretU1TKONNut61TVMo402///VNUyjjTbretU1W2bCtn//1TVbZsK2a3rVNUkSU7G//9U1QJLtcD//1TVJElOxt73VNUCS7XAretU1SRJTsat61TVkWQK2f//VNWRZArZretU1cxxNNv//1TVzHE0263rVNU1WZrV//9U1X1QH9H//1TVNVma1a3rVNV9UB/RretU1W2bCtn//1TVbZsK2a3rVNXJpprV//9U1cmmmtWt61TVAkvny///VNUkSU7G//9U1QJL58ut61TVJElOxt73VNUkSU7GretU1YGvH9H//1TVyaaa1f//VNWBrx/RretU1cmmmtWt61TVzHE02///VNXMcTTbretU1f9/8Nv//1TV/3/w263rVNX/f/Db3vdU1X1QH9H//1TVAkvny///VNV9UB/RretU1QJL58ut61TVNVma1f//VNU1WZrVretU1ZFkCtn//1TVkWQK2a3rVNX8tOfL//9U1YGvH9H//1TV/LTny63rVNWBrx/RretU1dq2Tsb//1TV/LTny///VNXatk7G3vdU1fy058ut61TV2rZOxq3rVNXJpgK3//9U1YGvfbv//1TVyaYCt63rVNWBr327retU1fy0tcD//1TV2rZOxv//VNX8tLXAretU1dq2Tsbe91TV2rZOxq3rVNWBr327//9U1fy0tcD//1TVga99u63rVNX8tLXAretU1W2bkrOt61TVbZuSs///VNXJpgK3retU1cmmArf//1TVMo5psa3rVNUyjmmx//9U1W2bkrOt61TVbZuSs///VNX/f6ywretU1f9/rLD//1TVMo5psa3rVNUyjmmx//9U1cxxabGt61TVzHFpsf//VNX/f6ywretU1f9/rLD//1TVfXhb0a3rVNV9eFvR//9U1f9/v9Gt61TV/3+/0f//VNV+cTbQretU1X5xNtD//1TVfXhb0a3rVNV9eFvR//9U1fpjRMn//1TV4GYGzP//VNX6Y0TJretU1eBmBsyt61TV/WJOxv//VNX6Y0TJ//9U1f1iTsat61TV+mNEya3rVNV8a2XOretU1XxrZc7//1TVfnE20K3rVNV+cTbQ//9U1XxrN77//1TV4GaWwP//VNV8aze+retU1eBmlsCt61TV/3/duv//VNX/f926retU1YGHQbv//1TVgYdBu63rVNWBh0G7//9U1YGHQbut61TVgI5mvP//VNWAjma8retU1YCOZrz//1TVgI5mvK3rVNWClDe+//9U1YKUN76t61TVHpmWwP//VNWClDe+//9U1R6ZlsCt61TVgpQ3vq3rVNUEnFjD//9U1R6ZlsD//1TVBJxYw63rVNUemZbAretU1QGdTsb//1TVBJxYw///VNUBnU7GretU1QScWMOt61TVBJxEyf//VNUBnU7G//9U1QScRMmt61TVAZ1Oxq3rVNUemQbM//9U1QScRMn//1TVHpkGzK3rVNUEnETJretU1YKUZc7//1TVHpkGzP//VNWClGXOretU1R6ZBsyt61TVgI420K3rVNWAjjbQ//9U1YKUZc6t61TVgpRlzv//VNWBh1vRretU1YGHW9H//1TVgI420K3rVNWAjjbQ//9U1eBmBsz//1TVfGtlzv//VNXgZgbMretU1XxrZc6t61TVfGs3vv//VNV8aze+retU1X5xZrz//1TVfnFmvK3rVNX6Y1jD//9U1f1iTsb//1TV+mNYw63rVNX9Yk7GretU1eBmlsD//1TV+mNYw///VNXgZpbAretU1fpjWMOt61TVfnFmvP//VNV+cWa8retU1X14Qbv//1TVfXhBu63rVNV9eEG7//9U1X14Qbut61TV/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRretU1YGHW9H//1TVJEkqbAtDVNUkSSNaqT//vyRJKmxpGlTVJEkcSEY8/78kSQAAui5U1SRJAADPElTVJElpFR0KVNUkSSpshWH/vyRJHEiFYf+/JEkqbF1X/78kSSNaXVf/vyRJTsbe9/+/JEnw2973/78kSU7Grev/vyRJ8Nut6/+/JEmIVq3r/78kSYhW3vf/v9q2Tsbe9/+/2raIVt73/7/atk7Grev/v9q2iFat6/+/2rbw263r/7/atvDb3vf/v7ZtXOq+70bAkWT//77vRsC2bVzqXNdGwJFk//+N40bA/3/w263r////f/Db3vf//9q28Nut6///2rbw2973//8kSfDb3vf//yRJ8Nut6///2rZc6r7vRsC2rf//vu9GwNq2XOpc10bAtq3//43jRsDatlzqvu//f0iSXOq+7/9/tq3//77v/39tm///vu//f22b//++70bASJJc6r7vRsBtm///jeNGwEiSXOpc10bAtm1c6r7v/38kSVzqvu//f5Fk//++7/9/SFL//77v/38kSfDbjaP/vyRJrLA4jv+/JEnw2wE5/78kSaywsCT/v0hS//++70bAJElc6r7vRsBIUv//jeNGwCRJXOpc10bASJJc6lzX///atlzqXNf//22b//+N4///tq3//43j//9tm///vu//v22b//+N4/+/tq3//77v/7+2rf//jeP/vyRJrLCwJP//2rassLAk//8kSfDbATn//9q28NsBOf//JElc6lzX//+2bVzqXNf//0hS//+N4///kWT//43j//9IUv//vu//v0hS//+N4/+/kWT//77v/7+RZP//jeP/vyRJ8NuNo/+/JEnw2wE5/7/atvDbjaP/v9q28NsBOf+/JEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT//v9q2I1qpP/+/JEkjWl1X/7/atiNaXVf/v9s2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma/3/bNs2BaZr/fyRJOZBpmv9/2zY5kGma/38jyc2BaZr/f9q2zYFpmv9/I8k5kGma/3/atjmQaZr/fyRJiFbe9/+/JEmIVq3r/7/atohW3vf/v9q2iFat6/+/2rbNgSiK///ats2BaZr//yPJzYEoiv//I8nNgWma//9s282BSJL//9q2OZBpmv+/2rY5kCiK/78jyTmQaZr/vyPJOZAoiv+/bNs5kEiS/7/ats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIkv//2zbNgWma///bNs2BKIr//yRJzYEoiv//JEnNgWma//+SJDmQSJL/v9s2OZAoiv+/2zY5kGma/78kSTmQaZr/vyRJOZAoiv+/SRKssDzPG8AAACpsPM8bwEkSrLDtsBvAAAAqbO2wG8D+/ypsPM8bwLXtrLA8zxvA/v8qbO2wG8C17ayw7bAbwP9/rLD///9/zHFpsf///38yjmmx////f22bkrP///9/kWSSs////3/JpgK3////fzVZArf///9/ga99u////3//f926////f4GHQbv///9/gI5mvP///3/8tLXA////f4KUN77///9/HpmWwP///38EnFjD////f9q2Tsb///9/AZ1Oxv///3/8tOfL////fwScRMn///9/HpkGzP///3+Brx/R////f4KUZc7///9/gI420P///3+Bh1vR////f8mmmtX///9//3+/0f///381WZrV////f5FkCtn///9/bZsK2f///38yjjTb////f8xxNNv///9//3/w2////399eFvR////f31QH9H///9/fnE20P///398a2XO////f+BmBsz///9/Akvny////3/6Y0TJ////fyRJTsb///9//WJOxv///3/6Y1jD////fwJLtcD///9/4GaWwP///398aze+////f35xZrz///9/fVB9u////399eEG7////fyRJHEhGPP//JEkcSIVh///athxIRjz//9q2HEiFYf//2rbw242j/7/atvDbATn/v9q2rLA4jv+/2rassLAk/7/atipshWH/v9q2I1pdV/+/2rYcSIVh/7/atipsXVf/v5IkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAFTV2rYqbEAQVNVs25Z6AABU1WzblnpAEFTVkiRAokAQVNWSJECiAABU1SRJrLBAEFTVJEmssAAAVNWSJJZ6AABU1ZIklnpAEFTVJEkqbAAAVNUkSSpsQBBU1dq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBBU1dq2rLAAAFTVbNtAokAQVNVs20CiAABU1dq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaaMts2zmQSJJoyyPJzYFpmmjLbNvNgUiSaMts2zmQSJL14CPJOZAoivXgbNvNgUiS9eAjyc2BKIr14JIkOZBIkvXgkiTNgUiS9eDbNjmQKIr14Ns2zYEoivXgkiRc6qmqVNUkSVzqvu9U1ZIkXOre91TVbNtc6t73VNW2bVzqvu9U1UiSXOq+71TVtm1c6lzXVNXatlzqvu9U1dq2XOpc11TVJElc6lzXVNVs21zqqapU1UiSXOpc11TVkiRc6qmqVNWSJG+XeZ5U1ZIkrLA4jlTVkiRvl4VhVNWSJKywQBBU1ZIklnqFYVTVkiQqbIVhVNWSJECiQBBU1ZIklnpAEFTVkiRAogAAVNWSJJZ6AABU1ZIkKmxAEFTVkiSWenmeVNWSJCps7bBU1ZIkrLDtsFTVkiSssDzPVNWSJFzq3vdU1ZIkHEje91TVkiQqbMZxVNWSJBxIxnFU1ZIkHEiFYVTVkiQcSDzPVNWSJBxI3vf//9q2iFbe9///bNscSN73//9s21zq3vf//9q2Tsbe9///2rbw2973////f/Db3vf//yRJ8Nve9///JEmIVt73//+SJFzq3vf//yRJTsbe9///kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAABU1SRJKmxAEFTV2rYqbAAAVNUkSSpsaRpU1dq2KmxAEFTV2rYqbGkaVNVs2ypsQBBU1dq2KmwLQ1TV2rYqbF1XVNXatipshWFU1WzbKmyFYVTVJEkqbF1XVNUkSSpsC0NU1ZIkKmyFYVTVkiQqbEAQVNUkSSpshWFU1dq2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jlTV2rassLAkVNVs26ywOI5U1WzbrLBAEFTV2rassEAQVNUkSaywAABU1SRJrLBAEFTVJEmssLAkVNUkSaywOI5U1ZIkrLBAEFTVkiSssDiOVNXatqywAABU1ds2OZBpmmjL2zbNgWmaaMuSJDmQSJJoy5IkzYFIkmjLkiQcSDzPVNWSJBxI3vdU1WzbHEg8z1TVbNscSN73VNVs2xxIxnFU1WzbKmzGcVTVbNscSIVhVNVs25Z6hWFU1Wzblnp5nlTVbNsqbO2wVNVs26yw7bBU1WzbXOqpqlTVbNtvl3meVNVs2ypshWFU1WzbKmxAEFTVbNuWekAQVNVs26ywOI5U1Wzbb5eFYVTVbNussEAQVNVs20CiQBBU1WzblnoAAFTVbNtAogAAVNVs26ywPM9U1WzbXOre91TVbNscSDzPVNVs2xxI3vdU1ZIkrLA4joPrJEmssDiOg+uSJFzqqaqD6yRJ8NuNo4Pr2rbw242jg+ts21zqqaqD62zbrLA4joPr2rassDiOg+uSJBxIhWFU1ZIkHEjGcVTVbNscSMZxVNVs2xxIhWFU1f///3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3//P/8//z//P/8//z//P/8//z//v/8//7//P/+//z//v/9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/8mTy5CVRJdHyZPLkJVEl0dku2a7ZLtmuDBsMmwwbDJv///9/////f/Lk8mQa8Rtx8uTyZPLk8mTy5PJkJdElUSXRJVH/f///8mTy5P9////yZPLkG3Ea8SXR2a4l0dmu8uQMm/LkDJv/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//Pwyb8uT/f///DJvy5P9////jjhrx2a7ZLv+//z/Zrtku/7//P/LkDJvy5Ayb////fxrx447///9/2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4Mmwwb2a7ZLgybDBvZrtku/38AAAybDBv/fwAADJsMG+OO5A7/P/8/JVHZLv8//z8lUdku8mQMG/9/AADyZAwb/38AABtx5A4lUdku8mQMGyVR2S7yZAwb2S4lUdkuJVH/P/8//z//Pwwb8mQMG/Jk2S4lUdkuJVEAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/fwwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk8mQMGyVR2S7yZAwbJVHZLv9/AADyZAwb/38AAPJkDBv/P/8//z//P9kuJVHZLiVR/7//P9mu2S7/v/8/2a7ZLv///3////9/8uQMm/LkDJvy5Ayb8uQMmyXR2a4l0dmuJdHZriXR2a7/v/+//7//v9muJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5PJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0dku2a7ZLtmu/z//v/8//78MGwybDBsMm9ku2a7ZLtmuJVHZLv8//z8lUdku/z//P/+//z//v/8/JdElUSXRJVEMmwwb/38AAAybDBv/fwAA2a7ZLgybDBvZrtkuDJsMGyXRJVEl0SVR8uTyZPLk8mTy5PJk8uTyZP///3////9/AAD/fwAA/38MGwybDBsMm/9/////f////3////9/////f////3////9/////f////3////9//v//f/7//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///LZIWCS2SFgktkhYJLZIWCf9//z//f/8//3//P/9//z//f/8//3//Py2SFgktkhYJLZIWCS2SFgn/f////3////9/////f///FonR7RaJ0e0WidHtFonR7f9/////f////3////9/////f////3////9/////f///FonR7RaJ0e0WidHtFonR7f9/gdr/f4Ha/3+B2v9/gdr///9/////f////3////9//3/43f9/+N3/f/jd/3/43f9/gdr/f4Ha/3+B2v9/gdr///9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9//z//f/8//3//P/9//z//f/8/////f////3////9/////f/7//3//f////3////9/////f////3//P/9//z//f/8//3//P/9//z/+//9/////f////3////9/////fxOG1vMThtbzE4bW8xOG1vMojBQGKIwUBiiMFAYojBQG/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////z//P/8//z//P/8//z//P/+//7//v/+//7//v/+//7//P/+//z//v/8//7//P/+//3////9/////f////3////9/////f////3////9/////f////3////9/////v/8//7//P/+//z//v/8//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f///////f////3////9/////f////3////9/////f////3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.1775, -0.315, 0.14, 0.355, 0.63), -"attribute_data": PackedByteArray("znPQ5s5zJrQwjNDmMIwmtDCMPzrOcz86MIzMHs5zzB7Oc+eEznNIdjCM54QwjEh287whlZXlIZVVwB6fuMMbqUTRDtEv7Q7R4fUxxTCMC7LOcwuyMIyEp85zhKcwjK7mznOu5jCMkrzOc5K8znMdocWLS2YwjB2hMIwxY46KL2meiKtrF4aSbSeDxW7/fy1v13zFbud5km1gd6trcHUvaTl0S2bOczFjxYsXYDCMNVeOijNdnoi4WheG0Fgng55X/381V85zNVc5dBdgcHUzXWB3uFrnedBY13yeV/9/iGlUflBpqoFQaTiDrmjGfK5ocHutZ46ErWeUhVxmanpcZjmG1WTFedVkcYYxY415MWPFeY1hOYaNYWp6BmCUhQZgcHu2Xo6Etl44g7Rdxny0XVR+El2qgRJd/3/bXDCMG6gwjC5sUJQbqFCULmzOcy5sznMbqK5rLmyuaxuoeZ4kjWmaKIF5nil9hWEpfSiKKIEoiiWJaZoliYVhJI3OcySNrmskjc5zKX2uayl9znMkja5rJI3Ocyl9rmspfZVlKIGVZSWJhWEkjXmeJI3WdSWJeZ4pfYVhKX3WdSiBUJQkjTCMJI1QlCl9MIwpfVCUJI0wjCSNUJQpfTCMKX2uaxuormsubM5zG6jOcy5sUJQubFCUG6gwjC5sMIwbqK5rIZWNYyGVrmstb55nLW9QlAvYUJQ/umCYC9hgmD+6UJQVua5rFblxnBixjWMYsVCUG6lxnCGVUJQtb2CYLW+uaxupjWMhla5rLW+eZy1vnmcL2J5nP7quawvYrms/usIwNp3CMOmROI42nTiO6ZE8z+mRPM82ncZx6ZHGcTadPM8hlTzPGLHtsCGVxnEYscZxIZWNYz+6jWMpfK5rP7quayl8cZwhlVCUIZVgmC1vUJQtb1CUP7pQlCl8cZw/unGcKXxQlBW5rmsVuXGcGLGNYxixUJQbqXGcIZVQlCGVrmsbqY1jIZWuayGVUJQpfFCUC9iuayl8rmsL2MIwIZURTyGVwjAYsTiOGLE4jiGVrevecP//3nCt6/9z////c///rWn//85sreutaa3rzmz//5hk//+5Z63rmGSt67lnreusef//rHmt6818///NfAAAf4MgCH+DAACghlEUf4NRFKCGAACseVEUrHkAAM18URTNfP//9mH//xdl3vf2Ya3rF2Wt6/Zh///NfK3rzXz//6x5reusef//rWn//85sreutaa3rzmwAAN5wURTecAAA/3NRFP9z///2Yf//F2Wt6/Zh3vcXZa3rF2UAAM5sAACtaVEUzmxRFK1p//+ghq3roIb//3+Dret/g973f4P//5hk//+5Z63rmGSt67ln////c63r/3P//95wrevecAAAuWcAAJhkURS5Z1EUmGQAABdlAAD2YSAIF2VRFPZhURQXZQAAzmwAAK1pURTObFEUrWkAABdlAAD2YVEUF2UgCPZhURT2YQAAuWcAAJhkURS5Z1EUmGRRFP9zAAD/c1EU3nAAAN5wURTNfAAAzXxRFKx5AACseVEUoIYAAKCGURR/gwAAf4Ot63+D//9/g63roIb//6CGURTjhQAA44VRFDuEAAA7hFEUEXwAABF8URRpegAAaXoAAPxmAABVZVEU/GZRFFVlAABaZAAAs2JRFFpkURSzYlEUQnMAAEJzURSbcQAAm3EAABJsAABqalEUEmxRFGpq///jha3r44X//zuEres7hP//EXyt6xF8//9peq3raXr//0JzretCc///m3Gt65tx//9qav//Emyt62pqresSbP//VWX///xmretVZa3r/Gb//7Ni//9aZK3rs2Kt61pk//+zYv//WmSt67NiretaZP//VWX///xmretVZa3r/Gb//2pq//8SbK3ramqt6xJsreubcf//m3Gt60Jz//9Cc63raXr//2l6resRfP//EXwAABJsAABqalEUEmxRFGpqAACbcVEUm3EAAEJzURRCcwAAWmQAALNiURRaZFEUs2IAAPxmAABVZVEU/GZRFFVlAABpelEUaXoAABF8URQRfAAAO4RRFDuEAADjhVEU44Wt6zuE//87hK3r44X//+OFC0Mhlak/Hp9pGiGVRjwbqbouDtHPEg7RHQoxxYVhIZWFYRupXVchlV1XHp8gCDFjIAg1V1EUMWNRFDVXURQdoSAIHaHe9zFj3vcdoa3rMWOt6x2hres1V973NVdAEF1PQBA2Q6IoXU9xHDZD/38C9P9////OcwL0znP//zCM//8wjAL0QBD9UUAQ10WiKP1RcRzXRTCMOE8PhDhPKIo8QxeGPEO+7zZDvu9dT43jNkNc111P73s4T85zOE/neTxD1nU8Q42jNVc4ji1vATk1V7AkLW++79dFvu/9UY3j10Vc1/1R73u+I85zviPnecsS1nXLEheGAfgXhgXsKIoB+CiKBewwjOauznPmrjCMso/Oc7KPMIy+Iw+EviMoissSF4bLEtZ1AfjWdQXs53kB+Od5BezOcxmtznNZRDCMGa0wjFlEMIwen85zHp8wjCGVznMhlc5z5EowjORKznMyYjCMMmJAkCWJMIwliUCQKIEwjCiBznMlib5vJYnOcyiBvm8ogUCQJYkwjCWJQJAogTCMKIHOc///znMC9DCM//8wjAL0znMhlM5zHKS+byGUvm8cpK5rH5wwjBykMIwhlECQHKRAkCGUUJQfnM5zJYm+byWJznMogb5vKIFQlB+cQJAcpECQIZQwjCGUMIwcpK5rH5y+byGUvm8cpM5zHKTOcyGUPM/WcTzP/5ftsNZx7bD/l8Iw/5fCMNZxEU//lxFP1nH/fy1v13zFbieDxW4XhpJt53mSbZ6Iq2tgd6trjoovaf9/iGmqgVBpOIOuaMWLS2aOhK1nlIVcZjmG1WQwjDFjcYYxY8WLF2A5ho1hlIUGYI6KM12OhLZeOIO0XaqBEl2eiLha/3/bXGB3uFrnedBYF4bQWCeDnlfXfJ5X/381V1R+El1wdTNdxny0XXB7tl5qegZgOXQXYMV5jWHOczFjjXkxY8V51WQ5dEtmanpcZnB7rWfGfK5ocHUvaVR+UGkwjJBHMIwubM5zkEfOcy5scVw1V/3GNVfGcS1vTtstb3meIZWhqB6feZ4bqaGoIZVQlC1vUJQrdzCMLW9QlCGVMIwhlVCUJI3//3CJvu9wif//I36+7yN+QBDZigAA2YpAEI1/AACNfwAAI35AECN+AABwiUAQcInOcyGVrmshla5rJI0wjCGVznMhlVCUJI2uaySNUJQrd65rK3cwjC1vznMtb77vjX///41/vu/Ziv//2YrOcxuprmsbqc5zIZWuayGVpG8ogbp4KIGkbyWJungliY5mKIGkbyiBjmYliaRvJYlwmSiBcJkliVqQKIFakCWJrmsXtM5zAfiua///UJT//+97AfgPhAH473sJ4DCMAfgwjAngznMJ4FCUF7QPhAngqao4T3meKX04ji1vhWEpfUAQLW+FYSSNhWEhlUAQK3dAECSNAAArdwAAJI1AECGVeZ4kje2wIZXtsC1vPM8tb973OE/e9xupxnEhlcZxG6mFYRupPM8bqa5rG6kwjB2hUJQbqVCUOE8wjDFjMIw1V/9/NVfOczVXznMdoa5rOE/OczFjUJQbqTCMG6lQlCGVMIwhlTCMTQwwjEgcznNNDDCMRSbOc0gcznNFJq5rSBzOczhOznMyYs5zLmyuay5sMIwyYjCMOE5QlC5sUJRIHDCMLmzOcy1vrmsrd65rLW8wjCCYMIxfMFCUIJhQlEgcMIxIHM5zTQzOc0gcznNfMM5zIJiua0gcrmsgmDCMTQxakCiBWpAliUSHKIFEhyWJUJQL2FCU//+uawvYrmv//ziOG6k4jiGVeZ4bqXmeJI2FYSSNEU8hlRFPLW9VVThPhWEpfXmeIZW+7yGVvu8kjcZxLW95nil9vu8tb77vK3f//ySN//8rd8IwLW8gCDhPwjAbqSAIG6lQlKRsMIykbFCULUIwjMtMznPLTK5rLUKua6RsznOkbFCULmxQlCl8rmspfK5rLmw="), -"format": 34896613399, -"index_count": 411, -"index_data": PackedByteArray("UAJOAk8CUwJRAlICVgJUAlUCVQJXAlYCWgJYAlkCWQJbAloCXgJcAl0CXQJfAl4CYgJgAmECZQJjAmQCZAJmAmUCZgJnAmUCZgJoAmcCaAJpAmcCaAJqAmkCbQJrAmwCbAJuAm0CcQJvAnACcAJyAnECdQJzAnQCdAJ2AnUCeQJ3AngCeAJ6AnkCfQJ7AnwCfAJ+An0CgQJ/AoACgAKCAoECgAKDAoICgwKEAoICgwKFAoQChAKGAoIChgKHAoICiAKAAn8CfwKJAogCiQKFAogCiQKCAocCiQKKAoUCigKEAoUCiQKHAooCjQKLAowCjAKOAo0CjgKPAo0CjgKQAo8CkAKRAo8CkQKSAo8CkwKSApEClAKSApMCkwKVApQCkQKWApMClwKMAosCmAKXAosCmQKYAosCmgKZAosCmgKLApsCmwKcApoCmAKdApcCnQKQApcCnQKeApACngKfApACnwKRApACoAKaApwCowKhAqICogKkAqMCogKlAqQCpQKmAqQCpgKnAqQCpwKoAqQCqQKiAqECoQKqAqkCqgKkAqgCqgKrAqkCqgKoAqsCrgKsAq0CrQKvAq4CsgKwArECsQKzArICswK0ArICswK1ArQCtQK2ArQCtQK3ArYCtwK4ArYCuAK5ArYCuQK6ArYCuwK4ArcCtwK8ArsCvAKzArECvQK8ArECsQK+Ar0CvQK/ArwCvwK7ArwCwgLAAsECxQLDAsQCxgLFAsQCxwLGAsQCyALHAsQCyQLIAsQCyQLEAsoCyQLKAssCzALJAssCywLNAswCzgLHAsgC0QLPAtAC0ALSAtEC1QLTAtQC1ALWAtUC2QLXAtgC2gLZAtgC2wLaAtgC2wLYAtwC3ALdAtsC3QLeAtsC3gLfAtsC2gLgAtkC2gLhAuAC2gLiAuEC3wLeAuMC4wLkAt8C4wLlAuQC5QLaAuQC5QLmAtoC5gLiAtoC5wLiAuYC5gLoAucC3gLdAukC6gLeAukC6gLpAusC6wLsAuoC7wLtAu4C7gLwAu8C8ALxAu8C8gLvAvEC8wLyAvEC8QL0AvMCQwL1AvYC9gL3AkMC9wJFAkMC9wL4AkUC"), -"material": SubResource("StandardMaterial3D_1w1t4"), -"name": "yellow", -"primitive": 3, -"uv_scale": Vector4(24.8032, 25.2283, 0, 0), -"vertex_count": 761, -"vertex_data": PackedByteArray("2rZpFR0Kv/batipsaRq/9iRJaRUdCr/2JEkqbGkav/YkSQAAui5U1dq2AAC6LlTVJEkAAM8SVNXatgAAzxJU1dq2AADPEifu2rZpFR0KJ+4kSQAAzxIn7iRJaRUdCifu2rYqbAtDVNXatipsaRpU1dq2I1qpP1TV2rYcSEY8VNXatgAAui5U1dq2AADPElTV2rZpFR0KVNXatiNaqT8KwSRJI1qpPwrB2rYqbAtDCsEkSSpsC0MKwdq2AAC6LgrBJEkAALouCsHathxIRjwKwSRJHEhGPArBJEmIVq3r///8tLXArev//9q2iFat6///2rZOxq3r//+Br327rev//8mmAret6///bZuSs63r//8yjmmxrev///9/rLCt6///zHFpsa3r//+RZJKzrev//zVZAret6///fVB9u63r//8CS7XArev//yRJTsat6////LTny63r///atvDbrev//4GvH9Gt6///yaaa1a3r//9tmwrZrev//zKONNut6////3/w263r//8kSfDbrev//wJL58ut6///fVAf0a3r//81WZrVrev//5FkCtmt6///zHE0263r////f926rev//314Qbut6///gYdBu63r//+Ajma8rev//35xZryt6///fGs3vq3r//+ClDe+rev//x6ZlsCt6///4GaWwK3r//8EnFjDrev///pjWMOt6///AZ1Oxq3r///9Yk7Grev///pjRMmt6///BJxEya3r///gZgbMrev//x6ZBsyt6///fGtlzq3r//+ClGXOrev//4CONtCt6///fnE20K3r//99eFvRrev//4GHW9Gt6////3+/0a3r///atpZ6eZ5U1dq2lnqFYVTVbNuWenmeVNVs25Z6hWFU1dq2b5eFYVTV2rZvl3meVNVs22+XhWFU1Wzbb5d5nlTVJEmWenmeVNUkSTmQaZpU1SRJb5d5nlTVJElvl4VhVNUkSTmQKIpU1SRJzYEoilTVJEnNgWmaVNUkSZZ6hWFU1SRJlnqFYf//kiSWeoVh//8kSW+XhWH//5Ikb5eFYf//2raWenme//9s25Z6eZ7//9q2b5d5nv//bNtvl3me///atjmQaZpU1dq2zYFpmlTV2raWenmeVNXatpZ6hWFU1dq2zYEoilTV2rZvl4VhVNXatm+XeZ5U1dq2OZAoilTVkiSWenme//8kSZZ6eZ7//5Ikb5d5nv//JElvl3me//9s25Z6hWH//9q2lnqFYf//bNtvl4Vh///atm+XhWH//5Iklnp5nlTVkiSWeoVhVNUkSZZ6eZ5U1SRJlnqFYVTVkiRvl4VhVNWSJG+XeZ5U1SRJb5eFYVTVJElvl3meVNVs2yps7bD///7/KmztsP//bNussO2w//+17ayw7bD//2zbrLA8z1TVbNussO2wVNW17aywPM9U1bXtrLDtsFTVbNtEKzzP//+SJEQrPM////7/sDk8z///AACwOTzP//9s2xxIPM////7/Kmw8z///bNussDzP//+17aywPM///5IkHEg8z///AAAqbDzP//+SJKywPM///0kSrLA8z///SRKssDzPVNVJEqyw7bBU1ZIkrLA8z1TVkiSssO2wVNVs20QrPM9U1f7/sDk8z1TVbNtEK8ZxVNX+/7A5xnFU1QAAsDk8z1TVkiREKzzPVNUAALA5xnFU1ZIkRCvGcVTVAAAqbDzPVNUAALA5PM9U1QAAKmztsFTVAACwOcZxVNUAACpsxnFU1QAAKmztsFTVAAAqbMZxVNWSJCps7bBU1ZIkKmzGcVTVAAAqbO2w//+SJCps7bD//0kSrLDtsP//kiSssO2w//9s2yps7bBU1WzbKmzGcVTV/v8qbO2wVNX+/ypsxnFU1ZIkRCvGcf//bNtEK8Zx//8AALA5xnH///7/sDnGcf//kiQcSMZx//8AACpsxnH//5IkKmzGcf//bNscSMZx///+/ypsxnH//2zbKmzGcf//kiREK8ZxVNWSJEQrPM9U1WzbRCvGcVTVbNtEKzzPVNX+/ypsPM9U1f7/KmztsFTV/v+wOTzPVNX+/7A5xnFU1f7/KmzGcVTVNVkCt63rVNU1WQK3//9U1ZFkkrOt61TVkWSSs///VNV9UH27//9U1TVZArf//1TVfVB9u63rVNU1WQK3retU1QJLtcD//1TVfVB9u///VNUCS7XAretU1X1Qfbut61TVkWSSs63rVNWRZJKz//9U1cxxabGt61TVzHFpsf//VNX/f/Db//9U1f9/8Nve91TVMo402///VNX/f/DbretU1TKONNut61TVMo402///VNUyjjTbretU1W2bCtn//1TVbZsK2a3rVNUkSU7G//9U1QJLtcD//1TVJElOxt73VNUCS7XAretU1SRJTsat61TVkWQK2f//VNWRZArZretU1cxxNNv//1TVzHE0263rVNU1WZrV//9U1X1QH9H//1TVNVma1a3rVNV9UB/RretU1W2bCtn//1TVbZsK2a3rVNXJpprV//9U1cmmmtWt61TVAkvny///VNUkSU7G//9U1QJL58ut61TVJElOxt73VNUkSU7GretU1YGvH9H//1TVyaaa1f//VNWBrx/RretU1cmmmtWt61TVzHE02///VNXMcTTbretU1f9/8Nv//1TV/3/w263rVNX/f/Db3vdU1X1QH9H//1TVAkvny///VNV9UB/RretU1QJL58ut61TVNVma1f//VNU1WZrVretU1ZFkCtn//1TVkWQK2a3rVNX8tOfL//9U1YGvH9H//1TV/LTny63rVNWBrx/RretU1dq2Tsb//1TV/LTny///VNXatk7G3vdU1fy058ut61TV2rZOxq3rVNXJpgK3//9U1YGvfbv//1TVyaYCt63rVNWBr327retU1fy0tcD//1TV2rZOxv//VNX8tLXAretU1dq2Tsbe91TV2rZOxq3rVNWBr327//9U1fy0tcD//1TVga99u63rVNX8tLXAretU1W2bkrOt61TVbZuSs///VNXJpgK3retU1cmmArf//1TVMo5psa3rVNUyjmmx//9U1W2bkrOt61TVbZuSs///VNX/f6ywretU1f9/rLD//1TVMo5psa3rVNUyjmmx//9U1cxxabGt61TVzHFpsf//VNX/f6ywretU1f9/rLD//1TVfXhb0a3rVNV9eFvR//9U1f9/v9Gt61TV/3+/0f//VNV+cTbQretU1X5xNtD//1TVfXhb0a3rVNV9eFvR//9U1fpjRMn//1TV4GYGzP//VNX6Y0TJretU1eBmBsyt61TV/WJOxv//VNX6Y0TJ//9U1f1iTsat61TV+mNEya3rVNV8a2XOretU1XxrZc7//1TVfnE20K3rVNV+cTbQ//9U1XxrN77//1TV4GaWwP//VNV8aze+retU1eBmlsCt61TV/3/duv//VNX/f926retU1YGHQbv//1TVgYdBu63rVNWBh0G7//9U1YGHQbut61TVgI5mvP//VNWAjma8retU1YCOZrz//1TVgI5mvK3rVNWClDe+//9U1YKUN76t61TVHpmWwP//VNWClDe+//9U1R6ZlsCt61TVgpQ3vq3rVNUEnFjD//9U1R6ZlsD//1TVBJxYw63rVNUemZbAretU1QGdTsb//1TVBJxYw///VNUBnU7GretU1QScWMOt61TVBJxEyf//VNUBnU7G//9U1QScRMmt61TVAZ1Oxq3rVNUemQbM//9U1QScRMn//1TVHpkGzK3rVNUEnETJretU1YKUZc7//1TVHpkGzP//VNWClGXOretU1R6ZBsyt61TVgI420K3rVNWAjjbQ//9U1YKUZc6t61TVgpRlzv//VNWBh1vRretU1YGHW9H//1TVgI420K3rVNWAjjbQ//9U1eBmBsz//1TVfGtlzv//VNXgZgbMretU1XxrZc6t61TVfGs3vv//VNV8aze+retU1X5xZrz//1TVfnFmvK3rVNX6Y1jD//9U1f1iTsb//1TV+mNYw63rVNX9Yk7GretU1eBmlsD//1TV+mNYw///VNXgZpbAretU1fpjWMOt61TVfnFmvP//VNV+cWa8retU1X14Qbv//1TVfXhBu63rVNV9eEG7//9U1X14Qbut61TV/3/duv//VNX/f926retU1f9/v9Gt61TV/3+/0f//VNWBh1vRretU1YGHW9H//1TVJEkqbAtDVNUkSSNaqT9U1SRJKmxpGlTVJEkcSEY8VNUkSQAAui5U1SRJAADPElTVJElpFR0KVNUkSSpshWFU1SRJHEiFYVTVJEkqbF1XVNUkSSNaXVdU1SRJTsbe91TVJEnw2973VNUkSU7GretU1SRJ8Nut61TVJEmIVq3rVNUkSYhW3vdU1dq2Tsbe91TV2raIVt73VNXatk7GretU1dq2iFat61TV2rbw263rVNXatvDb3vdU1bZtXOq+71TVkWT//77vVNW2bVzqXNdU1ZFk//+N41TV/3/w263rVNX/f/Db3vdU1dq28Nut61TV2rbw2973VNUkSfDb3vdU1SRJ8Nut61TV2rZc6r7vVNW2rf//vu9U1dq2XOpc11TVtq3//43jVNXatlzqvu///0iSXOq+7///tq3//77v//9tm///vu///22b//++71TVSJJc6r7vVNVtm///jeNU1UiSXOpc11TVtm1c6r7v//8kSVzqvu///5Fk//++7///SFL//77v//8kSfDbjaNU1SRJrLA4jlTVJEnw2wE5VNUkSaywsCRU1UhS//++71TVJElc6r7vVNVIUv//jeNU1SRJXOpc11TVSJJc6lzXqunatlzqXNeq6W2b//+N46rptq3//43jqultm///vu9U1W2b//+N41TVtq3//77vVNW2rf//jeNU1SRJrLCwJC/s2rassLAkL+wkSfDbATkv7Nq28NsBOS/sJElc6lzXqum2bVzqXNeq6UhS//+N46rpkWT//43jqulIUv//vu9U1UhS//+N41TVkWT//77vVNWRZP//jeNU1SRJ8NuNo1TVJEnw2wE5VNXatvDbjaNU1dq28NsBOVTVJEkjWl1X///atiNaXVf//yRJKmxdV///2rYqbF1X//8kSSNaqT9U1dq2I1qpP1TVJEkjWl1XVNXatiNaXVdU1ds2zYEoiv//JEnNgSiK///bNjmQKIr//yRJOZAoiv//JEnNgWma///bNs2BaZr//yRJOZBpmv//2zY5kGma//8jyc2BaZr//9q2zYFpmv//I8k5kGma///atjmQaZr//yRJiFbe91TVJEmIVq3rVNXatohW3vdU1dq2iFat61TV2rbNgSiKVNXats2BaZpU1SPJzYEoilTVI8nNgWmaVNVs282BSJJU1dq2OZBpmlTV2rY5kCiKVNUjyTmQaZpU1SPJOZAoilTVbNs5kEiSVNXats2BKIr//yPJzYEoiv//2rY5kCiK//8jyTmQKIr//5IkzYFIklTV2zbNgWmaVNXbNs2BKIpU1SRJzYEoilTVJEnNgWmaVNWSJDmQSJJU1ds2OZAoilTV2zY5kGmaVNUkSTmQaZpU1SRJOZAoilTVSRKssDzPVNUAACpsPM9U1UkSrLDtsFTVAAAqbO2wVNX+/ypsPM9U1bXtrLA8z1TV/v8qbO2wVNW17ayw7bBU1f9/rLD/////zHFpsf////8yjmmx/////22bkrP/////kWSSs//////JpgK3/////zVZArf/////ga99u///////f926/////4GHQbv/////gI5mvP/////8tLXA/////4KUN77/////HpmWwP////8EnFjD/////9q2Tsb/////AZ1Oxv/////8tOfL/////wScRMn/////HpkGzP////+Brx/R/////4KUZc7/////gI420P////+Bh1vR/////8mmmtX//////3+/0f////81WZrV/////5FkCtn/////bZsK2f////8yjjTb/////8xxNNv//////3/w2/////99eFvR/////31QH9H/////fnE20P////98a2XO/////+BmBsz/////Akvny//////6Y0TJ/////yRJTsb//////WJOxv/////6Y1jD/////wJLtcD/////4GaWwP////98aze+/////35xZrz/////fVB9u/////99eEG7/////yRJHEhGPFTVJEkcSIVh///athxIRjxU1dq2HEiFYf//2rbw242jVNXatvDbATlU1dq2rLA4jlTV2rassLAkVNXatipshWFU1dq2I1pdV1TV2rYcSIVhVNXatipsXVdU1ZIkrLBAEP//kiRAokAQ//8kSaywQBD//5IkKmxAEP//JEkqbEAQ//+SJJZ6QBD//9q2KmwAAPzF2rYqbEAQ/MVs25Z6AAD8xWzblnpAEPzFkiRAokAQ/MWSJECiAAD8xSRJrLBAEPzFJEmssAAA/MWSJJZ6AAD8xZIklnpAEPzFJEkqbAAA/MUkSSpsQBD8xdq2KmxAEP//bNsqbEAQ//9s25Z6QBD//yRJKmwAAP//2rYqbAAA//+SJJZ6AAD//2zblnoAAP//kiRAogAA//9s20CiAAD//yRJrLAAAP//2rassAAA///atqywQBD8xdq2rLAAAPzFbNtAokAQ/MVs20CiAAD8xdq2HEiFYf//bNscSIVh///atipshWH//2zbKmyFYf//I8k5kGmaG61s2zmQSJIbrSPJzYFpmhutbNvNgUiSG61s2zmQSJLj0iPJOZAoiuPSbNvNgUiS49Ijyc2BKIrj0pIkOZBIkuPSkiTNgUiS49LbNjmQKIrj0ts2zYEoiuPSkiRc6qmq/78kSVzqvu//v5IkXOre9/+/bNtc6t73/7+2bVzqvu//v0iSXOq+7/+/tm1c6lzX/7/atlzqvu//v9q2XOpc1/+/JElc6lzX/79s21zqqar/v0iSXOpc1/+/kiRc6qmq/7+SJG+XeZ7/v5IkrLA4jv+/kiRvl4Vh/7+SJKywQBD/v5IklnqFYf+/kiQqbIVh/7+SJECiQBD/v5IklnpAEP+/kiRAogAA/7+SJJZ6AAD/v5IkKmxAEP+/kiSWenme/7+SJCps7bD/v5IkrLDtsP+/kiSssDzP/7+SJFzq3vf/v5IkHEje9/+/kiQqbMZx/7+SJBxIxnH/v5IkHEiFYf+/kiQcSDzP/7+SJBxI3vf/f9q2iFbe9/9/bNscSN73/39s21zq3vf/f9q2Tsbe9/9/2rbw2973/3//f/Db3vf/fyRJ8Nve9/9/JEmIVt73/3+SJFzq3vf/fyRJTsbe9/9/kiQcSIVh//8kSRxIhWH//5IkKmyFYf//JEkqbIVh//8kSSpsAAD//yRJKmxAEP//2rYqbAAA//8kSSpsaRr//9q2KmxAEP//2rYqbGka//9s2ypsQBD//9q2KmwLQ///2rYqbF1X///atipshWH//2zbKmyFYf//JEkqbF1X//8kSSpsC0P//5IkKmyFYf//kiQqbEAQ//8kSSpshWH//9q2rLBAEP//bNtAokAQ//9s26ywQBD//9q2rLA4jv+/2rassLAk/79s26ywOI7/v2zbrLBAEP+/2rassEAQ/78kSaywAAD/vyRJrLBAEP+/JEmssLAk/78kSaywOI7/v5IkrLBAEP+/kiSssDiO/7/atqywAAD/v9s2OZBpmhut2zbNgWmaG62SJDmQSJIbrZIkzYFIkhutkiQcSDzP//+SJBxI3vf//2zbHEg8z///bNscSN73//9s2xxIxnH/v2zbKmzGcf+/bNscSIVh/79s25Z6hWH/v2zblnp5nv+/bNsqbO2w/79s26yw7bD/v2zbXOqpqv+/bNtvl3me/79s2ypshWH/v2zbKmxAEP+/bNuWekAQ/79s26ywOI7/v2zbb5eFYf+/bNussEAQ/79s20CiQBD/v2zblnoAAP+/bNtAogAA/79s26ywPM//v2zbXOre9/+/bNscSDzP/79s2xxI3vf/v5IkrLA4jv//JEmssDiO//+SJFzqqar//yRJ8NuNo///2rbw242j//9s21zqqar//2zbrLA4jv//2rassDiO//+SJBxIhWH//5IkHEjGcf//bNscSMZx//9s2xxIhWH//////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////3//P/8//z//P/8//z//P/8//z//v/8//7//P/+//z//v/9/////f////3////9/////f///////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP8//7//P/+/2S7Zrtku2a4lUSXR/z//vyVRJdH/P/+/8mTy5CVRJdHyZPLkJVEl0dku2a7ZLtmuDBsMmwwbDJv///9/////f/Lk8mQa8Rtx8uTyZPLk8mTy5PJkJdElUSXRJVH/f///8mTy5P9////yZPLkG3Ea8SXR2a4l0dmu8uQMm/LkDJv/v/+/2a4l0f+//7/ZriXRJdElUSXRJVH/v/8//7//Pwyb8uT/f///DJvy5P9////jjhrx2a7ZLv+//z/Zrtku/7//P/LkDJvy5Ayb////fxrx447///9/2a4l0Qyb8uTZriXRDJvy5P+//7//v/+/JdHZriXR2a4Mmwwb2a7ZLgybDBvZrtku/38AAAybDBv/fwAADJsMG+OO5A7/P/8/JVHZLv8//z8lUdku8mQMG/9/AADyZAwb/38AABtx5A4lUdku8mQMGyVR2S7yZAwb2S4lUdkuJVH/P/8//z//Pwwb8mQMG/Jk2S4lUdkuJVEAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/fwwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk8mQMGyVR2S7yZAwbJVHZLv9/AADyZAwb/38AAPJkDBv/P/8//z//P9kuJVHZLiVR/7//P9mu2S7/v/8/2a7ZLv///3////9/8uQMm/LkDJvy5Ayb8uQMmyXR2a4l0dmuJdHZriXR2a7/v/+//7//v9muJdH/v/+/2a4l0f+//78Mm/Lk2a4l0Qyb8uTZriXR/3///wyb8uT/f///DJvy5PJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0dku2a7ZLtmu/z//v/8//78MGwybDBsMm9ku2a7ZLtmuJVHZLv8//z8lUdku/z//P/+//z//v/8/JdElUSXRJVEMmwwb/38AAAybDBv/fwAA2a7ZLgybDBvZrtkuDJsMGyXRJVEl0SVR8uTyZPLk8mTy5PJk8uTyZP///3////9/AAD/fwAA/38MGwybDBsMm/9/////f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///SJJJEkiSSRJIkkkSSJJJEgAA/38AAP9/AAD/fwAA/38AAP9/AAD/f0iSSRJIkkkSSJJJEkiSSRL/f/9//3//f/9//3//f/9/SJK17UiSte1IkrXtSJK17f9//3//f/9//3//f/9//3//f////3////9/////f///SJK17UiSte1IkrXtSJK17f///3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////fzCMzvMwjM7zMIzO8zCMzvMwjDAMMIwwDDCMMAwwjDAM/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/f/9//z8AAP9//3//P/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f///AGP+OQBj/jkAY/45AGP+Of6cAMb+nADG/pwAxv6cAMYBRv/iAUb/4gFG/+IBRv/i/3////9/////f////3////9/////f////3////9/////f////3////9////9uf8c/bn/HP25/xz9uf8c/3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3////9/////f////3///////3/+//9//v//f/7//3////9/////f////3/+//9/////f/7//3////9/////f/9/////f/7//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3////9/////f///////f////3////9/////f////3////9//v//f////3////9/////f////3////9//3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38J3f9/Cd3/fwnd/38J3f9/Cd3/fwnd/38J3f9/Cd3/f/8//3//P/9//z//f/8/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_y65vf") - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_htxnk"] -resource_name = "metal" -albedo_color = Color(0.796078, 0.815686, 0.878431, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vvlwu"] -resource_name = "green" -albedo_color = Color(0.271938, 0.915094, 0.677164, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_necxe"] -resource_name = "dark" -albedo_color = Color(0.196244, 0.237565, 0.283019, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mxk0c"] -resource_name = "darkMetal" -albedo_color = Color(0.592157, 0.635294, 0.768627, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6jcae"] -resource_name = "_defaultMat" -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_5twe5"] -_surfaces = [{ -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"format": 34896613377, -"index_count": 2010, -"index_data": PackedByteArray("AgAAAAEAAQADAAIAAQAAAAQABAAFAAEABQAGAAEACQAHAAgACAAKAAkACAALAAoADAALAAgACAANAAwADwAOAAIAAgADAA8AAwAQAA8ADwAFAAQABAAOAA8AEQAJAAoACgASABEADQATABEAEQAMAA0AEQASAAwAFgAUABUAFgAVABcAGAAWABcAGQAYABcAGQAXABoAGwAZABoAGgAcABsAHQAbABwAHQAcAB4AHQAeAB8AIAAdAB8AHwAhACAAJAAiACMAIwAlACQAFQAmACcAJwAXABUAKgAoACkAKQArACoAKwAjACoAKwAsACMALAAlACMALgAtABQAFAAWAC4AFgAvAC4ALwArAC4AKwAwAC4AKwAxADAAKwApADEAMwAyACAAIAA0ADMANQA0ACAAIAAhADUANAA2ADMANgA3ADMANwA4ADMAHAA5ADoAOgAeABwAPAA7ADIAMgAzADwAKAA9ADEAMQApACgALgA+AD8APwBAAC4AQAAnAC4AJwAmAC4AJgAtAC4AOQBAAD8AOQA/AEEAOQBBAEIAOgA5AEIAQwA6AEIANQBDAEIAQgA0ADUALABEACQAJAAlACwAMABFAD4APgAuADAAPQBFADAAMAAxAD0ARwBGADsAOwA8AEcASABGAEcARwBJAEgAFwAnAEAAQAAaABcASgA2ADQANABCAEoANwA2AEoASgBLADcAKgBMABgAGAA+ACoAPwA+ABgAGAAZAD8APgBFACoARQA9ACoAPQAoACoALwAWABgAGABMAC8ATAAiAC8AIgBEAC8AIgAkAEQAHgA6AEMAQwAfAB4AQgBBABsAGwAdAEIAHQBNAEIATQBOAEIATgBKAEIATgBLAEoATgBPAEsAGgBAADkAOQAcABoALQAmABUAFQAUAC0AIQAfAEMAQwA1ACEATQAdACAAIAAyAE0AMgBIAE0AMgA7AEgAOwBGAEgAOAA3AEsASwBPADgAMwA4AE8ATwBOADMATgBJADMASQA8ADMASQBHADwAKwAvAEQARAAsACsAGwBBAD8APwAZABsAUgBQAFEAUQBTAFIAVgBUAFUAVQBXAFYAWgBYAFkAWQBbAFoAUQBQAFUAVQBUAFEAWgBcAF0AXQBYAFoAVgBXAFIAUgBTAFYAXwBeAF0AXQBcAF8AWQBeAF8AXwBbAFkAYgBgAGEAYQBjAGIAZgBkAGUAZQBnAGYAagBoAGkAZwBqAGkAZgBnAGkAZgBpAGsAbABmAGsAbABrAGAAYABiAGwAbQBsAGIAcABuAG8AbwBxAHAAdAByAHMAcwB1AHQAaAB1AHMAaABqAHUAdgBoAHMAagBtAHUAdwBtAGoAagB4AHcAbQBiAHUAeQB1AGIAeQB6AHUAeQB7AHoAeQAqAHsAeQBMACoAeQBiAGMAfAB5AGMAYwB2AHwAfAB2AHMAYwB9AHYAYwBwAH0AfgB9AHAAcABxAH4ATQB8AHMATgBNAHMAfwBOAHMAcwCAAH8AaQCBAIIAggBrAGkAdgCBAGkAaQBoAHYAhQCDAIQAhACGAIUAhwB1AHoAegCIAIcAdwCJAGwAbABtAHcAfgCKAIsAiwB9AH4AbwBuAIwAjACNAG8AhgCEAHQAhgB0AHUAdQCHAIYAjgCGAIcAkACPAHMAcwCFAJAAcwByAIUAcgCDAIUAawCCAGEAYQBgAGsAkACFAIYAhgCOAJAAagBnAGUAZQB4AGoAbACJAGQAZABmAGwAdgB9AIsAgQB2AIsAgQCLAIwAggCBAIwAggCMAG4AYQCCAG4AYQBuAHAAcABjAGEAjQCMAIsAiwCKAI0AkwCRAJIAkgCUAJMAlgCVAJEAlwCWAJEAlwCRAJMAlwCTAJgAmQCXAJgAmgCZAJgAmQCaAJsAnACaAJgAnQCZAJsAnACYAJ4AnQCbAJ8AnQCfAKAAnQCgAKEAogCdAKEAogChAKMApACcAJ4ApQCkAJ4ApgClAJ4ApwCiAKMApwCjAKgApwCoAKkApgCeAKoAqwCmAKoArACrAKoArACqAK0ArgCsAK0ArwCnAKkArgCtALAArwCpALEArwCxALIArwCyALMAtACuALAAtQC0ALAAtgC1ALAAtwCvALMAtgCwALgAuQC2ALgAtwCzALoAuwC5ALgAtwC6ALsAuAC8ALsAtwC7ALwAvQC3ALwAvgC9ALwAvgC8AL8AwAC+AL8AwAC/AMEAwQDCAMAAxADDAMIAwgDBAMQAxQCdAKIAogDGAMUAlgCXAMcAxwDIAJYAlQCWAMgAyADJAJUAygCwAK0ArQDLAMoAwwDMAMAAwADCAMMAzQCnAK8ArwDOAM0AzwC3AL0AvQDQAM8AywCtAKoAqgDRAMsAlwCZANIA0gDHAJcAzgCvALcAtwDPAM4A0QCqAJ4AngDTANEA0wCeAJgAmADUANMA1QDQAL0AvQC+ANUA0gCZAJ0AnQDFANIA2ADWANcA1wDZANgA1wDaANkA2gDbANkA2gDcANsA3ADdANsA3QDeANsA3wDdANwA3gDgANsA3gDhAOAA4QDiAOAA3ADjAN8A4wDkAN8A4wDlAOQA4gDmAOAA4gDnAOYA5wDoAOYA6ADpAOYA6ADqAOkA4wDrAOUA6wDsAOUA6wDtAOwA6gDuAOkA6gDvAO4A7wDwAO4A6wDxAO0A8QDyAO0A8QDzAPIA8QD0APMA9AD1APMA8AD2AO4A8AD3APYA9wD4APYA9AD5APUA+QD6APUA+QD7APoA+AD8APYA+QD9APsA+AD+APwA/QD/APsA/gAAAfwA/QAAAf8A/QD8AAAB/QABAfwA/QACAQEBAgEDAQEBAgEEAQMBBAEFAQMBzADVAL4AvgDAAMwAxgCiAKcApwDNAMYABgHEAMEAwQC/AAYBBwEGAb8AvwC8AAcBCAG4ALAAsADKAAgBmACTAJQAlADUAJgABwG8ALgAuAAIAQcBkQCVAMkAyQCSAJEACQHyAPMA8wAKAQkB+gD7AAsBCwEMAfoADQHqAOgA6AAOAQ0B+AD3AA8BDwEQAfgA/wAAAREBEQESAf8A+wD/ABIBEgELAfsAEwHsAO0A7QAUARMBFQHlAOwA7AATARUBFwEWAd4A3gDdABcBGAHwAO8A7wAZARgBCgHzAPUA9QAaAQoBDgHoAOcA5wAbAQ4B/gD4ABABEAEcAf4AHgEdAeIA4gDhAB4BGgH1APoA+gAMARoBFQEfAeQA5ADlABUBGQHvAOoA6gANARkBAAH+ABwBHAERAQABFAHtAPIA8gAJARQBHwEgAd8A3wDkAB8BGwHnAOIA4gAdARsBIAEXAd0A3QDfACABDwH3APAA8AAYAQ8BFgEeAeEA4QDeABYBIQGAAHMAcwCPACEBJAEiASMBIwElASQBKAEmAScBJwEpASgBKwEqASkBKQEnASsBLgEsAS0BLQEvAS4BKwEwATEBMQEqASsBNAEyATMBMwE1ATQBMgEwASsBKwEvATIBLwE2ATIBNgE3ATIBNwE4ATIBOAEzATIBLgEvASsBLgErAScBLgEnASYBOQEuASYBOgE5ASYBOwE6ASYBJAE7ASYBJgEiASQBNQEzATgBOAE8ATUBNAE1ATwBNAE8AT0BNAE9AT4BMQE0AT4BKgExAT4BKgE+AS0BKQEqAS0BLQEsASkBKAEpASwBKAEsAT8BKAE/AUABKAFAAUEBIwEoAUEBQQElASMBLwEtAT4BPgE2AS8BPAE4ATcBNwE9ATwBPQE3ATYBNgE+AT0BPwEsAS4BLgE5AT8BQAE/ATkBOQE6AUABQAE6ATsBOwFBAUABOwEkASUBJQFBATsBRAFCAUMBQwFFAUQBSAFGAUcBRwFJAUgBTAFKAUsBSwFNAUwBUAFOAU8BTwFRAVABVAFSAVMBUwFVAVQBVwFWAVQBVAFVAVcBUgFMAU0BTQFTAVIBWgFYAVkBWQFbAVoBUQFPAVgBWAFaAVEBXgFcAV0BXQFfAV4BRgFcAV4BXgFHAUYBWwFZAUMBQwFCAVsBSgFIAUkBSQFLAUoBYQFgAVYBVgFXAWEBZAFiAWMBYwFlAWQBZwFmAWIBYgFkAWcBaQFoAWYBZgFnAWkBbAFqAWsBawFtAWwBZQFjAWABYAFhAWUBawFuAW8BbwFtAWsBbwFFAW0BRQFoAW0BRQFDAWgBQwFmAWgBQwFwAWYBcAFDAVkBcAFxAWYBWQFyAXABcQFzAWYBWQF0AXIBcwFiAWYBWQFYAXQBcwF1AWIBdQF2AWIBdgF3AWIBdwFjAWIBdwF4AWMBWAF5AXQBWAF6AXkBWAF7AXoBeAFgAWMBeAF8AWABfAF9AWABWAFPAXsBTwF+AXsBTwF/AX4BTwFOAX8BTgGAAX8BfQFWAWABTgFdAYABfQGBAVYBgQGCAVYBggGDAVYBXQGEAYABXQGFAYQBXQGGAYUBgwFUAVYBXQFcAYYBXAGHAYYBgwGHAVQBhwFcAVQBXAFGAVQBRgFSAVQBRgFMAVIBRgFIAUwBSAFKAUwBiAFEAUUBRQFvAYgBXwFdAU4BTgFQAV8BagGJAW4BbgFrAWoBiQGIAW8BbwFuAYkBaQFsAW0BbQFoAWkBjAGKAYsBiwGNAYwBiwGOAY0BjgGPAY0BjgGQAY8BkAGRAY8BkQGSAY8BkwGRAZABkgGUAY8BkgGVAZQBlQGWAZQBkAGXAZMBlwGYAZMBlwGZAZgBlgGaAZQBlgGbAZoBmwGcAZoBnAGdAZoBnAGeAZ0BlwGfAZkBnwGgAZkBnwGhAaABngGiAZ0BngGjAaIBowGkAaIBnwGlAaEBpQGmAaEBpQGnAaYBpQGoAacBqAGpAacBpAGqAaIBpAGrAaoBqwGsAaoBqAGtAakBrQGuAakBrQGvAa4BrAGwAaoBrQGxAa8BrAGyAbABsQGzAa8BsgG0AbABsQG0AbMBsQGwAbQBsQG1AbABsQG2AbUBtgG3AbUBtgG4AbcBuAG5AbcBugGmAacBpwG7AboBvQG8AZYBlgGVAb0BvwG+AZMBkwGYAb8BswG0AcABwAHBAbMBwgGgAaEBoQHDAcIBxAGeAZwBnAHFAcQBsgGsAcYBxgHHAbIByAGbAZYBlgG8AcgBxQGcAZsBmwHIAcUBrgGvAckByQHKAa4BvgHLAZEBkQGTAb4BzAGjAZ4BngHEAcwBuwGnAakBqQHNAbsBwwGhAaYBpgG6AcMBzgGZAaABoAHCAc4BzwG9AZUBlQGSAc8BzQGpAa4BrgHKAc0BzgG/AZgBmAGZAc4B0AGkAaMBowHMAdABrAGrAdEB0QHGAawBrwGzAcEBwQHJAa8BywHPAZIBkgGRAcsBtAGyAccBxwHAAbQB0QGrAaQBpAHQAdEB"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 606, -"vertex_data": PackedByteArray("2rborsuKAAAjyeiuy4oAANq25rzLigAAI8nmvMuKAADatuiu5ZUAACPJ6K7llQAAbNvorliQAACSJOiuWJAAANs26K7llQAA2zborsuKAAAkSeiuy4oAACRJ6K7llQAAJEnmvOWVAADbNua85ZUAANq25rzllQAAI8nmvOWVAABs2+a8WJAAANs25rzLigAAJEnmvMuKAACSJOa8WJAAAP7/cmXe5gAAGPtyZaTpAAD+/3JlwrwAALXtcmWt6wAAbNtyZcK8AABs23Jl3uYAAGzbcmVr7AAAkiRyZd7mAACSJHJla+wAAJIkcmXCvAAASRJyZa3rAADmBHJlpOkAAAAAcmXCvAAAAAByZd7mAABs22uWwrwAAGzba5ZutAAAte2LlMK8AAC17YuUbrQAABj7dVCk6QAAte11UK3rAABs23NebrQAAP7/c15utAAAbNvxaG60AAD+/22IbrQAABj7bI9utAAA/v91UN7mAAD+/3VQ/LkAAP7/bYjCvAAA/v9VUjW3AAD+/3RXLbUAAAAAbYjCvAAAAABtiG60AAAAAHVQ/LkAAAAAdVDe5gAAAABVUjW3AAAAAHRXLbUAAAAAc15utAAAkiR1UGvsAABJEnVQresAAOYEbI/CvAAA5gRsj260AABs23RXLbUAAGzbdVD8uQAAbNt1UN7mAABs23VQa+wAAJIkdVDe5gAAkiR1UPy5AADmBHVQpOkAABj7bI/CvAAAbNtVUjW3AABJEouUwrwAAEkSi5RutAAAkiRrlsK8AACSJGuWbrQAAJIkVVI1twAAkiR0Vy21AABs2/FowrwAAJIk8WjCvAAAkiTxaG60AACSJHNebrQAALZt65n3MQAAtm3pp1MIAABIkuuZ9zEAAEiS6adTCAAAtm3rmVMIAAC2be2L9zEAAEiS65lTCAAASJLti/cxAABIkmbA9zEAAEiSZM73MQAASJJmwFMIAABIkmTOUwgAALZtZsBTCAAAtm1mwPcxAAC2bWTO9zEAALZtZM5TCAAA2rZ9EQ+aAAAkSX0RD5oAANq28WgPmgAAJEnxaA+aAABIkv0UN4oAAEiS/RTAeAAA2rb9FDeKAADatv0UwHgAANq28WhscAAA2rYAAGxwAADatvFowHgAANq2AAAujAAA2rZ2HryRAADatvFovJEAACRJdh68kQAAtm12HryRAAAkSfFovJEAALZt8Wi8kQAAJEnxaAlQAAAkSfFoe2kAANq28WgJUAAA2rbxaHtpAAAkSfFobHAAAEiS8Wi8kQAASJLxaMB4AABs2/FoUMIAAGzb8Wh7aQAAbNvxaNWqAACSJPFoUMIAACRJ8WjAeAAAtm3xaMB4AACSJPFo1aoAAJIk8Wh7aQAAJEkAAGxwAAAkSQAALowAACRJb3pZUgAA2rZvellSAAAkSW96i2IAANq2b3qLYgAA2rbti3tpAABs2+2Le2kAAEiSdh68kQAAtm39FMB4AAAkSf0UwHgAACRJ/RQ3igAAtm39FDeKAADatu2Li2IAACRJ7Yt7aQAAJEnti4tiAAAyjrGa//8AADKOsZpx+gAAbZuYmP//AABtm5iYcfoAAP9/aJv//wAAzHGxmv//AACRZJiY//8AAMmmQpX//wAANVlClf//AAD/f4SR//8AAH14I5H//wAAgYcjkf//AAB9UOmQ//8AAIGv6ZD//wAAfnEIkP//AAB8a0SO//8AAOBm+Iv//wAAAkvai///AAD6Y0qJ//8AAICOCJD//wAAgpREjv//AAAemfiL//8AACRJa4b//wAA/WJrhv//AAD6Y4uD//8AAPy02ov//wAABJxKif//AAABnWuG//8AANq2a4b//wAABJyLg///AAACS/yA//8AAPy0/ID//wAA4GbegP//AAB8a5J+//8AAH5xznz//wAAHpnegP//AACClJJ+//8AAICOznz//wAAfVDse///AACBr+x7//8AAIGHsnv//wAAfXiye///AAD/f1J7//8AAMmmk3f//wAANVmTd///AACRZD50//8AAG2bPnT//wAAzHElcv//AAAyjiVy//8AAP9/bnH//wAA/39ucXH6AAAyjiVycfoAAH1Q6ZBx+gAAAkvai3H6AACRZJiYcfoAAMxxsZpx+gAA/39om3H6AAD8tPyAcfoAANq2a4Zx+gAAzHElcnH6AAAkSWuGcfoAAAJL/IBx+gAAfVDse3H6AAA1WZN3cfoAAPy02otx+gAANVlClXH6AACBr+mQcfoAAMmmQpVx+gAAkWQ+dHH6AAD/f25xHfIAADKOJXId8gAAzHElch3yAACRZD50HfIAAG2bPnQd8gAANVmTdx3yAADJppN3HfIAAP9/bXgd8gAAiHbneB3yAAB2ied4HfIAAH1Q7Hsd8gAAtm1Neh3yAAAjZoZ8HfIAAIGv7Hsd8gAASJJNeh3yAADbmYZ8HfIAAAJL/IAd8gAAU2Bsfx3yAACsXMyCHfIAACRJa4Yd8gAAbVtrhh3yAAD8tPyAHfIAAKufbH8d8gAAUqPMgh3yAAACS9qLHfIAAKxcCood8gAAU2BqjR3yAADatmuGHfIAAJGka4Yd8gAAUqMKih3yAAD8tNqLHfIAAKufao0d8gAAfVDpkB3yAAAjZlCQHfIAALZtiZId8gAAga/pkB3yAADbmVCQHfIAAEiSiZId8gAANVlClR3yAADJpkKVHfIAAIh275Md8gAAdonvkx3yAAD/f2mUHfIAAJFkmJgd8gAAbZuYmB3yAADMcbGaHfIAADKOsZod8gAA/39omx3yAABtmz50cfoAAMmmk3dx+gAAga/se3H6AACRpGuGbrQAAFKjCoputAAASJKJkm60AADbmVCQbrQAAG1ba4ZutAAArFzMgm60AAAjZlCQbrQAALZtiZJutAAA/39plG60AAB2ie+TbrQAAKufbH9utAAAUqPMgm60AADbmYZ8brQAAIh253hutAAA/39teG60AABTYGqNbrQAAKxcCoputAAAq59qjW60AABTYGx/brQAAIh275NutAAAI2aGfG60AAC2bU16brQAAEiSTXputAAAdonneG60AACSJO2Le2kAAG2b4d+dnwAAkWTh352fAABtm3DsnZ8AAJFkcOydnwAAbZvh39qXAABtm3Ds2pcAAJFk4d/alwAAkWRw7NqXAACRZHDsu30AAG2bcOy7fQAAkWT//9qXAACRZP//u30AAG2b///alwAAbZv//7t9AABtm+Hfu30AAJFk4d+7fQAAbZvh3/l1AABtm3Ds+XUAAJFk4d/5dQAAkWRw7Pl1AABtm2D92nkAAG2b3ftBeQAAbZs39gN3AABtm2D9vJsAAG2b3ftVnAAAbZs39pOeAACRZDf2A3cAAJFk3ftBeQAAkWRg/dp5AACRZGD9vJsAAJFk3ftVnAAAkWQ39pOeAAA1WROicfoAADVZE6L//wAAkWS9nnH6AACRZL2e//8AAJFkF8P//wAAkWQXw3H6AADMcTDF//8AAMxxMMVx+gAA/3/nxf//AAD/f+fFcfoAADKOMMX//wAAMo4wxXH6AAACS1m2//8AACRJ6rD//wAAAktZtnH6AAAkSeqwcfoAAG2bF8P//wAAbZsXw3H6AADJpsG///8AAMmmwb9x+gAAga9pu///AACBr2m7cfoAAAJLe6v//wAAfVBrpv//AAACS3urcfoAAH1Qa6Zx+gAANVnBv///AAB9UGm7//8AADVZwb9x+gAAfVBpu3H6AAD8tFm2//8AAPy0WbZx+gAA/LR7q///AADatuqw//8AAPy0e6tx+gAA2rbqsHH6AACBr2um//8AAIGva6Zx+gAAyaYTov//AADJphOicfoAADKOpJxx+gAAMo6knP//AABtm72ecfoAAG2bvZ7//wAA/3/tm///AADMcaSc//8AAP9/0aX//wAAgYcypv//AAB9eDKm//8AAICOTaf//wAAfnFNp///AACClBGp//8AAB6ZXav//wAABJwLrv//AAABneqw//8AAHxrEan//wAA4GZdq///AAD6Ywuu//8AAAScybP//wAAHpl3tv//AAD9Yuqw//8AAPpjybP//wAA4GZ3tv//AACClMO4//8AAICOh7r//wAAgYeju///AAB8a8O4//8AAH5xh7r//wAAfXiju///AAD/fwO8//8AAMxxpJxx+gAA/3/tm3H6AAD/f+2bHfIAADKOpJwd8gAAzHGknB3yAACRZL2eHfIAAG2bvZ4d8gAANVkToh3yAADJphOiHfIAAP9/7KId8gAAiHZmox3yAAB2iWajHfIAAH1Qa6Yd8gAAtm3MpB3yAAAjZgWnHfIAAIGva6Yd8gAASJLMpB3yAADbmQWnHfIAAAJLe6sd8gAAU2DrqR3yAACsXEutHfIAACRJ6rAd8gAAbVvqsB3yAAD8tHurHfIAAKuf66kd8gAAUqNLrR3yAAACS1m2HfIAAKxcibQd8gAAU2Dptx3yAADatuqwHfIAAJGk6rAd8gAAUqOJtB3yAAD8tFm2HfIAAKuf6bcd8gAAfVBpux3yAAAjZs+6HfIAALZtCL0d8gAAga9pux3yAADbmc+6HfIAAEiSCL0d8gAANVnBvx3yAADJpsG/HfIAAIh2br4d8gAAdoluvh3yAAD/f+i+HfIAAJFkF8Md8gAAbZsXwx3yAADMcTDFHfIAADKOMMUd8gAA/3/nxR3yAACRpOqwbrQAAFKjibRutAAAI2YFp260AAC2bcykbrQAAHaJZqNutAAASJLMpG60AAD/f+i+brQAAHaJbr5utAAAq5/rqW60AABSo0utbrQAAG1b6rButAAArFxLrW60AAC2bQi9brQAAIh2br5utAAAU2DrqW60AABIkgi9brQAANuZz7putAAA/3/som60AACsXIm0brQAAKuf6bdutAAA25kFp260AACIdmajbrQAAFNg6bdutAAAI2bPum60AADatmTOuU0AAGzbZsC5TQAAbNtkzrlNAACSJGTOuU0AAJIkZsC5TQAAJElkzrlNAABs2+2L1aoAAGzb5cOsmAAAbNvpp6yYAABs2+mnCW8AAGzbZM5QwgAAbNvlwwlvAABs2+2L9zEAAGzbZsD3MQAAkiT2RdWqAABJEvZF1aoAAAAA8WjVqgAAkiTti9WqAAAAAO2L1aoAAEkS9kV7aQAAkiT2RXtpAAAAAPFoe2kAAAAA7Yt7aQAAkiRmwPcxAACSJO2L9zEAAJIk6acJbwAAkiTpp6yYAACSJOXDCW8AAJIk5cOsmAAAkiRkzlDCAADbNj7yBQ0AANs2vPzOBQAAI8k+8gUNAAAjybz8zgUAAGzb9kV7aQAAbNv2RdWqAAC17fZFe2kAALXt9kXVqgAAI8kTaAUNAADbNhNoBQ0AACPJj3xTCAAA2zaPfFMIAAD+/+2L1aoAAP7/7Yt7aQAA2zbB3VMIAADbNpRdzgUAANs273YAAAAA2zZh4wAAAAAjycHdUwgAACPJlF3OBQAAI8nvdgAAAAAjyWHjAAAAAP7/8WjVqgAA/v/xaHtpAADatu2LqlQAANq27YvnOAAAJEnti6pUAAAkSe2L5zgAACRJZM73MQAA2rZkzvcxAADatmTOmlsAANq2ZM4arAAAJElkzppbAAAkSWTOGqwAAD/FbnFQwgAAvzpucVDCAAA/xefFUMIAAL8658VQwgAA2rblwwlvAADatuXDrJgAANq26aesmAAA2rbppwlvAAAkSemnCW8AACRJ5cMJbwAAJEnlw6yYAAAkSemnrJgAACRJ+yLJRgAAJEn+DclGAAAkSf4NBisAACRJ+yIGKwAA2rb7IgYrAADatv4NyUYAANq2+yLJRgAA2rb+DQYrAAD9YmuGcfoAAPpjSolx+gAAfnHOfHH6AAB9eLJ7cfoAAP9/Untx+gAAgYeye3H6AACAjs58cfoAAIKUkn5x+gAAfnEIkHH6AAB9eCORcfoAAOBm3oBx+gAA+mOLg3H6AAB8a0SOcfoAAOBm+Itx+gAAfGuSfnH6AAAemfiLcfoAAAScSolx+gAAgpREjnH6AACBhyORcfoAAICOCJBx+gAABJyLg3H6AAAemd6AcfoAAP9/hJFx+gAAAZ1rhnH6AAAkSeHfKqUAANq24d8qpQAAvzpucW60AAC/OufFbrQAANq24d+aWwAAP8VucW60AAA/xefFbrQAACRJ4d+aWwAAfGvDuHH6AAB+cYe6cfoAAH14o7tx+gAA/38DvHH6AADgZl2rcfoAAPpjC65x+gAA4GZ3tnH6AAD/f9GlcfoAAIGHMqZx+gAAgI6HunH6AACClMO4cfoAAPpjybNx+gAA/WLqsHH6AACAjk2ncfoAAIKUEalx+gAAAZ3qsHH6AAAEnAuucfoAAH14MqZx+gAAfnFNp3H6AAB8axGpcfoAAB6ZXatx+gAABJzJs3H6AAAemXe2cfoAAIGHo7tx+gAA") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"format": 34896613377, -"index_count": 516, -"index_data": PackedByteArray("1AHSAdMB1wHVAdYBBgAQAAMAAwABAAYAEwANAAgACAAHABMAEQATAAcABwAJABEABQAPABAAEAAGAAUAewAqACMA2AF7ACMA2QHYASMA2QEjACIA2AHZAdoB2gGIANgB2gHbAYgA3AHZASIA3AEiAEwATAB5ANwB3AHUAdkB1AGIANsB1AHdAdkB1AHbAd0B1AHTAYgA3gGIANMB0wHfAd4BfwDgAeEB4QHiAX8A4gHjAX8A4gHkAeMB5wHlAeYB5gGAAOcBgADoAecBgAAhAegB4wHkAegB6AEhAeMB5wHiAeEB4QHlAecB5gHlAeEB4QHgAeYB6gHpAdYBIQHqAdYBIQHWAdUB6wEhAdUBIQHrAewB7QHrAdUB4wEhAewB7gHtAdUB7AHuAeMB7gHVAe8BSADuAe8B7wF8AEgATQBIAHwASABJAO4BSQDjAe4BSQBOAOMBfwDjAU4A5gHgAX8AfwCAAOYB6AHkAeIB4gHnAegB8gHwAfEB8QHzAfIB9gH0AfUB9QH3AfYB+gH4AfkB+QH7AfoBegB7APUB9QH0AXoA/AHYAYgAiAD9AfwB8QHwAf4B/gH7AfEB+wH/AfEB/wH7AfkB/wEAAvEBAAIBAvEB8gECAv4B/gHwAfIBAwL/AfkB+QH4AQMCAwL4AfoB+gECAgMC8wEDAgICAgLyAfMB8wEEAgMC8wEFAgQCBwIGAvwB/AH9AQcC/wEDAgQCBAIAAv8B8QEBAgUCBQLzAfEBegD0AfYB9gEHAnoABwKIAHoABwL9AYgAAQIAAgQCBAIFAgECBgL3AfUB9QF7AAYCewD8AQYCewDYAfwB9gH3AQYCBgIHAvYBhwCIAN4BjgCHAN4BCAKOAN4BkACOAAgCCQIIAt4BCQLeAVcACQJXAFUACAIKApAAjwCQAAoCIQGPAAoCCwIJAlUACgILAiEBCwJVAOoB6gEhAQsC6QHqAVUAVQBQAOkBUABSAOkBUgBdAOkBXQBeAOkBXgAMAukB3wFdAFIA3wFYAF0A3wFZAFgA3wENAlkA3gHfAVIAUgBXAN4B1wHWAekB6QEMAtcB3wHTAdIB0gENAt8B0gHUAdwBDgLSAdwBDQLSAQ4CWQANAg4CXgBZAA4CDAJeAA4C1wEMAg4CDwIOAtwB1wEOAhACEQIPAtwB1wEQAhECEQLcAe8BEQLVAdcB7wHVAREC+gH7AVYAVgACAvoBVABWAPsBVgBTAAIC+wH+AVQAUwBRAAIC/gFRAFQA/gFcAFEAXABaAFEAUQBaAAIC/gFfAFwA/gECAl8AWgBbAAICWwBfAAICeQB8ABICEgLcAXkAEwISAnwAEgIUAtwBfADvARMCFAIVAtwB7wEVAhMC7wHcARUC"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 606, -"vertex_data": PackedByteArray("2rborsuKAAAjyeiuy4oAANq25rzLigAAI8nmvMuKAADatuiu5ZUAACPJ6K7llQAAbNvorliQAACSJOiuWJAAANs26K7llQAA2zborsuKAAAkSeiuy4oAACRJ6K7llQAAJEnmvOWVAADbNua85ZUAANq25rzllQAAI8nmvOWVAABs2+a8WJAAANs25rzLigAAJEnmvMuKAACSJOa8WJAAAP7/cmXe5gAAGPtyZaTpAAD+/3JlwrwAALXtcmWt6wAAbNtyZcK8AABs23Jl3uYAAGzbcmVr7AAAkiRyZd7mAACSJHJla+wAAJIkcmXCvAAASRJyZa3rAADmBHJlpOkAAAAAcmXCvAAAAAByZd7mAABs22uWwrwAAGzba5ZutAAAte2LlMK8AAC17YuUbrQAABj7dVCk6QAAte11UK3rAABs23NebrQAAP7/c15utAAAbNvxaG60AAD+/22IbrQAABj7bI9utAAA/v91UN7mAAD+/3VQ/LkAAP7/bYjCvAAA/v9VUjW3AAD+/3RXLbUAAAAAbYjCvAAAAABtiG60AAAAAHVQ/LkAAAAAdVDe5gAAAABVUjW3AAAAAHRXLbUAAAAAc15utAAAkiR1UGvsAABJEnVQresAAOYEbI/CvAAA5gRsj260AABs23RXLbUAAGzbdVD8uQAAbNt1UN7mAABs23VQa+wAAJIkdVDe5gAAkiR1UPy5AADmBHVQpOkAABj7bI/CvAAAbNtVUjW3AABJEouUwrwAAEkSi5RutAAAkiRrlsK8AACSJGuWbrQAAJIkVVI1twAAkiR0Vy21AABs2/FowrwAAJIk8WjCvAAAkiTxaG60AACSJHNebrQAALZt65n3MQAAtm3pp1MIAABIkuuZ9zEAAEiS6adTCAAAtm3rmVMIAAC2be2L9zEAAEiS65lTCAAASJLti/cxAABIkmbA9zEAAEiSZM73MQAASJJmwFMIAABIkmTOUwgAALZtZsBTCAAAtm1mwPcxAAC2bWTO9zEAALZtZM5TCAAA2rZ9EQ+aAAAkSX0RD5oAANq28WgPmgAAJEnxaA+aAABIkv0UN4oAAEiS/RTAeAAA2rb9FDeKAADatv0UwHgAANq28WhscAAA2rYAAGxwAADatvFowHgAANq2AAAujAAA2rZ2HryRAADatvFovJEAACRJdh68kQAAtm12HryRAAAkSfFovJEAALZt8Wi8kQAAJEnxaAlQAAAkSfFoe2kAANq28WgJUAAA2rbxaHtpAAAkSfFobHAAAEiS8Wi8kQAASJLxaMB4AABs2/FoUMIAAGzb8Wh7aQAAbNvxaNWqAACSJPFoUMIAACRJ8WjAeAAAtm3xaMB4AACSJPFo1aoAAJIk8Wh7aQAAJEkAAGxwAAAkSQAALowAACRJb3pZUgAA2rZvellSAAAkSW96i2IAANq2b3qLYgAA2rbti3tpAABs2+2Le2kAAEiSdh68kQAAtm39FMB4AAAkSf0UwHgAACRJ/RQ3igAAtm39FDeKAADatu2Li2IAACRJ7Yt7aQAAJEnti4tiAAAyjrGa//8AADKOsZpx+gAAbZuYmP//AABtm5iYcfoAAP9/aJv//wAAzHGxmv//AACRZJiY//8AAMmmQpX//wAANVlClf//AAD/f4SR//8AAH14I5H//wAAgYcjkf//AAB9UOmQ//8AAIGv6ZD//wAAfnEIkP//AAB8a0SO//8AAOBm+Iv//wAAAkvai///AAD6Y0qJ//8AAICOCJD//wAAgpREjv//AAAemfiL//8AACRJa4b//wAA/WJrhv//AAD6Y4uD//8AAPy02ov//wAABJxKif//AAABnWuG//8AANq2a4b//wAABJyLg///AAACS/yA//8AAPy0/ID//wAA4GbegP//AAB8a5J+//8AAH5xznz//wAAHpnegP//AACClJJ+//8AAICOznz//wAAfVDse///AACBr+x7//8AAIGHsnv//wAAfXiye///AAD/f1J7//8AAMmmk3f//wAANVmTd///AACRZD50//8AAG2bPnT//wAAzHElcv//AAAyjiVy//8AAP9/bnH//wAA/39ucXH6AAAyjiVycfoAAH1Q6ZBx+gAAAkvai3H6AACRZJiYcfoAAMxxsZpx+gAA/39om3H6AAD8tPyAcfoAANq2a4Zx+gAAzHElcnH6AAAkSWuGcfoAAAJL/IBx+gAAfVDse3H6AAA1WZN3cfoAAPy02otx+gAANVlClXH6AACBr+mQcfoAAMmmQpVx+gAAkWQ+dHH6AAD/f25xHfIAADKOJXId8gAAzHElch3yAACRZD50HfIAAG2bPnQd8gAANVmTdx3yAADJppN3HfIAAP9/bXgd8gAAiHbneB3yAAB2ied4HfIAAH1Q7Hsd8gAAtm1Neh3yAAAjZoZ8HfIAAIGv7Hsd8gAASJJNeh3yAADbmYZ8HfIAAAJL/IAd8gAAU2Bsfx3yAACsXMyCHfIAACRJa4Yd8gAAbVtrhh3yAAD8tPyAHfIAAKufbH8d8gAAUqPMgh3yAAACS9qLHfIAAKxcCood8gAAU2BqjR3yAADatmuGHfIAAJGka4Yd8gAAUqMKih3yAAD8tNqLHfIAAKufao0d8gAAfVDpkB3yAAAjZlCQHfIAALZtiZId8gAAga/pkB3yAADbmVCQHfIAAEiSiZId8gAANVlClR3yAADJpkKVHfIAAIh275Md8gAAdonvkx3yAAD/f2mUHfIAAJFkmJgd8gAAbZuYmB3yAADMcbGaHfIAADKOsZod8gAA/39omx3yAABtmz50cfoAAMmmk3dx+gAAga/se3H6AACRpGuGbrQAAFKjCoputAAASJKJkm60AADbmVCQbrQAAG1ba4ZutAAArFzMgm60AAAjZlCQbrQAALZtiZJutAAA/39plG60AAB2ie+TbrQAAKufbH9utAAAUqPMgm60AADbmYZ8brQAAIh253hutAAA/39teG60AABTYGqNbrQAAKxcCoputAAAq59qjW60AABTYGx/brQAAIh275NutAAAI2aGfG60AAC2bU16brQAAEiSTXputAAAdonneG60AACSJO2Le2kAAG2b4d+dnwAAkWTh352fAABtm3DsnZ8AAJFkcOydnwAAbZvh39qXAABtm3Ds2pcAAJFk4d/alwAAkWRw7NqXAACRZHDsu30AAG2bcOy7fQAAkWT//9qXAACRZP//u30AAG2b///alwAAbZv//7t9AABtm+Hfu30AAJFk4d+7fQAAbZvh3/l1AABtm3Ds+XUAAJFk4d/5dQAAkWRw7Pl1AABtm2D92nkAAG2b3ftBeQAAbZs39gN3AABtm2D9vJsAAG2b3ftVnAAAbZs39pOeAACRZDf2A3cAAJFk3ftBeQAAkWRg/dp5AACRZGD9vJsAAJFk3ftVnAAAkWQ39pOeAAA1WROicfoAADVZE6L//wAAkWS9nnH6AACRZL2e//8AAJFkF8P//wAAkWQXw3H6AADMcTDF//8AAMxxMMVx+gAA/3/nxf//AAD/f+fFcfoAADKOMMX//wAAMo4wxXH6AAACS1m2//8AACRJ6rD//wAAAktZtnH6AAAkSeqwcfoAAG2bF8P//wAAbZsXw3H6AADJpsG///8AAMmmwb9x+gAAga9pu///AACBr2m7cfoAAAJLe6v//wAAfVBrpv//AAACS3urcfoAAH1Qa6Zx+gAANVnBv///AAB9UGm7//8AADVZwb9x+gAAfVBpu3H6AAD8tFm2//8AAPy0WbZx+gAA/LR7q///AADatuqw//8AAPy0e6tx+gAA2rbqsHH6AACBr2um//8AAIGva6Zx+gAAyaYTov//AADJphOicfoAADKOpJxx+gAAMo6knP//AABtm72ecfoAAG2bvZ7//wAA/3/tm///AADMcaSc//8AAP9/0aX//wAAgYcypv//AAB9eDKm//8AAICOTaf//wAAfnFNp///AACClBGp//8AAB6ZXav//wAABJwLrv//AAABneqw//8AAHxrEan//wAA4GZdq///AAD6Ywuu//8AAAScybP//wAAHpl3tv//AAD9Yuqw//8AAPpjybP//wAA4GZ3tv//AACClMO4//8AAICOh7r//wAAgYeju///AAB8a8O4//8AAH5xh7r//wAAfXiju///AAD/fwO8//8AAMxxpJxx+gAA/3/tm3H6AAD/f+2bHfIAADKOpJwd8gAAzHGknB3yAACRZL2eHfIAAG2bvZ4d8gAANVkToh3yAADJphOiHfIAAP9/7KId8gAAiHZmox3yAAB2iWajHfIAAH1Qa6Yd8gAAtm3MpB3yAAAjZgWnHfIAAIGva6Yd8gAASJLMpB3yAADbmQWnHfIAAAJLe6sd8gAAU2DrqR3yAACsXEutHfIAACRJ6rAd8gAAbVvqsB3yAAD8tHurHfIAAKuf66kd8gAAUqNLrR3yAAACS1m2HfIAAKxcibQd8gAAU2Dptx3yAADatuqwHfIAAJGk6rAd8gAAUqOJtB3yAAD8tFm2HfIAAKuf6bcd8gAAfVBpux3yAAAjZs+6HfIAALZtCL0d8gAAga9pux3yAADbmc+6HfIAAEiSCL0d8gAANVnBvx3yAADJpsG/HfIAAIh2br4d8gAAdoluvh3yAAD/f+i+HfIAAJFkF8Md8gAAbZsXwx3yAADMcTDFHfIAADKOMMUd8gAA/3/nxR3yAACRpOqwbrQAAFKjibRutAAAI2YFp260AAC2bcykbrQAAHaJZqNutAAASJLMpG60AAD/f+i+brQAAHaJbr5utAAAq5/rqW60AABSo0utbrQAAG1b6rButAAArFxLrW60AAC2bQi9brQAAIh2br5utAAAU2DrqW60AABIkgi9brQAANuZz7putAAA/3/som60AACsXIm0brQAAKuf6bdutAAA25kFp260AACIdmajbrQAAFNg6bdutAAAI2bPum60AADatmTOuU0AAGzbZsC5TQAAbNtkzrlNAACSJGTOuU0AAJIkZsC5TQAAJElkzrlNAABs2+2L1aoAAGzb5cOsmAAAbNvpp6yYAABs2+mnCW8AAGzbZM5QwgAAbNvlwwlvAABs2+2L9zEAAGzbZsD3MQAAkiT2RdWqAABJEvZF1aoAAAAA8WjVqgAAkiTti9WqAAAAAO2L1aoAAEkS9kV7aQAAkiT2RXtpAAAAAPFoe2kAAAAA7Yt7aQAAkiRmwPcxAACSJO2L9zEAAJIk6acJbwAAkiTpp6yYAACSJOXDCW8AAJIk5cOsmAAAkiRkzlDCAADbNj7yBQ0AANs2vPzOBQAAI8k+8gUNAAAjybz8zgUAAGzb9kV7aQAAbNv2RdWqAAC17fZFe2kAALXt9kXVqgAAI8kTaAUNAADbNhNoBQ0AACPJj3xTCAAA2zaPfFMIAAD+/+2L1aoAAP7/7Yt7aQAA2zbB3VMIAADbNpRdzgUAANs273YAAAAA2zZh4wAAAAAjycHdUwgAACPJlF3OBQAAI8nvdgAAAAAjyWHjAAAAAP7/8WjVqgAA/v/xaHtpAADatu2LqlQAANq27YvnOAAAJEnti6pUAAAkSe2L5zgAACRJZM73MQAA2rZkzvcxAADatmTOmlsAANq2ZM4arAAAJElkzppbAAAkSWTOGqwAAD/FbnFQwgAAvzpucVDCAAA/xefFUMIAAL8658VQwgAA2rblwwlvAADatuXDrJgAANq26aesmAAA2rbppwlvAAAkSemnCW8AACRJ5cMJbwAAJEnlw6yYAAAkSemnrJgAACRJ+yLJRgAAJEn+DclGAAAkSf4NBisAACRJ+yIGKwAA2rb7IgYrAADatv4NyUYAANq2+yLJRgAA2rb+DQYrAAD9YmuGcfoAAPpjSolx+gAAfnHOfHH6AAB9eLJ7cfoAAP9/Untx+gAAgYeye3H6AACAjs58cfoAAIKUkn5x+gAAfnEIkHH6AAB9eCORcfoAAOBm3oBx+gAA+mOLg3H6AAB8a0SOcfoAAOBm+Itx+gAAfGuSfnH6AAAemfiLcfoAAAScSolx+gAAgpREjnH6AACBhyORcfoAAICOCJBx+gAABJyLg3H6AAAemd6AcfoAAP9/hJFx+gAAAZ1rhnH6AAAkSeHfKqUAANq24d8qpQAAvzpucW60AAC/OufFbrQAANq24d+aWwAAP8VucW60AAA/xefFbrQAACRJ4d+aWwAAfGvDuHH6AAB+cYe6cfoAAH14o7tx+gAA/38DvHH6AADgZl2rcfoAAPpjC65x+gAA4GZ3tnH6AAD/f9GlcfoAAIGHMqZx+gAAgI6HunH6AACClMO4cfoAAPpjybNx+gAA/WLqsHH6AACAjk2ncfoAAIKUEalx+gAAAZ3qsHH6AAAEnAuucfoAAH14MqZx+gAAfnFNp3H6AAB8axGpcfoAAB6ZXatx+gAABJzJs3H6AAAemXe2cfoAAIGHo7tx+gAA") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"format": 34896613377, -"index_count": 1128, -"index_data": PackedByteArray("3QEWAhcCFwLZAd0B2gEYAhkCGQLbAdoBGwIaAusB6wHtARsCFwIYAtoB2gHZARcCGwLtAe4B7gEcAhsC3QHbARkCGQIWAt0B7gHsAR0CHQIcAu4BHQLsAesB6wEaAh0CCwIKAoMAgwByAAsCcgAeAgsCHgIfAgsCHwIgAgsCIAIhAgsCCwIhAiICIgIJAgsCJAIjAh8CHwIeAiQCIQIgAiUCJQIiAiECCAKEAIMAgwAKAggCJQIjAiQCJAIJAiUCCQIiAiUCCQIkAnQACQJ0AIQAhAAIAgkCJQIgAh8CHwIjAiUCdAAkAh4CHgJyAHQAJgKoAKMAowAnAiYCugCzACgCKAIpAroAuwC6ACkCKQIqArsAuQC7ACoCKgIrArkAtQC2ACwCLAItArUALwIuAp8AnwCbAC8CMAKxAKkAqQAxAjAC3ADaAAYBBgEHAdwALgIyAqAAoACfAC4CJwKjAKEAoQAzAicCNAKyALEAsQAwAjQCNQKmAKsAqwA2AjUCNwKlAKYApgA1AjcCOQI4ApwAnACkADkCMwKhAKAAoAAyAjMCtgC5ACsCKwIsArYANwI5AqQApAClADcCOgKuALQAtAA7AjoCOAI8ApoAmgCcADgC6wDKAMsAywDxAOsAswCyADQCNAIoArMAPAIvApsAmwCaADwCPQKsAK4ArgA6Aj0C3AAHAQgBCAHjANwAOwK0ALUAtQAtAjsCNgKrAKwArAA9AjYCMQKpAKgAqAAmAjEC4wAIAcoAygDrAOMA5gDOAM8AzwDgAOYAKwIqAikCKQIsAisCKQIoAiwCKAI0AiwCNAItAiwCNAI7Ai0CNAIwAjsCMAI6AjsCMAIxAjoCMQI9AjoCMQImAj0CJgInAj0CJwI2Aj0CJwIzAjYCMwI1AjYCMwIyAjUCMgI3AjUCMgI5AjcCMgIuAjkCLgIvAjkCLwI4AjkCLwI8AjgCkgDJAAUBBQEEAZIA1gDYAMwAzADDANYA9gDFAMYAxgDuAPYA1ACUAAIBAgH9ANQA1wDWAMMAwwDEANcA2ADZANUA1QDMANgA8QDLANEA0QD0APEA/ADSAMUAxQD2APwA7gDGAM0AzQDpAO4A9ADRANMA0wD5APQA2gDXAMQAxAAGAdoA2QDbANAA0ADVANkAyADHAAEBAQEDAcgAlACSAAQBBAECAZQA6QDNAM4AzgDmAOkAxwDSAPwA/AABAccA4ADPANAA0ADbAOAA+QDTANQA1AD9APkAyQDIAAMBAwEFAckADwIRAj4CPgI/Ag8CQAITAhUCFQJBAkACDgIPAj8CPwJCAg4CEgITAkACQAJDAhICRAIUAhICEgJDAkQCRAJBAhUCFQIUAkQCPgIRAhACEAJFAj4CRQIQAg4CDgJCAkUCRwJGAoQBhAGFAUcCSQJIAoYBhgGHAUkCSAJHAoUBhQGGAUgCqgFfAVABUAGiAaoBRwFeAbABsAG1AUcBSgJ6AXsBewFLAkoCTAKAAYQBhAFGAkwCcQFwAU0CTQJOAnEBUAJPAoIBggGBAVACmgFaAVsBWwGUAZoBUQJ/AYABgAFMAlECUgJ+AX8BfwFRAlICdQFzAVMCUwJUAnUBVQJ4AXcBdwFWAlUCTgJNAlcCVwJTAk4CVwJYAlMCWAJZAlMCWQJUAlMCWQJaAlQCWQJKAloCSgJWAloCSgJLAlYCSwJVAlYCSwJSAlUCUgJRAlUCUQJbAlUCUQJMAlsCTAJcAlsCTAJGAlwCRgJQAlwCRgJPAlACRgJHAk8CRwJIAk8CSAJdAk8CSAJJAl0ClwFnAWQBZAGfAZcBTQFLAbkBuQG4AU0BWgJ2AXUBdQFUAloCkAFpAWcBZwGXAZABkAGOAWwBbAFpAZABWQJ5AXoBegFKAlkCpQFlAWEBYQGoAaUBnQFRAVoBWgGaAZ0BXQJJAocBhwGDAV0CcwFxAU4CTgJTAnMBTwJdAoMBgwGCAU8CjgGLAWoBagFsAY4BiwGKAYkBiQFqAYsBdAF5AVkCWQJYAnQBcAFyAVcCVwJNAnABSwJ7AX4BfgFSAksCcgF0AVgCWAJXAnIBVgJ3AXYBdgFaAlYCWwJ8AXgBeAFVAlsCXAJ9AXwBfAFbAlwCUAKBAX0BfQFcAlACnwFkAWUBZQGlAZ8BigGMAYgBiAGJAYoBjQGPAUIBQgFEAY0BSQFHAbUBtQG3AUkBsAFeAV8BXwGqAbABogFQAVEBUQGdAaIBSwFJAbcBtwG5AUsBVQFTAbYBtgGxAVUBUwFNAbgBuAG2AVMBlAFbAUIBQgGPAZQBjAGNAUQBRAGIAYwBrQFXAVUBVQGxAa0BqAFhAVcBVwGtAagBFwIWAg4ADgAYAhcCFgICAA4AGAIOAAQAFgIAAAIABAAZAhgCBAAAABkCAAAWAhkCPgJFAiMBIwE/Aj4CRQIoASMBIwEiAT8CMQEoAUUCJgEoATEBNAExAUUCMQEwASYBMAEiASYBRQJCAjQBMAEyASIBIgEyAT8CQgIyATQBQgI/AjIBEQHOAcIBEQG/Ac4BEQG+Ab8BEQHLAb4BzwHLAREBvQHPAREBvAG9AREByAG8AREBEgERAcIBEgHCAUQCwgHDAUQCCwESAUQCwwG6AUQCDAELAUQCugG7AUQCGgEMAUQCuwHNAUQCCgEaAUQCzQHKAUQCCQEKAUQCygHJAUQCyQHBAUQCFAEJAUQCwQHAAUQCQQJEAsABQQLAAccBFAFEAkMCQQLHAcYBEwEUAUMCQQLGAdEBFQETAUMCHwEVAUMCIAEfAUMCQwJAAiABQQLRAdABQAIXASABQQLQAcwBQQLMAcQBQQLEAcUBQQLFAcgBQQLIARwByAERARwBFgEXAUACQQIcARABHgEWAUACQQIQAQ8BHQEeAUACGwEdAUACDgEbAUACQAJBAg4BQQIPARgBQQINAQ4BQQIYARkBQQIZAQ0BHAIdAgwADAAbAhwCCwAMAB0CDAASABsCHQIaAgsAEgAKABsCGgIKAAsAGgIbAgoA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 606, -"vertex_data": PackedByteArray("2rborsuKAAAjyeiuy4oAANq25rzLigAAI8nmvMuKAADatuiu5ZUAACPJ6K7llQAAbNvorliQAACSJOiuWJAAANs26K7llQAA2zborsuKAAAkSeiuy4oAACRJ6K7llQAAJEnmvOWVAADbNua85ZUAANq25rzllQAAI8nmvOWVAABs2+a8WJAAANs25rzLigAAJEnmvMuKAACSJOa8WJAAAP7/cmXe5gAAGPtyZaTpAAD+/3JlwrwAALXtcmWt6wAAbNtyZcK8AABs23Jl3uYAAGzbcmVr7AAAkiRyZd7mAACSJHJla+wAAJIkcmXCvAAASRJyZa3rAADmBHJlpOkAAAAAcmXCvAAAAAByZd7mAABs22uWwrwAAGzba5ZutAAAte2LlMK8AAC17YuUbrQAABj7dVCk6QAAte11UK3rAABs23NebrQAAP7/c15utAAAbNvxaG60AAD+/22IbrQAABj7bI9utAAA/v91UN7mAAD+/3VQ/LkAAP7/bYjCvAAA/v9VUjW3AAD+/3RXLbUAAAAAbYjCvAAAAABtiG60AAAAAHVQ/LkAAAAAdVDe5gAAAABVUjW3AAAAAHRXLbUAAAAAc15utAAAkiR1UGvsAABJEnVQresAAOYEbI/CvAAA5gRsj260AABs23RXLbUAAGzbdVD8uQAAbNt1UN7mAABs23VQa+wAAJIkdVDe5gAAkiR1UPy5AADmBHVQpOkAABj7bI/CvAAAbNtVUjW3AABJEouUwrwAAEkSi5RutAAAkiRrlsK8AACSJGuWbrQAAJIkVVI1twAAkiR0Vy21AABs2/FowrwAAJIk8WjCvAAAkiTxaG60AACSJHNebrQAALZt65n3MQAAtm3pp1MIAABIkuuZ9zEAAEiS6adTCAAAtm3rmVMIAAC2be2L9zEAAEiS65lTCAAASJLti/cxAABIkmbA9zEAAEiSZM73MQAASJJmwFMIAABIkmTOUwgAALZtZsBTCAAAtm1mwPcxAAC2bWTO9zEAALZtZM5TCAAA2rZ9EQ+aAAAkSX0RD5oAANq28WgPmgAAJEnxaA+aAABIkv0UN4oAAEiS/RTAeAAA2rb9FDeKAADatv0UwHgAANq28WhscAAA2rYAAGxwAADatvFowHgAANq2AAAujAAA2rZ2HryRAADatvFovJEAACRJdh68kQAAtm12HryRAAAkSfFovJEAALZt8Wi8kQAAJEnxaAlQAAAkSfFoe2kAANq28WgJUAAA2rbxaHtpAAAkSfFobHAAAEiS8Wi8kQAASJLxaMB4AABs2/FoUMIAAGzb8Wh7aQAAbNvxaNWqAACSJPFoUMIAACRJ8WjAeAAAtm3xaMB4AACSJPFo1aoAAJIk8Wh7aQAAJEkAAGxwAAAkSQAALowAACRJb3pZUgAA2rZvellSAAAkSW96i2IAANq2b3qLYgAA2rbti3tpAABs2+2Le2kAAEiSdh68kQAAtm39FMB4AAAkSf0UwHgAACRJ/RQ3igAAtm39FDeKAADatu2Li2IAACRJ7Yt7aQAAJEnti4tiAAAyjrGa//8AADKOsZpx+gAAbZuYmP//AABtm5iYcfoAAP9/aJv//wAAzHGxmv//AACRZJiY//8AAMmmQpX//wAANVlClf//AAD/f4SR//8AAH14I5H//wAAgYcjkf//AAB9UOmQ//8AAIGv6ZD//wAAfnEIkP//AAB8a0SO//8AAOBm+Iv//wAAAkvai///AAD6Y0qJ//8AAICOCJD//wAAgpREjv//AAAemfiL//8AACRJa4b//wAA/WJrhv//AAD6Y4uD//8AAPy02ov//wAABJxKif//AAABnWuG//8AANq2a4b//wAABJyLg///AAACS/yA//8AAPy0/ID//wAA4GbegP//AAB8a5J+//8AAH5xznz//wAAHpnegP//AACClJJ+//8AAICOznz//wAAfVDse///AACBr+x7//8AAIGHsnv//wAAfXiye///AAD/f1J7//8AAMmmk3f//wAANVmTd///AACRZD50//8AAG2bPnT//wAAzHElcv//AAAyjiVy//8AAP9/bnH//wAA/39ucXH6AAAyjiVycfoAAH1Q6ZBx+gAAAkvai3H6AACRZJiYcfoAAMxxsZpx+gAA/39om3H6AAD8tPyAcfoAANq2a4Zx+gAAzHElcnH6AAAkSWuGcfoAAAJL/IBx+gAAfVDse3H6AAA1WZN3cfoAAPy02otx+gAANVlClXH6AACBr+mQcfoAAMmmQpVx+gAAkWQ+dHH6AAD/f25xHfIAADKOJXId8gAAzHElch3yAACRZD50HfIAAG2bPnQd8gAANVmTdx3yAADJppN3HfIAAP9/bXgd8gAAiHbneB3yAAB2ied4HfIAAH1Q7Hsd8gAAtm1Neh3yAAAjZoZ8HfIAAIGv7Hsd8gAASJJNeh3yAADbmYZ8HfIAAAJL/IAd8gAAU2Bsfx3yAACsXMyCHfIAACRJa4Yd8gAAbVtrhh3yAAD8tPyAHfIAAKufbH8d8gAAUqPMgh3yAAACS9qLHfIAAKxcCood8gAAU2BqjR3yAADatmuGHfIAAJGka4Yd8gAAUqMKih3yAAD8tNqLHfIAAKufao0d8gAAfVDpkB3yAAAjZlCQHfIAALZtiZId8gAAga/pkB3yAADbmVCQHfIAAEiSiZId8gAANVlClR3yAADJpkKVHfIAAIh275Md8gAAdonvkx3yAAD/f2mUHfIAAJFkmJgd8gAAbZuYmB3yAADMcbGaHfIAADKOsZod8gAA/39omx3yAABtmz50cfoAAMmmk3dx+gAAga/se3H6AACRpGuGbrQAAFKjCoputAAASJKJkm60AADbmVCQbrQAAG1ba4ZutAAArFzMgm60AAAjZlCQbrQAALZtiZJutAAA/39plG60AAB2ie+TbrQAAKufbH9utAAAUqPMgm60AADbmYZ8brQAAIh253hutAAA/39teG60AABTYGqNbrQAAKxcCoputAAAq59qjW60AABTYGx/brQAAIh275NutAAAI2aGfG60AAC2bU16brQAAEiSTXputAAAdonneG60AACSJO2Le2kAAG2b4d+dnwAAkWTh352fAABtm3DsnZ8AAJFkcOydnwAAbZvh39qXAABtm3Ds2pcAAJFk4d/alwAAkWRw7NqXAACRZHDsu30AAG2bcOy7fQAAkWT//9qXAACRZP//u30AAG2b///alwAAbZv//7t9AABtm+Hfu30AAJFk4d+7fQAAbZvh3/l1AABtm3Ds+XUAAJFk4d/5dQAAkWRw7Pl1AABtm2D92nkAAG2b3ftBeQAAbZs39gN3AABtm2D9vJsAAG2b3ftVnAAAbZs39pOeAACRZDf2A3cAAJFk3ftBeQAAkWRg/dp5AACRZGD9vJsAAJFk3ftVnAAAkWQ39pOeAAA1WROicfoAADVZE6L//wAAkWS9nnH6AACRZL2e//8AAJFkF8P//wAAkWQXw3H6AADMcTDF//8AAMxxMMVx+gAA/3/nxf//AAD/f+fFcfoAADKOMMX//wAAMo4wxXH6AAACS1m2//8AACRJ6rD//wAAAktZtnH6AAAkSeqwcfoAAG2bF8P//wAAbZsXw3H6AADJpsG///8AAMmmwb9x+gAAga9pu///AACBr2m7cfoAAAJLe6v//wAAfVBrpv//AAACS3urcfoAAH1Qa6Zx+gAANVnBv///AAB9UGm7//8AADVZwb9x+gAAfVBpu3H6AAD8tFm2//8AAPy0WbZx+gAA/LR7q///AADatuqw//8AAPy0e6tx+gAA2rbqsHH6AACBr2um//8AAIGva6Zx+gAAyaYTov//AADJphOicfoAADKOpJxx+gAAMo6knP//AABtm72ecfoAAG2bvZ7//wAA/3/tm///AADMcaSc//8AAP9/0aX//wAAgYcypv//AAB9eDKm//8AAICOTaf//wAAfnFNp///AACClBGp//8AAB6ZXav//wAABJwLrv//AAABneqw//8AAHxrEan//wAA4GZdq///AAD6Ywuu//8AAAScybP//wAAHpl3tv//AAD9Yuqw//8AAPpjybP//wAA4GZ3tv//AACClMO4//8AAICOh7r//wAAgYeju///AAB8a8O4//8AAH5xh7r//wAAfXiju///AAD/fwO8//8AAMxxpJxx+gAA/3/tm3H6AAD/f+2bHfIAADKOpJwd8gAAzHGknB3yAACRZL2eHfIAAG2bvZ4d8gAANVkToh3yAADJphOiHfIAAP9/7KId8gAAiHZmox3yAAB2iWajHfIAAH1Qa6Yd8gAAtm3MpB3yAAAjZgWnHfIAAIGva6Yd8gAASJLMpB3yAADbmQWnHfIAAAJLe6sd8gAAU2DrqR3yAACsXEutHfIAACRJ6rAd8gAAbVvqsB3yAAD8tHurHfIAAKuf66kd8gAAUqNLrR3yAAACS1m2HfIAAKxcibQd8gAAU2Dptx3yAADatuqwHfIAAJGk6rAd8gAAUqOJtB3yAAD8tFm2HfIAAKuf6bcd8gAAfVBpux3yAAAjZs+6HfIAALZtCL0d8gAAga9pux3yAADbmc+6HfIAAEiSCL0d8gAANVnBvx3yAADJpsG/HfIAAIh2br4d8gAAdoluvh3yAAD/f+i+HfIAAJFkF8Md8gAAbZsXwx3yAADMcTDFHfIAADKOMMUd8gAA/3/nxR3yAACRpOqwbrQAAFKjibRutAAAI2YFp260AAC2bcykbrQAAHaJZqNutAAASJLMpG60AAD/f+i+brQAAHaJbr5utAAAq5/rqW60AABSo0utbrQAAG1b6rButAAArFxLrW60AAC2bQi9brQAAIh2br5utAAAU2DrqW60AABIkgi9brQAANuZz7putAAA/3/som60AACsXIm0brQAAKuf6bdutAAA25kFp260AACIdmajbrQAAFNg6bdutAAAI2bPum60AADatmTOuU0AAGzbZsC5TQAAbNtkzrlNAACSJGTOuU0AAJIkZsC5TQAAJElkzrlNAABs2+2L1aoAAGzb5cOsmAAAbNvpp6yYAABs2+mnCW8AAGzbZM5QwgAAbNvlwwlvAABs2+2L9zEAAGzbZsD3MQAAkiT2RdWqAABJEvZF1aoAAAAA8WjVqgAAkiTti9WqAAAAAO2L1aoAAEkS9kV7aQAAkiT2RXtpAAAAAPFoe2kAAAAA7Yt7aQAAkiRmwPcxAACSJO2L9zEAAJIk6acJbwAAkiTpp6yYAACSJOXDCW8AAJIk5cOsmAAAkiRkzlDCAADbNj7yBQ0AANs2vPzOBQAAI8k+8gUNAAAjybz8zgUAAGzb9kV7aQAAbNv2RdWqAAC17fZFe2kAALXt9kXVqgAAI8kTaAUNAADbNhNoBQ0AACPJj3xTCAAA2zaPfFMIAAD+/+2L1aoAAP7/7Yt7aQAA2zbB3VMIAADbNpRdzgUAANs273YAAAAA2zZh4wAAAAAjycHdUwgAACPJlF3OBQAAI8nvdgAAAAAjyWHjAAAAAP7/8WjVqgAA/v/xaHtpAADatu2LqlQAANq27YvnOAAAJEnti6pUAAAkSe2L5zgAACRJZM73MQAA2rZkzvcxAADatmTOmlsAANq2ZM4arAAAJElkzppbAAAkSWTOGqwAAD/FbnFQwgAAvzpucVDCAAA/xefFUMIAAL8658VQwgAA2rblwwlvAADatuXDrJgAANq26aesmAAA2rbppwlvAAAkSemnCW8AACRJ5cMJbwAAJEnlw6yYAAAkSemnrJgAACRJ+yLJRgAAJEn+DclGAAAkSf4NBisAACRJ+yIGKwAA2rb7IgYrAADatv4NyUYAANq2+yLJRgAA2rb+DQYrAAD9YmuGcfoAAPpjSolx+gAAfnHOfHH6AAB9eLJ7cfoAAP9/Untx+gAAgYeye3H6AACAjs58cfoAAIKUkn5x+gAAfnEIkHH6AAB9eCORcfoAAOBm3oBx+gAA+mOLg3H6AAB8a0SOcfoAAOBm+Itx+gAAfGuSfnH6AAAemfiLcfoAAAScSolx+gAAgpREjnH6AACBhyORcfoAAICOCJBx+gAABJyLg3H6AAAemd6AcfoAAP9/hJFx+gAAAZ1rhnH6AAAkSeHfKqUAANq24d8qpQAAvzpucW60AAC/OufFbrQAANq24d+aWwAAP8VucW60AAA/xefFbrQAACRJ4d+aWwAAfGvDuHH6AAB+cYe6cfoAAH14o7tx+gAA/38DvHH6AADgZl2rcfoAAPpjC65x+gAA4GZ3tnH6AAD/f9GlcfoAAIGHMqZx+gAAgI6HunH6AACClMO4cfoAAPpjybNx+gAA/WLqsHH6AACAjk2ncfoAAIKUEalx+gAAAZ3qsHH6AAAEnAuucfoAAH14MqZx+gAAfnFNp3H6AAB8axGpcfoAAB6ZXatx+gAABJzJs3H6AAAemXe2cfoAAIGHo7tx+gAA") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"format": 34896613377, -"index_count": 18, -"index_data": PackedByteArray("fgBxAG8AbwCNAH4AjQCKAH4AZACJAHcAdwB4AGQAeABlAGQA"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 606, -"vertex_data": PackedByteArray("2rborsuKAAAjyeiuy4oAANq25rzLigAAI8nmvMuKAADatuiu5ZUAACPJ6K7llQAAbNvorliQAACSJOiuWJAAANs26K7llQAA2zborsuKAAAkSeiuy4oAACRJ6K7llQAAJEnmvOWVAADbNua85ZUAANq25rzllQAAI8nmvOWVAABs2+a8WJAAANs25rzLigAAJEnmvMuKAACSJOa8WJAAAP7/cmXe5gAAGPtyZaTpAAD+/3JlwrwAALXtcmWt6wAAbNtyZcK8AABs23Jl3uYAAGzbcmVr7AAAkiRyZd7mAACSJHJla+wAAJIkcmXCvAAASRJyZa3rAADmBHJlpOkAAAAAcmXCvAAAAAByZd7mAABs22uWwrwAAGzba5ZutAAAte2LlMK8AAC17YuUbrQAABj7dVCk6QAAte11UK3rAABs23NebrQAAP7/c15utAAAbNvxaG60AAD+/22IbrQAABj7bI9utAAA/v91UN7mAAD+/3VQ/LkAAP7/bYjCvAAA/v9VUjW3AAD+/3RXLbUAAAAAbYjCvAAAAABtiG60AAAAAHVQ/LkAAAAAdVDe5gAAAABVUjW3AAAAAHRXLbUAAAAAc15utAAAkiR1UGvsAABJEnVQresAAOYEbI/CvAAA5gRsj260AABs23RXLbUAAGzbdVD8uQAAbNt1UN7mAABs23VQa+wAAJIkdVDe5gAAkiR1UPy5AADmBHVQpOkAABj7bI/CvAAAbNtVUjW3AABJEouUwrwAAEkSi5RutAAAkiRrlsK8AACSJGuWbrQAAJIkVVI1twAAkiR0Vy21AABs2/FowrwAAJIk8WjCvAAAkiTxaG60AACSJHNebrQAALZt65n3MQAAtm3pp1MIAABIkuuZ9zEAAEiS6adTCAAAtm3rmVMIAAC2be2L9zEAAEiS65lTCAAASJLti/cxAABIkmbA9zEAAEiSZM73MQAASJJmwFMIAABIkmTOUwgAALZtZsBTCAAAtm1mwPcxAAC2bWTO9zEAALZtZM5TCAAA2rZ9EQ+aAAAkSX0RD5oAANq28WgPmgAAJEnxaA+aAABIkv0UN4oAAEiS/RTAeAAA2rb9FDeKAADatv0UwHgAANq28WhscAAA2rYAAGxwAADatvFowHgAANq2AAAujAAA2rZ2HryRAADatvFovJEAACRJdh68kQAAtm12HryRAAAkSfFovJEAALZt8Wi8kQAAJEnxaAlQAAAkSfFoe2kAANq28WgJUAAA2rbxaHtpAAAkSfFobHAAAEiS8Wi8kQAASJLxaMB4AABs2/FoUMIAAGzb8Wh7aQAAbNvxaNWqAACSJPFoUMIAACRJ8WjAeAAAtm3xaMB4AACSJPFo1aoAAJIk8Wh7aQAAJEkAAGxwAAAkSQAALowAACRJb3pZUgAA2rZvellSAAAkSW96i2IAANq2b3qLYgAA2rbti3tpAABs2+2Le2kAAEiSdh68kQAAtm39FMB4AAAkSf0UwHgAACRJ/RQ3igAAtm39FDeKAADatu2Li2IAACRJ7Yt7aQAAJEnti4tiAAAyjrGa//8AADKOsZpx+gAAbZuYmP//AABtm5iYcfoAAP9/aJv//wAAzHGxmv//AACRZJiY//8AAMmmQpX//wAANVlClf//AAD/f4SR//8AAH14I5H//wAAgYcjkf//AAB9UOmQ//8AAIGv6ZD//wAAfnEIkP//AAB8a0SO//8AAOBm+Iv//wAAAkvai///AAD6Y0qJ//8AAICOCJD//wAAgpREjv//AAAemfiL//8AACRJa4b//wAA/WJrhv//AAD6Y4uD//8AAPy02ov//wAABJxKif//AAABnWuG//8AANq2a4b//wAABJyLg///AAACS/yA//8AAPy0/ID//wAA4GbegP//AAB8a5J+//8AAH5xznz//wAAHpnegP//AACClJJ+//8AAICOznz//wAAfVDse///AACBr+x7//8AAIGHsnv//wAAfXiye///AAD/f1J7//8AAMmmk3f//wAANVmTd///AACRZD50//8AAG2bPnT//wAAzHElcv//AAAyjiVy//8AAP9/bnH//wAA/39ucXH6AAAyjiVycfoAAH1Q6ZBx+gAAAkvai3H6AACRZJiYcfoAAMxxsZpx+gAA/39om3H6AAD8tPyAcfoAANq2a4Zx+gAAzHElcnH6AAAkSWuGcfoAAAJL/IBx+gAAfVDse3H6AAA1WZN3cfoAAPy02otx+gAANVlClXH6AACBr+mQcfoAAMmmQpVx+gAAkWQ+dHH6AAD/f25xHfIAADKOJXId8gAAzHElch3yAACRZD50HfIAAG2bPnQd8gAANVmTdx3yAADJppN3HfIAAP9/bXgd8gAAiHbneB3yAAB2ied4HfIAAH1Q7Hsd8gAAtm1Neh3yAAAjZoZ8HfIAAIGv7Hsd8gAASJJNeh3yAADbmYZ8HfIAAAJL/IAd8gAAU2Bsfx3yAACsXMyCHfIAACRJa4Yd8gAAbVtrhh3yAAD8tPyAHfIAAKufbH8d8gAAUqPMgh3yAAACS9qLHfIAAKxcCood8gAAU2BqjR3yAADatmuGHfIAAJGka4Yd8gAAUqMKih3yAAD8tNqLHfIAAKufao0d8gAAfVDpkB3yAAAjZlCQHfIAALZtiZId8gAAga/pkB3yAADbmVCQHfIAAEiSiZId8gAANVlClR3yAADJpkKVHfIAAIh275Md8gAAdonvkx3yAAD/f2mUHfIAAJFkmJgd8gAAbZuYmB3yAADMcbGaHfIAADKOsZod8gAA/39omx3yAABtmz50cfoAAMmmk3dx+gAAga/se3H6AACRpGuGbrQAAFKjCoputAAASJKJkm60AADbmVCQbrQAAG1ba4ZutAAArFzMgm60AAAjZlCQbrQAALZtiZJutAAA/39plG60AAB2ie+TbrQAAKufbH9utAAAUqPMgm60AADbmYZ8brQAAIh253hutAAA/39teG60AABTYGqNbrQAAKxcCoputAAAq59qjW60AABTYGx/brQAAIh275NutAAAI2aGfG60AAC2bU16brQAAEiSTXputAAAdonneG60AACSJO2Le2kAAG2b4d+dnwAAkWTh352fAABtm3DsnZ8AAJFkcOydnwAAbZvh39qXAABtm3Ds2pcAAJFk4d/alwAAkWRw7NqXAACRZHDsu30AAG2bcOy7fQAAkWT//9qXAACRZP//u30AAG2b///alwAAbZv//7t9AABtm+Hfu30AAJFk4d+7fQAAbZvh3/l1AABtm3Ds+XUAAJFk4d/5dQAAkWRw7Pl1AABtm2D92nkAAG2b3ftBeQAAbZs39gN3AABtm2D9vJsAAG2b3ftVnAAAbZs39pOeAACRZDf2A3cAAJFk3ftBeQAAkWRg/dp5AACRZGD9vJsAAJFk3ftVnAAAkWQ39pOeAAA1WROicfoAADVZE6L//wAAkWS9nnH6AACRZL2e//8AAJFkF8P//wAAkWQXw3H6AADMcTDF//8AAMxxMMVx+gAA/3/nxf//AAD/f+fFcfoAADKOMMX//wAAMo4wxXH6AAACS1m2//8AACRJ6rD//wAAAktZtnH6AAAkSeqwcfoAAG2bF8P//wAAbZsXw3H6AADJpsG///8AAMmmwb9x+gAAga9pu///AACBr2m7cfoAAAJLe6v//wAAfVBrpv//AAACS3urcfoAAH1Qa6Zx+gAANVnBv///AAB9UGm7//8AADVZwb9x+gAAfVBpu3H6AAD8tFm2//8AAPy0WbZx+gAA/LR7q///AADatuqw//8AAPy0e6tx+gAA2rbqsHH6AACBr2um//8AAIGva6Zx+gAAyaYTov//AADJphOicfoAADKOpJxx+gAAMo6knP//AABtm72ecfoAAG2bvZ7//wAA/3/tm///AADMcaSc//8AAP9/0aX//wAAgYcypv//AAB9eDKm//8AAICOTaf//wAAfnFNp///AACClBGp//8AAB6ZXav//wAABJwLrv//AAABneqw//8AAHxrEan//wAA4GZdq///AAD6Ywuu//8AAAScybP//wAAHpl3tv//AAD9Yuqw//8AAPpjybP//wAA4GZ3tv//AACClMO4//8AAICOh7r//wAAgYeju///AAB8a8O4//8AAH5xh7r//wAAfXiju///AAD/fwO8//8AAMxxpJxx+gAA/3/tm3H6AAD/f+2bHfIAADKOpJwd8gAAzHGknB3yAACRZL2eHfIAAG2bvZ4d8gAANVkToh3yAADJphOiHfIAAP9/7KId8gAAiHZmox3yAAB2iWajHfIAAH1Qa6Yd8gAAtm3MpB3yAAAjZgWnHfIAAIGva6Yd8gAASJLMpB3yAADbmQWnHfIAAAJLe6sd8gAAU2DrqR3yAACsXEutHfIAACRJ6rAd8gAAbVvqsB3yAAD8tHurHfIAAKuf66kd8gAAUqNLrR3yAAACS1m2HfIAAKxcibQd8gAAU2Dptx3yAADatuqwHfIAAJGk6rAd8gAAUqOJtB3yAAD8tFm2HfIAAKuf6bcd8gAAfVBpux3yAAAjZs+6HfIAALZtCL0d8gAAga9pux3yAADbmc+6HfIAAEiSCL0d8gAANVnBvx3yAADJpsG/HfIAAIh2br4d8gAAdoluvh3yAAD/f+i+HfIAAJFkF8Md8gAAbZsXwx3yAADMcTDFHfIAADKOMMUd8gAA/3/nxR3yAACRpOqwbrQAAFKjibRutAAAI2YFp260AAC2bcykbrQAAHaJZqNutAAASJLMpG60AAD/f+i+brQAAHaJbr5utAAAq5/rqW60AABSo0utbrQAAG1b6rButAAArFxLrW60AAC2bQi9brQAAIh2br5utAAAU2DrqW60AABIkgi9brQAANuZz7putAAA/3/som60AACsXIm0brQAAKuf6bdutAAA25kFp260AACIdmajbrQAAFNg6bdutAAAI2bPum60AADatmTOuU0AAGzbZsC5TQAAbNtkzrlNAACSJGTOuU0AAJIkZsC5TQAAJElkzrlNAABs2+2L1aoAAGzb5cOsmAAAbNvpp6yYAABs2+mnCW8AAGzbZM5QwgAAbNvlwwlvAABs2+2L9zEAAGzbZsD3MQAAkiT2RdWqAABJEvZF1aoAAAAA8WjVqgAAkiTti9WqAAAAAO2L1aoAAEkS9kV7aQAAkiT2RXtpAAAAAPFoe2kAAAAA7Yt7aQAAkiRmwPcxAACSJO2L9zEAAJIk6acJbwAAkiTpp6yYAACSJOXDCW8AAJIk5cOsmAAAkiRkzlDCAADbNj7yBQ0AANs2vPzOBQAAI8k+8gUNAAAjybz8zgUAAGzb9kV7aQAAbNv2RdWqAAC17fZFe2kAALXt9kXVqgAAI8kTaAUNAADbNhNoBQ0AACPJj3xTCAAA2zaPfFMIAAD+/+2L1aoAAP7/7Yt7aQAA2zbB3VMIAADbNpRdzgUAANs273YAAAAA2zZh4wAAAAAjycHdUwgAACPJlF3OBQAAI8nvdgAAAAAjyWHjAAAAAP7/8WjVqgAA/v/xaHtpAADatu2LqlQAANq27YvnOAAAJEnti6pUAAAkSe2L5zgAACRJZM73MQAA2rZkzvcxAADatmTOmlsAANq2ZM4arAAAJElkzppbAAAkSWTOGqwAAD/FbnFQwgAAvzpucVDCAAA/xefFUMIAAL8658VQwgAA2rblwwlvAADatuXDrJgAANq26aesmAAA2rbppwlvAAAkSemnCW8AACRJ5cMJbwAAJEnlw6yYAAAkSemnrJgAACRJ+yLJRgAAJEn+DclGAAAkSf4NBisAACRJ+yIGKwAA2rb7IgYrAADatv4NyUYAANq2+yLJRgAA2rb+DQYrAAD9YmuGcfoAAPpjSolx+gAAfnHOfHH6AAB9eLJ7cfoAAP9/Untx+gAAgYeye3H6AACAjs58cfoAAIKUkn5x+gAAfnEIkHH6AAB9eCORcfoAAOBm3oBx+gAA+mOLg3H6AAB8a0SOcfoAAOBm+Itx+gAAfGuSfnH6AAAemfiLcfoAAAScSolx+gAAgpREjnH6AACBhyORcfoAAICOCJBx+gAABJyLg3H6AAAemd6AcfoAAP9/hJFx+gAAAZ1rhnH6AAAkSeHfKqUAANq24d8qpQAAvzpucW60AAC/OufFbrQAANq24d+aWwAAP8VucW60AAA/xefFbrQAACRJ4d+aWwAAfGvDuHH6AAB+cYe6cfoAAH14o7tx+gAA/38DvHH6AADgZl2rcfoAAPpjC65x+gAA4GZ3tnH6AAD/f9GlcfoAAIGHMqZx+gAAgI6HunH6AACClMO4cfoAAPpjybNx+gAA/WLqsHH6AACAjk2ncfoAAIKUEalx+gAAAZ3qsHH6AAAEnAuucfoAAH14MqZx+gAAfnFNp3H6AAB8axGpcfoAAB6ZXatx+gAABJzJs3H6AAAemXe2cfoAAIGHo7tx+gAA") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"format": 34896613377, -"index_count": 6, -"index_data": PackedByteArray("jgCQAI8AjwCHAI4A"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 606, -"vertex_data": PackedByteArray("2rborsuKAAAjyeiuy4oAANq25rzLigAAI8nmvMuKAADatuiu5ZUAACPJ6K7llQAAbNvorliQAACSJOiuWJAAANs26K7llQAA2zborsuKAAAkSeiuy4oAACRJ6K7llQAAJEnmvOWVAADbNua85ZUAANq25rzllQAAI8nmvOWVAABs2+a8WJAAANs25rzLigAAJEnmvMuKAACSJOa8WJAAAP7/cmXe5gAAGPtyZaTpAAD+/3JlwrwAALXtcmWt6wAAbNtyZcK8AABs23Jl3uYAAGzbcmVr7AAAkiRyZd7mAACSJHJla+wAAJIkcmXCvAAASRJyZa3rAADmBHJlpOkAAAAAcmXCvAAAAAByZd7mAABs22uWwrwAAGzba5ZutAAAte2LlMK8AAC17YuUbrQAABj7dVCk6QAAte11UK3rAABs23NebrQAAP7/c15utAAAbNvxaG60AAD+/22IbrQAABj7bI9utAAA/v91UN7mAAD+/3VQ/LkAAP7/bYjCvAAA/v9VUjW3AAD+/3RXLbUAAAAAbYjCvAAAAABtiG60AAAAAHVQ/LkAAAAAdVDe5gAAAABVUjW3AAAAAHRXLbUAAAAAc15utAAAkiR1UGvsAABJEnVQresAAOYEbI/CvAAA5gRsj260AABs23RXLbUAAGzbdVD8uQAAbNt1UN7mAABs23VQa+wAAJIkdVDe5gAAkiR1UPy5AADmBHVQpOkAABj7bI/CvAAAbNtVUjW3AABJEouUwrwAAEkSi5RutAAAkiRrlsK8AACSJGuWbrQAAJIkVVI1twAAkiR0Vy21AABs2/FowrwAAJIk8WjCvAAAkiTxaG60AACSJHNebrQAALZt65n3MQAAtm3pp1MIAABIkuuZ9zEAAEiS6adTCAAAtm3rmVMIAAC2be2L9zEAAEiS65lTCAAASJLti/cxAABIkmbA9zEAAEiSZM73MQAASJJmwFMIAABIkmTOUwgAALZtZsBTCAAAtm1mwPcxAAC2bWTO9zEAALZtZM5TCAAA2rZ9EQ+aAAAkSX0RD5oAANq28WgPmgAAJEnxaA+aAABIkv0UN4oAAEiS/RTAeAAA2rb9FDeKAADatv0UwHgAANq28WhscAAA2rYAAGxwAADatvFowHgAANq2AAAujAAA2rZ2HryRAADatvFovJEAACRJdh68kQAAtm12HryRAAAkSfFovJEAALZt8Wi8kQAAJEnxaAlQAAAkSfFoe2kAANq28WgJUAAA2rbxaHtpAAAkSfFobHAAAEiS8Wi8kQAASJLxaMB4AABs2/FoUMIAAGzb8Wh7aQAAbNvxaNWqAACSJPFoUMIAACRJ8WjAeAAAtm3xaMB4AACSJPFo1aoAAJIk8Wh7aQAAJEkAAGxwAAAkSQAALowAACRJb3pZUgAA2rZvellSAAAkSW96i2IAANq2b3qLYgAA2rbti3tpAABs2+2Le2kAAEiSdh68kQAAtm39FMB4AAAkSf0UwHgAACRJ/RQ3igAAtm39FDeKAADatu2Li2IAACRJ7Yt7aQAAJEnti4tiAAAyjrGa//8AADKOsZpx+gAAbZuYmP//AABtm5iYcfoAAP9/aJv//wAAzHGxmv//AACRZJiY//8AAMmmQpX//wAANVlClf//AAD/f4SR//8AAH14I5H//wAAgYcjkf//AAB9UOmQ//8AAIGv6ZD//wAAfnEIkP//AAB8a0SO//8AAOBm+Iv//wAAAkvai///AAD6Y0qJ//8AAICOCJD//wAAgpREjv//AAAemfiL//8AACRJa4b//wAA/WJrhv//AAD6Y4uD//8AAPy02ov//wAABJxKif//AAABnWuG//8AANq2a4b//wAABJyLg///AAACS/yA//8AAPy0/ID//wAA4GbegP//AAB8a5J+//8AAH5xznz//wAAHpnegP//AACClJJ+//8AAICOznz//wAAfVDse///AACBr+x7//8AAIGHsnv//wAAfXiye///AAD/f1J7//8AAMmmk3f//wAANVmTd///AACRZD50//8AAG2bPnT//wAAzHElcv//AAAyjiVy//8AAP9/bnH//wAA/39ucXH6AAAyjiVycfoAAH1Q6ZBx+gAAAkvai3H6AACRZJiYcfoAAMxxsZpx+gAA/39om3H6AAD8tPyAcfoAANq2a4Zx+gAAzHElcnH6AAAkSWuGcfoAAAJL/IBx+gAAfVDse3H6AAA1WZN3cfoAAPy02otx+gAANVlClXH6AACBr+mQcfoAAMmmQpVx+gAAkWQ+dHH6AAD/f25xHfIAADKOJXId8gAAzHElch3yAACRZD50HfIAAG2bPnQd8gAANVmTdx3yAADJppN3HfIAAP9/bXgd8gAAiHbneB3yAAB2ied4HfIAAH1Q7Hsd8gAAtm1Neh3yAAAjZoZ8HfIAAIGv7Hsd8gAASJJNeh3yAADbmYZ8HfIAAAJL/IAd8gAAU2Bsfx3yAACsXMyCHfIAACRJa4Yd8gAAbVtrhh3yAAD8tPyAHfIAAKufbH8d8gAAUqPMgh3yAAACS9qLHfIAAKxcCood8gAAU2BqjR3yAADatmuGHfIAAJGka4Yd8gAAUqMKih3yAAD8tNqLHfIAAKufao0d8gAAfVDpkB3yAAAjZlCQHfIAALZtiZId8gAAga/pkB3yAADbmVCQHfIAAEiSiZId8gAANVlClR3yAADJpkKVHfIAAIh275Md8gAAdonvkx3yAAD/f2mUHfIAAJFkmJgd8gAAbZuYmB3yAADMcbGaHfIAADKOsZod8gAA/39omx3yAABtmz50cfoAAMmmk3dx+gAAga/se3H6AACRpGuGbrQAAFKjCoputAAASJKJkm60AADbmVCQbrQAAG1ba4ZutAAArFzMgm60AAAjZlCQbrQAALZtiZJutAAA/39plG60AAB2ie+TbrQAAKufbH9utAAAUqPMgm60AADbmYZ8brQAAIh253hutAAA/39teG60AABTYGqNbrQAAKxcCoputAAAq59qjW60AABTYGx/brQAAIh275NutAAAI2aGfG60AAC2bU16brQAAEiSTXputAAAdonneG60AACSJO2Le2kAAG2b4d+dnwAAkWTh352fAABtm3DsnZ8AAJFkcOydnwAAbZvh39qXAABtm3Ds2pcAAJFk4d/alwAAkWRw7NqXAACRZHDsu30AAG2bcOy7fQAAkWT//9qXAACRZP//u30AAG2b///alwAAbZv//7t9AABtm+Hfu30AAJFk4d+7fQAAbZvh3/l1AABtm3Ds+XUAAJFk4d/5dQAAkWRw7Pl1AABtm2D92nkAAG2b3ftBeQAAbZs39gN3AABtm2D9vJsAAG2b3ftVnAAAbZs39pOeAACRZDf2A3cAAJFk3ftBeQAAkWRg/dp5AACRZGD9vJsAAJFk3ftVnAAAkWQ39pOeAAA1WROicfoAADVZE6L//wAAkWS9nnH6AACRZL2e//8AAJFkF8P//wAAkWQXw3H6AADMcTDF//8AAMxxMMVx+gAA/3/nxf//AAD/f+fFcfoAADKOMMX//wAAMo4wxXH6AAACS1m2//8AACRJ6rD//wAAAktZtnH6AAAkSeqwcfoAAG2bF8P//wAAbZsXw3H6AADJpsG///8AAMmmwb9x+gAAga9pu///AACBr2m7cfoAAAJLe6v//wAAfVBrpv//AAACS3urcfoAAH1Qa6Zx+gAANVnBv///AAB9UGm7//8AADVZwb9x+gAAfVBpu3H6AAD8tFm2//8AAPy0WbZx+gAA/LR7q///AADatuqw//8AAPy0e6tx+gAA2rbqsHH6AACBr2um//8AAIGva6Zx+gAAyaYTov//AADJphOicfoAADKOpJxx+gAAMo6knP//AABtm72ecfoAAG2bvZ7//wAA/3/tm///AADMcaSc//8AAP9/0aX//wAAgYcypv//AAB9eDKm//8AAICOTaf//wAAfnFNp///AACClBGp//8AAB6ZXav//wAABJwLrv//AAABneqw//8AAHxrEan//wAA4GZdq///AAD6Ywuu//8AAAScybP//wAAHpl3tv//AAD9Yuqw//8AAPpjybP//wAA4GZ3tv//AACClMO4//8AAICOh7r//wAAgYeju///AAB8a8O4//8AAH5xh7r//wAAfXiju///AAD/fwO8//8AAMxxpJxx+gAA/3/tm3H6AAD/f+2bHfIAADKOpJwd8gAAzHGknB3yAACRZL2eHfIAAG2bvZ4d8gAANVkToh3yAADJphOiHfIAAP9/7KId8gAAiHZmox3yAAB2iWajHfIAAH1Qa6Yd8gAAtm3MpB3yAAAjZgWnHfIAAIGva6Yd8gAASJLMpB3yAADbmQWnHfIAAAJLe6sd8gAAU2DrqR3yAACsXEutHfIAACRJ6rAd8gAAbVvqsB3yAAD8tHurHfIAAKuf66kd8gAAUqNLrR3yAAACS1m2HfIAAKxcibQd8gAAU2Dptx3yAADatuqwHfIAAJGk6rAd8gAAUqOJtB3yAAD8tFm2HfIAAKuf6bcd8gAAfVBpux3yAAAjZs+6HfIAALZtCL0d8gAAga9pux3yAADbmc+6HfIAAEiSCL0d8gAANVnBvx3yAADJpsG/HfIAAIh2br4d8gAAdoluvh3yAAD/f+i+HfIAAJFkF8Md8gAAbZsXwx3yAADMcTDFHfIAADKOMMUd8gAA/3/nxR3yAACRpOqwbrQAAFKjibRutAAAI2YFp260AAC2bcykbrQAAHaJZqNutAAASJLMpG60AAD/f+i+brQAAHaJbr5utAAAq5/rqW60AABSo0utbrQAAG1b6rButAAArFxLrW60AAC2bQi9brQAAIh2br5utAAAU2DrqW60AABIkgi9brQAANuZz7putAAA/3/som60AACsXIm0brQAAKuf6bdutAAA25kFp260AACIdmajbrQAAFNg6bdutAAAI2bPum60AADatmTOuU0AAGzbZsC5TQAAbNtkzrlNAACSJGTOuU0AAJIkZsC5TQAAJElkzrlNAABs2+2L1aoAAGzb5cOsmAAAbNvpp6yYAABs2+mnCW8AAGzbZM5QwgAAbNvlwwlvAABs2+2L9zEAAGzbZsD3MQAAkiT2RdWqAABJEvZF1aoAAAAA8WjVqgAAkiTti9WqAAAAAO2L1aoAAEkS9kV7aQAAkiT2RXtpAAAAAPFoe2kAAAAA7Yt7aQAAkiRmwPcxAACSJO2L9zEAAJIk6acJbwAAkiTpp6yYAACSJOXDCW8AAJIk5cOsmAAAkiRkzlDCAADbNj7yBQ0AANs2vPzOBQAAI8k+8gUNAAAjybz8zgUAAGzb9kV7aQAAbNv2RdWqAAC17fZFe2kAALXt9kXVqgAAI8kTaAUNAADbNhNoBQ0AACPJj3xTCAAA2zaPfFMIAAD+/+2L1aoAAP7/7Yt7aQAA2zbB3VMIAADbNpRdzgUAANs273YAAAAA2zZh4wAAAAAjycHdUwgAACPJlF3OBQAAI8nvdgAAAAAjyWHjAAAAAP7/8WjVqgAA/v/xaHtpAADatu2LqlQAANq27YvnOAAAJEnti6pUAAAkSe2L5zgAACRJZM73MQAA2rZkzvcxAADatmTOmlsAANq2ZM4arAAAJElkzppbAAAkSWTOGqwAAD/FbnFQwgAAvzpucVDCAAA/xefFUMIAAL8658VQwgAA2rblwwlvAADatuXDrJgAANq26aesmAAA2rbppwlvAAAkSemnCW8AACRJ5cMJbwAAJEnlw6yYAAAkSemnrJgAACRJ+yLJRgAAJEn+DclGAAAkSf4NBisAACRJ+yIGKwAA2rb7IgYrAADatv4NyUYAANq2+yLJRgAA2rb+DQYrAAD9YmuGcfoAAPpjSolx+gAAfnHOfHH6AAB9eLJ7cfoAAP9/Untx+gAAgYeye3H6AACAjs58cfoAAIKUkn5x+gAAfnEIkHH6AAB9eCORcfoAAOBm3oBx+gAA+mOLg3H6AAB8a0SOcfoAAOBm+Itx+gAAfGuSfnH6AAAemfiLcfoAAAScSolx+gAAgpREjnH6AACBhyORcfoAAICOCJBx+gAABJyLg3H6AAAemd6AcfoAAP9/hJFx+gAAAZ1rhnH6AAAkSeHfKqUAANq24d8qpQAAvzpucW60AAC/OufFbrQAANq24d+aWwAAP8VucW60AAA/xefFbrQAACRJ4d+aWwAAfGvDuHH6AAB+cYe6cfoAAH14o7tx+gAA/38DvHH6AADgZl2rcfoAAPpjC65x+gAA4GZ3tnH6AAD/f9GlcfoAAIGHMqZx+gAAgI6HunH6AACClMO4cfoAAPpjybNx+gAA/WLqsHH6AACAjk2ncfoAAIKUEalx+gAAAZ3qsHH6AAAEnAuucfoAAH14MqZx+gAAfnFNp3H6AAB8axGpcfoAAB6ZXatx+gAABJzJs3H6AAAemXe2cfoAAIGHo7tx+gAA") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_xefgr"] -resource_name = "blasterP_Mesh blasterP" -_surfaces = [{ -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"attribute_data": PackedByteArray("q3cEdOR0BHSrd0Nu5HRDbqt3fpKrd/+d5HR+kuR0/50ecj+Y4I0/mBqL/50ai36SU4h+klOI/52rdwR05HQEdKt3Q27kdENuU4j/nVOIfpIai/+dGot+kuCNP5gaiwR0U4gEdBqLQ25TiENuGosEdFOIBHQai0NuU4hDbh5yP5jkdH6S5HT/nat3/52rd36SbZPo8a+SyfRtk0XGp5Dk9uCNRcbgjejx4I2p9x5y6PEecqn3HnJFxldv5PZPbcn0kWxFxpFs6PE8Q8+SkEvPkjxDypWQS8qVgkLamqI/2pqCQjiSoj84kh5yGZWRbBmVHnLIkJFs1oMechV+T232gFdv234gGdqaIBk4kgJG2po8QziSPEPWg5BL1oPJSBSa0Ur5l5BLGZXCvNaDwrw4km601oP8udqa3ubamt7mOJI1txSaLbX5l260GZWnjtqax4vamqeOOJLHiziSwrwwhsK8K4lutDCGbrQriR5yq6WRbKulHnKxopFssaIecmXDHnLo8ZFsZcMecqn3V2/k9k9tyfSRbOjx4I2p9+CN6PHgjWXDp5Dk9q+SyfRtk+jxbZNlwzxDg5A8Q4mNkEuDkJBLiY0ecm7DHnJoxpFsbsORbGjGHnIJvZFsCb0ecg+6kWwPusK8iY3CvIOQbrSJjW60g5DCvMqVbrTKlcK8z5JutM+SN3Tamldx2po3dDiSV3E4km2TbsNtk2jG4I1uw+CNaMZtkwm94I0JvW2TD7rgjQ+6wrzIkMK8OJJutMiQ/Lnamt7m2pre5jiSNbcUmi21+ZdutBmVbZM4kuCNOJJtk9aD4I3IkOCNFX6vkvaAp5DbflzA2pp8vdqaXMA4kny9OJIgGdqaIBk4kgJG2po8QziSPEPIkJBLyJDJSBSa0Ur5l5BLGZXgjdqaHnLamuCNOJIecjiSyR7amskeOJKpIdqaqSE4kjXhOJI14dqaVd44klXe2poecjiSkWw4kh5yyJCRbNaDHnIVfk9t9oBXb9t+bZOrpeCNq6Vtk7Gi4I2xom2TGZXgjRmVbZPWg+CNyJDgjRV+r5L2gKeQ2348QyuJPEMwhpBLK4mQSzCG4I3amh5y2prgjTiSHnI4kjh9vTU4fTUKxoK9NcaCNQrGgvgKxoKANjh9+Ao4fYA2B87TbAfOEmer99Nsq/cSZ/cxpXz3MWaCUwjkdlMIpXzGgkoLxoJwNjh9Sgs4fXA2B85mggfOpXyr96V8q/fkdvcxEmf3MdNsUwgSZ1MI02w4fXA2OH1KC8aCcDbGgkoLU4i9tKt3vbRTiMiQq3fIkMaC5JHGgst/U4jkkVOIy3+Sj8iQko/uuz6HyJA+h02zx3VNs9Bz7rtCbmiv72W9tO9lyJBCbsiQU4hor8aCaK9TiMiQxoLIkFOImlVTiPlvq3eaVat3+W+rdyp3q3fLf1OIKnerd6+ZOH2vmTh9y3+rd1CiHnIGzB5y+W8ecrKzHnKkvR5yRcZTiFCi4I0GzFOIy39TiK+ZxoLLf8aCr5ngjUXG4I2kveCNsrPgjflvU4gqd1OI7pOrdyp3q3fuk1OI7rurd+67U4jIkKt3yJCrdwBYU4gAWKt3yGhTiMhoq3fIkB5yyJCrd2aCHnJmgjh9aK+rd2ivOH3IkKt3yJA4fU2zq3dNszh9yJCrd8iQU4jMiFOIgpHGgsyIxoKCkaWtl4n1r8iQc52XiYOWyJCDlmaCc51mgntpZoJ7aciQi2Jmgotil4kJUMiQWVKXiat3jJOrd3eDU4iMk1OId4NTiJeJq3eXiVOIZoKrd2aCU4hNs8aCTbNTiMiQxoLIkDh9zIg4fYKRq3fMiKt3gpHAeMiQwHhNs2xwyJBscO67N4pNsy6M7ru8kWivD5q9tLyRyJAPmsiQq3fkkat3y384feSROH3LfwAAKoWNBSqFAABrh40Fa4f/fwh8J4JUfNd9VHzVezB9KYQwfeKFj34ceo9+/38ZgNt+QYAjgUGAyXhZgDWHWYDLfbaA4nxwgS98YYL0d26Cvnt7gzOCtoAcg3CBz4Nhgqt3qoSYe6qEvnvYhQqIboJAhHuDZoSqhFOIqoRAhNiF9HflhgqI5YYvfPKG4nzkh8t9nYjPg/KGHIPkhzOCnYjJePqINYf6iCOBEonbfhKJ/386ieKFxIocesSK1XsjjCmEI4zXfQCNJ4IAjf9/S42NBRaIAAAWiI0F1YUAANWF//+9g////YVx+r2Dcfr9hf//a4dx+muH//8qhXH6KoX//xaIcfoWiP//1YVx+tWFAADQhQAAj4ONBdCFjQWPg3H61YX//9WFcfoWiP//Foj//4+D///QhXH6j4Nx+tCF//8VhP//VoZx+hWEcfpWhgAA0IUAAI+DjQXQhY0Fj4P//9KGcfrShv//koRx+pKE//+9g////YVx+r2Dcfr9hQAA/YUAAL2DjQX9hY0FvYMAAFaGAAAVhI0FVoaNBRWEcfqShP//koRx+tKG///Shv//FYT//1aGcfoVhHH6Vob/f0uN130AjSeCAI0phCOM1XsjjOKFxIocesSK/39qim+BOIqPfjiKNYf6iMaCpYnsg7uIyXj6iDh9pYkSfLuICojlhs6EiodchSeGU4iqhIyFqoT0d+WGMHuKh6J6J4YKiG6CXIUsg86EyYGrd6qEcnqqhKJ6LIP0d26CMHvJgTWHWYDsg5iAxoKuf8l4WYASfJiAOH2uf+KFj34ceo9+b4Ebf49+G3//f+l+KYQwfdV7MH0nglR8131UfP9/CHxx+iqF//8qhXH6a4f//2uH//+Pg///0IVx+o+DcfrQhY0Fa4cAAGuHjQUqhQAAKoWNBdKGAADSho0FkoQAAJKEAAD9hQAAvYONBf2FjQW9gwAAkoSNBZKEAADSho0F0oYAAFaGAAAVhI0FVoaNBRWEAADVhY0F1YUAABaIjQUWiOENcIXhDe+DkEtwhZBL74PhDfKEkEvyhOENcoaQS3KGHfLvgx3ycIVutO+DbrRwhR3ycoZutHKGHfLyhG608oThDTWGkEs1huENtoeQS7aH4Q2LhZBLi4XhDQuHkEsLh+ENnYXhDR2EkEudhZBLHYThDfaF4Q11hJBL9oWQS3WEbrQ1hh3yNYZutLaHHfK2hx3yHYQd8p2FbrQdhG60nYXhDZ2F4Q0dhJBLnYWQSx2EHfIdhB3ynYVutB2EbrSdhR3yC4dutAuHHfKLhW60i4VutPKEHfLyhG60coYd8nKG4Q32heENdYSQS/aFkEt1hJBLcobhDXKGkEvyhOEN8oQd8u+DHfJwhW6074NutHCFHfK2h260tocd8jWGbrQ1huENcIXhDe+DkEtwhZBL74OQSwuH4Q0Lh5BLi4XhDYuFHfJ1hB3y9oVutHWEbrT2hZBLtofhDbaHkEs1huENNYYd8nWEHfL2hW60dYRutPaFbrSLhR3yi4VutAuHHfILh+CNyJBTiMiQ4I1mglOIZoIphOFf1XvhXymEt1rVe7da1XvhX9V7t1ophOFfKYS3WimE9YQphAeg1Xv1hNV7B6DVeweg1Xv1hCmEB6AphPWEKYThX9V74V8phLda1Xu3WtV74V/Ve7daKYThXymEt1pDguFfQ4K3WgWK4V9Dgq1SJIbAU72GX1T7iLJWBYq3WiRorVIkaLdaJGjhX0JkwFOpY19Ua2GyVmFgt1phYOFf1XvsXtV7w1ophOxeKYTDWvl1t1oDd7JW+XXhX0F5X1TaecBTu33hX7t9t1q7fa1S2pe3WtqXrVLal+FfvJvAU1WcX1STnrJWnZ/hX52ft1ophPN7KYQcgNV783vVexyA1XuEa9V7O2gphIRrKYQ7aNV7WmcphFpn1XuQkSmEkJHVe7mVKYS5ldV7LXcphC131XsNeCmEDXgphFZ71XtWeymEt2TVe7dkKYSNYNV7jWBx+u95///veXH6L3z//y98//+7gHH6u4D//3t+cfp7fgAAjYONBY2DAADOhY0FzoX//zxy//99dHH6PHJx+n10AADveY0F73kAAC98jQUvfAAAeXgAADh2jQV5eI0FOHYAAHt+jQV7fgAAu4CNBbuA//+Yc///2XVx+phzcfrZdf//PHL//310cfo8cnH6fXT//zh2//95eHH6OHZx+nl4//8vfHH6L3z//+95cfrvef//OHb//3l4cfo4dnH6eXj//86FcfrOhf//jYNx+o2DAADZdQAAmHONBdl1jQWYcwAAfXQAADxyjQV9dI0FPHIAANl1AACYc40F2XWNBZhzAAB5eAAAOHaNBXl4jQU4do0Fu4AAALuAjQV7fgAAe34AAH10AAA8co0FfXSNBTxy/3/Se9d9hnsngoZ7KYSqetV7qnrihUt5HHpLeTWHgXf/f8F3yXiBdyOBmXfbfpl3M4Ikd8t9JHcKiGx19HdsdRyDa3bPg3l1QIRfdFOIMHNmhDBz4nxrdi98eXW+e190Coj1cECEAnLPg+hwq3cwc5h7MHO+ewJy9Hf1cC986HA1h+BuyXjgbhyD9m8zgj1vI4HIbuJ89m/LfT1v237IbuKFFm0cehZt/3+gbtV7t2sphLdrJ4Laatd92mr/f49qcfp7fv//e35x+ruA//+7gP//mHP//9l1cfqYc3H62XWNBc6FAADOhY0FjYMAAI2DcfqNg///jYNx+s6F///OhY0FL3wAAC98jQXveQAA73n/f9J7132GeyeChnsphKp61XuqeuKFS3kcekt5/3/xeG+Bv3iPfr94NYeBd8aCLHjsg0J3yXiBdzh9LHgSfEJ3Cohsdc6EEXZcha50U4gwc4yFMHP0d2x1MHsRdqJ6rnQKiPVwXIWzcc6EUHCrdzBzcnowc6J6s3H0d/VwMHtQcDWH4G7sgx9vxoI1bsl44G4SfB9vOH01buKFFm0cehZtb4GibY9+om3/f3BtKYS3a9V7t2sngtpq133aav9/j2rhDR104Q2ccpBLHXSQS5xybrRPeh3yT3putM97HfLPe5BLW4DhDVuAkEvbfuEN237hDe2DkEvtg+ENboWQS26F4Q15deEN+HOQS3l1kEv4cx3ynHId8h10brSccm60HXQd8luAbrRbgB3y235utNt+HfKYdh3yGXhutJh2brQZeB3y+HMd8nl1brT4c260eXXhDU96kEtPeuENz3uQS897kEtuheENboWQS+2D4Q3tgx3ynHId8h10brSccm60HXThDXl14Q34c5BLeXWQS/hz4Q0ddOENnHKQSx10kEuccuENGXjhDZh2kEsZeJBLmHZutNt+HfLbfm60W4Ad8luA4Q0ZeOENmHaQSxl4kEuYdpBLz3vhDc97kEtPeuENT3od8vhzHfJ5dW60+HNutHl1HfLPe260z3sd8k96brRPeuEN236QS9t+4Q1bgJBLW4ButO2DHfLtg260boUd8m6FHfJuhW60boUd8u2DbrTtgx3ymHYd8hl4brSYdm60GXirdxJnHnLTbB5yEmfgjRJn4I3TbFOIEmcra0NuYHFDbitrBHRgcQR0no5Dbp6OBHRpiENuaYgEdNOUQ27TlAR0no5Dbp6OBHRgcUNulXdDbmBxBHSVdwR0kEvIkJBLFX4pVciQKVVmglJnY2s8QxV+UmfkdoOWZoL1kOR2rj0SZzxDyJCuPciQRbISZ/WQY2tFstNsB85mggfO02weciqfV28qnx5yyJCRbMiQHnJmgpFsZoKnkCqf4I0qn22TyJBtk2aCkWyys5Fs+W8ecrKzHnL5b9WqpozVqlGbe2mmjHtpUZunkPlvp5Cys+CN+W/gjbKz9zHTbLlN02z3MWaCe2lmgrlNEmcJb+R2rJjkdglvY2vVqmaCrJhja1DCEmfCvBV+UMLIkMK8yJButBV+brTIkNWqyJApVSqfKVXIkIOWKp+DlsiQ1apmgtWqyJB7aWaCe2nIkOR0oQjkdAAAGouhCBqLAAAecvlvHnKys1dv+W9Xb7KzGos/VOR0P1Qai4VK5HSFStWqyJDVqiqfe2nIkHtpKp/gjbKz4I35b22TsrNtk/lvBQ1UWFMIwWDOBQRUUwi3iM4FdJUFDSSRAAAHiwAAcV4ai+2j5HTtoxqLM5rkdDOa5HQK/OR0afMaiwr8Gotp8/nyJJGr97eIMPp0lav3wWAw+gRU+fJUWP//B4v//3FeKVXIkClVZoKDlsiQg5ZmguR0P1TkdDVIGos/VBqLNUgaiz2m5HQ9phqLM5rkdDOaHnIqn1dvKp+RbMiQkWxmghqLB4vkdAeLGotxXuR0cV6nkCqf4I0qn22TyJDgjciQbZNmguCNZoIpVVGbKVWmjIOWUZuDlqaMHnL5bx5ycDard/lvq3fIaKt3ZlpTiMhoq3ehPTh9cDbGgnA2U4hmWlOI+W/gjflvU4ihPeCNcDbgjWaCxoJmguCN02zGgqV8OH2lfMaC02zGghJnU4gSZx5y02w4fdNsOH0SZ6t3EmcecmaCOH1mgrlNwH73McB+uU2ddvcxnXZFssB+RbKddgfOwH4Hzp124I00U+CNBsxTiDRTU4iXYVOIcDard3A2q3c0U1OIA7Wrd5dhq3cDtR5yBswecjRT5HS3iMaCpXwai7eIGovBYDh9pXzGguR25HTBYDh95HY4fdNsxoLTbDh9EmfGghJnHnLIkIKKS43gjciQ4I0SZ3x1S42Cio9qHnISZ3x1j2qrd7p1q3fgoB5yunUecuCgU4jgoFOIunXgjeCg4I26dat35HYecuR2q3djax5yY2urd+R2HnLkdqt3Y2secmNr4I26deCN4KBTiLp1U4jgoOCN5HZTiOR24I1ja1OIY2vgjeR2U4jkduCNY2tTiGNrHnLgoB5yunWrd+Cgq3e6dapUZoLnOGaCyUaMrclGLrYGKy62BiuMrVOIbserd27HU4jzmat385lTiC62q3cutlOIjK2rd4ytU4gutqt3LrZTiIytq3eMrVOIbpird26YU4jakKt32pA1uS62NbmMrfjULrYXx2aC+NSMrVSrZoJTiD8vU4gDTKt3Py+rdwNMU4hWvqt3Vr5TiAOgq3cDoAAASIUAABeEjQVIhY0FF4QAALKFjQWyhQAA44aNBeOGAABdho0FXYYAAI6HjQWOh///jodx+o6H//9dhnH6XYb//0uGcfpLhv//GoVx+hqFjQXjhgAA44aNBbKFAACyhQAAdoUAAEWEjQV2hY0FRYThDdKG4Q2ShI0FS4YAAEuGjQUahQAAGoUAAHaFAABFhI0FdoWNBUWEAADOhQAAnYSNBc6FjQWdhP//RYT//3aFcfpFhHH6doX//52E///OhXH6nYRx+s6Fcfqyhf//soVx+uOG///jhgAAzoUAAJ2EjQXOhY0FnYT//+OGcfrjhv//soVx+rKFcfoahf//GoVx+kuG//9Lhv//RYT//3aFcfpFhHH6doVx+l2G//9dhnH6jof//46H4Q3QheENj4MAABqFjQUahQAAS4aNBUuGjQWOhwAAjoeNBV2GAABdhv//F4T//0iFcfoXhHH6SIXhDVaG4Q0VhP//nYT//86FcfqdhHH6zoX//xeE//9IhXH6F4Rx+kiFAABIhQAAF4SNBUiFjQUXhOEN/YXhDb2DHfK9gx3y/YX/fzqJ234SiSOBEokzgp2Iy32diOJ85Iccg+SHz4Pyhi988oZAhNiFvnvYhWaEqoSYe6qEvnt7g0CEe4MvfGGCz4NhguJ8cIEcg3CBM4K2gMt9toDbfkGAI4FBgP9/GYDhDdWF4Q0WiB3y1YUd8haIHfK9gx3y/YXhDZKE4Q3ShuENFojhDdWFHfIqhR3ya4fhDdCF4Q2Pgx3yFYQd8laGHfKPgx3y0IXhDf2F4Q29g+ENa4fhDSqFHfKShB3y0oYd8muHHfIqheENKoXhDWuHHfKPgx3y0IUd8tKGHfKShB3yFYQd8laG4Q1WhuENFYQd8haIHfLVhat31ZCrd6mGU4jVkFOIqYauPUuNrj2PapBLS42QS49q5FMSZ9Ra4V9kpBJnZKThX3x1Bsx8daS9gooGzIKKpL1Qwo9qUMJLjW60j2putEuNgoqkvYKKBsx8daS9fHUGzBqsEmeaWxJnKqXhX5pb4V9TiBJnq3cSZ1OI4V+rd+FfjQWnewAAp3uNBXZ6AAB2eo0FRoUAAEaFjQUVhAAAFYSNBTSAAAA0gI0FA38AAAN/HfKYcx3y2XUd8i98HfLveQAAUXUAACB0jQVRdY0FIHQAAPF3AADAdo0F8XeNBcB2//9GhXH6RoX//xWEcfoVhHH6dnr//3Z6cfqne///p3sd8phzHfLZdQAAUXUAACB0jQVRdY0FIHQAAPVzAADEco0F9XONBcRy//+ne3H6p3v//3Z6cfp2ev//xHL///VzcfrEcnH69XP/f8F3236ZdyOBmXczgiR3y30kd+J8a3Ycg2t2z4N5dS98eXVAhF90vntfdGaEMHOYezBzvnsCckCEAnIvfOhwz4PocOJ89m8cg/ZvM4I9b8t9PW/bfshuI4HIbv9/oG7hDdl14Q2Yc+ENjYPhDc6F///Adv//8Xdx+sB2cfrxd+ENeXjhDTh24Q0vfOEN73kAAPF3AADAdo0F8XeNBcB24Q19dOENPHId8jxyHfJ9dHH6FYT//xWEcfpGhf//RoX//zSAcfo0gP//A39x+gN/cfoDf///A39x+jSA//80gOENu4DhDXt+4Q3OheENjYMAAHZ6jQV2egAAp3uNBad7AAAVhI0FFYQAAEaFjQVGhQAA9XMAAMRyjQX1c40FxHIAAAN/jQUDfwAANICNBTSA//8gdP//UXVx+iB0cfpRdf//xHL///VzcfrEcnH69XP//yB0//9RdXH6IHRx+lF1///Adv//8Xdx+sB2cfrxd+ENfXThDTxyHfKNgx3yzoUd8u95HfIvfB3yu4Ad8nt+HfI4dh3yeXgd8jxyHfJ9dB3yzoUd8o2D4Q3veeENL3zhDXt+4Q27gB3yOHYd8nl4HfJ7fh3yu4DhDXl44Q04duEN2XXhDZhz9ZBjaxlqQ25SZ2NrUmfkdjN1Q24ZagR0M3UEdPWQ5Hard5dh1XsRqKt30q1TiNKt1XsHoCmEEajVe/WEKYQHoNV763wphPWEU4iXYSmE63zsg0J3zoQRdv9/6X7Ggix4b4G/eP9/8XiPfr94OH0seBJ8QncwexF2b4Ebf4KKj2pcha50xoKuf4yFMHPsg5iAXIWzcc6EyYHOhFBwXIUsg+yDH2+MhaqExoI1bm+Bom1chSeG/39wbXx1j2qPfqJtgopLjTh9NW7OhIqHEnwfb+yDu4jGgqWJb4E4inx1S40we1Bw/39qiqJ6s3FyejBzonqudI9+G3+PfjiKOH2ufzh9pYkSfJiAEny7iDB7ioeieieGMHvJgXJ6qoSieiyDrJjkduWVQ26smGNrCW9ja+WVBHTLikNuCW/kdsuKBHS8kciQvJFor8B4yJA3ik2zwHhNs0JuaK9CbsiQx3VNsz6HyJA+h02zOH3Lfzh95JGrd8t/OH3Lfzh95JGrd8t/"), -"format": 34896613399, -"index_count": 2010, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABgAEAAUABQAHAAYABwAIAAYACwAJAAoACgAMAAsACgANAAwAEAAOAA8ADwARABAAFAASABMAEwAVABQAFQAWABQAGQAXABgAGAAaABkAHQAbABwAHAAeAB0AIQAfACAAIAAiACEAIAAjACIAJgAkACUAJgAlACcAKAAmACcAKQAoACcAKQAnACoAKwApACoAKgAsACsALQArACwALQAsAC4ALQAuAC8AMAAtAC8ALwAxADAANAAyADMAMwA1ADQAOAA2ADcANwA5ADgAPAA6ADsAOwA9ADwAPQA+ADwAPQA/AD4APwBAAD4AQwBBAEIAQgBEAEMARABFAEMARQBGAEMARgBHAEMARgBIAEcARgBJAEgATABKAEsASwBNAEwATgBNAEsASwBPAE4ATQBQAEwAUABRAEwAUQBSAEwAVQBTAFQAVABWAFUAWQBXAFgAWABaAFkAXQBbAFwAXABeAF0AYQBfAGAAYABiAGEAYgBjAGEAYwBkAGEAZABlAGEAZgBiAGAAZgBgAGcAZgBnAGgAaQBmAGgAagBpAGgAawBqAGgAaABsAGsAbwBtAG4AbgBwAG8AcwBxAHIAcgB0AHMAdwB1AHYAdgB4AHcAewB5AHoAegB8AHsAfwB9AH4AfgCAAH8AgwCBAIIAggCEAIMAhwCFAIYAhgCIAIcAiwCJAIoAigCMAIsAjwCNAI4AjgCQAI8AkQCQAI4AjgCSAJEAkACTAI8AkwCUAI8AlACVAI8AmACWAJcAlwCZAJgAmQCaAJgAmgCbAJgAmgCcAJsAnwCdAJ4AngCgAJ8AowChAKIAogCkAKMApAClAKMApQCmAKMApgCnAKMApgCoAKcApgCpAKgArACqAKsAqwCtAKwAsACuAK8ArwCxALAAtACyALMAswC1ALQAuAC2ALcAtwC5ALgAuQC6ALgAuQC7ALoAuwC8ALoAvwC9AL4AvgDAAL8AwwDBAMIAwgDEAMMAxADFAMMAxQDGAMMAxQDHAMYAygDIAMkAyQDLAMoAzgDMAM0AzQDPAM4A0gDQANEA0QDTANIA1gDUANUA1QDXANYA2gDYANkA2QDbANoA3gDcAN0A3QDfAN4A4gDgAOEA4QDjAOIA5gDkAOUA5QDnAOYA6gDoAOkA6QDrAOoA7gDsAO0A7QDvAO4A8gDwAPEA8QDzAPIA9gD0APUA9QD3APYA+gD4APkA+wD6APkA/AD7APkA/AD5AP0A/gD8AP0A/gD9AP8A/wAAAf4AAQH+AAABBAECAQMBAwEFAQQBCAEGAQcBBwEJAQgBCgEJAQcBCgELAQkBDAEKAQcBCwENAQkBDgENAQsBCwEPAQ4BDQEQAQkBEQEJARABEQESAQkBEQETARIBEQEUARMBEQEVARQBEQEQARYBFwERARYBFgEMARcBFwEMAQcBFgEYAQwBFgEZARgBGgEYARkBGQEbARoBHAEXAQcBHQEcAQcBHgEdAQcBBwEfAR4BIgEgASEBIQEjASIBJgEkASUBJQEnASYBKgEoASkBKQErASoBLgEsAS0BLQEvAS4BMgEwATEBMQEzATIBNgE0ATUBNQE3ATYBOgE4ATkBOQE7AToBPgE8AT0BPgE9AT8BPwFAAT4BQQE+AUABRAFCAUMBQwFFAUQBQwFGAUUBRgFHAUUBSgFIAUkBSQFLAUoBTgFMAU0BTQFPAU4BUgFQAVEBUQFTAVIBVgFUAVUBVQFXAVYBWgFYAVkBWwFaAVkBWwFZAVwBXQFbAVwBXQFcAV4BXwFdAV4BXwFeAWABYAFhAV8BZAFiAWMBYwFlAWQBaAFmAWcBZwFpAWgBbAFqAWsBbQFsAWsBbQFrAW4BbQFuAW8BcAFtAW8BcQFwAW8BcAFxAXIBcwFxAW8BdAFwAXIBcwFvAXUBdAFyAXYBdAF2AXcBdAF3AXgBeQF0AXgBeQF4AXoBewFzAXUBfAF7AXUBfQF8AXUBfgF5AXoBfgF6AX8BfgF/AYABfQF1AYEBggF9AYEBgwGCAYEBgwGBAYQBhQGDAYQBhgF+AYABhQGEAYcBhgGAAYgBhgGIAYkBhgGJAYoBiwGFAYcBjAGLAYcBjQGMAYcBjgGGAYoBjQGHAY8BkAGNAY8BjgGKAZEBkgGQAY8BjgGRAZIBjwGTAZIBjgGSAZMBlAGOAZMBlQGUAZMBlQGTAZYBlwGVAZYBlwGWAZgBmAGZAZcBnAGaAZsBmwGdAZwBoAGeAZ8BnwGhAaABpAGiAaMBowGlAaQBqAGmAacBpwGpAagBrAGqAasBqwGtAawBsAGuAa8BrwGxAbABtAGyAbMBswG1AbQBuAG2AbcBtwG5AbgBvAG6AbsBuwG9AbwBwAG+Ab8BvwHBAcABxAHCAcMBwwHFAcQByAHGAccBxwHJAcgBzAHKAcsBywHNAcwB0AHOAc8BzwHRAdAB1AHSAdMB0wHVAdQB2AHWAdcB1wHZAdgB1wHaAdkB2gHbAdkB2gHcAdsB3AHdAdsB3QHeAdsB3wHdAdwB3gHgAdsB3gHhAeAB4QHiAeAB3AHjAd8B4wHkAd8B4wHlAeQB4gHmAeAB4gHnAeYB5wHoAeYB6AHpAeYB6AHqAekB4wHrAeUB6wHsAeUB6wHtAewB6gHuAekB6gHvAe4B7wHwAe4B6wHxAe0B8QHyAe0B8QHzAfIB8QH0AfMB9AH1AfMB8AH2Ae4B8AH3AfYB9wH4AfYB9AH5AfUB+QH6AfUB+QH7AfoB+AH8AfYB+QH9AfsB+AH+AfwB/QH/AfsB/gEAAvwB/QEAAv8B/QH8AQAC/QEBAvwB/QECAgECAgIDAgECAgIEAgMCBAIFAgMCCAIGAgcCBwIJAggCDAIKAgsCCwINAgwCEAIOAg8CDwIRAhACFAISAhMCEwIVAhQCGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCIAIeAh8CHwIhAiACJAIiAiMCIwIlAiQCKAImAicCJwIpAigCLAIqAisCKwItAiwCMAIuAi8CLwIxAjACNAIyAjMCMwI1AjQCOAI2AjcCNwI5AjgCPAI6AjsCOwI9AjwCQAI+Aj8CPwJBAkACRAJCAkMCQwJFAkQCSAJGAkcCRwJJAkgCTAJKAksCSwJNAkwCUAJOAk8CTwJRAlACVAJSAlMCUwJVAlQCWAJWAlcCVwJZAlgCXAJaAlsCWwJdAlwCYAJeAl8CXwJhAmACZAJiAmMCYwJlAmQCaAJmAmcCZwJpAmgCbAJqAmsCawJtAmwCcAJuAm8CbwJxAnACdAJyAnMCcwJ1AnQCeAJ2AncCdwJ5AngCfAJ6AnsCewJ9AnwCgAJ+An8CfwKBAoAChAKCAoMCgwKFAoQCiAKGAocChwKJAogCjAKKAosCiwKNAowCkAKOAo8CjwKRApAClAKSApMCkwKVApQCmAKWApcClwKZApgCnAKaApsCmwKdApwCoAKeAp8CnwKhAqACpAKiAqMCowKlAqQCpQKmAqQCpgKnAqQCpwKoAqQCqAKpAqQCqgKlAqMCqgKjAqsCqgKrAqwCrQKqAqwCrgKtAqwCrwKuAqwCsAKvAqwCrAKxArACtAKyArMCswK1ArQCuAK2ArcCuAK3ArkCuAK5AroCuwK4AroCvAK7AroCvAK6Ar0CvgK8Ar0CvQK/Ar4CwAK+Ar8CwAK/AsECwALBAsICwALCAsMCxALAAsMCwwLFAsQCyALGAscCxwLJAsgCzALKAssCywLNAswCzQLLAs4CzgLPAs0C0gLQAtEC0QLTAtIC1gLUAtUC1QLXAtYC1gLXAtgC2ALZAtYC3ALaAtsC2wLdAtwC4ALeAt8C3wLhAuAC5ALiAuMC4wLlAuQC6ALmAucC5wLpAugC7ALqAusC6wLtAuwC8ALuAu8C7wLxAvAC9ALyAvMC8wL1AvQC+AL2AvcC9wL5AvgC/AL6AvsC+wL9AvwCAAP+Av8C/wIBAwADBAMCAwMDAwMFAwQDCAMGAwcDBwMJAwgDDAMKAwsDCwMNAwwDEAMOAw8DDwMRAxADFAMSAxMDEwMVAxQDGAMWAxcDFwMZAxgDHAMaAxsDGwMdAxwDIAMeAx8DHwMhAyADJAMiAyMDIwMlAyQDKAMmAycDJwMpAygDLAMqAysDKwMtAywDKwMuAy0DLgMvAy0DLgMwAy8DMAMxAy8DMAMyAzEDMgMwAzMDMgM0AzEDMwM1AzIDNAM2AzEDMwM3AzUDNgM4AzEDMwM5AzcDNgM6AzgDOgM7AzgDOwM8AzgDPAM9AzgDPAM+Az0DOQM/AzcDOQNAAz8DOQNBA0ADPgNCAz0DPgNDA0IDQwNEA0IDOQNFA0EDRQNGA0EDRQNHA0YDRQNIA0cDSANJA0cDRANKA0IDSANLA0kDRANMA0oDTANNA0oDTQNOA0oDSwNPA0kDSwNQA08DSwNRA1ADTgNSA0oDSwNTA1EDUwNUA1EDTgNUA1IDVANTA1IDUwNVA1IDVQNWA1IDVQNXA1YDVQNYA1cDWANZA1cDXANaA1sDWwNdA1wDYANeA18DXwNhA2ADZANiA2MDYwNlA2QDaANmA2cDZwNpA2gDbANqA2sDawNtA2wDcANuA28DbwNxA3ADbwNyA3EDcgNzA3EDcgN0A3MDdAN1A3MDdQN2A3MDdwN1A3QDdgN4A3MDdgN5A3gDeQN6A3gDdAN7A3cDewN8A3cDewN9A3wDegN+A3gDegN/A34DfwOAA34DgAOBA34DgAOCA4EDewODA30DgwOEA30DgwOFA4QDggOGA4EDggOHA4YDhwOIA4YDgwOJA4UDiQOKA4UDiQOLA4oDiQOMA4sDjAONA4sDiAOOA4YDiAOPA44DjwOQA44DjAORA40DkQOSA40DkQOTA5IDkAOUA44DkQOVA5MDkAOWA5QDlQOXA5MDlgOYA5QDlQOYA5cDlQOUA5gDlQOZA5QDlQOaA5kDmgObA5kDmgOcA5sDnAOdA5sDoAOeA58DnwOhA6ADpAOiA6MDowOlA6QDqAOmA6cDpwOpA6gDrAOqA6sDqwOtA6wDsAOuA68DrwOxA7ADtAOyA7MDswO1A7QDuAO2A7cDtwO5A7gDvAO6A7sDuwO9A7wDwAO+A78DvwPBA8ADxAPCA8MDwwPFA8QDyAPGA8cDxwPJA8gDzAPKA8sDywPNA8wD0APOA88DzwPRA9AD1APSA9MD0wPVA9QD2APWA9cD1wPZA9gD3APaA9sD2wPdA9wD4APeA98D3wPhA+AD5APiA+MD4wPlA+QD6APmA+cD5wPpA+gD7APqA+sD6wPtA+wD8APuA+8D7wPxA/AD9APyA/MD8wP1A/QD+AP2A/cD9wP5A/gD/AP6A/sD+wP9A/wD"), -"material": SubResource("StandardMaterial3D_htxnk"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(36.3075, 35.0357, 0, 0), -"vertex_count": 1782, -"vertex_data": PackedByteArray("2rborsuK//8jyeiuy4r//9q25rzLiv//I8nmvMuK///atuiuy4r//9q26K7llf//I8norsuK//8jyeiu5ZX//2zb6K5YkP//kiTorliQ///bNuiu5ZX//9s26K7Liv//JEnorsuK//8kSeiu5ZX//yRJ6K7llQCA2zboruWVAIAkSea85ZUAgNs25rzllQCA2rbmvOWV/7/atua8y4r/vyPJ5rzllf+/I8nmvMuK/79s2+a8WJD/vyPJ6K7llQCA2rboruWVAIAjyea85ZUAgNq25rzllQCA2zborsuK//8kSeiuy4r//9s25rzLiv//JEnmvMuK//+SJOa8WJD/v9s25rzLiv+/2zbmvOWV/78kSea85ZX/vyRJ5rzLiv+//v9yZd7m/78Y+3JlpOn/v/7/cmXCvP+/te1yZa3r/79s23Jlwrz/v2zbcmXe5v+/bNtyZWvs/7+SJHJl3ub/v5IkcmVr7P+/kiRyZcK8/79JEnJlrev/v+YEcmWk6f+/AAByZcK8/78AAHJl3ub/v2zba5bCvHfPbNtrlm60d8+17YuUwrxKyrXti5RutErKGPt1UKTpqqq17XVQretUlRj7cmWk6aqqte1yZa3rVJVs23NebrT///7/c15utP//bNvxaG60///+/22IbrT//2zba5ZutP//GPtsj260//+17YuUbrT///7/dVDe5v+//v9yZd7m/7/+/3VQ/Ln/v/7/cmXCvP+//v9tiMK8/7/+/22IbrT/v/7/VVI1t/+//v90Vy21/7/+/3NebrT/vwAAbYjCvP+/AAByZcK8/78AAG2IbrT/vwAAdVD8uf+/AAB1UN7m/78AAHJl3ub/vwAAVVI1t/+/AAB0Vy21/78AAHNebrT/v5IkdVBr7KqKSRJ1UK3rVJWSJHJla+yqikkScmWt61SV5gRsj8K8usIAAG2IwrywwOYEbI9utLrCAABtiG60sMBs23RXLbX///7/dFcttf//bNtzXm60///+/3NebrT//2zbdVD8uf//bNt1UN7m///+/3VQ/Ln//2zbdVBr7P//te11UK3r//8Y+3VQpOn///7/dVDe5v//kiR1UGvs//+SJHVQ3ub//5IkdVD8uf//SRJ1UK3r///mBHVQpOn//wAAdVDe5v//AAB1UPy5//8Y+2yPwry6wrXti5TCvErKGPtsj260usK17YuUbrRKymzbVVI1t///bNt1UPy5///+/1VSNbf///7/dVD8uf//bNtVUjW3///+/1VSNbf//2zbdFcttf///v90Vy21//9JEouUwrxKyuYEbI/CvLrCSRKLlG60SsrmBGyPbrS6wkkSi5TCvErKSRKLlG60SsqSJGuWwrx3z5Ika5ZutHfPte11UK3rVJVs23VQa+yqirXtcmWt61SVbNtyZWvsqooAAFVSNbf//wAAdVD8uf//kiRVUjW3//+SJHVQ/Ln//wAAVVI1t///kiRVUjW3//8AAHRXLbX//5IkdFcttf//bNvxaMK8/79s23Jlwrz/v2zb8WhutP+/bNt1UPy5/79s23VQ3ub/v2zbcmXe5v+/bNtVUjW3/79s23RXLbX/v2zbc15utP+//v9yZcK8AIBs23JlwrwAgP7/bYjCvACAbNvxaMK8AIBs22uWwrwAgBj7bI/CvACAte2LlMK8AIBJEnVQretUleYEdVCk6aqqSRJyZa3rVJXmBHJlpOmqqpIkdVDe5v+/kiRyZd7m/7+SJHVQ/Ln/v5IkcmXCvP+/kiTxaMK8/7+SJPFobrT/v5IkVVI1t/+/kiR0Vy21/7+SJHNebrT/v2zbdVBr7ACAkiR1UGvsAIBs23Jla+wAgJIkcmVr7ACAGPt1UKTpqqoY+3JlpOmqqv7/dVDe5lS1/v9yZd7mVLXmBHJlpOmqquYEdVCk6aqqAAByZd7mVLUAAHVQ3uZUtZIkcmXCvACAAAByZcK8AICSJPFowrwAgAAAbYjCvACAkiRrlsK8AIDmBGyPwrwAgEkSi5TCvACAAAB0Vy21//+SJHRXLbX//wAAc15utP//kiRzXm60//8AAHNebrT//5Ikc15utP//AABtiG60//+SJPFobrT//5Ika5ZutP//5gRsj260//9JEouUbrT///7/bYjCvLDAGPtsj8K8usL+/22IbrSwwBj7bI9utLrCkiR1UN7m//9s23VQ3ub//5IkcmXe5v//bNtyZd7m//+2beuZ9zGYurZt6adTCJi6SJLrmfcxmLpIkumnUwiYurZt65lTCP//tm3ti/cx//9IkuuZUwj//0iS7Yv3Mf//SJJmwPcx/79IkmTO9zH/v0iSZsBTCP+/SJJkzlMI/7+2beuZ9zH/v7Zt7Yv3Mf+/tm3pp1MI/7+2beuZUwj/v7ZtZsBTCP//tm1mwPcx//9IkmbAUwj//0iSZsD3Mf//SJLti/cx/79IkuuZ9zH/v0iS65lTCP+/SJLpp1MI/7+2bWTO9zH/v7ZtZsD3Mf+/tm1kzlMI/7+2bWbAUwj/v7ZtZM73Mf+/tm1kzlMI/79IkmTO9zH/v0iSZM5TCP+/2rZ9EQ+ajZYkSX0RD5qNltq28WgPmgCAJEnxaA+aAIBIkv0UN4pxyUiS/RTAeP+/2rb9FDeKccnatv0UwHj/v9q28WhscP+/2rYAAGxw/7/atvFowHj/v9q2/RTAeP+/2rb9FDeK/7/atgAALoz/v9q2dh68kf+/2rZ9EQ+a/7/atvFoD5r/v9q28Wi8kf+/JEl2HryR//+2bXYevJH//yRJ8Wi8kf//tm3xaLyR//8kSfFoCVD//yRJ8Wh7af//2rbxaAlQ///atvFoe2n//9q28WhscP//2rbxaMB4//8kSfFobHD//9q28Wi8kf//SJLxaLyR//9IkvFowHj//9q28WgPmv//bNvxaFDC//9s2/Foe2n//2zb8WjVqv+/bNvxaG60/79s2/Fowrz/vyRJ8WgPmv//kiTxaFDC//8kSfFowHj//yRJ8Wi8kf//tm3xaMB4//+2bfFovJH//5Ik8WjCvP//kiTxaG60//+SJPFo1ar//5Ik8Wh7af//JEkAAGxw//8kSQAALoz//9q2AABscP//2rYAAC6M//8kSQAAbHD//9q2AABscP//JEnxaGxw///atvFobHD//yRJb3pZUv+/2rZvellS/78kSW96i2L/v9q2b3qLYv+/2rbxaHtp//9s2/Foe2n//9q27Yt7af//bNvti3tp//9IknYevJH//9q2dh68kf//SJLxaLyR///atvFovJH//7Zt/RTAeACAJEn9FMB4AIC2bfFowHgAgCRJ8WjAeACAJEl2HryR//8kSf0UN4r//7Ztdh68kf//tm39FDeK///atm96WVL/v9q28WgJUP+/2rZveoti/7/atvFoe2n/v9q27Yt7af+/2rbti4ti/78kSe2Le2n/vyRJ8Wh7af+/JEnti4ti/78kSW96i2L/vyRJ8WgJUP+/JElvellS/78kSQAALoyNtiRJfREPmo2W2rYAAC6Mjbbatn0RD5qNliRJb3qLYv//2rZveoti//8kSe2Li2L//9q27YuLYv//2rb9FMB4AIBIkv0UwHgAgNq28WjAeACASJLxaMB4AIBIknYevJH//0iS/RQ3iv//2rZ2HryR///atv0UN4r//yRJ8WjAeP+/JEn9FMB4/78kSfFobHD/vyRJAABscP+/JEn9FDeK/78kSQAALoz/vyRJdh68kf+/JEl9EQ+a/78kSfFovJH/vyRJ8WgPmv+/JEn9FDeKcckkSf0UwHj/v7Zt/RQ3inHJtm39FMB4/78yjrGa//93zzKOsZpx+nfPbZuYmP//Ssptm5iYcfpKyv9/aJv//wCAMo6xmv//AIDMcbGa//8AgJFkmJj//wCAbZuYmP//AIDJpkKV//8AgDVZQpX//wCA/3+Ekf//AIB9eCOR//8AgIGHI5H//wCAfVDpkP//AICBr+mQ//8AgH5xCJD//wCAfGtEjv//AIDgZviL//8AgAJL2ov//wCA+mNKif//AICAjgiQ//8AgIKURI7//wCAHpn4i///AIAkSWuG//8AgP1ia4b//wCA+mOLg///AID8tNqL//8AgAScSon//wCAAZ1rhv//AIDatmuG//8AgASci4P//wCAAkv8gP//AID8tPyA//8AgOBm3oD//wCAfGuSfv//AIB+cc58//8AgB6Z3oD//wCAgpSSfv//AICAjs58//8AgH1Q7Hv//wCAga/se///AICBh7J7//8AgH14snv//wCA/39Se///AIDJppN3//8AgDVZk3f//wCAkWQ+dP//AIBtmz50//8AgMxxJXL//wCAMo4lcv//AID/f25x//8AgP9/bnFx+lTV/39ucf//VNUyjiVycfp3zzKOJXL//3fPfVDpkP//usICS9qL//+wwH1Q6ZBx+rrCAkvai3H6sMCRZJiY//9KypFkmJhx+krKzHGxmv//d8/McbGacfp3z8xxsZr//3fPzHGxmnH6d8//f2ib//9U1f9/aJtx+lTV/LT8gP//sMDatmuG////v/y0/IBx+rDA2rZrhnH6/7/McSVycfp3z8xxJXL//3fP/39ucXH6VNX/f25x//9U1SRJa4b///+/Akv8gP//sMAkSWuGcfr/vwJL/IBx+rDAfVDse///usI1WZN3///8xX1Q7Htx+rrCNVmTd3H6/MXatmuG////v/y02ov//7DA2rZrhnH6/7/8tNqLcfqwwDVZQpX///zFNVlClXH6/MWRZJiY//9KypFkmJhx+krKAkv8gP//sMB9UOx7//+6wgJL/IBx+rDAfVDse3H6usL8tNqL//+wwIGv6ZD//7rC/LTai3H6sMCBr+mQcfq6woGv6ZD//7rCyaZClf///MWBr+mQcfq6wsmmQpVx+vzFNVmTd3H6/MU1WZN3///8xZFkPnRx+krKkWQ+dP//Sso1WUKV///8xX1Q6ZD//7rCNVlClXH6/MV9UOmQcfq6wv9/bnEd8v//Mo4lch3y///McSVyHfL//5FkPnQd8v//bZs+dB3y//81WZN3HfL//8mmk3cd8v///39teB3y//+Idud4HfL//3aJ53gd8v//fVDsex3y//+2bU16HfL//yNmhnwd8v//ga/sex3y//9Ikk16HfL//9uZhnwd8v//Akv8gB3y//9TYGx/HfL//6xczIId8v//JElrhh3y//9tW2uGHfL///y0/IAd8v//q59sfx3y//9So8yCHfL//wJL2osd8v//rFwKih3y//9TYGqNHfL//9q2a4Yd8v//kaRrhh3y//9SowqKHfL///y02osd8v//q59qjR3y//99UOmQHfL//yNmUJAd8v//tm2Jkh3y//+Br+mQHfL//9uZUJAd8v//SJKJkh3y//81WUKVHfL//8mmQpUd8v//iHbvkx3y//92ie+THfL///9/aZQd8v//kWSYmB3y//9tm5iYHfL//8xxsZod8v//Mo6xmh3y////f2ibHfL//5FkPnRx+krKkWQ+dP//SsrMcSVycfp3z8xxJXL//3fPAkvai///sMAkSWuG////vwJL2otx+rDAJElrhnH6/78yjiVycfp3zzKOJXL//3fPbZs+dHH6Ssptmz50//9Kym2bPnRx+krKbZs+dP//SsrJppN3cfr8xcmmk3f///zFga/se///usL8tPyA//+wwIGv7Htx+rrC/LT8gHH6sMBtm5iY//9Kym2bmJhx+krKyaZClf///MXJpkKVcfr8xcmmk3f///zFga/se///usLJppN3cfr8xYGv7Htx+rrC/39om///VNX/f2ibcfpU1TKOsZr//3fPMo6xmnH6d8+RpGuGHfL/v1KjCood8rDAkaRrhm60/79SowqKbrSwwEiSiZId8krKSJKJkm60SsrbmVCQHfL8xduZUJButPzFbVtrhh3y/7+sXMyCHfKwwG1ba4ZutP+/rFzMgm60sMAjZlCQHfL8xSNmUJButPzFtm2Jkh3ySsq2bYmSbrRKyv9/aZQd8lTV/39plG60VNV2ie+THfJ3z3aJ75NutHfPdonvkx3yd892ie+TbrR3z0iSiZId8krKSJKJkm60Ssqrn2x/HfK6wlKjzIId8rDAq59sf260usJSo8yCbrSwwNuZhnwd8vzFq59sfx3yusLbmYZ8brT8xaufbH9utLrCiHbneG60d8+Idud4HfJ3z/9/bXhutFTV/39teB3yVNVTYGqNHfK6wqxcCood8rDAU2BqjW60usKsXAqKbrSwwFKjCood8rDAq59qjR3yusJSowqKbrSwwKufao1utLrCrFzMgh3ysMBTYGx/HfK6wqxczIJutLDAU2Bsf260usK2bYmSHfJKyrZtiZJutErKiHbvkx3yd8+Idu+TbrR3zyNmhnxutPzFI2aGfB3y/MW2bU16brRKyrZtTXod8krKq59qjR3yusLbmVCQHfL8xaufao1utLrC25lQkG60/MVIkk16brRKykiSTXod8krK25mGfG60/MXbmYZ8HfL8xaxcCood8rDAbVtrhh3y/7+sXAqKbrSwwG1ba4ZutP+/iHbvkx3yd8+Idu+TbrR3z/9/aZQd8lTV/39plG60VNVSo8yCHfKwwJGka4Yd8v+/UqPMgm60sMCRpGuGbrT/v3aJ53hutHfPdonneB3yd89Ikk16brRKykiSTXod8krKU2Bsfx3yusIjZoZ8HfL8xVNgbH9utLrCI2aGfG60/MX/f214brRU1f9/bXgd8lTVdonneG60d892ied4HfJ3zyNmUJAd8vzFU2BqjR3yusIjZlCQbrT8xVNgao1utLrCtm1Nem60Ssq2bU16HfJKyoh253hutHfPiHbneB3yd8+SJPFoe2n//yRJ8Wh7af//kiTti3tp//8kSe2Le2n//22b4d+dnwCAkWTh352fAIBtm3DsnZ8AgJFkcOydnwCAbZvh39qX//9tm3Ds2pf//5Fk4d/al///kWRw7NqX//+RZHDsu33//5FkcOzal///bZtw7Lt9//9tm3Ds2pf//5Fk///al/+/kWT//7t9/79tm///2pf/v22b//+7ff+/bZvh37t9AICRZOHfu30AgG2bcOy7fQCAkWRw7Lt9AIBtm+Hf+XX//22bcOz5df//kWTh3/l1//+RZHDs+XX//22b4d+7ff+/bZtw7Lt9/79tm+Hf+XX/v22b//+7ff+/bZtg/dp5/79tm937QXn/v22bN/YDd/+/bZtw7Pl1/79tm///2pf/v22bcOzal/+/bZvh39qX/79tm2D9vJv/v22b3ftVnP+/bZs39pOe/79tm3DsnZ//v22b4d+dn/+/bZtw7Pl1//9tmzf2A3f//5FkcOz5df//kWQ39gN3//+RZHDs+XX/v5FkN/YDd/+/kWTh3/l1/7+RZN37QXn/v5FkYP3aef+/kWTh37t9/7+RZHDsu33/v5Fk//+7ff+/kWRw7NqX/7+RZP//2pf/v5Fk4d/al/+/kWRg/byb/7+RZN37VZz/v5FkN/aTnv+/kWTh352f/7+RZHDsnZ//v5Fk//+7ff//kWRg/dp5//9tm///u33//22bYP3aef//bZs39gN3//9tm937QXn//5FkN/YDd///kWTd+0F5//9tm2D92nn//5FkYP3aef//kWT//9qXVLVtm///2pdUtZFkYP28m6qqbZtg/bybqqqRZGD9vJuqqm2bYP28m6qqkWTd+1Wc/59tm937VZz/n22bN/aTnlSVkWQ39pOeVJVtm3DsnZ+qipFkcOydn6qKbZs39pOeVJWRZDf2k55UlTVZE6Jx+vzFNVkTov///MWRZL2ecfpKypFkvZ7//0rKkWQXw///SsqRZBfDcfpKysxxMMX//3fPzHEwxXH6d8//f+fF//9U1f9/58Vx+lTVMo4wxf//d88yjjDFcfp3zwJLWbb//7DAJEnqsP///78CS1m2cfqwwCRJ6rBx+v+/bZsXw///SsptmxfDcfpKysmmwb////zFyabBv3H6/MWBr2m7//+6wsmmwb////zFga9pu3H6usLJpsG/cfr8xTKOMMX//3fPMo4wxXH6d89tmxfD//9Kym2bF8Nx+krKAkt7q///sMB9UGum//+6wgJLe6tx+rDAfVBrpnH6usIkSeqw////vwJLe6v//7DAJEnqsHH6/78CS3urcfqwwDVZwb////zFfVBpu///usI1WcG/cfr8xX1Qabtx+rrCNVnBv////MU1WcG/cfr8xZFkF8P//0rKkWQXw3H6Ssp9UGum//+6wjVZE6L///zFfVBrpnH6usI1WROicfr8xcxxMMX//3fPzHEwxXH6d8//f+fF//9U1f9/58Vx+lTV/LRZtv//sMCBr2m7//+6wvy0WbZx+rDAga9pu3H6usL8tHur//+wwNq26rD///+//LR7q3H6sMDatuqwcfr/v4Gva6b//7rC/LR7q///sMCBr2umcfq6wvy0e6tx+rDAyaYTov///MWBr2um//+6wsmmE6Jx+vzFga9rpnH6usIyjqSccfp3zzKOpJz//3fPbZu9nnH6Ssptm72e//9Kytq26rD///+//LRZtv//sMDatuqwcfr/v/y0WbZx+rDA/3/tm///AIDMcaSc//8AgDKOpJz//wCAbZu9nv//AICRZL2e//8AgMmmE6L//wCANVkTov//AICBr2um//8AgP9/0aX//wCAfVBrpv//AICBhzKm//8AgH14Mqb//wCAgI5Np///AIB+cU2n//8AgPy0e6v//wCAAkt7q///AICClBGp//8AgB6ZXav//wCABJwLrv//AIDatuqw//8AgAGd6rD//wCAfGsRqf//AIDgZl2r//8AgPpjC67//wCA/LRZtv//AIAEnMmz//8AgB6Zd7b//wCAJEnqsP//AID9Yuqw//8AgPpjybP//wCAAktZtv//AIDgZne2//8AgIGvabv//wCAfVBpu///AICClMO4//8AgICOh7r//wCAgYeju///AIB8a8O4//8AgH5xh7r//wCAfXiju///AIDJpsG///8AgDVZwb///wCA/38DvP//AICRZBfD//8AgG2bF8P//wCAMo4wxf//AIDMcTDF//8AgP9/58X//wCAkWS9nnH6SsqRZL2e//9KysxxpJxx+nfPzHGknP//d899UGm7//+6wgJLWbb//7DAfVBpu3H6usICS1m2cfqwwP9/7Ztx+lTV/3/tm///VNUyjqSccfp3zzKOpJz//3fPzHGknHH6d8/McaSc//93z/9/7Ztx+lTV/3/tm///VNVtm72ecfpKym2bvZ7//0rKyaYTonH6/MXJphOi///8xf9/7Zsd8v//Mo6knB3y///McaScHfL//5FkvZ4d8v//bZu9nh3y//81WROiHfL//8mmE6Id8v///3/soh3y//+IdmajHfL//3aJZqMd8v//fVBrph3y//+2bcykHfL//yNmBacd8v//ga9rph3y//9IksykHfL//9uZBacd8v//Akt7qx3y//9TYOupHfL//6xcS60d8v//JEnqsB3y//9tW+qwHfL///y0e6sd8v//q5/rqR3y//9So0utHfL//wJLWbYd8v//rFyJtB3y//9TYOm3HfL//9q26rAd8v//kaTqsB3y//9So4m0HfL///y0WbYd8v//q5/ptx3y//99UGm7HfL//yNmz7od8v//tm0IvR3y//+Br2m7HfL//9uZz7od8v//SJIIvR3y//81WcG/HfL//8mmwb8d8v//iHZuvh3y//92iW6+HfL///9/6L4d8v//kWQXwx3y//9tmxfDHfL//8xxMMUd8v//Mo4wxR3y////f+fFHfL//5Gk6rAd8v+/UqOJtB3ysMCRpOqwbrT/v1KjibRutLDAI2YFp260/MUjZgWnHfL8xbZtzKRutErKtm3MpB3ySsp2iWajbrR3z3aJZqMd8nfPSJLMpG60SspIksykHfJKyv9/6L4d8lTV/3/ovm60VNV2iW6+HfJ3z3aJbr5utHfPq5/rqR3yusJSo0utHfKwwKuf66lutLrCUqNLrW60sMBtW+qwHfL/v6xcS60d8rDAbVvqsG60/7+sXEutbrSwwLZtCL0d8krKtm0IvW60SsqIdm6+HfJ3z4h2br5utHfPU2DrqR3yusIjZgWnHfL8xVNg66lutLrCI2YFp260/MWsXEutHfKwwFNg66kd8rrCrFxLrW60sMBTYOupbrS6wkiSCL0d8krKSJIIvW60Ssrbmc+6HfL8xduZz7putPzF/3/som60VNX/f+yiHfJU1XaJZqNutHfPdolmox3yd8+sXIm0HfKwwG1b6rAd8v+/rFyJtG60sMBtW+qwbrT/v1KjibQd8rDAq5/ptx3yusJSo4m0brSwwKuf6bdutLrCUqNLrR3ysMCRpOqwHfL/v1KjS61utLDAkaTqsG60/7/bmQWnHfL8xauf66kd8rrC25kFp260/MWrn+upbrS6wrZtzKRutErKtm3MpB3ySsqIdmajbrR3z4h2ZqMd8nfPq5/ptx3yusLbmc+6HfL8xauf6bdutLrC25nPum60/MVIksykbrRKykiSzKQd8krK25kFp260/MXbmQWnHfL8xVNg6bcd8rrCrFyJtB3ysMBTYOm3brS6wqxcibRutLDAI2bPuh3y/MUjZs+6brT8xbZtCL0d8krKtm0IvW60Ssp2iW6+HfJ3z3aJbr5utHfPSJIIvR3ySspIkgi9brRKyoh2ZqNutHfPiHZmox3yd8//f+yibrRU1f9/7KId8lTViHZuvh3yd8+Idm6+brR3z/9/6L4d8lTV/3/ovm60VNUjZs+6HfL8xVNg6bcd8rrCI2bPum60/MVTYOm3brS6wtq2ZM65Tf//bNtmwLlN//9s22TOuU3//5IkZM65Tf//kiRmwLlN//8kSWTOuU3//2zb5rxYkFTVI8nmvMuK9eBs2+iuWJBU1SPJ6K7LivXg2zbmvOWVaMvbNuiu5ZVoy5Ik5rxYkFTVkiTorliQVNWSJOa8WJBU1ZIk6K5YkFTV2zbmvMuK9eDbNuiuy4r14CPJ5rzllWjLbNvmvFiQVNUjyeiu5ZVoy2zb6K5YkFTVbNvxaG60VNVs22uWbrRU1Wzb8WjVqlTVbNvti9WqVNVs2+XDrJhU1Wzba5bCvFTVbNvpp6yYVNVs2+2Le2lU1Wzb6acJb1TVbNtkzlDCVNVs2/FowrxU1Wzb8WhQwlTVbNtkzrlNVNVs2+XDCW9U1WzbZsC5TVTVbNvti/cxVNVs22bA9zFU1ZIk9kXVqv//SRL2RdWq//+SJPFo1ar//wAA8WjVqv//kiTti9Wq//8AAO2L1ar//0kS9kV7af//kiT2RXtp//8AAPFoe2n//wAA7Yt7af//AADti9WqVNUAAO2Le2lU1ZIk7YvVqlTVkiTti3tpVNUAAPFo1apU1UkS9kXVqlTVAADxaHtpVNVJEvZFe2lU1UkS9kV7aVTVSRL2RdWqVNWSJPZFe2lU1ZIk9kXVqlTVkiRmwPcxVNWSJGbAuU1U1ZIk7Yv3MVTVkiTti3tpVNWSJGTOuU1U1ZIk6acJb1TVkiTpp6yYVNWSJOXDCW9U1ZIk7YvVqlTVkiTlw6yYVNWSJGTOUMJU1ZIka5bCvFTVkiTxaFDCVNWSJPFowrxU1ZIka5ZutFTVkiTxaG60VNWSJPFo1apU1ZIk9kXVqlTVkiTxaNWqVNWSJPZFe2lU1ZIk8Wh7aVTVAADti9WqVNUAAPFo1apU1QAA7Yt7aVTVAADxaHtpVNXbNj7yBQ1Kyts2vPzOBUrKI8k+8gUNSsojybz8zgVKymzb9kV7aVTVbNv2RdWqVNW17fZFe2lU1bXt9kXVqlTVI8kTaAUNusLbNhNoBQ26wiPJj3xTCLDA2zaPfFMIsMBs2/Fo1apU1Wzb9kXVqlTVbNvxaHtpVNVs2/ZFe2lU1Wzb7YvVqlTVbNvti3tpVNX+/+2L1apU1f7/7Yt7aVTV2zY+8gUNVNXbNsHdUwhU1ds2vPzOBVTV2zaPfFMIVNXbNpRdzgVU1ds2E2gFDVTV2zbvdgAAVNXbNmHjAABU1SPJwd1TCLDA2zbB3VMIsMAjyT7yBQ26wts2PvIFDbrC2zaUXc4FSsrbNhNoBQ1KyiPJlF3OBUrKI8kTaAUNSsojyRNoBQ1U1SPJj3xTCFTVI8mUXc4FVNUjycHdUwhU1SPJvPzOBVTVI8k+8gUNVNUjye92AABU1SPJYeMAAFTV/v/xaNWqVNX+/+2L1apU1f7/8Wh7aVTV/v/ti3tpVNUjyZRdzgX/8CPJ73YAAHb42zaUXc4F//DbNu92AAB2+Ns2YeMAAHb4I8lh4wAAdvjbNrz8zgX/8CPJvPzOBf/wbNv2RXtp//+17fZFe2n///7/8Wh7af///v/ti3tp///bNu92AAB2+CPJ73YAAHb42zZh4wAAdvgjyWHjAAB2+LXt9kXVqv//bNv2RdWq///+//Fo1ar//2zb8WjVqv///v/ti9Wq//9s2+2L1ar//7Xt9kXVqlTV/v/xaNWqVNW17fZFe2lU1f7/8Wh7aVTVbNvti3tpVNVs2+2L9zFU1dq27Yt7aVTV2rbti4tiVNXatu2LqlRU1SRJ7YuLYlTV2rbti+c4VNVIku2L9zFU1bZt7Yv3MVTVJEnti6pUVNUkSe2Le2lU1ZIk7Yt7aVTVJEnti+c4VNWSJO2L9zFU1ZIk7Yv3Mf//tm3ti/cx//+SJGbA9zH//7Zt65n3Mf//SJLrmfcx//+2bWbA9zH//7ZtZM73Mf//JElkzvcx//9s22bA9zH//0iSZsD3Mf//SJJkzvcx///atmTO9zH//2zb7Yv3Mf//SJLti/cx//+SJGbAuU1U1ZIkZsD3MVTVJElkzrlNVNUkSWTO9zFU1WzbZsC5TVTV2rZkzrlNVNVs22bA9zFU1dq2ZM73MVTVbNtkzrlNVNVs22TOUMJU1dq2ZM65TVTV2rZkzppbVNXatmTO9zFU1SRJZM73MVTVJElkzrlNVNXatmTOGqxU1SRJZM6aW1TVJElkzhqsVNWSJGTOUMJU1ZIkZM65TVTV2zaPfFMIsMBIkuuZUwj//yPJj3xTCLDAI8nB3VMIsMC2beuZUwj//0iS6adTCP//2zbB3VMIsMC2bemnUwj//7ZtZsBTCP//SJJmwFMI//+2bWTOUwj//0iSZM5TCP//kiTxaFDC//8/xW5xUML//2zb8WhQwv//bNtkzlDC//+/Om5xUML//z/F58VQwv//kiRkzlDC//+/OufFUML//9q25cMJb1TV2rblw6yYVNVs2+XDCW9U1Wzb5cOsmFTV2rbpp6yYVNXatumnCW9U1Wzb6aesmFTVbNvppwlvVNUkSemnCW///5Ik6acJb///JEnlwwlv//+SJOXDCW///9q26aesmP//bNvpp6yY///atuXDrJj//2zb5cOsmP//kiTlwwlvVNWSJOXDrJhU1SRJ5cMJb1TVJEnlw6yYVNVs2+mnCW///9q26acJb///bNvlwwlv///atuXDCW///5Ik6aesmP//JEnpp6yY//+SJOXDrJj//yRJ5cOsmP//kiTpp6yYVNWSJOmnCW9U1SRJ6aesmFTVJEnppwlvVNUkSe2LqlRU1SRJ7YvnOFTVJEn7IslGVNUkSf4NyUZU1SRJ/g0GK1TVJEn7IgYrVNUkSfsiBitd+9q2+yIGK137JEnti+c4v/batu2L5zi/9tq2/g3JRv//JEn+DclG///atvsiyUZCwCRJ+yLJRkLAJEn+DQYr///atv4NBiv//yRJ+yIGK1372rb7IgYrXfvatm96WVIKwSRJb3pZUgrB2rbti6pUCsEkSe2LqlQKwdq2/g3JRlTV2rb7IslGVNXatv4NBitU1dq27YvnOFTV2rb7IgYrVNXatu2LqlRU1SRJ/g0GK1TVJEn+DclGVNXatv4NBitU1dq2/g3JRlTV2rb7IslGQsAkSfsiyUZCwNq28WgJUArBJEnxaAlQCsH9YmuG//9U1fpjSon//1TV/WJrhnH6VNX6Y0qJcfpU1X5xznz//1TVfnHOfHH6VNV9eLJ7//9U1X14sntx+lTVfXiye///VNV9eLJ7cfpU1f9/Unv//1TV/39Se3H6VNX/f1J7//9U1f9/Untx+lTVgYeye///VNWBh7J7cfpU1YCOznz//1TVgI7OfHH6VNWClJJ+//9U1YKUkn5x+lTVfnEIkHH6VNV+cQiQ//9U1X14I5Fx+lTVfXgjkf//VNXgZt6A//9U1fpji4P//1TV4GbegHH6VNX6Y4uDcfpU1W2bPnQd8lTVyaaTdx3yVNV8a0SOcfpU1XxrRI7//1TVfnEIkHH6VNV+cQiQ//9U1fpjSon//1TV4Gb4i///VNX6Y0qJcfpU1eBm+Itx+lTVfGuSfv//VNXgZt6A//9U1Xxrkn5x+lTV4GbegHH6VNUemfiL//9U1QScSon//1TVHpn4i3H6VNUEnEqJcfpU1YKURI7//1TVHpn4i///VNWClESOcfpU1R6Z+Itx+lTVgYcjkXH6VNWBhyOR//9U1YCOCJBx+lTVgI4IkP//VNXgZviL//9U1XxrRI7//1TV4Gb4i3H6VNV8a0SOcfpU1YGHsnv//1TVgYeye3H6VNWAjs58//9U1YCOznxx+lTVgI4IkHH6VNWAjgiQ//9U1YKURI5x+lTVgpREjv//VNUEnIuD//9U1R6Z3oD//1TVBJyLg3H6VNUemd6AcfpU1f9/hJFx+lTV/3+Ekf//VNWBhyORcfpU1YGHI5H//1TV/LT8gB3yVNXatmuGHfJU1Xxrkn7//1TVfGuSfnH6VNV+cc58//9U1X5xznxx+lTVfXgjkXH6VNV9eCOR//9U1f9/hJFx+lTV/3+Ekf//VNUBnWuG//9U1QSci4P//1TVAZ1rhnH6VNUEnIuDcfpU1cmmk3cd8lTVga/sex3yVNUemd6A//9U1YKUkn7//1TVHpnegHH6VNWClJJ+cfpU1QScSon//1TVAZ1rhv//VNUEnEqJcfpU1QGda4Zx+lTV+mOLg///VNX9YmuG//9U1fpji4Nx+lTV/WJrhnH6VNWBr+x7HfJU1fy0/IAd8lTVAkv8gB3yVNV9UOx7HfJU1f9/Untx+v//fXiye3H6//+Bh7J7cfr//4COznxx+v//fnHOfHH6//98a5J+cfr//4KUkn5x+v//HpnegHH6///gZt6Acfr//wSci4Nx+v//+mOLg3H6//8BnWuGcfr///1ia4Zx+v//+mNKiXH6//8EnEqJcfr//+Bm+Itx+v//Hpn4i3H6//98a0SOcfr//4KURI5x+v//gI4IkHH6//9+cQiQcfr//314I5Fx+v//gYcjkXH6////f4SRcfr///9/aJsd8lTVMo6xmh3yVNXMcSVyHfJU1f9/bnEd8lTVfVDpkB3yVNUCS9qLHfJU1W2bmJgd8lTVyaZClR3yVNX/f25xHfJU1TKOJXId8lTVkWQ+dB3yVNXMcSVyHfJU1dq2a4Yd8lTV/LTaix3yVNU1WUKVHfJU1X1Q6ZAd8lTVAkvaix3yVNUkSWuGHfJU1fy02osd8lTVga/pkB3yVNUyjiVyHfJU1W2bPnQd8lTVNVmTdx3yVNWRZD50HfJU1ZFkmJgd8lTVzHGxmh3yVNUyjrGaHfJU1W2bmJgd8lTVJElrhh3yVNUCS/yAHfJU1TVZQpUd8lTVkWSYmB3yVNV9UOx7HfJU1TVZk3cd8lTVga/pkB3yVNXJpkKVHfJU1cxxsZod8lTV/39omx3yVNUkSWTOGqz8xSRJ4d8qpfzF2rZkzhqs/MXatuHfKqX8xb86bnFQwlTVvzrnxVDCVNW/Om5xbrRU1b8658VutFTV2rZkzhqsVNXatuHfKqVU1dq2ZM6aW1TV2rbh35pbVNW/Om5xUMJU1b86bnFutFTVP8VucVDCVNU/xW5xbrRU1T/F58VQwlTVP8VucVDCVNU/xefFbrRU1T/FbnFutFTVvzrnxW60VNW/OufFUMJU1T/F58VutFTVP8XnxVDCVNUkSWTOGqxU1SRJZM6aW1TVJEnh3yqlVNUkSeHfmltU1SRJZM6aW///2rZkzppb//8kSeHfmlv//9q24d+aW///fGvDuHH6VNV8a8O4//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TV/38DvHH6VNX/fwO8//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TVfVBpux3yVNUCS1m2HfJU1TVZwb8d8lTVkWQXwx3yVNXgZl2r//9U1fpjC67//1TV4GZdq3H6VNX6YwuucfpU1eBmd7b//1TVfGvDuP//VNXgZne2cfpU1Xxrw7hx+lTV/3/Rpf//VNX/f9GlcfpU1YGHMqb//1TVgYcypnH6VNWAjoe6cfpU1YCOh7r//1TVgpTDuHH6VNWClMO4//9U1QJLe6sd8lTVfVBrph3yVNX6Y8mz//9U1eBmd7b//1TV+mPJs3H6VNXgZne2cfpU1f1i6rD//1TV+mPJs///VNX9YuqwcfpU1fpjybNx+lTVgI5Np///VNWAjk2ncfpU1YKUEan//1TVgpQRqXH6VNUBneqw//9U1QScC67//1TVAZ3qsHH6VNUEnAuucfpU1f9/0aVx+v//fXgypnH6//+BhzKmcfr//4COTadx+v//fnFNp3H6//98axGpcfr//4KUEalx+v//Hpldq3H6///gZl2rcfr//wScC65x+v//+mMLrnH6//8Bneqwcfr///1i6rBx+v//+mPJs3H6//8EnMmzcfr//+Bmd7Zx+v//Hpl3tnH6//98a8O4cfr//4KUw7hx+v//gI6HunH6//9+cYe6cfr//314o7tx+v//gYeju3H6////fwO8cfr//4Gva6Yd8lTV/LR7qx3yVNX/f+fFHfJU1TKOMMUd8lTVHpldq///VNWClBGp//9U1R6ZXatx+lTVgpQRqXH6VNXJphOiHfJU1YGva6Yd8lTVbZu9nh3yVNXJphOiHfJU1XxrEan//1TV4GZdq///VNV8axGpcfpU1eBmXatx+lTV2rbqsB3yVNX8tFm2HfJU1SRJ6rAd8lTVAkt7qx3yVNX/fwO8cfpU1f9/A7z//1TVgYeju3H6VNWBh6O7//9U1YGHMqb//1TVgYcypnH6VNWAjk2n//9U1YCOTadx+lTVgYeju3H6VNWBh6O7//9U1YCOh7px+lTVgI6Huv//VNUyjqScHfJU1W2bvZ4d8lTV/3/tmx3yVNUyjqScHfJU1XxrEan//1TVfGsRqXH6VNV+cU2n//9U1X5xTadx+lTVfXgypv//VNV9eDKmcfpU1f9/0aX//1TV/3/RpXH6VNX6Ywuu//9U1f1i6rD//1TV+mMLrnH6VNX9YuqwcfpU1X5xTaf//1TVfnFNp3H6VNV9eDKm//9U1X14MqZx+lTVBJwLrv//VNUemV2r//9U1QScC65x+lTVHpldq3H6VNUEnMmz//9U1QGd6rD//1TVBJzJs3H6VNUBneqwcfpU1R6Zd7b//1TVBJzJs///VNUemXe2cfpU1QScybNx+lTVgpTDuP//VNUemXe2//9U1YKUw7hx+lTVHpl3tnH6VNX8tHurHfJU1dq26rAd8lTVzHGknB3yVNX/f+2bHfJU1TVZE6Id8lTVkWS9nh3yVNWRZBfDHfJU1cxxMMUd8lTVNVnBvx3yVNV9UGm7HfJU1QJLWbYd8lTVJEnqsB3yVNXMcTDFHfJU1f9/58Ud8lTVbZsXwx3yVNXJpsG/HfJU1TKOMMUd8lTVbZsXwx3yVNV9UGumHfJU1TVZE6Id8lTVkWS9nh3yVNXMcaScHfJU1YGvabsd8lTVyabBvx3yVNX8tFm2HfJU1YGvabsd8lTV2rblwwlvVNXatua85ZVU1dq25cOsmFTV2rbpp6yYVNXatua8y4pU1dq26K7llVTV2rborsuKVNXatumnCW9U1SRJ4d+aW1TVkWTh352fVNUkSeHfKqVU1dq24d8qpVTVkWTh39qXVNVtm+HfnZ9U1ZFk4d+7fVTVbZvh39qXVNWRZOHf+XVU1W2b4d+7fVTV2rbh35pbVNVtm+Hf+XVU1duZBadutP//q5/rqW60////f2mUbrT//0iSzKRutP//dolmo260////f+yibrT//4h2ZqNutP//tm3MpG60//8jZgWnbrT//1Ng66lutP//donvk260//8/xefFbrT//1KjS61utP//SJKJkm60//+RpOqwbrT//9uZUJButP//UqOJtG60//+rn2qNbrT//6uf6bdutP//UqMKim60///bmc+6brT//5Gka4ZutP//SJIIvW60//92iW6+brT//1KjzIJutP///3/ovm60//+/OufFbrT//4h2br5utP//P8VucW60//+2bQi9brT//6ufbH9utP//I2bPum60///bmYZ8brT//0iSTXputP//donneG60//+/Om5xbrT//1Ng6bdutP///39teG60//+sXIm0brT//21b6rButP//rFxLrW60//+Idu+TbrT//4h253hutP//tm2Jkm60//+2bU16brT//yNmUJButP//I2aGfG60//9TYGx/brT//6xczIJutP//U2BqjW60//9tW2uGbrT//6xcCoputP//JEnpp6yYVNUkSea85ZVU1SRJ5cOsmFTVJEnlwwlvVNUkSeiu5ZVU1SRJ5rzLilTVJEnppwlvVNUkSeiuy4pU1bZt8Wi8kVTVtm12HryRVNW2bfFowHhU1bZt/RQ3ilTVtm39FMB4VNVIknYevJFU1UiS8Wi8kVTVSJL9FDeKVNVIkvFowHhU1UiS/RTAeFTVJEnti4tiVNUkSe2Le2lU1dq27YuLYlTV2rbti3tpVNXatu2Li2JU1SRJ7Yt7aVTV/3////9/////f////3////9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f////3////9/////f///////f////3////9/////f/7//3//f////3////9/////f////3////9/////f////3////7//3////9/////f////3////9//v//f/7//3////9//v//f////3/+//9//v//f////3////9/////f////3////9/////f/7//39/zb8mf82/JpfETCKXxEwi/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/7//3/+//9//v//f////3////9/////f///VJZV01aNUeVUllXTVo1R5Qyb//8Mm///447//+OO////f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P6isVBaXxEwiqKxUFpfETCLZrv//krf//9mu//+St///2a7//9mu//8Mm///DJv//0uiZrtUllXTS6Jmu1SWVdNLoma7S6Jmu7+mf7K/pn+y/38AAP9/AAD/fwAA/38AANmu//+St///2a7//5K3///Zrv//2a7//wyb//8Mm////3////9/////f/7//3////9/////f////3/+//9//v//f/7//3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f///DJv//wyb///jjv//447///9/////f/7//3////9//v//f/7//3////9//v+tmlYNqKxUFq2aVg2orFQW/3////9/////f////3///////3////9/////f////3+/u///v7v//7+7//+/u////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9/AAD/fwAA/3//f////3///////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3+t4/9/reP/f////3////9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z8AAP9/AAD/fwAA/3//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9/c0f/f/8//39zR/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/reP/f63j/3////9/////f////3////9/////f////3+t4/9/csf/f63j/39yx/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/reP/f3LH/3+t4/9/csf/f////3/+//9/////f/7//3/+//9/////f////3/+//9/////f///////f////3////9/////f3/NvyZ/zb8ml8RMIpfETCL/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///9UVVRVVFVUVT9Zf00/WX9NVJZV01aNUeVUllXTVo1R5UuiZrtLoma7v6Z/sr+mf7K/pn+yv6Z/sqqqqqqqqqqqqHKtGv9/AACocq0a/38AAH8yP9l/Mj/ZqipU1aoqVNX/f///UWWo8v9///9RZajyVlOq6QFG/+JWU6rpAUb/4v9/AACtmlYN/38AAK2aVg3+nADG/pwAxkuiZrtLoma7UWWo8lZTqulRZajyVlOq6a2aVg2orFQWrZpWDaisVBaorFQW/bn/HKisVBb9uf8cAUb/4gFG/+JnO7LdZzuy3f6cAMZUllXT/pwAxlSWVdP/f////3////9/////f////3////9/////f////3////9/////f////3////9//v//f////3////9//v//f////3////9//v//f////3////9/////f////3/+//9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///9nO7LdZzuy3X8yP9l/Mj/ZVo1R5f9///9WjVHl/3///z9Zf00/WX9Ns12YRLNdmESzXZhEs12YRABj/jkAY/45qmmpLKhyrRqqaaksqHKtGpfETCKXxEwi/bn/HP25/xwAY/45qmmpLABj/jmqaaksVNWqKlTVqip/zb8mf82/Jv9/AACtmlYN/38AAK2aVg2XxEwil8RMIv25/xz9uf8c/3///1FlqPL/f///UWWo8v6cAMb+nADGS6Jmu0uiZrtU1aoqVNWqKn/NvyZ/zb8mf82/Jn/NvyaXxEwil8RMIqppqSyocq0aqmmpLKhyrRoAY/45qmmpLABj/jmqaaksfzI/2X8yP9mqKlTVqipU1VSWVdNWjVHlVJZV01aNUeWtmlYNqKxUFq2aVg2orFQWUWWo8lZTqulRZajyVlOq6UuiZrtLoma7v6Z/sr+mf7IBRv/iAUb/4mc7st1nO7LdqKxUFv25/xyorFQW/bn/HLNdmESzXZhEAGP+OQBj/jlWjVHl/3///1aNUeX/f///v6Z/sr+mf7KqqqqqqqqqqqhyrRr/fwAAqHKtGv9/AAA/WX9NP1l/TbNdmESzXZhEVlOq6QFG/+JWU6rpAUb/4lRVVFVUVVRVP1l/TT9Zf03+nADGVJZV0/6cAMZUllXTZzuy3Wc7st1/Mj/ZfzI/2f9/////f////3////9/////f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z////9/////f////3////9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38a8f9/8uT/fxrx/3/y5P9//v//f/7//3/+//9/////f////3/+//9//v//f////3////9/////f////3////9/////f/7//3/+//9//v//f2zI/38l0f9/bMj/fyXR/3/y5P9/gdr/f/Lk/3+B2v9/JdH/fyXR////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////38BRv/iAUb/4mc7st1nO7LdS6Jmu0uiZru/pn+yv6Z/slTVqipU1aoqf82/Jn/NvyZWjVHl/3///1aNUeX/f///l8RMIpfETCL9uf8c/bn/HKisVBb9uf8cqKxUFv25/xx/zb8mf82/JpfETCKXxEwiUWWo8lZTqulRZajyVlOq6f9///9RZajy/3///1FlqPL+nADGVJZV0/6cAMZUllXT/pwAxv6cAMZLoma7S6Jmu1ZTqukBRv/iVlOq6QFG/+K/pn+yv6Z/sqqqqqqqqqqqrZpWDaisVBatmlYNqKxUFqhyrRr/fwAAqHKtGv9/AACqaaksqHKtGqppqSyocq0aAGP+OappqSwAY/45qmmpLD9Zf00/WX9Ns12YRLNdmET/fwAArZpWDf9/AACtmlYN/3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///Zzuy3Wc7st1/Mj/ZfzI/2VSWVdNWjVHlVJZV01aNUeVUVVRVVFVUVT9Zf00/WX9NfzI/2X8yP9mqKlTVqipU1bNdmESzXZhEAGP+OQBj/jn/f////3////9/////f////3////9/////f////3////9/////f////3////9//v//f/7//3////9//v//f/7//3////9//v//f////3////9/////f////3/+//9/////f////3////9//v//f////3////9/////f////3/+//9//v//f/7//3/+//9//v//f/7//3/+//9/////f////3////9/////f////3////9/////f////3////9/////fwAArZpWDf9/AACtmlYNAUb/4gFG/+JnO7LdZzuy3T9Zf00/WX9Ns12YRLNdmERU1aoqVNWqKn/NvyZ/zb8mqmmpLKhyrRqqaaksqHKtGv9///9RZajy/3///1FlqPJLoma7S6Jmu7+mf7K/pn+yVlOq6QFG/+JWU6rpAUb/4lFlqPJWU6rpUWWo8lZTqumXxEwil8RMIv25/xz9uf8cVFVUVVRVVFU/WX9NP1l/TVaNUeX/f///Vo1R5f9///+tmlYNqKxUFq2aVg2orFQWqHKtGv9/AACocq0a/38AAABj/jmqaaksAGP+OappqSxnO7LdZzuy3X8yP9l/Mj/ZqKxUFv25/xyorFQW/bn/HLNdmESzXZhEAGP+OQBj/jlUllXTVo1R5VSWVdNWjVHl/pwAxv6cAMZLoma7S6Jmu3/NvyZ/zb8ml8RMIpfETCJ/Mj/ZfzI/2aoqVNWqKlTVv6Z/sr+mf7Kqqqqqqqqqqv6cAMZUllXT/pwAxlSWVdP/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f3d0dvSqaqnqd3R29KpqqeoAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3///3d0dvT/f///d3R29P///3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAd3SIC/9/AAB3dIgL/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3+qalUVd3SIC6pqVRV3dIgLAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////+//7//v/+//7//v/+//7//v/8//7//P/+//z//v/8/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3////9/AAD/f/9//3//f/9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3///////3////9/////f////3//f/9//3//fwAA/38AAP9//3////9///////9/////fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AADyZAwb/38AAPJkDBsl0SVRJdElUfLk8mTy5PJk8uTyZPLk8mT///9/////f////3////9/8uQMm/LkDJsl0dmuJdHZrv+//7//v/+/2S4lUdkuJVEMG/JkDBvyZNmu2S4Mmwwb2a7ZLgybDBvZLiVR/z//P/8//z//P/8/2S4lUdkuJVHyZAwbJVHZLvJkDBslUdku/7//P9mu2S7/v/8/2a7ZLiVRJdHyZPLkJVEl0fJk8uT/P/+/JVEl0f8//78lUSXRDBsMmwwbDJvZLtmu2S7ZriVR2S7/P/8/JVHZLv8//z/y5Ayb8uQMmyXR2a4l0dmu2S7Zrtku2a7/P/+//z//vwyb8uTZriXRDJvy5NmuJdEAAP9/AAD/fwwbDJsMGwyb8mQMG/9/AAD/v/8//7//PyXRJVEl0SVRDBvyZAwb8mQAAP9/AAD/f/9///8Mm/Lk/3///wyb8uT/P/8/JVHZLtmuJdH/v/+/2a4l0f+//7/yZPLk/3////Jk8uT/f///DJsMG/9/AAAMmwwb/38AACVR2S7yZAwb8mTy5CVRJdH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/8uTyZAwbDJsAAP9/2a4l0Qyb8uQl0SVR/7//PwAA/38MG/Jk2S7ZrgwbDJv/fwAADJsMG/+//7/ZriXRDJvy5P9///8Mmwwb2a7ZLgwb8mTZLiVR/z//v9ku2a4l0dmu8uQMm/Lk8mQl0SVR/3////Jk8uT/v/+/JdHZriVRJdH/P/+/2a7ZLv+//z/y5Ayb////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////z//P/8//z/ZLiVR2S4lUQwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk2a4l0Qyb8uT/v/+/JdHZrtmu2S4Mmwwb2a7ZLgybDBslUdku/z//PyVR2S7/P/8/////f////3/y5Ayb8uQMm9ku2a7ZLtmu/z//v/8//7/yZPLkJVEl0fJkDBslUdku8mQMGyVR2S7/fwAA8mQMG/9/AADyZAwbJdHZriXR2a7/v/+//7//v/9///8Mm/Lk/3///wyb8uT/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38lUdku8mQMG////3/y5PJk2a4l0f+//7/ZriXR/7//v/8//z8lUdku2S4lUf8//z//v/8/2a7ZLv+//z/Zrtku/38AAAybDBv/f///8mTy5AAA/38AAP9/DBsMmwwbDJvy5Ayb8uQMmyXR2a4l0dmuDBsMmwwbDJvZLtmu2S7Zrgwb8mTZLiVRAAD/fwwb8mT/v/8//7//PyXRJVEl0SVR8uTyZPLk8mT///9/////fwybDBv/fwAADJsMG/9/AAAl0SVRJdElUfLk8mTy5PJkDJvy5NmuJdEMm/Lk2a4l0fJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0fJkDBv/fwAADBsMmwAA/3//P/+/2S7ZriXR2a7y5Ayb/7//v9muJdEMm/Lk/3////LkDJv///9/JdElUf+//z/y5PJkJdElUSVRJdH/P/+/2S7ZrgwbDJvZrtku/7//PwybDBvZrtku/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"attribute_data": PackedByteArray("q3cEdOR0BHSrd0Nu5HRDbqt3fpKrd/+d5HR+kuR0/50ecj+Y4I0/mBqL/50ai36SU4h+klOI/52rdwR05HQEdKt3Q27kdENuU4j/nVOIfpIai/+dGot+kuCNP5gaiwR0U4gEdBqLQ25TiENuGosEdFOIBHQai0NuU4hDbh5yP5jkdH6S5HT/nat3/52rd36SbZPo8a+SyfRtk0XGp5Dk9uCNRcbgjejx4I2p9x5y6PEecqn3HnJFxldv5PZPbcn0kWxFxpFs6PE8Q8+SkEvPkjxDypWQS8qVgkLamqI/2pqCQjiSoj84kh5yGZWRbBmVHnLIkJFs1oMechV+T232gFdv234gGdqaIBk4kgJG2po8QziSPEPWg5BL1oPJSBSa0Ur5l5BLGZXCvNaDwrw4km601oP8udqa3ubamt7mOJI1txSaLbX5l260GZWnjtqax4vamqeOOJLHiziSwrwwhsK8K4lutDCGbrQriR5yq6WRbKulHnKxopFssaIecmXDHnLo8ZFsZcMecqn3V2/k9k9tyfSRbOjx4I2p9+CN6PHgjWXDp5Dk9q+SyfRtk+jxbZNlwzxDg5A8Q4mNkEuDkJBLiY0ecm7DHnJoxpFsbsORbGjGHnIJvZFsCb0ecg+6kWwPusK8iY3CvIOQbrSJjW60g5DCvMqVbrTKlcK8z5JutM+SN3Tamldx2po3dDiSV3E4km2TbsNtk2jG4I1uw+CNaMZtkwm94I0JvW2TD7rgjQ+6wrzIkMK8OJJutMiQ/Lnamt7m2pre5jiSNbcUmi21+ZdutBmVbZM4kuCNOJJtk9aD4I3IkOCNFX6vkvaAp5DbflzA2pp8vdqaXMA4kny9OJIgGdqaIBk4kgJG2po8QziSPEPIkJBLyJDJSBSa0Ur5l5BLGZXgjdqaHnLamuCNOJIecjiSyR7amskeOJKpIdqaqSE4kjXhOJI14dqaVd44klXe2poecjiSkWw4kh5yyJCRbNaDHnIVfk9t9oBXb9t+bZOrpeCNq6Vtk7Gi4I2xom2TGZXgjRmVbZPWg+CNyJDgjRV+r5L2gKeQ2348QyuJPEMwhpBLK4mQSzCG4I3amh5y2prgjTiSHnI4kjh9vTU4fTUKxoK9NcaCNQrGgvgKxoKANjh9+Ao4fYA2B87TbAfOEmer99Nsq/cSZ/cxpXz3MWaCUwjkdlMIpXzGgkoLxoJwNjh9Sgs4fXA2B85mggfOpXyr96V8q/fkdvcxEmf3MdNsUwgSZ1MI02w4fXA2OH1KC8aCcDbGgkoLU4i9tKt3vbRTiMiQq3fIkMaC5JHGgst/U4jkkVOIy3+Sj8iQko/uuz6HyJA+h02zx3VNs9Bz7rtCbmiv72W9tO9lyJBCbsiQU4hor8aCaK9TiMiQxoLIkFOImlVTiPlvq3eaVat3+W+rdyp3q3fLf1OIKnerd6+ZOH2vmTh9y3+rd1CiHnIGzB5y+W8ecrKzHnKkvR5yRcZTiFCi4I0GzFOIy39TiK+ZxoLLf8aCr5ngjUXG4I2kveCNsrPgjflvU4gqd1OI7pOrdyp3q3fuk1OI7rurd+67U4jIkKt3yJCrdwBYU4gAWKt3yGhTiMhoq3fIkB5yyJCrd2aCHnJmgjh9aK+rd2ivOH3IkKt3yJA4fU2zq3dNszh9yJCrd8iQU4jMiFOIgpHGgsyIxoKCkaWtl4n1r8iQc52XiYOWyJCDlmaCc51mgntpZoJ7aciQi2Jmgotil4kJUMiQWVKXiat3jJOrd3eDU4iMk1OId4NTiJeJq3eXiVOIZoKrd2aCU4hNs8aCTbNTiMiQxoLIkDh9zIg4fYKRq3fMiKt3gpHAeMiQwHhNs2xwyJBscO67N4pNsy6M7ru8kWivD5q9tLyRyJAPmsiQq3fkkat3y384feSROH3LfwAAKoWNBSqFAABrh40Fa4f/fwh8J4JUfNd9VHzVezB9KYQwfeKFj34ceo9+/38ZgNt+QYAjgUGAyXhZgDWHWYDLfbaA4nxwgS98YYL0d26Cvnt7gzOCtoAcg3CBz4Nhgqt3qoSYe6qEvnvYhQqIboJAhHuDZoSqhFOIqoRAhNiF9HflhgqI5YYvfPKG4nzkh8t9nYjPg/KGHIPkhzOCnYjJePqINYf6iCOBEonbfhKJ/386ieKFxIocesSK1XsjjCmEI4zXfQCNJ4IAjf9/S42NBRaIAAAWiI0F1YUAANWF//+9g////YVx+r2Dcfr9hf//a4dx+muH//8qhXH6KoX//xaIcfoWiP//1YVx+tWFAADQhQAAj4ONBdCFjQWPg3H61YX//9WFcfoWiP//Foj//4+D///QhXH6j4Nx+tCF//8VhP//VoZx+hWEcfpWhgAA0IUAAI+DjQXQhY0Fj4P//9KGcfrShv//koRx+pKE//+9g////YVx+r2Dcfr9hQAA/YUAAL2DjQX9hY0FvYMAAFaGAAAVhI0FVoaNBRWEcfqShP//koRx+tKG///Shv//FYT//1aGcfoVhHH6Vob/f0uN130AjSeCAI0phCOM1XsjjOKFxIocesSK/39qim+BOIqPfjiKNYf6iMaCpYnsg7uIyXj6iDh9pYkSfLuICojlhs6EiodchSeGU4iqhIyFqoT0d+WGMHuKh6J6J4YKiG6CXIUsg86EyYGrd6qEcnqqhKJ6LIP0d26CMHvJgTWHWYDsg5iAxoKuf8l4WYASfJiAOH2uf+KFj34ceo9+b4Ebf49+G3//f+l+KYQwfdV7MH0nglR8131UfP9/CHxx+iqF//8qhXH6a4f//2uH//+Pg///0IVx+o+DcfrQhY0Fa4cAAGuHjQUqhQAAKoWNBdKGAADSho0FkoQAAJKEAAD9hQAAvYONBf2FjQW9gwAAkoSNBZKEAADSho0F0oYAAFaGAAAVhI0FVoaNBRWEAADVhY0F1YUAABaIjQUWiOENcIXhDe+DkEtwhZBL74PhDfKEkEvyhOENcoaQS3KGHfLvgx3ycIVutO+DbrRwhR3ycoZutHKGHfLyhG608oThDTWGkEs1huENtoeQS7aH4Q2LhZBLi4XhDQuHkEsLh+ENnYXhDR2EkEudhZBLHYThDfaF4Q11hJBL9oWQS3WEbrQ1hh3yNYZutLaHHfK2hx3yHYQd8p2FbrQdhG60nYXhDZ2F4Q0dhJBLnYWQSx2EHfIdhB3ynYVutB2EbrSdhR3yC4dutAuHHfKLhW60i4VutPKEHfLyhG60coYd8nKG4Q32heENdYSQS/aFkEt1hJBLcobhDXKGkEvyhOEN8oQd8u+DHfJwhW6074NutHCFHfK2h260tocd8jWGbrQ1huENcIXhDe+DkEtwhZBL74OQSwuH4Q0Lh5BLi4XhDYuFHfJ1hB3y9oVutHWEbrT2hZBLtofhDbaHkEs1huENNYYd8nWEHfL2hW60dYRutPaFbrSLhR3yi4VutAuHHfILh+CNyJBTiMiQ4I1mglOIZoIphOFf1XvhXymEt1rVe7da1XvhX9V7t1ophOFfKYS3WimE9YQphAeg1Xv1hNV7B6DVeweg1Xv1hCmEB6AphPWEKYThX9V74V8phLda1Xu3WtV74V/Ve7daKYThXymEt1pDguFfQ4K3WgWK4V9Dgq1SJIbAU72GX1T7iLJWBYq3WiRorVIkaLdaJGjhX0JkwFOpY19Ua2GyVmFgt1phYOFf1XvsXtV7w1ophOxeKYTDWvl1t1oDd7JW+XXhX0F5X1TaecBTu33hX7t9t1q7fa1S2pe3WtqXrVLal+FfvJvAU1WcX1STnrJWnZ/hX52ft1ophPN7KYQcgNV783vVexyA1XuEa9V7O2gphIRrKYQ7aNV7WmcphFpn1XuQkSmEkJHVe7mVKYS5ldV7LXcphC131XsNeCmEDXgphFZ71XtWeymEt2TVe7dkKYSNYNV7jWBx+u95///veXH6L3z//y98//+7gHH6u4D//3t+cfp7fgAAjYONBY2DAADOhY0FzoX//zxy//99dHH6PHJx+n10AADveY0F73kAAC98jQUvfAAAeXgAADh2jQV5eI0FOHYAAHt+jQV7fgAAu4CNBbuA//+Yc///2XVx+phzcfrZdf//PHL//310cfo8cnH6fXT//zh2//95eHH6OHZx+nl4//8vfHH6L3z//+95cfrvef//OHb//3l4cfo4dnH6eXj//86FcfrOhf//jYNx+o2DAADZdQAAmHONBdl1jQWYcwAAfXQAADxyjQV9dI0FPHIAANl1AACYc40F2XWNBZhzAAB5eAAAOHaNBXl4jQU4do0Fu4AAALuAjQV7fgAAe34AAH10AAA8co0FfXSNBTxy/3/Se9d9hnsngoZ7KYSqetV7qnrihUt5HHpLeTWHgXf/f8F3yXiBdyOBmXfbfpl3M4Ikd8t9JHcKiGx19HdsdRyDa3bPg3l1QIRfdFOIMHNmhDBz4nxrdi98eXW+e190Coj1cECEAnLPg+hwq3cwc5h7MHO+ewJy9Hf1cC986HA1h+BuyXjgbhyD9m8zgj1vI4HIbuJ89m/LfT1v237IbuKFFm0cehZt/3+gbtV7t2sphLdrJ4Laatd92mr/f49qcfp7fv//e35x+ruA//+7gP//mHP//9l1cfqYc3H62XWNBc6FAADOhY0FjYMAAI2DcfqNg///jYNx+s6F///OhY0FL3wAAC98jQXveQAA73n/f9J7132GeyeChnsphKp61XuqeuKFS3kcekt5/3/xeG+Bv3iPfr94NYeBd8aCLHjsg0J3yXiBdzh9LHgSfEJ3Cohsdc6EEXZcha50U4gwc4yFMHP0d2x1MHsRdqJ6rnQKiPVwXIWzcc6EUHCrdzBzcnowc6J6s3H0d/VwMHtQcDWH4G7sgx9vxoI1bsl44G4SfB9vOH01buKFFm0cehZtb4GibY9+om3/f3BtKYS3a9V7t2sngtpq133aav9/j2rhDR104Q2ccpBLHXSQS5xybrRPeh3yT3putM97HfLPe5BLW4DhDVuAkEvbfuEN237hDe2DkEvtg+ENboWQS26F4Q15deEN+HOQS3l1kEv4cx3ynHId8h10brSccm60HXQd8luAbrRbgB3y235utNt+HfKYdh3yGXhutJh2brQZeB3y+HMd8nl1brT4c260eXXhDU96kEtPeuENz3uQS897kEtuheENboWQS+2D4Q3tgx3ynHId8h10brSccm60HXThDXl14Q34c5BLeXWQS/hz4Q0ddOENnHKQSx10kEuccuENGXjhDZh2kEsZeJBLmHZutNt+HfLbfm60W4Ad8luA4Q0ZeOENmHaQSxl4kEuYdpBLz3vhDc97kEtPeuENT3od8vhzHfJ5dW60+HNutHl1HfLPe260z3sd8k96brRPeuEN236QS9t+4Q1bgJBLW4ButO2DHfLtg260boUd8m6FHfJuhW60boUd8u2DbrTtgx3ymHYd8hl4brSYdm60GXirdxJnHnLTbB5yEmfgjRJn4I3TbFOIEmcra0NuYHFDbitrBHRgcQR0no5Dbp6OBHRpiENuaYgEdNOUQ27TlAR0no5Dbp6OBHRgcUNulXdDbmBxBHSVdwR0kEvIkJBLFX4pVciQKVVmglJnY2s8QxV+UmfkdoOWZoL1kOR2rj0SZzxDyJCuPciQRbISZ/WQY2tFstNsB85mggfO02weciqfV28qnx5yyJCRbMiQHnJmgpFsZoKnkCqf4I0qn22TyJBtk2aCkWyys5Fs+W8ecrKzHnL5b9WqpozVqlGbe2mmjHtpUZunkPlvp5Cys+CN+W/gjbKz9zHTbLlN02z3MWaCe2lmgrlNEmcJb+R2rJjkdglvY2vVqmaCrJhja1DCEmfCvBV+UMLIkMK8yJButBV+brTIkNWqyJApVSqfKVXIkIOWKp+DlsiQ1apmgtWqyJB7aWaCe2nIkOR0oQjkdAAAGouhCBqLAAAecvlvHnKys1dv+W9Xb7KzGos/VOR0P1Qai4VK5HSFStWqyJDVqiqfe2nIkHtpKp/gjbKz4I35b22TsrNtk/lvBQ1UWFMIwWDOBQRUUwi3iM4FdJUFDSSRAAAHiwAAcV4ai+2j5HTtoxqLM5rkdDOa5HQK/OR0afMaiwr8Gotp8/nyJJGr97eIMPp0lav3wWAw+gRU+fJUWP//B4v//3FeKVXIkClVZoKDlsiQg5ZmguR0P1TkdDVIGos/VBqLNUgaiz2m5HQ9phqLM5rkdDOaHnIqn1dvKp+RbMiQkWxmghqLB4vkdAeLGotxXuR0cV6nkCqf4I0qn22TyJDgjciQbZNmguCNZoIpVVGbKVWmjIOWUZuDlqaMHnL5bx5ycDard/lvq3fIaKt3ZlpTiMhoq3ehPTh9cDbGgnA2U4hmWlOI+W/gjflvU4ihPeCNcDbgjWaCxoJmguCN02zGgqV8OH2lfMaC02zGghJnU4gSZx5y02w4fdNsOH0SZ6t3EmcecmaCOH1mgrlNwH73McB+uU2ddvcxnXZFssB+RbKddgfOwH4Hzp124I00U+CNBsxTiDRTU4iXYVOIcDard3A2q3c0U1OIA7Wrd5dhq3cDtR5yBswecjRT5HS3iMaCpXwai7eIGovBYDh9pXzGguR25HTBYDh95HY4fdNsxoLTbDh9EmfGghJnHnLIkIKKS43gjciQ4I0SZ3x1S42Cio9qHnISZ3x1j2qrd7p1q3fgoB5yunUecuCgU4jgoFOIunXgjeCg4I26dat35HYecuR2q3djax5yY2urd+R2HnLkdqt3Y2secmNr4I26deCN4KBTiLp1U4jgoOCN5HZTiOR24I1ja1OIY2vgjeR2U4jkduCNY2tTiGNrHnLgoB5yunWrd+Cgq3e6dapUZoLnOGaCyUaMrclGLrYGKy62BiuMrVOIbserd27HU4jzmat385lTiC62q3cutlOIjK2rd4ytU4gutqt3LrZTiIytq3eMrVOIbpird26YU4jakKt32pA1uS62NbmMrfjULrYXx2aC+NSMrVSrZoJTiD8vU4gDTKt3Py+rdwNMU4hWvqt3Vr5TiAOgq3cDoAAASIUAABeEjQVIhY0FF4QAALKFjQWyhQAA44aNBeOGAABdho0FXYYAAI6HjQWOh///jodx+o6H//9dhnH6XYb//0uGcfpLhv//GoVx+hqFjQXjhgAA44aNBbKFAACyhQAAdoUAAEWEjQV2hY0FRYThDdKG4Q2ShI0FS4YAAEuGjQUahQAAGoUAAHaFAABFhI0FdoWNBUWEAADOhQAAnYSNBc6FjQWdhP//RYT//3aFcfpFhHH6doX//52E///OhXH6nYRx+s6Fcfqyhf//soVx+uOG///jhgAAzoUAAJ2EjQXOhY0FnYT//+OGcfrjhv//soVx+rKFcfoahf//GoVx+kuG//9Lhv//RYT//3aFcfpFhHH6doVx+l2G//9dhnH6jof//46H4Q3QheENj4MAABqFjQUahQAAS4aNBUuGjQWOhwAAjoeNBV2GAABdhv//F4T//0iFcfoXhHH6SIXhDVaG4Q0VhP//nYT//86FcfqdhHH6zoX//xeE//9IhXH6F4Rx+kiFAABIhQAAF4SNBUiFjQUXhOEN/YXhDb2DHfK9gx3y/YX/fzqJ234SiSOBEokzgp2Iy32diOJ85Iccg+SHz4Pyhi988oZAhNiFvnvYhWaEqoSYe6qEvnt7g0CEe4MvfGGCz4NhguJ8cIEcg3CBM4K2gMt9toDbfkGAI4FBgP9/GYDhDdWF4Q0WiB3y1YUd8haIHfK9gx3y/YXhDZKE4Q3ShuENFojhDdWFHfIqhR3ya4fhDdCF4Q2Pgx3yFYQd8laGHfKPgx3y0IXhDf2F4Q29g+ENa4fhDSqFHfKShB3y0oYd8muHHfIqheENKoXhDWuHHfKPgx3y0IUd8tKGHfKShB3yFYQd8laG4Q1WhuENFYQd8haIHfLVhat31ZCrd6mGU4jVkFOIqYauPUuNrj2PapBLS42QS49q5FMSZ9Ra4V9kpBJnZKThX3x1Bsx8daS9gooGzIKKpL1Qwo9qUMJLjW60j2putEuNgoqkvYKKBsx8daS9fHUGzBqsEmeaWxJnKqXhX5pb4V9TiBJnq3cSZ1OI4V+rd+FfjQWnewAAp3uNBXZ6AAB2eo0FRoUAAEaFjQUVhAAAFYSNBTSAAAA0gI0FA38AAAN/HfKYcx3y2XUd8i98HfLveQAAUXUAACB0jQVRdY0FIHQAAPF3AADAdo0F8XeNBcB2//9GhXH6RoX//xWEcfoVhHH6dnr//3Z6cfqne///p3sd8phzHfLZdQAAUXUAACB0jQVRdY0FIHQAAPVzAADEco0F9XONBcRy//+ne3H6p3v//3Z6cfp2ev//xHL///VzcfrEcnH69XP/f8F3236ZdyOBmXczgiR3y30kd+J8a3Ycg2t2z4N5dS98eXVAhF90vntfdGaEMHOYezBzvnsCckCEAnIvfOhwz4PocOJ89m8cg/ZvM4I9b8t9PW/bfshuI4HIbv9/oG7hDdl14Q2Yc+ENjYPhDc6F///Adv//8Xdx+sB2cfrxd+ENeXjhDTh24Q0vfOEN73kAAPF3AADAdo0F8XeNBcB24Q19dOENPHId8jxyHfJ9dHH6FYT//xWEcfpGhf//RoX//zSAcfo0gP//A39x+gN/cfoDf///A39x+jSA//80gOENu4DhDXt+4Q3OheENjYMAAHZ6jQV2egAAp3uNBad7AAAVhI0FFYQAAEaFjQVGhQAA9XMAAMRyjQX1c40FxHIAAAN/jQUDfwAANICNBTSA//8gdP//UXVx+iB0cfpRdf//xHL///VzcfrEcnH69XP//yB0//9RdXH6IHRx+lF1///Adv//8Xdx+sB2cfrxd+ENfXThDTxyHfKNgx3yzoUd8u95HfIvfB3yu4Ad8nt+HfI4dh3yeXgd8jxyHfJ9dB3yzoUd8o2D4Q3veeENL3zhDXt+4Q27gB3yOHYd8nl4HfJ7fh3yu4DhDXl44Q04duEN2XXhDZhz9ZBjaxlqQ25SZ2NrUmfkdjN1Q24ZagR0M3UEdPWQ5Hard5dh1XsRqKt30q1TiNKt1XsHoCmEEajVe/WEKYQHoNV763wphPWEU4iXYSmE63zsg0J3zoQRdv9/6X7Ggix4b4G/eP9/8XiPfr94OH0seBJ8QncwexF2b4Ebf4KKj2pcha50xoKuf4yFMHPsg5iAXIWzcc6EyYHOhFBwXIUsg+yDH2+MhaqExoI1bm+Bom1chSeG/39wbXx1j2qPfqJtgopLjTh9NW7OhIqHEnwfb+yDu4jGgqWJb4E4inx1S40we1Bw/39qiqJ6s3FyejBzonqudI9+G3+PfjiKOH2ufzh9pYkSfJiAEny7iDB7ioeieieGMHvJgXJ6qoSieiyDrJjkduWVQ26smGNrCW9ja+WVBHTLikNuCW/kdsuKBHS8kciQvJFor8B4yJA3ik2zwHhNs0JuaK9CbsiQx3VNsz6HyJA+h02zOH3Lfzh95JGrd8t/OH3Lfzh95JGrd8t/"), -"format": 34896613399, -"index_count": 516, -"index_data": PackedByteArray("AAT+A/8DAwQBBAIEBgQEBAUEBQQHBAYECgQIBAkECQQLBAoEDgQMBA0EDQQPBA4EEgQQBBEEEQQTBBIEFgQUBBUEFwQWBBUEGAQXBBUEGAQVBBkEFwQYBBoEGgQbBBcEGgQcBBsEHQQYBBkEHQQZBB4EHgQfBB0EHQQgBBgEIAQbBBwEIAQhBBgEIAQcBCEEIAQiBBsEIwQbBCIEIgQkBCMEJwQlBCYEJgQoBCcEKAQpBCcEKAQqBCkELQQrBCwELASGAi0EhgIuBC0EhgKIAi4EMQQvBDAEMAQyBDEENQQzBDQENAQ2BDUEOQQ3BDgEOAQ6BDkEPQQ7BDwEPgQ9BDwEPgQ8BD8EQAQ+BD8EPgRABEEEQgRABD8EQwQ+BEEERARCBD8EQQREBEMERAQ/BEUERgREBEUERQRHBEYESARGBEcERgRJBEQESQRDBEQESQRKBEMESwRDBEoETgRMBE0ETQRPBE4EUgRQBFEEUQRTBFIEVgRUBFUEVQRXBFYEWgRYBFkEWQRbBFoEXgRcBF0EXQRfBF4EYgRgBGEEYQRjBGIEZgRkBGUEZQRnBGYEagRoBGkEaQRrBGoEawRsBGoEbARrBG0EbARuBGoEbgRvBGoEcgRwBHEEcQRzBHIEdgR0BHUEdQR3BHYEegR4BHkEeQR7BHoEfAR6BHsEewR9BHwEfAR+BHoEfAR/BH4EggSABIEEgQSDBIIEhgSEBIUEhQSHBIYEigSIBIkEiQSLBIoELQGMBI0EjQSOBC0BjgQvAS0BjgSPBC8BkgSQBJEEkQSTBJIElgSUBJUElQSXBJYElwSYBJYElwSZBJgEnASaBJsEmwSdBJwEoASeBJ8EoQSgBJ8EogShBJ8EowShBKIEpASiBJ8EpASfBKUEpASlBKYEogSnBKMEqASjBKcEqQSoBKcEqgSkBKYEpwSqBKkEqgSmBKsEqwSpBKoErgSsBK0ErQSvBK4ErwSwBK4EsASxBK4EsQSyBK4EsgSzBK4EtASxBLAEtAS1BLEEtAS2BLUEtAS3BLYEuAS0BLAEsAS5BLgEvAS6BLsEuwS9BLwEwAS+BL8EvwTBBMAExATCBMMExQTEBMMExgTEBMUE7gDGBMUE7ADuAMUExwTsAMUEyATHBMUEyQTFBMMEyATFBMoEywTJBMMEyATKBMsEywTDBMwEywTNBMgEzATNBMsE0ATOBM8EzwTRBNAE0gTPBM4EzwTTBNEEzgTUBNIE0wTVBNEE1ATVBNIE1ATWBNUE1gTXBNUE1QTXBNEE1ATYBNYE1ATRBNgE1wTZBNEE2QTYBNEE3ATaBNsE2wTdBNwE3gTbBNoE2wTfBN0E2gTgBN4E3wThBN0E4AThBN4E4ATdBOEE"), -"material": SubResource("StandardMaterial3D_vvlwu"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(36.3075, 35.0357, 0, 0), -"vertex_count": 1782, -"vertex_data": PackedByteArray("2rborsuK//8jyeiuy4r//9q25rzLiv//I8nmvMuK///atuiuy4pU1dq26K7llVTVI8norsuKVNUjyeiu5ZVU1Wzb6K5YkFTVkiTorliQVNXbNuiu5ZVU1ds26K7LilTVJEnorsuKVNUkSeiu5ZVU1SRJ6K7llf//2zboruWV//8kSea85ZX//9s25rzllf//2rbmvOWVVNXatua8y4pU1SPJ5rzllVTVI8nmvMuKVNVs2+a8WJBU1SPJ6K7llf//2rboruWV//8jyea85ZX//9q25rzllf//2zborsuK//8kSeiuy4r//9s25rzLiv//JEnmvMuK//+SJOa8WJBU1ds25rzLilTV2zbmvOWVVNUkSea85ZVU1SRJ5rzLilTV/v9yZd7mVNUY+3JlpOlU1f7/cmXCvFTVte1yZa3rVNVs23JlwrxU1WzbcmXe5lTVbNtyZWvsVNWSJHJl3uZU1ZIkcmVr7FTVkiRyZcK8VNVJEnJlretU1eYEcmWk6VTVAAByZcK8VNUAAHJl3uZU1Wzba5bCvFTVbNtrlm60VNW17YuUwrxU1bXti5RutFTVGPt1UKTpSsq17XVQreu6whj7cmWk6UrKte1yZa3rusJs23NebrT///7/c15utP//bNvxaG60///+/22IbrT//2zba5ZutP//GPtsj260//+17YuUbrT///7/dVDe5lTV/v9yZd7mVNX+/3VQ/LlU1f7/cmXCvFTV/v9tiMK8VNX+/22IbrRU1f7/VVI1t1TV/v90Vy21VNX+/3NebrRU1QAAbYjCvFTVAAByZcK8VNUAAG2IbrRU1QAAdVD8uVTVAAB1UN7mVNUAAHJl3uZU1QAAVVI1t1TVAAB0Vy21VNUAAHNebrRU1ZIkdVBr7LDASRJ1UK3rusKSJHJla+ywwEkScmWt67rC5gRsj8K8VNUAAG2IwrxU1eYEbI9utFTVAABtiG60VNVs23RXLbX/8P7/dFcttf/wbNtzXm60dvj+/3NebrR2+GzbdVD8uVTVbNt1UN7mVNX+/3VQ/LlU1WzbdVBr7FTVte11UK3rVNUY+3VQpOlU1f7/dVDe5lTVkiR1UGvsVNWSJHVQ3uZU1ZIkdVD8uVTVSRJ1UK3rVNXmBHVQpOlU1QAAdVDe5lTVAAB1UPy5VNUY+2yPwrxU1bXti5TCvFTVGPtsj260VNW17YuUbrRU1WzbVVI1t4zibNt1UPy5vNv+/1VSNbeM4v7/dVD8ubzbbNtVUjW3jOL+/1VSNbeM4mzbdFcttf/w/v90Vy21//BJEouUwrxU1eYEbI/CvFTVSRKLlG60VNXmBGyPbrRU1UkSi5TCvFTVSRKLlG60VNWSJGuWwrxU1ZIka5ZutFTVte11UK3rusJs23VQa+ywwLXtcmWt67rCbNtyZWvssMAAAFVSNbeM4gAAdVD8ubzbkiRVUjW3jOKSJHVQ/Lm82wAAVVI1t4zikiRVUjW3jOIAAHRXLbX/8JIkdFcttf/wbNvxaMK8VNVs23JlwrxU1Wzb8WhutFTVbNt1UPy5VNVs23VQ3uZU1WzbcmXe5lTVbNtVUjW3VNVs23RXLbVU1Wzbc15utFTV/v9yZcK8//9s23Jlwrz///7/bYjCvP//bNvxaMK8//9s22uWwrz//xj7bI/CvP//te2LlMK8//9JEnVQreu6wuYEdVCk6UrKSRJyZa3rusLmBHJlpOlKypIkdVDe5lTVkiRyZd7mVNWSJHVQ/LlU1ZIkcmXCvFTVkiTxaMK8VNWSJPFobrRU1ZIkVVI1t1TVkiR0Vy21VNWSJHNebrRU1WzbdVBr7P//kiR1UGvs//9s23Jla+z//5IkcmVr7P//GPt1UKTpSsoY+3JlpOlKyv7/dVDe5nfP/v9yZd7md8/mBHJlpOlKyuYEdVCk6UrKAAByZd7md88AAHVQ3uZ3z5IkcmXCvP//AAByZcK8//+SJPFowrz//wAAbYjCvP//kiRrlsK8///mBGyPwrz//0kSi5TCvP//AAB0Vy21//CSJHRXLbX/8AAAc15utHb4kiRzXm60dvgAAHNebrT//5Ikc15utP//AABtiG60//+SJPFobrT//5Ika5ZutP//5gRsj260//9JEouUbrT///7/bYjCvFTVGPtsj8K8VNX+/22IbrRU1Rj7bI9utFTVkiR1UN7m//9s23VQ3ub//5IkcmXe5v//bNtyZd7m//+2beuZ9zFI0rZt6adTCEjSSJLrmfcxSNJIkumnUwhI0rZt65lTCIPYtm3ti/cxg9hIkuuZUwiD2EiS7Yv3MYPYSJJmwPcxVNVIkmTO9zFU1UiSZsBTCFTVSJJkzlMIVNW2beuZ9zFU1bZt7Yv3MVTVtm3pp1MIVNW2beuZUwhU1bZtZsBTCFTVtm1mwPcxVNVIkmbAUwhU1UiSZsD3MVTVSJLti/cxVNVIkuuZ9zFU1UiS65lTCFTVSJLpp1MIVNW2bWTO9zFU1bZtZsD3MVTVtm1kzlMIVNW2bWbAUwhU1bZtZM73Mf+/tm1kzlMIVNVIkmTO9zH/v0iSZM5TCFTV2rZ9EQ+aCsMkSX0RD5oKw9q28WgPmv//JEnxaA+a//9Ikv0UN4r62kiS/RTAeFTV2rb9FDeK+tratv0UwHhU1dq28WhscFTV2rYAAGxwVNXatvFowHhU1dq2/RTAeFTV2rb9FDeKVNXatgAALoxU1dq2dh68kVTV2rZ9EQ+aVNXatvFoD5pU1dq28Wi8kVTVJEl2HryRJvC2bXYevJEm8CRJ8Wi8kf//tm3xaLyR//8kSfFoCVBU1SRJ8Wh7aVTV2rbxaAlQVNXatvFoe2lU1dq28WhscFTV2rbxaMB4VNUkSfFobHBU1dq28Wi8kVTVSJLxaLyRVNVIkvFowHhU1dq28WgPmlTVbNvxaFDCVNVs2/Foe2lU1Wzb8WjVqlTVbNvxaG60VNVs2/FowrxU1SRJ8WgPmlTVkiTxaFDCVNUkSfFowHhU1SRJ8Wi8kVTVtm3xaMB4VNW2bfFovJFU1ZIk8WjCvFTVkiTxaG60VNWSJPFo1apU1ZIk8Wh7aVTVJEkAAGxwVNUkSQAALowa0Nq2AABscFTV2rYAAC6MGtAkSQAAbHD//9q2AABscP//JEnxaGxw///atvFobHD//yRJb3pZUlTV2rZvellSVNUkSW96i2JU1dq2b3qLYlTV2rbxaHtp//9s2/Foe2n//9q27Yt7af//bNvti3tp//9IknYevJEm8Nq2dh68kSbwSJLxaLyR///atvFovJH//7Zt/RTAeP//JEn9FMB4//+2bfFowHj//yRJ8WjAeP//JEl2HryRJvAkSf0UN4r62rZtdh68kSbwtm39FDeK+tratm96WVJU1dq28WgJUFTV2rZveotiVNXatvFoe2lU1dq27Yt7aVTV2rbti4tiVNUkSe2Le2lU1SRJ8Wh7aVTVJEnti4tiVNUkSW96i2JU1SRJ8WgJUFTVJElvellSVNUkSQAALowa0CRJfREPmgrD2rYAAC6MGtDatn0RD5oKwyRJb3qLYv//2rZveoti//8kSe2Li2L//9q27YuLYv//2rb9FMB4//9Ikv0UwHj//9q28WjAeP//SJLxaMB4//9IknYevJEm8EiS/RQ3ivra2rZ2HryRJvDatv0UN4r62iRJ8WjAeFTVJEn9FMB4VNUkSfFobHBU1SRJAABscFTVJEn9FDeKVNUkSQAALoxU1SRJdh68kVTVJEl9EQ+aVNUkSfFovJFU1SRJ8WgPmlTVJEn9FDeK+tokSf0UwHhU1bZt/RQ3ivratm39FMB4VNUyjrGa//9U1TKOsZpx+lTVbZuYmP//VNVtm5iYcfpU1f9/aJv/////Mo6xmv/////McbGa/////5FkmJj/////bZuYmP/////JpkKV/////zVZQpX//////3+Ekf////99eCOR/////4GHI5H/////fVDpkP////+Br+mQ/////35xCJD/////fGtEjv/////gZviL/////wJL2ov/////+mNKif////+AjgiQ/////4KURI7/////Hpn4i/////8kSWuG//////1ia4b/////+mOLg//////8tNqL/////wScSon/////AZ1rhv/////atmuG/////wSci4P/////Akv8gP/////8tPyA/////+Bm3oD/////fGuSfv////9+cc58/////x6Z3oD/////gpSSfv////+Ajs58/////31Q7Hv/////ga/se/////+Bh7J7/////314snv//////39Se//////JppN3/////zVZk3f/////kWQ+dP////9tmz50/////8xxJXL/////Mo4lcv//////f25x//////9/bnFx+lTV/39ucf//VNUyjiVycfpU1TKOJXL//1TVfVDpkP//VNUCS9qL//9U1X1Q6ZBx+lTVAkvai3H6VNWRZJiY//9U1ZFkmJhx+lTVzHGxmv//VNXMcbGacfpU1cxxsZr//1TVzHGxmnH6VNX/f2ib//9U1f9/aJtx+lTV/LT8gP//VNXatmuG//9U1fy0/IBx+lTV2rZrhnH6VNXMcSVycfpU1cxxJXL//1TV/39ucXH6VNX/f25x//9U1SRJa4b//1TVAkv8gP//VNUkSWuGcfpU1QJL/IBx+lTVfVDse///VNU1WZN3//9U1X1Q7Htx+lTVNVmTd3H6VNXatmuG//9U1fy02ov//1TV2rZrhnH6VNX8tNqLcfpU1TVZQpX//1TVNVlClXH6VNWRZJiY//9U1ZFkmJhx+lTVAkv8gP//VNV9UOx7//9U1QJL/IBx+lTVfVDse3H6VNX8tNqL//9U1YGv6ZD//1TV/LTai3H6VNWBr+mQcfpU1YGv6ZD//1TVyaZClf//VNWBr+mQcfpU1cmmQpVx+lTVNVmTd3H6VNU1WZN3//9U1ZFkPnRx+lTVkWQ+dP//VNU1WUKV//9U1X1Q6ZD//1TVNVlClXH6VNV9UOmQcfpU1f9/bnEd8v//Mo4lch3y///McSVyHfL//5FkPnQd8v//bZs+dB3y//81WZN3HfL//8mmk3cd8v///39teB3y//+Idud4HfL//3aJ53gd8v//fVDsex3y//+2bU16HfL//yNmhnwd8v//ga/sex3y//9Ikk16HfL//9uZhnwd8v//Akv8gB3y//9TYGx/HfL//6xczIId8v//JElrhh3y//9tW2uGHfL///y0/IAd8v//q59sfx3y//9So8yCHfL//wJL2osd8v//rFwKih3y//9TYGqNHfL//9q2a4Yd8v//kaRrhh3y//9SowqKHfL///y02osd8v//q59qjR3y//99UOmQHfL//yNmUJAd8v//tm2Jkh3y//+Br+mQHfL//9uZUJAd8v//SJKJkh3y//81WUKVHfL//8mmQpUd8v//iHbvkx3y//92ie+THfL///9/aZQd8v//kWSYmB3y//9tm5iYHfL//8xxsZod8v//Mo6xmh3y////f2ibHfL//5FkPnRx+lTVkWQ+dP//VNXMcSVycfpU1cxxJXL//1TVAkvai///VNUkSWuG//9U1QJL2otx+lTVJElrhnH6VNUyjiVycfpU1TKOJXL//1TVbZs+dHH6VNVtmz50//9U1W2bPnRx+lTVbZs+dP//VNXJppN3cfpU1cmmk3f//1TVga/se///VNX8tPyA//9U1YGv7Htx+lTV/LT8gHH6VNVtm5iY//9U1W2bmJhx+lTVyaZClf//VNXJpkKVcfpU1cmmk3f//1TVga/se///VNXJppN3cfpU1YGv7Htx+lTV/39om///VNX/f2ibcfpU1TKOsZr//1TVMo6xmnH6VNWRpGuGHfJU1VKjCood8lTVkaRrhm60VNVSowqKbrRU1UiSiZId8lTVSJKJkm60VNXbmVCQHfJU1duZUJButFTVbVtrhh3yVNWsXMyCHfJU1W1ba4ZutFTVrFzMgm60VNUjZlCQHfJU1SNmUJButFTVtm2Jkh3yVNW2bYmSbrRU1f9/aZQd8lTV/39plG60VNV2ie+THfJU1XaJ75NutFTVdonvkx3yVNV2ie+TbrRU1UiSiZId8lTVSJKJkm60VNWrn2x/HfJU1VKjzIId8lTVq59sf260VNVSo8yCbrRU1duZhnwd8lTVq59sfx3yVNXbmYZ8brRU1aufbH9utFTViHbneG60VNWIdud4HfJU1f9/bXhutFTV/39teB3yVNVTYGqNHfJU1axcCood8lTVU2BqjW60VNWsXAqKbrRU1VKjCood8lTVq59qjR3yVNVSowqKbrRU1aufao1utFTVrFzMgh3yVNVTYGx/HfJU1axczIJutFTVU2Bsf260VNW2bYmSHfJU1bZtiZJutFTViHbvkx3yVNWIdu+TbrRU1SNmhnxutFTVI2aGfB3yVNW2bU16brRU1bZtTXod8lTVq59qjR3yVNXbmVCQHfJU1aufao1utFTV25lQkG60VNVIkk16brRU1UiSTXod8lTV25mGfG60VNXbmYZ8HfJU1axcCood8lTVbVtrhh3yVNWsXAqKbrRU1W1ba4ZutFTViHbvkx3yVNWIdu+TbrRU1f9/aZQd8lTV/39plG60VNVSo8yCHfJU1ZGka4Yd8lTVUqPMgm60VNWRpGuGbrRU1XaJ53hutFTVdonneB3yVNVIkk16brRU1UiSTXod8lTVU2Bsfx3yVNUjZoZ8HfJU1VNgbH9utFTVI2aGfG60VNX/f214brRU1f9/bXgd8lTVdonneG60VNV2ied4HfJU1SNmUJAd8lTVU2BqjR3yVNUjZlCQbrRU1VNgao1utFTVtm1Nem60VNW2bU16HfJU1Yh253hutFTViHbneB3yVNWSJPFoe2n//yRJ8Wh7af//kiTti3tp//8kSe2Le2n//22b4d+dn///kWTh352f//9tm3DsnZ///5FkcOydn///bZvh39qX//9tm3Ds2pf//5Fk4d/al///kWRw7NqX//+RZHDsu31U1ZFkcOzal1TVbZtw7Lt9VNVtm3Ds2pdU1ZFk///al1TVkWT//7t9VNVtm///2pdU1W2b//+7fVTVbZvh37t9//+RZOHfu33//22bcOy7ff//kWRw7Lt9//9tm+Hf+XX//22bcOz5df//kWTh3/l1//+RZHDs+XX//22b4d+7fVTVbZtw7Lt9VNVtm+Hf+XVU1W2b//+7fVTVbZtg/dp5VNVtm937QXlU1W2bN/YDd1TVbZtw7Pl1VNVtm///2pdU1W2bcOzal1TVbZvh39qXVNVtm2D9vJtU1W2b3ftVnFTVbZs39pOeVNVtm3DsnZ9U1W2b4d+dn1TVbZtw7Pl1dvhtmzf2A3f/8JFkcOz5dXb4kWQ39gN3//CRZHDs+XVU1ZFkN/YDd1TVkWTh3/l1VNWRZN37QXlU1ZFkYP3aeVTVkWTh37t9VNWRZHDsu31U1ZFk//+7fVTVkWRw7NqXVNWRZP//2pdU1ZFk4d/al1TVkWRg/bybVNWRZN37VZxU1ZFkN/aTnlTVkWTh352fVNWRZHDsnZ9U1ZFk//+7fbzbkWRg/dp5jOJtm///u328222bYP3aeYzibZs39gN3//Btm937QXmq6ZFkN/YDd//wkWTd+0F5qultm2D92nmM4pFkYP3aeYzikWT//9qXd89tm///2pd3z5FkYP28m0rKbZtg/bybSsqRZGD9vJtKym2bYP28m0rKkWTd+1Wc/MVtm937VZz8xW2bN/aTnrrCkWQ39pOeusJtm3DsnZ+wwJFkcOydn7DAbZs39pOeusKRZDf2k566wjVZE6Jx+lTVNVkTov//VNWRZL2ecfpU1ZFkvZ7//1TVkWQXw///VNWRZBfDcfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTVMo4wxf//VNUyjjDFcfpU1QJLWbb//1TVJEnqsP//VNUCS1m2cfpU1SRJ6rBx+lTVbZsXw///VNVtmxfDcfpU1cmmwb///1TVyabBv3H6VNWBr2m7//9U1cmmwb///1TVga9pu3H6VNXJpsG/cfpU1TKOMMX//1TVMo4wxXH6VNVtmxfD//9U1W2bF8Nx+lTVAkt7q///VNV9UGum//9U1QJLe6tx+lTVfVBrpnH6VNUkSeqw//9U1QJLe6v//1TVJEnqsHH6VNUCS3urcfpU1TVZwb///1TVfVBpu///VNU1WcG/cfpU1X1Qabtx+lTVNVnBv///VNU1WcG/cfpU1ZFkF8P//1TVkWQXw3H6VNV9UGum//9U1TVZE6L//1TVfVBrpnH6VNU1WROicfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTV/LRZtv//VNWBr2m7//9U1fy0WbZx+lTVga9pu3H6VNX8tHur//9U1dq26rD//1TV/LR7q3H6VNXatuqwcfpU1YGva6b//1TV/LR7q///VNWBr2umcfpU1fy0e6tx+lTVyaYTov//VNWBr2um//9U1cmmE6Jx+lTVga9rpnH6VNUyjqSccfpU1TKOpJz//1TVbZu9nnH6VNVtm72e//9U1dq26rD//1TV/LRZtv//VNXatuqwcfpU1fy0WbZx+lTV/3/tm//////McaSc/////zKOpJz/////bZu9nv////+RZL2e/////8mmE6L/////NVkTov////+Br2um//////9/0aX/////fVBrpv////+BhzKm/////314Mqb/////gI5Np/////9+cU2n//////y0e6v/////Akt7q/////+ClBGp/////x6ZXav/////BJwLrv/////atuqw/////wGd6rD/////fGsRqf/////gZl2r//////pjC67//////LRZtv////8EnMmz/////x6Zd7b/////JEnqsP/////9Yuqw//////pjybP/////AktZtv/////gZne2/////4Gvabv/////fVBpu/////+ClMO4/////4COh7r/////gYeju/////98a8O4/////35xh7r/////fXiju//////JpsG//////zVZwb///////38DvP////+RZBfD/////22bF8P/////Mo4wxf/////McTDF//////9/58X/////kWS9nnH6VNWRZL2e//9U1cxxpJxx+lTVzHGknP//VNV9UGm7//9U1QJLWbb//1TVfVBpu3H6VNUCS1m2cfpU1f9/7Ztx+lTV/3/tm///VNUyjqSccfpU1TKOpJz//1TVzHGknHH6VNXMcaSc//9U1f9/7Ztx+lTV/3/tm///VNVtm72ecfpU1W2bvZ7//1TVyaYTonH6VNXJphOi//9U1f9/7Zsd8v//Mo6knB3y///McaScHfL//5FkvZ4d8v//bZu9nh3y//81WROiHfL//8mmE6Id8v///3/soh3y//+IdmajHfL//3aJZqMd8v//fVBrph3y//+2bcykHfL//yNmBacd8v//ga9rph3y//9IksykHfL//9uZBacd8v//Akt7qx3y//9TYOupHfL//6xcS60d8v//JEnqsB3y//9tW+qwHfL///y0e6sd8v//q5/rqR3y//9So0utHfL//wJLWbYd8v//rFyJtB3y//9TYOm3HfL//9q26rAd8v//kaTqsB3y//9So4m0HfL///y0WbYd8v//q5/ptx3y//99UGm7HfL//yNmz7od8v//tm0IvR3y//+Br2m7HfL//9uZz7od8v//SJIIvR3y//81WcG/HfL//8mmwb8d8v//iHZuvh3y//92iW6+HfL///9/6L4d8v//kWQXwx3y//9tmxfDHfL//8xxMMUd8v//Mo4wxR3y////f+fFHfL//5Gk6rAd8lTVUqOJtB3yVNWRpOqwbrRU1VKjibRutFTVI2YFp260VNUjZgWnHfJU1bZtzKRutFTVtm3MpB3yVNV2iWajbrRU1XaJZqMd8lTVSJLMpG60VNVIksykHfJU1f9/6L4d8lTV/3/ovm60VNV2iW6+HfJU1XaJbr5utFTVq5/rqR3yVNVSo0utHfJU1auf66lutFTVUqNLrW60VNVtW+qwHfJU1axcS60d8lTVbVvqsG60VNWsXEutbrRU1bZtCL0d8lTVtm0IvW60VNWIdm6+HfJU1Yh2br5utFTVU2DrqR3yVNUjZgWnHfJU1VNg66lutFTVI2YFp260VNWsXEutHfJU1VNg66kd8lTVrFxLrW60VNVTYOupbrRU1UiSCL0d8lTVSJIIvW60VNXbmc+6HfJU1duZz7putFTV/3/som60VNX/f+yiHfJU1XaJZqNutFTVdolmox3yVNWsXIm0HfJU1W1b6rAd8lTVrFyJtG60VNVtW+qwbrRU1VKjibQd8lTVq5/ptx3yVNVSo4m0brRU1auf6bdutFTVUqNLrR3yVNWRpOqwHfJU1VKjS61utFTVkaTqsG60VNXbmQWnHfJU1auf66kd8lTV25kFp260VNWrn+upbrRU1bZtzKRutFTVtm3MpB3yVNWIdmajbrRU1Yh2ZqMd8lTVq5/ptx3yVNXbmc+6HfJU1auf6bdutFTV25nPum60VNVIksykbrRU1UiSzKQd8lTV25kFp260VNXbmQWnHfJU1VNg6bcd8lTVrFyJtB3yVNVTYOm3brRU1axcibRutFTVI2bPuh3yVNUjZs+6brRU1bZtCL0d8lTVtm0IvW60VNV2iW6+HfJU1XaJbr5utFTVSJIIvR3yVNVIkgi9brRU1Yh2ZqNutFTViHZmox3yVNX/f+yibrRU1f9/7KId8lTViHZuvh3yVNWIdm6+brRU1f9/6L4d8lTV/3/ovm60VNUjZs+6HfJU1VNg6bcd8lTVI2bPum60VNVTYOm3brRU1dq2ZM65Tf//bNtmwLlN//9s22TOuU3//5IkZM65Tf//kiRmwLlN//8kSWTOuU3//2zb5rxYkP+/I8nmvMuK49Js2+iuWJD/vyPJ6K7LiuPS2zbmvOWVG63bNuiu5ZUbrZIk5rxYkP+/kiTorliQ/7+SJOa8WJD/v5Ik6K5YkP+/2zbmvMuK49LbNuiuy4rj0iPJ5rzllRutbNvmvFiQ/78jyeiu5ZUbrWzb6K5YkP+/bNvxaG60/79s22uWbrT/v2zb8WjVqv+/bNvti9Wq/79s2+XDrJj/v2zba5bCvP+/bNvpp6yY/79s2+2Le2n/v2zb6acJb/+/bNtkzlDC/79s2/Fowrz/v2zb8WhQwv+/bNtkzrlN/79s2+XDCW//v2zbZsC5Tf+/bNvti/cx/79s22bA9zH/v5Ik9kXVqgCASRL2RdWqAICSJPFo1aoAgAAA8WjVqgCAkiTti9WqAIAAAO2L1aoAgEkS9kV7af//kiT2RXtp//8AAPFoe2n//wAA7Yt7af//AADti9Wq/78AAO2Le2n/v5Ik7YvVqv+/kiTti3tp/78AAPFo1aoYwEkS9kXVqmTAAADxaHtpGMBJEvZFe2lkwEkS9kV7af//SRL2RdWq//+SJPZFe2n//5Ik9kXVqv//kiRmwPcx/7+SJGbAuU3/v5Ik7Yv3Mf+/kiTti3tp/7+SJGTOuU3/v5Ik6acJb/+/kiTpp6yY/7+SJOXDCW//v5Ik7YvVqv+/kiTlw6yY/7+SJGTOUML/v5Ika5bCvP+/kiTxaFDC/7+SJPFowrz/v5Ika5ZutP+/kiTxaG60/7+SJPFo1ar/v5Ik9kXVqv+/kiTxaNWq/7+SJPZFe2n/v5Ik8Wh7af+/AADti9Wq/78AAPFo1aoYwAAA7Yt7af+/AADxaHtpGMDbNj7yBQ2qqts2vPzOBaqqI8k+8gUNqqojybz8zgWqqmzb9kV7af//bNv2RdWq//+17fZFe2n//7Xt9kXVqv//I8kTaAUNVJXbNhNoBQ1UlSPJj3xTCKqK2zaPfFMIqops2/Fo1ar/v2zb9kXVqv+/bNvxaHtp/79s2/ZFe2n/v2zb7YvVqv+/bNvti3tp/7/+/+2L1ar/v/7/7Yt7af+/2zY+8gUN/7/bNsHdUwj/v9s2vPzOBf+/2zaPfFMI/7/bNpRdzgX/v9s2E2gFDf+/2zbvdgAA/7/bNmHjAAD/vyPJwd1TCKqK2zbB3VMIqoojyT7yBQ1Ulds2PvIFDVSV2zaUXc4FqqrbNhNoBQ2qqiPJlF3OBaqqI8kTaAUNqqojyRNoBQ3/vyPJj3xTCP+/I8mUXc4F/78jycHdUwj/vyPJvPzOBf+/I8k+8gUN/78jye92AAD/vyPJYeMAAP+//v/xaNWqGMD+/+2L1ar/v/7/8Wh7aRjA/v/ti3tp/78jyZRdzgX//yPJ73YAAP//2zaUXc4F///bNu92AAD//9s2YeMAAP//I8lh4wAA///bNrz8zgX//yPJvPzOBf//bNv2RXtp//+17fZFe2n///7/8Wh7af///v/ti3tp///bNu92AAD//yPJ73YAAP//2zZh4wAA//8jyWHjAAD//7Xt9kXVqgCAbNv2RdWqAID+//Fo1aoAgGzb8WjVqgCA/v/ti9WqAIBs2+2L1aoAgLXt9kXVqmTA/v/xaNWqGMC17fZFe2lkwP7/8Wh7aRjAbNvti3tp//9s2+2L9zH//9q27Yt7af//2rbti4ti///atu2LqlT//yRJ7YuLYv//2rbti+c4//9Iku2L9zH//7Zt7Yv3Mf//JEnti6pU//8kSe2Le2n//5Ik7Yt7af//JEnti+c4//+SJO2L9zH//5Ik7Yv3Mf//tm3ti/cx//+SJGbA9zH//7Zt65n3Mf//SJLrmfcx//+2bWbA9zH//7ZtZM73Mf//JElkzvcx//9s22bA9zH//0iSZsD3Mf//SJJkzvcx///atmTO9zH//2zb7Yv3Mf//SJLti/cx//+SJGbAuU38xZIkZsD3MfzFJElkzrlN/MUkSWTO9zH8xWzbZsC5TfzF2rZkzrlN/MVs22bA9zH8xdq2ZM73MfzFbNtkzrlN/79s22TOUML/v9q2ZM65Tf+/2rZkzppb/7/atmTO9zH/vyRJZM73Mf+/JElkzrlN/7/atmTOGqz/vyRJZM6aW/+/JElkzhqs/7+SJGTOUML/v5IkZM65Tf+/2zaPfFMIqopIkuuZUwgAgCPJj3xTCKqKI8nB3VMIqoq2beuZUwgAgEiS6adTCACA2zbB3VMIqoq2bemnUwgAgLZtZsBTCACASJJmwFMIAIC2bWTOUwgAgEiSZM5TCACAkiTxaFDCAIA/xW5xUMIAgGzb8WhQwgCAbNtkzlDCAIC/Om5xUMIAgD/F58VQwgCAkiRkzlDCAIC/OufFUMIAgNq25cMJb1TV2rblw6yYVNVs2+XDCW9U1Wzb5cOsmFTV2rbpp6yYVNXatumnCW9U1Wzb6aesmFTVbNvppwlvVNUkSemnCW///5Ik6acJb///JEnlwwlv//+SJOXDCW///9q26aesmP//bNvpp6yY///atuXDrJj//2zb5cOsmP//kiTlwwlvVNWSJOXDrJhU1SRJ5cMJb1TVJEnlw6yYVNVs2+mnCW///9q26acJb///bNvlwwlv///atuXDCW///5Ik6aesmP//JEnpp6yY//+SJOXDrJj//yRJ5cOsmP//kiTpp6yYVNWSJOmnCW9U1SRJ6aesmFTVJEnppwlvVNUkSe2LqlRU1SRJ7YvnOFTVJEn7IslGVNUkSf4NyUZU1SRJ/g0GK1TVJEn7IgYrVNUkSfsiBitd+9q2+yIGK137JEnti+c4v/batu2L5zi/9tq2/g3JRv//JEn+DclG///atvsiyUZCwCRJ+yLJRkLAJEn+DQYr///atv4NBiv//yRJ+yIGK1372rb7IgYrXfvatm96WVIKwSRJb3pZUgrB2rbti6pUCsEkSe2LqlQKwdq2/g3JRlTV2rb7IslGVNXatv4NBitU1dq27YvnOFTV2rb7IgYrVNXatu2LqlRU1SRJ/g0GK1TVJEn+DclGVNXatv4NBitU1dq2/g3JRlTV2rb7IslGQsAkSfsiyUZCwNq28WgJUArBJEnxaAlQCsH9YmuG//9U1fpjSon//1TV/WJrhnH6VNX6Y0qJcfpU1X5xznz//1TVfnHOfHH6VNV9eLJ7//9U1X14sntx+lTVfXiye///VNV9eLJ7cfpU1f9/Unv//1TV/39Se3H6VNX/f1J7//9U1f9/Untx+lTVgYeye///VNWBh7J7cfpU1YCOznz//1TVgI7OfHH6VNWClJJ+//9U1YKUkn5x+lTVfnEIkHH6VNV+cQiQ//9U1X14I5Fx+lTVfXgjkf//VNXgZt6A//9U1fpji4P//1TV4GbegHH6VNX6Y4uDcfpU1W2bPnQd8lTVyaaTdx3yVNV8a0SOcfpU1XxrRI7//1TVfnEIkHH6VNV+cQiQ//9U1fpjSon//1TV4Gb4i///VNX6Y0qJcfpU1eBm+Itx+lTVfGuSfv//VNXgZt6A//9U1Xxrkn5x+lTV4GbegHH6VNUemfiL//9U1QScSon//1TVHpn4i3H6VNUEnEqJcfpU1YKURI7//1TVHpn4i///VNWClESOcfpU1R6Z+Itx+lTVgYcjkXH6VNWBhyOR//9U1YCOCJBx+lTVgI4IkP//VNXgZviL//9U1XxrRI7//1TV4Gb4i3H6VNV8a0SOcfpU1YGHsnv//1TVgYeye3H6VNWAjs58//9U1YCOznxx+lTVgI4IkHH6VNWAjgiQ//9U1YKURI5x+lTVgpREjv//VNUEnIuD//9U1R6Z3oD//1TVBJyLg3H6VNUemd6AcfpU1f9/hJFx+lTV/3+Ekf//VNWBhyORcfpU1YGHI5H//1TV/LT8gB3yVNXatmuGHfJU1Xxrkn7//1TVfGuSfnH6VNV+cc58//9U1X5xznxx+lTVfXgjkXH6VNV9eCOR//9U1f9/hJFx+lTV/3+Ekf//VNUBnWuG//9U1QSci4P//1TVAZ1rhnH6VNUEnIuDcfpU1cmmk3cd8lTVga/sex3yVNUemd6A//9U1YKUkn7//1TVHpnegHH6VNWClJJ+cfpU1QScSon//1TVAZ1rhv//VNUEnEqJcfpU1QGda4Zx+lTV+mOLg///VNX9YmuG//9U1fpji4Nx+lTV/WJrhnH6VNWBr+x7HfJU1fy0/IAd8lTVAkv8gB3yVNV9UOx7HfJU1f9/Untx+v//fXiye3H6//+Bh7J7cfr//4COznxx+v//fnHOfHH6//98a5J+cfr//4KUkn5x+v//HpnegHH6///gZt6Acfr//wSci4Nx+v//+mOLg3H6//8BnWuGcfr///1ia4Zx+v//+mNKiXH6//8EnEqJcfr//+Bm+Itx+v//Hpn4i3H6//98a0SOcfr//4KURI5x+v//gI4IkHH6//9+cQiQcfr//314I5Fx+v//gYcjkXH6////f4SRcfr///9/aJsd8lTVMo6xmh3yVNXMcSVyHfJU1f9/bnEd8lTVfVDpkB3yVNUCS9qLHfJU1W2bmJgd8lTVyaZClR3yVNX/f25xHfJU1TKOJXId8lTVkWQ+dB3yVNXMcSVyHfJU1dq2a4Yd8lTV/LTaix3yVNU1WUKVHfJU1X1Q6ZAd8lTVAkvaix3yVNUkSWuGHfJU1fy02osd8lTVga/pkB3yVNUyjiVyHfJU1W2bPnQd8lTVNVmTdx3yVNWRZD50HfJU1ZFkmJgd8lTVzHGxmh3yVNUyjrGaHfJU1W2bmJgd8lTVJElrhh3yVNUCS/yAHfJU1TVZQpUd8lTVkWSYmB3yVNV9UOx7HfJU1TVZk3cd8lTVga/pkB3yVNXJpkKVHfJU1cxxsZod8lTV/39omx3yVNUkSWTOGqz8xSRJ4d8qpfzF2rZkzhqs/MXatuHfKqX8xb86bnFQwlTVvzrnxVDCVNW/Om5xbrRU1b8658VutFTV2rZkzhqsVNXatuHfKqVU1dq2ZM6aW1TV2rbh35pbVNW/Om5xUMJU1b86bnFutFTVP8VucVDCVNU/xW5xbrRU1T/F58VQwlTVP8VucVDCVNU/xefFbrRU1T/FbnFutFTVvzrnxW60VNW/OufFUMJU1T/F58VutFTVP8XnxVDCVNUkSWTOGqxU1SRJZM6aW1TVJEnh3yqlVNUkSeHfmltU1SRJZM6aW///2rZkzppb//8kSeHfmlv//9q24d+aW///fGvDuHH6VNV8a8O4//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TV/38DvHH6VNX/fwO8//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TVfVBpux3yVNUCS1m2HfJU1TVZwb8d8lTVkWQXwx3yVNXgZl2r//9U1fpjC67//1TV4GZdq3H6VNX6YwuucfpU1eBmd7b//1TVfGvDuP//VNXgZne2cfpU1Xxrw7hx+lTV/3/Rpf//VNX/f9GlcfpU1YGHMqb//1TVgYcypnH6VNWAjoe6cfpU1YCOh7r//1TVgpTDuHH6VNWClMO4//9U1QJLe6sd8lTVfVBrph3yVNX6Y8mz//9U1eBmd7b//1TV+mPJs3H6VNXgZne2cfpU1f1i6rD//1TV+mPJs///VNX9YuqwcfpU1fpjybNx+lTVgI5Np///VNWAjk2ncfpU1YKUEan//1TVgpQRqXH6VNUBneqw//9U1QScC67//1TVAZ3qsHH6VNUEnAuucfpU1f9/0aVx+v//fXgypnH6//+BhzKmcfr//4COTadx+v//fnFNp3H6//98axGpcfr//4KUEalx+v//Hpldq3H6///gZl2rcfr//wScC65x+v//+mMLrnH6//8Bneqwcfr///1i6rBx+v//+mPJs3H6//8EnMmzcfr//+Bmd7Zx+v//Hpl3tnH6//98a8O4cfr//4KUw7hx+v//gI6HunH6//9+cYe6cfr//314o7tx+v//gYeju3H6////fwO8cfr//4Gva6Yd8lTV/LR7qx3yVNX/f+fFHfJU1TKOMMUd8lTVHpldq///VNWClBGp//9U1R6ZXatx+lTVgpQRqXH6VNXJphOiHfJU1YGva6Yd8lTVbZu9nh3yVNXJphOiHfJU1XxrEan//1TV4GZdq///VNV8axGpcfpU1eBmXatx+lTV2rbqsB3yVNX8tFm2HfJU1SRJ6rAd8lTVAkt7qx3yVNX/fwO8cfpU1f9/A7z//1TVgYeju3H6VNWBh6O7//9U1YGHMqb//1TVgYcypnH6VNWAjk2n//9U1YCOTadx+lTVgYeju3H6VNWBh6O7//9U1YCOh7px+lTVgI6Huv//VNUyjqScHfJU1W2bvZ4d8lTV/3/tmx3yVNUyjqScHfJU1XxrEan//1TVfGsRqXH6VNV+cU2n//9U1X5xTadx+lTVfXgypv//VNV9eDKmcfpU1f9/0aX//1TV/3/RpXH6VNX6Ywuu//9U1f1i6rD//1TV+mMLrnH6VNX9YuqwcfpU1X5xTaf//1TVfnFNp3H6VNV9eDKm//9U1X14MqZx+lTVBJwLrv//VNUemV2r//9U1QScC65x+lTVHpldq3H6VNUEnMmz//9U1QGd6rD//1TVBJzJs3H6VNUBneqwcfpU1R6Zd7b//1TVBJzJs///VNUemXe2cfpU1QScybNx+lTVgpTDuP//VNUemXe2//9U1YKUw7hx+lTVHpl3tnH6VNX8tHurHfJU1dq26rAd8lTVzHGknB3yVNX/f+2bHfJU1TVZE6Id8lTVkWS9nh3yVNWRZBfDHfJU1cxxMMUd8lTVNVnBvx3yVNV9UGm7HfJU1QJLWbYd8lTVJEnqsB3yVNXMcTDFHfJU1f9/58Ud8lTVbZsXwx3yVNXJpsG/HfJU1TKOMMUd8lTVbZsXwx3yVNV9UGumHfJU1TVZE6Id8lTVkWS9nh3yVNXMcaScHfJU1YGvabsd8lTVyabBvx3yVNX8tFm2HfJU1YGvabsd8lTV2rblwwlvVNXatua85ZVU1dq25cOsmFTV2rbpp6yYVNXatua8y4pU1dq26K7llVTV2rborsuKVNXatumnCW9U1SRJ4d+aW1TVkWTh352fVNUkSeHfKqVU1dq24d8qpVTVkWTh39qXVNVtm+HfnZ9U1ZFk4d+7fVTVbZvh39qXVNWRZOHf+XVU1W2b4d+7fVTV2rbh35pbVNVtm+Hf+XVU1duZBadutP//q5/rqW60////f2mUbrT//0iSzKRutP//dolmo260////f+yibrT//4h2ZqNutP//tm3MpG60//8jZgWnbrT//1Ng66lutP//donvk260//8/xefFbrT//1KjS61utP//SJKJkm60//+RpOqwbrT//9uZUJButP//UqOJtG60//+rn2qNbrT//6uf6bdutP//UqMKim60///bmc+6brT//5Gka4ZutP//SJIIvW60//92iW6+brT//1KjzIJutP///3/ovm60//+/OufFbrT//4h2br5utP//P8VucW60//+2bQi9brT//6ufbH9utP//I2bPum60///bmYZ8brT//0iSTXputP//donneG60//+/Om5xbrT//1Ng6bdutP///39teG60//+sXIm0brT//21b6rButP//rFxLrW60//+Idu+TbrT//4h253hutP//tm2Jkm60//+2bU16brT//yNmUJButP//I2aGfG60//9TYGx/brT//6xczIJutP//U2BqjW60//9tW2uGbrT//6xcCoputP//JEnpp6yYVNUkSea85ZVU1SRJ5cOsmFTVJEnlwwlvVNUkSeiu5ZVU1SRJ5rzLilTVJEnppwlvVNUkSeiuy4pU1bZt8Wi8kVTVtm12HryRVNW2bfFowHhU1bZt/RQ3ilTVtm39FMB4VNVIknYevJFU1UiS8Wi8kVTVSJL9FDeKVNVIkvFowHhU1UiS/RTAeFTVJEnti4tiVNUkSe2Le2lU1dq27YuLYlTV2rbti3tpVNXatu2Li2JU1SRJ7Yt7aVTV/3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3/y5PJk8uTyZCXRJVEl0SVR/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///2a4l0Qyb8uTZriXRDJvy5AAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f9mu2S4l0SVR2a7ZLiXRJVEAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fyXR2a7ZriXRJdHZrtmuJdEl0dmuJdHZrvLkDJvy5Ayb/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9///8Mmwwb2a7ZLgybDBvZrtku/3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9/AAD/fwAA/3//f/9//3//f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3//f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9//3////9/////f/9//3//f/9//3//f/9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/Lk8mTy5PJkJdElUSXRJVH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwwb8mQMG/Jk2a4l0Qyb8uTZriXRDJvy5CXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/8mQMG/9/AADyZAwb/38AAAwbDJsMGwybAAD/fwAA/3//f///8mTy5P9////yZPLkJVEl0f8//78lUSXR/z//v/9/AAAMmwwb/38AAAybDBv/v/+//7//vyXR2a4l0dmu8mTy5CVRJdHyZPLkJVEl0QybDBvZrtkuDJsMG9mu2S7Zrtku/7//P9mu2S7/v/8//z//v/8//7/ZLtmu2S7Zrv+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwybDJvy5P9///8Mm/Lk/3///wwb8mQMG/Jk2S4lUdkuJVHZLiVR2S4lUf8//z//P/8/JVHZLvJkDBslUdku8mQMGyXRJVEl0SVR/7//P/+//z//P/8/JVHZLv8//z8lUdku////f////3/y5PJk8uTyZP9/AAAMmwwb/38AAAybDBsl0SVRJdElUf+//z//v/8//3////Jk8uT/f///8mTy5P+//7//v/+/JdHZriXR2a7///9/////f/Lk8mTy5PJk8uTyZPLk8mQl0SVRJdElUSVR2S7yZAwbJVHZLvJkDBv/P/8/JVHZLv8//z8lUdkuDBsMmwwbDJsAAP9/AAD/f9muJdEMm/Lk2a4l0Qyb8uQMmwwb2a7ZLgybDBvZrtku8mTy5CVRJdHyZPLkJVEl0SXR2a4l0dmu8uQMm/LkDJv/P/+//z//v9ku2a7ZLtmu2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z8Mm/Lk/3///wyb8uT/f///8uQMm/LkDJv///9/////f/JkDBv/fwAA8mQMG/9/AAAMG/JkDBvyZNkuJVHZLiVRJVEl0f8//78lUSXR/z//vwAA/38AAP9/DBvyZAwb8mT/v/+/2a4l0f+//7/ZriXR2S7Zrtku2a4MGwybDBsMm/9/////f////3////9/////f/9//3//f/9//3//f/9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//P/+//z//v9ku2a7ZLtmuJdHZriXR2a7y5Ayb8uQMm////3////9/8uTyZPLk8mQMm/Lk/3///wyb8uT/f///JdElUSXRJVH/v/8//7//P9mu2S7/v/8/2a7ZLv+//z/y5PJk8uTyZCXRJVEl0SVR8mTy5CVRJdHyZPLkJVEl0f9////yZPLk/3////Jk8uT/v/+/2a4l0f+//7/ZriXR/7//v/+//78l0dmuJdHZriVRJdH/P/+/JVEl0f8//7/y5Ayb8uQMm////3////9/DJsMG9mu2S4Mmwwb2a7ZLvJkDBv/fwAA8mQMG/9/AAAlUdku8mQMGyVR2S7yZAwb/z//PyVR2S7/P/8/JVHZLgwb8mQMG/Jk2S4lUdkuJVH/fwAADJsMG/9/AAAMmwwb/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/2S7Zrtku2a4MGwybDBsMm9muJdEMm/Lk2a4l0Qyb8uQAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/f9kuJVHZLiVR/z//P/8//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/z//v/8//7/ZLtmu2S7Zrgwb8mQMG/Jk2S4lUdkuJVH///9/////f/Lk8mTy5PJkJVHZLvJkDBslUdku8mQMG/9////yZPLk/3////Jk8uQl0dmuJdHZrvLkDJvy5AybJVEl0f8//78lUSXR/z//v/Jk8uQlUSXR8mTy5CVRJdEl0SVRJdElUf+//z//v/8/AAD/fwAA/38MG/JkDBvyZAyb8uT/f///DJvy5P9///8Mmwwb2a7ZLgybDBvZrtku8mQMG/9/AADyZAwb/38AAP8//z8lUdku/z//PyVR2S7ZLtmu2S7ZrgwbDJsMGwyb2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z/ZriXRDJvy5NmuJdEMm/Lk/7//v/+//78l0dmuJdHZrvLk8mTy5PJkJdElUSXRJVEMGwybDBsMmwAA/38AAP9/8uQMm/LkDJv///9/////f/+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f310PvrWamr1fXQ++tZqavX/f/8//3//P/9//z//f/8//3////9/////f////3////9//v//f////3////9/////f////3////9/////f/7//3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3///310Pvr/f///fXQ++v///3////9/////f////3//f/8//3//P/9//z//f/8/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3/+//9//v//f////3////9/////f////3////9//v8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAPnqBC/9/AAA+eoEL/38AAAyb///jjv//DJv//+OO////fxrx/38a8f9/8uT/f/Lk/3////9/////f////3///+OO///jjv///38a8f9/GvH/f////3////9/////f////3////9///9rdSgVPnqBC2t1KBU+eoEL/3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////6cAMb+nADG/pwAxv6cAMb9uf8c/bn/HP25/xz9uf8c////f////3////9//v//f////3////9/////f////3////9/////f////3////9/////f/9///////9/AAD/f/9/////f///AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3///////3////9/////f////3//f/9//3//fwAA/38AAP9//3////9///////9/////fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AADyZAwb/38AAPJkDBsl0SVRJdElUfLk8mTy5PJk8uTyZPLk8mT///9/////f////3////9/8uQMm/LkDJsl0dmuJdHZrv+//7//v/+/2S4lUdkuJVEMG/JkDBvyZNmu2S4Mmwwb2a7ZLgybDBvZLiVR/z//P/8//z//P/8/2S4lUdkuJVHyZAwbJVHZLvJkDBslUdku/7//P9mu2S7/v/8/2a7ZLiVRJdHyZPLkJVEl0fJk8uT/P/+/JVEl0f8//78lUSXRDBsMmwwbDJvZLtmu2S7ZriVR2S7/P/8/JVHZLv8//z/y5Ayb8uQMmyXR2a4l0dmu2S7Zrtku2a7/P/+//z//vwyb8uTZriXRDJvy5NmuJdEAAP9/AAD/fwwbDJsMGwyb8mQMG/9/AAD/v/8//7//PyXRJVEl0SVRDBvyZAwb8mQAAP9/AAD/f/9///8Mm/Lk/3///wyb8uT/P/8/JVHZLtmuJdH/v/+/2a4l0f+//7/yZPLk/3////Jk8uT/f///DJsMG/9/AAAMmwwb/38AACVR2S7yZAwb8mTy5CVRJdH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/8uTyZAwbDJsAAP9/2a4l0Qyb8uQl0SVR/7//PwAA/38MG/Jk2S7ZrgwbDJv/fwAADJsMG/+//7/ZriXRDJvy5P9///8Mmwwb2a7ZLgwb8mTZLiVR/z//v9ku2a4l0dmu8uQMm/Lk8mQl0SVR/3////Jk8uT/v/+/JdHZriVRJdH/P/+/2a7ZLv+//z/y5Ayb////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////z//P/8//z/ZLiVR2S4lUQwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk2a4l0Qyb8uT/v/+/JdHZrtmu2S4Mmwwb2a7ZLgybDBslUdku/z//PyVR2S7/P/8/////f////3/y5Ayb8uQMm9ku2a7ZLtmu/z//v/8//7/yZPLkJVEl0fJkDBslUdku8mQMGyVR2S7/fwAA8mQMG/9/AADyZAwbJdHZriXR2a7/v/+//7//v/9///8Mm/Lk/3///wyb8uT/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38lUdku8mQMG////3/y5PJk2a4l0f+//7/ZriXR/7//v/8//z8lUdku2S4lUf8//z//v/8/2a7ZLv+//z/Zrtku/38AAAybDBv/f///8mTy5AAA/38AAP9/DBsMmwwbDJvy5Ayb8uQMmyXR2a4l0dmuDBsMmwwbDJvZLtmu2S7Zrgwb8mTZLiVRAAD/fwwb8mT/v/8//7//PyXRJVEl0SVR8uTyZPLk8mT///9/////fwybDBv/fwAADJsMG/9/AAAl0SVRJdElUfLk8mTy5PJkDJvy5NmuJdEMm/Lk2a4l0fJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0fJkDBv/fwAADBsMmwAA/3//P/+/2S7ZriXR2a7y5Ayb/7//v9muJdEMm/Lk/3////LkDJv///9/JdElUf+//z/y5PJkJdElUSVRJdH/P/+/2S7ZrgwbDJvZrtku/7//PwybDBvZrtku/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"attribute_data": PackedByteArray("q3cEdOR0BHSrd0Nu5HRDbqt3fpKrd/+d5HR+kuR0/50ecj+Y4I0/mBqL/50ai36SU4h+klOI/52rdwR05HQEdKt3Q27kdENuU4j/nVOIfpIai/+dGot+kuCNP5gaiwR0U4gEdBqLQ25TiENuGosEdFOIBHQai0NuU4hDbh5yP5jkdH6S5HT/nat3/52rd36SbZPo8a+SyfRtk0XGp5Dk9uCNRcbgjejx4I2p9x5y6PEecqn3HnJFxldv5PZPbcn0kWxFxpFs6PE8Q8+SkEvPkjxDypWQS8qVgkLamqI/2pqCQjiSoj84kh5yGZWRbBmVHnLIkJFs1oMechV+T232gFdv234gGdqaIBk4kgJG2po8QziSPEPWg5BL1oPJSBSa0Ur5l5BLGZXCvNaDwrw4km601oP8udqa3ubamt7mOJI1txSaLbX5l260GZWnjtqax4vamqeOOJLHiziSwrwwhsK8K4lutDCGbrQriR5yq6WRbKulHnKxopFssaIecmXDHnLo8ZFsZcMecqn3V2/k9k9tyfSRbOjx4I2p9+CN6PHgjWXDp5Dk9q+SyfRtk+jxbZNlwzxDg5A8Q4mNkEuDkJBLiY0ecm7DHnJoxpFsbsORbGjGHnIJvZFsCb0ecg+6kWwPusK8iY3CvIOQbrSJjW60g5DCvMqVbrTKlcK8z5JutM+SN3Tamldx2po3dDiSV3E4km2TbsNtk2jG4I1uw+CNaMZtkwm94I0JvW2TD7rgjQ+6wrzIkMK8OJJutMiQ/Lnamt7m2pre5jiSNbcUmi21+ZdutBmVbZM4kuCNOJJtk9aD4I3IkOCNFX6vkvaAp5DbflzA2pp8vdqaXMA4kny9OJIgGdqaIBk4kgJG2po8QziSPEPIkJBLyJDJSBSa0Ur5l5BLGZXgjdqaHnLamuCNOJIecjiSyR7amskeOJKpIdqaqSE4kjXhOJI14dqaVd44klXe2poecjiSkWw4kh5yyJCRbNaDHnIVfk9t9oBXb9t+bZOrpeCNq6Vtk7Gi4I2xom2TGZXgjRmVbZPWg+CNyJDgjRV+r5L2gKeQ2348QyuJPEMwhpBLK4mQSzCG4I3amh5y2prgjTiSHnI4kjh9vTU4fTUKxoK9NcaCNQrGgvgKxoKANjh9+Ao4fYA2B87TbAfOEmer99Nsq/cSZ/cxpXz3MWaCUwjkdlMIpXzGgkoLxoJwNjh9Sgs4fXA2B85mggfOpXyr96V8q/fkdvcxEmf3MdNsUwgSZ1MI02w4fXA2OH1KC8aCcDbGgkoLU4i9tKt3vbRTiMiQq3fIkMaC5JHGgst/U4jkkVOIy3+Sj8iQko/uuz6HyJA+h02zx3VNs9Bz7rtCbmiv72W9tO9lyJBCbsiQU4hor8aCaK9TiMiQxoLIkFOImlVTiPlvq3eaVat3+W+rdyp3q3fLf1OIKnerd6+ZOH2vmTh9y3+rd1CiHnIGzB5y+W8ecrKzHnKkvR5yRcZTiFCi4I0GzFOIy39TiK+ZxoLLf8aCr5ngjUXG4I2kveCNsrPgjflvU4gqd1OI7pOrdyp3q3fuk1OI7rurd+67U4jIkKt3yJCrdwBYU4gAWKt3yGhTiMhoq3fIkB5yyJCrd2aCHnJmgjh9aK+rd2ivOH3IkKt3yJA4fU2zq3dNszh9yJCrd8iQU4jMiFOIgpHGgsyIxoKCkaWtl4n1r8iQc52XiYOWyJCDlmaCc51mgntpZoJ7aciQi2Jmgotil4kJUMiQWVKXiat3jJOrd3eDU4iMk1OId4NTiJeJq3eXiVOIZoKrd2aCU4hNs8aCTbNTiMiQxoLIkDh9zIg4fYKRq3fMiKt3gpHAeMiQwHhNs2xwyJBscO67N4pNsy6M7ru8kWivD5q9tLyRyJAPmsiQq3fkkat3y384feSROH3LfwAAKoWNBSqFAABrh40Fa4f/fwh8J4JUfNd9VHzVezB9KYQwfeKFj34ceo9+/38ZgNt+QYAjgUGAyXhZgDWHWYDLfbaA4nxwgS98YYL0d26Cvnt7gzOCtoAcg3CBz4Nhgqt3qoSYe6qEvnvYhQqIboJAhHuDZoSqhFOIqoRAhNiF9HflhgqI5YYvfPKG4nzkh8t9nYjPg/KGHIPkhzOCnYjJePqINYf6iCOBEonbfhKJ/386ieKFxIocesSK1XsjjCmEI4zXfQCNJ4IAjf9/S42NBRaIAAAWiI0F1YUAANWF//+9g////YVx+r2Dcfr9hf//a4dx+muH//8qhXH6KoX//xaIcfoWiP//1YVx+tWFAADQhQAAj4ONBdCFjQWPg3H61YX//9WFcfoWiP//Foj//4+D///QhXH6j4Nx+tCF//8VhP//VoZx+hWEcfpWhgAA0IUAAI+DjQXQhY0Fj4P//9KGcfrShv//koRx+pKE//+9g////YVx+r2Dcfr9hQAA/YUAAL2DjQX9hY0FvYMAAFaGAAAVhI0FVoaNBRWEcfqShP//koRx+tKG///Shv//FYT//1aGcfoVhHH6Vob/f0uN130AjSeCAI0phCOM1XsjjOKFxIocesSK/39qim+BOIqPfjiKNYf6iMaCpYnsg7uIyXj6iDh9pYkSfLuICojlhs6EiodchSeGU4iqhIyFqoT0d+WGMHuKh6J6J4YKiG6CXIUsg86EyYGrd6qEcnqqhKJ6LIP0d26CMHvJgTWHWYDsg5iAxoKuf8l4WYASfJiAOH2uf+KFj34ceo9+b4Ebf49+G3//f+l+KYQwfdV7MH0nglR8131UfP9/CHxx+iqF//8qhXH6a4f//2uH//+Pg///0IVx+o+DcfrQhY0Fa4cAAGuHjQUqhQAAKoWNBdKGAADSho0FkoQAAJKEAAD9hQAAvYONBf2FjQW9gwAAkoSNBZKEAADSho0F0oYAAFaGAAAVhI0FVoaNBRWEAADVhY0F1YUAABaIjQUWiOENcIXhDe+DkEtwhZBL74PhDfKEkEvyhOENcoaQS3KGHfLvgx3ycIVutO+DbrRwhR3ycoZutHKGHfLyhG608oThDTWGkEs1huENtoeQS7aH4Q2LhZBLi4XhDQuHkEsLh+ENnYXhDR2EkEudhZBLHYThDfaF4Q11hJBL9oWQS3WEbrQ1hh3yNYZutLaHHfK2hx3yHYQd8p2FbrQdhG60nYXhDZ2F4Q0dhJBLnYWQSx2EHfIdhB3ynYVutB2EbrSdhR3yC4dutAuHHfKLhW60i4VutPKEHfLyhG60coYd8nKG4Q32heENdYSQS/aFkEt1hJBLcobhDXKGkEvyhOEN8oQd8u+DHfJwhW6074NutHCFHfK2h260tocd8jWGbrQ1huENcIXhDe+DkEtwhZBL74OQSwuH4Q0Lh5BLi4XhDYuFHfJ1hB3y9oVutHWEbrT2hZBLtofhDbaHkEs1huENNYYd8nWEHfL2hW60dYRutPaFbrSLhR3yi4VutAuHHfILh+CNyJBTiMiQ4I1mglOIZoIphOFf1XvhXymEt1rVe7da1XvhX9V7t1ophOFfKYS3WimE9YQphAeg1Xv1hNV7B6DVeweg1Xv1hCmEB6AphPWEKYThX9V74V8phLda1Xu3WtV74V/Ve7daKYThXymEt1pDguFfQ4K3WgWK4V9Dgq1SJIbAU72GX1T7iLJWBYq3WiRorVIkaLdaJGjhX0JkwFOpY19Ua2GyVmFgt1phYOFf1XvsXtV7w1ophOxeKYTDWvl1t1oDd7JW+XXhX0F5X1TaecBTu33hX7t9t1q7fa1S2pe3WtqXrVLal+FfvJvAU1WcX1STnrJWnZ/hX52ft1ophPN7KYQcgNV783vVexyA1XuEa9V7O2gphIRrKYQ7aNV7WmcphFpn1XuQkSmEkJHVe7mVKYS5ldV7LXcphC131XsNeCmEDXgphFZ71XtWeymEt2TVe7dkKYSNYNV7jWBx+u95///veXH6L3z//y98//+7gHH6u4D//3t+cfp7fgAAjYONBY2DAADOhY0FzoX//zxy//99dHH6PHJx+n10AADveY0F73kAAC98jQUvfAAAeXgAADh2jQV5eI0FOHYAAHt+jQV7fgAAu4CNBbuA//+Yc///2XVx+phzcfrZdf//PHL//310cfo8cnH6fXT//zh2//95eHH6OHZx+nl4//8vfHH6L3z//+95cfrvef//OHb//3l4cfo4dnH6eXj//86FcfrOhf//jYNx+o2DAADZdQAAmHONBdl1jQWYcwAAfXQAADxyjQV9dI0FPHIAANl1AACYc40F2XWNBZhzAAB5eAAAOHaNBXl4jQU4do0Fu4AAALuAjQV7fgAAe34AAH10AAA8co0FfXSNBTxy/3/Se9d9hnsngoZ7KYSqetV7qnrihUt5HHpLeTWHgXf/f8F3yXiBdyOBmXfbfpl3M4Ikd8t9JHcKiGx19HdsdRyDa3bPg3l1QIRfdFOIMHNmhDBz4nxrdi98eXW+e190Coj1cECEAnLPg+hwq3cwc5h7MHO+ewJy9Hf1cC986HA1h+BuyXjgbhyD9m8zgj1vI4HIbuJ89m/LfT1v237IbuKFFm0cehZt/3+gbtV7t2sphLdrJ4Laatd92mr/f49qcfp7fv//e35x+ruA//+7gP//mHP//9l1cfqYc3H62XWNBc6FAADOhY0FjYMAAI2DcfqNg///jYNx+s6F///OhY0FL3wAAC98jQXveQAA73n/f9J7132GeyeChnsphKp61XuqeuKFS3kcekt5/3/xeG+Bv3iPfr94NYeBd8aCLHjsg0J3yXiBdzh9LHgSfEJ3Cohsdc6EEXZcha50U4gwc4yFMHP0d2x1MHsRdqJ6rnQKiPVwXIWzcc6EUHCrdzBzcnowc6J6s3H0d/VwMHtQcDWH4G7sgx9vxoI1bsl44G4SfB9vOH01buKFFm0cehZtb4GibY9+om3/f3BtKYS3a9V7t2sngtpq133aav9/j2rhDR104Q2ccpBLHXSQS5xybrRPeh3yT3putM97HfLPe5BLW4DhDVuAkEvbfuEN237hDe2DkEvtg+ENboWQS26F4Q15deEN+HOQS3l1kEv4cx3ynHId8h10brSccm60HXQd8luAbrRbgB3y235utNt+HfKYdh3yGXhutJh2brQZeB3y+HMd8nl1brT4c260eXXhDU96kEtPeuENz3uQS897kEtuheENboWQS+2D4Q3tgx3ynHId8h10brSccm60HXThDXl14Q34c5BLeXWQS/hz4Q0ddOENnHKQSx10kEuccuENGXjhDZh2kEsZeJBLmHZutNt+HfLbfm60W4Ad8luA4Q0ZeOENmHaQSxl4kEuYdpBLz3vhDc97kEtPeuENT3od8vhzHfJ5dW60+HNutHl1HfLPe260z3sd8k96brRPeuEN236QS9t+4Q1bgJBLW4ButO2DHfLtg260boUd8m6FHfJuhW60boUd8u2DbrTtgx3ymHYd8hl4brSYdm60GXirdxJnHnLTbB5yEmfgjRJn4I3TbFOIEmcra0NuYHFDbitrBHRgcQR0no5Dbp6OBHRpiENuaYgEdNOUQ27TlAR0no5Dbp6OBHRgcUNulXdDbmBxBHSVdwR0kEvIkJBLFX4pVciQKVVmglJnY2s8QxV+UmfkdoOWZoL1kOR2rj0SZzxDyJCuPciQRbISZ/WQY2tFstNsB85mggfO02weciqfV28qnx5yyJCRbMiQHnJmgpFsZoKnkCqf4I0qn22TyJBtk2aCkWyys5Fs+W8ecrKzHnL5b9WqpozVqlGbe2mmjHtpUZunkPlvp5Cys+CN+W/gjbKz9zHTbLlN02z3MWaCe2lmgrlNEmcJb+R2rJjkdglvY2vVqmaCrJhja1DCEmfCvBV+UMLIkMK8yJButBV+brTIkNWqyJApVSqfKVXIkIOWKp+DlsiQ1apmgtWqyJB7aWaCe2nIkOR0oQjkdAAAGouhCBqLAAAecvlvHnKys1dv+W9Xb7KzGos/VOR0P1Qai4VK5HSFStWqyJDVqiqfe2nIkHtpKp/gjbKz4I35b22TsrNtk/lvBQ1UWFMIwWDOBQRUUwi3iM4FdJUFDSSRAAAHiwAAcV4ai+2j5HTtoxqLM5rkdDOa5HQK/OR0afMaiwr8Gotp8/nyJJGr97eIMPp0lav3wWAw+gRU+fJUWP//B4v//3FeKVXIkClVZoKDlsiQg5ZmguR0P1TkdDVIGos/VBqLNUgaiz2m5HQ9phqLM5rkdDOaHnIqn1dvKp+RbMiQkWxmghqLB4vkdAeLGotxXuR0cV6nkCqf4I0qn22TyJDgjciQbZNmguCNZoIpVVGbKVWmjIOWUZuDlqaMHnL5bx5ycDard/lvq3fIaKt3ZlpTiMhoq3ehPTh9cDbGgnA2U4hmWlOI+W/gjflvU4ihPeCNcDbgjWaCxoJmguCN02zGgqV8OH2lfMaC02zGghJnU4gSZx5y02w4fdNsOH0SZ6t3EmcecmaCOH1mgrlNwH73McB+uU2ddvcxnXZFssB+RbKddgfOwH4Hzp124I00U+CNBsxTiDRTU4iXYVOIcDard3A2q3c0U1OIA7Wrd5dhq3cDtR5yBswecjRT5HS3iMaCpXwai7eIGovBYDh9pXzGguR25HTBYDh95HY4fdNsxoLTbDh9EmfGghJnHnLIkIKKS43gjciQ4I0SZ3x1S42Cio9qHnISZ3x1j2qrd7p1q3fgoB5yunUecuCgU4jgoFOIunXgjeCg4I26dat35HYecuR2q3djax5yY2urd+R2HnLkdqt3Y2secmNr4I26deCN4KBTiLp1U4jgoOCN5HZTiOR24I1ja1OIY2vgjeR2U4jkduCNY2tTiGNrHnLgoB5yunWrd+Cgq3e6dapUZoLnOGaCyUaMrclGLrYGKy62BiuMrVOIbserd27HU4jzmat385lTiC62q3cutlOIjK2rd4ytU4gutqt3LrZTiIytq3eMrVOIbpird26YU4jakKt32pA1uS62NbmMrfjULrYXx2aC+NSMrVSrZoJTiD8vU4gDTKt3Py+rdwNMU4hWvqt3Vr5TiAOgq3cDoAAASIUAABeEjQVIhY0FF4QAALKFjQWyhQAA44aNBeOGAABdho0FXYYAAI6HjQWOh///jodx+o6H//9dhnH6XYb//0uGcfpLhv//GoVx+hqFjQXjhgAA44aNBbKFAACyhQAAdoUAAEWEjQV2hY0FRYThDdKG4Q2ShI0FS4YAAEuGjQUahQAAGoUAAHaFAABFhI0FdoWNBUWEAADOhQAAnYSNBc6FjQWdhP//RYT//3aFcfpFhHH6doX//52E///OhXH6nYRx+s6Fcfqyhf//soVx+uOG///jhgAAzoUAAJ2EjQXOhY0FnYT//+OGcfrjhv//soVx+rKFcfoahf//GoVx+kuG//9Lhv//RYT//3aFcfpFhHH6doVx+l2G//9dhnH6jof//46H4Q3QheENj4MAABqFjQUahQAAS4aNBUuGjQWOhwAAjoeNBV2GAABdhv//F4T//0iFcfoXhHH6SIXhDVaG4Q0VhP//nYT//86FcfqdhHH6zoX//xeE//9IhXH6F4Rx+kiFAABIhQAAF4SNBUiFjQUXhOEN/YXhDb2DHfK9gx3y/YX/fzqJ234SiSOBEokzgp2Iy32diOJ85Iccg+SHz4Pyhi988oZAhNiFvnvYhWaEqoSYe6qEvnt7g0CEe4MvfGGCz4NhguJ8cIEcg3CBM4K2gMt9toDbfkGAI4FBgP9/GYDhDdWF4Q0WiB3y1YUd8haIHfK9gx3y/YXhDZKE4Q3ShuENFojhDdWFHfIqhR3ya4fhDdCF4Q2Pgx3yFYQd8laGHfKPgx3y0IXhDf2F4Q29g+ENa4fhDSqFHfKShB3y0oYd8muHHfIqheENKoXhDWuHHfKPgx3y0IUd8tKGHfKShB3yFYQd8laG4Q1WhuENFYQd8haIHfLVhat31ZCrd6mGU4jVkFOIqYauPUuNrj2PapBLS42QS49q5FMSZ9Ra4V9kpBJnZKThX3x1Bsx8daS9gooGzIKKpL1Qwo9qUMJLjW60j2putEuNgoqkvYKKBsx8daS9fHUGzBqsEmeaWxJnKqXhX5pb4V9TiBJnq3cSZ1OI4V+rd+FfjQWnewAAp3uNBXZ6AAB2eo0FRoUAAEaFjQUVhAAAFYSNBTSAAAA0gI0FA38AAAN/HfKYcx3y2XUd8i98HfLveQAAUXUAACB0jQVRdY0FIHQAAPF3AADAdo0F8XeNBcB2//9GhXH6RoX//xWEcfoVhHH6dnr//3Z6cfqne///p3sd8phzHfLZdQAAUXUAACB0jQVRdY0FIHQAAPVzAADEco0F9XONBcRy//+ne3H6p3v//3Z6cfp2ev//xHL///VzcfrEcnH69XP/f8F3236ZdyOBmXczgiR3y30kd+J8a3Ycg2t2z4N5dS98eXVAhF90vntfdGaEMHOYezBzvnsCckCEAnIvfOhwz4PocOJ89m8cg/ZvM4I9b8t9PW/bfshuI4HIbv9/oG7hDdl14Q2Yc+ENjYPhDc6F///Adv//8Xdx+sB2cfrxd+ENeXjhDTh24Q0vfOEN73kAAPF3AADAdo0F8XeNBcB24Q19dOENPHId8jxyHfJ9dHH6FYT//xWEcfpGhf//RoX//zSAcfo0gP//A39x+gN/cfoDf///A39x+jSA//80gOENu4DhDXt+4Q3OheENjYMAAHZ6jQV2egAAp3uNBad7AAAVhI0FFYQAAEaFjQVGhQAA9XMAAMRyjQX1c40FxHIAAAN/jQUDfwAANICNBTSA//8gdP//UXVx+iB0cfpRdf//xHL///VzcfrEcnH69XP//yB0//9RdXH6IHRx+lF1///Adv//8Xdx+sB2cfrxd+ENfXThDTxyHfKNgx3yzoUd8u95HfIvfB3yu4Ad8nt+HfI4dh3yeXgd8jxyHfJ9dB3yzoUd8o2D4Q3veeENL3zhDXt+4Q27gB3yOHYd8nl4HfJ7fh3yu4DhDXl44Q04duEN2XXhDZhz9ZBjaxlqQ25SZ2NrUmfkdjN1Q24ZagR0M3UEdPWQ5Hard5dh1XsRqKt30q1TiNKt1XsHoCmEEajVe/WEKYQHoNV763wphPWEU4iXYSmE63zsg0J3zoQRdv9/6X7Ggix4b4G/eP9/8XiPfr94OH0seBJ8QncwexF2b4Ebf4KKj2pcha50xoKuf4yFMHPsg5iAXIWzcc6EyYHOhFBwXIUsg+yDH2+MhaqExoI1bm+Bom1chSeG/39wbXx1j2qPfqJtgopLjTh9NW7OhIqHEnwfb+yDu4jGgqWJb4E4inx1S40we1Bw/39qiqJ6s3FyejBzonqudI9+G3+PfjiKOH2ufzh9pYkSfJiAEny7iDB7ioeieieGMHvJgXJ6qoSieiyDrJjkduWVQ26smGNrCW9ja+WVBHTLikNuCW/kdsuKBHS8kciQvJFor8B4yJA3ik2zwHhNs0JuaK9CbsiQx3VNsz6HyJA+h02zOH3Lfzh95JGrd8t/OH3Lfzh95JGrd8t/"), -"format": 34896613399, -"index_count": 1128, -"index_data": PackedByteArray("5ATiBOME4wTlBOQE6ATmBOcE5wTpBOgE7ATqBOsE6wTtBOwE8ATuBO8E7wTxBPAE9ATyBPME8wT1BPQE+AT2BPcE9wT5BPgE/AT6BPsE+wT9BPwEAAX+BP8E/wQBBQAFAwUCBUcBRwFGAQMFRgEEBQMFBAUFBQMFBQUGBQMFBgUHBQMFCgUIBQkFCQULBQoFDgUMBQ0FDQUPBQ4FEgUQBREFEQUTBRIFFgUUBRUFFQUXBRYFGgUYBRkFGQUbBRoFGwUcBRoFGwUZBT0BGwU9ATwBPAEdBRsFIAUeBR8FHwUhBSAFJAUiBSMFIwUlBSQFKAUmBScFJwUpBSgFLAUqBSsFKwUtBSwFMAUuBS8FLwUxBTAFNAUyBTMFMwU1BTQFOAU2BTcFNwU5BTgFPAU6BTsFOwU9BTwFQAU+BT8FPwVBBUAFQwVCBRICEgIUAkMFRgVEBUUFRQVHBUYFSgVIBUkFSQVLBUoFTgVMBU0FTQVPBU4FUgVQBVEFUQVTBVIFVgVUBVUFVQVXBVYFWgVYBVkFWQVbBVoFXgVcBV0FXQVfBV4FYgVgBWEFYQVjBWIFZgVkBWUFZQVnBWYFagVoBWkFaQVrBWoFbgVsBW0FbQVvBW4FcAWsAa0BrQFxBXAFdAVyBXMFcwV1BXQFeAV2BXcFdwV5BXgFfAV6BXsFewV9BXwFfgUgAiECIQJ/BX4FggWABYEFgQWDBYIFhgWEBYUFhQWHBYYFigWIBYkFiQWLBYoFjAUYAhkCGQKNBYwFjgXEAcUBxQGPBY4FkgWQBZEFkQWTBZIFkQWUBZMFlAWVBZMFlQWWBZMFlQWXBZYFlQWYBZcFmAWZBZcFmAWaBZkFmgWbBZkFmgWcBZsFnAWdBZsFnQWeBZsFnQWfBZ4FnwWgBZ4FnwWhBaAFoQWiBaAFoQWjBaIFoQWkBaMFpAWlBaMFpQWmBaMFpQWnBaYFJQIjAqgFqAWpBSUCqwWqBa4BrgGwAasFrAWgAaEBoQGtBawFHQIbAq4FrgWvBR0CsQWwBZoBmgGcAbEFswWyBQYCBgIIArMFtAW8Ab0BvQG1BbQFtgXUAdUB1QG3BbYFuAUMAg0CDQK5BbgFugXIAckByQG7BboFvQW8BQ4CDgIQAr0FvwW+Bc4BzgHQAb8FpQGjAcAFwAXBBaUBaQFnAcIFwgXDBWkBxAW0AbUBtQHFBcQFwQG/AcYFxgXHBcEByAW4AbkBuQHJBcgFygXMAc0BzQHLBcoFqQGnAcwFzAXNBakB0AXOBc8FzwXRBdAF1AXSBdMF0wXVBdQF2AXWBdcF1wXZBdgF3AXaBdsF2wXdBdwF4AXeBd8F3wXhBeAF5AXiBeMF4wXlBeQF6AXmBecF5wXpBegF7AXqBesF6wXtBewF8AXuBe8F7wXxBfAF9AXyBfMF8wX1BfQF+AX2BfcF9wX5BfgF+gVgA2EDYQP7BfoFCQMHA/wF/AX9BQkDAAb+Bf8F/wUBBgAGBAYCBgMGAwYFBgQGCAYGBgcGBwYJBggGDAYKBgsGCwYNBgwGDgb8Av0C/QIPBg4GEgYQBhEGEQYTBhIGFgYUBhUGFQYXBhYGGgYYBhkGGQYbBhoGHgYcBh0GHQYfBh4GIgYgBiEGIQYjBiIGIQYkBiMGJAYlBiMGJQYmBiMGJQYnBiYGJQYoBicGKAYpBicGKAYqBikGKgYrBikGKgYsBisGLAYtBisGLQYuBisGLQYvBi4GLwYwBi4GLwYxBjAGMQYyBjAGMQYzBjIGMQY0BjMGNAY1BjMGNQY2BjMGNQY3BjYGOAYcAx0DHQM5BjgG6QLnAjoGOgY7BukCPgY8Bj0GPQY/Bj4GQAYgAyEDIQNBBkAGQwZCBmoDagNsA0MGRgZEBkUGRQZHBkYGSAYoAykDKQNJBkgGSgYAAwEDAQNLBkoGTgZMBk0GTQZPBk4GUgZQBlEGUQZTBlIGVgZUBlUGVQZXBlYGWQZYBiIDIgMkA1kGWwZaBmIDYgNkA1sGXgZcBl0GXQZfBl4GYgZgBmEGYQZjBmIGZgZkBmUGZQZnBmYGagZoBmkGaQZrBmoGbgZsBm0GbQZvBm4GcgZwBnEGcQZzBnIGdgZ0BnUGdQZ3BnYGegZ4BnkGeQZ7BnoGfAYYAxkDGQN9BnwGfwZ+BmYDZgNoA38GgQaABt4C3gLgAoEG5QLjAoIGggaDBuUChAYEAwUDBQOFBoQGhgbsAu0C7QKHBoYGEQMPA4gGiAaJBhED8QLvAooGigaLBvEC+QL3AowGjAaNBvkCjgYMAw0DDQOPBo4GkQaQBloDWgNcA5EGkgb0AvUC9QKTBpIGlAYUAxUDFQOVBpQGmAaWBpcGlwaZBpgGlgaaBpcGmQaXBpsGlgacBpoGmwadBpkGmwacBp0GnAaWBp0GoAaeBp8GnwahBqAGngaiBp8GnwajBqEGpAaiBp4GpQaiBqQGpgakBp4GpAanBqUGpwajBqUGngaoBqYGpwapBqMGowapBqEGqAapBqYGqAahBqkGrAaqBqsGrAatBqoGrAauBq0GrAavBq4GsAavBqwGsQawBqwGsgaxBqwGswayBqwGtAasBqsGtAarBrUGqwa2BrUGtwa0BrUGtga4BrUGuQa3BrUGuAa6BrUGuwa5BrUGuga8BrUGvQa7BrUGvAa+BrUGvwa9BrUGvgbABrUGwAbBBrUGwga/BrUGwQbDBrUGxAa1BsMGxAbDBsUGwga1BsYGxAbFBscGyAbCBsYGxAbHBskGygbIBsYGywbKBsYGzAbLBsYGxgbNBswGxAbJBs4GzQbPBswGxAbOBtAGxAbQBtEGxAbRBtIGxAbSBrMGxAazBtMGswasBtMG1AbPBs0GxAbTBtUG1gbUBs0GxAbVBtcG2AbWBs0G2QbYBs0G2gbZBs0GzQbEBtoGxAbXBtsGxAbcBtoGxAbbBt0GxAbdBtwG4AbeBt8G3wbhBuAG4gbfBt4G3wbjBuEG3gbkBuIG4wblBuEG5AblBuIG5AbhBuUG"), -"material": SubResource("StandardMaterial3D_necxe"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(36.3075, 35.0357, 0, 0), -"vertex_count": 1782, -"vertex_data": PackedByteArray("2rborsuK//8jyeiuy4r//9q25rzLiv//I8nmvMuK///atuiuy4pU1dq26K7llVTVI8norsuKVNUjyeiu5ZVU1Wzb6K5YkFTVkiTorliQVNXbNuiu5ZVU1ds26K7LilTVJEnorsuKVNUkSeiu5ZVU1SRJ6K7llf//2zboruWV//8kSea85ZX//9s25rzllf//2rbmvOWVVNXatua8y4pU1SPJ5rzllVTVI8nmvMuKVNVs2+a8WJBU1SPJ6K7llf//2rboruWV//8jyea85ZX//9q25rzllf//2zborsuK//8kSeiuy4r//9s25rzLiv//JEnmvMuK//+SJOa8WJBU1ds25rzLilTV2zbmvOWVVNUkSea85ZVU1SRJ5rzLilTV/v9yZd7mVNUY+3JlpOlU1f7/cmXCvFTVte1yZa3rVNVs23JlwrxU1WzbcmXe5lTVbNtyZWvsVNWSJHJl3uZU1ZIkcmVr7FTVkiRyZcK8VNVJEnJlretU1eYEcmWk6VTVAAByZcK8VNUAAHJl3uZU1Wzba5bCvFTVbNtrlm60VNW17YuUwrxU1bXti5RutFTVGPt1UKTpSsq17XVQreu6whj7cmWk6UrKte1yZa3rusJs23NebrT///7/c15utP//bNvxaG60///+/22IbrT//2zba5ZutP//GPtsj260//+17YuUbrT///7/dVDe5lTV/v9yZd7mVNX+/3VQ/LlU1f7/cmXCvFTV/v9tiMK8VNX+/22IbrRU1f7/VVI1t1TV/v90Vy21VNX+/3NebrRU1QAAbYjCvFTVAAByZcK8VNUAAG2IbrRU1QAAdVD8uVTVAAB1UN7mVNUAAHJl3uZU1QAAVVI1t1TVAAB0Vy21VNUAAHNebrRU1ZIkdVBr7LDASRJ1UK3rusKSJHJla+ywwEkScmWt67rC5gRsj8K8VNUAAG2IwrxU1eYEbI9utFTVAABtiG60VNVs23RXLbX/8P7/dFcttf/wbNtzXm60dvj+/3NebrR2+GzbdVD8uVTVbNt1UN7mVNX+/3VQ/LlU1WzbdVBr7FTVte11UK3rVNUY+3VQpOlU1f7/dVDe5lTVkiR1UGvsVNWSJHVQ3uZU1ZIkdVD8uVTVSRJ1UK3rVNXmBHVQpOlU1QAAdVDe5lTVAAB1UPy5VNUY+2yPwrxU1bXti5TCvFTVGPtsj260VNW17YuUbrRU1WzbVVI1t4zibNt1UPy5vNv+/1VSNbeM4v7/dVD8ubzbbNtVUjW3jOL+/1VSNbeM4mzbdFcttf/w/v90Vy21//BJEouUwrxU1eYEbI/CvFTVSRKLlG60VNXmBGyPbrRU1UkSi5TCvFTVSRKLlG60VNWSJGuWwrxU1ZIka5ZutFTVte11UK3rusJs23VQa+ywwLXtcmWt67rCbNtyZWvssMAAAFVSNbeM4gAAdVD8ubzbkiRVUjW3jOKSJHVQ/Lm82wAAVVI1t4zikiRVUjW3jOIAAHRXLbX/8JIkdFcttf/wbNvxaMK8VNVs23JlwrxU1Wzb8WhutFTVbNt1UPy5VNVs23VQ3uZU1WzbcmXe5lTVbNtVUjW3VNVs23RXLbVU1Wzbc15utFTV/v9yZcK8//9s23Jlwrz///7/bYjCvP//bNvxaMK8//9s22uWwrz//xj7bI/CvP//te2LlMK8//9JEnVQreu6wuYEdVCk6UrKSRJyZa3rusLmBHJlpOlKypIkdVDe5lTVkiRyZd7mVNWSJHVQ/LlU1ZIkcmXCvFTVkiTxaMK8VNWSJPFobrRU1ZIkVVI1t1TVkiR0Vy21VNWSJHNebrRU1WzbdVBr7P//kiR1UGvs//9s23Jla+z//5IkcmVr7P//GPt1UKTpSsoY+3JlpOlKyv7/dVDe5nfP/v9yZd7md8/mBHJlpOlKyuYEdVCk6UrKAAByZd7md88AAHVQ3uZ3z5IkcmXCvP//AAByZcK8//+SJPFowrz//wAAbYjCvP//kiRrlsK8///mBGyPwrz//0kSi5TCvP//AAB0Vy21//CSJHRXLbX/8AAAc15utHb4kiRzXm60dvgAAHNebrT//5Ikc15utP//AABtiG60//+SJPFobrT//5Ika5ZutP//5gRsj260//9JEouUbrT///7/bYjCvFTVGPtsj8K8VNX+/22IbrRU1Rj7bI9utFTVkiR1UN7m//9s23VQ3ub//5IkcmXe5v//bNtyZd7m//+2beuZ9zFI0rZt6adTCEjSSJLrmfcxSNJIkumnUwhI0rZt65lTCIPYtm3ti/cxg9hIkuuZUwiD2EiS7Yv3MYPYSJJmwPcxVNVIkmTO9zFU1UiSZsBTCFTVSJJkzlMIVNW2beuZ9zFU1bZt7Yv3MVTVtm3pp1MIVNW2beuZUwhU1bZtZsBTCFTVtm1mwPcxVNVIkmbAUwhU1UiSZsD3MVTVSJLti/cxVNVIkuuZ9zFU1UiS65lTCFTVSJLpp1MIVNW2bWTO9zFU1bZtZsD3MVTVtm1kzlMIVNW2bWbAUwhU1bZtZM73MVTVtm1kzlMIVNVIkmTO9zFU1UiSZM5TCFTV2rZ9EQ+aCsMkSX0RD5oKw9q28WgPmv//JEnxaA+a//9Ikv0UN4r62kiS/RTAeFTV2rb9FDeK+tratv0UwHhU1dq28WhscFTV2rYAAGxwVNXatvFowHhU1dq2/RTAeFTV2rb9FDeKVNXatgAALoxU1dq2dh68kVTV2rZ9EQ+aVNXatvFoD5pU1dq28Wi8kVTVJEl2HryRJvC2bXYevJEm8CRJ8Wi8kf//tm3xaLyR//8kSfFoCVBU1SRJ8Wh7aVTV2rbxaAlQVNXatvFoe2lU1dq28WhscFTV2rbxaMB4VNUkSfFobHBU1dq28Wi8kVTVSJLxaLyRVNVIkvFowHhU1dq28WgPmlTVbNvxaFDCVNVs2/Foe2lU1Wzb8WjVqlTVbNvxaG60VNVs2/FowrxU1SRJ8WgPmlTVkiTxaFDCVNUkSfFowHhU1SRJ8Wi8kVTVtm3xaMB4VNW2bfFovJFU1ZIk8WjCvFTVkiTxaG60VNWSJPFo1apU1ZIk8Wh7aVTVJEkAAGxwVNUkSQAALowa0Nq2AABscFTV2rYAAC6MGtAkSQAAbHD//9q2AABscP//JEnxaGxw///atvFobHD//yRJb3pZUlTV2rZvellSVNUkSW96i2JU1dq2b3qLYlTV2rbxaHtp//9s2/Foe2n//9q27Yt7af//bNvti3tp//9IknYevJEm8Nq2dh68kSbwSJLxaLyR///atvFovJH//7Zt/RTAeP//JEn9FMB4//+2bfFowHj//yRJ8WjAeP//JEl2HryRJvAkSf0UN4r62rZtdh68kSbwtm39FDeK+tratm96WVL/v9q28WgJUP+/2rZveotiVNXatvFoe2lU1dq27Yt7aVTV2rbti4tiVNUkSe2Le2lU1SRJ8Wh7aVTVJEnti4tiVNUkSW96i2JU1SRJ8WgJUP+/JElvellS/78kSQAALowa0CRJfREPmgrD2rYAAC6MGtDatn0RD5oKwyRJb3qLYv//2rZveoti//8kSe2Li2L//9q27YuLYv//2rb9FMB4//9Ikv0UwHj//9q28WjAeP//SJLxaMB4//9IknYevJEm8EiS/RQ3ivra2rZ2HryRJvDatv0UN4r62iRJ8WjAeFTVJEn9FMB4VNUkSfFobHBU1SRJAABscFTVJEn9FDeKVNUkSQAALoxU1SRJdh68kVTVJEl9EQ+aVNUkSfFovJFU1SRJ8WgPmlTVJEn9FDeK+tokSf0UwHhU1bZt/RQ3ivratm39FMB4VNUyjrGa//9U1TKOsZpx+nfPbZuYmP//VNVtm5iYcfpKyv9/aJv/////Mo6xmv/////McbGa/////5FkmJj/////bZuYmP/////JpkKV/////zVZQpX//////3+Ekf////99eCOR/////4GHI5H/////fVDpkP////+Br+mQ/////35xCJD/////fGtEjv/////gZviL/////wJL2ov/////+mNKif////+AjgiQ/////4KURI7/////Hpn4i/////8kSWuG//////1ia4b/////+mOLg//////8tNqL/////wScSon/////AZ1rhv/////atmuG/////wSci4P/////Akv8gP/////8tPyA/////+Bm3oD/////fGuSfv////9+cc58/////x6Z3oD/////gpSSfv////+Ajs58/////31Q7Hv/////ga/se/////+Bh7J7/////314snv//////39Se//////JppN3/////zVZk3f/////kWQ+dP////9tmz50/////8xxJXL/////Mo4lcv//////f25x//////9/bnFx+lTV/39ucf//VNUyjiVycfp3zzKOJXL//1TVfVDpkP//VNUCS9qL//9U1X1Q6ZBx+rrCAkvai3H6sMCRZJiY//9U1ZFkmJhx+krKzHGxmv//VNXMcbGacfp3z8xxsZr//1TVzHGxmnH6d8//f2ib//9U1f9/aJtx+lTV/LT8gP//VNXatmuG//9U1fy0/IBx+rDA2rZrhnH6/7/McSVycfp3z8xxJXL//1TV/39ucXH6VNX/f25x//9U1SRJa4b//1TVAkv8gP//VNUkSWuGcfr/vwJL/IBx+rDAfVDse///VNU1WZN3//9U1X1Q7Htx+rrCNVmTd3H6/MXatmuG//9U1fy02ov//1TV2rZrhnH6/7/8tNqLcfqwwDVZQpX//1TVNVlClXH6/MWRZJiY//9U1ZFkmJhx+krKAkv8gP//VNV9UOx7//9U1QJL/IBx+rDAfVDse3H6usL8tNqL//9U1YGv6ZD//1TV/LTai3H6sMCBr+mQcfq6woGv6ZD//1TVyaZClf//VNWBr+mQcfq6wsmmQpVx+vzFNVmTd3H6/MU1WZN3//9U1ZFkPnRx+krKkWQ+dP//VNU1WUKV//9U1X1Q6ZD//1TVNVlClXH6/MV9UOmQcfq6wv9/bnEd8v//Mo4lch3y///McSVyHfL//5FkPnQd8v//bZs+dB3y//81WZN3HfL//8mmk3cd8v///39teB3y//+Idud4HfL//3aJ53gd8v//fVDsex3y//+2bU16HfL//yNmhnwd8v//ga/sex3y//9Ikk16HfL//9uZhnwd8v//Akv8gB3y//9TYGx/HfL//6xczIId8v//JElrhh3y//9tW2uGHfL///y0/IAd8v//q59sfx3y//9So8yCHfL//wJL2osd8v//rFwKih3y//9TYGqNHfL//9q2a4Yd8v//kaRrhh3y//9SowqKHfL///y02osd8v//q59qjR3y//99UOmQHfL//yNmUJAd8v//tm2Jkh3y//+Br+mQHfL//9uZUJAd8v//SJKJkh3y//81WUKVHfL//8mmQpUd8v//iHbvkx3y//92ie+THfL///9/aZQd8v//kWSYmB3y//9tm5iYHfL//8xxsZod8v//Mo6xmh3y////f2ibHfL//5FkPnRx+krKkWQ+dP//VNXMcSVycfp3z8xxJXL//1TVAkvai///VNUkSWuG//9U1QJL2otx+rDAJElrhnH6/78yjiVycfp3zzKOJXL//1TVbZs+dHH6Ssptmz50//9U1W2bPnRx+krKbZs+dP//VNXJppN3cfr8xcmmk3f//1TVga/se///VNX8tPyA//9U1YGv7Htx+rrC/LT8gHH6sMBtm5iY//9U1W2bmJhx+krKyaZClf//VNXJpkKVcfr8xcmmk3f//1TVga/se///VNXJppN3cfr8xYGv7Htx+rrC/39om///VNX/f2ibcfpU1TKOsZr//1TVMo6xmnH6d8+RpGuGHfJU1VKjCood8lTVkaRrhm60VNVSowqKbrRU1UiSiZId8lTVSJKJkm60VNXbmVCQHfJU1duZUJButFTVbVtrhh3yVNWsXMyCHfJU1W1ba4ZutFTVrFzMgm60VNUjZlCQHfJU1SNmUJButFTVtm2Jkh3yVNW2bYmSbrRU1f9/aZQd8lTV/39plG60VNV2ie+THfJU1XaJ75NutFTVdonvkx3yVNV2ie+TbrRU1UiSiZId8lTVSJKJkm60VNWrn2x/HfJU1VKjzIId8lTVq59sf260VNVSo8yCbrRU1duZhnwd8lTVq59sfx3yVNXbmYZ8brRU1aufbH9utFTViHbneG60VNWIdud4HfJU1f9/bXhutFTV/39teB3yVNVTYGqNHfJU1axcCood8lTVU2BqjW60VNWsXAqKbrRU1VKjCood8lTVq59qjR3yVNVSowqKbrRU1aufao1utFTVrFzMgh3yVNVTYGx/HfJU1axczIJutFTVU2Bsf260VNW2bYmSHfJU1bZtiZJutFTViHbvkx3yVNWIdu+TbrRU1SNmhnxutFTVI2aGfB3yVNW2bU16brRU1bZtTXod8lTVq59qjR3yVNXbmVCQHfJU1aufao1utFTV25lQkG60VNVIkk16brRU1UiSTXod8lTV25mGfG60VNXbmYZ8HfJU1axcCood8lTVbVtrhh3yVNWsXAqKbrRU1W1ba4ZutFTViHbvkx3yVNWIdu+TbrRU1f9/aZQd8lTV/39plG60VNVSo8yCHfJU1ZGka4Yd8lTVUqPMgm60VNWRpGuGbrRU1XaJ53hutFTVdonneB3yVNVIkk16brRU1UiSTXod8lTVU2Bsfx3yVNUjZoZ8HfJU1VNgbH9utFTVI2aGfG60VNX/f214brRU1f9/bXgd8lTVdonneG60VNV2ied4HfJU1SNmUJAd8lTVU2BqjR3yVNUjZlCQbrRU1VNgao1utFTVtm1Nem60VNW2bU16HfJU1Yh253hutFTViHbneB3yVNWSJPFoe2n//yRJ8Wh7af//kiTti3tp//8kSe2Le2n//22b4d+dn///kWTh352f//9tm3DsnZ///5FkcOydn///bZvh39qX//9tm3Ds2pf//5Fk4d/al///kWRw7NqX//+RZHDsu31U1ZFkcOzal1TVbZtw7Lt9VNVtm3Ds2pdU1ZFk///al1TVkWT//7t9VNVtm///2pdU1W2b//+7fVTVbZvh37t9//+RZOHfu33//22bcOy7ff//kWRw7Lt9//9tm+Hf+XX//22bcOz5df//kWTh3/l1//+RZHDs+XX//22b4d+7fVTVbZtw7Lt9VNVtm+Hf+XVU1W2b//+7fVTVbZtg/dp5VNVtm937QXlU1W2bN/YDd1TVbZtw7Pl1VNVtm///2pdU1W2bcOzal1TVbZvh39qXVNVtm2D9vJtU1W2b3ftVnFTVbZs39pOeVNVtm3DsnZ9U1W2b4d+dn1TVbZtw7Pl1dvhtmzf2A3f/8JFkcOz5dXb4kWQ39gN3//CRZHDs+XVU1ZFkN/YDd1TVkWTh3/l1VNWRZN37QXlU1ZFkYP3aeVTVkWTh37t9VNWRZHDsu31U1ZFk//+7fVTVkWRw7NqXVNWRZP//2pdU1ZFk4d/al1TVkWRg/bybVNWRZN37VZxU1ZFkN/aTnlTVkWTh352fVNWRZHDsnZ9U1ZFk//+7fbzbkWRg/dp5jOJtm///u328222bYP3aeYzibZs39gN3//Btm937QXmq6ZFkN/YDd//wkWTd+0F5qultm2D92nmM4pFkYP3aeYzikWT//9qXd89tm///2pd3z5FkYP28m0rKbZtg/bybSsqRZGD9vJtKym2bYP28m0rKkWTd+1Wc/MVtm937VZz8xW2bN/aTnrrCkWQ39pOeusJtm3DsnZ+wwJFkcOydn7DAbZs39pOeusKRZDf2k566wjVZE6Jx+vzFNVkTov//VNWRZL2ecfpKypFkvZ7//1TVkWQXw///VNWRZBfDcfpKysxxMMX//1TVzHEwxXH6d8//f+fF//9U1f9/58Vx+lTVMo4wxf//VNUyjjDFcfp3zwJLWbb//1TVJEnqsP//VNUCS1m2cfqwwCRJ6rBx+v+/bZsXw///VNVtmxfDcfpKysmmwb///1TVyabBv3H6/MWBr2m7//9U1cmmwb///1TVga9pu3H6usLJpsG/cfr8xTKOMMX//1TVMo4wxXH6d89tmxfD//9U1W2bF8Nx+krKAkt7q///VNV9UGum//9U1QJLe6tx+rDAfVBrpnH6usIkSeqw//9U1QJLe6v//1TVJEnqsHH6/78CS3urcfqwwDVZwb///1TVfVBpu///VNU1WcG/cfr8xX1Qabtx+rrCNVnBv///VNU1WcG/cfr8xZFkF8P//1TVkWQXw3H6Ssp9UGum//9U1TVZE6L//1TVfVBrpnH6usI1WROicfr8xcxxMMX//1TVzHEwxXH6d8//f+fF//9U1f9/58Vx+lTV/LRZtv//VNWBr2m7//9U1fy0WbZx+rDAga9pu3H6usL8tHur//9U1dq26rD//1TV/LR7q3H6sMDatuqwcfr/v4Gva6b//1TV/LR7q///VNWBr2umcfq6wvy0e6tx+rDAyaYTov//VNWBr2um//9U1cmmE6Jx+vzFga9rpnH6usIyjqSccfp3zzKOpJz//1TVbZu9nnH6Ssptm72e//9U1dq26rD//1TV/LRZtv//VNXatuqwcfr/v/y0WbZx+rDA/3/tm//////McaSc/////zKOpJz/////bZu9nv////+RZL2e/////8mmE6L/////NVkTov////+Br2um//////9/0aX/////fVBrpv////+BhzKm/////314Mqb/////gI5Np/////9+cU2n//////y0e6v/////Akt7q/////+ClBGp/////x6ZXav/////BJwLrv/////atuqw/////wGd6rD/////fGsRqf/////gZl2r//////pjC67//////LRZtv////8EnMmz/////x6Zd7b/////JEnqsP/////9Yuqw//////pjybP/////AktZtv/////gZne2/////4Gvabv/////fVBpu/////+ClMO4/////4COh7r/////gYeju/////98a8O4/////35xh7r/////fXiju//////JpsG//////zVZwb///////38DvP////+RZBfD/////22bF8P/////Mo4wxf/////McTDF//////9/58X/////kWS9nnH6SsqRZL2e//9U1cxxpJxx+nfPzHGknP//VNV9UGm7//9U1QJLWbb//1TVfVBpu3H6usICS1m2cfqwwP9/7Ztx+lTV/3/tm///VNUyjqSccfp3zzKOpJz//1TVzHGknHH6d8/McaSc//9U1f9/7Ztx+lTV/3/tm///VNVtm72ecfpKym2bvZ7//1TVyaYTonH6/MXJphOi//9U1f9/7Zsd8v//Mo6knB3y///McaScHfL//5FkvZ4d8v//bZu9nh3y//81WROiHfL//8mmE6Id8v///3/soh3y//+IdmajHfL//3aJZqMd8v//fVBrph3y//+2bcykHfL//yNmBacd8v//ga9rph3y//9IksykHfL//9uZBacd8v//Akt7qx3y//9TYOupHfL//6xcS60d8v//JEnqsB3y//9tW+qwHfL///y0e6sd8v//q5/rqR3y//9So0utHfL//wJLWbYd8v//rFyJtB3y//9TYOm3HfL//9q26rAd8v//kaTqsB3y//9So4m0HfL///y0WbYd8v//q5/ptx3y//99UGm7HfL//yNmz7od8v//tm0IvR3y//+Br2m7HfL//9uZz7od8v//SJIIvR3y//81WcG/HfL//8mmwb8d8v//iHZuvh3y//92iW6+HfL///9/6L4d8v//kWQXwx3y//9tmxfDHfL//8xxMMUd8v//Mo4wxR3y////f+fFHfL//5Gk6rAd8lTVUqOJtB3yVNWRpOqwbrRU1VKjibRutFTVI2YFp260VNUjZgWnHfJU1bZtzKRutFTVtm3MpB3yVNV2iWajbrRU1XaJZqMd8lTVSJLMpG60VNVIksykHfJU1f9/6L4d8lTV/3/ovm60VNV2iW6+HfJU1XaJbr5utFTVq5/rqR3yVNVSo0utHfJU1auf66lutFTVUqNLrW60VNVtW+qwHfJU1axcS60d8lTVbVvqsG60VNWsXEutbrRU1bZtCL0d8lTVtm0IvW60VNWIdm6+HfJU1Yh2br5utFTVU2DrqR3yVNUjZgWnHfJU1VNg66lutFTVI2YFp260VNWsXEutHfJU1VNg66kd8lTVrFxLrW60VNVTYOupbrRU1UiSCL0d8lTVSJIIvW60VNXbmc+6HfJU1duZz7putFTV/3/som60VNX/f+yiHfJU1XaJZqNutFTVdolmox3yVNWsXIm0HfJU1W1b6rAd8lTVrFyJtG60VNVtW+qwbrRU1VKjibQd8lTVq5/ptx3yVNVSo4m0brRU1auf6bdutFTVUqNLrR3yVNWRpOqwHfJU1VKjS61utFTVkaTqsG60VNXbmQWnHfJU1auf66kd8lTV25kFp260VNWrn+upbrRU1bZtzKRutFTVtm3MpB3yVNWIdmajbrRU1Yh2ZqMd8lTVq5/ptx3yVNXbmc+6HfJU1auf6bdutFTV25nPum60VNVIksykbrRU1UiSzKQd8lTV25kFp260VNXbmQWnHfJU1VNg6bcd8lTVrFyJtB3yVNVTYOm3brRU1axcibRutFTVI2bPuh3yVNUjZs+6brRU1bZtCL0d8lTVtm0IvW60VNV2iW6+HfJU1XaJbr5utFTVSJIIvR3yVNVIkgi9brRU1Yh2ZqNutFTViHZmox3yVNX/f+yibrRU1f9/7KId8lTViHZuvh3yVNWIdm6+brRU1f9/6L4d8lTV/3/ovm60VNUjZs+6HfJU1VNg6bcd8lTVI2bPum60VNVTYOm3brRU1dq2ZM65Tf//bNtmwLlN//9s22TOuU3//5IkZM65Tf//kiRmwLlN//8kSWTOuU3//2zb5rxYkFTVI8nmvMuK9eBs2+iuWJBU1SPJ6K7LivXg2zbmvOWVaMvbNuiu5ZVoy5Ik5rxYkFTVkiTorliQVNWSJOa8WJBU1ZIk6K5YkFTV2zbmvMuK9eDbNuiuy4r14CPJ5rzllWjLbNvmvFiQVNUjyeiu5ZVoy2zb6K5YkFTVbNvxaG60VNVs22uWbrRU1Wzb8WjVqlTVbNvti9WqVNVs2+XDrJhU1Wzba5bCvFTVbNvpp6yYVNVs2+2Le2lU1Wzb6acJb1TVbNtkzlDCVNVs2/FowrxU1Wzb8WhQwlTVbNtkzrlNVNVs2+XDCW9U1WzbZsC5TVTVbNvti/cxVNVs22bA9zFU1ZIk9kXVqv//SRL2RdWq//+SJPFo1ar//wAA8WjVqv//kiTti9Wq//8AAO2L1ar//0kS9kV7af//kiT2RXtp//8AAPFoe2n//wAA7Yt7af//AADti9WqVNUAAO2Le2lU1ZIk7YvVqlTVkiTti3tpVNUAAPFo1apU1UkS9kXVqlTVAADxaHtpVNVJEvZFe2lU1UkS9kV7aVTVSRL2RdWqVNWSJPZFe2lU1ZIk9kXVqlTVkiRmwPcxVNWSJGbAuU1U1ZIk7Yv3MVTVkiTti3tpVNWSJGTOuU1U1ZIk6acJb1TVkiTpp6yYVNWSJOXDCW9U1ZIk7YvVqlTVkiTlw6yYVNWSJGTOUMJU1ZIka5bCvFTVkiTxaFDCVNWSJPFowrxU1ZIka5ZutFTVkiTxaG60VNWSJPFo1apU1ZIk9kXVqlTVkiTxaNWqVNWSJPZFe2lU1ZIk8Wh7aVTVAADti9WqVNUAAPFo1apU1QAA7Yt7aVTVAADxaHtpVNXbNj7yBQ1Kyts2vPzOBUrKI8k+8gUNSsojybz8zgVKymzb9kV7aVTVbNv2RdWqVNW17fZFe2lU1bXt9kXVqlTVI8kTaAUNusLbNhNoBQ26wiPJj3xTCLDA2zaPfFMIsMBs2/Fo1apU1Wzb9kXVqlTVbNvxaHtpVNVs2/ZFe2lU1Wzb7YvVqlTVbNvti3tpVNX+/+2L1apU1f7/7Yt7aVTV2zY+8gUNVNXbNsHdUwhU1ds2vPzOBVTV2zaPfFMIVNXbNpRdzgVU1ds2E2gFDVTV2zbvdgAAVNXbNmHjAABU1SPJwd1TCLDA2zbB3VMIsMAjyT7yBQ26wts2PvIFDbrC2zaUXc4FSsrbNhNoBQ1KyiPJlF3OBUrKI8kTaAUNSsojyRNoBQ1U1SPJj3xTCFTVI8mUXc4FVNUjycHdUwhU1SPJvPzOBVTVI8k+8gUNVNUjye92AABU1SPJYeMAAFTV/v/xaNWqVNX+/+2L1apU1f7/8Wh7aVTV/v/ti3tpVNUjyZRdzgX/8CPJ73YAAHb42zaUXc4F//DbNu92AAB2+Ns2YeMAAHb4I8lh4wAAdvjbNrz8zgX/8CPJvPzOBf/wbNv2RXtp//+17fZFe2n///7/8Wh7af///v/ti3tp///bNu92AAB2+CPJ73YAAHb42zZh4wAAdvgjyWHjAAB2+LXt9kXVqv//bNv2RdWq///+//Fo1ar//2zb8WjVqv///v/ti9Wq//9s2+2L1ar//7Xt9kXVqlTV/v/xaNWqVNW17fZFe2lU1f7/8Wh7aVTVbNvti3tpVNVs2+2L9zFU1dq27Yt7aVTV2rbti4tiVNXatu2LqlRU1SRJ7YuLYlTV2rbti+c4VNVIku2L9zFU1bZt7Yv3MVTVJEnti6pUVNUkSe2Le2lU1ZIk7Yt7aVTVJEnti+c4VNWSJO2L9zFU1ZIk7Yv3Mf//tm3ti/cx//+SJGbA9zH//7Zt65n3Mf//SJLrmfcx//+2bWbA9zH//7ZtZM73Mf//JElkzvcx//9s22bA9zH//0iSZsD3Mf//SJJkzvcx///atmTO9zH//2zb7Yv3Mf//SJLti/cx//+SJGbAuU1U1ZIkZsD3MVTVJElkzrlNVNUkSWTO9zFU1WzbZsC5TVTV2rZkzrlNVNVs22bA9zFU1dq2ZM73MVTVbNtkzrlNVNVs22TOUMJU1dq2ZM65TVTV2rZkzppbVNXatmTO9zFU1SRJZM73MVTVJElkzrlNVNXatmTOGqxU1SRJZM6aW1TVJElkzhqsVNWSJGTOUMJU1ZIkZM65TVTV2zaPfFMIsMBIkuuZUwj//yPJj3xTCLDAI8nB3VMIsMC2beuZUwj//0iS6adTCP//2zbB3VMIsMC2bemnUwj//7ZtZsBTCP//SJJmwFMI//+2bWTOUwj//0iSZM5TCP//kiTxaFDC//8/xW5xUML//2zb8WhQwv//bNtkzlDC//+/Om5xUML//z/F58VQwv//kiRkzlDC//+/OufFUML//9q25cMJb///2rblw6yY//9s2+XDCW///2zb5cOsmP//2rbpp6yY/7/atumnCW//v2zb6aesmP+/bNvppwlv/78kSemnCW8AgJIk6acJbwCAJEnlwwlvAICSJOXDCW8AgNq26aesmP//bNvpp6yY///atuXDrJj//2zb5cOsmP//kiTlwwlv//+SJOXDrJj//yRJ5cMJb///JEnlw6yY//9s2+mnCW8AgNq26acJbwCAbNvlwwlvAIDatuXDCW8AgJIk6aesmP//JEnpp6yY//+SJOXDrJj//yRJ5cOsmP//kiTpp6yY/7+SJOmnCW//vyRJ6aesmP+/JEnppwlv/78kSe2LqlT/vyRJ7YvnOP+/JEn7IslG/78kSf4NyUb/vyRJ/g0GK/+/JEn7IgYr/78kSfsiBiv//9q2+yIGK///JEnti+c4///atu2L5zj//9q2/g3JRgCAJEn+DclGAIDatvsiyUaNhiRJ+yLJRo2GJEn+DQYr///atv4NBiv//yRJ+yIGK///2rb7IgYr///atm96WVIbjSRJb3pZUhuN2rbti6pUG40kSe2LqlQbjdq2/g3JRv+/2rb7IslG/7/atv4NBiv/v9q27YvnOP+/2rb7IgYr/7/atu2LqlT/vyRJ/g0GK///JEn+DclG///atv4NBiv//9q2/g3JRv//2rb7IslGjYYkSfsiyUaNhtq28WgJUBuNJEnxaAlQG439YmuG////v/pjSon//7DA/WJrhnH6/7/6Y0qJcfqwwH5xznz//0rKfnHOfHH6Ssp9eLJ7//93z314sntx+nfPfXiye///d899eLJ7cfp3z/9/Unv//1TV/39Se3H6VNX/f1J7//9U1f9/Untx+lTVgYeye///d8+Bh7J7cfp3z4COznz//0rKgI7OfHH6SsqClJJ+///8xYKUkn5x+vzFfnEIkHH6Ssp+cQiQ//9Kyn14I5Fx+nfPfXgjkf//d8/gZt6A//+6wvpji4P//7DA4GbegHH6usL6Y4uDcfqwwG2bPnQd8krKyaaTdx3y/MV8a0SOcfr8xXxrRI7///zFfnEIkHH6Ssp+cQiQ//9KyvpjSon//7DA4Gb4i///usL6Y0qJcfqwwOBm+Itx+rrCfGuSfv///MXgZt6A//+6wnxrkn5x+vzF4GbegHH6usIemfiL//+6wgScSon//7DAHpn4i3H6usIEnEqJcfqwwIKURI7///zFHpn4i///usKClESOcfr8xR6Z+Itx+rrCgYcjkXH6d8+BhyOR//93z4COCJBx+krKgI4IkP//SsrgZviL//+6wnxrRI7///zF4Gb4i3H6usJ8a0SOcfr8xYGHsnv//3fPgYeye3H6d8+Ajs58//9KyoCOznxx+krKgI4IkHH6SsqAjgiQ//9KyoKURI5x+vzFgpREjv///MUEnIuD//+wwB6Z3oD//7rCBJyLg3H6sMAemd6Acfq6wv9/hJFx+lTV/3+Ekf//VNWBhyORcfp3z4GHI5H//3fP/LT8gB3ysMDatmuGHfL/v3xrkn7///zFfGuSfnH6/MV+cc58//9Kyn5xznxx+krKfXgjkXH6d899eCOR//93z/9/hJFx+lTV/3+Ekf//VNUBnWuG////vwSci4P//7DAAZ1rhnH6/78EnIuDcfqwwMmmk3cd8vzFga/sex3yusIemd6A//+6woKUkn7///zFHpnegHH6usKClJJ+cfr8xQScSon//7DAAZ1rhv///78EnEqJcfqwwAGda4Zx+v+/+mOLg///sMD9YmuG////v/pji4Nx+rDA/WJrhnH6/7+Br+x7HfK6wvy0/IAd8rDAAkv8gB3ysMB9UOx7HfK6wv9/Untx+gCAfXiye3H6AICBh7J7cfoAgICOznxx+gCAfnHOfHH6AIB8a5J+cfoAgIKUkn5x+gCAHpnegHH6AIDgZt6AcfoAgASci4Nx+gCA+mOLg3H6AIABnWuGcfoAgP1ia4Zx+gCA+mNKiXH6AIAEnEqJcfoAgOBm+Itx+gCAHpn4i3H6AIB8a0SOcfoAgIKURI5x+gCAgI4IkHH6AIB+cQiQcfoAgH14I5Fx+gCAgYcjkXH6AID/f4SRcfoAgP9/aJsd8lTVMo6xmh3yd8/McSVyHfJ3z/9/bnEd8lTVfVDpkB3yusICS9qLHfKwwG2bmJgd8krKyaZClR3y/MX/f25xHfJU1TKOJXId8nfPkWQ+dB3ySsrMcSVyHfJ3z9q2a4Yd8v+//LTaix3ysMA1WUKVHfL8xX1Q6ZAd8rrCAkvaix3ysMAkSWuGHfL/v/y02osd8rDAga/pkB3yusIyjiVyHfJ3z22bPnQd8krKNVmTdx3y/MWRZD50HfJKypFkmJgd8krKzHGxmh3yd88yjrGaHfJ3z22bmJgd8krKJElrhh3y/78CS/yAHfKwwDVZQpUd8vzFkWSYmB3ySsp9UOx7HfK6wjVZk3cd8vzFga/pkB3yusLJpkKVHfL8xcxxsZod8nfP/39omx3yVNUkSWTOGqz/nyRJ4d8qpf+f2rZkzhqs/5/atuHfKqX/n786bnFQwv+/vzrnxVDC/7+/Om5xbrT/v78658VutP+/2rZkzhqs/7/atuHfKqX/v9q2ZM6aW/+/2rbh35pb/7+/Om5xUML/v786bnFutP+/P8VucVDC/78/xW5xbrT/vz/F58VQwv+/P8VucVDC/78/xefFbrT/vz/FbnFutP+/vzrnxW60//+/OufFUML//z/F58VutP//P8XnxVDC//8kSWTOGqz/vyRJZM6aW/+/JEnh3yql/78kSeHfmlv/vyRJZM6aW///2rZkzppb//8kSeHfmlv//9q24d+aW///fGvDuHH6/MV8a8O4///8xX5xh7px+krKfnGHuv//Ssp9eKO7cfp3z314o7v//3fP/38DvHH6VNX/fwO8//9U1X5xh7px+krKfnGHuv//Ssp9eKO7cfp3z314o7v//3fPfVBpux3yusICS1m2HfKwwDVZwb8d8vzFkWQXwx3ySsrgZl2r//+6wvpjC67//7DA4GZdq3H6usL6YwuucfqwwOBmd7b//7rCfGvDuP///MXgZne2cfq6wnxrw7hx+vzF/3/Rpf//VNX/f9GlcfpU1YGHMqb//3fPgYcypnH6d8+Ajoe6cfpKyoCOh7r//0rKgpTDuHH6/MWClMO4///8xQJLe6sd8rDAfVBrph3yusL6Y8mz//+wwOBmd7b//7rC+mPJs3H6sMDgZne2cfq6wv1i6rD///+/+mPJs///sMD9Yuqwcfr/v/pjybNx+rDAgI5Np///SsqAjk2ncfpKyoKUEan///zFgpQRqXH6/MUBneqw////vwScC67//7DAAZ3qsHH6/78EnAuucfqwwP9/0aVx+gCAfXgypnH6AICBhzKmcfoAgICOTadx+gCAfnFNp3H6AIB8axGpcfoAgIKUEalx+gCAHpldq3H6AIDgZl2rcfoAgAScC65x+gCA+mMLrnH6AIABneqwcfoAgP1i6rBx+gCA+mPJs3H6AIAEnMmzcfoAgOBmd7Zx+gCAHpl3tnH6AIB8a8O4cfoAgIKUw7hx+gCAgI6HunH6AIB+cYe6cfoAgH14o7tx+gCAgYeju3H6AID/fwO8cfoAgIGva6Yd8rrC/LR7qx3ysMD/f+fFHfJU1TKOMMUd8nfPHpldq///usKClBGp///8xR6ZXatx+rrCgpQRqXH6/MXJphOiHfL8xYGva6Yd8rrCbZu9nh3ySsrJphOiHfL8xXxrEan///zF4GZdq///usJ8axGpcfr8xeBmXatx+rrC2rbqsB3y/7/8tFm2HfKwwCRJ6rAd8v+/Akt7qx3ysMD/fwO8cfpU1f9/A7z//1TVgYeju3H6d8+Bh6O7//93z4GHMqb//3fPgYcypnH6d8+Ajk2n//9KyoCOTadx+krKgYeju3H6d8+Bh6O7//93z4COh7px+krKgI6Huv//SsoyjqScHfJ3z22bvZ4d8krK/3/tmx3yVNUyjqScHfJ3z3xrEan///zFfGsRqXH6/MV+cU2n//9Kyn5xTadx+krKfXgypv//d899eDKmcfp3z/9/0aX//1TV/3/RpXH6VNX6Ywuu//+wwP1i6rD///+/+mMLrnH6sMD9Yuqwcfr/v35xTaf//0rKfnFNp3H6Ssp9eDKm//93z314MqZx+nfPBJwLrv//sMAemV2r//+6wgScC65x+rDAHpldq3H6usIEnMmz//+wwAGd6rD///+/BJzJs3H6sMABneqwcfr/vx6Zd7b//7rCBJzJs///sMAemXe2cfq6wgScybNx+rDAgpTDuP///MUemXe2//+6woKUw7hx+vzFHpl3tnH6usL8tHurHfKwwNq26rAd8v+/zHGknB3yd8//f+2bHfJU1TVZE6Id8vzFkWS9nh3ySsqRZBfDHfJKysxxMMUd8nfPNVnBvx3y/MV9UGm7HfK6wgJLWbYd8rDAJEnqsB3y/7/McTDFHfJ3z/9/58Ud8lTVbZsXwx3ySsrJpsG/HfL8xTKOMMUd8nfPbZsXwx3ySsp9UGumHfK6wjVZE6Id8vzFkWS9nh3ySsrMcaScHfJ3z4Gvabsd8rrCyabBvx3y/MX8tFm2HfKwwIGvabsd8rrC2rblwwlv/7/atua85ZX/v9q25cOsmP+/2rbpp6yY/7/atua8y4r/v9q26K7llf+/2rborsuK/7/atumnCW//vyRJ4d+aW/+/kWTh352f/78kSeHfKqX/v9q24d8qpf+/kWTh39qX/79tm+HfnZ//v5Fk4d+7ff+/bZvh39qX/7+RZOHf+XX/v22b4d+7ff+/2rbh35pb/79tm+Hf+XX/v9uZBadutACAq5/rqW60AID/f2mUbrQAgEiSzKRutACAdolmo260AID/f+yibrQAgIh2ZqNutACAtm3MpG60AIAjZgWnbrQAgFNg66lutACAdonvk260AIA/xefFbrQAgFKjS61utACASJKJkm60AICRpOqwbrQAgNuZUJButACAUqOJtG60AICrn2qNbrQAgKuf6bdutACAUqMKim60AIDbmc+6brQAgJGka4ZutACASJIIvW60AIB2iW6+brQAgFKjzIJutACA/3/ovm60AIC/OufFbrQAgIh2br5utACAP8VucW60AIC2bQi9brQAgKufbH9utACAI2bPum60AIDbmYZ8brQAgEiSTXputACAdonneG60AIC/Om5xbrQAgFNg6bdutACA/39teG60AICsXIm0brQAgG1b6rButACArFxLrW60AICIdu+TbrQAgIh253hutACAtm2Jkm60AIC2bU16brQAgCNmUJButACAI2aGfG60AIBTYGx/brQAgKxczIJutACAU2BqjW60AIBtW2uGbrQAgKxcCoputACAJEnpp6yY/78kSea85ZX/vyRJ5cOsmP+/JEnlwwlv/78kSeiu5ZX/vyRJ5rzLiv+/JEnppwlv/78kSeiuy4r/v7Zt8Wi8kVTVtm12HryRVNW2bfFowHhU1bZt/RQ3ilTVtm39FMB4VNVIknYevJFU1UiS8Wi8kVTVSJL9FDeKVNVIkvFowHhU1UiS/RTAeFTVJEnti4tiVNUkSe2Le2lU1dq27YuLYlTV2rbti3tpVNXatu2Li2JU1SRJ7Yt7aVTV/3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3/y5PJk8uTyZCXRJVEl0SVR/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///2a4l0Qyb8uTZriXRDJvy5AAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f9mu2S4l0SVR2a7ZLiXRJVEAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fyXR2a7ZriXRJdHZrtmuJdEl0dmuJdHZrvLkDJvy5Ayb/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9///8Mmwwb2a7ZLgybDBvZrtku/3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9/AAD/fwAA/3//f/9//3//f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3//f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9//3////9/////f/9//3//f/9//3//f/9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/Lk8mR/zb8mJdElUZfETCL/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//39UVVRVAAD/fz9Zf00MG/Jk2a4l0Qyb8uRUllXTVo1R5SXR2a5Loma78uQMm7+mf7Ly5Aybv6Z/sv///3+qqqqq8mQMG/9/AACocq0a/38AAH8yP9kMGwybqipU1QAA/3//f///8mTy5P9///9RZajyJVEl0f8//79WU6rpAUb/4v9/AAAMmwwb/38AAK2aVg3/v/+//pwAxiXR2a5Loma78mTy5CVRJdFRZajyVlOq6QybDBvZrtkurZpWDaisVBbZrtku/7//P6isVBb9uf8cAUb/4v8//79nO7Ld2S7Zrv+//7/ZriXR/pwAxlSWVdP/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///9nO7Ld2S7Zrn8yP9kMGwybDJvy5P9///9WjVHl/3///z9Zf00MG/Jks12YRNkuJVGzXZhE2S4lUQBj/jn/P/8/JVHZLvJkDBuqaaksqHKtGiXRJVGXxEwi/7//P/25/xz/P/8/JVHZLgBj/jmqaaks////f1TVqiry5PJkf82/Jv9/AAAMmwwb/38AAAybDBsl0SVRJdElUf+//z//v/8//3////Jk8uT/f///8mTy5P+//7//v/+/JdHZriXR2a7///9/////f/Lk8mTy5PJk8uTyZPLk8mQl0SVRJdElUSVR2S7yZAwbJVHZLvJkDBv/P/8/JVHZLv8//z8lUdkuDBsMmwwbDJsAAP9/AAD/f9muJdEMm/Lk2a4l0Qyb8uQMmwwb2a7ZLgybDBvZrtku8mTy5CVRJdHyZPLkJVEl0SXR2a4l0dmu8uQMm/LkDJv/P/+//z//v9ku2a7ZLtmu2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z8Mm/Lk/3///wyb8uT/f///8uQMm/LkDJv///9/////f/JkDBv/fwAA8mQMG/9/AAAMG/JkDBvyZNkuJVHZLiVRJVEl0f8//78lUSXR/z//vwAA/38AAP9/DBvyZAwb8mT/v/+/2a4l0f+//7/ZriXR2S7Zrtku2a4MGwybDBsMm/9/////f////3////9/////f/9//3//f/9//3//f/9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////38BRv/i/z//v2c7st3ZLtmuJdHZrkuiZrvy5Aybv6Z/sv///39U1aoq8uTyZH/NvyYMm/Lk/3///1aNUeX/f///JdElUZfETCL/v/8//bn/HNmu2S7/v/8/qKxUFv25/xzy5PJkf82/JiXRJVGXxEwi8mTy5CVRJdFRZajyVlOq6f9////yZPLk/3///1FlqPL/v/+/2a4l0f6cAMZUllXT/7//v/6cAMYl0dmuS6JmuyVRJdH/P/+/VlOq6QFG/+Ly5Aybv6Z/sv///3+qqqqqDJsMG9mu2S6tmlYNqKxUFvJkDBv/fwAAqHKtGv9/AAAlUdku8mQMG6ppqSyocq0a/z//PyVR2S4AY/45qmmpLD9Zf00MG/Jks12YRNkuJVH/fwAADJsMG/9/AACtmlYN/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/Zzuy3dku2a5/Mj/ZDBsMm9muJdEMm/LkVJZV01aNUeVUVVRVAAD/fz9Zf00MG/JkfzI/2QwbDJuqKlTVAAD/f7NdmETZLiVRAGP+Of8//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/z//v/8//7/ZLtmu2S7Zrgwb8mQMG/Jk2S4lUdkuJVH///9/////f/Lk8mTy5PJkJVHZLvJkDBslUdku8mQMG/9////yZPLk/3////Jk8uQl0dmuJdHZrvLkDJvy5AybJVEl0f8//78lUSXR/z//v/Jk8uQlUSXR8mTy5CVRJdEl0SVRJdElUf+//z//v/8/AAD/fwAA/38MG/JkDBvyZAyb8uT/f///DJvy5P9///8Mmwwb2a7ZLgybDBvZrtku8mQMG/9/AADyZAwb/38AAP8//z8lUdku/z//PyVR2S7ZLtmu2S7ZrgwbDJsMGwyb2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z/ZriXRDJvy5NmuJdEMm/Lk/7//v/+//78l0dmuJdHZrvLk8mTy5PJkJdElUSXRJVEMGwybDBsMmwAA/38AAP9/8uQMm/LkDJv///9/////f/+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f3d0dvSqaqnqd3R29KpqqeoAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3///3d0dvT/f///d3R29P///3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAd3SIC/9/AAB3dIgL/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3+qalUVd3SIC6pqVRV3dIgLAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////+//7//v/+//7//v/+//7//v/8//7//P/+//z//v/8/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3////9/AAD/f/9//3//f/9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/8//3//P/9//z//f/8/////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f///////f////3////9/////f/9/////f////3/+//9/////f////3/+//9/cvb/f3L2/38f7v9/H+7/f////3///wAA/38AAP9//3////9/////f3L2/39y9gAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/8//3//P/9//z//f/8/AAD/fwAA/38AAP9/AAD/f/9/AACocq0a/38AAKhyrRqXxEwil8RMIn/NvyZ/zb8mf82/Jn/NvyZU1aoqVNWqKqqqqqqqqqqqv6Z/sr+mf7JLoma7S6Jmu/6cAMb+nADGs12YRLNdmEQ/WX9NP1l/TaisVBatmlYNqKxUFq2aVg2zXZhEAGP+OQBj/jkAY/45s12YRLNdmESocq0aqmmpLKhyrRqqaaks/bn/HKisVBb9uf8cqKxUFlZTqulRZajyVlOq6VFlqPIBRv/iVlOq6QFG/+JWU6rpfzI/2X8yP9lnO7LdZzuy3appqSwAY/45qmmpLABj/jm/pn+yv6Z/skuiZrtLoma7Zzuy3Wc7st0BRv/iAUb/4laNUeVUllXTVo1R5VSWVdOqKlTVqipU1X8yP9l/Mj/ZqHKtGv9/AAD9uf8c/bn/HJfETCKXxEwiP1l/TT9Zf01UVVRVVFVUVf9///9WjVHl/3///1aNUeUAY/45qmmpLFSWVdP+nADGVJZV0/6cAMZRZajy/3///1FlqPL/f///rZpWDf9/AACtmlYN/38AAKppqSyocq0aUWWo8lZTqun/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///9U1aoqf82/Jn8yP9mqKlTVVJZV01aNUeWXxEwi/bn/HFRVVFU/WX9NZzuy3X8yP9n/fwAArZpWDf6cAMZUllXTVo1R5f9///+tmlYNqKxUFj9Zf02zXZhEAUb/4mc7st1Loma7v6Z/sn/NvyaXxEwi/3///1FlqPL+nADGS6Jmu1ZTqukBRv/iqKxUFv25/xy/pn+yqqqqqv///3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3//f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9/////f////3////9/////f///AGP+OQBj/jmzXZhEs12YRD9Zf00/WX9NVFVUVVRVVFWzXZhEs12YRD9Zf00/WX9NVJZV01aNUeX+nADGS6Jmu6isVBatmlYNqKxUFq2aVg2qaaksAGP+OappqSwAY/45qqqqqqqqqqq/pn+yv6Z/smc7st1nO7LdAUb/4gFG/+JRZajyVlOq6ahyrRqqaaksqHKtGqppqSz/fwAAqHKtGv9/AACocq0aS6Jmu0uiZrv+nADG/pwAxv9///9WjVHl/3///1aNUeX/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///+qaaksqHKtGlTVqip/zb8mVJZV0/6cAMZUllXT/pwAxgBj/jmqaakss12YRABj/jn9uf8cqKxUFv25/xyorFQW/38AAK2aVg3/f///UWWo8qoqVNWqKlTVfzI/2X8yP9m/pn+yv6Z/skuiZrtLoma7fzI/2X8yP9lnO7LdZzuy3T9Zf02zXZhEVFVUVT9Zf039uf8c/bn/HJfETCKXxEwif82/Jn/NvyZU1aoqVNWqKq2aVg3/fwAArZpWDf9/AACXxEwil8RMIn/NvyZ/zb8mVo1R5VSWVdNWjVHlVJZV01FlqPL/f///UWWo8v9///9WU6rpUWWo8lZTqulRZajyAUb/4lZTqukBRv/iVlOq6ahyrRr/fwAAfzI/2aoqVNUBRv/iZzuy3UuiZru/pn+y/pwAxlSWVdNWjVHl/3///7+mf7Kqqqqql8RMIv25/xx/zb8ml8RMIlZTqukBRv/iZzuy3X8yP9morFQW/bn/HK2aVg2orFQW/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9//v//f/7//3////9//v//f/7//3////9/////f/7//3////9/////f////3//f////3////9/////f////3////9/////f////3////9/////f////3////9//////////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"attribute_data": PackedByteArray("q3cEdOR0BHSrd0Nu5HRDbqt3fpKrd/+d5HR+kuR0/50ecj+Y4I0/mBqL/50ai36SU4h+klOI/52rdwR05HQEdKt3Q27kdENuU4j/nVOIfpIai/+dGot+kuCNP5gaiwR0U4gEdBqLQ25TiENuGosEdFOIBHQai0NuU4hDbh5yP5jkdH6S5HT/nat3/52rd36SbZPo8a+SyfRtk0XGp5Dk9uCNRcbgjejx4I2p9x5y6PEecqn3HnJFxldv5PZPbcn0kWxFxpFs6PE8Q8+SkEvPkjxDypWQS8qVgkLamqI/2pqCQjiSoj84kh5yGZWRbBmVHnLIkJFs1oMechV+T232gFdv234gGdqaIBk4kgJG2po8QziSPEPWg5BL1oPJSBSa0Ur5l5BLGZXCvNaDwrw4km601oP8udqa3ubamt7mOJI1txSaLbX5l260GZWnjtqax4vamqeOOJLHiziSwrwwhsK8K4lutDCGbrQriR5yq6WRbKulHnKxopFssaIecmXDHnLo8ZFsZcMecqn3V2/k9k9tyfSRbOjx4I2p9+CN6PHgjWXDp5Dk9q+SyfRtk+jxbZNlwzxDg5A8Q4mNkEuDkJBLiY0ecm7DHnJoxpFsbsORbGjGHnIJvZFsCb0ecg+6kWwPusK8iY3CvIOQbrSJjW60g5DCvMqVbrTKlcK8z5JutM+SN3Tamldx2po3dDiSV3E4km2TbsNtk2jG4I1uw+CNaMZtkwm94I0JvW2TD7rgjQ+6wrzIkMK8OJJutMiQ/Lnamt7m2pre5jiSNbcUmi21+ZdutBmVbZM4kuCNOJJtk9aD4I3IkOCNFX6vkvaAp5DbflzA2pp8vdqaXMA4kny9OJIgGdqaIBk4kgJG2po8QziSPEPIkJBLyJDJSBSa0Ur5l5BLGZXgjdqaHnLamuCNOJIecjiSyR7amskeOJKpIdqaqSE4kjXhOJI14dqaVd44klXe2poecjiSkWw4kh5yyJCRbNaDHnIVfk9t9oBXb9t+bZOrpeCNq6Vtk7Gi4I2xom2TGZXgjRmVbZPWg+CNyJDgjRV+r5L2gKeQ2348QyuJPEMwhpBLK4mQSzCG4I3amh5y2prgjTiSHnI4kjh9vTU4fTUKxoK9NcaCNQrGgvgKxoKANjh9+Ao4fYA2B87TbAfOEmer99Nsq/cSZ/cxpXz3MWaCUwjkdlMIpXzGgkoLxoJwNjh9Sgs4fXA2B85mggfOpXyr96V8q/fkdvcxEmf3MdNsUwgSZ1MI02w4fXA2OH1KC8aCcDbGgkoLU4i9tKt3vbRTiMiQq3fIkMaC5JHGgst/U4jkkVOIy3+Sj8iQko/uuz6HyJA+h02zx3VNs9Bz7rtCbmiv72W9tO9lyJBCbsiQU4hor8aCaK9TiMiQxoLIkFOImlVTiPlvq3eaVat3+W+rdyp3q3fLf1OIKnerd6+ZOH2vmTh9y3+rd1CiHnIGzB5y+W8ecrKzHnKkvR5yRcZTiFCi4I0GzFOIy39TiK+ZxoLLf8aCr5ngjUXG4I2kveCNsrPgjflvU4gqd1OI7pOrdyp3q3fuk1OI7rurd+67U4jIkKt3yJCrdwBYU4gAWKt3yGhTiMhoq3fIkB5yyJCrd2aCHnJmgjh9aK+rd2ivOH3IkKt3yJA4fU2zq3dNszh9yJCrd8iQU4jMiFOIgpHGgsyIxoKCkaWtl4n1r8iQc52XiYOWyJCDlmaCc51mgntpZoJ7aciQi2Jmgotil4kJUMiQWVKXiat3jJOrd3eDU4iMk1OId4NTiJeJq3eXiVOIZoKrd2aCU4hNs8aCTbNTiMiQxoLIkDh9zIg4fYKRq3fMiKt3gpHAeMiQwHhNs2xwyJBscO67N4pNsy6M7ru8kWivD5q9tLyRyJAPmsiQq3fkkat3y384feSROH3LfwAAKoWNBSqFAABrh40Fa4f/fwh8J4JUfNd9VHzVezB9KYQwfeKFj34ceo9+/38ZgNt+QYAjgUGAyXhZgDWHWYDLfbaA4nxwgS98YYL0d26Cvnt7gzOCtoAcg3CBz4Nhgqt3qoSYe6qEvnvYhQqIboJAhHuDZoSqhFOIqoRAhNiF9HflhgqI5YYvfPKG4nzkh8t9nYjPg/KGHIPkhzOCnYjJePqINYf6iCOBEonbfhKJ/386ieKFxIocesSK1XsjjCmEI4zXfQCNJ4IAjf9/S42NBRaIAAAWiI0F1YUAANWF//+9g////YVx+r2Dcfr9hf//a4dx+muH//8qhXH6KoX//xaIcfoWiP//1YVx+tWFAADQhQAAj4ONBdCFjQWPg3H61YX//9WFcfoWiP//Foj//4+D///QhXH6j4Nx+tCF//8VhP//VoZx+hWEcfpWhgAA0IUAAI+DjQXQhY0Fj4P//9KGcfrShv//koRx+pKE//+9g////YVx+r2Dcfr9hQAA/YUAAL2DjQX9hY0FvYMAAFaGAAAVhI0FVoaNBRWEcfqShP//koRx+tKG///Shv//FYT//1aGcfoVhHH6Vob/f0uN130AjSeCAI0phCOM1XsjjOKFxIocesSK/39qim+BOIqPfjiKNYf6iMaCpYnsg7uIyXj6iDh9pYkSfLuICojlhs6EiodchSeGU4iqhIyFqoT0d+WGMHuKh6J6J4YKiG6CXIUsg86EyYGrd6qEcnqqhKJ6LIP0d26CMHvJgTWHWYDsg5iAxoKuf8l4WYASfJiAOH2uf+KFj34ceo9+b4Ebf49+G3//f+l+KYQwfdV7MH0nglR8131UfP9/CHxx+iqF//8qhXH6a4f//2uH//+Pg///0IVx+o+DcfrQhY0Fa4cAAGuHjQUqhQAAKoWNBdKGAADSho0FkoQAAJKEAAD9hQAAvYONBf2FjQW9gwAAkoSNBZKEAADSho0F0oYAAFaGAAAVhI0FVoaNBRWEAADVhY0F1YUAABaIjQUWiOENcIXhDe+DkEtwhZBL74PhDfKEkEvyhOENcoaQS3KGHfLvgx3ycIVutO+DbrRwhR3ycoZutHKGHfLyhG608oThDTWGkEs1huENtoeQS7aH4Q2LhZBLi4XhDQuHkEsLh+ENnYXhDR2EkEudhZBLHYThDfaF4Q11hJBL9oWQS3WEbrQ1hh3yNYZutLaHHfK2hx3yHYQd8p2FbrQdhG60nYXhDZ2F4Q0dhJBLnYWQSx2EHfIdhB3ynYVutB2EbrSdhR3yC4dutAuHHfKLhW60i4VutPKEHfLyhG60coYd8nKG4Q32heENdYSQS/aFkEt1hJBLcobhDXKGkEvyhOEN8oQd8u+DHfJwhW6074NutHCFHfK2h260tocd8jWGbrQ1huENcIXhDe+DkEtwhZBL74OQSwuH4Q0Lh5BLi4XhDYuFHfJ1hB3y9oVutHWEbrT2hZBLtofhDbaHkEs1huENNYYd8nWEHfL2hW60dYRutPaFbrSLhR3yi4VutAuHHfILh+CNyJBTiMiQ4I1mglOIZoIphOFf1XvhXymEt1rVe7da1XvhX9V7t1ophOFfKYS3WimE9YQphAeg1Xv1hNV7B6DVeweg1Xv1hCmEB6AphPWEKYThX9V74V8phLda1Xu3WtV74V/Ve7daKYThXymEt1pDguFfQ4K3WgWK4V9Dgq1SJIbAU72GX1T7iLJWBYq3WiRorVIkaLdaJGjhX0JkwFOpY19Ua2GyVmFgt1phYOFf1XvsXtV7w1ophOxeKYTDWvl1t1oDd7JW+XXhX0F5X1TaecBTu33hX7t9t1q7fa1S2pe3WtqXrVLal+FfvJvAU1WcX1STnrJWnZ/hX52ft1ophPN7KYQcgNV783vVexyA1XuEa9V7O2gphIRrKYQ7aNV7WmcphFpn1XuQkSmEkJHVe7mVKYS5ldV7LXcphC131XsNeCmEDXgphFZ71XtWeymEt2TVe7dkKYSNYNV7jWBx+u95///veXH6L3z//y98//+7gHH6u4D//3t+cfp7fgAAjYONBY2DAADOhY0FzoX//zxy//99dHH6PHJx+n10AADveY0F73kAAC98jQUvfAAAeXgAADh2jQV5eI0FOHYAAHt+jQV7fgAAu4CNBbuA//+Yc///2XVx+phzcfrZdf//PHL//310cfo8cnH6fXT//zh2//95eHH6OHZx+nl4//8vfHH6L3z//+95cfrvef//OHb//3l4cfo4dnH6eXj//86FcfrOhf//jYNx+o2DAADZdQAAmHONBdl1jQWYcwAAfXQAADxyjQV9dI0FPHIAANl1AACYc40F2XWNBZhzAAB5eAAAOHaNBXl4jQU4do0Fu4AAALuAjQV7fgAAe34AAH10AAA8co0FfXSNBTxy/3/Se9d9hnsngoZ7KYSqetV7qnrihUt5HHpLeTWHgXf/f8F3yXiBdyOBmXfbfpl3M4Ikd8t9JHcKiGx19HdsdRyDa3bPg3l1QIRfdFOIMHNmhDBz4nxrdi98eXW+e190Coj1cECEAnLPg+hwq3cwc5h7MHO+ewJy9Hf1cC986HA1h+BuyXjgbhyD9m8zgj1vI4HIbuJ89m/LfT1v237IbuKFFm0cehZt/3+gbtV7t2sphLdrJ4Laatd92mr/f49qcfp7fv//e35x+ruA//+7gP//mHP//9l1cfqYc3H62XWNBc6FAADOhY0FjYMAAI2DcfqNg///jYNx+s6F///OhY0FL3wAAC98jQXveQAA73n/f9J7132GeyeChnsphKp61XuqeuKFS3kcekt5/3/xeG+Bv3iPfr94NYeBd8aCLHjsg0J3yXiBdzh9LHgSfEJ3Cohsdc6EEXZcha50U4gwc4yFMHP0d2x1MHsRdqJ6rnQKiPVwXIWzcc6EUHCrdzBzcnowc6J6s3H0d/VwMHtQcDWH4G7sgx9vxoI1bsl44G4SfB9vOH01buKFFm0cehZtb4GibY9+om3/f3BtKYS3a9V7t2sngtpq133aav9/j2rhDR104Q2ccpBLHXSQS5xybrRPeh3yT3putM97HfLPe5BLW4DhDVuAkEvbfuEN237hDe2DkEvtg+ENboWQS26F4Q15deEN+HOQS3l1kEv4cx3ynHId8h10brSccm60HXQd8luAbrRbgB3y235utNt+HfKYdh3yGXhutJh2brQZeB3y+HMd8nl1brT4c260eXXhDU96kEtPeuENz3uQS897kEtuheENboWQS+2D4Q3tgx3ynHId8h10brSccm60HXThDXl14Q34c5BLeXWQS/hz4Q0ddOENnHKQSx10kEuccuENGXjhDZh2kEsZeJBLmHZutNt+HfLbfm60W4Ad8luA4Q0ZeOENmHaQSxl4kEuYdpBLz3vhDc97kEtPeuENT3od8vhzHfJ5dW60+HNutHl1HfLPe260z3sd8k96brRPeuEN236QS9t+4Q1bgJBLW4ButO2DHfLtg260boUd8m6FHfJuhW60boUd8u2DbrTtgx3ymHYd8hl4brSYdm60GXirdxJnHnLTbB5yEmfgjRJn4I3TbFOIEmcra0NuYHFDbitrBHRgcQR0no5Dbp6OBHRpiENuaYgEdNOUQ27TlAR0no5Dbp6OBHRgcUNulXdDbmBxBHSVdwR0kEvIkJBLFX4pVciQKVVmglJnY2s8QxV+UmfkdoOWZoL1kOR2rj0SZzxDyJCuPciQRbISZ/WQY2tFstNsB85mggfO02weciqfV28qnx5yyJCRbMiQHnJmgpFsZoKnkCqf4I0qn22TyJBtk2aCkWyys5Fs+W8ecrKzHnL5b9WqpozVqlGbe2mmjHtpUZunkPlvp5Cys+CN+W/gjbKz9zHTbLlN02z3MWaCe2lmgrlNEmcJb+R2rJjkdglvY2vVqmaCrJhja1DCEmfCvBV+UMLIkMK8yJButBV+brTIkNWqyJApVSqfKVXIkIOWKp+DlsiQ1apmgtWqyJB7aWaCe2nIkOR0oQjkdAAAGouhCBqLAAAecvlvHnKys1dv+W9Xb7KzGos/VOR0P1Qai4VK5HSFStWqyJDVqiqfe2nIkHtpKp/gjbKz4I35b22TsrNtk/lvBQ1UWFMIwWDOBQRUUwi3iM4FdJUFDSSRAAAHiwAAcV4ai+2j5HTtoxqLM5rkdDOa5HQK/OR0afMaiwr8Gotp8/nyJJGr97eIMPp0lav3wWAw+gRU+fJUWP//B4v//3FeKVXIkClVZoKDlsiQg5ZmguR0P1TkdDVIGos/VBqLNUgaiz2m5HQ9phqLM5rkdDOaHnIqn1dvKp+RbMiQkWxmghqLB4vkdAeLGotxXuR0cV6nkCqf4I0qn22TyJDgjciQbZNmguCNZoIpVVGbKVWmjIOWUZuDlqaMHnL5bx5ycDard/lvq3fIaKt3ZlpTiMhoq3ehPTh9cDbGgnA2U4hmWlOI+W/gjflvU4ihPeCNcDbgjWaCxoJmguCN02zGgqV8OH2lfMaC02zGghJnU4gSZx5y02w4fdNsOH0SZ6t3EmcecmaCOH1mgrlNwH73McB+uU2ddvcxnXZFssB+RbKddgfOwH4Hzp124I00U+CNBsxTiDRTU4iXYVOIcDard3A2q3c0U1OIA7Wrd5dhq3cDtR5yBswecjRT5HS3iMaCpXwai7eIGovBYDh9pXzGguR25HTBYDh95HY4fdNsxoLTbDh9EmfGghJnHnLIkIKKS43gjciQ4I0SZ3x1S42Cio9qHnISZ3x1j2qrd7p1q3fgoB5yunUecuCgU4jgoFOIunXgjeCg4I26dat35HYecuR2q3djax5yY2urd+R2HnLkdqt3Y2secmNr4I26deCN4KBTiLp1U4jgoOCN5HZTiOR24I1ja1OIY2vgjeR2U4jkduCNY2tTiGNrHnLgoB5yunWrd+Cgq3e6dapUZoLnOGaCyUaMrclGLrYGKy62BiuMrVOIbserd27HU4jzmat385lTiC62q3cutlOIjK2rd4ytU4gutqt3LrZTiIytq3eMrVOIbpird26YU4jakKt32pA1uS62NbmMrfjULrYXx2aC+NSMrVSrZoJTiD8vU4gDTKt3Py+rdwNMU4hWvqt3Vr5TiAOgq3cDoAAASIUAABeEjQVIhY0FF4QAALKFjQWyhQAA44aNBeOGAABdho0FXYYAAI6HjQWOh///jodx+o6H//9dhnH6XYb//0uGcfpLhv//GoVx+hqFjQXjhgAA44aNBbKFAACyhQAAdoUAAEWEjQV2hY0FRYThDdKG4Q2ShI0FS4YAAEuGjQUahQAAGoUAAHaFAABFhI0FdoWNBUWEAADOhQAAnYSNBc6FjQWdhP//RYT//3aFcfpFhHH6doX//52E///OhXH6nYRx+s6Fcfqyhf//soVx+uOG///jhgAAzoUAAJ2EjQXOhY0FnYT//+OGcfrjhv//soVx+rKFcfoahf//GoVx+kuG//9Lhv//RYT//3aFcfpFhHH6doVx+l2G//9dhnH6jof//46H4Q3QheENj4MAABqFjQUahQAAS4aNBUuGjQWOhwAAjoeNBV2GAABdhv//F4T//0iFcfoXhHH6SIXhDVaG4Q0VhP//nYT//86FcfqdhHH6zoX//xeE//9IhXH6F4Rx+kiFAABIhQAAF4SNBUiFjQUXhOEN/YXhDb2DHfK9gx3y/YX/fzqJ234SiSOBEokzgp2Iy32diOJ85Iccg+SHz4Pyhi988oZAhNiFvnvYhWaEqoSYe6qEvnt7g0CEe4MvfGGCz4NhguJ8cIEcg3CBM4K2gMt9toDbfkGAI4FBgP9/GYDhDdWF4Q0WiB3y1YUd8haIHfK9gx3y/YXhDZKE4Q3ShuENFojhDdWFHfIqhR3ya4fhDdCF4Q2Pgx3yFYQd8laGHfKPgx3y0IXhDf2F4Q29g+ENa4fhDSqFHfKShB3y0oYd8muHHfIqheENKoXhDWuHHfKPgx3y0IUd8tKGHfKShB3yFYQd8laG4Q1WhuENFYQd8haIHfLVhat31ZCrd6mGU4jVkFOIqYauPUuNrj2PapBLS42QS49q5FMSZ9Ra4V9kpBJnZKThX3x1Bsx8daS9gooGzIKKpL1Qwo9qUMJLjW60j2putEuNgoqkvYKKBsx8daS9fHUGzBqsEmeaWxJnKqXhX5pb4V9TiBJnq3cSZ1OI4V+rd+FfjQWnewAAp3uNBXZ6AAB2eo0FRoUAAEaFjQUVhAAAFYSNBTSAAAA0gI0FA38AAAN/HfKYcx3y2XUd8i98HfLveQAAUXUAACB0jQVRdY0FIHQAAPF3AADAdo0F8XeNBcB2//9GhXH6RoX//xWEcfoVhHH6dnr//3Z6cfqne///p3sd8phzHfLZdQAAUXUAACB0jQVRdY0FIHQAAPVzAADEco0F9XONBcRy//+ne3H6p3v//3Z6cfp2ev//xHL///VzcfrEcnH69XP/f8F3236ZdyOBmXczgiR3y30kd+J8a3Ycg2t2z4N5dS98eXVAhF90vntfdGaEMHOYezBzvnsCckCEAnIvfOhwz4PocOJ89m8cg/ZvM4I9b8t9PW/bfshuI4HIbv9/oG7hDdl14Q2Yc+ENjYPhDc6F///Adv//8Xdx+sB2cfrxd+ENeXjhDTh24Q0vfOEN73kAAPF3AADAdo0F8XeNBcB24Q19dOENPHId8jxyHfJ9dHH6FYT//xWEcfpGhf//RoX//zSAcfo0gP//A39x+gN/cfoDf///A39x+jSA//80gOENu4DhDXt+4Q3OheENjYMAAHZ6jQV2egAAp3uNBad7AAAVhI0FFYQAAEaFjQVGhQAA9XMAAMRyjQX1c40FxHIAAAN/jQUDfwAANICNBTSA//8gdP//UXVx+iB0cfpRdf//xHL///VzcfrEcnH69XP//yB0//9RdXH6IHRx+lF1///Adv//8Xdx+sB2cfrxd+ENfXThDTxyHfKNgx3yzoUd8u95HfIvfB3yu4Ad8nt+HfI4dh3yeXgd8jxyHfJ9dB3yzoUd8o2D4Q3veeENL3zhDXt+4Q27gB3yOHYd8nl4HfJ7fh3yu4DhDXl44Q04duEN2XXhDZhz9ZBjaxlqQ25SZ2NrUmfkdjN1Q24ZagR0M3UEdPWQ5Hard5dh1XsRqKt30q1TiNKt1XsHoCmEEajVe/WEKYQHoNV763wphPWEU4iXYSmE63zsg0J3zoQRdv9/6X7Ggix4b4G/eP9/8XiPfr94OH0seBJ8QncwexF2b4Ebf4KKj2pcha50xoKuf4yFMHPsg5iAXIWzcc6EyYHOhFBwXIUsg+yDH2+MhaqExoI1bm+Bom1chSeG/39wbXx1j2qPfqJtgopLjTh9NW7OhIqHEnwfb+yDu4jGgqWJb4E4inx1S40we1Bw/39qiqJ6s3FyejBzonqudI9+G3+PfjiKOH2ufzh9pYkSfJiAEny7iDB7ioeieieGMHvJgXJ6qoSieiyDrJjkduWVQ26smGNrCW9ja+WVBHTLikNuCW/kdsuKBHS8kciQvJFor8B4yJA3ik2zwHhNs0JuaK9CbsiQx3VNsz6HyJA+h02zOH3Lfzh95JGrd8t/OH3Lfzh95JGrd8t/"), -"format": 34896613399, -"index_count": 18, -"index_data": PackedByteArray("6AbmBucG5wbpBugG6QbqBugG7QbrBuwG7AbuBu0G7gbvBu0G"), -"material": SubResource("StandardMaterial3D_mxk0c"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(36.3075, 35.0357, 0, 0), -"vertex_count": 1782, -"vertex_data": PackedByteArray("2rborsuK//8jyeiuy4r//9q25rzLiv//I8nmvMuK///atuiuy4pU1dq26K7llVTVI8norsuKVNUjyeiu5ZVU1Wzb6K5YkFTVkiTorliQVNXbNuiu5ZVU1ds26K7LilTVJEnorsuKVNUkSeiu5ZVU1SRJ6K7llf//2zboruWV//8kSea85ZX//9s25rzllf//2rbmvOWVVNXatua8y4pU1SPJ5rzllVTVI8nmvMuKVNVs2+a8WJBU1SPJ6K7llf//2rboruWV//8jyea85ZX//9q25rzllf//2zborsuK//8kSeiuy4r//9s25rzLiv//JEnmvMuK//+SJOa8WJBU1ds25rzLilTV2zbmvOWVVNUkSea85ZVU1SRJ5rzLilTV/v9yZd7mVNUY+3JlpOlU1f7/cmXCvFTVte1yZa3rVNVs23JlwrxU1WzbcmXe5lTVbNtyZWvsVNWSJHJl3uZU1ZIkcmVr7FTVkiRyZcK8VNVJEnJlretU1eYEcmWk6VTVAAByZcK8VNUAAHJl3uZU1Wzba5bCvFTVbNtrlm60VNW17YuUwrxU1bXti5RutFTVGPt1UKTpSsq17XVQreu6whj7cmWk6UrKte1yZa3rusJs23NebrT///7/c15utP//bNvxaG60///+/22IbrT//2zba5ZutP//GPtsj260//+17YuUbrT///7/dVDe5lTV/v9yZd7mVNX+/3VQ/LlU1f7/cmXCvFTV/v9tiMK8VNX+/22IbrRU1f7/VVI1t1TV/v90Vy21VNX+/3NebrRU1QAAbYjCvFTVAAByZcK8VNUAAG2IbrRU1QAAdVD8uVTVAAB1UN7mVNUAAHJl3uZU1QAAVVI1t1TVAAB0Vy21VNUAAHNebrRU1ZIkdVBr7LDASRJ1UK3rusKSJHJla+ywwEkScmWt67rC5gRsj8K8VNUAAG2IwrxU1eYEbI9utFTVAABtiG60VNVs23RXLbX/8P7/dFcttf/wbNtzXm60dvj+/3NebrR2+GzbdVD8uVTVbNt1UN7mVNX+/3VQ/LlU1WzbdVBr7FTVte11UK3rVNUY+3VQpOlU1f7/dVDe5lTVkiR1UGvsVNWSJHVQ3uZU1ZIkdVD8uVTVSRJ1UK3rVNXmBHVQpOlU1QAAdVDe5lTVAAB1UPy5VNUY+2yPwrxU1bXti5TCvFTVGPtsj260VNW17YuUbrRU1WzbVVI1t4zibNt1UPy5vNv+/1VSNbeM4v7/dVD8ubzbbNtVUjW3jOL+/1VSNbeM4mzbdFcttf/w/v90Vy21//BJEouUwrxU1eYEbI/CvFTVSRKLlG60VNXmBGyPbrRU1UkSi5TCvFTVSRKLlG60VNWSJGuWwrxU1ZIka5ZutFTVte11UK3rusJs23VQa+ywwLXtcmWt67rCbNtyZWvssMAAAFVSNbeM4gAAdVD8ubzbkiRVUjW3jOKSJHVQ/Lm82wAAVVI1t4zikiRVUjW3jOIAAHRXLbX/8JIkdFcttf/wbNvxaMK8VNVs23JlwrxU1Wzb8WhutFTVbNt1UPy5VNVs23VQ3uZU1WzbcmXe5lTVbNtVUjW3VNVs23RXLbVU1Wzbc15utFTV/v9yZcK8//9s23Jlwrz///7/bYjCvP//bNvxaMK8//9s22uWwrz//xj7bI/CvP//te2LlMK8//9JEnVQreu6wuYEdVCk6UrKSRJyZa3rusLmBHJlpOlKypIkdVDe5lTVkiRyZd7mVNWSJHVQ/LlU1ZIkcmXCvFTVkiTxaMK8VNWSJPFobrRU1ZIkVVI1t1TVkiR0Vy21VNWSJHNebrRU1WzbdVBr7P//kiR1UGvs//9s23Jla+z//5IkcmVr7P//GPt1UKTpSsoY+3JlpOlKyv7/dVDe5nfP/v9yZd7md8/mBHJlpOlKyuYEdVCk6UrKAAByZd7md88AAHVQ3uZ3z5IkcmXCvP//AAByZcK8//+SJPFowrz//wAAbYjCvP//kiRrlsK8///mBGyPwrz//0kSi5TCvP//AAB0Vy21//CSJHRXLbX/8AAAc15utHb4kiRzXm60dvgAAHNebrT//5Ikc15utP//AABtiG60//+SJPFobrT//5Ika5ZutP//5gRsj260//9JEouUbrT///7/bYjCvFTVGPtsj8K8VNX+/22IbrRU1Rj7bI9utFTVkiR1UN7m//9s23VQ3ub//5IkcmXe5v//bNtyZd7m//+2beuZ9zFI0rZt6adTCEjSSJLrmfcxSNJIkumnUwhI0rZt65lTCIPYtm3ti/cxg9hIkuuZUwiD2EiS7Yv3MYPYSJJmwPcxVNVIkmTO9zFU1UiSZsBTCFTVSJJkzlMIVNW2beuZ9zFU1bZt7Yv3MVTVtm3pp1MIVNW2beuZUwhU1bZtZsBTCFTVtm1mwPcxVNVIkmbAUwhU1UiSZsD3MVTVSJLti/cxVNVIkuuZ9zFU1UiS65lTCFTVSJLpp1MIVNW2bWTO9zFU1bZtZsD3MVTVtm1kzlMIVNW2bWbAUwhU1bZtZM73MVTVtm1kzlMIVNVIkmTO9zFU1UiSZM5TCFTV2rZ9EQ+aCsMkSX0RD5oKw9q28WgPmv//JEnxaA+a//9Ikv0UN4r62kiS/RTAeFTV2rb9FDeK+tratv0UwHhU1dq28WhscFTV2rYAAGxwVNXatvFowHhU1dq2/RTAeFTV2rb9FDeKVNXatgAALoxU1dq2dh68kVTV2rZ9EQ+aVNXatvFoD5pU1dq28Wi8kVTVJEl2HryRJvC2bXYevJEm8CRJ8Wi8kf//tm3xaLyR//8kSfFoCVBU1SRJ8Wh7aVTV2rbxaAlQVNXatvFoe2lU1dq28WhscFTV2rbxaMB4VNUkSfFobHBU1dq28Wi8kVTVSJLxaLyRVNVIkvFowHhU1dq28WgPmlTVbNvxaFDCVNVs2/Foe2lU1Wzb8WjVqlTVbNvxaG60VNVs2/FowrxU1SRJ8WgPmlTVkiTxaFDCVNUkSfFowHhU1SRJ8Wi8kVTVtm3xaMB4VNW2bfFovJFU1ZIk8WjCvFTVkiTxaG60VNWSJPFo1apU1ZIk8Wh7aVTVJEkAAGxwVNUkSQAALowa0Nq2AABscFTV2rYAAC6MGtAkSQAAbHD//9q2AABscP//JEnxaGxw///atvFobHD//yRJb3pZUlTV2rZvellSVNUkSW96i2JU1dq2b3qLYlTV2rbxaHtp//9s2/Foe2n//9q27Yt7af//bNvti3tp//9IknYevJEm8Nq2dh68kSbwSJLxaLyR///atvFovJH//7Zt/RTAeP//JEn9FMB4//+2bfFowHj//yRJ8WjAeP//JEl2HryRJvAkSf0UN4r62rZtdh68kSbwtm39FDeK+tratm96WVJU1dq28WgJUFTV2rZveotiVNXatvFoe2lU1dq27Yt7aVTV2rbti4tiVNUkSe2Le2lU1SRJ8Wh7aVTVJEnti4tiVNUkSW96i2JU1SRJ8WgJUFTVJElvellSVNUkSQAALowa0CRJfREPmgrD2rYAAC6MGtDatn0RD5oKwyRJb3qLYv//2rZveoti//8kSe2Li2L//9q27YuLYv//2rb9FMB4//9Ikv0UwHj//9q28WjAeP//SJLxaMB4//9IknYevJEm8EiS/RQ3ivra2rZ2HryRJvDatv0UN4r62iRJ8WjAeFTVJEn9FMB4VNUkSfFobHBU1SRJAABscFTVJEn9FDeKVNUkSQAALoxU1SRJdh68kVTVJEl9EQ+aVNUkSfFovJFU1SRJ8WgPmlTVJEn9FDeK+tokSf0UwHhU1bZt/RQ3ivratm39FMB4VNUyjrGa//9U1TKOsZpx+lTVbZuYmP//VNVtm5iYcfpU1f9/aJv/////Mo6xmv/////McbGa/////5FkmJj/////bZuYmP/////JpkKV/////zVZQpX//////3+Ekf////99eCOR/////4GHI5H/////fVDpkP////+Br+mQ/////35xCJD/////fGtEjv/////gZviL/////wJL2ov/////+mNKif////+AjgiQ/////4KURI7/////Hpn4i/////8kSWuG//////1ia4b/////+mOLg//////8tNqL/////wScSon/////AZ1rhv/////atmuG/////wSci4P/////Akv8gP/////8tPyA/////+Bm3oD/////fGuSfv////9+cc58/////x6Z3oD/////gpSSfv////+Ajs58/////31Q7Hv/////ga/se/////+Bh7J7/////314snv//////39Se//////JppN3/////zVZk3f/////kWQ+dP////9tmz50/////8xxJXL/////Mo4lcv//////f25x//////9/bnFx+lTV/39ucf//VNUyjiVycfpU1TKOJXL//1TVfVDpkP//VNUCS9qL//9U1X1Q6ZBx+lTVAkvai3H6VNWRZJiY//9U1ZFkmJhx+lTVzHGxmv//VNXMcbGacfpU1cxxsZr//1TVzHGxmnH6VNX/f2ib//9U1f9/aJtx+lTV/LT8gP//VNXatmuG//9U1fy0/IBx+lTV2rZrhnH6VNXMcSVycfpU1cxxJXL//1TV/39ucXH6VNX/f25x//9U1SRJa4b//1TVAkv8gP//VNUkSWuGcfpU1QJL/IBx+lTVfVDse///VNU1WZN3//9U1X1Q7Htx+lTVNVmTd3H6VNXatmuG//9U1fy02ov//1TV2rZrhnH6VNX8tNqLcfpU1TVZQpX//1TVNVlClXH6VNWRZJiY//9U1ZFkmJhx+lTVAkv8gP//VNV9UOx7//9U1QJL/IBx+lTVfVDse3H6VNX8tNqL//9U1YGv6ZD//1TV/LTai3H6VNWBr+mQcfpU1YGv6ZD//1TVyaZClf//VNWBr+mQcfpU1cmmQpVx+lTVNVmTd3H6VNU1WZN3//9U1ZFkPnRx+lTVkWQ+dP//VNU1WUKV//9U1X1Q6ZD//1TVNVlClXH6VNV9UOmQcfpU1f9/bnEd8v//Mo4lch3y///McSVyHfL//5FkPnQd8v//bZs+dB3y//81WZN3HfL//8mmk3cd8v///39teB3y//+Idud4HfL//3aJ53gd8v//fVDsex3y//+2bU16HfL//yNmhnwd8v//ga/sex3y//9Ikk16HfL//9uZhnwd8v//Akv8gB3y//9TYGx/HfL//6xczIId8v//JElrhh3y//9tW2uGHfL///y0/IAd8v//q59sfx3y//9So8yCHfL//wJL2osd8v//rFwKih3y//9TYGqNHfL//9q2a4Yd8v//kaRrhh3y//9SowqKHfL///y02osd8v//q59qjR3y//99UOmQHfL//yNmUJAd8v//tm2Jkh3y//+Br+mQHfL//9uZUJAd8v//SJKJkh3y//81WUKVHfL//8mmQpUd8v//iHbvkx3y//92ie+THfL///9/aZQd8v//kWSYmB3y//9tm5iYHfL//8xxsZod8v//Mo6xmh3y////f2ibHfL//5FkPnRx+lTVkWQ+dP//VNXMcSVycfpU1cxxJXL//1TVAkvai///VNUkSWuG//9U1QJL2otx+lTVJElrhnH6VNUyjiVycfpU1TKOJXL//1TVbZs+dHH6VNVtmz50//9U1W2bPnRx+lTVbZs+dP//VNXJppN3cfpU1cmmk3f//1TVga/se///VNX8tPyA//9U1YGv7Htx+lTV/LT8gHH6VNVtm5iY//9U1W2bmJhx+lTVyaZClf//VNXJpkKVcfpU1cmmk3f//1TVga/se///VNXJppN3cfpU1YGv7Htx+lTV/39om///VNX/f2ibcfpU1TKOsZr//1TVMo6xmnH6VNWRpGuGHfJU1VKjCood8lTVkaRrhm60VNVSowqKbrRU1UiSiZId8lTVSJKJkm60VNXbmVCQHfJU1duZUJButFTVbVtrhh3yVNWsXMyCHfJU1W1ba4ZutFTVrFzMgm60VNUjZlCQHfJU1SNmUJButFTVtm2Jkh3yVNW2bYmSbrRU1f9/aZQd8lTV/39plG60VNV2ie+THfJU1XaJ75NutFTVdonvkx3yVNV2ie+TbrRU1UiSiZId8lTVSJKJkm60VNWrn2x/HfJU1VKjzIId8lTVq59sf260VNVSo8yCbrRU1duZhnwd8lTVq59sfx3yVNXbmYZ8brRU1aufbH9utFTViHbneG60VNWIdud4HfJU1f9/bXhutFTV/39teB3yVNVTYGqNHfJU1axcCood8lTVU2BqjW60VNWsXAqKbrRU1VKjCood8lTVq59qjR3yVNVSowqKbrRU1aufao1utFTVrFzMgh3yVNVTYGx/HfJU1axczIJutFTVU2Bsf260VNW2bYmSHfJU1bZtiZJutFTViHbvkx3yVNWIdu+TbrRU1SNmhnxutFTVI2aGfB3yVNW2bU16brRU1bZtTXod8lTVq59qjR3yVNXbmVCQHfJU1aufao1utFTV25lQkG60VNVIkk16brRU1UiSTXod8lTV25mGfG60VNXbmYZ8HfJU1axcCood8lTVbVtrhh3yVNWsXAqKbrRU1W1ba4ZutFTViHbvkx3yVNWIdu+TbrRU1f9/aZQd8lTV/39plG60VNVSo8yCHfJU1ZGka4Yd8lTVUqPMgm60VNWRpGuGbrRU1XaJ53hutFTVdonneB3yVNVIkk16brRU1UiSTXod8lTVU2Bsfx3yVNUjZoZ8HfJU1VNgbH9utFTVI2aGfG60VNX/f214brRU1f9/bXgd8lTVdonneG60VNV2ied4HfJU1SNmUJAd8lTVU2BqjR3yVNUjZlCQbrRU1VNgao1utFTVtm1Nem60VNW2bU16HfJU1Yh253hutFTViHbneB3yVNWSJPFoe2n//yRJ8Wh7af//kiTti3tp//8kSe2Le2n//22b4d+dn///kWTh352f//9tm3DsnZ///5FkcOydn///bZvh39qX//9tm3Ds2pf//5Fk4d/al///kWRw7NqX//+RZHDsu31U1ZFkcOzal1TVbZtw7Lt9VNVtm3Ds2pdU1ZFk///al1TVkWT//7t9VNVtm///2pdU1W2b//+7fVTVbZvh37t9//+RZOHfu33//22bcOy7ff//kWRw7Lt9//9tm+Hf+XX//22bcOz5df//kWTh3/l1//+RZHDs+XX//22b4d+7fVTVbZtw7Lt9VNVtm+Hf+XVU1W2b//+7fVTVbZtg/dp5VNVtm937QXlU1W2bN/YDd1TVbZtw7Pl1VNVtm///2pdU1W2bcOzal1TVbZvh39qXVNVtm2D9vJtU1W2b3ftVnFTVbZs39pOeVNVtm3DsnZ9U1W2b4d+dn1TVbZtw7Pl1dvhtmzf2A3f/8JFkcOz5dXb4kWQ39gN3//CRZHDs+XVU1ZFkN/YDd1TVkWTh3/l1VNWRZN37QXlU1ZFkYP3aeVTVkWTh37t9VNWRZHDsu31U1ZFk//+7fVTVkWRw7NqXVNWRZP//2pdU1ZFk4d/al1TVkWRg/bybVNWRZN37VZxU1ZFkN/aTnlTVkWTh352fVNWRZHDsnZ9U1ZFk//+7fbzbkWRg/dp5jOJtm///u328222bYP3aeYzibZs39gN3//Btm937QXmq6ZFkN/YDd//wkWTd+0F5qultm2D92nmM4pFkYP3aeYzikWT//9qXd89tm///2pd3z5FkYP28m0rKbZtg/bybSsqRZGD9vJtKym2bYP28m0rKkWTd+1Wc/MVtm937VZz8xW2bN/aTnrrCkWQ39pOeusJtm3DsnZ+wwJFkcOydn7DAbZs39pOeusKRZDf2k566wjVZE6Jx+lTVNVkTov//VNWRZL2ecfpU1ZFkvZ7//1TVkWQXw///VNWRZBfDcfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTVMo4wxf//VNUyjjDFcfpU1QJLWbb//1TVJEnqsP//VNUCS1m2cfpU1SRJ6rBx+lTVbZsXw///VNVtmxfDcfpU1cmmwb///1TVyabBv3H6VNWBr2m7//9U1cmmwb///1TVga9pu3H6VNXJpsG/cfpU1TKOMMX//1TVMo4wxXH6VNVtmxfD//9U1W2bF8Nx+lTVAkt7q///VNV9UGum//9U1QJLe6tx+lTVfVBrpnH6VNUkSeqw//9U1QJLe6v//1TVJEnqsHH6VNUCS3urcfpU1TVZwb///1TVfVBpu///VNU1WcG/cfpU1X1Qabtx+lTVNVnBv///VNU1WcG/cfpU1ZFkF8P//1TVkWQXw3H6VNV9UGum//9U1TVZE6L//1TVfVBrpnH6VNU1WROicfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTV/LRZtv//VNWBr2m7//9U1fy0WbZx+lTVga9pu3H6VNX8tHur//9U1dq26rD//1TV/LR7q3H6VNXatuqwcfpU1YGva6b//1TV/LR7q///VNWBr2umcfpU1fy0e6tx+lTVyaYTov//VNWBr2um//9U1cmmE6Jx+lTVga9rpnH6VNUyjqSccfpU1TKOpJz//1TVbZu9nnH6VNVtm72e//9U1dq26rD//1TV/LRZtv//VNXatuqwcfpU1fy0WbZx+lTV/3/tm//////McaSc/////zKOpJz/////bZu9nv////+RZL2e/////8mmE6L/////NVkTov////+Br2um//////9/0aX/////fVBrpv////+BhzKm/////314Mqb/////gI5Np/////9+cU2n//////y0e6v/////Akt7q/////+ClBGp/////x6ZXav/////BJwLrv/////atuqw/////wGd6rD/////fGsRqf/////gZl2r//////pjC67//////LRZtv////8EnMmz/////x6Zd7b/////JEnqsP/////9Yuqw//////pjybP/////AktZtv/////gZne2/////4Gvabv/////fVBpu/////+ClMO4/////4COh7r/////gYeju/////98a8O4/////35xh7r/////fXiju//////JpsG//////zVZwb///////38DvP////+RZBfD/////22bF8P/////Mo4wxf/////McTDF//////9/58X/////kWS9nnH6VNWRZL2e//9U1cxxpJxx+lTVzHGknP//VNV9UGm7//9U1QJLWbb//1TVfVBpu3H6VNUCS1m2cfpU1f9/7Ztx+lTV/3/tm///VNUyjqSccfpU1TKOpJz//1TVzHGknHH6VNXMcaSc//9U1f9/7Ztx+lTV/3/tm///VNVtm72ecfpU1W2bvZ7//1TVyaYTonH6VNXJphOi//9U1f9/7Zsd8v//Mo6knB3y///McaScHfL//5FkvZ4d8v//bZu9nh3y//81WROiHfL//8mmE6Id8v///3/soh3y//+IdmajHfL//3aJZqMd8v//fVBrph3y//+2bcykHfL//yNmBacd8v//ga9rph3y//9IksykHfL//9uZBacd8v//Akt7qx3y//9TYOupHfL//6xcS60d8v//JEnqsB3y//9tW+qwHfL///y0e6sd8v//q5/rqR3y//9So0utHfL//wJLWbYd8v//rFyJtB3y//9TYOm3HfL//9q26rAd8v//kaTqsB3y//9So4m0HfL///y0WbYd8v//q5/ptx3y//99UGm7HfL//yNmz7od8v//tm0IvR3y//+Br2m7HfL//9uZz7od8v//SJIIvR3y//81WcG/HfL//8mmwb8d8v//iHZuvh3y//92iW6+HfL///9/6L4d8v//kWQXwx3y//9tmxfDHfL//8xxMMUd8v//Mo4wxR3y////f+fFHfL//5Gk6rAd8lTVUqOJtB3yVNWRpOqwbrRU1VKjibRutFTVI2YFp260VNUjZgWnHfJU1bZtzKRutFTVtm3MpB3yVNV2iWajbrRU1XaJZqMd8lTVSJLMpG60VNVIksykHfJU1f9/6L4d8lTV/3/ovm60VNV2iW6+HfJU1XaJbr5utFTVq5/rqR3yVNVSo0utHfJU1auf66lutFTVUqNLrW60VNVtW+qwHfJU1axcS60d8lTVbVvqsG60VNWsXEutbrRU1bZtCL0d8lTVtm0IvW60VNWIdm6+HfJU1Yh2br5utFTVU2DrqR3yVNUjZgWnHfJU1VNg66lutFTVI2YFp260VNWsXEutHfJU1VNg66kd8lTVrFxLrW60VNVTYOupbrRU1UiSCL0d8lTVSJIIvW60VNXbmc+6HfJU1duZz7putFTV/3/som60VNX/f+yiHfJU1XaJZqNutFTVdolmox3yVNWsXIm0HfJU1W1b6rAd8lTVrFyJtG60VNVtW+qwbrRU1VKjibQd8lTVq5/ptx3yVNVSo4m0brRU1auf6bdutFTVUqNLrR3yVNWRpOqwHfJU1VKjS61utFTVkaTqsG60VNXbmQWnHfJU1auf66kd8lTV25kFp260VNWrn+upbrRU1bZtzKRutFTVtm3MpB3yVNWIdmajbrRU1Yh2ZqMd8lTVq5/ptx3yVNXbmc+6HfJU1auf6bdutFTV25nPum60VNVIksykbrRU1UiSzKQd8lTV25kFp260VNXbmQWnHfJU1VNg6bcd8lTVrFyJtB3yVNVTYOm3brRU1axcibRutFTVI2bPuh3yVNUjZs+6brRU1bZtCL0d8lTVtm0IvW60VNV2iW6+HfJU1XaJbr5utFTVSJIIvR3yVNVIkgi9brRU1Yh2ZqNutFTViHZmox3yVNX/f+yibrRU1f9/7KId8lTViHZuvh3yVNWIdm6+brRU1f9/6L4d8lTV/3/ovm60VNUjZs+6HfJU1VNg6bcd8lTVI2bPum60VNVTYOm3brRU1dq2ZM65Tf//bNtmwLlN//9s22TOuU3//5IkZM65Tf//kiRmwLlN//8kSWTOuU3//2zb5rxYkFTVI8nmvMuK9eBs2+iuWJBU1SPJ6K7LivXg2zbmvOWVaMvbNuiu5ZVoy5Ik5rxYkFTVkiTorliQVNWSJOa8WJBU1ZIk6K5YkFTV2zbmvMuK9eDbNuiuy4r14CPJ5rzllWjLbNvmvFiQVNUjyeiu5ZVoy2zb6K5YkFTVbNvxaG60VNVs22uWbrRU1Wzb8WjVqlTVbNvti9WqVNVs2+XDrJhU1Wzba5bCvFTVbNvpp6yYVNVs2+2Le2lU1Wzb6acJb1TVbNtkzlDCVNVs2/FowrxU1Wzb8WhQwlTVbNtkzrlNVNVs2+XDCW9U1WzbZsC5TVTVbNvti/cxVNVs22bA9zFU1ZIk9kXVqv//SRL2RdWq//+SJPFo1ar//wAA8WjVqv//kiTti9Wq//8AAO2L1ar//0kS9kV7af//kiT2RXtp//8AAPFoe2n//wAA7Yt7af//AADti9WqVNUAAO2Le2lU1ZIk7YvVqlTVkiTti3tpVNUAAPFo1apU1UkS9kXVqlTVAADxaHtpVNVJEvZFe2lU1UkS9kV7aVTVSRL2RdWqVNWSJPZFe2lU1ZIk9kXVqlTVkiRmwPcxVNWSJGbAuU1U1ZIk7Yv3MVTVkiTti3tpVNWSJGTOuU1U1ZIk6acJb1TVkiTpp6yYVNWSJOXDCW9U1ZIk7YvVqlTVkiTlw6yYVNWSJGTOUMJU1ZIka5bCvFTVkiTxaFDCVNWSJPFowrxU1ZIka5ZutFTVkiTxaG60VNWSJPFo1apU1ZIk9kXVqlTVkiTxaNWqVNWSJPZFe2lU1ZIk8Wh7aVTVAADti9WqVNUAAPFo1apU1QAA7Yt7aVTVAADxaHtpVNXbNj7yBQ1Kyts2vPzOBUrKI8k+8gUNSsojybz8zgVKymzb9kV7aVTVbNv2RdWqVNW17fZFe2lU1bXt9kXVqlTVI8kTaAUNusLbNhNoBQ26wiPJj3xTCLDA2zaPfFMIsMBs2/Fo1apU1Wzb9kXVqlTVbNvxaHtpVNVs2/ZFe2lU1Wzb7YvVqlTVbNvti3tpVNX+/+2L1apU1f7/7Yt7aVTV2zY+8gUNVNXbNsHdUwhU1ds2vPzOBVTV2zaPfFMIVNXbNpRdzgVU1ds2E2gFDVTV2zbvdgAAVNXbNmHjAABU1SPJwd1TCLDA2zbB3VMIsMAjyT7yBQ26wts2PvIFDbrC2zaUXc4FSsrbNhNoBQ1KyiPJlF3OBUrKI8kTaAUNSsojyRNoBQ1U1SPJj3xTCFTVI8mUXc4FVNUjycHdUwhU1SPJvPzOBVTVI8k+8gUNVNUjye92AABU1SPJYeMAAFTV/v/xaNWqVNX+/+2L1apU1f7/8Wh7aVTV/v/ti3tpVNUjyZRdzgX/8CPJ73YAAHb42zaUXc4F//DbNu92AAB2+Ns2YeMAAHb4I8lh4wAAdvjbNrz8zgX/8CPJvPzOBf/wbNv2RXtp//+17fZFe2n///7/8Wh7af///v/ti3tp///bNu92AAB2+CPJ73YAAHb42zZh4wAAdvgjyWHjAAB2+LXt9kXVqv//bNv2RdWq///+//Fo1ar//2zb8WjVqv///v/ti9Wq//9s2+2L1ar//7Xt9kXVqlTV/v/xaNWqVNW17fZFe2lU1f7/8Wh7aVTVbNvti3tpVNVs2+2L9zFU1dq27Yt7aVTV2rbti4tiVNXatu2LqlRU1SRJ7YuLYlTV2rbti+c4VNVIku2L9zFU1bZt7Yv3MVTVJEnti6pUVNUkSe2Le2lU1ZIk7Yt7aVTVJEnti+c4VNWSJO2L9zFU1ZIk7Yv3Mf//tm3ti/cx//+SJGbA9zH//7Zt65n3Mf//SJLrmfcx//+2bWbA9zH//7ZtZM73Mf//JElkzvcx//9s22bA9zH//0iSZsD3Mf//SJJkzvcx///atmTO9zH//2zb7Yv3Mf//SJLti/cx//+SJGbAuU1U1ZIkZsD3MVTVJElkzrlNVNUkSWTO9zFU1WzbZsC5TVTV2rZkzrlNVNVs22bA9zFU1dq2ZM73MVTVbNtkzrlNVNVs22TOUMJU1dq2ZM65TVTV2rZkzppbVNXatmTO9zFU1SRJZM73MVTVJElkzrlNVNXatmTOGqxU1SRJZM6aW1TVJElkzhqsVNWSJGTOUMJU1ZIkZM65TVTV2zaPfFMIsMBIkuuZUwj//yPJj3xTCLDAI8nB3VMIsMC2beuZUwj//0iS6adTCP//2zbB3VMIsMC2bemnUwj//7ZtZsBTCP//SJJmwFMI//+2bWTOUwj//0iSZM5TCP//kiTxaFDC//8/xW5xUML//2zb8WhQwv//bNtkzlDC//+/Om5xUML//z/F58VQwv//kiRkzlDC//+/OufFUML//9q25cMJb1TV2rblw6yYVNVs2+XDCW9U1Wzb5cOsmFTV2rbpp6yYVNXatumnCW9U1Wzb6aesmFTVbNvppwlvVNUkSemnCW///5Ik6acJb///JEnlwwlv//+SJOXDCW///9q26aesmP//bNvpp6yY///atuXDrJj//2zb5cOsmP//kiTlwwlvVNWSJOXDrJhU1SRJ5cMJb1TVJEnlw6yYVNVs2+mnCW///9q26acJb///bNvlwwlv///atuXDCW///5Ik6aesmP//JEnpp6yY//+SJOXDrJj//yRJ5cOsmP//kiTpp6yYVNWSJOmnCW9U1SRJ6aesmFTVJEnppwlvVNUkSe2LqlRU1SRJ7YvnOFTVJEn7IslGVNUkSf4NyUZU1SRJ/g0GK1TVJEn7IgYrVNUkSfsiBitd+9q2+yIGK137JEnti+c4v/batu2L5zi/9tq2/g3JRv//JEn+DclG///atvsiyUZCwCRJ+yLJRkLAJEn+DQYr///atv4NBiv//yRJ+yIGK1372rb7IgYrXfvatm96WVIKwSRJb3pZUgrB2rbti6pUCsEkSe2LqlQKwdq2/g3JRlTV2rb7IslGVNXatv4NBitU1dq27YvnOFTV2rb7IgYrVNXatu2LqlRU1SRJ/g0GK1TVJEn+DclGVNXatv4NBitU1dq2/g3JRlTV2rb7IslGQsAkSfsiyUZCwNq28WgJUArBJEnxaAlQCsH9YmuG//9U1fpjSon//1TV/WJrhnH6VNX6Y0qJcfpU1X5xznz//1TVfnHOfHH6VNV9eLJ7//9U1X14sntx+lTVfXiye///VNV9eLJ7cfpU1f9/Unv//1TV/39Se3H6VNX/f1J7//9U1f9/Untx+lTVgYeye///VNWBh7J7cfpU1YCOznz//1TVgI7OfHH6VNWClJJ+//9U1YKUkn5x+lTVfnEIkHH6VNV+cQiQ//9U1X14I5Fx+lTVfXgjkf//VNXgZt6A//9U1fpji4P//1TV4GbegHH6VNX6Y4uDcfpU1W2bPnQd8lTVyaaTdx3yVNV8a0SOcfpU1XxrRI7//1TVfnEIkHH6VNV+cQiQ//9U1fpjSon//1TV4Gb4i///VNX6Y0qJcfpU1eBm+Itx+lTVfGuSfv//VNXgZt6A//9U1Xxrkn5x+lTV4GbegHH6VNUemfiL//9U1QScSon//1TVHpn4i3H6VNUEnEqJcfpU1YKURI7//1TVHpn4i///VNWClESOcfpU1R6Z+Itx+lTVgYcjkXH6VNWBhyOR//9U1YCOCJBx+lTVgI4IkP//VNXgZviL//9U1XxrRI7//1TV4Gb4i3H6VNV8a0SOcfpU1YGHsnv//1TVgYeye3H6VNWAjs58//9U1YCOznxx+lTVgI4IkHH6VNWAjgiQ//9U1YKURI5x+lTVgpREjv//VNUEnIuD//9U1R6Z3oD//1TVBJyLg3H6VNUemd6AcfpU1f9/hJFx+lTV/3+Ekf//VNWBhyORcfpU1YGHI5H//1TV/LT8gB3yVNXatmuGHfJU1Xxrkn7//1TVfGuSfnH6VNV+cc58//9U1X5xznxx+lTVfXgjkXH6VNV9eCOR//9U1f9/hJFx+lTV/3+Ekf//VNUBnWuG//9U1QSci4P//1TVAZ1rhnH6VNUEnIuDcfpU1cmmk3cd8lTVga/sex3yVNUemd6A//9U1YKUkn7//1TVHpnegHH6VNWClJJ+cfpU1QScSon//1TVAZ1rhv//VNUEnEqJcfpU1QGda4Zx+lTV+mOLg///VNX9YmuG//9U1fpji4Nx+lTV/WJrhnH6VNWBr+x7HfJU1fy0/IAd8lTVAkv8gB3yVNV9UOx7HfJU1f9/Untx+v//fXiye3H6//+Bh7J7cfr//4COznxx+v//fnHOfHH6//98a5J+cfr//4KUkn5x+v//HpnegHH6///gZt6Acfr//wSci4Nx+v//+mOLg3H6//8BnWuGcfr///1ia4Zx+v//+mNKiXH6//8EnEqJcfr//+Bm+Itx+v//Hpn4i3H6//98a0SOcfr//4KURI5x+v//gI4IkHH6//9+cQiQcfr//314I5Fx+v//gYcjkXH6////f4SRcfr///9/aJsd8lTVMo6xmh3yVNXMcSVyHfJU1f9/bnEd8lTVfVDpkB3yVNUCS9qLHfJU1W2bmJgd8lTVyaZClR3yVNX/f25xHfJU1TKOJXId8lTVkWQ+dB3yVNXMcSVyHfJU1dq2a4Yd8lTV/LTaix3yVNU1WUKVHfJU1X1Q6ZAd8lTVAkvaix3yVNUkSWuGHfJU1fy02osd8lTVga/pkB3yVNUyjiVyHfJU1W2bPnQd8lTVNVmTdx3yVNWRZD50HfJU1ZFkmJgd8lTVzHGxmh3yVNUyjrGaHfJU1W2bmJgd8lTVJElrhh3yVNUCS/yAHfJU1TVZQpUd8lTVkWSYmB3yVNV9UOx7HfJU1TVZk3cd8lTVga/pkB3yVNXJpkKVHfJU1cxxsZod8lTV/39omx3yVNUkSWTOGqz8xSRJ4d8qpfzF2rZkzhqs/MXatuHfKqX8xb86bnFQwlTVvzrnxVDCVNW/Om5xbrRU1b8658VutFTV2rZkzhqsVNXatuHfKqVU1dq2ZM6aW1TV2rbh35pbVNW/Om5xUMJU1b86bnFutFTVP8VucVDCVNU/xW5xbrRU1T/F58VQwlTVP8VucVDCVNU/xefFbrRU1T/FbnFutFTVvzrnxW60VNW/OufFUMJU1T/F58VutFTVP8XnxVDCVNUkSWTOGqxU1SRJZM6aW1TVJEnh3yqlVNUkSeHfmltU1SRJZM6aW///2rZkzppb//8kSeHfmlv//9q24d+aW///fGvDuHH6VNV8a8O4//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TV/38DvHH6VNX/fwO8//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TVfVBpux3yVNUCS1m2HfJU1TVZwb8d8lTVkWQXwx3yVNXgZl2r//9U1fpjC67//1TV4GZdq3H6VNX6YwuucfpU1eBmd7b//1TVfGvDuP//VNXgZne2cfpU1Xxrw7hx+lTV/3/Rpf//VNX/f9GlcfpU1YGHMqb//1TVgYcypnH6VNWAjoe6cfpU1YCOh7r//1TVgpTDuHH6VNWClMO4//9U1QJLe6sd8lTVfVBrph3yVNX6Y8mz//9U1eBmd7b//1TV+mPJs3H6VNXgZne2cfpU1f1i6rD//1TV+mPJs///VNX9YuqwcfpU1fpjybNx+lTVgI5Np///VNWAjk2ncfpU1YKUEan//1TVgpQRqXH6VNUBneqw//9U1QScC67//1TVAZ3qsHH6VNUEnAuucfpU1f9/0aVx+v//fXgypnH6//+BhzKmcfr//4COTadx+v//fnFNp3H6//98axGpcfr//4KUEalx+v//Hpldq3H6///gZl2rcfr//wScC65x+v//+mMLrnH6//8Bneqwcfr///1i6rBx+v//+mPJs3H6//8EnMmzcfr//+Bmd7Zx+v//Hpl3tnH6//98a8O4cfr//4KUw7hx+v//gI6HunH6//9+cYe6cfr//314o7tx+v//gYeju3H6////fwO8cfr//4Gva6Yd8lTV/LR7qx3yVNX/f+fFHfJU1TKOMMUd8lTVHpldq///VNWClBGp//9U1R6ZXatx+lTVgpQRqXH6VNXJphOiHfJU1YGva6Yd8lTVbZu9nh3yVNXJphOiHfJU1XxrEan//1TV4GZdq///VNV8axGpcfpU1eBmXatx+lTV2rbqsB3yVNX8tFm2HfJU1SRJ6rAd8lTVAkt7qx3yVNX/fwO8cfpU1f9/A7z//1TVgYeju3H6VNWBh6O7//9U1YGHMqb//1TVgYcypnH6VNWAjk2n//9U1YCOTadx+lTVgYeju3H6VNWBh6O7//9U1YCOh7px+lTVgI6Huv//VNUyjqScHfJU1W2bvZ4d8lTV/3/tmx3yVNUyjqScHfJU1XxrEan//1TVfGsRqXH6VNV+cU2n//9U1X5xTadx+lTVfXgypv//VNV9eDKmcfpU1f9/0aX//1TV/3/RpXH6VNX6Ywuu//9U1f1i6rD//1TV+mMLrnH6VNX9YuqwcfpU1X5xTaf//1TVfnFNp3H6VNV9eDKm//9U1X14MqZx+lTVBJwLrv//VNUemV2r//9U1QScC65x+lTVHpldq3H6VNUEnMmz//9U1QGd6rD//1TVBJzJs3H6VNUBneqwcfpU1R6Zd7b//1TVBJzJs///VNUemXe2cfpU1QScybNx+lTVgpTDuP//VNUemXe2//9U1YKUw7hx+lTVHpl3tnH6VNX8tHurHfJU1dq26rAd8lTVzHGknB3yVNX/f+2bHfJU1TVZE6Id8lTVkWS9nh3yVNWRZBfDHfJU1cxxMMUd8lTVNVnBvx3yVNV9UGm7HfJU1QJLWbYd8lTVJEnqsB3yVNXMcTDFHfJU1f9/58Ud8lTVbZsXwx3yVNXJpsG/HfJU1TKOMMUd8lTVbZsXwx3yVNV9UGumHfJU1TVZE6Id8lTVkWS9nh3yVNXMcaScHfJU1YGvabsd8lTVyabBvx3yVNX8tFm2HfJU1YGvabsd8lTV2rblwwlvVNXatua85ZVU1dq25cOsmFTV2rbpp6yYVNXatua8y4pU1dq26K7llVTV2rborsuKVNXatumnCW9U1SRJ4d+aW1TVkWTh352fVNUkSeHfKqVU1dq24d8qpVTVkWTh39qXVNVtm+HfnZ9U1ZFk4d+7fVTVbZvh39qXVNWRZOHf+XVU1W2b4d+7fVTV2rbh35pbVNVtm+Hf+XVU1duZBadutP//q5/rqW60////f2mUbrT//0iSzKRutP//dolmo260////f+yibrT//4h2ZqNutP//tm3MpG60//8jZgWnbrT//1Ng66lutP//donvk260//8/xefFbrT//1KjS61utP//SJKJkm60//+RpOqwbrT//9uZUJButP//UqOJtG60//+rn2qNbrT//6uf6bdutP//UqMKim60///bmc+6brT//5Gka4ZutP//SJIIvW60//92iW6+brT//1KjzIJutP///3/ovm60//+/OufFbrT//4h2br5utP//P8VucW60//+2bQi9brT//6ufbH9utP//I2bPum60///bmYZ8brT//0iSTXputP//donneG60//+/Om5xbrT//1Ng6bdutP///39teG60//+sXIm0brT//21b6rButP//rFxLrW60//+Idu+TbrT//4h253hutP//tm2Jkm60//+2bU16brT//yNmUJButP//I2aGfG60//9TYGx/brT//6xczIJutP//U2BqjW60//9tW2uGbrT//6xcCoputP//JEnpp6yYVNUkSea85ZVU1SRJ5cOsmFTVJEnlwwlvVNUkSeiu5ZVU1SRJ5rzLilTVJEnppwlvVNUkSeiuy4pU1bZt8Wi8kf+/tm12HryR/7+2bfFowHj/v7Zt/RQ3iv+/tm39FMB4/79IknYevJH/v0iS8Wi8kf+/SJL9FDeK/79IkvFowHj/v0iS/RTAeP+/JEnti4tiVNUkSe2Le2lU1dq27YuLYlTV2rbti3tpVNXatu2Li2JU1SRJ7Yt7aVTV/3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3/y5PJk8uTyZCXRJVEl0SVR/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///2a4l0Qyb8uTZriXRDJvy5AAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f9mu2S4l0SVR2a7ZLiXRJVEAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fyXR2a7ZriXRJdHZrtmuJdEl0dmuJdHZrvLkDJvy5Ayb/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9///8Mmwwb2a7ZLgybDBvZrtku/3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9/AAD/fwAA/3//f/9//3//f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3//f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9//3////9/////f/9//3//f/9//3//f/9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/Lk8mTy5PJkJdElUSXRJVH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwwb8mQMG/Jk2a4l0Qyb8uTZriXRDJvy5CXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/8mQMG/9/AADyZAwb/38AAAwbDJsMGwybAAD/fwAA/3//f///8mTy5P9////yZPLkJVEl0f8//78lUSXR/z//v/9/AAAMmwwb/38AAAybDBv/v/+//7//vyXR2a4l0dmu8mTy5CVRJdHyZPLkJVEl0QybDBvZrtkuDJsMG9mu2S7Zrtku/7//P9mu2S7/v/8//z//v/8//7/ZLtmu2S7Zrv+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwybDJvy5P9///8Mm/Lk/3///wwb8mQMG/Jk2S4lUdkuJVHZLiVR2S4lUf8//z//P/8/JVHZLvJkDBslUdku8mQMGyXRJVEl0SVR/7//P/+//z//P/8/JVHZLv8//z8lUdku////f////3/y5PJk8uTyZP9/AAAMmwwb/38AAAybDBsl0SVRJdElUf+//z//v/8//3////Jk8uT/f///8mTy5P+//7//v/+/JdHZriXR2a7///9/////f/Lk8mTy5PJk8uTyZPLk8mQl0SVRJdElUSVR2S7yZAwbJVHZLvJkDBv/P/8/JVHZLv8//z8lUdkuDBsMmwwbDJsAAP9/AAD/f9muJdEMm/Lk2a4l0Qyb8uQMmwwb2a7ZLgybDBvZrtku8mTy5CVRJdHyZPLkJVEl0SXR2a4l0dmu8uQMm/LkDJv/P/+//z//v9ku2a7ZLtmu2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z8Mm/Lk/3///wyb8uT/f///8uQMm/LkDJv///9/////f/JkDBv/fwAA8mQMG/9/AAAMG/JkDBvyZNkuJVHZLiVRJVEl0f8//78lUSXR/z//vwAA/38AAP9/DBvyZAwb8mT/v/+/2a4l0f+//7/ZriXR2S7Zrtku2a4MGwybDBsMm/9/////f////3////9/////f/9//3//f/9//3//f/9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//P/+//z//v9ku2a7ZLtmuJdHZriXR2a7y5Ayb8uQMm////3////9/8uTyZPLk8mQMm/Lk/3///wyb8uT/f///JdElUSXRJVH/v/8//7//P9mu2S7/v/8/2a7ZLv+//z/y5PJk8uTyZCXRJVEl0SVR8mTy5CVRJdHyZPLkJVEl0f9////yZPLk/3////Jk8uT/v/+/2a4l0f+//7/ZriXR/7//v/+//78l0dmuJdHZriVRJdH/P/+/JVEl0f8//7/y5Ayb8uQMm////3////9/DJsMG9mu2S4Mmwwb2a7ZLvJkDBv/fwAA8mQMG/9/AAAlUdku8mQMGyVR2S7yZAwb/z//PyVR2S7/P/8/JVHZLgwb8mQMG/Jk2S4lUdkuJVH/fwAADJsMG/9/AAAMmwwb/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/2S7Zrtku2a4MGwybDBsMm9muJdEMm/Lk2a4l0Qyb8uQAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/f9kuJVHZLiVR/z//P/8//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/z//v/8//7/ZLtmu2S7Zrgwb8mQMG/Jk2S4lUdkuJVH///9/////f/Lk8mTy5PJkJVHZLvJkDBslUdku8mQMG/9////yZPLk/3////Jk8uQl0dmuJdHZrvLkDJvy5AybJVEl0f8//78lUSXR/z//v/Jk8uQlUSXR8mTy5CVRJdEl0SVRJdElUf+//z//v/8/AAD/fwAA/38MG/JkDBvyZAyb8uT/f///DJvy5P9///8Mmwwb2a7ZLgybDBvZrtku8mQMG/9/AADyZAwb/38AAP8//z8lUdku/z//PyVR2S7ZLtmu2S7ZrgwbDJsMGwyb2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z/ZriXRDJvy5NmuJdEMm/Lk/7//v/+//78l0dmuJdHZrvLk8mTy5PJkJdElUSXRJVEMGwybDBsMmwAA/38AAP9/8uQMm/LkDJv///9/////f/+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f3d0dvSqaqnqd3R29KpqqeoAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3///3d0dvT/f///d3R29P///3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAd3SIC/9/AAB3dIgL/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3+qalUVd3SIC6pqVRV3dIgLAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////+//7//v/+//7//v/+//7//v/8//7//P/+//z//v/8/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3////9/AAD/f/9//3//f/9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3///////3////9/////f////3//f/9//3//fwAA/38AAP9//3////9///////9/////fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AADyZAwb/38AAPJkDBsl0SVRJdElUfLk8mTy5PJk8uTyZPLk8mT///9/////f////3////9/8uQMm/LkDJsl0dmuJdHZrv+//7//v/+/2S4lUdkuJVEMG/JkDBvyZNmu2S4Mmwwb2a7ZLgybDBvZLiVR/z//P/8//z//P/8/2S4lUdkuJVHyZAwbJVHZLvJkDBslUdku/7//P9mu2S7/v/8/2a7ZLiVRJdHyZPLkJVEl0fJk8uT/P/+/JVEl0f8//78lUSXRDBsMmwwbDJvZLtmu2S7ZriVR2S7/P/8/JVHZLv8//z/y5Ayb8uQMmyXR2a4l0dmu2S7Zrtku2a7/P/+//z//vwyb8uTZriXRDJvy5NmuJdEAAP9/AAD/fwwbDJsMGwyb8mQMG/9/AAD/v/8//7//PyXRJVEl0SVRDBvyZAwb8mQAAP9/AAD/f/9///8Mm/Lk/3///wyb8uT/P/8/JVHZLtmuJdH/v/+/2a4l0f+//7/yZPLk/3////Jk8uT/f///DJsMG/9/AAAMmwwb/38AACVR2S7yZAwb8mTy5CVRJdH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/8uTyZAwbDJsAAP9/2a4l0Qyb8uQl0SVR/7//PwAA/38MG/Jk2S7ZrgwbDJv/fwAADJsMG/+//7/ZriXRDJvy5P9///8Mmwwb2a7ZLgwb8mTZLiVR/z//v9ku2a4l0dmu8uQMm/Lk8mQl0SVR/3////Jk8uT/v/+/JdHZriVRJdH/P/+/2a7ZLv+//z/y5Ayb////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////z//P/8//z/ZLiVR2S4lUQwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk2a4l0Qyb8uT/v/+/JdHZrtmu2S4Mmwwb2a7ZLgybDBslUdku/z//PyVR2S7/P/8/////f////3/y5Ayb8uQMm9ku2a7ZLtmu/z//v/8//7/yZPLkJVEl0fJkDBslUdku8mQMGyVR2S7/fwAA8mQMG/9/AADyZAwbJdHZriXR2a7/v/+//7//v/9///8Mm/Lk/3///wyb8uT/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38lUdku8mQMG////3/y5PJk2a4l0f+//7/ZriXR/7//v/8//z8lUdku2S4lUf8//z//v/8/2a7ZLv+//z/Zrtku/38AAAybDBv/f///8mTy5AAA/38AAP9/DBsMmwwbDJvy5Ayb8uQMmyXR2a4l0dmuDBsMmwwbDJvZLtmu2S7Zrgwb8mTZLiVRAAD/fwwb8mT/v/8//7//PyXRJVEl0SVR8uTyZPLk8mT///9/////fwybDBv/fwAADJsMG/9/AAAl0SVRJdElUfLk8mTy5PJkDJvy5NmuJdEMm/Lk2a4l0fJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0fJkDBv/fwAADBsMmwAA/3//P/+/2S7ZriXR2a7y5Ayb/7//v9muJdEMm/Lk/3////LkDJv///9/JdElUf+//z/y5PJkJdElUSVRJdH/P/+/2S7ZrgwbDJvZrtku/7//PwybDBvZrtku/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/") -}, { -"aabb": AABB(-0.07, -0.182951, -0.461106, 0.14, 0.365902, 0.922211), -"attribute_data": PackedByteArray("q3cEdOR0BHSrd0Nu5HRDbqt3fpKrd/+d5HR+kuR0/50ecj+Y4I0/mBqL/50ai36SU4h+klOI/52rdwR05HQEdKt3Q27kdENuU4j/nVOIfpIai/+dGot+kuCNP5gaiwR0U4gEdBqLQ25TiENuGosEdFOIBHQai0NuU4hDbh5yP5jkdH6S5HT/nat3/52rd36SbZPo8a+SyfRtk0XGp5Dk9uCNRcbgjejx4I2p9x5y6PEecqn3HnJFxldv5PZPbcn0kWxFxpFs6PE8Q8+SkEvPkjxDypWQS8qVgkLamqI/2pqCQjiSoj84kh5yGZWRbBmVHnLIkJFs1oMechV+T232gFdv234gGdqaIBk4kgJG2po8QziSPEPWg5BL1oPJSBSa0Ur5l5BLGZXCvNaDwrw4km601oP8udqa3ubamt7mOJI1txSaLbX5l260GZWnjtqax4vamqeOOJLHiziSwrwwhsK8K4lutDCGbrQriR5yq6WRbKulHnKxopFssaIecmXDHnLo8ZFsZcMecqn3V2/k9k9tyfSRbOjx4I2p9+CN6PHgjWXDp5Dk9q+SyfRtk+jxbZNlwzxDg5A8Q4mNkEuDkJBLiY0ecm7DHnJoxpFsbsORbGjGHnIJvZFsCb0ecg+6kWwPusK8iY3CvIOQbrSJjW60g5DCvMqVbrTKlcK8z5JutM+SN3Tamldx2po3dDiSV3E4km2TbsNtk2jG4I1uw+CNaMZtkwm94I0JvW2TD7rgjQ+6wrzIkMK8OJJutMiQ/Lnamt7m2pre5jiSNbcUmi21+ZdutBmVbZM4kuCNOJJtk9aD4I3IkOCNFX6vkvaAp5DbflzA2pp8vdqaXMA4kny9OJIgGdqaIBk4kgJG2po8QziSPEPIkJBLyJDJSBSa0Ur5l5BLGZXgjdqaHnLamuCNOJIecjiSyR7amskeOJKpIdqaqSE4kjXhOJI14dqaVd44klXe2poecjiSkWw4kh5yyJCRbNaDHnIVfk9t9oBXb9t+bZOrpeCNq6Vtk7Gi4I2xom2TGZXgjRmVbZPWg+CNyJDgjRV+r5L2gKeQ2348QyuJPEMwhpBLK4mQSzCG4I3amh5y2prgjTiSHnI4kjh9vTU4fTUKxoK9NcaCNQrGgvgKxoKANjh9+Ao4fYA2B87TbAfOEmer99Nsq/cSZ/cxpXz3MWaCUwjkdlMIpXzGgkoLxoJwNjh9Sgs4fXA2B85mggfOpXyr96V8q/fkdvcxEmf3MdNsUwgSZ1MI02w4fXA2OH1KC8aCcDbGgkoLU4i9tKt3vbRTiMiQq3fIkMaC5JHGgst/U4jkkVOIy3+Sj8iQko/uuz6HyJA+h02zx3VNs9Bz7rtCbmiv72W9tO9lyJBCbsiQU4hor8aCaK9TiMiQxoLIkFOImlVTiPlvq3eaVat3+W+rdyp3q3fLf1OIKnerd6+ZOH2vmTh9y3+rd1CiHnIGzB5y+W8ecrKzHnKkvR5yRcZTiFCi4I0GzFOIy39TiK+ZxoLLf8aCr5ngjUXG4I2kveCNsrPgjflvU4gqd1OI7pOrdyp3q3fuk1OI7rurd+67U4jIkKt3yJCrdwBYU4gAWKt3yGhTiMhoq3fIkB5yyJCrd2aCHnJmgjh9aK+rd2ivOH3IkKt3yJA4fU2zq3dNszh9yJCrd8iQU4jMiFOIgpHGgsyIxoKCkaWtl4n1r8iQc52XiYOWyJCDlmaCc51mgntpZoJ7aciQi2Jmgotil4kJUMiQWVKXiat3jJOrd3eDU4iMk1OId4NTiJeJq3eXiVOIZoKrd2aCU4hNs8aCTbNTiMiQxoLIkDh9zIg4fYKRq3fMiKt3gpHAeMiQwHhNs2xwyJBscO67N4pNsy6M7ru8kWivD5q9tLyRyJAPmsiQq3fkkat3y384feSROH3LfwAAKoWNBSqFAABrh40Fa4f/fwh8J4JUfNd9VHzVezB9KYQwfeKFj34ceo9+/38ZgNt+QYAjgUGAyXhZgDWHWYDLfbaA4nxwgS98YYL0d26Cvnt7gzOCtoAcg3CBz4Nhgqt3qoSYe6qEvnvYhQqIboJAhHuDZoSqhFOIqoRAhNiF9HflhgqI5YYvfPKG4nzkh8t9nYjPg/KGHIPkhzOCnYjJePqINYf6iCOBEonbfhKJ/386ieKFxIocesSK1XsjjCmEI4zXfQCNJ4IAjf9/S42NBRaIAAAWiI0F1YUAANWF//+9g////YVx+r2Dcfr9hf//a4dx+muH//8qhXH6KoX//xaIcfoWiP//1YVx+tWFAADQhQAAj4ONBdCFjQWPg3H61YX//9WFcfoWiP//Foj//4+D///QhXH6j4Nx+tCF//8VhP//VoZx+hWEcfpWhgAA0IUAAI+DjQXQhY0Fj4P//9KGcfrShv//koRx+pKE//+9g////YVx+r2Dcfr9hQAA/YUAAL2DjQX9hY0FvYMAAFaGAAAVhI0FVoaNBRWEcfqShP//koRx+tKG///Shv//FYT//1aGcfoVhHH6Vob/f0uN130AjSeCAI0phCOM1XsjjOKFxIocesSK/39qim+BOIqPfjiKNYf6iMaCpYnsg7uIyXj6iDh9pYkSfLuICojlhs6EiodchSeGU4iqhIyFqoT0d+WGMHuKh6J6J4YKiG6CXIUsg86EyYGrd6qEcnqqhKJ6LIP0d26CMHvJgTWHWYDsg5iAxoKuf8l4WYASfJiAOH2uf+KFj34ceo9+b4Ebf49+G3//f+l+KYQwfdV7MH0nglR8131UfP9/CHxx+iqF//8qhXH6a4f//2uH//+Pg///0IVx+o+DcfrQhY0Fa4cAAGuHjQUqhQAAKoWNBdKGAADSho0FkoQAAJKEAAD9hQAAvYONBf2FjQW9gwAAkoSNBZKEAADSho0F0oYAAFaGAAAVhI0FVoaNBRWEAADVhY0F1YUAABaIjQUWiOENcIXhDe+DkEtwhZBL74PhDfKEkEvyhOENcoaQS3KGHfLvgx3ycIVutO+DbrRwhR3ycoZutHKGHfLyhG608oThDTWGkEs1huENtoeQS7aH4Q2LhZBLi4XhDQuHkEsLh+ENnYXhDR2EkEudhZBLHYThDfaF4Q11hJBL9oWQS3WEbrQ1hh3yNYZutLaHHfK2hx3yHYQd8p2FbrQdhG60nYXhDZ2F4Q0dhJBLnYWQSx2EHfIdhB3ynYVutB2EbrSdhR3yC4dutAuHHfKLhW60i4VutPKEHfLyhG60coYd8nKG4Q32heENdYSQS/aFkEt1hJBLcobhDXKGkEvyhOEN8oQd8u+DHfJwhW6074NutHCFHfK2h260tocd8jWGbrQ1huENcIXhDe+DkEtwhZBL74OQSwuH4Q0Lh5BLi4XhDYuFHfJ1hB3y9oVutHWEbrT2hZBLtofhDbaHkEs1huENNYYd8nWEHfL2hW60dYRutPaFbrSLhR3yi4VutAuHHfILh+CNyJBTiMiQ4I1mglOIZoIphOFf1XvhXymEt1rVe7da1XvhX9V7t1ophOFfKYS3WimE9YQphAeg1Xv1hNV7B6DVeweg1Xv1hCmEB6AphPWEKYThX9V74V8phLda1Xu3WtV74V/Ve7daKYThXymEt1pDguFfQ4K3WgWK4V9Dgq1SJIbAU72GX1T7iLJWBYq3WiRorVIkaLdaJGjhX0JkwFOpY19Ua2GyVmFgt1phYOFf1XvsXtV7w1ophOxeKYTDWvl1t1oDd7JW+XXhX0F5X1TaecBTu33hX7t9t1q7fa1S2pe3WtqXrVLal+FfvJvAU1WcX1STnrJWnZ/hX52ft1ophPN7KYQcgNV783vVexyA1XuEa9V7O2gphIRrKYQ7aNV7WmcphFpn1XuQkSmEkJHVe7mVKYS5ldV7LXcphC131XsNeCmEDXgphFZ71XtWeymEt2TVe7dkKYSNYNV7jWBx+u95///veXH6L3z//y98//+7gHH6u4D//3t+cfp7fgAAjYONBY2DAADOhY0FzoX//zxy//99dHH6PHJx+n10AADveY0F73kAAC98jQUvfAAAeXgAADh2jQV5eI0FOHYAAHt+jQV7fgAAu4CNBbuA//+Yc///2XVx+phzcfrZdf//PHL//310cfo8cnH6fXT//zh2//95eHH6OHZx+nl4//8vfHH6L3z//+95cfrvef//OHb//3l4cfo4dnH6eXj//86FcfrOhf//jYNx+o2DAADZdQAAmHONBdl1jQWYcwAAfXQAADxyjQV9dI0FPHIAANl1AACYc40F2XWNBZhzAAB5eAAAOHaNBXl4jQU4do0Fu4AAALuAjQV7fgAAe34AAH10AAA8co0FfXSNBTxy/3/Se9d9hnsngoZ7KYSqetV7qnrihUt5HHpLeTWHgXf/f8F3yXiBdyOBmXfbfpl3M4Ikd8t9JHcKiGx19HdsdRyDa3bPg3l1QIRfdFOIMHNmhDBz4nxrdi98eXW+e190Coj1cECEAnLPg+hwq3cwc5h7MHO+ewJy9Hf1cC986HA1h+BuyXjgbhyD9m8zgj1vI4HIbuJ89m/LfT1v237IbuKFFm0cehZt/3+gbtV7t2sphLdrJ4Laatd92mr/f49qcfp7fv//e35x+ruA//+7gP//mHP//9l1cfqYc3H62XWNBc6FAADOhY0FjYMAAI2DcfqNg///jYNx+s6F///OhY0FL3wAAC98jQXveQAA73n/f9J7132GeyeChnsphKp61XuqeuKFS3kcekt5/3/xeG+Bv3iPfr94NYeBd8aCLHjsg0J3yXiBdzh9LHgSfEJ3Cohsdc6EEXZcha50U4gwc4yFMHP0d2x1MHsRdqJ6rnQKiPVwXIWzcc6EUHCrdzBzcnowc6J6s3H0d/VwMHtQcDWH4G7sgx9vxoI1bsl44G4SfB9vOH01buKFFm0cehZtb4GibY9+om3/f3BtKYS3a9V7t2sngtpq133aav9/j2rhDR104Q2ccpBLHXSQS5xybrRPeh3yT3putM97HfLPe5BLW4DhDVuAkEvbfuEN237hDe2DkEvtg+ENboWQS26F4Q15deEN+HOQS3l1kEv4cx3ynHId8h10brSccm60HXQd8luAbrRbgB3y235utNt+HfKYdh3yGXhutJh2brQZeB3y+HMd8nl1brT4c260eXXhDU96kEtPeuENz3uQS897kEtuheENboWQS+2D4Q3tgx3ynHId8h10brSccm60HXThDXl14Q34c5BLeXWQS/hz4Q0ddOENnHKQSx10kEuccuENGXjhDZh2kEsZeJBLmHZutNt+HfLbfm60W4Ad8luA4Q0ZeOENmHaQSxl4kEuYdpBLz3vhDc97kEtPeuENT3od8vhzHfJ5dW60+HNutHl1HfLPe260z3sd8k96brRPeuEN236QS9t+4Q1bgJBLW4ButO2DHfLtg260boUd8m6FHfJuhW60boUd8u2DbrTtgx3ymHYd8hl4brSYdm60GXirdxJnHnLTbB5yEmfgjRJn4I3TbFOIEmcra0NuYHFDbitrBHRgcQR0no5Dbp6OBHRpiENuaYgEdNOUQ27TlAR0no5Dbp6OBHRgcUNulXdDbmBxBHSVdwR0kEvIkJBLFX4pVciQKVVmglJnY2s8QxV+UmfkdoOWZoL1kOR2rj0SZzxDyJCuPciQRbISZ/WQY2tFstNsB85mggfO02weciqfV28qnx5yyJCRbMiQHnJmgpFsZoKnkCqf4I0qn22TyJBtk2aCkWyys5Fs+W8ecrKzHnL5b9WqpozVqlGbe2mmjHtpUZunkPlvp5Cys+CN+W/gjbKz9zHTbLlN02z3MWaCe2lmgrlNEmcJb+R2rJjkdglvY2vVqmaCrJhja1DCEmfCvBV+UMLIkMK8yJButBV+brTIkNWqyJApVSqfKVXIkIOWKp+DlsiQ1apmgtWqyJB7aWaCe2nIkOR0oQjkdAAAGouhCBqLAAAecvlvHnKys1dv+W9Xb7KzGos/VOR0P1Qai4VK5HSFStWqyJDVqiqfe2nIkHtpKp/gjbKz4I35b22TsrNtk/lvBQ1UWFMIwWDOBQRUUwi3iM4FdJUFDSSRAAAHiwAAcV4ai+2j5HTtoxqLM5rkdDOa5HQK/OR0afMaiwr8Gotp8/nyJJGr97eIMPp0lav3wWAw+gRU+fJUWP//B4v//3FeKVXIkClVZoKDlsiQg5ZmguR0P1TkdDVIGos/VBqLNUgaiz2m5HQ9phqLM5rkdDOaHnIqn1dvKp+RbMiQkWxmghqLB4vkdAeLGotxXuR0cV6nkCqf4I0qn22TyJDgjciQbZNmguCNZoIpVVGbKVWmjIOWUZuDlqaMHnL5bx5ycDard/lvq3fIaKt3ZlpTiMhoq3ehPTh9cDbGgnA2U4hmWlOI+W/gjflvU4ihPeCNcDbgjWaCxoJmguCN02zGgqV8OH2lfMaC02zGghJnU4gSZx5y02w4fdNsOH0SZ6t3EmcecmaCOH1mgrlNwH73McB+uU2ddvcxnXZFssB+RbKddgfOwH4Hzp124I00U+CNBsxTiDRTU4iXYVOIcDard3A2q3c0U1OIA7Wrd5dhq3cDtR5yBswecjRT5HS3iMaCpXwai7eIGovBYDh9pXzGguR25HTBYDh95HY4fdNsxoLTbDh9EmfGghJnHnLIkIKKS43gjciQ4I0SZ3x1S42Cio9qHnISZ3x1j2qrd7p1q3fgoB5yunUecuCgU4jgoFOIunXgjeCg4I26dat35HYecuR2q3djax5yY2urd+R2HnLkdqt3Y2secmNr4I26deCN4KBTiLp1U4jgoOCN5HZTiOR24I1ja1OIY2vgjeR2U4jkduCNY2tTiGNrHnLgoB5yunWrd+Cgq3e6dapUZoLnOGaCyUaMrclGLrYGKy62BiuMrVOIbserd27HU4jzmat385lTiC62q3cutlOIjK2rd4ytU4gutqt3LrZTiIytq3eMrVOIbpird26YU4jakKt32pA1uS62NbmMrfjULrYXx2aC+NSMrVSrZoJTiD8vU4gDTKt3Py+rdwNMU4hWvqt3Vr5TiAOgq3cDoAAASIUAABeEjQVIhY0FF4QAALKFjQWyhQAA44aNBeOGAABdho0FXYYAAI6HjQWOh///jodx+o6H//9dhnH6XYb//0uGcfpLhv//GoVx+hqFjQXjhgAA44aNBbKFAACyhQAAdoUAAEWEjQV2hY0FRYThDdKG4Q2ShI0FS4YAAEuGjQUahQAAGoUAAHaFAABFhI0FdoWNBUWEAADOhQAAnYSNBc6FjQWdhP//RYT//3aFcfpFhHH6doX//52E///OhXH6nYRx+s6Fcfqyhf//soVx+uOG///jhgAAzoUAAJ2EjQXOhY0FnYT//+OGcfrjhv//soVx+rKFcfoahf//GoVx+kuG//9Lhv//RYT//3aFcfpFhHH6doVx+l2G//9dhnH6jof//46H4Q3QheENj4MAABqFjQUahQAAS4aNBUuGjQWOhwAAjoeNBV2GAABdhv//F4T//0iFcfoXhHH6SIXhDVaG4Q0VhP//nYT//86FcfqdhHH6zoX//xeE//9IhXH6F4Rx+kiFAABIhQAAF4SNBUiFjQUXhOEN/YXhDb2DHfK9gx3y/YX/fzqJ234SiSOBEokzgp2Iy32diOJ85Iccg+SHz4Pyhi988oZAhNiFvnvYhWaEqoSYe6qEvnt7g0CEe4MvfGGCz4NhguJ8cIEcg3CBM4K2gMt9toDbfkGAI4FBgP9/GYDhDdWF4Q0WiB3y1YUd8haIHfK9gx3y/YXhDZKE4Q3ShuENFojhDdWFHfIqhR3ya4fhDdCF4Q2Pgx3yFYQd8laGHfKPgx3y0IXhDf2F4Q29g+ENa4fhDSqFHfKShB3y0oYd8muHHfIqheENKoXhDWuHHfKPgx3y0IUd8tKGHfKShB3yFYQd8laG4Q1WhuENFYQd8haIHfLVhat31ZCrd6mGU4jVkFOIqYauPUuNrj2PapBLS42QS49q5FMSZ9Ra4V9kpBJnZKThX3x1Bsx8daS9gooGzIKKpL1Qwo9qUMJLjW60j2putEuNgoqkvYKKBsx8daS9fHUGzBqsEmeaWxJnKqXhX5pb4V9TiBJnq3cSZ1OI4V+rd+FfjQWnewAAp3uNBXZ6AAB2eo0FRoUAAEaFjQUVhAAAFYSNBTSAAAA0gI0FA38AAAN/HfKYcx3y2XUd8i98HfLveQAAUXUAACB0jQVRdY0FIHQAAPF3AADAdo0F8XeNBcB2//9GhXH6RoX//xWEcfoVhHH6dnr//3Z6cfqne///p3sd8phzHfLZdQAAUXUAACB0jQVRdY0FIHQAAPVzAADEco0F9XONBcRy//+ne3H6p3v//3Z6cfp2ev//xHL///VzcfrEcnH69XP/f8F3236ZdyOBmXczgiR3y30kd+J8a3Ycg2t2z4N5dS98eXVAhF90vntfdGaEMHOYezBzvnsCckCEAnIvfOhwz4PocOJ89m8cg/ZvM4I9b8t9PW/bfshuI4HIbv9/oG7hDdl14Q2Yc+ENjYPhDc6F///Adv//8Xdx+sB2cfrxd+ENeXjhDTh24Q0vfOEN73kAAPF3AADAdo0F8XeNBcB24Q19dOENPHId8jxyHfJ9dHH6FYT//xWEcfpGhf//RoX//zSAcfo0gP//A39x+gN/cfoDf///A39x+jSA//80gOENu4DhDXt+4Q3OheENjYMAAHZ6jQV2egAAp3uNBad7AAAVhI0FFYQAAEaFjQVGhQAA9XMAAMRyjQX1c40FxHIAAAN/jQUDfwAANICNBTSA//8gdP//UXVx+iB0cfpRdf//xHL///VzcfrEcnH69XP//yB0//9RdXH6IHRx+lF1///Adv//8Xdx+sB2cfrxd+ENfXThDTxyHfKNgx3yzoUd8u95HfIvfB3yu4Ad8nt+HfI4dh3yeXgd8jxyHfJ9dB3yzoUd8o2D4Q3veeENL3zhDXt+4Q27gB3yOHYd8nl4HfJ7fh3yu4DhDXl44Q04duEN2XXhDZhz9ZBjaxlqQ25SZ2NrUmfkdjN1Q24ZagR0M3UEdPWQ5Hard5dh1XsRqKt30q1TiNKt1XsHoCmEEajVe/WEKYQHoNV763wphPWEU4iXYSmE63zsg0J3zoQRdv9/6X7Ggix4b4G/eP9/8XiPfr94OH0seBJ8QncwexF2b4Ebf4KKj2pcha50xoKuf4yFMHPsg5iAXIWzcc6EyYHOhFBwXIUsg+yDH2+MhaqExoI1bm+Bom1chSeG/39wbXx1j2qPfqJtgopLjTh9NW7OhIqHEnwfb+yDu4jGgqWJb4E4inx1S40we1Bw/39qiqJ6s3FyejBzonqudI9+G3+PfjiKOH2ufzh9pYkSfJiAEny7iDB7ioeieieGMHvJgXJ6qoSieiyDrJjkduWVQ26smGNrCW9ja+WVBHTLikNuCW/kdsuKBHS8kciQvJFor8B4yJA3ik2zwHhNs0JuaK9CbsiQx3VNsz6HyJA+h02zOH3Lfzh95JGrd8t/OH3Lfzh95JGrd8t/"), -"format": 34896613399, -"index_count": 6, -"index_data": PackedByteArray("8gbwBvEG9QbzBvQG"), -"material": SubResource("StandardMaterial3D_6jcae"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(36.3075, 35.0357, 0, 0), -"vertex_count": 1782, -"vertex_data": PackedByteArray("2rborsuK//8jyeiuy4r//9q25rzLiv//I8nmvMuK///atuiuy4pU1dq26K7llVTVI8norsuKVNUjyeiu5ZVU1Wzb6K5YkFTVkiTorliQVNXbNuiu5ZVU1ds26K7LilTVJEnorsuKVNUkSeiu5ZVU1SRJ6K7llf//2zboruWV//8kSea85ZX//9s25rzllf//2rbmvOWVVNXatua8y4pU1SPJ5rzllVTVI8nmvMuKVNVs2+a8WJBU1SPJ6K7llf//2rboruWV//8jyea85ZX//9q25rzllf//2zborsuK//8kSeiuy4r//9s25rzLiv//JEnmvMuK//+SJOa8WJBU1ds25rzLilTV2zbmvOWVVNUkSea85ZVU1SRJ5rzLilTV/v9yZd7mVNUY+3JlpOlU1f7/cmXCvFTVte1yZa3rVNVs23JlwrxU1WzbcmXe5lTVbNtyZWvsVNWSJHJl3uZU1ZIkcmVr7FTVkiRyZcK8VNVJEnJlretU1eYEcmWk6VTVAAByZcK8VNUAAHJl3uZU1Wzba5bCvFTVbNtrlm60VNW17YuUwrxU1bXti5RutFTVGPt1UKTpSsq17XVQreu6whj7cmWk6UrKte1yZa3rusJs23NebrT///7/c15utP//bNvxaG60///+/22IbrT//2zba5ZutP//GPtsj260//+17YuUbrT///7/dVDe5lTV/v9yZd7mVNX+/3VQ/LlU1f7/cmXCvFTV/v9tiMK8VNX+/22IbrRU1f7/VVI1t1TV/v90Vy21VNX+/3NebrRU1QAAbYjCvFTVAAByZcK8VNUAAG2IbrRU1QAAdVD8uVTVAAB1UN7mVNUAAHJl3uZU1QAAVVI1t1TVAAB0Vy21VNUAAHNebrRU1ZIkdVBr7LDASRJ1UK3rusKSJHJla+ywwEkScmWt67rC5gRsj8K8VNUAAG2IwrxU1eYEbI9utFTVAABtiG60VNVs23RXLbX/8P7/dFcttf/wbNtzXm60dvj+/3NebrR2+GzbdVD8uVTVbNt1UN7mVNX+/3VQ/LlU1WzbdVBr7FTVte11UK3rVNUY+3VQpOlU1f7/dVDe5lTVkiR1UGvsVNWSJHVQ3uZU1ZIkdVD8uVTVSRJ1UK3rVNXmBHVQpOlU1QAAdVDe5lTVAAB1UPy5VNUY+2yPwrxU1bXti5TCvFTVGPtsj260VNW17YuUbrRU1WzbVVI1t4zibNt1UPy5vNv+/1VSNbeM4v7/dVD8ubzbbNtVUjW3jOL+/1VSNbeM4mzbdFcttf/w/v90Vy21//BJEouUwrxU1eYEbI/CvFTVSRKLlG60VNXmBGyPbrRU1UkSi5TCvFTVSRKLlG60VNWSJGuWwrxU1ZIka5ZutFTVte11UK3rusJs23VQa+ywwLXtcmWt67rCbNtyZWvssMAAAFVSNbeM4gAAdVD8ubzbkiRVUjW3jOKSJHVQ/Lm82wAAVVI1t4zikiRVUjW3jOIAAHRXLbX/8JIkdFcttf/wbNvxaMK8VNVs23JlwrxU1Wzb8WhutFTVbNt1UPy5VNVs23VQ3uZU1WzbcmXe5lTVbNtVUjW3VNVs23RXLbVU1Wzbc15utFTV/v9yZcK8//9s23Jlwrz///7/bYjCvP//bNvxaMK8//9s22uWwrz//xj7bI/CvP//te2LlMK8//9JEnVQreu6wuYEdVCk6UrKSRJyZa3rusLmBHJlpOlKypIkdVDe5lTVkiRyZd7mVNWSJHVQ/LlU1ZIkcmXCvFTVkiTxaMK8VNWSJPFobrRU1ZIkVVI1t1TVkiR0Vy21VNWSJHNebrRU1WzbdVBr7P//kiR1UGvs//9s23Jla+z//5IkcmVr7P//GPt1UKTpSsoY+3JlpOlKyv7/dVDe5nfP/v9yZd7md8/mBHJlpOlKyuYEdVCk6UrKAAByZd7md88AAHVQ3uZ3z5IkcmXCvP//AAByZcK8//+SJPFowrz//wAAbYjCvP//kiRrlsK8///mBGyPwrz//0kSi5TCvP//AAB0Vy21//CSJHRXLbX/8AAAc15utHb4kiRzXm60dvgAAHNebrT//5Ikc15utP//AABtiG60//+SJPFobrT//5Ika5ZutP//5gRsj260//9JEouUbrT///7/bYjCvFTVGPtsj8K8VNX+/22IbrRU1Rj7bI9utFTVkiR1UN7m//9s23VQ3ub//5IkcmXe5v//bNtyZd7m//+2beuZ9zFI0rZt6adTCEjSSJLrmfcxSNJIkumnUwhI0rZt65lTCIPYtm3ti/cxg9hIkuuZUwiD2EiS7Yv3MYPYSJJmwPcxVNVIkmTO9zFU1UiSZsBTCFTVSJJkzlMIVNW2beuZ9zFU1bZt7Yv3MVTVtm3pp1MIVNW2beuZUwhU1bZtZsBTCFTVtm1mwPcxVNVIkmbAUwhU1UiSZsD3MVTVSJLti/cxVNVIkuuZ9zFU1UiS65lTCFTVSJLpp1MIVNW2bWTO9zFU1bZtZsD3MVTVtm1kzlMIVNW2bWbAUwhU1bZtZM73MVTVtm1kzlMIVNVIkmTO9zFU1UiSZM5TCFTV2rZ9EQ+aCsMkSX0RD5oKw9q28WgPmv//JEnxaA+a//9Ikv0UN4r62kiS/RTAeFTV2rb9FDeK+tratv0UwHhU1dq28WhscFTV2rYAAGxwVNXatvFowHhU1dq2/RTAeFTV2rb9FDeKVNXatgAALoxU1dq2dh68kVTV2rZ9EQ+aVNXatvFoD5pU1dq28Wi8kVTVJEl2HryRJvC2bXYevJEm8CRJ8Wi8kf//tm3xaLyR//8kSfFoCVBU1SRJ8Wh7aVTV2rbxaAlQVNXatvFoe2lU1dq28WhscFTV2rbxaMB4VNUkSfFobHBU1dq28Wi8kVTVSJLxaLyRVNVIkvFowHhU1dq28WgPmlTVbNvxaFDCVNVs2/Foe2lU1Wzb8WjVqlTVbNvxaG60VNVs2/FowrxU1SRJ8WgPmlTVkiTxaFDCVNUkSfFowHhU1SRJ8Wi8kVTVtm3xaMB4VNW2bfFovJFU1ZIk8WjCvFTVkiTxaG60VNWSJPFo1apU1ZIk8Wh7aVTVJEkAAGxwVNUkSQAALowa0Nq2AABscFTV2rYAAC6MGtAkSQAAbHD//9q2AABscP//JEnxaGxw///atvFobHD//yRJb3pZUlTV2rZvellSVNUkSW96i2JU1dq2b3qLYlTV2rbxaHtp//9s2/Foe2n//9q27Yt7af//bNvti3tp//9IknYevJEm8Nq2dh68kSbwSJLxaLyR///atvFovJH//7Zt/RTAeP//JEn9FMB4//+2bfFowHj//yRJ8WjAeP//JEl2HryRJvAkSf0UN4r62rZtdh68kSbwtm39FDeK+tratm96WVJU1dq28WgJUFTV2rZveotiVNXatvFoe2lU1dq27Yt7aVTV2rbti4tiVNUkSe2Le2lU1SRJ8Wh7aVTVJEnti4tiVNUkSW96i2JU1SRJ8WgJUFTVJElvellSVNUkSQAALowa0CRJfREPmgrD2rYAAC6MGtDatn0RD5oKwyRJb3qLYv//2rZveoti//8kSe2Li2L//9q27YuLYv//2rb9FMB4//9Ikv0UwHj//9q28WjAeP//SJLxaMB4//9IknYevJEm8EiS/RQ3ivra2rZ2HryRJvDatv0UN4r62iRJ8WjAeFTVJEn9FMB4VNUkSfFobHBU1SRJAABscFTVJEn9FDeKVNUkSQAALoxU1SRJdh68kVTVJEl9EQ+aVNUkSfFovJFU1SRJ8WgPmlTVJEn9FDeK+tokSf0UwHhU1bZt/RQ3ivratm39FMB4VNUyjrGa//9U1TKOsZpx+lTVbZuYmP//VNVtm5iYcfpU1f9/aJv/////Mo6xmv/////McbGa/////5FkmJj/////bZuYmP/////JpkKV/////zVZQpX//////3+Ekf////99eCOR/////4GHI5H/////fVDpkP////+Br+mQ/////35xCJD/////fGtEjv/////gZviL/////wJL2ov/////+mNKif////+AjgiQ/////4KURI7/////Hpn4i/////8kSWuG//////1ia4b/////+mOLg//////8tNqL/////wScSon/////AZ1rhv/////atmuG/////wSci4P/////Akv8gP/////8tPyA/////+Bm3oD/////fGuSfv////9+cc58/////x6Z3oD/////gpSSfv////+Ajs58/////31Q7Hv/////ga/se/////+Bh7J7/////314snv//////39Se//////JppN3/////zVZk3f/////kWQ+dP////9tmz50/////8xxJXL/////Mo4lcv//////f25x//////9/bnFx+lTV/39ucf//VNUyjiVycfpU1TKOJXL//1TVfVDpkP//VNUCS9qL//9U1X1Q6ZBx+lTVAkvai3H6VNWRZJiY//9U1ZFkmJhx+lTVzHGxmv//VNXMcbGacfpU1cxxsZr//1TVzHGxmnH6VNX/f2ib//9U1f9/aJtx+lTV/LT8gP//VNXatmuG//9U1fy0/IBx+lTV2rZrhnH6VNXMcSVycfpU1cxxJXL//1TV/39ucXH6VNX/f25x//9U1SRJa4b//1TVAkv8gP//VNUkSWuGcfpU1QJL/IBx+lTVfVDse///VNU1WZN3//9U1X1Q7Htx+lTVNVmTd3H6VNXatmuG//9U1fy02ov//1TV2rZrhnH6VNX8tNqLcfpU1TVZQpX//1TVNVlClXH6VNWRZJiY//9U1ZFkmJhx+lTVAkv8gP//VNV9UOx7//9U1QJL/IBx+lTVfVDse3H6VNX8tNqL//9U1YGv6ZD//1TV/LTai3H6VNWBr+mQcfpU1YGv6ZD//1TVyaZClf//VNWBr+mQcfpU1cmmQpVx+lTVNVmTd3H6VNU1WZN3//9U1ZFkPnRx+lTVkWQ+dP//VNU1WUKV//9U1X1Q6ZD//1TVNVlClXH6VNV9UOmQcfpU1f9/bnEd8v//Mo4lch3y///McSVyHfL//5FkPnQd8v//bZs+dB3y//81WZN3HfL//8mmk3cd8v///39teB3y//+Idud4HfL//3aJ53gd8v//fVDsex3y//+2bU16HfL//yNmhnwd8v//ga/sex3y//9Ikk16HfL//9uZhnwd8v//Akv8gB3y//9TYGx/HfL//6xczIId8v//JElrhh3y//9tW2uGHfL///y0/IAd8v//q59sfx3y//9So8yCHfL//wJL2osd8v//rFwKih3y//9TYGqNHfL//9q2a4Yd8v//kaRrhh3y//9SowqKHfL///y02osd8v//q59qjR3y//99UOmQHfL//yNmUJAd8v//tm2Jkh3y//+Br+mQHfL//9uZUJAd8v//SJKJkh3y//81WUKVHfL//8mmQpUd8v//iHbvkx3y//92ie+THfL///9/aZQd8v//kWSYmB3y//9tm5iYHfL//8xxsZod8v//Mo6xmh3y////f2ibHfL//5FkPnRx+lTVkWQ+dP//VNXMcSVycfpU1cxxJXL//1TVAkvai///VNUkSWuG//9U1QJL2otx+lTVJElrhnH6VNUyjiVycfpU1TKOJXL//1TVbZs+dHH6VNVtmz50//9U1W2bPnRx+lTVbZs+dP//VNXJppN3cfpU1cmmk3f//1TVga/se///VNX8tPyA//9U1YGv7Htx+lTV/LT8gHH6VNVtm5iY//9U1W2bmJhx+lTVyaZClf//VNXJpkKVcfpU1cmmk3f//1TVga/se///VNXJppN3cfpU1YGv7Htx+lTV/39om///VNX/f2ibcfpU1TKOsZr//1TVMo6xmnH6VNWRpGuGHfJU1VKjCood8lTVkaRrhm60VNVSowqKbrRU1UiSiZId8lTVSJKJkm60VNXbmVCQHfJU1duZUJButFTVbVtrhh3yVNWsXMyCHfJU1W1ba4ZutFTVrFzMgm60VNUjZlCQHfJU1SNmUJButFTVtm2Jkh3yVNW2bYmSbrRU1f9/aZQd8lTV/39plG60VNV2ie+THfJU1XaJ75NutFTVdonvkx3yVNV2ie+TbrRU1UiSiZId8lTVSJKJkm60VNWrn2x/HfJU1VKjzIId8lTVq59sf260VNVSo8yCbrRU1duZhnwd8lTVq59sfx3yVNXbmYZ8brRU1aufbH9utFTViHbneG60VNWIdud4HfJU1f9/bXhutFTV/39teB3yVNVTYGqNHfJU1axcCood8lTVU2BqjW60VNWsXAqKbrRU1VKjCood8lTVq59qjR3yVNVSowqKbrRU1aufao1utFTVrFzMgh3yVNVTYGx/HfJU1axczIJutFTVU2Bsf260VNW2bYmSHfJU1bZtiZJutFTViHbvkx3yVNWIdu+TbrRU1SNmhnxutFTVI2aGfB3yVNW2bU16brRU1bZtTXod8lTVq59qjR3yVNXbmVCQHfJU1aufao1utFTV25lQkG60VNVIkk16brRU1UiSTXod8lTV25mGfG60VNXbmYZ8HfJU1axcCood8lTVbVtrhh3yVNWsXAqKbrRU1W1ba4ZutFTViHbvkx3yVNWIdu+TbrRU1f9/aZQd8lTV/39plG60VNVSo8yCHfJU1ZGka4Yd8lTVUqPMgm60VNWRpGuGbrRU1XaJ53hutFTVdonneB3yVNVIkk16brRU1UiSTXod8lTVU2Bsfx3yVNUjZoZ8HfJU1VNgbH9utFTVI2aGfG60VNX/f214brRU1f9/bXgd8lTVdonneG60VNV2ied4HfJU1SNmUJAd8lTVU2BqjR3yVNUjZlCQbrRU1VNgao1utFTVtm1Nem60VNW2bU16HfJU1Yh253hutFTViHbneB3yVNWSJPFoe2n//yRJ8Wh7af//kiTti3tp//8kSe2Le2n//22b4d+dn///kWTh352f//9tm3DsnZ///5FkcOydn///bZvh39qX//9tm3Ds2pf//5Fk4d/al///kWRw7NqX//+RZHDsu31U1ZFkcOzal1TVbZtw7Lt9VNVtm3Ds2pdU1ZFk///al1TVkWT//7t9VNVtm///2pdU1W2b//+7fVTVbZvh37t9//+RZOHfu33//22bcOy7ff//kWRw7Lt9//9tm+Hf+XX//22bcOz5df//kWTh3/l1//+RZHDs+XX//22b4d+7fVTVbZtw7Lt9VNVtm+Hf+XVU1W2b//+7fVTVbZtg/dp5VNVtm937QXlU1W2bN/YDd1TVbZtw7Pl1VNVtm///2pdU1W2bcOzal1TVbZvh39qXVNVtm2D9vJtU1W2b3ftVnFTVbZs39pOeVNVtm3DsnZ9U1W2b4d+dn1TVbZtw7Pl1dvhtmzf2A3f/8JFkcOz5dXb4kWQ39gN3//CRZHDs+XVU1ZFkN/YDd1TVkWTh3/l1VNWRZN37QXlU1ZFkYP3aeVTVkWTh37t9VNWRZHDsu31U1ZFk//+7fVTVkWRw7NqXVNWRZP//2pdU1ZFk4d/al1TVkWRg/bybVNWRZN37VZxU1ZFkN/aTnlTVkWTh352fVNWRZHDsnZ9U1ZFk//+7fbzbkWRg/dp5jOJtm///u328222bYP3aeYzibZs39gN3//Btm937QXmq6ZFkN/YDd//wkWTd+0F5qultm2D92nmM4pFkYP3aeYzikWT//9qXd89tm///2pd3z5FkYP28m0rKbZtg/bybSsqRZGD9vJtKym2bYP28m0rKkWTd+1Wc/MVtm937VZz8xW2bN/aTnrrCkWQ39pOeusJtm3DsnZ+wwJFkcOydn7DAbZs39pOeusKRZDf2k566wjVZE6Jx+lTVNVkTov//VNWRZL2ecfpU1ZFkvZ7//1TVkWQXw///VNWRZBfDcfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTVMo4wxf//VNUyjjDFcfpU1QJLWbb//1TVJEnqsP//VNUCS1m2cfpU1SRJ6rBx+lTVbZsXw///VNVtmxfDcfpU1cmmwb///1TVyabBv3H6VNWBr2m7//9U1cmmwb///1TVga9pu3H6VNXJpsG/cfpU1TKOMMX//1TVMo4wxXH6VNVtmxfD//9U1W2bF8Nx+lTVAkt7q///VNV9UGum//9U1QJLe6tx+lTVfVBrpnH6VNUkSeqw//9U1QJLe6v//1TVJEnqsHH6VNUCS3urcfpU1TVZwb///1TVfVBpu///VNU1WcG/cfpU1X1Qabtx+lTVNVnBv///VNU1WcG/cfpU1ZFkF8P//1TVkWQXw3H6VNV9UGum//9U1TVZE6L//1TVfVBrpnH6VNU1WROicfpU1cxxMMX//1TVzHEwxXH6VNX/f+fF//9U1f9/58Vx+lTV/LRZtv//VNWBr2m7//9U1fy0WbZx+lTVga9pu3H6VNX8tHur//9U1dq26rD//1TV/LR7q3H6VNXatuqwcfpU1YGva6b//1TV/LR7q///VNWBr2umcfpU1fy0e6tx+lTVyaYTov//VNWBr2um//9U1cmmE6Jx+lTVga9rpnH6VNUyjqSccfpU1TKOpJz//1TVbZu9nnH6VNVtm72e//9U1dq26rD//1TV/LRZtv//VNXatuqwcfpU1fy0WbZx+lTV/3/tm//////McaSc/////zKOpJz/////bZu9nv////+RZL2e/////8mmE6L/////NVkTov////+Br2um//////9/0aX/////fVBrpv////+BhzKm/////314Mqb/////gI5Np/////9+cU2n//////y0e6v/////Akt7q/////+ClBGp/////x6ZXav/////BJwLrv/////atuqw/////wGd6rD/////fGsRqf/////gZl2r//////pjC67//////LRZtv////8EnMmz/////x6Zd7b/////JEnqsP/////9Yuqw//////pjybP/////AktZtv/////gZne2/////4Gvabv/////fVBpu/////+ClMO4/////4COh7r/////gYeju/////98a8O4/////35xh7r/////fXiju//////JpsG//////zVZwb///////38DvP////+RZBfD/////22bF8P/////Mo4wxf/////McTDF//////9/58X/////kWS9nnH6VNWRZL2e//9U1cxxpJxx+lTVzHGknP//VNV9UGm7//9U1QJLWbb//1TVfVBpu3H6VNUCS1m2cfpU1f9/7Ztx+lTV/3/tm///VNUyjqSccfpU1TKOpJz//1TVzHGknHH6VNXMcaSc//9U1f9/7Ztx+lTV/3/tm///VNVtm72ecfpU1W2bvZ7//1TVyaYTonH6VNXJphOi//9U1f9/7Zsd8v//Mo6knB3y///McaScHfL//5FkvZ4d8v//bZu9nh3y//81WROiHfL//8mmE6Id8v///3/soh3y//+IdmajHfL//3aJZqMd8v//fVBrph3y//+2bcykHfL//yNmBacd8v//ga9rph3y//9IksykHfL//9uZBacd8v//Akt7qx3y//9TYOupHfL//6xcS60d8v//JEnqsB3y//9tW+qwHfL///y0e6sd8v//q5/rqR3y//9So0utHfL//wJLWbYd8v//rFyJtB3y//9TYOm3HfL//9q26rAd8v//kaTqsB3y//9So4m0HfL///y0WbYd8v//q5/ptx3y//99UGm7HfL//yNmz7od8v//tm0IvR3y//+Br2m7HfL//9uZz7od8v//SJIIvR3y//81WcG/HfL//8mmwb8d8v//iHZuvh3y//92iW6+HfL///9/6L4d8v//kWQXwx3y//9tmxfDHfL//8xxMMUd8v//Mo4wxR3y////f+fFHfL//5Gk6rAd8lTVUqOJtB3yVNWRpOqwbrRU1VKjibRutFTVI2YFp260VNUjZgWnHfJU1bZtzKRutFTVtm3MpB3yVNV2iWajbrRU1XaJZqMd8lTVSJLMpG60VNVIksykHfJU1f9/6L4d8lTV/3/ovm60VNV2iW6+HfJU1XaJbr5utFTVq5/rqR3yVNVSo0utHfJU1auf66lutFTVUqNLrW60VNVtW+qwHfJU1axcS60d8lTVbVvqsG60VNWsXEutbrRU1bZtCL0d8lTVtm0IvW60VNWIdm6+HfJU1Yh2br5utFTVU2DrqR3yVNUjZgWnHfJU1VNg66lutFTVI2YFp260VNWsXEutHfJU1VNg66kd8lTVrFxLrW60VNVTYOupbrRU1UiSCL0d8lTVSJIIvW60VNXbmc+6HfJU1duZz7putFTV/3/som60VNX/f+yiHfJU1XaJZqNutFTVdolmox3yVNWsXIm0HfJU1W1b6rAd8lTVrFyJtG60VNVtW+qwbrRU1VKjibQd8lTVq5/ptx3yVNVSo4m0brRU1auf6bdutFTVUqNLrR3yVNWRpOqwHfJU1VKjS61utFTVkaTqsG60VNXbmQWnHfJU1auf66kd8lTV25kFp260VNWrn+upbrRU1bZtzKRutFTVtm3MpB3yVNWIdmajbrRU1Yh2ZqMd8lTVq5/ptx3yVNXbmc+6HfJU1auf6bdutFTV25nPum60VNVIksykbrRU1UiSzKQd8lTV25kFp260VNXbmQWnHfJU1VNg6bcd8lTVrFyJtB3yVNVTYOm3brRU1axcibRutFTVI2bPuh3yVNUjZs+6brRU1bZtCL0d8lTVtm0IvW60VNV2iW6+HfJU1XaJbr5utFTVSJIIvR3yVNVIkgi9brRU1Yh2ZqNutFTViHZmox3yVNX/f+yibrRU1f9/7KId8lTViHZuvh3yVNWIdm6+brRU1f9/6L4d8lTV/3/ovm60VNUjZs+6HfJU1VNg6bcd8lTVI2bPum60VNVTYOm3brRU1dq2ZM65Tf//bNtmwLlN//9s22TOuU3//5IkZM65Tf//kiRmwLlN//8kSWTOuU3//2zb5rxYkFTVI8nmvMuK9eBs2+iuWJBU1SPJ6K7LivXg2zbmvOWVaMvbNuiu5ZVoy5Ik5rxYkFTVkiTorliQVNWSJOa8WJBU1ZIk6K5YkFTV2zbmvMuK9eDbNuiuy4r14CPJ5rzllWjLbNvmvFiQVNUjyeiu5ZVoy2zb6K5YkFTVbNvxaG60VNVs22uWbrRU1Wzb8WjVqlTVbNvti9WqVNVs2+XDrJhU1Wzba5bCvFTVbNvpp6yYVNVs2+2Le2lU1Wzb6acJb1TVbNtkzlDCVNVs2/FowrxU1Wzb8WhQwlTVbNtkzrlNVNVs2+XDCW9U1WzbZsC5TVTVbNvti/cxVNVs22bA9zFU1ZIk9kXVqv//SRL2RdWq//+SJPFo1ar//wAA8WjVqv//kiTti9Wq//8AAO2L1ar//0kS9kV7af//kiT2RXtp//8AAPFoe2n//wAA7Yt7af//AADti9WqVNUAAO2Le2lU1ZIk7YvVqlTVkiTti3tpVNUAAPFo1apU1UkS9kXVqlTVAADxaHtpVNVJEvZFe2lU1UkS9kV7aVTVSRL2RdWqVNWSJPZFe2lU1ZIk9kXVqlTVkiRmwPcxVNWSJGbAuU1U1ZIk7Yv3MVTVkiTti3tpVNWSJGTOuU1U1ZIk6acJb1TVkiTpp6yYVNWSJOXDCW9U1ZIk7YvVqlTVkiTlw6yYVNWSJGTOUMJU1ZIka5bCvFTVkiTxaFDCVNWSJPFowrxU1ZIka5ZutFTVkiTxaG60VNWSJPFo1apU1ZIk9kXVqlTVkiTxaNWqVNWSJPZFe2lU1ZIk8Wh7aVTVAADti9WqVNUAAPFo1apU1QAA7Yt7aVTVAADxaHtpVNXbNj7yBQ1Kyts2vPzOBUrKI8k+8gUNSsojybz8zgVKymzb9kV7aVTVbNv2RdWqVNW17fZFe2lU1bXt9kXVqlTVI8kTaAUNusLbNhNoBQ26wiPJj3xTCLDA2zaPfFMIsMBs2/Fo1apU1Wzb9kXVqlTVbNvxaHtpVNVs2/ZFe2lU1Wzb7YvVqlTVbNvti3tpVNX+/+2L1apU1f7/7Yt7aVTV2zY+8gUNVNXbNsHdUwhU1ds2vPzOBVTV2zaPfFMIVNXbNpRdzgVU1ds2E2gFDVTV2zbvdgAAVNXbNmHjAABU1SPJwd1TCLDA2zbB3VMIsMAjyT7yBQ26wts2PvIFDbrC2zaUXc4FSsrbNhNoBQ1KyiPJlF3OBUrKI8kTaAUNSsojyRNoBQ1U1SPJj3xTCFTVI8mUXc4FVNUjycHdUwhU1SPJvPzOBVTVI8k+8gUNVNUjye92AABU1SPJYeMAAFTV/v/xaNWqVNX+/+2L1apU1f7/8Wh7aVTV/v/ti3tpVNUjyZRdzgX/8CPJ73YAAHb42zaUXc4F//DbNu92AAB2+Ns2YeMAAHb4I8lh4wAAdvjbNrz8zgX/8CPJvPzOBf/wbNv2RXtp//+17fZFe2n///7/8Wh7af///v/ti3tp///bNu92AAB2+CPJ73YAAHb42zZh4wAAdvgjyWHjAAB2+LXt9kXVqv//bNv2RdWq///+//Fo1ar//2zb8WjVqv///v/ti9Wq//9s2+2L1ar//7Xt9kXVqlTV/v/xaNWqVNW17fZFe2lU1f7/8Wh7aVTVbNvti3tpVNVs2+2L9zFU1dq27Yt7aVTV2rbti4tiVNXatu2LqlRU1SRJ7YuLYlTV2rbti+c4VNVIku2L9zFU1bZt7Yv3MVTVJEnti6pUVNUkSe2Le2lU1ZIk7Yt7aVTVJEnti+c4VNWSJO2L9zFU1ZIk7Yv3Mf//tm3ti/cx//+SJGbA9zH//7Zt65n3Mf//SJLrmfcx//+2bWbA9zH//7ZtZM73Mf//JElkzvcx//9s22bA9zH//0iSZsD3Mf//SJJkzvcx///atmTO9zH//2zb7Yv3Mf//SJLti/cx//+SJGbAuU1U1ZIkZsD3MVTVJElkzrlNVNUkSWTO9zFU1WzbZsC5TVTV2rZkzrlNVNVs22bA9zFU1dq2ZM73MVTVbNtkzrlNVNVs22TOUMJU1dq2ZM65TVTV2rZkzppbVNXatmTO9zFU1SRJZM73MVTVJElkzrlNVNXatmTOGqxU1SRJZM6aW1TVJElkzhqsVNWSJGTOUMJU1ZIkZM65TVTV2zaPfFMIsMBIkuuZUwj//yPJj3xTCLDAI8nB3VMIsMC2beuZUwj//0iS6adTCP//2zbB3VMIsMC2bemnUwj//7ZtZsBTCP//SJJmwFMI//+2bWTOUwj//0iSZM5TCP//kiTxaFDC//8/xW5xUML//2zb8WhQwv//bNtkzlDC//+/Om5xUML//z/F58VQwv//kiRkzlDC//+/OufFUML//9q25cMJb1TV2rblw6yYVNVs2+XDCW9U1Wzb5cOsmFTV2rbpp6yYVNXatumnCW9U1Wzb6aesmFTVbNvppwlvVNUkSemnCW///5Ik6acJb///JEnlwwlv//+SJOXDCW///9q26aesmP//bNvpp6yY///atuXDrJj//2zb5cOsmP//kiTlwwlvVNWSJOXDrJhU1SRJ5cMJb1TVJEnlw6yYVNVs2+mnCW///9q26acJb///bNvlwwlv///atuXDCW///5Ik6aesmP//JEnpp6yY//+SJOXDrJj//yRJ5cOsmP//kiTpp6yYVNWSJOmnCW9U1SRJ6aesmFTVJEnppwlvVNUkSe2LqlRU1SRJ7YvnOFTVJEn7IslGVNUkSf4NyUZU1SRJ/g0GK1TVJEn7IgYrVNUkSfsiBitd+9q2+yIGK137JEnti+c4v/batu2L5zi/9tq2/g3JRv//JEn+DclG///atvsiyUZCwCRJ+yLJRkLAJEn+DQYr///atv4NBiv//yRJ+yIGK1372rb7IgYrXfvatm96WVIKwSRJb3pZUgrB2rbti6pUCsEkSe2LqlQKwdq2/g3JRlTV2rb7IslGVNXatv4NBitU1dq27YvnOFTV2rb7IgYrVNXatu2LqlRU1SRJ/g0GK1TVJEn+DclGVNXatv4NBitU1dq2/g3JRlTV2rb7IslGQsAkSfsiyUZCwNq28WgJUArBJEnxaAlQCsH9YmuG//9U1fpjSon//1TV/WJrhnH6VNX6Y0qJcfpU1X5xznz//1TVfnHOfHH6VNV9eLJ7//9U1X14sntx+lTVfXiye///VNV9eLJ7cfpU1f9/Unv//1TV/39Se3H6VNX/f1J7//9U1f9/Untx+lTVgYeye///VNWBh7J7cfpU1YCOznz//1TVgI7OfHH6VNWClJJ+//9U1YKUkn5x+lTVfnEIkHH6VNV+cQiQ//9U1X14I5Fx+lTVfXgjkf//VNXgZt6A//9U1fpji4P//1TV4GbegHH6VNX6Y4uDcfpU1W2bPnQd8lTVyaaTdx3yVNV8a0SOcfpU1XxrRI7//1TVfnEIkHH6VNV+cQiQ//9U1fpjSon//1TV4Gb4i///VNX6Y0qJcfpU1eBm+Itx+lTVfGuSfv//VNXgZt6A//9U1Xxrkn5x+lTV4GbegHH6VNUemfiL//9U1QScSon//1TVHpn4i3H6VNUEnEqJcfpU1YKURI7//1TVHpn4i///VNWClESOcfpU1R6Z+Itx+lTVgYcjkXH6VNWBhyOR//9U1YCOCJBx+lTVgI4IkP//VNXgZviL//9U1XxrRI7//1TV4Gb4i3H6VNV8a0SOcfpU1YGHsnv//1TVgYeye3H6VNWAjs58//9U1YCOznxx+lTVgI4IkHH6VNWAjgiQ//9U1YKURI5x+lTVgpREjv//VNUEnIuD//9U1R6Z3oD//1TVBJyLg3H6VNUemd6AcfpU1f9/hJFx+lTV/3+Ekf//VNWBhyORcfpU1YGHI5H//1TV/LT8gB3yVNXatmuGHfJU1Xxrkn7//1TVfGuSfnH6VNV+cc58//9U1X5xznxx+lTVfXgjkXH6VNV9eCOR//9U1f9/hJFx+lTV/3+Ekf//VNUBnWuG//9U1QSci4P//1TVAZ1rhnH6VNUEnIuDcfpU1cmmk3cd8lTVga/sex3yVNUemd6A//9U1YKUkn7//1TVHpnegHH6VNWClJJ+cfpU1QScSon//1TVAZ1rhv//VNUEnEqJcfpU1QGda4Zx+lTV+mOLg///VNX9YmuG//9U1fpji4Nx+lTV/WJrhnH6VNWBr+x7HfJU1fy0/IAd8lTVAkv8gB3yVNV9UOx7HfJU1f9/Untx+v//fXiye3H6//+Bh7J7cfr//4COznxx+v//fnHOfHH6//98a5J+cfr//4KUkn5x+v//HpnegHH6///gZt6Acfr//wSci4Nx+v//+mOLg3H6//8BnWuGcfr///1ia4Zx+v//+mNKiXH6//8EnEqJcfr//+Bm+Itx+v//Hpn4i3H6//98a0SOcfr//4KURI5x+v//gI4IkHH6//9+cQiQcfr//314I5Fx+v//gYcjkXH6////f4SRcfr///9/aJsd8lTVMo6xmh3yVNXMcSVyHfJU1f9/bnEd8lTVfVDpkB3yVNUCS9qLHfJU1W2bmJgd8lTVyaZClR3yVNX/f25xHfJU1TKOJXId8lTVkWQ+dB3yVNXMcSVyHfJU1dq2a4Yd8lTV/LTaix3yVNU1WUKVHfJU1X1Q6ZAd8lTVAkvaix3yVNUkSWuGHfJU1fy02osd8lTVga/pkB3yVNUyjiVyHfJU1W2bPnQd8lTVNVmTdx3yVNWRZD50HfJU1ZFkmJgd8lTVzHGxmh3yVNUyjrGaHfJU1W2bmJgd8lTVJElrhh3yVNUCS/yAHfJU1TVZQpUd8lTVkWSYmB3yVNV9UOx7HfJU1TVZk3cd8lTVga/pkB3yVNXJpkKVHfJU1cxxsZod8lTV/39omx3yVNUkSWTOGqz8xSRJ4d8qpfzF2rZkzhqs/MXatuHfKqX8xb86bnFQwlTVvzrnxVDCVNW/Om5xbrRU1b8658VutFTV2rZkzhqsVNXatuHfKqVU1dq2ZM6aW1TV2rbh35pbVNW/Om5xUMJU1b86bnFutFTVP8VucVDCVNU/xW5xbrRU1T/F58VQwlTVP8VucVDCVNU/xefFbrRU1T/FbnFutFTVvzrnxW60VNW/OufFUMJU1T/F58VutFTVP8XnxVDCVNUkSWTOGqxU1SRJZM6aW1TVJEnh3yqlVNUkSeHfmltU1SRJZM6aW///2rZkzppb//8kSeHfmlv//9q24d+aW///fGvDuHH6VNV8a8O4//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TV/38DvHH6VNX/fwO8//9U1X5xh7px+lTVfnGHuv//VNV9eKO7cfpU1X14o7v//1TVfVBpux3yVNUCS1m2HfJU1TVZwb8d8lTVkWQXwx3yVNXgZl2r//9U1fpjC67//1TV4GZdq3H6VNX6YwuucfpU1eBmd7b//1TVfGvDuP//VNXgZne2cfpU1Xxrw7hx+lTV/3/Rpf//VNX/f9GlcfpU1YGHMqb//1TVgYcypnH6VNWAjoe6cfpU1YCOh7r//1TVgpTDuHH6VNWClMO4//9U1QJLe6sd8lTVfVBrph3yVNX6Y8mz//9U1eBmd7b//1TV+mPJs3H6VNXgZne2cfpU1f1i6rD//1TV+mPJs///VNX9YuqwcfpU1fpjybNx+lTVgI5Np///VNWAjk2ncfpU1YKUEan//1TVgpQRqXH6VNUBneqw//9U1QScC67//1TVAZ3qsHH6VNUEnAuucfpU1f9/0aVx+v//fXgypnH6//+BhzKmcfr//4COTadx+v//fnFNp3H6//98axGpcfr//4KUEalx+v//Hpldq3H6///gZl2rcfr//wScC65x+v//+mMLrnH6//8Bneqwcfr///1i6rBx+v//+mPJs3H6//8EnMmzcfr//+Bmd7Zx+v//Hpl3tnH6//98a8O4cfr//4KUw7hx+v//gI6HunH6//9+cYe6cfr//314o7tx+v//gYeju3H6////fwO8cfr//4Gva6Yd8lTV/LR7qx3yVNX/f+fFHfJU1TKOMMUd8lTVHpldq///VNWClBGp//9U1R6ZXatx+lTVgpQRqXH6VNXJphOiHfJU1YGva6Yd8lTVbZu9nh3yVNXJphOiHfJU1XxrEan//1TV4GZdq///VNV8axGpcfpU1eBmXatx+lTV2rbqsB3yVNX8tFm2HfJU1SRJ6rAd8lTVAkt7qx3yVNX/fwO8cfpU1f9/A7z//1TVgYeju3H6VNWBh6O7//9U1YGHMqb//1TVgYcypnH6VNWAjk2n//9U1YCOTadx+lTVgYeju3H6VNWBh6O7//9U1YCOh7px+lTVgI6Huv//VNUyjqScHfJU1W2bvZ4d8lTV/3/tmx3yVNUyjqScHfJU1XxrEan//1TVfGsRqXH6VNV+cU2n//9U1X5xTadx+lTVfXgypv//VNV9eDKmcfpU1f9/0aX//1TV/3/RpXH6VNX6Ywuu//9U1f1i6rD//1TV+mMLrnH6VNX9YuqwcfpU1X5xTaf//1TVfnFNp3H6VNV9eDKm//9U1X14MqZx+lTVBJwLrv//VNUemV2r//9U1QScC65x+lTVHpldq3H6VNUEnMmz//9U1QGd6rD//1TVBJzJs3H6VNUBneqwcfpU1R6Zd7b//1TVBJzJs///VNUemXe2cfpU1QScybNx+lTVgpTDuP//VNUemXe2//9U1YKUw7hx+lTVHpl3tnH6VNX8tHurHfJU1dq26rAd8lTVzHGknB3yVNX/f+2bHfJU1TVZE6Id8lTVkWS9nh3yVNWRZBfDHfJU1cxxMMUd8lTVNVnBvx3yVNV9UGm7HfJU1QJLWbYd8lTVJEnqsB3yVNXMcTDFHfJU1f9/58Ud8lTVbZsXwx3yVNXJpsG/HfJU1TKOMMUd8lTVbZsXwx3yVNV9UGumHfJU1TVZE6Id8lTVkWS9nh3yVNXMcaScHfJU1YGvabsd8lTVyabBvx3yVNX8tFm2HfJU1YGvabsd8lTV2rblwwlvVNXatua85ZVU1dq25cOsmFTV2rbpp6yYVNXatua8y4pU1dq26K7llVTV2rborsuKVNXatumnCW9U1SRJ4d+aW1TVkWTh352fVNUkSeHfKqVU1dq24d8qpVTVkWTh39qXVNVtm+HfnZ9U1ZFk4d+7fVTVbZvh39qXVNWRZOHf+XVU1W2b4d+7fVTV2rbh35pbVNVtm+Hf+XVU1duZBadutP//q5/rqW60////f2mUbrT//0iSzKRutP//dolmo260////f+yibrT//4h2ZqNutP//tm3MpG60//8jZgWnbrT//1Ng66lutP//donvk260//8/xefFbrT//1KjS61utP//SJKJkm60//+RpOqwbrT//9uZUJButP//UqOJtG60//+rn2qNbrT//6uf6bdutP//UqMKim60///bmc+6brT//5Gka4ZutP//SJIIvW60//92iW6+brT//1KjzIJutP///3/ovm60//+/OufFbrT//4h2br5utP//P8VucW60//+2bQi9brT//6ufbH9utP//I2bPum60///bmYZ8brT//0iSTXputP//donneG60//+/Om5xbrT//1Ng6bdutP///39teG60//+sXIm0brT//21b6rButP//rFxLrW60//+Idu+TbrT//4h253hutP//tm2Jkm60//+2bU16brT//yNmUJButP//I2aGfG60//9TYGx/brT//6xczIJutP//U2BqjW60//9tW2uGbrT//6xcCoputP//JEnpp6yYVNUkSea85ZVU1SRJ5cOsmFTVJEnlwwlvVNUkSeiu5ZVU1SRJ5rzLilTVJEnppwlvVNUkSeiuy4pU1bZt8Wi8kVTVtm12HryRVNW2bfFowHhU1bZt/RQ3ilTVtm39FMB4VNVIknYevJFU1UiS8Wi8kVTVSJL9FDeKVNVIkvFowHhU1UiS/RTAeFTVJEnti4ti//8kSe2Le2n//9q27YuLYv//2rbti3tp/7/atu2Li2L/vyRJ7Yt7af+//3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3/y5PJk8uTyZCXRJVEl0SVR/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///2a4l0Qyb8uTZriXRDJvy5AAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f9mu2S4l0SVR2a7ZLiXRJVEAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fyXR2a7ZriXRJdHZrtmuJdEl0dmuJdHZrvLkDJvy5Ayb/38AAP9/AAD/fwAA/38AAAAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9///8Mmwwb2a7ZLgybDBvZrtku/3////9/////f////3///////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///8AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9/AAD/fwAA/3//f/9//3//f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3//f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9//3////9/////f/9//3//f/9//3//f/9/////f////3////9/////f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9/////f///////f////3////9/////f/Lk8mTy5PJkJdElUSXRJVH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwwb8mQMG/Jk2a4l0Qyb8uTZriXRDJvy5CXR2a4l0dmu8uQMm/LkDJvy5Ayb8uQMm////3////9/8mQMG/9/AADyZAwb/38AAAwbDJsMGwybAAD/fwAA/3//f///8mTy5P9////yZPLkJVEl0f8//78lUSXR/z//v/9/AAAMmwwb/38AAAybDBv/v/+//7//vyXR2a4l0dmu8mTy5CVRJdHyZPLkJVEl0QybDBvZrtkuDJsMG9mu2S7Zrtku/7//P9mu2S7/v/8//z//v/8//7/ZLtmu2S7Zrv+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9////ZLtmu2S7ZrgwbDJsMGwybDJvy5P9///8Mm/Lk/3///wwb8mQMG/Jk2S4lUdkuJVHZLiVR2S4lUf8//z//P/8/JVHZLvJkDBslUdku8mQMGyXRJVEl0SVR/7//P/+//z//P/8/JVHZLv8//z8lUdku////f////3/y5PJk8uTyZP9/AAAMmwwb/38AAAybDBsl0SVRJdElUf+//z//v/8//3////Jk8uT/f///8mTy5P+//7//v/+/JdHZriXR2a7///9/////f/Lk8mTy5PJk8uTyZPLk8mQl0SVRJdElUSVR2S7yZAwbJVHZLvJkDBv/P/8/JVHZLv8//z8lUdkuDBsMmwwbDJsAAP9/AAD/f9muJdEMm/Lk2a4l0Qyb8uQMmwwb2a7ZLgybDBvZrtku8mTy5CVRJdHyZPLkJVEl0SXR2a4l0dmu8uQMm/LkDJv/P/+//z//v9ku2a7ZLtmu2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z8Mm/Lk/3///wyb8uT/f///8uQMm/LkDJv///9/////f/JkDBv/fwAA8mQMG/9/AAAMG/JkDBvyZNkuJVHZLiVRJVEl0f8//78lUSXR/z//vwAA/38AAP9/DBvyZAwb8mT/v/+/2a4l0f+//7/ZriXR2S7Zrtku2a4MGwybDBsMm/9/////f////3////9/////f/9//3//f/9//3//f/9//3////9/////f////3///wAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3//f/9//3//f/9//3//f/9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9///////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3//P/+//z//v9ku2a7ZLtmuJdHZriXR2a7y5Ayb8uQMm////3////9/8uTyZPLk8mQMm/Lk/3///wyb8uT/f///JdElUSXRJVH/v/8//7//P9mu2S7/v/8/2a7ZLv+//z/y5PJk8uTyZCXRJVEl0SVR8mTy5CVRJdHyZPLkJVEl0f9////yZPLk/3////Jk8uT/v/+/2a4l0f+//7/ZriXR/7//v/+//78l0dmuJdHZriVRJdH/P/+/JVEl0f8//7/y5Ayb8uQMm////3////9/DJsMG9mu2S4Mmwwb2a7ZLvJkDBv/fwAA8mQMG/9/AAAlUdku8mQMGyVR2S7yZAwb/z//PyVR2S7/P/8/JVHZLgwb8mQMG/Jk2S4lUdkuJVH/fwAADJsMG/9/AAAMmwwb/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9/2S7Zrtku2a4MGwybDBsMm9muJdEMm/Lk2a4l0Qyb8uQAAP9/AAD/fwwb8mQMG/JkDBsMmwwbDJsAAP9/AAD/f9kuJVHZLiVR/z//P/8//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAADJsMG/9/AAAMmwwb/z//v/8//7/ZLtmu2S7Zrgwb8mQMG/Jk2S4lUdkuJVH///9/////f/Lk8mTy5PJkJVHZLvJkDBslUdku8mQMG/9////yZPLk/3////Jk8uQl0dmuJdHZrvLkDJvy5AybJVEl0f8//78lUSXR/z//v/Jk8uQlUSXR8mTy5CVRJdEl0SVRJdElUf+//z//v/8/AAD/fwAA/38MG/JkDBvyZAyb8uT/f///DJvy5P9///8Mmwwb2a7ZLgybDBvZrtku8mQMG/9/AADyZAwb/38AAP8//z8lUdku/z//PyVR2S7ZLtmu2S7ZrgwbDJsMGwyb2a7ZLv+//z/Zrtku/7//P9kuJVHZLiVR/z//P/8//z/ZriXRDJvy5NmuJdEMm/Lk/7//v/+//78l0dmuJdHZrvLk8mTy5PJkJdElUSXRJVEMGwybDBsMmwAA/38AAP9/8uQMm/LkDJv///9/////f/+//7/ZriXR/7//v9muJdH/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f3d0dvSqaqnqd3R29KpqqeoAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/3///3d0dvT/f///d3R29P///3////9/////f////38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAd3SIC/9/AAB3dIgL/38AAAAA/38AAP9/AAD/fwAA/3////9/////f////3////9//3////9/////f////3///wAA/38AAP9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3+qalUVd3SIC6pqVRV3dIgLAAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////+//7//v/+//7//v/+//7//v/8//7//P/+//z//v/8/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3////9/AAD/f/9//3//f/9/AAD/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f/9//3//f/9//3//f/9//3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3//f////3////9/////f///////f////3////9/////f/9/////f////3////9/////f////3///////3////9/////f////3//f/9//3//fwAA/38AAP9//3////9///////9/////fwAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AADyZAwb/38AAPJkDBsl0SVRJdElUfLk8mTy5PJk8uTyZPLk8mT///9/////f////3////9/8uQMm/LkDJsl0dmuJdHZrv+//7//v/+/2S4lUdkuJVEMG/JkDBvyZNmu2S4Mmwwb2a7ZLgybDBvZLiVR/z//P/8//z//P/8/2S4lUdkuJVHyZAwbJVHZLvJkDBslUdku/7//P9mu2S7/v/8/2a7ZLiVRJdHyZPLkJVEl0fJk8uT/P/+/JVEl0f8//78lUSXRDBsMmwwbDJvZLtmu2S7ZriVR2S7/P/8/JVHZLv8//z/y5Ayb8uQMmyXR2a4l0dmu2S7Zrtku2a7/P/+//z//vwyb8uTZriXRDJvy5NmuJdEAAP9/AAD/fwwbDJsMGwyb8mQMG/9/AAD/v/8//7//PyXRJVEl0SVRDBvyZAwb8mQAAP9/AAD/f/9///8Mm/Lk/3///wyb8uT/P/8/JVHZLtmuJdH/v/+/2a4l0f+//7/yZPLk/3////Jk8uT/f///DJsMG/9/AAAMmwwb/38AACVR2S7yZAwb8mTy5CVRJdH/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/8uTyZAwbDJsAAP9/2a4l0Qyb8uQl0SVR/7//PwAA/38MG/Jk2S7ZrgwbDJv/fwAADJsMG/+//7/ZriXRDJvy5P9///8Mmwwb2a7ZLgwb8mTZLiVR/z//v9ku2a4l0dmu8uQMm/Lk8mQl0SVR/3////Jk8uT/v/+/JdHZriVRJdH/P/+/2a7ZLv+//z/y5Ayb////f////3////9/////f////3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////z//P/8//z/ZLiVR2S4lUQwb8mQMG/JkAAD/fwAA/3/ZLiVR2S4lUQwb8mQMG/Jk2a4l0Qyb8uT/v/+/JdHZrtmu2S4Mmwwb2a7ZLgybDBslUdku/z//PyVR2S7/P/8/////f////3/y5Ayb8uQMm9ku2a7ZLtmu/z//v/8//7/yZPLkJVEl0fJkDBslUdku8mQMGyVR2S7/fwAA8mQMG/9/AADyZAwbJdHZriXR2a7/v/+//7//v/9///8Mm/Lk/3///wyb8uT/f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//38lUdku8mQMG////3/y5PJk2a4l0f+//7/ZriXR/7//v/8//z8lUdku2S4lUf8//z//v/8/2a7ZLv+//z/Zrtku/38AAAybDBv/f///8mTy5AAA/38AAP9/DBsMmwwbDJvy5Ayb8uQMmyXR2a4l0dmuDBsMmwwbDJvZLtmu2S7Zrgwb8mTZLiVRAAD/fwwb8mT/v/8//7//PyXRJVEl0SVR8uTyZPLk8mT///9/////fwybDBv/fwAADJsMG/9/AAAl0SVRJdElUfLk8mTy5PJkDJvy5NmuJdEMm/Lk2a4l0fJk8uT/f///8mTy5P9///8lUSXR8mTy5CVRJdHyZPLk/z//vyVRJdH/P/+/JVEl0fJkDBv/fwAADBsMmwAA/3//P/+/2S7ZriXR2a7y5Ayb/7//v9muJdEMm/Lk/3////LkDJv///9/JdElUf+//z/y5PJkJdElUSVRJdH/P/+/2S7ZrgwbDJvZrtku/7//PwybDBvZrtku/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9/////f////3////9/////f////3////9/////f////3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/3//P/9//z//f/8/AAD/fwAA/38AAP9/") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_5twe5") - -[sub_resource type="Animation" id="Animation_tvd50"] -length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterI:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(-0.148, 1.379, -0.398)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterL:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.117, 1.16, -0.512)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterL:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, -3.14159, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("blasterN:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.193, 1.255, -0.643)] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("blasterN:rotation") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 3.14159, 0)] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("blasterM:position") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/6/type = "value" -tracks/6/imported = false -tracks/6/enabled = true -tracks/6/path = NodePath("blasterM:rotation") -tracks/6/interp = 1 -tracks/6/loop_wrap = true -tracks/6/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/7/type = "value" -tracks/7/imported = false -tracks/7/enabled = true -tracks/7/path = NodePath("blasterM:visible") -tracks/7/interp = 1 -tracks/7/loop_wrap = true -tracks/7/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} -tracks/8/type = "value" -tracks/8/imported = false -tracks/8/enabled = true -tracks/8/path = NodePath("blasterP2:visible") -tracks/8/interp = 1 -tracks/8/loop_wrap = true -tracks/8/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} -tracks/9/type = "value" -tracks/9/imported = false -tracks/9/enabled = true -tracks/9/path = NodePath("blasterP2:position") -tracks/9/interp = 1 -tracks/9/loop_wrap = true -tracks/9/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.32, 1.014, -0.35)] -} -tracks/10/type = "value" -tracks/10/imported = false -tracks/10/enabled = true -tracks/10/path = NodePath("blasterP2:rotation") -tracks/10/interp = 1 -tracks/10/loop_wrap = true -tracks/10/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(1.55334, 3.37721, 0)] -} -tracks/11/type = "value" -tracks/11/imported = false -tracks/11/enabled = true -tracks/11/path = NodePath("blasterN:visible") -tracks/11/interp = 1 -tracks/11/loop_wrap = true -tracks/11/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} -tracks/12/type = "value" -tracks/12/imported = false -tracks/12/enabled = true -tracks/12/path = NodePath("blasterQ2:position") -tracks/12/interp = 1 -tracks/12/loop_wrap = true -tracks/12/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/13/type = "value" -tracks/13/imported = false -tracks/13/enabled = true -tracks/13/path = NodePath("blasterQ2:visible") -tracks/13/interp = 1 -tracks/13/loop_wrap = true -tracks/13/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [false] -} -tracks/14/type = "value" -tracks/14/imported = false -tracks/14/enabled = true -tracks/14/path = NodePath("blasterQ2:rotation") -tracks/14/interp = 1 -tracks/14/loop_wrap = true -tracks/14/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 3.14159, 0)] -} -tracks/15/type = "value" -tracks/15/imported = false -tracks/15/enabled = true -tracks/15/path = NodePath("%BulletPoint:position") -tracks/15/interp = 1 -tracks/15/loop_wrap = true -tracks/15/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.266143, -0.288234, -0.779217)] -} - -[sub_resource type="Animation" id="Animation_gqwbi"] -resource_name = "blasterM_Deactive" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.04, 0.1), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(0, 1.15, -0.313), Vector3(0, 0, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.04, 0.1), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(0.383972, 3.25678, -0.602139), Vector3(0, 0, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterM:visible") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.1), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [true, false] -} - -[sub_resource type="Animation" id="Animation_3ckq2"] -resource_name = "blasterM_Drop" -length = 0.02 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.02), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(0, 0, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.02), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(0, 0, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterM:visible") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.02), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [true, false] -} - -[sub_resource type="Animation" id="Animation_fjnab"] -resource_name = "blasterM_Melee" -length = 0.5 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:rotation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.03, 0.2, 0.5), -"transitions": PackedFloat32Array(1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(0.303687, 4.72984, -1.31772), Vector3(0.364774, 4.75602, -1.31772), Vector3(0, 3.14159, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.03, 0.2, 0.5), -"transitions": PackedFloat32Array(1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(-0.15, 1.14, -0.465), Vector3(-0.095, 1.2, -0.465), Vector3(0, 1.3, -0.405)] -} - -[sub_resource type="Animation" id="Animation_pwqu6"] -resource_name = "blasterM_OOA" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.04, 0.06), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(0, 1.3, -0.335), Vector3(0, 1.3, -0.405)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.04, 0.06), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(0, 3.14159, -0.0610865), Vector3(0, 3.14159, 0)] -} - -[sub_resource type="Animation" id="Animation_sx31e"] -resource_name = "blasterM_Reload" -length = 3.0 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.2, 0.3, 0.4, 0.6, 0.7, 0.8, 1, 1.1, 1.2, 1.4, 1.5, 1.6, 1.8, 1.9, 2, 2.2, 2.3, 2.4, 3), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0.005, 1.415, -0.46), Vector3(0.005, 1.35, -0.46), Vector3(0, 1.3, -0.405)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.2, 0.3, 0.4, 0.6, 0.7, 0.8, 1, 1.1, 1.2, 1.4, 1.5, 1.6, 1.8, 1.9, 2, 2.2, 2.3, 2.4, 3), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(-0.15708, 3.14159, 0), Vector3(0.1309, 3.14159, 0), Vector3(0, 3.14159, 0)] -} -tracks/2/type = "method" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("..") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6, 1.8, 2, 2.2), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1), -"values": [{ -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}, { -"args": [], -"method": &"calculate_reload" -}] -} - -[sub_resource type="Animation" id="Animation_3ky4l"] -resource_name = "blasterM_Shoot" -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.01, 0.39, 0.62, 0.88, 0.99), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 1.3, -0.405), Vector3(0, 1.515, -0.405), Vector3(0, 1.43163, -0.405), Vector3(0, 1.43, -0.485), Vector3(0, 1.43, -0.362), Vector3(0, 1.3, -0.405)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.01, 0.39, 0.88, 0.99), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(0, 3.14159, 0), Vector3(-0.514872, 3.14159, 0), Vector3(-0.315228, 3.14159, 0), Vector3(-0.315228, 3.14159, 0), Vector3(0, 3.14159, 0)] -} - -[sub_resource type="Animation" id="Animation_t03yb"] -resource_name = "blasterM_activate" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterM:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.02, 0.1), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 0, 0), Vector3(0, 1.245, -0.011), Vector3(0, 1.3, -0.405)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterM:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.02, 0.1), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 0, 0), Vector3(0, 2.61799, 0), Vector3(0, 3.14159, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterM:visible") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [true] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("%BulletPoint:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0.1), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.15328, -0.148548, -0.597225)] -} - -[sub_resource type="Animation" id="Animation_utruj"] -resource_name = "blasterP_activate" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterP2:visible") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.02), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [false, true] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterP2:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.1), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(0, 0, 0), Vector3(0.32, 1.014, -0.35)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterP2:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.1), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(0, 0, 0), Vector3(1.55334, 3.37721, 0)] -} - -[sub_resource type="Animation" id="Animation_7qiib"] -resource_name = "blasterP_deactivate" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterP2:visible") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0.08, 0.1), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [false, true] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterP2:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.08), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(0.32, 1.014, -0.35), Vector3(0, 0, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("blasterP2:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.08), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [Vector3(1.55334, 3.37721, 0), Vector3(0, 0, 0)] -} - -[sub_resource type="Animation" id="Animation_w5ji1"] -resource_name = "blasterP_strike" -length = 0.2 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("blasterP2:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.02, 0.03, 0.15, 0.2), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(0.32, 1.014, -0.35), Vector3(0.32, 1.059, -0.29), Vector3(0.225, 1.009, -0.25), Vector3(0.225, 0.949, -0.31), Vector3(0.32, 1.014, -0.35)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("blasterP2:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0, 0.02, 0.03, 0.15, 0.2), -"transitions": PackedFloat32Array(1, 1, 1, 1, 1), -"update": 0, -"values": [Vector3(1.55334, 3.37721, 0), Vector3(1.39626, 3.37721, 0.165806), Vector3(2.05949, 3.69137, 0.165806), Vector3(2.19039, 3.57792, -0.129154), Vector3(1.55334, 3.37721, 0)] -} - -[sub_resource type="AnimationLibrary" id="AnimationLibrary_ys4uk"] -_data = { -&"RESET": SubResource("Animation_tvd50"), -&"blasterM_Deactive": SubResource("Animation_gqwbi"), -&"blasterM_Drop": SubResource("Animation_3ckq2"), -&"blasterM_Melee": SubResource("Animation_fjnab"), -&"blasterM_OOA": SubResource("Animation_pwqu6"), -&"blasterM_Reload": SubResource("Animation_sx31e"), -&"blasterM_Shoot": SubResource("Animation_3ky4l"), -&"blasterM_activate": SubResource("Animation_t03yb"), -&"blasterP_activate": SubResource("Animation_utruj"), -&"blasterP_deactivate": SubResource("Animation_7qiib"), -&"blasterP_strike": SubResource("Animation_w5ji1") -} - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bn0g3"] -resource_name = "metal" -albedo_color = Color(0.796078, 0.815686, 0.878431, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fop1y"] -resource_name = "darkMetal" -albedo_color = Color(0.592157, 0.635294, 0.768627, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_srqfe"] -resource_name = "dark" -albedo_color = Color(0.196244, 0.237565, 0.283019, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_07ipd"] -resource_name = "green" -albedo_color = Color(0.271938, 0.915094, 0.677164, 1) -metallic = 1.0 - -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2y71d"] -resource_name = "_defaultMat" -metallic = 1.0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_lkcrb"] -_surfaces = [{ -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34896613377, -"index_count": 582, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABAADAAEAAQAFAAQACAAGAAcABwAJAAgAAgAKAAsACwAAAAIADgAMAA0ADQAPAA4ACgAQABEAEQALAAoAFAASABMAEwAVABQAFQATABYAFgAXABUADgAPAAkACQAHAA4AGAAMAA4ADgAZABgAGQAWABgAFgATABgAEwASABgAEgAaABgAGwAZAA4AGwAOAAcAGwAHAAYABAAbAAYAAwAEAAYAAgADAAYACgACAAYABgAQAAoAHAAYABoAGgAdABwAHQAaABIAEgAUAB0AHAAdABQAHAAUABUAHAAVABcADQAcABcADwANABcADwAXAB4ACQAPAB4AHgAfAAkACAAJAB8ACAAfAAUACAAFAAEACAABAAAAEQAIAAAAAAALABEAGQAeABcAFwAWABkAGwAfAB4AHgAZABsABQAfABsAGwAEAAUAIgAgACEAIQAjACIAIQAkACMAJAAlACMAJgAiACMAIwAnACYAJwAjACUAJQAoACcAKQAkACEAIQAqACkAKwAgACIAIgAmACsAKgArACYAJgAnACoAJwApACoAJwAoACkALgAsAC0ALQAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOQA7ADoAOwA3ADUANQA6ADsAPQA8ADAAMAAyAD0APwA+ADEAMQAwAD8AMABAAD8AMAA8AEAAMwAxAD4APgBBADMAQgA/AEAAQABDAEIARQBEACwALAAuAEUALgAvAEYARgBFAC4ARgBHAEUARwBIAEUAMwBBAEIAQgAyADMAQgBDADIAQwA9ADIAOwA5ADYANgA3ADsANAA2ADkAOQA4ADQASABJAEQARABFAEgASgAtACwALABEAEoARABLAEoARABJAEsARgBKAEsASwBHAEYATgBMAE0ATQBPAE4ATwBQAE4ATwBRAFAAVABSAFMAUwBVAFQATQBWAFcAVwBPAE0AVgBYAFkAWQBXAFYAWQBaAFcAWgBbAFcAUABaAFkAWQBOAFAAXQBcAFQAXQBUAFUAVQBeAF0AXwBdAF4ATwBXAFsAWwBRAE8ATABYAFYAVgBNAEwAYQBgAFMAUwBiAGEAUwBSAGIAUgBjAGIAZgBkAGUAZQBnAGYAYQBiAF0AXQBfAGEAagBoAGkAaQBrAGoAZgBsAG0AbQBuAGYAbgBkAGYAaQBoAG8AbwBwAGkAYgBjAFwAXABdAGIAagBxAG8AbwBoAGoAcwByAG0AbQBsAHMAdAByAHMAcwBnAHQAZwBlAHQAcwBsAGYAZgBnAHMAdQBxAGoAagBrAHUAaQBwAHUAdQBrAGkAeAB2AHcAdwB5AHgAdwB6AHkAfQB7AHwAfAB+AH0AfgB/AH0AgAB6AHcAdwCBAIAAgQCCAIMAgwCAAIEAgwCEAIAAfACFAIYAhgB+AHwAfQCHAIgAiAB7AH0AhgCFAIgAiACHAIYAhwCJAIYAgwB4AHkAeQCEAIMAOAA6AIoAigA0ADgAiwCKADoAigCMADQAOgA1AIsAjACNADQANQCNAIsANQA0AI0A"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("/2dm9axqAAD/Z4X7sGcAAP+XZvWsagAA/5eF+7BnAAD/lyj95GYAAP9nKP3kZgAA/5cw3blhAAD/l83quWEAAP9nMN25YQAA/2fN6rlhAAD/l83qD2wAAP9nzeoPbAAA/5cw3es+AAD/ZzDd6z4AAP+XzerrPgAA/2fN6us+AAD/lzDdD2wAAP9nMN0PbAAA/5dm9fg1AAD/l4X79DgAAP9nZvX4NQAA/2eF+/Q4AAD/lyj9wDkAAP9nKP3AOQAA/5cw3ZU0AAD/l///6z4AAP+XzeqVNAAA/5f//7lhAAD/ZzDdlTQAAP9nzeqVNAAA/2f//+s+AAD/Z///uWEAAP/viUVo4gAA/+9ya2jiAAD//x5NaOIAAP//Rrdo4gAA/+/ymGjiAAD/79u+aOIAAP//Hk03zAAA//9GtzfMAAD/79u+N8wAAP/v8pg3zAAA/+9yazfMAAD/74lFN8wAAAAAHk1UsgAA/w+JRVSyAAAAAB5NI5wAAP8PiUUjnAAAAABGt2jiAAAAAB5NaOIAAAAARrc3zAAAAAAeTTfMAAD/v8wOPysAAP+/6yGdAQAA/78AAKEpAAD/vx8TAAAAAP8/zA4/KwAA/z8AAKEpAAD/P+shnQEAAP8/HxMAAAAA/w/bvmjiAAD/D9u+N8wAAP8PiUVo4gAA/w9ya2jiAAD/D/KYaOIAAP8PiUU3zAAA/w9yazfMAAD/D/KYN8wAAAAARrdUsgAAAABGtyOcAAD/D3JrI5wAAP8P8pgjnAAA/w/bviOcAAD/D9u+VLIAAP8PcmtUsgAA/w/ymFSyAAD/74lFI5wAAP//Hk0jnAAA/+9yayOcAAD//0a3I5wAAP/v8pgjnAAA/+/bviOcAAD/T0hc9zMAAP9PSFzeVQAA/69IXPczAAD/r0hc3lUAAP//Hk1UsgAA//9Gt1SyAAD/74lFVLIAAP/vcmtUsgAA/+/ymFSyAAD/79u+VLIAAP+vPW8MNwAA/689b59MAAD/rzKC3lUAAP+vMoKfTAAA/08ygt5VAAD/TzKCn0wAAP9PPW+fTAAA/089bww3AAD/ZzDdjX4AAP+XMN2NfgAA/2fF5I1+AAD/l8XkjX4AAP9vW+yB7QAA/29b7BvmAAD/j1vsge0AAP+PW+wb5gAA/2fF5B/BAAD/ZzDdH8EAAP9nMN3yhQAA/2cw3YHtAAD/ZzDdtd4AAP+XMN2B7QAA/5cw3R/BAAD/l8XkH8EAAP+XMN3yhQAA/5cw3bXeAAD/LxyoD2wAAP8/HKh1cwAA/z8cqKlkAAD/TxyoqWQAAP9PHKh1cwAA/69Gt3VzAAD/r0a3qWQAAP+/Rrd1cwAA/79Gt6lkAAD/z0a3D2wAAP9PRrd1cwAA/z9Gt3VzAAD/L0a3D2wAAP8/RrepZAAA/09Gt6lkAAD/rxyoqWQAAP+/HKipZAAA/78cqHVzAAD/rxyodXMAAP/PHKgPbAAA/090EKMnAAD/T0MgOQUAAP+vdBCjJwAA/69DIDkFAAD/z516//8AAP/PnXryhQAA/+9ya///AAD/73Jr8oUAAP8vx4nyhQAA/y/Hieb0AAD/z8eJ8oUAAP/Px4nm9AAA/880J/KFAAD/zzQn5vQAAP/vXjbyhQAA/+9eNub0AAD/L516//8AAP8vnXryhQAA/y80J/KFAAD/LzQn5vQAAP8PXjbyhQAA/w9eNub0AAD/D3Jr//8AAP8PcmvyhQAA/y9eNvKFAAD/L3Jr8oUAAP+vMoIlFQAA/08ygiUVAAD/rzKCIToAAP9PMoIhOgAA/y/ymPKFAAD/D/KY8oUAAP8PBs7yhQAA/y8GzvKFAAD/LzDd8oUAAP8PBs7//wAA/w/bvv//AAD/D9u+5vQAAP8P8pjm9AAA/+/ymOb0AAD/79u+5vQAAP/vBs7yhQAA/+8Gzv//AAD/79u+//8AAP/v8pjyhQAA/w9IXOb0AAD/D0hc//8AAP/PMN3//wAA/88w3fKFAAD/LzDd//8AAP/vSFzm9AAA/+9IXP//AAD/z1428oUAAP/PcmvyhQAA/8/ymPKFAAD/zwbO8oUAAP/Pcmv//wAA/89IXP//AAD/z0hc5vQAAP/PXjbm9AAA/y9ya///AAD/L1425vQAAP8vSFzm9AAA/y9IXP//AAD/L/KY5vQAAP8v277m9AAA/y8Gzv//AAD/L9u+//8AAP/P8pjm9AAA/88Gzv//AAD/z9u+//8AAP/P277m9AAA/y/bvq0/AAD/L9u+J3cAAP9P276tPwAA/0/bvid3AAD/L4egJ3cAAP9Ph6AndwAA/6/bvq0/AAD/r9u+J3cAAP/P276tPwAA/8/bvid3AAD/z4egrT8AAP+vh6CtPwAA/6+HoCd3AAD/z4egJ3cAAP9Ph6CtPwAA/y+HoK0/AAD/rzDdlTQAAP/PBs6VNAAA/88w3ZU0AAD/LzDdlTQAAP8vBs6VNAAA/08w3ZU0AAD/TzDd5gsAAP8vBs7mCwAA/88GzuYLAAD/rzDd5gsAAP8vMoLmCwAA/y8ygt5VAAD/L3QQXGgAAP8vXjbeVQAA/y90EPKFAAD/zzKC5gsAAP/PMoLeVQAA/890EFxoAAD/z1423lUAAP/PdBDyhQAA") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 384, -"index_data": PackedByteArray("kACOAI8AjwCRAJAAkQAhAJAAkQAqACEAkQBZACoAkQBOAFkAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAjgCaAJsAmwCPAI4AlgCcAJ0AnQCXAJYAnACeAJ8AnwCdAJwAmwCaAKAAoAA/AJsAPwBCAJsAQgBKAJsASgBGAJsARgChAJsAngCcAKIAogChAJ4AogCjAKEAowCbAKEAiwCNAKQApAClAIsAXACmAKQApABUAFwApACMAFQApACNAIwApgBcAGMAYwCnAKYApQCnAGMAYwBSAKUAUgCKAKUAigCLAKUAqQCSAKgAqACqAKkAqACrAKoAqwCsAKoAqgCtAK4ArgCvAKoArwA8AKoArwCwADwAQAA8ALAAPAA9AKoAPQBJAKoAPQBDAEkASwBJAEMASQBIAKoASABHAKoARwCpAKoAJACxALIAJQAkALIAswAlALIAswAoACUAtACzALIAsgC1ALQAswBbACgAWwBaACgAWgApACgAswBRAFsAswC2AFEAtgBQAFEASgBCAEEALQBKAEEAngAtAEEAngAvAC0AngBBAD4AngChAC8AoQBGAC8AnwCeAD4AnwA+AD8AtwCfAD8AuAC3AD8APwCgALgAkgCpAEcARwBLAJIASwBDAJIAQwBAAJIAkwCSAEAAQACwAJMAtAC5ALoAugCzALQAtgCUAJUAlQCxALYAsQBQALYAsQAkAFAAJABaAFAAJAApAFoAuwCtAKoAqgCsALsATgCRAJgATABOAJgAWABMAJgAKwBYAJgAKwAqAFgAWQBYACoAIAArAJgAIACYAJkAmQC8ACAAIQAgALwAkAAhALwAvAC9AJAAVACMAIoAigBSAFQAvgCWAJgAmAC/AL4AmACRAL8AkQCPAL8AwACUALYAtgDBAMAAtgCzAMEAswC6AMEAbQByAHUAcgB0AHUAdAC6AHUAugC5AHUAcQB1ALkAdQBwAG0AbgBtAHAArABuAHAAbwBxALkAcABvAKwAbwC5ALsAuwCsAG8A"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34896613377, -"index_count": 180, -"index_data": PackedByteArray("vwDCAMMAwwDEAL8AxADFAL8AxQC+AL8AvwCjAMYAxgDCAL8AogDHAMgAowCiAMgAxgCjAMgAyADJAMYAxQDHAKIAogC+AMUAqADKAMsAqwCoAMsAzACrAMsAywDNAMwAzgDKAKgAqADAAM4AwQDPANAA0ADRAMEA0QDOAMEAzgDAAMEAwQCrAMwAzADPAMEAwQDAAKgAqACrAMEAvwC+AKIAogCjAL8A1ADSANMA0wDVANQA0wDWANcA1wDVANMA2gDYANkA2QDbANoA2gDcAN0A3QDYANoA3wDeAN0A3QDcAN8A1ADgAOEA4QDSANQA1wDWAOEA4QDgANcA2QDeAN8A3wDbANkA2AB8AHsA2ACFAHwA2QDYAHsAhQDYAN0AewDeANkAiACFAN0A3gB7AIgAiADdAN4AgACEANQAhAB5ANQAgADUANUA4ADUAHkA1QDXAIAA4AB5AHoA1wDgAHoAegCAANcA"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("/2dm9axqAAD/Z4X7sGcAAP+XZvWsagAA/5eF+7BnAAD/lyj95GYAAP9nKP3kZgAA/5cw3blhAAD/l83quWEAAP9nMN25YQAA/2fN6rlhAAD/l83qD2wAAP9nzeoPbAAA/5cw3es+AAD/ZzDd6z4AAP+XzerrPgAA/2fN6us+AAD/lzDdD2wAAP9nMN0PbAAA/5dm9fg1AAD/l4X79DgAAP9nZvX4NQAA/2eF+/Q4AAD/lyj9wDkAAP9nKP3AOQAA/5cw3ZU0AAD/l///6z4AAP+XzeqVNAAA/5f//7lhAAD/ZzDdlTQAAP9nzeqVNAAA/2f//+s+AAD/Z///uWEAAP/viUVo4gAA/+9ya2jiAAD//x5NaOIAAP//Rrdo4gAA/+/ymGjiAAD/79u+aOIAAP//Hk03zAAA//9GtzfMAAD/79u+N8wAAP/v8pg3zAAA/+9yazfMAAD/74lFN8wAAAAAHk1UsgAA/w+JRVSyAAAAAB5NI5wAAP8PiUUjnAAAAABGt2jiAAAAAB5NaOIAAAAARrc3zAAAAAAeTTfMAAD/v8wOPysAAP+/6yGdAQAA/78AAKEpAAD/vx8TAAAAAP8/zA4/KwAA/z8AAKEpAAD/P+shnQEAAP8/HxMAAAAA/w/bvmjiAAD/D9u+N8wAAP8PiUVo4gAA/w9ya2jiAAD/D/KYaOIAAP8PiUU3zAAA/w9yazfMAAD/D/KYN8wAAAAARrdUsgAAAABGtyOcAAD/D3JrI5wAAP8P8pgjnAAA/w/bviOcAAD/D9u+VLIAAP8PcmtUsgAA/w/ymFSyAAD/74lFI5wAAP//Hk0jnAAA/+9yayOcAAD//0a3I5wAAP/v8pgjnAAA/+/bviOcAAD/T0hc9zMAAP9PSFzeVQAA/69IXPczAAD/r0hc3lUAAP//Hk1UsgAA//9Gt1SyAAD/74lFVLIAAP/vcmtUsgAA/+/ymFSyAAD/79u+VLIAAP+vPW8MNwAA/689b59MAAD/rzKC3lUAAP+vMoKfTAAA/08ygt5VAAD/TzKCn0wAAP9PPW+fTAAA/089bww3AAD/ZzDdjX4AAP+XMN2NfgAA/2fF5I1+AAD/l8XkjX4AAP9vW+yB7QAA/29b7BvmAAD/j1vsge0AAP+PW+wb5gAA/2fF5B/BAAD/ZzDdH8EAAP9nMN3yhQAA/2cw3YHtAAD/ZzDdtd4AAP+XMN2B7QAA/5cw3R/BAAD/l8XkH8EAAP+XMN3yhQAA/5cw3bXeAAD/LxyoD2wAAP8/HKh1cwAA/z8cqKlkAAD/TxyoqWQAAP9PHKh1cwAA/69Gt3VzAAD/r0a3qWQAAP+/Rrd1cwAA/79Gt6lkAAD/z0a3D2wAAP9PRrd1cwAA/z9Gt3VzAAD/L0a3D2wAAP8/RrepZAAA/09Gt6lkAAD/rxyoqWQAAP+/HKipZAAA/78cqHVzAAD/rxyodXMAAP/PHKgPbAAA/090EKMnAAD/T0MgOQUAAP+vdBCjJwAA/69DIDkFAAD/z516//8AAP/PnXryhQAA/+9ya///AAD/73Jr8oUAAP8vx4nyhQAA/y/Hieb0AAD/z8eJ8oUAAP/Px4nm9AAA/880J/KFAAD/zzQn5vQAAP/vXjbyhQAA/+9eNub0AAD/L516//8AAP8vnXryhQAA/y80J/KFAAD/LzQn5vQAAP8PXjbyhQAA/w9eNub0AAD/D3Jr//8AAP8PcmvyhQAA/y9eNvKFAAD/L3Jr8oUAAP+vMoIlFQAA/08ygiUVAAD/rzKCIToAAP9PMoIhOgAA/y/ymPKFAAD/D/KY8oUAAP8PBs7yhQAA/y8GzvKFAAD/LzDd8oUAAP8PBs7//wAA/w/bvv//AAD/D9u+5vQAAP8P8pjm9AAA/+/ymOb0AAD/79u+5vQAAP/vBs7yhQAA/+8Gzv//AAD/79u+//8AAP/v8pjyhQAA/w9IXOb0AAD/D0hc//8AAP/PMN3//wAA/88w3fKFAAD/LzDd//8AAP/vSFzm9AAA/+9IXP//AAD/z1428oUAAP/PcmvyhQAA/8/ymPKFAAD/zwbO8oUAAP/Pcmv//wAA/89IXP//AAD/z0hc5vQAAP/PXjbm9AAA/y9ya///AAD/L1425vQAAP8vSFzm9AAA/y9IXP//AAD/L/KY5vQAAP8v277m9AAA/y8Gzv//AAD/L9u+//8AAP/P8pjm9AAA/88Gzv//AAD/z9u+//8AAP/P277m9AAA/y/bvq0/AAD/L9u+J3cAAP9P276tPwAA/0/bvid3AAD/L4egJ3cAAP9Ph6AndwAA/6/bvq0/AAD/r9u+J3cAAP/P276tPwAA/8/bvid3AAD/z4egrT8AAP+vh6CtPwAA/6+HoCd3AAD/z4egJ3cAAP9Ph6CtPwAA/y+HoK0/AAD/rzDdlTQAAP/PBs6VNAAA/88w3ZU0AAD/LzDdlTQAAP8vBs6VNAAA/08w3ZU0AAD/TzDd5gsAAP8vBs7mCwAA/88GzuYLAAD/rzDd5gsAAP8vMoLmCwAA/y8ygt5VAAD/L3QQXGgAAP8vXjbeVQAA/y90EPKFAAD/zzKC5gsAAP/PMoLeVQAA/890EFxoAAD/z1423lUAAP/PdBDyhQAA") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 438, -"index_data": PackedByteArray("5ADiAOMA5wDlAOYAvADEAMMAwwC9ALwAxQDEALwAvACZAMUAnwDFAJkAnwDHAMUAnwDIAMcAnwC3AMgAnQCfAJkAmQCXAJ0AkAC9AMMAwwDCAJAAwgCOAJAAwgDGAI4AxgCgAI4AoACaAI4AuACgAMYAxgDJALgAyAC3ALgAuADJAMgAtAC1ANAA0ADPALQAzwC5ALQAzwDMALkAzACtALkArQC7ALkArgCtAMwAzADNAK4AzgDRALIAsgCxAM4AsADOALEAsADKAM4AsADLAMoAsACvAMsAkwCwALEAsQCVAJMAsgDRANAA0AC1ALIAywCvAK4ArgDNAMsA6ADnAOYA5gDpAOgA6gDjAOIA4gDrAOoAmwCoAJIAqACbANMAmwCjANMAqwCoANMAowCiANMAqwDTAOUA5QCsAKsA0wDSAOUA0gDhAOUA5gDlAOEA1gDTAKIA7ADmAOEA7ADpAOYA7QDsAOEA7QDhANYA7gDtANYA7gDWAKIA7wDtAO4A8ADuAKIAogCcAPAAjwCUAMAAwADBAI8A2wCPAMEA2wC/AI8A5ADbAMEAwQC6AOQA5ADaANsA5ADcANoAvwDbAN8A5ADjANwA3ADjAPEA4wDqAPEA3ADxAPIA3wDcAPIAvwDfAPMA3wDyAPMA8gD0APMAvgC/APMAlgC+APMA8wD1AJYA7wDuAPMA8wD0AO8A6QDsAPEA8QDqAOkA6gDoAOkA6gDrAOgAUwBgAO0AUwDtAO8A7wD0AFMAVQBTAPQA9ADyAFUA8gBeAFUA8wDuAPAA8AD1APMAXgDyAPEAXwBeAPEApgBfAPEAYQBfAKYApACmAPEApgCnAGEAYABhAKcA7QBgAKcApQCkAPEApwClAO0ApQDxAOwA7ADtAKUAugB0AGUAZQAQALoAEQAQAGUAEQBlAGQAZAAIABEADQAIAGQABgAIAA0ADQBkAG4ADAAQAAYADQAMAAYADAAYABAAEAAYALoAGADiALoA4gDkALoA6wDiABgA6wAYABwA6ADrABwA6AAcAA0A6AANAG4A5wDoAG4A5wBuAKwArADlAOcAlACPAJsAmwCSAJQAlgD1APAA8ACcAJYAgwCCAHYAdgB4AIMAggCBAHcAdwB2AIIAiQB/AH4AfgCGAIkAhwB9AH8AfwCJAIcA"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"format": 34359742465, -"index_count": 132, -"index_data": PackedByteArray("DAANABwAHAAYAAwAPQA8AEAAQABDAD0AKwAgACEAIQAqACsAEQAIAAYABgAQABEApAClAKcApwCmAKQAQQA+AD8APwBCAEEATABYAFkAWQBOAEwALwAtAEoASgBGAC8AYABTAFUAVQBeAGAAKAAlACQAJAApACgAXwBhAGAAYABeAF8ARwBLAEkASQBIAEcAUABaAFsAWwBRAFAAdABuAGQAZABlAHQAcQBvAHAAcAB1AHEAdABuAG0AbQByAHQAYwBSAFQAVABcAGMAvgCWAJwAnACiAL4ArACrAMEAwQC6AKwAugBuAKwAugB0AG4AqACSAJQAlADAAKgAmwCjAL8AvwCPAJsA"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 246, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1vHDaLD5tLjS+kMJ1vHDaLD49pqe9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+KVyPvaXHqT0OPYg+KVyPvaXHqT14CVM+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvcRMlT1+1Zs9KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+kML1PGEKtbzy+Um+kML1PGEKtbw2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vCqz+z3d0IM8kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z1WHoM+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9zcxMPQGuWD3kz1y9kML1vEyhFr6dpHS+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+KVyPvSUA3rzQMrE+KVyPvSUA3rzd0IM8zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8kML1PFYTPjvo65O+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPWe90j3d0IM8KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPX3CBj3d0IM8KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8zcxMvSqz+z3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMvSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMPX3CBj2n1qE+zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPaXHqT2n1qE+zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvVYTPju1uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMPVYTPju1uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPUyhFr7d0IM8") -}] -blend_shape_mode = 0 - -[sub_resource type="ArrayMesh" id="ArrayMesh_8tvdw"] -resource_name = "blasterQ_Mesh blasterQ" -_surfaces = [{ -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("c3r7VHN6DFGLhftUi4UMUYuF/09zev9Pc3pnXnN6OFiLhWdei4U4WIuFEFVzehBVi4UUUHN6FFCLhWdec3pnXouFOFhzejhYi4VnXnN6Z16LhThYc3o4WHN6y5NzetyPi4XLk4uF3I9zes+Oi4XPjouFH0yLhYtsc3ofTHN6i2wTwWdeE8E4WGnLZ14TwZZOPsbgTwrHn1AGymdTacs4WEWelk5FnjhYRZ5nXhqZ4E9OmJ9QUpVnU++TOFjvk2dec3pnXnN6OFiLhWdei4U4WHN6DmxzehJni4UObIuFEmeVNDhY+DVnU5U0Z170OJ9QwDngT+s+Z17rPjhY6z6WTrlhOFi5YZZOuWFnXuRm4E+wZ59QrGpnUw9sZ14PbDhYi4VBtIuFPrlzekG0c3o+uXN6i2xzeh9Mi4WLbIuFH0xzenNei4VzXnN6cGOLhXBj45lQo+OZFpKVnd6flZ2hb+OZaX3jmS9slh3en5YdoW/HM96fxzOhb5YdeoqWHZuFxzN6isczm4Vo4ml9aOIWkjfMaX03zBaSlh16ipYdm4XHM3qKxzObhRtmUKNpYt6fG2YWkmlioW8bZml9G2YvbFSym4VUsnqKI5ybhSOceopo4qFvaOLenzfMoW83zN6fv9QvvGH+f7Nd1unC//84uj8rL7yhKenCnQF/swAAOLo0cRfTNHEzzMqOF9PKjjPMaOKbhWjieoo3zJuFN8x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbGjim4Vo4nqKN8ybhTfMeoqWHRaSlh1pfcczFpLHM2l9VLKhb1Sy3p8jnKFvI5zen+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbOOZUKPjmRaSlZ3en5WdoW/jmWl945kvbMqO80Y0cfNGyo4zHzRxMx/KjhfTNHEX08qOM8w0cTPMVLKbhVSyeoojnJuFI5x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbKpNFpKqTWl922MWkttjaX0bZlCjaWLenxtmFpJpYqFvG2ZpfRtmL2wXi+tBF4uAYed060HndIBhqk3en6pNoW/bY96f22Ohb+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbFSyaX1UshaSI5xpfSOcFpLyyF2QB8z6mF+zXZAgqvqYIKrAh1+zwIeqTXqKqk2bhdtjeorbY5uFqk16iqpNm4XbY3qK22Obhd5VwIfeVfqYn0zAh59MXZD3M/qYDDddkIuFZ15zemdei4X1WnN69VoXi12Q53RdkBeLwIfndMCHTHzE7kx84Oeyg8TusoPg5x/B9VofwWdejX71WvKFZ16Nfmdege3RWYHt7GAb5tFZtd7sYOd0ykQXi8pE53TjWBeL41iLhWdec3pnXrKDg1dMfINXi4VnXnN6Z16LhfVac3r1Wt8+Z17fPvVaDHpnXnGB9VpxgWdec3psxXN6Z4eLhWzFi4Vnh30S7GB9EtFZSSHsYOMZ0VmLhWksc3ppLLKDqyJMfKsifZIsdsqOEH3KjkhvF4tIbxeLEH0XixB9F4tIb8qOEH3KjkhvfZIsdud0hXY0cYV253ShbzRxoW+BbSx2NHFIbzRxEH3ndBB953RIb+d0hXY0cYV253ShbzRxoW/KjoV2F4uFdsqOoW8Xi6Fv53RIb+d0EH00cUhvNHEQfYFtLHbKjoV2F4uFdsqOoW8Xi6FvNHEzH+d0gEM0cfNGyo7zRud0pSIXi4BDyo4zHxeLpSIAAKmWDHqplgAAaKAMemiglh1ooMczaKCqTWig22NooH2SS459kqj1gW1LjoFtqPUMehiZGAsYmQx6Wo8YC1qPgW3//4FtS459kv//fZJLjn2SS459kqj1gW1LjoFtqPXyhVqP5vRaj/KFGJnm9BiZ//+plv//aKDyhamWaOJooDfMaKBUsmigI5xooPKFaKB9khixfZI0quOZNKrjmRaSfZIWkn2SMovndDDW53RHpxeLMNYXi0en3cXAh9nqwIdb2G67xfpAtBeLdqXndHalF4tinOd0YpwhOsCHJRXAh6Mnbrs5BUC0fZJOhH2SaX3jmWl945lLZX2SS2V9kmde//9LZf//L2zyhUtl5vQvbGjiL2zm9Gl9aOJpfTfML2xUsi9sN8xpfVSyaX0jnC9sI5xpffKFaX0YC2l9GAsvbJYdaX2WHS9sDHpLZcczL2wAAEtlAAAvbKpNL2yqTWl9xzNpfdtjL2wMeml922NpfTfMFpI3zFCjVLIWklSyUKPyhTSqI5xQo2jiUKPyhRaSI5wWkub0NKpo4haS5vT6mP//+pj//xaS8oWtbyOcrW/yhWx5VLKtbzfMrW9o4q1v5vRseeb0rW8AAP12DHr9dgAAu4AMeruADHpseRgLbHkMeq1vGAutb9tjrW+WHa1vqk2tb8czrW///7uA8oW7gP///Xbyhf12DHoWkgx6NKrbYxaS22NQo6pNUKPHM1CjxzMWkqpNFpKWHVCjGAs0qhgL+piWHRaSAAAWkgAA+pgXi9zS53Tc0heLi67ndIuugW0YsRtmNKqBbTSqgW0WkhtmFpKBbTKLgW1OhBtmaX2BbWl9gW1LZRtmS2WBbWdei4VsxYuF/OBzemzFi4VLjn2SS459kv//i4XE7nN6/OBzekuOgW1LjnN6xO6Bbf////8Wkv//+pjyhRaS5vT6mOb0NKryhTSqfZJLjn2S//+BbUuOgW3//xgLNKoYC/qYDHo0qgx6FpIAABaSAAD6mIFtqPWBbUuOfZKo9X2SS44YC2l9GAsvbAx6aX0MektlAABLZQAAL2yBbaj1gW1Ljn2SqPV9kkuO//9LZf//L2zyhUtl5vQvbOb0aX3yhWl9fZJLjn2S//+BbUuOgW3//32SaX2BbWl9fZJLZYFtS2V9kjSqgW00qn2SFpKBbRaSfZLUTH2SgoAXi9RMF4uCgH2S93kXi/d5fZIvbBeLL2zndNRM53SCgIFt1EyBbYKAfZL3eReL93l9ki9sF4svbBeLgoAXi9RMfZKCgH2S1EzndPd5gW33eed0L2yBbS9sgW2CgIFt1EzndIKA53TUTOd093mBbfd553QvbIFtL2xVm6FviYyhb1HAL2xVm4V214gvbFHA93nXiPd5iYyFdqlkoW+tPy9sdXOhb6lkhXYndy9srT/3eSd393l1c4V253RnXoFtS2WBbWdefZJnXn2SS2UXi2degW2o9YFt//8bZqj1G2b//32S+pjjmfqYfZI0quOZNKobZjSqgW00qoFt+pgbZvqYgW0YsX2SGLHjmfqYfZL6mOOZFpJ9khaSfZIyi4FtFpIbZhaSgW0yixtm+piBbfqY45mo9eOZ//99kqj1fZL//+OZL2x9ki9s45lLZX2SS2V9kmdegW1LZRtmS2WBbWdeG2YvbIFtL2x9ki9s45kvbH2SaX3jmWl9G2ZpfYFtaX2BbS9sG2YvbIFtToR9kk6EgW2o9YFt//8bZqj1G2b//+OZqPXjmf//fZKo9X2S//+VNB1ylTTce+YLHXLmC9x7acvce2nLHXIY9Nx7GPQdcvKFaX3yhU6E8oUyiyd3L2zyhRaS8oVLZfKFNKqVNGde8oVnXq0/L2ytP/d5lTRLZSd393nmC8CH5gtLZd5VwIdcaG673lU0qvKFbrvyhRixDHpOhAx6aX0MejKLDHpLZdeIL2wMehaSactnXgx6Z15RwC9sUcD3edeI93lpy0tlGPTAhxj0S2UgqsCHopduuyCqNKoMejSqDHoYsQx6brt9kgSdgW0EnX2Sp4SBbaeEfZLAh4FtwId9kktlgW1LZReLZ17ndGdeF4vAh32SwIcXi/qYfZI0qoFtNKrndPqYgW3Ah+d0wId9krpyfZJLjoFtunKBbUuOgW2AYYFtlxzndIBh53TjWOd0qUcXi+NY53Q0JReLqUcXi4BhfZKAYReLNCV9kpcci4Vnh32SS46LhSx2c3osdnN6Z4dzeotsc3ofTIuFi2yLhR9Mi4V+QheLfkJ9kn5CF4uXHHN6fkLndJcc53R+QoFtS46BbX5CfZIyi4FtMot9kk6EgW1OhH2SbruBbW67fZIYsYFtGLFvdqFvb3aFdipuoW8qboV2Km6hbypuhXblZaFv5WWFdo+JoW/UkaFvj4mFdtSRhXbUkaFvGZqhb9SRhXYZmoV2E8GWThPBOFhFnpZOE8GWThPBOFhFnpZOi4USZ4uFDmxzehJni4USZ4uFDmxzehJn5vQYmfKFGJnm9FqP5vQYmfKFGJnm9FqPc3rcj3N6z46LhdyPc3rcj3N6z46LhdyP//84ul3W6cJh/n+z//84ul3W6cJh/n+zG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvyo7zRheLpSLKjjMfyo7zRheLpSLKjjMf53RinBeLYpzndHal53RinBeLYpzndHalG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvaOIvbOb0aX1o4ml9aOIvbOb0aX1o4ml922Ohb9tj3p+qTaFv22Ohb9tj3p+qTaFvxzOtb6pNrW+WHa1vxzOtb6pNrW+WHa1vfZL//32SqPXjmf//fZL//32SqPXjmf//lh1QoxgL+piWHRaSlh1QoxgL+piWHRaSjX5nXo1+9VryhWdejX5nXo1+9VryhWdeF4vjWOd041gXi8pEF4vjWOd041gXi8pETHyrIrKDqyJzemksTHyrIrKDqyJzemksactLZVHA93lpy2deactLZVHA93lpy2degW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbRaSfZIWkoFtNKqBbRaSfZIWkoFtNKqBbWdegW1LZRtmS2WBbWdegW1LZRtmS2U="), -"format": 34896613399, -"index_count": 582, -"index_data": PackedByteArray("AgAAAAEAAQADAAIABAADAAEAAQAFAAQACAAGAAcABwAJAAgADAAKAAsACwANAAwAEAAOAA8ADwARABAAFAASABMAEwAVABQAGAAWABcAFwAZABgAGQAXABoAGgAbABkAHgAcAB0AHQAfAB4AIgAgACEAIQAjACIAIwAkACIAJAAlACIAJQAmACIAJgAnACIAKAAjACEAKAAhACkAKAApACoAKwAoACoALAArACoALQAsACoALgAtACoAKgAvAC4AMgAwADEAMQAzADIANgA0ADUANQA3ADYAOgA4ADkAOgA5ADsAOgA7ADwAPQA6ADwAPgA9ADwAPgA8AD8AQAA+AD8APwBBAEAAQgBAAEEAQgBBAEMAQgBDAEQAQgBEAEUARgBCAEUARQBHAEYASgBIAEkASQBLAEoATgBMAE0ATQBPAE4AUgBQAFEAUQBTAFIAVgBUAFUAVQBXAFYAVQBYAFcAWABZAFcAXABaAFsAWwBdAFwAYABeAF8AXwBhAGAAZABiAGMAYwBlAGQAaABmAGcAZwBpAGgAbABqAGsAawBtAGwAbQBuAGwAbQBvAG4AcgBwAHEAcQBzAHIAdgB0AHUAdQB3AHYAegB4AHkAeQB7AHoAfgB8AH0AfQB/AH4AggCAAIEAgQCDAIIAhgCEAIUAhQCHAIYAigCIAIkAiQCLAIoAiwCMAIoAiwCNAIwAkACOAI8AjwCRAJAAlACSAJMAkwCVAJQAmACWAJcAlwCZAJgAnACaAJsAmwCdAJwAmwCeAJ0AngCfAJ0AogCgAKEAoQCjAKIAoQCkAKMApAClAKMAqACmAKcApwCpAKgArACqAKsAqwCtAKwAsACuAK8ArwCxALAAtACyALMAswC1ALQAtQC2ALQAtQC3ALYAugC4ALkAuQC7ALoAvgC8AL0AvQC/AL4AvwDAAL4AvwDBAMAAxADCAMMAwwDFAMQAyADGAMcAxwDJAMgAzADKAMsAywDNAMwAywDOAM0AzgDPAM0A0gDQANEA0QDTANIA1gDUANUA1gDVANcA1wDYANYA2QDWANgA3ADaANsA2wDdANwA4ADeAN8A3wDhAOAA5ADiAOMA4wDlAOQA4wDmAOUA5gDnAOUA6gDoAOkA6QDrAOoA7gDsAO0A7QDvAO4A8gDwAPEA8QDzAPIA9gD0APUA9QD3APYA9wD4APYA+wD5APoA+gD8APsA/wD9AP4A/gAAAf8AAwEBAQIBAgEEAQMBBwEFAQYBBgEIAQcBCwEJAQoBCgEMAQsBDAENAQsBEAEOAQ8BDwERARABFAESARMBEwEVARQBGAEWARcBFwEZARgBHAEaARsBGwEdARwBGwEeAR0BIQEfASABIAEiASEBIgEjASEBJgEkASUBJQEnASYBKgEoASkBKQErASoBKQEsASsBLwEtAS4BLgEwAS8BMwExATIBMgE0ATMBNwE1ATYBNgE4ATcBOAE5ATcBPAE6ATsBOwE9ATwBQAE+AT8BPwFBAUABQgE/AT4BPwFDAUEBPgFEAUIBQwFFAUEBRAFFAUIBRAFBAUUB"), -"material": SubResource("StandardMaterial3D_bn0g3"), -"name": "metal", -"primitive": 3, -"uv_scale": Vector4(27.2512, 29.2512, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("/2dm9axqVJX/Z4X7sGf/n/+XZvWsalSV/5eF+7Bn/5//lyj95Gaqqv9nKP3kZqqq/5cw3blh////l83quWH///9nMN25Yf///2fN6rlh////l83qD2yqiv9nzeoPbKqK/5dm9axqVJX/Z2b1rGpUlf+XMN3rPgCA/2cw3es+AID/l83q6z4AgP9nzerrPgCA/5cw3Q9sAID/ZzDdD2wAgP+XzeoPbACA/2fN6g9sAID/l2b1+DX///+Xhfv0OP///2dm9fg1////Z4X79Dj///+XKP3AOf///2co/cA5////Z83q6z7///9nzeq5Yf///5fN6us+////l83quWH///+XMN3rPv+//5fN6us+/7//lzDdlTT/v/+X///rPv+//5co/cA5/7//l4X79Dj/v/+XZvX4Nf+//5fN6pU0/7//l///uWH/v/+Xzeq5Yf+//5cw3blh/7//lyj95Gb/v/+XhfuwZ/+//5dm9axq/7//l83qD2z/v/+XMN0PbP+//5cw3ZU0////l83qlTT///9nMN2VNP///2fN6pU0////l83qlTT///+XZvX4Nf///2fN6pU0////Z2b1+DX///9nzeqVNP+//2dm9fg1/7//ZzDdlTT/v/9nhfv0OP+//2co/cA5/7//ZzDd6z7/v/9nzerrPv+//2f//+s+/7//Z83quWH/v/9n//+5Yf+//2cw3blh/7//Zyj95Gb/v/9nhfuwZ/+//2dm9axq/7//ZzDdD2z/v/9nzeoPbP+//2f//+s+////Zyj9wDn///+X///rPv///5co/cA5////Z///uWH/v/9n///rPv+//5f//7lh/7//l///6z7/v/9n//+5YVS1/5f//7lhVLX/Zyj95Gaqqv+XKP3kZqqq/++JRWjiAID/73JraOIAgP//Hk1o4gCA//9Gt2jiAID/7/KYaOIAgP/v275o4gCA//8eTWjijMH//0a3aOKMwf//Hk03zIXc//9GtzfMjMH//0a3aOKMwf/v275o4vzF//9GtzfMjMH/79u+N8z8xf/v8pho4v+//+9ya2ji/7//7/KYN8z/v//vcms3zP+//++JRWji/MX//x5NaOKMwf/viUU3zKvW//8eTTfMhdz/74lFN8xT5///Hk03zDzg/+9yazfM/////0a3N8z////v8pg3zP///+/bvjfM//8AAB5NVLKMwf8PiUVUsvzFAAAeTSOcjMH/D4lFI5z8xQAARrdo4ozBAAAeTWjijMEAAEa3N8yMwQAAHk03zIzB/7/MDj8r/7//v+shnQH/v/+/AAChKf+//78fEwAA/7//P8wOPyv/v/8/AAChKf+//z/rIZ0B/7//Px8TAAD/v/+/HxMAAP///7/rIZ0B////Px8TAAD///8/6yGdAf///w/bvmji/MUAAEa3aOKMwf8P2743zPzFAABGtzfMjMH/D4lFaOIAgAAAHk1o4gCA/w9ya2jiAIAAAEa3aOIAgP8P8pho4gCA/w/bvmjiAIAAAB5NaOKMwf8PiUVo4vzFAAAeTTfMjMH/D4lFN8z8xf8Pcmto4v+//w/ymGji/7//D3JrN8z/v/8P8pg3zP+/AABGt1SyjMEAAB5NVLKMwQAARrcjnIzBAAAeTSOcjMH/D4lFI5z///8PcmsjnP//AAAeTSOc//8AAEa3I5z///8P8pgjnP///w/bviOc////D4lFN8z///8Pcms3zP//AAAeTTfM//8AAEa3N8z///8P8pg3zP///w/bvjfM////PwAAoSn///+/AAChKf///z8fEwAA////vx8TAAD///+/AAChKfqI/z8AAKEp+oj/v8wOPyv6iP8/zA4/K/qI/w/bvlSy/MUAAEa3VLKMwf8P274jnPzFAABGtyOcjMH/D4lFVLIAgAAAHk1UsgCA/w9ya1SyAIAAAEa3VLIAgP8P8phUsgCA/w/bvlSyAID/D3JrVLL/v/8P8phUsv+//w9yayOc/7//D/KYI5z/v//viUUjnFPn//8eTSOcPOD/73JrI5z/////RrcjnP///+/ymCOc////79u+I5z///9PSFz3M////09IXN5V////r0hc9zP///+vSFzeVf////8eTVSyjMH//0a3VLKMwf//Hk0jnIXc//9GtyOcjMH/74lFVLIAgP/vcmtUsgCA//8eTVSyAID//0a3VLIAgP/v8phUsgCA/+/bvlSyAID/7/KYVLL/v//vcmtUsv+//+/ymCOc/7//73JrI5z/v/+vPW8MN/+//69IXPcz/7//rz1vn0z/v/+vSFzeVf+//68ygt5V/7//rzKCn0z/v///RrdUsozB/+/bvlSy/MX//0a3I5yMwf/v274jnPzF/++JRVSy/MX//x5NVLKMwf/viUUjnKvW//8eTSOchdz/TzKC3lX/v/9PSFzeVf+//08ygp9M/7//Tz1vn0z/v/9PSFz3M/+//089bww3/7//ZzDdjX7///+XMN2Nfv///2fF5I1+////l8XkjX7///9PPW+fTP///689b59M////TzKCn0z///+vMoKfTP///29b7IHt/7//b1vsG+bj0P+PW+yB7f+//49b7Bvm49D/Z8XkH8H/v/9nMN0fwf+//2fF5I1+/7//ZzDd8oX/v/9nMN2Nfv+//29b7IHtmsD/ZzDdge2awP9vW+wb5prA/2cw3bXemsD/Tz1vDDf/v/+vPW8MN/+//089b59M/7//rz1vn0z/v/+XMN2B7QCA/2cw3YHtAID/j1vsge0AgP9vW+yB7QCA/5cw3R/BAID/ZzDdH8EAgP+XxeQfwQCA/2fF5B/BAID/lzDdH8H/v/+XxeQfwf+//5cw3fKF/7//l8XkjX7/v/+XMN2Nfv+//2fF5B/B/7//Z8XkjX7/v/+XxeQfwf+//5fF5I1+/7//lzDdge2awP+PW+yB7ZrA/5cw3bXemsD/j1vsG+aawP9nMN213v///5cw3bXe////b1vsG+b///+PW+wb5v///y8cqA9s////PxyodXP///8/HKipZP///08cqKlk////TxyodXP///+vRrd1c/+//69Gt6lk/7//v0a3dXP/v/+/RrepZP+//89Gtw9s/7//TxyodXMAgP8/HKh1cwCA/09Gt3VzAID/P0a3dXMAgP8vRrcPbP+//z9Gt6lk/7//P0a3dXP/v/9PRrd1c/+//09Gt6lk/7//rxyoqWT///+/HKipZP///69Gt6lk////v0a3qWT///+/HKh1cwCA/68cqHVzAID/v0a3dXMAgP+vRrd1cwCA/68cqKlk////rxyodXP///+/HKipZP///78cqHVz////zxyoD2z///8/HKipZP///08cqKlk////P0a3qWT///9PRrepZP///z/rIZ0BBLf/T3QQoycEt/8/zA4/KwS3/7/MDj8rBLf/T0MgOQUEt/+vdBCjJwS3/7/rIZ0BBLf/r0MgOQUEt//PnXr//1TV/8+devKFVNX/73Jr//9U1f/vcmvyhVTV/+9ya2jiVNX/73JrN8xU1f/vcmtUslTV/+9yayOcVNX/L8eJ8oVU1f8vx4nm9FTV/8/HifKFVNX/z8eJ5vRU1f/PNCfyhVTV/880J+b0VNX/71428oVU1f/vXjbm9FTV/y+dev//VNX/L5168oVU1f/PnXr//1TV/8+devKFVNX/LzQn8oVU1f8vNCfm9FTV/880J/KFVNX/zzQn5vRU1f8PXjbyhVTV/w9eNub0VNX/LzQn8oVU1f8vNCfm9FTV/y+dev//VNX/D3Jr//9U1f8vnXryhVTV/w9ya2jiVNX/D3JrN8xU1f8PcmtUslTV/w9yayOcVNX/D3Jr8oVU1f8vNCfyhf///y9eNvKF////D1428oX///8Pcmvyhf///y9ya/KF////L5168oX///+vQyA5Bb/2/68ygiUVv/b/T0MgOQW/9v9PMoIlFb/2/68ygiE6VNX/rzKCJRVU1f+vdBCjJ1TV/69DIDkFVNX/rz1vDDcKwf9PPW8MNwrB/68ygiE6CsH/TzKCIToKwf9PMoIhOlTV/08ygiUVVNX/T3QQoydU1f9PQyA5BVTV/y/HifKF////L/KY8oX///8P8pjyhf///w8GzvKF////LwbO8oX///8vMN3yhf///w8Gzv//VNX/D9u+//9U1f8PBs7yhVTV/w/bvub0VNX/D9u+aOJU1f8P8pjm9FTV/w/ymGjiVNX/D9u+N8xU1f8P275UslTV/w/ymDfMVNX/D/KYVLJU1f8P274jnFTV/w/ymCOcVNX/D/KY8oVU1f/v8pjm9FTV/+/bvub0VNX/7/KYaOJU1f/v275o4lTV/+8GzvKFVNX/79u+N8xU1f/vBs7//1TV/+/bvv//VNX/79u+VLJU1f/v8phUslTV/+/ymDfMVNX/79u+I5xU1f/v8pjyhVTV/+/ymCOcVNX/D3JrN8xU1f8PiUU3zFTV/w9ya1SyVNX/D4lFVLJU1f8PXjbyhVTV/w+JRSOcVNX/D4lFaOJU1f8PcmvyhVTV/w9yayOcVNX/D1425vRU1f8Pcmto4lTV/w9IXOb0VNX/D0hc//9U1f8Pcmv//1TV/w/ymPKFVNX/D/KYI5xU1f8vx4nyhVTV/w/ymFSyVNX/D/KYN8xU1f8P8pho4lTV/y/Hieb0VNX/D/KY5vRU1f/PMN3//1TV/88w3fKFVNX/7wbO//9U1f/vBs7yhVTV/8/HifKFVNX/z8eJ5vRU1f/v8pjyhVTV/+/ymOb0VNX/7/KYI5xU1f/v8pho4lTV/+/ymFSyVNX/7/KYN8xU1f8PBs7//1TV/w8GzvKFVNX/LzDd//9U1f8vMN3yhVTV/+9ya/KFVNX/71428oVU1f/vcmsjnFTV/++JRSOcVNX/74lFVLJU1f/viUU3zFTV/+9yazfMVNX/73JrVLJU1f/viUVo4lTV/+9eNub0VNX/70hc5vRU1f/vcmto4lTV/+9ya///VNX/70hc//9U1f+vdBCjJwrB/090EKMnCsH/r0hc9zMKwf9PSFz3MwrB/880J/KF////71428oX////PXjbyhf///89ya/KF////73Jr8oX////PnXryhf///8/HifKF////7/KY8oX////P8pjyhf///88GzvKF////7wbO8oX////PMN3yhf///5cw3R/BVNX/lzDdtd5U1f9nMN0fwVTV/5cw3fKFVNX/zzDd8oVU1f/PMN3//1TV/5cw3YHtVNX/ZzDdtd5U1f9nMN3yhVTV/y8w3fKFVNX/ZzDdge1U1f8vMN3//1TV/89ya///VNX/z0hc//9U1f/PcmvyhVTV/89IXOb0VNX/z1425vRU1f/PXjbyhVTV/y9ya/KFVNX/L3Jr//9U1f/PcmvyhVTV/89ya///VNX/L1425vRU1f8vSFzm9FTV/y9eNvKFVNX/L3Jr8oVU1f8vcmv//1TV/y9IXP//VNX/L1425vRU1f8vXjbyhVTV/89eNub0VNX/z1428oVU1f8v8pjm9FTV/y/bvub0VNX/L/KY8oVU1f8vBs7yhVTV/y8Gzv//VNX/L9u+//9U1f8v8pjm9FTV/y/ymPKFVNX/z/KY5vRU1f/P8pjyhVTV/88Gzv//VNX/z9u+//9U1f/PBs7yhVTV/8/bvub0VNX/z/KY5vRU1f/P8pjyhVTV/y8GzvKFVNX/LwbO//9U1f/PBs7yhVTV/88Gzv//VNX/z/KY8oX///8v8pjyhf///88GzvKF////LwbO8oX////PXjbyhf///y9eNvKF////z3Jr8oX///8vcmvyhf///y/bvq0/VNX/L9u+J3dU1f9P276tP1TV/0/bvid3VNX/L4egJ3f///9Ph6And////y/bvid3////T9u+J3f///+v276tP1TV/6/bvid3VNX/z9u+rT9U1f/P274nd1TV/8+HoK0/////r4egrT/////P276tP////6/bvq0/////r4egJ3dU1f+vh6CtP1TV/8+HoCd3VNX/z4egrT9U1f9Ph6CtP////y+HoK0/////T9u+rT////8v276tP////y+HoCd3VNX/L4egrT9U1f9Ph6And1TV/0+HoK0/VNX/r4egJ3f////Ph6And////6/bvid3////z9u+J3f///+vRrepZFTV/69Gt3VzVNX/r9u+rT9U1f+vHKipZFTV/6/bvid3VNX/r4egrT9U1f+vh6And1TV/68cqHVzVNX/T0a3qWRU1f9P276tP1TV/09Gt3VzVNX/TxyoqWRU1f9P274nd1TV/0+HoK0/VNX/T4egJ3dU1f9PHKh1c1TV/68w3ZU0////zwbOlTT////PMN2VNP///y8w3ZU0////LwbOlTT///9PMN2VNP///89IXOb0VNX/z0hc//9U1f/vSFzm9FTV/+9IXP//VNX/z0hc5vT////vSFzm9P///89eNub0////71425vT///8PXjbm9P///y9eNub0////L0hc5vT///8PSFzm9P///y80J+b0////zzQn5vT////vSFz//////89IXP//////73Jr///////Pcmv//////8+dev//////L3Jr//////8Pcmv//////y+dev//////D0hc//////8vSFz//////w9IXOb0VNX/D0hc//9U1f8vSFzm9FTV/y9IXP//VNX/79u+///////P277//////+8Gzv//////zwbO///////PMN3//////y8Gzv//////DwbO//////8vMN3//////w/bvv//////L9u+///////P277m9P///+/bvub0////z/KY5vT////v8pjm9P///w/ymOb0////L/KY5vT///8v277m9P///w/bvub0////L8eJ5vT////Px4nm9P///8/bvub0VNX/z9u+//9U1f/v277m9FTV/+/bvv//VNX/D9u+5vRU1f8P277//1TV/y/bvub0VNX/L9u+//9U1f9PMN2VNFTV/y8GzpU0VNX/TzDd5gtU1f8vBs7mC1TV/88GzpU0VNX/rzDdlTRU1f/PBs7mC1TV/68w3eYLVNX/L/KY8oVU1f8vx4nyhVTV/y+devKFVNX/L9u+J3dU1f8vcmvyhVTV/y8GzvKFVNX/L1428oVU1f8vMN2VNFTV/y8w3fKFVNX/L9u+rT9U1f8vh6CtP1TV/y8GzpU0VNX/L4egJ3dU1f8vMoLmC1TV/y8GzuYLVNX/LzKC3lVU1f8vdBBcaFTV/y9eNt5VVNX/L3QQ8oVU1f8vNCfyhVTV/8/HifKFVNX/z/KY8oVU1f/PnXryhVTV/88GzvKFVNX/z9u+J3dU1f/PcmvyhVTV/88w3ZU0VNX/zzDd8oVU1f/P276tP1TV/8+HoK0/VNX/z4egJ3dU1f/PBs6VNFTV/88yguYLVNX/zwbO5gtU1f/PMoLeVVTV/890EFxoVNX/z1423lVU1f/PXjbyhVTV/880J/KFVNX/z3QQ8oVU1f8vdBBcaKrp/890EFxoqun/L1423lWq6f/PXjbeVarp/y8yguYL////zzKC5gv///8vBs7mC////88GzuYL////TzDd5gv///+vMN3mC////08ygt5V////LzKC3lX///9PSFzeVf///y9eNt5V////z1423lX///+vSFzeVf///88ygt5V////rzKC3lX///8vdBBcaFTV/y90EPKFVNX/z3QQXGhU1f/PdBDyhVTV/88ygt5VVNX/zzKC5gtU1f+vMoLeVVTV/68ygp9MVNX/rzKCITpU1f9PMoKfTFTV/68ygiUVVNX/TzKCITpU1f9PMoLeVVTV/y8ygt5VVNX/TzKCJRVU1f8vMoLmC1TV/5cw3Y1+VNX/zzDd8oVU1f+XMN0PbFTV/2cw3Q9sVNX/ZzDdjX5U1f9nMN25YVTV/2cw3es+VNX/lzDduWFU1f+XMN3rPlTV/5cw3ZU0VNX/rzDdlTRU1f/PMN2VNFTV/68w3eYLVNX/ZzDdlTRU1f9PMN3mC1TV/08w3ZU0VNX/LzDd8oVU1f8vMN2VNFTV/8+devKF////L5168oX////Px4nyhf///y/HifKF////z3QQ8oX///8vdBDyhf///880J/KF////LzQn8oX///8vRrcPbFTV/y8cqA9sVNX/P0a3qWT14P8/HKipZPXg/z9Gt3VzaMv/PxyodXNoy/8vRrcPbFTV/y8cqA9sVNX/z0a3D2xU1f+/RrepZPXg/88cqA9sVNX/vxyoqWT14P+/Rrd1c2jL/89Gtw9sVNX/vxyodXNoy//PHKgPbFTV/2cw3es+VNX/ZzDdlTRU1f+XMN3rPlTV/5cw3ZU0VNX/lzDd6z5U1f9nMN2VNFTV/w/bvmjiVNX/D/KYaOJU1f8P2743zFTV/w/ymDfMVNX/D9u+N8xU1f8P8pho4lTV/++JRWjiVNX/73JraOJU1f/viUU3zFTV/+9yazfMVNX/74lFN8xU1f/vcmto4lTV/2cw3blhVNX/lzDduWFU1f9nMN0PbFTV/5cw3Q9sVNX/ZzDdD2xU1f+XMN25YVTV/08ygiUVVNX/TzKCITpU1f+vMoIlFVTV/68ygiE6VNX/rzKCJRVU1f9PMoIhOlTV/w+JRWjiVNX/D3JraOJU1f8PiUU3zFTV/w9yazfMVNX/D4lFN8xU1f8Pcmto4lTV/++JRVSyVNX/73JrVLJU1f/viUUjnFTV/+9yayOcVNX/74lFI5xU1f/vcmtUslTV/w+JRVSyVNX/D3JrVLJU1f8PiUUjnFTV/w9yayOcVNX/D4lFI5xU1f8PcmtUslTV/09IXN5V////r0hc3lX///9PMoLeVf///68ygt5V////TzKC3lX///+vSFzeVf///+/bvmjiVNX/7/KYaOJU1f/v2743zFTV/+/ymDfMVNX/79u+N8xU1f/v8pho4lTV/08ygp9MVNX/TzKC3lVU1f+vMoKfTFTV/68ygt5VVNX/rzKCn0xU1f9PMoLeVVTV/w/ymFSyVNX/D9u+VLJU1f8P8pgjnFTV/w/bviOcVNX/D/KYI5xU1f8P275UslTV/+/ymFSyVNX/79u+VLJU1f/v8pgjnFTV/+/bviOcVNX/7/KYI5xU1f/v275UslTV/2cw3fKFVNX/ZzDdjX5U1f+XMN3yhVTV/5cw3Y1+VNX/lzDd8oVU1f9nMN2NflTV/2cw3YHtVNX/ZzDdtd5U1f+XMN2B7VTV/5cw3bXeVNX/lzDdge1U1f9nMN213lTV/2cw3fKFVNX/ZzDdH8FU1f+XMN3yhVTV/5cw3R/BVNX/lzDd8oVU1f9nMN0fwVTV/09IXPczv/b/r0hc9zO/9v9PPW8MN7/2/689bww3v/b/Tz1vDDe/9v+vSFz3M7/2/880J/KF////LzQn8oX////PXjbyhf///y9eNvKF////z1428oX///8vNCfyhf///y8GzvKF////zwbO8oX///8vMN3yhf///88w3fKF////LzDd8oX////PBs7yhf///2cw3fKF////LzDd8oX////PMN3yhf///5cw3fKF////ZzDd8oX///8vx4nyhf///8/HifKF////L/KY8oX////P8pjyhf///y/ymPKF////z8eJ8oX///8vcmvyhf///89ya/KF////L5168oX////PnXryhf///y+devKF////z3Jr8oX//////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f/Lk/3+B2v9/8uT/f4Ha/38l0f9/JdH/f/8//3//P/9//z//f/8//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////fxrx/3/y5P9/GvH/f/Lk/3/+//9//v//f/7//3////9//v//f/7//3/+//9/////f////3////9/////f////3////9/////f/7//3/+//9/bMj/fyXR/39syP9/JdH///9/////f////3////9/////f////3////9/////f/9/////f////3////9/////f////3///8htbSRtpDYSUWwNHW2kNhJtpDYS/bn/HG2kNhL9uf8c/3////9/////f////3///wBj/jnIbW0kQWBcM1FsDR3ejcw0L4nsHv9/////f/7//3/+//9//v+RW8jtAUb/4pFbyO0BRv/iNpKR25FbyO02kpHbkVvI7f9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////38+8/9/PvP/fz7z/38+8/6cAMY2kpHb/pwAxjaSkdv/f////3////9/////f////3////9///+RW8jtAUb/4pFbyO0BRv/i/38AAP9/AAD/fwAA/38AADaSkduRW8jtNpKR25FbyO3/f/7//3////9//v//f/7//3////9//v//f/7//3////9//v//f/7//3////9//v/quP//6rj//+q4///quP//AAD/fwAA/38AAP9/AAD/f/6cAMY2kpHb/pwAxjaSkdv/f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA3o3MNC+J7B7/f////3/+//9//v//f/7//3//P/9//z//f/8//3//P8htbSRtpDYSUWwNHW2kNhL/f////3////9/////f////3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAAbaQ2Ev25/xxtpDYS/bn/HABj/jnIbW0kQWBcM1FsDR3/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3//f////3////9/////f////3///6SMteakjLXmpIy15qSMteb///9/////f////3////9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////39JmaQMSZmkDEmZpAxJmaQM/3+B2v9/gdr/f3TN/390zf9//z//f/8//3//P/9//z//f/8/////f////3////9/////f////3//f////3////9/////f///////f////3////9/////f////3//f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f/8//3////9/////f////3////7//3/+//9//v//f////3/+//9/////f/7//3/+//9/gdqCWoHaglp8pX0lfKV9JUevSC9Hr0gvR69IL0evSC99JXylfSV8pX0lglp9JYJafSWCWn0lglqCWn0lglp9JYHafKWB2nylgdqCWoHaglp9JXylfSV8pX0lglp9JYJaglqB2oJagdp9JXylfSV8pYHafKV8pYHagdp8pUevttBHr7bQR6+20EevttB8pYHa/3////9/////f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3///3ylgdr/f///fKWB2v9/////f///glqB2rdQttD/f////3///7dQttC3ULbQ/3///7dQttCCWoHaglp9Jf9/AAC3UEgv/38AAHylfSX/fwAAfKV9Jf9/AAD/fwAAt1BIL7dQSC//fwAAglp9JbdQSC9Hr7bQ/3///0evttD/f///glqB2v9/////f///fKWB2kevttCCWoHaR6+20P9/////f///fKWB2oJagdq3ULbQfSV8pbdQttC3ULbQt1C20H0lfKWCWoHagdqCWoHaglp8pX0lfKV9JX0lglp9JYJaglp9JYJafSW3UEgvt1BIL7dQSC+3UEgvfKWB2nylgdqB2nylgdp8pXylfSWCWn0lR69IL/9/AAD/fwAA/38AAEevSC9Hr0gv/38AAIJafSX/fwAAR69IL3ylfSX/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3+B2oJagdqCWv///3////9/////f4HafKX///9/gdp8pf9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f////3////9/////f///AAD/fwAA/38AAP9/AAD/f/9//3//f/9//3//f/9//3////9/////f////3////9//3//f/9//3//f/9//3//f////3////9/////f////3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//7//v/+//7//v/+//7//v/+//z//v/8//7//P/+//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 384, -"index_data": PackedByteArray("SAFGAUcBRwFJAUgBSQFKAUgBSQFLAUoBSQFMAUsBSQFNAUwBUAFOAU8BTwFRAVABVAFSAVMBUwFVAVQBWAFWAVcBVwFZAVgBXAFaAVsBWwFdAVwBYAFeAV8BXwFhAWABZAFiAWMBYwFlAWQBZQFmAWQBZgFnAWQBZwFoAWQBaAFpAWQBbAFqAWsBawFtAWwBawFuAW0BbgFvAW0BcgFwAXEBcQFzAXIB1AB0AXUBdQHVANQAdQF2AdUAdQF3AXYBegF4AXkBeQF7AXoBfQF8AecA5wDmAH0B5gB+AX0BfgF/AX0BggGAAYEBgQGDAYIBgQGEAYMBhAGFAYMBiAGGAYcBhwGJAYgBiQGKAYgBiQGLAYoBjAGKAYsBigGNAYgBjQGOAYgBjQGPAY4BkAGOAY8BjgGRAYgBkQGSAYgBkgGTAYgBlgGUAZUBlwGWAZUBmAGXAZUBmAGZAZcBmgGYAZUBlQGbAZoBmAGcAZkBnAGdAZkBnQGeAZkBmAGfAZwBmAGgAZ8BoAGhAZ8BpAGiAaMBpQGkAaMBpgGlAaMBpgGnAaUBpgGjAagBpgGpAacBqQGqAacBqwGmAagBqwGoAawBrQGrAawBrgGtAawBrAGvAa4BsgGwAbEBsQGzAbIBswG0AbIBtAG1AbIBtgGyAbUBtQG3AbYBugG4AbkBuQG7AboBvgG8Ab0BvQG/Ab4BvwHAAb4BvwHBAcABwQHCAcABwQHDAcIBxgHEAcUBxQHHAcYBygHIAckBywHKAckBzAHLAckBzQHMAckBzQHOAcwBzwHMAc4B0AHNAckB0AHJAdEB0QHSAdAB0wHQAdIB1AHTAdIB0gHVAdQB2AHWAdcB1wHZAdgB3AHaAdsB2wHdAdwB2wHeAd0B3gHfAd0B4gHgAeEB4QHjAeIB4QHkAeMB5AHlAeMB6AHmAecB5gHpAecB6QHqAecB6gHrAecB7AHnAesB5wHtAegB7gHoAe0B7wHuAe0B8AHsAesB7QHwAe8B8AHrAfEB8QHvAfAB"), -"material": SubResource("StandardMaterial3D_fop1y"), -"name": "darkMetal", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///3//////////f///AID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/3//f/+/AAD/f/9//7//////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdr/////fKWB2v////+B2nyl/////4HafKX/////ttBHr////7+20Eev////v7bQR6////+/ttBHr////7+CWn0lfSW90oJafSV9Jb3SfKV9JX0lQK18pX0lfSVArXylfSX/////fKV9Jf////+B2oJa/////4Haglr/////glqB2oHavdKCWoHagdq90nylgdqB2kCtfKWB2oHaQK2CWn0lfSW90oJafSV9Jb3SfKV9JX0lQK18pX0lfSVArX0lglr/f/+/fSWCWv9//7+CWn0l/3//v4JafSX/f/+/glqB2v9//799JXyl/3//v4Jagdr/f/+/SC9Hr/9//79IL0ev/3//v0gvR6//f/+/SC9Hr/9//799JXyl/3//v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v//f//8AAP+//9///wAA/7//3///AAD/v//f//8AAP+/////f/////////9///8AgP///3/+/wCA////f/7/AID/f/9f////v/9//1////+//3//X////7//f/9f////vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+/fSV8pf9//78AAP9//3//v30lfKX/f/+/AAD/f/9//78AAP9//3//v30lglr/f/+/SC+3UP9//78AAP9//3//vwAA/3//f/+/SC+3UP9//79IL7dQ/3//vwAA/3//f/+/SC+3UP9//799JYJa/3//v4Haglr/////////f/////+20LdQ/////////3//////gdp8pf////////9//////4HafKX/////////f/////////9//////7bQt1D/////ttC3UP////////9//////4Haglr/////ttC3UP////9IL0ev/3//vwAA/3//f/+/SC9Hr/9//78AAP9//3//v30lglr/f/+/AAD/f/9//78AAP9//3//v30lfKX/f/+/SC9Hr/9//799JYJa/3//v0gvR6//f/+/AAD/f/9//78AAP9//3//v30lfKX/f/+/fSWCWv9//79IL7dQ/3//v4JafSX/f/+/SC+3UP9//79IL7dQ/3//v0gvt1D/f/+/glp9Jf9//799JYJa/3//v3ylgdr/////fKWB2v////+B2nyl/////4HafKX/////fKV9Jf////98pX0l/////4Haglr/////gdqCWv////+20LdQ////v7bQt1D///+/ttC3UP///7+20LdQ////v30lfKX/f/+/fSV8pf9//7+CWoHa/3//v4Jagdr/f/+/gdp8pf////+B2oJaAAAAgLbQR6///wCA////f///AID///9//////////3//////ttBHr/////+20Eev/////////3///wCAgdqCWv////////9///8AgLbQR6///wCAgdp8pf////////9///////9//1////+//3//X////7//f/9f////v/9//1////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//3///////7//f////v//v/9///////+//3///////798pYHagdpArXylgdqB2kCt/3////7//7//f////v//v/9///////+/glqB2oHavdL/f///////v4JagdqB2r3SAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+/AAAAAACA/78AAAAAAID/vwAAAAAAgP+/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAKmqAAAAgAAAqaoAAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP//qaoAAACA////fwAAAID//6mqAAAAgFTV/38AAACA////fwAAAIBU1f9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgA==") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("c3r7VHN6DFGLhftUi4UMUYuF/09zev9Pc3pnXnN6OFiLhWdei4U4WIuFEFVzehBVi4UUUHN6FFCLhWdec3pnXouFOFhzejhYi4VnXnN6Z16LhThYc3o4WHN6y5NzetyPi4XLk4uF3I9zes+Oi4XPjouFH0yLhYtsc3ofTHN6i2wTwWdeE8E4WGnLZ14TwZZOPsbgTwrHn1AGymdTacs4WEWelk5FnjhYRZ5nXhqZ4E9OmJ9QUpVnU++TOFjvk2dec3pnXnN6OFiLhWdei4U4WHN6DmxzehJni4UObIuFEmeVNDhY+DVnU5U0Z170OJ9QwDngT+s+Z17rPjhY6z6WTrlhOFi5YZZOuWFnXuRm4E+wZ59QrGpnUw9sZ14PbDhYi4VBtIuFPrlzekG0c3o+uXN6i2xzeh9Mi4WLbIuFH0xzenNei4VzXnN6cGOLhXBj45lQo+OZFpKVnd6flZ2hb+OZaX3jmS9slh3en5YdoW/HM96fxzOhb5YdeoqWHZuFxzN6isczm4Vo4ml9aOIWkjfMaX03zBaSlh16ipYdm4XHM3qKxzObhRtmUKNpYt6fG2YWkmlioW8bZml9G2YvbFSym4VUsnqKI5ybhSOceopo4qFvaOLenzfMoW83zN6fv9QvvGH+f7Nd1unC//84uj8rL7yhKenCnQF/swAAOLo0cRfTNHEzzMqOF9PKjjPMaOKbhWjieoo3zJuFN8x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbGjim4Vo4nqKN8ybhTfMeoqWHRaSlh1pfcczFpLHM2l9VLKhb1Sy3p8jnKFvI5zen+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbOOZUKPjmRaSlZ3en5WdoW/jmWl945kvbMqO80Y0cfNGyo4zHzRxMx/KjhfTNHEX08qOM8w0cTPMVLKbhVSyeoojnJuFI5x6ihtmUKNpYt6fG2YWkmlioW8bZml9G2YvbKpNFpKqTWl922MWkttjaX0bZlCjaWLenxtmFpJpYqFvG2ZpfRtmL2wXi+tBF4uAYed060HndIBhqk3en6pNoW/bY96f22Ohb+OZUKPjmRaSlZ3en5WdoW/jmWl945kvbFSyaX1UshaSI5xpfSOcFpLyyF2QB8z6mF+zXZAgqvqYIKrAh1+zwIeqTXqKqk2bhdtjeorbY5uFqk16iqpNm4XbY3qK22Obhd5VwIfeVfqYn0zAh59MXZD3M/qYDDddkIuFZ15zemdei4X1WnN69VoXi12Q53RdkBeLwIfndMCHTHzE7kx84Oeyg8TusoPg5x/B9VofwWdejX71WvKFZ16Nfmdege3RWYHt7GAb5tFZtd7sYOd0ykQXi8pE53TjWBeL41iLhWdec3pnXrKDg1dMfINXi4VnXnN6Z16LhfVac3r1Wt8+Z17fPvVaDHpnXnGB9VpxgWdec3psxXN6Z4eLhWzFi4Vnh30S7GB9EtFZSSHsYOMZ0VmLhWksc3ppLLKDqyJMfKsifZIsdsqOEH3KjkhvF4tIbxeLEH0XixB9F4tIb8qOEH3KjkhvfZIsdud0hXY0cYV253ShbzRxoW+BbSx2NHFIbzRxEH3ndBB953RIb+d0hXY0cYV253ShbzRxoW/KjoV2F4uFdsqOoW8Xi6Fv53RIb+d0EH00cUhvNHEQfYFtLHbKjoV2F4uFdsqOoW8Xi6FvNHEzH+d0gEM0cfNGyo7zRud0pSIXi4BDyo4zHxeLpSIAAKmWDHqplgAAaKAMemiglh1ooMczaKCqTWig22NooH2SS459kqj1gW1LjoFtqPUMehiZGAsYmQx6Wo8YC1qPgW3//4FtS459kv//fZJLjn2SS459kqj1gW1LjoFtqPXyhVqP5vRaj/KFGJnm9BiZ//+plv//aKDyhamWaOJooDfMaKBUsmigI5xooPKFaKB9khixfZI0quOZNKrjmRaSfZIWkn2SMovndDDW53RHpxeLMNYXi0en3cXAh9nqwIdb2G67xfpAtBeLdqXndHalF4tinOd0YpwhOsCHJRXAh6Mnbrs5BUC0fZJOhH2SaX3jmWl945lLZX2SS2V9kmde//9LZf//L2zyhUtl5vQvbGjiL2zm9Gl9aOJpfTfML2xUsi9sN8xpfVSyaX0jnC9sI5xpffKFaX0YC2l9GAsvbJYdaX2WHS9sDHpLZcczL2wAAEtlAAAvbKpNL2yqTWl9xzNpfdtjL2wMeml922NpfTfMFpI3zFCjVLIWklSyUKPyhTSqI5xQo2jiUKPyhRaSI5wWkub0NKpo4haS5vT6mP//+pj//xaS8oWtbyOcrW/yhWx5VLKtbzfMrW9o4q1v5vRseeb0rW8AAP12DHr9dgAAu4AMeruADHpseRgLbHkMeq1vGAutb9tjrW+WHa1vqk2tb8czrW///7uA8oW7gP///Xbyhf12DHoWkgx6NKrbYxaS22NQo6pNUKPHM1CjxzMWkqpNFpKWHVCjGAs0qhgL+piWHRaSAAAWkgAA+pgXi9zS53Tc0heLi67ndIuugW0YsRtmNKqBbTSqgW0WkhtmFpKBbTKLgW1OhBtmaX2BbWl9gW1LZRtmS2WBbWdei4VsxYuF/OBzemzFi4VLjn2SS459kv//i4XE7nN6/OBzekuOgW1LjnN6xO6Bbf////8Wkv//+pjyhRaS5vT6mOb0NKryhTSqfZJLjn2S//+BbUuOgW3//xgLNKoYC/qYDHo0qgx6FpIAABaSAAD6mIFtqPWBbUuOfZKo9X2SS44YC2l9GAsvbAx6aX0MektlAABLZQAAL2yBbaj1gW1Ljn2SqPV9kkuO//9LZf//L2zyhUtl5vQvbOb0aX3yhWl9fZJLjn2S//+BbUuOgW3//32SaX2BbWl9fZJLZYFtS2V9kjSqgW00qn2SFpKBbRaSfZLUTH2SgoAXi9RMF4uCgH2S93kXi/d5fZIvbBeLL2zndNRM53SCgIFt1EyBbYKAfZL3eReL93l9ki9sF4svbBeLgoAXi9RMfZKCgH2S1EzndPd5gW33eed0L2yBbS9sgW2CgIFt1EzndIKA53TUTOd093mBbfd553QvbIFtL2xVm6FviYyhb1HAL2xVm4V214gvbFHA93nXiPd5iYyFdqlkoW+tPy9sdXOhb6lkhXYndy9srT/3eSd393l1c4V253RnXoFtS2WBbWdefZJnXn2SS2UXi2degW2o9YFt//8bZqj1G2b//32S+pjjmfqYfZI0quOZNKobZjSqgW00qoFt+pgbZvqYgW0YsX2SGLHjmfqYfZL6mOOZFpJ9khaSfZIyi4FtFpIbZhaSgW0yixtm+piBbfqY45mo9eOZ//99kqj1fZL//+OZL2x9ki9s45lLZX2SS2V9kmdegW1LZRtmS2WBbWdeG2YvbIFtL2x9ki9s45kvbH2SaX3jmWl9G2ZpfYFtaX2BbS9sG2YvbIFtToR9kk6EgW2o9YFt//8bZqj1G2b//+OZqPXjmf//fZKo9X2S//+VNB1ylTTce+YLHXLmC9x7acvce2nLHXIY9Nx7GPQdcvKFaX3yhU6E8oUyiyd3L2zyhRaS8oVLZfKFNKqVNGde8oVnXq0/L2ytP/d5lTRLZSd393nmC8CH5gtLZd5VwIdcaG673lU0qvKFbrvyhRixDHpOhAx6aX0MejKLDHpLZdeIL2wMehaSactnXgx6Z15RwC9sUcD3edeI93lpy0tlGPTAhxj0S2UgqsCHopduuyCqNKoMejSqDHoYsQx6brt9kgSdgW0EnX2Sp4SBbaeEfZLAh4FtwId9kktlgW1LZReLZ17ndGdeF4vAh32SwIcXi/qYfZI0qoFtNKrndPqYgW3Ah+d0wId9krpyfZJLjoFtunKBbUuOgW2AYYFtlxzndIBh53TjWOd0qUcXi+NY53Q0JReLqUcXi4BhfZKAYReLNCV9kpcci4Vnh32SS46LhSx2c3osdnN6Z4dzeotsc3ofTIuFi2yLhR9Mi4V+QheLfkJ9kn5CF4uXHHN6fkLndJcc53R+QoFtS46BbX5CfZIyi4FtMot9kk6EgW1OhH2SbruBbW67fZIYsYFtGLFvdqFvb3aFdipuoW8qboV2Km6hbypuhXblZaFv5WWFdo+JoW/UkaFvj4mFdtSRhXbUkaFvGZqhb9SRhXYZmoV2E8GWThPBOFhFnpZOE8GWThPBOFhFnpZOi4USZ4uFDmxzehJni4USZ4uFDmxzehJn5vQYmfKFGJnm9FqP5vQYmfKFGJnm9FqPc3rcj3N6z46LhdyPc3rcj3N6z46LhdyP//84ul3W6cJh/n+z//84ul3W6cJh/n+zG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvyo7zRheLpSLKjjMfyo7zRheLpSLKjjMf53RinBeLYpzndHal53RinBeLYpzndHalG2YvbBtmaX1pYqFvG2YvbBtmaX1pYqFvaOIvbOb0aX1o4ml9aOIvbOb0aX1o4ml922Ohb9tj3p+qTaFv22Ohb9tj3p+qTaFvxzOtb6pNrW+WHa1vxzOtb6pNrW+WHa1vfZL//32SqPXjmf//fZL//32SqPXjmf//lh1QoxgL+piWHRaSlh1QoxgL+piWHRaSjX5nXo1+9VryhWdejX5nXo1+9VryhWdeF4vjWOd041gXi8pEF4vjWOd041gXi8pETHyrIrKDqyJzemksTHyrIrKDqyJzemksactLZVHA93lpy2deactLZVHA93lpy2degW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbWl9gW1LZX2SS2WBbRaSfZIWkoFtNKqBbRaSfZIWkoFtNKqBbWdegW1LZRtmS2WBbWdegW1LZRtmS2U="), -"format": 34896613399, -"index_count": 180, -"index_data": PackedByteArray("9AHyAfMB8wH1AfQB9QH2AfQB9gH3AfQB+gH4AfkB+QH7AfoB/gH8Af0B/wH+Af0BAAL/Af0B/QEBAgACBAICAgMCAwIFAgQCCAIGAgcCCQIIAgcCCgIJAgcCBwILAgoCDgIMAg0CDQIPAg4CEgIQAhECEQITAhICEwIUAhICFAIVAhICGAIWAhcCFwIZAhgCHAIaAhsCGwIdAhwCIAIeAh8CHwIhAiACJAIiAiMCIwIlAiQCKAImAicCJwIpAigCLAIqAisCKwItAiwCMAIuAi8CLwIxAjACNAIyAjMCMwI1AjQCOAI2AjcCNwI5AjgCPAI6AjsCOwI9AjwCQAI+Aj8CPwJBAkACRAJCAkMCRAJFAkICRgJEAkMCRQJEAkcCQwJIAkYCSQJFAkcCSAJDAkkCSQJHAkgCTAJKAksCSgJNAksCTAJLAk4CTwJLAk0CTgJQAkwCTwJNAlECUAJPAlECUQJMAlAC"), -"material": SubResource("StandardMaterial3D_srqfe"), -"name": "dark", -"primitive": 3, -"uv_scale": Vector4(27.2512, 29.2512, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("/2dm9axqusL/Z4X7sGf8xf+XZvWsarrC/5eF+7Bn/MX/lyj95GZKyv9nKP3kZkrK/5cw3blh////l83quWH///9nMN25Yf///2fN6rlh////l83qD2ywwP9nzeoPbLDA/5dm9axqusL/Z2b1rGq6wv+XMN3rPv///2cw3es+////l83q6z7///9nzerrPv///5cw3Q9s////ZzDdD2z///+XzeoPbP///2fN6g9s////l2b1+DX/8P+Xhfv0OKrp/2dm9fg1//D/Z4X79Diq6f+XKP3AOYzi/2co/cA5jOL/Z83q6z5U1f9nzeq5YVTV/5fN6us+VNX/l83quWFU1f+XMN3rPlTV/5fN6us+VNX/lzDdlTRU1f+X///rPlTV/5co/cA5VNX/l4X79DhU1f+XZvX4NVTV/5fN6pU0VNX/l///uWFU1f+Xzeq5YVTV/5cw3blhVNX/lyj95GZU1f+XhfuwZ1TV/5dm9axqVNX/l83qD2xU1f+XMN0PbFTV/5cw3ZU0////l83qlTT///9nMN2VNP///2fN6pU0////l83qlTR2+P+XZvX4Nf/w/2fN6pU0dvj/Z2b1+DX/8P9nzeqVNFTV/2dm9fg1VNX/ZzDdlTRU1f9nhfv0OFTV/2co/cA5VNX/ZzDd6z5U1f9nzerrPlTV/2f//+s+VNX/Z83quWFU1f9n//+5YVTV/2cw3blhVNX/Zyj95GZU1f9nhfuwZ1TV/2dm9axqVNX/ZzDdD2xU1f9nzeoPbFTV/2f//+s+vNv/Zyj9wDmM4v+X///rPrzb/5co/cA5jOL/Z///uWFU1f9n///rPlTV/5f//7lhVNX/l///6z5U1f9n//+5YXfP/5f//7lhd8//Zyj95GZKyv+XKP3kZkrK/++JRWji////73JraOL/////Hk1o4v////9Gt2ji////7/KYaOL////v275o4v////8eTWjiVNX//0a3aOJU1f//Hk03zNLm//9GtzfMVNX//0a3aOJU1f/v275o4lTV//9GtzfMVNX/79u+N8xU1f/v8pho4lTV/+9ya2jiVNX/7/KYN8xU1f/vcms3zFTV/++JRWjiVNX//x5NaOJU1f/viUU3zPXg//8eTTfM0ub/74lFN8z14P//Hk03zNLm/+9yazfM/////0a3N8z////v8pg3zP///+/bvjfM//8AAB5NVLJU1f8PiUVUslTVAAAeTSOcVNX/D4lFI5xU1QAARrdo4lTVAAAeTWjiVNUAAEa3N8xU1QAAHk03zFTV/7/MDj8rVNX/v+shnQFU1f+/AAChKVTV/78fEwAAVNX/P8wOPytU1f8/AAChKVTV/z/rIZ0BVNX/Px8TAABU1f+/HxMAAKf5/7/rIZ0Bp/n/Px8TAACn+f8/6yGdAaf5/w/bvmjiVNUAAEa3aOJU1f8P2743zFTVAABGtzfMVNX/D4lFaOL//wAAHk1o4v///w9ya2ji//8AAEa3aOL///8P8pho4v///w/bvmji//8AAB5NaOJU1f8PiUVo4lTVAAAeTTfMVNX/D4lFN8xU1f8Pcmto4lTV/w/ymGjiVNX/D3JrN8xU1f8P8pg3zFTVAABGt1SyVNUAAB5NVLJU1QAARrcjnFTVAAAeTSOcVNX/D4lFI5z///8PcmsjnP//AAAeTSOc//8AAEa3I5z///8P8pgjnP///w/bviOc////D4lFN8z///8Pcms3zP//AAAeTTfM//8AAEa3N8z///8P8pg3zP///w/bvjfM////PwAAoSmw2v+/AAChKbDa/z8fEwAAsNr/vx8TAACw2v+/AAChKX3A/z8AAKEpfcD/v8wOPyt9wP8/zA4/K33A/w/bvlSyVNUAAEa3VLJU1f8P274jnFTVAABGtyOcVNX/D4lFVLL//wAAHk1Usv///w9ya1Sy//8AAEa3VLL///8P8phUsv///w/bvlSy////D3JrVLJU1f8P8phUslTV/w9yayOcVNX/D/KYI5xU1f/viUUjnPXg//8eTSOc0ub/73JrI5z/////RrcjnP///+/ymCOc////79u+I5z///9PSFz3M1TV/09IXN5VVNX/r0hc9zNU1f+vSFzeVVTV//8eTVSyVNX//0a3VLJU1f//Hk0jnNLm//9GtyOcVNX/74lFVLL////vcmtUsv////8eTVSy/////0a3VLL////v8phUsv///+/bvlSy////7/KYVLJU1f/vcmtUslTV/+/ymCOcVNX/73JrI5xU1f+vPW8MN1TV/69IXPczVNX/rz1vn0xU1f+vSFzeVVTV/68ygt5VVNX/rzKCn0xU1f//RrdUslTV/+/bvlSyVNX//0a3I5xU1f/v274jnFTV/++JRVSyVNX//x5NVLJU1f/viUUjnPXg//8eTSOc0ub/TzKC3lVU1f9PSFzeVVTV/08ygp9MVNX/Tz1vn0xU1f9PSFz3M1TV/089bww3VNX/ZzDdjX7///+XMN2Nfv///2fF5I1+////l8XkjX7///9PPW+fTP///689b59M////TzKCn0z///+vMoKfTP///29b7IHtVNX/b1vsG+ar3/+PW+yB7VTV/49b7Bvmq9//Z8XkH8FU1f9nMN0fwVTV/2fF5I1+VNX/ZzDd8oVU1f9nMN2NflTV/29b7IHtVNX/ZzDdge1U1f9vW+wb5lTV/2cw3bXeVNX/Tz1vDDdU1f+vPW8MN1TV/089b59MVNX/rz1vn0xU1f+XMN2B7f///2cw3YHt////j1vsge3///9vW+yB7f///5cw3R/B////ZzDdH8H///+XxeQfwf///2fF5B/B////lzDdH8FU1f+XxeQfwVTV/5cw3fKFVNX/l8XkjX5U1f+XMN2NflTV/2fF5B/BVNX/Z8XkjX5U1f+XxeQfwVTV/5fF5I1+VNX/lzDdge1U1f+PW+yB7VTV/5cw3bXeVNX/j1vsG+ZU1f9nMN213qrp/5cw3bXequn/b1vsG+ar3/+PW+wb5qvf/y8cqA9sVNX/PxyodXNU1f8/HKipZFTV/08cqKlkVNX/TxyodXNU1f+vRrd1c1TV/69Gt6lkVNX/v0a3dXNU1f+/RrepZFTV/89Gtw9sVNX/TxyodXP///8/HKh1c////09Gt3Vz////P0a3dXP///8vRrcPbFTV/z9Gt6lkVNX/P0a3dXNU1f9PRrd1c1TV/09Gt6lkVNX/rxyoqWT///+/HKipZP///69Gt6lk////v0a3qWT///+/HKh1c////68cqHVz////v0a3dXP///+vRrd1c////68cqKlkVNX/rxyodXNU1f+/HKipZFTV/78cqHVzVNX/zxyoD2xU1f8/HKipZP///08cqKlk////P0a3qWT///9PRrepZP///z/rIZ0BWdD/T3QQoydZ0P8/zA4/K1nQ/7/MDj8rWdD/T0MgOQVZ0P+vdBCjJ1nQ/7/rIZ0BWdD/r0MgOQVZ0P/PnXr//1TV/8+devKFVNX/73Jr//9U1f/vcmvyhVTV/+9ya2jiVNX/73JrN8xU1f/vcmtUslTV/+9yayOcVNX/L8eJ8oVU1f8vx4nm9FTV/8/HifKFVNX/z8eJ5vRU1f/PNCfyhVTV/880J+b0VNX/71428oVU1f/vXjbm9FTV/y+dev//VNX/L5168oVU1f/PnXr//1TV/8+devKFVNX/LzQn8oVU1f8vNCfm9FTV/880J/KFVNX/zzQn5vRU1f8PXjbyhVTV/w9eNub0VNX/LzQn8oVU1f8vNCfm9FTV/y+dev//VNX/D3Jr//9U1f8vnXryhVTV/w9ya2jiVNX/D3JrN8xU1f8PcmtUslTV/w9yayOcVNX/D3Jr8oVU1f8vNCfyhf///y9eNvKF////D1428oX///8Pcmvyhf///y9ya/KF////L5168oX///+vQyA5Bb/2/68ygiUVv/b/T0MgOQW/9v9PMoIlFb/2/68ygiE6VNX/rzKCJRVU1f+vdBCjJ1TV/69DIDkFVNX/rz1vDDcKwf9PPW8MNwrB/68ygiE6CsH/TzKCIToKwf9PMoIhOlTV/08ygiUVVNX/T3QQoydU1f9PQyA5BVTV/y/HifKF////L/KY8oX///8P8pjyhf///w8GzvKF////LwbO8oX///8vMN3yhf///w8Gzv//VNX/D9u+//9U1f8PBs7yhVTV/w/bvub0VNX/D9u+aOJU1f8P8pjm9FTV/w/ymGjiVNX/D9u+N8xU1f8P275UslTV/w/ymDfMVNX/D/KYVLJU1f8P274jnFTV/w/ymCOcVNX/D/KY8oVU1f/v8pjm9FTV/+/bvub0VNX/7/KYaOJU1f/v275o4lTV/+8GzvKFVNX/79u+N8xU1f/vBs7//1TV/+/bvv//VNX/79u+VLJU1f/v8phUslTV/+/ymDfMVNX/79u+I5xU1f/v8pjyhVTV/+/ymCOcVNX/D3JrN8xU1f8PiUU3zFTV/w9ya1SyVNX/D4lFVLJU1f8PXjbyhVTV/w+JRSOcVNX/D4lFaOJU1f8PcmvyhVTV/w9yayOcVNX/D1425vRU1f8Pcmto4lTV/w9IXOb0VNX/D0hc//9U1f8Pcmv//1TV/w/ymPKFVNX/D/KYI5xU1f8vx4nyhVTV/w/ymFSyVNX/D/KYN8xU1f8P8pho4lTV/y/Hieb0VNX/D/KY5vRU1f/PMN3//1TV/88w3fKFVNX/7wbO//9U1f/vBs7yhVTV/8/HifKFVNX/z8eJ5vRU1f/v8pjyhVTV/+/ymOb0VNX/7/KYI5xU1f/v8pho4lTV/+/ymFSyVNX/7/KYN8xU1f8PBs7//1TV/w8GzvKFVNX/LzDd//9U1f8vMN3yhVTV/+9ya/KFVNX/71428oVU1f/vcmsjnFTV/++JRSOcVNX/74lFVLJU1f/viUU3zFTV/+9yazfMVNX/73JrVLJU1f/viUVo4lTV/+9eNub0VNX/70hc5vRU1f/vcmto4lTV/+9ya///VNX/70hc//9U1f+vdBCjJwrB/090EKMnCsH/r0hc9zMKwf9PSFz3MwrB/880J/KF////71428oX////PXjbyhf///89ya/KF////73Jr8oX////PnXryhf///8/HifKF////7/KY8oX////P8pjyhf///88GzvKF////7wbO8oX////PMN3yhf///5cw3R/BVNX/lzDdtd5U1f9nMN0fwVTV/5cw3fKFVNX/zzDd8oVU1f/PMN3//1TV/5cw3YHtVNX/ZzDdtd5U1f9nMN3yhVTV/y8w3fKFVNX/ZzDdge1U1f8vMN3//1TV/89ya////7//z0hc////v//Pcmvyhf+//89IXOb0/7//z1425vT/v//PXjbyhf+//y9ya/KF////L3Jr///////Pcmvyhf///89ya///////L1425vT/v/8vSFzm9P+//y9eNvKF/7//L3Jr8oX/v/8vcmv///+//y9IXP///7//L1425vT/v/8vXjbyhf+//89eNub0/7//z1428oX/v/8v8pjm9P+//y/bvub0/7//L/KY8oX/v/8vBs7yhf+//y8Gzv///7//L9u+////v/8v8pjm9P+//y/ymPKF/7//z/KY5vT/v//P8pjyhf+//88Gzv///7//z9u+////v//PBs7yhf+//8/bvub0/7//z/KY5vT/v//P8pjyhf+//y8GzvKF////LwbO///////PBs7yhf///88Gzv//////z/KY8oUAgP8v8pjyhQCA/88GzvKFAID/LwbO8oUAgP/PXjbyhQCA/y9eNvKFAID/z3Jr8oUAgP8vcmvyhQCA/y/bvq0/////L9u+J3f///9P276tP////0/bvid3////L4egJ3f///9Ph6And////y/bvid3////T9u+J3f///+v276tP////6/bvid3////z9u+rT/////P274nd////8+HoK0/AID/r4egrT8AgP/P276tPwCA/6/bvq0/AID/r4egJ3f/v/+vh6CtP/+//8+HoCd3/7//z4egrT//v/9Ph6CtPwCA/y+HoK0/AID/T9u+rT8AgP8v276tPwCA/y+HoCd3/7//L4egrT//v/9Ph6And/+//0+HoK0//7//r4egJ3f////Ph6And////6/bvid3////z9u+J3f///+vRrepZP+//69Gt3Vz/7//r9u+rT//v/+vHKipZP+//6/bvid3/7//r4egrT//v/+vh6And/+//68cqHVz/7//T0a3qWT/v/9P276tP/+//09Gt3Vz/7//TxyoqWT/v/9P274nd/+//0+HoK0//7//T4egJ3f/v/9PHKh1c/+//68w3ZU0////zwbOlTT////PMN2VNP///y8w3ZU0////LwbOlTT///9PMN2VNP///89IXOb0VNX/z0hc//9U1f/vSFzm9FTV/+9IXP//VNX/z0hc5vT////vSFzm9P///89eNub0////71425vT///8PXjbm9P///y9eNub0////L0hc5vT///8PSFzm9P///y80J+b0////zzQn5vT////vSFz//////89IXP//////73Jr///////Pcmv//////8+dev//////L3Jr//////8Pcmv//////y+dev//////D0hc//////8vSFz//////w9IXOb0VNX/D0hc//9U1f8vSFzm9FTV/y9IXP//VNX/79u+///////P277//////+8Gzv//////zwbO///////PMN3//////y8Gzv//////DwbO//////8vMN3//////w/bvv//////L9u+///////P277m9P///+/bvub0////z/KY5vT////v8pjm9P///w/ymOb0////L/KY5vT///8v277m9P///w/bvub0////L8eJ5vT////Px4nm9P///8/bvub0VNX/z9u+//9U1f/v277m9FTV/+/bvv//VNX/D9u+5vRU1f8P277//1TV/y/bvub0VNX/L9u+//9U1f9PMN2VNFTV/y8GzpU0VNX/TzDd5gtU1f8vBs7mC1TV/88GzpU0VNX/rzDdlTRU1f/PBs7mC1TV/68w3eYLVNX/L/KY8oVU1f8vx4nyhVTV/y+devKFVNX/L9u+J3dU1f8vcmvyhVTV/y8GzvKFVNX/L1428oVU1f8vMN2VNFTV/y8w3fKFVNX/L9u+rT9U1f8vh6CtP1TV/y8GzpU0VNX/L4egJ3dU1f8vMoLmC1TV/y8GzuYLVNX/LzKC3lVU1f8vdBBcaFTV/y9eNt5VVNX/L3QQ8oVU1f8vNCfyhVTV/8/HifKFVNX/z/KY8oVU1f/PnXryhVTV/88GzvKFVNX/z9u+J3dU1f/PcmvyhVTV/88w3ZU0VNX/zzDd8oVU1f/P276tP1TV/8+HoK0/VNX/z4egJ3dU1f/PBs6VNFTV/88yguYLVNX/zwbO5gtU1f/PMoLeVVTV/890EFxoVNX/z1423lVU1f/PXjbyhVTV/880J/KFVNX/z3QQ8oVU1f8vdBBcaKrp/890EFxoqun/L1423lWq6f/PXjbeVarp/y8yguYL////zzKC5gv///8vBs7mC////88GzuYL////TzDd5gv///+vMN3mC////08ygt5V////LzKC3lX///9PSFzeVf///y9eNt5V////z1423lX///+vSFzeVf///88ygt5V////rzKC3lX///8vdBBcaFTV/y90EPKFVNX/z3QQXGhU1f/PdBDyhVTV/88ygt5VVNX/zzKC5gtU1f+vMoLeVVTV/68ygp9MVNX/rzKCITpU1f9PMoKfTFTV/68ygiUVVNX/TzKCITpU1f9PMoLeVVTV/y8ygt5VVNX/TzKCJRVU1f8vMoLmC1TV/5cw3Y1+VNX/zzDd8oVU1f+XMN0PbFTV/2cw3Q9sVNX/ZzDdjX5U1f9nMN25YVTV/2cw3es+VNX/lzDduWFU1f+XMN3rPlTV/5cw3ZU0VNX/rzDdlTRU1f/PMN2VNFTV/68w3eYLVNX/ZzDdlTRU1f9PMN3mC1TV/08w3ZU0VNX/LzDd8oVU1f8vMN2VNFTV/8+devKF////L5168oX////Px4nyhf///y/HifKF////z3QQ8oX///8vdBDyhf///880J/KF////LzQn8oX///8vRrcPbFTV/y8cqA9sVNX/P0a3qWT14P8/HKipZPXg/z9Gt3VzaMv/PxyodXNoy/8vRrcPbFTV/y8cqA9sVNX/z0a3D2xU1f+/RrepZPXg/88cqA9sVNX/vxyoqWT14P+/Rrd1c2jL/89Gtw9sVNX/vxyodXNoy//PHKgPbFTV/2cw3es+VNX/ZzDdlTRU1f+XMN3rPlTV/5cw3ZU0VNX/lzDd6z5U1f9nMN2VNFTV/w/bvmjiVNX/D/KYaOJU1f8P2743zFTV/w/ymDfMVNX/D9u+N8xU1f8P8pho4lTV/++JRWjiVNX/73JraOJU1f/viUU3zFTV/+9yazfMVNX/74lFN8xU1f/vcmto4lTV/2cw3blhVNX/lzDduWFU1f9nMN0PbFTV/5cw3Q9sVNX/ZzDdD2xU1f+XMN25YVTV/08ygiUVVNX/TzKCITpU1f+vMoIlFVTV/68ygiE6VNX/rzKCJRVU1f9PMoIhOlTV/w+JRWjiVNX/D3JraOJU1f8PiUU3zFTV/w9yazfMVNX/D4lFN8xU1f8Pcmto4lTV/++JRVSyVNX/73JrVLJU1f/viUUjnFTV/+9yayOcVNX/74lFI5xU1f/vcmtUslTV/w+JRVSyVNX/D3JrVLJU1f8PiUUjnFTV/w9yayOcVNX/D4lFI5xU1f8PcmtUslTV/09IXN5V////r0hc3lX///9PMoLeVf///68ygt5V////TzKC3lX///+vSFzeVf///+/bvmjiVNX/7/KYaOJU1f/v2743zFTV/+/ymDfMVNX/79u+N8xU1f/v8pho4lTV/08ygp9MVNX/TzKC3lVU1f+vMoKfTFTV/68ygt5VVNX/rzKCn0xU1f9PMoLeVVTV/w/ymFSyVNX/D9u+VLJU1f8P8pgjnFTV/w/bviOcVNX/D/KYI5xU1f8P275UslTV/+/ymFSyVNX/79u+VLJU1f/v8pgjnFTV/+/bviOcVNX/7/KYI5xU1f/v275UslTV/2cw3fKFVNX/ZzDdjX5U1f+XMN3yhVTV/5cw3Y1+VNX/lzDd8oVU1f9nMN2NflTV/2cw3YHtVNX/ZzDdtd5U1f+XMN2B7VTV/5cw3bXeVNX/lzDdge1U1f9nMN213lTV/2cw3fKFVNX/ZzDdH8FU1f+XMN3yhVTV/5cw3R/BVNX/lzDd8oVU1f9nMN0fwVTV/09IXPczv/b/r0hc9zO/9v9PPW8MN7/2/689bww3v/b/Tz1vDDe/9v+vSFz3M7/2/880J/KF////LzQn8oX////PXjbyhf///y9eNvKF////z1428oX///8vNCfyhf///y8GzvKF////zwbO8oX///8vMN3yhf///88w3fKF////LzDd8oX////PBs7yhf///2cw3fKF////LzDd8oX////PMN3yhf///5cw3fKF////ZzDd8oX///8vx4nyhf///8/HifKF////L/KY8oX////P8pjyhf///y/ymPKF////z8eJ8oX///8vcmvyhf///89ya/KF////L5168oX////PnXryhf///y+devKF////z3Jr8oX//////3////9/////f////3////9/////f/9/////f////3////9///////9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////38AAP9/AAD/fwAA/38AAP9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9///////9/////f////3////9//3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f4JafSV8pX0lglp9JXylfSV8pX0l/7//P3ylfSX/v/8//3////9/////f////3////8//z+CWn0l/z//P4JafSX/P/8/glp9Jf9/////f////3////9///+CWoHa/z//v4Jagdr/P/+/fKWB2oJagdp8pYHaglqB2v9/AAD/fwAA/38AAP9/AAD/f////3////9/////f///////f////3////9/////f/+//798pYHa/7//v3ylgdr/f/9//3//f/9//3//f/9//3//f/9//3+CWoHa/z//v4Jagdr/P/+//38AAP9/AAD/fwAA/38AAHylgdqCWoHafKWB2oJagdr/f////3////9/////f////3////9/////f////3////9/////f////3////9///8AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/+//798pYHa/7//v3ylgdr/f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/z//P4JafSX/f////3////9/////f///AAD/fwAA/38AAP9/AAD/f4JafSV8pX0lglp9JXylfSX/f/9//3//f/9//3//f/9//3//f/9//3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAAfKV9Jf+//z98pX0l/7//P/8//z+CWn0l/z//P4JafSX/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3//f////3////9/////f////3///5mZZeaZmWXmmZll5pmZZeb///9/////f////3////9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3+ZmZkZmZmZGZmZmRmZmZkZ////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3//f/9//3//f/9//3//f/9/////f////3////9/////f////3//f////3////9/////f////3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9//3////9/////f////3///////3////9/////f////3////9/////f////3////9/gdqCWoHaglp8pX0lfKV9JUevSC9Hr0gvR69IL0evSC99JXylfSV8pX0lglp9JYJafSWCWn0lglqCWn0lglp9JYHafKWB2nylgdqCWoHaglp9JXylfSV8pX0lglp9JYJaglqB2oJagdp9JXylfSV8pYHafKV8pYHagdp8pUevttBHr7bQR6+20EevttB8pYHa/3////9/////f////3////9/////f///////f////3////9/////f/9/AAD/fwAA/38AAP9/AAAAAP9/AAD/fwAA/38AAP9//3////9/////f////3////9/////f////3////9/////f////3///3ylgdr/f///fKWB2v9/////f///glqB2rdQttD/f////3///7dQttC3ULbQ/3///7dQttCCWoHaglp9Jf9/AAC3UEgv/38AAHylfSX/fwAAfKV9Jf9/AAD/fwAAt1BIL7dQSC//fwAAglp9JbdQSC9Hr7bQ/3///0evttD/f///glqB2v9/////f///fKWB2kevttCCWoHaR6+20P9/////f///fKWB2oJagdq3ULbQfSV8pbdQttC3ULbQt1C20H0lfKWCWoHagdqCWoHaglp8pX0lfKV9JX0lglp9JYJaglp9JYJafSW3UEgvt1BIL7dQSC+3UEgvfKWB2nylgdqB2nylgdp8pXylfSWCWn0lR69IL/9/AAD/fwAA/38AAEevSC9Hr0gv/38AAIJafSX/fwAAR69IL3ylfSX/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3///////3////9/////f////3+B2oJagdqCWv///3////9/////f4HafKX///9/gdp8pf9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD///9/////f////3////9//38AAP9/AAD/fwAA/38AAP9/AAD/fwAA////f////3////9/////f/9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3////9/////f////3////9/////f////3////9//z//f/8//3//P/9//z//f////3////9/////f////3//P/9//z//f/8//3//P/9/////f////3////9///////9/////f////3////9//3////9/////f////3///////3////9/////f////3//f////3////9/////f////38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9//v//f////3/+//9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9//7//v/+//7//v/+//7//v/+//z//v/8//7//P/+//z//f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAAAAD/fwAA/38AAP9/AAD/f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9//3//f/9//3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f/9/////f////3////9/////f////3////9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/////f////3////9/////f////3////9/////f////3////9/////f////3///wAA/38AAP9/AAD/fwAA/38AAP9/AAD/f/9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/fwAA/38AAP///3////9/////f////3////9/////f////3////9/////f////3////9/////fwAA/38AAP9/AAD/fwAA/38AAP9/AAD/f////3////9/////f////3////9/////f/9//3//f/9//3//f/9//3//f/9//3//f/9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f///") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 438, -"index_data": PackedByteArray("VAJSAlMCVwJVAlYCWgJYAlkCWQJbAloCXgJcAl0CXQJfAl4CYAJeAl8CYAJhAl4CYAJiAmECYAJjAmICZAJgAl8CXwJlAmQCaAJmAmcCZwJpAmgCaQJqAmgCaQJrAmoCawJsAmoCbAJtAmoCbgJsAmsCawJvAm4CcgJwAnECcQJzAnICdgJ0AnUCdQJ3AnYCdwJ4AnYCdwJ5AngCeQJ6AngCegJ7AngCfAJ6AnkCeQJ9AnwCgAJ+An8CfwKBAoACggKAAoECggKDAoACggKEAoMCggKFAoQChgKCAoECgQKHAoYCigKIAokCiQKLAooCjgKMAo0CjQKPAo4CkgKQApECkQKTApIClgKUApUClQKXApYCmgKYApkCmAKaApsCmgKcApsCnQKYApsCnAKeApsCnQKbAp8CnwKgAp0CmwKhAp8CoQKiAp8CowKfAqICpAKbAp4CpQKjAqICpQKmAqMCpwKlAqICpwKiAqQCqAKnAqQCqAKkAp4CqQKnAqgCqgKoAp4CngKrAqoCrgKsAq0CrQKvAq4CsAKuAq8CsAKxAq4CsgKwAq8CrwKzArICsgK0ArACsgK1ArQCsQKwArYCsgK3ArUCtQK3ArgCtwK5ArgCtQK4AroCtgK1AroCsQK2ArsCtgK6ArsCugK8ArsCvQKxArsCvgK9ArsCuwK/Ar4CwgLAAsECwQLDAsICxgLEAsUCxQLHAsYCxwLIAsYCxwLJAsgCzALKAssCzALLAs0CzQLOAswCzwLMAs4CzgLQAs8C0ALRAs8C1ALSAtMC0wLVAtQC2ALWAtcC2QLYAtcC2gLZAtcC2wLZAtoC3ALaAtcC2gLdAtsC3gLbAt0C3wLeAt0C4ALcAtcC3QLgAt8C4ALXAuEC4QLfAuAC4wLpAeIC4gLkAuMC5QLkAuIC5QLiAuYC5gLnAuUC6ALnAuYC6QLnAugC6ALmAu4B6gLkAukC6ALqAukC6gLrAuQC5ALrAuMC6wLsAuMC7ALtAuMC7gLsAusC7gLrAu8C8ALuAu8C8ALvAugC8ALoAu4B8QLwAu4B8QLuAfIC8gLzAvEC9gL0AvUC9QL3AvYC+gL4AvkC+QL7AvoC/gL8Av0C/QL/Av4CAgMAAwEDAQMDAwIDBgMEAwUDBQMHAwYDCgMIAwkDCQMLAwoD"), -"material": SubResource("StandardMaterial3D_07ipd"), -"name": "green", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAttBHrwAAAIC20EevAAAAgLbQR68AAACAttBHrwAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgHylfSUAAACAfKV9JQAAAICB2oJaAAAAgIHagloAAACAglqB2gAAAICCWoHaAAAAgHylgdoAAACAfKWB2gAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgH0lgloAAACAfSWCWgAAAICCWn0lAAAAgIJafSUAAACAglqB2gAAAIB9JXylAAAAgIJagdoAAACASC9HrwAAAIBIL0evAAAAgEgvR68AAACASC9HrwAAAIB9JXylAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAfSV8pQAAAIAAAP9/AAAAgH0lfKUAAACAAAD/fwAAAIAAAP9/AAAAgH0lgloAAACASC+3UAAAAIAAAP9/AAAAgAAA/38AAACASC+3UAAAAIBIL7dQAAAAgAAA/38AAACASC+3UAAAAIB9JYJaAAAAgIHagloAAACA////fwAAAIC20LdQAAAAgP///38AAACAgdp8pQAAAID///9/AAAAgIHafKUAAACA////fwAAAID///9/AAAAgLbQt1AAAACAttC3UAAAAID///9/AAAAgIHagloAAACAttC3UAAAAIBIL0evAAAAgAAA/38AAACASC9HrwAAAIAAAP9/AAAAgH0lgloAAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACASC9HrwAAAIB9JYJaAAAAgEgvR68AAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACAfSWCWgAAAIBIL7dQAAAAgIJafSUAAACASC+3UAAAAIBIL7dQAAAAgEgvt1AAAACAglp9JQAAAIB9JYJaAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAfKV9JQAAAIB8pX0lAAAAgIHagloAAACAgdqCWgAAAIC20LdQAAAAgLbQt1AAAACAttC3UAAAAIC20LdQAAAAgH0lfKUAAACAfSV8pQAAAICCWoHaAAAAgIJagdoAAACAgdp8pQAAAICB2oJaAAAAgLbQR68AAACA////fwAAAID///9/AAAAgP///38AAACAttBHrwAAAIC20EevAAAAgP///38AAACAgdqCWgAAAID///9/AAAAgLbQR68AAACAgdp8pQAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///////798pYHaAAAAgHylgdoAAACA/3///wAAAID/f///AAAAgP9///////+/glqB2gAAAID/f///AAAAgIJagdoAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/8//7//f/+//z//v/9//7//P/+//3//v/8//7//f/+//7//v///////v/+///////+//7///////7//v/////8AAP9//3//vwAA/3////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/9//78AAP9//3//vwAA/3////+/////f////7////9/////v////3/+/wCA////f/////////9///8AgP///3///wCA////f/////////9//////////3//////////f/////////9///8AgP///3//////////f/////////9//////////3///wCA////f///AID///9//v8AgP///3/+////////f/////////9///////+/AAAAAP+//78AAAAA/7//vwAAAAD/v/+/AAAAAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAAAA/7//fwAAAAD/v/9/AAAAAP+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3///////7//f///////v/9///////+//3////7//7//f///////v/9///////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////v/9//3////+//3//f////7//f/9/////vwAA/3//f/+/AAD/f/9//78AAKmqVFX/vwAAqapUVf+/qir/f6qq/7+qKv9/qqr/vwAA/3//f/+/AAD/f/9//7////9/////////qaoAAKnq////f////////6mqAACp6lTV/3///6nq////f/////9U1f9///+p6v///3///////3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/9///wAAAID/3///AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgA==") -}, { -"aabb": AABB(-0.08, -0.168802, -0.346091, 0.16, 0.337604, 0.692182), -"attribute_data": PackedByteArray("XS4Xv2xJncBdLhe/8aurwF0uFz9sSZ3AXS4XP/Grq8BdLhc/xoOvwF0uF7/Gg6/AXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhc/aPucwF0uF79o+5zAXS4XP8I1r8BdLhe/wjWvwF0uFz+Mq3XAXS4Xv4yrdcBdLhc/R3ORwF0uF79Hc5HAXS4XP4yrdcBdLhe/jKt1wF0uFz9Hc5HAXS4Xv0dzkcBdLhe/JccQQF0uF781BOg/XS4XPyXHEEBdLhc/NQToP10uF7/ipNg/XS4XP+Kk2D9dLhc/CK69wF0uFz/0Qg7AXS4XvwiuvcBdLhe/9EIOwAiu3UCMq3XACK7dQEdzkcBdcgBBjKt1wAiu3UD6qbTAYUnvQDzyr8AOAfJAkDqtwP0s/ECgDqPAXXIAQUdzkcD0Qk5A+qm0wPRCTkBHc5HA9EJOQIyrdcBBDCtAPPKvwOicJUCQOq3ACUURQKAOo8CO1QdAR3ORwI7VB0CMq3XAXS4Xv4yrdcBdLhe/R3ORwF0uFz+Mq3XAXS4XP0dzkcBdLhe/btQRwF0uF78iSTbAXS4XP27UEcBdLhc/Ikk2wF1yAMFHc5HA/Sz8wKAOo8BdcgDBjKt1wA4B8sCQOq3AYUnvwDzyr8AIrt3AjKt1wAiu3cBHc5HACK7dwPqptMD0Qk7AR3ORwPRCTsD6qbTA9EJOwIyrdcBBDCvAPPKvwOicJcCQOq3ACUURwKAOo8CO1QfAjKt1wI7VB8BHc5HAXS4XP7MVv0BdLhc/DVDRQF0uF7+zFb9AXS4Xvw1Q0UBdLhe/9EIOwF0uF78Irr3AXS4XP/RCDsBdLhc/CK69wF0uF7/6UHXAXS4XP/pQdcBdLhe/RtxQwF0uFz9G3FDAwmAwQCoigUDCYDBAXEgEQCaTSUDvEWlAJpNJQChf77/CYDBACDCXvsJgMED54RDAw50nwe8RaUDDnSfBKF/vvyzSAcHvEWlALNIBwShf77/DnSfBfkyZP8OdJ8EMECQ/LNIBwX5MmT8s0gHBDBAkP8OdJ0EIMJe+w50nQVxIBEAs0gFBCDCXvizSAUFcSARAw50nwX5MmT/DnSfBDBAkPyzSAcF+TJk/LNIBwQwQJD/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6tADBAkP/dzq0B+TJk/kLk/QAwQJD+QuT9AfkyZP8OdJ0EoX++/w50nQe8RaUAs0gFBKF/vvyzSAUHvEWlA3lgQQZoT3EB9QVdBMk68QO0ZE0H6qfRAjAJaQZLk1EDeWBDBmhPcQO0ZE8H6qfRAfUFXwTJOvECMAlrBkuTUQCaTyb/26hdBJpPJv8RRC0Emk8k/9uoXQSaTyT/EUQtBw50nQQwQJD/DnSdBfkyZPyzSAUEMECQ/LNIBQX5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMDDnSdBDBAkP8OdJ0F+TJk/LNIBQQwQJD8s0gFBfkyZP8OdJ8FcSARAw50nwQgwl74s0gHBXEgEQCzSAcEIMJe+93OrQChf77/3c6tA7xFpQJC5P0AoX++/kLk/QO8RaUDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMDCYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMAmk8k/mpjQwCaTyb+amNDAJpPJP+D2MMEmk8m/4PYwwSaTyT/26hdBJpPJv/bqF0Emk8k/xFELQSaTyb/EUQtB93OrQAwQJD/3c6tAfkyZP5C5P0AMECQ/kLk/QH5MmT/CYDDAKiKBQCaTScDvEWlAwmAwwFxIBEAmk0nAKF/vv8JgMMAIMJe+wmAwwPnhEMD3c6vAXEgEQPdzq8AIMJe+kLk/wFxIBECQuT/ACDCXvsJgMMAqIoFAJpNJwO8RaUDCYDDAXEgEQCaTScAoX++/wmAwwAgwl77CYDDA+eEQwF0ulz9E/uLAXS6XP+oDX8BdLpe/RP7iwF0ul7/qA1/A93OrwO8RaUD3c6vAKF/vv5C5P8DvEWlAkLk/wChf77/CYDBAKiKBQMJgMEBcSARAJpNJQO8RaUAmk0lAKF/vv8JgMEAIMJe+wmAwQPnhEMD3c6tACDCXvvdzq0BcSARAkLk/QAgwl76QuT9AXEgEQJl++EBSXu8/In8BQSatNkDzAK9AUl7vP/WBj0AmrTZA9YGPQLbEYj/zAK9At8RiP/dzq8B+TJk/93OrwAwQJD+QuT/AfkyZP5C5P8AMECQ/93OrwH5MmT/3c6vADBAkP5C5P8B+TJk/kLk/wAwQJD/1gY/AtsRiP/WBj8AmrTZA8wCvwLfEYj/zAK/AUl7vPyJ/AcEmrTZAmX74wFJe7z9dLhc/jKt1wF0uF7+Mq3XAXS4XP/huh8BdLhe/+G6HwF0ulz9SXu8/XS6Xv1Je7z9dLpc/t8RiP10ul7+3xGI/JpPJvo6DSkEmk8m+XOo9QSaTyT6Og0pBJpPJPlzqPUHA2N1A+G6HwMDY3UCMq3XAXZkdvvhuh8DPLCI/jKt1wF2ZHb6Mq3XAjoM6Qd2Zi8COgzpB5kFjwFzqLUHdmYvAKlEhQeZBY8BdLpe/mX7YwF0ulz+ZftjAXS6Xv/MAj8BdLpc/8wCPwF0uFz+Mq3XAXS4Xv4yrdcAmk8k+KwiUwCaTyb4rCJTAXS4XP4yrdcBdLhe/jKt1wF0uFz/4bofAXS4Xv/huh8DA2N3AjKt1wMDY3cD4bofAzywiv4yrdcBdmR0++G6HwF2ZHT6Mq3XAXS4Xv8DY/UBdLhe/qZlYP10uFz/A2P1AXS4XP6mZWD+OgzrB5kFjwI6DOsHdmYvAKlEhweZBY8Bc6i3B3ZmLwF0uFz+TzxjBXS4Xv5PPGMEmk8k+saAqwSaTyb6xoCrB8Pf7Pxyrj78mk8k/IIarviaTyT+udPS/XS6XP6509L9dLpc/IIarvl0ulz8ghqu+XS6XP6509L8mk8k/IIarviaTyT+udPS/8Pf7Pxyrj79dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vv/D3+78cq4+/JpPJv6509L8mk8m/IIarvl0ul78ghqu+XS6Xv6509L9dLpe/lJWKvyaTyb+UlYq/XS6Xvyhf778mk8m/KF/vvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/XS6Xv6509L9dLpe/IIarviaTyb+udPS/JpPJvyCGq77w9/u/HKuPvyaTyT+UlYq/XS6XP5SVir8mk8k/KF/vv10ulz8oX++/JpPJv+D2MMFdLpe/zDHdwCaTyb+amNDAJpPJP5qY0MBdLpe/R6oqwV0ulz/MMd3AJpPJP+D2MMFdLpc/R6oqwYwCWsHVuyVAzywiv9W7JUCMAlrBTQBtQM8sIr9NAG1Aw50nwU0AbUAs0gHBTQBtQPdzq8BNAG1AkLk/wE0AbUDw9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIr/zjDdAwRxHwfOMN0DPLCK/9pDgP8EcR8H2kOA/8Pf7v4wCakHw9/u/aBbRP/D3+z+MAmpB8Pf7P2gW0T/w9/s/aBbRP/D3+z/BHFdB8Pf7v2gW0T/w9/u/wRxXQc8sIj/2kOA/wRxHQfaQ4D/PLCI/84w3QMEcR0HzjDdAjAJaQdW7JUCMAlpBTQBtQM8sIj/VuyVAw50nQU0AbUAs0gFBTQBtQPdzq0BNAG1AkLk/QE0AbUDPLCI/TQBtQPD3+z/zhrNA8Pf7P45UmkDCYDBAjlSaQMJgMEBcSARA8Pf7P1xIBEDw9/s/JcejP10ul78ckx1BXS6Xv1mij0BdLpc/HJMdQV0ulz9Zoo9A7/7tQLbEYj90/TVBtsRiP3Z+FkGLUtlA5RtRQUIPv0BdLpc/hf6IQF0ul7+F/ohAXS6XP8KWT0BdLpe/wpZPQO/+7cC2xGI/dP01wbbEYj92fhbBi1LZQOUbUcFCD79A8Pf7P0b2+z7w9/s/CDCXvsJgMEAIMJe+wmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XAjAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDDnSdB+eEQwMEcR0EIMJe+w50nQQgwl74s0gFB+eEQwPdzq0D54RDALNIBQQgwl773c6tACDCXvpC5P0D54RDAkLk/QAgwl77PLCI/CDCXvsEcR8EIMJe+wRxHwfnhEMDDnSfBCDCXvsOdJ8H54RDAzywiv8JGQ8As0gHB+eEQwIwCWsHCRkPAjAJawfnhEMD3c6vA+eEQwPdzq8AIMJe+LNIBwQgwl76QuT/A+eEQwM8sIr8IMJe+kLk/wAgwl74s0gFBXEgEQCzSAUEqIoFA93OrQFxIBED3c6tAKiKBQM8sIj+OVJpAkLk/QCoigUDDnSdBKiKBQM8sIj9cSARAkLk/QFxIBEDBHEdBjlSaQMOdJ0FcSARAwRxHQSatNkCMAlpBJq02QIwCWkFcSARAzywiPxas7r+QuT9AFqzuv88sIj9MRkC/93OrQBas7r8s0gFBFqzuv8OdJ0EWrO6/wRxHQUxGQL/BHEdBFqzuv4wCWsFixYO/zywiv2LFg7+MAlrB4DisPc8sIr/gOKw9zywiv0xGQL/BHEfBTEZAv88sIr8WrO6/wRxHwRas7r+QuT/AFqzuv8OdJ8EWrO6/93OrwBas7r8s0gHBFqzuv4wCWkHgOKw9zywiP+A4rD2MAlpBYsWDv88sIj9ixYO/zywiv1xIBEDPLCK/jlSaQJC5P8BcSARAkLk/wCoigUD3c6vAKiKBQCzSAcEqIoFALNIBwVxIBED3c6vAXEgEQMOdJ8EqIoFAwRxHwY5UmkDBHEfBJq02QMOdJ8FcSARAjAJawVxIBECMAlrBJq02QF0ulz8cfxdBXS6Xvxx/F0FdLpc/qTGqQF0ul7+pMapA8Pf7v/OGs0DCYDDAjlSaQPD3+7+OVJpA8Pf7v1xIBEDCYDDAXEgEQPD3+78lx6M/8Pf7v0b2+z7CYDDACDCXvvD3+78IMJe+8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAXS4XP8DY/UBdLhc/KlExQV0uF7/A2P1AXS4XP2gW0T/w9/s/aBbRP/D3+z+MAmpBXS4XP46DSkFdLhe/KlExQV0uF79oFtE/8Pf7v2gW0T9dLhe/joNKQfD3+7+MAmpBjAJaQVxIBECMAlpBJq02QM8sIj9cSARAwRxHQSatNkDBHEdBjlSaQM8sIj+OVJpA8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHBHEfBjlSaQMEcR8EmrTZAzywiv45UmkDPLCK/XEgEQIwCWsFcSARAjAJawSatNkDw9/u/wRxXQfD3+79oFtE/8Pf7P8EcV0Hw9/s/aBbRP8EcR8EIMJe+wRxHwfnhEMDPLCK/CDCXvs8sIr/CRkPAjAJawcJGQ8CMAlrB+eEQwPD3+7/BHFdB8Pf7v2gW0T/w9/s/wRxXQfD3+z9oFtE/jAJaQcJGQ8CMAlpB+eEQwM8sIj/CRkPAwRxHQfnhEMDBHEdBCDCXvs8sIj8IMJe+8Pf7P2gW0T/w9/s/jAJqQfD3+79oFtE/8Pf7v4wCakHw9/s/CDCXvvD3+78IMJe+8Pf7P8JGQ8Dw9/u/wkZDwPD3+z+OVJpA8Pf7v45UmkDw9/s/XEgEQPD3+79cSARA8Pf7PyQZu8Dw9/s/IGhwPV0ulz8kGbvAXS6XPyBocD3w9/s/lmEwv10ulz+WYTC/8Pf7P/nhEMBdLpc/+eEQwF0ul78kGbvAXS6XvyBocD3w9/u/JBm7wPD3+78gaHA98Pf7P5ZhML9dLpc/lmEwv/D3+z/54RDAXS6XP/nhEMBdLpc/IGhwPV0ulz8kGbvA8Pf7PyBocD3w9/s/JBm7wF0ul7+WYTC/8Pf7v5ZhML9dLpe/+eEQwPD3+7/54RDA8Pf7vyBocD3w9/u/JBm7wF0ul78gaHA9XS6XvyQZu8BdLpe/lmEwv/D3+7+WYTC/XS6Xv/nhEMDw9/u/+eEQwFc6OkAoX++/iOGqPyhf778kGdtA+eEQwFc6OkCUlYq/fvlwP/nhEMAkGdtAlmEwv375cD+WYTC/iOGqP5SVir9XOjrAKF/vvyQZ28D54RDAiOGqvyhf779XOjrAlJWKv375cL/54RDAJBnbwJZhML9++XC/lmEwv4jhqr+UlYq/XS6Xv4yrdcDw9/u/wkZDwPD3+7+Mq3XA8Pf7P4yrdcDw9/s/wkZDwF0ulz+Mq3XA8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHw9/s/Jq02QMJgMEAmrTZA8Pf7P45UmkDCYDBAjlSaQMJgMMCOVJpA8Pf7v45UmkDw9/u/Jq02QMJgMMAmrTZA8Pf7v/OGs0Dw9/s/84azQMJgMEAmrTZA8Pf7PyatNkDCYDBAXEgEQPD3+z9cSARA8Pf7PyXHoz/w9/u/XEgEQMJgMMBcSARA8Pf7vyXHoz/CYDDAJq02QPD3+78mrTZAwmAwQMEcV0HCYDBAjAJqQfD3+z/BHFdB8Pf7P4wCakHCYDBA+eEQwPD3+z/54RDAwmAwQMJGQ8Dw9/s/wkZDwPD3+z+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XAwmAwwPnhEMDw9/u/+eEQwPD3+z/54RDAwmAwQPnhEMDw9/s/CDCXvsJgMEAIMJe+wmAwwAgwl77w9/u/CDCXvvD3+7/54RDAwmAwwPnhEMDw9/u/Rvb7PvD3+z9G9vs+8Pf7v8EcV0Hw9/u/jAJqQcJgMMDBHFdBwmAwwIwCakHCYDBAwRxXQcJgMECMAmpB8Pf7P8EcV0Hw9/s/jAJqQV1yAMHaCcu/XXIAwagD8r7zvEXB2gnLv/O8RcGoA/K+XXIAQagD8r5dcgBB2gnLv/O8RUGoA/K+87xFQdoJy7/PLCI/CDCXvs8sIj9G9vs+zywiPyXHoz9++XC/+eEQwM8sIj9cSARAzywiP8JGQ8DPLCI/jlSaQF1yAMGMq3XAzywiP4yrdcAkGdvA+eEQwCQZ28CWYTC/XXIAwcJGQ8B++XC/lmEwv/O8RcG2xGI/87xFwcJGQ8D1gY/AtsRiP/MHIcCLUtlA9YGPwI5UmkDPLCI/i1LZQM8sIj/zhrNAzywiv0b2+z7PLCK/CDCXvs8sIr8lx6M/zywiv8JGQ8B++XA/+eEQwM8sIr9cSARAXXIAQYyrdcDPLCK/jKt1wCQZ20D54RDAJBnbQJZhML9++XA/lmEwv11yAEHCRkPA87xFQbbEYj/zvEVBwkZDwPWBj0C2xGI/8wchQItS2UD1gY9AjlSaQM8sIr+OVJpAzywiv/OGs0DPLCK/i1LZQPD3+z8nOFRA8Pf7vyc4VEDw9/s/7jMIP/D3+7/uMwg/8Pf7P7bEYj/w9/u/tsRiP/D3+z/CRkPA8Pf7v8JGQ8BdLpc/jKt1wF0ul7+Mq3XAXS6XP7bEYj/w9/s/tsRiP10ulz8mrTZA8Pf7P45UmkDw9/u/jlSaQF0ul78mrTZA8Pf7v7bEYj9dLpe/tsRiP/D3+z/mD8K/8Pf7P2gW0T/w9/u/5g/Cv/D3+79oFtE/8Pf7v+oDX8Dw9/u/87w1wV0ul7/qA1/AXS6Xv/MAj8BdLpe/7/7NwF0ulz/zAI/AXS6Xv3T9JcFdLpc/7/7NwF0ulz/qA1/A8Pf7P+oDX8BdLpc/dP0lwfD3+z/zvDXBXS4XP6mZWD/w9/s/aBbRP10uFz8cq4+/XS4Xvxyrj79dLhe/qZlYP10uF7/0Qg7AXS4XvwiuvcBdLhc/9EIOwF0uFz8Irr3AXS4XP7rk4MBdLpc/uuTgwPD3+z+65ODAXS6XP/O8NcFdLhe/uuTgwF0ul7/zvDXBXS6Xv7rk4MDw9/u/aBbRP/D3+7+65ODA8Pf7PyXHoz/w9/u/JcejP/D3+z9G9vs+8Pf7v0b2+z7w9/s/i1LZQPD3+7+LUtlA8Pf7P/OGs0Dw9/u/84azQMlNgr8oX++/yU2Cv5SVir/T/PK/KF/vv9P88r+UlYq/0/zyvyhf77/T/PK/lJWKv+7VMcAoX++/7tUxwJSVir/JTYI/KF/vv9P88j8oX++/yU2CP5SVir/T/PI/lJWKv9P88j8oX++/7tUxQChf77/T/PI/lJWKv+7VMUCUlYq/CK7dQPqptMAIrt1AR3ORwPRCTkD6qbTACK7dQPqptMAIrt1AR3ORwPRCTkD6qbTAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAXS4XPyJJNsBdLhc/btQRwF0uF78iSTbAwRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/wRxHQfOMN0DPLCI/84w3QMEcR0H2kOA/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/XS4XvzUE6D9dLhe/4qTYP10uFz81BOg/jAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAjAJaQZLk1EDtGRNB+qn0QH1BV0EyTrxAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/JpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBJpPJP5qY0MBdLpc/R6oqwSaTyT/g9jDBXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAXS6Xv8KWT0BdLpc/wpZPQF0ul7+F/ohAwmAwwPnhEMDCYDDACDCXviaTScAoX++/wmAwwPnhEMDCYDDACDCXviaTScAoX++/w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+w50nQfnhEMDBHEdBCDCXvsOdJ0EIMJe+kLk/wChf77+QuT/A7xFpQPdzq8AoX++/kLk/wChf77+QuT/A7xFpQPdzq8AoX++/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/LNIBwRas7r/3c6vAFqzuv8OdJ8EWrO6/8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpB8Pf7P4wCakHw9/s/wRxXQcJgMECMAmpBw50nwSoigUDBHEfBJq02QMOdJ8FcSARAw50nwSoigUDBHEfBJq02QMOdJ8FcSARAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXZkdvoyrdcBdmR2++G6HwM8sIj+Mq3XAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAXS6XP/MAj8BdLpe/8wCPwF0ulz+ZftjAJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBJpPJvrGgKsEmk8k+saAqwV0uF7+TzxjBXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XAXXIAQcJGQ8AkGdtAlmEwv11yAEGMq3XA8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+78IMJe+8Pf7v8JGQ8Dw9/s/wkZDwPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+79cSARA8Pf7P1xIBEDw9/u/jlSaQPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwPD3+7+Mq3XA8Pf7v8JGQ8DCYDDAwkZDwA=="), -"format": 34359742487, -"index_count": 132, -"index_data": PackedByteArray("DgMMAw0DEQMPAxADFAMSAxMDFwMVAxYDGgMYAxkDHQMbAxwDIAMeAx8DIwMhAyIDJgMkAyUDKQMnAygDLAMqAysDLwMtAy4DMgMwAzEDNQMzAzQDOAM2AzcDOwM5AzoDPgM8Az0DQQM/A0ADRANCA0MDRwNFA0YDSgNIA0kDTQNLA0wDUANOA08DUwNRA1IDVgNUA1UDWQNXA1gDXANaA1sDXwNdA14DYgNgA2EDZQNjA2QDaANmA2cDawNpA2oDbgNsA20DcQNvA3ADdANyA3MDdwN1A3YDegN4A3kDfQN7A3wDgAN+A38DgAOBA4IDhQODA4QDiAOGA4cDiwOJA4oDjgOMA40D"), -"material": SubResource("StandardMaterial3D_2y71d"), -"name": "_defaultMat", -"primitive": 3, -"uv_scale": Vector4(0, 0, 0, 0), -"vertex_count": 911, -"vertex_data": PackedByteArray("kMJ1vN2KHj5/Jmy9kMJ1vFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PFjPJj40nIa9kMJ1PMkEKT4YB4u9kMJ1vMkEKT4YB4u9kMJ1PCqz+z09pqe9kMJ1PEo7ED49pqe9kMJ1vCqz+z09pqe9kMJ1vEo7ED49pqe9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj5/Jmy9kMJ1vN2KHj5/Jmy9kMJ1PCqz+z1tLjS+kMJ1vCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1vEo7ED5tLjS+kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PEo7ED7kz1y9kMJ1vEo7ED7kz1y9kMJ1PN2KHj7r90y+kMJ1PFjPJj5xs0S+kMJ1vN2KHj7r90y+kMJ1vFjPJj5xs0S+kMJ1PMkEKT7/fUK+kMJ1vMkEKT7/fUK+kMJ1vEo7ED5tLjS+kMJ1vEo7ED49pqe9kMJ1PEo7ED5tLjS+kMJ1PEo7ED49pqe9kMJ1PCqz+z1tLjS+kMJ1PEo7ED5tLjS+kMJ1PCqz+z2SzVC+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1PFjPJj5xs0S+kMJ1PN2KHj7r90y+kMJ1PEo7ED6SzVC+kMJ1PHDaLD49pqe9kMJ1PEo7ED49pqe9kMJ1PCqz+z09pqe9kMJ1PMkEKT4YB4u9kMJ1PFjPJj40nIa9kMJ1PN2KHj5/Jmy9kMJ1PEo7ED7kz1y9kMJ1PCqz+z3kz1y9kMJ1PCqz+z2SzVC+kMJ1PEo7ED6SzVC+kMJ1vCqz+z2SzVC+kMJ1vEo7ED6SzVC+kMJ1PEo7ED6SzVC+kMJ1PN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vEo7ED6SzVC+kMJ1vN2KHj7r90y+kMJ1vCqz+z2SzVC+kMJ1vFjPJj5xs0S+kMJ1vMkEKT7/fUK+kMJ1vCqz+z1tLjS+kMJ1vEo7ED5tLjS+kMJ1vHDaLD5tLjS+kMJ1vEo7ED49pqe9kMJ1vHDaLD49pqe9kMJ1vCqz+z09pqe9kMJ1vMkEKT4YB4u9kMJ1vFjPJj40nIa9kMJ1vN2KHj5/Jmy9kMJ1vCqz+z3kz1y9kMJ1vEo7ED7kz1y9kMJ1vHDaLD5tLjS+kMJ1vMkEKT7/fUK+kMJ1PHDaLD5tLjS+kMJ1PMkEKT7/fUK+kMJ1vHDaLD49pqe9kMJ1vHDaLD5tLjS+kMJ1PHDaLD49pqe9kMJ1PHDaLD5tLjS+kMJ1vHDaLD49pqe9kMJ1PHDaLD49pqe9kMJ1vMkEKT4YB4u9kMJ1PMkEKT4YB4u9KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+CtejPY5rib0OPYg+CtejPcRMlT0OPYg+CtejPY5rib14CVM+CtejPcRMlT14CVM+CtejPcRMlT0OPYg+KVyPPaXHqT0OPYg+CtejPcRMlT14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+KVyPPSUA3rwOPYg+KVyPPX3CBj14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb0OPYg+CtejPY5rib0OPYg+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPXDmnb14CVM+CtejPY5rib14CVM+KVyPPSUA3rx4CVM+CtejPcRMlT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+CtejvY5rib1jWws+KVyPvXDmnb1jWws+CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9CtejvcRMlT0OPYg+CtejvY5rib0OPYg+CtejvcRMlT14CVM+CtejvY5rib14CVM+CtcjPV/eGL6Vpmq+CtcjPRMX/r2+9a6+CtcjPXDaLL65IG++CtcjPZsHE77QMrG+CtcjvV/eGL6Vpmq+CtcjvXDaLL65IG++CtcjvRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPRMX/r2+9a6+CtcjvZsHE77QMrG+CtcjvRMX/r2+9a6+KVyPvaXHqT0OPYg+CtejvcRMlT0OPYg+KVyPvaXHqT14CVM+CtejvcRMlT14CVM+KVyPvXDmnb0OPYg+CtejvY5rib0OPYg+KVyPvSUA3rwOPYg+CtejvcRMlT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT0OPYg+CtejvY5rib0OPYg+KVyPvXDmnb0OPYg+CtejvY5rib14CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPvX3CBj0OPYg+KVyPvSUA3rx4CVM+KVyPvX3CBj14CVM+CtejvcRMlT1jWws+CtejvY5rib1jWws+CtejvcRMlT1+1Zs9CtejvY5rib1+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9CtejvY5rib1+1Zs9CtejvcRMlT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+CtejvY5rib14CVM+CtejvcRMlT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+CtcjvXDaLL65IG++CtcjPXDaLL65IG++CtcjvZsHE77QMrG+CtcjPZsHE77QMrG+CtcjPXDaLL65IG++CtcjvXDaLL65IG++CtcjPV/eGL6Vpmq+CtcjvV/eGL6Vpmq+KVyPvaXHqT1jWws+CtejvcRMlT1jWws+KVyPvaXHqT1+1Zs9CtejvcRMlT1+1Zs9KVyPvXDmnb1jWws+CtejvY5rib1jWws+KVyPvSUA3rxjWws+CtejvcRMlT1jWws+KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvSUA3rxjWws+KVyPvX3CBj1jWws+KVyPvSUA3rx+1Zs9KVyPvX3CBj1+1Zs9KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9KVyPPSUA3rx+1Zs9CtejPcRMlT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9kML1vJfrQL17glK+kML1vJfrQL05Sem9kML1PJfrQL17glK+kML1PJfrQL05Sem9CtejPY5rib1jWws+CtejPcRMlT1jWws+CtejPY5rib1+1Zs9CtejPcRMlT1+1Zs9KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+CtejPY5rib1jWws+CtejPcRMlT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPSUA3rxjWws+KVyPPX3CBj1+1Zs9KVyPPSUA3rx+1Zs9kML1PGEKtbzy+Um+kML1PJfrQL17glK+kML1PGEKtbw2Pg6+kML1PJfrQL05Sem9kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+CtejPcRMlT1jWws+KVyPPaXHqT1jWws+CtejPcRMlT1+1Zs9KVyPPaXHqT1+1Zs9KVyPPXDmnb1jWws+CtejPY5rib1jWws+KVyPPXDmnb1+1Zs9CtejPY5rib1+1Zs9kML1vFYTPjs5Sem9kML1vJfrQL05Sem9kML1vFMTPjs2Pg6+kML1vGEKtbw2Pg6+kML1vJfrQL17glK+kML1vGEKtbzy+Um+kMJ1vCqz+z22GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD62GIC7kMJ1PAUXCD62GIC7kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kML1vFMTPjs2Pg6+kML1PFMTPjs2Pg6+CtcjvHZUEj42mZc+CtcjvHZUEj7GW40+CtcjPHZUEj42mZc+CtcjPHZUEj7GW40+kMJ1vAUXCD4mUTQ+kMJ1vCqz+z0mUTQ+kMJ1vAUXCD62GIC7kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7CtcjvHZUEj42mZc+kMJ1vCqz+z02mZc+CtcjvHZUEj7GW40+kMJ1vCqz+z1WHoM+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbw2Pg6+kML1PGEKtbw2Pg6+kMJ1PCqz+z02mZc+kMJ1vCqz+z02mZc+CtcjPHZUEj42mZc+CtcjvHZUEj42mZc+kMJ1PCqz+z0mUTQ+kMJ1vCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1vAUXCD4mUTQ+kMJ1PCqz+z0mUTQ+kMJ1PAUXCD4mUTQ+kMJ1PCqz+z3d0IM8kMJ1PAUXCD62GIC7kMJ1PCqz+z22GIC7kMJ1vAUXCD4mUTQ+kMJ1vAUXCD62GIC7kMJ1PAUXCD4mUTQ+kMJ1PAUXCD62GIC7kMJ1PCqz+z02mZc+CtcjPHZUEj42mZc+kMJ1PCqz+z1WHoM+CtcjPHZUEj7GW40+kMJ1vCqz+z1WHoM+kMJ1PCqz+z1WHoM+CtcjvHZUEj7GW40+CtcjPHZUEj7GW40+zcxMvQGuWD3kz1y9CtcjvQGuWD1e5Aq9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9kML1vAGuWD1e5Aq9kML1PMRMlT1e5Aq9kML1PMRMlT20XZe9CtcjPcRMlT1e5Aq9CtcjPcRMlT20XZe9zcxMPcRMlT3kz1y9kML1vAGuWD1e5Aq9CtcjvQGuWD1e5Aq9kML1vMRMlT1e5Aq9CtcjvcRMlT1e5Aq9zcxMvcRMlT3kz1y9CtcjvcRMlT20XZe9CtcjvcRMlT1e5Aq9kML1vMRMlT1e5Aq9kML1vMRMlT20XZe9kML1PAGuWD20XZe9CtcjPQGuWD20XZe9kML1PMRMlT20XZe9CtcjPcRMlT20XZe9CtcjPQGuWD1e5Aq9kML1PAGuWD1e5Aq9CtcjPcRMlT1e5Aq9kML1PMRMlT1e5Aq9kML1PAGuWD20XZe9kML1PAGuWD1e5Aq9CtcjPQGuWD20XZe9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9CtcjvQGuWD20XZe9kML1vAGuWD20XZe9CtcjvcRMlT20XZe9kML1vMRMlT20XZe9CtcjvRMX/r2+9a6+kML1vEyhFr6dpHS+CtcjvV/eGL6Vpmq+CtcjPV/eGL6Vpmq+kML1vJ1IAb659qm+kML1PEyhFr6dpHS+CtcjPRMX/r2+9a6+kML1PJ1IAb659qm+zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8KVyPPSUA3rzQMrE+KVyPPSUA3rzd0IM8KVyPPSUA3rwOPYg+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPSUA3rx+1Zs9zcxMveBbUzzd0IM8zcxMveBbUzyn1qE+zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPPTLcxr3d0IM8KVyPPTLcxr2n1qE+zcxMvWqk6LvQMrE+zcxMvWqk6Lvd0IM8zcxMPWqk6LvQMrE+zcxMPWqk6Lvd0IM8zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMPfTR773d0IM8zcxMPfTR772n1qE+KVyPvTLcxr3d0IM8KVyPvTLcxr2n1qE+zcxMvfTR773d0IM8zcxMvfTR772n1qE+zcxMvWqk6LvQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6Lvd0IM8KVyPvSUA3rwOPYg+KVyPvSUA3rx4CVM+KVyPvSUA3rxjWws+KVyPvSUA3rx+1Zs9KVyPvSUA3rzd0IM8zcxMvfTR773d0IM8zcxMvTLcxr3d0IM8KVyPvTLcxr3d0IM8KVyPvSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvWqk6Lvd0IM8kML1PJ1IAb659qm+kML1PFYTPjvo65O+kML1vJ1IAb659qm+kML1vFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1PEyhFr6dpHS+kML1PJ1IAb659qm+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjtpcUG+kML1vFYTPjvo65O+kML1vEyhFr6dpHS+kML1vJ1IAb659qm+zcxMveBbUzzd0IM8zcxMvX3CBj3d0IM8KVyPvX3CBj3d0IM8KVyPvWe90j3d0IM8zcxMvWe90j3d0IM8zcxMvSqz+z3d0IM8KVyPvWe90j3QMrE+KVyPvaXHqT3QMrE+KVyPvWe90j3d0IM8KVyPvaXHqT2n1qE+KVyPvaXHqT0OPYg+KVyPvX3CBj2n1qE+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvaXHqT1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj1jWws+KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPaXHqT2n1qE+KVyPPX3CBj0OPYg+KVyPPaXHqT0OPYg+KVyPPWe90j3d0IM8KVyPPaXHqT14CVM+KVyPPWe90j3QMrE+KVyPPaXHqT3QMrE+KVyPPaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPPaXHqT1+1Zs9KVyPPX3CBj3d0IM8KVyPPX3CBj1+1Zs9KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvTLcxr3d0IM8KVyPvXDmnb1+1Zs9KVyPvXDmnb0OPYg+KVyPvSUA3rzd0IM8KVyPvSUA3rx+1Zs9KVyPvTLcxr2n1qE+KVyPvSUA3rwOPYg+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+KVyPvSUA3rzQMrE+KVyPvX3CBj3d0IM8KVyPvX3CBj1+1Zs9zcxMveBbUzzd0IM8KVyPvX3CBj1jWws+KVyPvX3CBj14CVM+KVyPvX3CBj0OPYg+zcxMveBbUzyn1qE+KVyPvX3CBj2n1qE+zcxMPSqz+z3QMrE+zcxMPSqz+z3d0IM8KVyPPWe90j3QMrE+KVyPPWe90j3d0IM8zcxMPeBbUzzd0IM8zcxMPeBbUzyn1qE+KVyPPX3CBj3d0IM8KVyPPX3CBj2n1qE+KVyPPX3CBj1+1Zs9KVyPPX3CBj0OPYg+KVyPPX3CBj1jWws+KVyPPX3CBj14CVM+KVyPvWe90j3QMrE+KVyPvWe90j3d0IM8zcxMvSqz+z3QMrE+zcxMvSqz+z3d0IM8KVyPPSUA3rzd0IM8KVyPPTLcxr3d0IM8KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPXDmnb1jWws+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPSUA3rxjWws+KVyPPXDmnb0OPYg+KVyPPTLcxr2n1qE+KVyPPZfrQL2n1qE+KVyPPSUA3rwOPYg+KVyPPSUA3rzQMrE+KVyPPZfrQL3QMrE+kML1PEyhFr6dpHS+kML1vEyhFr6dpHS+kML1PJfrQL17glK+kML1vJfrQL17glK+zcxMPfTR773d0IM8KVyPPTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMPSUA3rzd0IM8KVyPPSUA3rzd0IM8zcxMPWqk6Lvd0IM8zcxMPeBbUzzd0IM8KVyPPX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMPWe90j3d0IM8KVyPPWe90j3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z1WHoM+kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMPSqz+z3QMrE+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8kMJ1vCqz+z02mZc+zcxMvSqz+z3QMrE+zcxMPSUA3rzQMrE+zcxMPZfrQL3QMrE+zcxMPSUA3rzd0IM8zcxMPZfrQL2n1qE+zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMPSUA3rzd0IM8zcxMPSUA3rzQMrE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+zcxMvTLcxr3d0IM8zcxMvSUA3rzd0IM8zcxMvSUA3rzQMrE+zcxMvZfrQL3QMrE+zcxMvTLcxr2n1qE+zcxMvTLcxr3d0IM8zcxMPTLcxr2n1qE+zcxMPTLcxr3d0IM8zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+zcxMvX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMvaXHqT3QMrE+zcxMvX3CBj2n1qE+zcxMvX3CBj3d0IM8zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMPWe90j3QMrE+zcxMPaXHqT3QMrE+zcxMPWe90j3d0IM8zcxMPaXHqT2n1qE+zcxMPX3CBj2n1qE+zcxMPX3CBj3d0IM8zcxMvWe90j3d0IM8zcxMvWe90j3QMrE+zcxMPWe90j3d0IM8zcxMPWe90j3QMrE+zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPWe90j3d0IM8zcxMvWe90j3d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPSUA3rzd0IM8zcxMvSUA3rzd0IM8zcxMvaXHqT1BFTK+zcxMvaXHqT043cO8kML1vKXHqT1BFTK+kML1vKXHqT043cO8zcxMvT+4Lz043cO8kML1vD+4Lz043cO8zcxMvaXHqT043cO8kML1vKXHqT043cO8kML1PKXHqT1BFTK+kML1PKXHqT043cO8zcxMPaXHqT1BFTK+zcxMPaXHqT043cO8zcxMPT+4Lz1BFTK+kML1PD+4Lz1BFTK+zcxMPaXHqT1BFTK+kML1PKXHqT1BFTK+kML1PD+4Lz043cO8kML1PD+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPT+4Lz1BFTK+kML1vD+4Lz1BFTK+zcxMvT+4Lz1BFTK+kML1vKXHqT1BFTK+zcxMvaXHqT1BFTK+zcxMvT+4Lz043cO8zcxMvT+4Lz1BFTK+kML1vD+4Lz043cO8kML1vD+4Lz1BFTK+kML1PD+4Lz043cO8zcxMPT+4Lz043cO8kML1PKXHqT043cO8zcxMPaXHqT043cO8kML1PMRMlT20XZe9kML1PMRMlT1e5Aq9kML1PKXHqT1BFTK+kML1PAGuWD20XZe9kML1PKXHqT043cO8kML1PD+4Lz1BFTK+kML1PD+4Lz043cO8kML1PAGuWD1e5Aq9kML1vMRMlT20XZe9kML1vKXHqT1BFTK+kML1vMRMlT1e5Aq9kML1vAGuWD20XZe9kML1vKXHqT043cO8kML1vD+4Lz1BFTK+kML1vD+4Lz043cO8kML1vAGuWD1e5Aq9kML1PCqz+z2SzVC+zcxMPWe90j2SzVC+zcxMPSqz+z2SzVC+zcxMvSqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z2SzVC+zcxMPZfrQL2n1qE+zcxMPZfrQL3QMrE+KVyPPZfrQL2n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL2n1qE+KVyPPZfrQL2n1qE+zcxMPTLcxr2n1qE+KVyPPTLcxr2n1qE+KVyPvTLcxr2n1qE+zcxMvTLcxr2n1qE+zcxMvZfrQL2n1qE+KVyPvZfrQL2n1qE+zcxMvfTR772n1qE+zcxMPfTR772n1qE+KVyPPZfrQL3QMrE+zcxMPZfrQL3QMrE+KVyPPSUA3rzQMrE+zcxMPSUA3rzQMrE+zcxMPWqk6LvQMrE+zcxMvSUA3rzQMrE+KVyPvSUA3rzQMrE+zcxMvWqk6LvQMrE+KVyPvZfrQL3QMrE+zcxMvZfrQL3QMrE+KVyPvZfrQL2n1qE+KVyPvZfrQL3QMrE+zcxMvZfrQL2n1qE+zcxMvZfrQL3QMrE+KVyPPaXHqT3QMrE+zcxMPaXHqT3QMrE+KVyPPWe90j3QMrE+zcxMPWe90j3QMrE+zcxMPSqz+z3QMrE+zcxMvWe90j3QMrE+KVyPvWe90j3QMrE+zcxMvSqz+z3QMrE+KVyPvaXHqT3QMrE+zcxMvaXHqT3QMrE+zcxMPaXHqT2n1qE+KVyPPaXHqT2n1qE+zcxMPX3CBj2n1qE+KVyPPX3CBj2n1qE+KVyPvX3CBj2n1qE+zcxMvX3CBj2n1qE+zcxMvaXHqT2n1qE+KVyPvaXHqT2n1qE+zcxMveBbUzyn1qE+zcxMPeBbUzyn1qE+zcxMPaXHqT2n1qE+zcxMPaXHqT3QMrE+KVyPPaXHqT2n1qE+KVyPPaXHqT3QMrE+KVyPvaXHqT2n1qE+KVyPvaXHqT3QMrE+zcxMvaXHqT2n1qE+zcxMvaXHqT3QMrE+kML1vCqz+z2SzVC+zcxMvWe90j2SzVC+kML1vCqz+z21uKC+zcxMvWe90j21uKC+zcxMPWe90j2SzVC+kML1PCqz+z2SzVC+zcxMPWe90j21uKC+kML1PCqz+z21uKC+zcxMvX3CBj3d0IM8zcxMveBbUzzd0IM8zcxMvWqk6Lvd0IM8zcxMvaXHqT043cO8zcxMvSUA3rzd0IM8zcxMvWe90j3d0IM8zcxMvTLcxr3d0IM8zcxMvSqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvaXHqT1BFTK+zcxMvT+4Lz1BFTK+zcxMvWe90j2SzVC+zcxMvT+4Lz043cO8zcxMvVYTPju1uKC+zcxMvWe90j21uKC+zcxMvVYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMvUyhFr7d0IM8zcxMvfTR773d0IM8zcxMPeBbUzzd0IM8zcxMPX3CBj3d0IM8zcxMPWqk6Lvd0IM8zcxMPWe90j3d0IM8zcxMPaXHqT043cO8zcxMPSUA3rzd0IM8zcxMPSqz+z2SzVC+zcxMPSqz+z3d0IM8zcxMPaXHqT1BFTK+zcxMPT+4Lz1BFTK+zcxMPT+4Lz043cO8zcxMPWe90j2SzVC+zcxMPVYTPju1uKC+zcxMPWe90j21uKC+zcxMPVYTPjs5Sem9zcxMPUyhFr7T4oK9zcxMPTLcxr05Sem9zcxMPTLcxr3d0IM8zcxMPfTR773d0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7T4oK9zcxMPUyhFr7T4oK9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9zcxMvVYTPju1uKC+zcxMPVYTPju1uKC+zcxMvWe90j21uKC+zcxMPWe90j21uKC+kML1vCqz+z21uKC+kML1PCqz+z21uKC+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vJfrQL05Sem9zcxMvTLcxr05Sem9zcxMPTLcxr05Sem9kML1PJfrQL05Sem9zcxMPVYTPjs5Sem9kML1PFYTPjs5Sem9zcxMvUyhFr7T4oK9zcxMvUyhFr7d0IM8zcxMPUyhFr7T4oK9zcxMPUyhFr7d0IM8zcxMPVYTPjs5Sem9zcxMPVYTPju1uKC+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjtpcUG+kML1vFMTPjs2Pg6+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+kML1vFYTPjs5Sem9zcxMvVYTPjs5Sem9kML1vFYTPjvo65O+zcxMvVYTPju1uKC+kMJ1PCqz+z22GIC7zcxMPSqz+z3d0IM8kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1vCqz+z22GIC7kMJ1vCqz+z09pqe9kMJ1vCqz+z1tLjS+kMJ1PCqz+z09pqe9kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kML1PCqz+z2SzVC+zcxMPSqz+z2SzVC+kML1PCqz+z21uKC+kMJ1vCqz+z2SzVC+kML1vCqz+z21uKC+kML1vCqz+z2SzVC+zcxMvSqz+z3d0IM8zcxMvSqz+z2SzVC+zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPeBbUzzd0IM8zcxMveBbUzzd0IM8zcxMPUyhFr7d0IM8zcxMvUyhFr7d0IM8zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9CtcjvcRMlT20XZe9CtcjvQGuWD20XZe9CtcjvcRMlT1e5Aq9CtcjvQGuWD1e5Aq9zcxMvcRMlT3kz1y9zcxMvQGuWD3kz1y9zcxMPcRMlT3kz1y9CtcjPcRMlT20XZe9zcxMPQGuWD3kz1y9CtcjPQGuWD20XZe9CtcjPcRMlT1e5Aq9zcxMPcRMlT3kz1y9CtcjPQGuWD1e5Aq9zcxMPQGuWD3kz1y9kMJ1vCqz+z1tLjS+kMJ1vCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1PCqz+z2SzVC+kMJ1PCqz+z1tLjS+kMJ1vCqz+z2SzVC+KVyPvaXHqT0OPYg+KVyPvX3CBj0OPYg+KVyPvaXHqT14CVM+KVyPvX3CBj14CVM+KVyPvaXHqT14CVM+KVyPvX3CBj0OPYg+KVyPPXDmnb0OPYg+KVyPPSUA3rwOPYg+KVyPPXDmnb14CVM+KVyPPSUA3rx4CVM+KVyPPXDmnb14CVM+KVyPPSUA3rwOPYg+kMJ1vCqz+z09pqe9kMJ1PCqz+z09pqe9kMJ1vCqz+z3kz1y9kMJ1PCqz+z3kz1y9kMJ1vCqz+z3kz1y9kMJ1PCqz+z09pqe9kML1vFYTPjvo65O+kML1vFYTPjtpcUG+kML1PFYTPjvo65O+kML1PFYTPjtpcUG+kML1PFYTPjvo65O+kML1vFYTPjtpcUG+KVyPvXDmnb0OPYg+KVyPvSUA3rwOPYg+KVyPvXDmnb14CVM+KVyPvSUA3rx4CVM+KVyPvXDmnb14CVM+KVyPvSUA3rwOPYg+KVyPPXDmnb1jWws+KVyPPSUA3rxjWws+KVyPPXDmnb1+1Zs9KVyPPSUA3rx+1Zs9KVyPPXDmnb1+1Zs9KVyPPSUA3rxjWws+KVyPvXDmnb1jWws+KVyPvSUA3rxjWws+KVyPvXDmnb1+1Zs9KVyPvSUA3rx+1Zs9KVyPvXDmnb1+1Zs9KVyPvSUA3rxjWws+kML1vJfrQL05Sem9kML1PJfrQL05Sem9kML1vFYTPjs5Sem9kML1PFYTPjs5Sem9kML1vFYTPjs5Sem9kML1PJfrQL05Sem9KVyPPaXHqT0OPYg+KVyPPX3CBj0OPYg+KVyPPaXHqT14CVM+KVyPPX3CBj14CVM+KVyPPaXHqT14CVM+KVyPPX3CBj0OPYg+kML1vFMTPjs2Pg6+kML1vFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1PFYTPjs5Sem9kML1PFMTPjs2Pg6+kML1vFYTPjs5Sem9KVyPvX3CBj1jWws+KVyPvaXHqT1jWws+KVyPvX3CBj1+1Zs9KVyPvaXHqT1+1Zs9KVyPvX3CBj1+1Zs9KVyPvaXHqT1jWws+KVyPPX3CBj1jWws+KVyPPaXHqT1jWws+KVyPPX3CBj1+1Zs9KVyPPaXHqT1+1Zs9KVyPPX3CBj1+1Zs9KVyPPaXHqT1jWws+kMJ1vCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1PCqz+z22GIC7kMJ1PCqz+z3d0IM8kMJ1vCqz+z22GIC7kMJ1vCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1PCqz+z1WHoM+kMJ1PCqz+z02mZc+kMJ1vCqz+z1WHoM+kMJ1vCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1PCqz+z0mUTQ+kMJ1PCqz+z3d0IM8kMJ1vCqz+z0mUTQ+kML1vJfrQL17glK+kML1PJfrQL17glK+kML1vGEKtbzy+Um+kML1PGEKtbzy+Um+kML1vGEKtbzy+Um+kML1PJfrQL17glK+zcxMPfTR773d0IM8zcxMvfTR773d0IM8zcxMPTLcxr3d0IM8zcxMvTLcxr3d0IM8zcxMPTLcxr3d0IM8zcxMvfTR773d0IM8zcxMvWe90j3d0IM8zcxMPWe90j3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPWe90j3d0IM8kMJ1vCqz+z3d0IM8zcxMvSqz+z3d0IM8zcxMPSqz+z3d0IM8kMJ1PCqz+z3d0IM8kMJ1vCqz+z3d0IM8zcxMveBbUzzd0IM8zcxMPeBbUzzd0IM8zcxMvX3CBj3d0IM8zcxMPX3CBj3d0IM8zcxMvX3CBj3d0IM8zcxMPeBbUzzd0IM8zcxMvSUA3rzd0IM8zcxMPSUA3rzd0IM8zcxMvWqk6Lvd0IM8zcxMPWqk6Lvd0IM8zcxMvWqk6Lvd0IM8zcxMPSUA3rzd0IM8/3/ZrgAAAID/f/+/AAAAgP9/2a4AAACA/3//vwAAAID/fyXRAAAAgP9/JdEAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/fwybAAAAgP9/DJsAAACA/3/ZrgAAAID/f9muAAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAl0f//AAAAgP+///8AAACAJdH//wAAAID/v///AAAAgNmu//8AAACA2a7//wAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIDy5P//AAAAgCXR//8AAACA8uT//wAAAIAl0f//AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACADJv//wAAAIDZrv//AAAAgAyb//8AAACA2a7//wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9/8uQAAACA/3/y5AAAAID/fyXRAAAAgP9/JdEAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAICB2nylAAAAgP+//78AAACAgdp8pQAAAID/v/+/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIC20EgvAAAAgN/o0jcAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgH0lfKUAAACAfSWCWgAAAIB9JXylAAAAgH0lgloAAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgJHo//8AAACAkej//wAAAICR6P//AAAAgJHo//8AAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIB9JYJaAAAAgP8//z8AAACAfSWCWgAAAID/P/8/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACAfSV8pQAAAIB9JYJaAAAAgH0lfKUAAACAfSWCWgAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAIBslwAAAAAAgGyXAAAAAACAbJcAAAAAAIBslwAAAAAAgP9/kmgAAACA/3+SaAAAAID/f5JoAAAAgP9/kmgAAACA/z//vwAAAIB9JXylAAAAgP8//78AAACAfSV8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgLbQSC8AAACA3+jSNwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACAgdqCWgAAAICB2nylAAAAgN/o0jcAAACAgdp8pQAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgIHafKUAAACA/7//vwAAAICB2nylAAAAgP+//78AAACA/7//PwAAAICB2oJaAAAAgLbQSC8AAACA3+jSNwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAIAcp///AAAAgP9///8AAACAHKf//wAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAmRmZmQAAAICZGZmZAAAAgJkZmZkAAACAmRmZmQAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIBl5pmZAAAAgGXmmZkAAACAZeaZmQAAAIBl5pmZAAAAgP+///8AAACA/7///wAAAIAcp///AAAAgByn//8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgP9/kegAAACA/3+R6AAAAID/f5HoAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAttBHrwAAAIC20EevAAAAgLbQR68AAACAttBHrwAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgHylfSUAAACAfKV9JQAAAICB2oJaAAAAgIHagloAAACAglqB2gAAAICCWoHaAAAAgHylgdoAAACAfKWB2gAAAICCWn0lAAAAgIJafSUAAACAfKV9JQAAAIB8pX0lAAAAgH0lgloAAACAfSWCWgAAAICCWn0lAAAAgIJafSUAAACAglqB2gAAAIB9JXylAAAAgIJagdoAAACASC9HrwAAAIBIL0evAAAAgEgvR68AAACASC9HrwAAAIB9JXylAAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP/f//8AAACA/9///wAAAID/3///AAAAgP/f//8AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f/9fAAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACAfSV8pQAAAIAAAP9/AAAAgH0lfKUAAACAAAD/fwAAAIAAAP9/AAAAgH0lgloAAACASC+3UAAAAIAAAP9/AAAAgAAA/38AAACASC+3UAAAAIBIL7dQAAAAgAAA/38AAACASC+3UAAAAIB9JYJaAAAAgIHagloAAACA////fwAAAIC20LdQAAAAgP///38AAACAgdp8pQAAAID///9/AAAAgIHafKUAAACA////fwAAAID///9/AAAAgLbQt1AAAACAttC3UAAAAID///9/AAAAgIHagloAAACAttC3UAAAAIBIL0evAAAAgAAA/38AAACASC9HrwAAAIAAAP9/AAAAgH0lgloAAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACASC9HrwAAAIB9JYJaAAAAgEgvR68AAACAAAD/fwAAAIAAAP9/AAAAgH0lfKUAAACAfSWCWgAAAIBIL7dQAAAAgIJafSUAAACASC+3UAAAAIBIL7dQAAAAgEgvt1AAAACAglp9JQAAAIB9JYJaAAAAgHylgdoAAACAfKWB2gAAAICB2nylAAAAgIHafKUAAACAfKV9JQAAAIB8pX0lAAAAgIHagloAAACAgdqCWgAAAIC20LdQAAAAgLbQt1AAAACAttC3UAAAAIC20LdQAAAAgH0lfKUAAACAfSV8pQAAAICCWoHaAAAAgIJagdoAAACAgdp8pQAAAICB2oJaAAAAgLbQR68AAACA////fwAAAID///9/AAAAgP///38AAACAttBHrwAAAIC20EevAAAAgP///38AAACAgdqCWgAAAID///9/AAAAgLbQR68AAACAgdp8pQAAAID///9/AAAAgP9//18AAACA/3//XwAAAID/f/9fAAAAgP9//18AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAIB8pYHaAAAAgHylgdoAAACA/3///wAAAID/f///AAAAgP9///8AAACAglqB2gAAAID/f///AAAAgIJagdoAAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP8//78AAACA/z//vwAAAID/P/+/AAAAgP8//78AAACA/7//vwAAAID/v/+/AAAAgP+//78AAACA/7//vwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACAAAD/fwAAAIAAAP9/AAAAgAAA/38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP///38AAACA////fwAAAID///9/AAAAgP+/AAAAAACA/78AAAAAAID/vwAAAAAAgP+/AAAAAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP////8AAACA/////wAAAID/////AAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/38AAAAAAID/fwAAAAAAgP9/AAAAAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3///wAAAID/f///AAAAgP9///8AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgP9//38AAACA/3//fwAAAID/f/9/AAAAgAAA/38AAACAAAD/fwAAAIAAAKmqAAAAgAAAqaoAAACAqir/fwAAAICqKv9/AAAAgAAA/38AAACAAAD/fwAAAID///9/AAAAgP//qaoAAACA////fwAAAID//6mqAAAAgFTV/38AAACA////fwAAAIBU1f9/AAAAgP///38AAACA/3///wAA/7//f///AAD/v/9///8AAP+//3///////7//f///////v/9///////+/AAD/f/9//78AAP9//3//vwAA/3//f/+/AAD/f/////8AAP9//////wAA/3//////////f/9/AID///9//38AgP///3//fwCA////f/9///////9//3///////3//f////3////9//7//f////3//v/9/////f/+//3//////////f/////////9//////////38AAAAAC+T/fwAAAAAL5P9/AAAAAAvk/38AAOW3/7//fwAA5bf/v/9/AADlt/+/////f/9/I8n///9//38jyf///3//fyPJ////f7XtAID///9/te0AgP///3+17QCA////f+3CAID///9/7cIAgP///3/twgCA////f/9/iN7///9//3+I3v///3//f4je////f/9///////9//3///////3//f///////f/9/AID///9//38AgP///3//fwCA/////8WYYoz/////xZhijP/////FmGKM/////zlnm/P/////OWeb8/////85Z5vzAAD/f/9/6KIAAP9//3/oogAA/3//f+iiAAD/f9DF//8AAP9/0MX//wAA/3/Qxf///38AAAAA/7//fwAAAAD/v/9/AAAAAP+//38AAP///7//fwAA////v/9/AAD///+/////f////7////9/////v////3////+/////f////7////9/////v////3////+/////f/////////9//////////3//////////f/9//7////9//3//v////3//f/+//3///6C8/7//f///oLz/v/9///+gvP+//3///wAAruH/f///AACu4f9///8AAK7h/3///////7//f///////v/9///////+//3///wAA/7//f///AAD/v/9///8AAP+//38AAP//////fwAA//////9/AAD//////38AAP9//7//fwAA/3//v/9/AAD/f/+//9///////7//3///////v//f//////+//9///wAA/7//3///AAD/v//f//8AAP+//3//f//P/6f/f/9//8//p/9//3//z/+n/3//f/8v/9f/f/9//y//1/9//3//L//X/////////7//////////v/////////+//////wAA/7//////AAD/v/////8AAP+//////wAA/7//////AAAAgP////8AAACA/////wAA/7//////AAAAgP////////+//////////7//////////v/////8AAP+//////wAA/7//////AAD/v/////+p6lS1/////6nqVLX/////qepUtf////9VFanK/////1UVqcr/////VRWpyg==") -}] -blend_shape_mode = 0 -shadow_mesh = SubResource("ArrayMesh_lkcrb") - -[sub_resource type="BoxShape3D" id="BoxShape3D_to3sp"] -size = Vector3(0.645, 0.315, 0.405) - -[sub_resource type="SphereShape3D" id="SphereShape3D_24b8y"] -radius = 0.4 - -[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_73v4a"] -radius = 0.45 -height = 1.7 - -[sub_resource type="BoxShape3D" id="BoxShape3D_mvomp"] -size = Vector3(2.04688, 1.54346, 1.80408) - -[sub_resource type="Animation" id="Animation_6o48i"] -length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("BodyCollision:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.85, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("BodyCollision:shape:height") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [1.7] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera:position") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 1.55, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("CrouchCollider:shape:radius") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.45] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("CrouchCollider:target_position") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.4, 0)] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("CrouchCollider:position") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.85, 0)] -} -tracks/6/type = "value" -tracks/6/imported = false -tracks/6/enabled = true -tracks/6/path = NodePath("Camera/LeanPivot:position") -tracks/6/interp = 1 -tracks/6/loop_wrap = true -tracks/6/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/7/type = "value" -tracks/7/imported = false -tracks/7/enabled = true -tracks/7/path = NodePath("Camera/LeanPivot:rotation") -tracks/7/interp = 1 -tracks/7/loop_wrap = true -tracks/7/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/8/type = "value" -tracks/8/imported = false -tracks/8/enabled = true -tracks/8/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:rotation") -tracks/8/interp = 1 -tracks/8/loop_wrap = true -tracks/8/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/9/type = "value" -tracks/9/imported = false -tracks/9/enabled = true -tracks/9/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:position") -tracks/9/interp = 1 -tracks/9/loop_wrap = true -tracks/9/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, -1.54919, 0)] -} - -[sub_resource type="Animation" id="Animation_wh4u2"] -resource_name = "crouch_air" -length = 0.1 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("BodyCollision:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 1.25, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("BodyCollision:shape:height") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.9] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera:position") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 1.55, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("CrouchCollider:target_position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.9, 0)] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("CrouchCollider:shape:radius") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.45] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("CrouchCollider:position") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 1.25, 0)] -} - -[sub_resource type="Animation" id="Animation_k4k07"] -resource_name = "crouch_ground" -length = 0.001 -step = 0.01 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("BodyCollision:shape:height") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.9] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("BodyCollision:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.45, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera:position") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.75, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("CrouchCollider:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.85, 0)] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("CrouchCollider:target_position") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.5, 0)] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("CrouchCollider:shape:radius") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.45] -} - -[sub_resource type="Animation" id="Animation_6o8hu"] -resource_name = "crouch_reset" -length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("BodyCollision:shape:height") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [1.7] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("BodyCollision:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.85, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera:position") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 1.55, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("CrouchCollider:shape:radius") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [0.45] -} -tracks/4/type = "value" -tracks/4/imported = false -tracks/4/enabled = true -tracks/4/path = NodePath("CrouchCollider:target_position") -tracks/4/interp = 1 -tracks/4/loop_wrap = true -tracks/4/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.4, 0)] -} -tracks/5/type = "value" -tracks/5/imported = false -tracks/5/enabled = true -tracks/5/path = NodePath("CrouchCollider:position") -tracks/5/interp = 1 -tracks/5/loop_wrap = true -tracks/5/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0.85, 0)] -} - -[sub_resource type="Animation" id="Animation_v5xwa"] -resource_name = "lean_left" -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Camera/LeanPivot:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(-0.6, -0.3, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Camera/LeanPivot:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0.261799)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, -0.261799)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(-0.4, -1.41, 0)] -} - -[sub_resource type="Animation" id="Animation_0c5qk"] -resource_name = "lean_left_collision" -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Camera/LeanPivot:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Camera/LeanPivot:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0.0872665)] -} - -[sub_resource type="Animation" id="Animation_5qee8"] -resource_name = "lean_reset" -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Camera/LeanPivot:rotation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Camera/LeanPivot:position") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, -1.54919, 0)] -} - -[sub_resource type="Animation" id="Animation_5n858"] -resource_name = "lean_right" -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Camera/LeanPivot:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.6, -0.3, 0)] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("Camera/LeanPivot:rotation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, -0.261799)] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:rotation") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0.261799)] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models:position") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0.3, -1.549, 0)] -} - -[sub_resource type="Animation" id="Animation_2fwsm"] -resource_name = "lean_right_collision" -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath("Camera/LeanPivot:rotation") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, -0.0872665)] -} - -[sub_resource type="AnimationLibrary" id="AnimationLibrary_ity6x"] -_data = { -&"RESET": SubResource("Animation_6o48i"), -&"crouch_air": SubResource("Animation_wh4u2"), -&"crouch_ground": SubResource("Animation_k4k07"), -&"crouch_reset": SubResource("Animation_6o8hu"), -&"lean_left": SubResource("Animation_v5xwa"), -&"lean_left_collision": SubResource("Animation_0c5qk"), -&"lean_reset": SubResource("Animation_5qee8"), -&"lean_right": SubResource("Animation_5n858"), -&"lean_right_collision": SubResource("Animation_2fwsm") -} - -[sub_resource type="AnimationNodeBlend3" id="AnimationNodeBlend3_ryreg"] - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_lnag4"] -animation = &"crouch_air" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_mvxnv"] -animation = &"crouch_reset" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_0yifg"] -animation = &"crouch_ground" - -[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qco06"] - -[sub_resource type="AnimationNodeBlend3" id="AnimationNodeBlend3_cydo6"] - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jgpsf"] -animation = &"lean_left" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_vo3cl"] -animation = &"lean_left_collision" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ms17y"] -animation = &"lean_reset" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_cd2xa"] -animation = &"lean_right" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rlexb"] -animation = &"lean_right_collision" - -[sub_resource type="AnimationNodeBlend2" id="AnimationNodeBlend2_otrul"] - -[sub_resource type="AnimationNodeBlend2" id="AnimationNodeBlend2_nrrb5"] - -[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_5pepu"] -nodes/output/position = Vector2(1100, 240) -nodes/Crouch_Blend/node = SubResource("AnimationNodeBlend3_ryreg") -nodes/Crouch_Blend/position = Vector2(500, 140) -nodes/air/node = SubResource("AnimationNodeAnimation_lnag4") -nodes/air/position = Vector2(60, 340) -"nodes/crouch reset/node" = SubResource("AnimationNodeAnimation_mvxnv") -"nodes/crouch reset/position" = Vector2(100, 200) -nodes/ground/node = SubResource("AnimationNodeAnimation_0yifg") -nodes/ground/position = Vector2(140, 60) -nodes/lean/node = SubResource("AnimationNodeAdd2_qco06") -nodes/lean/position = Vector2(880, 200) -nodes/lean_blend/node = SubResource("AnimationNodeBlend3_cydo6") -nodes/lean_blend/position = Vector2(800, 620) -nodes/lean_left/node = SubResource("AnimationNodeAnimation_jgpsf") -nodes/lean_left/position = Vector2(60, 780) -nodes/lean_left_collision/node = SubResource("AnimationNodeAnimation_vo3cl") -nodes/lean_left_collision/position = Vector2(0, 900) -nodes/lean_reset/node = SubResource("AnimationNodeAnimation_ms17y") -nodes/lean_reset/position = Vector2(380, 660) -nodes/lean_right/node = SubResource("AnimationNodeAnimation_cd2xa") -nodes/lean_right/position = Vector2(100, 500) -nodes/lean_right_collision/node = SubResource("AnimationNodeAnimation_rlexb") -nodes/lean_right_collision/position = Vector2(40, 640) -nodes/left_collision_blend/node = SubResource("AnimationNodeBlend2_otrul") -nodes/left_collision_blend/position = Vector2(360, 820) -nodes/right_collision_blend/node = SubResource("AnimationNodeBlend2_nrrb5") -nodes/right_collision_blend/position = Vector2(360, 460) -node_connections = [&"output", 0, &"lean", &"Crouch_Blend", 0, &"ground", &"Crouch_Blend", 1, &"crouch reset", &"Crouch_Blend", 2, &"air", &"lean", 0, &"Crouch_Blend", &"lean", 1, &"lean_blend", &"lean_blend", 0, &"right_collision_blend", &"lean_blend", 1, &"lean_reset", &"lean_blend", 2, &"left_collision_blend", &"left_collision_blend", 0, &"lean_left", &"left_collision_blend", 1, &"lean_left_collision", &"right_collision_blend", 0, &"lean_right", &"right_collision_blend", 1, &"lean_right_collision"] - -[sub_resource type="SphereShape3D" id="SphereShape3D_cx3sy"] -radius = 0.45 - -[node name="Player_Character" type="CharacterBody3D" unique_id=1930488979 node_paths=PackedStringArray("subviewport_camera", "main_camera", "animation_tree", "crouch_collision", "right_lean_collision", "left_lean_collision", "sprint_timer", "coyote_timer")] -disable_mode = 1 -collision_layer = 2 -floor_max_angle = 0.872665 -script = ExtResource("1_h0t42") -subviewport_camera = NodePath("CanvasLayer/SubViewportContainer/SubViewport/Camera3D") -main_camera = NodePath("Camera/LeanPivot/MainCamera") -animation_tree = NodePath("AnimationTree") -crouch_toggle = true -crouch_collision = NodePath("CrouchCollider") -right_lean_collision = NodePath("Camera/LeanLeftCollision") -left_lean_collision = NodePath("Camera/LeanRighCollision") -sprint_timer = NodePath("SprintTimer") -acceleration = 20.0 -coyote_timer = NodePath("CoyoteTimer") -metadata/_edit_group_ = true - -[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=1746877117] -unique_name_in_owner = true -script = ExtResource("2_tvwwj") - -[node name="Overlay" type="TextureRect" parent="CanvasLayer" unique_id=1480971344] -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -mouse_filter = 2 -expand_mode = 1 -stretch_mode = 5 - -[node name="debug_hud" type="VBoxContainer" parent="CanvasLayer" unique_id=1273329344] -anchors_preset = 9 -anchor_bottom = 1.0 -grow_vertical = 2 - -[node name="HBoxContainer" type="HBoxContainer" parent="CanvasLayer/debug_hud" unique_id=1270679337] -layout_mode = 2 - -[node name="Label" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer" unique_id=511066385] -layout_mode = 2 -text = "Current Weapon: " - -[node name="CurrentWeapon" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer" unique_id=1914307984] -layout_mode = 2 - -[node name="HBoxContainer2" type="HBoxContainer" parent="CanvasLayer/debug_hud" unique_id=719618350] -layout_mode = 2 - -[node name="Label" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer2" unique_id=2111135313] -layout_mode = 2 -text = "Ammo:" - -[node name="CurrentAmmo" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer2" unique_id=1310381806] -layout_mode = 2 - -[node name="HBoxContainer3" type="HBoxContainer" parent="CanvasLayer/debug_hud" unique_id=26783440] -layout_mode = 2 - -[node name="Label" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer3" unique_id=720441406] -layout_mode = 2 -text = "Weapon Stack:" - -[node name="WeaponStack" type="Label" parent="CanvasLayer/debug_hud/HBoxContainer3" unique_id=146785852] -layout_mode = 2 - -[node name="MainSight" type="TextureRect" parent="CanvasLayer" unique_id=1237019041] -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -mouse_filter = 2 -texture = ExtResource("3_7f0mw") -stretch_mode = 3 - -[node name="HitSight" type="TextureRect" parent="CanvasLayer" unique_id=2016761054] -visible = false -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -mouse_filter = 2 -texture = ExtResource("4_l32wb") -stretch_mode = 3 - -[node name="HitSightTimer" type="Timer" parent="CanvasLayer/HitSight" unique_id=651597527] -wait_time = 0.05 -one_shot = true - -[node name="SprintBar" type="HSlider" parent="CanvasLayer" unique_id=1987921148] -anchors_preset = 7 -anchor_left = 0.5 -anchor_top = 1.0 -anchor_right = 0.5 -anchor_bottom = 1.0 -offset_left = -150.0 -offset_top = -100.0 -offset_right = 150.0 -grow_horizontal = 2 -grow_vertical = 0 -size_flags_vertical = 8 -theme_override_icons/grabber = SubResource("ImageTexture_rj3p7") -theme_override_icons/grabber_disabled = SubResource("ImageTexture_j4t2g") -theme_override_styles/slider = SubResource("StyleBoxLine_8ilid") -theme_override_styles/grabber_area = SubResource("StyleBoxLine_drrrm") -value = 100.0 -editable = false -scrollable = false - -[node name="SubViewportContainer" type="SubViewportContainer" parent="CanvasLayer" unique_id=79080726] -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -stretch = true - -[node name="SubViewport" type="SubViewport" parent="CanvasLayer/SubViewportContainer" unique_id=535768346] -transparent_bg = true -handle_input_locally = false -positional_shadow_atlas_size = 4096 -size = Vector2i(1152, 648) -render_target_update_mode = 4 - -[node name="Camera3D" type="Camera3D" parent="CanvasLayer/SubViewportContainer/SubViewport" unique_id=2017217588] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.5451, 0) -cull_mask = 524288 - -[node name="Camera" type="Node3D" parent="." unique_id=912256861] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.55, 0) - -[node name="LeanPivot" type="Node3D" parent="Camera" unique_id=1503677092] - -[node name="MainCamera" type="Camera3D" parent="Camera/LeanPivot" unique_id=381153550] -unique_name_in_owner = true -cull_mask = 524287 -current = true - -[node name="Weapons_Manager" type="Node3D" parent="Camera/LeanPivot/MainCamera" unique_id=1982237883 node_paths=PackedStringArray("animation_player", "melee_hitbox")] -script = ExtResource("5_wuueu") -animation_player = NodePath("Weapons_Models/AnimationPlayer") -melee_hitbox = NodePath("Melee_Hitbox") -weapon_stack = Array[ExtResource("6_wj0qi")]([SubResource("Resource_4pcyg")]) - -[node name="Weapons_Models" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager" unique_id=79488914] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.54919, 0) - -[node name="blasterN" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=436844680] -transform = Transform3D(-1, 0, 2.5351817e-06, 0, 1, 0, -2.5351817e-06, 0, -1, 0.193, 1.255, -0.643) -visible = false - -[node name="blasterN2" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterN" unique_id=313141132] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -mesh = SubResource("ArrayMesh_giihu") -skeleton = NodePath("") - -[node name="blasterI" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=81407248] -transform = Transform3D(-1, 0, -2.5351817e-06, 0, 1, 0, 2.5351817e-06, 0, -1, -0.148, 1.379, -0.398) -visible = false - -[node name="blasterD2" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterI" unique_id=954580676] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -layers = 524288 -mesh = SubResource("ArrayMesh_eo1ub") -skeleton = NodePath("") - -[node name="blasterL" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=1976288082] -transform = Transform3D(-1, 0, -2.5351817e-06, 0, 1, 0, 2.5351817e-06, 0, -1, 0.117, 1.16, -0.512) -visible = false - -[node name="blasterA2" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterL" unique_id=1037198183] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -layers = 524288 -mesh = SubResource("ArrayMesh_33sn6") -skeleton = NodePath("") - -[node name="blasterM" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=308547132] -visible = false - -[node name="blasterM2" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterM" unique_id=646697989] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.15, 0, -0.15) -layers = 524288 -mesh = SubResource("ArrayMesh_kn6m3") -skeleton = NodePath("") - -[node name="blasterP2" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=708907406] -transform = Transform3D(-0.97236997, -0.23340762, -0.0040748655, 0, 0.01745548, -0.999848, 0.23344313, -0.97222215, -0.016973201, 0.32, 1.014, -0.35) -visible = false - -[node name="blasterP" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterP2" unique_id=816589054] -layers = 524288 -mesh = SubResource("ArrayMesh_xefgr") -skeleton = NodePath("") - -[node name="AnimationPlayer" type="AnimationPlayer" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=190666] -unique_name_in_owner = true -libraries/ = SubResource("AnimationLibrary_ys4uk") -libraries/Global = ExtResource("13_lmhsg") - -[node name="blasterQ2" type="Node3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models" unique_id=1793390834] -transform = Transform3D(-1, 0, 2.5351817e-06, 0, 1, 0, -2.5351817e-06, 0, -1, 0, 0, 0) -visible = false - -[node name="blasterQ" type="MeshInstance3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager/Weapons_Models/blasterQ2" unique_id=1537373267] -layers = 524288 -mesh = SubResource("ArrayMesh_8tvdw") -skeleton = NodePath("") - -[node name="BulletPoint" type="Marker3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager" unique_id=785176848] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.266143, -0.288234, -0.779217) -gizmo_extents = 0.21 - -[node name="Melee_Hitbox" type="ShapeCast3D" parent="Camera/LeanPivot/MainCamera/Weapons_Manager" unique_id=51698041] -shape = SubResource("BoxShape3D_to3sp") -target_position = Vector3(0, 0, -0.7) -collision_mask = 36 -debug_shape_custom_color = Color(0, 1, 0, 1) - -[node name="LeanLeftCollision" type="ShapeCast3D" parent="Camera" unique_id=1115599186] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.3, 0) -shape = SubResource("SphereShape3D_24b8y") -target_position = Vector3(-0.85, 0, 0) -collision_mask = 5 -debug_shape_custom_color = Color(0, 0, 1, 1) - -[node name="LeanRighCollision" type="ShapeCast3D" parent="Camera" unique_id=2041225994] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.3, 0) -shape = SubResource("SphereShape3D_24b8y") -target_position = Vector3(0.85, 0, 0) -collision_mask = 5 -debug_shape_custom_color = Color(0, 0, 1, 1) - -[node name="BodyCollision" type="CollisionShape3D" parent="." unique_id=1076506851] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.85, 0) -shape = SubResource("CapsuleShape3D_73v4a") - -[node name="PickUpDetection" type="Area3D" parent="." unique_id=236933219] -collision_layer = 0 -collision_mask = 8 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="PickUpDetection" unique_id=207042379] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.015625, 0.271729, 0.085144) -shape = SubResource("BoxShape3D_mvomp") - -[node name="CharacterAnimationPlayer" type="AnimationPlayer" parent="." unique_id=309883760] -libraries/ = SubResource("AnimationLibrary_ity6x") - -[node name="AnimationTree" type="AnimationTree" parent="." unique_id=1596529671] -tree_root = SubResource("AnimationNodeBlendTree_5pepu") -anim_player = NodePath("../CharacterAnimationPlayer") -parameters/Crouch_Blend/blend_amount = 0.0 -parameters/lean/add_amount = 1.0 -parameters/lean_blend/blend_amount = 0.0 -parameters/left_collision_blend/blend_amount = 0.0 -parameters/right_collision_blend/blend_amount = 0.0 - -[node name="CrouchCollider" type="ShapeCast3D" parent="." unique_id=35840513] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.85, 0) -shape = SubResource("SphereShape3D_cx3sy") -target_position = Vector3(0, 0.4, 0) - -[node name="SprintTimer" type="Timer" parent="." unique_id=962046205] -wait_time = 2.0 -one_shot = true - -[node name="CoyoteTimer" type="Timer" parent="." unique_id=530751673] - -[connection signal="timeout" from="CanvasLayer/HitSight/HitSightTimer" to="CanvasLayer" method="_on_hit_sight_timer_timeout"] -[connection signal="add_signal_to_hud" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_add_signal_to_hud"] -[connection signal="connect_weapon_to_hud" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_connect_weapon_to_hud"] -[connection signal="hit_successfull" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_hit_successfull"] -[connection signal="update_ammo" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_update_ammo"] -[connection signal="update_weapon_stack" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_update_weapon_stack"] -[connection signal="weapon_changed" from="Camera/LeanPivot/MainCamera/Weapons_Manager" to="CanvasLayer" method="_on_weapons_manager_weapon_changed"] -[connection signal="body_entered" from="PickUpDetection" to="Camera/LeanPivot/MainCamera/Weapons_Manager" method="_on_pick_up_detection_body_entered"] -[connection signal="timeout" from="SprintTimer" to="." method="_on_sprint_timer_timeout"] -[connection signal="timeout" from="CoyoteTimer" to="." method="_on_coyote_timer_timeout"] diff --git a/client/template/scripts/Player_Character/HUD.gd b/client/template/scripts/Player_Character/HUD.gd deleted file mode 100644 index 23752d7..0000000 --- a/client/template/scripts/Player_Character/HUD.gd +++ /dev/null @@ -1,36 +0,0 @@ -extends CanvasLayer - -@onready var current_weapon_label = $debug_hud/HBoxContainer/CurrentWeapon -@onready var current_ammo_label = $debug_hud/HBoxContainer2/CurrentAmmo -@onready var current_weapon_stack = $debug_hud/HBoxContainer3/WeaponStack -@onready var hit_sight = $HitSight -@onready var hit_sight_timer = $HitSight/HitSightTimer -@onready var overLay = $Overlay - -func _on_weapons_manager_update_weapon_stack(WeaponStack): - current_weapon_stack.text = "" - for i in WeaponStack: - current_weapon_stack.text += "\n"+i.weapon.weapon_name - -func _on_weapons_manager_update_ammo(Ammo): - current_ammo_label.set_text(str(Ammo[0])+" / "+str(Ammo[1])) - -func _on_weapons_manager_weapon_changed(WeaponName): - current_weapon_label.set_text(WeaponName) - -func _on_hit_sight_timer_timeout(): - hit_sight.set_visible(false) - -func _on_weapons_manager_add_signal_to_hud(_projectile): - _projectile.Hit_Successfull.connect(_on_weapons_manager_hit_successfull) - -func _on_weapons_manager_hit_successfull(): - hit_sight.set_visible(true) - hit_sight_timer.start() - -func load_over_lay_texture(Active:bool, txtr: Texture2D = null): - overLay.set_texture(txtr) - overLay.set_visible(Active) - -func _on_weapons_manager_connect_weapon_to_hud(_weapon_resouce: WeaponResource): - _weapon_resouce.update_overlay.connect(load_over_lay_texture) diff --git a/client/template/scripts/Player_Character/HUD.gd.uid b/client/template/scripts/Player_Character/HUD.gd.uid deleted file mode 100644 index c5e9c85..0000000 --- a/client/template/scripts/Player_Character/HUD.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cc3t6vk7qpwey diff --git a/client/template/scripts/Player_Character/player_character.gd b/client/template/scripts/Player_Character/player_character.gd deleted file mode 100644 index ad22b34..0000000 --- a/client/template/scripts/Player_Character/player_character.gd +++ /dev/null @@ -1,266 +0,0 @@ -extends CharacterBody3D - -@onready var camera = %Camera -@export var subviewport_camera: Camera3D -@export var main_camera:Camera3D -@export var animation_tree: AnimationTree - -var camera_rotation: Vector2 = Vector2(0.0,0.0) -var mouse_sensitivity = 0.001 -var crouched: bool = false -var crouch_blocked: bool = false - -@export_category("Crouch Parametres") -@export var enable_crouch: bool = true -@export var crouch_toggle: bool = false -@export var crouch_collision: ShapeCast3D -@export_range(0.0,3.0) var crouch_speed_reduction = 2.0 -@export_range(0.0,0.50) var crouch_blend_speed = .2 -enum {GROUND_CROUCH = -1, STANDING = 0, AIR_CROUCH = 1} - -@export_category("Lean Parametres") -@export var enable_lean: bool = true -@export_range(0.0,1.0) var lean_speed: float = .2 -@export var right_lean_collision: ShapeCast3D -@export var left_lean_collision: ShapeCast3D -var lean_tween -enum {LEFT = 1, CENTRE = 0, RIGHT = -1} - -@export_category("speed Parameters") -@export var enable_sprint: bool = true -@export var sprint_timer: Timer -@export var sprint_cooldown_time: float = 3.0 -@export var sprint_time: float = 1.0 -@export var sprint_replenish_rate: float = 0.30 -@export var acceleration: float = 120 -@export_range(0.01,1.0) var air_acceleration_modifier: float = 0.1 -var sprint_on_cooldown: bool = false -var sprint_time_remaining: float = sprint_time -@onready var sprint_bar: Range = $CanvasLayer/SprintBar - -const NORMAL_speed = 1 -@export_range(1.0,3.0) var sprint_speed: float = 2.0 -@export_range(0.1,1.0) var walk_speed: float = 0.5 -var speed_modifier: float = NORMAL_speed - -@export_category("Jump Parameters") -@export var coyote_timer: Timer -@export var jump_peak_time: float = .5 -@export var jump_fall_time: float = .5 -@export var jump_height: float = 2.0 -@export var jump_distance: float = 4.0 -@export var coyote_time: float = .1 -@export var jump_buffer_time: float = .2 - -# Get the gravity from the project settings to be synced with RigidBody nodes. -var jump_gravity = ProjectSettings.get_setting("physics/3d/default_gravity") -var fall_gravity: float -var jump_velocity: float -var base_speed: float -var _speed: float -var jump_available: bool = true -var jump_buffer: bool = false - -func _ready() -> void: - update_camera_rotation() - Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) - calculate_movement_parameters() - -func update_camera_rotation() -> void: - var current_rotation = get_rotation() - camera_rotation.x = current_rotation.y - camera_rotation.y = current_rotation.x - - -func _input(event: InputEvent) -> void: - if event.is_action_pressed("ui_cancel"): - if Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED: - Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) - else: - Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) - - if event is InputEventMouseMotion: - var MouseEvent = event.relative * mouse_sensitivity - camera_look(MouseEvent) - - if enable_crouch: - if event.is_action_pressed("crouch"): - crouch() - if event.is_action_released("crouch"): - if !crouch_toggle and crouched: - crouch() - - if enable_lean: - if Input.is_action_just_released("lean_left") or Input.is_action_just_released("lean_right"): - if !(Input.is_action_pressed("lean_right") or Input.is_action_pressed("lean_left")): - lean(CENTRE) - if Input.is_action_just_pressed("lean_left"): - lean(LEFT) - if Input.is_action_just_pressed("lean_right"): - lean(RIGHT) - - if enable_sprint: - if Input.is_action_just_pressed("sprint") and !crouched: - if !sprint_on_cooldown: - speed_modifier = sprint_speed - sprint_timer.start(sprint_time_remaining) - - if Input.is_action_just_released("sprint") or Input.is_action_just_released("walk"): - if !(Input.is_action_pressed("walk") or Input.is_action_pressed("sprint")): - speed_modifier = NORMAL_speed - exit_sprint() - - if Input.is_action_just_pressed("walk") and !crouched: - speed_modifier = walk_speed - -func calculate_movement_parameters() -> void: - jump_gravity = (2*jump_height)/pow(jump_peak_time,2) - fall_gravity = (2*jump_height)/pow(jump_fall_time,2) - jump_velocity = jump_gravity * jump_peak_time - base_speed = jump_distance/(jump_peak_time+jump_fall_time) - _speed = base_speed - -func lean(blend_amount: int) -> void: - if is_on_floor(): - if lean_tween: - lean_tween.kill() - - lean_tween = get_tree().create_tween() - lean_tween.tween_property(animation_tree,"parameters/lean_blend/blend_amount", blend_amount, lean_speed) - -func lean_collision() -> void: - animation_tree["parameters/left_collision_blend/blend_amount"] = lerp( - float(animation_tree["parameters/left_collision_blend/blend_amount"]),float(left_lean_collision.is_colliding()),lean_speed - ) - animation_tree["parameters/right_collision_blend/blend_amount"] = lerp( - float(animation_tree["parameters/right_collision_blend/blend_amount"]),float(right_lean_collision.is_colliding()),lean_speed - ) - -func crouch() -> void: - var Blend - if !crouch_collision.is_colliding(): - if crouched: - Blend = STANDING - else: - speed_modifier = NORMAL_speed - exit_sprint() - - if is_on_floor(): - Blend = GROUND_CROUCH - else: - Blend = AIR_CROUCH - var blend_tween = get_tree().create_tween() - blend_tween.tween_property(animation_tree,"parameters/Crouch_Blend/blend_amount",Blend,crouch_blend_speed) - crouched = !crouched - else: - crouch_blocked = true - -func camera_look(Movement: Vector2) -> void: - camera_rotation += Movement - - transform.basis = Basis() - camera.transform.basis = Basis() - - rotate_object_local(Vector3(0,1,0),-camera_rotation.x) # first rotate in Y - camera.rotate_object_local(Vector3(1,0,0), -camera_rotation.y) # then rotate in X - camera_rotation.y = clamp(camera_rotation.y,-1.5,1.2) - -func exit_sprint() -> void: - if !sprint_timer.is_stopped(): - sprint_time_remaining = sprint_timer.time_left - sprint_timer.stop() - -func sprint_replenish(delta) -> void: - var sprint_bar_Value - - if !sprint_on_cooldown and (speed_modifier != sprint_speed): - - if is_on_floor(): - sprint_time_remaining = move_toward(sprint_time_remaining, sprint_time, delta*sprint_replenish_rate) - - sprint_bar_Value= (sprint_time_remaining/sprint_time)*100 - - else: - sprint_bar_Value = (sprint_timer.time_left/sprint_time)*100 - - sprint_bar.value = sprint_bar_Value - - if sprint_bar_Value == 100: - sprint_bar.hide() - else: - sprint_bar.show() - -func _process(_delta: float) -> void: - if subviewport_camera: - subviewport_camera.global_transform = main_camera.global_transform - - -func _physics_process(_delta: float) -> void: - sprint_replenish(_delta) - lean_collision() - - if crouched and crouch_blocked: - if !crouch_collision.is_colliding(): - crouch_blocked = false - if !Input.is_action_pressed("crouch") and !crouch_toggle: - crouch() - - # Add the gravity. - var _acceleration - if not is_on_floor(): - _acceleration = acceleration*air_acceleration_modifier - - if coyote_timer.is_stopped(): - coyote_timer.start(coyote_time) - - if velocity.y>0: - velocity.y -= jump_gravity * _delta - else: - velocity.y -= fall_gravity * _delta - else: - _acceleration = acceleration - jump_available = true - coyote_timer.stop() - _speed = (base_speed / max((float(crouched)*crouch_speed_reduction),1)) * speed_modifier - if jump_buffer: - jump() - jump_buffer = false - # Handle Jump. - if Input.is_action_just_pressed("ui_accept"): - if jump_available: - if crouched: - crouch() - else: - lean(CENTRE) - jump() - else: - jump_buffer = true - get_tree().create_timer(jump_buffer_time).timeout.connect(on_jump_buffer_timeout) - - # Get the input direction and handle the movement/deceleration. - # As good practice, you should replace UI actions with custom gameplay actions. - var input_dir = Input.get_vector("left", "right", "up", "down") - var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.y)).normalized() - velocity.x = move_toward(velocity.x, direction.x * _speed, _acceleration*_delta) - velocity.z = move_toward(velocity.z, direction.z * _speed, _acceleration*_delta) - - move_and_slide() - -func jump()->void: - velocity.y = jump_velocity - jump_available = false - -func _on_sprint_timer_timeout() -> void: - sprint_on_cooldown = true - get_tree().create_timer(sprint_cooldown_time).timeout.connect(_on_sprint_cooldown_timeout) - speed_modifier = NORMAL_speed - sprint_time_remaining = 0 - -func _on_sprint_cooldown_timeout(): - sprint_on_cooldown = false - -func _on_coyote_timer_timeout() -> void: - jump_available = false - -func on_jump_buffer_timeout()->void: - jump_buffer = false diff --git a/client/template/scripts/Player_Character/player_character.gd.uid b/client/template/scripts/Player_Character/player_character.gd.uid deleted file mode 100644 index 3c2b513..0000000 --- a/client/template/scripts/Player_Character/player_character.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cfdt8t4r8pxel diff --git a/client/template/scripts/Projectiles/Projectile.gd b/client/template/scripts/Projectiles/Projectile.gd deleted file mode 100644 index 32c462f..0000000 --- a/client/template/scripts/Projectiles/Projectile.gd +++ /dev/null @@ -1,137 +0,0 @@ -extends Node3D -class_name Projectile - -signal Hit_Successfull - -## Can Be Either A Hit Scan or Rigid Body Projectile. If Rigid body is select a Rigid body must be provided. -@export_enum ("Hitscan","Rigidbody_Projectile","over_ride") var Projectile_Type: String = "Hitscan" -@export var Display_Debug_Decal: bool = true - -@export_category("Rigid Body Projectile Properties") -@export var Projectile_Velocity: int -@export var Expirey_Time: int = 10 -@export var Rigid_Body_Projectile: PackedScene -@export var pass_through: bool = false - -@onready var Debug_Bullet = preload("res://client/template/Spawnable_Objects/hit_debug.tscn") - -var damage: float = 0 -var Projectiles_Spawned = [] -var hit_objects: Array = [] - -# Called when the node enters the scene tree for the first time. -func _ready() -> void: - get_tree().create_timer(Expirey_Time).timeout.connect(_on_timer_timeout) - -func _Set_Projectile(_damage: int = 0,_spread:Vector2 = Vector2.ZERO, _Range: int = 1000, origin_point: Vector3 = Vector3.ZERO): - damage = _damage - Fire_Projectile(_spread,_Range,Rigid_Body_Projectile, origin_point) - -func Fire_Projectile(_spread: Vector2 ,_range: int, _proj:PackedScene, origin_point: Vector3): - var Camera_Collision = Camera_Ray_Cast(_spread,_range) - - match Projectile_Type: - "Hitscan": - Hit_Scan_Collision(Camera_Collision, damage,origin_point) - "Rigidbody_Projectile": - Launch_Rigid_Body_Projectile(Camera_Collision, _proj,origin_point) - "over_ride": - _over_ride_collision(Camera_Collision, damage) - -func _over_ride_collision(_camera_collision:Array, _damage: float) -> void: - pass - -func Camera_Ray_Cast(_spread: Vector2 = Vector2.ZERO, _range: float = 1000): - var _Camera = get_viewport().get_camera_3d() - var _Viewport = get_viewport().get_size() - - var Ray_Origin = _Camera.project_ray_origin(_Viewport/2) - var Ray_End = (Ray_Origin + _Camera.project_ray_normal((_Viewport/2)+Vector2i(_spread)) *_range) - var New_Intersection:PhysicsRayQueryParameters3D = PhysicsRayQueryParameters3D.create(Ray_Origin,Ray_End) - New_Intersection.set_collision_mask(0b11101101) - New_Intersection.set_hit_from_inside(false) # In Jolt this is set to true by defualt - - var Intersection = get_world_3d().direct_space_state.intersect_ray(New_Intersection) - - if not Intersection.is_empty(): - var Collision = [Intersection.collider,Intersection.position,Intersection.normal] - return Collision - else: - return [null,Ray_End,null] - -func Hit_Scan_Collision(Collision: Array,_damage: float, origin_point: Vector3): - var Point = Collision[1] - if Collision[0]: - Load_Decal(Point, Collision[2]) - - if Collision[0].is_in_group("Target"): - var Bullet = get_world_3d().direct_space_state - - var Bullet_Direction = (Point - origin_point).normalized() - var New_Intersection = PhysicsRayQueryParameters3D.create(origin_point,Point+Bullet_Direction*2) - New_Intersection.set_collision_mask(0b11101101) - New_Intersection.set_hit_from_inside(false) - New_Intersection.set_exclude(hit_objects) - var Bullet_Collision = Bullet.intersect_ray(New_Intersection) - - if Bullet_Collision: - Hit_Scan_damage(Bullet_Collision.collider, Bullet_Direction,Bullet_Collision.position,_damage) - if pass_through and check_pass_through(Bullet_Collision.collider, Bullet_Collision.rid): - var pass_through_collision : Array = [Bullet_Collision.collider, Bullet_Collision.position, Bullet_Collision.normal] - var pass_through_damage: float = damage/2 - Hit_Scan_Collision(pass_through_collision,pass_through_damage,Bullet_Collision.position) - return - queue_free() - -func check_pass_through(collider: Node3D, rid: RID)-> bool: - var valid_pass_though: bool = false - if collider.is_in_group("Pass Through"): - hit_objects.append(rid) - valid_pass_though = true - return valid_pass_though - -func Hit_Scan_damage(Collider, Direction, Position, _damage): - if Collider.is_in_group("Target") and Collider.has_method("Hit_Successful"): - Hit_Successfull.emit() - Collider.Hit_Successful(_damage, Direction, Position) - - -func Load_Decal(_pos,_normal): - if Display_Debug_Decal: - var rd = Debug_Bullet.instantiate() - var world = get_tree().get_root() - world.add_child(rd) - rd.global_translate(_pos+(_normal*.01)) - -func Launch_Rigid_Body_Projectile(Collision_Data, _projectile, _origin_point): - var _Point = Collision_Data[1] - var _Norm = Collision_Data[2] - var _proj : RigidBody3D = _projectile.instantiate() - _proj.position = _origin_point - - var world = get_tree().get_first_node_in_group("World") - world.add_child(_proj) - - _proj.look_at(_Point) - Projectiles_Spawned.push_back(_proj) - - _proj.body_entered.connect(_on_body_entered.bind(_proj,_Norm)) - - var _Direction = (_Point - _origin_point).normalized() - _proj.set_linear_velocity(_Direction*Projectile_Velocity) - -func _on_body_entered(body, _proj, _norm): - if body.is_in_group("Target") && body.has_method("Hit_Successful"): - body.Hit_Successful(damage) - Hit_Successfull.emit() - - Load_Decal(_proj.get_position(),_norm) - _proj.queue_free() - - Projectiles_Spawned.erase(_proj) - - if Projectiles_Spawned.is_empty(): - queue_free() - -func _on_timer_timeout(): - queue_free() diff --git a/client/template/scripts/Projectiles/Projectile.gd.uid b/client/template/scripts/Projectiles/Projectile.gd.uid deleted file mode 100644 index 93b5139..0000000 --- a/client/template/scripts/Projectiles/Projectile.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b26eegme16mfw diff --git a/client/template/scripts/Projectiles/melee_weapon_projectile.gd b/client/template/scripts/Projectiles/melee_weapon_projectile.gd deleted file mode 100644 index 107ff3a..0000000 --- a/client/template/scripts/Projectiles/melee_weapon_projectile.gd +++ /dev/null @@ -1,15 +0,0 @@ -extends Projectile - -@onready var melee_hitbox: ShapeCast3D = $MeleeHitbox - -func _over_ride_collision(_camera_collision:Array, _damage: float): - melee_hitbox.force_shapecast_update() - var colliders = melee_hitbox.get_collision_count() - for c in colliders: - var Target = melee_hitbox.get_collider(c) - if Target.is_in_group("Target") and Target.has_method("Hit_Successful"): - Hit_Successfull.emit() - var Direction = (Target.global_transform.origin - global_transform.origin).normalized() - var Position = melee_hitbox.get_collision_point(c) - Target.Hit_Successful(_damage, Direction, Position) - queue_free() diff --git a/client/template/scripts/Projectiles/melee_weapon_projectile.gd.uid b/client/template/scripts/Projectiles/melee_weapon_projectile.gd.uid deleted file mode 100644 index c9fe37c..0000000 --- a/client/template/scripts/Projectiles/melee_weapon_projectile.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bfn8eu00l4btq diff --git a/client/template/scripts/Projectiles/rocket_launcher_projectile.gd b/client/template/scripts/Projectiles/rocket_launcher_projectile.gd deleted file mode 100644 index e6aa354..0000000 --- a/client/template/scripts/Projectiles/rocket_launcher_projectile.gd +++ /dev/null @@ -1,23 +0,0 @@ -extends Projectile - -@export var explosion: ShapeCast3D - -func _on_body_entered(_body, _proj, _norm): - var collision_location: Vector3 = _proj.global_position - explosion.global_position = collision_location - - explosion.force_shapecast_update() - var targets = explosion.get_collision_count() - - for t in targets: - var damage_target = explosion.get_collider(t) - var collision_point: Vector3 = explosion.get_collision_point(t) - var collision_normal: Vector3 = explosion.get_collision_normal(t) - var hit_scan_array = [damage_target,collision_point,collision_normal] - Hit_Scan_Collision(hit_scan_array,damage,collision_location) - - _proj.queue_free() - Projectiles_Spawned.erase(_proj) - - if Projectiles_Spawned.is_empty(): - queue_free() diff --git a/client/template/scripts/Projectiles/rocket_launcher_projectile.gd.uid b/client/template/scripts/Projectiles/rocket_launcher_projectile.gd.uid deleted file mode 100644 index b50a137..0000000 --- a/client/template/scripts/Projectiles/rocket_launcher_projectile.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://biivm72fp7af8 diff --git a/client/template/scripts/Projectiles/shotgun_projectile.gd b/client/template/scripts/Projectiles/shotgun_projectile.gd deleted file mode 100644 index 21aa23f..0000000 --- a/client/template/scripts/Projectiles/shotgun_projectile.gd +++ /dev/null @@ -1,23 +0,0 @@ -extends Projectile - -@onready var shotgun_pattern: Path2D = $shotgun_pattern -@export_range(0.0,20.0) var Randomness = 10.0 -@export var Split_damage: bool = false -var Spray_Vector - -# Called when the node enters the scene tree for the first time. -func _ready() -> void: - Spray_Vector = shotgun_pattern.get_curve() - return super._ready() - -func _Set_Projectile(_damage: int = 0,_spread:Vector2 = Vector2.ZERO, _Range: int = 1000, origin_point: Vector3 = Vector3.ZERO): - randomize() - damage = _damage/(max(Spray_Vector.get_point_count()*float(Split_damage),1)) - - for point in Spray_Vector.get_point_count(): - var SprayPoint:Vector2 = Spray_Vector.get_point_position(point) - - SprayPoint.x = SprayPoint.x + randf_range(-Randomness, Randomness) - SprayPoint.y = SprayPoint.y + randf_range(-Randomness, Randomness) - - Fire_Projectile(SprayPoint,_Range,Rigid_Body_Projectile, origin_point) diff --git a/client/template/scripts/Projectiles/shotgun_projectile.gd.uid b/client/template/scripts/Projectiles/shotgun_projectile.gd.uid deleted file mode 100644 index 45a76a2..0000000 --- a/client/template/scripts/Projectiles/shotgun_projectile.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dnh4a4vkl0cl1 diff --git a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd b/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd deleted file mode 100644 index 485ea17..0000000 --- a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd +++ /dev/null @@ -1,11 +0,0 @@ -extends RigidBody3D -class_name WeaponPickUp - -@export var weapon: WeaponSlot -@export_enum("Weapon","Ammo") var TYPE = "Weapon" - -var Pick_Up_Ready: bool = false - -func _ready(): - await get_tree().create_timer(2.0).timeout - Pick_Up_Ready = true diff --git a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd.uid b/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd.uid deleted file mode 100644 index a77d501..0000000 --- a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/Weapon_Pick_Up.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://deaf6cmuofa0 diff --git a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd b/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd deleted file mode 100644 index bf2cf9d..0000000 --- a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd +++ /dev/null @@ -1,18 +0,0 @@ -extends RigidBody3D - -@export var _weapon_name: String -@export var _current_ammo: int -@export var _reserve_ammo: int - -const TYPE = "Ammo" - -var Pick_Up_Ready: bool = false - -func _ready(): - await get_tree().create_timer(2.0).timeout - Pick_Up_Ready = true - -func Set_Ammo(w_name: String, c_ammo : int, r_ammo : int): - if w_name == _weapon_name: - _current_ammo = c_ammo - _reserve_ammo = r_ammo diff --git a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd.uid b/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd.uid deleted file mode 100644 index 9004b32..0000000 --- a/client/template/scripts/Weapon_State_Machine/PickUp Weapons/reload_clip.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dvxmf6dpx0qdn diff --git a/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd b/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd deleted file mode 100644 index 6c8bfde..0000000 --- a/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd +++ /dev/null @@ -1,7 +0,0 @@ -extends Resource -class_name WeaponSlot - -@export var weapon: WeaponResource - -@export var current_ammo: int -@export var reserve_ammo: int diff --git a/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd.uid b/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd.uid deleted file mode 100644 index 8a2f4a5..0000000 --- a/client/template/scripts/Weapon_State_Machine/WeaponSlot.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bw4j1fbww4k8s diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/MeleeWeapon.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/MeleeWeapon.tres deleted file mode 100644 index f7ed093..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/MeleeWeapon.tres +++ /dev/null @@ -1,25 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" load_steps=3 format=3 uid="uid://ckwagka0u7opy"] - -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="1_2o2yi"] -[ext_resource type="PackedScene" uid="uid://6rfh1ejt4m6m" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/melee_projectile.tscn" id="1_pf8fu"] - -[resource] -script = ExtResource("1_2o2yi") -weapon_name = "MeleeWeapon" -pick_up_animation = "blasterP_activate" -shoot_animation = "blasterP_strike" -reload_animation = "" -change_animation = "blasterP_deactivate" -drop_animation = "" -out_of_ammo_animation = "" -melee_animation = "blasterP_strike" -has_ammo = false -magazine = 0 -max_ammo = 0 -damage = 2 -melee_damage = 1.0 -auto_fire = true -fire_range = 1 -can_be_dropped = false -projectile_to_load = ExtResource("1_pf8fu") -incremental_reload = false diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterI.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterI.tres deleted file mode 100644 index 4a41353..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterI.tres +++ /dev/null @@ -1,27 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" format=3 uid="uid://yc1f2j7pl4vr"] - -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="1_jgxyc"] -[ext_resource type="PackedScene" uid="uid://dc48o4niy1mok" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/basic_hitscan_projectile.tscn" id="1_l4j8x"] -[ext_resource type="PackedScene" uid="uid://cvbk5bxenpxey" path="res://client/template/Spawnable_Objects/Weapons/blaster_I.tscn" id="3_y2nwe"] -[ext_resource type="PackedScene" uid="uid://ciu0xkaw0ioef" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile_1.tscn" id="4_xc0or"] - -[resource] -script = ExtResource("1_jgxyc") -weapon_name = "blasterI" -pick_up_animation = "Global/blasterI Active" -shoot_animation = "Global/blasterI Shoot" -reload_animation = "Global/blasterI Reload" -change_animation = "Global/blasterI De-Activate" -drop_animation = "Global/blasterI Drop" -out_of_ammo_animation = "Global/blasterI OOA" -melee_animation = "Global/blasterI Melee" -magazine = 30 -max_ammo = 60 -damage = 10 -melee_damage = 1.0 -auto_fire = true -fire_range = 100 -can_be_dropped = true -weapon_drop = ExtResource("3_y2nwe") -weapon_spray = ExtResource("4_xc0or") -projectile_to_load = ExtResource("1_l4j8x") diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterL.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterL.tres deleted file mode 100644 index 308579f..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterL.tres +++ /dev/null @@ -1,29 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" load_steps=5 format=3 uid="uid://bwrs8ensewkgc"] - -[ext_resource type="PackedScene" uid="uid://bpxa3je174q43" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/basic_rigid_body_projectile.tscn" id="1_1tllq"] -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="2_gpxoe"] -[ext_resource type="PackedScene" uid="uid://gtthejj2wmyj" path="res://client/template/Spawnable_Objects/Weapons/blaster_n.tscn" id="3_5a5l8"] -[ext_resource type="PackedScene" uid="uid://3mb12hvruajh" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile_2.tscn" id="4_p50xh"] - -[resource] -script = ExtResource("2_gpxoe") -weapon_name = "blasterN" -pick_up_animation = "Global/blasterL Activate" -shoot_animation = "Global/blasterL Shoot" -reload_animation = "Global/blasterL Reload" -change_animation = "Global/blasterL De-Activate" -drop_animation = "Global/blasterL Drop" -out_of_ammo_animation = "Global/blasterL OOA" -melee_animation = "Global/blasterL Melee" -has_ammo = true -magazine = 30 -max_ammo = 60 -damage = 1 -melee_damage = 1.0 -auto_fire = true -fire_range = 100 -can_be_dropped = true -weapon_drop = ExtResource("3_5a5l8") -weapon_spray = ExtResource("4_p50xh") -projectile_to_load = ExtResource("1_1tllq") -incremental_reload = false diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterM.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterM.tres deleted file mode 100644 index 226527b..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterM.tres +++ /dev/null @@ -1,29 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" load_steps=5 format=3 uid="uid://cd8msvjysh2uv"] - -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="1_4ro7h"] -[ext_resource type="PackedScene" uid="uid://brvfyahytwd8m" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/shotgun_projectile.tscn" id="1_qi0jo"] -[ext_resource type="PackedScene" uid="uid://x8nhs2cer2to" path="res://client/template/Spawnable_Objects/Weapons/blaster_m.tscn" id="3_5hojr"] -[ext_resource type="PackedScene" uid="uid://ceuaamuau8pl8" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile_3.tscn" id="4_5jfrh"] - -[resource] -script = ExtResource("1_4ro7h") -weapon_name = "blasterM" -pick_up_animation = "blasterM_activate" -shoot_animation = "blasterM_Shoot" -reload_animation = "blasterM_Reload" -change_animation = "blasterM_Deactive" -drop_animation = "blasterM_Drop" -out_of_ammo_animation = "blasterM_OOA" -melee_animation = "blasterM_Melee" -has_ammo = true -magazine = 9 -max_ammo = 36 -damage = 5 -melee_damage = 1.0 -auto_fire = true -fire_range = 50 -can_be_dropped = true -weapon_drop = ExtResource("3_5hojr") -weapon_spray = ExtResource("4_5jfrh") -projectile_to_load = ExtResource("1_qi0jo") -incremental_reload = true diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterN.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterN.tres deleted file mode 100644 index d9ae6a4..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterN.tres +++ /dev/null @@ -1,26 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" format=3 uid="uid://c1jg0ifn7yvve"] - -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="1_oxrhl"] -[ext_resource type="PackedScene" uid="uid://dc48o4niy1mok" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/basic_hitscan_projectile.tscn" id="1_xr7bm"] -[ext_resource type="PackedScene" uid="uid://gtthejj2wmyj" path="res://client/template/Spawnable_Objects/Weapons/blaster_n.tscn" id="3_c38hr"] -[ext_resource type="PackedScene" uid="uid://3mb12hvruajh" path="res://client/template/Spawnable_Objects/SprayProfiles/spray_profile_2.tscn" id="4_rk8dx"] - -[resource] -script = ExtResource("1_oxrhl") -weapon_name = "blaster_n" -pick_up_animation = "Global/blasterN Active" -shoot_animation = "Global/blasterN Shoot" -reload_animation = "Global/blasterN Reload" -change_animation = "Global/blasterN De-Activate" -drop_animation = "Global/blasterN Drop" -out_of_ammo_animation = "Global/blasterN OOA" -melee_animation = "Global/blasterN Melee" -magazine = 5 -max_ammo = 15 -damage = 1 -melee_damage = 1.0 -fire_range = 100 -can_be_dropped = true -weapon_drop = ExtResource("3_c38hr") -weapon_spray = ExtResource("4_rk8dx") -projectile_to_load = ExtResource("1_xr7bm") diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterQ.tres b/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterQ.tres deleted file mode 100644 index a658467..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_Resources/blasterQ.tres +++ /dev/null @@ -1,27 +0,0 @@ -[gd_resource type="Resource" script_class="WeaponResource" load_steps=4 format=3 uid="uid://dgayjkjx4mckc"] - -[ext_resource type="Script" uid="uid://ca7h24lxxrtvx" path="res://client/template/scripts/Weapon_State_Machine/weapon_resource.gd" id="1_321c1"] -[ext_resource type="PackedScene" uid="uid://ddfiivxgnakti" path="res://client/template/Spawnable_Objects/Projectiles_To_Load/rocket_launcher_projectile.tscn" id="1_xi5nj"] -[ext_resource type="PackedScene" uid="uid://dwgt7gwe3gfyy" path="res://client/template/Spawnable_Objects/Weapons/blasterQ.tscn" id="2_kih88"] - -[resource] -script = ExtResource("1_321c1") -weapon_name = "blasterQ" -pick_up_animation = "Global/blasterQ Active" -shoot_animation = "Global/blasterQ Shoot" -reload_animation = "Global/blasterQ Reload" -change_animation = "Global/blasterQ Deactivate" -drop_animation = "Global/blasterQ Drop" -out_of_ammo_animation = "Global/blasterQ OOA" -melee_animation = "Global/blasterQ Melee" -has_ammo = true -magazine = 2 -max_ammo = 6 -damage = 20 -melee_damage = 2.0 -auto_fire = false -fire_range = 100 -can_be_dropped = true -weapon_drop = ExtResource("2_kih88") -projectile_to_load = ExtResource("1_xi5nj") -incremental_reload = false diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd b/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd deleted file mode 100644 index 0ca1ed7..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd +++ /dev/null @@ -1,263 +0,0 @@ -extends Node3D - -signal weapon_changed -signal update_ammo -signal update_weapon_stack -signal hit_successfull -signal add_signal_to_hud - -signal connect_weapon_to_hud - -@export var animation_player: AnimationPlayer -@export var melee_hitbox: ShapeCast3D -@export var max_weapons: int -@onready var bullet_point = get_node("%BulletPoint") -@onready var debug_bullet = preload("res://client/template/Spawnable_Objects/hit_debug.tscn") - -var next_weapon: WeaponSlot - -#The List of All Available weapons in the game -var spray_profiles: Dictionary = {} -var _count = 0 -var shot_tween -@export var weapon_stack:Array[WeaponSlot] #An Array of weapons currently in possesion by the player -var current_weapon_slot: WeaponSlot = null - -func _ready() -> void: - if weapon_stack.is_empty(): - push_error("Weapon Stack is empty, please populate with weapons") - else: - animation_player.animation_finished.connect(_on_animation_finished) - for i in weapon_stack: - initialize(i) #current starts on the first weapon in the stack - current_weapon_slot = weapon_stack[0] - if check_valid_weapon_slot(): - enter() - update_weapon_stack.emit(weapon_stack) - -func _unhandled_key_input(event: InputEvent) -> void: - if not event.is_pressed(): - return - - if range(KEY_1, KEY_4).has(event.keycode): - var _slot_number = (event.keycode - KEY_1) - if weapon_stack.size()-1>=_slot_number: - exit(weapon_stack[_slot_number]) - -func _input(event: InputEvent) -> void: - if event.is_action_pressed("WeaponUp"): - if check_valid_weapon_slot(): - var weapon_index = weapon_stack.find(current_weapon_slot) - weapon_index = min(weapon_index+1,weapon_stack.size()-1) - exit(weapon_stack[weapon_index]) - - if event.is_action_pressed("WeaponDown"): - if check_valid_weapon_slot(): - var weapon_index = weapon_stack.find(current_weapon_slot) - weapon_index = max(weapon_index-1,0) - exit(weapon_stack[weapon_index]) - - if event.is_action_pressed("Shoot"): - if check_valid_weapon_slot(): - shoot() - - if event.is_action_released("Shoot"): - if check_valid_weapon_slot(): - shot_count_update() - - if event.is_action_pressed("Reload"): - if check_valid_weapon_slot(): - reload() - - if event.is_action_pressed("Drop_Weapon"): - if check_valid_weapon_slot(): - drop(current_weapon_slot) - - if event.is_action_pressed("Melee"): - if check_valid_weapon_slot(): - melee() - -func check_valid_weapon_slot()->bool: - if current_weapon_slot: - if current_weapon_slot.weapon: - return true - else: - push_warning("No Weapon Resource active on the weapon controler.") - else: - push_warning("No Current Weapon slot active on the weapon controler.") - return false - -func initialize(_weapon_slot: WeaponSlot): - if !_weapon_slot or !_weapon_slot.weapon: - return - if _weapon_slot.weapon.weapon_spray: - spray_profiles[_weapon_slot.weapon.weapon_name] = _weapon_slot.weapon.weapon_spray.instantiate() - connect_weapon_to_hud.emit(_weapon_slot.weapon) - -func enter() -> void: - animation_player.queue(current_weapon_slot.weapon.pick_up_animation) - weapon_changed.emit(current_weapon_slot.weapon.weapon_name) - update_ammo.emit([current_weapon_slot.current_ammo, current_weapon_slot.reserve_ammo]) - -func exit(_next_weapon: WeaponSlot) -> void: - if _next_weapon != current_weapon_slot: - if animation_player.get_current_animation() != current_weapon_slot.weapon.change_animation: - animation_player.queue(current_weapon_slot.weapon.change_animation) - next_weapon = _next_weapon - -func change_weapon(weapon_slot: WeaponSlot) -> void: - current_weapon_slot = weapon_slot - next_weapon = null - enter() - -func shot_count_update() -> void: - shot_tween = get_tree().create_tween() - shot_tween.tween_property(self,"_count",0,1) - -func shoot() -> void: - if current_weapon_slot.current_ammo != 0 or not current_weapon_slot.weapon.has_ammo: - if current_weapon_slot.weapon.incremental_reload and animation_player.current_animation == current_weapon_slot.weapon.reload_animation: - animation_player.stop() - - if not animation_player.is_playing(): - animation_player.play(current_weapon_slot.weapon.shoot_animation) - if current_weapon_slot.weapon.has_ammo: - current_weapon_slot.current_ammo -= 1 - - update_ammo.emit([current_weapon_slot.current_ammo, current_weapon_slot.reserve_ammo]) - - if shot_tween: - shot_tween.kill() - - var Spread = Vector2.ZERO - - if current_weapon_slot.weapon.weapon_spray: - _count = _count + 1 - Spread = spray_profiles[current_weapon_slot.weapon.weapon_name].Get_Spray(_count, current_weapon_slot.weapon.magazine) - - load_projectile(Spread) - else: - reload() - -func load_projectile(_spread): - var _projectile:Projectile = current_weapon_slot.weapon.projectile_to_load.instantiate() - - _projectile.position = bullet_point.global_position - _projectile.rotation = owner.rotation - - bullet_point.add_child(_projectile) - add_signal_to_hud.emit(_projectile) - var bullet_point_origin = bullet_point.global_position - _projectile._Set_Projectile(current_weapon_slot.weapon.damage,_spread,current_weapon_slot.weapon.fire_range, bullet_point_origin) - -func reload() -> void: - if current_weapon_slot.current_ammo == current_weapon_slot.weapon.magazine: - return - elif not animation_player.is_playing(): - if current_weapon_slot.reserve_ammo != 0: - animation_player.queue(current_weapon_slot.weapon.reload_animation) - else: - animation_player.queue(current_weapon_slot.weapon.out_of_ammo_animation) - -func calculate_reload() -> void: - if current_weapon_slot.current_ammo == current_weapon_slot.weapon.magazine: - var anim_legnth = animation_player.get_current_animation_length() - animation_player.advance(anim_legnth) - return - - var Mag_Amount = current_weapon_slot.weapon.magazine - - if current_weapon_slot.weapon.incremental_reload: - Mag_Amount = current_weapon_slot.current_ammo+1 - - var Reload_Amount = min(Mag_Amount-current_weapon_slot.current_ammo,Mag_Amount,current_weapon_slot.reserve_ammo) - - current_weapon_slot.current_ammo = current_weapon_slot.current_ammo+Reload_Amount - current_weapon_slot.reserve_ammo = current_weapon_slot.reserve_ammo-Reload_Amount - - update_ammo.emit([current_weapon_slot.current_ammo, current_weapon_slot.reserve_ammo]) - shot_count_update() - -func melee() -> void: - var Current_Anim = animation_player.get_current_animation() - - if Current_Anim == current_weapon_slot.weapon.shoot_animation: - return - - if Current_Anim != current_weapon_slot.weapon.melee_animation: - animation_player.play(current_weapon_slot.weapon.melee_animation) - if melee_hitbox.is_colliding(): - var colliders = melee_hitbox.get_collision_count() - for c in colliders: - var Target = melee_hitbox.get_collider(c) - if Target.is_in_group("Target") and Target.has_method("Hit_Successful"): - hit_successfull.emit() - var Direction = (Target.global_transform.origin - owner.global_transform.origin).normalized() - var Position = melee_hitbox.get_collision_point(c) - Target.Hit_Successful(current_weapon_slot.weapon.melee_damage, Direction, Position) - -func drop(_slot: WeaponSlot) -> void: - if _slot.weapon.can_be_dropped and weapon_stack.size() != 1: - var weapon_index = weapon_stack.find(_slot,0) - if weapon_index != -1: - weapon_stack.pop_at(weapon_index) - update_weapon_stack.emit(weapon_stack) - - if _slot.weapon.weapon_drop: - var weapon_dropped = _slot.weapon.weapon_drop.instantiate() - weapon_dropped.weapon = _slot - weapon_dropped.set_global_transform(bullet_point.get_global_transform()) - get_tree().get_root().add_child(weapon_dropped) - - animation_player.play(current_weapon_slot.weapon.drop_animation) - weapon_index = max(weapon_index-1,0) - exit(weapon_stack[weapon_index]) - else: - return - -func _on_animation_finished(anim_name): - if anim_name == current_weapon_slot.weapon.shoot_animation: - if current_weapon_slot.weapon.auto_fire == true: - if Input.is_action_pressed("Shoot"): - shoot() - - if anim_name == current_weapon_slot.weapon.change_animation: - change_weapon(next_weapon) - - if anim_name == current_weapon_slot.weapon.reload_animation: - if !current_weapon_slot.weapon.incremental_reload: - calculate_reload() - -func _on_pick_up_detection_body_entered(body: RigidBody3D): - var weapon_slot = body.weapon - for slot in weapon_stack: - if slot.weapon == weapon_slot.weapon: - var remaining - - remaining = add_ammo(slot, weapon_slot.current_ammo+weapon_slot.reserve_ammo) - weapon_slot.current_ammo = min(remaining, slot.weapon.magazine) - weapon_slot.reserve_ammo = max(remaining - weapon_slot.current_ammo,0) - - if remaining == 0: - body.queue_free() - return - - if body.TYPE == "Weapon": - if weapon_stack.size() == max_weapons: - return - - if body.Pick_Up_Ready == true: - var weapon_index = weapon_stack.find(current_weapon_slot) - weapon_stack.insert(weapon_index,weapon_slot) - update_weapon_stack.emit(weapon_stack) - exit(weapon_slot) - initialize(weapon_slot) - body.queue_free() - -func add_ammo(_weapon_slot: WeaponSlot, ammo: int)->int: - var weapon = _weapon_slot.weapon - var required = weapon.max_ammo - _weapon_slot.reserve_ammo - var remaining = max(ammo - required,0) - _weapon_slot.reserve_ammo += min(ammo, required) - update_ammo.emit([current_weapon_slot.current_ammo, current_weapon_slot.reserve_ammo]) - return remaining diff --git a/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd.uid b/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd.uid deleted file mode 100644 index a287ed1..0000000 --- a/client/template/scripts/Weapon_State_Machine/Weapon_State_Machine.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cxxpp8cfxb8jp diff --git a/client/template/scripts/Weapon_State_Machine/bullet.gd b/client/template/scripts/Weapon_State_Machine/bullet.gd deleted file mode 100644 index bd49636..0000000 --- a/client/template/scripts/Weapon_State_Machine/bullet.gd +++ /dev/null @@ -1,15 +0,0 @@ -extends RigidBody3D - -signal Hit_Successfull - -var damage: int = 0 - -func _on_body_entered(body): - if body.is_in_group("Target") && body.has_method("Hit_Successful"): - body.Hit_Successful(damage) - emit_signal("Hit_Successfull") - - queue_free() - -func _on_timer_timeout(): - queue_free() diff --git a/client/template/scripts/Weapon_State_Machine/bullet.gd.uid b/client/template/scripts/Weapon_State_Machine/bullet.gd.uid deleted file mode 100644 index 3b1de14..0000000 --- a/client/template/scripts/Weapon_State_Machine/bullet.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://11gya5082xv3 diff --git a/client/template/scripts/Weapon_State_Machine/hit_debug.gd b/client/template/scripts/Weapon_State_Machine/hit_debug.gd deleted file mode 100644 index 3afecaa..0000000 --- a/client/template/scripts/Weapon_State_Machine/hit_debug.gd +++ /dev/null @@ -1,4 +0,0 @@ -extends Sprite3D - -func _on_timer_timeout(): - queue_free() diff --git a/client/template/scripts/Weapon_State_Machine/hit_debug.gd.uid b/client/template/scripts/Weapon_State_Machine/hit_debug.gd.uid deleted file mode 100644 index 8ddd5e0..0000000 --- a/client/template/scripts/Weapon_State_Machine/hit_debug.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dkt6w5wvebi72 diff --git a/client/template/scripts/Weapon_State_Machine/weapon_resource.gd b/client/template/scripts/Weapon_State_Machine/weapon_resource.gd deleted file mode 100644 index 23f525e..0000000 --- a/client/template/scripts/Weapon_State_Machine/weapon_resource.gd +++ /dev/null @@ -1,56 +0,0 @@ -@icon("res://client/template/scripts/Weapon_State_Machine/weapon_resource_icon.svg") -extends Resource - -class_name WeaponResource - -@warning_ignore("unused_signal") -signal update_overlay -@warning_ignore("unused_signal") -signal Zoom - -@export_group("Weapon Animations") -##The Reference for the active weapons and pick ups -@export var weapon_name: String -## The Animation to play when the weapon was picked up -@export var pick_up_animation: String -## The Animation to play when the weapon is shot -@export var shoot_animation: String -## The Animation to play when the weapon reload -@export var reload_animation: String -## The Animation to play when the weapon is Changed -@export var change_animation: String -## The Animation to play when the weapon is dropped -@export var drop_animation: String -## The Animation to play when the weapon is out of ammo -@export var out_of_ammo_animation: String -## The Animation to play when you do the melee strike -@export var melee_animation: String - -@export_group("Weapon Stats") -## If Uncheck Shoot Function Will skip ammo check -@export var has_ammo: bool = true -## The Maximum amount that you will reload if zero -@export var magazine: int -## The Maximum ammo that can be held in reserve. -@export var max_ammo: int -## The damage that a weapon will do -@export var damage: int -## The Melee damage that a weapon will do. -@export var melee_damage: float -## If Auto Fire is set to true the weapon will continuously fire until fire trigger is released -@export var auto_fire: bool -## The Range that a weapon will fire. Beyong this number no hit will trigger. -@export var fire_range: int - -@export_group("Weapon Behaviour") -##If Checked the weapon drop scene MUST be provided -@export var can_be_dropped: bool -## The Rigid body to spawn for the weapon. It should be a Rigid Body of type Weapon_Pick_Up and have a matching weapon_name. -@export var weapon_drop: PackedScene -## The Spray_Profile to use when firing the weapon. It should be of Type Spray_Profile. This handles the spray calculations and passes back the information to the Projectile to load -@export var weapon_spray: PackedScene -## The Projectile that will be loaded. Not a Rigid body but class that handles the ray cast processing and can be either hitscan or rigid body. Should be of Type Projectile -@export var projectile_to_load: PackedScene -## Incremental Reload is for shotgun or sigle item loaded weapons where you can interupt the reload process. If true the Calculate_Reload function on the weapon_state_machine must be called indepently. -## For Example: at each step of a shotgun reload the function is called via the animation player. -@export var incremental_reload: bool = false diff --git a/client/template/scripts/Weapon_State_Machine/weapon_resource.gd.uid b/client/template/scripts/Weapon_State_Machine/weapon_resource.gd.uid deleted file mode 100644 index 4a3af55..0000000 --- a/client/template/scripts/Weapon_State_Machine/weapon_resource.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ca7h24lxxrtvx diff --git a/client/template/scripts/Weapon_State_Machine/weapon_resource_icon.svg b/client/template/scripts/Weapon_State_Machine/weapon_resource_icon.svg deleted file mode 100644 index e8e8eb8..0000000 --- a/client/template/scripts/Weapon_State_Machine/weapon_resource_icon.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - diff --git a/client/template/weapon_animation.res b/client/template/weapon_animation.res deleted file mode 100644 index b198ac7..0000000 Binary files a/client/template/weapon_animation.res and /dev/null differ diff --git a/client/template/world_environment.tres b/client/template/world_environment.tres deleted file mode 100644 index 715148b..0000000 --- a/client/template/world_environment.tres +++ /dev/null @@ -1,18 +0,0 @@ -[gd_resource type="Environment" format=3 uid="uid://bqp54syxqnqww"] - -[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_cotvt"] -sky_top_color = Color(0.160784, 0.482353, 0.827451, 1) -sky_horizon_color = Color(1, 1, 1, 1) -sun_angle_max = 114.44 - -[sub_resource type="Sky" id="Sky_prubo"] -sky_material = SubResource("ProceduralSkyMaterial_cotvt") - -[resource] -background_mode = 2 -sky = SubResource("Sky_prubo") -sdfgi_use_occlusion = true -fog_light_color = Color(0.823529, 0.807843, 0.729412, 1) -fog_light_energy = 0.66 -fog_sky_affect = 0.463 -volumetric_fog_emission = Color(0.266667, 0.266667, 0.266667, 1) diff --git a/client/test_load.gd b/client/test_load.gd deleted file mode 100644 index 6ba82b8..0000000 --- a/client/test_load.gd +++ /dev/null @@ -1,10 +0,0 @@ -@tool -extends Node - -func _ready(): - print("Hello from Godot bake script!") - print("Loading scene...") - var scene = load("res://assets/scenes/modular/kit_demo.tscn") - print("Scene loaded: ", scene) - print("Quitting.") - get_tree().quit(0) diff --git a/client/test_load.gd.uid b/client/test_load.gd.uid deleted file mode 100644 index 15a3b8b..0000000 --- a/client/test_load.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ca6jmkqw7bj8k diff --git a/client/test_materials.gd b/client/test_materials.gd deleted file mode 100644 index 6f61a60..0000000 --- a/client/test_materials.gd +++ /dev/null @@ -1,29 +0,0 @@ -extends Node - -func _ready(): - var materials = [ - "res://assets/materials/wall_concrete_01.tres", - "res://assets/materials/wall_concrete_02.tres", - "res://assets/materials/floor_tile_01.tres", - "res://assets/materials/floor_concrete_01.tres", - "res://assets/materials/metal_structural_01.tres", - "res://assets/materials/accent_team_blue.tres", - "res://assets/materials/accent_team_red.tres", - ] - - var all_ok = true - for mat_path in materials: - var res = ResourceLoader.exists(mat_path) - if res: - var mat = load(mat_path) - print("OK: " + mat_path + " -> " + str(mat.resource_name)) - else: - print("FAIL: " + mat_path + " not found") - all_ok = false - - if all_ok: - print("\nAll materials loaded successfully.") - get_tree().quit(0) - else: - print("\nSome materials failed to load.") - get_tree().quit(1) diff --git a/client/test_materials.gd.uid b/client/test_materials.gd.uid deleted file mode 100644 index 17dbbd3..0000000 --- a/client/test_materials.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dpbnyepcip8vb diff --git a/client/tools/test_map.tscn b/client/tools/test_map.tscn deleted file mode 100644 index e67ade3..0000000 --- a/client/tools/test_map.tscn +++ /dev/null @@ -1,18 +0,0 @@ -[gd_scene format=3] - -[node name="TestScene" type="Node3D"] - -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] - -[node name="LightmapGI" type="LightmapGI" parent="."] -light_data = null -quality = 2 -bounces = 3 - -[node name="SunLight" type="DirectionalLight3D" parent="."] -light_bake_mode = 2 -shadow_enabled = true - -[node name="FillLight" type="OmniLight3D" parent="."] -light_energy = 0.5 -light_bake_mode = 2 diff --git a/client/tools/test_runner.gd b/client/tools/test_runner.gd deleted file mode 100644 index 65f3ac8..0000000 --- a/client/tools/test_runner.gd +++ /dev/null @@ -1,6 +0,0 @@ -@tool -extends Node - -func _ready() -> void: - print("HELLO FROM MAIN SCENE TEST") - get_tree().quit(0) diff --git a/client/tools/test_runner.gd.uid b/client/tools/test_runner.gd.uid deleted file mode 100644 index b6b121d..0000000 --- a/client/tools/test_runner.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bixco4epggvr1 diff --git a/client/tools/test_runner.tscn b/client/tools/test_runner.tscn deleted file mode 100644 index 8e95e91..0000000 --- a/client/tools/test_runner.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene format=3] - -[node name="TestRunner" type="Node"] -script = ExtResource("1_tools_test_runner_gd") - -[ext_resource type="Script" path="res://tools/test_runner.gd" id="1_tools_test_runner_gd"] diff --git a/client/tools/test_simple.gd b/client/tools/test_simple.gd deleted file mode 100644 index 509cf6a..0000000 --- a/client/tools/test_simple.gd +++ /dev/null @@ -1,7 +0,0 @@ -@tool -extends Node - -func _ready() -> void: - print("HELLO WORLD") - print("User args: ", OS.get_cmdline_user_args()) - get_tree().quit(0) diff --git a/client/tools/test_simple.gd.uid b/client/tools/test_simple.gd.uid deleted file mode 100644 index 053a9f1..0000000 --- a/client/tools/test_simple.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dmd2i00ukdy36 diff --git a/client/tools/validate_map.gd b/client/tools/validate_map.gd deleted file mode 100644 index 8ab6dbc..0000000 --- a/client/tools/validate_map.gd +++ /dev/null @@ -1,183 +0,0 @@ -@tool -extends Node - -# Map Validator — Command-line entry point. -# -# Usage: -# godot --path client --script tools/validate_map.gd -- res://maps/mymap.tscn -# -# The scene path must come after `--` so Godot passes it as a user argument. -# -# Exit codes: -# 0 — All checks passed -# 1 — Warnings only (light suggestions, no blocked items) -# 2 — Errors found (must-fix items) -# -# Runs four validation modules in order: -# 1. Scene structure — node hierarchy, required groups, LightmapGI, WorldEnvironment -# 2. Polygon count — total mesh triangles ≤ 50K -# 3. Texture size — all material textures ≤ 1024×1024 -# 4. Light count — dynamic (non-baked) lights ≤ 4, lightmap bake status -# -# Each module returns a dictionary {pass: bool, errors: [str], warnings: [str]}. - -const VALIDATOR_DIR := "res://tools/validate_map/" - -enum ExitCode { - PASS = 0, - WARNINGS = 1, - ERRORS = 2, -} - - -func _ready() -> void: - var args := OS.get_cmdline_user_args() - if args.is_empty(): - _print_usage() - get_tree().quit(ExitCode.ERRORS) - return - - var scene_path := args[0] - - # Validate path prefix - if not scene_path.begins_with("res://"): - push_error("Scene path must be a Godot resource path (res://) — got: ", scene_path) - get_tree().quit(ExitCode.ERRORS) - return - - # Load the scene - var scene := ResourceLoader.load(scene_path, "PackedScene", ResourceLoader.CACHE_MODE_IGNORE) - if scene == null: - push_error("Failed to load scene: ", scene_path) - get_tree().quit(ExitCode.ERRORS) - return - - print("═══════════════════════════════════════════") - print(" MAP VALIDATOR") - print(" Scene: ", scene_path) - print("═══════════════════════════════════════════") - print("") - - # Instantiate the scene (in @tool mode this runs in editor) - var instance_data: Array = _try_instantiate(scene, scene_path) - var instance: Node = instance_data[0] as Node - var instantiate_error: String = instance_data[1] as String - if instance == null: - push_error(instantiate_error) - get_tree().quit(ExitCode.ERRORS) - return - - add_child(instance) - - # Run all validators - var results: Array[Dictionary] = [] - results.append(_run_module("validate_scene", instance, scene_path)) - results.append(_run_module("validate_polycount", instance, scene_path)) - results.append(_run_module("validate_textures", instance, scene_path)) - results.append(_run_module("validate_lights", instance, scene_path)) - - # Summary - print("") - print("═══════════════════════════════════════════") - print(" SUMMARY") - print("═══════════════════════════════════════════") - - var total_errors := 0 - var total_warnings := 0 - - for result in results: - var label: String = "PASS" if result["pass"] else result["status"] - print(" [", label, "] ", result["name"]) - total_errors += result["errors"].size() - total_warnings += result["warnings"].size() - - print("") - print(" Errors: ", total_errors) - print(" Warnings: ", total_warnings) - - if total_errors > 0: - print(" Result: FAIL") - print("") - get_tree().quit(ExitCode.ERRORS) - elif total_warnings > 0: - print(" Result: PASS (with warnings)") - print("") - get_tree().quit(ExitCode.WARNINGS) - else: - print(" Result: PASS") - print("") - get_tree().quit(ExitCode.PASS) - - -# Attempts to instantiate a PackedScene, catching errors gracefully. -func _try_instantiate(scene: PackedScene, path: String) -> Array: - var err_test := scene.can_instantiate() - if not err_test: - return [null, "Scene cannot be instantiated (may depend on other resources): " + path] - - var inst := scene.instantiate(PackedScene.GEN_EDIT_STATE_INSTANCE) - if inst == null: - return [null, "Scene instantiate returned null: " + path] - return [inst, ""] - - -# Loads a validator script from VALIDATOR_DIR and runs its checks. -func _run_module(name: String, scene_root: Node, scene_path: String) -> Dictionary: - var script_path := VALIDATOR_DIR.path_join(name + ".gd") - var script := ResourceLoader.load(script_path, "Script", ResourceLoader.CACHE_MODE_IGNORE) - if script == null: - push_error("Failed to load validator module: ", script_path) - return { - "name": name, - "pass": false, - "status": "ERROR", - "errors": ["Validator script not found: " + script_path], - "warnings": [], - } - - # Instantiate the validator module directly (scripts extend RefCounted) - if not script.has_method("validate"): - push_error("Validator module missing validate() method: ", script_path) - return { - "name": name, - "pass": false, - "status": "ERROR", - "errors": ["Missing validate() method in " + script_path], - "warnings": [], - } - - print("── [", name, "] ────────────────────────────") - - var validator = script.new() - var result: Dictionary = validator.validate(scene_root, scene_path) - - # Print inline results - for w in result.get("warnings", []): - print(" ⚠ ", w) - for e in result.get("errors", []): - print(" ✖ ", e) - - var ok: bool = result.get("pass", false) - if ok: - print(" ✓ pass") - else: - print(" ✖ FAIL") - - print("") - return result - - -func _print_usage() -> void: - print("Map Validator — usage:") - print("") - print(" godot --path --script tools/validate_map.gd -- ") - print("") - print("Examples:") - print(" godot --path client --script tools/validate_map.gd -- res://maps/de_dust2.tscn") - print(" godot --path client --script tools/validate_map.gd -- res://maps/my_map.tscn") - print("") - print("Exit codes:") - print(" 0 — All checks passed") - print(" 1 — Warnings (non-blocking suggestions)") - print(" 2 — Errors (must-fix items)") - print("") diff --git a/client/tools/validate_map.gd.uid b/client/tools/validate_map.gd.uid deleted file mode 100644 index bce8231..0000000 --- a/client/tools/validate_map.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ds3mr0f0s80xd diff --git a/client/tools/validate_map/README.md b/client/tools/validate_map/README.md deleted file mode 100644 index d212b5e..0000000 --- a/client/tools/validate_map/README.md +++ /dev/null @@ -1,88 +0,0 @@ -# Map Validator Scripts - -Validator scripts for Tactical Shooter map scenes. Run against any `.tscn` file to -check structural integrity, performance budget, and lighting correctness before -packaging. - -## Usage - -```bash -# From the project root or anywhere with --path pointing at the Godot project -godot --path client --script tools/validate_map.gd -- res://maps/mymap.tscn -``` - -The `--` separates Godot engine args from user args. The scene path must be a -`res://`-prefixed Godot resource path. - -## Exit Codes - -| Code | Meaning | Description | -|------|----------------|-------------------------------------------| -| 0 | PASS | All checks passed, no warnings | -| 1 | WARNINGS | Passed with non-blocking suggestions | -| 2 | ERRORS | Failed — must-fix items found | - -Use exit codes in CI/CD pipelines to gate map merges: -```bash -godot --path client --script tools/validate_map.gd -- res://maps/mymap.tscn -if [ $? -eq 2 ]; then - echo "Map validation FAILED — fix errors before submitting" - exit 1 -fi -``` - -## Validator Modules - -### 1. Scene Structure (`validate_scene.gd`) -- Scene root is a `Node3D` -- Required node types present: `WorldEnvironment`, `LightmapGI` -- Required Godot groups assigned to one node each: `ct_spawn`, `t_spawn`, `buy_zone`, `bomb_site`, `cubemap_origin` -- Node naming follows PascalCase convention - -### 2. Polygon Count (`validate_polycount.gd`) -- Total mesh triangle count across all `MeshInstance3D` nodes ≤ **50,000** -- Per-mesh breakdown printed for debugging -- Warns on individual meshes exceeding 5K triangles -- Warns if no `MeshInstance3D` nodes found (empty map) - -### 3. Texture Sizes (`validate_textures.gd`) -- All material textures (albedo, normal, roughness, metallic, ORM, emission, AO) ≤ **1024×1024** -- Checks `StandardMaterial3D`, `ORMMaterial3D`, and `ShaderMaterial` (Texture2D params) -- Warns on textures > 512×512 (suggested for secondary surfaces) -- LightmapGI baked textures checked separately - -### 4. Lights & Lightmap (`validate_lights.gd`) -- Dynamic (non-baked) `OmniLight3D` + `SpotLight3D` ≤ **4** -- `DirectionalLight3D` counts toward dynamic budget if light_bake_mode ≠ Static -- `LightmapGI` node present and baked (light_data ≠ null) -- Lightmap quality, bounces, texel scale, and max texture size checked -- `WorldEnvironment` configured with Environment resource -- `ReflectionProbe` presence and settings -- Warns on dynamic lights with shadows enabled (performance cost) - -## Architecture - -``` -client/tools/ -├── validate_map.gd # Main entry point: parses args, loads scene, runs modules -└── validate_map/ - ├── validate_scene.gd # Scene structure validator - ├── validate_polycount.gd # Polygon count validator - ├── validate_textures.gd # Texture size validator - └── validate_lights.gd # Light/lightmap validator -``` - -All modules are `@tool` `RefCounted` scripts exporting a single `validate(scene_root: Node, scene_path: String) -> Dictionary` function. - -## Adding a New Validator - -1. Create `tools/validate_map/validate_.gd` extending `RefCounted` -2. Implement `func validate(scene_root: Node, scene_path: String) -> Dictionary` -3. Return `{"pass": bool, "errors": [String], "warnings": [String]}` -4. Add a `_run_module("", instance, scene_path)` call in `validate_map.gd:_ready()` - -## Requirements - -- Godot 4.x -- The map scene must be self-contained (all resources accessible via `res://` paths) -- Run from a terminal (not embedded in a running game) diff --git a/client/tools/validate_map/test_hello.gd b/client/tools/validate_map/test_hello.gd deleted file mode 100644 index 1fe9901..0000000 --- a/client/tools/validate_map/test_hello.gd +++ /dev/null @@ -1,7 +0,0 @@ -@tool -extends Node - -func _ready() -> void: - print("HELLO FROM VALIDATOR") - print("Args: ", OS.get_cmdline_user_args()) - get_tree().quit(0) diff --git a/client/tools/validate_map/test_hello.gd.uid b/client/tools/validate_map/test_hello.gd.uid deleted file mode 100644 index f31a7d9..0000000 --- a/client/tools/validate_map/test_hello.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c6gr7qvmxxb2q diff --git a/client/tools/validate_map/test_minimal.tscn b/client/tools/validate_map/test_minimal.tscn deleted file mode 100644 index d3b94c3..0000000 --- a/client/tools/validate_map/test_minimal.tscn +++ /dev/null @@ -1,10 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[ext_resource type="Script" path="res://tools/validate_map.gd" id="1"] - -[node name="TestRoot" type="Node3D"] -script = ExtResource("1") - -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] - -[node name="LightmapGI" type="LightmapGI" parent="."] diff --git a/client/tools/validate_map/validate_lights.gd b/client/tools/validate_map/validate_lights.gd deleted file mode 100644 index c1a49a1..0000000 --- a/client/tools/validate_map/validate_lights.gd +++ /dev/null @@ -1,151 +0,0 @@ -@tool -extends RefCounted - -# Validator: Light Count & Lightmap Status -# -# Checks: -# - Dynamic (non-baked) OmniLight3D + SpotLight3D count ≤ 4 -# - DirectionalLight3D is allowed (counts as 1 toward dynamic budget if not baked) -# - WorldEnvironment has tonemap/ambient configured -# - LightmapGI present and baked (light_data != null) -# - ReflectionProbe count and settings -# - Light bake modes should be 2 (Static) for all static geometry lights - -const MAX_DYNAMIC_LIGHTS := 4 # Omni + Spot + unbaked Directional - - -func validate(scene_root: Node, scene_path: String) -> Dictionary: - var errors: Array[String] = [] - var warnings: Array[String] = [] - - var all_lights: Array[Node] = [] - _collect_light_nodes(scene_root, all_lights) - - var dynamic_count := 0 - var baked_count := 0 - var directional_count := 0 - var omni_count := 0 - var spot_count := 0 - - for light in all_lights: - var bake_mode := -1 - if light.has_method("get_light_bake_mode"): - bake_mode = light.get("light_bake_mode") as int - - var is_dynamic := bake_mode == 0 # BAKE_DISABLED - - if light is DirectionalLight3D: - directional_count += 1 - if is_dynamic: - dynamic_count += 1 - else: - baked_count += 1 - - elif light is OmniLight3D: - omni_count += 1 - if is_dynamic: - dynamic_count += 1 - else: - baked_count += 1 - - elif light is SpotLight3D: - spot_count += 1 - if is_dynamic: - dynamic_count += 1 - else: - baked_count += 1 - - print(" Light breakdown:") - print(" DirectionalLight3D: ", directional_count) - print(" OmniLight3D: ", omni_count) - print(" SpotLight3D: ", spot_count) - print(" Dynamic (non-baked): ", dynamic_count) - print(" Baked: ", baked_count) - print("") - - # Check dynamic light budget - if dynamic_count > MAX_DYNAMIC_LIGHTS: - errors.append("Too many dynamic lights: %d (max %d) — set light_bake_mode = 2 (Static) on static lights to reduce" % [dynamic_count, MAX_DYNAMIC_LIGHTS]) - else: - print(" ✓ Dynamic light count: ", dynamic_count, " (limit: ", MAX_DYNAMIC_LIGHTS, ")") - - # Check LightmapGI - var lightmaps: Array[LightmapGI] = [] - _find_nodes_by_type(scene_root, "LightmapGI", lightmaps) - - if lightmaps.is_empty(): - errors.append("No LightmapGI node found — maps should include a LightmapGI for baked global illumination") - else: - var lm := lightmaps[0] - if lightmaps.size() > 1: - warnings.append("Multiple LightmapGI nodes found (%d) — only one recommended" % lightmaps.size()) - - if lm.light_data != null: - print(" ✓ LightmapGI baked (light_data present)") - else: - warnings.append("LightmapGI node found but NOT BAKED — light_data is null. Select LightmapGI → 'Bake Lightmap' button in editor") - - # Quality settings check - print(" Quality: ", lm.quality, " (0=Low, 1=Med, 2=High, 3=Ultra)") - print(" Bounces: ", lm.bounces) - print(" Texel Scale: ", lm.texel_scale) - print(" Max Texture Size: ", lm.max_texture_size) - - if lm.bounces < 2: - warnings.append("LightmapGI bounces set to %d — recommend a minimum of 2 for accurate indirect lighting" % lm.bounces) - - if lm.max_texture_size < 512: - warnings.append("LightmapGI max_texture_size is %d — may cause visible seams, recommend ≥ 512" % lm.max_texture_size) - - # Check WorldEnvironment - var envs: Array[WorldEnvironment] = [] - _find_nodes_by_type(scene_root, "WorldEnvironment", envs) - - if envs.is_empty(): - errors.append("No WorldEnvironment node found — maps need a WorldEnvironment for ambient lighting and sky") - else: - var env := envs[0].environment - if env == null: - warnings.append("WorldEnvironment node has no Environment resource assigned") - else: - print(" ✓ WorldEnvironment configured") - - # ReflectionProbe check - var probes: Array[ReflectionProbe] = [] - _find_nodes_by_type(scene_root, "ReflectionProbe", probes) - if probes.is_empty(): - warnings.append("No ReflectionProbe found — interior maps benefit from at least one ReflectionProbe for specular reflections") - else: - print(" ReflectionProbes: ", probes.size()) - for p in probes: - if p.max_distance < 5.0: - warnings.append("ReflectionProbe \"%s\" max_distance is %.1f — may be too short for interior spaces" % [p.name, p.max_distance]) - - # Warn on lights with shadows enabled that aren't baked - for light in all_lights: - if light.has_method("is_shadow_enabled") and light.get("shadow_enabled") == true: - var bake_mode := light.get("light_bake_mode") as int - if bake_mode == 0: - var light_name := light.name - var light_type := light.get_class() - warnings.append("Dynamic light has shadows enabled: \"%s\" (%s) — shadows on dynamic lights cost performance" % [light_name, light_type]) - - return { - "pass": errors.is_empty(), - "errors": errors, - "warnings": warnings, - } - - -func _collect_light_nodes(node: Node, result: Array) -> void: - if node is DirectionalLight3D or node is OmniLight3D or node is SpotLight3D: - result.append(node) - for child in node.get_children(): - _collect_light_nodes(child, result) - - -func _find_nodes_by_type(root: Node, expected_type: String, output) -> void: - if root.get_class() == expected_type: - output.append(root) - for child in root.get_children(): - _find_nodes_by_type(child, expected_type, output) diff --git a/client/tools/validate_map/validate_lights.gd.uid b/client/tools/validate_map/validate_lights.gd.uid deleted file mode 100644 index 21a3096..0000000 --- a/client/tools/validate_map/validate_lights.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b6v02wqbuawg8 diff --git a/client/tools/validate_map/validate_polycount.gd b/client/tools/validate_map/validate_polycount.gd deleted file mode 100644 index e39e1c9..0000000 --- a/client/tools/validate_map/validate_polycount.gd +++ /dev/null @@ -1,114 +0,0 @@ -@tool -extends RefCounted - -# Validator: Polygon Count -# -# Checks: -# - Total mesh triangle count across all MeshInstance3D nodes ≤ 50K -# - Per-mesh breakdown printed for debugging -# - Warns on individual meshes > 5K triangles - -const MAX_TOTAL_TRIANGLES := 50000 -const PER_MESH_WARN_THRESHOLD := 5000 - - -func validate(scene_root: Node, scene_path: String) -> Dictionary: - var errors: Array[String] = [] - var warnings: Array[String] = [] - - var mesh_instances: Array[MeshInstance3D] = [] - _collect_mesh_instances(scene_root, mesh_instances) - - var total_triangles := 0 - var mesh_breakdown: Array[Dictionary] = [] - - for mi in mesh_instances: - var mesh: Mesh = mi.mesh - if mesh == null: - continue - - var tri_count := _count_triangles(mesh) - total_triangles += tri_count - - var entry := { - "node": mi.name, - "path": _node_path_to_string(scene_root, mi), - "triangles": tri_count, - "mesh_type": mesh.get_class(), - } - mesh_breakdown.append(entry) - - if tri_count > PER_MESH_WARN_THRESHOLD: - warnings.append("High-poly mesh: \"%s\" (%s) — %d triangles (limit: %d per mesh recommend)" % [ - mi.name, entry["path"], tri_count, PER_MESH_WARN_THRESHOLD]) - - # Print breakdown - print(" Meshes scanned: ", mesh_instances.size()) - print(" Total triangles: ", total_triangles) - print(" Budget: ", MAX_TOTAL_TRIANGLES) - print("") - - # Sort and show top contributors - mesh_breakdown.sort_custom(func(a, b): return a["triangles"] > b["triangles"]) - var top := mesh_breakdown.slice(0, min(10, mesh_breakdown.size())) - if not top.is_empty(): - print(" Top meshes by triangle count:") - for m in top: - print(" %6d %s (%s)" % [m["triangles"], m["node"], m["mesh_type"]]) - if mesh_breakdown.size() > 10: - print(" ... and ", mesh_breakdown.size() - 10, " more") - - if total_triangles > MAX_TOTAL_TRIANGLES: - errors.append("Map exceeds %d triangle budget: %d total (%.1f%% over budget)" % [ - MAX_TOTAL_TRIANGLES, total_triangles, - float(total_triangles - MAX_TOTAL_TRIANGLES) / MAX_TOTAL_TRIANGLES * 100.0]) - else: - var pct := float(total_triangles) / MAX_TOTAL_TRIANGLES * 100.0 - print(" ✓ Within budget (%.1f%% of %d)" % [pct, MAX_TOTAL_TRIANGLES]) - - # Warn if mesh_instances is empty (suspicious map with no geometry) - if mesh_instances.is_empty(): - warnings.append("No MeshInstance3D nodes found in scene — map may be empty or using unsupported geometry type") - - return { - "pass": errors.is_empty(), - "errors": errors, - "warnings": warnings, - } - - -func _collect_mesh_instances(node: Node, result: Array) -> void: - if node is MeshInstance3D: - result.append(node) - for child in node.get_children(): - _collect_mesh_instances(child, result) - - -func _count_triangles(mesh: Mesh) -> int: - var total := 0 - for i in mesh.get_surface_count(): - var arrays := mesh.surface_get_arrays(i) - if arrays.is_empty(): - continue - var indices := arrays[Mesh.ARRAY_INDEX] as PackedInt32Array - if indices and indices.size() > 0: - total += indices.size() / 3 - else: - # Non-indexed mesh — count vertices / 3 as approximation - var verts := arrays[Mesh.ARRAY_VERTEX] as PackedVector3Array - if verts: - total += verts.size() / 3 - return total - - -func _node_path_to_string(root: Node, node: Node) -> String: - var full_path: String = node.get_path_to(root) - # full_path is a NodePath string like "../NodeA/NodeB" — split and drop the root - var parts := full_path.split("/") - # Remove the first segment (the "../" back-reference) and last if empty - var effective: Array[String] = [] - for p in parts: - if p.is_empty() or p == "." or p.begins_with(".."): - continue - effective.append(p) - return "/".join(effective) diff --git a/client/tools/validate_map/validate_polycount.gd.uid b/client/tools/validate_map/validate_polycount.gd.uid deleted file mode 100644 index 29848b5..0000000 --- a/client/tools/validate_map/validate_polycount.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://hefbh8r7ujn diff --git a/client/tools/validate_map/validate_scene.gd b/client/tools/validate_map/validate_scene.gd deleted file mode 100644 index 50f0c11..0000000 --- a/client/tools/validate_map/validate_scene.gd +++ /dev/null @@ -1,122 +0,0 @@ -@tool -extends RefCounted - -# Validator: Scene Structure -# -# Checks: -# - Scene root is a Node3D (or subtype) -# - Required nodes present: WorldEnvironment, LightmapGI -# - Required groups present: ct_spawn, t_spawn, buy_zone, bomb_site, cubemap_origin -# - No duplicate groups on different nodes -# - Node naming follows convention (PascalCase, no spaces) - -const REQUIRED_GROUPS := [ - "ct_spawn", - "t_spawn", - "buy_zone", - "bomb_site", - "cubemap_origin", -] - -const DYNAMIC_BAKE_MODE := 0 # light_bake_mode = 0 means dynamic - - -func validate(scene_root: Node, scene_path: String) -> Dictionary: - var errors: Array[String] = [] - var warnings: Array[String] = [] - - # 1. Root node type - if not scene_root is Node3D: - errors.append("Scene root must inherit Node3D, got: " + scene_root.get_class()) - else: - print(" ✓ Root node: ", scene_root.name, " (", scene_root.get_class(), ")") - - # 2. Required nodes - _check_required_node(scene_root, "WorldEnvironment", errors, "WorldEnvironment") - _check_required_node(scene_root, "LightmapGI", errors, "LightmapGI") - - # 3. Node naming convention - _check_naming(scene_root, warnings, []) - - # 4. Required groups - var found_groups: Dictionary = {} # group → [node names] - _collect_groups(scene_root, found_groups) - - for group in REQUIRED_GROUPS: - if found_groups.has(group): - var nodes := found_groups[group] as Array - print(" ✓ Group \"", group, "\" → ", nodes[0], " (", nodes.size(), " node(s))") - if nodes.size() > 1: - warnings.append("Group \"%s\" assigned to %d nodes — only one expected" % [group, nodes.size()]) - else: - errors.append("Missing required group: \"" + group + "\" — no node in the map has this group") - - # 5. Check for orphan / stray groups (as hint) - var all_groups := _get_all_group_names(found_groups) - for g in all_groups: - if g not in REQUIRED_GROUPS and g.begins_with("res://"): - warnings.append("Unexpected group with resource path pattern: \"" + g + "\"") - - return { - "pass": errors.is_empty(), - "errors": errors, - "warnings": warnings, - } - - -func _check_required_node(root: Node, node_name: String, errors: Array, type_hint: String) -> void: - var found: Array[Node] = [] - _find_nodes_by_type(root, type_hint, found) - - if found.is_empty(): - errors.append("Missing required %s — map needs a %s node named \"%s\"" % [type_hint, type_hint, node_name]) - return - - # Check naming - if found[0].name != node_name: - errors.append("%s node found but not named \"%s\" — got \"%s\", rename to match convention" % [type_hint, node_name, found[0].name]) - else: - print(" ✓ ", node_name, " (", type_hint, ")") - - -func _find_nodes_by_type(root: Node, expected_type: String, output) -> void: - if root.get_class() == expected_type: - output.append(root) - for child in root.get_children(): - _find_nodes_by_type(child, expected_type, output) - - -func _collect_groups(root: Node, groups: Dictionary) -> void: - for g in root.get_groups(): - # Godot auto-adds "__builtins" and similar — skip those - if g.begins_with("__"): - continue - if not groups.has(g): - groups[g] = [] - (groups[g] as Array).append(root.name) - for child in root.get_children(): - _collect_groups(child, groups) - - -func _get_all_group_names(groups: Dictionary) -> Array: - var names: Array = [] - for key in groups: - names.append(key) - return names - - -func _check_naming(node: Node, warnings: Array, path: Array) -> void: - var path_str: String = "/".join(path + [node.name]) if not path.is_empty() else node.name - - # Check for spaces in name - if " " in node.name: - warnings.append("Node name contains spaces: \"" + path_str + "\" — use PascalCase instead") - - # Check for lowercase start on non-leaf nodes (leaf instances may have instance names) - if node.get_child_count() > 0 and node.name.length() > 0: - var first: String = String(node.name)[0] - if first == first.to_lower() and first != first.to_upper(): - warnings.append("Node name should start uppercase (PascalCase): \"" + path_str + "\"") - - for child in node.get_children(): - _check_naming(child, warnings, path + [node.name]) diff --git a/client/tools/validate_map/validate_scene.gd.uid b/client/tools/validate_map/validate_scene.gd.uid deleted file mode 100644 index 647d685..0000000 --- a/client/tools/validate_map/validate_scene.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dt8vumbcs0bs diff --git a/client/tools/validate_map/validate_textures.gd b/client/tools/validate_map/validate_textures.gd deleted file mode 100644 index 3d68ef3..0000000 --- a/client/tools/validate_map/validate_textures.gd +++ /dev/null @@ -1,157 +0,0 @@ -@tool -extends RefCounted - -# Validator: Texture Size -# -# Checks: -# - All textures referenced by materials in the scene are ≤ 1024×1024 -# - Checks StandardMaterial3D, ORMMaterial3D, and ShaderMaterial textures -# - Warns on textures > 512×512 (suggested for secondary surfaces) -# - Skips LightmapGI textures (baked lightmaps are handled separately) - -const MAX_TEXTURE_SIZE := 1024 -const WARN_TEXTURE_SIZE := 512 - - -func validate(scene_root: Node, scene_path: String) -> Dictionary: - var errors: Array[String] = [] - var warnings: Array[String] = [] - - var inspected := 0 - var oversized: Array[String] = [] - - # Collect all MeshInstance3D nodes and their materials - var mesh_instances: Array[MeshInstance3D] = [] - _collect_mesh_instances(scene_root, mesh_instances) - - # Track visited textures to avoid duplicate reports - var visited_textures: Dictionary = {} - - for mi in mesh_instances: - var mesh: Mesh = mi.mesh - if mesh == null: - continue - - for surf_idx in mesh.get_surface_count(): - var mat := mesh.surface_get_material(surf_idx) - if mat == null: - # Check override material on MeshInstance3D - mat = mi.get_surface_override_material(surf_idx) - if mat == null: - # Check material_override on MeshInstance3D - mat = mi.material_override - if mat == null: - continue - - _check_material_textures(mat, visited_textures, errors, warnings, inspected) - - # Check material_override if no per-surface materials - if mesh_instances.is_empty(): - _find_materials_on_node(scene_root, visited_textures, errors, warnings, inspected) - - # Check LightmapGI light_data texture sizes separately - var lightmaps: Array[LightmapGI] = [] - _find_nodes_by_type(scene_root, "LightmapGI", lightmaps) - for lm in lightmaps: - if lm.light_data != null: - var lightmap_tex = lm.light_data.get_texture() - if lightmap_tex != null and not visited_textures.has(lightmap_tex.resource_path): - visited_textures[lightmap_tex.resource_path] = true - var size := _get_texture_size(lightmap_tex) - if size > 0: - print(" Lightmap texture: ", lightmap_tex.resource_path, " — ", size, "×") - if size > MAX_TEXTURE_SIZE: - warnings.append("Lightmap texture exceeds %d: %s (%d×)" % [MAX_TEXTURE_SIZE, lightmap_tex.resource_path, size]) - - print("") - print(" Textures inspected: ", inspected) - if oversized.is_empty(): - print(" ✓ All textures within ", MAX_TEXTURE_SIZE, "×", MAX_TEXTURE_SIZE, " limit") - else: - for o in oversized: - print(" ✖ ", o) - - return { - "pass": errors.is_empty(), - "errors": errors, - "warnings": warnings, - } - - -func _check_material_textures(mat: Material, visited: Dictionary, errors: Array, warnings: Array, inspected: int) -> void: - if mat is StandardMaterial3D: - var smat := mat as StandardMaterial3D - _check_single_texture(smat.albedo_texture, "albedo", smat.resource_path, visited, errors, warnings, inspected) - _check_single_texture(smat.normal_texture, "normal", smat.resource_path, visited, errors, warnings, inspected) - _check_single_texture(smat.roughness_texture, "roughness", smat.resource_path, visited, errors, warnings, inspected) - _check_single_texture(smat.metallic_texture, "metallic", smat.resource_path, visited, errors, warnings, inspected) - _check_single_texture(smat.emission_texture, "emission", smat.resource_path, visited, errors, warnings, inspected) - _check_single_texture(smat.ao_texture, "ambient_occlusion", smat.resource_path, visited, errors, warnings, inspected) - - elif mat is ORMMaterial3D: - var orm := mat as ORMMaterial3D - _check_single_texture(orm.albedo_texture, "albedo", orm.resource_path, visited, errors, warnings, inspected) - _check_single_texture(orm.normal_texture, "normal", orm.resource_path, visited, errors, warnings, inspected) - _check_single_texture(orm.orm_texture, "ORM", orm.resource_path, visited, errors, warnings, inspected) - _check_single_texture(orm.emission_texture, "emission", orm.resource_path, visited, errors, warnings, inspected) - - elif mat is ShaderMaterial: - var sm := mat as ShaderMaterial - # ShaderMaterial textures are set via shader params — check all Texture2D params - var param_list = sm.get_shader_parameter_list() if sm.shader else [] - for param in param_list: - var val = sm.get_shader_parameter(param) - if val is Texture2D: - _check_single_texture(val as Texture2D, param, sm.resource_path, visited, errors, warnings, inspected) - - -func _check_single_texture(tex: Texture2D, slot_name: String, material_path: String, visited: Dictionary, errors: Array, warnings: Array, inspected: int) -> void: - if tex == null: - return - var path := tex.resource_path - if path.is_empty(): - path = tex.name # built-in/placeholder texture - if visited.has(path): - return - visited[path] = true - inspected += 1 - - var size := _get_texture_size(tex) - if size <= 0: - return - - var label := "%s/%s" % [material_path.get_file(), slot_name] - - if size > MAX_TEXTURE_SIZE: - errors.append("Texture exceeds %d×%d: %s (%s) — %d× (path: %s)" % [MAX_TEXTURE_SIZE, MAX_TEXTURE_SIZE, label, path, size, path]) - elif size > WARN_TEXTURE_SIZE: - warnings.append("Texture > %d×%d: %s (%s) — %d× (consider downscaling)" % [WARN_TEXTURE_SIZE, WARN_TEXTURE_SIZE, label, path, size]) - - -func _get_texture_size(tex: Texture2D) -> int: - # Return the larger dimension - return max(tex.get_width(), tex.get_height()) - - -func _collect_mesh_instances(node: Node, result: Array) -> void: - if node is MeshInstance3D: - result.append(node) - for child in node.get_children(): - _collect_mesh_instances(child, result) - - -func _find_nodes_by_type(root: Node, expected_type: String, output) -> void: - if root.get_class() == expected_type: - output.append(root) - for child in root.get_children(): - _find_nodes_by_type(child, expected_type, output) - - -func _find_materials_on_node(node: Node, visited: Dictionary, errors: Array, warnings: Array, inspected: int) -> void: - # Fallback: walk all nodes and check their material_override - for child in node.get_children(): - if child.has_method("get_material_override"): - var mat = child.get("material_override") - if mat != null and mat is Material: - _check_material_textures(mat, visited, errors, warnings, inspected) - _find_materials_on_node(child, visited, errors, warnings, inspected) diff --git a/client/tools/validate_map/validate_textures.gd.uid b/client/tools/validate_map/validate_textures.gd.uid deleted file mode 100644 index ee09f14..0000000 --- a/client/tools/validate_map/validate_textures.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bgpcwrlic4dww diff --git a/client/tools/validate_map/validator_bootstrap.gd b/client/tools/validate_map/validator_bootstrap.gd deleted file mode 100644 index 991cb41..0000000 --- a/client/tools/validate_map/validator_bootstrap.gd +++ /dev/null @@ -1,31 +0,0 @@ -@tool -extends Node - -# Bootstrap: loads and runs validate_map.gd from the main scene. -# Usage: -# 1. Set project.godot run/main_scene to this scene -# 2. godot --path client [-- ] -# 3. Then restore the original main_scene - -func _ready() -> void: - var args := OS.get_cmdline_user_args() - - if args.is_empty(): - print("Usage: godot --path client [-- ]") - print("") - print("If no scene_path given, validates the default scene.") - get_tree().quit(1) - return - - var scene_path := args[0] - - # Load and run the validate_map.gd script - var validator_script := load("res://tools/validate_map.gd") - if validator_script == null: - push_error("Failed to load validator script") - get_tree().quit(1) - return - - var validator := Node.new() - validator.set_script(validator_script) - add_child(validator) diff --git a/client/tools/validate_map/validator_bootstrap.gd.uid b/client/tools/validate_map/validator_bootstrap.gd.uid deleted file mode 100644 index 4b24bb8..0000000 --- a/client/tools/validate_map/validator_bootstrap.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cyql0huyj6r5y diff --git a/client/tools/validate_map/validator_scene.tscn b/client/tools/validate_map/validator_scene.tscn deleted file mode 100644 index c5e8a31..0000000 --- a/client/tools/validate_map/validator_scene.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene format=3] - -[ext_resource type="Script" path="res://tools/validate_map.gd" id="1"] - -[node name="Validator" type="Node"] -script = ExtResource("1") diff --git a/client/weapons/data/weapon_data.gd b/client/weapons/data/weapon_data.gd deleted file mode 100644 index b3b33e1..0000000 --- a/client/weapons/data/weapon_data.gd +++ /dev/null @@ -1,51 +0,0 @@ -## WeaponData — resource containing all stats for a weapon. -## -## Used by the weapon system to configure damage, fire rate, recoil, -## economy pricing, and team restrictions. -## -## This is a pure Resource (no Node dependency) so it loads clean -## in both client and server contexts. - -extends Resource -class_name WeaponData - -enum FireMode { SEMI, AUTO, MELEE } - -# Identification -@export var weapon_id: int = 0 -@export var weapon_name: String = "" -@export var slot: int = 0 # 0=melee, 1=pistol, 2=SMG, 3=rifle, 4=sniper - -# Damage -@export var damage: int = 30 -@export var headshot_multiplier: float = 2.0 -@export var chest_multiplier: float = 1.0 -@export var waist_multiplier: float = 0.75 -@export var leg_multiplier: float = 0.5 -@export var armor_penetration: float = 0.5 # 0.0-1.0, % damage through armor - -# Firing -@export var fire_mode: FireMode = FireMode.SEMI -@export var fire_rate: float = 10.0 # rounds per second -@export var reload_time: float = 2.0 # seconds -@export var max_distance: float = 1000.0 - -# Magazine -@export var magazine_size: int = 30 -@export var reserve_size: int = 90 - -# Recoil & Spread -@export var recoil_per_shot: float = 0.5 # degrees -@export var recoil_recovery: float = 8.0 # degrees/sec -@export var spread_idle: float = 0.0 # degrees while standing still -@export var spread_walking: float = 2.0 # degrees while moving -@export var spread_sprinting: float = 6.0 # degrees while sprinting - -# Movement -@export var move_speed_multiplier: float = 1.0 # multiplier on base move speed -@export var aim_speed_multiplier: float = 0.5 # move speed while aiming - -# Economy -@export var price: int = 0 -@export var kill_reward: int = 300 -@export var team: int = -1 # -1=both, 0=T, 1=CT diff --git a/client/weapons/data/weapon_registry.gd b/client/weapons/data/weapon_registry.gd deleted file mode 100644 index f02ed5f..0000000 --- a/client/weapons/data/weapon_registry.gd +++ /dev/null @@ -1,175 +0,0 @@ -## WeaponRegistry — central registry of all weapon definitions. -## -## All weapon data is defined here as static constants. Systems that need -## weapon stats (WeaponManager, BuyMenu, RoundManager) reference this. -## -## To add a new weapon: create a WeaponData resource in client/weapons/data/ -## and register it in the ALL array below. - -extends Node -class_name WeaponRegistry - -# Define all weapons as convenient static getters -static var KNIFE: WeaponData: - get: return _knife -static var GLOCK: WeaponData: - get: return _glock -static var USP: WeaponData: - get: return _usp -static var AK47: WeaponData: - get: return _ak47 -static var M4A1: WeaponData: - get: return _m4a1 -static var AWP: WeaponData: - get: return _awp - -# Weapon ID constants -const ID_KNIFE: int = 0 -const ID_GLOCK: int = 1 -const ID_USP: int = 2 -const ID_AK47: int = 3 -const ID_M4A1: int = 4 -const ID_AWP: int = 5 - -## Array of all weapons for iteration -static var ALL: Array[WeaponData] = [] - -## Map of weapon_id → WeaponData for fast lookup -static var BY_ID: Dictionary = {} - -## Static initializer -static func _static_init() -> void: - ALL = [_knife, _glock, _usp, _ak47, _m4a1, _awp] - for w in ALL: - BY_ID[w.weapon_id] = w - -# --------------------------------------------------------------------------- -# Weapon definitions -# --------------------------------------------------------------------------- - -static var _knife: WeaponData = _make_weapon_data({ - weapon_id = ID_KNIFE, - weapon_name = "Knife", - slot = 0, - damage = 34, - fire_mode = WeaponData.FireMode.MELEE, - fire_rate = 0.0, - magazine_size = 0, - reserve_size = 0, - move_speed_multiplier = 1.0, - price = 0, - kill_reward = 1500, - armor_penetration = 0.0, - max_distance = 3.0, -}) - -static var _glock: WeaponData = _make_weapon_data({ - weapon_id = ID_GLOCK, - weapon_name = "Glock-18", - slot = 1, - damage = 25, - fire_rate = 6.0, - magazine_size = 20, - reserve_size = 120, - recoil_per_shot = 0.4, - move_speed_multiplier = 0.86, - price = 200, - kill_reward = 300, - armor_penetration = 0.35, - team = 0, # Terrorist default -}) - -static var _usp: WeaponData = _make_weapon_data({ - weapon_id = ID_USP, - weapon_name = "USP-S", - slot = 1, - damage = 28, - fire_rate = 5.0, - magazine_size = 12, - reserve_size = 24, - recoil_per_shot = 0.3, - move_speed_multiplier = 0.86, - price = 200, - kill_reward = 300, - armor_penetration = 0.50, - team = 1, # CT default -}) - -static var _ak47: WeaponData = _make_weapon_data({ - weapon_id = ID_AK47, - weapon_name = "AK-47", - slot = 3, - damage = 36, - fire_mode = WeaponData.FireMode.AUTO, - fire_rate = 10.0, - magazine_size = 30, - reserve_size = 90, - recoil_per_shot = 0.8, - recoil_recovery = 6.0, - spread_walking = 3.0, - spread_sprinting = 8.0, - move_speed_multiplier = 0.78, - price = 2700, - kill_reward = 300, - armor_penetration = 0.77, - team = 0, -}) - -static var _m4a1: WeaponData = _make_weapon_data({ - weapon_id = ID_M4A1, - weapon_name = "M4A1-S", - slot = 3, - damage = 33, - fire_mode = WeaponData.FireMode.AUTO, - fire_rate = 10.0, - magazine_size = 25, - reserve_size = 75, - recoil_per_shot = 0.7, - recoil_recovery = 7.0, - spread_walking = 2.5, - spread_sprinting = 7.0, - move_speed_multiplier = 0.78, - price = 2900, - kill_reward = 300, - armor_penetration = 0.77, - team = 1, -}) - -static var _awp: WeaponData = _make_weapon_data({ - weapon_id = ID_AWP, - weapon_name = "AWP", - slot = 4, - damage = 115, - fire_rate = 1.5, - magazine_size = 10, - reserve_size = 30, - recoil_per_shot = 4.0, - recoil_recovery = 1.0, - spread_idle = 0.0, - spread_walking = 10.0, - spread_sprinting = 20.0, - move_speed_multiplier = 0.57, - price = 4750, - kill_reward = 100, - armor_penetration = 0.87, - max_distance = 2000.0, - headshot_multiplier = 5.0, # AWP one-shots through armor -}) - -# --------------------------------------------------------------------------- -# Factory -# --------------------------------------------------------------------------- - -static func _make_weapon_data(dict: Dictionary) -> WeaponData: - var w := WeaponData.new() - for key in dict: - w.set(key, dict[key]) - return w - -## Look up a weapon by its ID. -static func get_by_id(id: int) -> WeaponData: - return BY_ID.get(id, _knife) - -## Get the default weapon for a team (0=T, 1=CT). -static func get_default_weapon(team_id: int) -> WeaponData: - return _glock if team_id == 0 else _usp diff --git a/client/weapons/scripts/tactical_weapon_hitscan.gd b/client/weapons/scripts/tactical_weapon_hitscan.gd deleted file mode 100644 index c588a07..0000000 --- a/client/weapons/scripts/tactical_weapon_hitscan.gd +++ /dev/null @@ -1,89 +0,0 @@ -## TacticalWeaponHitscan — rollback-aware hitscan weapon for the tactical shooter. -## -## Extends NetworkWeaponHitscan3D with per-limb damage, team checks, -## and headshot detection. -## -## This script is ONLY loaded from client scenes where netfox is active. -## The server handles damage authority directly. - -extends "res://addons/netfox.extras/weapon/network-weapon-hitscan-3d.gd" -class_name TacticalWeaponHitscan - -## Weapon data resource (stats) — set on spawn -var weapon_data: WeaponData = null - -## Weapon owner's peer ID — set on spawn -var owner_peer_id: int = -1 - -## Cooldown tick for rate-of-fire limiting -var _last_fire_tick: int = -1 - -func _can_fire() -> bool: - if weapon_data == null: - return false - if weapon_data.fire_mode == WeaponData.FireMode.MELEE: - return true # Melee always "can fire" - - # Rate-of-fire check using network tick - var nt = Engine.get_singleton(&"NetworkTime") - if nt == null: - return true - var current_tick := nt.tick if nt.has_method(&"get_tick") else 0 - if _last_fire_tick >= 0: - var tick_interval := maxi(1, int(weapon_data.fire_rate / 64.0)) - if current_tick - _last_fire_tick < tick_interval: - return false - return true - -func _can_peer_use(peer_id: int) -> bool: - return peer_id == owner_peer_id - -func _after_fire(): - # Track fire tick for cooldown - var nt = Engine.get_singleton(&"NetworkTime") - if nt != null: - _last_fire_tick = nt.tick if nt.has_method(&"get_tick") else 0 - -## Handle a raycast hit — called on ALL peers with rollback reconciliation. -func _on_hit(result: Dictionary): - if weapon_data == null: - return - if not multiplayer.is_server() and not is_multiplayer_authority(): - return # Only server/authority applies damage - - var collider := result.get("collider") - if collider == null: - return - - # Determine limb hit via collision groups - var damage_multiplier: float = weapon_data.chest_multiplier - var is_headshot := false - - if collider is Node: - if collider.is_in_group(&"head"): - damage_multiplier = weapon_data.headshot_multiplier - is_headshot = true - elif collider.is_in_group(&"chest"): - damage_multiplier = weapon_data.chest_multiplier - elif collider.is_in_group(&"waist"): - damage_multiplier = weapon_data.waist_multiplier - elif collider.is_in_group(&"legs"): - damage_multiplier = weapon_data.leg_multiplier - - var final_damage := int(weapon_data.damage * damage_multiplier) - - # Find the player node from the collider - var player := _find_player(collider) - if player != null and player.has_method(&"apply_damage"): - if is_headshot: - print("[TacticalWeapon] HEADSHOT on %s for %d" % [player.name, final_damage]) - player.apply_damage(final_damage, owner_peer_id, weapon_data.weapon_id) - -## Find a player node walking up the scene tree. -func _find_player(node: Node) -> Node: - var current = node - while current != null: - if current.has_method(&"apply_damage") or current.is_in_group(&"players"): - return current - current = current.get_parent() - return null diff --git a/client/weapons/scripts/weapon_manager.gd b/client/weapons/scripts/weapon_manager.gd deleted file mode 100644 index 2a085b4..0000000 --- a/client/weapons/scripts/weapon_manager.gd +++ /dev/null @@ -1,200 +0,0 @@ -## WeaponManager — client-side weapon inventory with rollback-safe firing. -## -## Manages weapon switching, ammo tracking. Firing is handled by the -## RollbackHitscanManager (in _rollback_tick) for lag compensation. -## -## This script is ONLY loaded from client scenes where netfox is active. - -extends Node -class_name WeaponManager - -signal weapon_switched(old_slot: int, new_slot: int, weapon_data: WeaponData) -signal ammo_changed(weapon_id: int, magazine: int, reserve: int) - -# Preload the weapon scripts (only works when netfox is active) -const _HitscanWeapon := preload("res://client/weapons/scripts/tactical_weapon_hitscan.gd") - -## Reference to the player's weapon anchor node. -@export var weapon_anchor: Node3D - -## Reference to the RollbackHitscanManager (set by player). -var rollback_hitscan_mgr: Node = null - -## Current weapon data. -var current_weapon: WeaponData = null -var current_weapon_node: Node3D = null -var current_slot: int = 1 - -## Inventory: slot → { data, node, magazine, reserve } -var _inventory: Dictionary = {} - -var _last_fire_time: float = 0.0 - -func add_weapon(data: WeaponData) -> void: - var slot: int = data.slot - if _inventory.has(slot): - _remove_weapon(slot) - - var weapon_node: Node3D = _create_weapon(data) - if weapon_node == null: - return - weapon_node.visible = false - add_child(weapon_node) - - _inventory[slot] = { - "data": data, - "node": weapon_node, - "magazine": data.magazine_size, - "reserve": data.reserve_size, - } - - if current_weapon == null: - switch_to_slot(slot) - -func remove_weapon(slot: int) -> void: - _remove_weapon(slot) - if current_slot == slot: - _switch_to_next_available() - -func switch_to_slot(slot: int) -> bool: - if not _inventory.has(slot): - return false - var entry = _inventory[slot] - var old_slot := current_slot - current_slot = slot - current_weapon = entry["data"] as WeaponData - current_weapon_node = entry["node"] as Node3D - _update_visibility() - weapon_switched.emit(old_slot, slot, current_weapon) - - # Update the RollbackHitscanManager with the new weapon data - _notify_hitscan_mgr_of_weapon_change(current_weapon) - return true - -func switch_next() -> void: - var slots := _inventory.keys() - slots.sort() - var idx := slots.find(current_slot) - if idx >= 0 and idx + 1 < slots.size(): - switch_to_slot(slots[idx + 1]) - -func switch_prev() -> void: - var slots := _inventory.keys() - slots.sort() - var idx := slots.find(current_slot) - if idx > 0: - switch_to_slot(slots[idx - 1]) - -# --------------------------------------------------------------------------- -# Firing (rollback-safe — delegates to RollbackHitscanManager) -# --------------------------------------------------------------------------- - -## Called by the client to attempt firing through the rollback system. -## Returns true if ammo was consumed. -func fire() -> bool: - if current_weapon_node == null or current_weapon == null: - return false - if current_weapon.magazine_size > 0 and _get_magazine() <= 0: - return false - if not _check_fire_rate(): - return false - - # Consume ammo immediately for client prediction - var entry = _inventory[current_slot] - entry["magazine"] -= 1 - ammo_changed.emit(current_weapon.weapon_id, entry["magazine"], entry["reserve"]) - _last_fire_time = Time.get_ticks_msec() / 1000.0 - - # The actual raycast and damage happen in the RollbackHitscanManager's - # process_fire() during _rollback_tick(), triggered by the shoot input. - # This method just handles the client-side ammo tracking. - return true - -func reload() -> void: - if current_weapon == null or current_weapon.magazine_size <= 0: - return - var entry = _inventory[current_slot] - if entry["magazine"] >= current_weapon.magazine_size or entry["reserve"] <= 0: - return - var needed := current_weapon.magazine_size - entry["magazine"] - var available := min(needed, entry["reserve"]) - entry["magazine"] += available - entry["reserve"] -= available - ammo_changed.emit(current_weapon.weapon_id, entry["magazine"], entry["reserve"]) - -func get_ammo() -> Vector2i: - if current_weapon == null or not _inventory.has(current_slot): - return Vector2i.ZERO - var e = _inventory[current_slot] - return Vector2i(e["magazine"], e["reserve"]) - -## Get the current weapon's maximum distance for raycasting. -func get_max_distance() -> float: - if current_weapon != null: - return current_weapon.max_distance - return 1000.0 - -## Get the current weapon ID. -func get_weapon_id() -> int: - if current_weapon != null: - return current_weapon.weapon_id - return 0 - -func get_current_weapon_data() -> WeaponData: - return current_weapon - -# --------------------------------------------------------------------------- -# Rollback integration -# --------------------------------------------------------------------------- - -## Notify the RollbackHitscanManager when the weapon changes. -func _notify_hitscan_mgr_of_weapon_change(wd: WeaponData) -> void: - if rollback_hitscan_mgr != null and rollback_hitscan_mgr.has_method(&"set_weapon_data"): - rollback_hitscan_mgr.set_weapon_data(wd) - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -func _create_weapon(data: WeaponData) -> Node3D: - var weapon := Node3D.new() - weapon.name = data.weapon_name - - if data.fire_mode != WeaponData.FireMode.MELEE: - var hs: TacticalWeaponHitscan = _HitscanWeapon.new() - hs.name = "Hitscan" - hs.weapon_data = data - hs.max_distance = data.max_distance - weapon.add_child(hs, true) - - return weapon - -func _get_magazine() -> int: - var e = _inventory.get(current_slot) - return e["magazine"] if e else 0 - -func _check_fire_rate() -> bool: - if current_weapon.fire_rate <= 0: - return false - var now := Time.get_ticks_msec() / 1000.0 - return (now - _last_fire_time) >= (1.0 / current_weapon.fire_rate) - -func _remove_weapon(slot: int) -> void: - var e = _inventory.get(slot) - if e and e["node"]: - e["node"].queue_free() - _inventory.erase(slot) - -func _switch_to_next_available() -> void: - var slots := _inventory.keys() - slots.sort() - if slots.size() > 0: - switch_to_slot(slots[0]) - else: - current_weapon = null - current_weapon_node = null - _update_visibility() - -func _update_visibility() -> void: - for slot in _inventory: - _inventory[slot]["node"].visible = (slot == current_slot) diff --git a/config-ext-map-registry.cfg b/config-ext-map-registry.cfg deleted file mode 100644 index 51c34e8..0000000 --- a/config-ext-map-registry.cfg +++ /dev/null @@ -1,21 +0,0 @@ -; Tactical Shooter — Map Registry Configuration Extension -; -; Add this section to your server_config.cfg to enable automatic -; map downloading from the registry server. -; -; The MapDownloader Godot singleton reads these values at startup. -; Environment override: MAP_REGISTRY_URL (takes precedence over cfg value) -; -; [map_registry] -; enabled — When true, the server fetches map list on start -; url — URL of the map registry server (HTTP/HTTPS) -; auto_download_all — Download ALL registry maps, not just rotation ones -; max_cache_mb — Soft limit on local cache size (0 = unlimited) -; verify_checksums — Verify SHA-256 on downloaded .pck files before loading - -[map_registry] -enabled=false -url="http://127.0.0.1:8090" -auto_download_all=false -max_cache_mb=500 -verify_checksums=true diff --git a/config/default_server_config.cfg b/config/default_server_config.cfg index b64698a..428b117 100644 --- a/config/default_server_config.cfg +++ b/config/default_server_config.cfg @@ -1,33 +1,47 @@ -; Default Server Configuration -; Override by creating config/server_config.cfg in the same directory. - +; Tactical Shooter — Default Server Config +; Copy to user://server_config.cfg and edit for deployment. [server] -port = 34197 -max_players = 16 -map = "test_range" -tickrate = 64 -round_time = 120 -freeze_time = 10 -bomb_timer = 40 -money_start = 800 -money_win = 3250 -money_loss = 1900 -money_kill = 300 -money_plant = 300 -money_defuse = 300 -friendly_fire = false -enable_plugins = false -plugins_root = "res://server/plugins" +server_name="Tactical Shooter Server" +description="" +bind_ip="0.0.0.0" +port=34197 +max_players=16 +password="" +tick_rate=64 + +[game] +round_time_seconds=600 +warmup_time_seconds=60 +friendly_fire=false +ff_damage_multiplier=0.5 +gravity=-24.0 +respawn_time_seconds=5.0 +spectate_enabled=true + +[movement] +walk_speed=5.0 +sprint_speed=7.0 +crouch_speed=2.0 +jump_velocity=6.0 +acceleration=20.0 +air_acceleration=4.0 +friction=8.0 + +[match] +win_limit=3 +time_limit_seconds=0 +map_rotation_mode="sequence" +maps="test_range" [rcon] -enabled = true -port = 34198 -password = "changeme" +enabled=false +password="" +port=34198 -[anticheat] -enabled = true -max_tick_rate = 130 -max_speed_multiplier = 1.5 -aimbot_angle_threshold = 45.0 -max_suspicion = 1.0 -auto_kick_threshold = 15 +[logging] +log_level="info" +log_file="" + +[teams] +team_count=2 +players_per_team=8 diff --git a/config/default_server_config.json b/config/default_server_config.json deleted file mode 100644 index 62e99c9..0000000 --- a/config/default_server_config.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "server": { - "server_name": "Tactical Shooter Server", - "description": "", - "bind_ip": "0.0.0.0", - "port": 34197, - "max_players": 16, - "password": "", - "tick_rate": 128 - }, - "game": { - "round_time_seconds": 600, - "warmup_time_seconds": 60, - "friendly_fire": false, - "ff_damage_multiplier": 0.5, - "gravity": -24.0, - "respawn_time_seconds": 5.0, - "spectate_enabled": true - }, - "movement": { - "walk_speed": 5.0, - "sprint_speed": 7.0, - "crouch_speed": 2.0, - "jump_velocity": 6.0, - "acceleration": 20.0, - "air_acceleration": 4.0, - "friction": 8.0 - }, - "match": { - "win_limit": 3, - "time_limit_seconds": 0, - "map_rotation_mode": "sequence", - "maps": "test_range" - }, - "rcon": { - "enabled": true, - "password": "", - "port": 34198 - }, - "logging": { - "log_level": "info", - "log_file": "" - }, - "teams": { - "team_count": 2, - "players_per_team": 8 - } -} \ No newline at end of file diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..3937380 --- /dev/null +++ b/default_env.tres @@ -0,0 +1,7 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource(1) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt b/docs/.gdignore similarity index 100% rename from server/server-browser-api/venv/lib/python3.11/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt rename to docs/.gdignore diff --git a/docs/architecture.md b/docs/architecture.md deleted file mode 100644 index c1aa442..0000000 --- a/docs/architecture.md +++ /dev/null @@ -1,4 +0,0 @@ -# Architecture Overview - -See PROJECT_PLAN.md for the full build plan. -This document will be expanded as the project progresses. diff --git a/docs/art-style-guide.md b/docs/art-style-guide.md deleted file mode 100644 index 0bc1294..0000000 --- a/docs/art-style-guide.md +++ /dev/null @@ -1,170 +0,0 @@ -# Tactical Shooter — Art Style Guide - -> **Phase 3 deliverable · Modular wall/floor kit, PBR materials at 1K** -> Valorant-direction competitive FPS art direction · Godot 4 Forward+ renderer - ---- - -## 1. Visual Direction - -### Target: Valorant-Tier, Not AAA - -- **Clean silhouettes** — geometry reads instantly at combat ranges. Avoid noisy trim/paneling. -- **Team-color zones** — CT (blue) and T (red/orange) territories are visually distinct at a glance. Color is used for gameplay read, not decorative variety. -- **Low-fi surface detail** — we suggest roughness and normal variation rather than carving it into geometry. 1K textures carry the detail budget. -- **No photorealism** — stylised realism with clear material categories: concrete, metal, tile, painted surfaces. Each category is immediately identifiable by its roughness/specular signature. - -### What This Game Looks Like - -| Aspect | Choice | Rationale | -|--------|--------|-----------| -| Lighting | Baked lightmaps + reflection probes | No real-time GI cost | -| Shadows | Baked for static, single cascade for dynamic | 60fps target on GTX 1050 | -| Reflections | Reflection probes at junctions | No SSR/SSAO cost | -| Post-processing | Tonemap only (ACES), no bloom, no DoF | Competitive clarity | -| Fog | Minimal distance fog | Don't hide silhouette readability | -| Textures | 1K PBR (1024 max), no 2K+ | VRAM budget: 2GB texture pool | - ---- - -## 2. Modular Grid & Dimensions - -The kit is built on a **2.56m (256cm) base grid** — close to 8ft imperial, powers-of-two friendly for texture tiling. - -### Standard Dimensions (meters) - -| Piece | Width | Height | Depth | Notes | -|-------|-------|--------|-------|-------| -| Wall straight | 2.56 | 2.56 | 0.16 | Full wall panel | -| Wall corner (L) | 2.56 × 2 leg | 2.56 | 0.16 | 90° outside corner | -| Wall doorway | 2.56 | 2.56 | 0.16 | 0.80m × 2.00m door cutout | -| Wall window | 2.56 | 2.56 | 0.16 | 1.20m × 0.80m window cutout | -| Wall endcap | 0.32 | 2.56 | 0.16 | Edge trim / termination | -| Floor slab | 2.56 | 0.08 | 2.56 | Thin slab | -| Pillar (square) | 0.64 | 2.56 | 0.64 | Structural column | -| Ceiling beam | 3.84 | 0.32 | 0.32 | Metal beam, 1.5U length | -| Accent panel | 1.28 | 0.64 | 0.08 | Team-color wall accent | - -### Grid Alignment - -- All pieces snap to a 1.28m (half-unit) grid in the map editor. -- Wall thickness is always 0.16m. Floors are 0.08m. -- Doorway bottom is flush with floor level. Window center is 1.58m from floor (eye level). -- Pillars occupy 0.64m × 0.64m on the floor grid (¼ of a full tile). - ---- - -## 3. Material Library - -### Material Standards - -Every material is a **StandardMaterial3D** with PBR textures at **1024×1024 (1K)**: - -| Texture Map | Format | Notes | -|-------------|--------|-------| -| Base Color | sRGB PNG | Diffuse/albedo with subtle colour variation | -| Normal | Linear PNG | From height map via Sobel, strength scaled per material | -| Roughness | Linear PNG (grayscale) | White = rough (255), Black = smooth (0) | -| Metallic | Linear PNG (grayscale) | White = metal (255), Black = dielectric (0) | - -Texture filter: **Linear** (no mipmaps for modular kit; mipmap cost is unnecessary at 1K on a 2.56m tile with the camera ≤40m from most surfaces). - -### Material Palette (7 materials) - -| # | Name | Roughness | Metallic | Normal Scale | UV Tiling | Use Case | -|---|------|-----------|----------|--------------|-----------|----------| -| 1 | `wall_concrete_01` | 0.85 | 0.0 | 0.5 | 1.0 | Primary wall — light grey concrete | -| 2 | `wall_concrete_02` | 0.75 | 0.0 | 0.4 | 1.0 | Accent wall — darker grey | -| 3 | `floor_tile_01` | 0.60 | 0.0 | 1.0 | 2.0 | Interior — ceramic checkered tile | -| 4 | `floor_concrete_01` | 0.90 | 0.0 | 0.8 | 2.0 | Industrial — dark warehouse floor | -| 5 | `metal_structural_01` | 0.30 | 1.0 | 0.3 | 1.0 | Beams, vents, supports | -| 6 | `accent_team_blue` | 0.35 | 0.5 | 0.3 | 1.0 | CT territory — blue painted panels | -| 7 | `accent_team_red` | 0.35 | 0.5 | 0.3 | 1.0 | T territory — red/orange painted panels | - -### Team Color Usage - -- **CT (Blue)**: RGB ~(40, 80, 200) — deep blue, low saturation. Applied to accent panels, not primary walls. -- **T (Red/Orange)**: RGB ~(200, 60, 30) — burnt red-orange. Applied to accent panels, not primary walls. -- Neutral zones (uncontested) use `wall_concrete_01/02` and `floor_concrete_01`. -- Spike plant zones / bomb sites get team-colour floor accents. - ---- - -## 4. Technical Specifications - -### Texture Budget - -| Category | Count | Resolution | VRAM (approx) | -|----------|-------|------------|---------------| -| Wall materials (2) | 8 maps | 1K | ~21 MB | -| Floor materials (2) | 8 maps | 1K | ~21 MB | -| Metal (1) | 4 maps | 1K | ~10 MB | -| Team accents (2) | 8 maps | 1K | ~21 MB | -| **Total (7 materials)** | **28 maps** | **1K** | **~75 MB** | - -VRAM headroom for lighting data, shadow maps, and models: ~1.9 GB of the 2 GB budget. - -### Performance Targets (per the visuals architecture) - -| Metric | Target | -|--------|--------| -| Frame time | 16ms (60fps) | -| GPU budget | 8ms | -| CPU budget | 6ms (6ms headroom for gameplay) | -| Draw calls | 1500–2000/frame | -| LOD0 tris/wall | 500–2000 | - -### LOD Strategy (for future mesh pass) - -When modular CSG pieces are replaced with custom meshes: - -| LOD | Distance | Triangle Budget | Notes | -|-----|----------|-----------------|-------| -| LOD0 | 0–15m | 100% | Full detail | -| LOD1 | 15–40m | 50% | Remove panel gaps, merge edges | -| LOD2 | 40–80m | 25% | Planar collapse, decimate | -| LOD3 | 80m+ | Cull | Not visible at competitive sightlines | - ---- - -## 5. Lighting Guidelines (for t_p3_lighting) - -- **LightmapGI** on all static geometry. Texel density: 4–8 per unit on walls, 8–16 on focal surfaces. -- **Reflection probes** at corridor junctions, open plaza areas, chokepoints. Probe box size: 4U (10.24m) for corridors, 8U+ for open areas. -- **No SDFGI**, no real-time GI. 1-2 dynamic directional lights maximum (sun + maybe a single fill). -- Lightmap UV2: all modular CSG pieces export lightmap UVs automatically. - ---- - -## 6. Mapping Guidelines (for map makers) - -- **Start every map** by placing a `KitDemo` scene to see the palette. -- Snap walls to the 1.28m half-grid. Full grid is 2.56m. -- Doorway walls are exactly 2.56m wide × 2.56m tall — stack a wall piece on top if headroom is needed. -- Use `wall_concrete_02` for interior partitions, `wall_concrete_01` for exterior-facing walls. -- Cover all floor areas with `floor_tile_01` (interiors) or `floor_concrete_01` (exteriors/warehouses). -- Team accent panels are decorative only — they do not affect gameplay collision or hitbox. - ---- - -## 7. Export & Build Pipeline - -- Client project lives in `client/` with its own `project.godot`. -- Modular kit scenes are under `client/assets/scenes/modular/`. -- Materials under `client/assets/materials/`. -- Textures under `client/assets/textures//`. -- Textures are generated by `client/assets/textures/generate_textures.py`. -- Materials are generated by `client/assets/materials/generate_materials.py`. -- Scenes are generated by `client/assets/scenes/modular/generate_scenes.py`. - -### Adding a New Material - -1. Add a generator function in `generate_textures.py` -2. Run it to produce 1K PBR maps -3. Add a `.tres` entry in `generate_materials.py` -4. Run it to produce the material resource -5. Optionally create a scene using the new material - ---- - -*This guide is a living document — update as the visual direction evolves.* diff --git a/docs/assets/anniversary/netfox-1st-anniversary-banner.svg b/docs/assets/anniversary/netfox-1st-anniversary-banner.svg new file mode 100644 index 0000000..739921f --- /dev/null +++ b/docs/assets/anniversary/netfox-1st-anniversary-banner.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + netfox + + + + + + + + + diff --git a/docs/assets/anniversary/netfox-1st-anniversary-splash.svg b/docs/assets/anniversary/netfox-1st-anniversary-splash.svg new file mode 100644 index 0000000..b8fd4ce --- /dev/null +++ b/docs/assets/anniversary/netfox-1st-anniversary-splash.svg @@ -0,0 +1,253 @@ + + + +netfoxanniversary1st diff --git a/docs/assets/anniversary/netfox-1st-anniversary.svg b/docs/assets/anniversary/netfox-1st-anniversary.svg new file mode 100644 index 0000000..39945bd --- /dev/null +++ b/docs/assets/anniversary/netfox-1st-anniversary.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/anniversary/netfox-anniversary-banner.png b/docs/assets/anniversary/netfox-anniversary-banner.png new file mode 100644 index 0000000..a450c92 Binary files /dev/null and b/docs/assets/anniversary/netfox-anniversary-banner.png differ diff --git a/docs/assets/anniversary/netfox-anniversary-splash.png b/docs/assets/anniversary/netfox-anniversary-splash.png new file mode 100644 index 0000000..159bb85 Binary files /dev/null and b/docs/assets/anniversary/netfox-anniversary-splash.png differ diff --git a/docs/assets/anniversary/netfox-anniversary.png b/docs/assets/anniversary/netfox-anniversary.png new file mode 100644 index 0000000..d4ea087 Binary files /dev/null and b/docs/assets/anniversary/netfox-anniversary.png differ diff --git a/docs/assets/anniversary/netfox-candle.png b/docs/assets/anniversary/netfox-candle.png new file mode 100644 index 0000000..232d307 Binary files /dev/null and b/docs/assets/anniversary/netfox-candle.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-alt.svg b/docs/assets/press-kit/netfox-banner-hor-alt.svg new file mode 100644 index 0000000..04b5c6a --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-hor-alt.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + netfox + + + diff --git a/docs/assets/press-kit/netfox-banner-hor-alt.svg.large.png b/docs/assets/press-kit/netfox-banner-hor-alt.svg.large.png new file mode 100644 index 0000000..9ad1d27 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-alt.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-alt.svg.preview.png b/docs/assets/press-kit/netfox-banner-hor-alt.svg.preview.png new file mode 100644 index 0000000..a8f0fcb Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-alt.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-black.svg b/docs/assets/press-kit/netfox-banner-hor-black.svg new file mode 100644 index 0000000..3dc03c2 --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-hor-black.svg @@ -0,0 +1,59 @@ + + + +netfox diff --git a/docs/assets/press-kit/netfox-banner-hor-black.svg.large.png b/docs/assets/press-kit/netfox-banner-hor-black.svg.large.png new file mode 100644 index 0000000..f439edb Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-black.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-black.svg.preview.png b/docs/assets/press-kit/netfox-banner-hor-black.svg.preview.png new file mode 100644 index 0000000..cbe22cf Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-black.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-white.svg b/docs/assets/press-kit/netfox-banner-hor-white.svg new file mode 100644 index 0000000..de76be5 --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-hor-white.svg @@ -0,0 +1,63 @@ + + + +netfox diff --git a/docs/assets/press-kit/netfox-banner-hor-white.svg.large.png b/docs/assets/press-kit/netfox-banner-hor-white.svg.large.png new file mode 100644 index 0000000..7c35a41 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-white.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor-white.svg.preview.png b/docs/assets/press-kit/netfox-banner-hor-white.svg.preview.png new file mode 100644 index 0000000..e2773d2 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor-white.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor.svg b/docs/assets/press-kit/netfox-banner-hor.svg new file mode 100644 index 0000000..248576b --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-hor.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + netfox + + + diff --git a/docs/assets/press-kit/netfox-banner-hor.svg.large.png b/docs/assets/press-kit/netfox-banner-hor.svg.large.png new file mode 100644 index 0000000..8b6af15 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-hor.svg.preview.png b/docs/assets/press-kit/netfox-banner-hor.svg.preview.png new file mode 100644 index 0000000..d669158 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-hor.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-alt.svg b/docs/assets/press-kit/netfox-banner-ver-alt.svg new file mode 100644 index 0000000..a2c98cb --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-ver-alt.svg @@ -0,0 +1,93 @@ + +netfox diff --git a/docs/assets/press-kit/netfox-banner-ver-alt.svg.large.png b/docs/assets/press-kit/netfox-banner-ver-alt.svg.large.png new file mode 100644 index 0000000..61c3c0a Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-alt.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-alt.svg.preview.png b/docs/assets/press-kit/netfox-banner-ver-alt.svg.preview.png new file mode 100644 index 0000000..0726f10 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-alt.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-black.svg b/docs/assets/press-kit/netfox-banner-ver-black.svg new file mode 100644 index 0000000..28ce25c --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-ver-black.svg @@ -0,0 +1,65 @@ + +netfox diff --git a/docs/assets/press-kit/netfox-banner-ver-black.svg.large.png b/docs/assets/press-kit/netfox-banner-ver-black.svg.large.png new file mode 100644 index 0000000..5f7539f Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-black.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-black.svg.preview.png b/docs/assets/press-kit/netfox-banner-ver-black.svg.preview.png new file mode 100644 index 0000000..6c63549 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-black.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-white.svg b/docs/assets/press-kit/netfox-banner-ver-white.svg new file mode 100644 index 0000000..07f984c --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-ver-white.svg @@ -0,0 +1,65 @@ + +netfox diff --git a/docs/assets/press-kit/netfox-banner-ver-white.svg.large.png b/docs/assets/press-kit/netfox-banner-ver-white.svg.large.png new file mode 100644 index 0000000..3b417f9 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-white.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver-white.svg.preview.png b/docs/assets/press-kit/netfox-banner-ver-white.svg.preview.png new file mode 100644 index 0000000..71c3bd1 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver-white.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver.svg b/docs/assets/press-kit/netfox-banner-ver.svg new file mode 100644 index 0000000..0f76ad2 --- /dev/null +++ b/docs/assets/press-kit/netfox-banner-ver.svg @@ -0,0 +1,93 @@ + +netfox diff --git a/docs/assets/press-kit/netfox-banner-ver.svg.large.png b/docs/assets/press-kit/netfox-banner-ver.svg.large.png new file mode 100644 index 0000000..71f2707 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-banner-ver.svg.preview.png b/docs/assets/press-kit/netfox-banner-ver.svg.preview.png new file mode 100644 index 0000000..f40dd83 Binary files /dev/null and b/docs/assets/press-kit/netfox-banner-ver.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-icon-black.svg b/docs/assets/press-kit/netfox-icon-black.svg new file mode 100644 index 0000000..afeb0d9 --- /dev/null +++ b/docs/assets/press-kit/netfox-icon-black.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + diff --git a/docs/assets/press-kit/netfox-icon-black.svg.large.png b/docs/assets/press-kit/netfox-icon-black.svg.large.png new file mode 100644 index 0000000..fb125a5 Binary files /dev/null and b/docs/assets/press-kit/netfox-icon-black.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-icon-black.svg.preview.png b/docs/assets/press-kit/netfox-icon-black.svg.preview.png new file mode 100644 index 0000000..7618fc1 Binary files /dev/null and b/docs/assets/press-kit/netfox-icon-black.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-icon-white.svg b/docs/assets/press-kit/netfox-icon-white.svg new file mode 100644 index 0000000..75e37ea --- /dev/null +++ b/docs/assets/press-kit/netfox-icon-white.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + diff --git a/docs/assets/press-kit/netfox-icon-white.svg.large.png b/docs/assets/press-kit/netfox-icon-white.svg.large.png new file mode 100644 index 0000000..aef8198 Binary files /dev/null and b/docs/assets/press-kit/netfox-icon-white.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-icon-white.svg.preview.png b/docs/assets/press-kit/netfox-icon-white.svg.preview.png new file mode 100644 index 0000000..4aa370a Binary files /dev/null and b/docs/assets/press-kit/netfox-icon-white.svg.preview.png differ diff --git a/docs/assets/press-kit/netfox-icon.svg b/docs/assets/press-kit/netfox-icon.svg new file mode 100644 index 0000000..f1393f0 --- /dev/null +++ b/docs/assets/press-kit/netfox-icon.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + diff --git a/docs/assets/press-kit/netfox-icon.svg.large.png b/docs/assets/press-kit/netfox-icon.svg.large.png new file mode 100644 index 0000000..ecca0ab Binary files /dev/null and b/docs/assets/press-kit/netfox-icon.svg.large.png differ diff --git a/docs/assets/press-kit/netfox-icon.svg.preview.png b/docs/assets/press-kit/netfox-icon.svg.preview.png new file mode 100644 index 0000000..337db4e Binary files /dev/null and b/docs/assets/press-kit/netfox-icon.svg.preview.png differ diff --git a/docs/assets/press-kit/oxanium.zip b/docs/assets/press-kit/oxanium.zip new file mode 100644 index 0000000..d71dda6 Binary files /dev/null and b/docs/assets/press-kit/oxanium.zip differ diff --git a/docs/assets/showcase/bubble-battle.jpg b/docs/assets/showcase/bubble-battle.jpg new file mode 100644 index 0000000..0b4501d Binary files /dev/null and b/docs/assets/showcase/bubble-battle.jpg differ diff --git a/docs/assets/showcase/chrome-carnage.jpg b/docs/assets/showcase/chrome-carnage.jpg new file mode 100644 index 0000000..746e78d Binary files /dev/null and b/docs/assets/showcase/chrome-carnage.jpg differ diff --git a/docs/assets/showcase/nitro-turtles.jpg b/docs/assets/showcase/nitro-turtles.jpg new file mode 100644 index 0000000..fa5c446 Binary files /dev/null and b/docs/assets/showcase/nitro-turtles.jpg differ diff --git a/docs/assets/showcase/pl4nob.jpg b/docs/assets/showcase/pl4nob.jpg new file mode 100644 index 0000000..ef8b34b Binary files /dev/null and b/docs/assets/showcase/pl4nob.jpg differ diff --git a/docs/contributors.md b/docs/contributors.md new file mode 100644 index 0000000..b48d535 --- /dev/null +++ b/docs/contributors.md @@ -0,0 +1,29 @@ +# Contributors + +Over time, *netfox* has received multiple important contributions from its +community. Huge kudos to all of our contributors! + +## Special thanks + +We'd like to highlight some of our contributors, in no particular order: + +* [albertok](https://github.com/albertok) + * For being one of the first active members of the community + * For contributing multiple features to netfox, including window tiling +* [DustieDog](https://github.com/DustieDog) + * For creating [NetfoxSharp](https://github.com/CyFurStudios/NetfoxSharp) + * For contributing to netfox's code quality both with PRs and design + discussions +* [krazyjakee](https://github.com/krazyjakee) + * For contributing the rollback-aware state machine and FPS example +* [TheYellowArchitect](https://github.com/TheYellowArchitect) + * For suggesting and contributing to multiple important features such as + diff states and input delay + +## All contributors + + + + + +Image generated by [contrib.rocks](https://contrib.rocks). diff --git a/docs/css/twemoji.css b/docs/css/twemoji.css new file mode 100644 index 0000000..a5ef078 --- /dev/null +++ b/docs/css/twemoji.css @@ -0,0 +1,4 @@ +span.twemoji { + display: inline-block; + width: 1em; +} diff --git a/docs/css/version-selector.css b/docs/css/version-selector.css new file mode 100644 index 0000000..a61de69 --- /dev/null +++ b/docs/css/version-selector.css @@ -0,0 +1,7 @@ +#version-selector { + display: inline !important; + border-radius: 2em; + padding: 0.25em 0.5em !important; + font-family: Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; +} + diff --git a/docs/custom_theme/main.html b/docs/custom_theme/main.html new file mode 100644 index 0000000..f041313 --- /dev/null +++ b/docs/custom_theme/main.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{%- block extrahead %} + +{% endblock %} + +{%- block footer %} +
+

User discussion

+
+
+ {%- if config.copyright %} +

{{ config.copyright }}

+ {%- endif %} +

{% trans mkdocs_link='MkDocs' %}Documentation built with {{ mkdocs_link }}.{% endtrans %}

+{%- endblock %} diff --git a/docs/external-tutorials.md b/docs/external-tutorials.md new file mode 100644 index 0000000..25ee5d2 --- /dev/null +++ b/docs/external-tutorials.md @@ -0,0 +1,32 @@ +# External tutorials + +While these docs aim to cover everything netfox-related, we are happy to be +promoting other creators who also create content that helps understanding +netfox. + +## BatteryAcidDev + +In-depth tutorials explaining networking from the basics. Excellent content +both for newcomers and seasoned developers. Make sure to check the YouTube +channel as well as these videos! + +- [Godot Multiplayer Lag Compensation with Netfox](https://youtu.be/GqHTNmRspjU?si=--fKtAOvJiYd5RTd) +- [Start Your Multiplayer Game with this Template](https://youtu.be/AplKwFtBMjU?si=LBwW4X5D_A4gL33U) +- [Complete Game Walkthrough](https://youtu.be/tWLZNCJISYU?si=1ewd1fgd5vx-3HI1) +- [Run Your Own P2P Server with Noray!](https://youtu.be/9pEBq6hLCzQ?si=OlyK-NXyxsnJ2A8A) + +[:simple-youtube: YouTube](https://www.youtube.com/@BatteryAcidDev/) | +[:simple-discord: Discord](https://discord.gg/psjbBDvNBK) + +## Your content here! + +Are you making a video about netfox? A tutorial series? A blog post? Something +else? + +Let us know, we'd love to feature it! Reach out on [Github discussions], on +[Discord], or in the comments at the bottom of this page. + + +[Github discussions]: https://github.com/foxssake/netfox/discussions/ +[Discord]: https://discord.gg/xWGh4GskG5 + diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico new file mode 100644 index 0000000..f11cab2 Binary files /dev/null and b/docs/img/favicon.ico differ diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..3011d0a --- /dev/null +++ b/docs/index.md @@ -0,0 +1,119 @@ +![netfox banner](./assets/press-kit/netfox-banner-hor-alt.svg.preview.png) + +[![License](https://img.shields.io/github/license/foxssake/netfox)](https://github.com/foxssake/netfox/blob/main/LICENSE) +[![GitHub Release](https://img.shields.io/github/v/release/foxssake/netfox)](https://github.com/foxssake/netfox/releases) +[![Documentation](https://img.shields.io/badge/Docs-github.io-blue)](https://foxssake.github.io/netfox/) +[![Discord](https://img.shields.io/discord/1253434107656933447?logo=discord&label=Discord)](https://discord.gg/xWGh4GskG5) +[![ko-fi](https://img.shields.io/badge/Support%20on-ko--fi-ff5e5b?logo=ko-fi)](https://ko-fi.com/T6T8WZD0W) + +A set of addons for responsive online games with the [Godot engine]. + +## Features + +* ⏲️ Consistent timing across multiple machines +* 🖥️ Supports client-server architecture +* 🧈 Smooth motion with easy-to-use interpolation +* 💨 Lag compensation with Client-side Prediction and Server-side Reconciliation +* 🛜 Bullet-proof connectivity with [noray] integration + +## Overview + +The package consists of multiple addons, each with different features: + +* [netfox] + * The core package, implements timing, rollback and other multiplayer + features + * *Start here* +* [netfox.noray] + * Implements [noray] integration to establish connection between players + * *Useful for online games* +* [netfox.extras] + * Provides high-level, game-specific, convenience features built on top of + netfox, like base classes for input management or weapons + * *Check for reusable components for your game* +* [netfox.internals] + * Shared utilities for the other addons + * Included as dependency, no need to install separately + +## C# Support +For experimental C# support, see the [Netfox Sharp guide](netfox/guides/netfox-sharp.md). + +## Install + +### Releases + +Find the latest netfox under +[Releases](https://github.com/foxssake/netfox/releases) + +Each release contains the addons, and a build of [Forest Brawl] for Windows and +Linux. Each addon has its dependencies packed with it - e.g. +*"netfox.extras.vx.y.z.zip"* also contains both *netfox* and +*netfox.internals*. + +> Note: For releases before v1.1.1, a separate *".with-deps.zip"* version +> contains the addon and its dependencies, while the regular zips contain only +> the addon itself. + +### Asset Library + +Search for the addon name in Godot's AssetLib or download from the site: + +* [netfox](https://godotengine.org/asset-library/asset/2375) +* [netfox.noray](https://godotengine.org/asset-library/asset/2376) +* [netfox.extras](https://godotengine.org/asset-library/asset/2377) + +### Source + +Download the [source] and copy the addons of your choice to your Godot project. + +### Enable the addons + +After adding *netfox* to your project, make sure to enable the addons in your +project settings. Otherwise, Godot will present you with errors about +undeclared identifiers. + +## Supported versions + +Godot 4.x is supported by netfox. If you find any issue using any supported +version, please [open an issue]. + +Forest Brawl and the other examples are written against Godot 4.1. They may or +may not work when opened with any other version. + +## Prototyping + +To try your game online with [noray], a free to use instance is hosted at +`tomfol.io:8890`, the same instance used by [Forest Brawl]. + +You can use this [noray] instance to quickly test your games online, but is not +recommended for shipping games. The instance has configured limits, and no +uptime guarantees are made. + +## About this documentation + +These pages assume that you are familiar with both Godot, its multiplayer +capabilities, and building multiplayer games in general. Missing any of these +might make your reading experience more difficult than preferred. + +Some links to get you up to speed: + +* [Godot Engine docs](https://docs.godotengine.org/en/stable/index.html) +* [Godot Engine High-level multiplayer](https://docs.godotengine.org/en/stable/tutorials/networking/high_level_multiplayer.html) +* [Networking for Physics Programmers](https://www.gdcvault.com/play/1022195/Physics-for-Game-Programmers-Networking) + +## About the tutorials + +The tutorials are intended to get you started fast, but don't explain much of +how things work. For that, refer to the guides. + +[netfox]: https://github.com/foxssake/netfox/tree/main/addons/netfox +[netfox.noray]: https://github.com/foxssake/netfox/tree/main/addons/netfox.noray +[netfox.extras]: https://github.com/foxssake/netfox/tree/main/addons/netfox.extras +[netfox.internals]: https://github.com/foxssake/netfox/tree/main/addons/netfox.internals +[Forest Brawl]: https://github.com/foxssake/netfox/tree/main/examples/forest-brawl + +[open an issue]: https://github.com/foxssake/netfox/issues + +[Godot engine]: https://godotengine.org/ +[noray]: https://github.com/foxssake/noray +[source]: https://github.com/foxssake/netfox/archive/refs/heads/main.zip diff --git a/docs/made-with-netfox.md b/docs/made-with-netfox.md new file mode 100644 index 0000000..fff5bea --- /dev/null +++ b/docs/made-with-netfox.md @@ -0,0 +1,78 @@ +# Made with netfox + +## Bubble Battle + + +![Bubble Battle](./assets/showcase/bubble-battle.jpg) + + +Bubble Battle is a retro online/local multiplayer fighting game inspired by +arcade classics. Players fly around with one simple objective: burst opponents’ +bubbles before they burst yours. Collect powerups and out-maneuver opponents +for fast-paced, addictive fun! + +[:simple-steam: Steam](https://store.steampowered.com/app/3180520/Bubble_Battle/) + +## PL4no-B + + +![PL4no-B](./assets/showcase/pl4nob.jpg) + + +The best and most modern 2D tactical shooter, inspired by Counter-Strike and +Hotline Miami. Play online with friends or meet new ones in diverse game modes. +Unlock a huge variety of guns and utilities, earn points to build your base, +unlock features, and invade other players’ bases for endless fun! + +[:simple-steam: Steam](https://store.steampowered.com/app/3423700/PL4noB/) + +## Chrome Carnage + + +![Chrome Carnage](./assets/showcase/chrome-carnage.jpg) + + +Machines took all jobs but one - urban blood sport. Chrome Carnage is a +multiplayer top down shooter set in vibrant chaotic cyberpunk cities. + +*Chrome Carnage* is a top-down shooter drenched in the glow of cyberpunk +dystopia, where hope is scarcer than a working vending machine. Rising sea +levels have forced humanity into overcrowded platform cities. + +With everyone on basic welfare a mysterious underground app has the desperate +masses hooked: win brutal street tournaments, score hectic amounts of crypto, +and maybe—just maybe—eat something that doesn’t squeak. + +[:simple-steam: Steam](https://store.steampowered.com/app/3204000/Chrome_Carnage/) + +## Nitro Turtles + + +![Nitro Turtles](./assets/showcase/nitro-turtles.jpg) + + +Nitro Turtles is a racing game about super fast turtles! Reach insane speeds +with awesome shell-attached gadgets, compete in crazy races with friends, and +sprint across the finish line to claim ultimate turtle victory! To be the +fastest turtle around, you'll need to master shell gadget usage, learn every +shortcut imaginable, and maybe even consider using performance-enhancing +seaweed\*. + +!!!note + Performance-enhancing seaweed has not been tested for safety and likely has + numerous side effects + +[:simple-steam: Steam](https://store.steampowered.com/app/3952070/Nitro_Turtles/) + +## Your game here! + +Building something cool with *netfox*? Whether it's a game, an app, tool, or +anything else, we'd be happy to showcase it! + +Reach out on [Github discussions], on [Discord], or in the comments at the +bottom of this page. + + +[Github discussions]: https://github.com/foxssake/netfox/discussions/207 +[Discord]: https://discord.gg/xWGh4GskG5 + diff --git a/docs/mapmaking/00-index.md b/docs/mapmaking/00-index.md deleted file mode 100644 index ff391c5..0000000 --- a/docs/mapmaking/00-index.md +++ /dev/null @@ -1,104 +0,0 @@ -# Tactical Shooter — Mapmaking SDK - -Everything you need to build, validate, package, and ship competitive maps for -Tactical Shooter. This SDK is designed for the community — no C++, no GDextension -tinkering required. You only need Godot 4 (any 4.x) and a text editor. - -## Quick Start - -```bash -# Copy the template project -cp -r client/map_template/ maps/my_first_map/ - -# Rename the demo scene -mv maps/my_first_map/template_map.tscn maps/my_first_map/de_my_map.tscn - -# Open in Godot -godot maps/my_first_map/project.godot -``` - -Then read the [Getting Started guide](01-getting-started.md). - -## What You Can Build - -- **Competitive defuse maps** — A-site, B-site, CT/T spawns, buy zones -- **Custom game modes** — The template is gameplay-agnostic; your map logic - is in Godot groups, not hardcoded -- **Community servers** — Ship maps as `.pck` files via the registry server - -## SDK Components - -| Component | Location | Purpose | -|-----------|----------|---------| -| [Template project](01-getting-started.md) | `client/map_template/` | Standalone Godot project with CSG prefabs and demo scene | -| [CSG Prefabs](02-building-geometry.md) | `client/map_template/assets/prefabs/` | 6 drop-in node types (spawns, sites, zones) | -| [Editor Validator](04-validation.md) | `client/map_template/template_map.gd` | Auto-runs when scene opened in editor | -| [Headless Validator](04-validation.md) | `client/tools/validate_map.gd` | 4-module CLI validator for CI/CD | -| [Packaging](05-packaging-and-shipping.md) | `scripts/map_packaging/pack_map.gd` | Exports `.tscn` → `.pck` addon pack | -| [Registry Server](05-packaging-and-shipping.md) | `scripts/map_packaging/map_registry_server.py` | Serves `.pck` files over HTTP | -| [Client Downloader](05-packaging-and-shipping.md) | `client/scripts/map_downloader.gd` | Autoload that downloads + loads `.pck` at runtime | - -## Map Authoring Workflow - -``` -┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ -│ 1. Build │ ──→ │ 2. Validate │ ──→ │ 3. Package │ -│ - CSG geometry │ │ - Editor check │ │ - pack_map.gd │ -│ - Prefab nodes │ │ - CLI validator │ │ - → .pck file │ -│ - Lighting │ │ - Fix warnings │ │ │ -└──────────────────┘ └──────────────────┘ └──────────────────┘ - │ - ▼ -┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ -│ 6. Load & Play │ ←── │ 5. Download │ ←── │ 4. Upload │ -│ - Auto-download │ │ - Registry HTTP │ │ - map_registry │ -│ - changelevel │ │ - Cache to disk │ │ - .pck + .json │ -└──────────────────┘ └──────────────────┘ └──────────────────┘ -``` - -## Performance Targets - -Maps built with the SDK must meet these budgets: - -| Metric | Target | Enforced by | -|------------------|-------------|--------------------------------| -| Triangle count | ≤ 50,000 | `validate_polycount.gd` | -| Texture size | ≤ 1024×1024 | `validate_textures.gd` | -| Dynamic lights | ≤ 4 | `validate_lights.gd` | -| LightmapGI | ✓ Baked | `validate_lights.gd` | -| ReflectionProbe | ≥ 1 | `validate_lights.gd` (warning) | -| FPS target | 60+ | Project rendering settings | - -## File Structure Reference - -``` -tactical-shooter/ -├── client/ -│ ├── project.godot # Main game project -│ ├── map_template/ # ← YOU ARE HERE (template project) -│ │ ├── project.godot # Standalone Godot project -│ │ ├── template_map.tscn # Demo scene (rename me) -│ │ ├── template_map.gd # Editor validation script -│ │ └── assets/prefabs/ # CSG prefab nodes -│ ├── tools/ -│ │ ├── validate_map.gd # CLI validator entry point -│ │ └── validate_map/ # 4 validator modules -│ │ ├── validate_scene.gd -│ │ ├── validate_polycount.gd -│ │ ├── validate_textures.gd -│ │ └── validate_lights.gd -│ └── scripts/ -│ └── map_downloader.gd # Client autoload for .pck loading -├── scripts/ -│ └── map_packaging/ -│ ├── pack_map.gd # Godot editor → .pck exporter -│ └── map_registry_server.py # Python HTTP registry server -└── docs/mapmaking/ - ├── 00-index.md # This document - ├── 01-getting-started.md # Template project setup - ├── 02-building-geometry.md # CSG & prefab guide - ├── 03-lighting-and-env.md # Lighting & baking - ├── 04-validation.md # Validator usage - ├── 05-packaging-and-shipping.md# Publishing pipeline - └── 06-faq-and-troubleshooting.md -``` diff --git a/docs/mapmaking/01-getting-started.md b/docs/mapmaking/01-getting-started.md deleted file mode 100644 index f74aaef..0000000 --- a/docs/mapmaking/01-getting-started.md +++ /dev/null @@ -1,135 +0,0 @@ -# Getting Started — Your First Map - -This guide walks you through setting up the map template project and creating -a basic playable map. - -## Prerequisites - -- Godot 4.0 or later (any 4.x stable) -- The Tactical Shooter repository cloned -- Familiarity with Godot's editor (scene tree, inspector, 3D viewport) - -## 1. Copy the Template - -The template project lives at `client/map_template/`. Copy it somewhere outside -the main project (or keep it adjacent — it's a standalone Godot project): - -```bash -# From the tactical-shooter repository root -cp -r client/map_template/ maps/my_first_map/ -cd maps/my_first_map/ -mv template_map.tscn de_dust2.tscn -``` - -## 2. Open in Godot - -Launch Godot and click **Import** (not Open). Navigate to your copied directory -and select `project.godot`. The map template project will open. - -> **Why "Import"?** Because template is a standalone project with its own -> `project.godot`. You're importing a new project into the Godot project list, -> not opening a scene within an existing project. - -## 3. Explore the Demo Scene - -Open `de_dust2.tscn` (the renamed `template_map.tscn`). You'll see: - -- **Floor**: A green CSGBox3D pad (16×20 units) -- **Walls**: Orange CSGBox3D walls forming a rough box -- **Spawn pads**: Green (CT) and red (T) Marker3D spawn points -- **Bomb sites**: Semi-transparent orange floor panels -- **Buy zones**: Semi-transparent yellow trigger areas -- **Lighting**: DirectionalLight3D (sun), OmniLight3D fill, LightmapGI -- **Environment**: WorldEnvironment with sky - -The scene also contains a `template_map.gd` editor tool script. When you open -this scene, the **Output** panel (bottom dock) shows auto-validation results -for the map structure. - -## 4. Build Your First Room - -1. **Select the floor** — Click `Floor` in the scene tree -2. **Scale it** — With the scale tool (R), drag the red/green/blue handles - to resize the floor to roughly 12×16 units -3. **Add walls** — Select `Walls` → right-click → **Instantiate Child Scene** → - select `assets/prefabs/map_bounds.tscn`. Size them to enclose the floor -4. **Add a ceiling** — Duplicate (Ctrl+D) the floor, move it up 4 units, - set **Operation** to Union (0) so it acts as a solid ceiling - -> **Tip:** Use **View → Perspective** and rotate around to check your geometry -> from all angles. Walls should overlap slightly to prevent light leaks. - -## 5. Place Spawn Points - -Spawn points tell the game where players appear at round start. - -**CT Spawns:** -- Drag `assets/prefabs/ct_spawn.tscn` from the FileSystem dock into the scene -- Position it on the floor at one end of the map -- The green pad's +Z arrow shows the direction players face on spawn -- Duplicate for 5 players (competitive standard) - -**T Spawns:** -- Same process with `assets/prefabs/t_spawn.tscn` (red pads) -- Place at the opposite end of the map - -## 6. Define Bomb Sites - -A competitive defuse map needs two bomb sites, A and B. - -1. Drag `assets/prefabs/bomb_site.tscn` into the scene -2. Rename it to `BombsiteA` -3. Resize the CollisionShape3D to cover the intended site area -4. In the **Node** dock → **Groups** tab, ensure it has: - - `bomb_site` (required — game logic finds sites by this group) - - `bombsite_a` (informational — helps identify which site) -5. Repeat for BombsiteB with group `bombsite_b` - -## 7. Add Buy Zones - -Buy zones mark areas where players can purchase equipment. - -1. Drag `assets/prefabs/buy_zone.tscn` into the scene -2. Place one at the CT spawn area (group `buy_zone` stays) -3. Resize the yellow CollisionShape3D to cover the spawn room -4. Duplicate for T spawn — add subgroup `ct_buy` or `t_buy` on each - -## 8. Check the Editor Validator - -Open the **Output** (bottom dock). The `template_map.gd` script runs -automatically. You should see something like: - -``` -=== Map Template: Validate Scene === - + CT Spawn points (5 found) - + T Spawn points (5 found) - + Buy zones (2 found) - + Bomb sites (2 found) - + Cubemap capture origins (1 found) - + Map boundary walls (8 found) - + CSG Floor geometry (1 nodes) - + CSG Wall geometry (4 walls) - + LightmapGI configured ✓ - + LightmapGI: NOT YET BAKED - + ReflectionProbe present - + WorldEnvironment present - + DirectionalLight3D (sun) present -``` - -The "NOT YET BAKED" warning is expected — you'll bake lighting after geometry -is finalised (see [Lighting guide](03-lighting-and-env.md)). - -## 9. Save and Package - -When your map is ready for testing: - -1. Save the scene (`Ctrl+S`) -2. Read the [Validation guide](04-validation.md) for headless CI checks -3. Read the [Packaging guide](05-packaging-and-shipping.md) to ship it - -## Next Steps - -- [Building Geometry with CSG](02-building-geometry.md) — detailed prefab reference -- [Lighting & Baking](03-lighting-and-env.md) — how to light your map properly -- [Validator Reference](04-validation.md) — CLI validator exit codes and CI -- [Packaging & Shipping](05-packaging-and-shipping.md) — publishing as .pck diff --git a/docs/mapmaking/02-building-geometry.md b/docs/mapmaking/02-building-geometry.md deleted file mode 100644 index 7ed321a..0000000 --- a/docs/mapmaking/02-building-geometry.md +++ /dev/null @@ -1,245 +0,0 @@ -# Building Geometry with CSG - -Tactical Shooter maps are built with Godot's **CSG** (Constructive Solid -Geometry) system — the same tool you'd use in a 3D modeller, but inside the -Godot editor. CSG nodes let you cut, join, and extrude geometry in real-time -with instant visual feedback. - -## CSG Basics - -### CSG Node Types - -| Node | Use | Shape | -|------|-----|-------| -| `CSGBox3D` | Walls, floors, ceilings, pillars | Rectangular prism | -| `CSGSphere3D` | Domes, curved edges | Sphere | -| `CSGCylinder3D` | Columns, pipes | Cylinder | -| `CSGCombiner3D` | Group container, non-collidable parent | — | -| `CSGPolygon3D` | Extruded 2D path | Custom shape | - -### CSG Operations - -Each CSG node has an **Operation** property that determines how it combines -with sibling CSG nodes in the same parent: - -| Value | Operation | Effect | -|-------|-----------|--------| -| 0 | **Union** | Adds to existing geometry (default) | -| 1 | **Subtraction** | Cuts a hole through parent | -| 2 | **Intersection** | Keeps only overlapping volume | - -**Example — a window cutout:** - -``` -Wall (CSGBox3D, Union) -└── WindowCutout (CSGBox3D, Subtraction) -``` - -This subtracts the window shape from the wall. Move/resize the subtraction -child to reposition the window. - -### Key Properties - -- **`use_collision`** (bool) — Must be `true` on all floor/wall/ceiling CSG - nodes so players and bullets collide with them -- **`use_shadows`** (bool) — Enable shadow-casting on geometry -- **`material`** — Assign placeholder materials during construction; final - materials come from the main game project library -- **`snap_mode`** — Controls vertex snapping (useful for aligning geometry) - -## Building a Room - -A basic room needs 3 CSG layers: - -``` -Room (CSGCombiner3D) -├── Floor (CSGBox3D, Union, use_collision=true) -├── Walls (CSGCombiner3D) -│ ├── Wall_North (CSGBox3D, Union) -│ ├── Wall_South (CSGBox3D, Union) -│ ├── Wall_East (CSGBox3D, Union) -│ └── Wall_West (CSGBox3D, Union) -└── Ceiling (CSGBox3D, Union, use_collision=true) -``` - -### CSG Building Tips - -1. **Overlap slightly** — Walls should extend past the floor edge by ~0.1 units - to prevent light leaks (thin gaps let light bleed through) -2. **Keep CSG simple** — Use as few CSG nodes as possible. A wall panel is one - CSGBox3D, not 4 extruded edges -3. **Convert to Mesh when done** — Once geometry is final, select all CSG - nodes → right-click → **Convert CSG to Mesh**. This bakes them into static - MeshInstance3D nodes that perform much better -4. **Avoid curved CSG for floor/walls** — CSGSphere3D and CSGCylinder3D are - expensive. Use them sparingly - -## Prefab Reference - -The template provides 6 drag-and-drop prefab nodes. Each is an `assets/prefabs/*.tscn` -file that you instantiate into your scene. - -### ct_spawn.tscn - -| Property | Value | -|----------|-------| -| Type | `Marker3D` (green pad + arrow) | -| Group | `ct_spawn` | -| Purpose | CT team spawn position | -| Quantity | 5 (one per player) | - -The +Z arrow (blue axis) shows the direction players face when they spawn. -Position the pad at floor level — make it flush with the floor surface. - -**Customisation:** Duplicate instances rather than editing the prefab. Adjust -only position and rotation. The green pad is cosmetic. - -### t_spawn.tscn - -| Property | Value | -|----------|-------| -| Type | `Marker3D` (red pad + arrow) | -| Group | `t_spawn` | -| Purpose | Terrorist team spawn position | -| Quantity | 5 | - -Same usage as `ct_spawn` but red. Place at the opposite end of the map. - -### buy_zone.tscn - -| Property | Value | -|----------|-------| -| Type | `Area3D` with `CollisionShape3D` | -| Group | `buy_zone` | -| Purpose | Purchase-eligible zone | -| Quantity | 1–2 | - -The game monitors `body_entered` / `body_exited` on these areas to show/hide -the buy menu. Resize the child CollisionShape3D to match the room shape. - -**Additional groups (optional):** -- `ct_buy` — Only CT team can buy in this zone -- `t_buy` — Only T team can buy in this zone - -If omitted, any player inside a `buy_zone` can buy (suitable for shared mid areas). - -### bomb_site.tscn - -| Property | Value | -|----------|-------| -| Type | `Area3D` with `CollisionShape3D` | -| Group | `bomb_site` | -| Purpose | Bomb plant zone | -| Quantity | 2 (A and B) | - -Rename instances to `BombsiteA` and `BombsiteB`. Resize the CollisionShape3D -to cover the plantable area. Visual: semi-transparent orange floor panel. - -**Additional groups (strongly recommended):** -- `bombsite_a` — Identifies this as site A -- `bombsite_b` — Identifies this as site B - -### cubemap_origin.tscn - -| Property | Value | -|----------|-------| -| Type | `Node3D` (blue sphere marker) | -| Group | `cubemap_origin` | -| Purpose | Marks ReflectionProbe capture position | -| Quantity | 1 | - -Place at eye height ≈ 1.6 units above the floor in the most visually prominent -area (usually mid-map or the central choke point). The ReflectionProbe is a -separate node that should be placed at this marker's position after geometry -is finalised. - -### map_bounds.tscn - -| Property | Value | -|----------|-------| -| Type | `Area3D` with `CollisionShape3D` | -| Group | `map_bounds` | -| Purpose | Out-of-bounds kill wall | -| Quantity | 4–8 (enclose the perimeter) | - -**Usage:** -- Place one instance per perimeter face (north, south, east, west) -- Resize each CollisionShape3D to form a closed box around the playable area -- Make the floor-bound wall tall enough that players can't jump over it -- The game detects `body_exited` from these areas and teleports/kills - out-of-bounds players - -> **Performance tip:** `map_bounds` nodes should be as thin as practical — -> these are just detection triggers, not visual geometry. A thickness of 0.5 -> units is sufficient. - -## Advanced Geometry Techniques - -### Corridors and Hallways - -Build a corridor as a CSGCombiner3D with union floor + walls + ceiling and -subtraction nodes for doors/windows: - -``` -Corridor (CSGCombiner3D) -├── Floor (CSGBox3D, Union) -├── LeftWall (CSGBox3D, Union) -│ └── Door1 (CSGBox3D, Subtraction) -├── RightWall (CSGBox3D, Union) -│ └── Window1 (CSGBox3D, Subtraction) -└── Ceiling (CSGBox3D, Union) -``` - -### Ramps and Stairs - -Use multiple CSGBox3D nodes at increasing heights. Stack them like steps and -wrap in a CSGCombiner3D for a clean hierarchy: - -``` -Stairs (CSGCombiner3D) -├── Step1 (CSGBox3D, Union, pos=(0, 0, 0)) -├── Step2 (CSGBox3D, Union, pos=(0, 0.5, 1)) -├── Step3 (CSGBox3D, Union, pos=(0, 1.0, 2)) -└── Step4 (CSGBox3D, Union, pos=(0, 1.5, 3)) -``` - -For ramps, rotate a CSGBox3D or use CSGPolygon3D with an extruded triangle shape. - -### Map Scale Reference - -| Element | Size (units) | Notes | -|---------|-------------|-------| -| Player height | 1.8 | Eye level ≈ 1.6 | -| Player width | 0.5 | Collision capsule radius | -| Doorway | 1.5 × 2.5 | Wide enough for 2 players | -| Corridor | 3–4 wide | Comfortable movement | -| Bombsite | 8×8 minimum | Playable site area | -| Spawn room | 6×8 | 5 players need space | -| Mid area | 6–8 wide | Main chokepoint | - -## From CSG to MeshInstance3D (Baking) - -When your geometry is **final** (no more changes expected): - -1. Select all CSG nodes in the scene tree -2. Right-click → **Convert CSG to Mesh** -3. This replaces CSG nodes with static `MeshInstance3D` nodes -4. The mesh instances are much more performant - -**Don't convert until you're done** — CSG is editable, MeshInstance3D is not. -Keep working in CSG mode; convert only for final optimisation before packaging. - -## Performance Budget - -See the [Validator guide](04-validation.md) for detailed numbers, but the key -geometry rules are: - -- **≤ 50,000 triangles** total across all meshes -- **≤ 5,000 triangles** per individual mesh (recommended; enforced as warning) -- Use CSG for blockout only — convert to mesh before shipping -- Avoid CSGSphere3D in visible areas; use hand-modelled meshes - -## Next Steps - -- [Lighting & Environment Setup](03-lighting-and-env.md) — light your map -- [Map Validation](04-validation.md) — run the validator on your scene diff --git a/docs/mapmaking/03-lighting-and-env.md b/docs/mapmaking/03-lighting-and-env.md deleted file mode 100644 index 5d4434a..0000000 --- a/docs/mapmaking/03-lighting-and-env.md +++ /dev/null @@ -1,159 +0,0 @@ -# Lighting & Environment Setup - -Proper lighting is the difference between a map that looks professional and one -that looks like a grey box. Tactical Shooter uses Godot's **LightmapGI** system -for baked global illumination: light bounces are pre-calculated and stored in -lightmaps, giving you realistic lighting at zero runtime cost. - -## Lighting Architecture - -``` -DirectionalLight3D (sun) — main directional light, shadows - └─ OmniLight3D (fill) — ambient fill lights, no shadow - └─ LightmapGI — bakes all static lighting into textures - └─ baked lightmaps (zero runtime cost) -``` - -## 1. WorldEnvironment - -Every map needs a `WorldEnvironment` node. This controls: - -- **Sky** — Background appearance (skybox or solid colour) -- **Ambient light** — Base light level for unlit surfaces -- **Tonemapping** — Colour grading and exposure - -**Setup:** -1. The template already includes a `WorldEnvironment` node -2. If creating from scratch, add one via the scene tree → + button → `WorldEnvironment` -3. In the Inspector, assign an `Environment` resource (New Environment) -4. Configure: - - **Background:** Sky (for outdoor) or Clear Color (for underground maps) - - **Ambient Light:** Sky (mimics sky colour) or Color (custom ambient) - - **Tonemap:** Reinhard or Filmic (prevents blown-out highlights) - -> The validator warns if WorldEnvironment is missing — add it early. - -## 2. DirectionalLight3D (Sun) - -The main sun light. One per map. - -**Recommended settings:** -| Property | Value | Reason | -|----------|-------|--------| -| `light_bake_mode` | Static (2) | Bakes into lightmap | -| `shadow_enabled` | true | Required for competitive visibility | -| `shadow_bias` | 0.1 | Prevents shadow acne on CSG | -| `angular_distance` | 0.01 | Sharp sunlight (competitive visual clarity) | -| `range` | 50–100 | Large enough to cover the map | - -**Positioning:** -- Rotate the sun to create interesting shadows through windows/doorways -- Avoid straight-down lighting (makes everything look flat) -- A 45° angle works well for most maps - -## 3. Fill Lights (OmniLight3D) - -Fill lights illuminate areas the sun doesn't reach (interiors, tunnels). - -**Rules:** -- **Maximum 4 dynamic (non-baked) lights** — enforced by the validator -- Fill lights should use `light_bake_mode = Static (2)` so they bake into - the lightmap and don't count toward the dynamic budget -- Use low intensity (0.3–0.5) for ambient fill - -**Performance tip:** Every omni/spot light with `shadow_enabled = true` is -expensive. The validator warns on dynamic lights with shadows. Baked lights -with shadows disabled are free — use them. - -## 4. LightmapGI — Baked Global Illumination - -LightmapGI is the backbone of Tactical Shooter's lighting. It pre-computes -light bouncing and stores the result as textures (lightmaps). - -### Configuration - -| Property | Recommended | Notes | -|----------|-------------|-------| -| `quality` | 2 (High) | Higher = better GI, longer bake | -| `bounces` | 3 | Minimum 2 for realistic indirect lighting | -| `texel_scale` | 1.0–2.0 | Lower = higher res, longer bake | -| `max_texture_size` | 1024 | Controls lightmap atlas size | -| `use_denoiser` | true | Removes noise from baked result | -| `environment_mode` | 0 (Baked Environment) | Uses WorldEnvironment for sky lighting | - -### Baking - -To bake: select the `LightmapGI` node → click **Bake Lightmap** in the top -toolbar (or `Ctrl+Shift+C`). - -**Baking checklist:** -- [ ] All geometry is finalised (moving geometry after baking invalidates it) -- [ ] All lights have correct bake mode (Static for baked, Dynamic for real-time) -- [ ] CSG has `use_collision = true` (non-collidable CSG may not bake properly) -- [ ] WorldEnvironment is configured with a sky or ambient colour -- [ ] Save the scene before baking - -**Baking time:** Varies by map complexity. A small map (10×14 units) bakes in -30–60 seconds. A full competitive map (20×20) may take 5–10 minutes. - -### After Baking - -- The LightmapGI node's `light_data` property will show a `LightmapGIData` resource -- The validator checks for `light_data != null` to confirm the map is baked -- Baked lightmaps are stored in the `.tscn` file as embedded resources -- You can rebake at any time — it overwrites the previous lightmaps - -**Warning:** Opening an unbaked map on a server will default to unlit rendering. -Always bake before packaging. - -## 5. ReflectionProbe - -ReflectionProbes add specular reflections to shiny surfaces (metal, glass, water). - -- Place one `ReflectionProbe` near the `cubemap_origin` marker -- Set `max_distance` to cover the visible area (10–30 units) -- Enable `box_projection` for interior spaces (corrects reflection distortion) -- Set `intensity` to 0.5–0.8 (realistic reflection strength) - -**Tip:** You need reflection probes even if your map has no mirrors — they make -metal and plastic materials look correct. - -## 6. Lighting Performance Budget - -| Metric | Limit | Enforced | -|--------|-------|----------| -| Dynamic (non-baked) lights | ≤ 4 | Validator (error) | -| Total lights (baked + dynamic) | Unlimited | — | -| LightmapGI bounces | ≥ 2 | Validator (warning) | -| ReflectionProbes | ≥ 1 | Validator (warning) | -| Lightmap max texture | ≤ 2048 | Project settings | - -If you exceed the dynamic light budget, set more lights to -`light_bake_mode = Static (2)` — baked lights cost nothing at runtime. - -## 7. Quick Start Checklist - -- [ ] WorldEnvironment with Environment resource assigned -- [ ] DirectionalLight3D (sun) with shadows -- [ ] 1–3 fill OmniLight3D with Static bake mode -- [ ] LightmapGI with quality=2, bounces=3, texel_scale=1.0 -- [ ] ReflectionProbe at cubemap origin -- [ ] All geometry CSG has `use_collision = true` -- [ ] Save scene → Bake LightmapGI (Ctrl+Shift+C) -- [ ] Verify `light_data` is populated (not null) - -## Troubleshooting - -| Problem | Likely Cause | Fix | -|---------|-------------|-----| -| Light leaks at corners | CSG gap < 0.01 units | Overlap CSG edges by 0.1 | -| Baked lighting too dark | bounces too low | Set bounces ≥ 2 | -| Lightmap seams visible | texel_scale too high | Lower texel_scale to 1.0 | -| Shadow acne (striped shadows) | shadow_bias too low | Increase shadow_bias to 0.1 | -| ReflectionProbe visible as sphere | probe_mode wrong | Set to Box or disable visibility | -| Bake fails with error | Scene not saved | Save `.tscn` before baking | - -## Next Steps - -- [Map Validation](04-validation.md) — run all checks on your scene -- [Packaging & Shipping](05-packaging-and-shipping.md) — publish your map diff --git a/docs/mapmaking/04-validation.md b/docs/mapmaking/04-validation.md deleted file mode 100644 index 1906937..0000000 --- a/docs/mapmaking/04-validation.md +++ /dev/null @@ -1,235 +0,0 @@ -# Map Validation - -The validator catches structural problems, performance budget violations, and -lighting issues before your map ships. Two validation modes are available: - -1. **Editor validation** — runs automatically when you open a map scene -2. **Headless CLI validation** — runs from the terminal, suitable for CI/CD - -## Editor Validation (template_map.gd) - -Every map created from the template includes `template_map.gd`, a `@tool` -script that runs automatically when the scene opens in the Godot editor. - -**How to use it:** -1. Open your map's `.tscn` file in the Godot editor -2. Look at the **Output** panel (bottom dock) -3. The script prints a validation report like: - ``` - === Map Template: Validate Scene === - + CT Spawn points (5 found) - + T Spawn points (5 found) - + Buy zones (2 found) - + Bomb sites (2 found) - + Cubemap capture origins (1 found) - + Map boundary walls (8 found) - + LightmapGI configured ✓ - + LightmapGI: NOT YET BAKED - + DirectionalLight3D (sun) present - ``` - -**Checks performed:** -- Required gameplay groups exist (`ct_spawn`, `t_spawn`, `buy_zone`, etc.) -- CSG floor and wall geometry present -- LightmapGI configured and baked -- ReflectionProbe and WorldEnvironment present -- DirectionalLight3D (sun) present -- Playable area extents estimated - -## Headless CLI Validator (validate_map.gd) - -The headless validator is a 4-module CLI tool at `client/tools/validate_map.gd`. -Use it for automated checking before packaging or in CI/CD pipelines. - -### Usage - -```bash -# From the tactical-shooter repository root -godot --path client --script tools/validate_map.gd -- res://maps/mymap.tscn -``` - -> The `--` separates Godot engine arguments from user arguments. -> The scene path must be a `res://`-prefixed Godot resource path. - -### Exit Codes - -| Code | Meaning | Description | -|------|---------|-------------| -| 0 | **PASS** | All checks passed, no warnings | -| 1 | **WARNINGS** | Passed with non-blocking suggestions | -| 2 | **ERRORS** | Failed — must-fix items present | - -### CI/CD Integration - -```bash -#!/bin/bash -# Gate map merges on validation - -godot --path client --script tools/validate_map.gd -- res://maps/mymap.tscn -exit_code=$? - -if [ $exit_code -eq 2 ]; then - echo "❌ Map validation FAILED — fix errors before submitting" - exit 1 -elif [ $exit_code -eq 1 ]; then - echo "⚠️ Map passed with warnings — review suggestions" -fi - -echo "✅ Map validated successfully" -exit 0 -``` - -### Example Output - -``` -═══════════════════════════════════════════ - MAP VALIDATOR - Scene: res://maps/de_dust2.tscn -═══════════════════════════════════════════ - -── [validate_scene] ──────────────────────────── - ✓ Root node: World (Node3D) - ✓ WorldEnvironment (WorldEnvironment) - ✓ LightmapGI (LightmapGI) - ✓ Group "ct_spawn" → CT_SpawnPos (5 node(s)) - ✓ Group "t_spawn" → T_SpawnPos (5 node(s)) - ✓ Group "buy_zone" → BuyZone_A (2 node(s)) - ✓ Group "bomb_site" → BombsiteA (2 node(s)) - ✓ Group "cubemap_origin" → CubemapOrigin (1 node(s)) - ✓ pass - -── [validate_polycount] ──────────────────────── - Meshes scanned: 24 - Total triangles: 12,842 - Budget: 50,000 - ✓ Within budget (25.7% of 50000) - Top meshes by triangle count: - 4200 Building_01 (MeshInstance3D) - 2100 Wall_Detail (MeshInstance3D) - 1042 Floor_Tiles (MeshInstance3D) - ✓ pass - -── [validate_textures] ───────────────────────── - Textures inspected: 18 - ✓ All textures within 1024×1024 limit - ✓ pass - -── [validate_lights] ─────────────────────────── - Light breakdown: - DirectionalLight3D: 1 - OmniLight3D: 2 - SpotLight3D: 0 - Dynamic (non-baked): 1 - Baked: 2 - ✓ Dynamic light count: 1 (limit: 4) - ✓ LightmapGI baked (light_data present) - Quality: 2 (0=Low, 1=Med, 2=High, 3=Ultra) - Bounces: 3 - Texel Scale: 1.0 - Max Texture Size: 1024 - ✓ WorldEnvironment configured - ReflectionProbes: 1 - ✓ pass - -═══════════════════════════════════════════ - SUMMARY -═══════════════════════════════════════════ - [PASS] validate_scene - [PASS] validate_polycount - [PASS] validate_textures - [PASS] validate_lights - - Errors: 0 - Warnings: 0 - Result: PASS -``` - -## Validator Modules - -### 1. Scene Structure (`validate_scene.gd`) - -**What it checks:** -- Scene root is a `Node3D` type -- `WorldEnvironment` node present and named correctly -- `LightmapGI` node present and named correctly -- All 5 required groups assigned (`ct_spawn`, `t_spawn`, `buy_zone`, `bomb_site`, `cubemap_origin`) -- Node names follow PascalCase convention (no spaces) -- No duplicate required groups on different nodes - -**Typical errors:** -``` -✖ Missing required group: "ct_spawn" -✖ Missing WorldEnvironment — map needs a WorldEnvironment node -✖ Node name contains spaces: "My Room Section" -``` - -### 2. Polygon Count (`validate_polycount.gd`) - -**What it checks:** -- Total triangle count across all `MeshInstance3D` nodes ≤ **50,000** -- Per-mesh triangle breakdown printed (helps identify heavy assets) -- Warns on individual meshes > **5,000** triangles -- Warns if no `MeshInstance3D` nodes found at all - -**Typical errors:** -``` -✖ Map exceeds 50,000 triangle budget: 68,420 total (36.8% over budget) -``` - -### 3. Texture Sizes (`validate_textures.gd`) - -**What it checks:** -- All material textures ≤ **1024×1024** -- Checks `StandardMaterial3D`, `ORMMaterial3D`, and `ShaderMaterial` texture params -- Warns on textures > **512×512** (suggested for secondary surfaces) -- LightmapGI textures checked separately (baked textures can be larger) - -**Typical errors:** -``` -✖ Texture exceeds 1024×1024: floor_tiles.png (albedo) — 2048× -``` - -### 4. Lights & Lightmap (`validate_lights.gd`) - -**What it checks:** -- Dynamic (non-baked) OmniLight3D + SpotLight3D ≤ **4** -- DirectionalLight3D counts toward dynamic budget if not baked -- LightmapGI present and baked (`light_data != null`) -- Lightmap quality, bounces, texel scale, max texture size -- WorldEnvironment assigned with Environment resource -- ReflectionProbe presence and `max_distance` coverage -- Warns on dynamic lights with shadow enabled (performance cost) - -**Typical errors:** -``` -✖ Too many dynamic lights: 6 (max 4) -✖ No LightmapGI node found -✖ No WorldEnvironment node found -``` - -## Passing the Validator - -The goal is exit code 0: **PASS**, no errors, no warnings. - -| Code | Action | -|------|--------| -| 0 (PASS) | Your map is ready to package | -| 1 (WARNINGS) | Fix suggestions before shipping (non-blocking) | -| 2 (ERRORS) | Fix all errors — map must pass before packaging | - -> **CI gate rule:** Treat exit code 2 as a hard block. Exit code 1 is advisory -> but should be reviewed. Only exit code 0 means "ship it." - -## Adding a Custom Validator Module - -Advanced users can extend the validator: - -1. Create `client/tools/validate_map/validate_.gd` extending `RefCounted` -2. Implement `func validate(scene_root: Node, scene_path: String) -> Dictionary` -3. Return `{"pass": bool, "errors": [String], "warnings": [String]}` -4. Add a `_run_module("", instance, scene_path)` call in - `validate_map.gd:_ready()` - -## Next Steps - -- [Packaging & Shipping](05-packaging-and-shipping.md) — ship your validated map diff --git a/docs/mapmaking/05-packaging-and-shipping.md b/docs/mapmaking/05-packaging-and-shipping.md deleted file mode 100644 index 9644343..0000000 --- a/docs/mapmaking/05-packaging-and-shipping.md +++ /dev/null @@ -1,264 +0,0 @@ -# Packaging & Shipping - -Once your map is built, validated, and baked, it's time to publish it to the -world. Tactical Shooter uses the **PCK** (Godot Resource Pack) format — the map -is packaged as a `.pck` file, uploaded to a registry server, and clients -download it automatically when they join a server running that map. - -## Pipeline Overview - -``` -┌──────────┐ ┌──────────────┐ ┌──────────────┐ ┌────────────┐ -│ pack_map │ → │ .pck + .json │ → │ Map Registry │ → │ Client │ -│ .gd │ │ files │ → │ Server │ → │ Downloader │ -└──────────┘ └──────────────┘ └──────────────┘ └────────────┘ - (editor (artifacts) (HTTP serving) (autoload) - tool) -``` - -## Step 1: Package the Map - -The `pack_map.gd` script (at `scripts/map_packaging/pack_map.gd`) is a Godot -editor tool that exports a `.tscn` scene as a standalone `.pck` resource pack. - -### Usage - -From the **map template project** (not the main game project): - -```bash -cd maps/my_first_map/ - -godot --headless --script /path/to/scripts/map_packaging/pack_map.gd \ - --map=res://de_my_map.tscn -``` - -> Replace `/path/to/` with the actual path to the tactical-shooter repository -> root, or copy `pack_map.gd` into your map project's `scripts/` directory. - -### What It Does - -1. Loads the specified `.tscn` scene -2. Recursively collects all dependencies (materials, textures, meshes, etc.) -3. Exports them to `user://packed_maps/de_my_map.pck` -4. Writes a metadata file `user://packed_maps/de_my_map.json` - -### Output Files - -``` -user://packed_maps/ -├── de_my_map.pck # Binary resource pack (~1–10 MB for a typical map) -└── de_my_map.json # JSON metadata (machine-readable) -``` - -**Metadata example** (`de_my_map.json`): -```json -{ - "map_name": "de_my_map", - "source_scene": "res://de_my_map.tscn", - "godot_version": { - "major": 4, - "minor": 2, - "string": "4.2" - }, - "packed_at": "2026-06-25T14:30:00" -} -``` - -### Requirements - -- The map scene must use **local resources** only (relative `res://` paths) -- External dependencies (game shared assets like weapon models, player - models) should stay in the base game — the `.pck` is **additive** content -- The `.pck` contains only the map's unique assets, not the entire game - -### From the Editor - -You can also run `pack_map.gd` from the Godot editor: - -1. Open your map project in Godot -2. Open your map scene (`de_my_map.tscn`) -3. **Project → Tools → Pack Current Map** (if configured) -4. The script detects the active scene and exports it - -## Step 2: Set Up the Map Registry Server - -The registry server is a lightweight Python HTTP server -(`scripts/map_packaging/map_registry_server.py`) that: -- Serves `.pck` files for download -- Provides a JSON `/maps` endpoint listing available maps -- Auto-scans the maps directory every 5 seconds -- Computes and serves SHA-256 checksums for integrity verification - -### Starting the Server - -```bash -cd /path/to/tactical-shooter - -# Default: port 8090, maps from ./packed_maps/ -python3 scripts/map_packaging/map_registry_server.py - -# Custom configuration -python3 scripts/map_packaging/map_registry_server.py \ - --port 8080 \ - --maps-dir /data/tactical-shooter-maps \ - --verbose -``` - -**Environment variables:** -| Variable | Overrides | Default | -|----------|-----------|---------| -| `MAP_REGISTRY_PORT` | `--port` / `-p` | 8090 | -| `MAP_REGISTRY_MAPS` | `--maps-dir` / `-d` | `./packed_maps/` | - -### API Endpoints - -| Endpoint | Method | Description | -|----------|--------|-------------| -| `GET /` | — | Server info and endpoint documentation | -| `GET /maps` | — | JSON list of all available maps with metadata | -| `GET /maps/.pck` | — | Download map `.pck` binary | -| `GET /maps/.json` | — | Download per-map metadata | -| `OPTIONS /maps` | — | CORS preflight | - -**Example responses:** - -``` -GET /maps -``` -```json -{ - "maps": [ - { - "name": "de_dust2", - "size": 5432100, - "version": 1, - "description": "Classic competitive map", - "checksum_sha256": "a1b2c3d4...", - "packed_at": "2026-06-25T14:30:00" - } - ], - "server_name": "Tactical Shooter Map Registry", - "server_version": "1.0.0", - "map_count": 1 -} -``` - -``` -GET /maps/de_dust2.pck -``` -→ Returns the `.pck` binary file as an octet-stream download. - -### Deployment Options - -- **Local dev:** Run on the same machine as the game (default `127.0.0.1:8090`) -- **Server host:** Run on a public server alongside the master server -- **Docker:** Wrap in a Docker container for easy deployment -- **Systemd service:** Create a service file for production hosting - -**Systemd service example:** -```ini -[Unit] -Description=Tactical Shooter Map Registry -After=network.target - -[Service] -Type=simple -User=tactical -WorkingDirectory=/opt/tactical-shooter -ExecStart=/usr/bin/python3 scripts/map_packaging/map_registry_server.py \ - --port 8090 --maps-dir /data/tactical-maps -Restart=on-failure - -[Install] -WantedBy=multi-user.target -``` - -## Step 3: Upload Your Map - -1. Copy the `.pck` and `.json` files to the registry server's maps directory: - ```bash - cp user://packed_maps/de_my_map.pck /data/tactical-maps/ - cp user://packed_maps/de_my_map.json /data/tactical-maps/ - ``` -2. The server auto-detects new files within 5 seconds -3. Verify via `curl http://your-server:8090/maps` - -## Step 4: Client Downloads - -The client uses `MapDownloader` (autoload at `client/scripts/map_downloader.gd`) -to fetch and load maps at runtime. - -### How It Works - -1. Player joins a server that specifies a map name -2. The client checks its local cache (`user://maps/manifest.json`) -3. If the map is not cached, `MapDownloader.fetch_map_list()` polls - the registry server to verify the map exists -4. `MapDownloader.download_map(name)` downloads the `.pck` to `user://maps/` -5. `ProjectSettings.load_resource_pack()` loads it into the game -6. The server changes to the new level - -### Map Caching - -``` -user://maps/ -├── de_dust2.pck # Cached map binary -├── de_inferno.pck # Another cached map -└── manifest.json # Cache index -``` - -**Cache behaviour:** -- Maps are cached to disk after download (survives restarts) -- The manifest tracks version numbers for staleness checks -- `MapDownloader.remove_map(name)` clears a specific map -- `MapDownloader.clear_cache()` removes all cached maps - -### Configuration - -The `MapDownloader` autoload can be configured in-game: - -```gdscript -# Set the registry server URL (override default http://127.0.0.1:8090) -MapDownloader.registry_url = "http://maps.myserver.com:8090" -``` - -The URL can also be set via the `MAP_REGISTRY_URL` environment variable, -which is read in `_ready()`. - -### Signals - -```gdscript -# Register for map lifecycle events -MapDownloader.map_list_loaded.connect(_on_map_list) -MapDownloader.map_download_progress.connect(_on_download_progress) -MapDownloader.map_download_complete.connect(_on_download_done) -MapDownloader.map_loaded.connect(_on_map_loaded) -``` - -## Full Pipeline Example - -```bash -# 1. Package from the template project -cd maps/my_first_map -godot --headless --script ../../scripts/map_packaging/pack_map.gd \ - --map=res://de_my_map.tscn - -# 2. Start registry server -cd ../.. -python3 scripts/map_packaging/map_registry_server.py --port 8090 & - -# 3. Deploy map -cp ~/.local/share/godot/app_userdata/MapTemplate/packed_maps/de_my_map.pck \ - scripts/map_packaging/packed_maps/ -cp ~/.local/share/godot/app_userdata/MapTemplate/packed_maps/de_my_map.json \ - scripts/map_packaging/packed_maps/ - -# 4. Verify -curl -s http://localhost:8090/maps | python3 -m json.tool - -# 5. In-game: connect to server and play the map -``` - -## Next Steps - -- [FAQ & Troubleshooting](06-faq-and-troubleshooting.md) — common issues diff --git a/docs/mapmaking/06-faq-and-troubleshooting.md b/docs/mapmaking/06-faq-and-troubleshooting.md deleted file mode 100644 index 6f3cbe8..0000000 --- a/docs/mapmaking/06-faq-and-troubleshooting.md +++ /dev/null @@ -1,238 +0,0 @@ -# FAQ & Troubleshooting - -Common questions, issues, and solutions encountered while building maps. - -## Template Project - -### Q: Can I use the template project without the main game repo? - -Yes. The template project at `client/map_template/` is a **standalone Godot -project**. Copy it anywhere, open it in Godot, and start building. You only -need the main repo for packaging (`pack_map.gd`) and the registry server -(`map_registry_server.py`). - -### Q: Why does Godot say "Import" instead of "Open"? - -The template has its own `project.godot`, making it a separate project. Use -**Import** to add it to your Godot project list. You're not opening a scene -within an existing project. - -### Q: How do I add the main game's assets to my map? - -The template uses placeholder materials. For final maps: - -1. Copy your map's `.tscn` into the main project under `client/maps//` -2. Open it from the main project's scenes tab -3. The main game's modular kit and PBR materials will be available -4. Assign materials to your CSG/MeshInstance3D nodes from the main project's - asset library - -### Q: Can I use external models from Blender/Maya? - -Yes. Export as `.glb` or `.obj` and import into Godot. Keep triangle counts -within budget (≤ 50K total, ≤ 5K per mesh recommended). Place imported meshes -as children of the map scene root. - -## Geometry & CSG - -### Q: My map has light leaks at the corners - -Thin gaps between CSG blocks let light bleed through. Fix by overlapping CSG -edges by **0.1 units** instead of butting them flush. - -``` -Bad: Wall ends at x=10.0, floor ends at x=10.0 → gap -Good: Wall extends to x=10.1, floor ends at x=10.0 → overlap -``` - -### Q: Players can walk through walls - -Make sure `use_collision = true` is set on all CSG geometry nodes. CSG nodes -don't have collision by default — you must enable it. - -### Q: My map renders as a grey box / no materials - -Placeholder materials are normal during construction. For the final look, you -need to: -1. Copy the map to the main project (see above) -2. Assign materials from the game's asset library -3. Re-bake LightmapGI after materials are assigned - -### Q: CSG performance is bad in the editor - -This is normal. CSG is re-calculated every time you move a node. For testing, -convert stable geometry to MeshInstance3D: -- Right-click CSG parent → **Convert CSG to Mesh** -- Keep a backup copy of the CSG hierarchy in another scene - -### Q: How do I make a skybox? - -Add a `WorldEnvironment` node and assign an Environment resource: -1. Set **Background** mode to **Sky** -2. Create a new **Sky** resource -3. Assign a **PanoramaSky** or **ProceduralSky** material -4. The sky appears behind your geometry - -### Q: My map has no collision after CSG → Mesh conversion - -When you convert CSG to MeshInstance3D, collision is not preserved. Add a -`CollisionShape3D` as a child of each MeshInstance3D, or use Godot's -**Mesh → Create Trimesh Collision** (right-click the MeshInstance3D). - -## Lighting - -### Q: My lightmap bake takes forever - -Baking time depends on: -- **texel_scale** — lower = higher resolution = longer bake (try 2.0 for testing) -- **bounces** — fewer bounces = faster bake (use 1 for quick tests, 3 for final) -- **Map size** — larger maps bake longer -- **Light count** — more lights = more calculations - -For quick iteration, use Low quality (0) during development and High quality (2) -for the final bake. - -### Q: Baked lighting is too dark - -- Increase `bounces` to 3 (more light bounce = brighter interiors) -- Add a low-intensity ambient fill (OmniLight3D with Static bake mode) -- Lower the `texel_scale` for more lightmap resolution -- Check that the DirectionalLight3D intensity is sufficient - -### Q: Lightmap has visible seams - -Seams appear where lightmap texels don't align. Fixes: -- Lower `texel_scale` to 1.0 (higher resolution lightmaps) -- Ensure CSG edges overlap (no gaps) -- Convert CSG to MeshInstance3D before final bake - -### Q: Shadows look blocky or jagged - -This is Godot's shadow mapping at default resolution. For competitive clarity: -- Keep `shadow_bias` at 0.1 (higher = softer shadows, fewer artefacts) -- Directional shadow `max_distance` at 20–30 (shadows beyond this use lower - resolution) - -### Q: I see a sphere artifact on my ReflectionProbe - -The ReflectionProbe has a `probe_mode` property — if set to **Reflection Probe** -(sphere mode), it renders as a visible sphere in reflections. Change to **Box -Probe** for interior spaces, or disable reflection visibility via the `visible` -property on the probe's MeshInstance3D child (Godot 4.x). - -### Q: Can I have a day/night cycle? - -No. LightmapGI bakes lighting statically. Dynamic lighting is limited to -≤ 4 real-time lights. Day/night cycles are outside the current scope. - -## Validation - -### Q: The validator says "No MeshInstance3D nodes found" - -Your map is using CSG nodes that haven't been converted to meshes. The -validator counts mesh triangles — CSG nodes are scanned as MeshInstance3D -after conversion. Either: -1. Convert CSG → Mesh for the area you want validated (right-click → Convert CSG to Mesh) -2. This warning is expected during early construction stages - -### Q: The validator fails with "Scene cannot be instantiated" - -The scene depends on resources that don't exist in the template project. This -usually happens when the map references game assets from the main project. -Either: -1. Run the validator from the **main game project** (`--path client` with the - main `client/project.godot`), or -2. Strip external dependencies — the map should be self-contained - -### Q: The validator reports texture errors but my textures are 1024×1024 - -Check for textures with different aspect ratios. A 2048×512 texture fails -because the larger dimension (2048) exceeds 1024. Resize or tile. - -### Q: Can I skip certain validator checks? - -Not directly. Run the validator, fix errors, then fix warnings. If a check -produces a false positive, the `@tool` scripts are in -`client/tools/validate_map/` — you can edit the constants (e.g. -`MAX_TOTAL_TRIANGLES`) for custom pipelines. - -## Packaging - -### Q: The .pck file is very large - -The `.pck` includes all dependencies of the scene. Large files mean: -- High-resolution textures (use ≤ 1024×1024 per the budget) -- High-poly meshes (stay under 50K triangles) -- Embedded audio or other large assets - -Run the validator first to check budgets. - -### Q: I get "Failed to load pack" in-game - -Possible causes: -- `.pck` file is corrupted (check SHA-256 checksum) -- The map scene or a dependency path changed between packaging and loading -- The `.pck` was built with a different Godot version than the game -- The resource path in the `.pck` conflicts with a path in the base game - -**Solution:** Re-package the map from the same Godot version the game uses. -Verify with `curl` that the download matches the server's checksum. - -### Q: Can I update a map without changing the client version? - -Yes. The `.pck` is additive content. Update the `.pck` on the registry server -and increment the `version` field in the `.json` metadata. The client will -re-download when it notices the version mismatch. - -### Q: Can I host the registry server on a different port? - -Yes. Use `--port ` or the `MAP_REGISTRY_PORT` environment variable. -The client's `MapDownloader` has a `registry_url` property you can set. - -### Q: Can I load more than one .pck at a time? - -Yes. `ProjectSettings.load_resource_pack()` is additive. Multiple `.pck` files -can be loaded simultaneously — each adds its resources to the global namespace. - -### Q: The registry server returns 404 for my map - -- Check that the `.pck` file is in the maps directory (default `./packed_maps/`) -- Check the file extension is `.pck` (lowercase) -- The server auto-scans every 5 seconds — wait or send SIGHUP to force a scan -- Verify by listing: `curl http://localhost:8090/maps` - -## General - -### Q: Can I make a hostage rescue map? - -The SDK is gameplay-agnostic. The groups `ct_spawn`, `t_spawn`, `bomb_site`, -and `buy_zone` are the default set. You can add your own groups (e.g., -`hostage`, `hostage_zone`) — the game logic discovers them at runtime. -Check the game's plugin API documentation for custom group support. - -### Q: Can I use this SDK for a different game? - -The SDK is designed for Tactical Shooter's Godot project structure. The -packaging and validation scripts are reusable for any Godot map-authoring -workflow, but the group conventions and gameplay nodes are game-specific. - -### Q: The editor validator doesn't run - -The `template_map.gd` script uses `@tool` and checks `Engine.is_editor_hint()`. -Make sure: -1. The script is attached to the root node of the scene -2. You're editing the scene in the Godot editor (not running the game) -3. The Output panel is visible (Window → Output) - -### Q: How do I report a bug in the SDK? - -Open an issue on the project's Gitea repository. Include: -- SDK version (commit hash) -- Godot version -- Steps to reproduce -- Log output (editor or CLI validator) - -### Q: Can I contribute validator modules? - -Yes. See [Validation — Adding a Custom Validator Module](04-validation.md#adding-a-custom-validator-module). -Submit a pull request with your module and updated documentation. diff --git a/docs/migration-netfox-plan.md b/docs/migration-netfox-plan.md deleted file mode 100644 index 98b8e4a..0000000 --- a/docs/migration-netfox-plan.md +++ /dev/null @@ -1,203 +0,0 @@ -# Phase 7: Stack Upgrade — netfox + godot-jolt Migration Plan - -## Overview - -Migrate from raw **ENetMultiplayerPeer** to **netfox** (foxssake/netfox, 1020⭐ MIT) -for rollback netcode, client prediction, and lag compensation. Add **godot-jolt** -(godot-jolt/godot-jolt, 2535⭐ MIT) for deterministic 128Hz physics. - -**Reference architecture:** [naxIO/netfox-cs-sample](https://github.com/naxIO/netfox-cs-sample) -— CS 1.6 clone using netfox rollback patterns (teams, economy, bomb, 6 weapons). - ---- - -## Current Architecture (Pre-Migration) - -``` -┌───────────────────────────────────────────────────┐ -│ project.godot │ -│ Autoloads: NetworkManager, ServerConfig, │ -│ RoundManager, PluginManager │ -│ Physics: 128Hz (Godot built-in) │ -│ Rendering: Vulkan Forward+ │ -│ Main Scene: server_main.tscn │ -└─────────────────────┬─────────────────────────────┘ - │ - ┌─────────────┴──────────────┐ - ▼ ▼ -┌─────────────────┐ ┌──────────────────────────┐ -│ network_manager │ │ SimulationServer │ -│ .gd (ENet) │ │ (GDExtension C++) │ -│ │ │ │ -│ - ENetMultiplayer│ │ - entity spawning │ -│ - 3 channels │ │ - apply_input() │ -│ - RPC broadcasts │ │ - fire_weapon() │ -│ - signals: │ │ - get_entity() │ -│ player_* │ └──────────┬────────────────┘ -│ round_* │ │ -│ score_* │ ┌──────────▼────────────────┐ -└─────────────────┘ │ fps_character_controller │ - │ .gd (CharacterBody3D) │ -┌─────────────────┐ │ │ -│ round_manager │ │ - Input → SimulationServer│ -│ .gd (state │ │ - move_local() fallback │ -│ machine) │ │ - crouch, sprint, jump │ -│ │ └────────────────────────────┘ -│ - signals: │ -│ round_*,score │ ┌──────────────────────────┐ -│ - _process tick │ │ Player (Node3D) │ -└─────────────────┘ │ - basic BoxMesh │ - │ - movement_speed param │ - └──────────────────────────┘ -``` - -**Key issue:** ENet has no rollback, no client prediction, no lag compensation. -Players on slower connections will feel inconsistent hit registration. - ---- - -## Target Architecture (Post-Migration) - -``` -┌────────────────────────────────────────────────────┐ -│ project.godot │ -│ Autoloads: (same, NetworkManager rewired) │ -│ Physics: Jolt @ 128Hz (godot-jolt GDExtension) │ -│ Rendering: Vulkan Forward+ │ -│ Addons: netfox, netfox.noray, netfox.extras │ -└─────────────────────┬──────────────────────────────┘ - │ - ┌─────────────┴──────────────┐ - ▼ ▼ -┌──────────────────────┐ ┌──────────────────────────┐ -│ netfox core │ │ netfox.noray │ -│ (NetworkEvents, │ │ (NAT punchthrough) │ -│ RollbackSynch., │ └──────────────────────────┘ -│ TickInterpolator) │ -└──────────┬───────────┘ ┌──────────────────────────┐ - │ │ netfox.extras │ - ▼ │ (BaseNetInput, │ -┌──────────────────────┐ │ RewindableStateMachine)│ -│ NetworkManager.gd │ └──────────────────────────┘ -│ (wrapper over netfox │ -│ NetworkEvents + │ ┌──────────────────────────┐ -│ MultiplayerSynch.) │ │ godot-jolt │ -└──────────┬───────────┘ │ (deterministic physics) │ - │ └──────────────────────────┘ - ▼ -┌────────────────────────────────────────────────────┐ -│ RollbackSynchronizer (player state) │ -│ - _rollback_tick() → deterministic state sync │ -│ - TickInterpolator → smooth visuals │ -│ - Client prediction: apply input locally, │ -│ reconcile from server snapshot │ -└────────────────────────────────────────────────────┘ - │ - ▼ -┌────────────────────────────────────────────────────┐ -│ RewindableAction (hitscan weapons) │ -│ - Server-authoritative hit detection │ -│ - Server rewinds physics to match client timing │ -│ - Per-limb damage: head/chest/waist/legs │ -└────────────────────────────────────────────────────┘ -``` - ---- - -## Migration Phases (Task Breakdown) - -### P7.1 Research — netfox migration plan ✅ [THIS DOCUMENT] - -### P7.2 Install — netfox addon -1. Download latest release from GitHub -2. Extract addons/netfox/, addons/netfox.noray/, addons/netfox.extras/, addons/netfox.internals/ -3. Enable in Project Settings → Plugins -4. Verify `godot --headless --check-only` compiles - -### P7.3 Install — godot-jolt physics -1. Download from releases or Asset Library -2. Copy addons/godot-jolt/ into project -3. Enable plugin, configure physics → 128Hz -4. Verify headless compilation - -### P7.4 Port — NetworkManager.gd -**Source:** `scripts/network/network_manager.gd` (214 lines, ENet wrapper) -**Changes:** -- Replace `ENetMultiplayerPeer` → netfox `NetworkEvents` -- `start_server()` → use netfox's NetworkEvents server flow -- `join_server()` → use netfox's NetworkEvents client flow -- Player replication signals → netfox `MultiplayerSynchronizer` or `RollbackSynchronizer` -- Round state RPCs (`broadcast_round_*`) → netfox events -- Remove channel system (netfox handles prioritisation internally) - -**Equivalent vs New:** - -| Current ENet | netfox Equivalent | -|---|---| -| ENetMultiplayerPeer | NetworkEvents (connect/disconnect) | -| @rpc("authority", "call_local", "reliable") | MultiplayerSynchronizer / RollbackSynchronizer | -| broadcast_spawn_player RPC | NetworkEvents + spawn hook | -| broadcast_round_start RPC | NetworkEvents event | -| 3 channels (input/events/telemetry) | Automatic (netfox manages ordering) | -| _process polling | TickInterpolator / _rollback_tick() | - -### P7.5 Build — Client Prediction + Rollback -**Key netfox patterns:** -- `RollbackSynchronizer` with `_rollback_tick()` for deterministic state sync -- `BaseNetInput` with `_gather()` for input collection -- `TickInterpolator` for smooth visual interpolation between ticks -- Client-side prediction: apply input immediately, reconcile when server snapshot arrives - -### P7.6 Build — Rollback Hitscan + Lag Compensation -**Key netfox patterns:** -- `RewindableAction` for rollback-safe weapon firing -- Server rewinds entity positions to match client's input timestamp -- Hit detection inside rollback loop -- Per-limb damage (head 2x, chest 1.0x, waist 0.75x, legs 0.5x) - -### P7.7 Port — RoundManager to netfox -**Source:** `server/scripts/round_manager.gd` (647 lines) -**Changes:** -- Round state signals (`round_started`, `round_ended`, etc.) → netfox events -- `player_died` etc. → netfox replicated state or RPCs -- `get_round_state_snapshot()` → netfox synchronized property - -### P7.8 Port — FPS Controller to BaseNetInput -**Source:** `client/characters/character/fps_character_controller.gd` (401 lines) -**Changes:** -- Replace manual `_input_dict` → `BaseNetInput` subclass -- Use `_gather()` to collect input per tick -- Movement logic becomes server-authoritative (no more `move_local` fallback except singleplayer) -- Keep mouse look, crouch transition, sprint toggle — adapt for netfox tick - -### P7.9 Test — Headless Export + Deployment -- `godot --headless --export-debug "Linux/X11" build/server/tactical-shooter.x86_64` -- Server starts clean, clients connect, rollback works across LAN -- Push to Gitea, update systemd service, verify on server - ---- - -## Reference Files - -| File | Lines | Key Role | -|---|---|---| -| `scripts/network/network_manager.gd` | 214 | ENet transport wrapper, RPC broadcasts | -| `scripts/network/player.gd` | ~60 | Basic player node | -| `scripts/network/server_main.gd` | ~150 | Server entry point | -| `scripts/network/client_main.gd` | ~120 | Client entry point | -| `client/characters/character/fps_character_controller.gd` | 401 | FPS movement + input to SimulationServer | -| `client/characters/character/fps_camera.gd` | ~80 | Camera look | -| `server/scripts/round_manager.gd` | 647 | Round state machine | -| `server/scripts/plugin_api/plugin_manager.gd` | 573 | Plugin system | -| `scenes/server/server_main.tscn` | 14 | Server scene | -| `scenes/client/client_main.tscn` | 14 | Client scene | -| `scenes/player.tscn` | 15 | Player prefab | -| `project.godot` | 33 | Autoloads, physics settings | - -## Resources - -- [netfox docs](https://foxssake.github.io/netfox/) -- [netfox GitHub](https://github.com/foxssake/netfox) -- [naxIO/netfox-cs-sample — CS 1.6 reference](https://github.com/naxIO/netfox-cs-sample) -- [godot-jolt GitHub](https://github.com/godot-jolt/godot-jolt) -- [VANTIX tactical shooter reference (C#, architecture only)](https://github.com/justin-bobr/vantix) diff --git a/docs/netfox-migration-plan.md b/docs/netfox-migration-plan.md deleted file mode 100644 index cbb35ef..0000000 --- a/docs/netfox-migration-plan.md +++ /dev/null @@ -1,248 +0,0 @@ -# Netfox Migration Checklist — File-by-File Audit - -Generated: 2026-07-02 -Task: P7.1 (research — netfox migration plan) - ---- - -## Architecture Overview - -``` - ┌──────────────────────────────────┐ - │ network_manager.gd │ - │ (ENetMultiplayerPeer transport) │ - │ + optional NetworkEvents overlay│ - └──────┬───────────────┬───────────┘ - │ │ - ┌────────────┘ └────────────┐ - v v - ┌─────────────────────┐ ┌─────────────────────┐ - │ server_main.gd │ │ client_main.gd │ - │ (dedicated server)│ │ (client entry) │ - └─────────┬───────────┘ └──────────┬──────────┘ - │ │ - ┌─────────┴───────────┐ ┌──────────┴──────────┐ - │ round_manager.gd │ │ round_replicator.gd │ - │ (state machine) │ │ (client mirror) │ - └─────────────────────┘ └─────────────────────┘ - - ┌──────────────────────────────────────────────────────────┐ - │ player.gd │ - │ RollbackSynchronizer (dynamic child) │ - │ ├── state_properties: pos, is_alive, team_id, spec_tgt │ - │ └── input_properties: → PlayerNetInput/* │ - │ │ - │ PlayerNetInput (child Node) │ - │ ├── move_direction, look_yaw, look_pitch │ - │ ├── jump, sprint, crouch, shoot, aim │ - │ └── connects to NetworkTime.before_tick_loop │ - └──────────────────────────────────────────────────────────┘ -``` - -### Headless Compilation -✅ **Passes** — `godot --headless --check-only` reports 0 parser errors. -- Runtime warnings (ENet host, netfox unavailable, empty map rotation) are all expected in CI environments. -- All netfox-dependent code paths guarded by `Engine.has_singleton()` + duck-typing. - ---- - -## File-by-File Audit - -### 1. network_manager.gd (245 lines) — TRANSPORT LAYER - -**Current role:** ENetMultiplayerPeer management + signal relay hub. - -**DONE:** -- ✅ Optional NetworkEvents overlay for lifecycle signals (`_try_connect_netfox()`) -- ✅ All netfox refs use `Engine.has_singleton("NetworkEvents")` — no `class_name` refs - -**REMAINING (6 legacy RPC broadcasting functions):** - -| Line | RPC | netfox Replacement | Status | -|------|-----|--------------------|--------| -| 193 | `broadcast_spawn_player` | Replaced by RollbackSynchronizer state sync. Keep until client discoverse players from state, not RPC. | 🔶 keep temporarily | -| 199 | `broadcast_despawn_player` | Same as above | 🔶 keep temporarily | -| 209 | `broadcast_round_start` | Move to StateSynchronizer on a round-state autoload (P7.7) | ❌ | -| 214 | `broadcast_round_end` | Same as above | ❌ | -| 219 | `broadcast_match_end` | Same as above | ❌ | -| 224 | `broadcast_score_change` | Same as above | ❌ | - -**Networking signals (9 total)** — all stay as-is. They are event hooks for consumers (client_main, round_replicator), not data sync. - ---- - -### 2. player.gd (251 lines) — PLAYER ENTITY - -**Current role:** Player character with Team/Round integration. Uses RollbackSynchronizer. - -**DONE:** -- ✅ RollbackSynchronizer dynamically created: `state_properties=[position, is_alive, team_id, spectate_target_id]` -- ✅ `input_properties=[PlayerNetInput/move_direction, look_yaw, look_pitch, jump, sprint, crouch, shoot, aim]` -- ✅ `_rollback_tick(delta, tick, is_input)` with deterministic movement -- ✅ `_create_rollback_sync_node()` uses `load()` + `new()` from path — no class_name refs -- ✅ Duck-typed netfox checks via `has_method()`, `Engine.has_singleton()` - -**REMAINING:** -- ✅ `TickInterpolator` child for smooth interpolation (dynamically created in `_setup_tick_interpolator()`) -- ✅ `TickInterpolator` on remote player instances for visual rollback - ---- - -### 3. player_net_input.gd (91 lines) — INPUT GATHERING - -**Current role:** Tick-synchronized input collector, child of Player. - -**DONE:** -- ✅ 8 exported input properties matching RollbackSynchronizer's `input_properties` -- ✅ Connects to `NetworkTime.before_tick_loop` -- ✅ Reads yaw/pitch from parent FPSCharacterController via duck-typing -- ✅ Extends Node directly (avoids `BaseNetInput` headless class_name issues) - -**REMAINING:** -- FPSCharacterController duplicates input gathering in `_physics_process` — should read from PlayerNetInput instead → P7.8 - ---- - -### 4. server_main.gd (342 lines) — SERVER ENTRY POINT - -**DONE:** -- ✅ Uses `NetworkManager.start_server()` for ENet bootstrap -- ✅ Connects to `NetworkManager.player_connected/disconnected` - -**REMAINING — 7 RPC call sites:** - -| Line | Call | netfox Plan | -|------|------|-------------| -| 120 | `broadcast_round_start.rpc(...)` | StateSynchronizer in P7.7 | -| 142 | `broadcast_round_end.rpc(...)` | StateSynchronizer in P7.7 | -| 178 | `broadcast_match_end.rpc(...)` | StateSynchronizer in P7.7 | -| 184 | `broadcast_score_change.rpc(...)` | StateSynchronizer in P7.7 | -| 288 | `broadcast_spawn_player.rpc(...)` | RollbackSynchronizer state (keep for now) | -| 327 | `broadcast_despawn_player.rpc(...)` | RollbackSynchronizer state (keep for now) | -| 332 | `broadcast_despawn_player.rpc(...)` | RollbackSynchronizer state (keep for now) | - ---- - -### 5. client_main.gd (124 lines) — CLIENT ENTRY POINT - -**DONE:** -- ✅ Uses `NetworkManager.join_server()` -- ✅ Connects to `remote_player_spawned/despawned` for visualization - -**REMAINING:** -- Creates full Player nodes with RollbackSynchronizer for each remote player (✅ correct pattern) -- ✅ `TickInterpolator` on remote player instances (dynamically created in `_setup_tick_interpolator()`) - ---- - -### 6. round_replicator.gd (157 lines) — CLIENT ROUND STATE - -**DONE:** -- ✅ Connects to NetworkManager's broadcast signals -- ✅ Maintains round state (round_number, scores, time, freeze) -- ✅ Uses netfox `NetworkTime` singleton for freeze tick tracking (line 84, 123) - -**REMAINING:** -- Could be replaced by a `RoundState` autoload with `StateSynchronizer` for rollback-consistent round state (P7.7) - ---- - -### 7. round_manager.gd (647 lines) — SERVER ROUND STATE MACHINE - -**DONE:** ✅ Zero networking code. Pure state machine emitting signals. No changes needed. - ---- - -### 8. fps_character_controller.gd (411 lines) — FPS CONTROLS - -**DONE:** -- ✅ `get_current_yaw()` / `get_current_pitch()` methods for PlayerNetInput -- ✅ Standalone `_move_local()` fallback -- ✅ SimulationServer refs use `Engine.has_singleton()` - -**REMAINING (P7.8):** -- `_physics_process` gathers input AND sends to SimulationServer directly — duplicates PlayerNetInput -- Need to read from PlayerNetInput child instead of `_get_move_direction()` -- Clarify: PlayerNetInput → RollbackSynchronizer → server physics → reconcile → FPSCharacterController applies - ---- - -## netfox Pattern Mapping - -| Pattern | netfox API | Status | -|---------|-----------|--------| -| Player state sync | RollbackSynchronizer.state_properties | ✅ | -| Input client→server | RollbackSynchronizer.input_properties | ✅ | -| Tick-driven movement | `_rollback_tick(delta, tick, is_input)` | ✅ | -| Client prediction | `enable_prediction = true` | ✅ | -| Smooth interpolation | TickInterpolator | ✅ | -| Round state broadcast | StateSynchronizer | ❌ P7.7 | -| Rollback-safe weapon fire | RewindableAction | ❌ P7.6 | -| Lag comp / hitscan | RewindableAction + mutation | ❌ P7.6 | -| Visual rollback | TickInterpolator + _rollback_tick | ✅ | -| Lifecycle signals | NetworkEvents | ✅ | - ---- - -## Netfox Singleton Availability (Headless) - -| Singleton | Editor | Headless | Access Pattern | -|-----------|--------|----------|----------------| -| NetworkEvents | ✅ | ❌ | `Engine.has_singleton("NetworkEvents")` | -| NetworkTime | ✅ | ❌ | `Engine.has_singleton("NetworkTime")` | -| NetworkRollback | ✅ | ❌ | `Engine.has_singleton("NetworkRollback")` | -| NetworkPerformance | ✅ | ❌ | `Engine.has_singleton("NetworkPerformance")` | - -All access guarded — no class_name references in our code. - ---- - -## Remaining Work Order (Dependency Graph) - -``` -P7.6 (RewindableAction) ── needs ── RollbackSynchronizer working (✅ DONE) -P7.5 (TickInterpolator) ── needs ── RollbackSynchronizer working (✅ DONE)── [[DONE]] ✅ -P7.7 (Round state netfox) ── needs ── NetworkEvents working (✅ DONE) -P7.8 (FPSController refactor) ── needs ── P7.6 input flow clarified -P7.9 (LAN test + deploy) ── needs ── all of the above -``` - -**Recommended order:** P7.6 → P7.5 → P7.7 → P7.8 → P7.9 - ---- - -## Files NOT Needing Changes - -| File | Reason | -|------|--------| -| `server/scripts/round_manager.gd` | Pure state machine, no networking | -| `scripts/config/server_config.gd` | Config loader, no networking | -| `scripts/network/netfox_bootstrap.gd` | No-op placeholder | -| `server/scripts/plugin_api/plugin_manager.gd` | Plugin mgmt, no networking | -| `client/weapons/data/weapon_registry.gd` | Data-only | - ---- - -## Risk Assessment - -| Risk | Impact | Likelihood | Mitigation | -|------|--------|------------|------------| -| Headless compilation fails | High | Low | All netfox refs use has_singleton/has_method. Current check passes. | -| RollbackSynchronizer vs PlayerNetInput property mismatch | Medium | Low | `input_properties` paths verified against @export var names — matched. | -| Dual input path (SimulationServer + RollbackSynchronizer) | High | Medium | FPSCharacterController sends to both — needs architectural cleanup (P7.8) | -| netfox API incompatibility with Godot 4.7 | Medium | Low | netfox 1.35.3 targets 4.3+; manual verification done — compilation passes | - ---- - -## Key Files Summary - -| File | Lines | Netfox Status | RPCs | Signals | Changes Needed | -|------|-------|---------------|------|---------|----------------| -| network_manager.gd | 245 | ✅ overlay wired | 6 ❌ | 9 ✅ | Remove 6 RPCs post-P7.7 | -| player.gd | 251 | ✅ rollback + tick + interpolator | 0 | 0 | ✅ | -| player_net_input.gd | 91 | ✅ tick gather | 0 | 0 | None atm | -| server_main.gd | 342 | ✅ thin layer | 7 call sites ❌ | 2 | Migrate to StateSynchronizer P7.7 | -| client_main.gd | 124 | ✅ thin layer | 0 | 2 signal connects | None atm | -| round_replicator.gd | 157 | 🔶 signal-driven | 0 | 5 connects + 4 emits | Migrate to StateSynchronizer P7.7 | -| round_manager.gd | 647 | ✅ no changes | 0 | 0 | None | -| fps_character_controller.gd | 411 | 🔶 has getters | 0 | 0 | Input flow refactor P7.8 | diff --git a/docs/netfox.extras/assets/network-rigid-body.png b/docs/netfox.extras/assets/network-rigid-body.png new file mode 100644 index 0000000..5dcb564 Binary files /dev/null and b/docs/netfox.extras/assets/network-rigid-body.png differ diff --git a/docs/netfox.extras/assets/network-simulator.png b/docs/netfox.extras/assets/network-simulator.png new file mode 100644 index 0000000..14a095b Binary files /dev/null and b/docs/netfox.extras/assets/network-simulator.png differ diff --git a/docs/netfox.extras/assets/physics-enable.png b/docs/netfox.extras/assets/physics-enable.png new file mode 100644 index 0000000..7c02cc9 Binary files /dev/null and b/docs/netfox.extras/assets/physics-enable.png differ diff --git a/docs/netfox.extras/assets/rewindable-state-children.png b/docs/netfox.extras/assets/rewindable-state-children.png new file mode 100644 index 0000000..06c0725 Binary files /dev/null and b/docs/netfox.extras/assets/rewindable-state-children.png differ diff --git a/docs/netfox.extras/assets/rewindable-state-machine-rollback.png b/docs/netfox.extras/assets/rewindable-state-machine-rollback.png new file mode 100644 index 0000000..8a5a2f7 Binary files /dev/null and b/docs/netfox.extras/assets/rewindable-state-machine-rollback.png differ diff --git a/docs/netfox.extras/assets/window-tiler.gif b/docs/netfox.extras/assets/window-tiler.gif new file mode 100644 index 0000000..576388c Binary files /dev/null and b/docs/netfox.extras/assets/window-tiler.gif differ diff --git a/docs/netfox.extras/guides/base-net-input.md b/docs/netfox.extras/guides/base-net-input.md new file mode 100644 index 0000000..1722772 --- /dev/null +++ b/docs/netfox.extras/guides/base-net-input.md @@ -0,0 +1,30 @@ +# BaseNetInput + +Base class for Input nodes used with rollback. + +During rollback, multiple logical ticks are simulated in the span of a single +network tick. Since these are just logical ticks, no actual input arrives during +them from the input devices. + +The solution is to gather input before the tick loop, and use that input for +any new ticks simulated during the rollback. + +## Gathering input + +This class provides a virtual `_gather` method that you can override. Set the +variables configured in [RollbackSynchronizer] in your own implementation: + +```gdscript +extends BaseNetInput + +var movement: Vector3 = Vector3.ZERO + +func _gather(): + movement = Vector3( + Input.get_axis("move_west", "move_east"), + 0, + Input.get_axis("move_north", "move_south") + ) +``` + +[RollbackSynchronizer]: ../../netfox/nodes/rollback-synchronizer.md diff --git a/docs/netfox.extras/guides/network-simulator.md b/docs/netfox.extras/guides/network-simulator.md new file mode 100644 index 0000000..a4c8b4a --- /dev/null +++ b/docs/netfox.extras/guides/network-simulator.md @@ -0,0 +1,80 @@ +# NetworkSimulator + +During testing, it is crucial to test your game under realistic network +conditions, including latency and potentially packet loss. + +Network conditions can be simulated using [clumsy], [netem], or with *netfox*'s +*NetworkSimulator*. It auto-connects instances when launched from the editor, +and simulates various network configurations. + +## How to Use + +Enable and configure *Autoconnect* in the project settings. + +![Autoconnect Project settings](../assets/network-simulator.png) + +When your game launches one instance will start an [ENetMultiplayerPeer] server +and the rest will connect to it. + +Either a `NetworkSimulator.server_created` or +`NetworkSimulator.client_connected` signal will be fired which you can use to +bootstrap your game code to. + +!!!note + *NetworkSimulator* will only work when the game is ran from the editor. + Otherwise it will disable itself, regardless of project settings. This is a + failsafe to avoid affecting production builds of your games. + +## Configuration + +Hostname +: The hosting address. Usually `127.0.0.1` but can be changed to `*`, if you +want other machines to be able to join. + +Server Port +: Which port to listen on. A second server port with latency / loss will open +one number higher if they are set to more than zero. + +Use Compression +: Will make use of ENET's range encoder to keep packet sizes down. + +Simulated Latency ( ms ) +: Traffic delay, in milliseconds. + +Simlated Packet Loss Chance +: What percentage of packets will to drop, simulating bad network conditions. + +## Running in CI and other environments + +In certain cases, you might not need the autoconnect feature to run, even if +it's enabled in the project settings. + +One example could be running checks on your project in CI, or wanting to run a +single script. + +In these cases, Godot will still identify itself as running in editor, so the +autoconnect feature will start hosting, keeping the process alive. This leads +to timeout errors, or the process running indefinitely. + +To avoid such cases, set any of the following environment variables to any +non-empty string: + +- `CI` +- `NETFOX_CI` +- `NETFOX_NO_AUTOCONNECT` + +If *NetworkSimulator* detects any of the above environment variables, it will +deactivate, regardless of project settings. + +!!!tip + Github Actions automatically sets the `CI` environment variable. + *NetworkSimulator* will automatically disable itself when running in a + Github Actions workflow. + + See the [Github blog entry] for more details. + + +[clumsy]: https://jagt.github.io/clumsy/ +[netem]: https://man7.org/linux/man-pages/man8/tc-netem.8.html +[ENetMultiplayerPeer]: https://docs.godotengine.org/en/4.1/classes/class_enetmultiplayerpeer.html +[Github blog entry]: https://github.blog/changelog/2020-04-15-github-actions-sets-the-ci-environment-variable-to-true/ diff --git a/docs/netfox.extras/guides/network-weapon.md b/docs/netfox.extras/guides/network-weapon.md new file mode 100644 index 0000000..1da3f9a --- /dev/null +++ b/docs/netfox.extras/guides/network-weapon.md @@ -0,0 +1,137 @@ +# NetworkWeapon + +Class to simplify writing networked weapons. + +A weapon, in this context, is anything that can be fired and spawn objects ( +projectiles ) upon being fired. + +## Responsive projectiles + +Upon firing, sending a request to the server and waiting for the response with +the projectile would introduce a delay. Doing a full-on state synchronization +with [MultiplayerSynchronizer] or [RollbackSynchronizer] can be unfeasible with +too many projectiles, and unnecessary, since most of the time, projectiles act +and move the same way regardless of their surroundings. + +Instead, upon firing, a projectile is spawned instantly. At the same time, a +request is sent to the server. If the server accepts the projectile, it will +spawn it and broadcasts its starting state. Since the server's state is the +source of truth, the projectile's local state will be updated with the +difference. This is called *reconciliation*. + +If the client requests a projectile with an unlikely state, it will be +rejected. This is to avoid players cheating, for example by requesting +projectiles at a more advantageous position than they're at. + +If the server is too strict with what difference is considered acceptable and +what not, legitimate players may get cases where they fire a projectile which +disappears after a short time period. + +## Implementing a weapon + +*NetworkWeapon* provides multiple functions to override. Make sure that all +these methods work the same way on every player's game, otherwise players will +experience glitches. + +*_can_fire* returns a bool, indicating whether the weapon can be fired. For +example, this method can return false if the weapon was fired recently and is +still on cooldown. **Do not** update state here. Use *_after_fire* instead. + +*_can_peer_use* indicates whether a given peer can fire the weapon. Due to the +way RPCs are set up under the hood, any of the players can try to fire a +weapon. Use this method to check if the player trying to fire has permission, +e.g. a player is not trying to use someone else's weapon. + +*_after_fire* is called after the weapon is successfully fired. Can be used to +update state ( e.g. last time the weapon was fired ) and play sound effects. + +*_spawn* creates the projectile. Make sure to return the created node. + +*_get_data* must return the projectile's starting state in a dictionary. This +can contain any property that is relevant to the projectile and must be +synchronized. For example, *global_transform* is important to ensure that the +projectile starts from the right position. On the other hand, projectile speed +does not need to be captured if it's the same for every projectile. + +*_apply_data* must apply the captured properties to a projectile. + +*_is_reconcilable* checks if the difference between two projectile states ( as +captured by *_get_data* ) is close enough to be allowed. Can be used to reject +cheating. + +*_reconcile* adjusts the projectile based on the difference between the local +and server state. + +## Specializations + +*NetworkWeapon* extends [Node]. This also means that anything extending +*NetworkWeapon* is also a node, and thus can't have a position for example. + +Two specialized classes are provided - *NetworkWeapon3D*, and *NetworkWeapon2D* +- extending Node3D and Node2D respectively. + +This way, weapons can have transforms and have a presence in the game world. +They also take care of reconciliation, implementing *_get_data*, *_apply_data*, +*_is_reconcilable*, and *_reconcile*. These can be overridden, but make sure to +to call the base class with *super(...)*. + +Reconciliation is based on distance, and can be configured with the +*distance_threshold* property. + +Under the hood, these specializations create a special *NetworkWeapon* node, +that proxies all the method calls back to the specialization. This is a +workaround to build multiple inheritance in a single inheritance language. + +## Compensating latency + +Whenever the weapon is fired, it takes time for that event to arrive at the +host. To combat this, along with the weapon being fired, the firing's tick is +also sent. This way, the host doesn't only know that the weapon was fired, but +it also knows *when*. + +To retrieve the exact tick, call *get_fired_tick()*. + +This can be used to adjust the created projectile's simulation, e.g. by +simulating it from its spawn to the current tick in `_after_fire()`: + +```gdscript +func _after_fire(projectile: Node3D): + last_fire = get_fired_tick() + + for t in range(get_fired_tick(), NetworkTime.tick): + if projectile.is_queued_for_deletion(): + break + projectile._tick(NetworkTime.ticktime, t) +``` + +!!!note + To track the tick the weapon was last fired ( e.g. for cooldowns ), make sure + to use `get_fired_tick()`, instead of `NetworkTime.tick`. + +## Hitscan weapons + +Use *NetworkWeaponHitscan3D* to build networked hitscan weapons. It builds upon +the same principle as *NetworkWeapon*, but modified for hitscan. + +Most of the callbacks are the same, with the following differences: + +*_spawn* is not used, as there's no projectiles involved. + +*_on_fire* is called whenever the weapon is successfully fired. Can be used to +implement effects on firing, such as sound or visual effects. + +*_on_hit* is called whenever the weapon hits a target. Depending on +configuration, this may be another player, a different character, or just level +geometry. The raycast result is passed as a parameter to distinguish between +hits. + +Reconciliation is handled under the hood - *_get_data*, *_apply_data*, +*_is_reconcilable*, and *_reconcile* do not need to be implemented. + +Hitscan weapons don't implement *get_fired_tick()*, as there's no projectile to +simulate. + + +[MultiplayerSynchronizer]: https://docs.godotengine.org/en/stable/classes/class_multiplayersynchronizer.html +[RollbackSynchronizer]: ../../netfox/nodes/rollback-synchronizer.md +[Node]: https://docs.godotengine.org/en/stable/classes/class_node.html diff --git a/docs/netfox.extras/guides/physics.md b/docs/netfox.extras/guides/physics.md new file mode 100644 index 0000000..73aaecf --- /dev/null +++ b/docs/netfox.extras/guides/physics.md @@ -0,0 +1,86 @@ +# Physics + +At the time of writing official Godot releases have no support for manually +stepping physics simulations. As such if you want to use physics nodes with +rollback such as RigidBody you will need to run either a fork that supports +stepping or use an alternate physics addon that exposes stepping. + +!!!tip + An example game demonstrating physics and rollback is available: [Godot + Rocket League]. + +## Known Options + +- **Godot with Stepping PR**: Build the Godot editor and relevant export + templates manually with the [physics stepping PR] applied. See the [Godot + documentation] for compilation instructions. +- **Rapier Physics Addon**: A third-party 2D/3D physics engine for Godot with + stepping support. Visit [godot.rapier.rs] for details. +- **Blazium Fork**: A Godot fork with enhanced physics features, including + stepping. Learn more at [blazium.app]. + +!!!tip + For using Godot with the Stepping Physics PR applied, a [community run + repository] is available with a custom build. Note that this repository and + its builds are provided as-is, and are not associated with Godot nor the PR's + author. + +!!!note + The current version of the Rapier drivers were tested against Godot Rapier + version **0.8.26**. + +## Enabling Physics Engine Rollback + +To enable physics rollback, add the appropriate physics driver node to the root +of your scene tree based on your physics engine. Because stepping methods are +unavailable in standard Godot the classes are hidden to avoid compile errors. +You will need to enable them in the editor by going to *Project -> Tools -> +Enable physics driver* + +- PhysicsDriver2D or PhysicsDriver3D for Godot’s default physics or Blazium. +- RapierPhysicsDriver2D or RapierPhysicsDriver3D for the Rapier Physics Addon. + +These nodes disable Godot’s default physics processing and step the physics +simulation at **netfox**’s network tick rate. + +![Enable physics driver menu](../assets/physics-enable.png) + +## Physics Driver Configuration + +**Physics Factor** - Controls the number of physics steps per network tick. +For example, if your network tick rate is 30 Hz (one tick every ~33ms) but you +need a 60 Hz physics simulation for smoother collisions, set this to 2 to run +two physics steps per tick. + +**Rollback Physics Space** - When enabled, rolls back all physics objects in +the scene tree. Depending on how complex your scene tree is you may wish to +only rollback specific nodes for performance rather than the entire simulation +space. + +## NetworkRigidBody + +NetworkRigidBody2D and NetworkRigidBody3D nodes enable RigidBody +synchronization with RollbackSynchronizer, keeping clients in sync with the +server’s physics simulation. These nodes can replace standard RigidBody nodes +with some minor setup. + +!!!note + Avoid using StateSyncronizer with NetworkRigidBody, as it doesn't participate + in rollback it will end up stepping faster than other nodes. + +To make use of NetworkRigidBody you need to: + +1. Configure your RollbackSynchronizer to include the NetworkRigidBody's + `physics_state` as a state property. +2. Move physics-related logic from `_physics_process` to + `_physics_rollback_tick`. + +![State configuration for NetworkRigidBody](../assets/network-rigid-body.png) + + +[Godot Rocket League]: https://github.com/albertok/godot-rocket-league +[community run repository]: https://github.com/albertok/godot/releases +[physics stepping PR]: https://github.com/godotengine/godot/pull/76462 +[Godot documentation]: https://docs.godotengine.org/en/stable/contributing/development/compiling/index.html +[godot.rapier.rs]: https://godot.rapier.rs/ +[blazium.app]: https://blazium.app/ diff --git a/docs/netfox.extras/guides/rewindable-random-number-generator.md b/docs/netfox.extras/guides/rewindable-random-number-generator.md new file mode 100644 index 0000000..ae91eef --- /dev/null +++ b/docs/netfox.extras/guides/rewindable-random-number-generator.md @@ -0,0 +1,66 @@ +# RewindableRandomNumberGenerator + +A random number generator that can be used inside the [rollback tick loop]. + +An important point for writing code that works well in rollback is that it +behaves the same given the same circumstances, no matter how many times it's +run. It also must behave the same no matter which peer is running it. + +Godot's built-in [RandomNumberGenerator] is not aware of rollback, so it will +consistently return different numbers for each tick, and potentially on each +peer. + +To fix that, the *RewindableRandomNumberGenerator* generates the same random +sequences on each peer, and for each tick. + +It implements most of the same methods, so it's close to a drop-in replacement. + +## Creating the generator + +The *RewindableRandomNumberGenerator* requires a seed upon initialization. This +seed must be the same on all peers. + +!!!warning + If two *different* RNGs use the *same* seed, they will also generate the + same random numbers. Make sure that you use different seeds for different + objects. + +For RNG's used by singletons, hard-coding different seed values is a very +simple approach: + +```gd +var rng := RewindableRandomNumberGenerator.new(15) +``` + +If these objects also have names or similar, consistent identifiers, a simple +hash works well too: + +```gd +var rng := RewindableRandomNumberGenerator.new(hash("Exit beacon")) +``` + +For dynamically spawned objects, or just to avoid the possibility of a human +error, the node path can be hashed: + +```gd +var rng := RewindableRandomNumberGenerator.new(hash(get_path())) +``` + +This assumes that the same node will be spawned under the same path on all +peers, which is also a requirement for RPCs to work. + +## Generating random numbers + +The *RewindableRandomNumberGenerator* can be used in the same way as Godot's +built-in [RandomNumberGenerator]. All the per-peer and per-tick consistency is +ensured under the hood: + +```gd +var rng := RewindableRandomNumberGenerator.new(0) + +var dice_roll := rng.randi_range(1, 6) +``` + + +[rollback tick loop]: ../../netfox/guides/network-rollback.md +[RandomNumberGenerator]: https://docs.godotengine.org/en/stable/classes/class_randomnumbergenerator.html diff --git a/docs/netfox.extras/guides/rewindable-state-machine.md b/docs/netfox.extras/guides/rewindable-state-machine.md new file mode 100644 index 0000000..e61f3e4 --- /dev/null +++ b/docs/netfox.extras/guides/rewindable-state-machine.md @@ -0,0 +1,214 @@ +# RewindableStateMachine + +Rollback-aware state machine implementation. + +State machines are often used in games to implement different behaviors. +However, most implementations are not prepared for rollbacks. This class +provides an extensible implementation that can be used alongside a +[RollbackSynchronizer]. + +For a full example, see [multiplayer-state-machine]. + +## Creating a state machine + +The first step is to add the RewindableStateMachine to your scene. It also +requires a RollbackSynchronizer that manages its `state` property. Unless these +conditions are satisfied, an editor warning will be displayed. + +!!!note + Editor warnings are only updated when the node tree changes. Configuration + changes don't trigger an update. You may need to reload the scene after + fixing a warning, or make a tree change, like deleting and re-adding a node + by cutting and pasting. + +![RewindableStateMachine with +RollbackSynchronizer](../assets/rewindable-state-machine-rollback.png) + +Notice the RollbackSynchronizer added as a sibling to the +RewindableStateMachine, and having its `state` property configured. + +## Implementing states + +States are where the custom gameplay logic can be implemented. Each state must +be an extension of the RewindableState class, and added as a child to the +RewindableStateMachine. + +States react to the game world using the following callbacks: + +`tick(delta, tick, is_fresh)` +: Called for every rollback tick the state is active. + +`enter(previous_state, tick)` +: Called when entering the state. + +`exit(next_state, tick)` +: Called when exiting the state. + +`can_enter(previous_state)` +: Called before entering the state. The state is only entered if this method + returns true. + +`display_enter(previous_state, tick)` +: Called before displaying the state. + +`display_exit(next_state, tick)` +: Called before displaying a different state. + +You can override any of these callbacks to implement your custom behaviors. + +For example, the snippet below implements an idle state, that transitions to +other states based on movement inputs: + +```gdscript +extends RewindableState + +@export var input: PlayerInputStateMachine + +func tick(delta, tick, is_fresh): + if input.movement != Vector3.ZERO: + state_machine.transition(&"Move") + elif input.jump: + state_machine.transition(&"Jump") +``` + +Transitions are based on *node names*, i.e. calling `transition(&"Move")` will +transition to a state node called *Move*. + +![RewindableStates under a state +machine](../assets/rewindable-state-children.png) + +States must be added as children under a RewindableStateMachine to work. + +## Using signals instead of classes + +*RewindableState* nodes also emit signals during their lifetime. This enables +an alternate style of implementing states, by connecting handlers to different +signals. This can be useful if you want to keep all your logic in a single +script, among others. + +Each of these signals correspond to a callback explained above: + +* `on_enter()` → `enter()` +* `on_tick()` → `tick()` +* `on_exit()` → `exit()` +* `on_display_enter()` → `display_enter()` +* `on_display_exit()` → `display_exit()` + +## Adding states + +Once implemented, add the state nodes as children of the +*RewindableStateMachine* in the Scene Tree. When doing this programmatically, +make sure to set the state's `owner` to the target *RewindableStateMachine*. +Without the owner set, the *RewindableStateMachine* won't recognize the state. + +## Display State vs State + +There's two sets of callbacks for state transition - `enter()`/`exit()` and +`display_enter()`/`display_exit()`. + +The `enter()`/`exit()` callbacks are intended for implementing game logic. The +`display_enter()`/`display_exit()` are intended for implementing presentation +logic - visuals, animations, sound effects, etc. + +The same applies to `on_state_changed` vs. `on_display_state_changed`. + +Let's take an example. The game is currently on tick @8. It needs to re-run +ticks @0 to @8 during rollback. In these ticks, the player moves a bit, +performs a jump, and then stops after moving a bit more: + +```puml +@startuml + +concise "Player" as P + +@0 +P is Idle + +@1 +P is Moving + +@3 +P is Jumping + +@5 +P is Moving + +@8 +P is Idle + +@enduml +``` + +This will trigger the following state changes: + +* Tick@1: Idle → Moving +* Tick@3: Moving → Jumping +* Tick@5: Jumping → Moving +* Tick@8: Moving → Idle + +For each of the above, the `on_state_changed` signal will be emitted, and the +`enter()`/`exit()` callbacks will be triggered. + +This makes the above callbacks ideal for game logic, e.g. adding an upward +velocity to the player when they enter the `Jumping` state. + +Note that the *displayed* state does not change. Before the rollback loop, the +player's state was `Idle`. After the rollback loop, the player's state is also +`Idle`. Even though the player has ran and performed a jump, it wouldn't make +sense to change their animation or play any sound effect. + +Let's take a different rollback example: + +```puml +@startuml + +concise "Player" as P + +@5 +P is Moving + +@8 +P is Idle + +@9 +P is Jumping + +@enduml +``` + +In this case, the display state *did* change. Before the rollback loop, the +player's state was `Moving`. After the rollback loop, the player's state is +`Jumping`. It would make sense to change the player's animation and play a +jumping sound effect. + +This can be done by using the display state callbacks - the +`on_display_state_changed` signal, and the `display_enter()`/`display_exit()` +methods. + +## Caveats + +RewindableStateMachine runs in the [rollback tick loop], which means that all +the [Rollback Caveats] apply. + +In addition, rollback ticks are only ran for nodes that have known inputs for +the given tick, and *need* to be simulated - either on the server to determine +the new state, or on the client to predict. In practice, ticks are usually only +ran on the host owning state and the client owning inputs. The rest of the +peers use the state broadcast by the host. + +**This means that transition callbacks are not always ran.** This is by design +and expected ( see [#327] ). + +As a best practice, in the `enter()`, `exit()` callbacks and the +`on_state_changed` signal, only change game state - i.e. properties that are +configured as state in [RollbackSynchronizer]. + +To update visuals - e.g. change animation, spawn effects, etc. -, use either +the `on_display_state_changed` signal, or the `display_enter()` and +`display_exit()` callbacks to react to state transitions. + +[multiplayer-state-machine]: https://github.com/foxssake/netfox/tree/main/examples/multiplayer-state-machine +[RollbackSynchronizer]: ../../netfox/nodes/rollback-synchronizer.md +[rollback tick loop]: ../../netfox/guides/network-rollback.md#network-rollback-loop +[Rollback Caveats]: ../../netfox/tutorials/rollback-caveats.md +[#327]: https://github.com/foxssake/netfox/issues/327#issuecomment-2491251374 diff --git a/docs/netfox.extras/guides/window-tiler.md b/docs/netfox.extras/guides/window-tiler.md new file mode 100644 index 0000000..f85b6ab --- /dev/null +++ b/docs/netfox.extras/guides/window-tiler.md @@ -0,0 +1,33 @@ +# WindowTiler + +A developer convenience feature that automatically tiles the launched windows +when working from the editor. + +![Window Tiler](../assets/window-tiler.gif) + +## Limitations + +### Borderless mode on Linux + +Setting window position and size works inconsistently under Linux at the time +of writing. Your mileage may vary based on your desktop environment and +distribution. + +In case the windows don't tile properly with *Borderless* enabled, disabling it +is a fallback. + +### Window decorations + +At the time of writing, there is no known and consistent way to compensate for +window decoration size and offset. In practice, this means that windows may +slightly overlap. + +## Configuration + +*Auto Tile Windows* Enables auto tiling from editor launches. + +*Screen* Which screen number to move and tile the windows to. + +*Borderless* Enable borderless mode to make the most out of the screen real +estate. + diff --git a/docs/netfox.noray/guides/noray.md b/docs/netfox.noray/guides/noray.md new file mode 100644 index 0000000..da15a6f --- /dev/null +++ b/docs/netfox.noray/guides/noray.md @@ -0,0 +1,181 @@ +# Noray + +Singleton providing [noray] integration. + +*noray* is a backend application that orchestrates connection between players. +To do this, players send a connection request to *noray*, and in turn *noray* +sends the players' external addresses to eachother. It is then up to the +players to conduct a handshake process. + +If the handshake fails, players can request a *relay* from *noray*. In these +cases, *noray* will receive data from one player and forward it to the other, +acting as a middle man. + +## Identifiers + +*noray* identifies players with two different IDs: OpenID and PrivateID. + +*OpenID* is public, and can be shared with other players. This ID is used to +identify hosts when connecting to games. + +*PrivateID* is only sent to the player it identifies and should **never** be +shared. Acts similar to a password, and is used to authorize commands. + +## Relays and NAT Punchthrough + +*noray* provides two methods of connecting players. + +*NAT Punchthrough* relies on the NAT table. Players must continuously send data +to eachother until either two-way communication is established, or a timeout is +reached. For certain router setups, NAT punchthrough does not work. + +See: [NAT Punch-through for Multiplayer Games] + +For *relays*, *noray* allocates a specific port to a given player. When *noray* +receives data on this port, it will forward it as-is to the player. As long as +*noray* is accessible over the internet, relays should work reliably no matter +the router setup. + +## Registering with noray + +To start using *noray*, connect to a *noray* server, request IDs by +registering, and then register the remote address: + +```gdscript +var host = "some.noray.host" +var port = 8890 +var err = OK + +# Connect to noray +err = await Noray.connect_to_host(host, port) +if err != OK: + return err # Failed to connect + +# Register host +Noray.register_host() +await Noray.on_pid + +# Register remote address +# This is where noray will direct traffic +err = await Noray.register_remote() +if err != OK: + return err # Failed to register +``` + +By calling `Noray.register_host()`, a request is sent to *noray*. Once a +response is received, both the `on_pid` and `on_oid` signals are fired, for +receiving the PrivateID and OpenID respectively. + +The remote address must be registered so that *noray* knows where to direct +other players wanting to connect. This process also sets `Noray.local_port`, +which is where traffic can be received through *noray*. + +## Starting a host + +To host a game, start listening on *noray*'s local port: + +```gdscript +var peer = ENetMultiplayerPeer.new() +var err = peer.create_server(Noray.local_port) + +if err != OK: + return false # Failed to listen on port +``` + +The rest is handled by *noray*. + +## Starting a client + +To connect to a game, send a request to *noray* with the host's OpenID. + +```gdscript +var oid = "abcd1234" + +# Connect using NAT punchthrough +Noray.connect_nat(oid) + +# Or connect using relay +Noray.connect_relay(oid) +``` + +Once the request is sent, *noray* will send a message to both the client and +the host players to connect to each other. The actual connection is done by +handling signals. + +!!!note + *noray* provides no functionality to share OpenIDs. For development, you + can display the OpenID in a textbox, letting players copy it and share over + their preferred messaging app. + +## Handling signals + +When a connect message is received, the appropriate signal is fired. + +*on_connect_nat* is fired to connect with NAT punchthrough. + +*on_connect_relay* is fired to connect to a relay. + +In both cases, a public address is passed to the signal handler, in the form of +an address string and a port. Handlers must conduct a handshake ( e.g. with +[PacketHandshake] ) and connect if successful. + +Client example: + +```gdscript +func _ready(): + Noray.on_connect_nat.connect(_handle_connect) + Noray.on_connect_relay.connect(_handle_connect) + +func _handle_connect(address: String, port: int) -> Error: + # Do a handshake + var udp = PacketPeerUDP.new() + udp.bind(Noray.local_port) + udp.set_dest_address(address, port) + + var err = await PacketHandshake.over_packet_peer(udp) + udp.close() + + if err != OK: + return err + + # Connect to host + var peer = ENetMultiplayerPeer.new() + err = peer.create_client(address, port, 0, 0, 0, Noray.local_port) + + if err != OK: + return err + + return OK +``` + +!!!note + Make sure to **always** specifiy the local port for the client - this is + the only port noray recognizes, and failing to specify it will result in + broken connectivity. + +Host example: + +```gdscript +func _ready(): + Noray.on_connect_nat.connect(_handle_connect) + Noray.on_connect_relay.connect(_handle_connect) + +func _handle_connect(address: String, port: int) -> Error: + var peer = get_tree().get_multiplayer().multiplayer_peer as ENetMultiplayerPeer + var err = await PacketHandshake.over_enet(peer.host, address, port) + + if err != OK: + return err + + return OK +``` + +!!!note + The host handshake is a bit different, as it can't receive manual packets, + only send them. So it assumes that the target is always responsive, and + just blasts them with a bunch of packets. If the target is indeed + responsive, it can connect. If not, nothing happens, as expected. + +[noray]: https://github.com/foxssake/noray +[NAT Punch-through for Multiplayer Games]: https://keithjohnston.wordpress.com/2014/02/17/nat-punch-through-for-multiplayer-games/ +[PacketHandshake]: ./packet-handshake.md diff --git a/docs/netfox.noray/guides/packet-handshake.md b/docs/netfox.noray/guides/packet-handshake.md new file mode 100644 index 0000000..c53362b --- /dev/null +++ b/docs/netfox.noray/guides/packet-handshake.md @@ -0,0 +1,116 @@ +# PacketHandshake + +Singleton implementing handshake over UDP. + +The point of the handshake itself is to confirm two-way connection between +two parties - i.e. both parties can receive message from the other and +receive acknowledgement from the other that their messages have arrived. + +This is an important step before establishing connection for actual game +play, as this lets both the client's and server's routers ( if any ) know +that traffic is expected and should be let through. + +## NAT punchthrough + +Most players are behind a router. Routers are directly connected to the +internet, and protect machines behind them from unwanted traffic. + +When routers receive packets from an unknown source, those packets are rejected +and don't reach the player's device. When data was sent to that address first, +routers see traffic as a reply and allow incoming data. + +To take an example, if a random PC starts sending traffic your way, the router +will reject it. If you send data to the host behind godotengine.org, your +router will allow incoming traffic from it. Otherwise, you wouldn't be able to +open the website in your browser, as the incoming HTTP response would be +rejected. + +This can be used to our advantage. If both players start sending traffic +towards eachother, eventually the routers will assume it's a response to some +request and allow the traffic. + +> This is a very simplified description of how routers work. NAT punchthrough +> does not always work. For further reading, see [Network address translation]. + +## Handshake process + +To confirm two-way connectivity, a string is sent back and forth, encoding the +player's knowledge about the connection: + +The *Read flag* is set once we have received data from the other player. + +The *Write flag* is set once we send data to the other player. Since data is +always sent, this flag is always set. + +The *Duplex flag* is set when we have received data from the other player +knowing that they have also received data from us. This means that data flows +both ways. + +The handshake process is successful when both players have the *Duplex flag* +set *and* both players know that the other player has the *Duplex flag* set. + +Each flag is encoded as its specific character or a hyphen. The encoded string +is prepended with a dollar sign. For example: + +* *$rw-* means that we have sent and received data from the other player +* *$rwx* means that the *read*, *write*, and *duplex* flags are all set + +Here's the handshake process illustrated: + +```puml +@startuml + +actor "Player A" as A +entity "Router A" as RA +boundary Internet as Net +entity "Router B" as RB +actor "Player B" as B + +A ->x RB : $-w- +note over RB: Packet denied + +B ->x RA : $-w- +note over RA: Packet denied + +note over RA, RB: NAT table updated on both routers + +A -> B: $-w- +note over RB: Packed allowed + +B -> A: $-w- +note over RB: Packed allowed + +A -> B: $rwx +B -> A: $rwx + +note over Net #lightgreen: Connection established + +@enduml +``` + +## Handshake over PacketPeer + +To run the handshake over raw UDP, call `PacketHandshake.over_packet_peer()`. The +specified PacketPeer will be used to send data until two-way connectivity is +confirmed or the timeout is reached. Between every packet sent, it takes a +short pause. + +!!!note + The PacketPeer must already be configured with a target address. + +## Handshake over ENet + +If the game is already running, the handshake must be done over the already +active connection. For this case, use `PacketHandshake.over_enet_peer()`. If +the [ENetMultiplayerPeer] is not accessible from where you want to do the +handshake, use `PacketHandshake.over_enet()`. + +This connection can't be used to receive custom packets, only to send them. So +the target address will be spammed with traffic confirming two-way connectivity +until timeout. Handshake will always be considered successful. + +If the connectivity exists, players will simply connect. Otherwise, +connectivity will fail as expected, regardless of the handshake results. + +[Network address translation]: https://en.wikipedia.org/wiki/Network_address_translation +[ENetMultiplayerPeer]: https://docs.godotengine.org/en/4.1/classes/class_enetmultiplayerpeer.html diff --git a/docs/netfox/assets/logging-settings.png b/docs/netfox/assets/logging-settings.png new file mode 100644 index 0000000..5cf3818 Binary files /dev/null and b/docs/netfox/assets/logging-settings.png differ diff --git a/docs/netfox/assets/network-events-settings.png b/docs/netfox/assets/network-events-settings.png new file mode 100644 index 0000000..b8ca41f Binary files /dev/null and b/docs/netfox/assets/network-events-settings.png differ diff --git a/docs/netfox/assets/network-rollback-settings.png b/docs/netfox/assets/network-rollback-settings.png new file mode 100644 index 0000000..2f4acb5 Binary files /dev/null and b/docs/netfox/assets/network-rollback-settings.png differ diff --git a/docs/netfox/assets/network-time-settings.png b/docs/netfox/assets/network-time-settings.png new file mode 100644 index 0000000..f518476 Binary files /dev/null and b/docs/netfox/assets/network-time-settings.png differ diff --git a/docs/netfox/assets/predictive-synchronizer-config.png b/docs/netfox/assets/predictive-synchronizer-config.png new file mode 100644 index 0000000..c1a3645 Binary files /dev/null and b/docs/netfox/assets/predictive-synchronizer-config.png differ diff --git a/docs/netfox/assets/rollback-config.png b/docs/netfox/assets/rollback-config.png new file mode 100644 index 0000000..87562f4 Binary files /dev/null and b/docs/netfox/assets/rollback-config.png differ diff --git a/docs/netfox/assets/rollback-enable-predict.png b/docs/netfox/assets/rollback-enable-predict.png new file mode 100644 index 0000000..a04550a Binary files /dev/null and b/docs/netfox/assets/rollback-enable-predict.png differ diff --git a/docs/netfox/assets/rollback-nodes.png b/docs/netfox/assets/rollback-nodes.png new file mode 100644 index 0000000..c3aa24e Binary files /dev/null and b/docs/netfox/assets/rollback-nodes.png differ diff --git a/docs/netfox/assets/rollback-synchronizer-config.png b/docs/netfox/assets/rollback-synchronizer-config.png new file mode 100644 index 0000000..acf6064 Binary files /dev/null and b/docs/netfox/assets/rollback-synchronizer-config.png differ diff --git a/docs/netfox/assets/state-synchronizer-config.png b/docs/netfox/assets/state-synchronizer-config.png new file mode 100644 index 0000000..f09ddfd Binary files /dev/null and b/docs/netfox/assets/state-synchronizer-config.png differ diff --git a/docs/netfox/assets/tick-interpolator-config.png b/docs/netfox/assets/tick-interpolator-config.png new file mode 100644 index 0000000..d3c08e4 Binary files /dev/null and b/docs/netfox/assets/tick-interpolator-config.png differ diff --git a/docs/netfox/assets/tutorial-nodes.png b/docs/netfox/assets/tutorial-nodes.png new file mode 100644 index 0000000..09c3d37 Binary files /dev/null and b/docs/netfox/assets/tutorial-nodes.png differ diff --git a/docs/netfox/assets/tutorial-rollback-settings.png b/docs/netfox/assets/tutorial-rollback-settings.png new file mode 100644 index 0000000..5ce1d88 Binary files /dev/null and b/docs/netfox/assets/tutorial-rollback-settings.png differ diff --git a/docs/netfox/assets/tutorial-tick-interpolator-settings.png b/docs/netfox/assets/tutorial-tick-interpolator-settings.png new file mode 100644 index 0000000..95089c9 Binary files /dev/null and b/docs/netfox/assets/tutorial-tick-interpolator-settings.png differ diff --git a/docs/netfox/concepts/authoritative-servers.md b/docs/netfox/concepts/authoritative-servers.md new file mode 100644 index 0000000..fc044be --- /dev/null +++ b/docs/netfox/concepts/authoritative-servers.md @@ -0,0 +1,64 @@ +# Authoritative servers + +The idea behind multiplayer servers is replicating state. As long each player +sees approximately the same things happening on their screen, the illusion of a +shared world works. + +## Naive replication + +To implement state replication, we could say that each player is responsible +for their own state. Players see the effects of their input instantly, as they +own their state and thus their avatar. + +The issue is that clients can't be trusted. Your game client is distributed to +players, who run it in various environments. These environments are out of the +developer's control, and provide an attack surface for cheats. + +For example, a modified game client might always report full HP no matter how +many hits the player takes. If each player is responsible for their own state, +the cheating player's full-HP state will be replicated to everyone else. + +## Server as the source of truth + +What can be controlled is the server, with dedicated hosting. Thus, the server +can be the single source of truth - or in other words, authoritative. Clients +send their inputs to the server, and the server responds with the updated game +state. + +This makes cheating difficult, as players have limited influence over the game +world. + +Game code can also be simplified - everything that affects the gameplay is run +on the server, while other things such as visual effects are run on the +clients. + +The tradeoff is that it takes time for the updated game state to arrive from +the server. This necessitates techniques that mask this delay, such as +[Client-side prediction and Server reconciliation]. + +## Other approaches + +Server-authoritative gameplay with CSP is not a silver bullet unfortunately, +and different games may require different approaches to network state +replication. + +One good example is RTS games. These games can have 50+ or even hundreds of +units navigating the map and interacting. Broadcasting all of their state to +all of the players from the server may not always be feasible. + +Instead, players broadcast their actions ( inputs ) to each other and update +their game state in lockstep. While this approach can scale up to hundreds of +units, it has other drawbacks. One of these is developing the game in such a +way that the simulation is exactly the same across multiple CPU architectures +down to each bit. + +For more on this approach, see: [1500 Archers on a 28.8: Network Programming in +Age of Empires and Beyond] + +For more approaches, see: [Networking for Physics Programmers] + +[1500 Archers on a 28.8: Network Programming in Age of Empires and Beyond]: https://www.gamedeveloper.com/programming/1500-archers-on-a-28-8-network-programming-in-age-of-empires-and-beyond + +[Networking for Physics Programmers]: https://www.gdcvault.com/play/1022195/Physics-for-Game-Programmers-Networking + +[Client-side prediction and Server reconciliation]: https://www.gabrielgambetta.com/client-side-prediction-server-reconciliation.html diff --git a/docs/netfox/concepts/servers-clients-ownership.md b/docs/netfox/concepts/servers-clients-ownership.md new file mode 100644 index 0000000..8815598 --- /dev/null +++ b/docs/netfox/concepts/servers-clients-ownership.md @@ -0,0 +1,35 @@ +# Servers, clients, and ownership + +Much of this documentation discusses things in context of servers and clients. +This page is intended to clear up how this translates to Godot's concept of +multiplayer ownership. + +## Ownership in Godot + +In Godot's multiplayer system, each node belongs to a multiplayer peer, i.e. a +player. This can be set from scripts, and is not replicated. This means that +the logic assigning ownership to nodes must produce the same result on every +machine for things to work consistently. + +## Ownership in netfox + +To mesh better with Godot's existing conventions, *netfox* doesn't work in +terms of server and client, but uses ownership instead. + +Whenever *the server* is mentioned, it refers to a given node's owner. + +In practice, this means that nodes representing game state are and should be +owned by the server. + +## Limitations + +At the time of writing, ownership is hard-coded in some cases. One such case is +*NetworkTime*, which is always owned by the host peer and always takes the host +peer's time as reference. + +This means that peer-to-peer games are not officially supported by *netfox*, +but might be able to work with some workarounds. If feasible, you can build +self-hosted games by including *netfox.noray*. + +In theory, multiple players can own different parts of the game state, but +*netfox* is not tested for such use cases. diff --git a/docs/netfox/guides/interpolators.md b/docs/netfox/guides/interpolators.md new file mode 100644 index 0000000..5616d4d --- /dev/null +++ b/docs/netfox/guides/interpolators.md @@ -0,0 +1,100 @@ +# Interpolators + +Tracks interpolators for various data types. Provided as a static class. + +To smooth out motion between network ticks, [TickInterpolator] interpolates +nodes' state properties between the current and the previous tick. The type of +data to be interpolated is not known in advance, and can be any built-in or +even custom type configured by the developer. + +*Interpolators* provides methods to register interpolators for any data type, +and even provides some for built-in data types. + +## Interpolating values + +*Interpolators* can be used to interpolate between any two values, as long as +they hold the same data type: + +```gdscript +extends Node3D + +@export var target_node +@export var approach_time = 0.5 + +func _process(delta): + # Approach target node, if it exists + if target_node: + var from_xform = global_transform + var to_xform = target_node.global_transform + var factor = delta / approach_time + + global_transform = Interpolators.interpolate(from_xform, to_xform, factor) +``` + +Note that in this case, *Interpolators* will try to look up the appropriate +interpolator based on the provided values. If no interpolator is found, a +fallback is used, that simply returns the value closer to *factor* - i.e. the +starting value if *factor* is less than 0.5 and the target value otherwise. + +## Caching interpolators + +To avoid having to look up the right interpolator every frame, you can cache +it: + +```gdscript +extends Node3D + +@export target_node +@export approach_time = 0.5 + +var interpolator + +func _ready(): + interpolator = Interpolators.find_for(global_transform) + +func _process(delta): + # Approach target node, if it exists + if target_node: + var from_xform = global_transform + var to_xform = target_node.global_transform + var factor = delta / approach_time + + global_transform = interpolator.call(from_xform, to_xform, factor) +``` + +## Custom interpolators + +*Interpolators* supports interpolators for custom data types, and even +overriding built-in interpolators. Both can be done by registering an +interpolator: + +```gdscript +Interpolators.register( + func(a): return a is float, # Condition + func(a, b, f): return lerpf(a, b, f * f) # Interpolation +) +``` + +The above registers a custom interpolator by specifying a condition function +and an interpolation function. Since it applies to an already supported type, +it overrides the built-in interpolator. + +During lookup, *Interpolators* calls the *condition* function of each +interpolator and returns the one whose *condition* function returns true. If +multiple interpolators are applicable, *Interpolators* returns the last +registered one. + +The *interpolation* function receives the starting value *a*, the target value +*b* and the interpolation factor *f*. + +## Built-in interpolators + +The following types are supported by default: + +* float +* Vector2 +* Vector3 +* Transform2D +* Transform3D + +[TickInterpolator]: ../nodes/tick-interpolator.md diff --git a/docs/netfox/guides/logging.md b/docs/netfox/guides/logging.md new file mode 100644 index 0000000..4a21b9b --- /dev/null +++ b/docs/netfox/guides/logging.md @@ -0,0 +1,148 @@ +# Logging + +During runtime, it can be useful to print some diagnostic info to the console - +this is called logging. The netfox addons include a logging system to help with +debugging. This is useful when running the game locally, but also helps if +there's log files players can attach with their bug reports. + +The system produces logs like this: + +``` +[DBG][@0][#1][_][netfox::NetworkPerformance] Network performance enabled, registering performance monitors +[DBG][@0][#1][_][netfox.extras::WindowTiler] Tiling with sid: f2682d1, uid: 17627261006193110 +[DBG][@0][#1][_][netfox.extras::NetworkSimulator] Feature disabled +[DBG][@0][#1][_][netfox.extras::WindowTiler] Tiling as idx 0 / 1 - 17627261006193110 in ["17627261006193110"] +[DBG][@22][#1][_][netfox.extras::NetworkWeapon] Calling after fire hook for Bomb Projectile 5sswh7lcsgbq +[DBG][@27][#1][_][fb::Displacer] Created explosion at (2.027323, 1.500942, -14.99592)@26 +[DBG][@34][#1][_][netfox.extras::NetworkWeapon] Calling after fire hook for Bomb Projectile u4h8opz52lin +[DBG][@46][#1][_][fb::Displacer] Created explosion at (4.892477, 1.500942, -14.83388)@45 +[DBG][@46][#1][_][netfox.extras::NetworkWeapon] Calling after fire hook for Bomb Projectile 2u1d9n456yl1 +[DBG][@57][#1][_][fb::Displacer] Created explosion at (4.814114, 1.500942, -14.57117)@56 +``` + +This page will elaborate on how to produce your own logs, and what each part +means. + +## Using the logger + +The logging system can be accessed by creating an instance of `NetfoxLogger`. +Every logger has a name, and belongs to a module. Both of these can be +arbitrary strings, and are included in the logged messages. + +Messages can be logged as different *logging levels*: + +```gd +var logger := NetfoxLogger.new("my-game", "Player") +logger.trace("Detailed message") +logger.debug("Something happened") +logger.info("Hi!") +logger.warning("Couldn't connect") +logger.error("Game missing?") +``` + +To use string interpolation, you can also pass the template string and values +separately. This can be useful to avoid substituting the values in case the +message never gets printed because of filtering: + +```gd +logger.trace("Adjusted clock by %.2fms, offset: %.2fms, new time: %.4fss", [nudge * 1000., offset * 1000., _clock.get_time()]) +``` + +In the above example, there's a lot of data to be included in the message. +However, if trace logs are disabled, that data will never be substituted, +saving some processing time. + +!!!tip + This same logging system is used by netfox itself. + +## Log levels + +Each log message can belong to one of the following categories: + +Error +: Something goes irrecoverably wrong, or something that should never happen + just happened + +Warning +: Something goes wrong, but can be handled + +Info +: Useful information on expected behaviour + +Debug +: Verbose messages, to help debug general code flow + +Trace +: Extremely verbose messages, to help follow the code flow to the smallest + detail + +Depending on your game, different logs may be needed. To accommodate this, +*netfox* can be configured in the [Project Settings](#settings) to omit certain +log messages. + +Filtering based on log levels can also be configured from code. To set the +global log level, set `NetfoxLogger.log_level`. To configure the log level per +module, use the `NetfoxLogger.module_log_level` dictionary. + +## Tags + +Tags can be attached to the logging system. They provide pieces of information +that appear in each log message, for every logger. + +By default, netfox provides a few tags, to help with debugging. These are, in +order: + +Current tick +: The current tick, as per `NetworkTime` + +Peer ID +: The currently active multiplayer peer's ID + +Rollback status +: Contains the current rollback stage, simulated tick, and resimulated tick + interval. + + The stage can be `B` for before loop, `P` for prepare tick, `S` for + simulate tick, `R` for record tick, and `A` for after loop. + + The current tick is in the form of `X|A>B`, meaning we're currently + simulating tick X, in a loop going from tick A to tick B. + + Defaults to `_` if currently not in rollback. + +!!!note + These default tags are subject to change between releases. + +Custom tags can be attached by calling `NetfoxLogger.register_tag()`. In this +sense, tags are callbacks that must return a single string, containing the tag +data to be logged. + +This method takes a second, `priority` parameter. This priority is used to sort +them for logging - tags are printed from lowest priority to highest. + +!!!warning + Make sure to free your custom tags using `NetfoxLogger.free_tag()`. Not + doing so might cause crashes. See [#433] for details. + +## Settings + +![Logging settings](../assets/logging-settings.png) + +These settings control the *minimum* log level - e.g. if the log level is set +to *info*, only messages at or above the info level will be logged, namely +info, warning and error. If the setting is set to *all*, all messages are +logged. + +Log levels can be controlled globally and per addon. A message will be logged +if it passes *both* logging level checks. + +For example, if the *Log Level* setting is at *Warning* and the *Netfox Log +Level* is at *Info*, only warning and error messages are logged for netfox. +This happens because the *Log Level* is more restrictive than the *Netfox Log +Level* setting. + +Note that you don't need to install all netfox addons for the logging settings +to work. If an addon is not installed, its log level setting is simply ignored. + + +[#433]: https://github.com/foxssake/netfox/issues/433 diff --git a/docs/netfox/guides/netfox-sharp.md b/docs/netfox/guides/netfox-sharp.md new file mode 100644 index 0000000..4d93f9d --- /dev/null +++ b/docs/netfox/guides/netfox-sharp.md @@ -0,0 +1,98 @@ +# Netfox Sharp + +!!!warning + **[Netfox Sharp] is currently an experimental build and not ready for + production. During this time, breaking changes may be introduced at any + time.** + +The [Netfox Sharp] addon is designed to bridge the gap between GDScript and C# +by allowing core netfox features to be accessed in C# without having to worry +about [Cross-Language Scripting] with GDScript directly. + +### What Netfox Sharp Is + +- A wrapper for netfox that uses the existing netfox codebase for its logic. +- A way to more conveniently call netfox logic in a C# environment. +- Partially compatible with existing codebases that use GDScript. + +### What Netfox Sharp Isn't + +- A standalone addon written entirely in C#. +- A perfect 1:1 translation. Due to quirks of netfox, some code will differ, + detailed below. +- A wrapper for netfox.noray or netfox.extras. Support for either of those + currently isn't planned, but may be considered based on interest. + +## Getting Started + +- Download the [Netfox Sharp] repo, and move the `netfox_sharp` and + `netfox_sharp_internals` folders into the addons of a C#-enabled Godot + project using the .NET version of Godot 4.x. +- Install the netfox addon. See the Netfox Sharp repo for details on which + version of netfox you need. +- Build your project, then enable netfox and Netfox Sharp in your project + settings. +- Restart Godot, and you've successfully set up Netfox Sharp! + +## Differences Between Netfox And Netfox Sharp + +Existing documentation for netfox should be easily translatable to Netfox Sharp +by following the below differences. + +- Most changes follow Godot's rules for [Cross-Language Scripting], taking + netfox as the base. In netfox, consider the following: + +```gdscript +# The following example is a snippet of netfox code +func _ready(): + NetworkTime.before_tick_loop.connect(_gather) + +func _gather(): + # Input gathering here + pass + +func _rollback_tick(delta, tick, is_fresh): + # Rollback logic here + pass +``` + +Whereas in Netfox Sharp: + +```cs +// This is functionally identical Netfox Sharp code +public override void _Ready() +{ + // All netfox autoloads like NetworkTime are accessed through static members + // in NetfoxSharp, to save on GetNode() calls and reduce clutter in the + // project settings. + + // All members like BeforeTickLoop are in PascalCase, similar to Godot's C# + NetfoxSharp.NetworkTime.BeforeTickLoop += Gather; +} + +// As Gather is linked to a signal, it can be any naming convention. +private void Gather() +{ + // Input gathering here +} + +// Since _rollback_tick isn't connected to a signal and is instead handled by +// netfox internally, netfox's naming convention must be followed. +public void _rollback_tick(double delta, long tick, bool isFresh) +{ + // Rollback logic here +} +``` + +- Nodes in the add mode menu have similar names to the GDScript version, but + with 'Sharp' affixed, IE `RollbackSynchronizerSharp`. The GDScript versions + of the nodes are also present in the add node menu. This is a limitation of + how netfox interacts with Godot and cannot be removed. + +# Other Notes +- `RollbackSynchronizerSharp`, `StateSynchronizerSharp`, and + `TickInterpolatorSharp` create their own respective GDScript nodes, which are + instanced as internal children nodes and should not be accessed. + +[Cross-Language Scripting]: https://docs.godotengine.org/en/stable/tutorials/scripting/cross_language_scripting.html +[Netfox Sharp]: https://github.com/CyFurStudios/NetfoxSharp/ diff --git a/docs/netfox/guides/network-command-server.md b/docs/netfox/guides/network-command-server.md new file mode 100644 index 0000000..eedd6c9 --- /dev/null +++ b/docs/netfox/guides/network-command-server.md @@ -0,0 +1,94 @@ +# NetworkCommandServer + +Implements a simpler, lightweight alternative to RPCs. Provided as an autoload. + +Commands consist of a single byte for ID, and the raw binary data. The ID lets +the receiving peer decide what to execute, with the binary data serving as the +input. + +Being a simpler construct makes commands a good fit for regular, fundamental +operations. For example, commands internally are used for time synchronization, +or synchronizing state and input between peers. + +Commands are, by default, transmitted over regular RPCs. To use less data, +commands can also be transmitted as raw packets, using +[SceneMultiplayer.send_bytes()]. This is an opt-in feature - if the game is +already using [SceneMultiplayer.send_bytes()], it needs to be aware of +commands, and must check each packet whether it's a command or one of its own +packets. To check if a packet is a command, use `is_command_packet()`. + +## Implementing custom commands + +Custom commands can be registered with the *NetworkCommandServer*, using +`register_command()`. This returns a *Command* object that provides a +convenient interface. + +During registration, a callback must be provided, that will be ran when the +command is received. + +Commands can be sent using its `send()` method. + +```gdscript +@onready var cmd_message := NetworkCommandServer.register_command(handle_message, MultiplayerPeer.TRANSFER_MODE_UNRELIABLE) + +func handle_message(sender: int, data: PackedByteArray) -> void: + var message := data.get_string_from_utf8() + print("#%d: %s" % [sender, message]) + +func _ready() -> void: + cmd_message.send("Hello, world!".to_utf8_buffer()) +``` + +!!!tip + It is recommended to setup commands once, at game start. When registering + commands from autoloads, make sure they run *after* netfox's autoloads. + +## Differences compared to RPCs + +Commands are a fundamentally simpler constructs compared to RPCs. + +### Maximum 256 commands + +Commands are limited to 256 indices - make sure to not register more than that. +Some commands are registered by netfox on startup as well. + +This limitation also makes commands a poor fit for registering dynamically. +Dynamic registrations often mean registering commands as certain nodes or +objects are created. This, in turn, makes it difficult to place an upper bound +on the number of commands needed, which can conflict with this limitation. + +### Commands are not tied to any node + +Commands do not refer to any specific node or object in their content. They +only contain a command index. Even though the API encapsulates this into +*Command* objects, it is completely feasible to have different nodes handle the +same command on different peers ( if the game is built as different Godot +projects ). + +### Commands do not track authority + +Any peer can send any command to any other peer. It is the receiving peer's +responsibility to check whether the sender is allowed to send such a command or +not. + +### Commands do not have arguments + +To stay lightweight and to give maximum control, commands contain raw bytes +only, no arguments. + +In general, this can be worked around by wrapping the arguments in an array and +converting it using [var_to_bytes()] and [bytes_to_var()]. + +However, for cases where bandwidth matters, this allows users to encode data in +a way that fits best. + +## Settings + +netfox ▸ General ▸ Use Raw Commands + +: When enabled, netfox will transmit commands as raw packets, instead of RPCs. + + +[SceneMultiplayer.send_bytes()]: https://docs.godotengine.org/en/stable/classes/class_scenemultiplayer.html#class-scenemultiplayer-method-send-bytes +[var_to_bytes()]: https://docs.godotengine.org/en/stable/classes/class_%40globalscope.html#class-globalscope-method-var-to-bytes +[bytes_to_var()]: https://docs.godotengine.org/en/stable/classes/class_%40globalscope.html#class-globalscope-method-bytes-to-var diff --git a/docs/netfox/guides/network-events.md b/docs/netfox/guides/network-events.md new file mode 100644 index 0000000..241b7e7 --- /dev/null +++ b/docs/netfox/guides/network-events.md @@ -0,0 +1,28 @@ +# NetworkEvents + +Provides convenience signals for multiplayer games. Included as an autoload. + +Keeps track of the root *multiplayer* instance and fires signals when it +changes. Using *NetworkEvents*' signals are safe even when the *multiplayer* +instance changes, as the signals are updated upon instance change. + +Provides missing signals for server start and server stop events. + +## NetworkTime + +When enabled, *NetworkEvents* will start [NetworkTime] when it detects that a +server or a client is started. It will stop [NetworkTime], when it detects that +the currently running server or client is stopped. + +## Settings + +Settings are found in the Project Settings, under Netfox > Events: + +![NetworkEvents settings](../assets/network-events-settings.png) + +*Enabled* toggles network events. When disabled, *NetworkEvents* will not emit +any events or track the multiplayer instance. This may slightly improve +performance, as it completely stops Godot from processing the *NetworkEvents* +node. + +[NetworkTime]: ./network-time.md diff --git a/docs/netfox/guides/network-performance.md b/docs/netfox/guides/network-performance.md new file mode 100644 index 0000000..5179a48 --- /dev/null +++ b/docs/netfox/guides/network-performance.md @@ -0,0 +1,69 @@ +# NetworkPerformance + +Provides [custom monitors] for measuring networking performance. Included as an +autoload. + +## Enabling monitoring + +By default, network performance monitoring is only enabled in debug builds and +when running from the editor. + +Use the `netfox_noperf` feature tag to force disable network performance +monitors. + +Use the `netfox_perf` feature tag to force enable network performance monitors. + +These feature tags enable customization for each export preset. + +## Performance monitors + +### Network loop duration + +*Network loop duration* measures the time spent in the [network tick loop]. +Note that this includes time spent on the [rollback loop] as well. + +This value is updated once for every tick loop, it is not reset to zero after +the loop has run. This means that you may get a non-zero reading, even if the +tick loop is currently not running. + +### Rollback loop duration + +*Rollback loop duration* measures the time spent in the last [rollback loop]. +This includes all of its steps. + +The value of this monitor may be zero, if no players have joined, no nodes use +rollback, or rollback is disabled. + +### Network ticks simulated + +*Network ticks simulated* measures the number of ticks run in the last [network +tick loop]. If the game runs at a higher FPS than the network tickrate, this +value should be consistently one. + +Higher, stable values mean that the game itself runs slower than the network +tickrate, and needs to catch up by running multiple ticks on each frame. + +### Rollback ticks simulated + +*Rollback ticks simulated* measures the number of rollback ticks run in the +last [rollback loop]. Generally, this denotes the age of the oldest input *or* +state received, depending on whether the game is running as a server or client. + +The measurement is strongly correlated to network latency - the higher the +latency, the older the state and input packets will be upon arrival. + +The more rollback ticks need to be simulated, the more work the rollback tick +has to do, which can negatively affect performance. + +### Rollback tick duration + +*Rollback tick duration* provides the average time spent simulating a single +tick in the last [rollback loop]. + +This can be useful to determine if the rollback tick duration comes from too +many ticks being simulated, or the individual ticks being expensive to +simulate ( or both ). + +[custom monitors]: https://docs.godotengine.org/en/latest/classes/class_performance.html#class-performance-method-add-custom-monitor +[network tick loop]: ./network-time.md +[rollback loop]: ./network-rollback.md diff --git a/docs/netfox/guides/network-rollback.md b/docs/netfox/guides/network-rollback.md new file mode 100644 index 0000000..0f691a4 --- /dev/null +++ b/docs/netfox/guides/network-rollback.md @@ -0,0 +1,191 @@ +# NetworkRollback + +Orchestrates the network rollback loop. Provided as an autoload. + +Due to latency, the server may receive inputs from clients from multiple ticks +ago. Whenever this happens, the server rewinds its time and resimulates the +whole game from the time of the new input. The resimulated ticks are then sent +to clients to update their state. + +Also due to latency, clients may receive a state from the server that is +several ticks old. Clients rewind their simulation to the time of the latest +received state and resimulate from there. + +On both clients and servers, simulated states are recorded for reuse later. + +Further reading: [Client-Side Prediction and Server Reconciliation] + +Note that most of the time you do not need to use this class - the +[RollbackSynchronizer] node helps with writing rollback-aware behaviour. + +## Network rollback loop + +*NetworkRollback* runs the *network rollback loop* after every network tick, +but before the *after tick* signal is fired. + +The following is the network rollback loop in isolation: + +```puml +@startuml + +start + +:before_loop; +while(Rollback) + :on_prepare_tick; + :after_prepare_tick; + :on_process_tick; + :on_record_tick; +endwhile +:after_loop; + +stop + +@enduml +``` + +Signal handlers must implement the right steps for rollback to work. + +During *before_loop*, all rollback-aware nodes must submit where to start the +resimulation, by calling `NetworkRollback.notify_resimulation_start`. +Resimulation will begin from the earliest tick submitted. + +In each *on_prepare_tick(tick)* handler, nodes must rewind their state to the +specified tick. If a state is not available for the given tick, use the latest +tick that is earlier than the given tick. Nodes may also register themselves as +being simulated by calling `NetworkRollback.notify_simulated`. This is not used +by *NetworkRollback* itself, but can be used by other nodes to check which +nodes are simulated in the current rollback tick. + +Before processing, *after_prepare_tick(tick)* is emitted. This is where any +additional state- or input preparation may happen, such as [input prediction]. + +For the *on_process_tick(tick)* signal, nodes must advance their simulation by +a single tick. + +In *on_record_tick(tick)*, nodes must record their state for the given tick. +Note that since the simulation was advanced by one tick in the previous signal, +the *tick* parameter is incremented here. + +The *after_loop* signal notifies its subscribers that the resimulation is done. +This can be used to change to the state that is appropriate for display. + +The network rollback loop is part of the network tick loop as follows: + +```puml +@startuml + +start + +:NetworkTime.before_tick_loop; + +while (Ticks to simulate) is (>0) + :NetworkTime.before_tick; + :NetworkTime.on_tick; + :NetworkTime.after_tick; +endwhile + +:NetworkRollback.before_loop; +while(Rollback) + :NetworkRollback.on_prepare_tick; + :NetworkRollback.after_prepare_tick; + :NetworkRollback.on_process_tick; + :NetworkRollback.on_record_tick; +endwhile +:NetworkRollback.after_loop; + +:NetworkTime.after_tick_loop; + +stop + +@enduml +``` + +The rollback tick loop is triggered in the `NetworkTime.after_tick_loop` +signal. Since the rollback tick loop is the first thing connected to it, in +practice the rollback will run *before* any user code connected to the +`after_tick_loop` signal. + +## Conditional simulation + +During rollback, *NetworkRollback* loops over the full range of ticks to +resimulate. Some nodes may not need to be resimulated for the current tick, +e.g. because they don't have input for the current tick. + +*NetworkRollback* can be used to track nodes that will be simulated in the +current rollback tick. Register nodes that will be simulated by calling +`NetworkRollback.notify_simulated`. To check if a node has been registered, +call `NetworkRollback.is_simulated`. + +## Rollback-awareness + +[RollbackSynchronizer] considers nodes rollback-aware that implement the +`_rollback_tick` method. Rollback-aware nodes are nodes that can participate in +the rollback process, i.e. they can resimulate earlier ticks. + +To check if a node is rollback-aware, call `NetworkRollback.is_rollback_aware`. +To actually run a rollback tick on them, call +`NetworkRollback.process_rollback`. + +These methods are called by [RollbackSynchronizer] under the hood. + +## Input Submission Status + +In certain scenarios you may wish to delay committing to something hard to +reverse like death, VFX or audio until its known for sure the outcome won't +change. One way of doing this is to check which nodes have submitted input and +are past a point of rollback. + +You can query the status of Nodes with +`NetworkRollback.get_latest_input_tick(root_node)` or +`NetworkRollback.has_input_for_tick(root_node, tick)`. `root_node` being what +the relevant [RollbackSynchronizer] has configured. + +All tracked nodes can be retrieved from +`NetworkRollback.get_input_submissions()` which will return the entire +`` dictionary. + +## Settings + +![Network rollback settings](../assets/network-rollback-settings.png) + +*Enabled* toggles network rollback. No signals are fired when disabled. + +*History limit* is the maximum number of recorded ticks to keep. Larger values +enable further rewinds and thus larger latencies, but consume more memory for +each node that is recorded. + +*Input redundancy* This is the number of previous input ticks to send along with +the current tick. We send data unreliably over UDP for speed. In the event a packet is + lost or arrives out of order we add some redundancy. You can calculate your target + reliability % packet success chance by using the formula + `1 - (1 - packet_success_rate) ^ input_redundancy`. + +*Display offset* specifies the age of the tick to display. By displaying an +older state instead of the latest one, games can mask adjustments if a state +update is received from the server. The drawback is that the game will have +some latency built-in, as it reacts to player inputs with some delay. Setting +to zero will always display the latest game state. + +*Input delay* specifies the delay applied to player input, in ticks. This +results in player inputs shifted into the future, e.g. if the player starts +moving left on tick 37, it will be sent to the server as tick 39. This way, +even if the input takes time to arrive, it will still be up to date, as long as +the network latency is smaller than the input latency. + +!!!warning + [RollbackSynchronizer]'s `is_fresh` parameter may not work as expected with + input delay. This happens because clients already receive data for the + current tick, which means that the tick doesn't need to be resimulated, and + as a result, no `_rollback_tick` callbacks are ran with `is_fresh` set to + true. + + This happens when network latency is smaller than the input delay. + +*Enable diff states* toggles diff states. By sending only state properties that +have changed, netfox can reduce the bandwidth needed to synchronize the game +between peers. See [RollbackSynchronizer] on how this is done and configured. + +[Client-Side Prediction and Server Reconciliation]: https://www.gabrielgambetta.com/client-side-prediction-server-reconciliation.html +[input prediction]: ../tutorials/predicting-input.md +[RollbackSynchronizer]: ../nodes/rollback-synchronizer.md diff --git a/docs/netfox/guides/network-schemas.md b/docs/netfox/guides/network-schemas.md new file mode 100644 index 0000000..3ee7bde --- /dev/null +++ b/docs/netfox/guides/network-schemas.md @@ -0,0 +1,169 @@ +# Network Schemas + +By default, *netfox* uses Godot's [Binary serialization API] to serialize data +before transmitting it over the network. This is designed to work under various +circumstances, with various data types, without knowing anything about them in +advance. + +However, during development, developers often have knowledge about the +individual properties, such as their type and possible range of values. In +addition, some values may be less important as others, and thus can accept some +loss of precision. + +Schemas enable developers to specify how each property should be serialized, +allowing them to use this knowledge to reduce packet sizes, and thus bandwidth +usage. + +## Lossless vs. lossy + +Most serializers are either lossless or lossy. This section gives a short +theoretical introduction on what each means and when are they useful. + +### Lossless compression + +When the same amount of information can be represented with less data ( bytes +), it is *lossless compression*. + +For example, to represent a 2D normal vector, we do not need to serialize both +of its component ( x, y ). Since we know the vector's length to be 1 by +definition, we can store the vector's angle compared to predetermined reference +vector. From that, we can completely reconstruct the original vector on +deserialization. + +Another example is when the range of values the vector can take on is much +smaller than its underlying datatype supports. For example, an inventory where +items can't stack beyond 99. Instead of defaulting to a 64 bit integer, it is +sufficient to serialize this data as a 8 bit integer. That is 1/8th of the +original data, while still perfectly representing the range of values needed. + +Lossless compression is an excellent tool, since the same information is kept, +but with less data usage. Unfortunately, lossless compression is not feasible +for every property. + +### Lossy compression + +If some information is lost when using less data ( bytes ) to represent a +value, it is *lossy compression*. This can be useful in cases where the benefit +of reduced packet size outweighs the drawbacks of lost information. + +For example, movement vectors for NPCs may be serialized as half precision +floats, instead of the default single precision. Since players don't directly +control NPC's, they won't notice any difference between their original input +and what was serialized. + +While lossy compression can be a useful tool, it is important to judge whether +the loss of information or precision does not detract too much from the game +experience. + +## Registering a schema + +Both [RollbackSynchronizer] and [StateSynchronizer] expose a `set_schema()` +method, that can be used to register the schema used for transmitting +properties over the network. This method takes a dictionary, with the keys +being property path strings, and the values being serializers: + +```gdscript + rollback_synchronizer.set_schema({ + ":transform": NetworkSchemas.transform3f32(), + ":velocity": NetworkSchemas.vec3f32(), + ":speed": NetworkSchemas.float32(), + ":mass": NetworkSchemas.float32(), + + "Input:movement": NetworkSchemas.vec3f32(), + "Input:aim": NetworkSchemas.vec3f32() + }) +``` + +## Built-in serializers + +`NetworkSchemas` provides many built-in serializers in the form of static +methods. Each supported type has multiple serializers for different sizes. + +While many serializers are usable as-is, there are some generic ones that take +other serializers as arguments. For example, `vec3t()` serializes a Vector3, +and using the serializer passed to it to save each component of the vector. +This way, `vec3t(float16())` will save 3 half-precision floats, ending up with +6 bytes of data, while `vec3t(float32())` will save 3 single-precision floats, +ending up with 12 bytes. + +!!!note + Many built-in serializers use half-precision floats. These are only + supported in Godot 4.4 and up. Earlier versions fall back to + single-precision floats. + + For example, `float16()` may fall back to `float32()`, `vec2f16()` to + `vec2f32()`, etc. + +### Algebraic types + +| Type | Methods | Size | +|-----------------------|---------------------------------------------------------|--------------------------------------------------------------------| +| Booleans | `bool8()` | 1 byte | +| Signed integers | `int8()`, `int16()`, `int32()`, `int64()` | 1, 2, 4, or 8 bytes | +| Unsigned integers | `uint8()`, `uint16()`, `uint32()`, `uint64()` | 1, 2, 4, or 8 bytes | +| Floats | `float16()`, `float32()`, `float64()` | 2, 4, or 8 bytes | +| Vector2 | `vec2f16()`, `vec2f32()`, `vec2f64()` | 4, 8, or 16 bytes | +| Vector3 | `vec3f16()`, `vec3f32()`, `vec3f64()` | 6, 8, or 24 bytes | +| Vector4 | `vec4f16()`, `vec4f32()`, `vec4f64()` | 8, 16, or 32 bytes | +| Quaternion | `quatf16()`, `quatf32()`, `quatf64()` | 8, 16, or 32 bytes | +| Transform2D | `transform2f16()`, `transform2f32()`, `transform2f64()` | 12, 24, or 48 bytes | +| Transform3D | `transform3f16()`, `transform3f32()`, `transform3f64()` | 24, 48, or 96 bytes | + +### Compressed types + +| Type | Methods | Size | +|-----------------------|---------------------------------------------------------|--------------------------------------------------------------------| +| Numbers in `[0, 1]` | `ufrac8()`, `ufrac16()`, `ufrac32()` | 1, 2, or 4 bytes | +| Numbers in `[-1, +1]` | `sfrac8()`, `sfrac16()`, `sfrac32()` | 1, 2, or 4 bytes | +| Degrees | `degrees8()`, `degrees16()`, `degrees32()` | 1, 2, or 4 bytes | +| Radians | `radians8()`, `radians16()`, `radians32()` | 1, 2, or 4 bytes | +| Normalized 2D vectors | `normal2f16()`, `normal2f32()`, `normal2f64()` | 2, 4, or 8 bytes | +| Normalized 3D vectors | `normal3f16()`, `normal3f32()`, `normal3f64()` | 4, 8, or 16 bytes | + +### Generic types + +| Type | Methods | Size | +|-----------------------|---------------------------------------------------------|--------------------------------------------------------------------| +| Vector2 | `vec2t()` | `2 * sizeof(component)` | +| Vector3 | `vec3t()` | `3 * sizeof(component)` | +| Vector4 | `vec4t()` | `4 * sizeof(component)` | +| Quaternion | `quatt()` | `4 * sizeof(component)` | +| Transform2D | `transform2t()` | `6 * sizeof(component)` | +| Transform3D | `transform3t()` | `12 * sizeof(component)` | +| Normalized Vector2 | `normal2t()` | `sizeof(component)` | +| Normalized Vector3 | `normal3t()` | `2 * sizeof(component)` | + +### Collections and others + +| Type | Methods | Size | +|-----------------------|---------------------------------------------------------|--------------------------------------------------------------------| +| Arrays | `array_of()` | `sizeof(size) + array.size() * sizeof(item)` | +| Dictionaries | `dictionary()` | `sizeof(size) + dictionary.size() * (sizeof(key) + sizeof(value))` | +| Strings | `string()` | Size in UTF-8 + null-terminator at the end | +| Variant | `variant()` | Same as [var_to_bytes()] | + +## Implementing a custom serializer + +Custom serializers are also supported. To implement one, extend the +`NetworkSchemaSerializer` class, and implement the `encode()` and `decode()` +methods. + +For example, consider a `Node` serializer that encodes the node's path: + +```gdscript +--8<-- "examples/snippets/network-schemas/example-node-serializer.gd" +``` + +This custom serializer can now be used in schemas: + +```gdscript +rollback_synchronizer.set_schema({ + "Input:target": ExampleNodeSerializer.new() +}) +``` + + +[Binary serialization API]: https://docs.godotengine.org/en/stable/tutorials/io/binary_serialization_api.html +[RollbackSynchronizer]: ../nodes/rollback-synchronizer.md +[StateSynchronizer]: ../nodes/state-synchronizer.md +[var_to_bytes()]: https://docs.godotengine.org/en/stable/classes/class_%40globalscope.html#class-globalscope-method-var-to-bytes diff --git a/docs/netfox/guides/network-time-synchronizer.md b/docs/netfox/guides/network-time-synchronizer.md new file mode 100644 index 0000000..c237a74 --- /dev/null +++ b/docs/netfox/guides/network-time-synchronizer.md @@ -0,0 +1,91 @@ +# NetworkTimeSynchronizer + +Synchronizes time to the host remote. Provided as an autoload. + +Synchronization is done by continuously pinging the host remote, and using +these samples to figure out clock difference and network latency. These are +then used to gradually adjust the local clock to keep in sync. + +## The three clocks + +The process distinguishes three different clock concepts: + +The *Remote clock* is the clock being synchronized to, running on the host peer. + +The *Reference clock* is a local clock, running on the client, that is getting +adjusted to match the Remote clock as closely as possible. This clock is +unsuitable to use for gameplay, as it being regularly adjusted can lead to +glitchy movement. + +The *Simulation clock* is also a local clock, and is being synchronized to the +Reference clock. The Simulation clock is guaranteed to only move forwards in +time. It drives the [Network tick loop]. + +Most of the time you shouldn't need to interface with this class directly, +instead you can use [NetworkTime]. + +## Synchronizing the Reference clock + +Synchronization is done by regularly taking samples of the remote clock, and +deriving roundtrip time and clock offset from each sample. These samples are +then combined into a single set of stats - offset, roundtrip time and jitter. + +*Offset* is the difference to the remote clock. Positive values mean the remote +clock is ahead of the reference clock. Negative values mean that the remote +clock is behind the reference clock. May also be called theta. + +*Roundtrip time* is the time it takes for data to travel to the remote and then +back over the network. Smaller roundtrip times usually mean faster network +connections. May also be called delay or delta. + +*Jitter* is the amount of variation in measured roundtrip times. The less +jitter, the more stable the network connection usually. + +These stats are then used to get a good estimate of the current time on the +remote clock. The remote clock estimate is then used to slowly adjust ( nudge ) +the reference clock towards the remote clock's value. + +This is done iteratively, to avoid large jumps in time, and to - when possible +- only go forward in time, not backwards. + +When the offset gets too significant, it means that the clocks are excessively +out of sync. In these cases, a panic occurs and the reference clock is reset. + +This process is inspired by the [NTPv4] RFC. + +## Synchronizing the Simulation clock + +While the Reference clock is in sync with the Remote clock, its time is not +linear - it is not guaranteed to advance monotonously, and technically it's +also possible for it to move backwards. This would lead to uneven tick loops ( +e.g. sometimes 3 ticks in a single loop, sometimes 1, sometimes 5), and by +extension, uneven and jerky movement. + +To counteract the above, the Simulation clock is introduced. It is synced to +the Reference clock, but instead of adjusting it by adding small offsets to it, +it is *stretched*. + +Whenever the Simulation clock is ahead of the Reference clock, the it will +slightly slow down, to allow the Reference clock to catch up. When the +Reference clock is ahead of the Simulation clock, it will run slightly faster +to catch up with the Reference clock. + +These stretches are subtle enough to not disturb gameplay, but effective enough +to keep the two clocks in sync. + +The Simulation clock is handled by [NetworkTime]. + +## Characteristics + +The above process works well regardless of latency - very similar results can +be achieved with 50ms latency as with 250ms. + +Synchronization is more sensitive to jitter. Less stable network connections +produce more varied latencies, which makes it difficult to distinguish clock +offsets from latency variations. This in turn leads to the estimated clock +offset changing more often, which results in more clock adjustments. + +[Network tick loop]: ./network-time.md#network-tick-loop +[NetworkTime]: ./network-time.md +[NTPv4]: https://datatracker.ietf.org/doc/html/rfc5905 + diff --git a/docs/netfox/guides/network-time.md b/docs/netfox/guides/network-time.md new file mode 100644 index 0000000..60370ff --- /dev/null +++ b/docs/netfox/guides/network-time.md @@ -0,0 +1,257 @@ +# NetworkTime + +Tracks shared network time between players, and provides an event loop for +synchronized game updates. Provided as an autoload. + +A separate timer is provided for network ticks, making the network game update +rate independent from rendering or physics frames. + +## Network tick loop + +*NetworkTime* provides its own independent event loop by exposing signals. This +makes networked game logic independent of current FPS, and makes it run at a +consistent rate. Connect handlers to *NetworkTime*'s signals to implement +networked game logic. + +During each frame, *NetworkTime* checks how much time has elapsed since the +last tick loop. When more time has elapsed than a single tick's duration, the +*network tick loop* will run: + +```puml +@startuml + +start + +:before_tick_loop; + +while (Ticks to simulate) is (>0) + :before_tick; + :on_tick; + :after_tick; +endwhile (0) + +:after_tick_loop; + +stop + +@enduml +``` + +The tick loop will run as long as it catches up on ticks to run. Every loop is +limited to run at most `max_ticks_per_frame` ticks to avoid overwhelming the +CPU. + +To tie the network tick loop to Godot's physics process, enable +`sync_to_physics`. This will result in the tick loop running a single tick in +every physics update. + +To move your game logic to the network tick loop, use the *on_tick* event: + +```gdscript +extends Node3D + +@export var speed = 4.0 + +func _ready(): + NetworkTime.on_tick.connect(_tick) + +func _tick(delta, tick): + # Move forward + position += basis.z * delta * speed +``` + +> By convention, *on_tick* handlers are named *_tick*. + +## Starting and stopping + +By default, *NetworkTime* does not run the tick loop at all. This lets you +control when the network tick loop, and thus the game starts and stops. + +To start the tick loop, call the `NetworkTime.start()` coroutine. On servers, +this will start the tick loop and return immediately. On clients, it will first +synchronize the time to the server, start the network tick loop, and only then +return. Use this when starting the game. + +> Starting the tick loop before starting multiplayer is not supported. + +To stop the tick loop, call `NetworkTime.stop()`. This will immediately stop +the tick loop and return. Use this when the player leaves a game. + +To get notified when a client successfully syncs their time and starts the tick +loop, use the `NetworkTime.after_client_sync(peer_id)` signal. This is fired +once per client, and only on the server. + +## Pausing + +*NetworkTime* also supports pausing the game, if needed. There's two cases +where pauses are considered. + +When running ( and pausing ) the game from the editor, the network tick loop +is automatically paused. As there's currently no API to detect the editor +pausing the game, *NetworkTime* checks if Godot's `_process` delta and actual +delta is mismatching, and if so, considers the game paused. In some cases, this +can result in false positives when the game simply hangs for a bit, e.g. when +loading resources. + +This pause detection only happens when the game is run from the editor, to +avoid false positives in production builds. + +The other supported case is pausing the game from the engine itself. Whenever +`SceneTree.paused` is set to true, *NetworkTime* won't run the tick loop. + +!!!warning + Pausing the tick loop can cause desynchronization between peers, and could + lead to clients fast-forwarding ticks to catch up, or time recalibrations. + If the game is paused via SceneTree, it is recommended to pause and unpause + at the same time on all peers. + +## Tickrate matching + +The idea of a shared time also implies matching tickrates. If one peer were to +run at a higher tickrate than the rest, that peer would inevitably get ahead in +ticks, and get out of sync. If it were to run at a lower tickrate, it would get +behind and out of sync. + +For games where both the server and client are built from the same project, +this doesn't usually happen, since they share the same tickrate configuration. + +If it does happen, by default it will be considered a configuration error, and +a warning will be emitted: + +``` +[WRN][@43][#1][_][netfox::NetworkTickrateHandshake] Local tickrate 24tps differs from tickrate of peer #1366785595 at 36tps! Make sure that tickrates are correctly configured in the Project settings! See netfox/Time/Tickrate. +``` + +This behavior is configurable, with the following options available: + +Warn +: Emit a warning about the tickrate mismatch, but do nothing. Useful for + development. + +Disconnect +: Disconnect clients with mismatching tickrates. This is enforced by the + host. + +Adjust +: Adjust the client's tickrate to match the host's. + +Signal +: Emit a signal about the detected mismatches, so custom behavior can be + implemented. + +See the [settings](#settings) for the appropriate configuration. + +## Time synchronization + +*NetworkTime* runs a time synchronization loop on clients, in the background. +Synchronizing time makes sure that all players have a shared idea of time and +can exchange timing-related data. + +The synchronization itself is handled by [NetworkTimeSynchronizer]. + +*NetworkTime* provides different kinds of time, each for different use cases. +Each time can be accessed as ticks or seconds. Both advance after every network +tick. + +### Synchronized time + +* `NetworkTime.time` +* `NetworkTime.tick` + +Marks the current network game time. This is continuously synchronized, making +sure that these values are as close to each other on all peers as possible. + +Use this whenever a notion of game time is needed. + +### Local time + +!!! warning + *Deprecated since netfox v1.9.0.* Use [synchronized time] instead. + +* `NetworkTime.local_time` +* `NetworkTime.local_tick` + +Marks the current time in reference to the local machine. Starts at zero when +the network tick loop starts. + +Useful for logic that is tied to the tick loop, but is not synchronized over +the network. A good example is visual effects. + +Not suitable for synchronizing data, as the local time is different at each +player. + +### Remote time + +!!! warning + *Deprecated since netfox v1.9.0.* Use [synchronized time] instead. + +* `NetworkTime.remote_tick` +* `NetwokrTime.remote_time` +* `NetworkTime.remote_rtt` + +Marks the current *estimated* time of the server. This is a regularly updated +estimate. + +Note that on each update, the remote time may jump forwards or even backwards. + +The estimate is based on the measured roundtrip time ( *remote_rtt* ) and the +assumption that the latency is exactly half of that. + +Can be used as a base for comparisons ( e.g. latency ), but *not recommended* +for tying game logic to it. + +To get notified when a time synchronization happens and the remote time is +updated, use the `NetworkTime.after_sync` signal. + +## Settings + +Settings are found in the Project Settings, under Netfox > Time: + +![NetworkTime Settings](../assets/network-time-settings.png) + +*Tickrate* specifies the number of ticks every second in the network tick loop. + +*Max Ticks Per Frame* sets the maximum number of frames to simulate per tick loop. Used to avoid freezing the game under load. + +*Recalibrate Threshold* is the largest allowed time discrepancy in seconds. If +the difference between the remote clock and reference clock is larger than this +setting, the reference clock will be reset to the remote clock. See +[NetworkTimeSynchronizer] for more details. + +*Stall Threshold* is the amount of time in seconds that can pass between two +frames until it is considered a stall. This is used to detect game freezes or +OS-level pauses ( e.g. the window gets minimized ). If a stall is detected, it +is compensated by adjusting the game clock. + +*Sync Interval* is the resting time in seconds between sampling the remote +clock. + +*Sync Samples* is the number of measurements to use for time synchronization. +This includes measuring roundtrip time and estimating clock offsets. + +*Sync Adjust Steps* is the number of iterations to use when adjusting the +reference clock. Larger values result in more stable clocks but slower +convergence, while smaller values synchronize more aggressively. + +*Sync Sample Interval* *deprecated in netfox v1.9.0*. Originally used as the +resting time between roundtrip measurements. + +*Sync to Physics* ensures that the network tick loop runs in Godot's physics +process when enabled. This can be useful in cases where a lot of physics +operations need to be done as part of the tick- or the rollback loop. + +*Tickrate Mismatch Action* indicates what to do when a tickrate mismatch is +detected. See [Tickrate matching](#tickrate-matching) on what the individual +options do. + +*Suppress Offline Peer Warning* suppresses warning when `NetworkTime.start()` is +called with the active [multiplayer peer] being an [OfflineMultiplayerPeer]. In +most cases, this warning means that the tick loop was unintentionally started +before connecting to a game or hosting one. When this settings is enabled, the +warning is not printed, instead assuming the [OfflineMultiplayerPeer] is +intentional. + +[NetworkTimeSynchronizer]: ./network-time-synchronizer.md +[synchronized time]: #synchronized-time +[multiplayer peer]: https://docs.godotengine.org/en/stable/classes/class_multiplayerapi.html#class-multiplayerapi-property-multiplayer-peer +[OfflineMultiplayerPeer]: https://docs.godotengine.org/en/stable/classes/class_offlinemultiplayerpeer.html#class-offlinemultiplayerpeer diff --git a/docs/netfox/guides/property-paths.md b/docs/netfox/guides/property-paths.md new file mode 100644 index 0000000..9859449 --- /dev/null +++ b/docs/netfox/guides/property-paths.md @@ -0,0 +1,36 @@ +# Property paths + +Multiple nodes have *properties* as their configurations. These are specified +as *property paths*, which have a specific syntax. + +![TickInterpolator configuration](../assets/tick-interpolator-config.png) + +These nodes have a *Root* property. During path resolution, this *Root* node is +taken as base for relative paths. + +## Syntax + +Property paths are specified as follows: + +```txt +: +``` + +Node path can be *empty* if it refers to a property on the *root* node. + +If specified, node path will be interpreted relative to the *root* node. Any +valid [NodePath] will work as expected. + +Nested properties are also supported. Specify them by appending a colon and an +additional property name. + +![Example hierarchy](../assets/rollback-nodes.png) + +With Brawler as root: + +* `:position` refers to the Brawler's position +* `Input:aim` refers to the Input's aim +* `:velocity:x` refers to the Brawler's velocity's X component; this is a + nested property + +[NodePath]: https://docs.godotengine.org/en/stable/classes/class_nodepath.html diff --git a/docs/netfox/guides/visibility-management.md b/docs/netfox/guides/visibility-management.md new file mode 100644 index 0000000..2d61cf2 --- /dev/null +++ b/docs/netfox/guides/visibility-management.md @@ -0,0 +1,80 @@ +# Visibility Management + +By default, *netfox* synchronizes all properties to all peers, broadcasting +data. This may not always be the best approach. An example is competitive +games. These games often features mechanics like fog of war, invisibility, or +line of sight checks. If any of these obscures a player, other players should +not receive information about them, to avoid the possibility of wallhacks and +other similar cheats. + +This is supported by the use of *visibility filters*. They provide three +mechanisms to determine who should receive data and who shouldn't. + +## Accessing the visibility filter + +Both [RollbackSynchronizer] and [StateSynchronizer] supports visibility +filtering. They expose a `visibility_filter` property that can be used to +configure filtering. + +!!!warning + When using visibility filtering with [RollbackSynchronizer] nodes, make + sure to disable input broadcast. Otherwise, peers might receive input data + from the player, but no state data from the server, leading to nodes being + simulated without up-to-date state data. + +## Default visibility + +If there's no settings configured, the visibility filter falls back to the +`default_visibility`. By default it is `true`, meaning it will broadcast data +to all peers. + +## Per-peer override + +Visibility can also be set individually for each peer. This overrides the +default visibility for the given peer. + +An override may be `true`, `false`, or not set. An override to `true` means +that the peer will be visible regardless of the default visibility. An override +to `false` means that the peer will not be visible regardless of the default +visibility. An unset override means it will fall back to the +`default_visibility`. + +## Filter callbacks + +Callbacks can also be registered, to filter peers dynamically. These filters +run before the per-peer overrides. If any of the filters reject the peer, it +will not receive data. + +These callbacks receive the peer ID, and return a boolean: + +```gd +filter.add_visibility_filter(func(peer: int): + # Forbidden trick to halve your bandwidth :P + return (peer % 2) == 0 +) +``` + +## Update modes + +Visibility filters keep an internal list of visible peers. To save on compute, +this list is only updated on certain configurable events. This is exposed as +its `update_mode` property, which can take on the following values: + +Never +: Only update visibility when manually triggered using `update_visibility()` + +On peer +: Only update when a peer joins or leaves + +Per tick loop +: Update visibility before each tick loop + +Per tick +: Update visibility before each network tick + +Per rollback tick +: Update visibility *after* each rollback tick + + +[RollbackSynchronizer]: ../nodes/rollback-synchronizer.md +[StateSynchronizer]: ../nodes/state-synchronizer.md diff --git a/docs/netfox/nodes/predictive-synchronizer.md b/docs/netfox/nodes/predictive-synchronizer.md new file mode 100644 index 0000000..7ae80ee --- /dev/null +++ b/docs/netfox/nodes/predictive-synchronizer.md @@ -0,0 +1,66 @@ +# PredictiveSynchronizer + +An un-networked version of [RollbackSynchronizer] which manages states during +the rollback loop. Its main use case is for short lived or highly +deterministic scenarios where using [RollbackSynchronizer] isn't practical or +necessary. + +## Key Differences from RollbackSynchronizer + +Same same, but different. + +- **No networking** - Operates entirely locally +- **No input properties** - Only manages state properties + +## Configuration + +### Basic Setup + +Add *PredictiveSynchronizer* as a child to your target node and configure: + +![PredictiveSynchronizer configuration](../assets/predictive-synchronizer-config.png) + +### Root Node + +The *Root* property specifies the root node for resolving state properties. +Following the same pattern as [RollbackSynchronizer], it's recommended to add +*PredictiveSynchronizer* under its target node, making the parent the root. + +### State Properties + +*State properties* are recorded for each tick and restored during rollback, +just like in [RollbackSynchronizer]. The key difference is that these states +are only managed locally - they're never transmitted across the network. + +See [Property paths] for details on specifying properties. + +## Writing Prediction-Aware Scripts + +*PredictiveSynchronizer* automatically discovers nodes with a +`_rollback_tick()` method under the specified root. During rollback, it will +call that method for each tick. + +Implement `_rollback_tick()` in your scripts: + +```gdscript +extends ShapeCast3D + +@export var projectile_speed: float = 50.0 + +func _rollback_tick(delta: float, tick: int, is_fresh: bool): + shape_cast.force_shapecast_update() + + if is_colliding(): + handle_collision() + + global_position += transform.basis.z.normalized() * projectile_speed +``` + +!!!warning + Both *PredictiveSynchronizer* and *RollbackSynchronizer* use the same + callback method. They are intended to manage separate nodes - having the + same node be managed both by *RollbackSynchronizer* and + *PredictiveSynchronizer* is not supported, and may lead to janky behavior. + +[RollbackSynchronizer]: ./rollback-synchronizer.md +[Property paths]: ../guides/property-paths.md diff --git a/docs/netfox/nodes/rewindable-action.md b/docs/netfox/nodes/rewindable-action.md new file mode 100644 index 0000000..8950234 --- /dev/null +++ b/docs/netfox/nodes/rewindable-action.md @@ -0,0 +1,166 @@ +# RewindableAction + +!!!warning + RewindableActions are *experimental*, meaning the API may change in + breaking ways, and may be less stable than other features. + + Once the class matures and finds its final form, the *experimental* mark + will be removed. Feedback is welcome in the meanwhile! + +Synchronizes events that happen over the network, by letting peers predict the +event happening, and then adjusting the game based on the host's response. + +For example, *RewindableActions* could be use to synchronize gun shots +implemented as part of the rollback tick loop. This is implemented in the +[rollback-fps] example. + +## Using RewindableActions + +To use *RewindableActions*, add them as nodes to your scenes. Once that's done, +grab a reference to them from your scripts as you would for any other node - +e.g. by using its NodePath, or by @export-ing it as a variable: + +```gdscript +@onready var rewindable_action := $RewindableAction as RewindableAction +@export var rewindable_action: RewindableAction +``` + +### Predicting events + +All peers ( both hosts and clients ) should run the same simulation in their +`_rollback_tick` implementations. During the rollback tick, peers should +determine whether they think an event happens by calling +`RewindableAction.set_active()` - e.g. if they think the gun was fired they should +call `RewindableAction.set_active(true)`, otherwise call +`RewindableAction.set_active(false)`. + +The *RewindableAction* will keep track of the changes caused by `set_active()`. +Clients ( i.e. peers *not* owning the *RewindableAction* ) will wait for the +host ( i.e. peer owning the *RewindableAction* ) to broadcast the ground truth, +noting when did the event happen, and when did it not. + +!!!note + Not calling `set_active()` on a specific tick means no prediction for that tick + will be synchronized, potentially leading to desyncs. + +### Performing events + +With the above, *RewindableAction* will synchronize *when* something happens, +but *what* should happen is up to the game logic. + +For each rollback tick, to figure out what should happen, the `get_status()` +method will return one of the following values: + +`RewindableAction.INACTIVE` +: The event hasn't happened yet. + +`RewindableAction.ACTIVE` +: The event has already happened, and this is not the first time its logic + will run. + +`RewindableAction.CONFIRMING` +: The event was just set to active in this tick. + +`RewindableAction.CANCELLING` +: The event was just set to inactive in this tick. + +See the following graph for a better understanding of how a *RewindableAction* +transitions from one state to another: + +```puml +@startuml + +[*] --> INACTIVE +INACTIVE --> CONFIRMING: set_active(true) +INACTIVE --> CONFIRMING: Host confirms +CONFIRMING --> ACTIVE: Tick is ran again +ACTIVE --> CANCELLING: set_active(false) +ACTIVE --> CANCELLING: Host declines +CANCELLING --> INACTIVE: Tick is ran again + +@enduml +``` + +Keeping with the gunfire example, if the status is `ACTIVE` or `CONFIRMING`, +make sure to perform the firing logic - e.g. do a hitscan, and decrease the +health of the player hit. In other words, make sure to update the *game state*. + +If the state is `CONFIRMING`, implement logic that may spawn other objects ( +e.g. a bullet hole when hitting a wall ). + +If the state is `CANCELLING`, undo any logic ran in `CONFIRMING`. + +Usually no extra code is necessary for `INACTIVE`, since the game state update +can simply be skipped, and other related code is ran in +`CONFIRMING`/`CANCELLING`. + +### Reacting to status changes + +Without [mutations], nodes are not always re-ran for every tick during +rollback. To make sure that rollback code is ran when the *RewindableAction*'s +status changes, use `mutate()` to register the appropriate nodes to be +*mutated* if the action's status changes, e.g.: + +```gdscript +@onready var rewindable_action := $RewindableAction as RewindableAction + +func _ready(): + rewindable_action.mutate(self) + +func _rollback_tick(delta, tick, is_fresh): + rewindable_action.set_active(...) +``` + +### Remembering things between tick loops + +*RewindableActions* also provide the concept of *context*. This is any +arbitrary value that the *RewindableAction* will remember for the given tick, +even throughout tick loops. + +The *context* value can be set and retrieved by the user. + +For example, *context* can be used for weapons to remember the projectile they +have spawned. If the action transitions to `CANCELLING`, the *context* can be +used to remember which projectile was spawned in that tick, and in turn, which +projectile needs to be destroyed. + +Use `has_context()` to check if there's any context set, `get_context()` to +retrieve it, `set_context()` to update the *context* value, and +`erase_context()` to forget it. + +## Handling visuals and effects + +Performing events ( e.g. a gunshot ) often includes not just updates to the +game state ( like decreasing health ), but also visual- and audio effects to +communicate what's happening to the player. + +Since a rollback tick loop may run multiple ticks in a single frame, simply +playing sounds and other effects from the rollback tick loop can end up +spamming particles and playing the same sound effects many times on the same +frame. + +Instead, one approach would be to check whether the event has happened at the +end of each tick loop, and if so, play the appropriate sounds and run the +appropriate effects. + +Use `has_confirmed()` to check if the action has been confirmed since the +beginning of the last tick loop ( i.e. had the `CONFIRMING` status ), and +`has_cancelled()` to check if the action has been cancelled. + +For example: + +```gdscript +@onready var fire_action := $"Fire Action" as RewindableAction + +func _ready(): + NetworkTime.after_tick_loop.connect(_after_loop) + # ... + +func _after_loop(): + if fire_action.has_confirmed(): + sound.play() +``` + +[rollback tick loop]: ../guides/network-rollback.md +[rollback-fps]: https://github.com/foxssake/netfox/tree/main/examples/rollback-fps +[mutations]: ../tutorials/modifying-objects-during-rollback.md diff --git a/docs/netfox/nodes/rollback-synchronizer.md b/docs/netfox/nodes/rollback-synchronizer.md new file mode 100644 index 0000000..8cc87a7 --- /dev/null +++ b/docs/netfox/nodes/rollback-synchronizer.md @@ -0,0 +1,151 @@ +# RollbackSynchronizer + +Manages state during the network rollback loop by hooking into +[NetworkRollback] events. Simulates nodes as required during rollback. + +To read more on best practices, see [Rollback caveats]. + +## Configuring state and input + +To use *RollbackSynchronizer*, add it as a child to the target node, specify +the root node, and configure which properties to manage: + +![RollbackSynchronizer configuration](../assets/rollback-synchronizer-config.png) + +*Root* specifies the root node for resolving state and input properties. Best +practice dictates to add *RollbackSynchronizer* under its target, so *Root* +will most often be the *RollbackSynchronizer*'s parent node. + +*State properties* are recorded for each tick and restored during rollback. For +state, the server is the ultimate authority. Make sure that nodes containing +state properties are owned by the server. + +*Full state interval* specifies how many ticks to wait between full states. If +diff states are enabled, full states are only sent at specific intervals, to +make sure that peers always have the correct state data. *Only considered if +diff states are enabled.* + +*Diff ack interval* specifies how many ticks to wait between acknowledging diff +states. Setting this to lower non-zero values may result in more bandwidth +savings on non-changing properties, but this can be outweighed by the increased +number of ack messages. *Only considered if diff states are enabled.* + +See [diff states](#diff-states) for more on how the above two settings are +used. + +*Input properties* are gathered for each player and sent to the server to use +for simulation. Make sure that nodes containing input properties are owned by +their respective players. + +See [Property paths] on how to specify properties. + +*Enable input broadcast* toggles whether input properties are broadcast to all +peers, or only to the server. The default is *true* to support legacy +behaviour. It is recommended to turn this off to lower bandwidth and lessen the +attack surface for cheating. + +!!!warning + It is not recommended to have both state and input properties on the same + node. Since nodes with state belong to the server, and nodes with input + belong to the player, it is difficult to separate ownership on the same + node. + +## Writing rollback-aware scripts + +During setup, *RollbackSynchronizer* finds all the rollback-aware nodes under +the specified *root*. During rollback, it will call all the rollback-aware +nodes to simulate new state. + +To learn about rollback-awareness, see [NetworkRollback]. + +In short, implement `_rollback_tick` in your scripts: + +```gdscript +extends CharacterBody3D + +@export var speed = 4.0 +@export var input: PlayerInput + +func _rollback_tick(delta, tick, is_fresh): + velocity = input.movement.normalized() * speed + + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor +``` + +Note the usage of `physics_factor` - this is explained in [Rollback caveats]. + + +## Single fire events + +The first time a rollback tick is processed, the `is_fresh` parameter is set to +`true`. This can be used to trigger animations or sounds without them being +repeated each rollback event. + +For example to improve the client side experience a spell or weapon can play +its activating sounds and animation immediately and then proceed to complete +the action once server confirmation is received. + +## Changing configuration + +*RollbackSynchronizer* has to do some setup work whenever the state or the +input properties change. + +By default, this work is done upon instantiation. If you need to change state +or input properties during runtime, make sure to call `process_settings()`, +otherwise *RollbackSynchronizer* won't apply the changes. + +!!! warning + While changing configuration after instantiation is possible, it is not + recommended. You may get away with it if the configuration change happens in a + few ticks after instantiation. For longer periods, experiment at your own risk. + +## Changing ownership + +The setup work above is also needed whenever the multiplayer authority changes +of any of the nodes that have a state- or input property. + +Changing authority during gameplay is supported. Make sure to call +`process_authority()` on all peers at the same time, to ensure they're on sync +about ownership. + +This method is called automatically during instantiation and whenever +`process_settings()` is called. + +--- + +When *only* multiplayer authority changes, call `process_authority()`. When the +configured state- or input properties change ( i.e. different properties need +to be synced ), call `process_settings()`. + +## Diff states + +When diff states are enabled in the [rollback settings], netfox will attempt to +save bandwidth by only sending state properties that have changed. + +These changes are always based on a tick that the receiving peer has confirmed +it already has. Basically we don't want to send changes compared to a tick that +the peer has no knowledge about. + +Peers notify the host of which ticks they know about by *acknowledging* ( or +ack'ing ) ticks. This acknowledging has two flavors. + +The first flavor is *full states*. These states contain all the state data, +regardless of what changed and what has stayed the same. These ensure that +peers have all the state data for a given tick. Once a full state is received, +the receiving peer acknowledges that tick over a reliable channel. + +The second flavor is *diff states*. Peers may also acknowledge ticks after +receiving a diff state, meaning that they have reconstructed the given state +from a known earlier state and the diff state received. These are acknowledged +over an unreliable channel. By using an unreliable channel, we can acknowledge +diff states more often without causing any hiccups in network traffic. + +When diff states are disabled, netfox will always send full state data for all +ticks. + +[Rollback caveats]: ../tutorials/rollback-caveats.md +[NetworkRollback]: ../guides/network-rollback.md +[Property paths]: ../guides/property-paths.md +[rollback settings]: ../guides/network-rollback.md#settings diff --git a/docs/netfox/nodes/state-synchronizer.md b/docs/netfox/nodes/state-synchronizer.md new file mode 100644 index 0000000..c414689 --- /dev/null +++ b/docs/netfox/nodes/state-synchronizer.md @@ -0,0 +1,74 @@ +# StateSynchronizer + +Synchronizes state from the node's authority to other peers. + +Similar to Godot's [MultiplayerSynchronizer], but is tied to the [network tick +loop]. Works well with [TickInterpolator]. + +One way to use this node is to synchronize logic that runs only on the server, +for example NPC's in your games. The NPC's are controlled fully by the server, +and their state is synchronized to the clients by the *StateSynchronizer* +nodes. + +## Configuring state + +To use *StateSynchronizer*, add it as a child to the target node, specify the +root node, and configure which properties to synchronize: + +![StateSynchronizer configuration](../assets/state-synchronizer-config.png) + +*Root* specifies the root node for resolving properties. Best practice dictates +to add *StateSynchronizer* under its target, so *Root* will most often be the +*StateSynchronizer*'s parent node. + +*Properties* are recorded for each tick on the node's authority ( usually the +server ), and broadcast to other peers. These are analogous to +[RollbackSynchronizer]'s *state properties*. + +See [Property paths] on how to specify properties. + +## Changing configuration + +*StateSynchronizer* has to do some setup work whenever the state or the +input properties change. + +By default, this work is done upon instantiation. If you need to change +properties during runtime, make sure to call `process_settings()`, otherwise +*StateSynchronizer* won't apply the changes. + +You can change the node's authority without calling `process_settings()` again. +Make sure that the authority is changed the same way on all peers, to avoid +discrepancies. + +## When to use StateSynchronizer and MultiplayerSynchronizer + +Part of the design philosophy of netfox is to build *on top of* Godot's +networking tools, instead of *replacing* them. + +Both [MultiplayerSynchronizer] and StateSynchronizer can be used to synchronize +state from authority to the rest of the peers. + +[MultiplayerSynchronizer] uses its own timer, and is independent of netfox's +[network tick loop]. It can also do delta updates, and manage visibility per +peer. Since it is not tied to netfox's tick loop, it does not work with +[TickInterpolator]. + +StateSynchronizer records all the properties specified and broadcasts them +as-is to all peers. This does not include visiblity or delta updates. The +broadcast happens on every network tick. This node is explicitly designed to +work with [TickInterpolator]. + +--- + +You can use StateSynchronizer for properties that you want to be interpolated, +like position, rotation, or any other visual properties. + +You can use [MultiplayerSynchronizer] for properties that either don't need +interpolation ( e.g. a unit's HP ), or specifically need one of +[MultiplayerSynchronizer]'s features. + +[MultiplayerSynchronizer]: https://docs.godotengine.org/en/stable/classes/class_multiplayersynchronizer.html +[network tick loop]: ../guides/network-time.md +[TickInterpolator]: ./tick-interpolator.md +[RollbackSynchronizer]: ./rollback-synchronizer.md +[Property paths]: ../guides/property-paths.md diff --git a/docs/netfox/nodes/tick-interpolator.md b/docs/netfox/nodes/tick-interpolator.md new file mode 100644 index 0000000..3447bea --- /dev/null +++ b/docs/netfox/nodes/tick-interpolator.md @@ -0,0 +1,62 @@ +# TickInterpolator + +Interpolates between network ticks to smooth out motion. + +Uses [Interpolators] under the hood to support various data types. To read more +on best practices, see [Interpolation caveats]. + +## Configuring interpolation + +To use *TickInterpolator*, add it as a child to the target node, specify the +root node, and configure which properties to interpolate: + +![TickInterpolator configuration](../assets/tick-interpolator-config.png) + +*Root* specifies the root node for resolving *Properties*. Best practice +dictates to add *TickInterpolator* under its target, so *Root* will most often +be the *TickInterpolator*'s parent node. + +*Properties* specify which properties to interpolate. See [Property paths] on +how to specify these values. + +*Record First State* will make *TickInterpolator* take a snapshot when the Node +is instantiated. This snapshot will be used for interpolation, instead of +waiting for the next network tick. Useful for objects which start moving +instantly upon entering the scene tree, like projectiles. + +*Enable Recording* toggles automatic state recording. When enabled, +*TickInterpolator* will take a new snapshot after each network tick loop and +interpolate towards that. Disabling this will require you to manually call +`push_state()` whenever the *properties* are updated. + +## Sudden changes + +When a node makes a sudden change, like teleporting from one place to another, +interpolation may not be desired. + +Call `teleport()` in these cases to avoid interpolation and just jump to the +current state. Interpolation will resume after the current state. + +Example: + +```gdscript +func _tick(tick, delta): + # Respawn after a while + if _tick == respawn_tick: + # Jump to spawn point, without interpolation + position = spawn_position + $TickInterpolator.teleport() +``` + +## Changing configuration + +*TickInterpolator* has to do some setup work whenever the interpolated +properties change, e.g. when a new property needs to be interpolated. + +By default, this work is done upon instantiation. If you need to change +interpolated properties during runtime, make sure to call `process_settings()`, +otherwise *TickInterpolator* won't apply the changes. + +[Interpolators]: ../guides/interpolators.md +[Interpolation caveats]: ../tutorials/interpolation-caveats.md +[Property paths]: ../guides/property-paths.md diff --git a/docs/netfox/tutorials/configuring-properties-from-code.md b/docs/netfox/tutorials/configuring-properties-from-code.md new file mode 100644 index 0000000..762f448 --- /dev/null +++ b/docs/netfox/tutorials/configuring-properties-from-code.md @@ -0,0 +1,119 @@ +# Configuring properties from code + +In netfox, there are multiple nodes that accept [property paths] as their +configuration, for various purposes. These can be configured as lists of +strings in the editor. + +In bigger projects, with many scenes and deeper class trees, manually +configuring property paths may be tedious and unscaleable. Potentially, there +may be cases where these properties are only known at runtime, not when working +in the Editor. + +There are solutions for both cases. + +## Adding properties from code + +Properties can be added at run-time with the following methods: + +* `TickInterpolator::add_property(node, property)` +* `StateSynchronizer::add_state(node, property)` +* `RollbackSynchronizer::add_state(node, property)` +* `RollbackSynchronizer::add_input(node, property)` + +*node* is a reference to a node - it may be a *string* or a *[NodePath]* +pointing to an existing node, or a *[Node]* instance. When using paths, the +path itself is considered relative to the configured *root* node. + +After calling any of the methods above, calling `process_settings()` is not +necessary - it will be called automatically. + +!!! warning + The same as with `process_settings()`, configuration changes are not + synchronized automatically! You, the developer, must ensure that + configuration changes happen on all peers, at the same time. + + Changing state- and input property configurations is not recommended during + gameplay. + +## Adding properties automatically, in the editor + +You can ensure that certain properties are added to netfox's nodes' +configuration by making your class a `@tool` script, and implementing the +following methods: + +* TickInterpolator: `_get_interpolated_properties()` +* StateSynchronizer: `_get_synchronized_state_properties()` +* RollbackSynchronizer: + * `_get_rollback_state_properties()` for state + * `_get_rollback_input_properties()` for input + +These must return an array, with each element being a string, or a two-element +array. + +Strings are interpreted as property names. + +Arrays are interpreted as node-property pairs. Similarly to the `add_*` +methods, the *node* may be a string, a [NodePath], or an actual [Node] +instance. When using strings or [NodePath]s, keep in mind that the path is +considered *relative to the node itself, not the configured root*. + +Each of these nodes will explore nodes under their `root` node, and call the +above methods if implemented. The results will be added to the node +configuration. + +This exploration is implemented in the nodes' `_get_configuration_warnings()` +method, which is called when the node tree changes ( i.e. nodes are added / +removed ), and when opening the scene. + +The exploration also runs when before saving the scene, to make sure that any +updates are picked up. + +!!! tip + To make sure that the updated methods are picked up, save your scene. The + exploration is ran before every scene save. + +An example implementation for the above methods: + +```gdscript +func _get_interpolated_properties(): + # Specify a list of properties + return ["position", "quaternion"] + +func _get_synchronized_state_properties() -> Array: + # Specify inherited properties and more + return super() + [ + "health", "name", + [weapon, "ammo"], # Specify a property on another node + ["Hand/Weapon", "ammo"] # Specify node by path + ] + +func _get_rollback_state_properties() -> Array: + return [ + "transform", # Specify a property on self + [weapon, "ammo"] # Specify a property on another node + ] + +func _get_rollback_input_propertes() -> Array: + # Specify a list of properties + return ["movement", "is_jumping"] +``` + +See the [Property configuration example]. + +!!! note + In general, it's best practice to only specify node's own properties. An + exception is when the given node has no script attached. + +### Caveats + +**Node renames and removals** are not tracked. Unless fixed manually, they will +result in invalid property warnings. + +A workaround is to reset the node's state/input/property configuration to an +empty array and save again. This will gather the tracked properties with the +right node names. + +[property paths]: ../guides/property-paths.md +[NodePath]: https://docs.godotengine.org/en/stable/classes/class_nodepath.html +[Node]: https://docs.godotengine.org/en/stable/classes/class_node.html +[Property configuration example]: https://github.com/foxssake/netfox/tree/main/examples/property-configuration diff --git a/docs/netfox/tutorials/input-gathering-tips-and-tricks.md b/docs/netfox/tutorials/input-gathering-tips-and-tricks.md new file mode 100644 index 0000000..69b3665 --- /dev/null +++ b/docs/netfox/tutorials/input-gathering-tips-and-tricks.md @@ -0,0 +1,171 @@ +# Input gathering tips and tricks + +In the [Responsive player movement] tutorial, we've seen a basic example on how +to gather input. This tutorial will elaborate on how input gathering works +under the hood, and how that affects some common input patterns in games. + +!!!note + You can find the full project [in the repository]. + +## Understanding input gathering + +To have a shared notion of time, *netfox* provides its own time synchronization +and a *tick loop*. The *tick loop* will check how much time has passed since +the last network tick, and will run as many ticks as needed to catch up. Most +often this is a single tick every few frames, but in special cases it might +need to run multiple ticks in a single loop. + +To have input available for each tick, *RollbackSynchronizer*s record input +after every network tick. + +Since multiple ticks may be ran in a single tick loop, it makes no sense to +gather input for each tick - the hardware wouldn't update, since the ticks are +run one after the other. + +Instead, input is gathered *before* each tick loop, and then reused for each +tick in the loop. This explains why special measures need to be taken in some +cases. + +To read more about *netfox*'s *tick loop*, see the [Network tick loop]. + +## Continuous inputs + +Consider player movement - if the player holds the button *up*, the character +will move north, right for east, *down* for south, *left* for west. If the +player holds two directions, the character will move diagonally. + +Since the player needs to *hold* the buttons for movement to happen, it is +considered a *continuous* input. + +Checking the inputs pressed at the point of gather works: + +```gdscript +extends BaseNetInput +class_name PlayerInput + +var movement: Vector3 = Vector3.ZERO + +func _gather(): + movement = Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) +``` + +However, consider what happens if inputs change between two ticks. Let's +visualize one such case on a timeline: + +```puml +@startuml + +concise "Player Input" as P + +@P +0 is Up +3 is Right: Tick +4 is Up +6 is Right: Tick +``` + +Even though the player alternated between pressing Up and Right, only Right was +recorded as an input. This is gets worse considering that the player was +pressing Up *the majority of the time*. + +The solution is to sample player input on every `_process()` frame, and average +the samples collected before each tick loop. + +```gdscript +--8<-- "examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd" +``` + +This way, every known input is taken into account. + +This method shines the best in cases where the network tickrate is considerably +lower than the actual FPS at which the game runs. For example, in case the +network tick loop runs at 30 ticks per second, but the game consistently runs +and renders at 60fps, or even more. + +With 30tps and 60fps, we take on average two input samples per tick. + +## One-off inputs + +Depending on game design, there are cases where the game needs the player to +press a button to take an action. If the button is held, the action still +happens only once, as it was pressed only once. If the player needs to perform +the action multiple times, they need to press the relevant button multiple +times. + +These are considered *one-off inputs*. + +Godot provides methods such as [Input.is_action_just_pressed()] to check if a +given input was just pressed. Counterintuitively, this does not work as +expected - the method recognizes the current frame ( `_process` ) or physics +tick ( `_physics_process` ), but not *netfox* ticks. Let's see it on a +timeline: + +```puml +@startuml + +concise "Player Input" as P + +@P +0 is Empty +2 is Jump: Pressed +5 is Jump: Tick +``` + +Even though the input was pressed on frame 2, input gathering only ran on frame +5, by which time the input is *held*, not *just pressed*. This means, that the +*just pressed* check will only register if the player manages to press the +button on the exact same frame as the input gathering is running. + +A different issue pops up when the game slows down a bit, and *netfox* needs to +run multiple ticks in a single loop to catch up. Let's visualize this with a +timeline, showing both the user input in real-time, and what netfox records as +input: + +```puml +@startuml + +concise "Player Input" as P +concise "Recorded Input" as R + +@0 +P is Empty +R is Empty + +@3 +P is Jump +R is Jump: Start loop + +@4 +P is Empty + +@6 +R is Empty: End loop +``` + +The player pressed Jump on a single frame, which was recorded. Then, this +single recorded input was used for each tick in the tick loop. Resulting in the +player trying to jump for multiple ticks, even though they pressed the button +only on a single frame. + +To solve both of these issues, *one-off inputs* can be buffered similarly to +*continuous inputs*. The difference is that we reset the input value after it's +gathered - this way, the input will be true for *at most* a single tick: + +```gdscript +--8<-- "examples/snippets/input-gathering-tutorial/one-off-input.gd" +``` + +!!!tip + The same principle of using buffer variables and accumulating input samples + can be implemented in the `_input()` callback as well. + + +[in the repository]: https://github.com/foxssake/netfox/tree/main/examples/input-gathering +[Responsive player movement]: ./responsive-player-movement.md +[Network tick loop]: ../guides/network-time.md#network-tick-loop +[Input.is_action_just_pressed()]: https://docs.godotengine.org/en/stable/classes/class_input.html#class-input-method-is-action-just-pressed + diff --git a/docs/netfox/tutorials/interpolation-caveats.md b/docs/netfox/tutorials/interpolation-caveats.md new file mode 100644 index 0000000..ff00306 --- /dev/null +++ b/docs/netfox/tutorials/interpolation-caveats.md @@ -0,0 +1,39 @@ +# Interpolation caveats + +While netfox runs netcode at a fixed rate, the game may render frames at a +higher, varying framerate. Interpolation smooths out the difference between +tickrate and framerate, when using [TickInterpolator]. + +Below are some aspects that may catch users off guard. + +### Interpolate only visuals + +A node's state may consist of multiple properties, some of which affect its +appearance ( e.g. position, rotation, scale ), some are only relevant to the +simulation - e.g. most objects look the same regardless of their velocity, even +though it's important for simulating their behavior. + +Since interpolation matters only for the game's visuals, it's enough to +interpolate only the properties that affect the game's visuals. + +### Rotation vs. Quaternion vs. Transform + +Interpolating `rotation` may lead to glitchy results when an object makes a +full turn. This stems from the way `rotation` works - it represents the amount +of rotation per axis, in Euler angles. Using Euler angles to interpolate +rotations doesn't work well, as they can end up interpolating from -180 degrees +to +180 numerically. The expected behavior would be to go from -180 to +180 +instantly, since they represent the same rotation. The same thing happens in +animation software as well, when trying to interpolate with Euler angles. + +What to do instead: + +* Interpolate the whole `transform` +* Interpolate `quaternion` - represents rotation, but better suited to + interpolation + +For more, see Godot docs on [3D transforms] + +[TickInterpolator]: ../nodes/tick-interpolator.md +[3D transforms]: https://docs.godotengine.org/en/stable/tutorials/3d/using_transforms.html + diff --git a/docs/netfox/tutorials/modifying-objects-during-rollback.md b/docs/netfox/tutorials/modifying-objects-during-rollback.md new file mode 100644 index 0000000..7542f86 --- /dev/null +++ b/docs/netfox/tutorials/modifying-objects-during-rollback.md @@ -0,0 +1,161 @@ +# Modifying objects during rollback + +There are cases where two objects interact and modify each other during +rollback. For example: + +* Players shoving another +* An explosion displacing objects around it +* Two cars colliding +* A player shooting at another - if player stats are managed as part of + rollback + +## Using Mutations + +!!!warning + Mutations are *experimental*, meaning the API may change in breaking ways, + and may be less stable than other features. + + Once the API matures and finds its final form, the *experimental* mark will + be removed. Feedback is welcome in the meanwhile! + +Mutations enable modifying objects during rollback, in a way that is taken into +account by netfox. + +When an object is modified during rollback, call `NetworkRollback.mutate()`, +passing said object as an argument. + +As a result, the changes made to the object in the current tick will be +recorded. Since its history has changed, it will be resimulated from the point +of change - i.e. for all ticks after the change was made. + +!!!note + Make sure that `mutate()` is only called on objects that need it - otherwise, + ticks will be resimulated for objects that don't need it, resulting in worse + performance. + +### Example code + +To see this in action, take a snippet from Forest Brawl: + +```gdscript + for brawler in _get_overlapping_brawlers(): + var diff := brawler.global_position - global_position + var f := clampf(1.0 / (1.0 + diff.length_squared()), 0.0, 1.0) + + var offset := Vector3(diff.x, max(0, diff.y), diff.z).normalized() + offset *= strength_factor * strength * f * NetworkTime.ticktime + + brawler.shove(offset) + NetworkRollback.mutate(brawler) +``` + +The script calculates which direction to shove the player in, and with what +force. This is then applied by calling `shove()`. + +Then, on the last line, these changes are saved by calling +`NetworkRollback.mutate(brawler)`. + +Calling `mutate()` is all that's needed to use this feature. + +## The problem with naive implementations + +The simplest way to implement these mechanics is to just update the affected +object, without using mutations. For example, when one player shoves another, +the shove direction can simply be added to the target player's position. Doing +this will not work unfortunately. + +Let's say that Player A is shoving Player B. With Player A being the local +player, we have input for its actions. With Player B being a remote player, it +won't be simulated. So even though its position was modified, this change will +not be recorded, and will be overridden by its last *known* position. + +```puml +@startuml + +concise "Player A" as PA +concise "Player B" as PB + +@0 +PA is Restored +PB is Restored + +@8 +PA is Simulated + +@10 +PA -> PB: shove() + +@enduml +``` + +In the example above, even though Player A shoved Player B on tick 10, Player B +is not simulated in that given tick, so it won't be recorded. Player A's shove +is not saved to history. + +This may partially be fixed by enabling [prediction] for players. + +Take another case, where Player B wants to shove Player A. With Player B being +a remote player, we only receive its input a few ticks after the fact. So we +need to resimulate Player B from an earlier tick. In one of these earlier tick, +Player A gets shoved. + +```puml +@startuml + +concise "Player A" as PA +concise "Player B" as PB + +@0 +PA is Restored +PB is Restored + +@6 +PB is Simulated + +@7 +PB -> PA: shove() + +@8 +PA is Simulated + +@enduml +``` + +In this example, we've received input for Player B for tick 6 onwards. On tick +7, Player B shoves Player A. Since we've already simulated Player A for the +given tick, we don't need to simulate it again. This means that any changes for +the tick will not be recorded. The shove will not be saved to history. + +Since Player A was already simulated and recorded for this earlier tick, it +being shoved will not be recorded. + +In both cases, we need to use mutations to tell netfox that a given object has +been modified ( *mutated* ), and its state history should be updated. + +Let's try the previous example, but now with `mutate()` added: + +```puml +@startuml + +concise "Player A" as PA +concise "Player B" as PB + +@0 +PA is Restored +PB is Restored + +@6 +PB is Simulated + +@7 +PB -> PA: shove()\nmutate() + +PA is Simulated + +@enduml +``` + +Player A will be resimulated from the point of shoving, and the shove itself +will be recorded. + +[prediction]: ./predicting-input.md diff --git a/docs/netfox/tutorials/predicting-input.md b/docs/netfox/tutorials/predicting-input.md new file mode 100644 index 0000000..aa058ce --- /dev/null +++ b/docs/netfox/tutorials/predicting-input.md @@ -0,0 +1,161 @@ +# Predicting input + +Whenever clients send their inputs, it takes some time to arrive. From there, +it also takes time for the updated game state to arrive to clients. + +This means that the server never knows the client's *current* input, only the +input from a few ticks ago - depending on network latency. Other clients are +even more behind, as they also need to wait for the server to broadcast the +updated game state. + +Another trick *netfox* enables to hide this latency is *input prediction*. + +## About prediction + +By default, nodes are only simulated for ticks that we currently have enough +information for - i.e. the *input* for the current tick. If there's no input, +the node simply isn't simulated, as we can't know what the player intended to +do. + +But, what if we do know? Or what if we can make a reasonable guess? + +For example, in driving games, it is a safe assumption that if the player was +going full throttle three ticks ago, they are still going full throttle. + +It is important to consider the last received input's *age*. The more time +passes, the harder it is to reasonably predict the player's inputs. + +*Prediction* allows users to implement similar, game-specific predictions. + +## Implementing input prediction + +`NetworkRollback` provides the following signal: + +```gdscript +signal after_prepare_tick(tick: int) +``` + +This is emitted during rollback, *after* the input and state is applied for the +tick about to be simulated. This is the phase where input prediction may +happen. + +Firstly, call `RollbackSynchronizer.is_predicting()`, to check if any +prediction needs to be done. If none, input can be left as-is, without +predicting. + +You may also check if there's *any* known input for the current tick that we +can base our prediction off of. This is done by calling +`RollbackSynchronizer.has_input()`. + +For the actual prediction, consider the age of the last known input. This is +obtained by calling `RollbackSynchronizer.get_input_age()`, which will return +the applied input's age in ticks. + +--- + +To put all of this into practice, see the following snippet: + +```gdscipt +extends BaseNetInput + +var movement: Vector3 +var confidence: float = 1. + +@onready var _rollback_synchronizer := $"../RollbackSynchronizer" as RollbackSynchronizer + +func _ready(): + super() + + # Predict on `after_prepare_tick` + NetworkRollback.after_prepare_tick.connect(_predict) + +func _gather(): + # Gather input + movement = Vector3( + Input.get_axis("move_east", "move_west"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_south", "move_north") + ) + +func _predict(_t): + if not _rollback_synchronizer.is_predicting(): + # Not predicting, nothing to do + confidence = 1. + return + + if not _rollback_synchronizer.has_input(): + # Can't predict without input + confidence = 0. + return + + # Decay input over a short time + var decay_time := NetworkTime.seconds_to_ticks(.15) + var input_age := _rollback_synchronizer.get_input_age() + + # **ALWAYS** cast either side to float, otherwise the integer-integer + # division yields either 1 or 0 confidence + confidence = input_age / float(decay_time) + confidence = clampf(1. - confidence, 0., 1.) + + # Modulate input based on confidence + movement *= confidence +``` + +In this example, a confidence value is calculated based on the input age. This +is then used to gradually fade out the input, as if the player slowly let go of +the controls. + +Make sure to consider the specifics of your game and tailor your input +prediction strategy to the game's needs. Depending on the game, you may even +opt out of prediction. + +## Impossible predictions + +In the example above, a *confidence* value of zero means that input simply +can't be predicted currently. This usually happens when the input is too old to +use for prediction. + +In this case, call `NetworkRollback.ignore_prediction(target)`. This lets +*netfox* know that the target node - usually `self` - can't be predicted. Its +simulated state will not be recorded for the current tick. + +To see this in practice: + +```gdscript +func _rollback_tick(dt, _t, _if): + if is_zero_approx(input.confidence): + # Can't predict, not enough confidence in input + _rollback_synchronizer.ignore_prediction(self) + return + + # ... run simulation as usual ... +``` + +If there's not enough confidence in the input, `ignore_prediction` is called, +and we return early. + +!!! note + `NetworkRollback.ignore_prediction()` can be called for multiple nodes from + the same script. This is useful in cases where a single script drives + multiple nodes, like an FPS controller updating the whole body's position + and the head's rotation independently. + +## Configuring prediction + +Running the game in its current state would result in no changes - *prediction +is off by default*. It can be toggled separately for each +`RollbackSynchronizer`. + +To enable, check *Enable Prediction* in the `RollbackSynchronizer`'s +configuration: + +![Node configuration](../assets/rollback-enable-predict.png) + +With this configured, `RollbackSynchronizer` will simulate all the nodes it +manages even for ticks that *it doesn't have input for*. + +## Example project + +To see all of the above as one cohesive project, see the [Input prediction example]. + +[Input prediction example]: https://github.com/foxssake/netfox/tree/main/examples/input-prediction diff --git a/docs/netfox/tutorials/responsive-player-movement.md b/docs/netfox/tutorials/responsive-player-movement.md new file mode 100644 index 0000000..3536ddf --- /dev/null +++ b/docs/netfox/tutorials/responsive-player-movement.md @@ -0,0 +1,151 @@ +# Responsive player movement + +To compensate for latency, *netfox* implements [Client-side prediction and +Server reconciliation]. This documentation also refers to it as rollback. + +One use case is player movement - with CSP we don't need to wait for the +server's response before the player's avatar can be updated. + +## Gathering input + +For CSP, input is separated from player state. In practice, this means that +there's a separate node with its own script that manages input. The job of this +script is to manage properties related to input - for example, which direction +the player wants to move: + +```gdscript +extends Node +class_name PlayerInput + +var movement = Vector3.ZERO +``` + +These *input properties* must be updated based on player input. Hook into the +[network tick loop]'s *before_tick_loop* signal to update input properties: + +```gdscript +func _ready(): + NetworkTime.before_tick_loop.connect(_gather) + +func _gather(): + if not is_multiplayer_authority(): + return + + movement = Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) +``` + +It is important to only update input properties if we have authority over the +node. Otherwise we would try to change some other player's input with our own +actions. + +### Using BaseNetInput + +The same can be accomplished with [BaseNetInput], with slightly less code: + +```gdscript +extends BaseNetInput +class_name PlayerInput + +var movement: Vector3 = Vector3.ZERO + +func _gather(): + movement = Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) +``` + +## Applying movement + +The other part of the equation is *state*. Use the same approach as you would +with your character controller, with the game logic being implemented in +`_rollback_tick` instead of `_process` or `_physics_process`: + +```gdscript +extends CharacterBody3D + +@export var speed = 4.0 +@export var input: PlayerInput + +func _rollback_tick(delta, tick, is_fresh): + velocity = input.movement.normalized() * speed + + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor +``` + +Note the usage of `physics_factor` - this is explained in [the caveats]. + +## Configuring rollback + +Create a reusable player scene with the following layout: + +![Node layout](../assets/tutorial-nodes.png) + +The root is a *CharacterBody3D* with the player controller script attached. + +The *Input* child manages player input and has the player input script +attached. + +The [RollbackSynchronizer] node manages the rollback logic, making the player +motion responsive while also keeping it [server-authoritative]. + +Configure the *RollbackSynchronizer* with the following input- and state +properties: + +![RollbackSynchronizer settings](../assets/tutorial-rollback-settings.png) + +## Ownership + +Make sure that all of the player nodes are owned by the server. The exception +is the *Input* node, which must be owned by the player who the avatar belongs +to. + +After setting ownerships, **make sure** to call `process_settings` on +*RollbackSynchronizer*. This call is necessary after every ownership change. +*RollbackSynchronizer* sorts properties based on ownership, but this sorting is +only done in `process_settings`. + +For example: + +```gdscript +@onready var rollback_synchronizer = $RollbackSynchronizer +var peer_id = 0 + +func _ready(): + # Wait a frame so peer_id is set + await get_tree().process_frame + + # Set owner + set_multiplayer_authority(1) + input.set_multiplayer_authority(peer_id) + rollback_synchronizer.process_settings() +``` + +Note that `peer_id` needs to be set from the outside during spawn. + +## Smooth motion + +Currently, state is only updated on network ticks. If the tickrate is less than +the FPS the game is running on, motion may get choppy. + +Add a [TickInterpolator] node and configure it with the same *state properties* +as the *RollbackSynchronizer*: + +![TickInterpolator settings](../assets/tutorial-tick-interpolator-settings.png) + +This will ensure smooth motion, regardless of FPS and tickrate. + +[Client-side prediction and Server reconciliation]: https://www.gabrielgambetta.com/client-side-prediction-server-reconciliation.html +[BaseNetInput]: ../../netfox.extras/guides/base-net-input.md +[network tick loop]: ../guides/network-time.md#network-tick-loop +[RollbackSynchronizer]: ../nodes/rollback-synchronizer.md +[server-authoritative]: ../concepts/authoritative-servers.md +[the caveats]: ./rollback-caveats.md#characterbody-velocity +[TickInterpolator]: ../nodes/tick-interpolator.md diff --git a/docs/netfox/tutorials/rollback-caveats.md b/docs/netfox/tutorials/rollback-caveats.md new file mode 100644 index 0000000..d2198a7 --- /dev/null +++ b/docs/netfox/tutorials/rollback-caveats.md @@ -0,0 +1,121 @@ +# Rollback caveats + +As with most things, rollback has some drawbacks along with its benefits. + +### CharacterBody velocity + +Godot's `move_and_slide()` uses the `velocity` property, which is set in +meters/second. The method assumes a delta time based on what kind of frame is +being run. However, it is not aware of *netfox*'s network ticks, which means +that movement speed will be off. + +To counteract this, multiply velocity with `NetworkTime.physics_factor`, which +will adjust for the difference between Godot's *assumed* delta time and the +delta time *netfox* is using. + +If you don't want to lose your original velocity ( e.g. because it accumulates +acceleration over time ), divide by the same property after using any built-in +method. For example: + +```gdscript +# Apply movement +velocity *= NetworkTime.physics_factor +move_and_slide() +velocity /= NetworkTime.physics_factor +``` + +### CharacterBody on floor + +CharacterBodies only update their `is_on_floor()` state only after a +`move_and_slide()` call. + +This means that during rollback, the position is updated, but the +`is_on_floor()` state is not. + +As a work-around, do a zero-velocity move before checking if the node is on the +floor: + +```gdscript +extends CharacterBody3D + +func _rollback_tick(delta, tick, is_fresh): + # Add the gravity. + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * delta + + # ... + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity +``` + +### Physics updates + +Godot's physics system is updated only during `_physics_process`, while +rollback updates the game state multiple times during a single frame. + +Unfortunately, Godot does not support manually updating or stepping the physics +system, [at least at the time of writing](https://github.com/godotengine/godot/pull/76462). +This means that: + +* Rollback and physics-based games ( RigidBodies ) don't work at the moment +* Collision detection can work, but with workarounds + +If there's a way to force an update for your given node type, it should work, +i.e. + +* ShapeCast (2D and 3D) - [force_shapecast_update()] +* ChacacterBody (2D and 3D) - [move_and_collide()] ( which has a test only + mode ) + +While kinematic nodes like `CharacterBody3D` can be used with rollback, physics +queries can still cause issues (e.g. +`PhysicsDirectSpaceState3D.intersect_shape()`). This is due to the lack of +updates mentioned earlier. To work around this, run the following for each +`CollisionObject` that has its position rolled back before each tick of the +rollback loop: + +```gdscript +# Works for both Jolt and GodotPhysics3D. +func _force_update_physics_transform(): + PhysicsServer3D.body_set_mode(get_rid(), PhysicsServer3D.BODY_MODE_STATIC) + PhysicsServer3D.body_set_state(get_rid(), PhysicsServer3D.BODY_STATE_TRANSFORM, global_transform) + PhysicsServer3D.body_set_mode(get_rid(), PhysicsServer3D.BODY_MODE_KINEMATIC) +``` + +The above forces an update by setting the object to static, updating its +transform, and then setting it back to its original, kinematic state. + +Note that the above code needs to run for any kinematic object that is to be +detected by the query and is manipulated during rollback. + +!!!tip + The *netfox.extras* addon provides optional support for physics simulation + with rollback. See [Physics](../../netfox.extras/guides/physics.md) + +### State Machines + +State machines don't usually expect to be updated multiple times in a single +frame or be snapped back to a previous point in time. Be cautious of: + +- Safeguards that implement a cooldown to changes. +- States based on values not updated in `_rollback_tick`. +- Transitions that enforce a specific order to state changes. +- Transitions that trigger on any state change. + +The key concept to keep in mind is that netfox stores the configured states for +each processed tick. When it rolls back everything is snapped back to that +point in time and then played forward to the present in a single frame. + +!!!tip + The *netfox.extras* module provides an implementation of state machines + compatible with rollback. See + [RewindableStateMachine](../../netfox.extras/guides/rewindable-state-machine.md) + + +[force_shapecast_update()]: https://docs.godotengine.org/en/stable/classes/class_shapecast3d.html#class-shapecast3d-method-force-shapecast-update +[move_and_collide()]: https://docs.godotengine.org/en/stable/classes/class_physicsbody3d.html#class-physicsbody3d-method-move-and-collide diff --git a/docs/netfox/tutorials/using-rollbacksynchronizer-without-inputs.md b/docs/netfox/tutorials/using-rollbacksynchronizer-without-inputs.md new file mode 100644 index 0000000..3b71ccc --- /dev/null +++ b/docs/netfox/tutorials/using-rollbacksynchronizer-without-inputs.md @@ -0,0 +1,26 @@ +# Using RollbackSynchronizer without inputs + +In certain cases, a component needs to participate in rollback, but is not +driven by any input. One example could be more complex NPCs. These need to be +part of the rollback tick loop, but they are not controlled by any player. + +In these cases, you can use RollbackSynchronizer as described earlier in +[Responsive player movement], but without the input. This means not needing an +input node, and not configuring any input properties. State properties still +need to be configured, and the gameplay logic must be implemented in +`_rollback_tick()`. + +!!!tip + An example project featuring a simple NPC using an inputless + RollbackSynchronizer can be found at [examples/rollback-npc]. + +Under the hood, *netfox* will simulate these inputless nodes whenever it +encounters a tick that has no state for the inputless node. On the server, this +means inputless nodes will be simulated only for new ticks. On clients, this +means never being simulated, since all state is received from the server. If +prediction is enabled, clients will simulate inputless nodes for ticks they +don't have data from the server. + + +[Responsive player movement]: ./responsive-player-movement.md +[examples/rollback-npc]: https://github.com/foxssake/netfox/tree/main/examples/rollback-npc diff --git a/docs/performance-budget.md b/docs/performance-budget.md deleted file mode 100644 index 4f99f63..0000000 --- a/docs/performance-budget.md +++ /dev/null @@ -1,184 +0,0 @@ -# Performance Budget & Profiling Methodology - -> **Target hardware:** GTX 1050 / RX 560 class (2 GB VRAM) -> **Engine:** Godot 4.7 Forward+ renderer -> **Frame target:** 60 fps (16.6 ms per frame) - ---- - -## 1. Frame Budget (16.6 ms) - -| Phase | Budget | Notes | -|---------------|--------|-------| -| GPU total | 8.0 ms | Forward+ opaque pass, transparent, sky, tonemap | -| CPU — physics | 1.5 ms | 128-tick, capsule sweep, raycasts | -| CPU — render | 1.5 ms | Culling, sorting, draw-call submission | -| CPU — gameplay| 3.0 ms | Input, animation, network interpolation | -| **Headroom** | **2.6 ms** | Buffer for frametime variance (≈15%) | - -### Bottleneck detection thresholds - -| Metric | Green | Yellow | Red | -|----------------|------------|---------------|---------------| -| GPU frame ms | < 5.0 | 5.0–7.5 | > 7.5 | -| CPU frame ms | < 10.0 | 10.0–13.0 | > 13.0 | -| Draw calls | < 1200 | 1200–1800 | > 2000 | -| Triangles / frame | < 300K | 300K–600K | > 1M | -| VRAM used | < 1.2 GB | 1.2–1.7 GB | > 1.8 GB | -| Main RAM used | < 2.0 GB | 2.0–3.0 GB | > 3.5 GB | - ---- - -## 2. Rendering Budget - -### Triangle Count - -| Asset type | LOD0 tris | LOD1 tris (50%) | LOD2 tris (25%) | Instances/map | -|-----------------|-----------|-----------------|-----------------|---------------| -| Wall panel | 800 | 400 | 200 | ~600 | -| Floor slab | 800 | 400 | 200 | ~400 | -| Pillar | 400 | 200 | 100 | ~80 | -| Doorway / window| 1200 | 600 | 300 | ~60 | -| Accent panel | 400 | 200 | 100 | ~40 | - -**Budget calculation** (max visible): -- Walls ≈ 50 visible × 800 = 40K (LOD0) -- Floors ≈ 20 visible × 800 = 16K (LOD0) -- Details ≈ 30 visible × 400 = 12K (LOD0) -- **Total LOD0 tris ≈ 68K** — well within budget -- With LOD + occlusion, visible tris on target GPU < 200K - -### Draw Calls - -| Pass | Draw calls | Notes | -|---------------|------------|-------| -| Opaque solids | 600–800 | Per-object, one per visible piece | -| Shadows | 200–400 | Single directional cascade | -| Transparent | 50–100 | Reflection probes, lightmap | -| UI | 100–200 | HUD, minimap, scoreboard | -| **Total** | **950–1500** | Well within 2000 target | - -### VRAM Budget - -| Category | Size | Notes | -|----------------------|----------|-------| -| Texture pool (1K × 7 mats) | 75 MB | 28 PBR maps | -| Lightmap atlas | 64–128 MB| 2048 × 2048, DXT5 | -| Shadow map | 16 MB | 2048 × 2048 atlas | -| Mesh geometry | 20–40 MB | LOD0–LOD2 | -| Reflection probe cubemaps | 8 MB | 8 × 512 cubemaps | -| Audio + misc | 50 MB | | -| **Total base** | **~300 MB** | | -| **Headroom** | **1.7 GB** | For gameplay assets, streaming | - ---- - -## 3. LOD Strategy - -### CSG-based pieces (current) - -Since the modular kit uses CSG nodes (procedural geometry), traditional mesh LOD is not directly supported. The equivalent optimizations are: - -| Technique | Benefit | How | -|----------------------------|---------|-----| -| **Visibility ranges** | Skip rendering past cutoff | `visibility_range_end` on each CSGBox3D/Combiner | -| **Occlusion culling** | Skip behind-occluder geometry | OccluderInstance3D on major walls | -| **CSG → Mesh baking** | Replace procedural with static mesh | `convert_csg_to_mesh.gd` tool script | -| **Mesh LOD after baking** | Traditional LOD on static meshes | Godot ImporterMesh LOD | - -### Visibility Range Thresholds (CSG phase) - -| Asset | Hide beyond | Rationale | -|---------------------|-------------|-----------| -| Wall panels | 50 m | OC sightlines rarely exceed 40 m | -| Floor slabs | 60 m | Visible as ground plane further | -| Pillars | 30 m | Thin silhouette, cull earlier | -| Beams | 30 m | Ceiling detail, only visible indoors | -| Accent panels | 20 m | Small team-color decals | -| Doorway / window | 40 m | Opening shapes visible at medium range | - -### Mesh LOD Targets (baked mesh phase) - -| LOD | Distance | Tris % | Notes | -|-----|----------|--------|-------| -| 0 | 0–15 m | 100% | Full detail, panel gaps | -| 1 | 15–40 m | 50% | Collapse bevels, remove small holes | -| 2 | 40–80 m | 25% | Planar collapse, aggressive decimate | -| 3 | 80 m+ | CULL | Not visible at competitive sightlines | - ---- - -## 4. Occlusion Culling - -### Implementation - -- **OccluderInstance3D** nodes auto-generated from wall CSGBox3D geometry -- **Voxel resolution**: 128³ (good balance of accuracy vs memory) -- **Generation script**: `client/scripts/generate_occluders.gd` — `@tool` script -- Activation: Scene tree → Add OccluderInstance3D → Set occluder shape to box matching wall extents - -### Occluder Coverage - -| Occluder origin | Covers | Shape | -|----------------------|-----------------------|--------| -| Exterior walls | Block view of outdoor | Box | -| Interior dividers | Lane separation | Box | -| Pillar clusters | Mid-range detail | Box | - -Expected culling benefit: **30–50% reduction in visible geometry** on a 3-lane map with interior dividers. - ---- - -## 5. Profiling Methodology - -### Toolchain - -| Tool | Use | -|------|-----| -| Godot Editor Debugger | Real-time frame profiler, monitor, 3D scene debug | -| `profile_scene.gd` | Headless frame-time capture | -| GPU vendor tools (NVIDIA NSight / Radeon GPA) | GPU-bound profiling | -| Frame debugger (Godot built-in) | Draw-call inspection | - -### Profiling Workflow - -1. **CPU baseline**: Run `profile_scene.gd --headless` on target hardware -2. **GPU baseline**: Capture 1000+ frames with editor profiler, record p50/p95/p99 -3. **Draw call audit**: Use frame debugger to count and classify draw calls -4. **Occlusion test**: Toggle OccluderInstance3D visibility, measure FPS delta -5. **LOD validation**: Check LOD transitions with debug visualization -6. **Thermal test**: 30-minute continuous gameplay, log frame-time variance - -### Pass/Fail Criteria - -- **PASS**: holds 60 fps on target hardware for 95% of frames across all 3 maps -- **ACCEPTABLE**: drops to 45–55 fps during intense firefights but recovers within 2 s -- **FAIL**: sustained < 45 fps or > 100 ms frame-time spike - ---- - -## 6. Reference Frames - -### `kit_demo.tscn` (indoor single-room, 5.12 × 5.12 m) - -- ~11 CSG pieces, 8 materials -- Estimated draw calls: ~20–30 -- Estimated triangles: ~8K–12K -- VRAM: ~80 MB (materials + lightmap) -- **Expected: > 200 fps on GTX 1050** - -### `template_map.tscn` (3-lane showroom, 20 × 16 m) - -- ~25 CSG pieces + prefabs -- Estimated draw calls: ~150–250 -- Estimated triangles: ~40K–60K -- VRAM: ~200 MB (materials + lightmap + probes) -- **Expected: 90–120 fps on GTX 1050** - -### Full competitive map (target, ~80 × 60 m) - -- ~800 CSG pieces (when built from modular kit) -- Estimated draw calls: ~1500 (with LOD + occlusion) -- Estimated triangles: ~200K–400K -- VRAM: ~500 MB -- **Target: 60 fps on GTX 1050** diff --git a/docs/playtest-guide.md b/docs/playtest-guide.md deleted file mode 100644 index 8d18f5b..0000000 --- a/docs/playtest-guide.md +++ /dev/null @@ -1,101 +0,0 @@ -# Tactical Shooter — Playtest Guide - -## Quick Start - -### 1. Get the Windows Client - -Download `tactical-shooter-windows.zip` from the build directory, or clone the repo and find it at: -``` -build/tactical-shooter-windows-x86_64/tactical-shooter.exe -``` - -Extract the zip anywhere on your Windows machine and run `tactical-shooter.exe`. - -### 2. Connect to the Test Server - -| Setting | Value | -|---------|-------| -| **Server IP** | `68.202.6.107` (external) or `192.168.0.127` (LAN) | -| **Port** | `34197` | -| **Protocol** | ENet (UDP) | - -Launch the game, open the console (~) and type: -``` -connect 68.202.6.107:34197 -``` - -### 3. Controls - -| Action | Key | -|--------|-----| -| Move | W/A/S/D | -| Jump | Space | -| Sprint | Shift (tap to toggle) | -| Crouch | Ctrl (hold) | -| Shoot | Mouse LMB | -| Aim | Mouse RMB | -| Reload | R | -| Interact | E | -| Release mouse | Escape | - ---- - -## Dedicated Server Info - -The test server runs on OPLabs infrastructure: - -- **Host:** oplabs VM (192.168.0.127) -- **Binary:** `~/tactical-shooter-server/tactical-shooter-server.x86_64` -- **Service:** `systemctl --user status tactical-shooter-server` -- **Config:** `~/tactical-shooter-server/server_config.cfg` - -### Server Commands (SSH into oplabs) - -```bash -# Check status -systemctl --user status tactical-shooter-server - -# View logs -journalctl --user -u tactical-shooter-server -f - -# Restart -systemctl --user restart tactical-shooter-server - -# Stop -systemctl --user stop tactical-shooter-server -``` - -### RCON Admin - -Connect via TCP to port 34198 with the RCON password (set in server_config.cfg): - -``` -rcon_password -rcon commands -rcon changelevel test_range -rcon kick -``` - ---- - -## Troubleshooting - -| Issue | Fix | -|-------|-----| -| Can't connect | Check server is running: `systemctl --user status tactical-shooter-server` | -| Firewall block | Ensure port 34197/UDP is open on the server | -| Game won't start | Install [VC++ Redistributable](https://aka.ms/vs/17/release/vc_redist.x64.exe) | -| High ping | The server is in eastern Canada; use the LAN IP if on the same network | - ---- - -## Architecture - -``` -[Windows Client] -- ENet/UDP :34197 --> [Dedicated Server (oplabs)] - | - [GDExtension C++ Core] - [Game State 128Hz Tick] -``` - -See `docs/architecture.md` in the repo for full details. diff --git a/docs/press-kit.md b/docs/press-kit.md new file mode 100644 index 0000000..f860372 --- /dev/null +++ b/docs/press-kit.md @@ -0,0 +1,173 @@ +# Press kit + +Attribution when using *netfox* is optional, but very much appreciated! We love +seeing games and projects built with netfox in the wild! + +If you decide to give us a shout-out, here are some guidelines and assets to +represent netfox. + +## When to use + +**Feel free** to use *netfox* brand assets in your video games, videos, art, +images, and other mediums when the project relates to netfox. + +For example: + +* Adding a logo to your credits screen in your game using netfox +* Adding a banner to your video thumbnail discussing netfox +* Adding the banner to your article as illustration when discussing netfox + +The list above is not exhaustive. + +**Refrain** from using *netfox* brand assets in content involving hate speech, +politically charged content, or in unauthorized, commercially sold merch ( +T-shirts, mugs, stationery, etc. ). + +!!!tip + When in doubt, reach out to us in the comments on the bottom of this page, + start new [discussion], or ask over on our [Discord]. + +## Brand assets + +The *netfox* brand assets use the [Oxanium] font family under the [SIL Open +Font License]. + +Each asset comes in multiple variants, so they can be used on light or dark +backgrounds, with or without colors. + +### Icon + +
+ + ![netfox icon main](./assets/press-kit/netfox-icon.svg.preview.png) + + [SVG](./assets/press-kit/netfox-icon.svg) | + [PNG](./assets/press-kit/netfox-icon.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-icon.svg.large.png) + +
+ +
+ + ![netfox icon alt](./assets/press-kit/netfox-icon-black.svg.preview.png) + + [SVG](./assets/press-kit/netfox-icon-black.svg) | + [PNG](./assets/press-kit/netfox-icon-black.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-icon-black.svg.large.png) + +
+ +
+ + ![netfox icon alt](./assets/press-kit/netfox-icon-white.svg.preview.png) + + [SVG](./assets/press-kit/netfox-icon-white.svg) | + [PNG](./assets/press-kit/netfox-icon-white.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-icon-white.svg.large.png) + +
+ +### Vertical banner + +
+ + ![netfox banner vertical main](./assets/press-kit/netfox-banner-ver.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-ver.svg) | + [PNG](./assets/press-kit/netfox-banner-ver.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-ver.svg.large.png) + +
+ +
+ + ![netfox banner vertical alt](./assets/press-kit/netfox-banner-ver-alt.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-ver-alt.svg) | + [PNG](./assets/press-kit/netfox-banner-ver-alt.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-ver-alt.svg.large.png) + +
+ +
+ + ![netfox banner vertical black](./assets/press-kit/netfox-banner-ver-black.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-ver-black.svg) | + [PNG](./assets/press-kit/netfox-banner-ver-black.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-ver-black.svg.large.png) + +
+ +
+ + ![netfox banner vertical white](./assets/press-kit/netfox-banner-ver-white.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-ver-white.svg) | + [PNG](./assets/press-kit/netfox-banner-ver-white.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-ver-white.svg.large.png) + +
+ + +### Horizontal banner + +
+ + ![netfox banner horizontal main](./assets/press-kit/netfox-banner-hor.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-hor.svg) | + [PNG](./assets/press-kit/netfox-banner-hor.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-hor.svg.large.png) + +
+ +
+ + ![netfox banner horizontal alt](./assets/press-kit/netfox-banner-hor-alt.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-hor-alt.svg) | + [PNG](./assets/press-kit/netfox-banner-hor-alt.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-hor-alt.svg.large.png) + +
+ +
+ + ![netfox banner horizontal black](./assets/press-kit/netfox-banner-hor-black.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-hor-black.svg) | + [PNG](./assets/press-kit/netfox-banner-hor-black.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-hor-black.svg.large.png) + +
+ +
+ + ![netfox banner horizontal white](./assets/press-kit/netfox-banner-hor-white.svg.preview.png) + + [SVG](./assets/press-kit/netfox-banner-hor-white.svg) | + [PNG](./assets/press-kit/netfox-banner-hor-white.svg.preview.png) | + [PNG large](./assets/press-kit/netfox-banner-hor-white.svg.large.png) + +
+ + + + + +[discussion]: https://github.com/foxssake/netfox/discussions +[Discord]: https://discord.gg/xWGh4GskG5 +[Oxanium]: https://github.com/sevmeyer/oxanium +[SIL Open Font License]: https://openfontlicense.org/ diff --git a/docs/server-hosting.md b/docs/server-hosting.md deleted file mode 100644 index fd039f7..0000000 --- a/docs/server-hosting.md +++ /dev/null @@ -1,160 +0,0 @@ -# Phase 4 — Server Hardening Architecture - -## Overview - -Phase 4 turns the bare dedicated server into a community-hostable, administrable, and discoverable service. Four components work together to create the full server ops experience: - -``` -┌─────────────────────────────────────────────────────┐ -│ GODOT SERVER │ -│ ┌──────────────┐ ┌──────────────┐ ┌────────────┐ │ -│ │ RCON Admin │ │ Config │ │ Anti-Cheat│ │ -│ │ Console │ │ System │ │ Validation│ │ -│ │ (TCP/28960) │ │ (cvars.cfg) │ │ Layer │ │ -│ └──────┬───────┘ └──────┬───────┘ └─────┬──────┘ │ -│ │ │ │ │ -│ └──────────┬──────┘─────────────────┘ │ -│ │ │ -│ ┌──────────▼──────────┐ │ -│ │ Server Browser │ │ -│ │ Heartbeat Sender │ │ -│ │ (POST /heartbeat) │ │ -│ └──────────┬──────────┘ │ -└────────────────────┼────────────────────────────────┘ - │ HTTP (every 60s) -┌────────────────────▼────────────────────────────────┐ -│ MASTER SERVER (Python/Go) │ -│ ┌──────────────────────────────────────────────┐ │ -│ │ REST API: /api/v1/heartbeat │ │ -│ │ /api/v1/servers │ │ -│ │ /api/v1/servers/:id │ │ -│ │ /api/v1/status │ │ -│ └──────────────────────────────────────────────┘ │ -│ ┌──────────────────────────────────────────────┐ │ -│ │ SQLite: servers table, TTL-based expiry │ │ -│ └──────────────────────────────────────────────┘ │ -└────────────────────┬────────────────────────────────┘ - │ HTTP -┌────────────────────▼────────────────────────────────┐ -│ GODOT CLIENT │ -│ ┌──────────────────────────────────────────────┐ │ -│ │ Server Browser UI │ │ -│ │ GET /api/v1/servers → list → connect │ │ -│ └──────────────────────────────────────────────┘ │ -└─────────────────────────────────────────────────────┘ -``` - -## Dependency Graph - -``` -Phase 4 (orchestrator — this doc) - ├── build:rcon-admin-console [coder] — TCP remote admin - ├── build:server-config-system [coder] — cvars + cfg loading - ├── build:server-browser-api [coder] — master server + heartbeat - └── build:anti-cheat-basics [coder] — input validation -``` - -All 4 tasks are **independent** — they can be worked in parallel. The only soft dependencies: -- RCON depends on the config system for its cvars (rcon_enabled, rcon_port, rcon_password) — handle by reading from the shared cvar registry -- Browser heartbeat depends on config system for `sv_master_server` cvar -- Anti-cheat depends on config system for its cvars - -No hard ordering constraints. Each task creates its own files and registers its cvars. - -## Communication Between Components - -| Source | Target | Mechanism | Data | -|--------|--------|-----------|------| -| RCON | Game Server | GDScript signals | `rcon_command` signal (cmd, args) | -| RCON | Config System | Direct cvar read/write | `CvarRegistry.get/set` | -| Browser Heartbeat | Master Server | HTTP POST | JSON heartbeat payload | -| Client Browser | Master Server | HTTP GET | JSON server list | -| Anti-Cheat | Game Server | Per-tick validation callback | Player state snapshots | -| Config System | All | Parse-time cvar registration | cvars.gd static dict | - -## File Structure - -``` -server/ -├── scripts/ -│ ├── rcon_server.gd — TCP listener, auth, command dispatch -│ ├── rcon_command_handler.gd — Command implementations -│ ├── server_browser.gd — Heartbeat sender (HTTP POST) -│ └── anti_cheat.gd — Main anti-cheat coordinator -├── data/ -│ ├── server_config.gd — Cvar registry, config loader -│ ├── cvars.gd — Static cvar definitions with metadata -│ ├── server_default.cfg — Default config shipped with binary -│ └── rcon_password.cfg — RCON password file (chmod 600) -├── server-browser-api/ — Standalone master server service -│ ├── main.py — Python/FastAPI master server -│ ├── requirements.txt -│ └── master_config.json -client/ -└── scripts/ - └── server_browser_ui.gd — In-game server browser UI -``` - -## Config Loading Pipeline - -``` -1. Hardcoded defaults (cvars.gd) - │ -2. server_default.cfg - │ -3. --config (default: server.cfg) - │ -4. Command-line overrides (+cvar value) - │ -5. Map-specific cfg (cfg/.cfg) - │ - ▼ - Final cvar state → Game loop -``` - -## Anti-Cheat Validation Pipeline (per tick) - -``` -Client input packet arrives - │ - ▼ - Input sequence validation (timestamp monotonic, seq# dedup) - │ - ▼ - Movement validation (speed limit, teleport, multi-jump) - │ - ▼ - Fire rate validation (interval, ammo) - │ - ▼ - Command validation (whitelist, rate limit) - │ - ▼ - Log → Correct → Warn → Kick (based on sv_ac_level) -``` - -## CVars Introduced by Phase 4 - -| Cvar | Default | Range | Module | Description | -|------|---------|-------|--------|-------------| -| rcon_enabled | 0 | [0,1] | RCON | Enable RCON TCP server | -| rcon_port | 28960 | [1024,65535] | RCON | RCON listen port | -| sv_master_server | "" | string | Browser | Master server URL | -| sv_server_id | auto | string | Browser | Unique server token | -| sv_heartbeat_interval | 60 | [10,300] | Browser | Heartbeat period (s) | -| sv_server_tags | "" | string | Browser | Comma-separated tags | -| sv_server_password | "" | string | Browser | Server join password | -| sv_ac_level | 2 | [0,3] | Anti-Cheat | Enforcement level | -| sv_ac_speed_tolerance | 1.2 | [1.0,3.0] | Anti-Cheat | Speed violation multiplier | -| sv_ac_max_aim_snap | 180 | [10,360] | Anti-Cheat | Max deg/tick aim change | -| sv_ac_fire_tolerance_ms | 10 | [0,100] | Anti-Cheat | Fire interval tolerance | -| sv_ac_kick_threshold | 5 | [1,20] | Anti-Cheat | Violations before kick | - -## Exit Criteria - -- Community member can download server binary, configure via `server.cfg`, and run it -- RCON is functional: operator connects via `nc`/`telnet` and runs admin commands -- Server registers with master server via heartbeat and appears in the browser -- Client opens server browser, sees the server, and connects -- Anti-cheat corrects speed-hack attempts at enforcement level 2 -- Everything is controllable via cvars in config file or command-line overrides diff --git a/docs/upgrading.md b/docs/upgrading.md new file mode 100644 index 0000000..9dca6f6 --- /dev/null +++ b/docs/upgrading.md @@ -0,0 +1,50 @@ +# Upgrading netfox + +Improvements are fixes are added to netfox with time, based on user feedback, +resulting in newer versions. This page is inteded to help you with upgrading +your game to a newer netfox version. + +## General advice + +### Have a backup + +**Make sure to have a backup** of your project before upgrading. While most +often an addon update should be harmless, it is a good practice to backup your +project regularly, and specifically before risky changes. + +### Disable the addon(s) + +Before upgrading, disable the netfox addon(s) in your project, in Project +Settings. After the upgrade, enable the addon(s) again. + +This helps with cases where an autoload or a project setting is changed. + +## Version-specific steps + +This section has version-specific entries where extra actions might be +necessary. Versions where the general advice holds are left out. + +Make sure to apply all the steps between the versions, e.g. if you're updating +from 1.0.0 to 1.3.0, refer to the sections between the two versions, in this +case v1.1.1. If there are no sections here for your version range, that means +that the upgrade should need no extra action, aside from replacing the old +netfox addon(s) with the new one(s). + +### Unreleased + +* `StateSynchronizer.full_state_interval` is deprecated - use project settings +* `StateSynchronizer.diff_ack_interval` is deprecated and is ignored +* `RollbackSynchronizer.full_state_interval` is deprecated - use project + settings +* `RollbackSynchronizer.diff_ack_interval` is deprecated and is ignored +* `RollbackSynchronizer.enable_input_broadcast` is deprecated - use project + settings +* `NetworkRollback.register_rollback_input_submission()` is deprecated and does + nothing +* `NetworkRollback.free_input_submission_data_for()` is deprecated and does + nothing + +### v1.1.1 + +* Remove `Interpolators` from the project autoloads, it's a static class now. + diff --git a/docs/visuals-architecture.md b/docs/visuals-architecture.md deleted file mode 100644 index 89f051d..0000000 --- a/docs/visuals-architecture.md +++ /dev/null @@ -1,91 +0,0 @@ -# Phase 3 — Visuals & Performance Architecture - -## Scope -Art pass, baked lighting, performance profiling, LOD + occlusion culling for the competitive tactical shooter. -| -|## Dependency Chain (Kanban) -| -|``` -|t_p3_artkit (modular wall/floor kit + PBR materials 1K + art style guide) ✅ DONE -| └── t_p3_lighting (LightmapGI baked lighting + reflection probes) -| └── t_p3_profile (perf budget + LOD + occlusion culling) -|``` -| -|## Deliverables -| -|- **Art style guide**: [docs/art-style-guide.md](docs/art-style-guide.md) — visual direction, modular grid specs, material palette, mapping guidelines -|- **Modular kit scenes**: `client/assets/scenes/modular/` — 11 CSG-based wall/floor/structural pieces + kit_demo showcase scene -|- **PBR materials**: `client/assets/materials/` — 7 StandardMaterial3D .tres files -|- **1K textures**: `client/assets/textures/` — 28 procedural PBR maps (basecolor, normal, roughness, metallic × 7 materials) -|- **Project config**: `client/project.godot` — Godot 4 Forward+ renderer, 128-tick physics, LightmapGI defaults - -## Art Style - -- **Valorant-direction**, not AAA photorealistic -- Clean silhouettes, team-colored zones (CT/blue, T/red-orange) -- 1K PBR textures (base color, normal, roughness, metallic) -- CC0-licensed or custom-created assets - -## Lighting Strategy - -- LightmapGI for all static geometry -- Reflection probes at corridor junctions and open areas -- No SDFGI or real-time GI -- Lightmap texel density: 4-8 per unit walls/floors, 8-16 for focal surfaces - -## Performance Budget - -| Metric | Target | -|--------|--------| -| Frame time | 16ms (60fps) | -| GPU budget | 8ms | -| CPU budget | 6ms | -| Draw calls | 1500-2000 per frame | -| VRAM | 2GB texture pool | -| LOD0 tris/wall | 500-2000 | - -## Deliverables (t_p3_profile — Performance Budget & Profiling) - -### Performance Budget Document -- **docs/performance-budget.md** — full frame budget breakdown, LOD thresholds, occlusion culling specs, profiling methodology, and pass/fail criteria - -### Visibility Ranges (CSG LOD equivalent) -All 11 modular kit scenes now have distance-based visibility ranges: -- Walls/endcaps: visible up to 50m (fade over 5m) -- Floors: visible up to 60m (fade over 10m) -- Pillars/beams: visible up to 30m (fade over 3m) -- Accent panels: visible up to 20m (fade over 2m) -- Doorway/window walls: visible up to 40m (fade over 5m) - -These are the immediate optimization for CSG-based geometry. When maps are built from the modular kit, ~30-50% of distant pieces are automatically culled. - -### Occlusion Culling -- **client/scripts/generate_occluders.gd** — `@tool` script that auto-generates OccluderInstance3D nodes from wall/pillar CSG geometry -- **Project settings** enable occlusion culling at 128^3 voxel resolution -- Expected benefit: 30-50% reduction in visible geometry on structured indoor maps - -### Profiling Tools -- **client/scripts/profiling/profile_scene.gd** — standalone headless profiler that captures per-frame metrics (frame time, GPU time, draw calls, tris, VRAM) and evaluates against budget; produces CSV output + summary stats (P50/P95/P99) -- Usage: `godot --headless --script scripts/profiling/profile_scene.gd --scene res://tools/test_map.tscn` - -### CSG → Mesh Baking Pipeline -- **client/scripts/convert_csg_to_mesh.gd** — `@tool` script that converts CSG nodes to MeshInstance3D with LOD slot framework, enabling traditional mesh LOD for the final optimization pass -- Collision shape preservation, visibility range inheritance - -### Project Configuration -- Forward+ renderer explicitly configured -- Occlusion culling enabled (128^3 voxels, 6 rays/octant) -- LOD settings tuned for competitive FPS scales -- All costly post-processing disabled (SSAO, SSR, glow, volumetric fog, TAA) -- MSAA x2 + debanding for clean image at minimal GPU cost - -## LOD Strategy - -- 3 LOD levels per modular asset -- LOD1 at 15m (50% tris), LOD2 at 40m (25% tris), LOD3 at 80m -- Occlusion culling via OccluderInstance3D auto-generation - -## Reference Hardware - -- GTX 1050 / RX 560 class GPU (or integrated graphics) -- Godot Forward+ renderer diff --git a/examples/forest-brawl/LICENSE b/examples/forest-brawl/LICENSE new file mode 100644 index 0000000..d6238dc --- /dev/null +++ b/examples/forest-brawl/LICENSE @@ -0,0 +1,18 @@ +Copyright 2023 Gálffy Tamás + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/examples/forest-brawl/README.md b/examples/forest-brawl/README.md new file mode 100644 index 0000000..92a405a --- /dev/null +++ b/examples/forest-brawl/README.md @@ -0,0 +1,102 @@ +# Forest Brawl + +An example game made with the [Godot Engine] to take [netfox] for a spin. + +## Features + +* 👥 Play with as many friends as you'd like ( and the network permits ) +* 🌐 Play over LAN or over the internet, anywhere, courtesy of [noray] +* 👑 Knock your friends out and hold on to the crown as long as you can +* 🎁 Stay on top of the powerup meta + +## Overview + +Forest Brawl is a simple party game to play with as many friends as can fit on +the map! Each player can throw bombs, with the goal of knocking the others down +into the abyss. Players get a point for each knockout - the Mysterious Floating +Crown👑 follows the player with the top score, as an assertion of dominance. + +Take note of your surroundings and timings, as powerups are scattered +throughout the map, each awarding you with a random effect. Stay on top of the +powerup respawns and dominate the competition! + +## Install + +### From source + +Clone this repository and open the Godot project in the root. Running the +project will default to Forest Brawl. + +### Release + +TBA + +## Play + +### Setup + +After launching the game, the following screen greets you: + +![Settings screen](screenshots/settings.png) + +Among others, you may specify your player name ( defaults to a random animal ). + +Once done, move on to either the LAN or Noray tab, depending on whether you +want to play over LAN or over the internet. + +### LAN + +![LAN screen](screenshots/lan.png) + +To host a game, specify the port for the server to listen on. The *Address* +field is ignored in this case. When done, press *Host*. + +To join someone's game, specify their device's address and port where the +server is listening. When done, press *Join*. + +### noray + +![noray screen](screenshots/noray.png) + +Specify the noray host ( or leave as-is ), then hit *Connect*. Upon successful connection, the *Open ID* field will change value. + +To host a game, copy the Open ID and press *Host*. Share the copied Open ID +with your friends and have fun! + +To join a game, paste the received Open ID to the *Target Host* field and press +*Join*. If you find yourself often having trouble with connecting on the first +try, you may check *Force Relay* to skip the NAT punchthrough. + +### Controls + +![Gameplay](screenshots/game.png) + +| Input | Function | +|-------------------|----------| +| WASD | Movement | +| Mouse | Aim | +| Space | Jump | +| Left Mouse / Ctrl | Fire | + +> *Note:* Gamepad controls are supported, although it lacks aim assist. + +## License + +Forest Brawl is under the [MIT license](../../LICENSE). + +Sound effects belong to various authors who made their work available through permissive licenses. See [Attribution](sounds/attribution.md). + +The game uses [Kenney]'s [Platformer Kit]. See [license](models/kenney-platformer-kit/License.txt). + +## Issues + +In case of any issues, comments, or questions, please feel free to [open an issue]! + +[Godot engine]: https://godotengine.org/ +[netfox]: https://github.com/foxssake/netfox +[noray]: https://github.com/foxssake/noray + +[Kenney]: https://www.kenney.nl/ +[Platformer Kit]: https://www.kenney.nl/assets/platformer-kit + +[open an issue]: https://github.com/foxssake/netfox/issues diff --git a/examples/forest-brawl/forest-brawl.tscn b/examples/forest-brawl/forest-brawl.tscn new file mode 100644 index 0000000..f93ea23 --- /dev/null +++ b/examples/forest-brawl/forest-brawl.tscn @@ -0,0 +1,374 @@ +[gd_scene load_steps=20 format=3 uid="uid://cwh2p0qb5872o"] + +[ext_resource type="PackedScene" uid="uid://d1544gxqaoptc" path="res://examples/forest-brawl/maps/three-peaks.tscn" id="1_xksrt"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/brawler-spawner.gd" id="5_qv1fx"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/following-camera.gd" id="5_yxhn7"] +[ext_resource type="PackedScene" uid="uid://wi4owat0bml3" path="res://examples/forest-brawl/scenes/brawler.tscn" id="7_tcy3g"] +[ext_resource type="PackedScene" uid="uid://bpf1jdr255nr0" path="res://examples/shared/ui/time-display.tscn" id="9_d2tot"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/score-manager.gd" id="9_vxjwh"] +[ext_resource type="LabelSettings" uid="uid://b4u1aluftkajy" path="res://examples/forest-brawl/ui-settings/player-stat-label.tres" id="10_0ix7v"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="10_ld676"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/settings/vsync-checkbutton.gd" id="11_4x74a"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/random-name-input.gd" id="11_cf8pu"] +[ext_resource type="PackedScene" uid="uid://b1vadi3ma8uiq" path="res://examples/forest-brawl/scenes/brawler-crown.tscn" id="11_eeeag"] +[ext_resource type="Script" path="res://examples/shared/scripts/noray-bootstrapper.gd" id="11_vpdh0"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/player-stats-display.gd" id="12_5kocp"] +[ext_resource type="Script" path="res://examples/shared/scripts/lan-bootstrapper.gd" id="12_gjc7i"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd" id="13_ujuuj"] +[ext_resource type="PackedScene" uid="uid://ojh5xofoserg" path="res://examples/forest-brawl/scenes/score_screen.tscn" id="14_85lvt"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd" id="14_h1iqv"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/settings/volume-slider.gd" id="16_6pky3"] + +[sub_resource type="LabelSettings" id="LabelSettings_l686d"] +font_size = 64 + +[node name="Forest Brawl" type="Node3D"] + +[node name="Three Peaks Map" parent="." instance=ExtResource("1_xksrt")] + +[node name="Network" type="Node" parent="."] + +[node name="Brawler Spawner" type="Node" parent="Network" node_paths=PackedStringArray("spawn_root", "camera", "joining_screen", "name_input")] +unique_name_in_owner = true +script = ExtResource("5_qv1fx") +player_scene = ExtResource("7_tcy3g") +spawn_root = NodePath("../../Players") +camera = NodePath("../../Camera3D") +joining_screen = NodePath("../../UI/Joining Screen") +name_input = NodePath("../../UI/Network Popup/Settings/Player Name/Player Name Input") + +[node name="Players" type="Node" parent="."] + +[node name="ScoreManager" type="Node" parent="." node_paths=PackedStringArray("scorescreen")] +script = ExtResource("9_vxjwh") +scorescreen = NodePath("../UI/Score Screen") + +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 73.7461, 42) +fov = 35.0 +script = ExtResource("5_yxhn7") +distance = 16.0 +approach_time = 0.25 + +[node name="TickInterpolator" type="Node" parent="Camera3D" node_paths=PackedStringArray("root")] +script = ExtResource("10_ld676") +root = NodePath("..") +properties = Array[String]([":global_position"]) + +[node name="Brawler Crown" parent="." instance=ExtResource("11_eeeag")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Time Display" parent="UI" instance=ExtResource("9_d2tot")] +layout_mode = 1 +anchors_preset = 1 +anchor_left = 1.0 +anchor_bottom = 0.0 +offset_left = -1.0 +offset_bottom = 23.0 +grow_horizontal = 0 +grow_vertical = 1 +horizontal_alignment = 2 + +[node name="Network Popup" type="TabContainer" parent="UI"] +custom_minimum_size = Vector2(320, 240) +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -125.5 +offset_top = -105.0 +offset_right = 125.5 +offset_bottom = 105.0 +grow_horizontal = 2 +grow_vertical = 2 +use_hidden_tabs_for_min_size = true + +[node name="Settings" type="VBoxContainer" parent="UI/Network Popup"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Player Name" type="HBoxContainer" parent="UI/Network Popup/Settings"] +layout_mode = 2 + +[node name="Player Name Label" type="Label" parent="UI/Network Popup/Settings/Player Name"] +layout_mode = 2 +text = "Player Name:" + +[node name="Player Name Input" type="LineEdit" parent="UI/Network Popup/Settings/Player Name"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Nameless Brawler" +clear_button_enabled = true +script = ExtResource("11_cf8pu") + +[node name="GridContainer" type="GridContainer" parent="UI/Network Popup/Settings"] +layout_mode = 2 +columns = 2 + +[node name="Fullscreen" type="HBoxContainer" parent="UI/Network Popup/Settings/GridContainer"] +layout_mode = 2 + +[node name="Fullscreen Label" type="Label" parent="UI/Network Popup/Settings/GridContainer/Fullscreen"] +layout_mode = 2 +text = "Fullscreen:" + +[node name="Fullscreen CheckButton" type="CheckButton" parent="UI/Network Popup/Settings/GridContainer/Fullscreen"] +layout_mode = 2 +script = ExtResource("14_h1iqv") + +[node name="V-Sync" type="HBoxContainer" parent="UI/Network Popup/Settings/GridContainer"] +layout_mode = 2 + +[node name="V-Sync Label" type="Label" parent="UI/Network Popup/Settings/GridContainer/V-Sync"] +layout_mode = 2 +text = "V-Sync:" + +[node name="V-Sync CheckButton" type="CheckButton" parent="UI/Network Popup/Settings/GridContainer/V-Sync"] +layout_mode = 2 +script = ExtResource("11_4x74a") + +[node name="Confine mouse" type="HBoxContainer" parent="UI/Network Popup/Settings/GridContainer"] +layout_mode = 2 + +[node name="Confine Mouse Label" type="Label" parent="UI/Network Popup/Settings/GridContainer/Confine mouse"] +layout_mode = 2 +text = "Confine mouse:" + +[node name="Confine Mouse CheckButton" type="CheckButton" parent="UI/Network Popup/Settings/GridContainer/Confine mouse"] +layout_mode = 2 +script = ExtResource("13_ujuuj") + +[node name="Volume" type="HBoxContainer" parent="UI/Network Popup/Settings"] +layout_mode = 2 + +[node name="Volume Label" type="Label" parent="UI/Network Popup/Settings/Volume"] +layout_mode = 2 +text = "Volume:" + +[node name="Volume Slider" type="HSlider" parent="UI/Network Popup/Settings/Volume"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 +value = 100.0 +script = ExtResource("16_6pky3") + +[node name="LAN" type="VBoxContainer" parent="UI/Network Popup"] +visible = false +layout_mode = 2 + +[node name="Address Row" type="HBoxContainer" parent="UI/Network Popup/LAN"] +layout_mode = 2 +size_flags_vertical = 2 + +[node name="Address Label" type="Label" parent="UI/Network Popup/LAN/Address Row"] +layout_mode = 2 +text = "Address:" + +[node name="Address LineEdit" type="LineEdit" parent="UI/Network Popup/LAN/Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 0 +text = "localhost" + +[node name="Port Label" type="Label" parent="UI/Network Popup/LAN/Address Row"] +layout_mode = 2 +text = "Port:" + +[node name="Port LineEdit" type="LineEdit" parent="UI/Network Popup/LAN/Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 0 +text = "16384" + +[node name="Actions Row" type="HBoxContainer" parent="UI/Network Popup/LAN"] +layout_mode = 2 +size_flags_horizontal = 4 + +[node name="Host Only Button" type="Button" parent="UI/Network Popup/LAN/Actions Row"] +layout_mode = 2 +size_flags_horizontal = 4 +text = "Host Only" + +[node name="Host Button" type="Button" parent="UI/Network Popup/LAN/Actions Row"] +layout_mode = 2 +size_flags_horizontal = 4 +text = "Host" + +[node name="Join Button" type="Button" parent="UI/Network Popup/LAN/Actions Row"] +layout_mode = 2 +size_flags_horizontal = 4 +text = "Join" + +[node name="Noray" type="VBoxContainer" parent="UI/Network Popup"] +visible = false +layout_mode = 2 + +[node name="Noray Address Row" type="HBoxContainer" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="Address Label" type="Label" parent="UI/Network Popup/Noray/Noray Address Row"] +layout_mode = 2 +text = "noray host:" + +[node name="Address LineEdit" type="LineEdit" parent="UI/Network Popup/Noray/Noray Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "tomfol.io:8890" +placeholder_text = "noray.example.com:8890" + +[node name="OID Row" type="HBoxContainer" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="OID Label" type="Label" parent="UI/Network Popup/Noray/OID Row"] +layout_mode = 2 +text = "Open ID: " + +[node name="OID Value" type="LineEdit" parent="UI/Network Popup/Noray/OID Row"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "123456789" +editable = false + +[node name="Noray Actions Row" type="HBoxContainer" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="Connect Button" type="Button" parent="UI/Network Popup/Noray/Noray Actions Row"] +layout_mode = 2 +text = "Connect" + +[node name="Disconnect Button" type="Button" parent="UI/Network Popup/Noray/Noray Actions Row"] +layout_mode = 2 +text = "Disconnect" + +[node name="HSeparator" type="HSeparator" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="Connect Host Row" type="HBoxContainer" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="Host Label" type="Label" parent="UI/Network Popup/Noray/Connect Host Row"] +layout_mode = 2 +text = "Target Host: " + +[node name="Host LineEdit" type="LineEdit" parent="UI/Network Popup/Noray/Connect Host Row"] +layout_mode = 2 +size_flags_horizontal = 3 +placeholder_text = "Host OID" + +[node name="Connect Actions Row" type="HBoxContainer" parent="UI/Network Popup/Noray"] +layout_mode = 2 + +[node name="Host Only Button" type="Button" parent="UI/Network Popup/Noray/Connect Actions Row"] +layout_mode = 2 +text = "Host Only" + +[node name="Host Button" type="Button" parent="UI/Network Popup/Noray/Connect Actions Row"] +layout_mode = 2 +text = "Host" + +[node name="Join Button" type="Button" parent="UI/Network Popup/Noray/Connect Actions Row"] +layout_mode = 2 +text = "Join" + +[node name="Force Relay Checkbox" type="CheckBox" parent="UI/Network Popup/Noray/Connect Actions Row"] +layout_mode = 2 +text = "Force Relay" + +[node name="LAN Bootstrapper" type="Node" parent="UI/Network Popup" node_paths=PackedStringArray("connect_ui", "address_input", "port_input")] +script = ExtResource("12_gjc7i") +connect_ui = NodePath("..") +address_input = NodePath("../LAN/Address Row/Address LineEdit") +port_input = NodePath("../LAN/Address Row/Port LineEdit") + +[node name="Noray Bootstrapper" type="Node" parent="UI/Network Popup" node_paths=PackedStringArray("connect_ui", "noray_address_input", "oid_input", "host_oid_input", "force_relay_check")] +script = ExtResource("11_vpdh0") +connect_ui = NodePath("..") +noray_address_input = NodePath("../Noray/Noray Address Row/Address LineEdit") +oid_input = NodePath("../Noray/OID Row/OID Value") +host_oid_input = NodePath("../Noray/Connect Host Row/Host LineEdit") +force_relay_check = NodePath("../Noray/Connect Actions Row/Force Relay Checkbox") + +[node name="Player stats" type="Control" parent="UI" node_paths=PackedStringArray("score_label", "score_manager")] +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +script = ExtResource("12_5kocp") +score_label = NodePath("VBoxContainer/Score HBox/Score Value") +score_manager = NodePath("../../ScoreManager") + +[node name="VBoxContainer" type="VBoxContainer" parent="UI/Player stats"] +layout_mode = 1 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="Score HBox" type="HBoxContainer" parent="UI/Player stats/VBoxContainer"] +layout_mode = 2 + +[node name="Score Label" type="Label" parent="UI/Player stats/VBoxContainer/Score HBox"] +layout_mode = 2 +text = "Score:" +label_settings = ExtResource("10_0ix7v") + +[node name="Score Value" type="Label" parent="UI/Player stats/VBoxContainer/Score HBox"] +layout_mode = 2 +text = "8 +" +label_settings = ExtResource("10_0ix7v") + +[node name="Joining Screen" type="Control" parent="UI"] +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="ColorRect" type="ColorRect" parent="UI/Joining Screen"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0, 0, 0, 1) + +[node name="Label" type="Label" parent="UI/Joining Screen"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +text = "Joining" +label_settings = SubResource("LabelSettings_l686d") +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="Score Screen" parent="UI" instance=ExtResource("14_85lvt")] +visible = false +layout_mode = 1 + +[connection signal="pressed" from="UI/Network Popup/LAN/Actions Row/Host Only Button" to="UI/Network Popup/LAN Bootstrapper" method="host_only"] +[connection signal="pressed" from="UI/Network Popup/LAN/Actions Row/Host Button" to="UI/Network Popup/LAN Bootstrapper" method="host"] +[connection signal="pressed" from="UI/Network Popup/LAN/Actions Row/Join Button" to="UI/Network Popup/LAN Bootstrapper" method="join"] +[connection signal="pressed" from="UI/Network Popup/Noray/Noray Actions Row/Connect Button" to="UI/Network Popup/Noray Bootstrapper" method="connect_to_noray"] +[connection signal="pressed" from="UI/Network Popup/Noray/Noray Actions Row/Disconnect Button" to="UI/Network Popup/Noray Bootstrapper" method="disconnect_from_noray"] +[connection signal="pressed" from="UI/Network Popup/Noray/Connect Actions Row/Host Only Button" to="UI/Network Popup/Noray Bootstrapper" method="host_only"] +[connection signal="pressed" from="UI/Network Popup/Noray/Connect Actions Row/Host Button" to="UI/Network Popup/Noray Bootstrapper" method="host"] +[connection signal="pressed" from="UI/Network Popup/Noray/Connect Actions Row/Join Button" to="UI/Network Popup/Noray Bootstrapper" method="join"] diff --git a/examples/forest-brawl/maps/legacy-islands.tscn b/examples/forest-brawl/maps/legacy-islands.tscn new file mode 100644 index 0000000..8f0e47b --- /dev/null +++ b/examples/forest-brawl/maps/legacy-islands.tscn @@ -0,0 +1,94 @@ +[gd_scene load_steps=9 format=3 uid="uid://c5dweds7vxp6r"] + +[ext_resource type="MeshLibrary" uid="uid://do0y7f0sy12jg" path="res://examples/forest-brawl/models/forest-blocks.meshlib" id="1_wxqy3"] +[ext_resource type="PackedScene" uid="uid://ijqx6kjl3qf4" path="res://examples/forest-brawl/scenes/powerup.tscn" id="2_brprm"] +[ext_resource type="PackedScene" uid="uid://ble0j0npslm4j" path="res://examples/forest-brawl/models/kenney-platformer-kit/flowers.glb" id="3_k5qfl"] +[ext_resource type="PackedScene" uid="uid://b16iwdgqjfxgo" path="res://examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb" id="4_2jkmf"] +[ext_resource type="PackedScene" uid="uid://dsk6x773uq4ej" path="res://examples/forest-brawl/models/kenney-platformer-kit/plant.glb" id="5_sshuf"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_xjsj7"] + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_xjsj7") + +[sub_resource type="Environment" id="Environment_c7ydc"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") +tonemap_mode = 2 +glow_enabled = true + +[node name="Legacy Islands Map" type="Node3D"] + +[node name="GridMap" type="GridMap" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0, -8) +mesh_library = ExtResource("1_wxqy3") +cell_size = Vector3(1, 1, 1) +cell_center_y = false +data = { +"cells": PackedInt32Array(0, 65531, 0, 65535, 65531, 0, 0, 65530, 0, 65535, 65530, 0, 65534, 65532, 655362, 65535, 65532, 1048576, 0, 65532, 655361, 65534, 65531, 1048577, 65534, 65530, 1048577, 5, 65530, 1441793, 5, 65531, 1441793, 5, 65532, 1441794, 65534, 65525, 1048578, 65535, 65525, 1, 0, 65525, 1, 5, 65525, 2, 1, 65531, 1441792, 1, 65530, 1441792, 2, 65530, 1441792, 2, 65531, 1441792, 3, 65531, 1441792, 3, 65530, 1441792, 4, 65530, 1441792, 4, 65531, 1441792, 4, 65529, 1441792, 4, 65528, 1441792, 4, 65527, 1441792, 4, 65526, 1441792, 3, 65526, 1441792, 2, 65526, 1441792, 1, 65527, 1441792, 1, 65526, 1441792, 0, 65526, 1441792, 0, 65527, 1441792, 65535, 65527, 1441792, 65535, 65526, 1441792, 65535, 65528, 1441792, 65535, 65529, 1441792, 0, 65529, 1441792, 0, 65528, 1441792, 1, 65529, 1441792, 1, 65528, 1441792, 2, 65528, 1441792, 2, 65527, 1441792, 3, 65527, 1441792, 3, 65528, 1441792, 3, 65529, 1441792, 2, 65529, 1441792, 65534, 65529, 1048577, 65534, 65528, 1048577, 65534, 65527, 1048577, 65534, 65526, 1048577, 1, 65525, 1, 2, 65525, 1, 3, 65525, 1, 4, 65525, 1, 5, 65526, 1441793, 5, 65527, 1441793, 5, 65528, 1441793, 5, 65529, 1441793, 4, 65532, 655361, 3, 65532, 655361, 2, 65532, 655361, 1, 65532, 655361, 20, 2, 1048578, 20, 3, 1048577, 20, 4, 1048577, 20, 5, 1048577, 20, 6, 1048576, 20, 7, 1048577, 20, 8, 1048577, 20, 9, 655362, 21, 2, 1, 21, 3, 1441792, 21, 4, 1441792, 21, 5, 1441792, 21, 6, 1048576, 21, 7, 0, 21, 8, 0, 21, 9, 655361, 22, 2, 1, 22, 3, 1441792, 22, 4, 1441792, 22, 5, 1441792, 22, 6, 1441792, 22, 7, 1048576, 22, 8, 0, 22, 9, 655361, 23, 2, 1, 23, 3, 1441792, 23, 4, 1441792, 23, 5, 1441792, 23, 6, 1441792, 23, 7, 1048576, 23, 8, 1441792, 23, 9, 655361, 24, 2, 1, 24, 3, 1441792, 24, 4, 1441792, 24, 5, 1441792, 24, 6, 1441792, 24, 7, 1048576, 24, 8, 1441792, 24, 9, 655361, 25, 2, 1, 25, 3, 1441792, 25, 4, 1441792, 25, 5, 1441792, 25, 6, 1441792, 25, 7, 1441792, 25, 8, 1441792, 25, 9, 655361, 26, 2, 1, 26, 3, 1441792, 26, 4, 1441792, 26, 5, 1441792, 26, 6, 1441792, 26, 7, 1441792, 26, 8, 1441792, 26, 9, 655361, 27, 2, 2, 27, 3, 1441793, 27, 4, 1441793, 27, 5, 1441793, 27, 6, 1441793, 27, 7, 1441793, 27, 8, 1441793, 27, 9, 1441794, 65525, 13, 1048578, 65525, 14, 1048577, 65525, 15, 1048577, 65525, 16, 1048577, 65525, 17, 1048577, 65525, 18, 1048577, 65525, 19, 1048577, 65525, 20, 655362, 65526, 13, 1, 65526, 14, 1441792, 65526, 15, 1441792, 65526, 16, 1441792, 65526, 17, 1441792, 65526, 18, 0, 65526, 19, 0, 65526, 20, 655361, 65527, 13, 1, 65527, 14, 1441792, 65527, 15, 1441792, 65527, 16, 1441792, 65527, 17, 1441792, 65527, 18, 0, 65527, 19, 0, 65527, 20, 655361, 65528, 13, 1, 65528, 14, 1441792, 65528, 15, 1441792, 65528, 16, 1441792, 65528, 17, 1441792, 65528, 18, 1441792, 65528, 19, 1441792, 65528, 20, 655361, 65529, 13, 1, 65529, 14, 1441792, 65529, 15, 1441792, 65529, 16, 1441792, 65529, 17, 1441792, 65529, 18, 1441792, 65529, 19, 1441792, 65529, 20, 655361, 65530, 13, 1, 65530, 14, 1441792, 65530, 15, 1441792, 65530, 16, 1441792, 65530, 17, 1441792, 65530, 18, 1441792, 65530, 19, 1441792, 65530, 20, 655361, 65531, 13, 1048576, 65531, 14, 1048576, 65531, 15, 1441792, 65531, 16, 1441792, 65531, 17, 1441792, 65531, 18, 1441792, 65531, 19, 1441792, 65531, 20, 655361, 65532, 13, 1048576, 65532, 14, 1441793, 65532, 15, 1441793, 65532, 16, 1441793, 65532, 17, 1441793, 65532, 18, 1441793, 65532, 19, 1441793, 65532, 20, 1441794, 13, 5, 655360, 12, 5, 655360, 11, 5, 655360, 10, 5, 655360, 9, 5, 655360, 8, 5, 655360, 7, 5, 655360, 6, 5, 655360, 6, 6, 655360, 5, 6, 655360, 4, 7, 655360, 4, 8, 655360, 4, 9, 655360, 4, 10, 655360, 5, 11, 655360, 5, 12, 655360, 6, 12, 655360, 7, 12, 655360, 7, 13, 655360, 8, 13, 655360, 9, 13, 655360, 10, 12, 655360, 11, 11, 655360, 12, 11, 655360, 13, 10, 655360, 14, 9, 655360, 14, 8, 655360, 14, 7, 655360, 13, 7, 655360, 12, 6, 655360, 5, 7, 655360, 5, 8, 655360, 5, 9, 655360, 6, 10, 655360, 7, 11, 655360, 8, 11, 655360, 9, 11, 655360, 10, 10, 655360, 11, 10, 655360, 11, 9, 655360, 12, 9, 655360, 12, 8, 655360, 13, 8, 655360, 13, 6, 655360, 14, 6, 655360, 14, 5, 655360, 12, 10, 655360, 10, 11, 655360, 8, 12, 655360, 9, 12, 655360, 6, 11, 655360, 6, 9, 655360, 5, 10, 655360, 6, 8, 655360, 6, 7, 655360, 7, 6, 655360, 8, 6, 655360, 9, 6, 655360, 10, 6, 655360, 11, 6, 655360, 13, 9, 655360, 12, 7, 655360, 10, 7, 655360, 9, 7, 655360, 8, 7, 655360, 8, 8, 655360, 7, 8, 655360, 7, 9, 655360, 8, 10, 655360, 8, 9, 655360, 7, 7, 655360, 7, 10, 655360, 9, 10, 655360, 9, 9, 655360, 9, 8, 655360, 10, 8, 655360, 11, 8, 655360, 11, 7, 655360, 10, 9, 655360, 5, 5, 655360, 4, 5, 655360, 3, 5, 655360, 3, 6, 655360, 3, 7, 655360, 4, 11, 655360, 4, 12, 655360, 4, 13, 655360, 3, 12, 655360, 3, 8, 655360, 4, 6, 655360, 3, 9, 655360, 3, 10, 655360, 3, 11, 655360, 3, 13, 655360, 5, 13, 655360, 6, 13, 655360, 12, 13, 655360, 13, 13, 655360, 14, 13, 655360, 15, 13, 655360, 15, 12, 655360, 14, 12, 655360, 15, 11, 655360, 14, 11, 655360, 14, 10, 655360, 15, 10, 655360, 13, 12, 655360, 13, 11, 655360, 15, 9, 655360, 15, 8, 655360, 15, 7, 655360, 15, 6, 1048576, 15, 5, 655360, 15, 14, 655361, 14, 14, 655361, 13, 14, 655361, 12, 14, 655361, 11, 14, 655361, 10, 14, 655361, 9, 14, 655361, 5, 14, 655361, 4, 14, 655361, 3, 14, 655361, 2, 13, 1048577, 2, 12, 1048577, 2, 11, 1048577, 2, 10, 1048577, 2, 9, 1048577, 2, 8, 1048577, 2, 7, 1048576, 2, 6, 1048577, 2, 5, 1048577, 3, 4, 1, 4, 4, 1, 5, 4, 1, 6, 4, 1, 7, 4, 1, 8, 4, 1, 9, 4, 1, 10, 4, 1, 11, 4, 1, 12, 4, 1, 13, 4, 1, 14, 4, 1, 15, 4, 1, 16, 5, 1441793, 16, 6, 1048576, 16, 7, 1441793, 16, 8, 1441793, 16, 9, 1441793, 16, 10, 1441793, 16, 11, 1441793, 16, 12, 1441793, 16, 13, 1441793, 16, 4, 2, 16, 14, 1441794, 2, 14, 655362, 2, 4, 1048578, 12, 12, 655360, 11, 12, 655360, 11, 13, 655360, 10, 13, 655360, 8, 14, 655361, 7, 14, 655361, 6, 14, 655361, 65535, 65533, 1048576, 65535, 65534, 1048576, 65535, 65535, 1048576, 65535, 0, 1048576, 65535, 1, 1048576, 65535, 2, 1048576, 65535, 4, 1048576, 0, 4, 1048576, 0, 5, 1048576, 0, 6, 1048576, 0, 7, 1048576, 1, 7, 1048576, 1, 65535, 1048576, 0, 65535, 1048576, 65534, 65535, 1048576, 65534, 0, 1048576, 1, 0, 1048576, 65535, 5, 1048576, 65535, 6, 1048576, 65535, 7, 1048576, 65535, 8, 1048576, 65535, 9, 1048576, 65534, 10, 1048576, 65533, 10, 1048576, 65533, 11, 1048576, 65532, 11, 1048576, 65532, 12, 1048576, 17, 6, 1048576, 18, 6, 1048576, 19, 6, 1048576, 65535, 3, 1048576, 0, 0, 1048576, 65534, 9, 0, 65535, 10, 0, 65534, 11, 0, 65533, 12, 0, 65531, 12, 0) +} +metadata/_editor_floor_ = Vector3(0, 0, 0) + +[node name="Powerup" parent="." instance=ExtResource("2_brprm")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.00248, 3, 0.00557518) + +[node name="Powerup2" parent="." instance=ExtResource("2_brprm")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.99752, 3, -14.9944) + +[node name="Powerup3" parent="." instance=ExtResource("2_brprm")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14.9975, 3, 9.00558) + +[node name="Foliage" type="Node" parent="."] + +[node name="flowers" parent="Foliage" instance=ExtResource("3_k5qfl")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.45702, 1, -1.05848) + +[node name="flowers2" parent="Foliage" instance=ExtResource("3_k5qfl")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.543, 1, 3.9415) + +[node name="flowers3" parent="Foliage" instance=ExtResource("3_k5qfl")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.2015, 1, 0.84537) + +[node name="flowers4" parent="Foliage" instance=ExtResource("3_k5qfl")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.5772, 1, 1.49496) + +[node name="mushrooms" parent="Foliage" instance=ExtResource("4_2jkmf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.6467, 1, -13.6528) + +[node name="mushrooms2" parent="Foliage" instance=ExtResource("4_2jkmf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.6467, 1, -17.6528) + +[node name="mushrooms3" parent="Foliage" instance=ExtResource("4_2jkmf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.07012, 1, -15.1469) + +[node name="plant" parent="Foliage" instance=ExtResource("5_sshuf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -13.6591, 1, 6.7486) + +[node name="plant2" parent="Foliage" instance=ExtResource("5_sshuf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12.5256, 1, 10.0441) + +[node name="plant3" parent="Foliage" instance=ExtResource("5_sshuf")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17.3956, -2.20899, 10.0441) + +[node name="Spawn Points" type="Node" parent="."] + +[node name="Spawn" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, 0) + +[node name="Spawn2" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17, 4, 11) + +[node name="Spawn3" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 4, -2) + +[node name="Spawn4" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 4, -18) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_c7ydc") diff --git a/examples/forest-brawl/maps/three-peaks.tscn b/examples/forest-brawl/maps/three-peaks.tscn new file mode 100644 index 0000000..d0a2115 --- /dev/null +++ b/examples/forest-brawl/maps/three-peaks.tscn @@ -0,0 +1,163 @@ +[gd_scene load_steps=12 format=3 uid="uid://d1544gxqaoptc"] + +[ext_resource type="MeshLibrary" uid="uid://do0y7f0sy12jg" path="res://examples/forest-brawl/models/forest-blocks.meshlib" id="1_124j6"] +[ext_resource type="PackedScene" uid="uid://ijqx6kjl3qf4" path="res://examples/forest-brawl/scenes/powerup.tscn" id="2_4e2nk"] +[ext_resource type="PackedScene" uid="uid://c12hb5btenkcy" path="res://examples/forest-brawl/scenes/doodads/clouds-1.tscn" id="3_ucvrj"] +[ext_resource type="PackedScene" uid="uid://c5l8x303sjqhs" path="res://examples/forest-brawl/scenes/doodads/clouds-2.tscn" id="4_dfl7h"] +[ext_resource type="PackedScene" uid="uid://dq14vitb32x5p" path="res://examples/forest-brawl/scenes/doodads/clouds-3.tscn" id="5_doyli"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/cloud-area3d.gd" id="6_ymimw"] +[ext_resource type="PackedScene" uid="uid://cjavt41cokqv5" path="res://examples/forest-brawl/scenes/moving-platform.tscn" id="7_fuq03"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_xjsj7"] +sky_top_color = Color(0.384314, 0.454902, 0.54902, 1) +ground_bottom_color = Color(0.313726, 0.419608, 0.560784, 1) +ground_horizon_color = Color(0.4896, 0.58944, 0.72, 1) +ground_curve = 0.32 + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_xjsj7") + +[sub_resource type="Environment" id="Environment_c7ydc"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") +tonemap_mode = 2 + +[sub_resource type="BoxShape3D" id="BoxShape3D_4u8tk"] +size = Vector3(240, 48, 120) + +[node name="Three Peaks Map" type="Node3D"] + +[node name="GridMap" type="GridMap" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0, -8) +mesh_library = ExtResource("1_124j6") +cell_size = Vector3(1, 1, 1) +cell_center_y = false +data = { +"cells": PackedInt32Array(3, 6, 0, 3, 7, 0, 3, 8, 0, 4, 5, 0, 4, 6, 0, 4, 7, 0, 4, 8, 0, 4, 9, 0, 5, 4, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 6, 3, 0, 6, 4, 0, 6, 5, 0, 6, 6, 0, 6, 7, 0, 6, 8, 0, 6, 9, 0, 6, 10, 0, 6, 11, 0, 7, 3, 0, 7, 4, 0, 7, 5, 0, 7, 6, 0, 7, 7, 0, 7, 8, 0, 7, 9, 0, 7, 10, 0, 7, 11, 0, 8, 3, 0, 8, 4, 0, 8, 5, 0, 8, 6, 0, 8, 7, 0, 8, 8, 0, 8, 9, 0, 8, 10, 0, 8, 11, 0, 9, 4, 0, 9, 5, 0, 9, 6, 0, 9, 7, 0, 9, 8, 0, 9, 9, 0, 9, 10, 0, 10, 5, 0, 10, 6, 0, 10, 7, 0, 10, 8, 0, 10, 9, 0, 11, 6, 0, 11, 7, 0, 11, 8, 0, 8, 12, 0, 9, 11, 0, 9, 12, 0, 9, 13, 0, 10, 10, 0, 10, 11, 0, 10, 12, 0, 10, 13, 0, 11, 5, 0, 11, 9, 0, 11, 10, 0, 11, 11, 0, 11, 12, 0, 11, 13, 0, 12, 6, 0, 12, 7, 0, 12, 8, 0, 12, 9, 0, 12, 10, 0, 12, 11, 0, 12, 12, 0, 13, 7, 0, 13, 8, 0, 13, 9, 0, 13, 10, 0, 13, 11, 0, 14, 8, 0, 14, 9, 0, 14, 10, 0, 2, 10, 0, 2, 11, 0, 2, 12, 0, 3, 9, 0, 3, 10, 0, 3, 11, 0, 3, 12, 0, 3, 13, 0, 4, 10, 0, 4, 11, 0, 4, 12, 0, 4, 13, 0, 4, 14, 0, 5, 11, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 6, 12, 0, 6, 13, 0, 6, 14, 0, 6, 15, 0, 7, 12, 0, 7, 13, 0, 7, 14, 0, 7, 15, 0, 8, 13, 0, 8, 14, 0, 1, 6, 0, 1, 7, 0, 1, 8, 0, 2, 5, 0, 2, 6, 0, 2, 7, 0, 2, 8, 0, 2, 9, 0, 3, 4, 0, 3, 5, 0, 4, 3, 0, 4, 4, 0, 5, 3, 0, 65535, 65527, 0, 65535, 65528, 0, 65535, 65529, 0, 0, 65526, 0, 0, 65527, 0, 0, 65528, 0, 0, 65529, 0, 0, 65530, 0, 1, 65525, 0, 1, 65526, 0, 1, 65527, 0, 1, 65528, 0, 1, 65529, 0, 1, 65530, 0, 1, 65531, 0, 2, 65524, 0, 2, 65525, 0, 2, 65526, 0, 2, 65527, 0, 2, 65528, 0, 2, 65529, 0, 2, 65530, 0, 2, 65531, 0, 2, 65532, 0, 3, 65524, 0, 3, 65525, 0, 3, 65526, 0, 3, 65527, 0, 3, 65528, 0, 3, 65529, 0, 3, 65530, 0, 3, 65531, 0, 3, 65532, 0, 4, 65523, 0, 4, 65524, 0, 4, 65527, 0, 4, 65528, 0, 4, 65529, 0, 4, 65530, 0, 4, 65531, 0, 4, 65532, 0, 5, 65522, 0, 5, 65523, 0, 5, 65524, 0, 5, 65525, 0, 5, 65529, 0, 5, 65530, 0, 5, 65531, 0, 5, 65532, 0, 6, 65522, 0, 6, 65523, 0, 6, 65524, 0, 6, 65525, 0, 6, 65526, 0, 6, 65527, 0, 6, 65530, 0, 6, 65531, 0, 6, 65532, 0, 7, 65522, 0, 7, 65523, 0, 7, 65524, 0, 7, 65525, 0, 7, 65526, 0, 7, 65527, 0, 7, 65528, 0, 7, 65531, 0, 7, 65532, 0, 8, 65522, 0, 8, 65523, 0, 8, 65524, 0, 8, 65525, 0, 8, 65526, 0, 8, 65527, 0, 8, 65528, 0, 8, 65529, 0, 8, 65532, 0, 9, 65522, 0, 9, 65523, 0, 9, 65524, 0, 9, 65525, 0, 9, 65526, 0, 9, 65527, 0, 9, 65528, 0, 9, 65529, 0, 9, 65530, 0, 9, 65531, 0, 9, 65532, 0, 10, 65523, 0, 10, 65524, 0, 10, 65525, 0, 10, 65526, 0, 10, 65527, 0, 10, 65528, 0, 10, 65529, 0, 10, 65530, 0, 10, 65531, 0, 11, 65524, 0, 11, 65525, 0, 11, 65526, 0, 11, 65527, 0, 11, 65528, 0, 11, 65529, 0, 11, 65530, 0, 11, 65531, 0, 12, 65525, 0, 12, 65526, 0, 12, 65527, 0, 12, 65528, 0, 12, 65529, 0, 12, 65530, 0, 12, 65531, 0, 13, 65527, 0, 13, 65528, 0, 13, 65529, 0, 13, 65530, 0, 13, 65531, 0, 14, 65528, 0, 14, 65529, 0, 14, 65530, 0, 65526, 16, 0, 65526, 17, 0, 65526, 18, 0, 65527, 15, 0, 65527, 16, 0, 65527, 17, 0, 65527, 18, 0, 65527, 19, 0, 65528, 14, 0, 65528, 15, 0, 65528, 16, 0, 65528, 17, 0, 65528, 18, 0, 65528, 19, 0, 65528, 20, 0, 65529, 13, 0, 65529, 14, 0, 65529, 15, 0, 65529, 16, 0, 65529, 17, 0, 65529, 18, 0, 65529, 19, 0, 65529, 20, 0, 65529, 21, 0, 65530, 13, 0, 65530, 14, 0, 65530, 15, 0, 65530, 16, 0, 65530, 17, 0, 65530, 18, 0, 65530, 19, 0, 65530, 20, 0, 65530, 21, 0, 65531, 13, 0, 65531, 14, 0, 65531, 15, 0, 65531, 16, 0, 65531, 17, 0, 65531, 18, 0, 65531, 19, 0, 65531, 20, 0, 65531, 21, 0, 65532, 14, 0, 65532, 15, 0, 65532, 16, 0, 65532, 17, 0, 65532, 18, 0, 65532, 19, 0, 65532, 20, 0, 65532, 21, 0, 65532, 22, 0, 65533, 14, 0, 65533, 15, 0, 65533, 16, 0, 65533, 17, 0, 65533, 18, 0, 65533, 19, 0, 65533, 20, 0, 65533, 21, 0, 65533, 22, 0, 65534, 14, 0, 65534, 15, 0, 65534, 16, 0, 65534, 17, 0, 65534, 18, 0, 65534, 19, 0, 65534, 20, 0, 65534, 21, 0, 65534, 22, 0, 65535, 15, 0, 65535, 16, 0, 65535, 17, 0, 65535, 18, 0, 65535, 19, 0, 65535, 20, 0, 65535, 21, 0, 0, 16, 0, 0, 18, 0, 0, 19, 0, 0, 20, 0, 1, 18, 0, 1, 19, 0, 16, 16, 0, 16, 17, 0, 16, 18, 0, 17, 15, 0, 17, 16, 0, 17, 17, 0, 17, 18, 0, 17, 19, 0, 18, 14, 0, 18, 15, 0, 18, 16, 0, 18, 17, 0, 18, 18, 0, 18, 19, 0, 18, 20, 0, 19, 13, 0, 19, 14, 0, 19, 15, 0, 19, 16, 0, 19, 17, 0, 19, 18, 0, 19, 19, 0, 19, 20, 0, 19, 21, 0, 20, 12, 0, 20, 13, 0, 20, 14, 0, 20, 15, 0, 20, 16, 0, 20, 17, 0, 20, 18, 0, 20, 19, 0, 20, 20, 0, 20, 21, 0, 21, 11, 0, 21, 12, 0, 21, 13, 0, 21, 14, 0, 21, 15, 0, 21, 16, 0, 21, 17, 0, 21, 18, 0, 21, 19, 0, 21, 20, 0, 21, 21, 0, 22, 11, 0, 22, 12, 0, 22, 13, 0, 22, 14, 0, 22, 15, 0, 22, 16, 0, 22, 17, 0, 22, 18, 0, 22, 19, 0, 22, 20, 0, 22, 21, 0, 23, 11, 0, 23, 12, 0, 23, 13, 0, 23, 14, 0, 23, 15, 0, 23, 16, 0, 23, 17, 0, 23, 18, 0, 23, 19, 0, 23, 20, 0, 23, 21, 0, 24, 11, 0, 24, 12, 0, 24, 13, 0, 24, 14, 0, 24, 15, 0, 24, 16, 0, 24, 17, 0, 24, 18, 0, 24, 19, 0, 24, 20, 0, 24, 21, 0, 25, 11, 0, 25, 12, 0, 25, 13, 0, 25, 14, 0, 25, 15, 0, 25, 16, 0, 25, 17, 0, 25, 18, 0, 25, 19, 0, 25, 20, 0, 25, 21, 0, 26, 12, 0, 26, 13, 0, 26, 14, 0, 26, 15, 0, 26, 16, 0, 26, 17, 0, 26, 18, 0, 26, 19, 0, 26, 20, 0, 27, 13, 0, 27, 14, 0, 27, 15, 0, 27, 16, 0, 27, 17, 0, 27, 18, 0, 27, 19, 0, 28, 14, 0, 28, 15, 0, 28, 16, 0, 28, 17, 0, 28, 18, 0, 4, 65525, 0, 4, 65526, 0, 5, 65526, 0, 5, 65527, 0, 5, 65528, 0, 6, 65528, 0, 6, 65529, 0, 7, 65529, 0, 7, 65530, 0, 8, 65530, 0, 8, 65531, 0, 65539, 65526, 18, 65538, 65528, 18, 65540, 65527, 18, 65541, 65525, 18, 65544, 65526, 18, 65546, 65528, 18, 65547, 65525, 18, 65549, 65529, 18, 65540, 65529, 18, 65539, 65528, 23, 65538, 65529, 23, 65546, 65527, 23, 65545, 65528, 23, 65548, 65529, 23, 65546, 65525, 23, 65543, 65526, 23, 65536, 65527, 16, 21, 22, 0, 22, 22, 0, 22, 23, 0, 23, 22, 0, 23, 23, 0, 23, 24, 0, 24, 22, 0, 24, 23, 0, 24, 24, 0, 25, 22, 0, 25, 23, 0, 25, 24, 0, 26, 21, 0, 26, 22, 0, 26, 23, 0, 26, 24, 0, 27, 20, 0, 27, 21, 0, 27, 22, 0, 27, 23, 0, 27, 24, 0, 28, 19, 0, 28, 20, 0, 28, 21, 0, 28, 22, 0, 28, 23, 0, 29, 16, 0, 29, 17, 0, 29, 18, 0, 29, 19, 0, 29, 20, 0, 29, 21, 0, 29, 22, 0, 30, 17, 0, 30, 18, 0, 30, 19, 0, 30, 20, 0, 30, 21, 0, 65558, 16, 0, 65558, 17, 0, 65558, 18, 0, 65559, 15, 0, 65559, 16, 0, 65559, 17, 0, 65559, 18, 0, 65559, 19, 0, 65560, 14, 0, 65560, 15, 0, 65560, 16, 0, 65560, 17, 0, 65560, 18, 0, 65560, 19, 0, 65560, 20, 0, 65561, 13, 0, 65561, 14, 0, 65561, 15, 0, 65561, 16, 0, 65561, 17, 0, 65561, 18, 0, 65561, 19, 0, 65561, 20, 0, 65561, 21, 0, 65562, 13, 0, 65562, 14, 0, 65562, 15, 0, 65562, 16, 0, 65562, 17, 0, 65562, 18, 0, 65562, 19, 0, 65562, 20, 0, 65562, 21, 0, 65563, 13, 0, 65563, 14, 0, 65563, 15, 0, 65563, 16, 0, 65563, 17, 0, 65563, 18, 0, 65563, 19, 0, 65563, 20, 0, 65563, 21, 0, 65564, 14, 0, 65564, 15, 0, 65564, 16, 0, 65564, 17, 0, 65564, 18, 0, 65564, 19, 0, 65564, 20, 0, 65565, 15, 0, 65565, 16, 0, 65565, 17, 0, 65565, 18, 0, 65565, 19, 0, 65566, 16, 0, 65566, 17, 0, 65566, 18, 0, 65558, 19, 0, 65558, 20, 0, 65558, 21, 0, 65558, 22, 0, 65559, 20, 0, 65559, 21, 0, 65559, 22, 0, 65559, 23, 0, 65560, 21, 0, 65560, 22, 0, 65560, 23, 0, 65560, 24, 0, 65561, 22, 0, 65561, 23, 0, 65561, 24, 0, 65562, 22, 0, 65562, 23, 0, 65562, 24, 0, 65563, 22, 0, 65563, 23, 0, 65564, 21, 0, 65564, 22, 0, 65565, 20, 0, 65565, 21, 0, 65557, 16, 1048593, 65557, 17, 1048593, 65557, 18, 1048593, 65557, 19, 1048593, 65557, 20, 1048593, 65557, 21, 1048593, 65557, 22, 1048593, 65558, 15, 1048593, 65559, 14, 1048593, 65560, 13, 1048593, 65558, 23, 1048593, 65559, 24, 1048593, 65563, 24, 1441794, 65564, 23, 1441794, 65565, 22, 1441794, 65566, 21, 1441809, 65566, 20, 1441809, 65566, 19, 1441809, 131097, 15, 1441802, 131097, 16, 1441802, 131097, 17, 1441802, 131097, 18, 1441802, 131097, 19, 1441802, 131097, 20, 1441802, 131097, 21, 1441802, 131097, 22, 1441802, 131097, 23, 1441802, 131098, 23, 1441802, 131096, 23, 1441802, 131095, 22, 1441802, 131095, 21, 1441802, 131095, 20, 1441802, 131095, 19, 1441802, 131095, 18, 1441802, 131095, 17, 1441802, 131095, 16, 1441802, 131096, 15, 1441802, 131098, 15, 1441802, 131099, 16, 1441802, 131099, 17, 1441802, 131099, 18, 1441802, 131099, 19, 1441802, 131099, 20, 1441802, 131099, 21, 1441802, 131099, 22, 1441802, 131098, 22, 1441802, 131098, 21, 1441802, 131098, 20, 1441802, 131098, 19, 1441802, 131098, 17, 1441802, 131098, 16, 1441802, 131098, 18, 1441802, 131096, 18, 1441802, 131096, 17, 1441802, 131096, 16, 1441802, 131096, 19, 1441802, 131096, 20, 1441802, 131096, 21, 1441802, 131096, 22, 1441802, 131100, 16, 1441806, 131100, 17, 1441806, 131100, 18, 1441806, 131100, 19, 1441806, 131100, 20, 1441806, 131100, 21, 1441806, 131100, 22, 1441806, 131099, 23, 1441806, 131099, 15, 1441806, 131095, 15, 1048590, 131094, 16, 1048590, 131094, 17, 1048590, 131094, 18, 1048590, 131094, 19, 1048590, 131094, 20, 1048590, 131094, 21, 1048590, 131094, 22, 1048590, 131095, 23, 1048590, 196634, 16, 1048595, 196632, 22, 1048595, 196634, 21, 1048595, 65558, 12, 1048598, 65557, 12, 1048594, 65554, 16, 1048598, 65555, 20, 1048598, 196633, 17, 1048592, 16, 14, 1048577, 16, 15, 0, 17, 14, 0, 14, 13, 1048576, 13, 12, 1048576, 14, 11, 1048576, 15, 12, 1048576, 14, 12, 1048576, 15, 13, 1048576, 15, 11, 1048576, 13, 13, 1048576, 12, 13, 1048576, 1, 17, 0, 0, 17, 0, 3, 14, 655362, 2, 14, 1048585, 0, 15, 2, 1, 15, 1048585, 2, 15, 1048585, 1, 14, 1048585, 2, 13, 655362, 1, 16, 2, 131067, 15, 1048594, 131069, 18, 1048594, 131065, 18, 1048594, 65526, 47, 0, 65527, 46, 0, 65527, 47, 0, 65527, 48, 0, 65528, 47, 0, 65532, 46, 0, 65532, 47, 0, 65532, 48, 0, 65533, 45, 0, 65533, 46, 0, 65533, 47, 0, 65533, 48, 0, 65533, 49, 0, 65534, 45, 0, 65534, 46, 0, 65534, 47, 0, 65534, 48, 0, 65534, 49, 0, 65535, 45, 0, 65535, 46, 0, 65535, 47, 0, 65535, 48, 0, 65535, 49, 0, 0, 46, 0, 0, 47, 0, 0, 48, 0, 4, 46, 0, 4, 47, 0, 4, 48, 0, 5, 45, 0, 5, 46, 0, 5, 47, 0, 5, 48, 0, 5, 49, 0, 6, 44, 0, 6, 45, 0, 6, 46, 0, 6, 47, 0, 6, 48, 0, 6, 49, 0, 6, 50, 0, 7, 43, 0, 7, 44, 0, 7, 45, 0, 7, 46, 0, 7, 47, 0, 7, 48, 0, 7, 49, 0, 7, 50, 0, 7, 51, 0, 8, 43, 0, 8, 44, 0, 8, 45, 0, 8, 46, 0, 8, 47, 0, 8, 48, 0, 8, 49, 0, 8, 50, 0, 8, 51, 0, 9, 43, 0, 9, 44, 0, 9, 45, 0, 9, 46, 0, 9, 47, 0, 9, 48, 0, 9, 49, 0, 9, 50, 0, 9, 51, 0, 10, 44, 0, 10, 45, 0, 10, 46, 0, 10, 47, 0, 10, 48, 0, 10, 49, 0, 10, 50, 0, 11, 45, 0, 11, 46, 0, 11, 47, 0, 11, 48, 0, 11, 49, 0, 12, 46, 0, 12, 47, 0, 12, 48, 0, 16, 45, 0, 16, 46, 0, 16, 47, 0, 16, 48, 0, 16, 49, 0, 17, 44, 0, 17, 45, 0, 17, 46, 0, 17, 47, 0, 17, 48, 0, 17, 49, 0, 17, 50, 0, 18, 43, 0, 18, 44, 0, 18, 45, 0, 18, 46, 0, 18, 47, 0, 18, 48, 0, 18, 49, 0, 18, 50, 0, 18, 51, 0, 19, 42, 0, 19, 43, 0, 19, 44, 0, 19, 45, 0, 19, 46, 0, 19, 47, 0, 19, 48, 0, 19, 49, 0, 19, 50, 0, 19, 51, 0, 19, 52, 0, 20, 42, 0, 20, 43, 0, 20, 44, 0, 20, 45, 0, 20, 46, 0, 20, 47, 0, 20, 48, 0, 20, 49, 0, 20, 50, 0, 20, 51, 0, 20, 52, 0, 21, 42, 0, 21, 43, 0, 21, 44, 0, 21, 45, 0, 21, 46, 0, 21, 47, 0, 21, 48, 0, 21, 49, 0, 21, 50, 0, 21, 51, 0, 21, 52, 0, 22, 42, 0, 22, 43, 0, 22, 44, 0, 22, 45, 0, 22, 46, 0, 22, 47, 0, 22, 48, 0, 22, 49, 0, 22, 50, 0, 22, 51, 0, 22, 52, 0, 23, 42, 0, 23, 43, 0, 23, 44, 0, 23, 45, 0, 23, 46, 0, 23, 47, 0, 23, 48, 0, 23, 49, 0, 23, 50, 0, 23, 51, 0, 23, 52, 0, 24, 43, 0, 24, 44, 0, 24, 45, 0, 24, 46, 0, 24, 47, 0, 24, 48, 0, 24, 49, 0, 24, 50, 0, 24, 51, 0, 25, 44, 0, 25, 45, 0, 25, 46, 0, 25, 47, 0, 25, 48, 0, 25, 49, 0, 25, 50, 0, 26, 45, 0, 26, 46, 0, 26, 47, 0, 26, 48, 0, 26, 49, 0, 196635, 19, 24, 65546, 8, 21, 65546, 9, 21, 65546, 10, 21, 65545, 10, 21, 65546, 11, 21, 65547, 11, 21, 65548, 10, 21, 65548, 9, 21, 65547, 9, 21, 65547, 10, 18, 65539, 7, 21, 65539, 8, 21, 65540, 8, 21, 65541, 8, 21, 65542, 8, 21, 65542, 7, 21, 65541, 7, 21, 65540, 7, 18, 65541, 6, 21, 65540, 6, 21, 65540, 9, 21, 65541, 9, 21, 65545, 9, 21, 65547, 8, 21, 65541, 15, 20, 65539, 13, 20, 9, 3, 2, 10, 4, 2, 12, 5, 2, 13, 6, 2, 14, 7, 2, 15, 10, 2, 16, 12, 2, 17, 13, 2, 26, 11, 2, 27, 12, 2, 65532, 13, 2, 14, 65527, 2, 13, 65526, 2, 12, 65524, 2, 11, 65523, 2, 10, 65522, 2, 14, 65531, 1441794, 10, 65532, 1441794, 9, 14, 1441794, 8, 15, 1441794, 1, 20, 1441794, 0, 21, 1441794, 65535, 22, 1441794, 65531, 22, 655362, 65528, 21, 655362, 65527, 20, 655362, 65526, 19, 655362, 4, 15, 655362, 1, 9, 655362, 1, 65532, 655362, 0, 65531, 655362, 65535, 65530, 655362, 18, 21, 655362, 17, 20, 655362, 16, 19, 655362, 21, 23, 655362, 20, 22, 655362, 22, 24, 655362, 15, 15, 655362, 14, 14, 655362, 18, 13, 1048578, 19, 12, 1048578, 20, 11, 1048578, 65528, 13, 1048578, 65527, 14, 1048578, 65526, 15, 1048578, 1, 5, 1048578, 2, 4, 1048578, 3, 3, 1048578, 65535, 65526, 1048578, 0, 65525, 1048578, 1, 65524, 1048578, 3, 65523, 1048578, 4, 65522, 1048578, 65535, 14, 2, 28, 24, 1441794, 29, 23, 1441794, 30, 22, 1441794, 28, 13, 2, 29, 14, 2, 30, 15, 2, 30, 16, 0, 65564, 13, 2, 65565, 14, 2, 65566, 15, 2, 16, 13, 0, 15, 14, 0) +} +metadata/_editor_floor_ = Vector3(0, 0, 0) + +[node name="Mountain Clouds" parent="." instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.824, 2.5, 12.082) + +[node name="Moving Platform" parent="." instance=ExtResource("7_fuq03")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, -6) + +[node name="Moving Platform2" parent="." instance=ExtResource("7_fuq03")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10) + +[node name="Target" parent="Moving Platform2" index="2"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 4) + +[node name="Powerups" type="Node" parent="."] + +[node name="Powerup" parent="Powerups" instance=ExtResource("2_4e2nk")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 3, -17) + +[node name="Powerup2" parent="Powerups" instance=ExtResource("2_4e2nk")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 3, -23) + +[node name="Powerup3" parent="Powerups" instance=ExtResource("2_4e2nk")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.5, 5, 11.5) + +[node name="Powerup4" parent="Powerups" instance=ExtResource("2_4e2nk")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 3, 10) + +[node name="Spawn Points" type="Node" parent="."] + +[node name="Spawn" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 4, -2) + +[node name="Spawn2" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 4, 0) + +[node name="Spawn3" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 4, 5) + +[node name="Spawn4" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 4, 9) + +[node name="Spawn6" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 4, -14) + +[node name="Spawn5" type="Node3D" parent="Spawn Points" groups=["Spawn Points"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 8, 12) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true +directional_shadow_split_2 = 0.15 +directional_shadow_blend_splits = true +directional_shadow_max_distance = 256.0 + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_c7ydc") + +[node name="Clouds" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -20, 0) +visible = false + +[node name="Clouds 1" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20.6817, 0, -3.66238) + +[node name="Clouds 2" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.32475, -20, 17.9888) + +[node name="Clouds 3" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.283, 0, -3.92444) + +[node name="Clouds 4" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 55.582, -20, 18.7428) + +[node name="Clouds 5" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -36.7315, 0, 28.3296) + +[node name="Clouds 6" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -48.2573, -20, -12.8183) + +[node name="Clouds 7" parent="Clouds" instance=ExtResource("3_ucvrj")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.1548, 0, -24.8353) + +[node name="Clouds 8" parent="Clouds" instance=ExtResource("4_dfl7h")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14.5082, -20, 21.8356) + +[node name="Clouds 9" parent="Clouds" instance=ExtResource("4_dfl7h")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.3786, 0, 36.3439) + +[node name="Clouds 10" parent="Clouds" instance=ExtResource("4_dfl7h")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 39.1283, -20, 10.9911) + +[node name="Clouds 11" parent="Clouds" instance=ExtResource("4_dfl7h")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -22.1287, 0, -21.396) + +[node name="Clouds 12" parent="Clouds" instance=ExtResource("5_doyli")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -42.3523, -20, 9.08597) + +[node name="Clouds 13" parent="Clouds" instance=ExtResource("5_doyli")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40.7403, 0, -16.7065) + +[node name="Clouds 14" parent="Clouds" instance=ExtResource("5_doyli")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 47.335, -20, 33.4129) + +[node name="Clouds 15" parent="Clouds" instance=ExtResource("5_doyli")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 79.7221, 0, 4.68955) + +[node name="Clouds 16" parent="Clouds" instance=ExtResource("5_doyli")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -71.8085, 0, 21.5426) + +[node name="Area3D" type="Area3D" parent="."] +monitoring = false +monitorable = false +script = ExtResource("6_ymimw") +clouds = Array[PackedScene]([ExtResource("3_ucvrj"), ExtResource("4_dfl7h"), ExtResource("5_doyli")]) +count = 24 +float_speed_min = 0.25 +float_speed_max = 2.0 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Area3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -34, 0) +shape = SubResource("BoxShape3D_4u8tk") + +[editable path="Moving Platform2"] diff --git a/examples/forest-brawl/models/brawler-crown.glb b/examples/forest-brawl/models/brawler-crown.glb new file mode 100644 index 0000000..c774e5a Binary files /dev/null and b/examples/forest-brawl/models/brawler-crown.glb differ diff --git a/examples/forest-brawl/models/brawler-crown.glb.import b/examples/forest-brawl/models/brawler-crown.glb.import new file mode 100644 index 0000000..10c1dee --- /dev/null +++ b/examples/forest-brawl/models/brawler-crown.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://sinafrhckrei" +path="res://.godot/imported/brawler-crown.glb-f23b53d845fcae378bd7ccbe51318ec3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/brawler-crown.glb" +dest_files=["res://.godot/imported/brawler-crown.glb-f23b53d845fcae378bd7ccbe51318ec3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/forest-blocks.meshlib b/examples/forest-brawl/models/forest-blocks.meshlib new file mode 100644 index 0000000..a9f7810 Binary files /dev/null and b/examples/forest-brawl/models/forest-blocks.meshlib differ diff --git a/examples/forest-brawl/models/forest-blocks.tscn b/examples/forest-brawl/models/forest-blocks.tscn new file mode 100644 index 0000000..e1c4087 --- /dev/null +++ b/examples/forest-brawl/models/forest-blocks.tscn @@ -0,0 +1,1929 @@ +[gd_scene load_steps=124 format=3 uid="uid://b0xo8a0npigch"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gwh3m"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_t48if"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_prf1l"] +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 12, 0, 9, 0, 11, 0, 11, 0, 13, 0, 12, 0, 11, 0, 1, 0, 13, 0, 1, 0, 14, 0, 13, 0, 14, 0, 15, 0, 13, 0, 1, 0, 16, 0, 14, 0, 16, 0, 17, 0, 14, 0, 1, 0, 18, 0, 16, 0, 18, 0, 19, 0, 16, 0, 1, 0, 20, 0, 18, 0, 1, 0, 21, 0, 20, 0, 1, 0, 22, 0, 21, 0, 1, 0, 0, 0, 22, 0, 9, 0, 12, 0, 11, 0, 13, 0, 11, 0, 12, 0, 1, 0, 11, 0, 13, 0, 14, 0, 1, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 1, 0, 14, 0, 17, 0, 16, 0, 14, 0, 18, 0, 1, 0, 16, 0, 19, 0, 18, 0, 16, 0, 20, 0, 1, 0, 18, 0, 21, 0, 1, 0, 20, 0, 22, 0, 1, 0, 21, 0, 0, 0, 1, 0, 22, 0, 10, 0, 23, 0, 24, 0, 24, 0, 11, 0, 10, 0, 24, 0, 25, 0, 11, 0, 25, 0, 24, 0, 26, 0, 25, 0, 27, 0, 11, 0, 27, 0, 25, 0, 28, 0, 27, 0, 29, 0, 11, 0, 29, 0, 27, 0, 30, 0, 29, 0, 31, 0, 11, 0, 31, 0, 29, 0, 32, 0, 31, 0, 3, 0, 11, 0, 3, 0, 5, 0, 11, 0, 3, 0, 31, 0, 33, 0, 23, 0, 10, 0, 24, 0, 11, 0, 24, 0, 10, 0, 25, 0, 24, 0, 11, 0, 24, 0, 25, 0, 26, 0, 27, 0, 25, 0, 11, 0, 25, 0, 27, 0, 28, 0, 29, 0, 27, 0, 11, 0, 27, 0, 29, 0, 30, 0, 31, 0, 29, 0, 11, 0, 29, 0, 31, 0, 32, 0, 3, 0, 31, 0, 11, 0, 31, 0, 3, 0, 33, 0, 5, 0, 3, 0, 11, 0, 5, 0, 8, 0, 1, 0, 1, 0, 11, 0, 5, 0, 7, 0, 34, 0, 35, 0, 35, 0, 8, 0, 7, 0, 35, 0, 36, 0, 8, 0, 36, 0, 35, 0, 37, 0, 36, 0, 38, 0, 8, 0, 38, 0, 36, 0, 39, 0, 38, 0, 40, 0, 8, 0, 40, 0, 38, 0, 41, 0, 40, 0, 42, 0, 8, 0, 42, 0, 40, 0, 43, 0, 42, 0, 2, 0, 8, 0, 2, 0, 1, 0, 8, 0, 2, 0, 42, 0, 44, 0, 34, 0, 7, 0, 35, 0, 8, 0, 35, 0, 7, 0, 36, 0, 35, 0, 8, 0, 35, 0, 36, 0, 37, 0, 38, 0, 36, 0, 8, 0, 36, 0, 38, 0, 39, 0, 40, 0, 38, 0, 8, 0, 38, 0, 40, 0, 41, 0, 42, 0, 40, 0, 8, 0, 40, 0, 42, 0, 43, 0, 2, 0, 42, 0, 8, 0, 42, 0, 2, 0, 44, 0, 1, 0, 2, 0, 8, 0, 5, 0, 4, 0, 45, 0, 45, 0, 46, 0, 5, 0, 46, 0, 8, 0, 5, 0, 46, 0, 47, 0, 8, 0, 46, 0, 48, 0, 47, 0, 47, 0, 49, 0, 8, 0, 47, 0, 50, 0, 49, 0, 49, 0, 51, 0, 8, 0, 49, 0, 52, 0, 51, 0, 51, 0, 53, 0, 8, 0, 53, 0, 54, 0, 8, 0, 54, 0, 55, 0, 8, 0, 55, 0, 6, 0, 8, 0, 4, 0, 5, 0, 45, 0, 46, 0, 45, 0, 5, 0, 8, 0, 46, 0, 5, 0, 47, 0, 46, 0, 8, 0, 48, 0, 46, 0, 47, 0, 49, 0, 47, 0, 8, 0, 50, 0, 47, 0, 49, 0, 51, 0, 49, 0, 8, 0, 52, 0, 49, 0, 51, 0, 53, 0, 51, 0, 8, 0, 54, 0, 53, 0, 8, 0, 55, 0, 54, 0, 8, 0, 6, 0, 55, 0, 8, 0), +"lods": [0.0588186, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 13, 0, 9, 0, 11, 0, 11, 0, 1, 0, 13, 0, 1, 0, 14, 0, 13, 0, 1, 0, 16, 0, 14, 0, 1, 0, 18, 0, 16, 0, 1, 0, 22, 0, 18, 0, 1, 0, 0, 0, 22, 0, 9, 0, 13, 0, 11, 0, 1, 0, 11, 0, 13, 0, 14, 0, 1, 0, 13, 0, 16, 0, 1, 0, 14, 0, 18, 0, 1, 0, 16, 0, 22, 0, 1, 0, 18, 0, 0, 0, 1, 0, 22, 0, 24, 0, 11, 0, 10, 0, 24, 0, 25, 0, 11, 0, 25, 0, 27, 0, 11, 0, 27, 0, 29, 0, 11, 0, 29, 0, 31, 0, 11, 0, 31, 0, 3, 0, 11, 0, 3, 0, 5, 0, 11, 0, 11, 0, 24, 0, 10, 0, 25, 0, 24, 0, 11, 0, 27, 0, 25, 0, 11, 0, 29, 0, 27, 0, 11, 0, 31, 0, 29, 0, 11, 0, 3, 0, 31, 0, 11, 0, 5, 0, 3, 0, 11, 0, 5, 0, 8, 0, 1, 0, 1, 0, 11, 0, 5, 0, 35, 0, 8, 0, 7, 0, 35, 0, 36, 0, 8, 0, 36, 0, 38, 0, 8, 0, 38, 0, 40, 0, 8, 0, 40, 0, 42, 0, 8, 0, 42, 0, 2, 0, 8, 0, 2, 0, 1, 0, 8, 0, 8, 0, 35, 0, 7, 0, 36, 0, 35, 0, 8, 0, 38, 0, 36, 0, 8, 0, 40, 0, 38, 0, 8, 0, 42, 0, 40, 0, 8, 0, 2, 0, 42, 0, 8, 0, 1, 0, 2, 0, 8, 0, 5, 0, 4, 0, 46, 0, 46, 0, 8, 0, 5, 0, 46, 0, 47, 0, 8, 0, 47, 0, 49, 0, 8, 0, 49, 0, 51, 0, 8, 0, 51, 0, 53, 0, 8, 0, 53, 0, 55, 0, 8, 0, 55, 0, 6, 0, 8, 0, 4, 0, 5, 0, 46, 0, 8, 0, 46, 0, 5, 0, 47, 0, 46, 0, 8, 0, 49, 0, 47, 0, 8, 0, 51, 0, 49, 0, 8, 0, 53, 0, 51, 0, 8, 0, 55, 0, 53, 0, 8, 0, 6, 0, 55, 0, 8, 0), 0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 13, 0, 9, 0, 11, 0, 11, 0, 1, 0, 13, 0, 1, 0, 0, 0, 13, 0, 9, 0, 13, 0, 11, 0, 1, 0, 11, 0, 13, 0, 0, 0, 1, 0, 13, 0, 24, 0, 11, 0, 10, 0, 24, 0, 3, 0, 11, 0, 3, 0, 5, 0, 11, 0, 11, 0, 24, 0, 10, 0, 3, 0, 24, 0, 11, 0, 5, 0, 3, 0, 11, 0, 5, 0, 8, 0, 1, 0, 1, 0, 11, 0, 5, 0, 35, 0, 8, 0, 7, 0, 35, 0, 2, 0, 8, 0, 2, 0, 1, 0, 8, 0, 8, 0, 35, 0, 7, 0, 2, 0, 35, 0, 8, 0, 1, 0, 2, 0, 8, 0, 5, 0, 4, 0, 46, 0, 46, 0, 8, 0, 5, 0, 46, 0, 6, 0, 8, 0, 4, 0, 5, 0, 46, 0, 8, 0, 46, 0, 5, 0, 6, 0, 46, 0, 8, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 60, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(8, 0, 56, 0, 57, 0, 57, 0, 1, 0, 8, 0, 57, 0, 58, 0, 11, 0, 11, 0, 1, 0, 57, 0, 57, 0, 56, 0, 59, 0, 59, 0, 58, 0, 57, 0, 11, 0, 58, 0, 59, 0, 59, 0, 5, 0, 11, 0, 8, 0, 5, 0, 59, 0, 59, 0, 56, 0, 8, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 60, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_k1g66"] +resource_name = "block_Mesh block" +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(155, 12, 35, 192, 36, 127, 145, 193, 0, 0, 0, 0, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 0, 0, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 122, 57, 174, 140, 107, 199, 193, 0, 122, 57, 174, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 117, 37, 204, 53, 140, 107, 199, 193, 117, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 181, 37, 204, 181, 140, 107, 199, 193, 181, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 83, 187, 24, 41, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 83, 187, 24, 41, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 101, 199, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 101, 199, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 205, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 112, 194, 204, 167, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 112, 194, 204, 167, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 183, 237, 91, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 183, 237, 91, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 29, 0, 30, 0, 27, 0, 28, 0, 31, 0, 29, 0, 31, 0, 32, 0, 29, 0, 28, 0, 33, 0, 31, 0, 33, 0, 34, 0, 31, 0, 28, 0, 35, 0, 33, 0, 28, 0, 36, 0, 35, 0, 28, 0, 37, 0, 36, 0, 28, 0, 38, 0, 37, 0, 41, 0, 39, 0, 40, 0, 42, 0, 40, 0, 39, 0, 43, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 44, 0, 42, 0, 46, 0, 43, 0, 44, 0, 47, 0, 46, 0, 44, 0, 48, 0, 43, 0, 46, 0, 49, 0, 48, 0, 46, 0, 50, 0, 43, 0, 48, 0, 51, 0, 43, 0, 50, 0, 52, 0, 43, 0, 51, 0, 53, 0, 43, 0, 52, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 55, 0, 59, 0, 58, 0, 60, 0, 57, 0, 60, 0, 58, 0, 61, 0, 60, 0, 62, 0, 57, 0, 62, 0, 60, 0, 63, 0, 62, 0, 64, 0, 57, 0, 64, 0, 62, 0, 65, 0, 64, 0, 66, 0, 57, 0, 66, 0, 67, 0, 57, 0, 66, 0, 64, 0, 68, 0, 71, 0, 69, 0, 70, 0, 72, 0, 70, 0, 69, 0, 73, 0, 70, 0, 72, 0, 70, 0, 73, 0, 74, 0, 75, 0, 73, 0, 72, 0, 73, 0, 75, 0, 76, 0, 77, 0, 75, 0, 72, 0, 75, 0, 77, 0, 78, 0, 79, 0, 77, 0, 72, 0, 77, 0, 79, 0, 80, 0, 81, 0, 79, 0, 72, 0, 79, 0, 81, 0, 82, 0, 83, 0, 81, 0, 72, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 90, 0, 88, 0, 89, 0, 89, 0, 91, 0, 90, 0, 89, 0, 92, 0, 91, 0, 92, 0, 89, 0, 93, 0, 92, 0, 94, 0, 91, 0, 94, 0, 92, 0, 95, 0, 94, 0, 96, 0, 91, 0, 96, 0, 94, 0, 97, 0, 96, 0, 98, 0, 91, 0, 98, 0, 96, 0, 99, 0, 98, 0, 100, 0, 91, 0, 100, 0, 101, 0, 91, 0, 100, 0, 98, 0, 102, 0, 105, 0, 103, 0, 104, 0, 106, 0, 104, 0, 103, 0, 107, 0, 104, 0, 106, 0, 104, 0, 107, 0, 108, 0, 109, 0, 107, 0, 106, 0, 107, 0, 109, 0, 110, 0, 111, 0, 109, 0, 106, 0, 109, 0, 111, 0, 112, 0, 113, 0, 111, 0, 106, 0, 111, 0, 113, 0, 114, 0, 115, 0, 113, 0, 106, 0, 113, 0, 115, 0, 116, 0, 117, 0, 115, 0, 106, 0, 120, 0, 118, 0, 119, 0, 119, 0, 121, 0, 120, 0, 121, 0, 122, 0, 120, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 123, 0, 125, 0, 122, 0, 123, 0, 126, 0, 125, 0, 125, 0, 127, 0, 122, 0, 125, 0, 128, 0, 127, 0, 127, 0, 129, 0, 122, 0, 129, 0, 130, 0, 122, 0, 130, 0, 131, 0, 122, 0, 131, 0, 132, 0, 122, 0, 135, 0, 133, 0, 134, 0, 136, 0, 134, 0, 133, 0, 137, 0, 136, 0, 133, 0, 138, 0, 136, 0, 137, 0, 139, 0, 136, 0, 138, 0, 140, 0, 138, 0, 137, 0, 141, 0, 138, 0, 140, 0, 142, 0, 140, 0, 137, 0, 143, 0, 140, 0, 142, 0, 144, 0, 142, 0, 137, 0, 145, 0, 144, 0, 137, 0, 146, 0, 145, 0, 137, 0, 147, 0, 146, 0, 137, 0), +"lods": [0.0588186, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 27, 0, 24, 0, 25, 0, 25, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 28, 0, 31, 0, 29, 0, 28, 0, 33, 0, 31, 0, 28, 0, 37, 0, 33, 0, 28, 0, 38, 0, 37, 0, 41, 0, 42, 0, 40, 0, 43, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 46, 0, 43, 0, 44, 0, 48, 0, 43, 0, 46, 0, 52, 0, 43, 0, 48, 0, 53, 0, 43, 0, 52, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 60, 0, 57, 0, 60, 0, 62, 0, 57, 0, 62, 0, 64, 0, 57, 0, 64, 0, 66, 0, 57, 0, 66, 0, 67, 0, 57, 0, 72, 0, 70, 0, 69, 0, 73, 0, 70, 0, 72, 0, 75, 0, 73, 0, 72, 0, 77, 0, 75, 0, 72, 0, 79, 0, 77, 0, 72, 0, 81, 0, 79, 0, 72, 0, 83, 0, 81, 0, 72, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 89, 0, 91, 0, 90, 0, 89, 0, 92, 0, 91, 0, 92, 0, 94, 0, 91, 0, 94, 0, 96, 0, 91, 0, 96, 0, 98, 0, 91, 0, 98, 0, 100, 0, 91, 0, 100, 0, 101, 0, 91, 0, 106, 0, 104, 0, 103, 0, 107, 0, 104, 0, 106, 0, 109, 0, 107, 0, 106, 0, 111, 0, 109, 0, 106, 0, 113, 0, 111, 0, 106, 0, 115, 0, 113, 0, 106, 0, 117, 0, 115, 0, 106, 0, 120, 0, 118, 0, 121, 0, 121, 0, 122, 0, 120, 0, 121, 0, 123, 0, 122, 0, 123, 0, 125, 0, 122, 0, 125, 0, 127, 0, 122, 0, 127, 0, 129, 0, 122, 0, 129, 0, 131, 0, 122, 0, 131, 0, 132, 0, 122, 0, 135, 0, 133, 0, 136, 0, 137, 0, 136, 0, 133, 0, 138, 0, 136, 0, 137, 0, 140, 0, 138, 0, 137, 0, 142, 0, 140, 0, 137, 0, 144, 0, 142, 0, 137, 0, 146, 0, 144, 0, 137, 0, 147, 0, 146, 0, 137, 0), 0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 27, 0, 24, 0, 25, 0, 25, 0, 28, 0, 27, 0, 28, 0, 38, 0, 27, 0, 41, 0, 42, 0, 40, 0, 43, 0, 40, 0, 42, 0, 53, 0, 43, 0, 42, 0, 55, 0, 57, 0, 56, 0, 55, 0, 66, 0, 57, 0, 66, 0, 67, 0, 57, 0, 72, 0, 70, 0, 69, 0, 81, 0, 70, 0, 72, 0, 83, 0, 81, 0, 72, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 89, 0, 91, 0, 90, 0, 89, 0, 100, 0, 91, 0, 100, 0, 101, 0, 91, 0, 106, 0, 104, 0, 103, 0, 115, 0, 104, 0, 106, 0, 117, 0, 115, 0, 106, 0, 120, 0, 118, 0, 121, 0, 121, 0, 122, 0, 120, 0, 121, 0, 132, 0, 122, 0, 135, 0, 133, 0, 136, 0, 137, 0, 136, 0, 133, 0, 147, 0, 136, 0, 137, 0)], +"material": SubResource("StandardMaterial3D_gwh3m"), +"name": "grass", +"primitive": 3, +"vertex_count": 168, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 255, 255, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 255, 255, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 255, 255, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 255, 255, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 255, 255, 254, 127, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(155, 12, 35, 192, 36, 127, 145, 193, 0, 0, 0, 0, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 0, 0, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 122, 57, 174, 140, 107, 199, 193, 0, 122, 57, 174, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 117, 37, 204, 53, 140, 107, 199, 193, 117, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 181, 37, 204, 181, 140, 107, 199, 193, 181, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 83, 187, 24, 41, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 83, 187, 24, 41, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 101, 199, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 101, 199, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 205, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 112, 194, 204, 167, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 112, 194, 204, 167, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 183, 237, 91, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 183, 237, 91, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0), +"material": SubResource("StandardMaterial3D_t48if"), +"name": "dirt", +"primitive": 3, +"vertex_count": 168, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 80, 166, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 80, 166, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_prf1l") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_w5axk"] +data = PackedVector3Array(0.5, 0.8415, -0.5915, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.633, 0.7696, 0.4167, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5915, 0.8415, 0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0.1667, 0.633, 0.7696, 0.25, 0.5915, 0.8415, 0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, 0, 0.5915, 0.8415, -0.1667, 0.633, 0.7696, -0.0833, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.633, 0.7696, -0.25, 0.5915, 0.8415, -0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, -0.3333, 0.633, 0.7696, -0.25, 0.5, 1, -0.5, 0.633, 0.7696, -0.4167, 0.5915, 0.8415, -0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.633, 0.7696, -0.4167, 0.5915, 0.8415, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.5, 1, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, -0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.25, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.5915, 0.8415, 0.1667, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, -0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.633, 0.7696, -0.0833, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, 0, 0.633, 0.7696, -0.25, 0.5, 1, -0.5, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, -0.3333, 0.5, 1, -0.5, 0.633, 0.7696, -0.25, 0.633, 0.7696, -0.4167, 0.5, 1, -0.5, 0.5915, 0.8415, -0.3333, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.633, 0.7696, -0.4167, 0.5, 0.8415, 0.5915, 0.4167, 0.7696, 0.633, 0.3333, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, 0.4167, 0.7696, 0.633, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.5, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 0.8415, -0.5915, -0.4167, 0.7696, -0.633, -0.3333, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.25, 0.7696, -0.633, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, 0, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, 0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, 0.0833, 0.7696, -0.633, 0.1667, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, 0.3333, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, 0.25, 0.7696, -0.633, 0.3333, 0.8415, -0.5915, 0.5, 0.8415, -0.5915, -0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, 0.4167, 0.7696, -0.633, -0.4167, 0.7696, -0.633, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.5, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.25, 0.7696, -0.633, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, 0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, 0.0833, 0.7696, -0.633, 0.3333, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, 0.1667, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, 0.25, 0.7696, -0.633, 0.5, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, 0.3333, 0.8415, -0.5915, 0.5, 0.8415, -0.5915, 0.4167, 0.7696, -0.633, 0.5, 1, -0.5, 0.5, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.633, 0.7696, 0.4167, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.5915, 0.8415, 0.1667, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.4167, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, -0.5, -0.5, 1, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u075j"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_onw0q"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_xfyt1"] +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 5, 0, 12, 0, 13, 0, 13, 0, 3, 0, 5, 0, 13, 0, 14, 0, 3, 0, 14, 0, 13, 0, 15, 0, 14, 0, 16, 0, 3, 0, 16, 0, 14, 0, 17, 0, 16, 0, 18, 0, 3, 0, 18, 0, 16, 0, 19, 0, 18, 0, 20, 0, 3, 0, 20, 0, 18, 0, 21, 0, 20, 0, 6, 0, 3, 0, 6, 0, 8, 0, 3, 0, 6, 0, 20, 0, 22, 0, 12, 0, 5, 0, 13, 0, 3, 0, 13, 0, 5, 0, 14, 0, 13, 0, 3, 0, 13, 0, 14, 0, 15, 0, 16, 0, 14, 0, 3, 0, 14, 0, 16, 0, 17, 0, 18, 0, 16, 0, 3, 0, 16, 0, 18, 0, 19, 0, 20, 0, 18, 0, 3, 0, 18, 0, 20, 0, 21, 0, 6, 0, 20, 0, 3, 0, 20, 0, 6, 0, 22, 0, 8, 0, 6, 0, 3, 0, 23, 0, 0, 0, 2, 0, 2, 0, 24, 0, 23, 0, 2, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 25, 0, 26, 0, 24, 0, 8, 0, 27, 0, 25, 0, 27, 0, 28, 0, 25, 0, 8, 0, 29, 0, 27, 0, 29, 0, 30, 0, 27, 0, 8, 0, 31, 0, 29, 0, 8, 0, 32, 0, 31, 0, 8, 0, 33, 0, 32, 0, 8, 0, 7, 0, 33, 0, 0, 0, 23, 0, 2, 0, 24, 0, 2, 0, 23, 0, 8, 0, 2, 0, 24, 0, 25, 0, 8, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 8, 0, 25, 0, 28, 0, 27, 0, 25, 0, 29, 0, 8, 0, 27, 0, 30, 0, 29, 0, 27, 0, 31, 0, 8, 0, 29, 0, 32, 0, 8, 0, 31, 0, 33, 0, 8, 0, 32, 0, 7, 0, 8, 0, 33, 0, 3, 0, 9, 0, 11, 0, 11, 0, 34, 0, 3, 0, 11, 0, 35, 0, 34, 0, 34, 0, 36, 0, 3, 0, 34, 0, 37, 0, 36, 0, 36, 0, 38, 0, 3, 0, 36, 0, 39, 0, 38, 0, 38, 0, 40, 0, 3, 0, 38, 0, 41, 0, 40, 0, 40, 0, 42, 0, 3, 0, 42, 0, 43, 0, 3, 0, 43, 0, 44, 0, 3, 0, 44, 0, 4, 0, 3, 0, 9, 0, 3, 0, 11, 0, 34, 0, 11, 0, 3, 0, 35, 0, 11, 0, 34, 0, 36, 0, 34, 0, 3, 0, 37, 0, 34, 0, 36, 0, 38, 0, 36, 0, 3, 0, 39, 0, 36, 0, 38, 0, 40, 0, 38, 0, 3, 0, 41, 0, 38, 0, 40, 0, 42, 0, 40, 0, 3, 0, 43, 0, 42, 0, 3, 0, 44, 0, 43, 0, 3, 0, 4, 0, 44, 0, 3, 0, 1, 0, 45, 0, 46, 0, 46, 0, 2, 0, 1, 0, 46, 0, 47, 0, 2, 0, 47, 0, 46, 0, 48, 0, 47, 0, 49, 0, 2, 0, 49, 0, 47, 0, 50, 0, 49, 0, 51, 0, 2, 0, 51, 0, 49, 0, 52, 0, 51, 0, 53, 0, 2, 0, 53, 0, 51, 0, 54, 0, 53, 0, 10, 0, 2, 0, 10, 0, 9, 0, 2, 0, 10, 0, 53, 0, 55, 0, 45, 0, 1, 0, 46, 0, 2, 0, 46, 0, 1, 0, 47, 0, 46, 0, 2, 0, 46, 0, 47, 0, 48, 0, 49, 0, 47, 0, 2, 0, 47, 0, 49, 0, 50, 0, 51, 0, 49, 0, 2, 0, 49, 0, 51, 0, 52, 0, 53, 0, 51, 0, 2, 0, 51, 0, 53, 0, 54, 0, 10, 0, 53, 0, 2, 0, 53, 0, 10, 0, 55, 0, 9, 0, 10, 0, 2, 0, 2, 0, 9, 0, 3, 0, 3, 0, 8, 0, 2, 0), +"lods": [0.0588186, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 13, 0, 3, 0, 5, 0, 13, 0, 16, 0, 3, 0, 16, 0, 18, 0, 3, 0, 18, 0, 20, 0, 3, 0, 20, 0, 6, 0, 3, 0, 6, 0, 8, 0, 3, 0, 3, 0, 13, 0, 5, 0, 16, 0, 13, 0, 3, 0, 18, 0, 16, 0, 3, 0, 20, 0, 18, 0, 3, 0, 6, 0, 20, 0, 3, 0, 8, 0, 6, 0, 3, 0, 23, 0, 0, 0, 2, 0, 2, 0, 24, 0, 23, 0, 2, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 8, 0, 27, 0, 25, 0, 8, 0, 29, 0, 27, 0, 8, 0, 33, 0, 29, 0, 8, 0, 7, 0, 33, 0, 0, 0, 23, 0, 2, 0, 24, 0, 2, 0, 23, 0, 8, 0, 2, 0, 24, 0, 25, 0, 8, 0, 24, 0, 27, 0, 8, 0, 25, 0, 29, 0, 8, 0, 27, 0, 33, 0, 8, 0, 29, 0, 7, 0, 8, 0, 33, 0, 3, 0, 9, 0, 11, 0, 11, 0, 34, 0, 3, 0, 34, 0, 36, 0, 3, 0, 36, 0, 38, 0, 3, 0, 38, 0, 40, 0, 3, 0, 40, 0, 42, 0, 3, 0, 42, 0, 44, 0, 3, 0, 44, 0, 4, 0, 3, 0, 9, 0, 3, 0, 11, 0, 34, 0, 11, 0, 3, 0, 36, 0, 34, 0, 3, 0, 38, 0, 36, 0, 3, 0, 40, 0, 38, 0, 3, 0, 42, 0, 40, 0, 3, 0, 44, 0, 42, 0, 3, 0, 4, 0, 44, 0, 3, 0, 46, 0, 2, 0, 1, 0, 46, 0, 47, 0, 2, 0, 47, 0, 49, 0, 2, 0, 49, 0, 51, 0, 2, 0, 51, 0, 53, 0, 2, 0, 53, 0, 10, 0, 2, 0, 10, 0, 9, 0, 2, 0, 2, 0, 46, 0, 1, 0, 47, 0, 46, 0, 2, 0, 49, 0, 47, 0, 2, 0, 51, 0, 49, 0, 2, 0, 53, 0, 51, 0, 2, 0, 10, 0, 53, 0, 2, 0, 9, 0, 10, 0, 2, 0, 2, 0, 9, 0, 3, 0, 3, 0, 8, 0, 2, 0), 0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 13, 0, 3, 0, 5, 0, 13, 0, 6, 0, 3, 0, 6, 0, 8, 0, 3, 0, 3, 0, 13, 0, 5, 0, 6, 0, 13, 0, 3, 0, 8, 0, 6, 0, 3, 0, 24, 0, 0, 0, 2, 0, 2, 0, 8, 0, 24, 0, 8, 0, 7, 0, 24, 0, 0, 0, 24, 0, 2, 0, 8, 0, 2, 0, 24, 0, 7, 0, 8, 0, 24, 0, 3, 0, 9, 0, 11, 0, 11, 0, 34, 0, 3, 0, 34, 0, 4, 0, 3, 0, 9, 0, 3, 0, 11, 0, 34, 0, 11, 0, 3, 0, 4, 0, 34, 0, 3, 0, 46, 0, 2, 0, 1, 0, 46, 0, 10, 0, 2, 0, 10, 0, 9, 0, 2, 0, 2, 0, 46, 0, 1, 0, 10, 0, 46, 0, 2, 0, 9, 0, 10, 0, 2, 0, 2, 0, 9, 0, 3, 0, 3, 0, 8, 0, 2, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 60, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(3, 0, 56, 0, 57, 0, 57, 0, 8, 0, 3, 0, 3, 0, 9, 0, 58, 0, 58, 0, 56, 0, 3, 0, 2, 0, 59, 0, 58, 0, 58, 0, 9, 0, 2, 0, 56, 0, 58, 0, 59, 0, 59, 0, 57, 0, 56, 0, 57, 0, 59, 0, 2, 0, 2, 0, 8, 0, 57, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 60, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_37m0g"] +resource_name = "blockCliff_Mesh blockCliff" +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 168, 37, 204, 53, 140, 107, 199, 193, 168, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 234, 37, 204, 181, 140, 107, 199, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 234, 37, 204, 181, 140, 107, 199, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 10, 138, 174, 140, 107, 199, 193, 0, 10, 138, 174, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 0, 0, 183, 45, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 183, 45, 141, 107, 199, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 129, 123, 196, 173, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 129, 123, 196, 173, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 133, 0, 110, 173, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 133, 0, 110, 173, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 244, 147, 55, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 244, 147, 55, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 66, 17, 167, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 66, 17, 167, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 38, 16, 230, 192, 246, 122, 157, 193, 38, 16, 230, 192, 246, 122, 157, 65, 111, 181, 42, 194, 246, 122, 157, 193, 111, 181, 42, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 64, 55, 45, 246, 122, 13, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 204, 218, 148, 65, 246, 122, 157, 65, 152, 181, 89, 192, 246, 122, 157, 193, 152, 181, 89, 192, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 154, 57, 194, 173, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 28, 0, 25, 0, 29, 0, 28, 0, 30, 0, 27, 0, 30, 0, 28, 0, 31, 0, 30, 0, 32, 0, 27, 0, 32, 0, 30, 0, 33, 0, 32, 0, 34, 0, 27, 0, 34, 0, 32, 0, 35, 0, 34, 0, 36, 0, 27, 0, 36, 0, 37, 0, 27, 0, 36, 0, 34, 0, 38, 0, 41, 0, 39, 0, 40, 0, 42, 0, 40, 0, 39, 0, 43, 0, 40, 0, 42, 0, 40, 0, 43, 0, 44, 0, 45, 0, 43, 0, 42, 0, 43, 0, 45, 0, 46, 0, 47, 0, 45, 0, 42, 0, 45, 0, 47, 0, 48, 0, 49, 0, 47, 0, 42, 0, 47, 0, 49, 0, 50, 0, 51, 0, 49, 0, 42, 0, 49, 0, 51, 0, 52, 0, 53, 0, 51, 0, 42, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 59, 0, 60, 0, 57, 0, 58, 0, 61, 0, 59, 0, 61, 0, 62, 0, 59, 0, 58, 0, 63, 0, 61, 0, 63, 0, 64, 0, 61, 0, 58, 0, 65, 0, 63, 0, 58, 0, 66, 0, 65, 0, 58, 0, 67, 0, 66, 0, 58, 0, 68, 0, 67, 0, 71, 0, 69, 0, 70, 0, 72, 0, 70, 0, 69, 0, 73, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 72, 0, 76, 0, 73, 0, 74, 0, 77, 0, 76, 0, 74, 0, 78, 0, 73, 0, 76, 0, 79, 0, 78, 0, 76, 0, 80, 0, 73, 0, 78, 0, 81, 0, 73, 0, 80, 0, 82, 0, 73, 0, 81, 0, 83, 0, 73, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 85, 0, 88, 0, 87, 0, 87, 0, 89, 0, 86, 0, 87, 0, 90, 0, 89, 0, 89, 0, 91, 0, 86, 0, 89, 0, 92, 0, 91, 0, 91, 0, 93, 0, 86, 0, 91, 0, 94, 0, 93, 0, 93, 0, 95, 0, 86, 0, 95, 0, 96, 0, 86, 0, 96, 0, 97, 0, 86, 0, 97, 0, 98, 0, 86, 0, 101, 0, 99, 0, 100, 0, 102, 0, 100, 0, 99, 0, 103, 0, 100, 0, 102, 0, 104, 0, 102, 0, 99, 0, 105, 0, 102, 0, 104, 0, 106, 0, 104, 0, 99, 0, 107, 0, 104, 0, 106, 0, 108, 0, 106, 0, 99, 0, 109, 0, 106, 0, 108, 0, 110, 0, 108, 0, 99, 0, 111, 0, 110, 0, 99, 0, 112, 0, 111, 0, 99, 0, 113, 0, 112, 0, 99, 0, 116, 0, 114, 0, 115, 0, 115, 0, 117, 0, 116, 0, 115, 0, 118, 0, 117, 0, 118, 0, 115, 0, 119, 0, 118, 0, 120, 0, 117, 0, 120, 0, 118, 0, 121, 0, 120, 0, 122, 0, 117, 0, 122, 0, 120, 0, 123, 0, 122, 0, 124, 0, 117, 0, 124, 0, 122, 0, 125, 0, 124, 0, 126, 0, 117, 0, 126, 0, 127, 0, 117, 0, 126, 0, 124, 0, 128, 0, 131, 0, 129, 0, 130, 0, 132, 0, 130, 0, 129, 0, 133, 0, 130, 0, 132, 0, 130, 0, 133, 0, 134, 0, 135, 0, 133, 0, 132, 0, 133, 0, 135, 0, 136, 0, 137, 0, 135, 0, 132, 0, 135, 0, 137, 0, 138, 0, 139, 0, 137, 0, 132, 0, 137, 0, 139, 0, 140, 0, 141, 0, 139, 0, 132, 0, 139, 0, 141, 0, 142, 0, 143, 0, 141, 0, 132, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0), +"lods": [0.0588186, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 25, 0, 27, 0, 26, 0, 25, 0, 30, 0, 27, 0, 30, 0, 32, 0, 27, 0, 32, 0, 34, 0, 27, 0, 34, 0, 36, 0, 27, 0, 36, 0, 37, 0, 27, 0, 42, 0, 40, 0, 39, 0, 45, 0, 40, 0, 42, 0, 47, 0, 45, 0, 42, 0, 49, 0, 47, 0, 42, 0, 51, 0, 49, 0, 42, 0, 53, 0, 51, 0, 42, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 58, 0, 61, 0, 59, 0, 58, 0, 63, 0, 61, 0, 58, 0, 67, 0, 63, 0, 58, 0, 68, 0, 67, 0, 71, 0, 69, 0, 70, 0, 72, 0, 70, 0, 69, 0, 73, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 76, 0, 73, 0, 74, 0, 78, 0, 73, 0, 76, 0, 82, 0, 73, 0, 78, 0, 83, 0, 73, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 87, 0, 89, 0, 86, 0, 89, 0, 91, 0, 86, 0, 91, 0, 93, 0, 86, 0, 93, 0, 95, 0, 86, 0, 95, 0, 97, 0, 86, 0, 97, 0, 98, 0, 86, 0, 101, 0, 99, 0, 100, 0, 102, 0, 100, 0, 99, 0, 104, 0, 102, 0, 99, 0, 106, 0, 104, 0, 99, 0, 108, 0, 106, 0, 99, 0, 110, 0, 108, 0, 99, 0, 112, 0, 110, 0, 99, 0, 113, 0, 112, 0, 99, 0, 115, 0, 117, 0, 116, 0, 115, 0, 118, 0, 117, 0, 118, 0, 120, 0, 117, 0, 120, 0, 122, 0, 117, 0, 122, 0, 124, 0, 117, 0, 124, 0, 126, 0, 117, 0, 126, 0, 127, 0, 117, 0, 132, 0, 130, 0, 129, 0, 133, 0, 130, 0, 132, 0, 135, 0, 133, 0, 132, 0, 137, 0, 135, 0, 132, 0, 139, 0, 137, 0, 132, 0, 141, 0, 139, 0, 132, 0, 143, 0, 141, 0, 132, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0), 0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 25, 0, 27, 0, 26, 0, 25, 0, 36, 0, 27, 0, 36, 0, 37, 0, 27, 0, 42, 0, 40, 0, 39, 0, 51, 0, 40, 0, 42, 0, 53, 0, 51, 0, 42, 0, 57, 0, 54, 0, 55, 0, 55, 0, 58, 0, 57, 0, 58, 0, 68, 0, 57, 0, 71, 0, 72, 0, 70, 0, 73, 0, 70, 0, 72, 0, 83, 0, 73, 0, 72, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 87, 0, 98, 0, 86, 0, 101, 0, 99, 0, 100, 0, 102, 0, 100, 0, 99, 0, 113, 0, 102, 0, 99, 0, 115, 0, 117, 0, 116, 0, 115, 0, 126, 0, 117, 0, 126, 0, 127, 0, 117, 0, 132, 0, 130, 0, 129, 0, 141, 0, 130, 0, 132, 0, 143, 0, 141, 0, 132, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0)], +"material": SubResource("StandardMaterial3D_u075j"), +"name": "grass", +"primitive": 3, +"vertex_count": 168, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 31, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 31, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 255, 255, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 255, 255, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 255, 255, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 255, 255, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 255, 255, 254, 127, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 168, 37, 204, 53, 140, 107, 199, 193, 168, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 234, 37, 204, 181, 140, 107, 199, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 234, 37, 204, 181, 140, 107, 199, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 10, 138, 174, 140, 107, 199, 193, 0, 10, 138, 174, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 0, 0, 183, 45, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 183, 45, 141, 107, 199, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 129, 123, 196, 173, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 129, 123, 196, 173, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 133, 0, 110, 173, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 142, 96, 128, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 192, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 133, 0, 110, 173, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 246, 122, 29, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 244, 147, 55, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 244, 147, 55, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 66, 17, 167, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 66, 17, 167, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 38, 16, 230, 192, 246, 122, 157, 193, 38, 16, 230, 192, 246, 122, 157, 65, 111, 181, 42, 194, 246, 122, 157, 193, 111, 181, 42, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 64, 55, 45, 246, 122, 13, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 204, 218, 148, 65, 246, 122, 157, 65, 152, 181, 89, 192, 246, 122, 157, 193, 152, 181, 89, 192, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 154, 57, 194, 173, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0), +"material": SubResource("StandardMaterial3D_onw0q"), +"name": "dirt", +"primitive": 3, +"vertex_count": 168, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 66, 79, 12, 43, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 84, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 240, 22, 158, 42, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 63, 53, 140, 42, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 106, 94, 3, 43, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 93, 109, 141, 42, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 62, 201, 118, 156, 42, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_xfyt1") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_byf41"] +data = PackedVector3Array(0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.5, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.5915, 0.8415, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 0.8415, -0.5915, -0.4167, 0.7696, -0.633, -0.3333, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.25, 0.7696, -0.633, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, 0, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, 0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, 0.0833, 0.7696, -0.633, 0.1667, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, 0.3333, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, 0.25, 0.7696, -0.633, 0.3333, 0.8415, -0.5915, 0.5, 0.8415, -0.5915, -0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, 0.4167, 0.7696, -0.633, -0.4167, 0.7696, -0.633, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.5, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.25, 0.7696, -0.633, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, 0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, 0.0833, 0.7696, -0.633, 0.3333, 0.8415, -0.5915, 0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, 0.1667, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, 0.25, 0.7696, -0.633, 0.5, 0.8415, -0.5915, 0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, 0.3333, 0.8415, -0.5915, 0.5, 0.8415, -0.5915, 0.4167, 0.7696, -0.633, 0.5, 1, -0.5, 0.5, 0.8415, -0.5915, -0.5, 1, -0.5, 0.633, 0.7696, 0.4167, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5915, 0.8415, 0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0.1667, 0.633, 0.7696, 0.25, 0.5915, 0.8415, 0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, 0, 0.5915, 0.8415, -0.1667, 0.633, 0.7696, -0.0833, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.633, 0.7696, -0.25, 0.5915, 0.8415, -0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, -0.3333, 0.633, 0.7696, -0.25, 0.5, 1, -0.5, 0.633, 0.7696, -0.4167, 0.5915, 0.8415, -0.3333, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.633, 0.7696, -0.4167, 0.5915, 0.8415, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.5, 1, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, -0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.25, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.5915, 0.8415, 0.1667, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, -0.1667, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.633, 0.7696, -0.0833, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, 0, 0.633, 0.7696, -0.25, 0.5, 1, -0.5, 0.5915, 0.8415, -0.1667, 0.5915, 0.8415, -0.3333, 0.5, 1, -0.5, 0.633, 0.7696, -0.25, 0.633, 0.7696, -0.4167, 0.5, 1, -0.5, 0.5915, 0.8415, -0.3333, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.5915, 0.8415, 0.1667, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.5, -0.5, 1, -0.5, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.5, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, 0.5, 0.8415, 0.5915, 0.4167, 0.7696, 0.633, 0.3333, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, 0.4167, 0.7696, 0.633, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.5, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 0.25, 0, 0.5, 0.25, 0, 0.5, 0.25, 0, 0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.25, 0, -0.5, 1, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.25, 0, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0.25, 0, -0.5, 0.25, 0, 0.5, 0.25, 0, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 0.25, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cx7lp"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vrbip"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_p5wbp"] +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.56471, 1.19774, 1, 1.19774), +"format": 4097, +"index_count": 21, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 0, 0, 2, 0, 2, 0, 5, 0, 4, 0, 2, 0, 1, 0, 3, 0, 3, 0, 5, 0, 2, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 49, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62) +}, { +"aabb": AABB(-0.633028, 0, -0.56471, 1.19774, 1, 1.19774), +"format": 4097, +"index_count": 279, +"index_data": PackedByteArray(4, 0, 6, 0, 7, 0, 6, 0, 4, 0, 7, 0, 9, 0, 8, 0, 5, 0, 8, 0, 9, 0, 5, 0, 5, 0, 3, 0, 4, 0, 3, 0, 10, 0, 11, 0, 10, 0, 3, 0, 11, 0, 3, 0, 11, 0, 12, 0, 12, 0, 13, 0, 3, 0, 13, 0, 4, 0, 3, 0, 13, 0, 14, 0, 4, 0, 13, 0, 15, 0, 14, 0, 14, 0, 16, 0, 4, 0, 14, 0, 17, 0, 16, 0, 16, 0, 18, 0, 4, 0, 16, 0, 19, 0, 18, 0, 18, 0, 20, 0, 4, 0, 20, 0, 21, 0, 4, 0, 21, 0, 22, 0, 4, 0, 22, 0, 6, 0, 4, 0, 11, 0, 3, 0, 12, 0, 13, 0, 12, 0, 3, 0, 4, 0, 13, 0, 3, 0, 14, 0, 13, 0, 4, 0, 15, 0, 13, 0, 14, 0, 16, 0, 14, 0, 4, 0, 17, 0, 14, 0, 16, 0, 18, 0, 16, 0, 4, 0, 19, 0, 16, 0, 18, 0, 20, 0, 18, 0, 4, 0, 21, 0, 20, 0, 4, 0, 22, 0, 21, 0, 4, 0, 6, 0, 22, 0, 4, 0, 8, 0, 23, 0, 24, 0, 24, 0, 5, 0, 8, 0, 24, 0, 25, 0, 5, 0, 25, 0, 24, 0, 26, 0, 25, 0, 27, 0, 5, 0, 27, 0, 25, 0, 28, 0, 27, 0, 29, 0, 5, 0, 29, 0, 27, 0, 30, 0, 29, 0, 31, 0, 5, 0, 31, 0, 29, 0, 32, 0, 31, 0, 10, 0, 5, 0, 10, 0, 3, 0, 5, 0, 10, 0, 31, 0, 33, 0, 23, 0, 8, 0, 24, 0, 5, 0, 24, 0, 8, 0, 25, 0, 24, 0, 5, 0, 24, 0, 25, 0, 26, 0, 27, 0, 25, 0, 5, 0, 25, 0, 27, 0, 28, 0, 29, 0, 27, 0, 5, 0, 27, 0, 29, 0, 30, 0, 31, 0, 29, 0, 5, 0, 29, 0, 31, 0, 32, 0, 10, 0, 31, 0, 5, 0, 31, 0, 10, 0, 33, 0, 3, 0, 10, 0, 5, 0, 7, 0, 34, 0, 35, 0, 35, 0, 4, 0, 7, 0, 35, 0, 36, 0, 4, 0, 36, 0, 35, 0, 37, 0, 36, 0, 38, 0, 4, 0, 38, 0, 36, 0, 39, 0, 38, 0, 40, 0, 4, 0, 40, 0, 38, 0, 41, 0, 40, 0, 42, 0, 4, 0, 42, 0, 40, 0, 43, 0, 42, 0, 44, 0, 4, 0, 44, 0, 42, 0, 45, 0, 44, 0, 46, 0, 4, 0, 46, 0, 44, 0, 47, 0, 46, 0, 9, 0, 4, 0, 9, 0, 5, 0, 4, 0, 9, 0, 46, 0, 48, 0, 34, 0, 7, 0, 35, 0, 4, 0, 35, 0, 7, 0, 36, 0, 35, 0, 4, 0, 35, 0, 36, 0, 37, 0, 38, 0, 36, 0, 4, 0, 36, 0, 38, 0, 39, 0, 40, 0, 38, 0, 4, 0, 38, 0, 40, 0, 41, 0, 42, 0, 40, 0, 4, 0, 40, 0, 42, 0, 43, 0, 44, 0, 42, 0, 4, 0, 42, 0, 44, 0, 45, 0, 46, 0, 44, 0, 4, 0, 44, 0, 46, 0, 47, 0, 9, 0, 46, 0, 4, 0, 46, 0, 9, 0, 48, 0, 5, 0, 9, 0, 4, 0), +"lods": [0.0605315, PackedByteArray(4, 0, 6, 0, 7, 0, 6, 0, 4, 0, 7, 0, 9, 0, 8, 0, 5, 0, 8, 0, 9, 0, 5, 0, 5, 0, 3, 0, 4, 0, 3, 0, 10, 0, 11, 0, 10, 0, 3, 0, 11, 0, 3, 0, 11, 0, 13, 0, 13, 0, 4, 0, 3, 0, 13, 0, 16, 0, 4, 0, 16, 0, 22, 0, 4, 0, 22, 0, 6, 0, 4, 0, 11, 0, 3, 0, 13, 0, 4, 0, 13, 0, 3, 0, 16, 0, 13, 0, 4, 0, 22, 0, 16, 0, 4, 0, 6, 0, 22, 0, 4, 0, 24, 0, 5, 0, 8, 0, 24, 0, 25, 0, 5, 0, 25, 0, 27, 0, 5, 0, 27, 0, 29, 0, 5, 0, 29, 0, 31, 0, 5, 0, 31, 0, 10, 0, 5, 0, 10, 0, 3, 0, 5, 0, 5, 0, 24, 0, 8, 0, 25, 0, 24, 0, 5, 0, 27, 0, 25, 0, 5, 0, 29, 0, 27, 0, 5, 0, 31, 0, 29, 0, 5, 0, 10, 0, 31, 0, 5, 0, 3, 0, 10, 0, 5, 0, 35, 0, 4, 0, 7, 0, 35, 0, 36, 0, 4, 0, 36, 0, 38, 0, 4, 0, 38, 0, 40, 0, 4, 0, 40, 0, 42, 0, 4, 0, 42, 0, 44, 0, 4, 0, 44, 0, 46, 0, 4, 0, 46, 0, 9, 0, 4, 0, 9, 0, 5, 0, 4, 0, 4, 0, 35, 0, 7, 0, 36, 0, 35, 0, 4, 0, 38, 0, 36, 0, 4, 0, 40, 0, 38, 0, 4, 0, 42, 0, 40, 0, 4, 0, 44, 0, 42, 0, 4, 0, 46, 0, 44, 0, 4, 0, 9, 0, 46, 0, 4, 0, 5, 0, 9, 0, 4, 0), 0.26929, PackedByteArray(4, 0, 6, 0, 7, 0, 6, 0, 4, 0, 7, 0, 9, 0, 8, 0, 5, 0, 8, 0, 9, 0, 5, 0, 5, 0, 3, 0, 4, 0, 3, 0, 10, 0, 11, 0, 10, 0, 3, 0, 11, 0, 3, 0, 11, 0, 13, 0, 13, 0, 4, 0, 3, 0, 13, 0, 6, 0, 4, 0, 11, 0, 3, 0, 13, 0, 4, 0, 13, 0, 3, 0, 6, 0, 13, 0, 4, 0, 24, 0, 5, 0, 8, 0, 24, 0, 10, 0, 5, 0, 10, 0, 3, 0, 5, 0, 5, 0, 24, 0, 8, 0, 10, 0, 24, 0, 5, 0, 3, 0, 10, 0, 5, 0, 38, 0, 4, 0, 7, 0, 38, 0, 9, 0, 4, 0, 9, 0, 5, 0, 4, 0, 4, 0, 38, 0, 7, 0, 9, 0, 38, 0, 4, 0, 5, 0, 9, 0, 4, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 49, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_y800a"] +resource_name = "blockCliffCorner_Mesh blockCliffCorner" +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.56471, 1.19774, 1, 1.19774), +"attribute_data": PackedByteArray(247, 181, 94, 65, 181, 215, 213, 64, 0, 80, 216, 172, 181, 215, 189, 65, 247, 181, 94, 193, 181, 215, 213, 64, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 192, 42, 246, 122, 13, 193, 247, 181, 94, 65, 88, 219, 251, 191, 247, 181, 94, 193, 88, 219, 251, 191, 247, 181, 222, 65, 65, 114, 10, 194, 247, 181, 222, 193, 65, 114, 10, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 12, 180, 45, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194, 228, 182, 95, 65, 183, 6, 204, 193, 16, 101, 234, 64, 183, 6, 204, 193, 179, 116, 42, 65, 86, 39, 255, 193, 179, 116, 42, 65, 86, 39, 255, 193, 16, 101, 234, 64, 183, 6, 204, 193, 228, 182, 95, 65, 183, 6, 204, 193, 224, 182, 95, 193, 184, 6, 204, 193, 177, 116, 42, 193, 86, 39, 255, 193, 13, 101, 234, 192, 184, 6, 204, 193, 13, 101, 234, 192, 184, 6, 204, 193, 177, 116, 42, 193, 86, 39, 255, 193, 224, 182, 95, 193, 184, 6, 204, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 155, 12, 35, 64, 35, 127, 145, 193, 158, 12, 35, 192, 35, 127, 145, 193, 174, 177, 222, 180, 140, 107, 199, 193, 174, 177, 222, 180, 140, 107, 199, 193, 158, 12, 35, 192, 35, 127, 145, 193, 155, 12, 35, 64, 35, 127, 145, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 173, 182, 6, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 173, 182, 6, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 203, 59, 131, 65, 5, 116, 76, 193, 70, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 74, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 107, 192, 141, 180, 142, 96, 128, 193, 65, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 68, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 70, 249, 81, 65, 142, 96, 128, 193, 203, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 74, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 107, 192, 141, 180, 142, 96, 128, 193, 65, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 68, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 56, 223, 194, 65, 124, 247, 180, 193, 120, 8, 167, 65, 8, 30, 207, 193, 244, 181, 222, 65, 9, 30, 207, 193, 247, 181, 222, 65, 200, 97, 4, 194, 244, 181, 94, 65, 8, 30, 207, 193, 186, 49, 139, 65, 124, 247, 180, 193, 241, 181, 222, 64, 8, 30, 207, 193, 121, 8, 39, 65, 124, 247, 180, 193, 0, 75, 180, 173, 8, 30, 207, 193, 247, 181, 94, 64, 124, 247, 180, 193, 241, 181, 222, 192, 8, 30, 207, 193, 247, 181, 94, 192, 124, 247, 180, 193, 244, 181, 94, 193, 8, 30, 207, 193, 121, 8, 39, 193, 124, 247, 180, 193, 120, 8, 167, 193, 8, 30, 207, 193, 186, 49, 139, 193, 124, 247, 180, 193, 244, 181, 222, 193, 9, 30, 207, 193, 247, 181, 222, 193, 200, 97, 4, 194, 56, 223, 194, 193, 124, 247, 180, 193, 244, 181, 222, 65, 9, 30, 207, 193, 120, 8, 167, 65, 8, 30, 207, 193, 56, 223, 194, 65, 124, 247, 180, 193, 247, 181, 222, 65, 200, 97, 4, 194, 244, 181, 94, 65, 8, 30, 207, 193, 186, 49, 139, 65, 124, 247, 180, 193, 241, 181, 222, 64, 8, 30, 207, 193, 121, 8, 39, 65, 124, 247, 180, 193, 0, 75, 180, 173, 8, 30, 207, 193, 247, 181, 94, 64, 124, 247, 180, 193, 241, 181, 222, 192, 8, 30, 207, 193, 247, 181, 94, 192, 124, 247, 180, 193, 244, 181, 94, 193, 8, 30, 207, 193, 121, 8, 39, 193, 124, 247, 180, 193, 120, 8, 167, 193, 8, 30, 207, 193, 186, 49, 139, 193, 124, 247, 180, 193, 244, 181, 222, 193, 9, 30, 207, 193, 56, 223, 194, 193, 124, 247, 180, 193, 247, 181, 222, 193, 200, 97, 4, 194), +"format": 4119, +"index_count": 21, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 4, 0, 6, 0, 5, 0, 9, 0, 7, 0, 8, 0, 8, 0, 10, 0, 9, 0, 13, 0, 11, 0, 12, 0, 12, 0, 14, 0, 13, 0), +"material": SubResource("StandardMaterial3D_cx7lp"), +"name": "dirt", +"primitive": 3, +"vertex_count": 134, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 255, 191, 255, 31, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 255, 223, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 255, 223, 255, 47, 0, 0, 255, 223, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 131, 18, 237, 223, 0, 0, 0, 128, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 131, 18, 237, 223, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 131, 18, 237, 223, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 16, 160, 123, 109, 0, 0, 0, 128, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 16, 160, 123, 109, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 16, 160, 123, 109, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 106, 205, 131, 146, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 106, 205, 131, 146, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 106, 205, 131, 146, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 227, 218, 140, 210, 0, 0, 0, 128, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 227, 218, 140, 210, 0, 0, 0, 128, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 0, 128, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 227, 218, 140, 210, 0, 0, 0, 128, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 227, 218, 140, 210, 0, 0, 0, 128, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 227, 218, 140, 210, 0, 0, 0, 128, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 227, 218, 140, 210, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 0, 128, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 227, 218, 140, 210, 0, 0, 0, 128, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 227, 218, 140, 210, 0, 0, 0, 128, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 227, 218, 140, 210, 0, 0, 0, 128, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 227, 218, 140, 210, 0, 0, 0, 128, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 227, 218, 140, 210, 0, 0, 0, 128, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 227, 218, 140, 210, 0, 0, 0, 128, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 227, 218, 140, 210, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 227, 218, 140, 210, 0, 0, 0, 128, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62, 227, 218, 140, 210, 0, 0, 0, 128, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 0, 128, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 141, 82, 228, 90, 0, 0, 0, 128, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 0, 128, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 141, 82, 228, 90, 0, 0, 0, 128, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 141, 82, 228, 90, 0, 0, 0, 128, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 141, 82, 228, 90, 0, 0, 0, 128, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 141, 82, 228, 90, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 0, 128, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 141, 82, 228, 90, 0, 0, 0, 128, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 141, 82, 228, 90, 0, 0, 0, 128, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 141, 82, 228, 90, 0, 0, 0, 128, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 141, 82, 228, 90, 0, 0, 0, 128, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 141, 82, 228, 90, 0, 0, 0, 128, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 141, 82, 228, 90, 0, 0, 0, 128, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 141, 82, 228, 90, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 141, 82, 228, 90, 0, 0, 0, 128, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 141, 82, 228, 90, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, 0, -0.56471, 1.19774, 1, 1.19774), +"attribute_data": PackedByteArray(247, 181, 94, 65, 181, 215, 213, 64, 0, 80, 216, 172, 181, 215, 189, 65, 247, 181, 94, 193, 181, 215, 213, 64, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 192, 42, 246, 122, 13, 193, 247, 181, 94, 65, 88, 219, 251, 191, 247, 181, 94, 193, 88, 219, 251, 191, 247, 181, 222, 65, 65, 114, 10, 194, 247, 181, 222, 193, 65, 114, 10, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 12, 180, 45, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194, 228, 182, 95, 65, 183, 6, 204, 193, 16, 101, 234, 64, 183, 6, 204, 193, 179, 116, 42, 65, 86, 39, 255, 193, 179, 116, 42, 65, 86, 39, 255, 193, 16, 101, 234, 64, 183, 6, 204, 193, 228, 182, 95, 65, 183, 6, 204, 193, 224, 182, 95, 193, 184, 6, 204, 193, 177, 116, 42, 193, 86, 39, 255, 193, 13, 101, 234, 192, 184, 6, 204, 193, 13, 101, 234, 192, 184, 6, 204, 193, 177, 116, 42, 193, 86, 39, 255, 193, 224, 182, 95, 193, 184, 6, 204, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 155, 12, 35, 64, 35, 127, 145, 193, 158, 12, 35, 192, 35, 127, 145, 193, 174, 177, 222, 180, 140, 107, 199, 193, 174, 177, 222, 180, 140, 107, 199, 193, 158, 12, 35, 192, 35, 127, 145, 193, 155, 12, 35, 64, 35, 127, 145, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 173, 182, 6, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 173, 182, 6, 45, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 203, 59, 131, 65, 5, 116, 76, 193, 70, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 74, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 107, 192, 141, 180, 142, 96, 128, 193, 65, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 68, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 70, 249, 81, 65, 142, 96, 128, 193, 203, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 74, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 107, 192, 141, 180, 142, 96, 128, 193, 65, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 68, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 56, 223, 194, 65, 124, 247, 180, 193, 120, 8, 167, 65, 8, 30, 207, 193, 244, 181, 222, 65, 9, 30, 207, 193, 247, 181, 222, 65, 200, 97, 4, 194, 244, 181, 94, 65, 8, 30, 207, 193, 186, 49, 139, 65, 124, 247, 180, 193, 241, 181, 222, 64, 8, 30, 207, 193, 121, 8, 39, 65, 124, 247, 180, 193, 0, 75, 180, 173, 8, 30, 207, 193, 247, 181, 94, 64, 124, 247, 180, 193, 241, 181, 222, 192, 8, 30, 207, 193, 247, 181, 94, 192, 124, 247, 180, 193, 244, 181, 94, 193, 8, 30, 207, 193, 121, 8, 39, 193, 124, 247, 180, 193, 120, 8, 167, 193, 8, 30, 207, 193, 186, 49, 139, 193, 124, 247, 180, 193, 244, 181, 222, 193, 9, 30, 207, 193, 247, 181, 222, 193, 200, 97, 4, 194, 56, 223, 194, 193, 124, 247, 180, 193, 244, 181, 222, 65, 9, 30, 207, 193, 120, 8, 167, 65, 8, 30, 207, 193, 56, 223, 194, 65, 124, 247, 180, 193, 247, 181, 222, 65, 200, 97, 4, 194, 244, 181, 94, 65, 8, 30, 207, 193, 186, 49, 139, 65, 124, 247, 180, 193, 241, 181, 222, 64, 8, 30, 207, 193, 121, 8, 39, 65, 124, 247, 180, 193, 0, 75, 180, 173, 8, 30, 207, 193, 247, 181, 94, 64, 124, 247, 180, 193, 241, 181, 222, 192, 8, 30, 207, 193, 247, 181, 94, 192, 124, 247, 180, 193, 244, 181, 94, 193, 8, 30, 207, 193, 121, 8, 39, 193, 124, 247, 180, 193, 120, 8, 167, 193, 8, 30, 207, 193, 186, 49, 139, 193, 124, 247, 180, 193, 244, 181, 222, 193, 9, 30, 207, 193, 56, 223, 194, 193, 124, 247, 180, 193, 247, 181, 222, 193, 200, 97, 4, 194), +"format": 4119, +"index_count": 279, +"index_data": PackedByteArray(17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 39, 0, 40, 0, 38, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 41, 0, 43, 0, 40, 0, 41, 0, 44, 0, 43, 0, 43, 0, 45, 0, 40, 0, 43, 0, 46, 0, 45, 0, 45, 0, 47, 0, 40, 0, 47, 0, 48, 0, 40, 0, 48, 0, 49, 0, 40, 0, 49, 0, 50, 0, 40, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 55, 0, 54, 0, 51, 0, 56, 0, 54, 0, 55, 0, 57, 0, 54, 0, 56, 0, 58, 0, 56, 0, 55, 0, 59, 0, 56, 0, 58, 0, 60, 0, 58, 0, 55, 0, 61, 0, 58, 0, 60, 0, 62, 0, 60, 0, 55, 0, 63, 0, 62, 0, 55, 0, 64, 0, 63, 0, 55, 0, 65, 0, 64, 0, 55, 0, 68, 0, 66, 0, 67, 0, 67, 0, 69, 0, 68, 0, 67, 0, 70, 0, 69, 0, 70, 0, 67, 0, 71, 0, 70, 0, 72, 0, 69, 0, 72, 0, 70, 0, 73, 0, 72, 0, 74, 0, 69, 0, 74, 0, 72, 0, 75, 0, 74, 0, 76, 0, 69, 0, 76, 0, 74, 0, 77, 0, 76, 0, 78, 0, 69, 0, 78, 0, 79, 0, 69, 0, 78, 0, 76, 0, 80, 0, 83, 0, 81, 0, 82, 0, 84, 0, 82, 0, 81, 0, 85, 0, 82, 0, 84, 0, 82, 0, 85, 0, 86, 0, 87, 0, 85, 0, 84, 0, 85, 0, 87, 0, 88, 0, 89, 0, 87, 0, 84, 0, 87, 0, 89, 0, 90, 0, 91, 0, 89, 0, 84, 0, 89, 0, 91, 0, 92, 0, 93, 0, 91, 0, 84, 0, 91, 0, 93, 0, 94, 0, 95, 0, 93, 0, 84, 0, 98, 0, 96, 0, 97, 0, 97, 0, 99, 0, 98, 0, 97, 0, 100, 0, 99, 0, 100, 0, 97, 0, 101, 0, 100, 0, 102, 0, 99, 0, 102, 0, 100, 0, 103, 0, 102, 0, 104, 0, 99, 0, 104, 0, 102, 0, 105, 0, 104, 0, 106, 0, 99, 0, 106, 0, 104, 0, 107, 0, 106, 0, 108, 0, 99, 0, 108, 0, 106, 0, 109, 0, 108, 0, 110, 0, 99, 0, 110, 0, 108, 0, 111, 0, 110, 0, 112, 0, 99, 0, 112, 0, 113, 0, 99, 0, 112, 0, 110, 0, 114, 0, 117, 0, 115, 0, 116, 0, 118, 0, 116, 0, 115, 0, 119, 0, 116, 0, 118, 0, 116, 0, 119, 0, 120, 0, 121, 0, 119, 0, 118, 0, 119, 0, 121, 0, 122, 0, 123, 0, 121, 0, 118, 0, 121, 0, 123, 0, 124, 0, 125, 0, 123, 0, 118, 0, 123, 0, 125, 0, 126, 0, 127, 0, 125, 0, 118, 0, 125, 0, 127, 0, 128, 0, 129, 0, 127, 0, 118, 0, 127, 0, 129, 0, 130, 0, 131, 0, 129, 0, 118, 0, 129, 0, 131, 0, 132, 0, 133, 0, 131, 0, 118, 0), +"lods": [0.0605315, PackedByteArray(17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 39, 0, 39, 0, 40, 0, 38, 0, 39, 0, 43, 0, 40, 0, 43, 0, 49, 0, 40, 0, 49, 0, 50, 0, 40, 0, 53, 0, 51, 0, 54, 0, 55, 0, 54, 0, 51, 0, 58, 0, 54, 0, 55, 0, 64, 0, 58, 0, 55, 0, 65, 0, 64, 0, 55, 0, 67, 0, 69, 0, 68, 0, 67, 0, 70, 0, 69, 0, 70, 0, 72, 0, 69, 0, 72, 0, 74, 0, 69, 0, 74, 0, 76, 0, 69, 0, 76, 0, 78, 0, 69, 0, 78, 0, 79, 0, 69, 0, 84, 0, 82, 0, 81, 0, 85, 0, 82, 0, 84, 0, 87, 0, 85, 0, 84, 0, 89, 0, 87, 0, 84, 0, 91, 0, 89, 0, 84, 0, 93, 0, 91, 0, 84, 0, 95, 0, 93, 0, 84, 0, 97, 0, 99, 0, 98, 0, 97, 0, 100, 0, 99, 0, 100, 0, 102, 0, 99, 0, 102, 0, 104, 0, 99, 0, 104, 0, 106, 0, 99, 0, 106, 0, 108, 0, 99, 0, 108, 0, 110, 0, 99, 0, 110, 0, 112, 0, 99, 0, 112, 0, 113, 0, 99, 0, 118, 0, 116, 0, 115, 0, 119, 0, 116, 0, 118, 0, 121, 0, 119, 0, 118, 0, 123, 0, 121, 0, 118, 0, 125, 0, 123, 0, 118, 0, 127, 0, 125, 0, 118, 0, 129, 0, 127, 0, 118, 0, 131, 0, 129, 0, 118, 0, 133, 0, 131, 0, 118, 0), 0.26929, PackedByteArray(17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 39, 0, 39, 0, 40, 0, 38, 0, 39, 0, 50, 0, 40, 0, 53, 0, 51, 0, 54, 0, 55, 0, 54, 0, 51, 0, 65, 0, 54, 0, 55, 0, 67, 0, 69, 0, 68, 0, 67, 0, 78, 0, 69, 0, 78, 0, 79, 0, 69, 0, 84, 0, 82, 0, 81, 0, 93, 0, 82, 0, 84, 0, 95, 0, 93, 0, 84, 0, 102, 0, 99, 0, 98, 0, 102, 0, 112, 0, 99, 0, 112, 0, 113, 0, 99, 0, 118, 0, 121, 0, 115, 0, 131, 0, 121, 0, 118, 0, 133, 0, 131, 0, 118, 0)], +"material": SubResource("StandardMaterial3D_vrbip"), +"name": "grass", +"primitive": 3, +"vertex_count": 134, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 255, 191, 255, 31, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 0, 128, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 172, 173, 144, 42, 255, 223, 255, 47, 0, 0, 0, 128, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 162, 180, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 131, 18, 237, 223, 125, 37, 255, 191, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 131, 18, 237, 223, 125, 37, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 131, 18, 237, 223, 125, 37, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 16, 160, 123, 109, 125, 37, 255, 63, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 16, 160, 123, 109, 125, 37, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 16, 160, 123, 109, 125, 37, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 106, 205, 131, 146, 255, 255, 190, 146, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 106, 205, 131, 146, 255, 255, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 106, 205, 131, 146, 255, 255, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 172, 173, 144, 42, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 162, 180, 5, 43, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 227, 218, 140, 210, 0, 0, 255, 159, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 227, 218, 140, 210, 0, 0, 255, 159, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 255, 159, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 255, 159, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 227, 218, 140, 210, 0, 0, 255, 159, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 227, 218, 140, 210, 0, 0, 255, 223, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 227, 218, 140, 210, 0, 0, 255, 159, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 227, 218, 140, 210, 0, 0, 255, 159, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 255, 223, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 227, 218, 140, 210, 0, 0, 255, 159, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 227, 218, 140, 210, 0, 0, 255, 223, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 227, 218, 140, 210, 0, 0, 255, 223, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 227, 218, 140, 210, 0, 0, 255, 159, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 227, 218, 140, 210, 0, 0, 255, 223, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 227, 218, 140, 210, 0, 0, 255, 223, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 227, 218, 140, 210, 0, 0, 255, 159, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 227, 218, 140, 210, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 227, 218, 140, 210, 0, 0, 255, 223, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62, 227, 218, 140, 210, 0, 0, 255, 223, 78, 222, 222, 190, 24, 108, 87, 63, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 255, 95, 78, 222, 158, 190, 24, 108, 87, 63, 174, 33, 225, 190, 141, 82, 228, 90, 0, 0, 255, 95, 182, 214, 175, 190, 195, 3, 69, 63, 164, 20, 8, 191, 141, 82, 228, 90, 0, 0, 255, 95, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 255, 95, 156, 188, 61, 190, 24, 108, 87, 63, 175, 33, 161, 190, 141, 82, 228, 90, 0, 0, 255, 95, 108, 173, 95, 190, 195, 3, 69, 63, 74, 41, 208, 190, 141, 82, 228, 90, 0, 0, 255, 31, 111, 242, 118, 189, 24, 108, 87, 63, 93, 67, 66, 190, 141, 82, 228, 90, 0, 0, 255, 95, 217, 90, 191, 189, 195, 3, 69, 63, 74, 41, 144, 190, 141, 82, 228, 90, 0, 0, 255, 95, 187, 134, 132, 61, 24, 108, 87, 63, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 255, 31, 77, 74, 1, 61, 195, 3, 69, 63, 147, 82, 32, 190, 141, 82, 228, 90, 0, 0, 255, 95, 93, 67, 66, 62, 24, 108, 87, 63, 111, 242, 118, 61, 141, 82, 228, 90, 0, 0, 255, 31, 147, 82, 32, 62, 195, 3, 69, 63, 77, 74, 1, 189, 141, 82, 228, 90, 0, 0, 255, 31, 175, 33, 161, 62, 24, 108, 87, 63, 156, 188, 61, 62, 141, 82, 228, 90, 0, 0, 255, 95, 74, 41, 144, 62, 195, 3, 69, 63, 217, 90, 191, 61, 141, 82, 228, 90, 0, 0, 255, 31, 174, 33, 225, 62, 24, 108, 87, 63, 78, 222, 158, 62, 141, 82, 228, 90, 0, 0, 255, 31, 74, 41, 208, 62, 195, 3, 69, 63, 108, 173, 95, 62, 141, 82, 228, 90, 0, 0, 255, 95, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 141, 82, 228, 90, 0, 0, 255, 31, 164, 20, 8, 63, 195, 3, 69, 63, 182, 214, 175, 62, 141, 82, 228, 90, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 141, 82, 228, 90, 0, 0, 255, 31) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_p5wbp") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_h4xdm"] +data = PackedVector3Array(0, 0.25, 0.5, -0.5, 0.25, 0, -0.5, 0, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.25, 0, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 0.25, 0, 0, 0.25, 0.5, 0, 0.25, 0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, 0, 0.25, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0, 0.25, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.4353, 0.8415, -0.5647, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.4353, 0.8415, -0.5647, 0.5647, 0.8415, 0.4353, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.5647, 0.8415, 0.4353, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.633, 0.7696, 0.4167, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.5915, 0.8415, 0.1667, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.4167, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, 0.5, 0.8415, 0.5915, 0.4167, 0.7696, 0.633, 0.3333, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, 0.4167, 0.7696, 0.633, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.5, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.4353, 0.8415, -0.5647, -0.3434, 0.7696, -0.5316, -0.3103, 0.8415, -0.4397, -0.3103, 0.8415, -0.4397, -0.5, 1, -0.5, -0.4353, 0.8415, -0.5647, -0.3103, 0.8415, -0.4397, -0.1853, 0.8415, -0.3147, -0.5, 1, -0.5, -0.1853, 0.8415, -0.3147, -0.3103, 0.8415, -0.4397, -0.2184, 0.7696, -0.4066, -0.1853, 0.8415, -0.3147, -0.0603, 0.8415, -0.1897, -0.5, 1, -0.5, -0.0603, 0.8415, -0.1897, -0.1853, 0.8415, -0.3147, -0.0934, 0.7696, -0.2816, -0.0603, 0.8415, -0.1897, 0.0647, 0.8415, -0.0647, -0.5, 1, -0.5, 0.0647, 0.8415, -0.0647, -0.0603, 0.8415, -0.1897, 0.0316, 0.7696, -0.1566, 0.0647, 0.8415, -0.0647, 0.1897, 0.8415, 0.0603, -0.5, 1, -0.5, 0.1897, 0.8415, 0.0603, 0.0647, 0.8415, -0.0647, 0.1566, 0.7696, -0.0316, 0.1897, 0.8415, 0.0603, 0.3147, 0.8415, 0.1853, -0.5, 1, -0.5, 0.3147, 0.8415, 0.1853, 0.1897, 0.8415, 0.0603, 0.2816, 0.7696, 0.0934, 0.3147, 0.8415, 0.1853, 0.4397, 0.8415, 0.3103, -0.5, 1, -0.5, 0.4397, 0.8415, 0.3103, 0.3147, 0.8415, 0.1853, 0.4066, 0.7696, 0.2184, 0.4397, 0.8415, 0.3103, 0.5647, 0.8415, 0.4353, -0.5, 1, -0.5, 0.5647, 0.8415, 0.4353, 0.5, 1, 0.5, -0.5, 1, -0.5, 0.5647, 0.8415, 0.4353, 0.4397, 0.8415, 0.3103, 0.5316, 0.7696, 0.3434, -0.3434, 0.7696, -0.5316, -0.4353, 0.8415, -0.5647, -0.3103, 0.8415, -0.4397, -0.5, 1, -0.5, -0.3103, 0.8415, -0.4397, -0.4353, 0.8415, -0.5647, -0.1853, 0.8415, -0.3147, -0.3103, 0.8415, -0.4397, -0.5, 1, -0.5, -0.3103, 0.8415, -0.4397, -0.1853, 0.8415, -0.3147, -0.2184, 0.7696, -0.4066, -0.0603, 0.8415, -0.1897, -0.1853, 0.8415, -0.3147, -0.5, 1, -0.5, -0.1853, 0.8415, -0.3147, -0.0603, 0.8415, -0.1897, -0.0934, 0.7696, -0.2816, 0.0647, 0.8415, -0.0647, -0.0603, 0.8415, -0.1897, -0.5, 1, -0.5, -0.0603, 0.8415, -0.1897, 0.0647, 0.8415, -0.0647, 0.0316, 0.7696, -0.1566, 0.1897, 0.8415, 0.0603, 0.0647, 0.8415, -0.0647, -0.5, 1, -0.5, 0.0647, 0.8415, -0.0647, 0.1897, 0.8415, 0.0603, 0.1566, 0.7696, -0.0316, 0.3147, 0.8415, 0.1853, 0.1897, 0.8415, 0.0603, -0.5, 1, -0.5, 0.1897, 0.8415, 0.0603, 0.3147, 0.8415, 0.1853, 0.2816, 0.7696, 0.0934, 0.4397, 0.8415, 0.3103, 0.3147, 0.8415, 0.1853, -0.5, 1, -0.5, 0.3147, 0.8415, 0.1853, 0.4397, 0.8415, 0.3103, 0.4066, 0.7696, 0.2184, 0.5647, 0.8415, 0.4353, 0.4397, 0.8415, 0.3103, -0.5, 1, -0.5, 0.4397, 0.8415, 0.3103, 0.5647, 0.8415, 0.4353, 0.5316, 0.7696, 0.3434, 0.5, 1, 0.5, 0.5647, 0.8415, 0.4353, -0.5, 1, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_enf3i"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_3rbky"] +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1.00001, 1, 1.00001), +"format": 4097, +"index_count": 36, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 2, 0, 4, 0, 5, 0, 5, 0, 0, 0, 2, 0, 7, 0, 6, 0, 5, 0, 5, 0, 4, 0, 7, 0, 7, 0, 4, 0, 2, 0, 2, 0, 3, 0, 7, 0, 1, 0, 0, 0, 5, 0, 5, 0, 6, 0, 1, 0, 6, 0, 7, 0, 3, 0, 3, 0, 1, 0, 6, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 8, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_8ut0e"] +resource_name = "blockDirt_Mesh blockDirt" +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1.00001, 1, 1.00001), +"attribute_data": PackedByteArray(246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65), +"format": 4119, +"index_count": 36, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0), +"material": SubResource("StandardMaterial3D_enf3i"), +"name": "dirt", +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_3rbky") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_l140x"] +data = PackedVector3Array(0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, -0.5, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_eucmb"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_c8bs5"] +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1, 1.00001, 1.00001), +"format": 4097, +"index_count": 24, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 5, 0, 2, 0, 1, 0, 1, 0, 3, 0, 5, 0, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 4, 0, 0, 0, 2, 0, 5, 0, 5, 0, 4, 0, 0, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 6, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ys1ar"] +resource_name = "blockDirtRamp_Mesh blockDirtRamp" +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1, 1.00001, 1.00001), +"attribute_data": PackedByteArray(246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 247, 181, 110, 65, 246, 122, 157, 193, 247, 181, 110, 65, 246, 122, 157, 65, 121, 8, 35, 194, 246, 122, 157, 193, 121, 8, 35, 194), +"format": 4119, +"index_count": 24, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 7, 0, 9, 0, 8, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0, 16, 0, 14, 0, 15, 0, 15, 0, 17, 0, 16, 0), +"material": SubResource("StandardMaterial3D_eucmb"), +"name": "dirt", +"primitive": 3, +"vertex_count": 18, +"vertex_data": PackedByteArray(0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_c8bs5") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_fsegj"] +data = PackedVector3Array(-0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lqjvo"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_srla5"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_7gsnf"] +_surfaces = [{ +"aabb": AABB(-0.633028, -1.60297e-31, -0.56471, 1.26606, 0.5, 1.19774), +"format": 4097, +"index_count": 309, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 15, 0, 12, 0, 14, 0, 14, 0, 16, 0, 15, 0, 14, 0, 1, 0, 16, 0, 1, 0, 17, 0, 16, 0, 1, 0, 18, 0, 17, 0, 1, 0, 19, 0, 18, 0, 1, 0, 0, 0, 19, 0, 12, 0, 15, 0, 14, 0, 16, 0, 14, 0, 15, 0, 1, 0, 14, 0, 16, 0, 17, 0, 1, 0, 16, 0, 18, 0, 1, 0, 17, 0, 19, 0, 1, 0, 18, 0, 0, 0, 1, 0, 19, 0, 4, 0, 20, 0, 21, 0, 21, 0, 5, 0, 4, 0, 21, 0, 22, 0, 5, 0, 22, 0, 21, 0, 23, 0, 22, 0, 24, 0, 5, 0, 24, 0, 22, 0, 25, 0, 24, 0, 2, 0, 5, 0, 2, 0, 1, 0, 5, 0, 2, 0, 24, 0, 26, 0, 20, 0, 4, 0, 21, 0, 5, 0, 21, 0, 4, 0, 22, 0, 21, 0, 5, 0, 21, 0, 22, 0, 23, 0, 24, 0, 22, 0, 5, 0, 22, 0, 24, 0, 25, 0, 2, 0, 24, 0, 5, 0, 24, 0, 2, 0, 26, 0, 1, 0, 2, 0, 5, 0, 13, 0, 27, 0, 28, 0, 28, 0, 14, 0, 13, 0, 28, 0, 29, 0, 14, 0, 29, 0, 28, 0, 30, 0, 29, 0, 31, 0, 14, 0, 31, 0, 29, 0, 32, 0, 31, 0, 33, 0, 14, 0, 33, 0, 31, 0, 34, 0, 33, 0, 35, 0, 14, 0, 35, 0, 33, 0, 36, 0, 35, 0, 6, 0, 14, 0, 6, 0, 8, 0, 14, 0, 6, 0, 35, 0, 37, 0, 27, 0, 13, 0, 28, 0, 14, 0, 28, 0, 13, 0, 29, 0, 28, 0, 14, 0, 28, 0, 29, 0, 30, 0, 31, 0, 29, 0, 14, 0, 29, 0, 31, 0, 32, 0, 33, 0, 31, 0, 14, 0, 31, 0, 33, 0, 34, 0, 35, 0, 33, 0, 14, 0, 33, 0, 35, 0, 36, 0, 6, 0, 35, 0, 14, 0, 35, 0, 6, 0, 37, 0, 8, 0, 6, 0, 14, 0, 11, 0, 38, 0, 39, 0, 39, 0, 9, 0, 11, 0, 39, 0, 40, 0, 9, 0, 40, 0, 39, 0, 41, 0, 40, 0, 42, 0, 9, 0, 42, 0, 40, 0, 43, 0, 42, 0, 3, 0, 9, 0, 3, 0, 5, 0, 9, 0, 3, 0, 42, 0, 44, 0, 38, 0, 11, 0, 39, 0, 9, 0, 39, 0, 11, 0, 40, 0, 39, 0, 9, 0, 39, 0, 40, 0, 41, 0, 42, 0, 40, 0, 9, 0, 40, 0, 42, 0, 43, 0, 3, 0, 42, 0, 9, 0, 42, 0, 3, 0, 44, 0, 5, 0, 3, 0, 9, 0, 8, 0, 9, 0, 5, 0, 5, 0, 14, 0, 8, 0, 5, 0, 1, 0, 14, 0, 8, 0, 7, 0, 45, 0, 45, 0, 46, 0, 8, 0, 46, 0, 9, 0, 8, 0, 46, 0, 47, 0, 9, 0, 47, 0, 48, 0, 9, 0, 48, 0, 49, 0, 9, 0, 49, 0, 10, 0, 9, 0, 7, 0, 8, 0, 45, 0, 46, 0, 45, 0, 8, 0, 9, 0, 46, 0, 8, 0, 47, 0, 46, 0, 9, 0, 48, 0, 47, 0, 9, 0, 49, 0, 48, 0, 9, 0, 10, 0, 49, 0, 9, 0), +"lods": [0.194736, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 16, 0, 12, 0, 14, 0, 14, 0, 1, 0, 16, 0, 1, 0, 0, 0, 16, 0, 12, 0, 16, 0, 14, 0, 1, 0, 14, 0, 16, 0, 0, 0, 1, 0, 16, 0, 21, 0, 5, 0, 4, 0, 21, 0, 2, 0, 5, 0, 2, 0, 1, 0, 5, 0, 5, 0, 21, 0, 4, 0, 2, 0, 21, 0, 5, 0, 1, 0, 2, 0, 5, 0, 28, 0, 14, 0, 13, 0, 28, 0, 6, 0, 14, 0, 6, 0, 8, 0, 14, 0, 14, 0, 28, 0, 13, 0, 6, 0, 28, 0, 14, 0, 8, 0, 6, 0, 14, 0, 39, 0, 9, 0, 11, 0, 39, 0, 3, 0, 9, 0, 3, 0, 5, 0, 9, 0, 9, 0, 39, 0, 11, 0, 3, 0, 39, 0, 9, 0, 5, 0, 3, 0, 9, 0, 8, 0, 9, 0, 5, 0, 5, 0, 14, 0, 8, 0, 5, 0, 1, 0, 14, 0, 8, 0, 7, 0, 46, 0, 46, 0, 9, 0, 8, 0, 46, 0, 10, 0, 9, 0, 7, 0, 8, 0, 46, 0, 9, 0, 46, 0, 8, 0, 10, 0, 46, 0, 9, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 55, +"vertex_data": PackedByteArray(118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170) +}, { +"aabb": AABB(-0.633028, -1.60297e-31, -0.56471, 1.26606, 0.5, 1.19774), +"format": 4097, +"index_count": 39, +"index_data": PackedByteArray(51, 0, 50, 0, 1, 0, 1, 0, 5, 0, 51, 0, 14, 0, 52, 0, 53, 0, 53, 0, 8, 0, 14, 0, 50, 0, 52, 0, 14, 0, 14, 0, 1, 0, 50, 0, 9, 0, 8, 0, 53, 0, 53, 0, 54, 0, 9, 0, 5, 0, 9, 0, 54, 0, 54, 0, 51, 0, 5, 0, 54, 0, 53, 0, 52, 0, 52, 0, 51, 0, 54, 0, 52, 0, 50, 0, 51, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 55, +"vertex_data": PackedByteArray(118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_v24is"] +resource_name = "blockEnd_Mesh blockEnd" +_surfaces = [{ +"aabb": AABB(-0.633028, -1.60297e-31, -0.56471, 1.26606, 0.5, 1.19774), +"attribute_data": PackedByteArray(110, 151, 14, 193, 76, 154, 60, 191, 220, 15, 241, 192, 188, 230, 249, 192, 1, 241, 196, 192, 76, 154, 60, 191, 1, 241, 196, 192, 76, 154, 60, 191, 220, 15, 241, 192, 188, 230, 249, 192, 110, 151, 14, 193, 76, 154, 60, 191, 160, 12, 35, 64, 98, 211, 66, 192, 144, 12, 35, 192, 98, 211, 66, 192, 240, 36, 87, 164, 167, 141, 28, 193, 240, 36, 87, 164, 167, 141, 28, 193, 144, 12, 35, 192, 98, 211, 66, 192, 160, 12, 35, 64, 98, 211, 66, 192, 157, 12, 35, 64, 160, 134, 26, 61, 157, 12, 35, 192, 160, 134, 26, 61, 0, 192, 87, 174, 149, 124, 214, 192, 0, 192, 87, 174, 149, 124, 214, 192, 157, 12, 35, 192, 160, 134, 26, 61, 157, 12, 35, 64, 160, 134, 26, 61, 140, 15, 241, 64, 150, 230, 249, 192, 63, 151, 14, 65, 8, 153, 60, 191, 168, 240, 196, 64, 8, 153, 60, 191, 168, 240, 196, 64, 8, 153, 60, 191, 63, 151, 14, 65, 8, 153, 60, 191, 140, 15, 241, 64, 150, 230, 249, 192, 148, 12, 35, 64, 240, 133, 26, 61, 164, 12, 35, 192, 240, 133, 26, 61, 121, 37, 204, 181, 151, 124, 214, 192, 121, 37, 204, 181, 151, 124, 214, 192, 164, 12, 35, 192, 240, 133, 26, 61, 148, 12, 35, 64, 240, 133, 26, 61, 246, 122, 157, 193, 172, 19, 128, 63, 246, 122, 157, 193, 55, 145, 198, 192, 205, 59, 131, 193, 24, 159, 136, 64, 71, 249, 81, 193, 172, 19, 128, 63, 173, 35, 46, 45, 55, 145, 198, 192, 246, 122, 29, 193, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 199, 18, 46, 45, 172, 19, 128, 63, 205, 59, 131, 193, 24, 159, 136, 64, 246, 122, 157, 193, 55, 145, 198, 192, 246, 122, 157, 193, 172, 19, 128, 63, 71, 249, 81, 193, 172, 19, 128, 63, 173, 35, 46, 45, 55, 145, 198, 192, 246, 122, 29, 193, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 199, 18, 46, 45, 172, 19, 128, 63, 121, 8, 39, 65, 138, 124, 177, 63, 247, 181, 222, 64, 58, 236, 240, 191, 244, 181, 94, 65, 70, 236, 240, 191, 247, 181, 94, 65, 150, 104, 17, 193, 0, 128, 213, 44, 58, 236, 240, 191, 247, 181, 94, 64, 138, 124, 177, 63, 247, 181, 222, 192, 58, 236, 240, 191, 247, 181, 94, 192, 138, 124, 177, 63, 244, 181, 94, 193, 70, 236, 240, 191, 247, 181, 94, 193, 150, 104, 17, 193, 121, 8, 39, 193, 138, 124, 177, 63, 244, 181, 94, 65, 70, 236, 240, 191, 247, 181, 222, 64, 58, 236, 240, 191, 121, 8, 39, 65, 138, 124, 177, 63, 247, 181, 94, 65, 150, 104, 17, 193, 0, 128, 213, 44, 58, 236, 240, 191, 247, 181, 94, 64, 138, 124, 177, 63, 247, 181, 222, 192, 58, 236, 240, 191, 247, 181, 94, 192, 138, 124, 177, 63, 244, 181, 94, 193, 70, 236, 240, 191, 121, 8, 39, 193, 138, 124, 177, 63, 247, 181, 94, 193, 150, 104, 17, 193, 204, 59, 131, 65, 23, 159, 136, 64, 71, 249, 81, 65, 169, 19, 128, 63, 246, 122, 157, 65, 169, 19, 128, 63, 246, 122, 157, 65, 56, 145, 198, 192, 75, 249, 209, 64, 169, 19, 128, 63, 246, 122, 29, 65, 23, 159, 136, 64, 101, 199, 106, 172, 169, 19, 128, 63, 66, 249, 81, 64, 23, 159, 136, 64, 75, 249, 209, 192, 169, 19, 128, 63, 66, 249, 81, 192, 23, 159, 136, 64, 71, 249, 81, 193, 169, 19, 128, 63, 246, 122, 29, 193, 23, 159, 136, 64, 246, 122, 157, 193, 169, 19, 128, 63, 246, 122, 157, 193, 56, 145, 198, 192, 205, 59, 131, 193, 23, 159, 136, 64, 246, 122, 157, 65, 169, 19, 128, 63, 71, 249, 81, 65, 169, 19, 128, 63, 204, 59, 131, 65, 23, 159, 136, 64, 246, 122, 157, 65, 56, 145, 198, 192, 75, 249, 209, 64, 169, 19, 128, 63, 246, 122, 29, 65, 23, 159, 136, 64, 101, 199, 106, 172, 169, 19, 128, 63, 66, 249, 81, 64, 23, 159, 136, 64, 75, 249, 209, 192, 169, 19, 128, 63, 66, 249, 81, 192, 23, 159, 136, 64, 71, 249, 81, 193, 169, 19, 128, 63, 246, 122, 29, 193, 23, 159, 136, 64, 246, 122, 157, 193, 169, 19, 128, 63, 205, 59, 131, 193, 23, 159, 136, 64, 246, 122, 157, 193, 56, 145, 198, 192, 121, 8, 39, 65, 139, 124, 177, 63, 252, 181, 222, 64, 50, 236, 240, 191, 249, 181, 94, 65, 50, 236, 240, 191, 247, 181, 94, 65, 150, 104, 17, 193, 127, 81, 81, 54, 44, 236, 240, 191, 248, 181, 94, 64, 140, 124, 177, 63, 240, 181, 222, 192, 44, 236, 240, 191, 245, 181, 94, 192, 140, 124, 177, 63, 241, 181, 94, 193, 56, 236, 240, 191, 247, 181, 94, 193, 150, 104, 17, 193, 121, 8, 39, 193, 141, 124, 177, 63, 249, 181, 94, 65, 50, 236, 240, 191, 252, 181, 222, 64, 50, 236, 240, 191, 121, 8, 39, 65, 139, 124, 177, 63, 247, 181, 94, 65, 150, 104, 17, 193, 127, 81, 81, 54, 44, 236, 240, 191, 248, 181, 94, 64, 140, 124, 177, 63, 240, 181, 222, 192, 44, 236, 240, 191, 245, 181, 94, 192, 140, 124, 177, 63, 241, 181, 94, 193, 56, 236, 240, 191, 121, 8, 39, 193, 141, 124, 177, 63, 247, 181, 94, 193, 150, 104, 17, 193, 246, 122, 157, 193, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 175, 19, 128, 63, 205, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 55, 145, 198, 192, 71, 249, 81, 65, 175, 19, 128, 63, 69, 80, 109, 173, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 75, 249, 209, 64, 175, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 104, 207, 120, 173, 175, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 205, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 175, 19, 128, 63, 71, 249, 81, 65, 175, 19, 128, 63, 69, 80, 109, 173, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 75, 249, 209, 64, 175, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 104, 207, 120, 173, 175, 19, 128, 63, 247, 181, 94, 193, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 149, 193, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 0, 128, 46, 45, 0, 0, 128, 63, 0, 128, 46, 45, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 0, 128, 46, 173, 246, 122, 149, 193, 0, 128, 46, 173, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 149, 193, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 149, 193, 247, 181, 94, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 32, 22, 234, 13, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 309, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 34, 0, 35, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 34, 0, 38, 0, 37, 0, 41, 0, 39, 0, 40, 0, 42, 0, 40, 0, 39, 0, 43, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 43, 0, 44, 0, 46, 0, 43, 0, 45, 0, 47, 0, 43, 0, 46, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 49, 0, 52, 0, 51, 0, 52, 0, 49, 0, 53, 0, 52, 0, 54, 0, 51, 0, 54, 0, 52, 0, 55, 0, 54, 0, 56, 0, 51, 0, 56, 0, 57, 0, 51, 0, 56, 0, 54, 0, 58, 0, 61, 0, 59, 0, 60, 0, 62, 0, 60, 0, 59, 0, 63, 0, 60, 0, 62, 0, 60, 0, 63, 0, 64, 0, 65, 0, 63, 0, 62, 0, 63, 0, 65, 0, 66, 0, 67, 0, 65, 0, 62, 0, 65, 0, 67, 0, 68, 0, 69, 0, 67, 0, 62, 0, 72, 0, 70, 0, 71, 0, 71, 0, 73, 0, 72, 0, 71, 0, 74, 0, 73, 0, 74, 0, 71, 0, 75, 0, 74, 0, 76, 0, 73, 0, 76, 0, 74, 0, 77, 0, 76, 0, 78, 0, 73, 0, 78, 0, 76, 0, 79, 0, 78, 0, 80, 0, 73, 0, 80, 0, 78, 0, 81, 0, 80, 0, 82, 0, 73, 0, 82, 0, 83, 0, 73, 0, 82, 0, 80, 0, 84, 0, 87, 0, 85, 0, 86, 0, 88, 0, 86, 0, 85, 0, 89, 0, 86, 0, 88, 0, 86, 0, 89, 0, 90, 0, 91, 0, 89, 0, 88, 0, 89, 0, 91, 0, 92, 0, 93, 0, 91, 0, 88, 0, 91, 0, 93, 0, 94, 0, 95, 0, 93, 0, 88, 0, 93, 0, 95, 0, 96, 0, 97, 0, 95, 0, 88, 0, 95, 0, 97, 0, 98, 0, 99, 0, 97, 0, 88, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 104, 0, 101, 0, 105, 0, 104, 0, 106, 0, 103, 0, 106, 0, 104, 0, 107, 0, 106, 0, 108, 0, 103, 0, 108, 0, 109, 0, 103, 0, 108, 0, 106, 0, 110, 0, 113, 0, 111, 0, 112, 0, 114, 0, 112, 0, 111, 0, 115, 0, 112, 0, 114, 0, 112, 0, 115, 0, 116, 0, 117, 0, 115, 0, 114, 0, 115, 0, 117, 0, 118, 0, 119, 0, 117, 0, 114, 0, 117, 0, 119, 0, 120, 0, 121, 0, 119, 0, 114, 0, 124, 0, 122, 0, 123, 0, 123, 0, 125, 0, 124, 0, 123, 0, 126, 0, 125, 0, 129, 0, 127, 0, 128, 0, 128, 0, 130, 0, 129, 0, 130, 0, 131, 0, 129, 0, 130, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 133, 0, 134, 0, 131, 0, 134, 0, 135, 0, 131, 0, 138, 0, 136, 0, 137, 0, 139, 0, 137, 0, 136, 0, 140, 0, 139, 0, 136, 0, 141, 0, 139, 0, 140, 0, 142, 0, 141, 0, 140, 0, 143, 0, 142, 0, 140, 0, 144, 0, 143, 0, 140, 0), +"lods": [0.194736, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 33, 0, 30, 0, 31, 0, 31, 0, 34, 0, 33, 0, 34, 0, 38, 0, 33, 0, 41, 0, 42, 0, 40, 0, 43, 0, 40, 0, 42, 0, 47, 0, 43, 0, 42, 0, 49, 0, 51, 0, 50, 0, 49, 0, 56, 0, 51, 0, 56, 0, 57, 0, 51, 0, 62, 0, 60, 0, 59, 0, 67, 0, 60, 0, 62, 0, 69, 0, 67, 0, 62, 0, 71, 0, 73, 0, 72, 0, 71, 0, 82, 0, 73, 0, 82, 0, 83, 0, 73, 0, 88, 0, 86, 0, 85, 0, 97, 0, 86, 0, 88, 0, 99, 0, 97, 0, 88, 0, 101, 0, 103, 0, 102, 0, 101, 0, 108, 0, 103, 0, 108, 0, 109, 0, 103, 0, 114, 0, 112, 0, 111, 0, 119, 0, 112, 0, 114, 0, 121, 0, 119, 0, 114, 0, 124, 0, 122, 0, 123, 0, 123, 0, 125, 0, 124, 0, 123, 0, 126, 0, 125, 0, 129, 0, 127, 0, 130, 0, 130, 0, 131, 0, 129, 0, 130, 0, 135, 0, 131, 0, 138, 0, 136, 0, 139, 0, 140, 0, 139, 0, 136, 0, 144, 0, 139, 0, 140, 0)], +"material": SubResource("StandardMaterial3D_lqjvo"), +"name": "grass", +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 227, 218, 185, 191, 0, 0, 190, 146, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 227, 218, 185, 191, 0, 0, 190, 146, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 227, 218, 185, 191, 0, 0, 190, 146, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 186, 63, 228, 90, 0, 0, 64, 109, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 186, 63, 228, 90, 0, 0, 64, 109, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 186, 63, 228, 90, 0, 0, 64, 109, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 255, 255, 0, 0, 255, 191, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 227, 218, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 228, 90, 0, 0, 255, 63, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 255, 127, 228, 90, 0, 0, 255, 63, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 255, 127, 228, 90, 0, 0, 255, 63, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 27, 37, 185, 191, 130, 90, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 27, 37, 185, 191, 130, 90, 255, 191, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 27, 37, 185, 191, 130, 90, 255, 191, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 68, 192, 228, 90, 130, 90, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 68, 192, 228, 90, 130, 90, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 68, 192, 228, 90, 130, 90, 255, 63, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 37, 209, 217, 174, 254, 255, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 37, 209, 217, 174, 255, 255, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 37, 209, 217, 174, 254, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 37, 209, 217, 174, 254, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 217, 46, 37, 81, 255, 255, 254, 127, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 217, 46, 37, 81, 254, 255, 254, 127, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 217, 46, 37, 81, 254, 255, 254, 127, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 227, 218, 140, 210, 0, 0, 255, 159, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 227, 218, 140, 210, 0, 0, 255, 223, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 255, 159, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 255, 159, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 227, 218, 140, 210, 0, 0, 255, 159, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 227, 218, 140, 210, 0, 0, 255, 223, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 227, 218, 140, 210, 0, 0, 255, 223, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 227, 218, 140, 210, 0, 0, 255, 159, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 227, 218, 140, 210, 0, 0, 255, 223, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 227, 218, 140, 210, 0, 0, 255, 223, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 255, 95, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 141, 82, 228, 90, 0, 0, 255, 31, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 141, 82, 228, 90, 0, 0, 255, 95, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 255, 95, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 141, 82, 228, 90, 0, 0, 255, 95, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 141, 82, 228, 90, 0, 0, 255, 31, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 141, 82, 228, 90, 0, 0, 255, 31, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 141, 82, 228, 90, 0, 0, 255, 95, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 255, 31, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 141, 82, 228, 90, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 141, 82, 228, 90, 0, 0, 255, 31, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 27, 37, 140, 210, 255, 63, 255, 191, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 27, 37, 140, 210, 255, 63, 255, 191, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 27, 37, 140, 210, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 27, 37, 140, 210, 255, 63, 255, 191, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 27, 37, 140, 210, 255, 63, 255, 191, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 27, 37, 140, 210, 255, 63, 255, 191, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 27, 37, 140, 210, 255, 63, 255, 191, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 27, 37, 140, 210, 255, 63, 255, 191, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 27, 37, 140, 210, 255, 63, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 27, 37, 140, 210, 255, 63, 255, 191, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 27, 37, 140, 210, 255, 63, 255, 191, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 113, 173, 228, 90, 255, 63, 255, 63, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 113, 173, 228, 90, 255, 63, 255, 63, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 113, 173, 228, 90, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 113, 173, 228, 90, 255, 63, 255, 63, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 113, 173, 228, 90, 255, 63, 255, 63, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 113, 173, 228, 90, 255, 63, 255, 63, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 113, 173, 228, 90, 255, 63, 255, 63, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 113, 173, 228, 90, 255, 63, 255, 63, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 113, 173, 228, 90, 255, 63, 255, 63, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 113, 173, 228, 90, 255, 63, 255, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 113, 173, 228, 90, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 127, 255, 255, 255, 255, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, -1.60297e-31, -0.56471, 1.26606, 0.5, 1.19774), +"attribute_data": PackedByteArray(110, 151, 14, 193, 76, 154, 60, 191, 220, 15, 241, 192, 188, 230, 249, 192, 1, 241, 196, 192, 76, 154, 60, 191, 1, 241, 196, 192, 76, 154, 60, 191, 220, 15, 241, 192, 188, 230, 249, 192, 110, 151, 14, 193, 76, 154, 60, 191, 160, 12, 35, 64, 98, 211, 66, 192, 144, 12, 35, 192, 98, 211, 66, 192, 240, 36, 87, 164, 167, 141, 28, 193, 240, 36, 87, 164, 167, 141, 28, 193, 144, 12, 35, 192, 98, 211, 66, 192, 160, 12, 35, 64, 98, 211, 66, 192, 157, 12, 35, 64, 160, 134, 26, 61, 157, 12, 35, 192, 160, 134, 26, 61, 0, 192, 87, 174, 149, 124, 214, 192, 0, 192, 87, 174, 149, 124, 214, 192, 157, 12, 35, 192, 160, 134, 26, 61, 157, 12, 35, 64, 160, 134, 26, 61, 140, 15, 241, 64, 150, 230, 249, 192, 63, 151, 14, 65, 8, 153, 60, 191, 168, 240, 196, 64, 8, 153, 60, 191, 168, 240, 196, 64, 8, 153, 60, 191, 63, 151, 14, 65, 8, 153, 60, 191, 140, 15, 241, 64, 150, 230, 249, 192, 148, 12, 35, 64, 240, 133, 26, 61, 164, 12, 35, 192, 240, 133, 26, 61, 121, 37, 204, 181, 151, 124, 214, 192, 121, 37, 204, 181, 151, 124, 214, 192, 164, 12, 35, 192, 240, 133, 26, 61, 148, 12, 35, 64, 240, 133, 26, 61, 246, 122, 157, 193, 172, 19, 128, 63, 246, 122, 157, 193, 55, 145, 198, 192, 205, 59, 131, 193, 24, 159, 136, 64, 71, 249, 81, 193, 172, 19, 128, 63, 173, 35, 46, 45, 55, 145, 198, 192, 246, 122, 29, 193, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 199, 18, 46, 45, 172, 19, 128, 63, 205, 59, 131, 193, 24, 159, 136, 64, 246, 122, 157, 193, 55, 145, 198, 192, 246, 122, 157, 193, 172, 19, 128, 63, 71, 249, 81, 193, 172, 19, 128, 63, 173, 35, 46, 45, 55, 145, 198, 192, 246, 122, 29, 193, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 199, 18, 46, 45, 172, 19, 128, 63, 121, 8, 39, 65, 138, 124, 177, 63, 247, 181, 222, 64, 58, 236, 240, 191, 244, 181, 94, 65, 70, 236, 240, 191, 247, 181, 94, 65, 150, 104, 17, 193, 0, 128, 213, 44, 58, 236, 240, 191, 247, 181, 94, 64, 138, 124, 177, 63, 247, 181, 222, 192, 58, 236, 240, 191, 247, 181, 94, 192, 138, 124, 177, 63, 244, 181, 94, 193, 70, 236, 240, 191, 247, 181, 94, 193, 150, 104, 17, 193, 121, 8, 39, 193, 138, 124, 177, 63, 244, 181, 94, 65, 70, 236, 240, 191, 247, 181, 222, 64, 58, 236, 240, 191, 121, 8, 39, 65, 138, 124, 177, 63, 247, 181, 94, 65, 150, 104, 17, 193, 0, 128, 213, 44, 58, 236, 240, 191, 247, 181, 94, 64, 138, 124, 177, 63, 247, 181, 222, 192, 58, 236, 240, 191, 247, 181, 94, 192, 138, 124, 177, 63, 244, 181, 94, 193, 70, 236, 240, 191, 121, 8, 39, 193, 138, 124, 177, 63, 247, 181, 94, 193, 150, 104, 17, 193, 204, 59, 131, 65, 23, 159, 136, 64, 71, 249, 81, 65, 169, 19, 128, 63, 246, 122, 157, 65, 169, 19, 128, 63, 246, 122, 157, 65, 56, 145, 198, 192, 75, 249, 209, 64, 169, 19, 128, 63, 246, 122, 29, 65, 23, 159, 136, 64, 101, 199, 106, 172, 169, 19, 128, 63, 66, 249, 81, 64, 23, 159, 136, 64, 75, 249, 209, 192, 169, 19, 128, 63, 66, 249, 81, 192, 23, 159, 136, 64, 71, 249, 81, 193, 169, 19, 128, 63, 246, 122, 29, 193, 23, 159, 136, 64, 246, 122, 157, 193, 169, 19, 128, 63, 246, 122, 157, 193, 56, 145, 198, 192, 205, 59, 131, 193, 23, 159, 136, 64, 246, 122, 157, 65, 169, 19, 128, 63, 71, 249, 81, 65, 169, 19, 128, 63, 204, 59, 131, 65, 23, 159, 136, 64, 246, 122, 157, 65, 56, 145, 198, 192, 75, 249, 209, 64, 169, 19, 128, 63, 246, 122, 29, 65, 23, 159, 136, 64, 101, 199, 106, 172, 169, 19, 128, 63, 66, 249, 81, 64, 23, 159, 136, 64, 75, 249, 209, 192, 169, 19, 128, 63, 66, 249, 81, 192, 23, 159, 136, 64, 71, 249, 81, 193, 169, 19, 128, 63, 246, 122, 29, 193, 23, 159, 136, 64, 246, 122, 157, 193, 169, 19, 128, 63, 205, 59, 131, 193, 23, 159, 136, 64, 246, 122, 157, 193, 56, 145, 198, 192, 121, 8, 39, 65, 139, 124, 177, 63, 252, 181, 222, 64, 50, 236, 240, 191, 249, 181, 94, 65, 50, 236, 240, 191, 247, 181, 94, 65, 150, 104, 17, 193, 127, 81, 81, 54, 44, 236, 240, 191, 248, 181, 94, 64, 140, 124, 177, 63, 240, 181, 222, 192, 44, 236, 240, 191, 245, 181, 94, 192, 140, 124, 177, 63, 241, 181, 94, 193, 56, 236, 240, 191, 247, 181, 94, 193, 150, 104, 17, 193, 121, 8, 39, 193, 141, 124, 177, 63, 249, 181, 94, 65, 50, 236, 240, 191, 252, 181, 222, 64, 50, 236, 240, 191, 121, 8, 39, 65, 139, 124, 177, 63, 247, 181, 94, 65, 150, 104, 17, 193, 127, 81, 81, 54, 44, 236, 240, 191, 248, 181, 94, 64, 140, 124, 177, 63, 240, 181, 222, 192, 44, 236, 240, 191, 245, 181, 94, 192, 140, 124, 177, 63, 241, 181, 94, 193, 56, 236, 240, 191, 121, 8, 39, 193, 141, 124, 177, 63, 247, 181, 94, 193, 150, 104, 17, 193, 246, 122, 157, 193, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 175, 19, 128, 63, 205, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 55, 145, 198, 192, 71, 249, 81, 65, 175, 19, 128, 63, 69, 80, 109, 173, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 75, 249, 209, 64, 175, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 104, 207, 120, 173, 175, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 205, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 175, 19, 128, 63, 71, 249, 81, 65, 175, 19, 128, 63, 69, 80, 109, 173, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 75, 249, 209, 64, 175, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 104, 207, 120, 173, 175, 19, 128, 63, 247, 181, 94, 193, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 149, 193, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 0, 128, 46, 45, 0, 0, 128, 63, 0, 128, 46, 45, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 0, 128, 46, 173, 246, 122, 149, 193, 0, 128, 46, 173, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 149, 193, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 149, 193, 247, 181, 94, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 32, 22, 234, 13, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 39, +"index_data": PackedByteArray(147, 0, 145, 0, 146, 0, 146, 0, 148, 0, 147, 0, 151, 0, 149, 0, 150, 0, 150, 0, 152, 0, 151, 0, 155, 0, 153, 0, 154, 0, 154, 0, 156, 0, 155, 0, 159, 0, 157, 0, 158, 0, 158, 0, 160, 0, 159, 0, 163, 0, 161, 0, 162, 0, 162, 0, 164, 0, 163, 0, 167, 0, 165, 0, 166, 0, 166, 0, 168, 0, 167, 0, 166, 0, 169, 0, 168, 0), +"material": SubResource("StandardMaterial3D_srla5"), +"name": "dirt", +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 227, 218, 185, 191, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 227, 218, 185, 191, 0, 0, 0, 128, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 227, 218, 185, 191, 0, 0, 0, 128, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 186, 63, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 186, 63, 228, 90, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 186, 63, 228, 90, 0, 0, 0, 128, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 255, 255, 0, 0, 0, 128, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 227, 218, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 228, 90, 0, 0, 0, 128, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 255, 127, 228, 90, 0, 0, 0, 128, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 255, 127, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 27, 37, 185, 191, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 27, 37, 185, 191, 0, 0, 0, 128, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 27, 37, 185, 191, 0, 0, 0, 128, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 68, 192, 228, 90, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 68, 192, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 68, 192, 228, 90, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 85, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 217, 46, 37, 81, 0, 0, 0, 128, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 227, 218, 140, 210, 0, 0, 0, 128, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 227, 218, 140, 210, 0, 0, 0, 128, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 0, 128, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 227, 218, 140, 210, 0, 0, 0, 128, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 227, 218, 140, 210, 0, 0, 0, 128, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 227, 218, 140, 210, 0, 0, 0, 128, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 227, 218, 140, 210, 0, 0, 0, 128, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 227, 218, 140, 210, 0, 0, 0, 128, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 227, 218, 140, 210, 0, 0, 0, 128, 187, 134, 132, 61, 47, 216, 174, 62, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 0, 128, 93, 67, 66, 62, 47, 216, 174, 62, 174, 33, 225, 190, 141, 82, 228, 90, 0, 0, 0, 128, 147, 82, 32, 62, 136, 7, 138, 62, 164, 20, 8, 191, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 0, 128, 175, 33, 161, 62, 47, 216, 174, 62, 175, 33, 161, 190, 141, 82, 228, 90, 0, 0, 0, 128, 74, 41, 144, 62, 136, 7, 138, 62, 74, 41, 208, 190, 141, 82, 228, 90, 0, 0, 0, 128, 174, 33, 225, 62, 47, 216, 174, 62, 93, 67, 66, 190, 141, 82, 228, 90, 0, 0, 0, 128, 74, 41, 208, 62, 136, 7, 138, 62, 74, 41, 144, 190, 141, 82, 228, 90, 0, 0, 0, 128, 214, 144, 16, 63, 47, 216, 174, 62, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 0, 128, 164, 20, 8, 63, 136, 7, 138, 62, 147, 82, 32, 190, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 141, 82, 228, 90, 0, 0, 0, 128, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 190, 136, 7, 138, 62, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 27, 37, 140, 210, 0, 0, 0, 128, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 27, 37, 140, 210, 0, 0, 0, 128, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 27, 37, 140, 210, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 27, 37, 140, 210, 0, 0, 0, 128, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 27, 37, 140, 210, 0, 0, 0, 128, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 27, 37, 140, 210, 0, 0, 0, 128, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 27, 37, 140, 210, 0, 0, 0, 128, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 27, 37, 140, 210, 0, 0, 0, 128, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 27, 37, 140, 210, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 27, 37, 140, 210, 0, 0, 0, 128, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 27, 37, 140, 210, 0, 0, 0, 128, 216, 144, 16, 191, 47, 216, 174, 62, 187, 134, 132, 189, 113, 173, 228, 90, 0, 0, 0, 128, 177, 33, 225, 190, 47, 216, 174, 62, 93, 67, 66, 190, 113, 173, 228, 90, 0, 0, 0, 128, 164, 20, 8, 191, 136, 7, 138, 62, 147, 82, 32, 190, 113, 173, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 113, 173, 228, 90, 0, 0, 0, 128, 178, 33, 161, 190, 47, 216, 174, 62, 175, 33, 161, 190, 113, 173, 228, 90, 0, 0, 0, 128, 74, 41, 208, 190, 136, 7, 138, 62, 74, 41, 144, 190, 113, 173, 228, 90, 0, 0, 0, 128, 100, 67, 66, 190, 47, 216, 174, 62, 174, 33, 225, 190, 113, 173, 228, 90, 0, 0, 0, 128, 74, 41, 144, 190, 136, 7, 138, 62, 74, 41, 208, 190, 113, 173, 228, 90, 0, 0, 0, 128, 200, 134, 132, 189, 47, 216, 174, 62, 214, 144, 16, 191, 113, 173, 228, 90, 0, 0, 0, 128, 147, 82, 32, 190, 136, 7, 138, 62, 164, 20, 8, 191, 113, 173, 228, 90, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 113, 173, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 127, 255, 255, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 85, 85, 213, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 170, 170, 170, 62, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 173, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 136, 7, 138, 62, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 103, 213, 141, 170, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 103, 213, 141, 170, 0, 0, 255, 191, 255, 63, 255, 191, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 0, 0, 255, 191, 255, 63, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 255, 191, 255, 63, 255, 191, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 0, 0, 255, 191, 255, 63, 255, 191, 0, 0, 0, 191, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 169, 19, 80, 140, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 192, 14, 28, 38, 103, 213, 141, 170, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 192, 14, 156, 37, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 192, 14, 156, 37, 103, 213, 141, 170, 255, 127, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_7gsnf") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_1p6np"] +data = PackedVector3Array(0.5647, 0.3415, -0.0647, 0.5915, 0.3415, 0, 0.5, 0.5, 0, 0.5915, 0.3415, 0, 0.5647, 0.3415, -0.0647, 0.5, 0.5, 0, 0, 0.5, -0.5, -0.0647, 0.3415, -0.5647, 0.0647, 0.3415, -0.5647, -0.0647, 0.3415, -0.5647, 0, 0.5, -0.5, 0.0647, 0.3415, -0.5647, -0.5, 0.5, 0.5, -0.5, 0.3415, 0.5915, -0.5915, 0.3415, 0.5, -0.5, 0.3415, 0.5915, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.5, -0.5647, 0.3415, -0.0647, -0.5, 0.5, 0, -0.5915, 0.3415, 0, -0.5, 0.5, 0, -0.5647, 0.3415, -0.0647, -0.5915, 0.3415, 0, 0.5, 0.5, 0.5, 0.5915, 0.3415, 0.5, 0.5, 0.3415, 0.5915, 0.5915, 0.3415, 0.5, 0.5, 0.5, 0.5, 0.5, 0.3415, 0.5915, 0.633, 0.2696, 0.4167, 0.5915, 0.3415, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5915, 0.3415, 0.3333, 0.633, 0.2696, 0.4167, 0.5, 0.5, 0.5, 0.5, 0.5, 0, 0.5915, 0.3415, 0.3333, 0.5, 0.5, 0, 0.633, 0.2696, 0.25, 0.5915, 0.3415, 0.3333, 0.5, 0.5, 0, 0.5915, 0.3415, 0.1667, 0.633, 0.2696, 0.25, 0.5, 0.5, 0, 0.633, 0.2696, 0.0833, 0.5915, 0.3415, 0.1667, 0.5, 0.5, 0, 0.5915, 0.3415, 0, 0.633, 0.2696, 0.0833, 0.5915, 0.3415, 0.5, 0.633, 0.2696, 0.4167, 0.5, 0.5, 0.5, 0.5915, 0.3415, 0.3333, 0.5, 0.5, 0.5, 0.633, 0.2696, 0.4167, 0.5, 0.5, 0, 0.5, 0.5, 0.5, 0.5915, 0.3415, 0.3333, 0.633, 0.2696, 0.25, 0.5, 0.5, 0, 0.5915, 0.3415, 0.3333, 0.5915, 0.3415, 0.1667, 0.5, 0.5, 0, 0.633, 0.2696, 0.25, 0.633, 0.2696, 0.0833, 0.5, 0.5, 0, 0.5915, 0.3415, 0.1667, 0.5915, 0.3415, 0, 0.5, 0.5, 0, 0.633, 0.2696, 0.0833, 0.0647, 0.3415, -0.5647, 0.1566, 0.2696, -0.5316, 0.1897, 0.3415, -0.4397, 0.1897, 0.3415, -0.4397, 0, 0.5, -0.5, 0.0647, 0.3415, -0.5647, 0.1897, 0.3415, -0.4397, 0.3147, 0.3415, -0.3147, 0, 0.5, -0.5, 0.3147, 0.3415, -0.3147, 0.1897, 0.3415, -0.4397, 0.2816, 0.2696, -0.4066, 0.3147, 0.3415, -0.3147, 0.4397, 0.3415, -0.1897, 0, 0.5, -0.5, 0.4397, 0.3415, -0.1897, 0.3147, 0.3415, -0.3147, 0.4066, 0.2696, -0.2816, 0.4397, 0.3415, -0.1897, 0.5647, 0.3415, -0.0647, 0, 0.5, -0.5, 0.5647, 0.3415, -0.0647, 0.5, 0.5, 0, 0, 0.5, -0.5, 0.5647, 0.3415, -0.0647, 0.4397, 0.3415, -0.1897, 0.5316, 0.2696, -0.1566, 0.1566, 0.2696, -0.5316, 0.0647, 0.3415, -0.5647, 0.1897, 0.3415, -0.4397, 0, 0.5, -0.5, 0.1897, 0.3415, -0.4397, 0.0647, 0.3415, -0.5647, 0.3147, 0.3415, -0.3147, 0.1897, 0.3415, -0.4397, 0, 0.5, -0.5, 0.1897, 0.3415, -0.4397, 0.3147, 0.3415, -0.3147, 0.2816, 0.2696, -0.4066, 0.4397, 0.3415, -0.1897, 0.3147, 0.3415, -0.3147, 0, 0.5, -0.5, 0.3147, 0.3415, -0.3147, 0.4397, 0.3415, -0.1897, 0.4066, 0.2696, -0.2816, 0.5647, 0.3415, -0.0647, 0.4397, 0.3415, -0.1897, 0, 0.5, -0.5, 0.4397, 0.3415, -0.1897, 0.5647, 0.3415, -0.0647, 0.5316, 0.2696, -0.1566, 0.5, 0.5, 0, 0.5647, 0.3415, -0.0647, 0, 0.5, -0.5, 0.5, 0.3415, 0.5915, 0.4167, 0.2696, 0.633, 0.3333, 0.3415, 0.5915, 0.3333, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0.5, 0.3415, 0.5915, 0.3333, 0.3415, 0.5915, 0.1667, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0.1667, 0.3415, 0.5915, 0.3333, 0.3415, 0.5915, 0.25, 0.2696, 0.633, 0.1667, 0.3415, 0.5915, 0, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0, 0.3415, 0.5915, 0.1667, 0.3415, 0.5915, 0.0833, 0.2696, 0.633, 0, 0.3415, 0.5915, -0.1667, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.1667, 0.3415, 0.5915, 0, 0.3415, 0.5915, -0.0833, 0.2696, 0.633, -0.1667, 0.3415, 0.5915, -0.3333, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.3333, 0.3415, 0.5915, -0.1667, 0.3415, 0.5915, -0.25, 0.2696, 0.633, -0.3333, 0.3415, 0.5915, -0.5, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.5, 0.3415, 0.5915, -0.5, 0.5, 0.5, 0.5, 0.5, 0.5, -0.5, 0.3415, 0.5915, -0.3333, 0.3415, 0.5915, -0.4167, 0.2696, 0.633, 0.4167, 0.2696, 0.633, 0.5, 0.3415, 0.5915, 0.3333, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0.3333, 0.3415, 0.5915, 0.5, 0.3415, 0.5915, 0.1667, 0.3415, 0.5915, 0.3333, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0.3333, 0.3415, 0.5915, 0.1667, 0.3415, 0.5915, 0.25, 0.2696, 0.633, 0, 0.3415, 0.5915, 0.1667, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0.1667, 0.3415, 0.5915, 0, 0.3415, 0.5915, 0.0833, 0.2696, 0.633, -0.1667, 0.3415, 0.5915, 0, 0.3415, 0.5915, 0.5, 0.5, 0.5, 0, 0.3415, 0.5915, -0.1667, 0.3415, 0.5915, -0.0833, 0.2696, 0.633, -0.3333, 0.3415, 0.5915, -0.1667, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.1667, 0.3415, 0.5915, -0.3333, 0.3415, 0.5915, -0.25, 0.2696, 0.633, -0.5, 0.3415, 0.5915, -0.3333, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.3333, 0.3415, 0.5915, -0.5, 0.3415, 0.5915, -0.4167, 0.2696, 0.633, -0.5, 0.5, 0.5, -0.5, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.5647, 0.3415, -0.0647, -0.5316, 0.2696, -0.1566, -0.4397, 0.3415, -0.1897, -0.4397, 0.3415, -0.1897, -0.5, 0.5, 0, -0.5647, 0.3415, -0.0647, -0.4397, 0.3415, -0.1897, -0.3147, 0.3415, -0.3147, -0.5, 0.5, 0, -0.3147, 0.3415, -0.3147, -0.4397, 0.3415, -0.1897, -0.4066, 0.2696, -0.2816, -0.3147, 0.3415, -0.3147, -0.1897, 0.3415, -0.4397, -0.5, 0.5, 0, -0.1897, 0.3415, -0.4397, -0.3147, 0.3415, -0.3147, -0.2816, 0.2696, -0.4066, -0.1897, 0.3415, -0.4397, -0.0647, 0.3415, -0.5647, -0.5, 0.5, 0, -0.0647, 0.3415, -0.5647, 0, 0.5, -0.5, -0.5, 0.5, 0, -0.0647, 0.3415, -0.5647, -0.1897, 0.3415, -0.4397, -0.1566, 0.2696, -0.5316, -0.5316, 0.2696, -0.1566, -0.5647, 0.3415, -0.0647, -0.4397, 0.3415, -0.1897, -0.5, 0.5, 0, -0.4397, 0.3415, -0.1897, -0.5647, 0.3415, -0.0647, -0.3147, 0.3415, -0.3147, -0.4397, 0.3415, -0.1897, -0.5, 0.5, 0, -0.4397, 0.3415, -0.1897, -0.3147, 0.3415, -0.3147, -0.4066, 0.2696, -0.2816, -0.1897, 0.3415, -0.4397, -0.3147, 0.3415, -0.3147, -0.5, 0.5, 0, -0.3147, 0.3415, -0.3147, -0.1897, 0.3415, -0.4397, -0.2816, 0.2696, -0.4066, -0.0647, 0.3415, -0.5647, -0.1897, 0.3415, -0.4397, -0.5, 0.5, 0, -0.1897, 0.3415, -0.4397, -0.0647, 0.3415, -0.5647, -0.1566, 0.2696, -0.5316, 0, 0.5, -0.5, -0.0647, 0.3415, -0.5647, -0.5, 0.5, 0, -0.5, 0.5, 0.5, -0.5, 0.5, 0, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0.5, 0.5, -0.5, 0.5, 0.5, 0, 0.5, -0.5, 0.5, 0.5, 0, 0.5, 0.5, 0.5, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.5, -0.633, 0.2696, 0.4167, -0.633, 0.2696, 0.4167, -0.5915, 0.3415, 0.3333, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.3333, -0.5, 0.5, 0, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.3333, -0.633, 0.2696, 0.25, -0.5, 0.5, 0, -0.633, 0.2696, 0.25, -0.5915, 0.3415, 0.1667, -0.5, 0.5, 0, -0.5915, 0.3415, 0.1667, -0.633, 0.2696, 0.0833, -0.5, 0.5, 0, -0.633, 0.2696, 0.0833, -0.5915, 0.3415, 0, -0.5, 0.5, 0, -0.5915, 0.3415, 0.5, -0.5, 0.5, 0.5, -0.633, 0.2696, 0.4167, -0.5915, 0.3415, 0.3333, -0.633, 0.2696, 0.4167, -0.5, 0.5, 0.5, -0.5, 0.5, 0, -0.5915, 0.3415, 0.3333, -0.5, 0.5, 0.5, -0.633, 0.2696, 0.25, -0.5915, 0.3415, 0.3333, -0.5, 0.5, 0, -0.5915, 0.3415, 0.1667, -0.633, 0.2696, 0.25, -0.5, 0.5, 0, -0.633, 0.2696, 0.0833, -0.5915, 0.3415, 0.1667, -0.5, 0.5, 0, -0.5915, 0.3415, 0, -0.633, 0.2696, 0.0833, -0.5, 0.5, 0, 0, 0, -0.5, 0.5, 0, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, 0, 0.5, -0.5, 0, 0, -0.5, 0.5, 0.5, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0, 0, 0.5, 0, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0, 0.5, 0, 0, -0.5, 0.5, 0, -0.5, 0.5, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0, -0.5, 0.5, 0, 0, 0.5, -0.5, -0.5, 0.5, 0, -0.5, 0, 0, -0.5, 0, 0, 0, 0, -0.5, 0, 0.5, -0.5, -0.5, 0, 0, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, 0.5, 0, 0, -0.5, -0.5, 0, 0, 0.5, 0, 0.5, 0.5, 0, 0, 0, 0, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_laxjl"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_oqonq"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ecrhy"] +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.656604, 1.26606, 1, 1.31321), +"format": 4097, +"index_count": 372, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 15, 0, 17, 0, 16, 0, 4, 0, 18, 0, 19, 0, 19, 0, 5, 0, 4, 0, 19, 0, 20, 0, 5, 0, 20, 0, 19, 0, 21, 0, 20, 0, 22, 0, 5, 0, 22, 0, 20, 0, 23, 0, 22, 0, 10, 0, 5, 0, 10, 0, 9, 0, 5, 0, 10, 0, 22, 0, 24, 0, 18, 0, 4, 0, 19, 0, 5, 0, 19, 0, 4, 0, 20, 0, 19, 0, 5, 0, 19, 0, 20, 0, 21, 0, 22, 0, 20, 0, 5, 0, 20, 0, 22, 0, 23, 0, 10, 0, 22, 0, 5, 0, 22, 0, 10, 0, 24, 0, 9, 0, 10, 0, 5, 0, 5, 0, 9, 0, 6, 0, 6, 0, 17, 0, 5, 0, 17, 0, 14, 0, 5, 0, 17, 0, 1, 0, 14, 0, 16, 0, 25, 0, 26, 0, 26, 0, 17, 0, 16, 0, 26, 0, 27, 0, 17, 0, 27, 0, 26, 0, 28, 0, 27, 0, 29, 0, 17, 0, 29, 0, 27, 0, 30, 0, 29, 0, 2, 0, 17, 0, 2, 0, 1, 0, 17, 0, 2, 0, 29, 0, 31, 0, 25, 0, 16, 0, 26, 0, 17, 0, 26, 0, 16, 0, 27, 0, 26, 0, 17, 0, 26, 0, 27, 0, 28, 0, 29, 0, 27, 0, 17, 0, 27, 0, 29, 0, 30, 0, 2, 0, 29, 0, 17, 0, 29, 0, 2, 0, 31, 0, 1, 0, 2, 0, 17, 0, 8, 0, 32, 0, 33, 0, 33, 0, 6, 0, 8, 0, 33, 0, 34, 0, 6, 0, 34, 0, 33, 0, 35, 0, 34, 0, 36, 0, 6, 0, 36, 0, 34, 0, 37, 0, 36, 0, 15, 0, 6, 0, 15, 0, 17, 0, 6, 0, 15, 0, 36, 0, 38, 0, 32, 0, 8, 0, 33, 0, 6, 0, 33, 0, 8, 0, 34, 0, 33, 0, 6, 0, 33, 0, 34, 0, 35, 0, 36, 0, 34, 0, 6, 0, 34, 0, 36, 0, 37, 0, 15, 0, 36, 0, 6, 0, 36, 0, 15, 0, 38, 0, 17, 0, 15, 0, 6, 0, 13, 0, 39, 0, 40, 0, 40, 0, 14, 0, 13, 0, 40, 0, 41, 0, 14, 0, 41, 0, 40, 0, 42, 0, 41, 0, 43, 0, 14, 0, 43, 0, 41, 0, 44, 0, 43, 0, 3, 0, 14, 0, 3, 0, 5, 0, 14, 0, 3, 0, 43, 0, 45, 0, 39, 0, 13, 0, 40, 0, 14, 0, 40, 0, 13, 0, 41, 0, 40, 0, 14, 0, 40, 0, 41, 0, 42, 0, 43, 0, 41, 0, 14, 0, 41, 0, 43, 0, 44, 0, 3, 0, 43, 0, 14, 0, 43, 0, 3, 0, 45, 0, 5, 0, 3, 0, 14, 0, 46, 0, 12, 0, 14, 0, 14, 0, 47, 0, 46, 0, 14, 0, 1, 0, 47, 0, 1, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 1, 0, 50, 0, 48, 0, 1, 0, 51, 0, 50, 0, 1, 0, 52, 0, 51, 0, 1, 0, 0, 0, 52, 0, 12, 0, 46, 0, 14, 0, 47, 0, 14, 0, 46, 0, 1, 0, 14, 0, 47, 0, 48, 0, 1, 0, 47, 0, 49, 0, 48, 0, 47, 0, 50, 0, 1, 0, 48, 0, 51, 0, 1, 0, 50, 0, 52, 0, 1, 0, 51, 0, 0, 0, 1, 0, 52, 0, 6, 0, 9, 0, 11, 0, 11, 0, 53, 0, 6, 0, 11, 0, 54, 0, 53, 0, 53, 0, 55, 0, 6, 0, 53, 0, 56, 0, 55, 0, 55, 0, 57, 0, 6, 0, 57, 0, 58, 0, 6, 0, 58, 0, 59, 0, 6, 0, 59, 0, 7, 0, 6, 0, 9, 0, 6, 0, 11, 0, 53, 0, 11, 0, 6, 0, 54, 0, 11, 0, 53, 0, 55, 0, 53, 0, 6, 0, 56, 0, 53, 0, 55, 0, 57, 0, 55, 0, 6, 0, 58, 0, 57, 0, 6, 0, 59, 0, 58, 0, 6, 0, 7, 0, 59, 0, 6, 0), +"lods": [0.128664, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 15, 0, 17, 0, 16, 0, 19, 0, 5, 0, 4, 0, 19, 0, 10, 0, 5, 0, 10, 0, 9, 0, 5, 0, 5, 0, 19, 0, 4, 0, 10, 0, 19, 0, 5, 0, 9, 0, 10, 0, 5, 0, 5, 0, 9, 0, 6, 0, 6, 0, 17, 0, 5, 0, 17, 0, 14, 0, 5, 0, 17, 0, 1, 0, 14, 0, 26, 0, 17, 0, 16, 0, 26, 0, 2, 0, 17, 0, 2, 0, 1, 0, 17, 0, 17, 0, 26, 0, 16, 0, 2, 0, 26, 0, 17, 0, 1, 0, 2, 0, 17, 0, 33, 0, 6, 0, 8, 0, 33, 0, 15, 0, 6, 0, 15, 0, 17, 0, 6, 0, 6, 0, 33, 0, 8, 0, 15, 0, 33, 0, 6, 0, 17, 0, 15, 0, 6, 0, 40, 0, 14, 0, 13, 0, 40, 0, 3, 0, 14, 0, 3, 0, 5, 0, 14, 0, 14, 0, 40, 0, 13, 0, 3, 0, 40, 0, 14, 0, 5, 0, 3, 0, 14, 0, 47, 0, 12, 0, 14, 0, 14, 0, 1, 0, 47, 0, 1, 0, 0, 0, 47, 0, 12, 0, 47, 0, 14, 0, 1, 0, 14, 0, 47, 0, 0, 0, 1, 0, 47, 0, 6, 0, 9, 0, 11, 0, 11, 0, 53, 0, 6, 0, 53, 0, 7, 0, 6, 0, 9, 0, 6, 0, 11, 0, 53, 0, 11, 0, 6, 0, 7, 0, 53, 0, 6, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 70, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.633028, 0, -0.656604, 1.26606, 1, 1.31321), +"format": 4097, +"index_count": 72, +"index_data": PackedByteArray(6, 0, 60, 0, 61, 0, 17, 0, 6, 0, 61, 0, 61, 0, 62, 0, 17, 0, 64, 0, 63, 0, 14, 0, 14, 0, 1, 0, 64, 0, 6, 0, 9, 0, 65, 0, 65, 0, 60, 0, 6, 0, 5, 0, 66, 0, 67, 0, 9, 0, 5, 0, 67, 0, 67, 0, 65, 0, 9, 0, 17, 0, 62, 0, 68, 0, 1, 0, 17, 0, 68, 0, 68, 0, 64, 0, 1, 0, 14, 0, 63, 0, 69, 0, 5, 0, 14, 0, 69, 0, 69, 0, 66, 0, 5, 0, 61, 0, 60, 0, 65, 0, 65, 0, 67, 0, 61, 0, 67, 0, 66, 0, 61, 0, 66, 0, 62, 0, 61, 0, 66, 0, 68, 0, 62, 0, 66, 0, 69, 0, 68, 0, 69, 0, 64, 0, 68, 0, 69, 0, 63, 0, 64, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 70, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_a1omu"] +resource_name = "blockHexagon_Mesh blockHexagon" +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.656604, 1.26606, 1, 1.31321), +"attribute_data": PackedByteArray(239, 149, 230, 191, 29, 146, 136, 193, 121, 197, 173, 54, 9, 99, 192, 193, 99, 150, 230, 63, 29, 146, 136, 193, 99, 150, 230, 63, 29, 146, 136, 193, 121, 197, 173, 54, 9, 99, 192, 193, 239, 149, 230, 191, 29, 146, 136, 193, 34, 150, 230, 63, 32, 146, 136, 193, 34, 150, 230, 191, 32, 146, 136, 193, 1, 7, 136, 172, 12, 99, 192, 193, 1, 7, 136, 172, 12, 99, 192, 193, 34, 150, 230, 191, 32, 146, 136, 193, 34, 150, 230, 63, 32, 146, 136, 193, 81, 48, 75, 182, 8, 99, 192, 193, 5, 150, 230, 63, 28, 146, 136, 193, 79, 150, 230, 191, 28, 146, 136, 193, 79, 150, 230, 191, 28, 146, 136, 193, 5, 150, 230, 63, 28, 146, 136, 193, 81, 48, 75, 182, 8, 99, 192, 193, 5, 48, 75, 54, 8, 99, 192, 193, 79, 150, 230, 63, 28, 146, 136, 193, 5, 150, 230, 191, 28, 146, 136, 193, 5, 150, 230, 191, 28, 146, 136, 193, 79, 150, 230, 63, 28, 146, 136, 193, 5, 48, 75, 54, 8, 99, 192, 193, 239, 149, 230, 63, 29, 146, 136, 193, 99, 150, 230, 191, 29, 146, 136, 193, 83, 197, 173, 182, 9, 99, 192, 193, 83, 197, 173, 182, 9, 99, 192, 193, 99, 150, 230, 191, 29, 146, 136, 193, 239, 149, 230, 63, 29, 146, 136, 193, 34, 150, 230, 63, 228, 145, 136, 193, 34, 150, 230, 191, 228, 145, 136, 193, 0, 0, 136, 44, 213, 98, 192, 193, 0, 0, 136, 44, 213, 98, 192, 193, 34, 150, 230, 191, 228, 145, 136, 193, 34, 150, 230, 63, 228, 145, 136, 193, 199, 97, 8, 65, 2, 116, 76, 193, 180, 215, 181, 64, 141, 96, 128, 193, 180, 215, 53, 65, 141, 96, 128, 193, 181, 215, 53, 65, 21, 6, 186, 193, 100, 169, 59, 180, 140, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 140, 96, 128, 193, 181, 215, 53, 192, 2, 116, 76, 193, 181, 215, 53, 193, 140, 96, 128, 193, 182, 215, 53, 193, 21, 6, 186, 193, 200, 97, 8, 193, 2, 116, 76, 193, 180, 215, 53, 65, 141, 96, 128, 193, 180, 215, 181, 64, 141, 96, 128, 193, 199, 97, 8, 65, 2, 116, 76, 193, 181, 215, 53, 65, 21, 6, 186, 193, 100, 169, 59, 180, 140, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 140, 96, 128, 193, 181, 215, 53, 192, 2, 116, 76, 193, 181, 215, 53, 193, 140, 96, 128, 193, 200, 97, 8, 193, 2, 116, 76, 193, 182, 215, 53, 193, 21, 6, 186, 193, 246, 122, 157, 193, 179, 215, 69, 65, 246, 122, 157, 193, 179, 215, 37, 193, 0, 0, 136, 172, 181, 215, 189, 65, 0, 0, 136, 172, 175, 215, 173, 193, 246, 122, 157, 65, 179, 215, 69, 65, 246, 122, 157, 65, 179, 215, 37, 193, 186, 97, 8, 65, 255, 115, 76, 193, 178, 215, 181, 64, 134, 96, 128, 193, 184, 215, 53, 65, 132, 96, 128, 193, 173, 215, 53, 65, 17, 6, 186, 193, 25, 145, 194, 182, 136, 96, 128, 193, 191, 215, 53, 64, 241, 115, 76, 193, 182, 215, 181, 192, 136, 96, 128, 193, 188, 215, 53, 192, 246, 115, 76, 193, 184, 215, 53, 193, 135, 96, 128, 193, 184, 215, 53, 193, 16, 6, 186, 193, 202, 97, 8, 193, 246, 115, 76, 193, 184, 215, 53, 65, 132, 96, 128, 193, 178, 215, 181, 64, 134, 96, 128, 193, 186, 97, 8, 65, 255, 115, 76, 193, 173, 215, 53, 65, 17, 6, 186, 193, 25, 145, 194, 182, 136, 96, 128, 193, 191, 215, 53, 64, 241, 115, 76, 193, 182, 215, 181, 192, 136, 96, 128, 193, 188, 215, 53, 192, 246, 115, 76, 193, 184, 215, 53, 193, 135, 96, 128, 193, 202, 97, 8, 193, 246, 115, 76, 193, 184, 215, 53, 193, 16, 6, 186, 193, 202, 97, 8, 65, 246, 115, 76, 193, 190, 215, 181, 64, 135, 96, 128, 193, 184, 215, 53, 65, 135, 96, 128, 193, 184, 215, 53, 65, 16, 6, 186, 193, 158, 221, 206, 54, 136, 96, 128, 193, 190, 215, 53, 64, 246, 115, 76, 193, 177, 215, 181, 192, 134, 96, 128, 193, 190, 215, 53, 192, 241, 115, 76, 193, 183, 215, 53, 193, 132, 96, 128, 193, 173, 215, 53, 193, 17, 6, 186, 193, 186, 97, 8, 193, 255, 115, 76, 193, 184, 215, 53, 65, 135, 96, 128, 193, 190, 215, 181, 64, 135, 96, 128, 193, 202, 97, 8, 65, 246, 115, 76, 193, 184, 215, 53, 65, 16, 6, 186, 193, 158, 221, 206, 54, 136, 96, 128, 193, 190, 215, 53, 64, 246, 115, 76, 193, 177, 215, 181, 192, 134, 96, 128, 193, 190, 215, 53, 192, 241, 115, 76, 193, 183, 215, 53, 193, 132, 96, 128, 193, 186, 97, 8, 193, 255, 115, 76, 193, 173, 215, 53, 193, 17, 6, 186, 193, 199, 97, 8, 65, 2, 116, 76, 193, 173, 215, 181, 64, 141, 96, 128, 193, 180, 215, 53, 65, 140, 96, 128, 193, 181, 215, 53, 65, 21, 6, 186, 193, 110, 231, 77, 180, 141, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 141, 96, 128, 193, 182, 215, 53, 192, 3, 116, 76, 193, 181, 215, 53, 193, 141, 96, 128, 193, 181, 215, 53, 193, 21, 6, 186, 193, 200, 97, 8, 193, 3, 116, 76, 193, 180, 215, 53, 65, 140, 96, 128, 193, 173, 215, 181, 64, 141, 96, 128, 193, 199, 97, 8, 65, 2, 116, 76, 193, 181, 215, 53, 65, 21, 6, 186, 193, 110, 231, 77, 180, 141, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 141, 96, 128, 193, 182, 215, 53, 192, 3, 116, 76, 193, 181, 215, 53, 193, 141, 96, 128, 193, 200, 97, 8, 193, 3, 116, 76, 193, 181, 215, 53, 193, 21, 6, 186, 193, 179, 215, 53, 193, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 202, 97, 8, 193, 4, 116, 76, 193, 184, 215, 181, 192, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 248, 122, 46, 45, 141, 96, 128, 193, 184, 215, 53, 192, 4, 116, 76, 193, 184, 215, 53, 64, 4, 116, 76, 193, 175, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 179, 215, 53, 65, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 22, 6, 186, 193, 179, 215, 53, 193, 141, 96, 128, 193, 184, 215, 181, 192, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 248, 122, 46, 45, 141, 96, 128, 193, 184, 215, 53, 192, 4, 116, 76, 193, 184, 215, 53, 64, 4, 116, 76, 193, 175, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 184, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 194, 3, 46, 173, 141, 96, 128, 193, 184, 215, 53, 64, 4, 116, 76, 193, 184, 215, 53, 192, 4, 116, 76, 193, 175, 215, 181, 192, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 184, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 194, 3, 46, 173, 141, 96, 128, 193, 184, 215, 53, 64, 4, 116, 76, 193, 184, 215, 53, 192, 4, 116, 76, 193, 175, 215, 181, 192, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 141, 96, 128, 193, 189, 215, 53, 65, 0, 0, 128, 63, 125, 201, 168, 192, 0, 0, 128, 63, 189, 215, 53, 65, 246, 122, 25, 194, 168, 215, 53, 193, 246, 122, 25, 194, 168, 215, 53, 193, 0, 0, 128, 63, 179, 215, 53, 193, 0, 0, 128, 63, 179, 215, 53, 193, 246, 122, 25, 194, 179, 215, 53, 65, 0, 0, 128, 63, 179, 215, 53, 65, 246, 122, 25, 194, 179, 215, 53, 65, 246, 122, 25, 194, 179, 215, 53, 65, 0, 0, 128, 63, 179, 215, 53, 193, 246, 122, 25, 194, 179, 215, 53, 193, 0, 0, 128, 63, 182, 215, 53, 65, 0, 0, 128, 63, 117, 201, 168, 64, 0, 0, 128, 63, 182, 215, 53, 65, 246, 122, 25, 194, 181, 215, 53, 193, 246, 122, 25, 194, 181, 215, 53, 193, 0, 0, 128, 63, 168, 215, 53, 65, 0, 0, 128, 63, 125, 201, 168, 64, 0, 0, 128, 63, 168, 215, 53, 65, 246, 122, 25, 194, 189, 215, 53, 193, 246, 122, 25, 194, 189, 215, 53, 193, 0, 0, 128, 63, 181, 215, 53, 65, 0, 0, 128, 63, 117, 201, 168, 192, 0, 0, 128, 63, 181, 215, 53, 65, 246, 122, 25, 194, 182, 215, 53, 193, 246, 122, 25, 194, 182, 215, 53, 193, 0, 0, 128, 63, 246, 122, 157, 65, 179, 215, 37, 193, 246, 122, 157, 65, 179, 215, 69, 65, 84, 201, 168, 64, 246, 122, 149, 193, 113, 201, 168, 64, 246, 122, 165, 65, 0, 0, 136, 44, 181, 215, 189, 65, 0, 0, 136, 44, 175, 215, 173, 193, 84, 201, 168, 192, 246, 122, 149, 193, 113, 201, 168, 192, 246, 122, 165, 65, 246, 122, 157, 193, 179, 215, 37, 193, 246, 122, 157, 193, 179, 215, 69, 65), +"format": 4119, +"index_count": 372, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 37, 0, 40, 0, 39, 0, 40, 0, 37, 0, 41, 0, 40, 0, 42, 0, 39, 0, 42, 0, 40, 0, 43, 0, 42, 0, 44, 0, 39, 0, 44, 0, 45, 0, 39, 0, 44, 0, 42, 0, 46, 0, 49, 0, 47, 0, 48, 0, 50, 0, 48, 0, 47, 0, 51, 0, 48, 0, 50, 0, 48, 0, 51, 0, 52, 0, 53, 0, 51, 0, 50, 0, 51, 0, 53, 0, 54, 0, 55, 0, 53, 0, 50, 0, 53, 0, 55, 0, 56, 0, 57, 0, 55, 0, 50, 0, 60, 0, 58, 0, 59, 0, 59, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 66, 0, 64, 0, 65, 0, 65, 0, 67, 0, 66, 0, 65, 0, 68, 0, 67, 0, 68, 0, 65, 0, 69, 0, 68, 0, 70, 0, 67, 0, 70, 0, 68, 0, 71, 0, 70, 0, 72, 0, 67, 0, 72, 0, 73, 0, 67, 0, 72, 0, 70, 0, 74, 0, 77, 0, 75, 0, 76, 0, 78, 0, 76, 0, 75, 0, 79, 0, 76, 0, 78, 0, 76, 0, 79, 0, 80, 0, 81, 0, 79, 0, 78, 0, 79, 0, 81, 0, 82, 0, 83, 0, 81, 0, 78, 0, 81, 0, 83, 0, 84, 0, 85, 0, 83, 0, 78, 0, 88, 0, 86, 0, 87, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 90, 0, 87, 0, 91, 0, 90, 0, 92, 0, 89, 0, 92, 0, 90, 0, 93, 0, 92, 0, 94, 0, 89, 0, 94, 0, 95, 0, 89, 0, 94, 0, 92, 0, 96, 0, 99, 0, 97, 0, 98, 0, 100, 0, 98, 0, 97, 0, 101, 0, 98, 0, 100, 0, 98, 0, 101, 0, 102, 0, 103, 0, 101, 0, 100, 0, 101, 0, 103, 0, 104, 0, 105, 0, 103, 0, 100, 0, 103, 0, 105, 0, 106, 0, 107, 0, 105, 0, 100, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 109, 0, 112, 0, 111, 0, 112, 0, 109, 0, 113, 0, 112, 0, 114, 0, 111, 0, 114, 0, 112, 0, 115, 0, 114, 0, 116, 0, 111, 0, 116, 0, 117, 0, 111, 0, 116, 0, 114, 0, 118, 0, 121, 0, 119, 0, 120, 0, 122, 0, 120, 0, 119, 0, 123, 0, 120, 0, 122, 0, 120, 0, 123, 0, 124, 0, 125, 0, 123, 0, 122, 0, 123, 0, 125, 0, 126, 0, 127, 0, 125, 0, 122, 0, 125, 0, 127, 0, 128, 0, 129, 0, 127, 0, 122, 0, 132, 0, 130, 0, 131, 0, 131, 0, 133, 0, 132, 0, 131, 0, 134, 0, 133, 0, 134, 0, 135, 0, 133, 0, 135, 0, 136, 0, 133, 0, 134, 0, 137, 0, 135, 0, 134, 0, 138, 0, 137, 0, 134, 0, 139, 0, 138, 0, 134, 0, 140, 0, 139, 0, 143, 0, 141, 0, 142, 0, 144, 0, 142, 0, 141, 0, 145, 0, 142, 0, 144, 0, 146, 0, 145, 0, 144, 0, 147, 0, 146, 0, 144, 0, 148, 0, 145, 0, 146, 0, 149, 0, 145, 0, 148, 0, 150, 0, 145, 0, 149, 0, 151, 0, 145, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 153, 0, 156, 0, 155, 0, 155, 0, 157, 0, 154, 0, 155, 0, 158, 0, 157, 0, 157, 0, 159, 0, 154, 0, 159, 0, 160, 0, 154, 0, 160, 0, 161, 0, 154, 0, 161, 0, 162, 0, 154, 0, 165, 0, 163, 0, 164, 0, 166, 0, 164, 0, 163, 0, 167, 0, 164, 0, 166, 0, 168, 0, 166, 0, 163, 0, 169, 0, 166, 0, 168, 0, 170, 0, 168, 0, 163, 0, 171, 0, 170, 0, 163, 0, 172, 0, 171, 0, 163, 0, 173, 0, 172, 0, 163, 0), +"lods": [0.128664, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 37, 0, 39, 0, 38, 0, 37, 0, 44, 0, 39, 0, 44, 0, 45, 0, 39, 0, 50, 0, 48, 0, 47, 0, 55, 0, 48, 0, 50, 0, 57, 0, 55, 0, 50, 0, 60, 0, 58, 0, 59, 0, 59, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 65, 0, 67, 0, 66, 0, 65, 0, 72, 0, 67, 0, 72, 0, 73, 0, 67, 0, 78, 0, 76, 0, 75, 0, 83, 0, 76, 0, 78, 0, 85, 0, 83, 0, 78, 0, 87, 0, 89, 0, 88, 0, 87, 0, 94, 0, 89, 0, 94, 0, 95, 0, 89, 0, 100, 0, 98, 0, 97, 0, 105, 0, 98, 0, 100, 0, 107, 0, 105, 0, 100, 0, 109, 0, 111, 0, 110, 0, 109, 0, 116, 0, 111, 0, 116, 0, 117, 0, 111, 0, 122, 0, 120, 0, 119, 0, 127, 0, 120, 0, 122, 0, 129, 0, 127, 0, 122, 0, 133, 0, 130, 0, 131, 0, 131, 0, 134, 0, 133, 0, 134, 0, 140, 0, 133, 0, 143, 0, 144, 0, 142, 0, 145, 0, 142, 0, 144, 0, 151, 0, 145, 0, 144, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 155, 0, 162, 0, 154, 0, 165, 0, 163, 0, 164, 0, 166, 0, 164, 0, 163, 0, 173, 0, 166, 0, 163, 0)], +"material": SubResource("StandardMaterial3D_laxjl"), +"name": "grass", +"primitive": 3, +"vertex_count": 212, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 178, 221, 151, 196, 0, 0, 108, 151, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 178, 221, 151, 196, 0, 0, 108, 151, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 178, 221, 151, 196, 0, 0, 108, 151, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 152, 68, 179, 93, 0, 0, 146, 104, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 152, 68, 179, 93, 0, 0, 146, 104, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 255, 127, 169, 170, 255, 255, 255, 191, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 255, 127, 169, 170, 255, 255, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 255, 127, 169, 170, 255, 255, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 84, 213, 0, 0, 255, 255, 255, 63, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 84, 213, 0, 0, 255, 255, 255, 63, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 84, 213, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 76, 34, 151, 196, 37, 81, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 76, 34, 151, 196, 37, 81, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 152, 68, 75, 162, 217, 174, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 152, 68, 75, 162, 217, 174, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 152, 68, 75, 162, 217, 174, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 178, 221, 103, 59, 217, 174, 255, 63, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 178, 221, 103, 59, 217, 174, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 178, 221, 103, 59, 217, 174, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 102, 187, 75, 162, 255, 255, 146, 232, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 102, 187, 75, 162, 255, 255, 146, 232, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 102, 187, 75, 162, 255, 255, 146, 232, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 76, 34, 103, 59, 255, 255, 108, 23, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 76, 34, 103, 59, 255, 255, 108, 23, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 76, 34, 103, 59, 255, 255, 108, 23, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 84, 213, 255, 255, 0, 0, 255, 191, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 84, 213, 255, 255, 0, 0, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 84, 213, 255, 255, 0, 0, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 127, 84, 85, 0, 0, 255, 63, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 255, 127, 84, 85, 0, 0, 255, 63, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 255, 127, 84, 85, 0, 0, 255, 63, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 16, 95, 6, 166, 37, 209, 255, 191, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 16, 95, 6, 166, 37, 209, 255, 191, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 16, 95, 6, 166, 37, 209, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 16, 95, 6, 166, 37, 209, 255, 191, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 16, 95, 6, 166, 37, 209, 255, 191, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 16, 95, 6, 166, 37, 209, 255, 191, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 16, 95, 6, 166, 37, 209, 255, 191, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 16, 95, 6, 166, 37, 209, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 16, 95, 6, 166, 37, 209, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 16, 95, 6, 166, 37, 209, 255, 191, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 16, 95, 6, 166, 37, 209, 255, 191, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 248, 217, 238, 32, 37, 209, 255, 63, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 248, 217, 238, 32, 37, 209, 255, 63, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 248, 217, 238, 32, 37, 209, 255, 63, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 248, 217, 238, 32, 37, 209, 255, 63, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 248, 217, 238, 32, 37, 209, 255, 63, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 248, 217, 238, 32, 37, 209, 255, 63, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 248, 217, 238, 32, 37, 209, 255, 63, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 248, 217, 238, 32, 37, 209, 255, 63, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 248, 217, 238, 32, 37, 209, 255, 63, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 248, 217, 238, 32, 37, 209, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 248, 217, 238, 32, 37, 209, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 255, 127, 255, 255, 255, 255, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 248, 217, 16, 223, 0, 0, 146, 168, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 248, 217, 16, 223, 0, 0, 108, 215, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 248, 217, 16, 223, 0, 0, 146, 168, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 248, 217, 16, 223, 0, 0, 108, 215, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 248, 217, 16, 223, 0, 0, 146, 168, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 248, 217, 16, 223, 0, 0, 108, 215, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 248, 217, 16, 223, 0, 0, 146, 168, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 248, 217, 16, 223, 0, 0, 146, 168, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 248, 217, 16, 223, 0, 0, 108, 215, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 248, 217, 16, 223, 0, 0, 108, 215, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 248, 217, 16, 223, 0, 0, 146, 168, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 16, 95, 248, 89, 0, 0, 108, 87, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 16, 95, 248, 89, 0, 0, 146, 40, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 16, 95, 248, 89, 0, 0, 108, 87, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 16, 95, 248, 89, 0, 0, 146, 40, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 16, 95, 248, 89, 0, 0, 108, 87, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 16, 95, 248, 89, 0, 0, 146, 40, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 16, 95, 248, 89, 0, 0, 108, 87, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 16, 95, 248, 89, 0, 0, 108, 87, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 16, 95, 248, 89, 0, 0, 146, 40, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 16, 95, 248, 89, 0, 0, 108, 87, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 16, 95, 248, 89, 0, 0, 146, 40, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 6, 38, 16, 223, 217, 46, 255, 191, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 6, 38, 16, 223, 217, 46, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 6, 38, 16, 223, 217, 46, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 6, 38, 16, 223, 217, 46, 255, 191, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 6, 38, 16, 223, 217, 46, 255, 191, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 6, 38, 16, 223, 217, 46, 255, 191, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 6, 38, 16, 223, 217, 46, 255, 191, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 6, 38, 16, 223, 217, 46, 255, 191, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 6, 38, 16, 223, 217, 46, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 6, 38, 16, 223, 217, 46, 255, 191, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 6, 38, 16, 223, 217, 46, 255, 191, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 238, 160, 248, 89, 217, 46, 255, 63, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 238, 160, 248, 89, 217, 46, 255, 63, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 238, 160, 248, 89, 217, 46, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 238, 160, 248, 89, 217, 46, 255, 63, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 238, 160, 248, 89, 217, 46, 255, 63, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 238, 160, 248, 89, 217, 46, 255, 63, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 238, 160, 248, 89, 217, 46, 255, 63, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 238, 160, 248, 89, 217, 46, 255, 63, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 238, 160, 248, 89, 217, 46, 255, 63, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 238, 160, 248, 89, 217, 46, 255, 63, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 238, 160, 248, 89, 217, 46, 255, 63, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 238, 160, 6, 166, 255, 255, 108, 215, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 238, 160, 6, 166, 254, 255, 108, 215, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 238, 160, 6, 166, 255, 255, 108, 215, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 238, 160, 6, 166, 255, 255, 108, 215, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 238, 160, 6, 166, 255, 255, 108, 215, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 238, 160, 6, 166, 254, 255, 108, 215, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 238, 160, 6, 166, 255, 255, 146, 168, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 238, 160, 6, 166, 255, 255, 146, 168, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 238, 160, 6, 166, 255, 255, 108, 215, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 238, 160, 6, 166, 255, 255, 108, 215, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 238, 160, 6, 166, 255, 255, 146, 168, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 6, 38, 238, 32, 255, 255, 146, 40, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 6, 38, 238, 32, 254, 255, 146, 40, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 6, 38, 238, 32, 255, 255, 146, 40, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 6, 38, 238, 32, 255, 255, 146, 40, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 6, 38, 238, 32, 255, 255, 146, 40, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 6, 38, 238, 32, 254, 255, 146, 40, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 6, 38, 238, 32, 255, 255, 108, 87, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 6, 38, 238, 32, 255, 255, 108, 87, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 6, 38, 238, 32, 255, 255, 146, 40, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 6, 38, 238, 32, 255, 255, 108, 87, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 6, 38, 238, 32, 255, 255, 146, 40, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 37, 209, 217, 174, 254, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 37, 209, 217, 174, 255, 255, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 37, 209, 217, 174, 254, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 217, 46, 37, 81, 254, 255, 254, 127, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 217, 46, 37, 81, 255, 255, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 217, 46, 37, 81, 0, 0, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 37, 209, 0, 0, 0, 128, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 0, 0, 37, 209, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 0, 0, 37, 209, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 0, 0, 37, 209, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 0, 0, 37, 209, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 37, 81, 255, 127, 0, 0, 0, 128, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 37, 81, 255, 127, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 37, 81, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 37, 81, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 37, 81, 255, 127, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 255, 255, 37, 209, 0, 0, 0, 128, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 255, 255, 37, 209, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 255, 37, 209, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 255, 37, 209, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 255, 37, 209, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 217, 174, 255, 127, 0, 0, 0, 128, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63, 217, 174, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 217, 174, 255, 127, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 217, 174, 255, 127, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 217, 174, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 255, 127, 0, 0, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 255, 127, 0, 0, 0, 0, 0, 128, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, 0, -0.656604, 1.26606, 1, 1.31321), +"attribute_data": PackedByteArray(239, 149, 230, 191, 29, 146, 136, 193, 121, 197, 173, 54, 9, 99, 192, 193, 99, 150, 230, 63, 29, 146, 136, 193, 99, 150, 230, 63, 29, 146, 136, 193, 121, 197, 173, 54, 9, 99, 192, 193, 239, 149, 230, 191, 29, 146, 136, 193, 34, 150, 230, 63, 32, 146, 136, 193, 34, 150, 230, 191, 32, 146, 136, 193, 1, 7, 136, 172, 12, 99, 192, 193, 1, 7, 136, 172, 12, 99, 192, 193, 34, 150, 230, 191, 32, 146, 136, 193, 34, 150, 230, 63, 32, 146, 136, 193, 81, 48, 75, 182, 8, 99, 192, 193, 5, 150, 230, 63, 28, 146, 136, 193, 79, 150, 230, 191, 28, 146, 136, 193, 79, 150, 230, 191, 28, 146, 136, 193, 5, 150, 230, 63, 28, 146, 136, 193, 81, 48, 75, 182, 8, 99, 192, 193, 5, 48, 75, 54, 8, 99, 192, 193, 79, 150, 230, 63, 28, 146, 136, 193, 5, 150, 230, 191, 28, 146, 136, 193, 5, 150, 230, 191, 28, 146, 136, 193, 79, 150, 230, 63, 28, 146, 136, 193, 5, 48, 75, 54, 8, 99, 192, 193, 239, 149, 230, 63, 29, 146, 136, 193, 99, 150, 230, 191, 29, 146, 136, 193, 83, 197, 173, 182, 9, 99, 192, 193, 83, 197, 173, 182, 9, 99, 192, 193, 99, 150, 230, 191, 29, 146, 136, 193, 239, 149, 230, 63, 29, 146, 136, 193, 34, 150, 230, 63, 228, 145, 136, 193, 34, 150, 230, 191, 228, 145, 136, 193, 0, 0, 136, 44, 213, 98, 192, 193, 0, 0, 136, 44, 213, 98, 192, 193, 34, 150, 230, 191, 228, 145, 136, 193, 34, 150, 230, 63, 228, 145, 136, 193, 199, 97, 8, 65, 2, 116, 76, 193, 180, 215, 181, 64, 141, 96, 128, 193, 180, 215, 53, 65, 141, 96, 128, 193, 181, 215, 53, 65, 21, 6, 186, 193, 100, 169, 59, 180, 140, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 140, 96, 128, 193, 181, 215, 53, 192, 2, 116, 76, 193, 181, 215, 53, 193, 140, 96, 128, 193, 182, 215, 53, 193, 21, 6, 186, 193, 200, 97, 8, 193, 2, 116, 76, 193, 180, 215, 53, 65, 141, 96, 128, 193, 180, 215, 181, 64, 141, 96, 128, 193, 199, 97, 8, 65, 2, 116, 76, 193, 181, 215, 53, 65, 21, 6, 186, 193, 100, 169, 59, 180, 140, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 140, 96, 128, 193, 181, 215, 53, 192, 2, 116, 76, 193, 181, 215, 53, 193, 140, 96, 128, 193, 200, 97, 8, 193, 2, 116, 76, 193, 182, 215, 53, 193, 21, 6, 186, 193, 246, 122, 157, 193, 179, 215, 69, 65, 246, 122, 157, 193, 179, 215, 37, 193, 0, 0, 136, 172, 181, 215, 189, 65, 0, 0, 136, 172, 175, 215, 173, 193, 246, 122, 157, 65, 179, 215, 69, 65, 246, 122, 157, 65, 179, 215, 37, 193, 186, 97, 8, 65, 255, 115, 76, 193, 178, 215, 181, 64, 134, 96, 128, 193, 184, 215, 53, 65, 132, 96, 128, 193, 173, 215, 53, 65, 17, 6, 186, 193, 25, 145, 194, 182, 136, 96, 128, 193, 191, 215, 53, 64, 241, 115, 76, 193, 182, 215, 181, 192, 136, 96, 128, 193, 188, 215, 53, 192, 246, 115, 76, 193, 184, 215, 53, 193, 135, 96, 128, 193, 184, 215, 53, 193, 16, 6, 186, 193, 202, 97, 8, 193, 246, 115, 76, 193, 184, 215, 53, 65, 132, 96, 128, 193, 178, 215, 181, 64, 134, 96, 128, 193, 186, 97, 8, 65, 255, 115, 76, 193, 173, 215, 53, 65, 17, 6, 186, 193, 25, 145, 194, 182, 136, 96, 128, 193, 191, 215, 53, 64, 241, 115, 76, 193, 182, 215, 181, 192, 136, 96, 128, 193, 188, 215, 53, 192, 246, 115, 76, 193, 184, 215, 53, 193, 135, 96, 128, 193, 202, 97, 8, 193, 246, 115, 76, 193, 184, 215, 53, 193, 16, 6, 186, 193, 202, 97, 8, 65, 246, 115, 76, 193, 190, 215, 181, 64, 135, 96, 128, 193, 184, 215, 53, 65, 135, 96, 128, 193, 184, 215, 53, 65, 16, 6, 186, 193, 158, 221, 206, 54, 136, 96, 128, 193, 190, 215, 53, 64, 246, 115, 76, 193, 177, 215, 181, 192, 134, 96, 128, 193, 190, 215, 53, 192, 241, 115, 76, 193, 183, 215, 53, 193, 132, 96, 128, 193, 173, 215, 53, 193, 17, 6, 186, 193, 186, 97, 8, 193, 255, 115, 76, 193, 184, 215, 53, 65, 135, 96, 128, 193, 190, 215, 181, 64, 135, 96, 128, 193, 202, 97, 8, 65, 246, 115, 76, 193, 184, 215, 53, 65, 16, 6, 186, 193, 158, 221, 206, 54, 136, 96, 128, 193, 190, 215, 53, 64, 246, 115, 76, 193, 177, 215, 181, 192, 134, 96, 128, 193, 190, 215, 53, 192, 241, 115, 76, 193, 183, 215, 53, 193, 132, 96, 128, 193, 186, 97, 8, 193, 255, 115, 76, 193, 173, 215, 53, 193, 17, 6, 186, 193, 199, 97, 8, 65, 2, 116, 76, 193, 173, 215, 181, 64, 141, 96, 128, 193, 180, 215, 53, 65, 140, 96, 128, 193, 181, 215, 53, 65, 21, 6, 186, 193, 110, 231, 77, 180, 141, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 141, 96, 128, 193, 182, 215, 53, 192, 3, 116, 76, 193, 181, 215, 53, 193, 141, 96, 128, 193, 181, 215, 53, 193, 21, 6, 186, 193, 200, 97, 8, 193, 3, 116, 76, 193, 180, 215, 53, 65, 140, 96, 128, 193, 173, 215, 181, 64, 141, 96, 128, 193, 199, 97, 8, 65, 2, 116, 76, 193, 181, 215, 53, 65, 21, 6, 186, 193, 110, 231, 77, 180, 141, 96, 128, 193, 180, 215, 53, 64, 2, 116, 76, 193, 181, 215, 181, 192, 141, 96, 128, 193, 182, 215, 53, 192, 3, 116, 76, 193, 181, 215, 53, 193, 141, 96, 128, 193, 200, 97, 8, 193, 3, 116, 76, 193, 181, 215, 53, 193, 21, 6, 186, 193, 179, 215, 53, 193, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 202, 97, 8, 193, 4, 116, 76, 193, 184, 215, 181, 192, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 248, 122, 46, 45, 141, 96, 128, 193, 184, 215, 53, 192, 4, 116, 76, 193, 184, 215, 53, 64, 4, 116, 76, 193, 175, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 179, 215, 53, 65, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 22, 6, 186, 193, 179, 215, 53, 193, 141, 96, 128, 193, 184, 215, 181, 192, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 248, 122, 46, 45, 141, 96, 128, 193, 184, 215, 53, 192, 4, 116, 76, 193, 184, 215, 53, 64, 4, 116, 76, 193, 175, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 184, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 194, 3, 46, 173, 141, 96, 128, 193, 184, 215, 53, 64, 4, 116, 76, 193, 184, 215, 53, 192, 4, 116, 76, 193, 175, 215, 181, 192, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 141, 96, 128, 193, 179, 215, 53, 193, 22, 6, 186, 193, 179, 215, 53, 65, 141, 96, 128, 193, 179, 215, 53, 65, 22, 6, 186, 193, 184, 215, 181, 64, 141, 96, 128, 193, 202, 97, 8, 65, 4, 116, 76, 193, 194, 3, 46, 173, 141, 96, 128, 193, 184, 215, 53, 64, 4, 116, 76, 193, 184, 215, 53, 192, 4, 116, 76, 193, 175, 215, 181, 192, 141, 96, 128, 193, 202, 97, 8, 193, 4, 116, 76, 193, 179, 215, 53, 193, 141, 96, 128, 193, 189, 215, 53, 65, 0, 0, 128, 63, 125, 201, 168, 192, 0, 0, 128, 63, 189, 215, 53, 65, 246, 122, 25, 194, 168, 215, 53, 193, 246, 122, 25, 194, 168, 215, 53, 193, 0, 0, 128, 63, 179, 215, 53, 193, 0, 0, 128, 63, 179, 215, 53, 193, 246, 122, 25, 194, 179, 215, 53, 65, 0, 0, 128, 63, 179, 215, 53, 65, 246, 122, 25, 194, 179, 215, 53, 65, 246, 122, 25, 194, 179, 215, 53, 65, 0, 0, 128, 63, 179, 215, 53, 193, 246, 122, 25, 194, 179, 215, 53, 193, 0, 0, 128, 63, 182, 215, 53, 65, 0, 0, 128, 63, 117, 201, 168, 64, 0, 0, 128, 63, 182, 215, 53, 65, 246, 122, 25, 194, 181, 215, 53, 193, 246, 122, 25, 194, 181, 215, 53, 193, 0, 0, 128, 63, 168, 215, 53, 65, 0, 0, 128, 63, 125, 201, 168, 64, 0, 0, 128, 63, 168, 215, 53, 65, 246, 122, 25, 194, 189, 215, 53, 193, 246, 122, 25, 194, 189, 215, 53, 193, 0, 0, 128, 63, 181, 215, 53, 65, 0, 0, 128, 63, 117, 201, 168, 192, 0, 0, 128, 63, 181, 215, 53, 65, 246, 122, 25, 194, 182, 215, 53, 193, 246, 122, 25, 194, 182, 215, 53, 193, 0, 0, 128, 63, 246, 122, 157, 65, 179, 215, 37, 193, 246, 122, 157, 65, 179, 215, 69, 65, 84, 201, 168, 64, 246, 122, 149, 193, 113, 201, 168, 64, 246, 122, 165, 65, 0, 0, 136, 44, 181, 215, 189, 65, 0, 0, 136, 44, 175, 215, 173, 193, 84, 201, 168, 192, 246, 122, 149, 193, 113, 201, 168, 192, 246, 122, 165, 65, 246, 122, 157, 193, 179, 215, 37, 193, 246, 122, 157, 193, 179, 215, 69, 65), +"format": 4119, +"index_count": 72, +"index_data": PackedByteArray(176, 0, 174, 0, 175, 0, 177, 0, 176, 0, 175, 0, 175, 0, 178, 0, 177, 0, 181, 0, 179, 0, 180, 0, 180, 0, 182, 0, 181, 0, 185, 0, 183, 0, 184, 0, 184, 0, 186, 0, 185, 0, 189, 0, 187, 0, 188, 0, 190, 0, 189, 0, 188, 0, 188, 0, 191, 0, 190, 0, 194, 0, 192, 0, 193, 0, 195, 0, 194, 0, 193, 0, 193, 0, 196, 0, 195, 0, 199, 0, 197, 0, 198, 0, 200, 0, 199, 0, 198, 0, 198, 0, 201, 0, 200, 0, 204, 0, 202, 0, 203, 0, 203, 0, 205, 0, 204, 0, 205, 0, 206, 0, 204, 0, 206, 0, 207, 0, 204, 0, 206, 0, 208, 0, 207, 0, 206, 0, 209, 0, 208, 0, 209, 0, 210, 0, 208, 0, 209, 0, 211, 0, 210, 0), +"material": SubResource("StandardMaterial3D_oqonq"), +"name": "dirt", +"primitive": 3, +"vertex_count": 212, +"vertex_data": PackedByteArray(118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 178, 221, 151, 196, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 178, 221, 151, 196, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 178, 221, 151, 196, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 152, 68, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 152, 68, 179, 93, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 255, 127, 169, 170, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 255, 127, 169, 170, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 255, 127, 169, 170, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 84, 213, 0, 0, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 84, 213, 0, 0, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 84, 213, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 76, 34, 151, 196, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 76, 34, 151, 196, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 152, 68, 75, 162, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 152, 68, 75, 162, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 152, 68, 75, 162, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 178, 221, 103, 59, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 178, 221, 103, 59, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 178, 221, 103, 59, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 102, 187, 75, 162, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 102, 187, 75, 162, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 102, 187, 75, 162, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 76, 34, 103, 59, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 76, 34, 103, 59, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 76, 34, 103, 59, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 84, 213, 255, 255, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 84, 213, 255, 255, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 84, 213, 255, 255, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 127, 84, 85, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 255, 127, 84, 85, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 255, 127, 84, 85, 0, 0, 0, 128, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 16, 95, 6, 166, 0, 0, 0, 128, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 16, 95, 6, 166, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 16, 95, 6, 166, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 16, 95, 6, 166, 0, 0, 0, 128, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 16, 95, 6, 166, 0, 0, 0, 128, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 16, 95, 6, 166, 0, 0, 0, 128, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 16, 95, 6, 166, 0, 0, 0, 128, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 16, 95, 6, 166, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 16, 95, 6, 166, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 16, 95, 6, 166, 0, 0, 0, 128, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 16, 95, 6, 166, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 46, 23, 40, 63, 248, 217, 238, 32, 0, 0, 0, 128, 236, 218, 46, 190, 24, 108, 87, 63, 135, 157, 21, 63, 248, 217, 238, 32, 0, 0, 0, 128, 63, 28, 4, 190, 195, 3, 69, 63, 132, 14, 40, 63, 248, 217, 238, 32, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 248, 217, 238, 32, 0, 0, 0, 128, 118, 109, 151, 190, 24, 108, 87, 63, 224, 35, 3, 63, 248, 217, 238, 32, 0, 0, 0, 128, 31, 14, 130, 190, 195, 3, 69, 63, 221, 148, 21, 63, 248, 217, 238, 32, 0, 0, 0, 128, 119, 109, 215, 190, 24, 108, 87, 63, 113, 84, 225, 62, 248, 217, 238, 32, 0, 0, 0, 128, 31, 14, 194, 190, 195, 3, 69, 63, 54, 27, 3, 63, 248, 217, 238, 32, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 62, 248, 217, 238, 32, 0, 0, 0, 128, 16, 7, 1, 191, 195, 3, 69, 63, 29, 67, 225, 62, 248, 217, 238, 32, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 248, 217, 238, 32, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 255, 127, 255, 255, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 248, 217, 16, 223, 0, 0, 0, 128, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 248, 217, 16, 223, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 248, 217, 16, 223, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 248, 217, 16, 223, 0, 0, 0, 128, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 248, 217, 16, 223, 0, 0, 0, 128, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 248, 217, 16, 223, 0, 0, 0, 128, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 248, 217, 16, 223, 0, 0, 0, 128, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 248, 217, 16, 223, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 248, 217, 16, 223, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 248, 217, 16, 223, 0, 0, 0, 128, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 248, 217, 16, 223, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 51, 23, 40, 191, 16, 95, 248, 89, 0, 0, 0, 128, 236, 218, 46, 62, 24, 108, 87, 63, 136, 157, 21, 191, 16, 95, 248, 89, 0, 0, 0, 128, 63, 28, 4, 62, 195, 3, 69, 63, 123, 14, 40, 191, 16, 95, 248, 89, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 16, 95, 248, 89, 0, 0, 0, 128, 118, 109, 151, 62, 24, 108, 87, 63, 222, 35, 3, 191, 16, 95, 248, 89, 0, 0, 0, 128, 31, 14, 130, 62, 195, 3, 69, 63, 225, 148, 21, 191, 16, 95, 248, 89, 0, 0, 0, 128, 115, 109, 215, 62, 24, 108, 87, 63, 111, 84, 225, 190, 16, 95, 248, 89, 0, 0, 0, 128, 31, 14, 194, 62, 195, 3, 69, 63, 55, 27, 3, 191, 16, 95, 248, 89, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 190, 16, 95, 248, 89, 0, 0, 0, 128, 16, 7, 1, 63, 195, 3, 69, 63, 30, 67, 225, 190, 16, 95, 248, 89, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 16, 95, 248, 89, 0, 0, 0, 128, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 6, 38, 16, 223, 0, 0, 0, 128, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 6, 38, 16, 223, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 6, 38, 16, 223, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 6, 38, 16, 223, 0, 0, 0, 128, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 6, 38, 16, 223, 0, 0, 0, 128, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 6, 38, 16, 223, 0, 0, 0, 128, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 6, 38, 16, 223, 0, 0, 0, 128, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 6, 38, 16, 223, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 6, 38, 16, 223, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 6, 38, 16, 223, 0, 0, 0, 128, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 6, 38, 16, 223, 0, 0, 0, 128, 187, 182, 11, 191, 24, 108, 87, 63, 35, 97, 188, 190, 238, 160, 248, 89, 0, 0, 0, 128, 119, 109, 215, 190, 24, 108, 87, 63, 111, 84, 225, 190, 238, 160, 248, 89, 0, 0, 0, 128, 16, 7, 1, 191, 195, 3, 69, 63, 30, 67, 225, 190, 238, 160, 248, 89, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 238, 160, 248, 89, 0, 0, 0, 128, 118, 109, 151, 190, 24, 108, 87, 63, 222, 35, 3, 191, 238, 160, 248, 89, 0, 0, 0, 128, 31, 14, 194, 190, 195, 3, 69, 63, 55, 27, 3, 191, 238, 160, 248, 89, 0, 0, 0, 128, 236, 218, 46, 190, 24, 108, 87, 63, 136, 157, 21, 191, 238, 160, 248, 89, 0, 0, 0, 128, 31, 14, 130, 190, 195, 3, 69, 63, 225, 148, 21, 191, 238, 160, 248, 89, 0, 0, 0, 128, 177, 107, 59, 189, 24, 108, 87, 63, 51, 23, 40, 191, 238, 160, 248, 89, 0, 0, 0, 128, 63, 28, 4, 190, 195, 3, 69, 63, 123, 14, 40, 191, 238, 160, 248, 89, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 238, 160, 248, 89, 0, 0, 0, 128, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 238, 160, 6, 166, 0, 0, 0, 128, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 238, 160, 6, 166, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 238, 160, 6, 166, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 238, 160, 6, 166, 0, 0, 0, 128, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 238, 160, 6, 166, 0, 0, 0, 128, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 238, 160, 6, 166, 0, 0, 0, 128, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 238, 160, 6, 166, 0, 0, 0, 128, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 238, 160, 6, 166, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 238, 160, 6, 166, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 238, 160, 6, 166, 0, 0, 0, 128, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 238, 160, 6, 166, 0, 0, 0, 128, 187, 182, 11, 63, 24, 108, 87, 63, 35, 97, 188, 62, 6, 38, 238, 32, 0, 0, 0, 128, 115, 109, 215, 62, 24, 108, 87, 63, 113, 84, 225, 62, 6, 38, 238, 32, 0, 0, 0, 128, 16, 7, 1, 63, 195, 3, 69, 63, 29, 67, 225, 62, 6, 38, 238, 32, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 6, 38, 238, 32, 0, 0, 0, 128, 118, 109, 151, 62, 24, 108, 87, 63, 224, 35, 3, 63, 6, 38, 238, 32, 0, 0, 0, 128, 31, 14, 194, 62, 195, 3, 69, 63, 54, 27, 3, 63, 6, 38, 238, 32, 0, 0, 0, 128, 236, 218, 46, 62, 24, 108, 87, 63, 135, 157, 21, 63, 6, 38, 238, 32, 0, 0, 0, 128, 31, 14, 130, 62, 195, 3, 69, 63, 221, 148, 21, 63, 6, 38, 238, 32, 0, 0, 0, 128, 177, 107, 59, 61, 24, 108, 87, 63, 46, 23, 40, 63, 6, 38, 238, 32, 0, 0, 0, 128, 63, 28, 4, 62, 195, 3, 69, 63, 132, 14, 40, 63, 6, 38, 238, 32, 0, 0, 0, 128, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 6, 38, 238, 32, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 61, 205, 19, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 117, 113, 142, 170, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 61, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 61, 205, 147, 189, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 53, 205, 19, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 219, 179, 93, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 56, 205, 147, 190, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 62, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 61, 205, 19, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 117, 113, 142, 170, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 61, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 61, 205, 147, 189, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 53, 205, 19, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 219, 179, 93, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 56, 205, 147, 190, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 37, 209, 217, 46, 255, 191, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 0, 0, 37, 209, 217, 46, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 0, 0, 37, 209, 217, 46, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 0, 0, 37, 209, 217, 46, 255, 191, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 0, 0, 37, 209, 217, 46, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 37, 81, 255, 127, 37, 209, 255, 191, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 37, 81, 255, 127, 37, 209, 255, 191, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 37, 81, 255, 127, 37, 209, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 56, 205, 147, 62, 37, 81, 255, 127, 37, 209, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 37, 81, 255, 127, 37, 209, 255, 191, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 255, 255, 37, 209, 0, 0, 108, 215, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 255, 255, 37, 209, 0, 0, 108, 215, 228, 20, 221, 169, 0, 0, 128, 63, 53, 205, 19, 191, 255, 255, 37, 209, 0, 0, 108, 215, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 190, 255, 255, 37, 209, 0, 0, 108, 215, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 255, 37, 209, 0, 0, 108, 215, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 217, 174, 255, 127, 255, 255, 108, 215, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63, 217, 174, 255, 127, 255, 255, 108, 215, 0, 0, 0, 63, 0, 0, 128, 63, 56, 205, 147, 62, 217, 174, 255, 127, 255, 255, 108, 215, 228, 20, 221, 169, 0, 0, 128, 63, 58, 205, 19, 63, 217, 174, 255, 127, 255, 255, 108, 215, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 217, 174, 255, 127, 255, 255, 108, 215, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 56, 205, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 139, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 162, 48, 9, 190, 169, 19, 208, 11, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 228, 20, 221, 169, 0, 0, 0, 0, 58, 205, 19, 63, 255, 127, 0, 0, 0, 0, 255, 191, 228, 20, 221, 169, 0, 0, 0, 0, 53, 205, 19, 191, 255, 127, 0, 0, 0, 0, 255, 191, 139, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 162, 48, 9, 62, 169, 19, 208, 11, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 56, 205, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_ecrhy") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_d6bml"] +data = PackedVector3Array(0.5458, 0.8415, -0.3679, 0.5915, 0.8415, -0.2887, 0.5, 1, -0.2887, 0.5915, 0.8415, -0.2887, 0.5458, 0.8415, -0.3679, 0.5, 1, -0.2887, 0, 1, 0.5774, 0.0458, 0.8415, 0.6566, -0.0458, 0.8415, 0.6566, 0.0458, 0.8415, 0.6566, 0, 1, 0.5774, -0.0458, 0.8415, 0.6566, -0.5458, 0.8415, -0.3679, -0.5, 1, -0.2887, -0.5915, 0.8415, -0.2887, -0.5, 1, -0.2887, -0.5458, 0.8415, -0.3679, -0.5915, 0.8415, -0.2887, -0.5915, 0.8415, 0.2887, -0.5, 1, 0.2887, -0.5458, 0.8415, 0.3679, -0.5, 1, 0.2887, -0.5915, 0.8415, 0.2887, -0.5458, 0.8415, 0.3679, 0.5, 1, 0.2887, 0.5915, 0.8415, 0.2887, 0.5458, 0.8415, 0.3679, 0.5915, 0.8415, 0.2887, 0.5, 1, 0.2887, 0.5458, 0.8415, 0.3679, 0, 1, -0.5773, -0.0458, 0.8415, -0.6566, 0.0458, 0.8415, -0.6566, -0.0458, 0.8415, -0.6566, 0, 1, -0.5773, 0.0458, 0.8415, -0.6566, -0.0458, 0.8415, 0.6566, -0.129, 0.7696, 0.6565, -0.1708, 0.8415, 0.5844, -0.1708, 0.8415, 0.5844, 0, 1, 0.5774, -0.0458, 0.8415, 0.6566, -0.1708, 0.8415, 0.5844, -0.2958, 0.8415, 0.5123, 0, 1, 0.5774, -0.2958, 0.8415, 0.5123, -0.1708, 0.8415, 0.5844, -0.254, 0.7696, 0.5843, -0.2958, 0.8415, 0.5123, -0.4208, 0.8415, 0.4401, 0, 1, 0.5774, -0.4208, 0.8415, 0.4401, -0.2958, 0.8415, 0.5123, -0.379, 0.7696, 0.5121, -0.4208, 0.8415, 0.4401, -0.5458, 0.8415, 0.3679, 0, 1, 0.5774, -0.5458, 0.8415, 0.3679, -0.5, 1, 0.2887, 0, 1, 0.5774, -0.5458, 0.8415, 0.3679, -0.4208, 0.8415, 0.4401, -0.504, 0.7696, 0.44, -0.129, 0.7696, 0.6565, -0.0458, 0.8415, 0.6566, -0.1708, 0.8415, 0.5844, 0, 1, 0.5774, -0.1708, 0.8415, 0.5844, -0.0458, 0.8415, 0.6566, -0.2958, 0.8415, 0.5123, -0.1708, 0.8415, 0.5844, 0, 1, 0.5774, -0.1708, 0.8415, 0.5844, -0.2958, 0.8415, 0.5123, -0.254, 0.7696, 0.5843, -0.4208, 0.8415, 0.4401, -0.2958, 0.8415, 0.5123, 0, 1, 0.5774, -0.2958, 0.8415, 0.5123, -0.4208, 0.8415, 0.4401, -0.379, 0.7696, 0.5121, -0.5458, 0.8415, 0.3679, -0.4208, 0.8415, 0.4401, 0, 1, 0.5774, -0.4208, 0.8415, 0.4401, -0.5458, 0.8415, 0.3679, -0.504, 0.7696, 0.44, -0.5, 1, 0.2887, -0.5458, 0.8415, 0.3679, 0, 1, 0.5774, 0, 1, 0.5774, -0.5, 1, 0.2887, -0.5, 1, -0.2887, -0.5, 1, -0.2887, 0, 1, -0.5773, 0, 1, 0.5774, 0, 1, -0.5773, 0.5, 1, 0.2887, 0, 1, 0.5774, 0, 1, -0.5773, 0.5, 1, -0.2887, 0.5, 1, 0.2887, 0.0458, 0.8415, -0.6566, 0.129, 0.7696, -0.6565, 0.1708, 0.8415, -0.5844, 0.1708, 0.8415, -0.5844, 0, 1, -0.5773, 0.0458, 0.8415, -0.6566, 0.1708, 0.8415, -0.5844, 0.2958, 0.8415, -0.5123, 0, 1, -0.5773, 0.2958, 0.8415, -0.5123, 0.1708, 0.8415, -0.5844, 0.254, 0.7696, -0.5843, 0.2958, 0.8415, -0.5123, 0.4208, 0.8415, -0.4401, 0, 1, -0.5773, 0.4208, 0.8415, -0.4401, 0.2958, 0.8415, -0.5123, 0.379, 0.7696, -0.5121, 0.4208, 0.8415, -0.4401, 0.5458, 0.8415, -0.3679, 0, 1, -0.5773, 0.5458, 0.8415, -0.3679, 0.5, 1, -0.2887, 0, 1, -0.5773, 0.5458, 0.8415, -0.3679, 0.4208, 0.8415, -0.4401, 0.504, 0.7696, -0.44, 0.129, 0.7696, -0.6565, 0.0458, 0.8415, -0.6566, 0.1708, 0.8415, -0.5844, 0, 1, -0.5773, 0.1708, 0.8415, -0.5844, 0.0458, 0.8415, -0.6566, 0.2958, 0.8415, -0.5123, 0.1708, 0.8415, -0.5844, 0, 1, -0.5773, 0.1708, 0.8415, -0.5844, 0.2958, 0.8415, -0.5123, 0.254, 0.7696, -0.5843, 0.4208, 0.8415, -0.4401, 0.2958, 0.8415, -0.5123, 0, 1, -0.5773, 0.2958, 0.8415, -0.5123, 0.4208, 0.8415, -0.4401, 0.379, 0.7696, -0.5121, 0.5458, 0.8415, -0.3679, 0.4208, 0.8415, -0.4401, 0, 1, -0.5773, 0.4208, 0.8415, -0.4401, 0.5458, 0.8415, -0.3679, 0.504, 0.7696, -0.44, 0.5, 1, -0.2887, 0.5458, 0.8415, -0.3679, 0, 1, -0.5773, -0.5458, 0.8415, -0.3679, -0.504, 0.7696, -0.44, -0.4208, 0.8415, -0.4401, -0.4208, 0.8415, -0.4401, -0.5, 1, -0.2887, -0.5458, 0.8415, -0.3679, -0.4208, 0.8415, -0.4401, -0.2958, 0.8415, -0.5123, -0.5, 1, -0.2887, -0.2958, 0.8415, -0.5123, -0.4208, 0.8415, -0.4401, -0.379, 0.7696, -0.5121, -0.2958, 0.8415, -0.5123, -0.1708, 0.8415, -0.5844, -0.5, 1, -0.2887, -0.1708, 0.8415, -0.5844, -0.2958, 0.8415, -0.5123, -0.254, 0.7696, -0.5843, -0.1708, 0.8415, -0.5844, -0.0458, 0.8415, -0.6566, -0.5, 1, -0.2887, -0.0458, 0.8415, -0.6566, 0, 1, -0.5773, -0.5, 1, -0.2887, -0.0458, 0.8415, -0.6566, -0.1708, 0.8415, -0.5844, -0.129, 0.7696, -0.6565, -0.504, 0.7696, -0.44, -0.5458, 0.8415, -0.3679, -0.4208, 0.8415, -0.4401, -0.5, 1, -0.2887, -0.4208, 0.8415, -0.4401, -0.5458, 0.8415, -0.3679, -0.2958, 0.8415, -0.5123, -0.4208, 0.8415, -0.4401, -0.5, 1, -0.2887, -0.4208, 0.8415, -0.4401, -0.2958, 0.8415, -0.5123, -0.379, 0.7696, -0.5121, -0.1708, 0.8415, -0.5844, -0.2958, 0.8415, -0.5123, -0.5, 1, -0.2887, -0.2958, 0.8415, -0.5123, -0.1708, 0.8415, -0.5844, -0.254, 0.7696, -0.5843, -0.0458, 0.8415, -0.6566, -0.1708, 0.8415, -0.5844, -0.5, 1, -0.2887, -0.1708, 0.8415, -0.5844, -0.0458, 0.8415, -0.6566, -0.129, 0.7696, -0.6565, 0, 1, -0.5773, -0.0458, 0.8415, -0.6566, -0.5, 1, -0.2887, 0.5458, 0.8415, 0.3679, 0.504, 0.7696, 0.44, 0.4208, 0.8415, 0.4401, 0.4208, 0.8415, 0.4401, 0.5, 1, 0.2887, 0.5458, 0.8415, 0.3679, 0.4208, 0.8415, 0.4401, 0.2958, 0.8415, 0.5123, 0.5, 1, 0.2887, 0.2958, 0.8415, 0.5123, 0.4208, 0.8415, 0.4401, 0.379, 0.7696, 0.5121, 0.2958, 0.8415, 0.5123, 0.1708, 0.8415, 0.5844, 0.5, 1, 0.2887, 0.1708, 0.8415, 0.5844, 0.2958, 0.8415, 0.5123, 0.254, 0.7696, 0.5843, 0.1708, 0.8415, 0.5844, 0.0458, 0.8415, 0.6566, 0.5, 1, 0.2887, 0.0458, 0.8415, 0.6566, 0, 1, 0.5774, 0.5, 1, 0.2887, 0.0458, 0.8415, 0.6566, 0.1708, 0.8415, 0.5844, 0.129, 0.7696, 0.6565, 0.504, 0.7696, 0.44, 0.5458, 0.8415, 0.3679, 0.4208, 0.8415, 0.4401, 0.5, 1, 0.2887, 0.4208, 0.8415, 0.4401, 0.5458, 0.8415, 0.3679, 0.2958, 0.8415, 0.5123, 0.4208, 0.8415, 0.4401, 0.5, 1, 0.2887, 0.4208, 0.8415, 0.4401, 0.2958, 0.8415, 0.5123, 0.379, 0.7696, 0.5121, 0.1708, 0.8415, 0.5844, 0.2958, 0.8415, 0.5123, 0.5, 1, 0.2887, 0.2958, 0.8415, 0.5123, 0.1708, 0.8415, 0.5844, 0.254, 0.7696, 0.5843, 0.0458, 0.8415, 0.6566, 0.1708, 0.8415, 0.5844, 0.5, 1, 0.2887, 0.1708, 0.8415, 0.5844, 0.0458, 0.8415, 0.6566, 0.129, 0.7696, 0.6565, 0, 1, 0.5774, 0.0458, 0.8415, 0.6566, 0.5, 1, 0.2887, 0.633, 0.7696, 0.2165, 0.5915, 0.8415, 0.2887, 0.5, 1, 0.2887, 0.5, 1, 0.2887, 0.5915, 0.8415, 0.1443, 0.633, 0.7696, 0.2165, 0.5, 1, 0.2887, 0.5, 1, -0.2887, 0.5915, 0.8415, 0.1443, 0.5, 1, -0.2887, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1443, 0.5915, 0.8415, 0, 0.633, 0.7696, 0.0722, 0.5915, 0.8415, 0.1443, 0.5, 1, -0.2887, 0.633, 0.7696, -0.0722, 0.5915, 0.8415, 0, 0.5, 1, -0.2887, 0.5915, 0.8415, -0.1443, 0.633, 0.7696, -0.0722, 0.5, 1, -0.2887, 0.633, 0.7696, -0.2165, 0.5915, 0.8415, -0.1443, 0.5, 1, -0.2887, 0.5915, 0.8415, -0.2887, 0.633, 0.7696, -0.2165, 0.5915, 0.8415, 0.2887, 0.633, 0.7696, 0.2165, 0.5, 1, 0.2887, 0.5915, 0.8415, 0.1443, 0.5, 1, 0.2887, 0.633, 0.7696, 0.2165, 0.5, 1, -0.2887, 0.5, 1, 0.2887, 0.5915, 0.8415, 0.1443, 0.5915, 0.8415, 0, 0.5, 1, -0.2887, 0.5915, 0.8415, 0.1443, 0.633, 0.7696, 0.0722, 0.5915, 0.8415, 0, 0.5915, 0.8415, 0.1443, 0.633, 0.7696, -0.0722, 0.5, 1, -0.2887, 0.5915, 0.8415, 0, 0.5915, 0.8415, -0.1443, 0.5, 1, -0.2887, 0.633, 0.7696, -0.0722, 0.633, 0.7696, -0.2165, 0.5, 1, -0.2887, 0.5915, 0.8415, -0.1443, 0.5915, 0.8415, -0.2887, 0.5, 1, -0.2887, 0.633, 0.7696, -0.2165, -0.5, 1, -0.2887, -0.5, 1, 0.2887, -0.5915, 0.8415, 0.2887, -0.5915, 0.8415, 0.2887, -0.5915, 0.8415, 0.1443, -0.5, 1, -0.2887, -0.5915, 0.8415, 0.2887, -0.633, 0.7696, 0.2165, -0.5915, 0.8415, 0.1443, -0.5915, 0.8415, 0.1443, -0.5915, 0.8415, 0, -0.5, 1, -0.2887, -0.5915, 0.8415, 0.1443, -0.633, 0.7696, 0.0722, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0722, -0.5, 1, -0.2887, -0.633, 0.7696, -0.0722, -0.5915, 0.8415, -0.1443, -0.5, 1, -0.2887, -0.5915, 0.8415, -0.1443, -0.633, 0.7696, -0.2165, -0.5, 1, -0.2887, -0.633, 0.7696, -0.2165, -0.5915, 0.8415, -0.2887, -0.5, 1, -0.2887, -0.5, 1, 0.2887, -0.5, 1, -0.2887, -0.5915, 0.8415, 0.2887, -0.5915, 0.8415, 0.1443, -0.5915, 0.8415, 0.2887, -0.5, 1, -0.2887, -0.633, 0.7696, 0.2165, -0.5915, 0.8415, 0.2887, -0.5915, 0.8415, 0.1443, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0.1443, -0.5, 1, -0.2887, -0.633, 0.7696, 0.0722, -0.5915, 0.8415, 0.1443, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0722, -0.5915, 0.8415, 0, -0.5, 1, -0.2887, -0.5915, 0.8415, -0.1443, -0.633, 0.7696, -0.0722, -0.5, 1, -0.2887, -0.633, 0.7696, -0.2165, -0.5915, 0.8415, -0.1443, -0.5, 1, -0.2887, -0.5915, 0.8415, -0.2887, -0.633, 0.7696, -0.2165, -0.5, 1, -0.2887, -0.5, 1, -0.2887, -0.5, 0, -0.2887, -0.134, 0, -0.5, 0, 1, -0.5773, -0.5, 1, -0.2887, -0.134, 0, -0.5, -0.134, 0, -0.5, 0, 0, -0.5773, 0, 1, -0.5773, 0.5, 0, -0.2887, 0.5, 0, 0.2887, 0.5, 1, 0.2887, 0.5, 1, 0.2887, 0.5, 1, -0.2887, 0.5, 0, -0.2887, -0.5, 1, -0.2887, -0.5, 1, 0.2887, -0.5, 0, 0.2887, -0.5, 0, 0.2887, -0.5, 0, -0.2887, -0.5, 1, -0.2887, 0, 1, 0.5774, 0, 0, 0.5774, -0.134, 0, 0.5, -0.5, 1, 0.2887, 0, 1, 0.5774, -0.134, 0, 0.5, -0.134, 0, 0.5, -0.5, 0, 0.2887, -0.5, 1, 0.2887, 0, 1, -0.5773, 0, 0, -0.5773, 0.134, 0, -0.5, 0.5, 1, -0.2887, 0, 1, -0.5773, 0.134, 0, -0.5, 0.134, 0, -0.5, 0.5, 0, -0.2887, 0.5, 1, -0.2887, 0.5, 1, 0.2887, 0.5, 0, 0.2887, 0.134, 0, 0.5, 0, 1, 0.5774, 0.5, 1, 0.2887, 0.134, 0, 0.5, 0.134, 0, 0.5, 0, 0, 0.5774, 0, 1, 0.5774, -0.134, 0, -0.5, -0.5, 0, -0.2887, -0.5, 0, 0.2887, -0.5, 0, 0.2887, -0.134, 0, 0.5, -0.134, 0, -0.5, -0.134, 0, 0.5, 0, 0, 0.5774, -0.134, 0, -0.5, 0, 0, 0.5774, 0, 0, -0.5773, -0.134, 0, -0.5, 0, 0, 0.5774, 0.134, 0, -0.5, 0, 0, -0.5773, 0, 0, 0.5774, 0.134, 0, 0.5, 0.134, 0, -0.5, 0.134, 0, 0.5, 0.5, 0, -0.2887, 0.134, 0, -0.5, 0.134, 0, 0.5, 0.5, 0, 0.2887, 0.5, 0, -0.2887) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yfrmj"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_el1f7"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ibti6"] +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 450, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 15, 0, 17, 0, 16, 0, 20, 0, 18, 0, 19, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 21, 0, 22, 0, 19, 0, 23, 0, 22, 0, 17, 0, 21, 0, 17, 0, 16, 0, 21, 0, 17, 0, 22, 0, 24, 0, 18, 0, 20, 0, 19, 0, 21, 0, 19, 0, 20, 0, 22, 0, 19, 0, 21, 0, 19, 0, 22, 0, 23, 0, 17, 0, 22, 0, 21, 0, 22, 0, 17, 0, 24, 0, 16, 0, 17, 0, 21, 0, 27, 0, 25, 0, 26, 0, 26, 0, 28, 0, 27, 0, 26, 0, 16, 0, 28, 0, 16, 0, 29, 0, 28, 0, 16, 0, 30, 0, 29, 0, 16, 0, 31, 0, 30, 0, 16, 0, 15, 0, 31, 0, 25, 0, 27, 0, 26, 0, 28, 0, 26, 0, 27, 0, 16, 0, 26, 0, 28, 0, 29, 0, 16, 0, 28, 0, 30, 0, 16, 0, 29, 0, 31, 0, 16, 0, 30, 0, 15, 0, 16, 0, 31, 0, 34, 0, 32, 0, 33, 0, 33, 0, 10, 0, 34, 0, 10, 0, 35, 0, 34, 0, 10, 0, 36, 0, 35, 0, 10, 0, 37, 0, 36, 0, 10, 0, 9, 0, 37, 0, 32, 0, 34, 0, 33, 0, 10, 0, 33, 0, 34, 0, 35, 0, 10, 0, 34, 0, 36, 0, 10, 0, 35, 0, 37, 0, 10, 0, 36, 0, 9, 0, 10, 0, 37, 0, 7, 0, 38, 0, 39, 0, 39, 0, 8, 0, 7, 0, 39, 0, 40, 0, 8, 0, 40, 0, 39, 0, 41, 0, 40, 0, 11, 0, 8, 0, 11, 0, 10, 0, 8, 0, 11, 0, 40, 0, 42, 0, 38, 0, 7, 0, 39, 0, 8, 0, 39, 0, 7, 0, 40, 0, 39, 0, 8, 0, 39, 0, 40, 0, 41, 0, 11, 0, 40, 0, 8, 0, 40, 0, 11, 0, 42, 0, 10, 0, 11, 0, 8, 0, 43, 0, 12, 0, 14, 0, 14, 0, 44, 0, 43, 0, 14, 0, 2, 0, 44, 0, 2, 0, 45, 0, 44, 0, 2, 0, 46, 0, 45, 0, 2, 0, 47, 0, 46, 0, 2, 0, 1, 0, 47, 0, 12, 0, 43, 0, 14, 0, 44, 0, 14, 0, 43, 0, 2, 0, 14, 0, 44, 0, 45, 0, 2, 0, 44, 0, 46, 0, 2, 0, 45, 0, 47, 0, 2, 0, 46, 0, 1, 0, 2, 0, 47, 0, 13, 0, 48, 0, 49, 0, 49, 0, 14, 0, 13, 0, 49, 0, 50, 0, 14, 0, 50, 0, 49, 0, 51, 0, 50, 0, 52, 0, 14, 0, 52, 0, 50, 0, 53, 0, 52, 0, 54, 0, 14, 0, 54, 0, 52, 0, 55, 0, 54, 0, 56, 0, 14, 0, 56, 0, 54, 0, 57, 0, 56, 0, 3, 0, 14, 0, 3, 0, 5, 0, 14, 0, 3, 0, 56, 0, 58, 0, 48, 0, 13, 0, 49, 0, 14, 0, 49, 0, 13, 0, 50, 0, 49, 0, 14, 0, 49, 0, 50, 0, 51, 0, 52, 0, 50, 0, 14, 0, 50, 0, 52, 0, 53, 0, 54, 0, 52, 0, 14, 0, 52, 0, 54, 0, 55, 0, 56, 0, 54, 0, 14, 0, 54, 0, 56, 0, 57, 0, 3, 0, 56, 0, 14, 0, 56, 0, 3, 0, 58, 0, 5, 0, 3, 0, 14, 0, 5, 0, 4, 0, 59, 0, 59, 0, 60, 0, 5, 0, 60, 0, 8, 0, 5, 0, 60, 0, 61, 0, 8, 0, 60, 0, 62, 0, 61, 0, 61, 0, 63, 0, 8, 0, 61, 0, 64, 0, 63, 0, 63, 0, 65, 0, 8, 0, 63, 0, 66, 0, 65, 0, 65, 0, 67, 0, 8, 0, 67, 0, 68, 0, 8, 0, 68, 0, 69, 0, 8, 0, 69, 0, 6, 0, 8, 0, 4, 0, 5, 0, 59, 0, 60, 0, 59, 0, 5, 0, 8, 0, 60, 0, 5, 0, 61, 0, 60, 0, 8, 0, 62, 0, 60, 0, 61, 0, 63, 0, 61, 0, 8, 0, 64, 0, 61, 0, 63, 0, 65, 0, 63, 0, 8, 0, 66, 0, 63, 0, 65, 0, 67, 0, 65, 0, 8, 0, 68, 0, 67, 0, 8, 0, 69, 0, 68, 0, 8, 0, 6, 0, 69, 0, 8, 0, 33, 0, 2, 0, 14, 0, 14, 0, 5, 0, 33, 0, 10, 0, 33, 0, 5, 0, 5, 0, 8, 0, 10, 0, 33, 0, 32, 0, 70, 0, 70, 0, 71, 0, 33, 0, 71, 0, 70, 0, 72, 0, 71, 0, 0, 0, 33, 0, 0, 0, 2, 0, 33, 0, 0, 0, 71, 0, 73, 0, 32, 0, 33, 0, 70, 0, 71, 0, 70, 0, 33, 0, 70, 0, 71, 0, 72, 0, 0, 0, 71, 0, 33, 0, 71, 0, 0, 0, 73, 0, 2, 0, 0, 0, 33, 0, 26, 0, 74, 0, 21, 0, 21, 0, 16, 0, 26, 0), +"lods": [0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 15, 0, 17, 0, 16, 0, 19, 0, 17, 0, 21, 0, 17, 0, 16, 0, 21, 0, 17, 0, 19, 0, 21, 0, 16, 0, 17, 0, 21, 0, 26, 0, 16, 0, 28, 0, 16, 0, 15, 0, 28, 0, 16, 0, 26, 0, 28, 0, 15, 0, 16, 0, 28, 0, 34, 0, 32, 0, 33, 0, 33, 0, 10, 0, 34, 0, 10, 0, 9, 0, 34, 0, 32, 0, 34, 0, 33, 0, 10, 0, 33, 0, 34, 0, 9, 0, 10, 0, 34, 0, 39, 0, 8, 0, 7, 0, 39, 0, 11, 0, 8, 0, 11, 0, 10, 0, 8, 0, 8, 0, 39, 0, 7, 0, 11, 0, 39, 0, 8, 0, 10, 0, 11, 0, 8, 0, 44, 0, 12, 0, 14, 0, 14, 0, 2, 0, 44, 0, 2, 0, 1, 0, 44, 0, 12, 0, 44, 0, 14, 0, 2, 0, 14, 0, 44, 0, 1, 0, 2, 0, 44, 0, 49, 0, 14, 0, 13, 0, 49, 0, 3, 0, 14, 0, 3, 0, 5, 0, 14, 0, 14, 0, 49, 0, 13, 0, 3, 0, 49, 0, 14, 0, 5, 0, 3, 0, 14, 0, 5, 0, 4, 0, 60, 0, 60, 0, 8, 0, 5, 0, 60, 0, 6, 0, 8, 0, 4, 0, 5, 0, 60, 0, 8, 0, 60, 0, 5, 0, 6, 0, 60, 0, 8, 0, 33, 0, 2, 0, 14, 0, 14, 0, 5, 0, 33, 0, 10, 0, 33, 0, 5, 0, 5, 0, 8, 0, 10, 0, 33, 0, 32, 0, 70, 0, 70, 0, 0, 0, 33, 0, 0, 0, 2, 0, 33, 0, 32, 0, 33, 0, 70, 0, 0, 0, 70, 0, 33, 0, 2, 0, 0, 0, 33, 0, 26, 0, 74, 0, 21, 0, 21, 0, 16, 0, 26, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 79, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"format": 4097, +"index_count": 54, +"index_data": PackedByteArray(33, 0, 74, 0, 26, 0, 26, 0, 2, 0, 33, 0, 14, 0, 75, 0, 76, 0, 76, 0, 5, 0, 14, 0, 21, 0, 74, 0, 33, 0, 33, 0, 10, 0, 21, 0, 78, 0, 77, 0, 76, 0, 76, 0, 75, 0, 78, 0, 26, 0, 16, 0, 78, 0, 26, 0, 78, 0, 75, 0, 75, 0, 14, 0, 26, 0, 2, 0, 26, 0, 14, 0, 21, 0, 10, 0, 8, 0, 21, 0, 8, 0, 77, 0, 77, 0, 78, 0, 21, 0, 16, 0, 21, 0, 78, 0, 8, 0, 5, 0, 76, 0, 76, 0, 77, 0, 8, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 79, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_b14oy"] +resource_name = "blockLevel_Mesh blockLevel" +_surfaces = [{ +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(208, 242, 53, 193, 196, 149, 187, 193, 143, 188, 131, 193, 196, 149, 187, 193, 247, 181, 94, 193, 45, 130, 241, 193, 247, 181, 94, 193, 45, 130, 241, 193, 143, 188, 131, 193, 196, 149, 187, 193, 208, 242, 53, 193, 196, 149, 187, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 255, 27, 175, 140, 107, 199, 193, 0, 255, 27, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 24, 37, 204, 53, 140, 107, 199, 193, 24, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 208, 242, 53, 65, 196, 149, 187, 193, 247, 181, 94, 65, 45, 130, 241, 193, 143, 188, 131, 65, 196, 149, 187, 193, 143, 188, 131, 65, 196, 149, 187, 193, 247, 181, 94, 65, 45, 130, 241, 193, 208, 242, 53, 65, 196, 149, 187, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 181, 37, 204, 181, 140, 107, 199, 193, 181, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 48, 133, 26, 61, 0, 0, 0, 0, 152, 124, 214, 192, 155, 12, 35, 64, 48, 133, 26, 61, 155, 12, 35, 64, 48, 133, 26, 61, 0, 0, 0, 0, 152, 124, 214, 192, 155, 12, 35, 192, 48, 133, 26, 61, 66, 249, 81, 192, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 5, 5, 136, 169, 172, 19, 128, 63, 158, 243, 101, 169, 55, 145, 198, 192, 71, 249, 81, 193, 172, 19, 128, 63, 246, 122, 29, 193, 24, 159, 136, 64, 246, 122, 157, 193, 172, 19, 128, 63, 246, 122, 157, 193, 55, 145, 198, 192, 204, 59, 131, 193, 24, 159, 136, 64, 5, 5, 136, 169, 172, 19, 128, 63, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 158, 243, 101, 169, 55, 145, 198, 192, 71, 249, 81, 193, 172, 19, 128, 63, 246, 122, 29, 193, 24, 159, 136, 64, 246, 122, 157, 193, 172, 19, 128, 63, 204, 59, 131, 193, 24, 159, 136, 64, 246, 122, 157, 193, 55, 145, 198, 192, 57, 161, 168, 41, 172, 19, 128, 63, 217, 125, 147, 41, 55, 145, 198, 192, 66, 249, 81, 64, 24, 159, 136, 64, 75, 249, 209, 64, 172, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 71, 249, 81, 65, 172, 19, 128, 63, 204, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 172, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 217, 125, 147, 41, 55, 145, 198, 192, 57, 161, 168, 41, 172, 19, 128, 63, 75, 249, 209, 64, 172, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 71, 249, 81, 65, 172, 19, 128, 63, 204, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 172, 19, 128, 63, 188, 198, 146, 64, 51, 96, 191, 193, 0, 0, 128, 40, 200, 97, 4, 194, 74, 249, 209, 64, 7, 30, 207, 193, 246, 122, 157, 65, 200, 97, 4, 194, 246, 122, 29, 65, 123, 247, 180, 193, 70, 249, 81, 65, 7, 30, 207, 193, 203, 59, 131, 65, 123, 247, 180, 193, 246, 122, 157, 65, 6, 30, 207, 193, 74, 249, 209, 64, 7, 30, 207, 193, 0, 0, 128, 40, 200, 97, 4, 194, 188, 198, 146, 64, 51, 96, 191, 193, 246, 122, 157, 65, 200, 97, 4, 194, 246, 122, 29, 65, 123, 247, 180, 193, 70, 249, 81, 65, 7, 30, 207, 193, 203, 59, 131, 65, 123, 247, 180, 193, 246, 122, 157, 65, 6, 30, 207, 193, 205, 59, 131, 65, 4, 116, 76, 193, 71, 249, 81, 65, 141, 96, 128, 193, 246, 122, 157, 65, 141, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 141, 96, 128, 193, 246, 122, 29, 65, 4, 116, 76, 193, 144, 56, 216, 40, 141, 96, 128, 193, 227, 196, 182, 40, 22, 6, 186, 193, 66, 249, 81, 64, 4, 116, 76, 193, 246, 122, 157, 65, 141, 96, 128, 193, 71, 249, 81, 65, 141, 96, 128, 193, 205, 59, 131, 65, 4, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 141, 96, 128, 193, 246, 122, 29, 65, 4, 116, 76, 193, 144, 56, 216, 40, 141, 96, 128, 193, 66, 249, 81, 64, 4, 116, 76, 193, 227, 196, 182, 40, 22, 6, 186, 193, 246, 122, 157, 193, 141, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 4, 116, 76, 193, 71, 249, 81, 193, 141, 96, 128, 193, 30, 223, 235, 167, 22, 6, 186, 193, 246, 122, 29, 193, 4, 116, 76, 193, 75, 249, 209, 192, 141, 96, 128, 193, 66, 249, 81, 192, 4, 116, 76, 193, 98, 96, 58, 168, 141, 96, 128, 193, 205, 59, 131, 193, 4, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 141, 96, 128, 193, 71, 249, 81, 193, 141, 96, 128, 193, 30, 223, 235, 167, 22, 6, 186, 193, 246, 122, 29, 193, 4, 116, 76, 193, 75, 249, 209, 192, 141, 96, 128, 193, 66, 249, 81, 192, 4, 116, 76, 193, 98, 96, 58, 168, 141, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 233, 198, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 233, 198, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 50, 241, 90, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 50, 241, 90, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 165, 65, 0, 0, 0, 0, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 165, 65, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 188, 198, 146, 192, 51, 96, 191, 193, 74, 249, 209, 192, 7, 30, 207, 193, 42, 245, 137, 28, 200, 97, 4, 194, 70, 249, 81, 193, 7, 30, 207, 193, 246, 122, 29, 193, 123, 247, 180, 193, 246, 122, 157, 193, 6, 30, 207, 193, 246, 122, 157, 193, 200, 97, 4, 194, 203, 59, 131, 193, 123, 247, 180, 193, 42, 245, 137, 28, 200, 97, 4, 194, 74, 249, 209, 192, 7, 30, 207, 193, 188, 198, 146, 192, 51, 96, 191, 193, 70, 249, 81, 193, 7, 30, 207, 193, 246, 122, 29, 193, 123, 247, 180, 193, 246, 122, 157, 193, 6, 30, 207, 193, 203, 59, 131, 193, 123, 247, 180, 193, 246, 122, 157, 193, 200, 97, 4, 194, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 128, 40, 246, 122, 149, 193, 0, 0, 128, 40, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 0, 0, 128, 40, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 128, 40, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 450, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 37, 0, 40, 0, 39, 0, 40, 0, 37, 0, 41, 0, 40, 0, 42, 0, 39, 0, 42, 0, 43, 0, 39, 0, 42, 0, 40, 0, 44, 0, 47, 0, 45, 0, 46, 0, 48, 0, 46, 0, 45, 0, 49, 0, 46, 0, 48, 0, 46, 0, 49, 0, 50, 0, 51, 0, 49, 0, 48, 0, 49, 0, 51, 0, 52, 0, 53, 0, 51, 0, 48, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 58, 0, 62, 0, 61, 0, 65, 0, 63, 0, 64, 0, 66, 0, 64, 0, 63, 0, 67, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 67, 0, 68, 0, 70, 0, 67, 0, 69, 0, 71, 0, 67, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 75, 0, 76, 0, 74, 0, 75, 0, 77, 0, 76, 0, 75, 0, 78, 0, 77, 0, 75, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 83, 0, 81, 0, 80, 0, 84, 0, 83, 0, 80, 0, 85, 0, 83, 0, 84, 0, 86, 0, 83, 0, 85, 0, 87, 0, 83, 0, 86, 0, 90, 0, 88, 0, 89, 0, 89, 0, 91, 0, 90, 0, 89, 0, 92, 0, 91, 0, 92, 0, 89, 0, 93, 0, 92, 0, 94, 0, 91, 0, 94, 0, 95, 0, 91, 0, 94, 0, 92, 0, 96, 0, 99, 0, 97, 0, 98, 0, 100, 0, 98, 0, 97, 0, 101, 0, 98, 0, 100, 0, 98, 0, 101, 0, 102, 0, 103, 0, 101, 0, 100, 0, 101, 0, 103, 0, 104, 0, 105, 0, 103, 0, 100, 0, 108, 0, 106, 0, 107, 0, 107, 0, 109, 0, 108, 0, 107, 0, 110, 0, 109, 0, 110, 0, 111, 0, 109, 0, 110, 0, 112, 0, 111, 0, 110, 0, 113, 0, 112, 0, 110, 0, 114, 0, 113, 0, 117, 0, 115, 0, 116, 0, 118, 0, 116, 0, 115, 0, 119, 0, 116, 0, 118, 0, 120, 0, 119, 0, 118, 0, 121, 0, 119, 0, 120, 0, 122, 0, 119, 0, 121, 0, 123, 0, 119, 0, 122, 0, 126, 0, 124, 0, 125, 0, 125, 0, 127, 0, 126, 0, 125, 0, 128, 0, 127, 0, 128, 0, 125, 0, 129, 0, 128, 0, 130, 0, 127, 0, 130, 0, 128, 0, 131, 0, 130, 0, 132, 0, 127, 0, 132, 0, 130, 0, 133, 0, 132, 0, 134, 0, 127, 0, 134, 0, 132, 0, 135, 0, 134, 0, 136, 0, 127, 0, 136, 0, 137, 0, 127, 0, 136, 0, 134, 0, 138, 0, 141, 0, 139, 0, 140, 0, 142, 0, 140, 0, 139, 0, 143, 0, 140, 0, 142, 0, 140, 0, 143, 0, 144, 0, 145, 0, 143, 0, 142, 0, 143, 0, 145, 0, 146, 0, 147, 0, 145, 0, 142, 0, 145, 0, 147, 0, 148, 0, 149, 0, 147, 0, 142, 0, 147, 0, 149, 0, 150, 0, 151, 0, 149, 0, 142, 0, 149, 0, 151, 0, 152, 0, 153, 0, 151, 0, 142, 0, 156, 0, 154, 0, 155, 0, 155, 0, 157, 0, 156, 0, 157, 0, 158, 0, 156, 0, 157, 0, 159, 0, 158, 0, 157, 0, 160, 0, 159, 0, 159, 0, 161, 0, 158, 0, 159, 0, 162, 0, 161, 0, 161, 0, 163, 0, 158, 0, 161, 0, 164, 0, 163, 0, 163, 0, 165, 0, 158, 0, 165, 0, 166, 0, 158, 0, 166, 0, 167, 0, 158, 0, 167, 0, 168, 0, 158, 0, 171, 0, 169, 0, 170, 0, 172, 0, 170, 0, 169, 0, 173, 0, 172, 0, 169, 0, 174, 0, 172, 0, 173, 0, 175, 0, 172, 0, 174, 0, 176, 0, 174, 0, 173, 0, 177, 0, 174, 0, 176, 0, 178, 0, 176, 0, 173, 0, 179, 0, 176, 0, 178, 0, 180, 0, 178, 0, 173, 0, 181, 0, 180, 0, 173, 0, 182, 0, 181, 0, 173, 0, 183, 0, 182, 0, 173, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 188, 0, 186, 0, 187, 0, 187, 0, 189, 0, 188, 0, 192, 0, 190, 0, 191, 0, 191, 0, 193, 0, 192, 0, 193, 0, 191, 0, 194, 0, 193, 0, 195, 0, 192, 0, 195, 0, 196, 0, 192, 0, 195, 0, 193, 0, 197, 0, 200, 0, 198, 0, 199, 0, 201, 0, 199, 0, 198, 0, 199, 0, 201, 0, 202, 0, 203, 0, 201, 0, 198, 0, 201, 0, 203, 0, 204, 0, 205, 0, 203, 0, 198, 0, 208, 0, 206, 0, 207, 0, 207, 0, 209, 0, 208, 0), +"lods": [0.26929, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 37, 0, 42, 0, 39, 0, 42, 0, 43, 0, 39, 0, 51, 0, 46, 0, 48, 0, 53, 0, 51, 0, 48, 0, 55, 0, 58, 0, 57, 0, 58, 0, 62, 0, 57, 0, 67, 0, 64, 0, 66, 0, 71, 0, 67, 0, 66, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 75, 0, 79, 0, 74, 0, 82, 0, 80, 0, 81, 0, 83, 0, 81, 0, 80, 0, 87, 0, 83, 0, 80, 0, 89, 0, 91, 0, 90, 0, 89, 0, 94, 0, 91, 0, 94, 0, 95, 0, 91, 0, 100, 0, 98, 0, 97, 0, 103, 0, 98, 0, 100, 0, 105, 0, 103, 0, 100, 0, 109, 0, 106, 0, 107, 0, 107, 0, 110, 0, 109, 0, 110, 0, 114, 0, 109, 0, 117, 0, 118, 0, 116, 0, 119, 0, 116, 0, 118, 0, 123, 0, 119, 0, 118, 0, 125, 0, 127, 0, 126, 0, 125, 0, 136, 0, 127, 0, 136, 0, 137, 0, 127, 0, 142, 0, 140, 0, 139, 0, 151, 0, 140, 0, 142, 0, 153, 0, 151, 0, 142, 0, 156, 0, 154, 0, 157, 0, 157, 0, 158, 0, 156, 0, 157, 0, 168, 0, 158, 0, 171, 0, 169, 0, 172, 0, 173, 0, 172, 0, 169, 0, 183, 0, 172, 0, 173, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 188, 0, 186, 0, 187, 0, 187, 0, 189, 0, 188, 0, 192, 0, 190, 0, 191, 0, 191, 0, 195, 0, 192, 0, 195, 0, 196, 0, 192, 0, 200, 0, 198, 0, 199, 0, 203, 0, 199, 0, 198, 0, 205, 0, 203, 0, 198, 0, 208, 0, 206, 0, 207, 0, 207, 0, 209, 0, 208, 0)], +"material": SubResource("StandardMaterial3D_yfrmj"), +"name": "grass", +"primitive": 3, +"vertex_count": 242, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 82, 227, 85, 206, 0, 0, 255, 159, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 82, 227, 85, 206, 0, 0, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 82, 227, 85, 206, 0, 0, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 85, 78, 83, 99, 0, 0, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 85, 78, 83, 99, 0, 0, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 85, 78, 83, 99, 0, 0, 255, 95, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 37, 209, 217, 174, 254, 255, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 37, 209, 217, 174, 255, 255, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 37, 209, 217, 174, 254, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 37, 209, 217, 174, 254, 255, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 217, 46, 37, 81, 255, 255, 254, 127, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 217, 46, 37, 81, 254, 255, 254, 127, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 217, 46, 37, 81, 254, 255, 254, 127, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 255, 255, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 255, 255, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 255, 255, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 254, 255, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 217, 174, 0, 0, 255, 255, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 254, 255, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 0, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 255, 255, 254, 127, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 0, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 37, 81, 0, 0, 0, 0, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 255, 255, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 255, 255, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 254, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 254, 255, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 0, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 255, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 0, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 255, 127, 255, 191, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 255, 127, 255, 63, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 255, 255, 0, 0, 255, 191, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 255, 63, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, 0, -0.633028, 1.26606, 1, 1.26606), +"attribute_data": PackedByteArray(208, 242, 53, 193, 196, 149, 187, 193, 143, 188, 131, 193, 196, 149, 187, 193, 247, 181, 94, 193, 45, 130, 241, 193, 247, 181, 94, 193, 45, 130, 241, 193, 143, 188, 131, 193, 196, 149, 187, 193, 208, 242, 53, 193, 196, 149, 187, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 255, 27, 175, 140, 107, 199, 193, 0, 255, 27, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 24, 37, 204, 53, 140, 107, 199, 193, 24, 37, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 208, 242, 53, 65, 196, 149, 187, 193, 247, 181, 94, 65, 45, 130, 241, 193, 143, 188, 131, 65, 196, 149, 187, 193, 143, 188, 131, 65, 196, 149, 187, 193, 247, 181, 94, 65, 45, 130, 241, 193, 208, 242, 53, 65, 196, 149, 187, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 181, 37, 204, 181, 140, 107, 199, 193, 181, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 48, 133, 26, 61, 0, 0, 0, 0, 152, 124, 214, 192, 155, 12, 35, 64, 48, 133, 26, 61, 155, 12, 35, 64, 48, 133, 26, 61, 0, 0, 0, 0, 152, 124, 214, 192, 155, 12, 35, 192, 48, 133, 26, 61, 66, 249, 81, 192, 24, 159, 136, 64, 75, 249, 209, 192, 172, 19, 128, 63, 5, 5, 136, 169, 172, 19, 128, 63, 158, 243, 101, 169, 55, 145, 198, 192, 71, 249, 81, 193, 172, 19, 128, 63, 246, 122, 29, 193, 24, 159, 136, 64, 246, 122, 157, 193, 172, 19, 128, 63, 246, 122, 157, 193, 55, 145, 198, 192, 204, 59, 131, 193, 24, 159, 136, 64, 5, 5, 136, 169, 172, 19, 128, 63, 75, 249, 209, 192, 172, 19, 128, 63, 66, 249, 81, 192, 24, 159, 136, 64, 158, 243, 101, 169, 55, 145, 198, 192, 71, 249, 81, 193, 172, 19, 128, 63, 246, 122, 29, 193, 24, 159, 136, 64, 246, 122, 157, 193, 172, 19, 128, 63, 204, 59, 131, 193, 24, 159, 136, 64, 246, 122, 157, 193, 55, 145, 198, 192, 57, 161, 168, 41, 172, 19, 128, 63, 217, 125, 147, 41, 55, 145, 198, 192, 66, 249, 81, 64, 24, 159, 136, 64, 75, 249, 209, 64, 172, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 71, 249, 81, 65, 172, 19, 128, 63, 204, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 172, 19, 128, 63, 66, 249, 81, 64, 24, 159, 136, 64, 217, 125, 147, 41, 55, 145, 198, 192, 57, 161, 168, 41, 172, 19, 128, 63, 75, 249, 209, 64, 172, 19, 128, 63, 246, 122, 157, 65, 55, 145, 198, 192, 246, 122, 29, 65, 24, 159, 136, 64, 71, 249, 81, 65, 172, 19, 128, 63, 204, 59, 131, 65, 24, 159, 136, 64, 246, 122, 157, 65, 172, 19, 128, 63, 188, 198, 146, 64, 51, 96, 191, 193, 0, 0, 128, 40, 200, 97, 4, 194, 74, 249, 209, 64, 7, 30, 207, 193, 246, 122, 157, 65, 200, 97, 4, 194, 246, 122, 29, 65, 123, 247, 180, 193, 70, 249, 81, 65, 7, 30, 207, 193, 203, 59, 131, 65, 123, 247, 180, 193, 246, 122, 157, 65, 6, 30, 207, 193, 74, 249, 209, 64, 7, 30, 207, 193, 0, 0, 128, 40, 200, 97, 4, 194, 188, 198, 146, 64, 51, 96, 191, 193, 246, 122, 157, 65, 200, 97, 4, 194, 246, 122, 29, 65, 123, 247, 180, 193, 70, 249, 81, 65, 7, 30, 207, 193, 203, 59, 131, 65, 123, 247, 180, 193, 246, 122, 157, 65, 6, 30, 207, 193, 205, 59, 131, 65, 4, 116, 76, 193, 71, 249, 81, 65, 141, 96, 128, 193, 246, 122, 157, 65, 141, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 141, 96, 128, 193, 246, 122, 29, 65, 4, 116, 76, 193, 144, 56, 216, 40, 141, 96, 128, 193, 227, 196, 182, 40, 22, 6, 186, 193, 66, 249, 81, 64, 4, 116, 76, 193, 246, 122, 157, 65, 141, 96, 128, 193, 71, 249, 81, 65, 141, 96, 128, 193, 205, 59, 131, 65, 4, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 141, 96, 128, 193, 246, 122, 29, 65, 4, 116, 76, 193, 144, 56, 216, 40, 141, 96, 128, 193, 66, 249, 81, 64, 4, 116, 76, 193, 227, 196, 182, 40, 22, 6, 186, 193, 246, 122, 157, 193, 141, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 4, 116, 76, 193, 71, 249, 81, 193, 141, 96, 128, 193, 30, 223, 235, 167, 22, 6, 186, 193, 246, 122, 29, 193, 4, 116, 76, 193, 75, 249, 209, 192, 141, 96, 128, 193, 66, 249, 81, 192, 4, 116, 76, 193, 98, 96, 58, 168, 141, 96, 128, 193, 205, 59, 131, 193, 4, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 193, 141, 96, 128, 193, 71, 249, 81, 193, 141, 96, 128, 193, 30, 223, 235, 167, 22, 6, 186, 193, 246, 122, 29, 193, 4, 116, 76, 193, 75, 249, 209, 192, 141, 96, 128, 193, 66, 249, 81, 192, 4, 116, 76, 193, 98, 96, 58, 168, 141, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 233, 198, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 233, 198, 106, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193, 246, 122, 157, 65, 142, 96, 128, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 50, 241, 90, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 205, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 50, 241, 90, 172, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 246, 122, 29, 193, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 204, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 165, 65, 0, 0, 0, 0, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 165, 65, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 188, 198, 146, 192, 51, 96, 191, 193, 74, 249, 209, 192, 7, 30, 207, 193, 42, 245, 137, 28, 200, 97, 4, 194, 70, 249, 81, 193, 7, 30, 207, 193, 246, 122, 29, 193, 123, 247, 180, 193, 246, 122, 157, 193, 6, 30, 207, 193, 246, 122, 157, 193, 200, 97, 4, 194, 203, 59, 131, 193, 123, 247, 180, 193, 42, 245, 137, 28, 200, 97, 4, 194, 74, 249, 209, 192, 7, 30, 207, 193, 188, 198, 146, 192, 51, 96, 191, 193, 70, 249, 81, 193, 7, 30, 207, 193, 246, 122, 29, 193, 123, 247, 180, 193, 246, 122, 157, 193, 6, 30, 207, 193, 203, 59, 131, 193, 123, 247, 180, 193, 246, 122, 157, 193, 200, 97, 4, 194, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 128, 40, 246, 122, 149, 193, 0, 0, 128, 40, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 0, 0, 128, 40, 246, 122, 149, 193, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 128, 40, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63), +"format": 4119, +"index_count": 54, +"index_data": PackedByteArray(212, 0, 210, 0, 211, 0, 211, 0, 213, 0, 212, 0, 216, 0, 214, 0, 215, 0, 215, 0, 217, 0, 216, 0, 220, 0, 218, 0, 219, 0, 219, 0, 221, 0, 220, 0, 224, 0, 222, 0, 223, 0, 223, 0, 225, 0, 224, 0, 228, 0, 226, 0, 227, 0, 228, 0, 227, 0, 229, 0, 229, 0, 230, 0, 228, 0, 231, 0, 228, 0, 230, 0, 234, 0, 232, 0, 233, 0, 234, 0, 233, 0, 235, 0, 235, 0, 236, 0, 234, 0, 237, 0, 234, 0, 236, 0, 240, 0, 238, 0, 239, 0, 239, 0, 241, 0, 240, 0), +"material": SubResource("StandardMaterial3D_el1f7"), +"name": "dirt", +"primitive": 3, +"vertex_count": 242, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 82, 227, 85, 206, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 61, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 62, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 136, 7, 138, 62, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 166, 170, 170, 189, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 136, 7, 138, 62, 84, 85, 213, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 217, 174, 0, 0, 0, 128, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 217, 174, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 128, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 126, 56, 8, 62, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 37, 81, 0, 0, 0, 128, 126, 56, 8, 62, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 37, 81, 0, 0, 0, 128, 177, 107, 187, 61, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 37, 209, 217, 174, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 128, 31, 14, 34, 63, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 169, 19, 208, 165, 217, 46, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 217, 46, 217, 174, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 85, 85, 213, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 62, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 169, 19, 208, 165, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 173, 170, 42, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 166, 170, 170, 189, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 170, 170, 170, 190, 37, 209, 37, 81, 0, 0, 0, 128, 31, 14, 34, 191, 195, 3, 69, 63, 84, 85, 213, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 37, 209, 255, 255, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 0, 128, 126, 153, 238, 61, 122, 87, 76, 63, 126, 153, 238, 189, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 126, 56, 8, 190, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 177, 107, 187, 189, 255, 127, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 126, 56, 8, 190, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 169, 19, 208, 165, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 169, 19, 208, 165, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_ibti6") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_y8ll0"] +data = PackedVector3Array(0.5, 1, 0, 0.5, 0.8415, -0.0915, 0.5915, 0.8415, 0, 0.5, 0.8415, -0.0915, 0.5, 1, 0, 0.5915, 0.8415, 0, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, 0, 0.8415, -0.5915, 0.0915, 0.8415, -0.5, 0, 1, -0.5, 0.0915, 0.8415, -0.5, 0, 0.8415, -0.5915, 0, 1, -0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.5, 0.3415, -0.5915, 0.5915, 0.3415, -0.5, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.5, 0.5, 0.3415, -0.5915, 0.5, 0.5, -0.5, 0, 0.3415, -0.5915, 0.0833, 0.2696, -0.633, 0.1667, 0.3415, -0.5915, 0.1667, 0.3415, -0.5915, 0, 0.5, -0.5, 0, 0.3415, -0.5915, 0.1667, 0.3415, -0.5915, 0.3333, 0.3415, -0.5915, 0, 0.5, -0.5, 0.3333, 0.3415, -0.5915, 0.1667, 0.3415, -0.5915, 0.25, 0.2696, -0.633, 0.3333, 0.3415, -0.5915, 0.5, 0.3415, -0.5915, 0, 0.5, -0.5, 0.5, 0.3415, -0.5915, 0.5, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0.3415, -0.5915, 0.3333, 0.3415, -0.5915, 0.4167, 0.2696, -0.633, 0.0833, 0.2696, -0.633, 0, 0.3415, -0.5915, 0.1667, 0.3415, -0.5915, 0, 0.5, -0.5, 0.1667, 0.3415, -0.5915, 0, 0.3415, -0.5915, 0.3333, 0.3415, -0.5915, 0.1667, 0.3415, -0.5915, 0, 0.5, -0.5, 0.1667, 0.3415, -0.5915, 0.3333, 0.3415, -0.5915, 0.25, 0.2696, -0.633, 0.5, 0.3415, -0.5915, 0.3333, 0.3415, -0.5915, 0, 0.5, -0.5, 0.3333, 0.3415, -0.5915, 0.5, 0.3415, -0.5915, 0.4167, 0.2696, -0.633, 0.5, 0.5, -0.5, 0.5, 0.3415, -0.5915, 0, 0.5, -0.5, 0.633, 0.2696, -0.0833, 0.5915, 0.3415, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, 0.5915, 0.3415, -0.1667, 0.633, 0.2696, -0.0833, 0.5, 0.5, 0, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.1667, 0.5, 0.5, -0.5, 0.633, 0.2696, -0.25, 0.5915, 0.3415, -0.1667, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.3333, 0.633, 0.2696, -0.25, 0.5, 0.5, -0.5, 0.633, 0.2696, -0.4167, 0.5915, 0.3415, -0.3333, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.5, 0.633, 0.2696, -0.4167, 0.5915, 0.3415, 0, 0.633, 0.2696, -0.0833, 0.5, 0.5, 0, 0.5915, 0.3415, -0.1667, 0.5, 0.5, 0, 0.633, 0.2696, -0.0833, 0.5, 0.5, -0.5, 0.5, 0.5, 0, 0.5915, 0.3415, -0.1667, 0.633, 0.2696, -0.25, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.1667, 0.5915, 0.3415, -0.3333, 0.5, 0.5, -0.5, 0.633, 0.2696, -0.25, 0.633, 0.2696, -0.4167, 0.5, 0.5, -0.5, 0.5915, 0.3415, -0.3333, 0.5915, 0.3415, -0.5, 0.5, 0.5, -0.5, 0.633, 0.2696, -0.4167, 0.0915, 0.8415, -0.1667, 0.1165, 0.7982, -0.1165, 0, 1, 0, 0, 1, 0, 0, 1, -0.5, 0.0915, 0.8415, -0.1667, 0, 1, -0.5, 0.133, 0.7696, -0.25, 0.0915, 0.8415, -0.1667, 0, 1, -0.5, 0.0915, 0.8415, -0.3333, 0.133, 0.7696, -0.25, 0, 1, -0.5, 0.133, 0.7696, -0.4167, 0.0915, 0.8415, -0.3333, 0, 1, -0.5, 0.0915, 0.8415, -0.5, 0.133, 0.7696, -0.4167, 0.1165, 0.7982, -0.1165, 0.0915, 0.8415, -0.1667, 0, 1, 0, 0, 1, -0.5, 0, 1, 0, 0.0915, 0.8415, -0.1667, 0.133, 0.7696, -0.25, 0, 1, -0.5, 0.0915, 0.8415, -0.1667, 0.0915, 0.8415, -0.3333, 0, 1, -0.5, 0.133, 0.7696, -0.25, 0.133, 0.7696, -0.4167, 0, 1, -0.5, 0.0915, 0.8415, -0.3333, 0.0915, 0.8415, -0.5, 0, 1, -0.5, 0.133, 0.7696, -0.4167, -0.5, 0.8415, -0.5915, -0.4167, 0.7696, -0.633, -0.3333, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.25, 0.7696, -0.633, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0, 0.8415, -0.5915, 0, 1, -0.5, -0.5, 1, -0.5, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, -0.4167, 0.7696, -0.633, -0.5, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.5, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.3333, 0.8415, -0.5915, -0.5, 1, -0.5, -0.3333, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.25, 0.7696, -0.633, 0, 0.8415, -0.5915, -0.1667, 0.8415, -0.5915, -0.5, 1, -0.5, -0.1667, 0.8415, -0.5915, 0, 0.8415, -0.5915, -0.0833, 0.7696, -0.633, 0, 1, -0.5, 0, 0.8415, -0.5915, -0.5, 1, -0.5, 0.633, 0.7696, 0.4167, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5, 1, 0, 0.5915, 0.8415, 0.3333, 0.5, 1, 0, 0.633, 0.7696, 0.25, 0.5915, 0.8415, 0.3333, 0.5, 1, 0, 0.5915, 0.8415, 0.1667, 0.633, 0.7696, 0.25, 0.5, 1, 0, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0.1667, 0.5, 1, 0, 0.5915, 0.8415, 0, 0.633, 0.7696, 0.0833, 0.5915, 0.8415, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.5, 1, 0.5, 0.633, 0.7696, 0.4167, 0.5, 1, 0, 0.5, 1, 0.5, 0.5915, 0.8415, 0.3333, 0.633, 0.7696, 0.25, 0.5, 1, 0, 0.5915, 0.8415, 0.3333, 0.5915, 0.8415, 0.1667, 0.5, 1, 0, 0.633, 0.7696, 0.25, 0.633, 0.7696, 0.0833, 0.5, 1, 0, 0.5915, 0.8415, 0.1667, 0.5915, 0.8415, 0, 0.5, 1, 0, 0.633, 0.7696, 0.0833, 0.5, 0.8415, 0.5915, 0.4167, 0.7696, 0.633, 0.3333, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, 0.4167, 0.7696, 0.633, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.5, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.633, 0.7696, 0.4167, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.5915, 0.8415, 0.1667, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.633, 0.7696, 0.4167, -0.5915, 0.8415, 0.3333, -0.633, 0.7696, 0.4167, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.3333, -0.5, 1, 0.5, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0.3333, -0.5, 1, -0.5, -0.633, 0.7696, 0.25, -0.5915, 0.8415, 0.3333, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, 0.1667, -0.5, 1, -0.5, -0.633, 0.7696, 0.0833, -0.5915, 0.8415, 0.1667, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.5915, 0.8415, 0, -0.5, 1, -0.5, -0.633, 0.7696, -0.0833, -0.5915, 0.8415, 0, -0.5915, 0.8415, -0.1667, -0.633, 0.7696, -0.25, -0.5915, 0.8415, -0.1667, -0.5, 1, -0.5, -0.5915, 0.8415, -0.3333, -0.633, 0.7696, -0.25, -0.5, 1, -0.5, -0.633, 0.7696, -0.4167, -0.5915, 0.8415, -0.3333, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.633, 0.7696, -0.4167, -0.5, 1, -0.5, 0, 1, 0, 0.5, 1, 0, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, 0, 1, 0, 0, 1, -0.5, 0, 1, 0, -0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, 0, 1, -0.5, 0, 1, 0, 0.1165, 0.7982, -0.1165, 0.1667, 0.8415, -0.0915, 0.1667, 0.8415, -0.0915, 0.3333, 0.8415, -0.0915, 0, 1, 0, 0.3333, 0.8415, -0.0915, 0.1667, 0.8415, -0.0915, 0.25, 0.7696, -0.133, 0.3333, 0.8415, -0.0915, 0.5, 0.8415, -0.0915, 0, 1, 0, 0.5, 0.8415, -0.0915, 0.5, 1, 0, 0, 1, 0, 0.5, 0.8415, -0.0915, 0.3333, 0.8415, -0.0915, 0.4167, 0.7696, -0.133, 0.1165, 0.7982, -0.1165, 0, 1, 0, 0.1667, 0.8415, -0.0915, 0.3333, 0.8415, -0.0915, 0.1667, 0.8415, -0.0915, 0, 1, 0, 0.1667, 0.8415, -0.0915, 0.3333, 0.8415, -0.0915, 0.25, 0.7696, -0.133, 0.5, 0.8415, -0.0915, 0.3333, 0.8415, -0.0915, 0, 1, 0, 0.3333, 0.8415, -0.0915, 0.5, 0.8415, -0.0915, 0.4167, 0.7696, -0.133, 0.5, 1, 0, 0.5, 0.8415, -0.0915, 0, 1, 0, 0.5, 0.5, 0, 0, 0.5, 0, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0.5, -0.5, 0.5, 0.5, 0, 0, 1, 0, 0, 0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, 0.5, 1, 0, 0, 1, 0, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0, 0.5, -0.5, 0, 0.5, 0, 0, 1, 0, 0, 1, 0, 0, 1, -0.5, 0, 0.5, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 0.5, 0, 0.5, 0.5, -0.5, 0.5, 0, -0.5, 0.5, 0.5, 0, 0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 0.5, 0, 0.5, 1, 0, 0.5, 0.5, 0, 0.5, 1, 0.5, 0, 0.5, -0.5, 0, 1, -0.5, -0.5, 1, -0.5, 0, 0.5, -0.5, -0.5, 1, -0.5, -0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0, 0.5, -0.5, 0.5, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, -0.5, -0.5, 1, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nkdt0"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2buxb"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_b52j5"] +_surfaces = [{ +"aabb": AABB(-0.383028, 0, -0.383028, 0.766056, 1, 0.766056), +"format": 4097, +"index_count": 198, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 8, 0, 7, 0, 12, 0, 12, 0, 13, 0, 8, 0, 13, 0, 11, 0, 8, 0, 13, 0, 14, 0, 11, 0, 14, 0, 15, 0, 11, 0, 15, 0, 16, 0, 11, 0, 16, 0, 9, 0, 11, 0, 7, 0, 8, 0, 12, 0, 13, 0, 12, 0, 8, 0, 11, 0, 13, 0, 8, 0, 14, 0, 13, 0, 11, 0, 15, 0, 14, 0, 11, 0, 16, 0, 15, 0, 11, 0, 9, 0, 16, 0, 11, 0, 10, 0, 17, 0, 18, 0, 18, 0, 11, 0, 10, 0, 18, 0, 19, 0, 11, 0, 19, 0, 18, 0, 20, 0, 19, 0, 2, 0, 11, 0, 2, 0, 1, 0, 11, 0, 2, 0, 19, 0, 21, 0, 17, 0, 10, 0, 18, 0, 11, 0, 18, 0, 10, 0, 19, 0, 18, 0, 11, 0, 18, 0, 19, 0, 20, 0, 2, 0, 19, 0, 11, 0, 19, 0, 2, 0, 21, 0, 1, 0, 2, 0, 11, 0, 4, 0, 22, 0, 23, 0, 23, 0, 5, 0, 4, 0, 23, 0, 24, 0, 5, 0, 24, 0, 23, 0, 25, 0, 24, 0, 6, 0, 5, 0, 6, 0, 8, 0, 5, 0, 6, 0, 24, 0, 26, 0, 22, 0, 4, 0, 23, 0, 5, 0, 23, 0, 4, 0, 24, 0, 23, 0, 5, 0, 23, 0, 24, 0, 25, 0, 6, 0, 24, 0, 5, 0, 24, 0, 6, 0, 26, 0, 8, 0, 6, 0, 5, 0, 8, 0, 11, 0, 1, 0, 1, 0, 5, 0, 8, 0, 27, 0, 3, 0, 5, 0, 5, 0, 28, 0, 27, 0, 5, 0, 1, 0, 28, 0, 1, 0, 29, 0, 28, 0, 1, 0, 30, 0, 29, 0, 1, 0, 31, 0, 30, 0, 1, 0, 0, 0, 31, 0, 3, 0, 27, 0, 5, 0, 28, 0, 5, 0, 27, 0, 1, 0, 5, 0, 28, 0, 29, 0, 1, 0, 28, 0, 30, 0, 1, 0, 29, 0, 31, 0, 1, 0, 30, 0, 0, 0, 1, 0, 31, 0), +"lods": [0.0994233, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 8, 0, 7, 0, 13, 0, 13, 0, 11, 0, 8, 0, 13, 0, 9, 0, 11, 0, 7, 0, 8, 0, 13, 0, 11, 0, 13, 0, 8, 0, 9, 0, 13, 0, 11, 0, 18, 0, 11, 0, 10, 0, 18, 0, 2, 0, 11, 0, 2, 0, 1, 0, 11, 0, 11, 0, 18, 0, 10, 0, 2, 0, 18, 0, 11, 0, 1, 0, 2, 0, 11, 0, 23, 0, 5, 0, 4, 0, 23, 0, 6, 0, 5, 0, 6, 0, 8, 0, 5, 0, 5, 0, 23, 0, 4, 0, 6, 0, 23, 0, 5, 0, 8, 0, 6, 0, 5, 0, 8, 0, 11, 0, 1, 0, 1, 0, 5, 0, 8, 0, 28, 0, 3, 0, 5, 0, 5, 0, 1, 0, 28, 0, 1, 0, 0, 0, 28, 0, 3, 0, 28, 0, 5, 0, 1, 0, 5, 0, 28, 0, 0, 0, 1, 0, 28, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 36, +"vertex_data": PackedByteArray(236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62) +}, { +"aabb": AABB(-0.383028, 0, -0.383028, 0.766056, 1, 0.766056), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 11, 0, 32, 0, 34, 0, 34, 0, 1, 0, 11, 0, 5, 0, 35, 0, 33, 0, 33, 0, 8, 0, 5, 0, 8, 0, 33, 0, 32, 0, 32, 0, 11, 0, 8, 0, 34, 0, 35, 0, 5, 0, 5, 0, 1, 0, 34, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 36, +"vertex_data": PackedByteArray(236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_mya62"] +resource_name = "blockQuarter_Mesh blockQuarter" +_surfaces = [{ +"aabb": AABB(-0.383028, 0, -0.383028, 0.766056, 1, 0.766056), +"attribute_data": PackedByteArray(155, 12, 35, 192, 196, 149, 187, 193, 0, 80, 247, 44, 45, 130, 241, 193, 155, 12, 35, 64, 196, 149, 187, 193, 155, 12, 35, 64, 196, 149, 187, 193, 0, 80, 247, 44, 45, 130, 241, 193, 155, 12, 35, 192, 196, 149, 187, 193, 152, 12, 35, 64, 196, 149, 187, 193, 160, 12, 35, 192, 196, 149, 187, 193, 38, 37, 76, 181, 45, 130, 241, 193, 38, 37, 76, 181, 45, 130, 241, 193, 160, 12, 35, 192, 196, 149, 187, 193, 152, 12, 35, 64, 196, 149, 187, 193, 157, 12, 35, 64, 196, 149, 187, 193, 157, 12, 35, 192, 196, 149, 187, 193, 0, 52, 50, 173, 44, 130, 241, 193, 0, 52, 50, 173, 44, 130, 241, 193, 157, 12, 35, 192, 196, 149, 187, 193, 157, 12, 35, 64, 196, 149, 187, 193, 160, 12, 35, 64, 196, 149, 187, 193, 152, 12, 35, 192, 196, 149, 187, 193, 58, 37, 76, 53, 45, 130, 241, 193, 58, 37, 76, 53, 45, 130, 241, 193, 152, 12, 35, 192, 196, 149, 187, 193, 160, 12, 35, 64, 196, 149, 187, 193, 246, 122, 29, 65, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 36, 191, 56, 173, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 36, 191, 56, 173, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 42, 203, 37, 41, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 42, 203, 37, 41, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 75, 249, 209, 64, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 47, 91, 19, 171, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 47, 91, 19, 171, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 246, 122, 29, 193, 246, 122, 13, 193, 246, 122, 29, 65, 246, 122, 13, 193, 246, 122, 29, 193, 246, 122, 45, 65, 246, 122, 29, 65, 246, 122, 45, 65, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 71, 249, 209, 192, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 15, 57, 48, 45, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 246, 122, 29, 193, 74, 191, 167, 193, 66, 249, 81, 192, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 15, 57, 48, 45, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 246, 122, 13, 193, 246, 122, 29, 65, 246, 122, 45, 65, 246, 122, 29, 193, 246, 122, 13, 193, 246, 122, 29, 193, 246, 122, 45, 65, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 198, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 27, 0, 29, 0, 28, 0, 29, 0, 30, 0, 28, 0, 30, 0, 31, 0, 28, 0, 31, 0, 32, 0, 28, 0, 35, 0, 33, 0, 34, 0, 36, 0, 34, 0, 33, 0, 37, 0, 36, 0, 33, 0, 38, 0, 36, 0, 37, 0, 39, 0, 38, 0, 37, 0, 40, 0, 39, 0, 37, 0, 41, 0, 40, 0, 37, 0, 44, 0, 42, 0, 43, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 45, 0, 46, 0, 43, 0, 47, 0, 46, 0, 48, 0, 45, 0, 48, 0, 49, 0, 45, 0, 48, 0, 46, 0, 50, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 55, 0, 52, 0, 54, 0, 52, 0, 55, 0, 56, 0, 57, 0, 55, 0, 54, 0, 55, 0, 57, 0, 58, 0, 59, 0, 57, 0, 54, 0, 62, 0, 60, 0, 61, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 63, 0, 64, 0, 61, 0, 65, 0, 64, 0, 66, 0, 63, 0, 66, 0, 67, 0, 63, 0, 66, 0, 64, 0, 68, 0, 71, 0, 69, 0, 70, 0, 72, 0, 70, 0, 69, 0, 73, 0, 70, 0, 72, 0, 70, 0, 73, 0, 74, 0, 75, 0, 73, 0, 72, 0, 73, 0, 75, 0, 76, 0, 77, 0, 75, 0, 72, 0, 80, 0, 78, 0, 79, 0, 79, 0, 81, 0, 80, 0, 84, 0, 82, 0, 83, 0, 83, 0, 85, 0, 84, 0, 83, 0, 86, 0, 85, 0, 86, 0, 87, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 86, 0, 90, 0, 89, 0, 93, 0, 91, 0, 92, 0, 94, 0, 92, 0, 91, 0, 95, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 95, 0, 96, 0, 98, 0, 95, 0, 97, 0, 99, 0, 95, 0, 98, 0), +"lods": [0.0994233, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 27, 0, 27, 0, 28, 0, 26, 0, 27, 0, 32, 0, 28, 0, 35, 0, 33, 0, 36, 0, 37, 0, 36, 0, 33, 0, 41, 0, 36, 0, 37, 0, 43, 0, 45, 0, 44, 0, 43, 0, 48, 0, 45, 0, 48, 0, 49, 0, 45, 0, 54, 0, 52, 0, 51, 0, 57, 0, 52, 0, 54, 0, 59, 0, 57, 0, 54, 0, 61, 0, 63, 0, 62, 0, 61, 0, 66, 0, 63, 0, 66, 0, 67, 0, 63, 0, 72, 0, 70, 0, 69, 0, 75, 0, 70, 0, 72, 0, 77, 0, 75, 0, 72, 0, 80, 0, 78, 0, 79, 0, 79, 0, 81, 0, 80, 0, 85, 0, 82, 0, 83, 0, 83, 0, 86, 0, 85, 0, 86, 0, 90, 0, 85, 0, 93, 0, 94, 0, 92, 0, 95, 0, 92, 0, 94, 0, 99, 0, 95, 0, 94, 0)], +"material": SubResource("StandardMaterial3D_nkdt0"), +"name": "grass", +"primitive": 3, +"vertex_count": 120, +"vertex_data": PackedByteArray(236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 85, 78, 83, 99, 0, 0, 255, 31, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 85, 78, 83, 99, 0, 0, 255, 31, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 169, 177, 171, 156, 255, 255, 255, 223, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 172, 28, 169, 49, 255, 255, 255, 31, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 172, 28, 169, 49, 255, 255, 255, 31, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 172, 28, 169, 49, 255, 255, 255, 31, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 85, 78, 171, 156, 255, 191, 255, 191, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 82, 227, 169, 49, 255, 191, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 82, 227, 169, 49, 255, 191, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 169, 177, 83, 99, 255, 63, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 169, 177, 83, 99, 255, 63, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 217, 46, 217, 174, 255, 127, 255, 191, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 217, 46, 217, 174, 255, 127, 255, 191, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 217, 46, 217, 174, 255, 127, 255, 191, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 37, 209, 37, 81, 255, 127, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 37, 209, 37, 81, 255, 127, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 37, 209, 37, 81, 255, 127, 255, 63, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 37, 209, 37, 81, 255, 127, 255, 63, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 255, 191, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 255, 63, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 255, 255, 255, 191, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 255, 255, 255, 63, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 255, 255, 255, 255, 191, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 217, 174, 255, 255, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 37, 209, 217, 174, 0, 0, 255, 255, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 255, 255, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 255, 255, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 37, 209, 217, 174, 254, 255, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 37, 209, 217, 174, 0, 0, 254, 255, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 37, 209, 217, 174, 255, 255, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 254, 255, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 217, 46, 37, 81, 255, 255, 254, 127, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 217, 46, 37, 81, 254, 255, 254, 127, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 0, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 217, 46, 37, 81, 254, 255, 254, 127, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 217, 46, 37, 81, 0, 0, 0, 0, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 217, 46, 37, 81, 255, 255, 254, 127, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.383028, 0, -0.383028, 0.766056, 1, 0.766056), +"attribute_data": PackedByteArray(155, 12, 35, 192, 196, 149, 187, 193, 0, 80, 247, 44, 45, 130, 241, 193, 155, 12, 35, 64, 196, 149, 187, 193, 155, 12, 35, 64, 196, 149, 187, 193, 0, 80, 247, 44, 45, 130, 241, 193, 155, 12, 35, 192, 196, 149, 187, 193, 152, 12, 35, 64, 196, 149, 187, 193, 160, 12, 35, 192, 196, 149, 187, 193, 38, 37, 76, 181, 45, 130, 241, 193, 38, 37, 76, 181, 45, 130, 241, 193, 160, 12, 35, 192, 196, 149, 187, 193, 152, 12, 35, 64, 196, 149, 187, 193, 157, 12, 35, 64, 196, 149, 187, 193, 157, 12, 35, 192, 196, 149, 187, 193, 0, 52, 50, 173, 44, 130, 241, 193, 0, 52, 50, 173, 44, 130, 241, 193, 157, 12, 35, 192, 196, 149, 187, 193, 157, 12, 35, 64, 196, 149, 187, 193, 160, 12, 35, 64, 196, 149, 187, 193, 152, 12, 35, 192, 196, 149, 187, 193, 58, 37, 76, 53, 45, 130, 241, 193, 58, 37, 76, 53, 45, 130, 241, 193, 152, 12, 35, 192, 196, 149, 187, 193, 160, 12, 35, 64, 196, 149, 187, 193, 246, 122, 29, 65, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 36, 191, 56, 173, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 36, 191, 56, 173, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 42, 203, 37, 41, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 71, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 42, 203, 37, 41, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 75, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 75, 249, 209, 64, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 47, 91, 19, 171, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 211, 100, 225, 193, 66, 249, 81, 192, 74, 191, 167, 193, 47, 91, 19, 171, 191, 152, 141, 193, 246, 122, 29, 193, 74, 191, 167, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 246, 122, 29, 193, 246, 122, 13, 193, 246, 122, 29, 65, 246, 122, 13, 193, 246, 122, 29, 193, 246, 122, 45, 65, 246, 122, 29, 65, 246, 122, 45, 65, 246, 122, 29, 193, 74, 191, 167, 193, 246, 122, 29, 193, 211, 100, 225, 193, 71, 249, 209, 192, 191, 152, 141, 193, 66, 249, 81, 192, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 15, 57, 48, 45, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 71, 249, 209, 192, 191, 152, 141, 193, 246, 122, 29, 193, 211, 100, 225, 193, 246, 122, 29, 193, 74, 191, 167, 193, 66, 249, 81, 192, 74, 191, 167, 193, 246, 122, 29, 65, 211, 100, 225, 193, 15, 57, 48, 45, 191, 152, 141, 193, 66, 249, 81, 64, 74, 191, 167, 193, 75, 249, 209, 64, 191, 152, 141, 193, 246, 122, 29, 65, 74, 191, 167, 193, 246, 122, 29, 65, 246, 122, 13, 193, 246, 122, 29, 65, 246, 122, 45, 65, 246, 122, 29, 193, 246, 122, 13, 193, 246, 122, 29, 193, 246, 122, 45, 65, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 193, 0, 0, 128, 63, 246, 122, 29, 193, 246, 122, 25, 194, 246, 122, 29, 65, 0, 0, 128, 63, 246, 122, 29, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 107, 0, 106, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 114, 0, 112, 0, 113, 0, 113, 0, 115, 0, 114, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0), +"material": SubResource("StandardMaterial3D_2buxb"), +"name": "dirt", +"primitive": 3, +"vertex_count": 120, +"vertex_data": PackedByteArray(236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 85, 78, 83, 99, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 85, 78, 83, 99, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 172, 28, 169, 49, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 85, 78, 171, 156, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 82, 227, 169, 49, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 82, 227, 169, 49, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 169, 177, 83, 99, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 169, 177, 83, 99, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 217, 46, 217, 174, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 217, 46, 217, 174, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 217, 46, 217, 174, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 170, 170, 42, 62, 37, 209, 37, 81, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 61, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 142, 117, 143, 170, 37, 209, 37, 81, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 166, 170, 170, 189, 37, 209, 37, 81, 0, 0, 0, 128, 63, 28, 196, 190, 195, 3, 69, 63, 173, 170, 42, 190, 37, 209, 37, 81, 0, 0, 0, 128, 237, 218, 174, 190, 24, 108, 87, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 0, 128, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 189, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 61, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 0, 128, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 236, 218, 174, 190, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 190, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 0, 0, 0, 128, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 0, 0, 0, 128, 191, 14, 28, 166, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 24, 108, 87, 63, 237, 218, 174, 62, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 42, 190, 195, 3, 69, 63, 63, 28, 196, 62, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 255, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 37, 209, 217, 174, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 37, 209, 217, 174, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 37, 209, 217, 174, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 37, 209, 217, 174, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 170, 170, 42, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 61, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 142, 117, 143, 170, 217, 46, 37, 81, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 166, 170, 170, 189, 217, 46, 37, 81, 0, 0, 0, 128, 63, 28, 196, 62, 195, 3, 69, 63, 173, 170, 42, 190, 217, 46, 37, 81, 0, 0, 0, 128, 236, 218, 174, 62, 24, 108, 87, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 0, 0, 0, 0, 128, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 128, 190, 0, 0, 128, 63, 0, 0, 128, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 128, 62, 0, 0, 128, 63, 0, 0, 128, 190, 255, 255, 255, 127, 255, 255, 255, 255) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_b52j5") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_26jv0"] +data = PackedVector3Array(0.25, 0.8415, -0.3415, 0.3415, 0.8415, -0.25, 0.25, 1, -0.25, 0.3415, 0.8415, -0.25, 0.25, 0.8415, -0.3415, 0.25, 1, -0.25, 0.25, 1, 0.25, 0.3415, 0.8415, 0.25, 0.25, 0.8415, 0.3415, 0.3415, 0.8415, 0.25, 0.25, 1, 0.25, 0.25, 0.8415, 0.3415, -0.25, 1, 0.25, -0.25, 0.8415, 0.3415, -0.3415, 0.8415, 0.25, -0.25, 0.8415, 0.3415, -0.25, 1, 0.25, -0.3415, 0.8415, 0.25, -0.25, 1, -0.25, -0.3415, 0.8415, -0.25, -0.25, 0.8415, -0.3415, -0.3415, 0.8415, -0.25, -0.25, 1, -0.25, -0.25, 0.8415, -0.3415, -0.25, 1, 0.25, -0.3415, 0.8415, 0.25, -0.383, 0.7696, 0.1667, -0.383, 0.7696, 0.1667, -0.3415, 0.8415, 0.0833, -0.25, 1, 0.25, -0.3415, 0.8415, 0.0833, -0.25, 1, -0.25, -0.25, 1, 0.25, -0.3415, 0.8415, 0.0833, -0.383, 0.7696, 0, -0.25, 1, -0.25, -0.383, 0.7696, 0, -0.3415, 0.8415, -0.0833, -0.25, 1, -0.25, -0.3415, 0.8415, -0.0833, -0.383, 0.7696, -0.1667, -0.25, 1, -0.25, -0.383, 0.7696, -0.1667, -0.3415, 0.8415, -0.25, -0.25, 1, -0.25, -0.3415, 0.8415, 0.25, -0.25, 1, 0.25, -0.383, 0.7696, 0.1667, -0.3415, 0.8415, 0.0833, -0.383, 0.7696, 0.1667, -0.25, 1, 0.25, -0.25, 1, -0.25, -0.3415, 0.8415, 0.0833, -0.25, 1, 0.25, -0.383, 0.7696, 0, -0.3415, 0.8415, 0.0833, -0.25, 1, -0.25, -0.3415, 0.8415, -0.0833, -0.383, 0.7696, 0, -0.25, 1, -0.25, -0.383, 0.7696, -0.1667, -0.3415, 0.8415, -0.0833, -0.25, 1, -0.25, -0.3415, 0.8415, -0.25, -0.383, 0.7696, -0.1667, -0.25, 1, -0.25, -0.25, 0.8415, -0.3415, -0.1667, 0.7696, -0.383, -0.0833, 0.8415, -0.3415, -0.0833, 0.8415, -0.3415, -0.25, 1, -0.25, -0.25, 0.8415, -0.3415, -0.0833, 0.8415, -0.3415, 0.0833, 0.8415, -0.3415, -0.25, 1, -0.25, 0.0833, 0.8415, -0.3415, -0.0833, 0.8415, -0.3415, 0, 0.7696, -0.383, 0.0833, 0.8415, -0.3415, 0.25, 0.8415, -0.3415, -0.25, 1, -0.25, 0.25, 0.8415, -0.3415, 0.25, 1, -0.25, -0.25, 1, -0.25, 0.25, 0.8415, -0.3415, 0.0833, 0.8415, -0.3415, 0.1667, 0.7696, -0.383, -0.1667, 0.7696, -0.383, -0.25, 0.8415, -0.3415, -0.0833, 0.8415, -0.3415, -0.25, 1, -0.25, -0.0833, 0.8415, -0.3415, -0.25, 0.8415, -0.3415, 0.0833, 0.8415, -0.3415, -0.0833, 0.8415, -0.3415, -0.25, 1, -0.25, -0.0833, 0.8415, -0.3415, 0.0833, 0.8415, -0.3415, 0, 0.7696, -0.383, 0.25, 0.8415, -0.3415, 0.0833, 0.8415, -0.3415, -0.25, 1, -0.25, 0.0833, 0.8415, -0.3415, 0.25, 0.8415, -0.3415, 0.1667, 0.7696, -0.383, 0.25, 1, -0.25, 0.25, 0.8415, -0.3415, -0.25, 1, -0.25, 0.25, 0.8415, 0.3415, 0.1667, 0.7696, 0.383, 0.0833, 0.8415, 0.3415, 0.0833, 0.8415, 0.3415, 0.25, 1, 0.25, 0.25, 0.8415, 0.3415, 0.0833, 0.8415, 0.3415, -0.0833, 0.8415, 0.3415, 0.25, 1, 0.25, -0.0833, 0.8415, 0.3415, 0.0833, 0.8415, 0.3415, 0, 0.7696, 0.383, -0.0833, 0.8415, 0.3415, -0.25, 0.8415, 0.3415, 0.25, 1, 0.25, -0.25, 0.8415, 0.3415, -0.25, 1, 0.25, 0.25, 1, 0.25, -0.25, 0.8415, 0.3415, -0.0833, 0.8415, 0.3415, -0.1667, 0.7696, 0.383, 0.1667, 0.7696, 0.383, 0.25, 0.8415, 0.3415, 0.0833, 0.8415, 0.3415, 0.25, 1, 0.25, 0.0833, 0.8415, 0.3415, 0.25, 0.8415, 0.3415, -0.0833, 0.8415, 0.3415, 0.0833, 0.8415, 0.3415, 0.25, 1, 0.25, 0.0833, 0.8415, 0.3415, -0.0833, 0.8415, 0.3415, 0, 0.7696, 0.383, -0.25, 0.8415, 0.3415, -0.0833, 0.8415, 0.3415, 0.25, 1, 0.25, -0.0833, 0.8415, 0.3415, -0.25, 0.8415, 0.3415, -0.1667, 0.7696, 0.383, -0.25, 1, 0.25, -0.25, 0.8415, 0.3415, 0.25, 1, 0.25, -0.25, 1, 0.25, -0.25, 1, -0.25, 0.25, 1, -0.25, 0.25, 1, -0.25, 0.25, 1, 0.25, -0.25, 1, 0.25, 0.383, 0.7696, 0.1667, 0.3415, 0.8415, 0.25, 0.25, 1, 0.25, 0.25, 1, 0.25, 0.3415, 0.8415, 0.0833, 0.383, 0.7696, 0.1667, 0.25, 1, 0.25, 0.25, 1, -0.25, 0.3415, 0.8415, 0.0833, 0.25, 1, -0.25, 0.383, 0.7696, 0, 0.3415, 0.8415, 0.0833, 0.25, 1, -0.25, 0.3415, 0.8415, -0.0833, 0.383, 0.7696, 0, 0.25, 1, -0.25, 0.383, 0.7696, -0.1667, 0.3415, 0.8415, -0.0833, 0.25, 1, -0.25, 0.3415, 0.8415, -0.25, 0.383, 0.7696, -0.1667, 0.3415, 0.8415, 0.25, 0.383, 0.7696, 0.1667, 0.25, 1, 0.25, 0.3415, 0.8415, 0.0833, 0.25, 1, 0.25, 0.383, 0.7696, 0.1667, 0.25, 1, -0.25, 0.25, 1, 0.25, 0.3415, 0.8415, 0.0833, 0.383, 0.7696, 0, 0.25, 1, -0.25, 0.3415, 0.8415, 0.0833, 0.3415, 0.8415, -0.0833, 0.25, 1, -0.25, 0.383, 0.7696, 0, 0.383, 0.7696, -0.1667, 0.25, 1, -0.25, 0.3415, 0.8415, -0.0833, 0.3415, 0.8415, -0.25, 0.25, 1, -0.25, 0.383, 0.7696, -0.1667, 0.25, 0, -0.25, -0.25, 0, -0.25, -0.25, 0, 0.25, -0.25, 0, 0.25, 0.25, 0, 0.25, 0.25, 0, -0.25, -0.25, 1, -0.25, -0.25, 0, -0.25, 0.25, 0, -0.25, 0.25, 0, -0.25, 0.25, 1, -0.25, -0.25, 1, -0.25, 0.25, 1, 0.25, 0.25, 0, 0.25, -0.25, 0, 0.25, -0.25, 0, 0.25, -0.25, 1, 0.25, 0.25, 1, 0.25, -0.25, 1, 0.25, -0.25, 0, 0.25, -0.25, 0, -0.25, -0.25, 0, -0.25, -0.25, 1, -0.25, -0.25, 1, 0.25, 0.25, 0, -0.25, 0.25, 0, 0.25, 0.25, 1, 0.25, 0.25, 1, 0.25, 0.25, 1, -0.25, 0.25, 0, -0.25) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ciiie"] +resource_name = "wood" +vertex_color_use_as_albedo = true +albedo_color = Color(0.866667, 0.533333, 0.309804, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4mhsl"] +resource_name = "woodDark" +vertex_color_use_as_albedo = true +albedo_color = Color(0.627451, 0.384314, 0.223529, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_kb688"] +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1, 0.3925, 1), +"format": 4097, +"index_count": 360, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 24, 0, 25, 0, 22, 0, 25, 0, 26, 0, 22, 0, 26, 0, 27, 0, 22, 0, 17, 0, 16, 0, 28, 0, 28, 0, 29, 0, 17, 0, 10, 0, 11, 0, 18, 0, 18, 0, 19, 0, 10, 0, 6, 0, 30, 0, 31, 0, 31, 0, 32, 0, 6, 0, 32, 0, 33, 0, 6, 0, 33, 0, 15, 0, 6, 0, 15, 0, 13, 0, 6, 0, 13, 0, 4, 0, 6, 0, 22, 0, 27, 0, 34, 0, 34, 0, 35, 0, 22, 0, 37, 0, 36, 0, 31, 0, 31, 0, 30, 0, 37, 0, 34, 0, 38, 0, 39, 0, 39, 0, 40, 0, 34, 0, 40, 0, 41, 0, 34, 0, 41, 0, 42, 0, 34, 0, 42, 0, 43, 0, 34, 0, 43, 0, 35, 0, 34, 0, 43, 0, 20, 0, 22, 0, 22, 0, 35, 0, 43, 0, 17, 0, 29, 0, 44, 0, 44, 0, 45, 0, 17, 0, 45, 0, 46, 0, 17, 0, 46, 0, 8, 0, 17, 0, 8, 0, 10, 0, 17, 0, 10, 0, 19, 0, 17, 0, 41, 0, 40, 0, 24, 0, 24, 0, 23, 0, 41, 0, 39, 0, 38, 0, 26, 0, 26, 0, 25, 0, 39, 0, 49, 0, 47, 0, 48, 0, 48, 0, 50, 0, 49, 0, 18, 0, 11, 0, 9, 0, 9, 0, 51, 0, 18, 0, 51, 0, 52, 0, 18, 0, 52, 0, 53, 0, 18, 0, 53, 0, 28, 0, 18, 0, 28, 0, 16, 0, 18, 0, 5, 0, 4, 0, 13, 0, 13, 0, 12, 0, 5, 0, 37, 0, 30, 0, 6, 0, 6, 0, 7, 0, 37, 0, 46, 0, 45, 0, 52, 0, 52, 0, 51, 0, 46, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 60, 0, 58, 0, 59, 0, 59, 0, 54, 0, 60, 0, 54, 0, 56, 0, 60, 0, 56, 0, 47, 0, 60, 0, 47, 0, 49, 0, 60, 0, 49, 0, 61, 0, 60, 0, 44, 0, 29, 0, 28, 0, 28, 0, 53, 0, 44, 0, 34, 0, 27, 0, 26, 0, 26, 0, 38, 0, 34, 0, 43, 0, 42, 0, 21, 0, 21, 0, 20, 0, 43, 0, 64, 0, 62, 0, 63, 0, 63, 0, 65, 0, 64, 0, 68, 0, 66, 0, 67, 0, 67, 0, 69, 0, 68, 0, 62, 0, 66, 0, 68, 0, 68, 0, 70, 0, 62, 0, 70, 0, 71, 0, 62, 0, 71, 0, 0, 0, 62, 0, 0, 0, 2, 0, 62, 0, 2, 0, 63, 0, 62, 0, 5, 0, 12, 0, 14, 0, 14, 0, 72, 0, 5, 0, 72, 0, 73, 0, 5, 0, 73, 0, 36, 0, 5, 0, 36, 0, 37, 0, 5, 0, 37, 0, 7, 0, 5, 0, 73, 0, 72, 0, 33, 0, 33, 0, 32, 0, 73, 0, 71, 0, 70, 0, 74, 0, 74, 0, 75, 0, 71, 0, 65, 0, 3, 0, 1, 0, 1, 0, 75, 0, 65, 0, 75, 0, 74, 0, 65, 0, 74, 0, 69, 0, 65, 0, 69, 0, 67, 0, 65, 0, 67, 0, 64, 0, 65, 0, 76, 0, 50, 0, 48, 0, 48, 0, 57, 0, 76, 0, 57, 0, 55, 0, 76, 0, 55, 0, 77, 0, 76, 0, 77, 0, 78, 0, 76, 0, 78, 0, 79, 0, 76, 0, 58, 0, 78, 0, 77, 0, 77, 0, 59, 0, 58, 0, 60, 0, 79, 0, 78, 0, 78, 0, 58, 0, 60, 0, 62, 0, 64, 0, 67, 0, 67, 0, 66, 0, 62, 0, 3, 0, 65, 0, 63, 0, 63, 0, 2, 0, 3, 0, 76, 0, 79, 0, 60, 0, 60, 0, 61, 0, 76, 0, 49, 0, 50, 0, 76, 0, 76, 0, 61, 0, 49, 0), +"name": "wood", +"primitive": 3, +"vertex_count": 128, +"vertex_data": PackedByteArray(246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190) +}, { +"aabb": AABB(-0.5, 0, -0.5, 1, 0.3925, 1), +"format": 4097, +"index_count": 444, +"index_data": PackedByteArray(82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 42, 0, 41, 0, 88, 0, 88, 0, 89, 0, 42, 0, 92, 0, 90, 0, 91, 0, 91, 0, 93, 0, 92, 0, 80, 0, 94, 0, 95, 0, 95, 0, 81, 0, 80, 0, 98, 0, 96, 0, 97, 0, 97, 0, 99, 0, 98, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 9, 0, 106, 0, 9, 0, 8, 0, 106, 0, 8, 0, 48, 0, 106, 0, 48, 0, 47, 0, 106, 0, 47, 0, 31, 0, 106, 0, 31, 0, 36, 0, 106, 0, 36, 0, 1, 0, 106, 0, 1, 0, 0, 0, 106, 0, 0, 0, 21, 0, 106, 0, 21, 0, 42, 0, 106, 0, 42, 0, 89, 0, 106, 0, 85, 0, 84, 0, 101, 0, 101, 0, 100, 0, 85, 0, 109, 0, 107, 0, 108, 0, 108, 0, 110, 0, 109, 0, 51, 0, 111, 0, 112, 0, 112, 0, 113, 0, 51, 0, 113, 0, 46, 0, 51, 0, 113, 0, 57, 0, 46, 0, 113, 0, 56, 0, 57, 0, 113, 0, 32, 0, 56, 0, 113, 0, 73, 0, 32, 0, 113, 0, 75, 0, 73, 0, 113, 0, 71, 0, 75, 0, 113, 0, 23, 0, 71, 0, 113, 0, 41, 0, 23, 0, 113, 0, 88, 0, 41, 0, 86, 0, 103, 0, 101, 0, 101, 0, 84, 0, 86, 0, 114, 0, 93, 0, 91, 0, 91, 0, 115, 0, 114, 0, 45, 0, 44, 0, 77, 0, 77, 0, 55, 0, 45, 0, 109, 0, 110, 0, 53, 0, 53, 0, 52, 0, 109, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 105, 0, 104, 0, 112, 0, 112, 0, 111, 0, 105, 0, 115, 0, 91, 0, 90, 0, 90, 0, 120, 0, 115, 0, 80, 0, 82, 0, 121, 0, 121, 0, 94, 0, 80, 0, 88, 0, 113, 0, 106, 0, 106, 0, 89, 0, 88, 0, 70, 0, 68, 0, 25, 0, 25, 0, 24, 0, 70, 0, 36, 0, 73, 0, 75, 0, 75, 0, 1, 0, 36, 0, 47, 0, 56, 0, 32, 0, 32, 0, 31, 0, 47, 0, 83, 0, 122, 0, 121, 0, 121, 0, 82, 0, 83, 0, 40, 0, 39, 0, 118, 0, 118, 0, 119, 0, 40, 0, 124, 0, 123, 0, 96, 0, 96, 0, 98, 0, 124, 0, 90, 0, 92, 0, 125, 0, 125, 0, 120, 0, 90, 0, 8, 0, 46, 0, 57, 0, 57, 0, 48, 0, 8, 0, 95, 0, 94, 0, 121, 0, 121, 0, 122, 0, 95, 0, 97, 0, 126, 0, 127, 0, 127, 0, 99, 0, 97, 0, 72, 0, 14, 0, 69, 0, 69, 0, 74, 0, 72, 0, 126, 0, 97, 0, 96, 0, 96, 0, 123, 0, 126, 0, 103, 0, 86, 0, 87, 0, 87, 0, 102, 0, 103, 0, 0, 0, 71, 0, 23, 0, 23, 0, 21, 0, 0, 0, 105, 0, 111, 0, 51, 0, 51, 0, 9, 0, 105, 0, 127, 0, 124, 0, 98, 0, 98, 0, 99, 0, 127, 0, 54, 0, 59, 0, 15, 0, 15, 0, 33, 0, 54, 0, 53, 0, 110, 0, 108, 0, 108, 0, 116, 0, 53, 0, 116, 0, 44, 0, 53, 0, 116, 0, 77, 0, 44, 0, 116, 0, 59, 0, 77, 0, 116, 0, 15, 0, 59, 0, 116, 0, 14, 0, 15, 0, 116, 0, 69, 0, 14, 0, 116, 0, 68, 0, 69, 0, 116, 0, 25, 0, 68, 0, 116, 0, 39, 0, 25, 0, 116, 0, 118, 0, 39, 0, 117, 0, 107, 0, 109, 0, 109, 0, 52, 0, 117, 0, 52, 0, 45, 0, 117, 0, 45, 0, 55, 0, 117, 0, 55, 0, 54, 0, 117, 0, 54, 0, 33, 0, 117, 0, 33, 0, 72, 0, 117, 0, 72, 0, 74, 0, 117, 0, 74, 0, 70, 0, 117, 0, 70, 0, 24, 0, 117, 0, 24, 0, 40, 0, 117, 0, 40, 0, 119, 0, 117, 0, 125, 0, 114, 0, 115, 0, 115, 0, 120, 0, 125, 0, 113, 0, 112, 0, 114, 0, 114, 0, 106, 0, 113, 0, 95, 0, 114, 0, 112, 0, 112, 0, 104, 0, 95, 0, 114, 0, 125, 0, 106, 0, 95, 0, 93, 0, 114, 0, 125, 0, 92, 0, 106, 0, 104, 0, 81, 0, 95, 0, 104, 0, 106, 0, 81, 0, 95, 0, 122, 0, 93, 0, 92, 0, 93, 0, 122, 0, 83, 0, 81, 0, 106, 0, 122, 0, 83, 0, 92, 0, 92, 0, 83, 0, 106, 0, 116, 0, 108, 0, 124, 0, 124, 0, 117, 0, 116, 0, 85, 0, 124, 0, 108, 0, 108, 0, 107, 0, 85, 0, 124, 0, 127, 0, 117, 0, 85, 0, 123, 0, 124, 0, 127, 0, 126, 0, 117, 0, 107, 0, 87, 0, 85, 0, 107, 0, 117, 0, 87, 0, 85, 0, 100, 0, 123, 0, 126, 0, 123, 0, 100, 0, 102, 0, 87, 0, 117, 0, 100, 0, 102, 0, 126, 0, 126, 0, 102, 0, 117, 0), +"name": "woodDark", +"primitive": 3, +"vertex_count": 128, +"vertex_data": PackedByteArray(246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_cvajg"] +resource_name = "bridge_Mesh bridge" +_surfaces = [{ +"aabb": AABB(-0.5, 0, -0.5, 1, 0.3925, 1), +"attribute_data": PackedByteArray(222, 110, 135, 193, 178, 72, 29, 193, 222, 110, 135, 193, 56, 195, 94, 192, 29, 221, 156, 193, 174, 65, 30, 193, 246, 122, 157, 193, 242, 195, 98, 192, 246, 122, 157, 193, 46, 145, 133, 64, 246, 122, 157, 193, 93, 34, 11, 192, 246, 122, 157, 65, 46, 145, 133, 64, 246, 122, 157, 65, 93, 34, 11, 192, 222, 110, 135, 193, 191, 229, 69, 65, 222, 110, 135, 193, 119, 187, 149, 65, 246, 122, 157, 193, 191, 229, 69, 65, 246, 122, 157, 193, 119, 187, 149, 65, 246, 122, 157, 65, 93, 34, 11, 192, 246, 122, 157, 65, 46, 145, 133, 64, 222, 110, 135, 65, 93, 34, 11, 192, 222, 110, 135, 65, 46, 145, 133, 64, 246, 122, 157, 193, 119, 187, 149, 65, 246, 122, 157, 193, 191, 229, 69, 65, 246, 122, 157, 65, 119, 187, 149, 65, 246, 122, 157, 65, 191, 229, 69, 65, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 119, 187, 141, 65, 125, 62, 103, 193, 119, 187, 141, 65, 101, 50, 81, 193, 191, 229, 53, 65, 125, 62, 103, 193, 191, 229, 53, 65, 101, 50, 81, 193, 119, 187, 141, 193, 101, 50, 81, 193, 119, 187, 141, 193, 125, 62, 103, 193, 191, 229, 53, 193, 101, 50, 81, 193, 191, 229, 53, 193, 125, 62, 103, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 246, 122, 157, 193, 191, 229, 37, 193, 246, 122, 157, 193, 117, 187, 133, 193, 246, 122, 157, 65, 191, 229, 37, 193, 246, 122, 157, 65, 117, 187, 133, 193, 222, 110, 135, 193, 93, 34, 11, 192, 222, 110, 135, 193, 46, 145, 133, 64, 246, 122, 157, 193, 93, 34, 11, 192, 246, 122, 157, 193, 46, 145, 133, 64, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 191, 229, 53, 65, 101, 50, 81, 193, 191, 229, 53, 65, 125, 62, 103, 193, 117, 187, 141, 65, 101, 50, 81, 193, 117, 187, 141, 65, 125, 62, 103, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 139, 197, 98, 65, 117, 187, 133, 193, 139, 197, 98, 65, 191, 229, 37, 193, 139, 197, 98, 193, 117, 187, 133, 193, 139, 197, 98, 193, 191, 229, 37, 193, 246, 122, 157, 65, 117, 187, 133, 193, 246, 122, 157, 65, 191, 229, 37, 193, 222, 110, 135, 65, 117, 187, 133, 193, 222, 110, 135, 65, 191, 229, 37, 193, 222, 110, 135, 193, 145, 156, 171, 64, 222, 110, 135, 193, 173, 98, 59, 65, 246, 122, 157, 193, 60, 255, 172, 64, 224, 15, 157, 193, 164, 16, 60, 65, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 93, 34, 75, 64, 125, 62, 103, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 125, 62, 103, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 192, 125, 62, 103, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 64, 125, 62, 103, 193, 139, 197, 98, 65, 191, 229, 69, 65, 139, 197, 98, 65, 119, 187, 149, 65, 139, 197, 98, 193, 191, 229, 69, 65, 139, 197, 98, 193, 119, 187, 149, 65, 139, 197, 98, 65, 0, 250, 155, 64, 139, 197, 98, 65, 100, 145, 51, 65, 139, 197, 98, 193, 228, 57, 170, 64, 139, 197, 98, 193, 86, 177, 58, 65, 14, 145, 156, 65, 101, 50, 81, 193, 90, 239, 134, 65, 101, 50, 81, 193, 14, 145, 156, 65, 114, 56, 92, 193, 31, 197, 97, 65, 101, 50, 81, 193, 74, 212, 99, 193, 101, 50, 81, 193, 240, 246, 135, 193, 101, 50, 81, 193, 186, 3, 158, 193, 101, 50, 81, 193, 186, 3, 158, 193, 114, 56, 92, 193, 246, 122, 157, 65, 191, 229, 69, 65, 246, 122, 157, 65, 119, 187, 149, 65, 222, 110, 135, 65, 191, 229, 69, 65, 222, 110, 135, 65, 119, 187, 149, 65, 191, 229, 53, 193, 125, 62, 103, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 125, 62, 103, 193, 117, 187, 141, 193, 101, 50, 81, 193, 222, 110, 135, 193, 117, 187, 133, 193, 222, 110, 135, 193, 191, 229, 37, 193, 246, 122, 157, 193, 117, 187, 133, 193, 246, 122, 157, 193, 191, 229, 37, 193, 246, 122, 157, 193, 90, 253, 15, 193, 29, 221, 156, 65, 174, 65, 30, 193, 28, 221, 156, 193, 161, 178, 41, 192, 246, 122, 157, 65, 242, 195, 98, 192, 246, 122, 157, 65, 90, 253, 15, 193, 28, 221, 156, 65, 161, 178, 41, 192, 222, 110, 135, 65, 132, 253, 16, 193, 222, 110, 135, 65, 145, 150, 45, 192, 250, 159, 155, 65, 81, 50, 81, 193, 110, 146, 133, 65, 81, 50, 81, 193, 250, 159, 155, 65, 93, 56, 92, 193, 196, 9, 95, 65, 81, 50, 81, 193, 55, 159, 102, 193, 81, 50, 81, 193, 40, 93, 137, 193, 81, 50, 81, 193, 208, 204, 158, 193, 81, 50, 81, 193, 208, 204, 158, 193, 93, 56, 92, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 139, 197, 98, 65, 93, 34, 11, 192, 139, 197, 98, 65, 46, 145, 133, 64, 139, 197, 98, 193, 93, 34, 11, 192, 139, 197, 98, 193, 46, 145, 133, 64, 139, 197, 98, 65, 178, 253, 17, 193, 139, 197, 98, 65, 55, 151, 49, 192, 139, 197, 98, 193, 133, 72, 28, 193, 139, 197, 98, 193, 148, 194, 90, 192, 174, 67, 158, 65, 117, 50, 81, 193, 33, 54, 136, 65, 117, 50, 81, 193, 174, 67, 158, 65, 129, 56, 92, 193, 42, 81, 100, 65, 117, 50, 81, 193, 208, 87, 97, 193, 117, 50, 81, 193, 116, 185, 134, 193, 117, 50, 81, 193, 28, 41, 156, 193, 117, 50, 81, 193, 28, 41, 156, 193, 129, 56, 92, 193, 220, 100, 158, 65, 98, 50, 81, 193, 43, 195, 136, 65, 98, 50, 81, 193, 220, 100, 158, 65, 110, 56, 92, 193, 192, 108, 101, 65, 98, 50, 81, 193, 169, 44, 96, 193, 98, 50, 81, 193, 31, 35, 134, 193, 98, 50, 81, 193, 234, 47, 156, 193, 98, 50, 81, 193, 234, 47, 156, 193, 110, 56, 92, 193, 246, 122, 157, 65, 185, 46, 50, 65, 222, 110, 135, 65, 14, 224, 50, 65, 227, 15, 157, 65, 100, 59, 153, 64, 222, 110, 135, 65, 84, 151, 154, 64, 97, 197, 36, 65, 113, 56, 92, 193, 97, 197, 36, 65, 101, 50, 81, 193, 229, 205, 124, 64, 113, 56, 92, 193, 229, 205, 124, 64, 101, 50, 81, 193, 167, 234, 120, 192, 113, 56, 92, 193, 167, 234, 120, 192, 101, 50, 81, 193, 70, 205, 35, 193, 113, 56, 92, 193, 70, 205, 35, 193, 101, 50, 81, 193, 95, 185, 137, 64, 113, 56, 92, 193, 76, 111, 42, 65, 113, 56, 92, 193, 95, 185, 137, 64, 101, 50, 81, 193, 76, 111, 42, 65, 101, 50, 81, 193, 246, 122, 157, 193, 185, 46, 50, 65, 227, 15, 157, 193, 100, 59, 153, 64, 224, 15, 157, 65, 164, 16, 60, 65, 246, 122, 157, 65, 60, 255, 172, 64, 202, 120, 41, 193, 101, 50, 81, 193, 202, 120, 41, 193, 113, 56, 92, 193, 195, 205, 135, 192, 101, 50, 81, 193, 195, 205, 135, 192, 113, 56, 92, 193, 246, 122, 157, 193, 172, 111, 57, 192, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 183, 219, 5, 193, 52, 26, 37, 193, 216, 235, 129, 193, 202, 157, 66, 65, 216, 235, 129, 193, 219, 128, 213, 63, 151, 203, 109, 193, 202, 157, 66, 65, 151, 203, 109, 193, 219, 128, 213, 63, 139, 197, 98, 65, 117, 187, 133, 193, 139, 197, 98, 65, 246, 122, 149, 193, 222, 110, 135, 65, 117, 187, 133, 193, 222, 110, 135, 65, 246, 122, 149, 193, 216, 235, 129, 65, 247, 181, 110, 65, 151, 203, 109, 65, 247, 181, 110, 65, 216, 235, 129, 65, 194, 64, 139, 191, 151, 203, 109, 65, 194, 64, 139, 191, 151, 203, 109, 65, 202, 157, 66, 65, 151, 203, 109, 65, 219, 128, 213, 63, 216, 235, 129, 65, 202, 157, 66, 65, 216, 235, 129, 65, 219, 128, 213, 63, 216, 235, 129, 65, 0, 0, 128, 63, 151, 203, 109, 65, 0, 0, 128, 63, 216, 235, 129, 65, 172, 111, 57, 192, 151, 203, 109, 65, 172, 111, 57, 192, 216, 235, 129, 65, 194, 64, 139, 191, 216, 235, 129, 65, 247, 181, 110, 65, 151, 203, 109, 65, 194, 64, 139, 191, 151, 203, 109, 65, 247, 181, 110, 65, 246, 122, 157, 193, 52, 26, 37, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 173, 98, 43, 193, 101, 50, 81, 193, 145, 156, 139, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 156, 97, 143, 64, 101, 50, 81, 193, 178, 72, 45, 65, 101, 50, 81, 193, 191, 229, 53, 65, 101, 50, 81, 193, 117, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 172, 111, 57, 192, 246, 122, 157, 65, 0, 0, 128, 63, 158, 55, 68, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 139, 197, 98, 193, 52, 26, 37, 193, 222, 110, 135, 193, 52, 26, 37, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 191, 229, 53, 65, 101, 50, 81, 193, 86, 177, 42, 65, 101, 50, 81, 193, 228, 57, 138, 64, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 74, 97, 141, 192, 101, 50, 81, 193, 133, 72, 44, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 151, 203, 109, 193, 0, 0, 128, 63, 216, 235, 129, 193, 0, 0, 128, 63, 151, 203, 109, 193, 172, 111, 57, 192, 216, 235, 129, 193, 172, 111, 57, 192, 183, 219, 5, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 172, 111, 57, 192, 222, 110, 135, 193, 191, 229, 69, 65, 222, 110, 135, 193, 14, 224, 50, 65, 139, 197, 98, 193, 191, 229, 69, 65, 139, 197, 98, 193, 100, 145, 51, 65, 222, 110, 135, 193, 246, 122, 165, 65, 222, 110, 135, 193, 119, 187, 149, 65, 139, 197, 98, 193, 246, 122, 165, 65, 139, 197, 98, 193, 119, 187, 149, 65, 222, 110, 135, 65, 52, 26, 37, 193, 139, 197, 98, 65, 52, 26, 37, 193, 222, 110, 135, 65, 101, 50, 81, 193, 139, 197, 98, 65, 101, 50, 81, 193, 222, 110, 135, 65, 52, 26, 37, 193, 139, 197, 98, 65, 52, 26, 37, 193, 222, 110, 135, 65, 101, 50, 81, 193, 139, 197, 98, 65, 101, 50, 81, 193, 151, 203, 109, 193, 0, 0, 128, 63, 216, 235, 129, 193, 0, 0, 128, 63, 151, 203, 109, 193, 172, 111, 57, 192, 216, 235, 129, 193, 172, 111, 57, 192, 216, 235, 129, 65, 0, 0, 128, 63, 151, 203, 109, 65, 0, 0, 128, 63, 216, 235, 129, 65, 172, 111, 57, 192, 151, 203, 109, 65, 172, 111, 57, 192, 139, 197, 98, 193, 52, 26, 37, 193, 222, 110, 135, 193, 52, 26, 37, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 222, 110, 135, 193, 132, 253, 16, 193, 222, 110, 135, 193, 191, 229, 37, 193, 139, 197, 98, 193, 178, 253, 17, 193, 139, 197, 98, 193, 191, 229, 37, 193, 139, 197, 98, 65, 93, 34, 11, 192, 139, 197, 98, 65, 148, 194, 90, 192, 222, 110, 135, 65, 93, 34, 11, 192, 222, 110, 135, 65, 56, 195, 94, 192, 139, 197, 98, 65, 228, 57, 170, 64, 139, 197, 98, 65, 46, 145, 133, 64, 222, 110, 135, 65, 145, 156, 171, 64, 222, 110, 135, 65, 46, 145, 133, 64, 151, 203, 109, 193, 194, 64, 139, 191, 151, 203, 109, 193, 247, 181, 110, 65, 216, 235, 129, 193, 194, 64, 139, 191, 216, 235, 129, 193, 247, 181, 110, 65, 222, 110, 135, 193, 117, 187, 133, 193, 222, 110, 135, 193, 246, 122, 149, 193, 139, 197, 98, 193, 117, 187, 133, 193, 139, 197, 98, 193, 246, 122, 149, 193, 183, 219, 5, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 172, 111, 57, 192, 183, 219, 5, 65, 52, 26, 37, 193, 158, 55, 68, 65, 52, 26, 37, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 172, 111, 57, 192, 139, 197, 98, 65, 191, 229, 69, 65, 139, 197, 98, 65, 86, 177, 58, 65, 222, 110, 135, 65, 191, 229, 69, 65, 222, 110, 135, 65, 173, 98, 59, 65, 246, 122, 157, 65, 172, 111, 57, 192, 246, 122, 157, 65, 0, 0, 128, 63, 158, 55, 68, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 158, 55, 68, 65, 52, 26, 37, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 172, 111, 57, 192, 222, 110, 135, 193, 93, 34, 11, 192, 222, 110, 135, 193, 145, 150, 45, 192, 139, 197, 98, 193, 93, 34, 11, 192, 139, 197, 98, 193, 55, 151, 49, 192, 151, 203, 109, 193, 247, 181, 110, 65, 216, 235, 129, 193, 247, 181, 110, 65, 151, 203, 109, 193, 194, 64, 139, 191, 216, 235, 129, 193, 194, 64, 139, 191, 246, 122, 157, 193, 172, 111, 57, 192, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 183, 219, 5, 193, 52, 26, 37, 193, 139, 197, 98, 65, 133, 72, 28, 193, 139, 197, 98, 65, 191, 229, 37, 193, 222, 110, 135, 65, 178, 72, 29, 193, 222, 110, 135, 65, 191, 229, 37, 193, 139, 197, 98, 65, 246, 122, 165, 65, 139, 197, 98, 65, 119, 187, 149, 65, 222, 110, 135, 65, 246, 122, 165, 65, 222, 110, 135, 65, 119, 187, 149, 65, 216, 235, 129, 65, 219, 128, 213, 63, 216, 235, 129, 65, 202, 157, 66, 65, 151, 203, 109, 65, 219, 128, 213, 63, 151, 203, 109, 65, 202, 157, 66, 65, 222, 110, 135, 193, 84, 151, 154, 64, 222, 110, 135, 193, 46, 145, 133, 64, 139, 197, 98, 193, 0, 250, 155, 64, 139, 197, 98, 193, 46, 145, 133, 64, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 191, 229, 53, 65, 101, 50, 81, 193, 14, 224, 34, 65, 101, 50, 81, 193, 167, 46, 117, 64, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 145, 150, 109, 192, 101, 50, 81, 193, 132, 253, 32, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 100, 145, 35, 193, 101, 50, 81, 193, 1, 244, 119, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 55, 151, 113, 64, 101, 50, 81, 193, 178, 253, 33, 65, 101, 50, 81, 193, 191, 229, 53, 65, 101, 50, 81, 193, 117, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 151, 203, 109, 193, 219, 128, 213, 63, 151, 203, 109, 193, 202, 157, 66, 65, 216, 235, 129, 193, 219, 128, 213, 63, 216, 235, 129, 193, 202, 157, 66, 65, 139, 197, 98, 193, 246, 122, 165, 65, 151, 203, 109, 193, 158, 55, 52, 193, 139, 197, 98, 193, 246, 122, 149, 193, 222, 110, 135, 193, 246, 122, 149, 193, 151, 203, 109, 193, 158, 55, 84, 65, 222, 110, 135, 193, 246, 122, 165, 65, 216, 235, 129, 193, 158, 55, 52, 193, 151, 203, 109, 193, 110, 183, 235, 192, 216, 235, 129, 193, 110, 183, 235, 192, 216, 235, 129, 193, 158, 55, 84, 65, 151, 203, 109, 193, 183, 219, 21, 65, 216, 235, 129, 193, 183, 219, 21, 65, 222, 110, 135, 65, 246, 122, 165, 65, 216, 235, 129, 65, 158, 55, 52, 193, 222, 110, 135, 65, 246, 122, 149, 193, 139, 197, 98, 65, 246, 122, 149, 193, 216, 235, 129, 65, 158, 55, 84, 65, 139, 197, 98, 65, 246, 122, 165, 65, 151, 203, 109, 65, 158, 55, 52, 193, 216, 235, 129, 65, 110, 183, 235, 192, 151, 203, 109, 65, 110, 183, 235, 192, 151, 203, 109, 65, 158, 55, 84, 65, 216, 235, 129, 65, 183, 219, 21, 65, 151, 203, 109, 65, 183, 219, 21, 65), +"format": 4119, +"index_count": 360, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 24, 0, 25, 0, 22, 0, 25, 0, 26, 0, 22, 0, 26, 0, 27, 0, 22, 0, 30, 0, 28, 0, 29, 0, 29, 0, 31, 0, 30, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 39, 0, 40, 0, 38, 0, 40, 0, 41, 0, 38, 0, 41, 0, 42, 0, 38, 0, 42, 0, 43, 0, 38, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 54, 0, 52, 0, 53, 0, 53, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 56, 0, 57, 0, 54, 0, 57, 0, 58, 0, 54, 0, 58, 0, 59, 0, 54, 0, 62, 0, 60, 0, 61, 0, 61, 0, 63, 0, 62, 0, 66, 0, 64, 0, 65, 0, 65, 0, 67, 0, 66, 0, 67, 0, 68, 0, 66, 0, 68, 0, 69, 0, 66, 0, 69, 0, 70, 0, 66, 0, 70, 0, 71, 0, 66, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 87, 0, 88, 0, 86, 0, 88, 0, 89, 0, 86, 0, 89, 0, 90, 0, 86, 0, 90, 0, 91, 0, 86, 0, 94, 0, 92, 0, 93, 0, 93, 0, 95, 0, 94, 0, 98, 0, 96, 0, 97, 0, 97, 0, 99, 0, 98, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 107, 0, 106, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 111, 0, 112, 0, 110, 0, 112, 0, 113, 0, 110, 0, 113, 0, 114, 0, 110, 0, 114, 0, 115, 0, 110, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 122, 0, 120, 0, 121, 0, 121, 0, 123, 0, 122, 0, 126, 0, 124, 0, 125, 0, 125, 0, 127, 0, 126, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 134, 0, 132, 0, 133, 0, 133, 0, 135, 0, 134, 0, 138, 0, 136, 0, 137, 0, 137, 0, 139, 0, 138, 0, 139, 0, 140, 0, 138, 0, 140, 0, 141, 0, 138, 0, 141, 0, 142, 0, 138, 0, 142, 0, 143, 0, 138, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0, 147, 0, 148, 0, 146, 0, 148, 0, 149, 0, 146, 0, 149, 0, 150, 0, 146, 0, 150, 0, 151, 0, 146, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 163, 0, 164, 0, 162, 0, 164, 0, 165, 0, 162, 0, 165, 0, 166, 0, 162, 0, 166, 0, 167, 0, 162, 0, 170, 0, 168, 0, 169, 0, 169, 0, 171, 0, 170, 0, 171, 0, 172, 0, 170, 0, 172, 0, 173, 0, 170, 0, 173, 0, 174, 0, 170, 0, 174, 0, 175, 0, 170, 0, 178, 0, 176, 0, 177, 0, 177, 0, 179, 0, 178, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 190, 0, 188, 0, 189, 0, 189, 0, 191, 0, 190, 0, 194, 0, 192, 0, 193, 0, 193, 0, 195, 0, 194, 0, 198, 0, 196, 0, 197, 0, 197, 0, 199, 0, 198, 0), +"material": SubResource("StandardMaterial3D_ciiie"), +"name": "wood", +"primitive": 3, +"vertex_count": 424, +"vertex_data": PackedByteArray(246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 127, 0, 0, 0, 0, 255, 191, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 255, 127, 0, 0, 0, 0, 255, 191, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 255, 127, 0, 0, 0, 0, 255, 191, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 255, 255, 4, 254, 0, 0, 252, 192, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 255, 4, 254, 0, 0, 252, 192, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 255, 255, 4, 254, 0, 0, 252, 192, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 255, 4, 254, 0, 0, 252, 192, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 255, 4, 254, 0, 0, 252, 192, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 255, 4, 254, 0, 0, 252, 192, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 255, 255, 4, 254, 0, 0, 252, 192, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 255, 255, 4, 254, 0, 0, 252, 192, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 255, 127, 255, 255, 255, 255, 255, 191, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 255, 127, 255, 255, 255, 255, 255, 191, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 255, 127, 0, 0, 0, 0, 255, 191, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 0, 0, 39, 253, 215, 2, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 0, 0, 39, 253, 215, 2, 255, 191, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 0, 0, 39, 253, 215, 2, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 0, 0, 39, 253, 215, 2, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 0, 0, 39, 253, 215, 2, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 0, 0, 39, 253, 215, 2, 255, 191, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 0, 0, 39, 253, 215, 2, 255, 191, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 0, 0, 39, 253, 215, 2, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 214, 130, 255, 127, 255, 255, 106, 193, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 214, 130, 255, 127, 255, 255, 147, 190, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 214, 130, 255, 127, 255, 255, 106, 193, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 214, 130, 255, 127, 255, 255, 106, 193, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 214, 130, 255, 127, 255, 255, 147, 190, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 214, 130, 255, 127, 255, 255, 147, 190, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 214, 130, 255, 127, 255, 255, 147, 190, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 214, 130, 255, 127, 255, 255, 147, 190, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 4, 126, 255, 127, 4, 254, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 4, 126, 255, 127, 4, 254, 255, 191, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 4, 126, 255, 127, 4, 254, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 4, 126, 255, 127, 4, 254, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 4, 126, 255, 127, 4, 254, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 4, 126, 255, 127, 4, 254, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 4, 126, 255, 127, 4, 254, 255, 191, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 4, 126, 255, 127, 4, 254, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 255, 127, 0, 0, 0, 0, 255, 191, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 0, 0, 11, 129, 243, 126, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 0, 0, 11, 129, 243, 126, 255, 191, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 0, 0, 11, 129, 243, 126, 255, 191, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 0, 0, 11, 129, 243, 126, 255, 191, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 137, 1, 255, 127, 136, 129, 255, 191, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 137, 1, 255, 127, 136, 129, 255, 191, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 137, 1, 255, 127, 136, 129, 255, 191, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 137, 1, 255, 127, 136, 129, 255, 191, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 255, 255, 136, 129, 0, 0, 58, 255, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 255, 255, 136, 129, 0, 0, 58, 255, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 255, 255, 136, 129, 0, 0, 58, 255, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 255, 255, 136, 129, 0, 0, 58, 255, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 255, 127, 255, 255, 255, 255, 255, 191, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 255, 127, 255, 255, 255, 255, 255, 191, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 255, 127, 255, 255, 255, 255, 255, 191, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 243, 254, 255, 127, 255, 255, 121, 255, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 243, 254, 255, 127, 255, 255, 121, 255, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 243, 254, 255, 127, 255, 255, 121, 255, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 243, 254, 255, 127, 255, 255, 121, 255, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 127, 255, 255, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 0, 0, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 127, 255, 255, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 0, 0, 0, 128, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 0, 128, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 0, 128, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 127, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 0, 128, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 0, 128, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.5, 0, -0.5, 1, 0.3925, 1), +"attribute_data": PackedByteArray(222, 110, 135, 193, 178, 72, 29, 193, 222, 110, 135, 193, 56, 195, 94, 192, 29, 221, 156, 193, 174, 65, 30, 193, 246, 122, 157, 193, 242, 195, 98, 192, 246, 122, 157, 193, 46, 145, 133, 64, 246, 122, 157, 193, 93, 34, 11, 192, 246, 122, 157, 65, 46, 145, 133, 64, 246, 122, 157, 65, 93, 34, 11, 192, 222, 110, 135, 193, 191, 229, 69, 65, 222, 110, 135, 193, 119, 187, 149, 65, 246, 122, 157, 193, 191, 229, 69, 65, 246, 122, 157, 193, 119, 187, 149, 65, 246, 122, 157, 65, 93, 34, 11, 192, 246, 122, 157, 65, 46, 145, 133, 64, 222, 110, 135, 65, 93, 34, 11, 192, 222, 110, 135, 65, 46, 145, 133, 64, 246, 122, 157, 193, 119, 187, 149, 65, 246, 122, 157, 193, 191, 229, 69, 65, 246, 122, 157, 65, 119, 187, 149, 65, 246, 122, 157, 65, 191, 229, 69, 65, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 119, 187, 141, 65, 125, 62, 103, 193, 119, 187, 141, 65, 101, 50, 81, 193, 191, 229, 53, 65, 125, 62, 103, 193, 191, 229, 53, 65, 101, 50, 81, 193, 119, 187, 141, 193, 101, 50, 81, 193, 119, 187, 141, 193, 125, 62, 103, 193, 191, 229, 53, 193, 101, 50, 81, 193, 191, 229, 53, 193, 125, 62, 103, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 246, 122, 157, 193, 191, 229, 37, 193, 246, 122, 157, 193, 117, 187, 133, 193, 246, 122, 157, 65, 191, 229, 37, 193, 246, 122, 157, 65, 117, 187, 133, 193, 222, 110, 135, 193, 93, 34, 11, 192, 222, 110, 135, 193, 46, 145, 133, 64, 246, 122, 157, 193, 93, 34, 11, 192, 246, 122, 157, 193, 46, 145, 133, 64, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 191, 229, 53, 65, 101, 50, 81, 193, 191, 229, 53, 65, 125, 62, 103, 193, 117, 187, 141, 65, 101, 50, 81, 193, 117, 187, 141, 65, 125, 62, 103, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 139, 197, 98, 65, 117, 187, 133, 193, 139, 197, 98, 65, 191, 229, 37, 193, 139, 197, 98, 193, 117, 187, 133, 193, 139, 197, 98, 193, 191, 229, 37, 193, 246, 122, 157, 65, 117, 187, 133, 193, 246, 122, 157, 65, 191, 229, 37, 193, 222, 110, 135, 65, 117, 187, 133, 193, 222, 110, 135, 65, 191, 229, 37, 193, 222, 110, 135, 193, 145, 156, 171, 64, 222, 110, 135, 193, 173, 98, 59, 65, 246, 122, 157, 193, 60, 255, 172, 64, 224, 15, 157, 193, 164, 16, 60, 65, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 93, 34, 75, 64, 125, 62, 103, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 125, 62, 103, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 192, 125, 62, 103, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 64, 125, 62, 103, 193, 139, 197, 98, 65, 191, 229, 69, 65, 139, 197, 98, 65, 119, 187, 149, 65, 139, 197, 98, 193, 191, 229, 69, 65, 139, 197, 98, 193, 119, 187, 149, 65, 139, 197, 98, 65, 0, 250, 155, 64, 139, 197, 98, 65, 100, 145, 51, 65, 139, 197, 98, 193, 228, 57, 170, 64, 139, 197, 98, 193, 86, 177, 58, 65, 14, 145, 156, 65, 101, 50, 81, 193, 90, 239, 134, 65, 101, 50, 81, 193, 14, 145, 156, 65, 114, 56, 92, 193, 31, 197, 97, 65, 101, 50, 81, 193, 74, 212, 99, 193, 101, 50, 81, 193, 240, 246, 135, 193, 101, 50, 81, 193, 186, 3, 158, 193, 101, 50, 81, 193, 186, 3, 158, 193, 114, 56, 92, 193, 246, 122, 157, 65, 191, 229, 69, 65, 246, 122, 157, 65, 119, 187, 149, 65, 222, 110, 135, 65, 191, 229, 69, 65, 222, 110, 135, 65, 119, 187, 149, 65, 191, 229, 53, 193, 125, 62, 103, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 125, 62, 103, 193, 117, 187, 141, 193, 101, 50, 81, 193, 222, 110, 135, 193, 117, 187, 133, 193, 222, 110, 135, 193, 191, 229, 37, 193, 246, 122, 157, 193, 117, 187, 133, 193, 246, 122, 157, 193, 191, 229, 37, 193, 246, 122, 157, 193, 90, 253, 15, 193, 29, 221, 156, 65, 174, 65, 30, 193, 28, 221, 156, 193, 161, 178, 41, 192, 246, 122, 157, 65, 242, 195, 98, 192, 246, 122, 157, 65, 90, 253, 15, 193, 28, 221, 156, 65, 161, 178, 41, 192, 222, 110, 135, 65, 132, 253, 16, 193, 222, 110, 135, 65, 145, 150, 45, 192, 250, 159, 155, 65, 81, 50, 81, 193, 110, 146, 133, 65, 81, 50, 81, 193, 250, 159, 155, 65, 93, 56, 92, 193, 196, 9, 95, 65, 81, 50, 81, 193, 55, 159, 102, 193, 81, 50, 81, 193, 40, 93, 137, 193, 81, 50, 81, 193, 208, 204, 158, 193, 81, 50, 81, 193, 208, 204, 158, 193, 93, 56, 92, 193, 246, 122, 157, 65, 101, 50, 81, 193, 222, 110, 135, 65, 101, 50, 81, 193, 246, 122, 157, 65, 125, 62, 103, 193, 139, 197, 98, 65, 101, 50, 81, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 125, 62, 103, 193, 139, 197, 98, 65, 93, 34, 11, 192, 139, 197, 98, 65, 46, 145, 133, 64, 139, 197, 98, 193, 93, 34, 11, 192, 139, 197, 98, 193, 46, 145, 133, 64, 139, 197, 98, 65, 178, 253, 17, 193, 139, 197, 98, 65, 55, 151, 49, 192, 139, 197, 98, 193, 133, 72, 28, 193, 139, 197, 98, 193, 148, 194, 90, 192, 174, 67, 158, 65, 117, 50, 81, 193, 33, 54, 136, 65, 117, 50, 81, 193, 174, 67, 158, 65, 129, 56, 92, 193, 42, 81, 100, 65, 117, 50, 81, 193, 208, 87, 97, 193, 117, 50, 81, 193, 116, 185, 134, 193, 117, 50, 81, 193, 28, 41, 156, 193, 117, 50, 81, 193, 28, 41, 156, 193, 129, 56, 92, 193, 220, 100, 158, 65, 98, 50, 81, 193, 43, 195, 136, 65, 98, 50, 81, 193, 220, 100, 158, 65, 110, 56, 92, 193, 192, 108, 101, 65, 98, 50, 81, 193, 169, 44, 96, 193, 98, 50, 81, 193, 31, 35, 134, 193, 98, 50, 81, 193, 234, 47, 156, 193, 98, 50, 81, 193, 234, 47, 156, 193, 110, 56, 92, 193, 246, 122, 157, 65, 185, 46, 50, 65, 222, 110, 135, 65, 14, 224, 50, 65, 227, 15, 157, 65, 100, 59, 153, 64, 222, 110, 135, 65, 84, 151, 154, 64, 97, 197, 36, 65, 113, 56, 92, 193, 97, 197, 36, 65, 101, 50, 81, 193, 229, 205, 124, 64, 113, 56, 92, 193, 229, 205, 124, 64, 101, 50, 81, 193, 167, 234, 120, 192, 113, 56, 92, 193, 167, 234, 120, 192, 101, 50, 81, 193, 70, 205, 35, 193, 113, 56, 92, 193, 70, 205, 35, 193, 101, 50, 81, 193, 95, 185, 137, 64, 113, 56, 92, 193, 76, 111, 42, 65, 113, 56, 92, 193, 95, 185, 137, 64, 101, 50, 81, 193, 76, 111, 42, 65, 101, 50, 81, 193, 246, 122, 157, 193, 185, 46, 50, 65, 227, 15, 157, 193, 100, 59, 153, 64, 224, 15, 157, 65, 164, 16, 60, 65, 246, 122, 157, 65, 60, 255, 172, 64, 202, 120, 41, 193, 101, 50, 81, 193, 202, 120, 41, 193, 113, 56, 92, 193, 195, 205, 135, 192, 101, 50, 81, 193, 195, 205, 135, 192, 113, 56, 92, 193, 246, 122, 157, 193, 172, 111, 57, 192, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 183, 219, 5, 193, 52, 26, 37, 193, 216, 235, 129, 193, 202, 157, 66, 65, 216, 235, 129, 193, 219, 128, 213, 63, 151, 203, 109, 193, 202, 157, 66, 65, 151, 203, 109, 193, 219, 128, 213, 63, 139, 197, 98, 65, 117, 187, 133, 193, 139, 197, 98, 65, 246, 122, 149, 193, 222, 110, 135, 65, 117, 187, 133, 193, 222, 110, 135, 65, 246, 122, 149, 193, 216, 235, 129, 65, 247, 181, 110, 65, 151, 203, 109, 65, 247, 181, 110, 65, 216, 235, 129, 65, 194, 64, 139, 191, 151, 203, 109, 65, 194, 64, 139, 191, 151, 203, 109, 65, 202, 157, 66, 65, 151, 203, 109, 65, 219, 128, 213, 63, 216, 235, 129, 65, 202, 157, 66, 65, 216, 235, 129, 65, 219, 128, 213, 63, 216, 235, 129, 65, 0, 0, 128, 63, 151, 203, 109, 65, 0, 0, 128, 63, 216, 235, 129, 65, 172, 111, 57, 192, 151, 203, 109, 65, 172, 111, 57, 192, 216, 235, 129, 65, 194, 64, 139, 191, 216, 235, 129, 65, 247, 181, 110, 65, 151, 203, 109, 65, 194, 64, 139, 191, 151, 203, 109, 65, 247, 181, 110, 65, 246, 122, 157, 193, 52, 26, 37, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 173, 98, 43, 193, 101, 50, 81, 193, 145, 156, 139, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 156, 97, 143, 64, 101, 50, 81, 193, 178, 72, 45, 65, 101, 50, 81, 193, 191, 229, 53, 65, 101, 50, 81, 193, 117, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 172, 111, 57, 192, 246, 122, 157, 65, 0, 0, 128, 63, 158, 55, 68, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 139, 197, 98, 193, 52, 26, 37, 193, 222, 110, 135, 193, 52, 26, 37, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 191, 229, 53, 65, 101, 50, 81, 193, 86, 177, 42, 65, 101, 50, 81, 193, 228, 57, 138, 64, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 74, 97, 141, 192, 101, 50, 81, 193, 133, 72, 44, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 151, 203, 109, 193, 0, 0, 128, 63, 216, 235, 129, 193, 0, 0, 128, 63, 151, 203, 109, 193, 172, 111, 57, 192, 216, 235, 129, 193, 172, 111, 57, 192, 183, 219, 5, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 172, 111, 57, 192, 222, 110, 135, 193, 191, 229, 69, 65, 222, 110, 135, 193, 14, 224, 50, 65, 139, 197, 98, 193, 191, 229, 69, 65, 139, 197, 98, 193, 100, 145, 51, 65, 222, 110, 135, 193, 246, 122, 165, 65, 222, 110, 135, 193, 119, 187, 149, 65, 139, 197, 98, 193, 246, 122, 165, 65, 139, 197, 98, 193, 119, 187, 149, 65, 222, 110, 135, 65, 52, 26, 37, 193, 139, 197, 98, 65, 52, 26, 37, 193, 222, 110, 135, 65, 101, 50, 81, 193, 139, 197, 98, 65, 101, 50, 81, 193, 222, 110, 135, 65, 52, 26, 37, 193, 139, 197, 98, 65, 52, 26, 37, 193, 222, 110, 135, 65, 101, 50, 81, 193, 139, 197, 98, 65, 101, 50, 81, 193, 151, 203, 109, 193, 0, 0, 128, 63, 216, 235, 129, 193, 0, 0, 128, 63, 151, 203, 109, 193, 172, 111, 57, 192, 216, 235, 129, 193, 172, 111, 57, 192, 216, 235, 129, 65, 0, 0, 128, 63, 151, 203, 109, 65, 0, 0, 128, 63, 216, 235, 129, 65, 172, 111, 57, 192, 151, 203, 109, 65, 172, 111, 57, 192, 139, 197, 98, 193, 52, 26, 37, 193, 222, 110, 135, 193, 52, 26, 37, 193, 139, 197, 98, 193, 101, 50, 81, 193, 222, 110, 135, 193, 101, 50, 81, 193, 222, 110, 135, 193, 132, 253, 16, 193, 222, 110, 135, 193, 191, 229, 37, 193, 139, 197, 98, 193, 178, 253, 17, 193, 139, 197, 98, 193, 191, 229, 37, 193, 139, 197, 98, 65, 93, 34, 11, 192, 139, 197, 98, 65, 148, 194, 90, 192, 222, 110, 135, 65, 93, 34, 11, 192, 222, 110, 135, 65, 56, 195, 94, 192, 139, 197, 98, 65, 228, 57, 170, 64, 139, 197, 98, 65, 46, 145, 133, 64, 222, 110, 135, 65, 145, 156, 171, 64, 222, 110, 135, 65, 46, 145, 133, 64, 151, 203, 109, 193, 194, 64, 139, 191, 151, 203, 109, 193, 247, 181, 110, 65, 216, 235, 129, 193, 194, 64, 139, 191, 216, 235, 129, 193, 247, 181, 110, 65, 222, 110, 135, 193, 117, 187, 133, 193, 222, 110, 135, 193, 246, 122, 149, 193, 139, 197, 98, 193, 117, 187, 133, 193, 139, 197, 98, 193, 246, 122, 149, 193, 183, 219, 5, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 172, 111, 57, 192, 183, 219, 5, 65, 52, 26, 37, 193, 158, 55, 68, 65, 52, 26, 37, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 172, 111, 57, 192, 139, 197, 98, 65, 191, 229, 69, 65, 139, 197, 98, 65, 86, 177, 58, 65, 222, 110, 135, 65, 191, 229, 69, 65, 222, 110, 135, 65, 173, 98, 59, 65, 246, 122, 157, 65, 172, 111, 57, 192, 246, 122, 157, 65, 0, 0, 128, 63, 158, 55, 68, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 183, 219, 5, 65, 52, 26, 37, 193, 158, 55, 68, 65, 52, 26, 37, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 172, 111, 57, 192, 222, 110, 135, 193, 93, 34, 11, 192, 222, 110, 135, 193, 145, 150, 45, 192, 139, 197, 98, 193, 93, 34, 11, 192, 139, 197, 98, 193, 55, 151, 49, 192, 151, 203, 109, 193, 247, 181, 110, 65, 216, 235, 129, 193, 247, 181, 110, 65, 151, 203, 109, 193, 194, 64, 139, 191, 216, 235, 129, 193, 194, 64, 139, 191, 246, 122, 157, 193, 172, 111, 57, 192, 158, 55, 68, 193, 52, 26, 37, 193, 246, 122, 157, 193, 0, 0, 128, 63, 183, 219, 5, 193, 52, 26, 37, 193, 139, 197, 98, 65, 133, 72, 28, 193, 139, 197, 98, 65, 191, 229, 37, 193, 222, 110, 135, 65, 178, 72, 29, 193, 222, 110, 135, 65, 191, 229, 37, 193, 139, 197, 98, 65, 246, 122, 165, 65, 139, 197, 98, 65, 119, 187, 149, 65, 222, 110, 135, 65, 246, 122, 165, 65, 222, 110, 135, 65, 119, 187, 149, 65, 216, 235, 129, 65, 219, 128, 213, 63, 216, 235, 129, 65, 202, 157, 66, 65, 151, 203, 109, 65, 219, 128, 213, 63, 151, 203, 109, 65, 202, 157, 66, 65, 222, 110, 135, 193, 84, 151, 154, 64, 222, 110, 135, 193, 46, 145, 133, 64, 139, 197, 98, 193, 0, 250, 155, 64, 139, 197, 98, 193, 46, 145, 133, 64, 246, 122, 157, 65, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 191, 229, 53, 65, 101, 50, 81, 193, 14, 224, 34, 65, 101, 50, 81, 193, 167, 46, 117, 64, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 145, 150, 109, 192, 101, 50, 81, 193, 132, 253, 32, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 117, 187, 141, 193, 101, 50, 81, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 193, 52, 26, 37, 193, 246, 122, 157, 193, 101, 50, 81, 193, 246, 122, 157, 65, 52, 26, 37, 193, 119, 187, 141, 193, 101, 50, 81, 193, 191, 229, 53, 193, 101, 50, 81, 193, 100, 145, 35, 193, 101, 50, 81, 193, 1, 244, 119, 192, 101, 50, 81, 193, 93, 34, 75, 192, 101, 50, 81, 193, 93, 34, 75, 64, 101, 50, 81, 193, 55, 151, 113, 64, 101, 50, 81, 193, 178, 253, 33, 65, 101, 50, 81, 193, 191, 229, 53, 65, 101, 50, 81, 193, 117, 187, 141, 65, 101, 50, 81, 193, 246, 122, 157, 65, 101, 50, 81, 193, 151, 203, 109, 193, 219, 128, 213, 63, 151, 203, 109, 193, 202, 157, 66, 65, 216, 235, 129, 193, 219, 128, 213, 63, 216, 235, 129, 193, 202, 157, 66, 65, 139, 197, 98, 193, 246, 122, 165, 65, 151, 203, 109, 193, 158, 55, 52, 193, 139, 197, 98, 193, 246, 122, 149, 193, 222, 110, 135, 193, 246, 122, 149, 193, 151, 203, 109, 193, 158, 55, 84, 65, 222, 110, 135, 193, 246, 122, 165, 65, 216, 235, 129, 193, 158, 55, 52, 193, 151, 203, 109, 193, 110, 183, 235, 192, 216, 235, 129, 193, 110, 183, 235, 192, 216, 235, 129, 193, 158, 55, 84, 65, 151, 203, 109, 193, 183, 219, 21, 65, 216, 235, 129, 193, 183, 219, 21, 65, 222, 110, 135, 65, 246, 122, 165, 65, 216, 235, 129, 65, 158, 55, 52, 193, 222, 110, 135, 65, 246, 122, 149, 193, 139, 197, 98, 65, 246, 122, 149, 193, 216, 235, 129, 65, 158, 55, 84, 65, 139, 197, 98, 65, 246, 122, 165, 65, 151, 203, 109, 65, 158, 55, 52, 193, 216, 235, 129, 65, 110, 183, 235, 192, 151, 203, 109, 65, 110, 183, 235, 192, 151, 203, 109, 65, 158, 55, 84, 65, 216, 235, 129, 65, 183, 219, 21, 65, 151, 203, 109, 65, 183, 219, 21, 65), +"format": 4119, +"index_count": 444, +"index_data": PackedByteArray(202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 213, 0, 215, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 222, 0, 220, 0, 221, 0, 221, 0, 223, 0, 222, 0, 226, 0, 224, 0, 225, 0, 225, 0, 227, 0, 226, 0, 230, 0, 228, 0, 229, 0, 229, 0, 231, 0, 230, 0, 231, 0, 232, 0, 230, 0, 232, 0, 233, 0, 230, 0, 233, 0, 234, 0, 230, 0, 234, 0, 235, 0, 230, 0, 235, 0, 236, 0, 230, 0, 236, 0, 237, 0, 230, 0, 237, 0, 238, 0, 230, 0, 238, 0, 239, 0, 230, 0, 239, 0, 240, 0, 230, 0, 240, 0, 241, 0, 230, 0, 244, 0, 242, 0, 243, 0, 243, 0, 245, 0, 244, 0, 248, 0, 246, 0, 247, 0, 247, 0, 249, 0, 248, 0, 252, 0, 250, 0, 251, 0, 251, 0, 253, 0, 252, 0, 253, 0, 254, 0, 252, 0, 253, 0, 255, 0, 254, 0, 253, 0, 0, 1, 255, 0, 253, 0, 1, 1, 0, 1, 253, 0, 2, 1, 1, 1, 253, 0, 3, 1, 2, 1, 253, 0, 4, 1, 3, 1, 253, 0, 5, 1, 4, 1, 253, 0, 6, 1, 5, 1, 253, 0, 7, 1, 6, 1, 10, 1, 8, 1, 9, 1, 9, 1, 11, 1, 10, 1, 14, 1, 12, 1, 13, 1, 13, 1, 15, 1, 14, 1, 18, 1, 16, 1, 17, 1, 17, 1, 19, 1, 18, 1, 22, 1, 20, 1, 21, 1, 21, 1, 23, 1, 22, 1, 26, 1, 24, 1, 25, 1, 25, 1, 27, 1, 26, 1, 30, 1, 28, 1, 29, 1, 29, 1, 31, 1, 30, 1, 34, 1, 32, 1, 33, 1, 33, 1, 35, 1, 34, 1, 38, 1, 36, 1, 37, 1, 37, 1, 39, 1, 38, 1, 42, 1, 40, 1, 41, 1, 41, 1, 43, 1, 42, 1, 46, 1, 44, 1, 45, 1, 45, 1, 47, 1, 46, 1, 50, 1, 48, 1, 49, 1, 49, 1, 51, 1, 50, 1, 54, 1, 52, 1, 53, 1, 53, 1, 55, 1, 54, 1, 58, 1, 56, 1, 57, 1, 57, 1, 59, 1, 58, 1, 62, 1, 60, 1, 61, 1, 61, 1, 63, 1, 62, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1, 70, 1, 68, 1, 69, 1, 69, 1, 71, 1, 70, 1, 74, 1, 72, 1, 73, 1, 73, 1, 75, 1, 74, 1, 78, 1, 76, 1, 77, 1, 77, 1, 79, 1, 78, 1, 82, 1, 80, 1, 81, 1, 81, 1, 83, 1, 82, 1, 86, 1, 84, 1, 85, 1, 85, 1, 87, 1, 86, 1, 90, 1, 88, 1, 89, 1, 89, 1, 91, 1, 90, 1, 94, 1, 92, 1, 93, 1, 93, 1, 95, 1, 94, 1, 98, 1, 96, 1, 97, 1, 97, 1, 99, 1, 98, 1, 102, 1, 100, 1, 101, 1, 101, 1, 103, 1, 102, 1, 106, 1, 104, 1, 105, 1, 105, 1, 107, 1, 106, 1, 110, 1, 108, 1, 109, 1, 109, 1, 111, 1, 110, 1, 114, 1, 112, 1, 113, 1, 113, 1, 115, 1, 114, 1, 115, 1, 116, 1, 114, 1, 115, 1, 117, 1, 116, 1, 115, 1, 118, 1, 117, 1, 115, 1, 119, 1, 118, 1, 115, 1, 120, 1, 119, 1, 115, 1, 121, 1, 120, 1, 115, 1, 122, 1, 121, 1, 115, 1, 123, 1, 122, 1, 115, 1, 124, 1, 123, 1, 115, 1, 125, 1, 124, 1, 128, 1, 126, 1, 127, 1, 127, 1, 129, 1, 128, 1, 129, 1, 130, 1, 128, 1, 130, 1, 131, 1, 128, 1, 131, 1, 132, 1, 128, 1, 132, 1, 133, 1, 128, 1, 133, 1, 134, 1, 128, 1, 134, 1, 135, 1, 128, 1, 135, 1, 136, 1, 128, 1, 136, 1, 137, 1, 128, 1, 137, 1, 138, 1, 128, 1, 138, 1, 139, 1, 128, 1, 142, 1, 140, 1, 141, 1, 141, 1, 143, 1, 142, 1, 146, 1, 144, 1, 145, 1, 145, 1, 147, 1, 146, 1, 148, 1, 145, 1, 144, 1, 144, 1, 149, 1, 148, 1, 145, 1, 150, 1, 147, 1, 148, 1, 151, 1, 145, 1, 150, 1, 152, 1, 147, 1, 149, 1, 153, 1, 148, 1, 149, 1, 147, 1, 153, 1, 148, 1, 154, 1, 151, 1, 152, 1, 151, 1, 154, 1, 155, 1, 153, 1, 147, 1, 154, 1, 155, 1, 152, 1, 152, 1, 155, 1, 147, 1, 158, 1, 156, 1, 157, 1, 157, 1, 159, 1, 158, 1, 160, 1, 157, 1, 156, 1, 156, 1, 161, 1, 160, 1, 157, 1, 162, 1, 159, 1, 160, 1, 163, 1, 157, 1, 162, 1, 164, 1, 159, 1, 161, 1, 165, 1, 160, 1, 161, 1, 159, 1, 165, 1, 160, 1, 166, 1, 163, 1, 164, 1, 163, 1, 166, 1, 167, 1, 165, 1, 159, 1, 166, 1, 167, 1, 164, 1, 164, 1, 167, 1, 159, 1), +"material": SubResource("StandardMaterial3D_4mhsl"), +"name": "woodDark", +"primitive": 3, +"vertex_count": 424, +"vertex_data": PackedByteArray(246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 127, 0, 0, 0, 0, 0, 128, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 127, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 99, 102, 230, 190, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 163, 216, 147, 62, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 255, 127, 0, 0, 0, 0, 0, 128, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 102, 102, 230, 62, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 61, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 61, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 255, 127, 0, 0, 0, 0, 0, 128, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 255, 255, 4, 254, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 255, 4, 254, 0, 0, 0, 128, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 255, 255, 4, 254, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 255, 4, 254, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 255, 4, 254, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 255, 4, 254, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 255, 255, 4, 254, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 255, 255, 4, 254, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 163, 216, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 99, 102, 230, 190, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 255, 127, 255, 255, 0, 0, 0, 128, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 255, 127, 255, 255, 0, 0, 0, 128, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 255, 127, 0, 0, 0, 0, 0, 128, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 0, 0, 39, 253, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 0, 0, 39, 253, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 0, 0, 39, 253, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 0, 0, 39, 253, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 0, 0, 39, 253, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 0, 0, 39, 253, 0, 0, 0, 128, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 0, 0, 39, 253, 0, 0, 0, 128, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 0, 0, 39, 253, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 194, 245, 200, 62, 133, 27, 165, 189, 255, 255, 255, 255, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 255, 127, 0, 0, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 214, 130, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 214, 130, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 214, 130, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 214, 130, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 214, 130, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 214, 130, 255, 127, 0, 0, 0, 128, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 214, 130, 255, 127, 0, 0, 0, 128, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 214, 130, 255, 127, 0, 0, 0, 128, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 4, 126, 255, 127, 0, 0, 0, 128, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 4, 126, 255, 127, 0, 0, 0, 128, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 4, 126, 255, 127, 0, 0, 0, 128, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 4, 126, 255, 127, 0, 0, 0, 128, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 4, 126, 255, 127, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 4, 126, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 4, 126, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 4, 126, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 255, 127, 0, 0, 0, 0, 0, 128, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 255, 127, 0, 0, 0, 0, 0, 128, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 0, 0, 11, 129, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 107, 210, 131, 62, 0, 0, 11, 129, 0, 0, 0, 128, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 0, 0, 11, 129, 0, 0, 0, 128, 241, 81, 255, 190, 61, 10, 183, 62, 34, 19, 197, 61, 0, 0, 11, 129, 0, 0, 0, 128, 101, 255, 254, 190, 0, 0, 192, 62, 21, 243, 189, 189, 137, 1, 255, 127, 0, 0, 0, 128, 101, 255, 254, 190, 61, 10, 183, 62, 21, 243, 189, 189, 137, 1, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 35, 10, 130, 190, 137, 1, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 61, 10, 183, 62, 35, 10, 130, 190, 137, 1, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 137, 85, 236, 189, 255, 255, 136, 129, 0, 0, 0, 128, 103, 255, 254, 62, 0, 0, 192, 62, 191, 162, 141, 190, 255, 255, 136, 129, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 137, 85, 236, 189, 255, 255, 136, 129, 0, 0, 0, 128, 103, 255, 254, 62, 61, 10, 183, 62, 191, 162, 141, 190, 255, 255, 136, 129, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 192, 62, 107, 210, 131, 62, 255, 127, 255, 255, 0, 0, 0, 128, 241, 81, 255, 190, 0, 0, 192, 62, 34, 19, 197, 61, 255, 127, 255, 255, 0, 0, 0, 128, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 255, 127, 255, 255, 0, 0, 0, 128, 236, 81, 255, 62, 61, 10, 183, 62, 188, 218, 139, 62, 243, 254, 255, 127, 0, 0, 0, 128, 236, 81, 255, 62, 0, 0, 192, 62, 188, 218, 139, 62, 243, 254, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 61, 10, 183, 62, 106, 52, 229, 61, 243, 254, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 192, 62, 106, 52, 229, 61, 243, 254, 255, 127, 0, 0, 0, 128, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 255, 255, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 255, 255, 255, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 255, 255, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 255, 255, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 255, 255, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 255, 255, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 255, 255, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 255, 255, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 255, 255, 255, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 191, 255, 255, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 255, 191, 255, 255, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 207, 211, 229, 189, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 20, 233, 189, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 78, 179, 224, 61, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 221, 243, 226, 61, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 255, 255, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 191, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 50, 189, 138, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 86, 77, 139, 62, 255, 127, 255, 255, 255, 255, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 0, 0, 255, 127, 255, 127, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 127, 255, 255, 255, 255, 255, 191, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 255, 255, 255, 191, 52, 51, 211, 190, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 255, 63, 255, 255, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 255, 255, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 255, 63, 255, 255, 255, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 62, 61, 10, 183, 62, 39, 8, 140, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 254, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 95, 216, 140, 190, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 163, 216, 147, 190, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 62, 61, 10, 183, 62, 102, 102, 230, 62, 255, 127, 255, 255, 255, 255, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 255, 191, 52, 51, 211, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 255, 191, 174, 71, 193, 190, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 255, 127, 255, 255, 254, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 254, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 127, 255, 255, 255, 255, 255, 191, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 127, 255, 255, 255, 255, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 102, 102, 230, 62, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 62, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 142, 98, 132, 62, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 188, 72, 199, 61, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 61, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 133, 27, 165, 189, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 149, 28, 193, 189, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 88, 218, 130, 190, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 163, 216, 147, 190, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 99, 102, 230, 190, 0, 0, 255, 127, 255, 127, 255, 191, 246, 40, 220, 190, 61, 10, 183, 62, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 102, 102, 230, 62, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 62, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 177, 242, 132, 62, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 76, 137, 201, 61, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 61, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 133, 27, 165, 189, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 106, 93, 196, 189, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 145, 170, 131, 190, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 163, 216, 147, 190, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 99, 102, 230, 190, 255, 255, 255, 127, 255, 255, 255, 255, 235, 81, 184, 190, 61, 10, 183, 62, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 255, 191, 174, 71, 193, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 191, 255, 255, 0, 0, 255, 191, 52, 51, 211, 62, 228, 189, 202, 61, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 62, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 62, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 255, 191, 246, 40, 220, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 255, 191, 235, 81, 184, 190, 51, 51, 147, 62, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 190, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 190, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 66, 124, 159, 62, 255, 127, 0, 0, 0, 0, 255, 191, 52, 51, 211, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 255, 191, 174, 71, 193, 190, 51, 51, 147, 62, 153, 153, 89, 62, 255, 127, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_kb688") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_1w6qt"] +data = PackedVector3Array(0.498, 0.3575, -0.2766, 0.43, 0.3575, -0.2751, 0.43, 0.3575, -0.1138, 0.43, 0.3575, -0.1138, 0.5, 0.3575, -0.1154, 0.498, 0.3575, -0.2766, 0.5, 0.3925, 0.0806, -0.5, 0.3925, 0.0806, -0.5, 0.3925, -0.0806, -0.5, 0.3925, -0.0806, 0.5, 0.3925, -0.0806, 0.5, 0.3925, 0.0806, 0.5, 0.3575, 0.2888, 0.43, 0.3575, 0.2888, 0.43, 0.3575, 0.45, 0.43, 0.3575, 0.45, 0.5, 0.3575, 0.45, 0.5, 0.3575, 0.2888, -0.43, 0.3575, -0.0806, -0.5, 0.3575, -0.0806, -0.5, 0.3575, 0.0806, -0.5, 0.3575, 0.0806, -0.43, 0.3575, 0.0806, -0.43, 0.3575, -0.0806, 0.5, 0.3925, 0.45, -0.5, 0.3925, 0.45, -0.5, 0.3925, 0.2888, -0.5, 0.3925, 0.2888, 0.5, 0.3925, 0.2888, 0.5, 0.3925, 0.45, 0.5, 0.3925, -0.2888, 0.5, 0.3575, -0.2888, 0.43, 0.3575, -0.2888, 0.43, 0.3575, -0.2888, 0.36, 0.3575, -0.2888, 0.5, 0.3925, -0.2888, 0.36, 0.3575, -0.2888, -0.36, 0.3575, -0.2888, 0.5, 0.3925, -0.2888, -0.36, 0.3575, -0.2888, -0.43, 0.3575, -0.2888, 0.5, 0.3925, -0.2888, -0.43, 0.3575, -0.2888, -0.5, 0.3575, -0.2888, 0.5, 0.3925, -0.2888, -0.5, 0.3575, -0.2888, -0.5, 0.3925, -0.2888, 0.5, 0.3925, -0.2888, -0.5, 0.3925, 0.2888, -0.5, 0.3925, 0.45, -0.5, 0.3575, 0.45, -0.5, 0.3575, 0.45, -0.5, 0.3575, 0.2888, -0.5, 0.3925, 0.2888, 0.5, 0.3575, 0.2888, 0.5, 0.3575, 0.45, 0.5, 0.3925, 0.45, 0.5, 0.3925, 0.45, 0.5, 0.3925, 0.2888, 0.5, 0.3575, 0.2888, 0.5, 0.3925, 0.0806, 0.5, 0.3575, 0.0806, 0.43, 0.3575, 0.0806, 0.43, 0.3575, 0.0806, 0.36, 0.3575, 0.0806, 0.5, 0.3925, 0.0806, 0.36, 0.3575, 0.0806, -0.36, 0.3575, 0.0806, 0.5, 0.3925, 0.0806, -0.36, 0.3575, 0.0806, -0.43, 0.3575, 0.0806, 0.5, 0.3925, 0.0806, -0.43, 0.3575, 0.0806, -0.5, 0.3575, 0.0806, 0.5, 0.3925, 0.0806, -0.5, 0.3575, 0.0806, -0.5, 0.3925, 0.0806, 0.5, 0.3925, 0.0806, 0.5, 0.3925, -0.2888, -0.5, 0.3925, -0.2888, -0.5, 0.3925, -0.45, -0.5, 0.3925, -0.45, 0.5, 0.3925, -0.45, 0.5, 0.3925, -0.2888, 0.5, 0.3575, -0.0806, 0.43, 0.3575, -0.0806, 0.43, 0.3575, 0.0806, 0.43, 0.3575, 0.0806, 0.5, 0.3575, 0.0806, 0.5, 0.3575, -0.0806, -0.5, 0.3925, -0.45, -0.5, 0.3575, -0.45, -0.43, 0.3575, -0.45, -0.43, 0.3575, -0.45, -0.36, 0.3575, -0.45, -0.5, 0.3925, -0.45, -0.36, 0.3575, -0.45, 0.36, 0.3575, -0.45, -0.5, 0.3925, -0.45, 0.36, 0.3575, -0.45, 0.43, 0.3575, -0.45, -0.5, 0.3925, -0.45, 0.43, 0.3575, -0.45, 0.5, 0.3575, -0.45, -0.5, 0.3925, -0.45, 0.5, 0.3575, -0.45, 0.5, 0.3925, -0.45, -0.5, 0.3925, -0.45, 0.5, 0.3575, -0.45, 0.5, 0.3575, -0.2888, 0.5, 0.3925, -0.2888, 0.5, 0.3925, -0.2888, 0.5, 0.3925, -0.45, 0.5, 0.3575, -0.45, -0.5, 0.3925, 0.2888, -0.5, 0.3575, 0.2888, -0.43, 0.3575, 0.2888, -0.43, 0.3575, 0.2888, -0.36, 0.3575, 0.2888, -0.5, 0.3925, 0.2888, -0.36, 0.3575, 0.2888, 0.36, 0.3575, 0.2888, -0.5, 0.3925, 0.2888, 0.36, 0.3575, 0.2888, 0.43, 0.3575, 0.2888, -0.5, 0.3925, 0.2888, 0.43, 0.3575, 0.2888, 0.5, 0.3575, 0.2888, -0.5, 0.3925, 0.2888, 0.5, 0.3575, 0.2888, 0.5, 0.3925, 0.2888, -0.5, 0.3925, 0.2888, 0.36, 0.3575, -0.45, -0.36, 0.3575, -0.45, -0.36, 0.3575, -0.2888, -0.36, 0.3575, -0.2888, 0.36, 0.3575, -0.2888, 0.36, 0.3575, -0.45, -0.43, 0.3575, -0.45, -0.5, 0.3575, -0.45, -0.5, 0.3575, -0.2888, -0.5, 0.3575, -0.2888, -0.43, 0.3575, -0.2888, -0.43, 0.3575, -0.45, 0.5, 0.3575, 0.1119, 0.43, 0.3575, 0.1108, 0.43, 0.3575, 0.2721, 0.43, 0.3575, 0.2721, 0.4987, 0.3575, 0.2732, 0.5, 0.3575, 0.1119, 0.5, 0.3925, 0.45, 0.5, 0.3575, 0.45, 0.43, 0.3575, 0.45, 0.43, 0.3575, 0.45, 0.36, 0.3575, 0.45, 0.5, 0.3925, 0.45, 0.36, 0.3575, 0.45, -0.36, 0.3575, 0.45, 0.5, 0.3925, 0.45, -0.36, 0.3575, 0.45, -0.43, 0.3575, 0.45, 0.5, 0.3925, 0.45, -0.43, 0.3575, 0.45, -0.5, 0.3575, 0.45, 0.5, 0.3925, 0.45, -0.5, 0.3575, 0.45, -0.5, 0.3925, 0.45, 0.5, 0.3925, 0.45, -0.5, 0.3925, -0.0806, -0.5, 0.3925, 0.0806, -0.5, 0.3575, 0.0806, -0.5, 0.3575, 0.0806, -0.5, 0.3575, -0.0806, -0.5, 0.3925, -0.0806, 0.5, 0.3575, -0.0806, 0.5, 0.3575, 0.0806, 0.5, 0.3925, 0.0806, 0.5, 0.3925, 0.0806, 0.5, 0.3925, -0.0806, 0.5, 0.3575, -0.0806, 0.36, 0.3575, 0.2888, -0.36, 0.3575, 0.2888, -0.36, 0.3575, 0.45, -0.36, 0.3575, 0.45, 0.36, 0.3575, 0.45, 0.36, 0.3575, 0.2888, 0.36, 0.3575, 0.1097, -0.36, 0.3575, 0.0984, -0.36, 0.3575, 0.2597, -0.36, 0.3575, 0.2597, 0.36, 0.3575, 0.271, 0.36, 0.3575, 0.1097, -0.4987, 0.375, 0.0962, -0.4987, 0.3575, 0.0962, -0.43, 0.3575, 0.0973, -0.43, 0.3575, 0.0973, -0.36, 0.3575, 0.0984, -0.4987, 0.375, 0.0962, -0.36, 0.3575, 0.0984, 0.36, 0.3575, 0.1097, -0.4987, 0.375, 0.0962, 0.36, 0.3575, 0.1097, 0.43, 0.3575, 0.1108, -0.4987, 0.375, 0.0962, 0.43, 0.3575, 0.1108, 0.5, 0.3575, 0.1119, -0.4987, 0.375, 0.0962, 0.5, 0.3575, 0.1119, 0.5, 0.375, 0.1119, -0.4987, 0.375, 0.0962, -0.43, 0.3575, 0.2888, -0.5, 0.3575, 0.2888, -0.5, 0.3575, 0.45, -0.5, 0.3575, 0.45, -0.43, 0.3575, 0.45, -0.43, 0.3575, 0.2888, -0.5, 0.3925, -0.45, -0.5, 0.3925, -0.2888, -0.5, 0.3575, -0.2888, -0.5, 0.3575, -0.2888, -0.5, 0.3575, -0.45, -0.5, 0.3925, -0.45, 0.5, 0.3575, -0.45, 0.43, 0.3575, -0.45, 0.43, 0.3575, -0.2888, 0.43, 0.3575, -0.2888, 0.5, 0.3575, -0.2888, 0.5, 0.3575, -0.45, -0.498, 0.375, -0.0927, -0.5, 0.375, -0.254, 0.498, 0.375, -0.2766, 0.498, 0.375, -0.2766, 0.5, 0.375, -0.1154, -0.498, 0.375, -0.0927, -0.43, 0.3575, -0.2556, -0.5, 0.3575, -0.254, -0.498, 0.3575, -0.0927, -0.498, 0.3575, -0.0927, -0.43, 0.3575, -0.0943, -0.43, 0.3575, -0.2556, -0.5, 0.375, -0.254, -0.5, 0.3575, -0.254, -0.43, 0.3575, -0.2556, -0.43, 0.3575, -0.2556, -0.36, 0.3575, -0.2572, -0.5, 0.375, -0.254, -0.36, 0.3575, -0.2572, 0.36, 0.3575, -0.2735, -0.5, 0.375, -0.254, 0.36, 0.3575, -0.2735, 0.43, 0.3575, -0.2751, -0.5, 0.375, -0.254, 0.43, 0.3575, -0.2751, 0.498, 0.3575, -0.2766, -0.5, 0.375, -0.254, 0.498, 0.3575, -0.2766, 0.498, 0.375, -0.2766, -0.5, 0.375, -0.254, -0.5, 0.3925, -0.0806, -0.5, 0.3575, -0.0806, -0.43, 0.3575, -0.0806, -0.43, 0.3575, -0.0806, -0.36, 0.3575, -0.0806, -0.5, 0.3925, -0.0806, -0.36, 0.3575, -0.0806, 0.36, 0.3575, -0.0806, -0.5, 0.3925, -0.0806, 0.36, 0.3575, -0.0806, 0.43, 0.3575, -0.0806, -0.5, 0.3925, -0.0806, 0.43, 0.3575, -0.0806, 0.5, 0.3575, -0.0806, -0.5, 0.3925, -0.0806, 0.5, 0.3575, -0.0806, 0.5, 0.3925, -0.0806, -0.5, 0.3925, -0.0806, 0.36, 0.3575, -0.0806, -0.36, 0.3575, -0.0806, -0.36, 0.3575, 0.0806, -0.36, 0.3575, 0.0806, 0.36, 0.3575, 0.0806, 0.36, 0.3575, -0.0806, 0.36, 0.3575, -0.2735, -0.36, 0.3575, -0.2572, -0.36, 0.3575, -0.0959, -0.36, 0.3575, -0.0959, 0.36, 0.3575, -0.1122, 0.36, 0.3575, -0.2735, 0.5, 0.375, -0.1154, 0.5, 0.3575, -0.1154, 0.43, 0.3575, -0.1138, 0.43, 0.3575, -0.1138, 0.36, 0.3575, -0.1122, 0.5, 0.375, -0.1154, 0.36, 0.3575, -0.1122, -0.36, 0.3575, -0.0959, 0.5, 0.375, -0.1154, -0.36, 0.3575, -0.0959, -0.43, 0.3575, -0.0943, 0.5, 0.375, -0.1154, -0.43, 0.3575, -0.0943, -0.498, 0.3575, -0.0927, 0.5, 0.375, -0.1154, -0.498, 0.3575, -0.0927, -0.498, 0.375, -0.0927, 0.5, 0.375, -0.1154, 0.4987, 0.375, 0.2732, 0.4987, 0.3575, 0.2732, 0.43, 0.3575, 0.2721, 0.43, 0.3575, 0.2721, 0.36, 0.3575, 0.271, 0.4987, 0.375, 0.2732, 0.36, 0.3575, 0.271, -0.36, 0.3575, 0.2597, 0.4987, 0.375, 0.2732, -0.36, 0.3575, 0.2597, -0.43, 0.3575, 0.2586, 0.4987, 0.375, 0.2732, -0.43, 0.3575, 0.2586, -0.5, 0.3575, 0.2575, 0.4987, 0.375, 0.2732, -0.5, 0.3575, 0.2575, -0.5, 0.375, 0.2575, 0.4987, 0.375, 0.2732, -0.4987, 0.3575, 0.0962, -0.5, 0.3575, 0.2575, -0.43, 0.3575, 0.2586, -0.43, 0.3575, 0.2586, -0.43, 0.3575, 0.0973, -0.4987, 0.3575, 0.0962, -0.4987, 0.375, 0.0962, -0.5, 0.375, 0.2575, -0.5, 0.3575, 0.2575, -0.5, 0.3575, 0.2575, -0.4987, 0.3575, 0.0962, -0.4987, 0.375, 0.0962, -0.5, 0.375, -0.254, -0.498, 0.375, -0.0927, -0.498, 0.3575, -0.0927, -0.498, 0.3575, -0.0927, -0.5, 0.3575, -0.254, -0.5, 0.375, -0.254, 0.5, 0.3575, -0.1154, 0.5, 0.375, -0.1154, 0.498, 0.375, -0.2766, 0.498, 0.375, -0.2766, 0.498, 0.3575, -0.2766, 0.5, 0.3575, -0.1154, 0.4987, 0.375, 0.2732, -0.5, 0.375, 0.2575, -0.4987, 0.375, 0.0962, -0.4987, 0.375, 0.0962, 0.5, 0.375, 0.1119, 0.4987, 0.375, 0.2732, 0.5, 0.3575, 0.1119, 0.4987, 0.3575, 0.2732, 0.4987, 0.375, 0.2732, 0.4987, 0.375, 0.2732, 0.5, 0.375, 0.1119, 0.5, 0.3575, 0.1119, 0.4125, 0, 0.5, 0.4125, 0.099, 0.5, 0.4125, 0.2875, 0.3115, 0.4125, 0.2875, 0.3115, 0.4125, 0.2875, 0.2125, 0.4125, 0, 0.5, -0.3775, 0.099, 0.5, -0.4125, 0.099, 0.5, -0.4125, 0.2875, 0.3115, -0.4125, 0.2875, 0.3115, -0.3775, 0.2875, 0.3115, -0.3775, 0.099, 0.5, 0.43, 0.3575, -0.45, 0.36, 0.3575, -0.45, 0.36, 0.3575, -0.5, 0.36, 0.3575, -0.5, 0.43, 0.3575, -0.5, 0.43, 0.3575, -0.45, 0.4125, 0.2875, -0.2125, 0.4125, 0, -0.5, 0.3775, 0, -0.5, 0.3775, 0, -0.5, 0.3775, 0.2875, -0.2125, 0.4125, 0.2875, -0.2125, 0.4125, 0.099, 0.5, 0.3775, 0.099, 0.5, 0.3775, 0.2875, 0.3115, 0.3775, 0.2875, 0.3115, 0.4125, 0.2875, 0.3115, 0.4125, 0.099, 0.5, -0.4125, 0.099, -0.5, -0.4125, 0, -0.5, -0.3775, 0, -0.5, -0.3775, 0, -0.5, -0.3775, 0.099, -0.5, -0.4125, 0.099, -0.5, -0.3775, 0.2875, 0.2125, -0.4125, 0.2875, 0.2125, -0.4125, 0, 0.5, -0.4125, 0, 0.5, -0.3775, 0, 0.5, -0.3775, 0.2875, 0.2125, 0.43, 0.2875, -0.5, 0.43, 0.2875, 0.5, 0.43, 0.3575, 0.5, 0.43, 0.3575, 0.5, 0.43, 0.3575, 0.45, 0.43, 0.2875, -0.5, 0.43, 0.3575, 0.45, 0.43, 0.3575, 0.2888, 0.43, 0.2875, -0.5, 0.43, 0.3575, 0.2888, 0.43, 0.3575, 0.2721, 0.43, 0.2875, -0.5, 0.43, 0.3575, 0.2721, 0.43, 0.3575, 0.1108, 0.43, 0.2875, -0.5, 0.43, 0.3575, 0.1108, 0.43, 0.3575, 0.0806, 0.43, 0.2875, -0.5, 0.43, 0.3575, 0.0806, 0.43, 0.3575, -0.0806, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.0806, 0.43, 0.3575, -0.1138, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.1138, 0.43, 0.3575, -0.2751, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.2751, 0.43, 0.3575, -0.2888, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.2888, 0.43, 0.3575, -0.45, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.45, 0.43, 0.3575, -0.5, 0.43, 0.2875, -0.5, -0.4125, 0.2875, 0.3115, -0.4125, 0.099, 0.5, -0.4125, 0, 0.5, -0.4125, 0, 0.5, -0.4125, 0.2875, 0.2125, -0.4125, 0.2875, 0.3115, -0.36, 0.3575, 0.5, -0.36, 0.2875, 0.5, -0.43, 0.2875, 0.5, -0.43, 0.2875, 0.5, -0.43, 0.3575, 0.5, -0.36, 0.3575, 0.5, 0.36, 0.3575, 0.45, 0.36, 0.3575, 0.5, 0.36, 0.2875, 0.5, 0.36, 0.2875, 0.5, 0.36, 0.2875, -0.5, 0.36, 0.3575, 0.45, 0.36, 0.2875, -0.5, 0.36, 0.3575, 0.2888, 0.36, 0.3575, 0.45, 0.36, 0.2875, -0.5, 0.36, 0.3575, 0.271, 0.36, 0.3575, 0.2888, 0.36, 0.2875, -0.5, 0.36, 0.3575, 0.1097, 0.36, 0.3575, 0.271, 0.36, 0.2875, -0.5, 0.36, 0.3575, 0.0806, 0.36, 0.3575, 0.1097, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.0806, 0.36, 0.3575, 0.0806, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.1122, 0.36, 0.3575, -0.0806, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.2735, 0.36, 0.3575, -0.1122, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.2888, 0.36, 0.3575, -0.2735, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.45, 0.36, 0.3575, -0.2888, 0.36, 0.2875, -0.5, 0.36, 0.3575, -0.5, 0.36, 0.3575, -0.45, -0.3775, 0.099, 0.5, -0.3775, 0, 0.5, -0.4125, 0, 0.5, -0.4125, 0, 0.5, -0.4125, 0.099, 0.5, -0.3775, 0.099, 0.5, 0.3775, 0.2875, -0.3115, 0.3775, 0.2875, -0.2125, 0.3775, 0, -0.5, 0.3775, 0, -0.5, 0.3775, 0.099, -0.5, 0.3775, 0.2875, -0.3115, -0.36, 0.3575, 0.2888, -0.43, 0.3575, 0.2888, -0.43, 0.3575, 0.2586, -0.43, 0.3575, 0.2586, -0.36, 0.3575, 0.2597, -0.36, 0.3575, 0.2888, -0.36, 0.3575, 0.5, -0.43, 0.3575, 0.5, -0.43, 0.3575, 0.45, -0.43, 0.3575, 0.45, -0.36, 0.3575, 0.45, -0.36, 0.3575, 0.5, -0.43, 0.3575, -0.5, -0.43, 0.2875, -0.5, -0.36, 0.2875, -0.5, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.5, -0.43, 0.3575, -0.5, 0.43, 0.3575, 0.5, 0.43, 0.2875, 0.5, 0.36, 0.2875, 0.5, 0.36, 0.2875, 0.5, 0.36, 0.3575, 0.5, 0.43, 0.3575, 0.5, 0.3775, 0.099, -0.5, 0.3775, 0, -0.5, 0.4125, 0, -0.5, 0.4125, 0, -0.5, 0.4125, 0.099, -0.5, 0.3775, 0.099, -0.5, 0.4125, 0.099, 0.5, 0.4125, 0, 0.5, 0.3775, 0, 0.5, 0.3775, 0, 0.5, 0.3775, 0.099, 0.5, 0.4125, 0.099, 0.5, 0.36, 0.3575, -0.5, 0.36, 0.2875, -0.5, 0.43, 0.2875, -0.5, 0.43, 0.2875, -0.5, 0.43, 0.3575, -0.5, 0.36, 0.3575, -0.5, -0.36, 0.3575, -0.2572, -0.43, 0.3575, -0.2556, -0.43, 0.3575, -0.2888, -0.43, 0.3575, -0.2888, -0.36, 0.3575, -0.2888, -0.36, 0.3575, -0.2572, 0.43, 0.3575, -0.0806, 0.36, 0.3575, -0.0806, 0.36, 0.3575, -0.1122, 0.36, 0.3575, -0.1122, 0.43, 0.3575, -0.1138, 0.43, 0.3575, -0.0806, 0.43, 0.3575, 0.1108, 0.36, 0.3575, 0.1097, 0.36, 0.3575, 0.0806, 0.36, 0.3575, 0.0806, 0.43, 0.3575, 0.0806, 0.43, 0.3575, 0.1108, 0.4125, 0.2875, 0.2125, 0.3775, 0.2875, 0.2125, 0.3775, 0, 0.5, 0.3775, 0, 0.5, 0.4125, 0, 0.5, 0.4125, 0.2875, 0.2125, -0.36, 0.3575, -0.45, -0.43, 0.3575, -0.45, -0.43, 0.3575, -0.5, -0.43, 0.3575, -0.5, -0.36, 0.3575, -0.5, -0.36, 0.3575, -0.45, -0.4125, 0.2875, -0.3115, -0.4125, 0.2875, -0.2125, -0.4125, 0, -0.5, -0.4125, 0, -0.5, -0.4125, 0.099, -0.5, -0.4125, 0.2875, -0.3115, 0.4125, 0, -0.5, 0.4125, 0.2875, -0.2125, 0.4125, 0.2875, -0.3115, 0.4125, 0.2875, -0.3115, 0.4125, 0.099, -0.5, 0.4125, 0, -0.5, 0.43, 0.3575, 0.2888, 0.36, 0.3575, 0.2888, 0.36, 0.3575, 0.271, 0.36, 0.3575, 0.271, 0.43, 0.3575, 0.2721, 0.43, 0.3575, 0.2888, 0.3775, 0.2875, 0.3115, 0.3775, 0.099, 0.5, 0.3775, 0, 0.5, 0.3775, 0, 0.5, 0.3775, 0.2875, 0.2125, 0.3775, 0.2875, 0.3115, -0.3775, 0, -0.5, -0.3775, 0.2875, -0.2125, -0.3775, 0.2875, -0.3115, -0.3775, 0.2875, -0.3115, -0.3775, 0.099, -0.5, -0.3775, 0, -0.5, -0.36, 0.3575, -0.0806, -0.43, 0.3575, -0.0806, -0.43, 0.3575, -0.0943, -0.43, 0.3575, -0.0943, -0.36, 0.3575, -0.0959, -0.36, 0.3575, -0.0806, -0.3775, 0.2875, -0.2125, -0.3775, 0, -0.5, -0.4125, 0, -0.5, -0.4125, 0, -0.5, -0.4125, 0.2875, -0.2125, -0.3775, 0.2875, -0.2125, -0.3775, 0, 0.5, -0.3775, 0.099, 0.5, -0.3775, 0.2875, 0.3115, -0.3775, 0.2875, 0.3115, -0.3775, 0.2875, 0.2125, -0.3775, 0, 0.5, 0.43, 0.3575, -0.2751, 0.36, 0.3575, -0.2735, 0.36, 0.3575, -0.2888, 0.36, 0.3575, -0.2888, 0.43, 0.3575, -0.2888, 0.43, 0.3575, -0.2751, 0.43, 0.3575, 0.5, 0.36, 0.3575, 0.5, 0.36, 0.3575, 0.45, 0.36, 0.3575, 0.45, 0.43, 0.3575, 0.45, 0.43, 0.3575, 0.5, -0.3775, 0.2875, -0.3115, -0.4125, 0.2875, -0.3115, -0.4125, 0.099, -0.5, -0.4125, 0.099, -0.5, -0.3775, 0.099, -0.5, -0.3775, 0.2875, -0.3115, -0.36, 0.3575, 0.0984, -0.43, 0.3575, 0.0973, -0.43, 0.3575, 0.0806, -0.43, 0.3575, 0.0806, -0.36, 0.3575, 0.0806, -0.36, 0.3575, 0.0984, -0.43, 0.3575, 0.45, -0.43, 0.3575, 0.5, -0.43, 0.2875, 0.5, -0.43, 0.2875, 0.5, -0.43, 0.2875, -0.5, -0.43, 0.3575, 0.45, -0.43, 0.2875, -0.5, -0.43, 0.3575, 0.2888, -0.43, 0.3575, 0.45, -0.43, 0.2875, -0.5, -0.43, 0.3575, 0.2586, -0.43, 0.3575, 0.2888, -0.43, 0.2875, -0.5, -0.43, 0.3575, 0.0973, -0.43, 0.3575, 0.2586, -0.43, 0.2875, -0.5, -0.43, 0.3575, 0.0806, -0.43, 0.3575, 0.0973, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.0806, -0.43, 0.3575, 0.0806, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.0943, -0.43, 0.3575, -0.0806, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.2556, -0.43, 0.3575, -0.0943, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.2888, -0.43, 0.3575, -0.2556, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.45, -0.43, 0.3575, -0.2888, -0.43, 0.2875, -0.5, -0.43, 0.3575, -0.5, -0.43, 0.3575, -0.45, -0.36, 0.2875, -0.5, -0.36, 0.2875, 0.5, -0.36, 0.3575, 0.5, -0.36, 0.3575, 0.5, -0.36, 0.3575, 0.45, -0.36, 0.2875, -0.5, -0.36, 0.3575, 0.45, -0.36, 0.3575, 0.2888, -0.36, 0.2875, -0.5, -0.36, 0.3575, 0.2888, -0.36, 0.3575, 0.2597, -0.36, 0.2875, -0.5, -0.36, 0.3575, 0.2597, -0.36, 0.3575, 0.0984, -0.36, 0.2875, -0.5, -0.36, 0.3575, 0.0984, -0.36, 0.3575, 0.0806, -0.36, 0.2875, -0.5, -0.36, 0.3575, 0.0806, -0.36, 0.3575, -0.0806, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.0806, -0.36, 0.3575, -0.0959, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.0959, -0.36, 0.3575, -0.2572, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.2572, -0.36, 0.3575, -0.2888, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.2888, -0.36, 0.3575, -0.45, -0.36, 0.2875, -0.5, -0.36, 0.3575, -0.45, -0.36, 0.3575, -0.5, -0.36, 0.2875, -0.5, 0.4125, 0.2875, -0.3115, 0.3775, 0.2875, -0.3115, 0.3775, 0.099, -0.5, 0.3775, 0.099, -0.5, 0.4125, 0.099, -0.5, 0.4125, 0.2875, -0.3115, 0.36, 0.2875, -0.5, 0.36, 0.2875, 0.5, 0.3775, 0.2875, -0.3115, 0.3775, 0.2875, -0.3115, 0.43, 0.2875, -0.5, 0.36, 0.2875, -0.5, 0.3775, 0.2875, 0.3115, 0.3775, 0.2875, -0.3115, 0.36, 0.2875, 0.5, 0.36, 0.2875, 0.5, 0.43, 0.2875, 0.5, 0.3775, 0.2875, 0.3115, 0.3775, 0.2875, -0.3115, 0.4125, 0.2875, -0.3115, 0.43, 0.2875, -0.5, 0.3775, 0.2875, 0.3115, 0.3775, 0.2875, -0.2125, 0.3775, 0.2875, -0.3115, 0.4125, 0.2875, -0.3115, 0.4125, 0.2875, -0.2125, 0.43, 0.2875, -0.5, 0.43, 0.2875, 0.5, 0.4125, 0.2875, 0.3115, 0.3775, 0.2875, 0.3115, 0.43, 0.2875, 0.5, 0.43, 0.2875, -0.5, 0.4125, 0.2875, 0.3115, 0.3775, 0.2875, 0.3115, 0.3775, 0.2875, 0.2125, 0.3775, 0.2875, -0.2125, 0.4125, 0.2875, -0.2125, 0.3775, 0.2875, -0.2125, 0.3775, 0.2875, 0.2125, 0.4125, 0.2875, 0.2125, 0.4125, 0.2875, 0.3115, 0.43, 0.2875, -0.5, 0.3775, 0.2875, 0.2125, 0.4125, 0.2875, 0.2125, 0.4125, 0.2875, -0.2125, 0.4125, 0.2875, -0.2125, 0.4125, 0.2875, 0.2125, 0.43, 0.2875, -0.5, -0.43, 0.2875, -0.5, -0.43, 0.2875, 0.5, -0.4125, 0.2875, -0.3115, -0.4125, 0.2875, -0.3115, -0.36, 0.2875, -0.5, -0.43, 0.2875, -0.5, -0.4125, 0.2875, 0.3115, -0.4125, 0.2875, -0.3115, -0.43, 0.2875, 0.5, -0.43, 0.2875, 0.5, -0.36, 0.2875, 0.5, -0.4125, 0.2875, 0.3115, -0.4125, 0.2875, -0.3115, -0.3775, 0.2875, -0.3115, -0.36, 0.2875, -0.5, -0.4125, 0.2875, 0.3115, -0.4125, 0.2875, -0.2125, -0.4125, 0.2875, -0.3115, -0.3775, 0.2875, -0.3115, -0.3775, 0.2875, -0.2125, -0.36, 0.2875, -0.5, -0.36, 0.2875, 0.5, -0.3775, 0.2875, 0.3115, -0.4125, 0.2875, 0.3115, -0.36, 0.2875, 0.5, -0.36, 0.2875, -0.5, -0.3775, 0.2875, 0.3115, -0.4125, 0.2875, 0.3115, -0.4125, 0.2875, 0.2125, -0.4125, 0.2875, -0.2125, -0.3775, 0.2875, -0.2125, -0.4125, 0.2875, -0.2125, -0.4125, 0.2875, 0.2125, -0.3775, 0.2875, 0.2125, -0.3775, 0.2875, 0.3115, -0.36, 0.2875, -0.5, -0.4125, 0.2875, 0.2125, -0.3775, 0.2875, 0.2125, -0.3775, 0.2875, -0.2125, -0.3775, 0.2875, -0.2125, -0.3775, 0.2875, 0.2125, -0.36, 0.2875, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5pas3"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0fvkb"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_wup6e"] +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 1, 0, 0, 0, 4, 0, 4, 0, 5, 0, 1, 0, 6, 0, 5, 0, 4, 0, 4, 0, 7, 0, 6, 0, 2, 0, 7, 0, 4, 0, 4, 0, 0, 0, 2, 0, 6, 0, 7, 0, 2, 0, 2, 0, 3, 0, 6, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 105, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190) +}, { +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 612, +"index_data": PackedByteArray(5, 0, 8, 0, 9, 0, 8, 0, 5, 0, 9, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 11, 0, 13, 0, 12, 0, 3, 0, 12, 0, 13, 0, 3, 0, 6, 0, 14, 0, 15, 0, 14, 0, 6, 0, 15, 0, 5, 0, 6, 0, 3, 0, 3, 0, 1, 0, 5, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 20, 0, 21, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 23, 0, 21, 0, 22, 0, 24, 0, 23, 0, 24, 0, 25, 0, 23, 0, 24, 0, 26, 0, 25, 0, 26, 0, 11, 0, 25, 0, 26, 0, 27, 0, 11, 0, 27, 0, 1, 0, 11, 0, 27, 0, 28, 0, 1, 0, 28, 0, 29, 0, 1, 0, 29, 0, 30, 0, 1, 0, 30, 0, 31, 0, 1, 0, 31, 0, 32, 0, 1, 0, 5, 0, 1, 0, 32, 0, 5, 0, 32, 0, 33, 0, 5, 0, 33, 0, 34, 0, 5, 0, 34, 0, 35, 0, 5, 0, 35, 0, 36, 0, 5, 0, 36, 0, 37, 0, 37, 0, 8, 0, 5, 0, 16, 0, 18, 0, 17, 0, 19, 0, 17, 0, 18, 0, 20, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 20, 0, 21, 0, 23, 0, 22, 0, 21, 0, 24, 0, 22, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 24, 0, 25, 0, 11, 0, 26, 0, 25, 0, 27, 0, 26, 0, 11, 0, 1, 0, 27, 0, 11, 0, 28, 0, 27, 0, 1, 0, 29, 0, 28, 0, 1, 0, 30, 0, 29, 0, 1, 0, 31, 0, 30, 0, 1, 0, 32, 0, 31, 0, 1, 0, 1, 0, 5, 0, 32, 0, 32, 0, 5, 0, 33, 0, 33, 0, 5, 0, 34, 0, 34, 0, 5, 0, 35, 0, 35, 0, 5, 0, 36, 0, 36, 0, 5, 0, 37, 0, 8, 0, 37, 0, 5, 0, 40, 0, 38, 0, 39, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 42, 0, 43, 0, 41, 0, 42, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 44, 0, 46, 0, 45, 0, 46, 0, 47, 0, 45, 0, 46, 0, 48, 0, 47, 0, 48, 0, 15, 0, 47, 0, 48, 0, 49, 0, 15, 0, 49, 0, 6, 0, 15, 0, 49, 0, 50, 0, 6, 0, 50, 0, 51, 0, 6, 0, 51, 0, 52, 0, 6, 0, 52, 0, 53, 0, 6, 0, 53, 0, 54, 0, 6, 0, 3, 0, 6, 0, 54, 0, 3, 0, 54, 0, 55, 0, 3, 0, 55, 0, 56, 0, 3, 0, 56, 0, 57, 0, 3, 0, 57, 0, 58, 0, 3, 0, 58, 0, 59, 0, 59, 0, 13, 0, 3, 0, 38, 0, 40, 0, 39, 0, 41, 0, 39, 0, 40, 0, 42, 0, 39, 0, 41, 0, 43, 0, 42, 0, 41, 0, 44, 0, 42, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 44, 0, 45, 0, 47, 0, 46, 0, 45, 0, 48, 0, 46, 0, 47, 0, 15, 0, 48, 0, 47, 0, 49, 0, 48, 0, 15, 0, 6, 0, 49, 0, 15, 0, 50, 0, 49, 0, 6, 0, 51, 0, 50, 0, 6, 0, 52, 0, 51, 0, 6, 0, 53, 0, 52, 0, 6, 0, 54, 0, 53, 0, 6, 0, 6, 0, 3, 0, 54, 0, 54, 0, 3, 0, 55, 0, 55, 0, 3, 0, 56, 0, 56, 0, 3, 0, 57, 0, 57, 0, 3, 0, 58, 0, 58, 0, 3, 0, 59, 0, 13, 0, 59, 0, 3, 0, 5, 0, 9, 0, 60, 0, 60, 0, 6, 0, 5, 0, 60, 0, 61, 0, 6, 0, 61, 0, 62, 0, 6, 0, 62, 0, 63, 0, 6, 0, 63, 0, 64, 0, 6, 0, 64, 0, 65, 0, 6, 0, 65, 0, 66, 0, 6, 0, 66, 0, 67, 0, 6, 0, 67, 0, 68, 0, 6, 0, 68, 0, 69, 0, 6, 0, 69, 0, 70, 0, 6, 0, 69, 0, 71, 0, 70, 0, 71, 0, 72, 0, 70, 0, 70, 0, 73, 0, 6, 0, 73, 0, 74, 0, 6, 0, 74, 0, 75, 0, 6, 0, 75, 0, 76, 0, 6, 0, 76, 0, 77, 0, 6, 0, 77, 0, 78, 0, 6, 0, 78, 0, 79, 0, 6, 0, 79, 0, 80, 0, 6, 0, 80, 0, 81, 0, 6, 0, 81, 0, 82, 0, 6, 0, 82, 0, 14, 0, 6, 0, 9, 0, 5, 0, 60, 0, 6, 0, 60, 0, 5, 0, 61, 0, 60, 0, 6, 0, 62, 0, 61, 0, 6, 0, 63, 0, 62, 0, 6, 0, 64, 0, 63, 0, 6, 0, 65, 0, 64, 0, 6, 0, 66, 0, 65, 0, 6, 0, 67, 0, 66, 0, 6, 0, 68, 0, 67, 0, 6, 0, 69, 0, 68, 0, 6, 0, 70, 0, 69, 0, 6, 0, 71, 0, 69, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 70, 0, 6, 0, 74, 0, 73, 0, 6, 0, 75, 0, 74, 0, 6, 0, 76, 0, 75, 0, 6, 0, 77, 0, 76, 0, 6, 0, 78, 0, 77, 0, 6, 0, 79, 0, 78, 0, 6, 0, 80, 0, 79, 0, 6, 0, 81, 0, 80, 0, 6, 0, 82, 0, 81, 0, 6, 0, 14, 0, 82, 0, 6, 0, 83, 0, 10, 0, 1, 0, 1, 0, 84, 0, 83, 0, 1, 0, 85, 0, 84, 0, 1, 0, 86, 0, 85, 0, 1, 0, 3, 0, 86, 0, 3, 0, 87, 0, 86, 0, 3, 0, 88, 0, 87, 0, 3, 0, 89, 0, 88, 0, 3, 0, 90, 0, 89, 0, 3, 0, 91, 0, 90, 0, 3, 0, 92, 0, 91, 0, 3, 0, 93, 0, 92, 0, 3, 0, 94, 0, 93, 0, 3, 0, 95, 0, 94, 0, 3, 0, 96, 0, 95, 0, 3, 0, 97, 0, 96, 0, 3, 0, 98, 0, 97, 0, 3, 0, 99, 0, 98, 0, 3, 0, 100, 0, 99, 0, 3, 0, 101, 0, 100, 0, 3, 0, 102, 0, 101, 0, 3, 0, 103, 0, 102, 0, 3, 0, 104, 0, 103, 0, 3, 0, 12, 0, 104, 0, 10, 0, 83, 0, 1, 0, 84, 0, 1, 0, 83, 0, 85, 0, 1, 0, 84, 0, 86, 0, 1, 0, 85, 0, 3, 0, 1, 0, 86, 0, 87, 0, 3, 0, 86, 0, 88, 0, 3, 0, 87, 0, 89, 0, 3, 0, 88, 0, 90, 0, 3, 0, 89, 0, 91, 0, 3, 0, 90, 0, 92, 0, 3, 0, 91, 0, 93, 0, 3, 0, 92, 0, 94, 0, 3, 0, 93, 0, 95, 0, 3, 0, 94, 0, 96, 0, 3, 0, 95, 0, 97, 0, 3, 0, 96, 0, 98, 0, 3, 0, 97, 0, 99, 0, 3, 0, 98, 0, 100, 0, 3, 0, 99, 0, 101, 0, 3, 0, 100, 0, 102, 0, 3, 0, 101, 0, 103, 0, 3, 0, 102, 0, 104, 0, 3, 0, 103, 0, 12, 0, 3, 0, 104, 0), +"lods": [0.00480329, PackedByteArray(5, 0, 8, 0, 9, 0, 8, 0, 5, 0, 9, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 11, 0, 13, 0, 12, 0, 3, 0, 12, 0, 13, 0, 3, 0, 6, 0, 14, 0, 15, 0, 14, 0, 6, 0, 15, 0, 5, 0, 6, 0, 3, 0, 3, 0, 1, 0, 5, 0, 20, 0, 21, 0, 18, 0, 20, 0, 24, 0, 21, 0, 24, 0, 25, 0, 21, 0, 24, 0, 27, 0, 25, 0, 27, 0, 11, 0, 25, 0, 27, 0, 1, 0, 11, 0, 27, 0, 28, 0, 1, 0, 28, 0, 30, 0, 1, 0, 30, 0, 32, 0, 1, 0, 5, 0, 1, 0, 32, 0, 5, 0, 32, 0, 35, 0, 5, 0, 35, 0, 37, 0, 37, 0, 8, 0, 5, 0, 21, 0, 20, 0, 18, 0, 24, 0, 20, 0, 21, 0, 25, 0, 24, 0, 21, 0, 27, 0, 24, 0, 25, 0, 11, 0, 27, 0, 25, 0, 1, 0, 27, 0, 11, 0, 28, 0, 27, 0, 1, 0, 30, 0, 28, 0, 1, 0, 32, 0, 30, 0, 1, 0, 1, 0, 5, 0, 32, 0, 32, 0, 5, 0, 35, 0, 35, 0, 5, 0, 37, 0, 8, 0, 37, 0, 5, 0, 42, 0, 43, 0, 40, 0, 42, 0, 46, 0, 43, 0, 46, 0, 47, 0, 43, 0, 46, 0, 49, 0, 47, 0, 49, 0, 15, 0, 47, 0, 49, 0, 6, 0, 15, 0, 49, 0, 50, 0, 6, 0, 50, 0, 52, 0, 6, 0, 52, 0, 54, 0, 6, 0, 3, 0, 6, 0, 54, 0, 3, 0, 54, 0, 57, 0, 3, 0, 57, 0, 59, 0, 59, 0, 13, 0, 3, 0, 43, 0, 42, 0, 40, 0, 46, 0, 42, 0, 43, 0, 47, 0, 46, 0, 43, 0, 49, 0, 46, 0, 47, 0, 15, 0, 49, 0, 47, 0, 6, 0, 49, 0, 15, 0, 50, 0, 49, 0, 6, 0, 52, 0, 50, 0, 6, 0, 54, 0, 52, 0, 6, 0, 6, 0, 3, 0, 54, 0, 54, 0, 3, 0, 57, 0, 57, 0, 3, 0, 59, 0, 13, 0, 59, 0, 3, 0, 5, 0, 9, 0, 60, 0, 60, 0, 6, 0, 5, 0, 60, 0, 62, 0, 6, 0, 62, 0, 64, 0, 6, 0, 64, 0, 65, 0, 6, 0, 65, 0, 66, 0, 6, 0, 66, 0, 67, 0, 6, 0, 67, 0, 69, 0, 6, 0, 69, 0, 70, 0, 6, 0, 70, 0, 74, 0, 6, 0, 74, 0, 76, 0, 6, 0, 76, 0, 77, 0, 6, 0, 77, 0, 78, 0, 6, 0, 78, 0, 79, 0, 6, 0, 79, 0, 80, 0, 6, 0, 80, 0, 81, 0, 6, 0, 81, 0, 82, 0, 6, 0, 82, 0, 14, 0, 6, 0, 9, 0, 5, 0, 60, 0, 6, 0, 60, 0, 5, 0, 62, 0, 60, 0, 6, 0, 64, 0, 62, 0, 6, 0, 65, 0, 64, 0, 6, 0, 66, 0, 65, 0, 6, 0, 67, 0, 66, 0, 6, 0, 69, 0, 67, 0, 6, 0, 70, 0, 69, 0, 6, 0, 74, 0, 70, 0, 6, 0, 76, 0, 74, 0, 6, 0, 77, 0, 76, 0, 6, 0, 78, 0, 77, 0, 6, 0, 79, 0, 78, 0, 6, 0, 80, 0, 79, 0, 6, 0, 81, 0, 80, 0, 6, 0, 82, 0, 81, 0, 6, 0, 14, 0, 82, 0, 6, 0, 83, 0, 10, 0, 1, 0, 1, 0, 84, 0, 83, 0, 1, 0, 85, 0, 84, 0, 1, 0, 86, 0, 85, 0, 1, 0, 3, 0, 86, 0, 3, 0, 88, 0, 86, 0, 3, 0, 89, 0, 88, 0, 3, 0, 90, 0, 89, 0, 3, 0, 91, 0, 90, 0, 3, 0, 92, 0, 91, 0, 3, 0, 93, 0, 92, 0, 3, 0, 94, 0, 93, 0, 3, 0, 95, 0, 94, 0, 3, 0, 96, 0, 95, 0, 3, 0, 97, 0, 96, 0, 3, 0, 98, 0, 97, 0, 3, 0, 99, 0, 98, 0, 3, 0, 100, 0, 99, 0, 3, 0, 101, 0, 100, 0, 3, 0, 102, 0, 101, 0, 3, 0, 103, 0, 102, 0, 3, 0, 104, 0, 103, 0, 3, 0, 12, 0, 104, 0, 10, 0, 83, 0, 1, 0, 84, 0, 1, 0, 83, 0, 85, 0, 1, 0, 84, 0, 86, 0, 1, 0, 85, 0, 3, 0, 1, 0, 86, 0, 88, 0, 3, 0, 86, 0, 89, 0, 3, 0, 88, 0, 90, 0, 3, 0, 89, 0, 91, 0, 3, 0, 90, 0, 92, 0, 3, 0, 91, 0, 93, 0, 3, 0, 92, 0, 94, 0, 3, 0, 93, 0, 95, 0, 3, 0, 94, 0, 96, 0, 3, 0, 95, 0, 97, 0, 3, 0, 96, 0, 98, 0, 3, 0, 97, 0, 99, 0, 3, 0, 98, 0, 100, 0, 3, 0, 99, 0, 101, 0, 3, 0, 100, 0, 102, 0, 3, 0, 101, 0, 103, 0, 3, 0, 102, 0, 104, 0, 3, 0, 103, 0, 12, 0, 3, 0, 104, 0), 0.0143227, PackedByteArray(5, 0, 8, 0, 9, 0, 8, 0, 5, 0, 9, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 11, 0, 13, 0, 12, 0, 3, 0, 12, 0, 13, 0, 3, 0, 6, 0, 14, 0, 15, 0, 14, 0, 6, 0, 15, 0, 5, 0, 6, 0, 3, 0, 3, 0, 1, 0, 5, 0, 24, 0, 27, 0, 25, 0, 27, 0, 11, 0, 25, 0, 27, 0, 1, 0, 11, 0, 27, 0, 32, 0, 1, 0, 5, 0, 1, 0, 32, 0, 5, 0, 32, 0, 37, 0, 37, 0, 8, 0, 5, 0, 27, 0, 24, 0, 25, 0, 11, 0, 27, 0, 25, 0, 1, 0, 27, 0, 11, 0, 32, 0, 27, 0, 1, 0, 1, 0, 5, 0, 32, 0, 32, 0, 5, 0, 37, 0, 8, 0, 37, 0, 5, 0, 46, 0, 47, 0, 43, 0, 46, 0, 49, 0, 47, 0, 49, 0, 15, 0, 47, 0, 49, 0, 6, 0, 15, 0, 49, 0, 54, 0, 6, 0, 3, 0, 6, 0, 54, 0, 3, 0, 54, 0, 59, 0, 59, 0, 13, 0, 3, 0, 47, 0, 46, 0, 43, 0, 49, 0, 46, 0, 47, 0, 15, 0, 49, 0, 47, 0, 6, 0, 49, 0, 15, 0, 54, 0, 49, 0, 6, 0, 6, 0, 3, 0, 54, 0, 54, 0, 3, 0, 59, 0, 13, 0, 59, 0, 3, 0, 5, 0, 9, 0, 60, 0, 60, 0, 6, 0, 5, 0, 60, 0, 64, 0, 6, 0, 64, 0, 67, 0, 6, 0, 67, 0, 74, 0, 6, 0, 74, 0, 78, 0, 6, 0, 78, 0, 82, 0, 6, 0, 82, 0, 14, 0, 6, 0, 9, 0, 5, 0, 60, 0, 6, 0, 60, 0, 5, 0, 64, 0, 60, 0, 6, 0, 67, 0, 64, 0, 6, 0, 74, 0, 67, 0, 6, 0, 78, 0, 74, 0, 6, 0, 82, 0, 78, 0, 6, 0, 14, 0, 82, 0, 6, 0, 83, 0, 10, 0, 1, 0, 1, 0, 86, 0, 83, 0, 1, 0, 3, 0, 86, 0, 3, 0, 92, 0, 86, 0, 3, 0, 96, 0, 92, 0, 3, 0, 98, 0, 96, 0, 3, 0, 102, 0, 98, 0, 3, 0, 12, 0, 102, 0, 10, 0, 83, 0, 1, 0, 86, 0, 1, 0, 83, 0, 3, 0, 1, 0, 86, 0, 92, 0, 3, 0, 86, 0, 96, 0, 3, 0, 92, 0, 98, 0, 3, 0, 96, 0, 102, 0, 3, 0, 98, 0, 12, 0, 3, 0, 102, 0), 0.0862667, PackedByteArray(5, 0, 8, 0, 9, 0, 8, 0, 5, 0, 9, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 11, 0, 13, 0, 12, 0, 3, 0, 12, 0, 13, 0, 3, 0, 6, 0, 14, 0, 15, 0, 14, 0, 6, 0, 15, 0, 5, 0, 6, 0, 3, 0, 3, 0, 1, 0, 5, 0, 32, 0, 1, 0, 11, 0, 5, 0, 1, 0, 32, 0, 32, 0, 8, 0, 5, 0, 1, 0, 32, 0, 11, 0, 1, 0, 5, 0, 32, 0, 8, 0, 32, 0, 5, 0, 54, 0, 6, 0, 15, 0, 3, 0, 6, 0, 54, 0, 54, 0, 13, 0, 3, 0, 6, 0, 54, 0, 15, 0, 6, 0, 3, 0, 54, 0, 13, 0, 54, 0, 3, 0, 5, 0, 9, 0, 60, 0, 60, 0, 6, 0, 5, 0, 60, 0, 82, 0, 6, 0, 82, 0, 14, 0, 6, 0, 9, 0, 5, 0, 60, 0, 6, 0, 60, 0, 5, 0, 82, 0, 60, 0, 6, 0, 14, 0, 82, 0, 6, 0, 86, 0, 10, 0, 1, 0, 1, 0, 3, 0, 86, 0, 3, 0, 12, 0, 86, 0, 10, 0, 86, 0, 1, 0, 3, 0, 1, 0, 86, 0, 12, 0, 3, 0, 86, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 105, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ittdv"] +resource_name = "blockSnow_Mesh blockSnow" +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 192, 171, 170, 175, 140, 107, 199, 193, 192, 171, 170, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 223, 30, 204, 181, 140, 107, 199, 193, 223, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 0, 0, 176, 40, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 176, 40, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 163, 12, 35, 64, 36, 127, 145, 193, 149, 12, 35, 192, 36, 127, 145, 193, 7, 82, 176, 53, 140, 107, 199, 193, 7, 82, 176, 53, 140, 107, 199, 193, 149, 12, 35, 192, 36, 127, 145, 193, 163, 12, 35, 64, 36, 127, 145, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 239, 102, 56, 65, 212, 36, 98, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 239, 102, 56, 65, 212, 36, 98, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 77, 136, 201, 63, 184, 55, 119, 193, 46, 230, 169, 180, 140, 96, 128, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 77, 136, 201, 63, 184, 55, 119, 193, 46, 230, 169, 180, 140, 96, 128, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 244, 122, 157, 193, 128, 96, 128, 193, 244, 122, 157, 193, 9, 6, 186, 193, 110, 226, 144, 193, 52, 37, 133, 193, 160, 0, 132, 193, 55, 19, 137, 193, 159, 199, 109, 193, 65, 38, 140, 193, 5, 53, 83, 193, 218, 90, 142, 193, 248, 122, 157, 65, 11, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 253, 142, 2, 193, 154, 174, 143, 193, 187, 129, 207, 192, 218, 90, 142, 193, 135, 92, 154, 192, 65, 38, 140, 193, 133, 210, 75, 192, 56, 19, 137, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 169, 210, 75, 64, 153, 91, 111, 193, 154, 92, 154, 64, 131, 53, 105, 193, 205, 129, 207, 64, 81, 204, 100, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 239, 102, 56, 65, 212, 36, 98, 193, 10, 53, 83, 65, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 9, 6, 186, 193, 244, 122, 157, 193, 128, 96, 128, 193, 160, 0, 132, 193, 55, 19, 137, 193, 159, 199, 109, 193, 65, 38, 140, 193, 5, 53, 83, 193, 218, 90, 142, 193, 248, 122, 157, 65, 11, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 253, 142, 2, 193, 154, 174, 143, 193, 187, 129, 207, 192, 218, 90, 142, 193, 135, 92, 154, 192, 65, 38, 140, 193, 133, 210, 75, 192, 56, 19, 137, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 169, 210, 75, 64, 153, 91, 111, 193, 154, 92, 154, 64, 131, 53, 105, 193, 205, 129, 207, 64, 81, 204, 100, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 239, 102, 56, 65, 212, 36, 98, 193, 10, 53, 83, 65, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0), +"material": SubResource("StandardMaterial3D_5pas3"), +"name": "dirt", +"primitive": 3, +"vertex_count": 258, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 37, 209, 217, 174, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 37, 209, 217, 174, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 37, 209, 217, 174, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 37, 209, 217, 174, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 37, 209, 217, 174, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 37, 209, 217, 174, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 37, 209, 217, 174, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 37, 209, 217, 174, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 37, 209, 217, 174, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 37, 209, 217, 174, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 37, 209, 217, 174, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 37, 209, 217, 174, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 37, 209, 217, 174, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 37, 209, 217, 174, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 37, 209, 217, 174, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 37, 209, 217, 174, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 37, 209, 217, 174, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 217, 46, 37, 81, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 217, 46, 37, 81, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 217, 46, 37, 81, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 217, 46, 37, 81, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 217, 46, 37, 81, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 217, 46, 37, 81, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 217, 46, 37, 81, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 217, 46, 37, 81, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 217, 46, 37, 81, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 217, 46, 37, 81, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 217, 46, 37, 81, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 217, 46, 37, 81, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 217, 46, 37, 81, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 217, 46, 37, 81, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 217, 46, 37, 81, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 217, 46, 37, 81, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 217, 46, 37, 81, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 192, 171, 170, 175, 140, 107, 199, 193, 192, 171, 170, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 223, 30, 204, 181, 140, 107, 199, 193, 223, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 0, 0, 176, 40, 141, 107, 199, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 0, 0, 176, 40, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 163, 12, 35, 64, 36, 127, 145, 193, 149, 12, 35, 192, 36, 127, 145, 193, 7, 82, 176, 53, 140, 107, 199, 193, 7, 82, 176, 53, 140, 107, 199, 193, 149, 12, 35, 192, 36, 127, 145, 193, 163, 12, 35, 64, 36, 127, 145, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 239, 102, 56, 65, 212, 36, 98, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 239, 102, 56, 65, 212, 36, 98, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 77, 136, 201, 63, 184, 55, 119, 193, 46, 230, 169, 180, 140, 96, 128, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 77, 136, 201, 63, 184, 55, 119, 193, 46, 230, 169, 180, 140, 96, 128, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 244, 122, 157, 193, 128, 96, 128, 193, 244, 122, 157, 193, 9, 6, 186, 193, 110, 226, 144, 193, 52, 37, 133, 193, 160, 0, 132, 193, 55, 19, 137, 193, 159, 199, 109, 193, 65, 38, 140, 193, 5, 53, 83, 193, 218, 90, 142, 193, 248, 122, 157, 65, 11, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 253, 142, 2, 193, 154, 174, 143, 193, 187, 129, 207, 192, 218, 90, 142, 193, 135, 92, 154, 192, 65, 38, 140, 193, 133, 210, 75, 192, 56, 19, 137, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 169, 210, 75, 64, 153, 91, 111, 193, 154, 92, 154, 64, 131, 53, 105, 193, 205, 129, 207, 64, 81, 204, 100, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 239, 102, 56, 65, 212, 36, 98, 193, 10, 53, 83, 65, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 9, 6, 186, 193, 244, 122, 157, 193, 128, 96, 128, 193, 160, 0, 132, 193, 55, 19, 137, 193, 159, 199, 109, 193, 65, 38, 140, 193, 5, 53, 83, 193, 218, 90, 142, 193, 248, 122, 157, 65, 11, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 253, 142, 2, 193, 154, 174, 143, 193, 187, 129, 207, 192, 218, 90, 142, 193, 135, 92, 154, 192, 65, 38, 140, 193, 133, 210, 75, 192, 56, 19, 137, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 169, 210, 75, 64, 153, 91, 111, 193, 154, 92, 154, 64, 131, 53, 105, 193, 205, 129, 207, 64, 81, 204, 100, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 239, 102, 56, 65, 212, 36, 98, 193, 10, 53, 83, 65, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193), +"format": 4119, +"index_count": 612, +"index_data": PackedByteArray(22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 40, 0, 38, 0, 39, 0, 43, 0, 41, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 49, 0, 52, 0, 51, 0, 52, 0, 53, 0, 51, 0, 52, 0, 54, 0, 53, 0, 54, 0, 55, 0, 53, 0, 54, 0, 56, 0, 55, 0, 56, 0, 57, 0, 55, 0, 56, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 58, 0, 60, 0, 59, 0, 60, 0, 61, 0, 59, 0, 60, 0, 62, 0, 61, 0, 62, 0, 63, 0, 61, 0, 63, 0, 64, 0, 61, 0, 64, 0, 65, 0, 61, 0, 65, 0, 66, 0, 61, 0, 67, 0, 61, 0, 66, 0, 67, 0, 66, 0, 68, 0, 67, 0, 68, 0, 69, 0, 67, 0, 69, 0, 70, 0, 67, 0, 70, 0, 71, 0, 67, 0, 71, 0, 72, 0, 72, 0, 73, 0, 67, 0, 76, 0, 74, 0, 75, 0, 77, 0, 75, 0, 74, 0, 78, 0, 75, 0, 77, 0, 79, 0, 78, 0, 77, 0, 80, 0, 78, 0, 79, 0, 81, 0, 80, 0, 79, 0, 82, 0, 80, 0, 81, 0, 83, 0, 82, 0, 81, 0, 84, 0, 82, 0, 83, 0, 85, 0, 84, 0, 83, 0, 86, 0, 84, 0, 85, 0, 87, 0, 86, 0, 85, 0, 88, 0, 86, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 87, 0, 91, 0, 90, 0, 87, 0, 92, 0, 91, 0, 87, 0, 87, 0, 93, 0, 92, 0, 92, 0, 93, 0, 94, 0, 94, 0, 93, 0, 95, 0, 95, 0, 93, 0, 96, 0, 96, 0, 93, 0, 97, 0, 97, 0, 93, 0, 98, 0, 99, 0, 98, 0, 93, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 104, 0, 105, 0, 103, 0, 104, 0, 106, 0, 105, 0, 106, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 108, 0, 110, 0, 109, 0, 110, 0, 111, 0, 109, 0, 110, 0, 112, 0, 111, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 115, 0, 116, 0, 113, 0, 116, 0, 117, 0, 113, 0, 117, 0, 118, 0, 113, 0, 119, 0, 113, 0, 118, 0, 119, 0, 118, 0, 120, 0, 119, 0, 120, 0, 121, 0, 119, 0, 121, 0, 122, 0, 119, 0, 122, 0, 123, 0, 119, 0, 123, 0, 124, 0, 124, 0, 125, 0, 119, 0, 128, 0, 126, 0, 127, 0, 129, 0, 127, 0, 126, 0, 130, 0, 127, 0, 129, 0, 131, 0, 130, 0, 129, 0, 132, 0, 130, 0, 131, 0, 133, 0, 132, 0, 131, 0, 134, 0, 132, 0, 133, 0, 135, 0, 134, 0, 133, 0, 136, 0, 134, 0, 135, 0, 137, 0, 136, 0, 135, 0, 138, 0, 136, 0, 137, 0, 139, 0, 138, 0, 137, 0, 140, 0, 138, 0, 139, 0, 141, 0, 140, 0, 139, 0, 142, 0, 141, 0, 139, 0, 143, 0, 142, 0, 139, 0, 144, 0, 143, 0, 139, 0, 139, 0, 145, 0, 144, 0, 144, 0, 145, 0, 146, 0, 146, 0, 145, 0, 147, 0, 147, 0, 145, 0, 148, 0, 148, 0, 145, 0, 149, 0, 149, 0, 145, 0, 150, 0, 151, 0, 150, 0, 145, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 153, 0, 156, 0, 155, 0, 156, 0, 157, 0, 155, 0, 157, 0, 158, 0, 155, 0, 158, 0, 159, 0, 155, 0, 159, 0, 160, 0, 155, 0, 160, 0, 161, 0, 155, 0, 161, 0, 162, 0, 155, 0, 162, 0, 163, 0, 155, 0, 163, 0, 164, 0, 155, 0, 164, 0, 165, 0, 155, 0, 164, 0, 166, 0, 165, 0, 166, 0, 167, 0, 165, 0, 165, 0, 168, 0, 155, 0, 168, 0, 169, 0, 155, 0, 169, 0, 170, 0, 155, 0, 170, 0, 171, 0, 155, 0, 171, 0, 172, 0, 155, 0, 172, 0, 173, 0, 155, 0, 173, 0, 174, 0, 155, 0, 174, 0, 175, 0, 155, 0, 175, 0, 176, 0, 155, 0, 176, 0, 177, 0, 155, 0, 177, 0, 178, 0, 155, 0, 181, 0, 179, 0, 180, 0, 182, 0, 180, 0, 179, 0, 183, 0, 180, 0, 182, 0, 184, 0, 183, 0, 182, 0, 185, 0, 184, 0, 182, 0, 186, 0, 185, 0, 182, 0, 187, 0, 186, 0, 182, 0, 188, 0, 187, 0, 182, 0, 189, 0, 188, 0, 182, 0, 190, 0, 189, 0, 182, 0, 191, 0, 190, 0, 182, 0, 192, 0, 191, 0, 182, 0, 193, 0, 191, 0, 192, 0, 194, 0, 193, 0, 192, 0, 195, 0, 192, 0, 182, 0, 196, 0, 195, 0, 182, 0, 197, 0, 196, 0, 182, 0, 198, 0, 197, 0, 182, 0, 199, 0, 198, 0, 182, 0, 200, 0, 199, 0, 182, 0, 201, 0, 200, 0, 182, 0, 202, 0, 201, 0, 182, 0, 203, 0, 202, 0, 182, 0, 204, 0, 203, 0, 182, 0, 205, 0, 204, 0, 182, 0, 208, 0, 206, 0, 207, 0, 207, 0, 209, 0, 208, 0, 207, 0, 210, 0, 209, 0, 207, 0, 211, 0, 210, 0, 207, 0, 212, 0, 211, 0, 212, 0, 213, 0, 211, 0, 212, 0, 214, 0, 213, 0, 212, 0, 215, 0, 214, 0, 212, 0, 216, 0, 215, 0, 212, 0, 217, 0, 216, 0, 212, 0, 218, 0, 217, 0, 212, 0, 219, 0, 218, 0, 212, 0, 220, 0, 219, 0, 212, 0, 221, 0, 220, 0, 212, 0, 222, 0, 221, 0, 212, 0, 223, 0, 222, 0, 212, 0, 224, 0, 223, 0, 212, 0, 225, 0, 224, 0, 212, 0, 226, 0, 225, 0, 212, 0, 227, 0, 226, 0, 212, 0, 228, 0, 227, 0, 212, 0, 229, 0, 228, 0, 212, 0, 230, 0, 229, 0, 212, 0, 231, 0, 230, 0, 234, 0, 232, 0, 233, 0, 235, 0, 233, 0, 232, 0, 236, 0, 233, 0, 235, 0, 237, 0, 233, 0, 236, 0, 238, 0, 233, 0, 237, 0, 239, 0, 238, 0, 237, 0, 240, 0, 238, 0, 239, 0, 241, 0, 238, 0, 240, 0, 242, 0, 238, 0, 241, 0, 243, 0, 238, 0, 242, 0, 244, 0, 238, 0, 243, 0, 245, 0, 238, 0, 244, 0, 246, 0, 238, 0, 245, 0, 247, 0, 238, 0, 246, 0, 248, 0, 238, 0, 247, 0, 249, 0, 238, 0, 248, 0, 250, 0, 238, 0, 249, 0, 251, 0, 238, 0, 250, 0, 252, 0, 238, 0, 251, 0, 253, 0, 238, 0, 252, 0, 254, 0, 238, 0, 253, 0, 255, 0, 238, 0, 254, 0, 0, 1, 238, 0, 255, 0, 1, 1, 238, 0, 0, 1), +"lods": [0.00480329, PackedByteArray(22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 40, 0, 38, 0, 39, 0, 43, 0, 41, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 52, 0, 53, 0, 50, 0, 52, 0, 56, 0, 53, 0, 56, 0, 57, 0, 53, 0, 56, 0, 60, 0, 57, 0, 60, 0, 59, 0, 57, 0, 60, 0, 61, 0, 59, 0, 60, 0, 62, 0, 61, 0, 62, 0, 64, 0, 61, 0, 64, 0, 66, 0, 61, 0, 67, 0, 61, 0, 66, 0, 67, 0, 66, 0, 70, 0, 67, 0, 70, 0, 72, 0, 72, 0, 73, 0, 67, 0, 79, 0, 78, 0, 74, 0, 82, 0, 78, 0, 79, 0, 83, 0, 82, 0, 79, 0, 86, 0, 82, 0, 83, 0, 85, 0, 86, 0, 83, 0, 87, 0, 86, 0, 85, 0, 88, 0, 86, 0, 87, 0, 90, 0, 88, 0, 87, 0, 92, 0, 90, 0, 87, 0, 87, 0, 93, 0, 92, 0, 92, 0, 93, 0, 96, 0, 96, 0, 93, 0, 98, 0, 99, 0, 98, 0, 93, 0, 104, 0, 105, 0, 102, 0, 104, 0, 108, 0, 105, 0, 108, 0, 109, 0, 105, 0, 108, 0, 112, 0, 109, 0, 112, 0, 111, 0, 109, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 116, 0, 113, 0, 116, 0, 118, 0, 113, 0, 119, 0, 113, 0, 118, 0, 119, 0, 118, 0, 122, 0, 119, 0, 122, 0, 124, 0, 124, 0, 125, 0, 119, 0, 131, 0, 130, 0, 126, 0, 134, 0, 130, 0, 131, 0, 135, 0, 134, 0, 131, 0, 138, 0, 134, 0, 135, 0, 137, 0, 138, 0, 135, 0, 139, 0, 138, 0, 137, 0, 140, 0, 138, 0, 139, 0, 142, 0, 140, 0, 139, 0, 144, 0, 142, 0, 139, 0, 139, 0, 145, 0, 144, 0, 144, 0, 145, 0, 148, 0, 148, 0, 145, 0, 150, 0, 151, 0, 150, 0, 145, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 153, 0, 157, 0, 155, 0, 157, 0, 159, 0, 155, 0, 159, 0, 160, 0, 155, 0, 160, 0, 161, 0, 155, 0, 161, 0, 162, 0, 155, 0, 162, 0, 164, 0, 155, 0, 164, 0, 165, 0, 155, 0, 165, 0, 169, 0, 155, 0, 169, 0, 171, 0, 155, 0, 171, 0, 172, 0, 155, 0, 172, 0, 173, 0, 155, 0, 173, 0, 174, 0, 155, 0, 174, 0, 175, 0, 155, 0, 175, 0, 176, 0, 155, 0, 176, 0, 177, 0, 155, 0, 177, 0, 178, 0, 155, 0, 181, 0, 179, 0, 180, 0, 182, 0, 180, 0, 179, 0, 184, 0, 180, 0, 182, 0, 186, 0, 184, 0, 182, 0, 187, 0, 186, 0, 182, 0, 188, 0, 187, 0, 182, 0, 189, 0, 188, 0, 182, 0, 191, 0, 189, 0, 182, 0, 192, 0, 191, 0, 182, 0, 196, 0, 192, 0, 182, 0, 198, 0, 196, 0, 182, 0, 199, 0, 198, 0, 182, 0, 200, 0, 199, 0, 182, 0, 201, 0, 200, 0, 182, 0, 202, 0, 201, 0, 182, 0, 203, 0, 202, 0, 182, 0, 204, 0, 203, 0, 182, 0, 205, 0, 204, 0, 182, 0, 208, 0, 206, 0, 207, 0, 207, 0, 209, 0, 208, 0, 207, 0, 210, 0, 209, 0, 207, 0, 211, 0, 210, 0, 207, 0, 212, 0, 211, 0, 212, 0, 214, 0, 211, 0, 212, 0, 215, 0, 214, 0, 212, 0, 216, 0, 215, 0, 212, 0, 217, 0, 216, 0, 212, 0, 218, 0, 217, 0, 212, 0, 219, 0, 218, 0, 212, 0, 220, 0, 219, 0, 212, 0, 221, 0, 220, 0, 212, 0, 222, 0, 221, 0, 212, 0, 223, 0, 222, 0, 212, 0, 224, 0, 223, 0, 212, 0, 225, 0, 224, 0, 212, 0, 226, 0, 225, 0, 212, 0, 227, 0, 226, 0, 212, 0, 228, 0, 227, 0, 212, 0, 229, 0, 228, 0, 212, 0, 230, 0, 229, 0, 212, 0, 231, 0, 230, 0, 234, 0, 232, 0, 233, 0, 235, 0, 233, 0, 232, 0, 236, 0, 233, 0, 235, 0, 237, 0, 233, 0, 236, 0, 238, 0, 233, 0, 237, 0, 240, 0, 238, 0, 237, 0, 241, 0, 238, 0, 240, 0, 242, 0, 238, 0, 241, 0, 243, 0, 238, 0, 242, 0, 244, 0, 238, 0, 243, 0, 245, 0, 238, 0, 244, 0, 246, 0, 238, 0, 245, 0, 247, 0, 238, 0, 246, 0, 248, 0, 238, 0, 247, 0, 249, 0, 238, 0, 248, 0, 250, 0, 238, 0, 249, 0, 251, 0, 238, 0, 250, 0, 252, 0, 238, 0, 251, 0, 253, 0, 238, 0, 252, 0, 254, 0, 238, 0, 253, 0, 255, 0, 238, 0, 254, 0, 0, 1, 238, 0, 255, 0, 1, 1, 238, 0, 0, 1), 0.0143227, PackedByteArray(22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 40, 0, 38, 0, 39, 0, 43, 0, 41, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 56, 0, 60, 0, 57, 0, 60, 0, 59, 0, 57, 0, 60, 0, 61, 0, 59, 0, 60, 0, 66, 0, 61, 0, 67, 0, 61, 0, 66, 0, 67, 0, 66, 0, 72, 0, 72, 0, 73, 0, 67, 0, 86, 0, 82, 0, 83, 0, 85, 0, 86, 0, 83, 0, 87, 0, 86, 0, 85, 0, 92, 0, 86, 0, 87, 0, 87, 0, 93, 0, 92, 0, 92, 0, 93, 0, 98, 0, 99, 0, 98, 0, 93, 0, 108, 0, 109, 0, 105, 0, 108, 0, 112, 0, 109, 0, 112, 0, 111, 0, 109, 0, 112, 0, 113, 0, 111, 0, 112, 0, 118, 0, 113, 0, 119, 0, 113, 0, 118, 0, 119, 0, 118, 0, 124, 0, 124, 0, 125, 0, 119, 0, 135, 0, 134, 0, 131, 0, 138, 0, 134, 0, 135, 0, 137, 0, 138, 0, 135, 0, 139, 0, 138, 0, 137, 0, 144, 0, 138, 0, 139, 0, 139, 0, 145, 0, 144, 0, 144, 0, 145, 0, 150, 0, 151, 0, 150, 0, 145, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 153, 0, 159, 0, 155, 0, 159, 0, 162, 0, 155, 0, 162, 0, 169, 0, 155, 0, 169, 0, 173, 0, 155, 0, 173, 0, 177, 0, 155, 0, 177, 0, 178, 0, 155, 0, 181, 0, 179, 0, 180, 0, 182, 0, 180, 0, 179, 0, 186, 0, 180, 0, 182, 0, 189, 0, 186, 0, 182, 0, 196, 0, 189, 0, 182, 0, 200, 0, 196, 0, 182, 0, 204, 0, 200, 0, 182, 0, 205, 0, 204, 0, 182, 0, 208, 0, 206, 0, 207, 0, 207, 0, 211, 0, 208, 0, 207, 0, 212, 0, 211, 0, 212, 0, 218, 0, 211, 0, 212, 0, 222, 0, 218, 0, 212, 0, 224, 0, 222, 0, 212, 0, 228, 0, 224, 0, 212, 0, 231, 0, 228, 0, 234, 0, 232, 0, 233, 0, 237, 0, 233, 0, 232, 0, 238, 0, 233, 0, 237, 0, 244, 0, 238, 0, 237, 0, 248, 0, 238, 0, 244, 0, 250, 0, 238, 0, 248, 0, 254, 0, 238, 0, 250, 0, 1, 1, 238, 0, 254, 0), 0.0862667, PackedByteArray(22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 40, 0, 38, 0, 39, 0, 43, 0, 41, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 66, 0, 61, 0, 59, 0, 67, 0, 61, 0, 66, 0, 66, 0, 73, 0, 67, 0, 87, 0, 92, 0, 85, 0, 87, 0, 93, 0, 92, 0, 99, 0, 92, 0, 93, 0, 118, 0, 113, 0, 111, 0, 119, 0, 113, 0, 118, 0, 118, 0, 125, 0, 119, 0, 139, 0, 144, 0, 137, 0, 139, 0, 145, 0, 144, 0, 151, 0, 144, 0, 145, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 153, 0, 177, 0, 155, 0, 177, 0, 178, 0, 155, 0, 181, 0, 179, 0, 180, 0, 182, 0, 180, 0, 179, 0, 204, 0, 180, 0, 182, 0, 205, 0, 204, 0, 182, 0, 211, 0, 206, 0, 207, 0, 207, 0, 212, 0, 211, 0, 212, 0, 231, 0, 211, 0, 234, 0, 237, 0, 233, 0, 238, 0, 233, 0, 237, 0, 1, 1, 238, 0, 237, 0)], +"material": SubResource("StandardMaterial3D_0fvkb"), +"name": "snow", +"primitive": 3, +"vertex_count": 258, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 255, 255, 255, 191, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 80, 171, 171, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 189, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 189, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 57, 134, 235, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 189, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 61, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 61, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 61, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 62, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 62, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 200, 225, 149, 62, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 77, 171, 171, 62, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 62, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 62, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 53, 134, 235, 62, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 255, 127, 255, 191, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 255, 127, 254, 191, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 217, 174, 255, 255, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 255, 127, 255, 191, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 255, 127, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 255, 127, 255, 63, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 255, 127, 0, 64, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 37, 81, 255, 255, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 255, 127, 255, 63, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 255, 127, 255, 63, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 37, 209, 217, 174, 254, 255, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 37, 209, 217, 174, 254, 255, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 37, 209, 217, 174, 255, 255, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 255, 255, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 37, 209, 217, 174, 254, 255, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 254, 255, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 37, 209, 217, 174, 254, 255, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 37, 209, 217, 174, 0, 0, 255, 255, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 37, 209, 217, 174, 254, 255, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 37, 209, 217, 174, 254, 255, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 37, 209, 217, 174, 0, 0, 254, 255, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 37, 209, 217, 174, 254, 255, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 37, 209, 217, 174, 0, 0, 255, 255, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 37, 209, 217, 174, 254, 255, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 37, 209, 217, 174, 0, 0, 255, 255, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 37, 209, 217, 174, 0, 0, 255, 255, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 37, 209, 217, 174, 255, 255, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 37, 209, 217, 174, 255, 255, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 37, 209, 217, 174, 254, 255, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 37, 209, 217, 174, 254, 255, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 37, 209, 217, 174, 254, 255, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190, 37, 209, 217, 174, 0, 0, 255, 255, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 254, 255, 91, 125, 21, 63, 88, 199, 90, 63, 57, 134, 235, 62, 217, 46, 37, 81, 254, 255, 254, 127, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 139, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 217, 46, 37, 81, 254, 255, 254, 127, 169, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 217, 46, 37, 81, 0, 0, 0, 0, 56, 191, 17, 63, 233, 66, 97, 63, 80, 171, 171, 62, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 34, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 217, 46, 37, 81, 254, 255, 254, 127, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 0, 34, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 217, 46, 37, 81, 254, 255, 254, 127, 56, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 217, 46, 37, 81, 0, 0, 0, 0, 169, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 217, 46, 37, 81, 254, 255, 254, 127, 139, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 217, 46, 37, 81, 254, 255, 254, 127, 91, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 217, 46, 37, 81, 0, 0, 0, 0, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 217, 46, 37, 81, 254, 255, 254, 127, 98, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 217, 46, 37, 81, 0, 0, 0, 0, 68, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 217, 46, 37, 81, 254, 255, 254, 127, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 217, 46, 37, 81, 0, 0, 0, 0, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 217, 46, 37, 81, 0, 0, 0, 0, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 217, 46, 37, 81, 255, 255, 254, 127, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 217, 46, 37, 81, 0, 0, 0, 0, 181, 27, 29, 63, 70, 149, 77, 63, 77, 171, 171, 190, 217, 46, 37, 81, 254, 255, 254, 127, 68, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 217, 46, 37, 81, 254, 255, 254, 127, 98, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 217, 46, 37, 81, 255, 255, 254, 127, 146, 93, 25, 63, 215, 16, 84, 63, 53, 134, 235, 190, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_wup6e") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_ci4ec"] +data = PackedVector3Array(0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, -0.5, -0.5, 1, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, -0.5, 1, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.5, 0.8415, -0.5915, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.5, 1, 0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.2927, 0.7994, 0.6158, 0.25, 0.7982, 0.6165, 0.2073, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.0809, 0.8654, 0.5777, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.25, 0.8848, 0.5665, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.46, 0.8546, 0.5839, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.25, 0.7982, 0.6165, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.2927, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.0809, 0.8654, 0.5777, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.46, 0.8546, 0.5839, -0.5, 1, 0.5, -0.2927, 0.7994, -0.6158, -0.25, 0.7982, -0.6165, -0.2073, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.2927, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.1647, 0.8031, -0.6137, -0.3353, 0.8031, -0.6137, -0.1647, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.3353, 0.8031, -0.6137, -0.1647, 0.8031, -0.6137, -0.1225, 0.8091, -0.6102, -0.3775, 0.8091, -0.6102, -0.1225, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.3775, 0.8091, -0.6102, -0.1225, 0.8091, -0.6102, -0.0809, 0.8176, -0.6053, -0.4191, 0.8176, -0.6053, -0.0809, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.4191, 0.8176, -0.6053, -0.0809, 0.8176, -0.6053, -0.04, 0.8284, -0.5991, -0.46, 0.8284, -0.5991, -0.04, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.46, 0.8284, -0.5991, -0.04, 0.8284, -0.5991, 0.04, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, 0.04, 0.8546, -0.5839, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, 0.04, 0.8546, -0.5839, 0.0809, 0.8654, -0.5777, -0.5, 1, -0.5, 0.0809, 0.8654, -0.5777, 0.1225, 0.8739, -0.5728, -0.5, 1, -0.5, 0.1225, 0.8739, -0.5728, 0.1647, 0.8799, -0.5693, -0.5, 1, -0.5, 0.1647, 0.8799, -0.5693, 0.2073, 0.8836, -0.5672, -0.5, 1, -0.5, 0.2073, 0.8836, -0.5672, 0.25, 0.8848, -0.5665, -0.5, 1, -0.5, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.2927, 0.8836, -0.5672, 0.5, 1, -0.5, 0.2927, 0.8836, -0.5672, 0.3353, 0.8799, -0.5693, 0.5, 1, -0.5, 0.3353, 0.8799, -0.5693, 0.3775, 0.8739, -0.5728, 0.5, 1, -0.5, 0.3775, 0.8739, -0.5728, 0.4191, 0.8654, -0.5777, 0.5, 1, -0.5, 0.4191, 0.8654, -0.5777, 0.46, 0.8546, -0.5839, 0.46, 0.8546, -0.5839, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.25, 0.7982, -0.6165, -0.2927, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.2073, 0.7994, -0.6158, -0.2927, 0.7994, -0.6158, -0.1647, 0.8031, -0.6137, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.1647, 0.8031, -0.6137, -0.3353, 0.8031, -0.6137, -0.1225, 0.8091, -0.6102, -0.1647, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.1225, 0.8091, -0.6102, -0.3775, 0.8091, -0.6102, -0.0809, 0.8176, -0.6053, -0.1225, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.0809, 0.8176, -0.6053, -0.4191, 0.8176, -0.6053, -0.04, 0.8284, -0.5991, -0.0809, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.04, 0.8284, -0.5991, -0.46, 0.8284, -0.5991, 0.04, 0.8546, -0.5839, -0.04, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.5, 1, -0.5, 0.04, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, 0.0809, 0.8654, -0.5777, 0.04, 0.8546, -0.5839, -0.5, 1, -0.5, 0.1225, 0.8739, -0.5728, 0.0809, 0.8654, -0.5777, -0.5, 1, -0.5, 0.1647, 0.8799, -0.5693, 0.1225, 0.8739, -0.5728, -0.5, 1, -0.5, 0.2073, 0.8836, -0.5672, 0.1647, 0.8799, -0.5693, -0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.2073, 0.8836, -0.5672, -0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.25, 0.8848, -0.5665, 0.5, 1, -0.5, 0.2927, 0.8836, -0.5672, 0.2927, 0.8836, -0.5672, 0.5, 1, -0.5, 0.3353, 0.8799, -0.5693, 0.3353, 0.8799, -0.5693, 0.5, 1, -0.5, 0.3775, 0.8739, -0.5728, 0.3775, 0.8739, -0.5728, 0.5, 1, -0.5, 0.4191, 0.8654, -0.5777, 0.4191, 0.8654, -0.5777, 0.5, 1, -0.5, 0.46, 0.8546, -0.5839, 0.5, 0.8415, -0.5915, 0.46, 0.8546, -0.5839, 0.5, 1, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5991, 0.8284, 0.46, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6053, 0.8176, 0.4191, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5991, 0.8284, 0.04, -0.5839, 0.8546, -0.04, -0.5991, 0.8284, 0.04, -0.5915, 0.8415, 0, -0.5839, 0.8546, -0.04, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5777, 0.8654, -0.0809, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5991, 0.8284, 0.46, -0.5, 1, 0.5, -0.6053, 0.8176, 0.4191, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.5991, 0.8284, 0.04, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5915, 0.8415, 0, -0.5991, 0.8284, 0.04, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, 0.5839, 0.8546, 0.46, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4191, 0.5839, 0.8546, 0.46, 0.5, 1, 0.5, 0.5728, 0.8739, 0.3775, 0.5777, 0.8654, 0.4191, 0.5, 1, 0.5, 0.5693, 0.8799, 0.3353, 0.5728, 0.8739, 0.3775, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5693, 0.8799, 0.3353, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2927, 0.5693, 0.8799, 0.3353, 0.5, 1, -0.5, 0.5665, 0.8848, 0.25, 0.5672, 0.8836, 0.2927, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2073, 0.5665, 0.8848, 0.25, 0.5, 1, -0.5, 0.5693, 0.8799, 0.1647, 0.5672, 0.8836, 0.2073, 0.5, 1, -0.5, 0.5728, 0.8739, 0.1225, 0.5693, 0.8799, 0.1647, 0.5, 1, -0.5, 0.5777, 0.8654, 0.0809, 0.5728, 0.8739, 0.1225, 0.5, 1, -0.5, 0.5839, 0.8546, 0.04, 0.5777, 0.8654, 0.0809, 0.5, 1, -0.5, 0.5991, 0.8284, -0.04, 0.5839, 0.8546, 0.04, 0.5, 1, -0.5, 0.6053, 0.8176, -0.0809, 0.5991, 0.8284, -0.04, 0.5, 1, -0.5, 0.6102, 0.8091, -0.1225, 0.6053, 0.8176, -0.0809, 0.5, 1, -0.5, 0.6137, 0.8031, -0.1647, 0.6102, 0.8091, -0.1225, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2073, 0.6137, 0.8031, -0.1647, 0.5, 1, -0.5, 0.6165, 0.7982, -0.25, 0.6158, 0.7994, -0.2073, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2927, 0.6165, 0.7982, -0.25, 0.5, 1, -0.5, 0.6137, 0.8031, -0.3353, 0.6158, 0.7994, -0.2927, 0.5, 1, -0.5, 0.6102, 0.8091, -0.3775, 0.6137, 0.8031, -0.3353, 0.5, 1, -0.5, 0.6053, 0.8176, -0.4191, 0.6102, 0.8091, -0.3775, 0.5, 1, -0.5, 0.5991, 0.8284, -0.46, 0.6053, 0.8176, -0.4191, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.5991, 0.8284, -0.46, 0.5915, 0.8415, 0.5, 0.5839, 0.8546, 0.46, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4191, 0.5, 1, 0.5, 0.5839, 0.8546, 0.46, 0.5728, 0.8739, 0.3775, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4191, 0.5693, 0.8799, 0.3353, 0.5, 1, 0.5, 0.5728, 0.8739, 0.3775, 0.5, 1, -0.5, 0.5, 1, 0.5, 0.5693, 0.8799, 0.3353, 0.5672, 0.8836, 0.2927, 0.5, 1, -0.5, 0.5693, 0.8799, 0.3353, 0.5665, 0.8848, 0.25, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2927, 0.5672, 0.8836, 0.2073, 0.5, 1, -0.5, 0.5665, 0.8848, 0.25, 0.5693, 0.8799, 0.1647, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2073, 0.5728, 0.8739, 0.1225, 0.5, 1, -0.5, 0.5693, 0.8799, 0.1647, 0.5777, 0.8654, 0.0809, 0.5, 1, -0.5, 0.5728, 0.8739, 0.1225, 0.5839, 0.8546, 0.04, 0.5, 1, -0.5, 0.5777, 0.8654, 0.0809, 0.5991, 0.8284, -0.04, 0.5, 1, -0.5, 0.5839, 0.8546, 0.04, 0.6053, 0.8176, -0.0809, 0.5, 1, -0.5, 0.5991, 0.8284, -0.04, 0.6102, 0.8091, -0.1225, 0.5, 1, -0.5, 0.6053, 0.8176, -0.0809, 0.6137, 0.8031, -0.1647, 0.5, 1, -0.5, 0.6102, 0.8091, -0.1225, 0.6158, 0.7994, -0.2073, 0.5, 1, -0.5, 0.6137, 0.8031, -0.1647, 0.6165, 0.7982, -0.25, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2073, 0.6158, 0.7994, -0.2927, 0.5, 1, -0.5, 0.6165, 0.7982, -0.25, 0.6137, 0.8031, -0.3353, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2927, 0.6102, 0.8091, -0.3775, 0.5, 1, -0.5, 0.6137, 0.8031, -0.3353, 0.6053, 0.8176, -0.4191, 0.5, 1, -0.5, 0.6102, 0.8091, -0.3775, 0.5991, 0.8284, -0.46, 0.5, 1, -0.5, 0.6053, 0.8176, -0.4191, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.5991, 0.8284, -0.46) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mkfpp"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yl4ug"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_5ynsn"] +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 612, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 16, 0, 17, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 19, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 21, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 11, 0, 21, 0, 22, 0, 23, 0, 11, 0, 23, 0, 9, 0, 11, 0, 23, 0, 24, 0, 9, 0, 24, 0, 25, 0, 9, 0, 25, 0, 26, 0, 9, 0, 26, 0, 27, 0, 9, 0, 27, 0, 28, 0, 9, 0, 2, 0, 9, 0, 28, 0, 2, 0, 28, 0, 29, 0, 2, 0, 29, 0, 30, 0, 2, 0, 30, 0, 31, 0, 2, 0, 31, 0, 32, 0, 2, 0, 32, 0, 33, 0, 33, 0, 0, 0, 2, 0, 12, 0, 14, 0, 13, 0, 15, 0, 13, 0, 14, 0, 16, 0, 13, 0, 15, 0, 17, 0, 16, 0, 15, 0, 18, 0, 16, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 18, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 20, 0, 21, 0, 11, 0, 22, 0, 21, 0, 23, 0, 22, 0, 11, 0, 9, 0, 23, 0, 11, 0, 24, 0, 23, 0, 9, 0, 25, 0, 24, 0, 9, 0, 26, 0, 25, 0, 9, 0, 27, 0, 26, 0, 9, 0, 28, 0, 27, 0, 9, 0, 9, 0, 2, 0, 28, 0, 28, 0, 2, 0, 29, 0, 29, 0, 2, 0, 30, 0, 30, 0, 2, 0, 31, 0, 31, 0, 2, 0, 32, 0, 32, 0, 2, 0, 33, 0, 0, 0, 33, 0, 2, 0, 36, 0, 34, 0, 35, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 38, 0, 39, 0, 37, 0, 38, 0, 40, 0, 39, 0, 40, 0, 41, 0, 39, 0, 40, 0, 42, 0, 41, 0, 42, 0, 43, 0, 41, 0, 42, 0, 44, 0, 43, 0, 44, 0, 4, 0, 43, 0, 44, 0, 45, 0, 4, 0, 45, 0, 5, 0, 4, 0, 45, 0, 46, 0, 5, 0, 46, 0, 47, 0, 5, 0, 47, 0, 48, 0, 5, 0, 48, 0, 49, 0, 5, 0, 49, 0, 50, 0, 5, 0, 8, 0, 5, 0, 50, 0, 8, 0, 50, 0, 51, 0, 8, 0, 51, 0, 52, 0, 8, 0, 52, 0, 53, 0, 8, 0, 53, 0, 54, 0, 8, 0, 54, 0, 55, 0, 55, 0, 6, 0, 8, 0, 34, 0, 36, 0, 35, 0, 37, 0, 35, 0, 36, 0, 38, 0, 35, 0, 37, 0, 39, 0, 38, 0, 37, 0, 40, 0, 38, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 40, 0, 41, 0, 43, 0, 42, 0, 41, 0, 44, 0, 42, 0, 43, 0, 4, 0, 44, 0, 43, 0, 45, 0, 44, 0, 4, 0, 5, 0, 45, 0, 4, 0, 46, 0, 45, 0, 5, 0, 47, 0, 46, 0, 5, 0, 48, 0, 47, 0, 5, 0, 49, 0, 48, 0, 5, 0, 50, 0, 49, 0, 5, 0, 5, 0, 8, 0, 50, 0, 50, 0, 8, 0, 51, 0, 51, 0, 8, 0, 52, 0, 52, 0, 8, 0, 53, 0, 53, 0, 8, 0, 54, 0, 54, 0, 8, 0, 55, 0, 6, 0, 55, 0, 8, 0, 8, 0, 7, 0, 56, 0, 56, 0, 9, 0, 8, 0, 56, 0, 57, 0, 9, 0, 57, 0, 58, 0, 9, 0, 58, 0, 59, 0, 9, 0, 59, 0, 60, 0, 9, 0, 60, 0, 61, 0, 9, 0, 61, 0, 62, 0, 9, 0, 62, 0, 63, 0, 9, 0, 63, 0, 64, 0, 9, 0, 64, 0, 65, 0, 9, 0, 65, 0, 66, 0, 9, 0, 65, 0, 67, 0, 66, 0, 66, 0, 68, 0, 9, 0, 68, 0, 69, 0, 9, 0, 69, 0, 70, 0, 9, 0, 70, 0, 71, 0, 9, 0, 71, 0, 72, 0, 9, 0, 72, 0, 73, 0, 9, 0, 73, 0, 74, 0, 9, 0, 74, 0, 75, 0, 9, 0, 75, 0, 76, 0, 9, 0, 76, 0, 77, 0, 9, 0, 77, 0, 10, 0, 9, 0, 7, 0, 8, 0, 56, 0, 9, 0, 56, 0, 8, 0, 57, 0, 56, 0, 9, 0, 58, 0, 57, 0, 9, 0, 59, 0, 58, 0, 9, 0, 60, 0, 59, 0, 9, 0, 61, 0, 60, 0, 9, 0, 62, 0, 61, 0, 9, 0, 63, 0, 62, 0, 9, 0, 64, 0, 63, 0, 9, 0, 65, 0, 64, 0, 9, 0, 66, 0, 65, 0, 9, 0, 67, 0, 65, 0, 66, 0, 68, 0, 66, 0, 9, 0, 69, 0, 68, 0, 9, 0, 70, 0, 69, 0, 9, 0, 71, 0, 70, 0, 9, 0, 72, 0, 71, 0, 9, 0, 73, 0, 72, 0, 9, 0, 74, 0, 73, 0, 9, 0, 75, 0, 74, 0, 9, 0, 76, 0, 75, 0, 9, 0, 77, 0, 76, 0, 9, 0, 10, 0, 77, 0, 9, 0, 8, 0, 9, 0, 2, 0, 2, 0, 5, 0, 8, 0, 78, 0, 3, 0, 5, 0, 79, 0, 78, 0, 5, 0, 80, 0, 79, 0, 5, 0, 81, 0, 80, 0, 5, 0, 5, 0, 2, 0, 81, 0, 2, 0, 82, 0, 81, 0, 2, 0, 83, 0, 82, 0, 2, 0, 84, 0, 83, 0, 2, 0, 85, 0, 84, 0, 2, 0, 86, 0, 85, 0, 2, 0, 87, 0, 86, 0, 2, 0, 88, 0, 87, 0, 2, 0, 89, 0, 88, 0, 2, 0, 90, 0, 89, 0, 2, 0, 91, 0, 90, 0, 2, 0, 92, 0, 91, 0, 2, 0, 93, 0, 92, 0, 2, 0, 94, 0, 93, 0, 2, 0, 95, 0, 94, 0, 2, 0, 96, 0, 95, 0, 2, 0, 97, 0, 96, 0, 2, 0, 98, 0, 97, 0, 2, 0, 99, 0, 98, 0, 2, 0, 100, 0, 99, 0, 2, 0, 1, 0, 100, 0, 3, 0, 78, 0, 5, 0, 78, 0, 79, 0, 5, 0, 79, 0, 80, 0, 5, 0, 80, 0, 81, 0, 5, 0, 2, 0, 5, 0, 81, 0, 82, 0, 2, 0, 81, 0, 83, 0, 2, 0, 82, 0, 84, 0, 2, 0, 83, 0, 85, 0, 2, 0, 84, 0, 86, 0, 2, 0, 85, 0, 87, 0, 2, 0, 86, 0, 88, 0, 2, 0, 87, 0, 89, 0, 2, 0, 88, 0, 90, 0, 2, 0, 89, 0, 91, 0, 2, 0, 90, 0, 92, 0, 2, 0, 91, 0, 93, 0, 2, 0, 92, 0, 94, 0, 2, 0, 93, 0, 95, 0, 2, 0, 94, 0, 96, 0, 2, 0, 95, 0, 97, 0, 2, 0, 96, 0, 98, 0, 2, 0, 97, 0, 99, 0, 2, 0, 98, 0, 100, 0, 2, 0, 99, 0, 1, 0, 2, 0, 100, 0), +"lods": [0.00289745, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 16, 0, 17, 0, 14, 0, 16, 0, 20, 0, 17, 0, 20, 0, 21, 0, 17, 0, 20, 0, 23, 0, 21, 0, 23, 0, 11, 0, 21, 0, 23, 0, 9, 0, 11, 0, 23, 0, 24, 0, 9, 0, 24, 0, 26, 0, 9, 0, 26, 0, 28, 0, 9, 0, 2, 0, 9, 0, 28, 0, 2, 0, 28, 0, 31, 0, 2, 0, 31, 0, 33, 0, 33, 0, 0, 0, 2, 0, 17, 0, 16, 0, 14, 0, 20, 0, 16, 0, 17, 0, 21, 0, 20, 0, 17, 0, 23, 0, 20, 0, 21, 0, 11, 0, 23, 0, 21, 0, 9, 0, 23, 0, 11, 0, 24, 0, 23, 0, 9, 0, 26, 0, 24, 0, 9, 0, 28, 0, 26, 0, 9, 0, 9, 0, 2, 0, 28, 0, 28, 0, 2, 0, 31, 0, 31, 0, 2, 0, 33, 0, 0, 0, 33, 0, 2, 0, 38, 0, 39, 0, 36, 0, 38, 0, 42, 0, 39, 0, 42, 0, 43, 0, 39, 0, 42, 0, 45, 0, 43, 0, 45, 0, 4, 0, 43, 0, 45, 0, 5, 0, 4, 0, 45, 0, 46, 0, 5, 0, 46, 0, 48, 0, 5, 0, 48, 0, 50, 0, 5, 0, 8, 0, 5, 0, 50, 0, 8, 0, 50, 0, 53, 0, 8, 0, 53, 0, 55, 0, 55, 0, 6, 0, 8, 0, 39, 0, 38, 0, 36, 0, 42, 0, 38, 0, 39, 0, 43, 0, 42, 0, 39, 0, 45, 0, 42, 0, 43, 0, 4, 0, 45, 0, 43, 0, 5, 0, 45, 0, 4, 0, 46, 0, 45, 0, 5, 0, 48, 0, 46, 0, 5, 0, 50, 0, 48, 0, 5, 0, 5, 0, 8, 0, 50, 0, 50, 0, 8, 0, 53, 0, 53, 0, 8, 0, 55, 0, 6, 0, 55, 0, 8, 0, 8, 0, 7, 0, 56, 0, 56, 0, 9, 0, 8, 0, 56, 0, 58, 0, 9, 0, 58, 0, 60, 0, 9, 0, 60, 0, 62, 0, 9, 0, 62, 0, 63, 0, 9, 0, 63, 0, 65, 0, 9, 0, 65, 0, 66, 0, 9, 0, 66, 0, 69, 0, 9, 0, 69, 0, 71, 0, 9, 0, 71, 0, 73, 0, 9, 0, 73, 0, 75, 0, 9, 0, 75, 0, 77, 0, 9, 0, 77, 0, 10, 0, 9, 0, 7, 0, 8, 0, 56, 0, 9, 0, 56, 0, 8, 0, 58, 0, 56, 0, 9, 0, 60, 0, 58, 0, 9, 0, 62, 0, 60, 0, 9, 0, 63, 0, 62, 0, 9, 0, 65, 0, 63, 0, 9, 0, 66, 0, 65, 0, 9, 0, 69, 0, 66, 0, 9, 0, 71, 0, 69, 0, 9, 0, 73, 0, 71, 0, 9, 0, 75, 0, 73, 0, 9, 0, 77, 0, 75, 0, 9, 0, 10, 0, 77, 0, 9, 0, 8, 0, 9, 0, 2, 0, 2, 0, 5, 0, 8, 0, 78, 0, 3, 0, 5, 0, 80, 0, 78, 0, 5, 0, 81, 0, 80, 0, 5, 0, 5, 0, 2, 0, 81, 0, 2, 0, 83, 0, 81, 0, 2, 0, 84, 0, 83, 0, 2, 0, 85, 0, 84, 0, 2, 0, 86, 0, 85, 0, 2, 0, 87, 0, 86, 0, 2, 0, 88, 0, 87, 0, 2, 0, 89, 0, 88, 0, 2, 0, 90, 0, 89, 0, 2, 0, 91, 0, 90, 0, 2, 0, 92, 0, 91, 0, 2, 0, 93, 0, 92, 0, 2, 0, 94, 0, 93, 0, 2, 0, 95, 0, 94, 0, 2, 0, 96, 0, 95, 0, 2, 0, 97, 0, 96, 0, 2, 0, 98, 0, 97, 0, 2, 0, 99, 0, 98, 0, 2, 0, 100, 0, 99, 0, 2, 0, 1, 0, 100, 0, 3, 0, 78, 0, 5, 0, 78, 0, 80, 0, 5, 0, 80, 0, 81, 0, 5, 0, 2, 0, 5, 0, 81, 0, 83, 0, 2, 0, 81, 0, 84, 0, 2, 0, 83, 0, 85, 0, 2, 0, 84, 0, 86, 0, 2, 0, 85, 0, 87, 0, 2, 0, 86, 0, 88, 0, 2, 0, 87, 0, 89, 0, 2, 0, 88, 0, 90, 0, 2, 0, 89, 0, 91, 0, 2, 0, 90, 0, 92, 0, 2, 0, 91, 0, 93, 0, 2, 0, 92, 0, 94, 0, 2, 0, 93, 0, 95, 0, 2, 0, 94, 0, 96, 0, 2, 0, 95, 0, 97, 0, 2, 0, 96, 0, 98, 0, 2, 0, 97, 0, 99, 0, 2, 0, 98, 0, 100, 0, 2, 0, 99, 0, 1, 0, 2, 0, 100, 0), 0.0157448, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 23, 0, 11, 0, 21, 0, 23, 0, 9, 0, 11, 0, 23, 0, 28, 0, 9, 0, 2, 0, 9, 0, 28, 0, 2, 0, 28, 0, 33, 0, 33, 0, 0, 0, 2, 0, 11, 0, 23, 0, 21, 0, 9, 0, 23, 0, 11, 0, 28, 0, 23, 0, 9, 0, 9, 0, 2, 0, 28, 0, 28, 0, 2, 0, 33, 0, 0, 0, 33, 0, 2, 0, 42, 0, 45, 0, 43, 0, 45, 0, 4, 0, 43, 0, 45, 0, 5, 0, 4, 0, 45, 0, 50, 0, 5, 0, 8, 0, 5, 0, 50, 0, 8, 0, 50, 0, 55, 0, 55, 0, 6, 0, 8, 0, 45, 0, 42, 0, 43, 0, 4, 0, 45, 0, 43, 0, 5, 0, 45, 0, 4, 0, 50, 0, 45, 0, 5, 0, 5, 0, 8, 0, 50, 0, 50, 0, 8, 0, 55, 0, 6, 0, 55, 0, 8, 0, 8, 0, 7, 0, 56, 0, 56, 0, 9, 0, 8, 0, 56, 0, 60, 0, 9, 0, 60, 0, 63, 0, 9, 0, 63, 0, 71, 0, 9, 0, 71, 0, 75, 0, 9, 0, 75, 0, 77, 0, 9, 0, 77, 0, 10, 0, 9, 0, 7, 0, 8, 0, 56, 0, 9, 0, 56, 0, 8, 0, 60, 0, 56, 0, 9, 0, 63, 0, 60, 0, 9, 0, 71, 0, 63, 0, 9, 0, 75, 0, 71, 0, 9, 0, 77, 0, 75, 0, 9, 0, 10, 0, 77, 0, 9, 0, 8, 0, 9, 0, 2, 0, 2, 0, 5, 0, 8, 0, 78, 0, 3, 0, 5, 0, 81, 0, 78, 0, 5, 0, 5, 0, 2, 0, 81, 0, 2, 0, 88, 0, 81, 0, 2, 0, 89, 0, 88, 0, 2, 0, 93, 0, 89, 0, 2, 0, 97, 0, 93, 0, 2, 0, 1, 0, 97, 0, 3, 0, 78, 0, 5, 0, 78, 0, 81, 0, 5, 0, 2, 0, 5, 0, 81, 0, 88, 0, 2, 0, 81, 0, 89, 0, 2, 0, 88, 0, 93, 0, 2, 0, 89, 0, 97, 0, 2, 0, 93, 0, 1, 0, 2, 0, 97, 0), 0.0813626, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 28, 0, 9, 0, 11, 0, 2, 0, 9, 0, 28, 0, 28, 0, 0, 0, 2, 0, 9, 0, 28, 0, 11, 0, 9, 0, 2, 0, 28, 0, 0, 0, 28, 0, 2, 0, 50, 0, 5, 0, 4, 0, 8, 0, 5, 0, 50, 0, 50, 0, 6, 0, 8, 0, 5, 0, 50, 0, 4, 0, 5, 0, 8, 0, 50, 0, 6, 0, 50, 0, 8, 0, 8, 0, 7, 0, 56, 0, 56, 0, 9, 0, 8, 0, 56, 0, 10, 0, 9, 0, 7, 0, 8, 0, 56, 0, 9, 0, 56, 0, 8, 0, 10, 0, 56, 0, 9, 0, 8, 0, 9, 0, 2, 0, 2, 0, 5, 0, 8, 0, 89, 0, 3, 0, 5, 0, 5, 0, 2, 0, 89, 0, 2, 0, 1, 0, 89, 0, 3, 0, 89, 0, 5, 0, 2, 0, 5, 0, 89, 0, 1, 0, 2, 0, 89, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 105, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(103, 0, 101, 0, 102, 0, 102, 0, 104, 0, 103, 0, 9, 0, 8, 0, 102, 0, 102, 0, 101, 0, 9, 0, 5, 0, 104, 0, 102, 0, 102, 0, 8, 0, 5, 0, 103, 0, 104, 0, 5, 0, 5, 0, 2, 0, 103, 0, 9, 0, 101, 0, 103, 0, 103, 0, 2, 0, 9, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 105, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_jjyko"] +resource_name = "blockSnowCliff_Mesh blockSnowCliff" +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(154, 12, 35, 64, 35, 127, 145, 193, 159, 12, 35, 192, 35, 127, 145, 193, 11, 242, 38, 181, 140, 107, 199, 193, 11, 242, 38, 181, 140, 107, 199, 193, 159, 12, 35, 192, 35, 127, 145, 193, 154, 12, 35, 64, 35, 127, 145, 193, 180, 12, 35, 64, 35, 127, 145, 193, 135, 12, 35, 192, 35, 127, 145, 193, 238, 29, 153, 54, 139, 107, 199, 193, 238, 29, 153, 54, 139, 107, 199, 193, 135, 12, 35, 192, 35, 127, 145, 193, 180, 12, 35, 64, 35, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 0, 56, 182, 45, 141, 107, 199, 193, 0, 56, 182, 45, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 8, 31, 204, 181, 140, 107, 199, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 8, 31, 204, 181, 140, 107, 199, 193, 245, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 105, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 148, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 75, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 85, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 153, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 105, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 148, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 75, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 85, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 153, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 239, 102, 56, 65, 212, 36, 98, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 239, 102, 56, 65, 212, 36, 98, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 248, 122, 157, 65, 130, 96, 128, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 11, 6, 186, 193, 244, 122, 157, 193, 9, 6, 186, 193, 165, 0, 132, 65, 154, 91, 111, 193, 168, 199, 109, 65, 132, 53, 105, 193, 10, 53, 83, 65, 81, 204, 100, 193, 239, 102, 56, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 205, 129, 207, 64, 81, 204, 100, 193, 154, 92, 154, 64, 131, 53, 105, 193, 169, 210, 75, 64, 153, 91, 111, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 230, 102, 56, 193, 154, 174, 143, 193, 5, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 160, 0, 132, 193, 55, 19, 137, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 248, 122, 157, 65, 11, 6, 186, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 244, 122, 157, 193, 9, 6, 186, 193, 165, 0, 132, 65, 154, 91, 111, 193, 168, 199, 109, 65, 132, 53, 105, 193, 10, 53, 83, 65, 81, 204, 100, 193, 239, 102, 56, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 205, 129, 207, 64, 81, 204, 100, 193, 154, 92, 154, 64, 131, 53, 105, 193, 169, 210, 75, 64, 153, 91, 111, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 230, 102, 56, 193, 154, 174, 143, 193, 5, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 160, 0, 132, 193, 55, 19, 137, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 111, 226, 144, 193, 61, 37, 133, 193, 164, 0, 132, 193, 70, 19, 137, 193, 165, 199, 109, 193, 74, 38, 140, 193, 7, 53, 83, 193, 229, 90, 142, 193, 245, 122, 157, 65, 21, 6, 186, 193, 236, 102, 56, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 2, 143, 2, 193, 163, 174, 143, 193, 198, 129, 207, 192, 229, 90, 142, 193, 146, 92, 154, 192, 73, 38, 140, 193, 155, 210, 75, 192, 70, 19, 137, 193, 88, 136, 201, 191, 61, 37, 133, 193, 21, 119, 135, 181, 140, 96, 128, 193, 72, 136, 201, 63, 184, 55, 119, 193, 147, 210, 75, 64, 169, 91, 111, 193, 142, 92, 154, 64, 159, 53, 105, 193, 194, 129, 207, 64, 105, 204, 100, 193, 0, 143, 2, 65, 240, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 233, 102, 56, 65, 239, 36, 98, 193, 9, 53, 83, 65, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 162, 0, 132, 65, 169, 91, 111, 193, 112, 226, 144, 65, 184, 55, 119, 193, 245, 122, 157, 65, 140, 96, 128, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 21, 6, 186, 193, 246, 122, 157, 193, 140, 96, 128, 193, 164, 0, 132, 193, 70, 19, 137, 193, 165, 199, 109, 193, 74, 38, 140, 193, 7, 53, 83, 193, 229, 90, 142, 193, 245, 122, 157, 65, 21, 6, 186, 193, 236, 102, 56, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 2, 143, 2, 193, 163, 174, 143, 193, 198, 129, 207, 192, 229, 90, 142, 193, 146, 92, 154, 192, 73, 38, 140, 193, 155, 210, 75, 192, 70, 19, 137, 193, 88, 136, 201, 191, 61, 37, 133, 193, 21, 119, 135, 181, 140, 96, 128, 193, 72, 136, 201, 63, 184, 55, 119, 193, 147, 210, 75, 64, 169, 91, 111, 193, 142, 92, 154, 64, 159, 53, 105, 193, 194, 129, 207, 64, 105, 204, 100, 193, 0, 143, 2, 65, 240, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 233, 102, 56, 65, 239, 36, 98, 193, 9, 53, 83, 65, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 162, 0, 132, 65, 169, 91, 111, 193, 112, 226, 144, 65, 184, 55, 119, 193, 245, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 65, 152, 181, 89, 192, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 152, 181, 89, 192, 246, 122, 157, 193, 204, 218, 148, 65, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 128, 68, 45, 246, 122, 13, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 51, 179, 200, 173, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 38, 16, 230, 192, 246, 122, 157, 193, 38, 16, 230, 192, 246, 122, 157, 65, 111, 181, 42, 194, 246, 122, 157, 193, 111, 181, 42, 194), +"format": 4119, +"index_count": 612, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 28, 0, 30, 0, 29, 0, 30, 0, 31, 0, 29, 0, 30, 0, 32, 0, 31, 0, 32, 0, 33, 0, 31, 0, 32, 0, 34, 0, 33, 0, 34, 0, 35, 0, 33, 0, 34, 0, 36, 0, 35, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 37, 0, 38, 0, 39, 0, 37, 0, 39, 0, 40, 0, 37, 0, 40, 0, 41, 0, 37, 0, 41, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 43, 0, 42, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 45, 0, 46, 0, 43, 0, 46, 0, 47, 0, 43, 0, 47, 0, 48, 0, 48, 0, 49, 0, 43, 0, 52, 0, 50, 0, 51, 0, 53, 0, 51, 0, 50, 0, 54, 0, 51, 0, 53, 0, 55, 0, 54, 0, 53, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 57, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 63, 0, 66, 0, 65, 0, 63, 0, 67, 0, 66, 0, 63, 0, 68, 0, 67, 0, 63, 0, 63, 0, 69, 0, 68, 0, 68, 0, 69, 0, 70, 0, 70, 0, 69, 0, 71, 0, 71, 0, 69, 0, 72, 0, 72, 0, 69, 0, 73, 0, 73, 0, 69, 0, 74, 0, 75, 0, 74, 0, 69, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 77, 0, 80, 0, 79, 0, 80, 0, 81, 0, 79, 0, 80, 0, 82, 0, 81, 0, 82, 0, 83, 0, 81, 0, 82, 0, 84, 0, 83, 0, 84, 0, 85, 0, 83, 0, 84, 0, 86, 0, 85, 0, 86, 0, 87, 0, 85, 0, 86, 0, 88, 0, 87, 0, 88, 0, 89, 0, 87, 0, 88, 0, 90, 0, 89, 0, 90, 0, 91, 0, 89, 0, 91, 0, 92, 0, 89, 0, 92, 0, 93, 0, 89, 0, 93, 0, 94, 0, 89, 0, 95, 0, 89, 0, 94, 0, 95, 0, 94, 0, 96, 0, 95, 0, 96, 0, 97, 0, 95, 0, 97, 0, 98, 0, 95, 0, 98, 0, 99, 0, 95, 0, 99, 0, 100, 0, 100, 0, 101, 0, 95, 0, 104, 0, 102, 0, 103, 0, 105, 0, 103, 0, 102, 0, 106, 0, 103, 0, 105, 0, 107, 0, 106, 0, 105, 0, 108, 0, 106, 0, 107, 0, 109, 0, 108, 0, 107, 0, 110, 0, 108, 0, 109, 0, 111, 0, 110, 0, 109, 0, 112, 0, 110, 0, 111, 0, 113, 0, 112, 0, 111, 0, 114, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 114, 0, 115, 0, 117, 0, 116, 0, 115, 0, 118, 0, 117, 0, 115, 0, 119, 0, 118, 0, 115, 0, 120, 0, 119, 0, 115, 0, 115, 0, 121, 0, 120, 0, 120, 0, 121, 0, 122, 0, 122, 0, 121, 0, 123, 0, 123, 0, 121, 0, 124, 0, 124, 0, 121, 0, 125, 0, 125, 0, 121, 0, 126, 0, 127, 0, 126, 0, 121, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 129, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 133, 0, 134, 0, 131, 0, 134, 0, 135, 0, 131, 0, 135, 0, 136, 0, 131, 0, 136, 0, 137, 0, 131, 0, 137, 0, 138, 0, 131, 0, 138, 0, 139, 0, 131, 0, 139, 0, 140, 0, 131, 0, 140, 0, 141, 0, 131, 0, 140, 0, 142, 0, 141, 0, 141, 0, 143, 0, 131, 0, 143, 0, 144, 0, 131, 0, 144, 0, 145, 0, 131, 0, 145, 0, 146, 0, 131, 0, 146, 0, 147, 0, 131, 0, 147, 0, 148, 0, 131, 0, 148, 0, 149, 0, 131, 0, 149, 0, 150, 0, 131, 0, 150, 0, 151, 0, 131, 0, 151, 0, 152, 0, 131, 0, 152, 0, 153, 0, 131, 0, 156, 0, 154, 0, 155, 0, 157, 0, 155, 0, 154, 0, 158, 0, 155, 0, 157, 0, 159, 0, 158, 0, 157, 0, 160, 0, 159, 0, 157, 0, 161, 0, 160, 0, 157, 0, 162, 0, 161, 0, 157, 0, 163, 0, 162, 0, 157, 0, 164, 0, 163, 0, 157, 0, 165, 0, 164, 0, 157, 0, 166, 0, 165, 0, 157, 0, 167, 0, 166, 0, 157, 0, 168, 0, 166, 0, 167, 0, 169, 0, 167, 0, 157, 0, 170, 0, 169, 0, 157, 0, 171, 0, 170, 0, 157, 0, 172, 0, 171, 0, 157, 0, 173, 0, 172, 0, 157, 0, 174, 0, 173, 0, 157, 0, 175, 0, 174, 0, 157, 0, 176, 0, 175, 0, 157, 0, 177, 0, 176, 0, 157, 0, 178, 0, 177, 0, 157, 0, 179, 0, 178, 0, 157, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 187, 0, 186, 0, 185, 0, 188, 0, 187, 0, 185, 0, 189, 0, 188, 0, 185, 0, 185, 0, 190, 0, 189, 0, 190, 0, 191, 0, 189, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 190, 0, 194, 0, 193, 0, 190, 0, 195, 0, 194, 0, 190, 0, 196, 0, 195, 0, 190, 0, 197, 0, 196, 0, 190, 0, 198, 0, 197, 0, 190, 0, 199, 0, 198, 0, 190, 0, 200, 0, 199, 0, 190, 0, 201, 0, 200, 0, 190, 0, 202, 0, 201, 0, 190, 0, 203, 0, 202, 0, 190, 0, 204, 0, 203, 0, 190, 0, 205, 0, 204, 0, 190, 0, 206, 0, 205, 0, 190, 0, 207, 0, 206, 0, 190, 0, 208, 0, 207, 0, 190, 0, 209, 0, 208, 0, 190, 0, 210, 0, 209, 0, 213, 0, 211, 0, 212, 0, 211, 0, 214, 0, 212, 0, 214, 0, 215, 0, 212, 0, 215, 0, 216, 0, 212, 0, 217, 0, 212, 0, 216, 0, 218, 0, 217, 0, 216, 0, 219, 0, 217, 0, 218, 0, 220, 0, 217, 0, 219, 0, 221, 0, 217, 0, 220, 0, 222, 0, 217, 0, 221, 0, 223, 0, 217, 0, 222, 0, 224, 0, 217, 0, 223, 0, 225, 0, 217, 0, 224, 0, 226, 0, 217, 0, 225, 0, 227, 0, 217, 0, 226, 0, 228, 0, 217, 0, 227, 0, 229, 0, 217, 0, 228, 0, 230, 0, 217, 0, 229, 0, 231, 0, 217, 0, 230, 0, 232, 0, 217, 0, 231, 0, 233, 0, 217, 0, 232, 0, 234, 0, 217, 0, 233, 0, 235, 0, 217, 0, 234, 0, 236, 0, 217, 0, 235, 0, 237, 0, 217, 0, 236, 0), +"lods": [0.00289745, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 28, 0, 29, 0, 26, 0, 28, 0, 32, 0, 29, 0, 32, 0, 33, 0, 29, 0, 32, 0, 36, 0, 33, 0, 36, 0, 35, 0, 33, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 37, 0, 38, 0, 40, 0, 37, 0, 40, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 43, 0, 42, 0, 46, 0, 43, 0, 46, 0, 48, 0, 48, 0, 49, 0, 43, 0, 55, 0, 54, 0, 50, 0, 58, 0, 54, 0, 55, 0, 59, 0, 58, 0, 55, 0, 62, 0, 58, 0, 59, 0, 61, 0, 62, 0, 59, 0, 63, 0, 62, 0, 61, 0, 64, 0, 62, 0, 63, 0, 66, 0, 64, 0, 63, 0, 68, 0, 66, 0, 63, 0, 63, 0, 69, 0, 68, 0, 68, 0, 69, 0, 72, 0, 72, 0, 69, 0, 74, 0, 75, 0, 74, 0, 69, 0, 80, 0, 81, 0, 78, 0, 80, 0, 84, 0, 81, 0, 84, 0, 85, 0, 81, 0, 84, 0, 88, 0, 85, 0, 88, 0, 87, 0, 85, 0, 88, 0, 89, 0, 87, 0, 88, 0, 90, 0, 89, 0, 90, 0, 92, 0, 89, 0, 92, 0, 94, 0, 89, 0, 95, 0, 89, 0, 94, 0, 95, 0, 94, 0, 98, 0, 95, 0, 98, 0, 100, 0, 100, 0, 101, 0, 95, 0, 107, 0, 106, 0, 102, 0, 110, 0, 106, 0, 107, 0, 111, 0, 110, 0, 107, 0, 114, 0, 110, 0, 111, 0, 113, 0, 114, 0, 111, 0, 115, 0, 114, 0, 113, 0, 116, 0, 114, 0, 115, 0, 118, 0, 116, 0, 115, 0, 120, 0, 118, 0, 115, 0, 115, 0, 121, 0, 120, 0, 120, 0, 121, 0, 124, 0, 124, 0, 121, 0, 126, 0, 127, 0, 126, 0, 121, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 129, 0, 133, 0, 131, 0, 133, 0, 135, 0, 131, 0, 135, 0, 137, 0, 131, 0, 137, 0, 138, 0, 131, 0, 138, 0, 140, 0, 131, 0, 140, 0, 141, 0, 131, 0, 141, 0, 144, 0, 131, 0, 144, 0, 146, 0, 131, 0, 146, 0, 148, 0, 131, 0, 148, 0, 150, 0, 131, 0, 150, 0, 152, 0, 131, 0, 152, 0, 153, 0, 131, 0, 156, 0, 154, 0, 155, 0, 157, 0, 155, 0, 154, 0, 159, 0, 155, 0, 157, 0, 161, 0, 159, 0, 157, 0, 163, 0, 161, 0, 157, 0, 164, 0, 163, 0, 157, 0, 166, 0, 164, 0, 157, 0, 167, 0, 166, 0, 157, 0, 170, 0, 167, 0, 157, 0, 172, 0, 170, 0, 157, 0, 174, 0, 172, 0, 157, 0, 176, 0, 174, 0, 157, 0, 178, 0, 176, 0, 157, 0, 179, 0, 178, 0, 157, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 188, 0, 186, 0, 185, 0, 189, 0, 188, 0, 185, 0, 185, 0, 190, 0, 189, 0, 190, 0, 192, 0, 189, 0, 190, 0, 193, 0, 192, 0, 190, 0, 194, 0, 193, 0, 190, 0, 195, 0, 194, 0, 190, 0, 196, 0, 195, 0, 190, 0, 197, 0, 196, 0, 190, 0, 198, 0, 197, 0, 190, 0, 199, 0, 198, 0, 190, 0, 200, 0, 199, 0, 190, 0, 201, 0, 200, 0, 190, 0, 202, 0, 201, 0, 190, 0, 203, 0, 202, 0, 190, 0, 204, 0, 203, 0, 190, 0, 205, 0, 204, 0, 190, 0, 206, 0, 205, 0, 190, 0, 207, 0, 206, 0, 190, 0, 208, 0, 207, 0, 190, 0, 209, 0, 208, 0, 190, 0, 210, 0, 209, 0, 213, 0, 211, 0, 212, 0, 211, 0, 215, 0, 212, 0, 215, 0, 216, 0, 212, 0, 217, 0, 212, 0, 216, 0, 219, 0, 217, 0, 216, 0, 220, 0, 217, 0, 219, 0, 221, 0, 217, 0, 220, 0, 222, 0, 217, 0, 221, 0, 223, 0, 217, 0, 222, 0, 224, 0, 217, 0, 223, 0, 225, 0, 217, 0, 224, 0, 226, 0, 217, 0, 225, 0, 227, 0, 217, 0, 226, 0, 228, 0, 217, 0, 227, 0, 229, 0, 217, 0, 228, 0, 230, 0, 217, 0, 229, 0, 231, 0, 217, 0, 230, 0, 232, 0, 217, 0, 231, 0, 233, 0, 217, 0, 232, 0, 234, 0, 217, 0, 233, 0, 235, 0, 217, 0, 234, 0, 236, 0, 217, 0, 235, 0, 237, 0, 217, 0, 236, 0), 0.0157448, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 36, 0, 35, 0, 33, 0, 36, 0, 37, 0, 35, 0, 36, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 43, 0, 42, 0, 48, 0, 48, 0, 49, 0, 43, 0, 61, 0, 62, 0, 59, 0, 63, 0, 62, 0, 61, 0, 68, 0, 62, 0, 63, 0, 63, 0, 69, 0, 68, 0, 68, 0, 69, 0, 74, 0, 75, 0, 74, 0, 69, 0, 84, 0, 88, 0, 85, 0, 88, 0, 87, 0, 85, 0, 88, 0, 89, 0, 87, 0, 88, 0, 94, 0, 89, 0, 95, 0, 89, 0, 94, 0, 95, 0, 94, 0, 100, 0, 100, 0, 101, 0, 95, 0, 114, 0, 110, 0, 111, 0, 113, 0, 114, 0, 111, 0, 115, 0, 114, 0, 113, 0, 120, 0, 114, 0, 115, 0, 115, 0, 121, 0, 120, 0, 120, 0, 121, 0, 126, 0, 127, 0, 126, 0, 121, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 129, 0, 135, 0, 131, 0, 135, 0, 138, 0, 131, 0, 138, 0, 146, 0, 131, 0, 146, 0, 150, 0, 131, 0, 150, 0, 152, 0, 131, 0, 152, 0, 153, 0, 131, 0, 156, 0, 154, 0, 155, 0, 157, 0, 155, 0, 154, 0, 161, 0, 155, 0, 157, 0, 164, 0, 161, 0, 157, 0, 172, 0, 164, 0, 157, 0, 176, 0, 172, 0, 157, 0, 178, 0, 176, 0, 157, 0, 179, 0, 178, 0, 157, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 189, 0, 186, 0, 185, 0, 185, 0, 190, 0, 189, 0, 190, 0, 197, 0, 189, 0, 190, 0, 198, 0, 197, 0, 190, 0, 202, 0, 198, 0, 190, 0, 206, 0, 202, 0, 190, 0, 210, 0, 206, 0, 213, 0, 211, 0, 212, 0, 211, 0, 216, 0, 212, 0, 217, 0, 212, 0, 216, 0, 224, 0, 217, 0, 216, 0, 225, 0, 217, 0, 224, 0, 229, 0, 217, 0, 225, 0, 233, 0, 217, 0, 229, 0, 237, 0, 217, 0, 233, 0), 0.0813626, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 42, 0, 37, 0, 35, 0, 43, 0, 37, 0, 42, 0, 42, 0, 49, 0, 43, 0, 63, 0, 68, 0, 61, 0, 63, 0, 69, 0, 68, 0, 75, 0, 68, 0, 69, 0, 94, 0, 89, 0, 87, 0, 95, 0, 89, 0, 94, 0, 94, 0, 101, 0, 95, 0, 115, 0, 120, 0, 113, 0, 115, 0, 121, 0, 120, 0, 127, 0, 120, 0, 121, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 129, 0, 153, 0, 131, 0, 156, 0, 154, 0, 155, 0, 157, 0, 155, 0, 154, 0, 179, 0, 155, 0, 157, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 198, 0, 184, 0, 185, 0, 185, 0, 190, 0, 198, 0, 190, 0, 210, 0, 198, 0, 213, 0, 225, 0, 212, 0, 217, 0, 212, 0, 225, 0, 237, 0, 217, 0, 225, 0)], +"material": SubResource("StandardMaterial3D_mkfpp"), +"name": "snow", +"primitive": 3, +"vertex_count": 258, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 255, 127, 217, 174, 254, 255, 255, 191, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 255, 127, 217, 174, 254, 255, 255, 191, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 255, 127, 217, 174, 254, 255, 255, 191, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 255, 127, 217, 174, 254, 255, 255, 191, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 37, 209, 0, 0, 254, 255, 255, 63, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 37, 209, 0, 0, 254, 255, 255, 63, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 37, 209, 0, 0, 254, 255, 255, 63, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 255, 127, 255, 191, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 255, 127, 255, 191, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 217, 46, 217, 174, 255, 127, 255, 191, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 255, 127, 255, 191, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 255, 127, 255, 191, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 255, 127, 255, 191, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 255, 127, 255, 191, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 255, 127, 255, 191, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 255, 127, 254, 191, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 255, 127, 255, 191, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 255, 127, 255, 191, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 255, 127, 255, 191, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 255, 127, 255, 191, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 255, 127, 255, 191, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 255, 127, 255, 191, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 217, 46, 217, 174, 255, 127, 255, 191, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 255, 127, 255, 191, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 255, 127, 255, 191, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 255, 127, 255, 63, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 255, 127, 255, 63, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 37, 209, 37, 81, 255, 127, 255, 63, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 255, 127, 255, 63, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 255, 127, 255, 63, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 255, 127, 255, 63, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 255, 127, 255, 63, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 255, 127, 255, 63, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 255, 127, 0, 64, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 255, 127, 255, 63, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 255, 127, 255, 63, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 255, 127, 255, 63, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 255, 127, 255, 63, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 255, 127, 255, 63, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 255, 127, 255, 63, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 37, 209, 37, 81, 255, 127, 255, 63, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 255, 127, 255, 63, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 255, 127, 255, 63, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 37, 209, 217, 174, 254, 255, 0, 128, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 37, 209, 217, 174, 254, 255, 0, 128, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 37, 209, 217, 174, 254, 255, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 37, 209, 217, 174, 255, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 255, 255, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 37, 209, 217, 174, 254, 255, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 254, 255, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 37, 209, 217, 174, 254, 255, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 37, 209, 217, 174, 0, 0, 255, 255, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 37, 209, 217, 174, 0, 0, 254, 255, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 37, 209, 217, 174, 254, 255, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 37, 209, 217, 174, 0, 0, 254, 255, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 37, 209, 217, 174, 0, 0, 255, 255, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 37, 209, 217, 174, 254, 255, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 37, 209, 217, 174, 0, 0, 255, 255, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 37, 209, 217, 174, 0, 0, 255, 255, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 37, 209, 217, 174, 254, 255, 0, 128, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 37, 209, 217, 174, 0, 0, 255, 255, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 255, 255, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 37, 209, 217, 174, 0, 0, 254, 255, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 37, 209, 217, 174, 254, 255, 0, 128, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 37, 209, 217, 174, 254, 255, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 37, 209, 217, 174, 254, 255, 0, 128, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 37, 209, 217, 174, 0, 0, 254, 255, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 254, 255, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 217, 46, 37, 81, 254, 255, 254, 127, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 217, 46, 37, 81, 254, 255, 254, 127, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 217, 46, 37, 81, 254, 255, 254, 127, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 217, 46, 37, 81, 255, 255, 254, 127, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 217, 46, 37, 81, 255, 255, 254, 127, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 0, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 217, 46, 37, 81, 254, 255, 254, 127, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 217, 46, 37, 81, 0, 0, 0, 0, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 217, 46, 37, 81, 0, 0, 0, 0, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 217, 46, 37, 81, 254, 255, 254, 127, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 217, 46, 37, 81, 0, 0, 0, 0, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 217, 46, 37, 81, 254, 255, 254, 127, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 217, 46, 37, 81, 0, 0, 0, 0, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 217, 46, 37, 81, 0, 0, 0, 0, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 217, 46, 37, 81, 254, 255, 254, 127, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 217, 46, 37, 81, 0, 0, 0, 0, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 0, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 217, 46, 37, 81, 0, 0, 0, 0, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 217, 46, 37, 81, 254, 255, 254, 127, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 217, 46, 37, 81, 254, 255, 254, 127, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 217, 46, 37, 81, 254, 255, 254, 127, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, 0, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(154, 12, 35, 64, 35, 127, 145, 193, 159, 12, 35, 192, 35, 127, 145, 193, 11, 242, 38, 181, 140, 107, 199, 193, 11, 242, 38, 181, 140, 107, 199, 193, 159, 12, 35, 192, 35, 127, 145, 193, 154, 12, 35, 64, 35, 127, 145, 193, 180, 12, 35, 64, 35, 127, 145, 193, 135, 12, 35, 192, 35, 127, 145, 193, 238, 29, 153, 54, 139, 107, 199, 193, 238, 29, 153, 54, 139, 107, 199, 193, 135, 12, 35, 192, 35, 127, 145, 193, 180, 12, 35, 64, 35, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 155, 12, 35, 192, 36, 127, 145, 193, 0, 56, 182, 45, 141, 107, 199, 193, 0, 56, 182, 45, 141, 107, 199, 193, 155, 12, 35, 192, 36, 127, 145, 193, 155, 12, 35, 64, 36, 127, 145, 193, 8, 31, 204, 181, 140, 107, 199, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 8, 31, 204, 181, 140, 107, 199, 193, 245, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 105, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 148, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 75, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 85, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 153, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 105, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 148, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 75, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 85, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 153, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 239, 102, 56, 65, 212, 36, 98, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 239, 102, 56, 65, 212, 36, 98, 193, 6, 143, 2, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 15, 53, 83, 65, 81, 204, 100, 193, 205, 129, 207, 64, 81, 204, 100, 193, 168, 199, 109, 65, 132, 53, 105, 193, 154, 92, 154, 64, 131, 53, 105, 193, 165, 0, 132, 65, 154, 91, 111, 193, 169, 210, 75, 64, 153, 91, 111, 193, 115, 226, 144, 65, 158, 55, 119, 193, 117, 136, 201, 63, 156, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 44, 136, 201, 191, 52, 37, 133, 193, 248, 122, 157, 65, 11, 6, 186, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 244, 122, 157, 193, 9, 6, 186, 193, 230, 102, 56, 193, 154, 174, 143, 193, 1, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 161, 0, 132, 193, 55, 19, 137, 193, 109, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 248, 122, 157, 65, 130, 96, 128, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 11, 6, 186, 193, 244, 122, 157, 193, 9, 6, 186, 193, 165, 0, 132, 65, 154, 91, 111, 193, 168, 199, 109, 65, 132, 53, 105, 193, 10, 53, 83, 65, 81, 204, 100, 193, 239, 102, 56, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 205, 129, 207, 64, 81, 204, 100, 193, 154, 92, 154, 64, 131, 53, 105, 193, 169, 210, 75, 64, 153, 91, 111, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 230, 102, 56, 193, 154, 174, 143, 193, 5, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 160, 0, 132, 193, 55, 19, 137, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 248, 122, 157, 65, 11, 6, 186, 193, 113, 226, 144, 65, 158, 55, 119, 193, 248, 122, 157, 65, 130, 96, 128, 193, 244, 122, 157, 193, 9, 6, 186, 193, 165, 0, 132, 65, 154, 91, 111, 193, 168, 199, 109, 65, 132, 53, 105, 193, 10, 53, 83, 65, 81, 204, 100, 193, 239, 102, 56, 65, 212, 36, 98, 193, 251, 122, 29, 65, 4, 66, 97, 193, 6, 143, 2, 65, 212, 36, 98, 193, 205, 129, 207, 64, 81, 204, 100, 193, 154, 92, 154, 64, 131, 53, 105, 193, 169, 210, 75, 64, 153, 91, 111, 193, 44, 136, 201, 191, 52, 37, 133, 193, 117, 136, 201, 63, 156, 55, 119, 193, 133, 210, 75, 192, 56, 19, 137, 193, 135, 92, 154, 192, 65, 38, 140, 193, 187, 129, 207, 192, 218, 90, 142, 193, 253, 142, 2, 193, 154, 174, 143, 193, 242, 122, 29, 193, 0, 32, 144, 193, 230, 102, 56, 193, 154, 174, 143, 193, 5, 53, 83, 193, 218, 90, 142, 193, 159, 199, 109, 193, 65, 38, 140, 193, 160, 0, 132, 193, 55, 19, 137, 193, 110, 226, 144, 193, 52, 37, 133, 193, 244, 122, 157, 193, 128, 96, 128, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 111, 226, 144, 193, 61, 37, 133, 193, 164, 0, 132, 193, 70, 19, 137, 193, 165, 199, 109, 193, 74, 38, 140, 193, 7, 53, 83, 193, 229, 90, 142, 193, 245, 122, 157, 65, 21, 6, 186, 193, 236, 102, 56, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 2, 143, 2, 193, 163, 174, 143, 193, 198, 129, 207, 192, 229, 90, 142, 193, 146, 92, 154, 192, 73, 38, 140, 193, 155, 210, 75, 192, 70, 19, 137, 193, 88, 136, 201, 191, 61, 37, 133, 193, 21, 119, 135, 181, 140, 96, 128, 193, 72, 136, 201, 63, 184, 55, 119, 193, 147, 210, 75, 64, 169, 91, 111, 193, 142, 92, 154, 64, 159, 53, 105, 193, 194, 129, 207, 64, 105, 204, 100, 193, 0, 143, 2, 65, 240, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 233, 102, 56, 65, 239, 36, 98, 193, 9, 53, 83, 65, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 162, 0, 132, 65, 169, 91, 111, 193, 112, 226, 144, 65, 184, 55, 119, 193, 245, 122, 157, 65, 140, 96, 128, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 21, 6, 186, 193, 246, 122, 157, 193, 140, 96, 128, 193, 164, 0, 132, 193, 70, 19, 137, 193, 165, 199, 109, 193, 74, 38, 140, 193, 7, 53, 83, 193, 229, 90, 142, 193, 245, 122, 157, 65, 21, 6, 186, 193, 236, 102, 56, 193, 163, 174, 143, 193, 247, 122, 29, 193, 12, 32, 144, 193, 2, 143, 2, 193, 163, 174, 143, 193, 198, 129, 207, 192, 229, 90, 142, 193, 146, 92, 154, 192, 73, 38, 140, 193, 155, 210, 75, 192, 70, 19, 137, 193, 88, 136, 201, 191, 61, 37, 133, 193, 21, 119, 135, 181, 140, 96, 128, 193, 72, 136, 201, 63, 184, 55, 119, 193, 147, 210, 75, 64, 169, 91, 111, 193, 142, 92, 154, 64, 159, 53, 105, 193, 194, 129, 207, 64, 105, 204, 100, 193, 0, 143, 2, 65, 240, 36, 98, 193, 245, 122, 29, 65, 26, 66, 97, 193, 233, 102, 56, 65, 239, 36, 98, 193, 9, 53, 83, 65, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 162, 0, 132, 65, 169, 91, 111, 193, 112, 226, 144, 65, 184, 55, 119, 193, 245, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 65, 152, 181, 89, 192, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 152, 181, 89, 192, 246, 122, 157, 193, 204, 218, 148, 65, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 128, 68, 45, 246, 122, 13, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 51, 179, 200, 173, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 38, 16, 230, 192, 246, 122, 157, 193, 38, 16, 230, 192, 246, 122, 157, 65, 111, 181, 42, 194, 246, 122, 157, 193, 111, 181, 42, 194), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(240, 0, 238, 0, 239, 0, 239, 0, 241, 0, 240, 0, 244, 0, 242, 0, 243, 0, 243, 0, 245, 0, 244, 0, 248, 0, 246, 0, 247, 0, 247, 0, 249, 0, 248, 0, 252, 0, 250, 0, 251, 0, 251, 0, 253, 0, 252, 0, 0, 1, 254, 0, 255, 0, 255, 0, 1, 1, 0, 1), +"material": SubResource("StandardMaterial3D_yl4ug"), +"name": "dirt", +"primitive": 3, +"vertex_count": 258, +"vertex_data": PackedByteArray(0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 34, 166, 76, 63, 197, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 190, 34, 166, 76, 63, 197, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 77, 171, 171, 190, 70, 149, 77, 63, 179, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 190, 70, 149, 77, 63, 179, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 190, 180, 34, 79, 63, 62, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 189, 180, 34, 79, 63, 62, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 190, 177, 76, 81, 63, 103, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 189, 177, 76, 81, 63, 103, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 53, 134, 235, 190, 215, 16, 84, 63, 141, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 189, 215, 16, 84, 63, 141, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 61, 88, 199, 90, 63, 96, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 61, 127, 139, 93, 63, 134, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 61, 123, 181, 95, 63, 174, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 62, 233, 66, 97, 63, 57, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 62, 14, 50, 98, 63, 38, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 200, 225, 149, 62, 14, 50, 98, 63, 38, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 80, 171, 171, 62, 233, 66, 97, 63, 57, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 62, 123, 181, 95, 63, 174, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 62, 127, 139, 93, 63, 134, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 57, 134, 235, 62, 88, 199, 90, 63, 96, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 202, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 202, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 62, 70, 149, 77, 63, 181, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 181, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 68, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 68, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 98, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 98, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 62, 215, 16, 84, 63, 146, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 146, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 91, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 139, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 169, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 56, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 34, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 34, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 190, 233, 66, 97, 63, 56, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 169, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 139, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 190, 88, 199, 90, 63, 91, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 0, 0, 0, 128, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 0, 0, 0, 128, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 217, 46, 217, 174, 0, 0, 0, 128, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 0, 0, 0, 128, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 0, 0, 0, 128, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 0, 0, 0, 128, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 0, 0, 0, 128, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 0, 0, 0, 128, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 0, 0, 0, 128, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 0, 0, 0, 128, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 0, 0, 0, 128, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 0, 0, 0, 128, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 0, 0, 0, 128, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 217, 46, 217, 174, 0, 0, 0, 128, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 0, 0, 0, 128, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 0, 0, 0, 128, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 146, 93, 25, 191, 215, 16, 84, 63, 53, 134, 235, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 98, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 0, 0, 0, 128, 68, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 0, 0, 0, 128, 181, 27, 29, 191, 70, 149, 77, 63, 77, 171, 171, 62, 37, 209, 37, 81, 0, 0, 0, 128, 202, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 202, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 0, 0, 0, 128, 181, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 0, 0, 0, 128, 68, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 0, 0, 0, 128, 98, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 0, 0, 0, 128, 91, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 0, 0, 0, 128, 146, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 0, 0, 0, 128, 139, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 0, 0, 0, 128, 169, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 0, 0, 0, 128, 56, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 0, 0, 0, 128, 34, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 34, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 0, 0, 0, 128, 56, 191, 17, 191, 233, 66, 97, 63, 80, 171, 171, 190, 37, 209, 37, 81, 0, 0, 0, 128, 169, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 0, 0, 0, 128, 139, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 0, 0, 0, 128, 91, 125, 21, 191, 88, 199, 90, 63, 57, 134, 235, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 37, 209, 217, 174, 0, 0, 0, 128, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 37, 209, 217, 174, 0, 0, 0, 128, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 37, 209, 217, 174, 0, 0, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 37, 209, 217, 174, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 37, 209, 217, 174, 0, 0, 0, 128, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 37, 209, 217, 174, 0, 0, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 37, 209, 217, 174, 0, 0, 0, 128, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 37, 209, 217, 174, 0, 0, 0, 128, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 37, 209, 217, 174, 0, 0, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 37, 209, 217, 174, 0, 0, 0, 128, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 37, 209, 217, 174, 0, 0, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 37, 209, 217, 174, 0, 0, 0, 128, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 37, 209, 217, 174, 0, 0, 0, 128, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 37, 209, 217, 174, 0, 0, 0, 128, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 37, 209, 217, 174, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 37, 209, 217, 174, 0, 0, 0, 128, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 37, 209, 217, 174, 0, 0, 0, 128, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 37, 209, 217, 174, 0, 0, 0, 128, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 37, 209, 217, 174, 0, 0, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 37, 209, 217, 174, 0, 0, 0, 128, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 217, 174, 0, 0, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 53, 134, 235, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 119, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 134, 228, 19, 63, 127, 139, 93, 63, 79, 149, 214, 62, 217, 46, 37, 81, 0, 0, 0, 128, 174, 164, 18, 63, 123, 181, 95, 63, 120, 68, 193, 62, 217, 46, 37, 81, 0, 0, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 77, 171, 171, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 39, 53, 17, 63, 14, 50, 98, 63, 200, 225, 149, 62, 217, 46, 37, 81, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 128, 62, 217, 46, 37, 81, 0, 0, 0, 128, 39, 53, 17, 63, 14, 50, 98, 63, 111, 60, 84, 62, 217, 46, 37, 81, 0, 0, 0, 128, 58, 191, 17, 63, 233, 66, 97, 63, 95, 169, 40, 62, 217, 46, 37, 81, 0, 0, 0, 128, 174, 164, 18, 63, 123, 181, 95, 63, 32, 238, 250, 61, 217, 46, 37, 81, 0, 0, 0, 128, 134, 228, 19, 63, 127, 139, 93, 63, 194, 170, 165, 61, 217, 46, 37, 81, 0, 0, 0, 128, 96, 125, 21, 63, 88, 199, 90, 63, 59, 206, 35, 61, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 151, 110, 154, 42, 217, 46, 37, 81, 0, 0, 0, 128, 141, 93, 25, 63, 215, 16, 84, 63, 59, 206, 35, 189, 217, 46, 37, 81, 0, 0, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 194, 170, 165, 189, 217, 46, 37, 81, 0, 0, 0, 128, 62, 54, 28, 63, 180, 34, 79, 63, 32, 238, 250, 189, 217, 46, 37, 81, 0, 0, 0, 128, 179, 27, 29, 63, 70, 149, 77, 63, 95, 169, 40, 190, 217, 46, 37, 81, 0, 0, 0, 128, 197, 165, 29, 63, 34, 166, 76, 63, 111, 60, 84, 190, 217, 46, 37, 81, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 128, 190, 217, 46, 37, 81, 0, 0, 0, 128, 197, 165, 29, 63, 34, 166, 76, 63, 200, 225, 149, 190, 217, 46, 37, 81, 0, 0, 0, 128, 179, 27, 29, 63, 70, 149, 77, 63, 80, 171, 171, 190, 217, 46, 37, 81, 0, 0, 0, 128, 62, 54, 28, 63, 180, 34, 79, 63, 120, 68, 193, 190, 217, 46, 37, 81, 0, 0, 0, 128, 103, 246, 26, 63, 177, 76, 81, 63, 79, 149, 214, 190, 217, 46, 37, 81, 0, 0, 0, 128, 141, 93, 25, 63, 215, 16, 84, 63, 57, 134, 235, 190, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 169, 170, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 128, 62, 141, 151, 164, 42, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 62, 171, 62, 155, 42, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 191, 204, 204, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_5ynsn") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_j3olc"] +data = PackedVector3Array(0.5, 1, -0.5, 0.5, 0.8415, -0.5915, 0.5915, 0.8415, -0.5, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 0.8415, -0.5915, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, -0.2927, 0.7994, -0.6158, -0.25, 0.7982, -0.6165, -0.2073, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.2927, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.1647, 0.8031, -0.6137, -0.3353, 0.8031, -0.6137, -0.1647, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.3353, 0.8031, -0.6137, -0.1647, 0.8031, -0.6137, -0.1225, 0.8091, -0.6102, -0.3775, 0.8091, -0.6102, -0.1225, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.3775, 0.8091, -0.6102, -0.1225, 0.8091, -0.6102, -0.0809, 0.8176, -0.6053, -0.4191, 0.8176, -0.6053, -0.0809, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.4191, 0.8176, -0.6053, -0.0809, 0.8176, -0.6053, -0.04, 0.8284, -0.5991, -0.46, 0.8284, -0.5991, -0.04, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.46, 0.8284, -0.5991, -0.04, 0.8284, -0.5991, 0.04, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, 0.04, 0.8546, -0.5839, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, 0.04, 0.8546, -0.5839, 0.0809, 0.8654, -0.5777, -0.5, 1, -0.5, 0.0809, 0.8654, -0.5777, 0.1225, 0.8739, -0.5728, -0.5, 1, -0.5, 0.1225, 0.8739, -0.5728, 0.1647, 0.8799, -0.5693, -0.5, 1, -0.5, 0.1647, 0.8799, -0.5693, 0.2073, 0.8836, -0.5672, -0.5, 1, -0.5, 0.2073, 0.8836, -0.5672, 0.25, 0.8848, -0.5665, -0.5, 1, -0.5, 0.5, 1, -0.5, -0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.2927, 0.8836, -0.5672, 0.5, 1, -0.5, 0.2927, 0.8836, -0.5672, 0.3353, 0.8799, -0.5693, 0.5, 1, -0.5, 0.3353, 0.8799, -0.5693, 0.3775, 0.8739, -0.5728, 0.5, 1, -0.5, 0.3775, 0.8739, -0.5728, 0.4191, 0.8654, -0.5777, 0.5, 1, -0.5, 0.4191, 0.8654, -0.5777, 0.46, 0.8546, -0.5839, 0.46, 0.8546, -0.5839, 0.5, 0.8415, -0.5915, 0.5, 1, -0.5, -0.25, 0.7982, -0.6165, -0.2927, 0.7994, -0.6158, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.2073, 0.7994, -0.6158, -0.2927, 0.7994, -0.6158, -0.1647, 0.8031, -0.6137, -0.2073, 0.7994, -0.6158, -0.3353, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.1647, 0.8031, -0.6137, -0.3353, 0.8031, -0.6137, -0.1225, 0.8091, -0.6102, -0.1647, 0.8031, -0.6137, -0.3775, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.1225, 0.8091, -0.6102, -0.3775, 0.8091, -0.6102, -0.0809, 0.8176, -0.6053, -0.1225, 0.8091, -0.6102, -0.4191, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.0809, 0.8176, -0.6053, -0.4191, 0.8176, -0.6053, -0.04, 0.8284, -0.5991, -0.0809, 0.8176, -0.6053, -0.46, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.04, 0.8284, -0.5991, -0.46, 0.8284, -0.5991, 0.04, 0.8546, -0.5839, -0.04, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.5, 1, -0.5, 0.04, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, 0.0809, 0.8654, -0.5777, 0.04, 0.8546, -0.5839, -0.5, 1, -0.5, 0.1225, 0.8739, -0.5728, 0.0809, 0.8654, -0.5777, -0.5, 1, -0.5, 0.1647, 0.8799, -0.5693, 0.1225, 0.8739, -0.5728, -0.5, 1, -0.5, 0.2073, 0.8836, -0.5672, 0.1647, 0.8799, -0.5693, -0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.2073, 0.8836, -0.5672, -0.5, 1, -0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.25, 0.8848, -0.5665, 0.25, 0.8848, -0.5665, 0.5, 1, -0.5, 0.2927, 0.8836, -0.5672, 0.2927, 0.8836, -0.5672, 0.5, 1, -0.5, 0.3353, 0.8799, -0.5693, 0.3353, 0.8799, -0.5693, 0.5, 1, -0.5, 0.3775, 0.8739, -0.5728, 0.3775, 0.8739, -0.5728, 0.5, 1, -0.5, 0.4191, 0.8654, -0.5777, 0.4191, 0.8654, -0.5777, 0.5, 1, -0.5, 0.46, 0.8546, -0.5839, 0.5, 0.8415, -0.5915, 0.46, 0.8546, -0.5839, 0.5, 1, -0.5, 0.2927, 0.7994, 0.6158, 0.25, 0.7982, 0.6165, 0.2073, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.0809, 0.8654, 0.5777, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.25, 0.8848, 0.5665, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.46, 0.8546, 0.5839, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.25, 0.7982, 0.6165, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.2927, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.0809, 0.8654, 0.5777, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.46, 0.8546, 0.5839, -0.5, 1, 0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5991, 0.8284, 0.46, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6053, 0.8176, 0.4191, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5991, 0.8284, 0.04, -0.5839, 0.8546, -0.04, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5777, 0.8654, -0.0809, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5991, 0.8284, 0.46, -0.5, 1, 0.5, -0.6053, 0.8176, 0.4191, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.5991, 0.8284, 0.04, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5839, 0.8546, 0.46, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4191, 0.5839, 0.8546, 0.46, 0.5, 1, 0.5, 0.5728, 0.8739, 0.3775, 0.5777, 0.8654, 0.4191, 0.5, 1, 0.5, 0.5693, 0.8799, 0.3353, 0.5728, 0.8739, 0.3775, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5693, 0.8799, 0.3353, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2927, 0.5693, 0.8799, 0.3353, 0.5, 1, -0.5, 0.5665, 0.8848, 0.25, 0.5672, 0.8836, 0.2927, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2073, 0.5665, 0.8848, 0.25, 0.5, 1, -0.5, 0.5693, 0.8799, 0.1647, 0.5672, 0.8836, 0.2073, 0.5, 1, -0.5, 0.5728, 0.8739, 0.1225, 0.5693, 0.8799, 0.1647, 0.5, 1, -0.5, 0.5777, 0.8654, 0.0809, 0.5728, 0.8739, 0.1225, 0.5, 1, -0.5, 0.5839, 0.8546, 0.04, 0.5777, 0.8654, 0.0809, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.5839, 0.8546, 0.04, 0.5, 1, -0.5, 0.5991, 0.8284, -0.04, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.6053, 0.8176, -0.0809, 0.5991, 0.8284, -0.04, 0.5, 1, -0.5, 0.6102, 0.8091, -0.1225, 0.6053, 0.8176, -0.0809, 0.5, 1, -0.5, 0.6137, 0.8031, -0.1647, 0.6102, 0.8091, -0.1225, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2073, 0.6137, 0.8031, -0.1647, 0.5, 1, -0.5, 0.6165, 0.7982, -0.25, 0.6158, 0.7994, -0.2073, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2927, 0.6165, 0.7982, -0.25, 0.5, 1, -0.5, 0.6137, 0.8031, -0.3353, 0.6158, 0.7994, -0.2927, 0.5, 1, -0.5, 0.6102, 0.8091, -0.3775, 0.6137, 0.8031, -0.3353, 0.5, 1, -0.5, 0.6053, 0.8176, -0.4191, 0.6102, 0.8091, -0.3775, 0.5, 1, -0.5, 0.5991, 0.8284, -0.46, 0.6053, 0.8176, -0.4191, 0.5, 1, -0.5, 0.5915, 0.8415, -0.5, 0.5991, 0.8284, -0.46, 0.5915, 0.8415, 0.5, 0.5839, 0.8546, 0.46, 0.5, 1, 0.5, 0.5839, 0.8546, 0.46, 0.5777, 0.8654, 0.4191, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4191, 0.5728, 0.8739, 0.3775, 0.5, 1, 0.5, 0.5728, 0.8739, 0.3775, 0.5693, 0.8799, 0.3353, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 1, 0.5, 0.5693, 0.8799, 0.3353, 0.5672, 0.8836, 0.2927, 0.5, 1, -0.5, 0.5693, 0.8799, 0.3353, 0.5665, 0.8848, 0.25, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2927, 0.5672, 0.8836, 0.2073, 0.5, 1, -0.5, 0.5665, 0.8848, 0.25, 0.5693, 0.8799, 0.1647, 0.5, 1, -0.5, 0.5672, 0.8836, 0.2073, 0.5728, 0.8739, 0.1225, 0.5, 1, -0.5, 0.5693, 0.8799, 0.1647, 0.5777, 0.8654, 0.0809, 0.5, 1, -0.5, 0.5728, 0.8739, 0.1225, 0.5839, 0.8546, 0.04, 0.5, 1, -0.5, 0.5777, 0.8654, 0.0809, 0.5915, 0.8415, 0, 0.5, 1, -0.5, 0.5839, 0.8546, 0.04, 0.5991, 0.8284, -0.04, 0.5, 1, -0.5, 0.5915, 0.8415, 0, 0.6053, 0.8176, -0.0809, 0.5, 1, -0.5, 0.5991, 0.8284, -0.04, 0.6102, 0.8091, -0.1225, 0.5, 1, -0.5, 0.6053, 0.8176, -0.0809, 0.6137, 0.8031, -0.1647, 0.5, 1, -0.5, 0.6102, 0.8091, -0.1225, 0.6158, 0.7994, -0.2073, 0.5, 1, -0.5, 0.6137, 0.8031, -0.1647, 0.6165, 0.7982, -0.25, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2073, 0.6158, 0.7994, -0.2927, 0.5, 1, -0.5, 0.6165, 0.7982, -0.25, 0.6137, 0.8031, -0.3353, 0.5, 1, -0.5, 0.6158, 0.7994, -0.2927, 0.6102, 0.8091, -0.3775, 0.5, 1, -0.5, 0.6137, 0.8031, -0.3353, 0.6053, 0.8176, -0.4191, 0.5, 1, -0.5, 0.6102, 0.8091, -0.3775, 0.5991, 0.8284, -0.46, 0.5, 1, -0.5, 0.6053, 0.8176, -0.4191, 0.5915, 0.8415, -0.5, 0.5, 1, -0.5, 0.5991, 0.8284, -0.46, 0.5, 0.25, 0, -0.5, 0.25, 0, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0.25, 0, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.25, 0, -0.5, 1, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 0.25, 0, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, -0.5, 0.5, 0.25, 0, -0.5, 1, -0.5, -0.5, 0.25, 0, 0.5, 0.25, 0, 0.5, 0.25, 0, 0.5, 1, -0.5, -0.5, 1, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s04bj"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qvitn"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_kmqxh"] +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.554541, 1.18122, 1, 1.17106), +"format": 4097, +"index_count": 513, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 4, 0, 6, 0, 2, 0, 6, 0, 7, 0, 8, 0, 7, 0, 6, 0, 8, 0, 9, 0, 5, 0, 4, 0, 10, 0, 9, 0, 4, 0, 11, 0, 10, 0, 4, 0, 12, 0, 11, 0, 4, 0, 4, 0, 2, 0, 12, 0, 2, 0, 13, 0, 12, 0, 2, 0, 14, 0, 13, 0, 2, 0, 15, 0, 14, 0, 2, 0, 16, 0, 15, 0, 2, 0, 17, 0, 16, 0, 2, 0, 18, 0, 17, 0, 2, 0, 19, 0, 18, 0, 2, 0, 20, 0, 19, 0, 2, 0, 21, 0, 20, 0, 2, 0, 22, 0, 21, 0, 2, 0, 23, 0, 22, 0, 2, 0, 24, 0, 23, 0, 2, 0, 25, 0, 24, 0, 2, 0, 26, 0, 25, 0, 2, 0, 27, 0, 26, 0, 2, 0, 28, 0, 27, 0, 2, 0, 29, 0, 28, 0, 2, 0, 30, 0, 29, 0, 2, 0, 31, 0, 30, 0, 2, 0, 32, 0, 31, 0, 2, 0, 33, 0, 32, 0, 2, 0, 34, 0, 33, 0, 2, 0, 35, 0, 34, 0, 2, 0, 36, 0, 35, 0, 2, 0, 37, 0, 36, 0, 2, 0, 38, 0, 37, 0, 2, 0, 39, 0, 38, 0, 2, 0, 1, 0, 39, 0, 5, 0, 9, 0, 4, 0, 9, 0, 10, 0, 4, 0, 10, 0, 11, 0, 4, 0, 11, 0, 12, 0, 4, 0, 2, 0, 4, 0, 12, 0, 13, 0, 2, 0, 12, 0, 14, 0, 2, 0, 13, 0, 15, 0, 2, 0, 14, 0, 16, 0, 2, 0, 15, 0, 17, 0, 2, 0, 16, 0, 18, 0, 2, 0, 17, 0, 19, 0, 2, 0, 18, 0, 20, 0, 2, 0, 19, 0, 21, 0, 2, 0, 20, 0, 22, 0, 2, 0, 21, 0, 23, 0, 2, 0, 22, 0, 24, 0, 2, 0, 23, 0, 25, 0, 2, 0, 24, 0, 26, 0, 2, 0, 25, 0, 27, 0, 2, 0, 26, 0, 28, 0, 2, 0, 27, 0, 29, 0, 2, 0, 28, 0, 30, 0, 2, 0, 29, 0, 31, 0, 2, 0, 30, 0, 32, 0, 2, 0, 31, 0, 33, 0, 2, 0, 32, 0, 34, 0, 2, 0, 33, 0, 35, 0, 2, 0, 34, 0, 36, 0, 2, 0, 35, 0, 37, 0, 2, 0, 36, 0, 38, 0, 2, 0, 37, 0, 39, 0, 2, 0, 38, 0, 1, 0, 2, 0, 39, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 41, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 44, 0, 46, 0, 45, 0, 46, 0, 47, 0, 45, 0, 46, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 48, 0, 50, 0, 49, 0, 50, 0, 3, 0, 49, 0, 50, 0, 51, 0, 3, 0, 51, 0, 4, 0, 3, 0, 51, 0, 52, 0, 4, 0, 52, 0, 53, 0, 4, 0, 53, 0, 54, 0, 4, 0, 54, 0, 55, 0, 4, 0, 55, 0, 56, 0, 4, 0, 6, 0, 4, 0, 56, 0, 6, 0, 56, 0, 57, 0, 6, 0, 57, 0, 58, 0, 6, 0, 58, 0, 59, 0, 6, 0, 59, 0, 60, 0, 6, 0, 60, 0, 61, 0, 61, 0, 7, 0, 6, 0, 40, 0, 42, 0, 41, 0, 43, 0, 41, 0, 42, 0, 44, 0, 41, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 44, 0, 45, 0, 47, 0, 46, 0, 45, 0, 48, 0, 46, 0, 47, 0, 49, 0, 48, 0, 47, 0, 50, 0, 48, 0, 49, 0, 3, 0, 50, 0, 49, 0, 51, 0, 50, 0, 3, 0, 4, 0, 51, 0, 3, 0, 52, 0, 51, 0, 4, 0, 53, 0, 52, 0, 4, 0, 54, 0, 53, 0, 4, 0, 55, 0, 54, 0, 4, 0, 56, 0, 55, 0, 4, 0, 4, 0, 6, 0, 56, 0, 56, 0, 6, 0, 57, 0, 57, 0, 6, 0, 58, 0, 58, 0, 6, 0, 59, 0, 59, 0, 6, 0, 60, 0, 60, 0, 6, 0, 61, 0, 7, 0, 61, 0, 6, 0, 6, 0, 8, 0, 62, 0, 62, 0, 2, 0, 6, 0, 62, 0, 63, 0, 2, 0, 63, 0, 64, 0, 2, 0, 64, 0, 65, 0, 2, 0, 65, 0, 66, 0, 2, 0, 66, 0, 67, 0, 2, 0, 67, 0, 68, 0, 2, 0, 68, 0, 69, 0, 2, 0, 69, 0, 70, 0, 2, 0, 70, 0, 71, 0, 2, 0, 71, 0, 72, 0, 2, 0, 71, 0, 73, 0, 72, 0, 71, 0, 74, 0, 73, 0, 72, 0, 75, 0, 2, 0, 75, 0, 76, 0, 2, 0, 76, 0, 77, 0, 2, 0, 77, 0, 78, 0, 2, 0, 78, 0, 79, 0, 2, 0, 79, 0, 80, 0, 2, 0, 80, 0, 81, 0, 2, 0, 81, 0, 82, 0, 2, 0, 82, 0, 83, 0, 2, 0, 83, 0, 84, 0, 2, 0, 84, 0, 0, 0, 2, 0, 8, 0, 6, 0, 62, 0, 2, 0, 62, 0, 6, 0, 63, 0, 62, 0, 2, 0, 64, 0, 63, 0, 2, 0, 65, 0, 64, 0, 2, 0, 66, 0, 65, 0, 2, 0, 67, 0, 66, 0, 2, 0, 68, 0, 67, 0, 2, 0, 69, 0, 68, 0, 2, 0, 70, 0, 69, 0, 2, 0, 71, 0, 70, 0, 2, 0, 72, 0, 71, 0, 2, 0, 73, 0, 71, 0, 72, 0, 74, 0, 71, 0, 73, 0, 75, 0, 72, 0, 2, 0, 76, 0, 75, 0, 2, 0, 77, 0, 76, 0, 2, 0, 78, 0, 77, 0, 2, 0, 79, 0, 78, 0, 2, 0, 80, 0, 79, 0, 2, 0, 81, 0, 80, 0, 2, 0, 82, 0, 81, 0, 2, 0, 83, 0, 82, 0, 2, 0, 84, 0, 83, 0, 2, 0, 0, 0, 84, 0, 2, 0), +"lods": [0.00178656, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 4, 0, 6, 0, 2, 0, 6, 0, 7, 0, 8, 0, 7, 0, 6, 0, 8, 0, 9, 0, 5, 0, 4, 0, 11, 0, 9, 0, 4, 0, 12, 0, 11, 0, 4, 0, 4, 0, 2, 0, 12, 0, 2, 0, 15, 0, 12, 0, 2, 0, 17, 0, 15, 0, 2, 0, 18, 0, 17, 0, 2, 0, 21, 0, 18, 0, 2, 0, 22, 0, 21, 0, 2, 0, 24, 0, 22, 0, 2, 0, 26, 0, 24, 0, 2, 0, 28, 0, 26, 0, 2, 0, 29, 0, 28, 0, 2, 0, 32, 0, 29, 0, 2, 0, 34, 0, 32, 0, 2, 0, 36, 0, 34, 0, 2, 0, 38, 0, 36, 0, 2, 0, 39, 0, 38, 0, 2, 0, 1, 0, 39, 0, 5, 0, 9, 0, 4, 0, 9, 0, 11, 0, 4, 0, 11, 0, 12, 0, 4, 0, 2, 0, 4, 0, 12, 0, 15, 0, 2, 0, 12, 0, 17, 0, 2, 0, 15, 0, 18, 0, 2, 0, 17, 0, 21, 0, 2, 0, 18, 0, 22, 0, 2, 0, 21, 0, 24, 0, 2, 0, 22, 0, 26, 0, 2, 0, 24, 0, 28, 0, 2, 0, 26, 0, 29, 0, 2, 0, 28, 0, 32, 0, 2, 0, 29, 0, 34, 0, 2, 0, 32, 0, 36, 0, 2, 0, 34, 0, 38, 0, 2, 0, 36, 0, 39, 0, 2, 0, 38, 0, 1, 0, 2, 0, 39, 0, 44, 0, 45, 0, 42, 0, 44, 0, 48, 0, 45, 0, 48, 0, 49, 0, 45, 0, 48, 0, 51, 0, 49, 0, 51, 0, 3, 0, 49, 0, 51, 0, 4, 0, 3, 0, 51, 0, 52, 0, 4, 0, 52, 0, 54, 0, 4, 0, 54, 0, 56, 0, 4, 0, 6, 0, 4, 0, 56, 0, 6, 0, 56, 0, 59, 0, 6, 0, 59, 0, 61, 0, 61, 0, 7, 0, 6, 0, 45, 0, 44, 0, 42, 0, 48, 0, 44, 0, 45, 0, 49, 0, 48, 0, 45, 0, 51, 0, 48, 0, 49, 0, 3, 0, 51, 0, 49, 0, 4, 0, 51, 0, 3, 0, 52, 0, 51, 0, 4, 0, 54, 0, 52, 0, 4, 0, 56, 0, 54, 0, 4, 0, 4, 0, 6, 0, 56, 0, 56, 0, 6, 0, 59, 0, 59, 0, 6, 0, 61, 0, 7, 0, 61, 0, 6, 0, 6, 0, 8, 0, 62, 0, 62, 0, 2, 0, 6, 0, 62, 0, 64, 0, 2, 0, 64, 0, 66, 0, 2, 0, 66, 0, 68, 0, 2, 0, 68, 0, 69, 0, 2, 0, 69, 0, 71, 0, 2, 0, 71, 0, 73, 0, 72, 0, 71, 0, 72, 0, 2, 0, 72, 0, 76, 0, 2, 0, 76, 0, 78, 0, 2, 0, 78, 0, 79, 0, 2, 0, 79, 0, 80, 0, 2, 0, 80, 0, 81, 0, 2, 0, 81, 0, 82, 0, 2, 0, 82, 0, 83, 0, 2, 0, 83, 0, 84, 0, 2, 0, 84, 0, 0, 0, 2, 0, 8, 0, 6, 0, 62, 0, 2, 0, 62, 0, 6, 0, 64, 0, 62, 0, 2, 0, 66, 0, 64, 0, 2, 0, 68, 0, 66, 0, 2, 0, 69, 0, 68, 0, 2, 0, 71, 0, 69, 0, 2, 0, 73, 0, 71, 0, 72, 0, 72, 0, 71, 0, 2, 0, 76, 0, 72, 0, 2, 0, 78, 0, 76, 0, 2, 0, 79, 0, 78, 0, 2, 0, 80, 0, 79, 0, 2, 0, 81, 0, 80, 0, 2, 0, 82, 0, 81, 0, 2, 0, 83, 0, 82, 0, 2, 0, 84, 0, 83, 0, 2, 0, 0, 0, 84, 0, 2, 0), 0.0282612, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 4, 0, 6, 0, 2, 0, 6, 0, 7, 0, 8, 0, 7, 0, 6, 0, 8, 0, 9, 0, 5, 0, 4, 0, 12, 0, 9, 0, 4, 0, 4, 0, 2, 0, 12, 0, 2, 0, 18, 0, 12, 0, 2, 0, 21, 0, 18, 0, 2, 0, 24, 0, 21, 0, 2, 0, 38, 0, 24, 0, 2, 0, 39, 0, 38, 0, 2, 0, 1, 0, 39, 0, 5, 0, 9, 0, 4, 0, 9, 0, 12, 0, 4, 0, 2, 0, 4, 0, 12, 0, 18, 0, 2, 0, 12, 0, 21, 0, 2, 0, 18, 0, 24, 0, 2, 0, 21, 0, 38, 0, 2, 0, 24, 0, 39, 0, 2, 0, 38, 0, 1, 0, 2, 0, 39, 0, 51, 0, 3, 0, 49, 0, 51, 0, 4, 0, 3, 0, 51, 0, 56, 0, 4, 0, 6, 0, 4, 0, 56, 0, 6, 0, 56, 0, 61, 0, 61, 0, 7, 0, 6, 0, 3, 0, 51, 0, 49, 0, 4, 0, 51, 0, 3, 0, 56, 0, 51, 0, 4, 0, 4, 0, 6, 0, 56, 0, 56, 0, 6, 0, 61, 0, 7, 0, 61, 0, 6, 0, 6, 0, 8, 0, 62, 0, 62, 0, 2, 0, 6, 0, 62, 0, 66, 0, 2, 0, 66, 0, 69, 0, 2, 0, 69, 0, 78, 0, 2, 0, 78, 0, 82, 0, 2, 0, 82, 0, 84, 0, 2, 0, 84, 0, 0, 0, 2, 0, 8, 0, 6, 0, 62, 0, 2, 0, 62, 0, 6, 0, 66, 0, 62, 0, 2, 0, 69, 0, 66, 0, 2, 0, 78, 0, 69, 0, 2, 0, 82, 0, 78, 0, 2, 0, 84, 0, 82, 0, 2, 0, 0, 0, 84, 0, 2, 0), 0.0996799, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 4, 0, 6, 0, 2, 0, 6, 0, 7, 0, 8, 0, 7, 0, 6, 0, 8, 0, 21, 0, 5, 0, 4, 0, 4, 0, 2, 0, 21, 0, 2, 0, 1, 0, 21, 0, 5, 0, 21, 0, 4, 0, 2, 0, 4, 0, 21, 0, 1, 0, 2, 0, 21, 0, 56, 0, 4, 0, 3, 0, 6, 0, 4, 0, 56, 0, 56, 0, 7, 0, 6, 0, 4, 0, 56, 0, 3, 0, 4, 0, 6, 0, 56, 0, 7, 0, 56, 0, 6, 0, 6, 0, 8, 0, 62, 0, 62, 0, 2, 0, 6, 0, 62, 0, 84, 0, 2, 0, 84, 0, 0, 0, 2, 0, 8, 0, 6, 0, 62, 0, 2, 0, 62, 0, 6, 0, 84, 0, 62, 0, 2, 0, 0, 0, 84, 0, 2, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 88, +"vertex_data": PackedByteArray(118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.616514, 0, -0.554541, 1.18122, 1, 1.17106), +"format": 4097, +"index_count": 21, +"index_data": PackedByteArray(87, 0, 85, 0, 86, 0, 2, 0, 6, 0, 86, 0, 86, 0, 85, 0, 2, 0, 2, 0, 85, 0, 87, 0, 87, 0, 4, 0, 2, 0, 87, 0, 86, 0, 6, 0, 6, 0, 4, 0, 87, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 88, +"vertex_data": PackedByteArray(118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_nbn1x"] +resource_name = "blockSnowCliffCorner_Mesh blockSnowCliffCorner" +_surfaces = [{ +"aabb": AABB(-0.616514, 0, -0.554541, 1.18122, 1, 1.17106), +"attribute_data": PackedByteArray(117, 182, 95, 65, 142, 6, 204, 193, 136, 33, 251, 64, 133, 15, 212, 193, 74, 116, 42, 65, 46, 39, 255, 193, 74, 116, 42, 65, 46, 39, 255, 193, 136, 33, 251, 64, 133, 15, 212, 193, 117, 182, 95, 65, 142, 6, 204, 193, 228, 182, 95, 193, 183, 6, 204, 193, 179, 116, 42, 193, 86, 39, 255, 193, 16, 101, 234, 192, 183, 6, 204, 193, 16, 101, 234, 192, 183, 6, 204, 193, 179, 116, 42, 193, 86, 39, 255, 193, 228, 182, 95, 193, 183, 6, 204, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 128, 142, 56, 175, 140, 107, 199, 193, 128, 142, 56, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 244, 181, 222, 193, 9, 30, 207, 193, 247, 181, 222, 193, 200, 97, 4, 194, 110, 29, 210, 193, 186, 226, 211, 193, 162, 59, 197, 193, 194, 208, 215, 193, 211, 30, 184, 193, 196, 227, 218, 193, 133, 213, 170, 193, 97, 24, 221, 193, 247, 181, 222, 65, 201, 97, 4, 194, 119, 110, 157, 193, 30, 108, 222, 193, 124, 248, 143, 193, 135, 221, 222, 193, 130, 130, 130, 193, 31, 108, 222, 193, 229, 54, 106, 193, 97, 24, 221, 193, 76, 164, 79, 193, 197, 227, 218, 193, 166, 106, 53, 193, 194, 208, 215, 193, 12, 167, 27, 193, 185, 226, 211, 193, 236, 137, 210, 192, 88, 89, 202, 193, 177, 2, 159, 192, 80, 107, 198, 193, 228, 30, 85, 192, 75, 88, 195, 193, 231, 168, 213, 191, 176, 35, 193, 193, 111, 16, 200, 59, 243, 207, 191, 193, 171, 39, 216, 63, 137, 94, 191, 193, 163, 195, 87, 64, 243, 207, 191, 193, 15, 126, 161, 64, 176, 35, 193, 193, 66, 163, 214, 64, 76, 88, 195, 193, 67, 139, 5, 65, 81, 107, 198, 193, 224, 78, 31, 65, 88, 89, 202, 193, 244, 176, 81, 65, 185, 226, 211, 193, 145, 116, 107, 65, 194, 208, 215, 193, 26, 215, 130, 65, 199, 227, 218, 193, 102, 32, 144, 65, 97, 24, 221, 193, 118, 135, 157, 65, 31, 108, 222, 193, 113, 253, 170, 65, 136, 221, 222, 193, 106, 115, 184, 65, 32, 108, 222, 193, 122, 218, 197, 65, 98, 24, 221, 193, 206, 35, 211, 65, 195, 227, 218, 193, 254, 181, 222, 65, 68, 45, 216, 193, 110, 29, 210, 193, 186, 226, 211, 193, 247, 181, 222, 193, 200, 97, 4, 194, 244, 181, 222, 193, 9, 30, 207, 193, 162, 59, 197, 193, 194, 208, 215, 193, 211, 30, 184, 193, 196, 227, 218, 193, 133, 213, 170, 193, 97, 24, 221, 193, 247, 181, 222, 65, 201, 97, 4, 194, 119, 110, 157, 193, 30, 108, 222, 193, 124, 248, 143, 193, 135, 221, 222, 193, 130, 130, 130, 193, 31, 108, 222, 193, 229, 54, 106, 193, 97, 24, 221, 193, 76, 164, 79, 193, 197, 227, 218, 193, 166, 106, 53, 193, 194, 208, 215, 193, 12, 167, 27, 193, 185, 226, 211, 193, 236, 137, 210, 192, 88, 89, 202, 193, 177, 2, 159, 192, 80, 107, 198, 193, 228, 30, 85, 192, 75, 88, 195, 193, 231, 168, 213, 191, 176, 35, 193, 193, 111, 16, 200, 59, 243, 207, 191, 193, 171, 39, 216, 63, 137, 94, 191, 193, 163, 195, 87, 64, 243, 207, 191, 193, 15, 126, 161, 64, 176, 35, 193, 193, 66, 163, 214, 64, 76, 88, 195, 193, 67, 139, 5, 65, 81, 107, 198, 193, 224, 78, 31, 65, 88, 89, 202, 193, 244, 176, 81, 65, 185, 226, 211, 193, 145, 116, 107, 65, 194, 208, 215, 193, 26, 215, 130, 65, 199, 227, 218, 193, 102, 32, 144, 65, 97, 24, 221, 193, 118, 135, 157, 65, 31, 108, 222, 193, 113, 253, 170, 65, 136, 221, 222, 193, 106, 115, 184, 65, 32, 108, 222, 193, 122, 218, 197, 65, 98, 24, 221, 193, 206, 35, 211, 65, 195, 227, 218, 193, 254, 181, 222, 65, 68, 45, 216, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 81, 228, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 81, 228, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 247, 181, 94, 65, 181, 215, 213, 64, 0, 240, 214, 172, 181, 215, 189, 65, 247, 181, 94, 193, 181, 215, 213, 64, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 204, 172, 42, 246, 122, 13, 193, 247, 181, 94, 65, 88, 219, 251, 191, 247, 181, 94, 193, 88, 219, 251, 191, 247, 181, 222, 65, 65, 114, 10, 194, 247, 181, 222, 193, 65, 114, 10, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 12, 179, 45, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 513, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 22, 0, 26, 0, 25, 0, 22, 0, 22, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 29, 0, 27, 0, 31, 0, 30, 0, 27, 0, 32, 0, 31, 0, 27, 0, 33, 0, 32, 0, 27, 0, 34, 0, 33, 0, 27, 0, 35, 0, 34, 0, 27, 0, 36, 0, 35, 0, 27, 0, 37, 0, 36, 0, 27, 0, 38, 0, 37, 0, 27, 0, 39, 0, 38, 0, 27, 0, 40, 0, 39, 0, 27, 0, 41, 0, 40, 0, 27, 0, 42, 0, 41, 0, 27, 0, 43, 0, 42, 0, 27, 0, 44, 0, 43, 0, 27, 0, 45, 0, 44, 0, 27, 0, 46, 0, 45, 0, 27, 0, 47, 0, 46, 0, 27, 0, 48, 0, 47, 0, 27, 0, 49, 0, 48, 0, 27, 0, 50, 0, 49, 0, 27, 0, 51, 0, 50, 0, 27, 0, 52, 0, 51, 0, 27, 0, 53, 0, 52, 0, 27, 0, 54, 0, 53, 0, 27, 0, 55, 0, 54, 0, 58, 0, 56, 0, 57, 0, 56, 0, 59, 0, 57, 0, 59, 0, 60, 0, 57, 0, 60, 0, 61, 0, 57, 0, 62, 0, 57, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 62, 0, 63, 0, 65, 0, 62, 0, 64, 0, 66, 0, 62, 0, 65, 0, 67, 0, 62, 0, 66, 0, 68, 0, 62, 0, 67, 0, 69, 0, 62, 0, 68, 0, 70, 0, 62, 0, 69, 0, 71, 0, 62, 0, 70, 0, 72, 0, 62, 0, 71, 0, 73, 0, 62, 0, 72, 0, 74, 0, 62, 0, 73, 0, 75, 0, 62, 0, 74, 0, 76, 0, 62, 0, 75, 0, 77, 0, 62, 0, 76, 0, 78, 0, 62, 0, 77, 0, 79, 0, 62, 0, 78, 0, 80, 0, 62, 0, 79, 0, 81, 0, 62, 0, 80, 0, 82, 0, 62, 0, 81, 0, 83, 0, 62, 0, 82, 0, 84, 0, 62, 0, 83, 0, 85, 0, 62, 0, 84, 0, 86, 0, 62, 0, 85, 0, 87, 0, 62, 0, 86, 0, 88, 0, 62, 0, 87, 0, 89, 0, 62, 0, 88, 0, 90, 0, 62, 0, 89, 0, 93, 0, 91, 0, 92, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 95, 0, 96, 0, 94, 0, 95, 0, 97, 0, 96, 0, 97, 0, 98, 0, 96, 0, 97, 0, 99, 0, 98, 0, 99, 0, 100, 0, 98, 0, 99, 0, 101, 0, 100, 0, 101, 0, 102, 0, 100, 0, 101, 0, 103, 0, 102, 0, 103, 0, 104, 0, 102, 0, 103, 0, 105, 0, 104, 0, 105, 0, 106, 0, 104, 0, 106, 0, 107, 0, 104, 0, 107, 0, 108, 0, 104, 0, 108, 0, 109, 0, 104, 0, 110, 0, 104, 0, 109, 0, 110, 0, 109, 0, 111, 0, 110, 0, 111, 0, 112, 0, 110, 0, 112, 0, 113, 0, 110, 0, 113, 0, 114, 0, 110, 0, 114, 0, 115, 0, 115, 0, 116, 0, 110, 0, 119, 0, 117, 0, 118, 0, 120, 0, 118, 0, 117, 0, 121, 0, 118, 0, 120, 0, 122, 0, 121, 0, 120, 0, 123, 0, 121, 0, 122, 0, 124, 0, 123, 0, 122, 0, 125, 0, 123, 0, 124, 0, 126, 0, 125, 0, 124, 0, 127, 0, 125, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 128, 0, 131, 0, 129, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 130, 0, 134, 0, 133, 0, 130, 0, 135, 0, 134, 0, 130, 0, 130, 0, 136, 0, 135, 0, 135, 0, 136, 0, 137, 0, 137, 0, 136, 0, 138, 0, 138, 0, 136, 0, 139, 0, 139, 0, 136, 0, 140, 0, 140, 0, 136, 0, 141, 0, 142, 0, 141, 0, 136, 0, 145, 0, 143, 0, 144, 0, 144, 0, 146, 0, 145, 0, 144, 0, 147, 0, 146, 0, 147, 0, 148, 0, 146, 0, 148, 0, 149, 0, 146, 0, 149, 0, 150, 0, 146, 0, 150, 0, 151, 0, 146, 0, 151, 0, 152, 0, 146, 0, 152, 0, 153, 0, 146, 0, 153, 0, 154, 0, 146, 0, 154, 0, 155, 0, 146, 0, 155, 0, 156, 0, 146, 0, 155, 0, 157, 0, 156, 0, 155, 0, 158, 0, 157, 0, 156, 0, 159, 0, 146, 0, 159, 0, 160, 0, 146, 0, 160, 0, 161, 0, 146, 0, 161, 0, 162, 0, 146, 0, 162, 0, 163, 0, 146, 0, 163, 0, 164, 0, 146, 0, 164, 0, 165, 0, 146, 0, 165, 0, 166, 0, 146, 0, 166, 0, 167, 0, 146, 0, 167, 0, 168, 0, 146, 0, 168, 0, 169, 0, 146, 0, 172, 0, 170, 0, 171, 0, 173, 0, 171, 0, 170, 0, 174, 0, 171, 0, 173, 0, 175, 0, 174, 0, 173, 0, 176, 0, 175, 0, 173, 0, 177, 0, 176, 0, 173, 0, 178, 0, 177, 0, 173, 0, 179, 0, 178, 0, 173, 0, 180, 0, 179, 0, 173, 0, 181, 0, 180, 0, 173, 0, 182, 0, 181, 0, 173, 0, 183, 0, 182, 0, 173, 0, 184, 0, 182, 0, 183, 0, 185, 0, 182, 0, 184, 0, 186, 0, 183, 0, 173, 0, 187, 0, 186, 0, 173, 0, 188, 0, 187, 0, 173, 0, 189, 0, 188, 0, 173, 0, 190, 0, 189, 0, 173, 0, 191, 0, 190, 0, 173, 0, 192, 0, 191, 0, 173, 0, 193, 0, 192, 0, 173, 0, 194, 0, 193, 0, 173, 0, 195, 0, 194, 0, 173, 0, 196, 0, 195, 0, 173, 0), +"lods": [0.00178656, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 25, 0, 23, 0, 22, 0, 26, 0, 25, 0, 22, 0, 22, 0, 27, 0, 26, 0, 27, 0, 30, 0, 26, 0, 27, 0, 32, 0, 30, 0, 27, 0, 33, 0, 32, 0, 27, 0, 36, 0, 33, 0, 27, 0, 37, 0, 36, 0, 27, 0, 39, 0, 37, 0, 27, 0, 41, 0, 39, 0, 27, 0, 43, 0, 41, 0, 27, 0, 44, 0, 43, 0, 27, 0, 47, 0, 44, 0, 27, 0, 49, 0, 47, 0, 27, 0, 51, 0, 49, 0, 27, 0, 53, 0, 51, 0, 27, 0, 54, 0, 53, 0, 27, 0, 55, 0, 54, 0, 58, 0, 56, 0, 57, 0, 56, 0, 60, 0, 57, 0, 60, 0, 61, 0, 57, 0, 62, 0, 57, 0, 61, 0, 65, 0, 62, 0, 61, 0, 67, 0, 62, 0, 65, 0, 68, 0, 62, 0, 67, 0, 71, 0, 62, 0, 68, 0, 72, 0, 62, 0, 71, 0, 74, 0, 62, 0, 72, 0, 76, 0, 62, 0, 74, 0, 78, 0, 62, 0, 76, 0, 79, 0, 62, 0, 78, 0, 82, 0, 62, 0, 79, 0, 84, 0, 62, 0, 82, 0, 86, 0, 62, 0, 84, 0, 88, 0, 62, 0, 86, 0, 89, 0, 62, 0, 88, 0, 90, 0, 62, 0, 89, 0, 95, 0, 96, 0, 93, 0, 95, 0, 99, 0, 96, 0, 99, 0, 100, 0, 96, 0, 99, 0, 103, 0, 100, 0, 103, 0, 102, 0, 100, 0, 103, 0, 104, 0, 102, 0, 103, 0, 105, 0, 104, 0, 105, 0, 107, 0, 104, 0, 107, 0, 109, 0, 104, 0, 110, 0, 104, 0, 109, 0, 110, 0, 109, 0, 113, 0, 110, 0, 113, 0, 115, 0, 115, 0, 116, 0, 110, 0, 122, 0, 121, 0, 117, 0, 125, 0, 121, 0, 122, 0, 126, 0, 125, 0, 122, 0, 129, 0, 125, 0, 126, 0, 128, 0, 129, 0, 126, 0, 130, 0, 129, 0, 128, 0, 131, 0, 129, 0, 130, 0, 133, 0, 131, 0, 130, 0, 135, 0, 133, 0, 130, 0, 130, 0, 136, 0, 135, 0, 135, 0, 136, 0, 139, 0, 139, 0, 136, 0, 141, 0, 142, 0, 141, 0, 136, 0, 145, 0, 143, 0, 144, 0, 144, 0, 146, 0, 145, 0, 144, 0, 148, 0, 146, 0, 148, 0, 150, 0, 146, 0, 150, 0, 152, 0, 146, 0, 152, 0, 153, 0, 146, 0, 153, 0, 155, 0, 146, 0, 155, 0, 157, 0, 156, 0, 155, 0, 156, 0, 146, 0, 156, 0, 160, 0, 146, 0, 160, 0, 162, 0, 146, 0, 162, 0, 163, 0, 146, 0, 163, 0, 164, 0, 146, 0, 164, 0, 165, 0, 146, 0, 165, 0, 166, 0, 146, 0, 166, 0, 167, 0, 146, 0, 167, 0, 168, 0, 146, 0, 168, 0, 169, 0, 146, 0, 172, 0, 170, 0, 171, 0, 173, 0, 171, 0, 170, 0, 175, 0, 171, 0, 173, 0, 177, 0, 175, 0, 173, 0, 179, 0, 177, 0, 173, 0, 180, 0, 179, 0, 173, 0, 182, 0, 180, 0, 173, 0, 184, 0, 182, 0, 183, 0, 183, 0, 182, 0, 173, 0, 187, 0, 183, 0, 173, 0, 189, 0, 187, 0, 173, 0, 190, 0, 189, 0, 173, 0, 191, 0, 190, 0, 173, 0, 192, 0, 191, 0, 173, 0, 193, 0, 192, 0, 173, 0, 194, 0, 193, 0, 173, 0, 195, 0, 194, 0, 173, 0, 196, 0, 195, 0, 173, 0), 0.0282612, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 23, 0, 22, 0, 22, 0, 27, 0, 26, 0, 27, 0, 33, 0, 26, 0, 27, 0, 36, 0, 33, 0, 27, 0, 39, 0, 36, 0, 27, 0, 53, 0, 39, 0, 27, 0, 54, 0, 53, 0, 27, 0, 55, 0, 54, 0, 58, 0, 56, 0, 57, 0, 56, 0, 61, 0, 57, 0, 62, 0, 57, 0, 61, 0, 68, 0, 62, 0, 61, 0, 71, 0, 62, 0, 68, 0, 74, 0, 62, 0, 71, 0, 88, 0, 62, 0, 74, 0, 89, 0, 62, 0, 88, 0, 90, 0, 62, 0, 89, 0, 103, 0, 102, 0, 100, 0, 103, 0, 104, 0, 102, 0, 103, 0, 109, 0, 104, 0, 110, 0, 104, 0, 109, 0, 110, 0, 109, 0, 115, 0, 115, 0, 116, 0, 110, 0, 128, 0, 129, 0, 126, 0, 130, 0, 129, 0, 128, 0, 135, 0, 129, 0, 130, 0, 130, 0, 136, 0, 135, 0, 135, 0, 136, 0, 141, 0, 142, 0, 141, 0, 136, 0, 145, 0, 143, 0, 144, 0, 144, 0, 146, 0, 145, 0, 144, 0, 150, 0, 146, 0, 150, 0, 153, 0, 146, 0, 153, 0, 162, 0, 146, 0, 162, 0, 166, 0, 146, 0, 166, 0, 168, 0, 146, 0, 168, 0, 169, 0, 146, 0, 172, 0, 170, 0, 171, 0, 173, 0, 171, 0, 170, 0, 177, 0, 171, 0, 173, 0, 180, 0, 177, 0, 173, 0, 189, 0, 180, 0, 173, 0, 193, 0, 189, 0, 173, 0, 195, 0, 193, 0, 173, 0, 196, 0, 195, 0, 173, 0), 0.0996799, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 36, 0, 21, 0, 22, 0, 22, 0, 27, 0, 36, 0, 27, 0, 55, 0, 36, 0, 58, 0, 71, 0, 57, 0, 62, 0, 57, 0, 71, 0, 90, 0, 62, 0, 71, 0, 109, 0, 104, 0, 102, 0, 110, 0, 104, 0, 109, 0, 109, 0, 116, 0, 110, 0, 130, 0, 135, 0, 128, 0, 130, 0, 136, 0, 135, 0, 142, 0, 135, 0, 136, 0, 145, 0, 143, 0, 144, 0, 144, 0, 146, 0, 145, 0, 144, 0, 168, 0, 146, 0, 168, 0, 169, 0, 146, 0, 172, 0, 170, 0, 171, 0, 173, 0, 171, 0, 170, 0, 195, 0, 171, 0, 173, 0, 196, 0, 195, 0, 173, 0)], +"material": SubResource("StandardMaterial3D_s04bj"), +"name": "snow", +"primitive": 3, +"vertex_count": 212, +"vertex_data": PackedByteArray(118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 131, 18, 237, 223, 125, 37, 255, 191, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 131, 18, 237, 223, 125, 37, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 131, 18, 237, 223, 125, 37, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 16, 160, 123, 109, 125, 37, 255, 63, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 16, 160, 123, 109, 125, 37, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 16, 160, 123, 109, 125, 37, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 106, 205, 131, 146, 255, 255, 190, 146, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 106, 205, 131, 146, 255, 255, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 106, 205, 131, 146, 255, 255, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 131, 18, 106, 77, 255, 255, 64, 109, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 227, 218, 140, 210, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 227, 218, 140, 210, 0, 0, 255, 159, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 227, 218, 140, 210, 0, 0, 255, 159, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 227, 218, 140, 210, 0, 0, 255, 223, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 227, 218, 140, 210, 0, 0, 255, 159, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 227, 218, 140, 210, 0, 0, 255, 159, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 255, 223, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 227, 218, 140, 210, 0, 0, 255, 223, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 227, 218, 140, 210, 0, 0, 255, 159, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 227, 218, 140, 210, 0, 0, 255, 159, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 227, 218, 140, 210, 0, 0, 255, 223, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 227, 218, 140, 210, 0, 0, 255, 223, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 227, 218, 140, 210, 0, 0, 255, 159, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 227, 218, 140, 210, 0, 0, 255, 223, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 227, 218, 140, 210, 0, 0, 255, 159, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 227, 218, 140, 210, 0, 0, 255, 223, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 227, 218, 140, 210, 0, 0, 255, 159, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 227, 218, 140, 210, 0, 0, 255, 223, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 227, 218, 140, 210, 0, 0, 255, 159, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 227, 218, 140, 210, 0, 0, 255, 159, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 227, 218, 140, 210, 0, 0, 255, 223, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 227, 218, 140, 210, 0, 0, 255, 159, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 227, 218, 140, 210, 0, 0, 255, 159, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 227, 218, 140, 210, 0, 0, 255, 159, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 227, 218, 140, 210, 0, 0, 255, 223, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 227, 218, 140, 210, 0, 0, 255, 223, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 227, 218, 140, 210, 0, 0, 255, 159, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 227, 218, 140, 210, 0, 0, 255, 159, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 227, 218, 140, 210, 0, 0, 255, 223, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 227, 218, 140, 210, 0, 0, 255, 223, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 227, 218, 140, 210, 0, 0, 255, 223, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 227, 218, 140, 210, 0, 0, 255, 159, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 227, 218, 140, 210, 0, 0, 255, 223, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 227, 218, 140, 210, 0, 0, 255, 223, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 227, 218, 140, 210, 0, 0, 255, 159, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 141, 82, 228, 90, 0, 0, 255, 95, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 141, 82, 228, 90, 0, 0, 255, 95, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 141, 82, 228, 90, 0, 0, 255, 31, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 141, 82, 228, 90, 0, 0, 255, 31, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 141, 82, 228, 90, 0, 0, 255, 95, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 141, 82, 228, 90, 0, 0, 255, 95, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 255, 95, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 141, 82, 228, 90, 0, 0, 255, 31, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 141, 82, 228, 90, 0, 0, 255, 31, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 141, 82, 228, 90, 0, 0, 255, 95, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 141, 82, 228, 90, 0, 0, 255, 31, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 141, 82, 228, 90, 0, 0, 255, 31, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 141, 82, 228, 90, 0, 0, 255, 95, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 141, 82, 228, 90, 0, 0, 255, 31, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 141, 82, 228, 90, 0, 0, 255, 95, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 141, 82, 228, 90, 0, 0, 255, 31, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 141, 82, 228, 90, 0, 0, 255, 95, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 141, 82, 228, 90, 0, 0, 255, 31, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 141, 82, 228, 90, 0, 0, 255, 31, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 141, 82, 228, 90, 0, 0, 255, 95, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 141, 82, 228, 90, 0, 0, 255, 31, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 141, 82, 228, 90, 0, 0, 255, 95, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 141, 82, 228, 90, 0, 0, 255, 95, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 141, 82, 228, 90, 0, 0, 255, 95, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 141, 82, 228, 90, 0, 0, 255, 31, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 141, 82, 228, 90, 0, 0, 255, 31, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 141, 82, 228, 90, 0, 0, 255, 95, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 141, 82, 228, 90, 0, 0, 255, 95, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 141, 82, 228, 90, 0, 0, 255, 31, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 141, 82, 228, 90, 0, 0, 255, 95, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 141, 82, 228, 90, 0, 0, 255, 31, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 141, 82, 228, 90, 0, 0, 255, 95, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 141, 82, 228, 90, 0, 0, 255, 31, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 141, 82, 228, 90, 0, 0, 255, 31, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 141, 82, 228, 90, 0, 0, 255, 31, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 255, 255, 255, 191, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 255, 127, 255, 191, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 255, 127, 254, 191, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 217, 46, 217, 174, 255, 127, 255, 191, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 255, 127, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 255, 127, 255, 191, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 255, 127, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 255, 127, 255, 63, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 255, 127, 0, 64, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 37, 209, 37, 81, 255, 127, 255, 63, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 255, 127, 255, 63, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 255, 127, 255, 63, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 255, 127, 255, 63, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 255, 191, 255, 31, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 0, 128, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 255, 223, 255, 47, 0, 0, 0, 128, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, 0, -0.554541, 1.18122, 1, 1.17106), +"attribute_data": PackedByteArray(117, 182, 95, 65, 142, 6, 204, 193, 136, 33, 251, 64, 133, 15, 212, 193, 74, 116, 42, 65, 46, 39, 255, 193, 74, 116, 42, 65, 46, 39, 255, 193, 136, 33, 251, 64, 133, 15, 212, 193, 117, 182, 95, 65, 142, 6, 204, 193, 228, 182, 95, 193, 183, 6, 204, 193, 179, 116, 42, 193, 86, 39, 255, 193, 16, 101, 234, 192, 183, 6, 204, 193, 16, 101, 234, 192, 183, 6, 204, 193, 179, 116, 42, 193, 86, 39, 255, 193, 228, 182, 95, 193, 183, 6, 204, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 128, 142, 56, 175, 140, 107, 199, 193, 128, 142, 56, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 244, 181, 222, 193, 9, 30, 207, 193, 247, 181, 222, 193, 200, 97, 4, 194, 110, 29, 210, 193, 186, 226, 211, 193, 162, 59, 197, 193, 194, 208, 215, 193, 211, 30, 184, 193, 196, 227, 218, 193, 133, 213, 170, 193, 97, 24, 221, 193, 247, 181, 222, 65, 201, 97, 4, 194, 119, 110, 157, 193, 30, 108, 222, 193, 124, 248, 143, 193, 135, 221, 222, 193, 130, 130, 130, 193, 31, 108, 222, 193, 229, 54, 106, 193, 97, 24, 221, 193, 76, 164, 79, 193, 197, 227, 218, 193, 166, 106, 53, 193, 194, 208, 215, 193, 12, 167, 27, 193, 185, 226, 211, 193, 236, 137, 210, 192, 88, 89, 202, 193, 177, 2, 159, 192, 80, 107, 198, 193, 228, 30, 85, 192, 75, 88, 195, 193, 231, 168, 213, 191, 176, 35, 193, 193, 111, 16, 200, 59, 243, 207, 191, 193, 171, 39, 216, 63, 137, 94, 191, 193, 163, 195, 87, 64, 243, 207, 191, 193, 15, 126, 161, 64, 176, 35, 193, 193, 66, 163, 214, 64, 76, 88, 195, 193, 67, 139, 5, 65, 81, 107, 198, 193, 224, 78, 31, 65, 88, 89, 202, 193, 244, 176, 81, 65, 185, 226, 211, 193, 145, 116, 107, 65, 194, 208, 215, 193, 26, 215, 130, 65, 199, 227, 218, 193, 102, 32, 144, 65, 97, 24, 221, 193, 118, 135, 157, 65, 31, 108, 222, 193, 113, 253, 170, 65, 136, 221, 222, 193, 106, 115, 184, 65, 32, 108, 222, 193, 122, 218, 197, 65, 98, 24, 221, 193, 206, 35, 211, 65, 195, 227, 218, 193, 254, 181, 222, 65, 68, 45, 216, 193, 110, 29, 210, 193, 186, 226, 211, 193, 247, 181, 222, 193, 200, 97, 4, 194, 244, 181, 222, 193, 9, 30, 207, 193, 162, 59, 197, 193, 194, 208, 215, 193, 211, 30, 184, 193, 196, 227, 218, 193, 133, 213, 170, 193, 97, 24, 221, 193, 247, 181, 222, 65, 201, 97, 4, 194, 119, 110, 157, 193, 30, 108, 222, 193, 124, 248, 143, 193, 135, 221, 222, 193, 130, 130, 130, 193, 31, 108, 222, 193, 229, 54, 106, 193, 97, 24, 221, 193, 76, 164, 79, 193, 197, 227, 218, 193, 166, 106, 53, 193, 194, 208, 215, 193, 12, 167, 27, 193, 185, 226, 211, 193, 236, 137, 210, 192, 88, 89, 202, 193, 177, 2, 159, 192, 80, 107, 198, 193, 228, 30, 85, 192, 75, 88, 195, 193, 231, 168, 213, 191, 176, 35, 193, 193, 111, 16, 200, 59, 243, 207, 191, 193, 171, 39, 216, 63, 137, 94, 191, 193, 163, 195, 87, 64, 243, 207, 191, 193, 15, 126, 161, 64, 176, 35, 193, 193, 66, 163, 214, 64, 76, 88, 195, 193, 67, 139, 5, 65, 81, 107, 198, 193, 224, 78, 31, 65, 88, 89, 202, 193, 244, 176, 81, 65, 185, 226, 211, 193, 145, 116, 107, 65, 194, 208, 215, 193, 26, 215, 130, 65, 199, 227, 218, 193, 102, 32, 144, 65, 97, 24, 221, 193, 118, 135, 157, 65, 31, 108, 222, 193, 113, 253, 170, 65, 136, 221, 222, 193, 106, 115, 184, 65, 32, 108, 222, 193, 122, 218, 197, 65, 98, 24, 221, 193, 206, 35, 211, 65, 195, 227, 218, 193, 254, 181, 222, 65, 68, 45, 216, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 81, 228, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 81, 228, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 247, 181, 94, 65, 181, 215, 213, 64, 0, 240, 214, 172, 181, 215, 189, 65, 247, 181, 94, 193, 181, 215, 213, 64, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 204, 172, 42, 246, 122, 13, 193, 247, 181, 94, 65, 88, 219, 251, 191, 247, 181, 94, 193, 88, 219, 251, 191, 247, 181, 222, 65, 65, 114, 10, 194, 247, 181, 222, 193, 65, 114, 10, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 205, 12, 179, 45, 246, 122, 13, 193, 246, 122, 157, 65, 246, 122, 25, 194), +"format": 4119, +"index_count": 21, +"index_data": PackedByteArray(199, 0, 197, 0, 198, 0, 202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0), +"material": SubResource("StandardMaterial3D_qvitn"), +"name": "dirt", +"primitive": 3, +"vertex_count": 212, +"vertex_data": PackedByteArray(118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 131, 18, 237, 223, 0, 0, 0, 128, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 131, 18, 237, 223, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 131, 18, 237, 223, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 16, 160, 123, 109, 0, 0, 0, 128, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 16, 160, 123, 109, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 16, 160, 123, 109, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 106, 205, 131, 146, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 106, 205, 131, 146, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 106, 205, 131, 146, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 131, 18, 106, 77, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 227, 218, 140, 210, 0, 0, 0, 128, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 227, 218, 140, 210, 0, 0, 0, 128, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 227, 218, 140, 210, 0, 0, 0, 128, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 227, 218, 140, 210, 0, 0, 0, 128, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 0, 128, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 227, 218, 140, 210, 0, 0, 0, 128, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 227, 218, 140, 210, 0, 0, 0, 128, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 227, 218, 140, 210, 0, 0, 0, 128, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 227, 218, 140, 210, 0, 0, 0, 128, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 227, 218, 140, 210, 0, 0, 0, 128, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 227, 218, 140, 210, 0, 0, 0, 128, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 227, 218, 140, 210, 0, 0, 0, 128, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 227, 218, 140, 210, 0, 0, 0, 128, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 227, 218, 140, 210, 0, 0, 0, 128, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 227, 218, 140, 210, 0, 0, 0, 128, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 227, 218, 140, 210, 0, 0, 0, 128, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 227, 218, 140, 210, 0, 0, 0, 128, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 227, 218, 140, 210, 0, 0, 0, 128, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 227, 218, 140, 210, 0, 0, 0, 128, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 227, 218, 140, 210, 0, 0, 0, 128, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 227, 218, 140, 210, 0, 0, 0, 128, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 227, 218, 140, 210, 0, 0, 0, 128, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 227, 218, 140, 210, 0, 0, 0, 128, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 227, 218, 140, 210, 0, 0, 0, 128, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 227, 218, 140, 210, 0, 0, 0, 128, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 227, 218, 140, 210, 0, 0, 0, 128, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 227, 218, 140, 210, 0, 0, 0, 128, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 227, 218, 140, 210, 0, 0, 0, 128, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 227, 218, 140, 210, 0, 0, 0, 128, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 227, 218, 140, 210, 0, 0, 0, 128, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 227, 218, 140, 210, 0, 0, 0, 128, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 227, 218, 140, 210, 0, 0, 0, 128, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 227, 218, 140, 210, 0, 0, 0, 128, 203, 244, 7, 63, 88, 199, 90, 63, 98, 33, 211, 62, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 141, 82, 228, 90, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 78, 222, 222, 62, 141, 82, 228, 90, 0, 0, 0, 128, 171, 216, 254, 62, 127, 139, 93, 63, 218, 148, 198, 62, 141, 82, 228, 90, 0, 0, 0, 128, 201, 1, 238, 62, 123, 181, 95, 63, 155, 70, 185, 62, 141, 82, 228, 90, 0, 0, 0, 128, 147, 119, 221, 62, 233, 66, 97, 63, 104, 69, 171, 62, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 0, 128, 106, 76, 205, 62, 14, 50, 98, 63, 195, 160, 156, 62, 141, 82, 228, 90, 0, 0, 0, 128, 43, 146, 189, 62, 227, 129, 98, 63, 225, 104, 141, 62, 141, 82, 228, 90, 0, 0, 0, 128, 74, 90, 174, 62, 14, 50, 98, 63, 77, 93, 123, 62, 141, 82, 228, 90, 0, 0, 0, 128, 165, 181, 159, 62, 233, 66, 97, 63, 243, 6, 91, 62, 141, 82, 228, 90, 0, 0, 0, 128, 113, 180, 145, 62, 123, 181, 95, 63, 140, 242, 57, 62, 141, 82, 228, 90, 0, 0, 0, 128, 51, 102, 132, 62, 127, 139, 93, 63, 188, 68, 24, 62, 141, 82, 228, 90, 0, 0, 0, 128, 82, 179, 111, 62, 88, 199, 90, 63, 190, 69, 236, 61, 141, 82, 228, 90, 0, 0, 0, 128, 160, 191, 64, 62, 215, 16, 84, 63, 70, 10, 69, 61, 141, 82, 228, 90, 0, 0, 0, 128, 143, 166, 39, 62, 177, 76, 81, 63, 224, 10, 114, 60, 141, 82, 228, 90, 0, 0, 0, 128, 23, 10, 13, 62, 180, 34, 79, 63, 216, 104, 148, 188, 141, 82, 228, 90, 0, 0, 0, 128, 84, 15, 226, 61, 70, 149, 77, 63, 10, 134, 78, 189, 141, 82, 228, 90, 0, 0, 0, 128, 190, 124, 167, 61, 34, 166, 76, 63, 184, 239, 167, 189, 141, 82, 228, 90, 0, 0, 0, 128, 116, 58, 85, 61, 76, 86, 76, 63, 165, 216, 230, 189, 141, 82, 228, 90, 0, 0, 0, 128, 58, 209, 174, 60, 34, 166, 76, 63, 20, 220, 17, 190, 141, 82, 228, 90, 0, 0, 0, 128, 40, 195, 39, 188, 70, 149, 77, 63, 95, 37, 47, 190, 141, 82, 228, 90, 0, 0, 0, 128, 104, 66, 46, 189, 180, 34, 79, 63, 197, 39, 75, 190, 141, 82, 228, 90, 0, 0, 0, 128, 198, 124, 154, 189, 177, 76, 81, 63, 68, 196, 101, 190, 141, 82, 228, 90, 0, 0, 0, 128, 140, 192, 222, 189, 215, 16, 84, 63, 86, 221, 126, 190, 141, 82, 228, 90, 0, 0, 0, 128, 141, 64, 52, 190, 88, 199, 90, 63, 132, 232, 150, 190, 141, 82, 228, 90, 0, 0, 0, 128, 113, 98, 86, 190, 127, 139, 93, 63, 12, 117, 163, 190, 141, 82, 228, 90, 0, 0, 0, 128, 65, 16, 120, 190, 123, 181, 95, 63, 73, 195, 176, 190, 141, 82, 228, 90, 0, 0, 0, 128, 81, 146, 140, 190, 233, 66, 97, 63, 127, 196, 190, 190, 141, 82, 228, 90, 0, 0, 0, 128, 126, 189, 156, 190, 14, 50, 98, 63, 37, 105, 205, 190, 141, 82, 228, 90, 0, 0, 0, 128, 188, 119, 172, 190, 227, 129, 98, 63, 5, 161, 220, 190, 141, 82, 228, 90, 0, 0, 0, 128, 157, 175, 187, 190, 14, 50, 98, 63, 64, 91, 236, 190, 141, 82, 228, 90, 0, 0, 0, 128, 67, 84, 202, 190, 233, 66, 97, 63, 110, 134, 252, 190, 141, 82, 228, 90, 0, 0, 0, 128, 118, 85, 216, 190, 123, 181, 95, 63, 89, 136, 6, 191, 141, 82, 228, 90, 0, 0, 0, 128, 66, 19, 228, 190, 159, 204, 93, 63, 102, 246, 13, 191, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 152, 221, 143, 42, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 255, 191, 255, 31, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 255, 223, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 191, 255, 31, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 62, 152, 221, 143, 42, 255, 223, 255, 47, 0, 0, 255, 223, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 223, 255, 47, 0, 0, 255, 223, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 152, 76, 5, 43, 0, 0, 128, 62, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_kmqxh") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_lemui"] +data = PackedVector3Array(-0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.4455, 0.8664, -0.5545, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.4455, 0.8664, -0.5545, 0.5647, 0.8415, 0.4353, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.5647, 0.8415, 0.4353, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, 0.5311, 0.8546, 0.4124, 0.5647, 0.8415, 0.4353, 0.5, 1, 0.5, 0.4977, 0.8654, 0.3879, 0.5311, 0.8546, 0.4124, 0.5, 1, 0.5, 0.4649, 0.8739, 0.3619, 0.4977, 0.8654, 0.3879, 0.5, 1, 0.5, 0.4326, 0.8799, 0.3345, 0.4649, 0.8739, 0.3619, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, 0.4326, 0.8799, 0.3345, -0.5, 1, -0.5, 0.401, 0.8836, 0.3059, 0.4326, 0.8799, 0.3345, -0.5, 1, -0.5, 0.3703, 0.8848, 0.2762, 0.401, 0.8836, 0.3059, -0.5, 1, -0.5, 0.3405, 0.8836, 0.2455, 0.3703, 0.8848, 0.2762, -0.5, 1, -0.5, 0.3119, 0.8799, 0.2139, 0.3405, 0.8836, 0.2455, -0.5, 1, -0.5, 0.2846, 0.8739, 0.1816, 0.3119, 0.8799, 0.2139, -0.5, 1, -0.5, 0.2586, 0.8654, 0.1487, 0.2846, 0.8739, 0.1816, -0.5, 1, -0.5, 0.2341, 0.8546, 0.1154, 0.2586, 0.8654, 0.1487, -0.5, 1, -0.5, 0.1882, 0.8284, 0.0481, 0.2341, 0.8546, 0.1154, -0.5, 1, -0.5, 0.1637, 0.8176, 0.0148, 0.1882, 0.8284, 0.0481, -0.5, 1, -0.5, 0.1377, 0.8091, -0.0181, 0.1637, 0.8176, 0.0148, -0.5, 1, -0.5, 0.1104, 0.8031, -0.0504, 0.1377, 0.8091, -0.0181, -0.5, 1, -0.5, 0.0818, 0.7994, -0.082, 0.1104, 0.8031, -0.0504, -0.5, 1, -0.5, 0.0521, 0.7982, -0.1127, 0.0818, 0.7994, -0.082, -0.5, 1, -0.5, 0.0213, 0.7994, -0.1424, 0.0521, 0.7982, -0.1127, -0.5, 1, -0.5, -0.0102, 0.8031, -0.171, 0.0213, 0.7994, -0.1424, -0.5, 1, -0.5, -0.0425, 0.8091, -0.1984, -0.0102, 0.8031, -0.171, -0.5, 1, -0.5, -0.0754, 0.8176, -0.2244, -0.0425, 0.8091, -0.1984, -0.5, 1, -0.5, -0.1088, 0.8284, -0.2489, -0.0754, 0.8176, -0.2244, -0.5, 1, -0.5, -0.176, 0.8546, -0.2947, -0.1088, 0.8284, -0.2489, -0.5, 1, -0.5, -0.2094, 0.8654, -0.3193, -0.176, 0.8546, -0.2947, -0.5, 1, -0.5, -0.2422, 0.8739, -0.3452, -0.2094, 0.8654, -0.3193, -0.5, 1, -0.5, -0.2746, 0.8799, -0.3726, -0.2422, 0.8739, -0.3452, -0.5, 1, -0.5, -0.3061, 0.8836, -0.4012, -0.2746, 0.8799, -0.3726, -0.5, 1, -0.5, -0.3369, 0.8848, -0.4309, -0.3061, 0.8836, -0.4012, -0.5, 1, -0.5, -0.3666, 0.8836, -0.4616, -0.3369, 0.8848, -0.4309, -0.5, 1, -0.5, -0.3952, 0.8799, -0.4932, -0.3666, 0.8836, -0.4616, -0.5, 1, -0.5, -0.4225, 0.8739, -0.5255, -0.3952, 0.8799, -0.4932, -0.5, 1, -0.5, -0.4455, 0.8664, -0.5545, -0.4225, 0.8739, -0.5255, 0.5647, 0.8415, 0.4353, 0.5311, 0.8546, 0.4124, 0.5, 1, 0.5, 0.5311, 0.8546, 0.4124, 0.4977, 0.8654, 0.3879, 0.5, 1, 0.5, 0.4977, 0.8654, 0.3879, 0.4649, 0.8739, 0.3619, 0.5, 1, 0.5, 0.4649, 0.8739, 0.3619, 0.4326, 0.8799, 0.3345, 0.5, 1, 0.5, -0.5, 1, -0.5, 0.5, 1, 0.5, 0.4326, 0.8799, 0.3345, 0.401, 0.8836, 0.3059, -0.5, 1, -0.5, 0.4326, 0.8799, 0.3345, 0.3703, 0.8848, 0.2762, -0.5, 1, -0.5, 0.401, 0.8836, 0.3059, 0.3405, 0.8836, 0.2455, -0.5, 1, -0.5, 0.3703, 0.8848, 0.2762, 0.3119, 0.8799, 0.2139, -0.5, 1, -0.5, 0.3405, 0.8836, 0.2455, 0.2846, 0.8739, 0.1816, -0.5, 1, -0.5, 0.3119, 0.8799, 0.2139, 0.2586, 0.8654, 0.1487, -0.5, 1, -0.5, 0.2846, 0.8739, 0.1816, 0.2341, 0.8546, 0.1154, -0.5, 1, -0.5, 0.2586, 0.8654, 0.1487, 0.1882, 0.8284, 0.0481, -0.5, 1, -0.5, 0.2341, 0.8546, 0.1154, 0.1637, 0.8176, 0.0148, -0.5, 1, -0.5, 0.1882, 0.8284, 0.0481, 0.1377, 0.8091, -0.0181, -0.5, 1, -0.5, 0.1637, 0.8176, 0.0148, 0.1104, 0.8031, -0.0504, -0.5, 1, -0.5, 0.1377, 0.8091, -0.0181, 0.0818, 0.7994, -0.082, -0.5, 1, -0.5, 0.1104, 0.8031, -0.0504, 0.0521, 0.7982, -0.1127, -0.5, 1, -0.5, 0.0818, 0.7994, -0.082, 0.0213, 0.7994, -0.1424, -0.5, 1, -0.5, 0.0521, 0.7982, -0.1127, -0.0102, 0.8031, -0.171, -0.5, 1, -0.5, 0.0213, 0.7994, -0.1424, -0.0425, 0.8091, -0.1984, -0.5, 1, -0.5, -0.0102, 0.8031, -0.171, -0.0754, 0.8176, -0.2244, -0.5, 1, -0.5, -0.0425, 0.8091, -0.1984, -0.1088, 0.8284, -0.2489, -0.5, 1, -0.5, -0.0754, 0.8176, -0.2244, -0.176, 0.8546, -0.2947, -0.5, 1, -0.5, -0.1088, 0.8284, -0.2489, -0.2094, 0.8654, -0.3193, -0.5, 1, -0.5, -0.176, 0.8546, -0.2947, -0.2422, 0.8739, -0.3452, -0.5, 1, -0.5, -0.2094, 0.8654, -0.3193, -0.2746, 0.8799, -0.3726, -0.5, 1, -0.5, -0.2422, 0.8739, -0.3452, -0.3061, 0.8836, -0.4012, -0.5, 1, -0.5, -0.2746, 0.8799, -0.3726, -0.3369, 0.8848, -0.4309, -0.5, 1, -0.5, -0.3061, 0.8836, -0.4012, -0.3666, 0.8836, -0.4616, -0.5, 1, -0.5, -0.3369, 0.8848, -0.4309, -0.3952, 0.8799, -0.4932, -0.5, 1, -0.5, -0.3666, 0.8836, -0.4616, -0.4225, 0.8739, -0.5255, -0.5, 1, -0.5, -0.3952, 0.8799, -0.4932, -0.4455, 0.8664, -0.5545, -0.5, 1, -0.5, -0.4225, 0.8739, -0.5255, 0.2927, 0.7994, 0.6158, 0.25, 0.7982, 0.6165, 0.2073, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.0809, 0.8654, 0.5777, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.25, 0.8848, 0.5665, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.46, 0.8546, 0.5839, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.25, 0.7982, 0.6165, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.2927, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.0809, 0.8654, 0.5777, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.46, 0.8546, 0.5839, -0.5, 1, 0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5991, 0.8284, 0.46, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6053, 0.8176, 0.4191, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5915, 0.8415, 0, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5991, 0.8284, 0.04, -0.5915, 0.8415, 0, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5777, 0.8654, -0.0809, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5991, 0.8284, 0.46, -0.5, 1, 0.5, -0.6053, 0.8176, 0.4191, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5991, 0.8284, 0.04, -0.6053, 0.8176, 0.0809, -0.5915, 0.8415, 0, -0.5777, 0.8654, -0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, 0, 0.25, 0.5, -0.5, 0.25, 0, -0.5, 0, 0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.25, 0, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 0.25, 0, 0, 0.25, 0.5, 0, 0.25, 0.5, 0.5, 1, 0.5, -0.5, 1, -0.5, 0, 0.25, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0, 0.25, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kykfy"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_d2cnj"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_4ttns"] +_surfaces = [{ +"aabb": AABB(-0.616514, -9.02389e-17, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 39, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 2, 0, 8, 0, 5, 0, 5, 0, 4, 0, 2, 0, 4, 0, 0, 0, 2, 0, 0, 0, 4, 0, 6, 0, 6, 0, 1, 0, 0, 0, 9, 0, 8, 0, 2, 0, 2, 0, 3, 0, 9, 0, 9, 0, 7, 0, 5, 0, 5, 0, 8, 0, 9, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 131, +"vertex_data": PackedByteArray(0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191) +}, { +"aabb": AABB(-0.616514, -9.02389e-17, -0.616514, 1.23303, 1, 1.23303), +"format": 4097, +"index_count": 765, +"index_data": PackedByteArray(9, 0, 10, 0, 11, 0, 10, 0, 9, 0, 11, 0, 6, 0, 12, 0, 13, 0, 12, 0, 6, 0, 13, 0, 15, 0, 14, 0, 1, 0, 14, 0, 15, 0, 1, 0, 7, 0, 16, 0, 17, 0, 16, 0, 7, 0, 17, 0, 3, 0, 18, 0, 19, 0, 18, 0, 3, 0, 19, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 21, 0, 24, 0, 23, 0, 24, 0, 25, 0, 23, 0, 24, 0, 26, 0, 25, 0, 26, 0, 27, 0, 25, 0, 26, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 28, 0, 30, 0, 29, 0, 30, 0, 11, 0, 29, 0, 30, 0, 31, 0, 11, 0, 31, 0, 9, 0, 11, 0, 31, 0, 32, 0, 9, 0, 32, 0, 33, 0, 9, 0, 33, 0, 34, 0, 9, 0, 34, 0, 35, 0, 9, 0, 35, 0, 36, 0, 9, 0, 3, 0, 9, 0, 36, 0, 3, 0, 36, 0, 37, 0, 3, 0, 37, 0, 38, 0, 3, 0, 38, 0, 39, 0, 3, 0, 39, 0, 40, 0, 3, 0, 40, 0, 41, 0, 41, 0, 18, 0, 3, 0, 20, 0, 22, 0, 21, 0, 23, 0, 21, 0, 22, 0, 24, 0, 21, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 24, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 26, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 28, 0, 29, 0, 11, 0, 30, 0, 29, 0, 31, 0, 30, 0, 11, 0, 9, 0, 31, 0, 11, 0, 32, 0, 31, 0, 9, 0, 33, 0, 32, 0, 9, 0, 34, 0, 33, 0, 9, 0, 35, 0, 34, 0, 9, 0, 36, 0, 35, 0, 9, 0, 9, 0, 3, 0, 36, 0, 36, 0, 3, 0, 37, 0, 37, 0, 3, 0, 38, 0, 38, 0, 3, 0, 39, 0, 39, 0, 3, 0, 40, 0, 40, 0, 3, 0, 41, 0, 18, 0, 41, 0, 3, 0, 44, 0, 42, 0, 43, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 45, 0, 46, 0, 47, 0, 45, 0, 46, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 48, 0, 50, 0, 49, 0, 50, 0, 51, 0, 49, 0, 50, 0, 52, 0, 51, 0, 52, 0, 13, 0, 51, 0, 52, 0, 53, 0, 13, 0, 53, 0, 6, 0, 13, 0, 53, 0, 54, 0, 6, 0, 54, 0, 55, 0, 6, 0, 55, 0, 56, 0, 6, 0, 56, 0, 57, 0, 6, 0, 57, 0, 58, 0, 6, 0, 7, 0, 6, 0, 58, 0, 7, 0, 58, 0, 59, 0, 7, 0, 59, 0, 60, 0, 7, 0, 60, 0, 61, 0, 7, 0, 61, 0, 62, 0, 7, 0, 62, 0, 63, 0, 63, 0, 16, 0, 7, 0, 42, 0, 44, 0, 43, 0, 45, 0, 43, 0, 44, 0, 46, 0, 43, 0, 45, 0, 47, 0, 46, 0, 45, 0, 48, 0, 46, 0, 47, 0, 49, 0, 48, 0, 47, 0, 50, 0, 48, 0, 49, 0, 51, 0, 50, 0, 49, 0, 52, 0, 50, 0, 51, 0, 13, 0, 52, 0, 51, 0, 53, 0, 52, 0, 13, 0, 6, 0, 53, 0, 13, 0, 54, 0, 53, 0, 6, 0, 55, 0, 54, 0, 6, 0, 56, 0, 55, 0, 6, 0, 57, 0, 56, 0, 6, 0, 58, 0, 57, 0, 6, 0, 6, 0, 7, 0, 58, 0, 58, 0, 7, 0, 59, 0, 59, 0, 7, 0, 60, 0, 60, 0, 7, 0, 61, 0, 61, 0, 7, 0, 62, 0, 62, 0, 7, 0, 63, 0, 16, 0, 63, 0, 7, 0, 7, 0, 9, 0, 3, 0, 3, 0, 6, 0, 7, 0, 3, 0, 1, 0, 6, 0, 64, 0, 12, 0, 6, 0, 6, 0, 65, 0, 64, 0, 6, 0, 66, 0, 65, 0, 6, 0, 67, 0, 66, 0, 6, 0, 1, 0, 67, 0, 1, 0, 68, 0, 67, 0, 1, 0, 69, 0, 68, 0, 1, 0, 70, 0, 69, 0, 1, 0, 71, 0, 70, 0, 1, 0, 72, 0, 71, 0, 1, 0, 73, 0, 72, 0, 1, 0, 74, 0, 73, 0, 1, 0, 75, 0, 74, 0, 1, 0, 76, 0, 75, 0, 1, 0, 77, 0, 76, 0, 1, 0, 78, 0, 77, 0, 1, 0, 79, 0, 78, 0, 1, 0, 80, 0, 79, 0, 1, 0, 81, 0, 80, 0, 1, 0, 82, 0, 81, 0, 1, 0, 83, 0, 82, 0, 1, 0, 84, 0, 83, 0, 1, 0, 85, 0, 84, 0, 1, 0, 14, 0, 85, 0, 12, 0, 64, 0, 6, 0, 65, 0, 6, 0, 64, 0, 66, 0, 6, 0, 65, 0, 67, 0, 6, 0, 66, 0, 1, 0, 6, 0, 67, 0, 68, 0, 1, 0, 67, 0, 69, 0, 1, 0, 68, 0, 70, 0, 1, 0, 69, 0, 71, 0, 1, 0, 70, 0, 72, 0, 1, 0, 71, 0, 73, 0, 1, 0, 72, 0, 74, 0, 1, 0, 73, 0, 75, 0, 1, 0, 74, 0, 76, 0, 1, 0, 75, 0, 77, 0, 1, 0, 76, 0, 78, 0, 1, 0, 77, 0, 79, 0, 1, 0, 78, 0, 80, 0, 1, 0, 79, 0, 81, 0, 1, 0, 80, 0, 82, 0, 1, 0, 81, 0, 83, 0, 1, 0, 82, 0, 84, 0, 1, 0, 83, 0, 85, 0, 1, 0, 84, 0, 14, 0, 1, 0, 85, 0, 7, 0, 17, 0, 86, 0, 86, 0, 9, 0, 7, 0, 86, 0, 87, 0, 9, 0, 87, 0, 88, 0, 9, 0, 88, 0, 89, 0, 9, 0, 89, 0, 90, 0, 9, 0, 90, 0, 91, 0, 9, 0, 91, 0, 92, 0, 9, 0, 92, 0, 93, 0, 9, 0, 93, 0, 94, 0, 9, 0, 94, 0, 95, 0, 9, 0, 95, 0, 96, 0, 9, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 96, 0, 99, 0, 9, 0, 99, 0, 100, 0, 9, 0, 100, 0, 101, 0, 9, 0, 101, 0, 102, 0, 9, 0, 102, 0, 103, 0, 9, 0, 103, 0, 104, 0, 9, 0, 104, 0, 105, 0, 9, 0, 105, 0, 106, 0, 9, 0, 106, 0, 107, 0, 9, 0, 107, 0, 108, 0, 9, 0, 108, 0, 10, 0, 9, 0, 17, 0, 7, 0, 86, 0, 9, 0, 86, 0, 7, 0, 87, 0, 86, 0, 9, 0, 88, 0, 87, 0, 9, 0, 89, 0, 88, 0, 9, 0, 90, 0, 89, 0, 9, 0, 91, 0, 90, 0, 9, 0, 92, 0, 91, 0, 9, 0, 93, 0, 92, 0, 9, 0, 94, 0, 93, 0, 9, 0, 95, 0, 94, 0, 9, 0, 96, 0, 95, 0, 9, 0, 97, 0, 95, 0, 96, 0, 98, 0, 95, 0, 97, 0, 99, 0, 96, 0, 9, 0, 100, 0, 99, 0, 9, 0, 101, 0, 100, 0, 9, 0, 102, 0, 101, 0, 9, 0, 103, 0, 102, 0, 9, 0, 104, 0, 103, 0, 9, 0, 105, 0, 104, 0, 9, 0, 106, 0, 105, 0, 9, 0, 107, 0, 106, 0, 9, 0, 108, 0, 107, 0, 9, 0, 10, 0, 108, 0, 9, 0, 109, 0, 15, 0, 1, 0, 110, 0, 109, 0, 1, 0, 111, 0, 110, 0, 1, 0, 112, 0, 111, 0, 1, 0, 1, 0, 3, 0, 112, 0, 3, 0, 113, 0, 112, 0, 3, 0, 114, 0, 113, 0, 3, 0, 115, 0, 114, 0, 3, 0, 116, 0, 115, 0, 3, 0, 117, 0, 116, 0, 3, 0, 118, 0, 117, 0, 3, 0, 119, 0, 118, 0, 3, 0, 120, 0, 119, 0, 3, 0, 121, 0, 120, 0, 3, 0, 122, 0, 121, 0, 3, 0, 123, 0, 122, 0, 3, 0, 124, 0, 123, 0, 3, 0, 125, 0, 124, 0, 3, 0, 126, 0, 125, 0, 3, 0, 127, 0, 126, 0, 3, 0, 128, 0, 127, 0, 3, 0, 19, 0, 128, 0, 19, 0, 129, 0, 128, 0, 19, 0, 130, 0, 129, 0, 15, 0, 109, 0, 1, 0, 109, 0, 110, 0, 1, 0, 110, 0, 111, 0, 1, 0, 111, 0, 112, 0, 1, 0, 3, 0, 1, 0, 112, 0, 113, 0, 3, 0, 112, 0, 114, 0, 3, 0, 113, 0, 115, 0, 3, 0, 114, 0, 116, 0, 3, 0, 115, 0, 117, 0, 3, 0, 116, 0, 118, 0, 3, 0, 117, 0, 119, 0, 3, 0, 118, 0, 120, 0, 3, 0, 119, 0, 121, 0, 3, 0, 120, 0, 122, 0, 3, 0, 121, 0, 123, 0, 3, 0, 122, 0, 124, 0, 3, 0, 123, 0, 125, 0, 3, 0, 124, 0, 126, 0, 3, 0, 125, 0, 127, 0, 3, 0, 126, 0, 128, 0, 3, 0, 127, 0, 19, 0, 3, 0, 128, 0, 129, 0, 19, 0, 128, 0, 130, 0, 19, 0, 129, 0), +"lods": [0.00177999, PackedByteArray(9, 0, 10, 0, 11, 0, 10, 0, 9, 0, 11, 0, 6, 0, 12, 0, 13, 0, 12, 0, 6, 0, 13, 0, 15, 0, 14, 0, 1, 0, 14, 0, 15, 0, 1, 0, 7, 0, 16, 0, 17, 0, 16, 0, 7, 0, 17, 0, 3, 0, 18, 0, 19, 0, 18, 0, 3, 0, 19, 0, 24, 0, 25, 0, 22, 0, 24, 0, 28, 0, 25, 0, 28, 0, 29, 0, 25, 0, 28, 0, 31, 0, 29, 0, 31, 0, 11, 0, 29, 0, 31, 0, 9, 0, 11, 0, 31, 0, 32, 0, 9, 0, 32, 0, 34, 0, 9, 0, 34, 0, 36, 0, 9, 0, 3, 0, 9, 0, 36, 0, 3, 0, 36, 0, 38, 0, 3, 0, 38, 0, 40, 0, 40, 0, 18, 0, 3, 0, 25, 0, 24, 0, 22, 0, 28, 0, 24, 0, 25, 0, 29, 0, 28, 0, 25, 0, 31, 0, 28, 0, 29, 0, 11, 0, 31, 0, 29, 0, 9, 0, 31, 0, 11, 0, 32, 0, 31, 0, 9, 0, 34, 0, 32, 0, 9, 0, 36, 0, 34, 0, 9, 0, 9, 0, 3, 0, 36, 0, 36, 0, 3, 0, 38, 0, 38, 0, 3, 0, 40, 0, 18, 0, 40, 0, 3, 0, 46, 0, 47, 0, 44, 0, 46, 0, 50, 0, 47, 0, 50, 0, 51, 0, 47, 0, 50, 0, 53, 0, 51, 0, 53, 0, 13, 0, 51, 0, 53, 0, 6, 0, 13, 0, 53, 0, 54, 0, 6, 0, 54, 0, 56, 0, 6, 0, 56, 0, 58, 0, 6, 0, 7, 0, 6, 0, 58, 0, 7, 0, 58, 0, 61, 0, 7, 0, 61, 0, 63, 0, 63, 0, 16, 0, 7, 0, 47, 0, 46, 0, 44, 0, 50, 0, 46, 0, 47, 0, 51, 0, 50, 0, 47, 0, 53, 0, 50, 0, 51, 0, 13, 0, 53, 0, 51, 0, 6, 0, 53, 0, 13, 0, 54, 0, 53, 0, 6, 0, 56, 0, 54, 0, 6, 0, 58, 0, 56, 0, 6, 0, 6, 0, 7, 0, 58, 0, 58, 0, 7, 0, 61, 0, 61, 0, 7, 0, 63, 0, 16, 0, 63, 0, 7, 0, 7, 0, 9, 0, 3, 0, 3, 0, 6, 0, 7, 0, 3, 0, 1, 0, 6, 0, 65, 0, 12, 0, 6, 0, 6, 0, 67, 0, 65, 0, 6, 0, 1, 0, 67, 0, 1, 0, 69, 0, 67, 0, 1, 0, 71, 0, 69, 0, 1, 0, 73, 0, 71, 0, 1, 0, 75, 0, 73, 0, 1, 0, 77, 0, 75, 0, 1, 0, 78, 0, 77, 0, 1, 0, 80, 0, 78, 0, 1, 0, 82, 0, 80, 0, 1, 0, 84, 0, 82, 0, 1, 0, 14, 0, 84, 0, 12, 0, 65, 0, 6, 0, 67, 0, 6, 0, 65, 0, 1, 0, 6, 0, 67, 0, 69, 0, 1, 0, 67, 0, 71, 0, 1, 0, 69, 0, 73, 0, 1, 0, 71, 0, 75, 0, 1, 0, 73, 0, 77, 0, 1, 0, 75, 0, 78, 0, 1, 0, 77, 0, 80, 0, 1, 0, 78, 0, 82, 0, 1, 0, 80, 0, 84, 0, 1, 0, 82, 0, 14, 0, 1, 0, 84, 0, 7, 0, 17, 0, 86, 0, 86, 0, 9, 0, 7, 0, 86, 0, 87, 0, 9, 0, 87, 0, 88, 0, 9, 0, 88, 0, 89, 0, 9, 0, 89, 0, 90, 0, 9, 0, 90, 0, 91, 0, 9, 0, 91, 0, 92, 0, 9, 0, 92, 0, 93, 0, 9, 0, 93, 0, 95, 0, 9, 0, 95, 0, 97, 0, 96, 0, 95, 0, 96, 0, 9, 0, 96, 0, 100, 0, 9, 0, 100, 0, 102, 0, 9, 0, 102, 0, 103, 0, 9, 0, 103, 0, 104, 0, 9, 0, 104, 0, 105, 0, 9, 0, 105, 0, 106, 0, 9, 0, 106, 0, 107, 0, 9, 0, 107, 0, 108, 0, 9, 0, 108, 0, 10, 0, 9, 0, 17, 0, 7, 0, 86, 0, 9, 0, 86, 0, 7, 0, 87, 0, 86, 0, 9, 0, 88, 0, 87, 0, 9, 0, 89, 0, 88, 0, 9, 0, 90, 0, 89, 0, 9, 0, 91, 0, 90, 0, 9, 0, 92, 0, 91, 0, 9, 0, 93, 0, 92, 0, 9, 0, 95, 0, 93, 0, 9, 0, 97, 0, 95, 0, 96, 0, 96, 0, 95, 0, 9, 0, 100, 0, 96, 0, 9, 0, 102, 0, 100, 0, 9, 0, 103, 0, 102, 0, 9, 0, 104, 0, 103, 0, 9, 0, 105, 0, 104, 0, 9, 0, 106, 0, 105, 0, 9, 0, 107, 0, 106, 0, 9, 0, 108, 0, 107, 0, 9, 0, 10, 0, 108, 0, 9, 0, 109, 0, 15, 0, 1, 0, 110, 0, 109, 0, 1, 0, 111, 0, 110, 0, 1, 0, 112, 0, 111, 0, 1, 0, 1, 0, 3, 0, 112, 0, 3, 0, 113, 0, 112, 0, 3, 0, 114, 0, 113, 0, 3, 0, 115, 0, 114, 0, 3, 0, 116, 0, 115, 0, 3, 0, 117, 0, 116, 0, 3, 0, 118, 0, 117, 0, 3, 0, 119, 0, 118, 0, 3, 0, 120, 0, 119, 0, 3, 0, 121, 0, 120, 0, 3, 0, 122, 0, 121, 0, 3, 0, 123, 0, 122, 0, 3, 0, 124, 0, 123, 0, 3, 0, 125, 0, 124, 0, 3, 0, 126, 0, 125, 0, 3, 0, 127, 0, 126, 0, 3, 0, 128, 0, 127, 0, 3, 0, 19, 0, 128, 0, 19, 0, 129, 0, 128, 0, 15, 0, 109, 0, 1, 0, 109, 0, 110, 0, 1, 0, 110, 0, 111, 0, 1, 0, 111, 0, 112, 0, 1, 0, 3, 0, 1, 0, 112, 0, 113, 0, 3, 0, 112, 0, 114, 0, 3, 0, 113, 0, 115, 0, 3, 0, 114, 0, 116, 0, 3, 0, 115, 0, 117, 0, 3, 0, 116, 0, 118, 0, 3, 0, 117, 0, 119, 0, 3, 0, 118, 0, 120, 0, 3, 0, 119, 0, 121, 0, 3, 0, 120, 0, 122, 0, 3, 0, 121, 0, 123, 0, 3, 0, 122, 0, 124, 0, 3, 0, 123, 0, 125, 0, 3, 0, 124, 0, 126, 0, 3, 0, 125, 0, 127, 0, 3, 0, 126, 0, 128, 0, 3, 0, 127, 0, 19, 0, 3, 0, 128, 0, 129, 0, 19, 0, 128, 0), 0.0180837, PackedByteArray(9, 0, 10, 0, 11, 0, 10, 0, 9, 0, 11, 0, 6, 0, 12, 0, 13, 0, 12, 0, 6, 0, 13, 0, 15, 0, 14, 0, 1, 0, 14, 0, 15, 0, 1, 0, 7, 0, 16, 0, 17, 0, 16, 0, 7, 0, 17, 0, 3, 0, 18, 0, 19, 0, 18, 0, 3, 0, 19, 0, 28, 0, 31, 0, 29, 0, 31, 0, 11, 0, 29, 0, 31, 0, 9, 0, 11, 0, 31, 0, 36, 0, 9, 0, 3, 0, 9, 0, 36, 0, 3, 0, 36, 0, 38, 0, 38, 0, 18, 0, 3, 0, 31, 0, 28, 0, 29, 0, 11, 0, 31, 0, 29, 0, 9, 0, 31, 0, 11, 0, 36, 0, 31, 0, 9, 0, 9, 0, 3, 0, 36, 0, 36, 0, 3, 0, 38, 0, 18, 0, 38, 0, 3, 0, 50, 0, 53, 0, 51, 0, 53, 0, 13, 0, 51, 0, 53, 0, 6, 0, 13, 0, 53, 0, 58, 0, 6, 0, 7, 0, 6, 0, 58, 0, 7, 0, 58, 0, 63, 0, 63, 0, 16, 0, 7, 0, 53, 0, 50, 0, 51, 0, 13, 0, 53, 0, 51, 0, 6, 0, 53, 0, 13, 0, 58, 0, 53, 0, 6, 0, 6, 0, 7, 0, 58, 0, 58, 0, 7, 0, 63, 0, 16, 0, 63, 0, 7, 0, 7, 0, 9, 0, 3, 0, 3, 0, 6, 0, 7, 0, 3, 0, 1, 0, 6, 0, 67, 0, 12, 0, 6, 0, 6, 0, 1, 0, 67, 0, 1, 0, 71, 0, 67, 0, 1, 0, 73, 0, 71, 0, 1, 0, 77, 0, 73, 0, 1, 0, 80, 0, 77, 0, 1, 0, 84, 0, 80, 0, 1, 0, 14, 0, 84, 0, 12, 0, 67, 0, 6, 0, 1, 0, 6, 0, 67, 0, 71, 0, 1, 0, 67, 0, 73, 0, 1, 0, 71, 0, 77, 0, 1, 0, 73, 0, 80, 0, 1, 0, 77, 0, 84, 0, 1, 0, 80, 0, 14, 0, 1, 0, 84, 0, 7, 0, 17, 0, 86, 0, 86, 0, 9, 0, 7, 0, 86, 0, 90, 0, 9, 0, 90, 0, 93, 0, 9, 0, 93, 0, 102, 0, 9, 0, 102, 0, 106, 0, 9, 0, 106, 0, 108, 0, 9, 0, 108, 0, 10, 0, 9, 0, 17, 0, 7, 0, 86, 0, 9, 0, 86, 0, 7, 0, 90, 0, 86, 0, 9, 0, 93, 0, 90, 0, 9, 0, 102, 0, 93, 0, 9, 0, 106, 0, 102, 0, 9, 0, 108, 0, 106, 0, 9, 0, 10, 0, 108, 0, 9, 0, 112, 0, 15, 0, 1, 0, 1, 0, 3, 0, 112, 0, 3, 0, 116, 0, 112, 0, 3, 0, 118, 0, 116, 0, 3, 0, 121, 0, 118, 0, 3, 0, 125, 0, 121, 0, 3, 0, 128, 0, 125, 0, 3, 0, 19, 0, 128, 0, 15, 0, 112, 0, 1, 0, 3, 0, 1, 0, 112, 0, 116, 0, 3, 0, 112, 0, 118, 0, 3, 0, 116, 0, 121, 0, 3, 0, 118, 0, 125, 0, 3, 0, 121, 0, 128, 0, 3, 0, 125, 0, 19, 0, 3, 0, 128, 0), 0.0937348, PackedByteArray(9, 0, 10, 0, 11, 0, 10, 0, 9, 0, 11, 0, 6, 0, 12, 0, 13, 0, 12, 0, 6, 0, 13, 0, 15, 0, 14, 0, 1, 0, 14, 0, 15, 0, 1, 0, 7, 0, 16, 0, 17, 0, 16, 0, 7, 0, 17, 0, 3, 0, 18, 0, 19, 0, 18, 0, 3, 0, 19, 0, 36, 0, 9, 0, 11, 0, 3, 0, 9, 0, 36, 0, 36, 0, 18, 0, 3, 0, 9, 0, 36, 0, 11, 0, 9, 0, 3, 0, 36, 0, 18, 0, 36, 0, 3, 0, 58, 0, 6, 0, 13, 0, 7, 0, 6, 0, 58, 0, 58, 0, 16, 0, 7, 0, 6, 0, 58, 0, 13, 0, 6, 0, 7, 0, 58, 0, 16, 0, 58, 0, 7, 0, 7, 0, 9, 0, 3, 0, 3, 0, 6, 0, 7, 0, 3, 0, 1, 0, 6, 0, 67, 0, 12, 0, 6, 0, 6, 0, 1, 0, 67, 0, 1, 0, 14, 0, 67, 0, 12, 0, 67, 0, 6, 0, 1, 0, 6, 0, 67, 0, 14, 0, 1, 0, 67, 0, 7, 0, 17, 0, 86, 0, 86, 0, 9, 0, 7, 0, 86, 0, 108, 0, 9, 0, 108, 0, 10, 0, 9, 0, 17, 0, 7, 0, 86, 0, 9, 0, 86, 0, 7, 0, 108, 0, 86, 0, 9, 0, 10, 0, 108, 0, 9, 0, 112, 0, 15, 0, 1, 0, 1, 0, 3, 0, 112, 0, 3, 0, 19, 0, 112, 0, 15, 0, 112, 0, 1, 0, 3, 0, 1, 0, 112, 0, 19, 0, 3, 0, 112, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 131, +"vertex_data": PackedByteArray(0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_c63r3"] +resource_name = "blockSnowCornerSmall_Mesh blockSnowCornerSmall" +_surfaces = [{ +"aabb": AABB(-0.616514, -9.02389e-17, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(247, 181, 94, 193, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 25, 194, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 45, 41, 204, 53, 140, 107, 199, 193, 45, 41, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 221, 30, 204, 181, 140, 107, 199, 193, 221, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 110, 151, 14, 193, 215, 215, 144, 193, 220, 15, 241, 192, 179, 108, 201, 193, 1, 241, 196, 192, 215, 215, 144, 193, 1, 241, 196, 192, 215, 215, 144, 193, 220, 15, 241, 192, 179, 108, 201, 193, 110, 151, 14, 193, 215, 215, 144, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 128, 165, 170, 175, 140, 107, 199, 193, 128, 165, 170, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 110, 151, 14, 65, 215, 215, 144, 193, 1, 241, 196, 64, 215, 215, 144, 193, 220, 15, 241, 64, 179, 108, 201, 193, 220, 15, 241, 64, 179, 108, 201, 193, 1, 241, 196, 64, 215, 215, 144, 193, 110, 151, 14, 65, 215, 215, 144, 193, 122, 56, 108, 65, 6, 66, 97, 193, 128, 194, 94, 65, 214, 36, 98, 193, 117, 174, 121, 65, 214, 36, 98, 193, 194, 138, 131, 65, 83, 204, 100, 193, 112, 91, 81, 65, 83, 204, 100, 193, 105, 47, 138, 65, 134, 53, 105, 193, 37, 18, 68, 65, 133, 53, 105, 193, 209, 189, 144, 65, 156, 91, 111, 193, 84, 245, 54, 65, 155, 91, 111, 193, 184, 46, 151, 65, 160, 55, 119, 193, 132, 19, 42, 65, 158, 55, 119, 193, 250, 122, 157, 65, 131, 96, 128, 193, 122, 226, 16, 65, 53, 37, 133, 193, 250, 122, 157, 65, 12, 6, 186, 193, 174, 0, 4, 65, 57, 19, 137, 193, 185, 199, 237, 64, 66, 38, 140, 193, 27, 53, 211, 64, 219, 90, 142, 193, 252, 102, 184, 64, 155, 174, 143, 193, 7, 123, 157, 64, 1, 32, 144, 193, 156, 167, 245, 54, 10, 6, 186, 193, 19, 143, 130, 64, 155, 174, 143, 193, 231, 129, 79, 64, 219, 90, 142, 193, 171, 92, 26, 64, 66, 38, 140, 193, 238, 210, 203, 63, 56, 19, 137, 193, 224, 136, 73, 63, 53, 37, 133, 193, 231, 78, 17, 55, 129, 96, 128, 193, 117, 174, 121, 65, 214, 36, 98, 193, 128, 194, 94, 65, 214, 36, 98, 193, 122, 56, 108, 65, 6, 66, 97, 193, 194, 138, 131, 65, 83, 204, 100, 193, 112, 91, 81, 65, 83, 204, 100, 193, 105, 47, 138, 65, 134, 53, 105, 193, 37, 18, 68, 65, 133, 53, 105, 193, 209, 189, 144, 65, 156, 91, 111, 193, 84, 245, 54, 65, 155, 91, 111, 193, 184, 46, 151, 65, 160, 55, 119, 193, 132, 19, 42, 65, 158, 55, 119, 193, 250, 122, 157, 65, 131, 96, 128, 193, 122, 226, 16, 65, 53, 37, 133, 193, 250, 122, 157, 65, 12, 6, 186, 193, 174, 0, 4, 65, 57, 19, 137, 193, 185, 199, 237, 64, 66, 38, 140, 193, 27, 53, 211, 64, 219, 90, 142, 193, 252, 102, 184, 64, 155, 174, 143, 193, 7, 123, 157, 64, 1, 32, 144, 193, 156, 167, 245, 54, 10, 6, 186, 193, 19, 143, 130, 64, 155, 174, 143, 193, 231, 129, 79, 64, 219, 90, 142, 193, 171, 92, 26, 64, 66, 38, 140, 193, 238, 210, 203, 63, 56, 19, 137, 193, 224, 136, 73, 63, 53, 37, 133, 193, 231, 78, 17, 55, 129, 96, 128, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 193, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 241, 122, 157, 193, 127, 96, 128, 193, 242, 122, 157, 193, 8, 6, 186, 193, 175, 46, 151, 193, 51, 37, 133, 193, 200, 189, 144, 193, 54, 19, 137, 193, 96, 47, 138, 193, 64, 38, 140, 193, 185, 138, 131, 193, 217, 90, 142, 193, 155, 167, 245, 54, 10, 6, 186, 193, 98, 174, 121, 193, 153, 174, 143, 193, 104, 56, 108, 193, 255, 31, 144, 193, 110, 194, 94, 193, 153, 174, 143, 193, 94, 91, 81, 193, 217, 90, 142, 193, 19, 18, 68, 193, 64, 38, 140, 193, 66, 245, 54, 193, 55, 19, 137, 193, 114, 19, 42, 193, 51, 37, 133, 193, 104, 226, 16, 193, 154, 55, 119, 193, 156, 0, 4, 193, 151, 91, 111, 193, 149, 199, 237, 192, 129, 53, 105, 193, 247, 52, 211, 192, 79, 204, 100, 193, 216, 102, 184, 192, 210, 36, 98, 193, 227, 122, 157, 192, 2, 66, 97, 193, 238, 142, 130, 192, 210, 36, 98, 193, 158, 129, 79, 192, 79, 204, 100, 193, 98, 92, 26, 192, 130, 53, 105, 193, 93, 210, 203, 191, 152, 91, 111, 193, 189, 135, 73, 191, 156, 55, 119, 193, 230, 78, 17, 55, 129, 96, 128, 193, 175, 46, 151, 193, 51, 37, 133, 193, 242, 122, 157, 193, 8, 6, 186, 193, 241, 122, 157, 193, 127, 96, 128, 193, 200, 189, 144, 193, 54, 19, 137, 193, 96, 47, 138, 193, 64, 38, 140, 193, 185, 138, 131, 193, 217, 90, 142, 193, 155, 167, 245, 54, 10, 6, 186, 193, 98, 174, 121, 193, 153, 174, 143, 193, 104, 56, 108, 193, 255, 31, 144, 193, 110, 194, 94, 193, 153, 174, 143, 193, 94, 91, 81, 193, 217, 90, 142, 193, 19, 18, 68, 193, 64, 38, 140, 193, 66, 245, 54, 193, 55, 19, 137, 193, 114, 19, 42, 193, 51, 37, 133, 193, 104, 226, 16, 193, 154, 55, 119, 193, 156, 0, 4, 193, 151, 91, 111, 193, 149, 199, 237, 192, 129, 53, 105, 193, 247, 52, 211, 192, 79, 204, 100, 193, 216, 102, 184, 192, 210, 36, 98, 193, 227, 122, 157, 192, 2, 66, 97, 193, 238, 142, 130, 192, 210, 36, 98, 193, 158, 129, 79, 192, 79, 204, 100, 193, 98, 92, 26, 192, 130, 53, 105, 193, 93, 210, 203, 191, 152, 91, 111, 193, 189, 135, 73, 191, 156, 55, 119, 193, 230, 78, 17, 55, 129, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 46, 230, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 46, 230, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 244, 181, 94, 193, 139, 112, 151, 193, 247, 181, 94, 193, 18, 22, 209, 193, 212, 229, 76, 193, 56, 53, 156, 193, 251, 173, 58, 193, 68, 35, 160, 193, 189, 34, 40, 193, 71, 54, 163, 193, 149, 88, 21, 193, 226, 106, 165, 193, 247, 181, 94, 65, 18, 22, 209, 193, 84, 100, 2, 193, 160, 190, 166, 193, 246, 181, 222, 192, 9, 48, 167, 193, 68, 163, 184, 192, 160, 190, 166, 193, 194, 186, 146, 192, 226, 106, 165, 193, 219, 76, 90, 192, 71, 54, 163, 193, 212, 31, 16, 192, 67, 35, 160, 193, 44, 129, 142, 191, 58, 53, 156, 193, 96, 129, 142, 63, 217, 171, 146, 193, 215, 31, 16, 64, 210, 189, 142, 193, 233, 76, 90, 64, 204, 170, 139, 193, 195, 186, 146, 64, 49, 118, 137, 193, 75, 163, 184, 64, 117, 34, 136, 193, 253, 181, 222, 64, 10, 177, 135, 193, 88, 100, 2, 65, 117, 34, 136, 193, 150, 88, 21, 65, 49, 118, 137, 193, 198, 34, 40, 65, 204, 170, 139, 193, 244, 181, 94, 65, 139, 112, 151, 193, 2, 174, 58, 65, 210, 189, 142, 193, 206, 229, 76, 65, 217, 171, 146, 193, 212, 229, 76, 193, 56, 53, 156, 193, 247, 181, 94, 193, 18, 22, 209, 193, 244, 181, 94, 193, 139, 112, 151, 193, 251, 173, 58, 193, 68, 35, 160, 193, 189, 34, 40, 193, 71, 54, 163, 193, 149, 88, 21, 193, 226, 106, 165, 193, 247, 181, 94, 65, 18, 22, 209, 193, 84, 100, 2, 193, 160, 190, 166, 193, 246, 181, 222, 192, 9, 48, 167, 193, 68, 163, 184, 192, 160, 190, 166, 193, 194, 186, 146, 192, 226, 106, 165, 193, 219, 76, 90, 192, 71, 54, 163, 193, 212, 31, 16, 192, 67, 35, 160, 193, 44, 129, 142, 191, 58, 53, 156, 193, 96, 129, 142, 63, 217, 171, 146, 193, 215, 31, 16, 64, 210, 189, 142, 193, 233, 76, 90, 64, 204, 170, 139, 193, 195, 186, 146, 64, 49, 118, 137, 193, 75, 163, 184, 64, 117, 34, 136, 193, 253, 181, 222, 64, 10, 177, 135, 193, 88, 100, 2, 65, 117, 34, 136, 193, 150, 88, 21, 65, 49, 118, 137, 193, 198, 34, 40, 65, 204, 170, 139, 193, 244, 181, 94, 65, 139, 112, 151, 193, 2, 174, 58, 65, 210, 189, 142, 193, 206, 229, 76, 65, 217, 171, 146, 193), +"format": 4119, +"index_count": 39, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 11, 0, 12, 0, 10, 0, 15, 0, 13, 0, 14, 0, 14, 0, 16, 0, 15, 0, 19, 0, 17, 0, 18, 0, 18, 0, 20, 0, 19, 0, 23, 0, 21, 0, 22, 0, 22, 0, 24, 0, 23, 0), +"material": SubResource("StandardMaterial3D_kykfy"), +"name": "dirt", +"primitive": 3, +"vertex_count": 322, +"vertex_data": PackedByteArray(0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 255, 223, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 227, 218, 185, 191, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 227, 218, 185, 191, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 185, 191, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 186, 63, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 186, 63, 228, 90, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 186, 63, 228, 90, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 227, 218, 95, 229, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 95, 229, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 95, 229, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 96, 101, 228, 90, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 96, 101, 228, 90, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 96, 101, 228, 90, 0, 0, 0, 128, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 254, 255, 0, 0, 0, 128, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 254, 255, 0, 0, 0, 128, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 254, 255, 0, 0, 0, 128, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 254, 255, 0, 0, 0, 128, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 254, 255, 0, 0, 0, 128, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 254, 255, 0, 0, 0, 128, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 254, 255, 0, 0, 0, 128, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 254, 255, 0, 0, 0, 128, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 254, 255, 0, 0, 0, 128, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 254, 255, 0, 0, 0, 128, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 254, 255, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 254, 255, 0, 0, 0, 128, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 254, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 254, 255, 0, 0, 0, 128, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 254, 255, 0, 0, 0, 128, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 254, 255, 0, 0, 0, 128, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 254, 255, 0, 0, 0, 128, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 254, 255, 0, 0, 0, 128, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 254, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 254, 255, 0, 0, 0, 128, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 254, 255, 0, 0, 0, 128, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 254, 255, 0, 0, 0, 128, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 254, 255, 0, 0, 0, 128, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 254, 255, 0, 0, 0, 128, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 254, 255, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 254, 255, 0, 0, 0, 128, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 127, 255, 255, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 37, 209, 217, 174, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 37, 209, 217, 174, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 37, 209, 217, 174, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 37, 209, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 37, 209, 217, 174, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 37, 209, 217, 174, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 37, 209, 217, 174, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 37, 209, 217, 174, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 37, 209, 217, 174, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 37, 209, 217, 174, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 37, 209, 217, 174, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 37, 209, 217, 174, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 37, 209, 217, 174, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 37, 209, 217, 174, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 37, 209, 217, 174, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 37, 209, 217, 174, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 37, 209, 217, 174, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 37, 209, 217, 174, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 37, 209, 217, 174, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 37, 209, 217, 174, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 37, 209, 217, 174, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 37, 209, 217, 174, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 217, 174, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 217, 46, 37, 81, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 217, 46, 37, 81, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 217, 46, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 217, 46, 37, 81, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 217, 46, 37, 81, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 217, 46, 37, 81, 0, 0, 0, 128, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 217, 46, 37, 81, 0, 0, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 217, 46, 37, 81, 0, 0, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 217, 46, 37, 81, 0, 0, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 217, 46, 37, 81, 0, 0, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 217, 46, 37, 81, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 217, 46, 37, 81, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 217, 46, 37, 81, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 217, 46, 37, 81, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 217, 46, 37, 81, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 217, 46, 37, 81, 0, 0, 0, 128, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 217, 46, 37, 81, 0, 0, 0, 128, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 217, 46, 37, 81, 0, 0, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 217, 46, 37, 81, 0, 0, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 217, 46, 37, 81, 0, 0, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 217, 46, 37, 81, 0, 0, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 217, 174, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 0, 0, 0, 128, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 0, 0, 0, 128, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 0, 0, 0, 128, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 0, 0, 0, 128, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 0, 0, 0, 128, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 37, 81, 0, 0, 0, 128, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 0, 0, 0, 128, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 0, 0, 0, 128, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 0, 0, 0, 128, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 0, 0, 0, 128, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 0, 0, 0, 128, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 227, 218, 140, 210, 0, 0, 0, 128, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 227, 218, 140, 210, 0, 0, 0, 128, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 227, 218, 140, 210, 0, 0, 0, 128, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 227, 218, 140, 210, 0, 0, 0, 128, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 227, 218, 140, 210, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 0, 128, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 227, 218, 140, 210, 0, 0, 0, 128, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 227, 218, 140, 210, 0, 0, 0, 128, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 227, 218, 140, 210, 0, 0, 0, 128, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 227, 218, 140, 210, 0, 0, 0, 128, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 227, 218, 140, 210, 0, 0, 0, 128, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 227, 218, 140, 210, 0, 0, 0, 128, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 227, 218, 140, 210, 0, 0, 0, 128, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 227, 218, 140, 210, 0, 0, 0, 128, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 227, 218, 140, 210, 0, 0, 0, 128, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 227, 218, 140, 210, 0, 0, 0, 128, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 227, 218, 140, 210, 0, 0, 0, 128, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 227, 218, 140, 210, 0, 0, 0, 128, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 227, 218, 140, 210, 0, 0, 0, 128, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 227, 218, 140, 210, 0, 0, 0, 128, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 227, 218, 140, 210, 0, 0, 0, 128, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 227, 218, 140, 210, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 0, 128, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 227, 218, 140, 210, 0, 0, 0, 128, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191, 227, 218, 140, 210, 0, 0, 0, 128, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 141, 82, 228, 90, 0, 0, 0, 128, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 0, 128, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 141, 82, 228, 90, 0, 0, 0, 128, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 141, 82, 228, 90, 0, 0, 0, 128, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 141, 82, 228, 90, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 0, 128, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 141, 82, 228, 90, 0, 0, 0, 128, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 141, 82, 228, 90, 0, 0, 0, 128, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 141, 82, 228, 90, 0, 0, 0, 128, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 141, 82, 228, 90, 0, 0, 0, 128, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 141, 82, 228, 90, 0, 0, 0, 128, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 141, 82, 228, 90, 0, 0, 0, 128, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 141, 82, 228, 90, 0, 0, 0, 128, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 141, 82, 228, 90, 0, 0, 0, 128, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 141, 82, 228, 90, 0, 0, 0, 128, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 141, 82, 228, 90, 0, 0, 0, 128, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 141, 82, 228, 90, 0, 0, 0, 128, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 141, 82, 228, 90, 0, 0, 0, 128, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 141, 82, 228, 90, 0, 0, 0, 128, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 141, 82, 228, 90, 0, 0, 0, 128, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 141, 82, 228, 90, 0, 0, 0, 128, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 141, 82, 228, 90, 0, 0, 0, 128, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 0, 128, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 141, 82, 228, 90, 0, 0, 0, 128, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191, 141, 82, 228, 90, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, -9.02389e-17, -0.616514, 1.23303, 1, 1.23303), +"attribute_data": PackedByteArray(247, 181, 94, 193, 0, 0, 128, 63, 247, 181, 94, 193, 246, 122, 25, 194, 247, 181, 94, 65, 0, 0, 128, 63, 247, 181, 94, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 0, 0, 0, 0, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 193, 0, 0, 128, 63, 164, 12, 35, 64, 36, 127, 145, 193, 148, 12, 35, 192, 36, 127, 145, 193, 45, 41, 204, 53, 140, 107, 199, 193, 45, 41, 204, 53, 140, 107, 199, 193, 148, 12, 35, 192, 36, 127, 145, 193, 164, 12, 35, 64, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 221, 30, 204, 181, 140, 107, 199, 193, 221, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 110, 151, 14, 193, 215, 215, 144, 193, 220, 15, 241, 192, 179, 108, 201, 193, 1, 241, 196, 192, 215, 215, 144, 193, 1, 241, 196, 192, 215, 215, 144, 193, 220, 15, 241, 192, 179, 108, 201, 193, 110, 151, 14, 193, 215, 215, 144, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 128, 165, 170, 175, 140, 107, 199, 193, 128, 165, 170, 175, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 110, 151, 14, 65, 215, 215, 144, 193, 1, 241, 196, 64, 215, 215, 144, 193, 220, 15, 241, 64, 179, 108, 201, 193, 220, 15, 241, 64, 179, 108, 201, 193, 1, 241, 196, 64, 215, 215, 144, 193, 110, 151, 14, 65, 215, 215, 144, 193, 122, 56, 108, 65, 6, 66, 97, 193, 128, 194, 94, 65, 214, 36, 98, 193, 117, 174, 121, 65, 214, 36, 98, 193, 194, 138, 131, 65, 83, 204, 100, 193, 112, 91, 81, 65, 83, 204, 100, 193, 105, 47, 138, 65, 134, 53, 105, 193, 37, 18, 68, 65, 133, 53, 105, 193, 209, 189, 144, 65, 156, 91, 111, 193, 84, 245, 54, 65, 155, 91, 111, 193, 184, 46, 151, 65, 160, 55, 119, 193, 132, 19, 42, 65, 158, 55, 119, 193, 250, 122, 157, 65, 131, 96, 128, 193, 122, 226, 16, 65, 53, 37, 133, 193, 250, 122, 157, 65, 12, 6, 186, 193, 174, 0, 4, 65, 57, 19, 137, 193, 185, 199, 237, 64, 66, 38, 140, 193, 27, 53, 211, 64, 219, 90, 142, 193, 252, 102, 184, 64, 155, 174, 143, 193, 7, 123, 157, 64, 1, 32, 144, 193, 156, 167, 245, 54, 10, 6, 186, 193, 19, 143, 130, 64, 155, 174, 143, 193, 231, 129, 79, 64, 219, 90, 142, 193, 171, 92, 26, 64, 66, 38, 140, 193, 238, 210, 203, 63, 56, 19, 137, 193, 224, 136, 73, 63, 53, 37, 133, 193, 231, 78, 17, 55, 129, 96, 128, 193, 117, 174, 121, 65, 214, 36, 98, 193, 128, 194, 94, 65, 214, 36, 98, 193, 122, 56, 108, 65, 6, 66, 97, 193, 194, 138, 131, 65, 83, 204, 100, 193, 112, 91, 81, 65, 83, 204, 100, 193, 105, 47, 138, 65, 134, 53, 105, 193, 37, 18, 68, 65, 133, 53, 105, 193, 209, 189, 144, 65, 156, 91, 111, 193, 84, 245, 54, 65, 155, 91, 111, 193, 184, 46, 151, 65, 160, 55, 119, 193, 132, 19, 42, 65, 158, 55, 119, 193, 250, 122, 157, 65, 131, 96, 128, 193, 122, 226, 16, 65, 53, 37, 133, 193, 250, 122, 157, 65, 12, 6, 186, 193, 174, 0, 4, 65, 57, 19, 137, 193, 185, 199, 237, 64, 66, 38, 140, 193, 27, 53, 211, 64, 219, 90, 142, 193, 252, 102, 184, 64, 155, 174, 143, 193, 7, 123, 157, 64, 1, 32, 144, 193, 156, 167, 245, 54, 10, 6, 186, 193, 19, 143, 130, 64, 155, 174, 143, 193, 231, 129, 79, 64, 219, 90, 142, 193, 171, 92, 26, 64, 66, 38, 140, 193, 238, 210, 203, 63, 56, 19, 137, 193, 224, 136, 73, 63, 53, 37, 133, 193, 231, 78, 17, 55, 129, 96, 128, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 193, 246, 122, 149, 193, 0, 0, 0, 0, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 241, 122, 157, 193, 127, 96, 128, 193, 242, 122, 157, 193, 8, 6, 186, 193, 175, 46, 151, 193, 51, 37, 133, 193, 200, 189, 144, 193, 54, 19, 137, 193, 96, 47, 138, 193, 64, 38, 140, 193, 185, 138, 131, 193, 217, 90, 142, 193, 155, 167, 245, 54, 10, 6, 186, 193, 98, 174, 121, 193, 153, 174, 143, 193, 104, 56, 108, 193, 255, 31, 144, 193, 110, 194, 94, 193, 153, 174, 143, 193, 94, 91, 81, 193, 217, 90, 142, 193, 19, 18, 68, 193, 64, 38, 140, 193, 66, 245, 54, 193, 55, 19, 137, 193, 114, 19, 42, 193, 51, 37, 133, 193, 104, 226, 16, 193, 154, 55, 119, 193, 156, 0, 4, 193, 151, 91, 111, 193, 149, 199, 237, 192, 129, 53, 105, 193, 247, 52, 211, 192, 79, 204, 100, 193, 216, 102, 184, 192, 210, 36, 98, 193, 227, 122, 157, 192, 2, 66, 97, 193, 238, 142, 130, 192, 210, 36, 98, 193, 158, 129, 79, 192, 79, 204, 100, 193, 98, 92, 26, 192, 130, 53, 105, 193, 93, 210, 203, 191, 152, 91, 111, 193, 189, 135, 73, 191, 156, 55, 119, 193, 230, 78, 17, 55, 129, 96, 128, 193, 175, 46, 151, 193, 51, 37, 133, 193, 242, 122, 157, 193, 8, 6, 186, 193, 241, 122, 157, 193, 127, 96, 128, 193, 200, 189, 144, 193, 54, 19, 137, 193, 96, 47, 138, 193, 64, 38, 140, 193, 185, 138, 131, 193, 217, 90, 142, 193, 155, 167, 245, 54, 10, 6, 186, 193, 98, 174, 121, 193, 153, 174, 143, 193, 104, 56, 108, 193, 255, 31, 144, 193, 110, 194, 94, 193, 153, 174, 143, 193, 94, 91, 81, 193, 217, 90, 142, 193, 19, 18, 68, 193, 64, 38, 140, 193, 66, 245, 54, 193, 55, 19, 137, 193, 114, 19, 42, 193, 51, 37, 133, 193, 104, 226, 16, 193, 154, 55, 119, 193, 156, 0, 4, 193, 151, 91, 111, 193, 149, 199, 237, 192, 129, 53, 105, 193, 247, 52, 211, 192, 79, 204, 100, 193, 216, 102, 184, 192, 210, 36, 98, 193, 227, 122, 157, 192, 2, 66, 97, 193, 238, 142, 130, 192, 210, 36, 98, 193, 158, 129, 79, 192, 79, 204, 100, 193, 98, 92, 26, 192, 130, 53, 105, 193, 93, 210, 203, 191, 152, 91, 111, 193, 189, 135, 73, 191, 156, 55, 119, 193, 230, 78, 17, 55, 129, 96, 128, 193, 246, 122, 157, 65, 140, 96, 128, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 21, 6, 186, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 46, 230, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 246, 122, 157, 65, 21, 6, 186, 193, 112, 226, 144, 65, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 246, 122, 157, 193, 21, 6, 186, 193, 162, 0, 132, 65, 169, 91, 111, 193, 163, 199, 109, 65, 159, 53, 105, 193, 9, 53, 83, 65, 104, 204, 100, 193, 234, 102, 56, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 195, 129, 207, 64, 104, 204, 100, 193, 143, 92, 154, 64, 159, 53, 105, 193, 149, 210, 75, 64, 169, 91, 111, 193, 83, 136, 201, 191, 60, 37, 133, 193, 46, 230, 169, 180, 140, 96, 128, 193, 77, 136, 201, 63, 184, 55, 119, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 235, 102, 56, 193, 163, 174, 143, 193, 6, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 111, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 244, 181, 94, 193, 139, 112, 151, 193, 247, 181, 94, 193, 18, 22, 209, 193, 212, 229, 76, 193, 56, 53, 156, 193, 251, 173, 58, 193, 68, 35, 160, 193, 189, 34, 40, 193, 71, 54, 163, 193, 149, 88, 21, 193, 226, 106, 165, 193, 247, 181, 94, 65, 18, 22, 209, 193, 84, 100, 2, 193, 160, 190, 166, 193, 246, 181, 222, 192, 9, 48, 167, 193, 68, 163, 184, 192, 160, 190, 166, 193, 194, 186, 146, 192, 226, 106, 165, 193, 219, 76, 90, 192, 71, 54, 163, 193, 212, 31, 16, 192, 67, 35, 160, 193, 44, 129, 142, 191, 58, 53, 156, 193, 96, 129, 142, 63, 217, 171, 146, 193, 215, 31, 16, 64, 210, 189, 142, 193, 233, 76, 90, 64, 204, 170, 139, 193, 195, 186, 146, 64, 49, 118, 137, 193, 75, 163, 184, 64, 117, 34, 136, 193, 253, 181, 222, 64, 10, 177, 135, 193, 88, 100, 2, 65, 117, 34, 136, 193, 150, 88, 21, 65, 49, 118, 137, 193, 198, 34, 40, 65, 204, 170, 139, 193, 244, 181, 94, 65, 139, 112, 151, 193, 2, 174, 58, 65, 210, 189, 142, 193, 206, 229, 76, 65, 217, 171, 146, 193, 212, 229, 76, 193, 56, 53, 156, 193, 247, 181, 94, 193, 18, 22, 209, 193, 244, 181, 94, 193, 139, 112, 151, 193, 251, 173, 58, 193, 68, 35, 160, 193, 189, 34, 40, 193, 71, 54, 163, 193, 149, 88, 21, 193, 226, 106, 165, 193, 247, 181, 94, 65, 18, 22, 209, 193, 84, 100, 2, 193, 160, 190, 166, 193, 246, 181, 222, 192, 9, 48, 167, 193, 68, 163, 184, 192, 160, 190, 166, 193, 194, 186, 146, 192, 226, 106, 165, 193, 219, 76, 90, 192, 71, 54, 163, 193, 212, 31, 16, 192, 67, 35, 160, 193, 44, 129, 142, 191, 58, 53, 156, 193, 96, 129, 142, 63, 217, 171, 146, 193, 215, 31, 16, 64, 210, 189, 142, 193, 233, 76, 90, 64, 204, 170, 139, 193, 195, 186, 146, 64, 49, 118, 137, 193, 75, 163, 184, 64, 117, 34, 136, 193, 253, 181, 222, 64, 10, 177, 135, 193, 88, 100, 2, 65, 117, 34, 136, 193, 150, 88, 21, 65, 49, 118, 137, 193, 198, 34, 40, 65, 204, 170, 139, 193, 244, 181, 94, 65, 139, 112, 151, 193, 2, 174, 58, 65, 210, 189, 142, 193, 206, 229, 76, 65, 217, 171, 146, 193), +"format": 4119, +"index_count": 765, +"index_data": PackedByteArray(27, 0, 25, 0, 26, 0, 30, 0, 28, 0, 29, 0, 33, 0, 31, 0, 32, 0, 36, 0, 34, 0, 35, 0, 39, 0, 37, 0, 38, 0, 42, 0, 40, 0, 41, 0, 45, 0, 43, 0, 44, 0, 48, 0, 46, 0, 47, 0, 51, 0, 49, 0, 50, 0, 54, 0, 52, 0, 53, 0, 57, 0, 55, 0, 56, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 59, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 63, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 65, 0, 66, 0, 64, 0, 65, 0, 67, 0, 66, 0, 67, 0, 68, 0, 66, 0, 67, 0, 69, 0, 68, 0, 69, 0, 70, 0, 68, 0, 70, 0, 71, 0, 68, 0, 71, 0, 72, 0, 68, 0, 72, 0, 73, 0, 68, 0, 74, 0, 68, 0, 73, 0, 74, 0, 73, 0, 75, 0, 74, 0, 75, 0, 76, 0, 74, 0, 76, 0, 77, 0, 74, 0, 77, 0, 78, 0, 74, 0, 78, 0, 79, 0, 79, 0, 80, 0, 74, 0, 83, 0, 81, 0, 82, 0, 84, 0, 82, 0, 81, 0, 85, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 87, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 89, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 91, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 93, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 94, 0, 98, 0, 97, 0, 94, 0, 99, 0, 98, 0, 94, 0, 94, 0, 100, 0, 99, 0, 99, 0, 100, 0, 101, 0, 101, 0, 100, 0, 102, 0, 102, 0, 100, 0, 103, 0, 103, 0, 100, 0, 104, 0, 104, 0, 100, 0, 105, 0, 106, 0, 105, 0, 100, 0, 109, 0, 107, 0, 108, 0, 108, 0, 110, 0, 109, 0, 108, 0, 111, 0, 110, 0, 111, 0, 112, 0, 110, 0, 111, 0, 113, 0, 112, 0, 113, 0, 114, 0, 112, 0, 113, 0, 115, 0, 114, 0, 115, 0, 116, 0, 114, 0, 115, 0, 117, 0, 116, 0, 117, 0, 118, 0, 116, 0, 117, 0, 119, 0, 118, 0, 119, 0, 120, 0, 118, 0, 119, 0, 121, 0, 120, 0, 121, 0, 122, 0, 120, 0, 122, 0, 123, 0, 120, 0, 123, 0, 124, 0, 120, 0, 124, 0, 125, 0, 120, 0, 126, 0, 120, 0, 125, 0, 126, 0, 125, 0, 127, 0, 126, 0, 127, 0, 128, 0, 126, 0, 128, 0, 129, 0, 126, 0, 129, 0, 130, 0, 126, 0, 130, 0, 131, 0, 131, 0, 132, 0, 126, 0, 135, 0, 133, 0, 134, 0, 136, 0, 134, 0, 133, 0, 137, 0, 134, 0, 136, 0, 138, 0, 137, 0, 136, 0, 139, 0, 137, 0, 138, 0, 140, 0, 139, 0, 138, 0, 141, 0, 139, 0, 140, 0, 142, 0, 141, 0, 140, 0, 143, 0, 141, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 143, 0, 144, 0, 146, 0, 145, 0, 144, 0, 147, 0, 145, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 146, 0, 150, 0, 149, 0, 146, 0, 151, 0, 150, 0, 146, 0, 146, 0, 152, 0, 151, 0, 151, 0, 152, 0, 153, 0, 153, 0, 152, 0, 154, 0, 154, 0, 152, 0, 155, 0, 155, 0, 152, 0, 156, 0, 156, 0, 152, 0, 157, 0, 158, 0, 157, 0, 152, 0, 161, 0, 159, 0, 160, 0, 160, 0, 162, 0, 161, 0, 160, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0, 165, 0, 168, 0, 167, 0, 165, 0, 169, 0, 168, 0, 165, 0, 170, 0, 169, 0, 170, 0, 171, 0, 169, 0, 170, 0, 172, 0, 171, 0, 170, 0, 173, 0, 172, 0, 170, 0, 174, 0, 173, 0, 170, 0, 175, 0, 174, 0, 170, 0, 176, 0, 175, 0, 170, 0, 177, 0, 176, 0, 170, 0, 178, 0, 177, 0, 170, 0, 179, 0, 178, 0, 170, 0, 180, 0, 179, 0, 170, 0, 181, 0, 180, 0, 170, 0, 182, 0, 181, 0, 170, 0, 183, 0, 182, 0, 170, 0, 184, 0, 183, 0, 170, 0, 185, 0, 184, 0, 170, 0, 186, 0, 185, 0, 170, 0, 187, 0, 186, 0, 170, 0, 188, 0, 187, 0, 170, 0, 189, 0, 188, 0, 192, 0, 190, 0, 191, 0, 193, 0, 191, 0, 190, 0, 194, 0, 191, 0, 193, 0, 195, 0, 191, 0, 194, 0, 196, 0, 191, 0, 195, 0, 197, 0, 196, 0, 195, 0, 198, 0, 196, 0, 197, 0, 199, 0, 196, 0, 198, 0, 200, 0, 196, 0, 199, 0, 201, 0, 196, 0, 200, 0, 202, 0, 196, 0, 201, 0, 203, 0, 196, 0, 202, 0, 204, 0, 196, 0, 203, 0, 205, 0, 196, 0, 204, 0, 206, 0, 196, 0, 205, 0, 207, 0, 196, 0, 206, 0, 208, 0, 196, 0, 207, 0, 209, 0, 196, 0, 208, 0, 210, 0, 196, 0, 209, 0, 211, 0, 196, 0, 210, 0, 212, 0, 196, 0, 211, 0, 213, 0, 196, 0, 212, 0, 214, 0, 196, 0, 213, 0, 215, 0, 196, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 217, 0, 220, 0, 219, 0, 220, 0, 221, 0, 219, 0, 221, 0, 222, 0, 219, 0, 222, 0, 223, 0, 219, 0, 223, 0, 224, 0, 219, 0, 224, 0, 225, 0, 219, 0, 225, 0, 226, 0, 219, 0, 226, 0, 227, 0, 219, 0, 227, 0, 228, 0, 219, 0, 228, 0, 229, 0, 219, 0, 228, 0, 230, 0, 229, 0, 228, 0, 231, 0, 230, 0, 229, 0, 232, 0, 219, 0, 232, 0, 233, 0, 219, 0, 233, 0, 234, 0, 219, 0, 234, 0, 235, 0, 219, 0, 235, 0, 236, 0, 219, 0, 236, 0, 237, 0, 219, 0, 237, 0, 238, 0, 219, 0, 238, 0, 239, 0, 219, 0, 239, 0, 240, 0, 219, 0, 240, 0, 241, 0, 219, 0, 241, 0, 242, 0, 219, 0, 245, 0, 243, 0, 244, 0, 246, 0, 244, 0, 243, 0, 247, 0, 244, 0, 246, 0, 248, 0, 247, 0, 246, 0, 249, 0, 248, 0, 246, 0, 250, 0, 249, 0, 246, 0, 251, 0, 250, 0, 246, 0, 252, 0, 251, 0, 246, 0, 253, 0, 252, 0, 246, 0, 254, 0, 253, 0, 246, 0, 255, 0, 254, 0, 246, 0, 0, 1, 255, 0, 246, 0, 1, 1, 255, 0, 0, 1, 2, 1, 255, 0, 1, 1, 3, 1, 0, 1, 246, 0, 4, 1, 3, 1, 246, 0, 5, 1, 4, 1, 246, 0, 6, 1, 5, 1, 246, 0, 7, 1, 6, 1, 246, 0, 8, 1, 7, 1, 246, 0, 9, 1, 8, 1, 246, 0, 10, 1, 9, 1, 246, 0, 11, 1, 10, 1, 246, 0, 12, 1, 11, 1, 246, 0, 13, 1, 12, 1, 246, 0, 16, 1, 14, 1, 15, 1, 17, 1, 16, 1, 15, 1, 18, 1, 17, 1, 15, 1, 19, 1, 18, 1, 15, 1, 15, 1, 20, 1, 19, 1, 20, 1, 21, 1, 19, 1, 20, 1, 22, 1, 21, 1, 20, 1, 23, 1, 22, 1, 20, 1, 24, 1, 23, 1, 20, 1, 25, 1, 24, 1, 20, 1, 26, 1, 25, 1, 20, 1, 27, 1, 26, 1, 20, 1, 28, 1, 27, 1, 20, 1, 29, 1, 28, 1, 20, 1, 30, 1, 29, 1, 20, 1, 31, 1, 30, 1, 20, 1, 32, 1, 31, 1, 20, 1, 33, 1, 32, 1, 20, 1, 34, 1, 33, 1, 20, 1, 35, 1, 34, 1, 20, 1, 36, 1, 35, 1, 20, 1, 37, 1, 36, 1, 37, 1, 38, 1, 36, 1, 37, 1, 39, 1, 38, 1, 42, 1, 40, 1, 41, 1, 40, 1, 43, 1, 41, 1, 43, 1, 44, 1, 41, 1, 44, 1, 45, 1, 41, 1, 46, 1, 41, 1, 45, 1, 47, 1, 46, 1, 45, 1, 48, 1, 46, 1, 47, 1, 49, 1, 46, 1, 48, 1, 50, 1, 46, 1, 49, 1, 51, 1, 46, 1, 50, 1, 52, 1, 46, 1, 51, 1, 53, 1, 46, 1, 52, 1, 54, 1, 46, 1, 53, 1, 55, 1, 46, 1, 54, 1, 56, 1, 46, 1, 55, 1, 57, 1, 46, 1, 56, 1, 58, 1, 46, 1, 57, 1, 59, 1, 46, 1, 58, 1, 60, 1, 46, 1, 59, 1, 61, 1, 46, 1, 60, 1, 62, 1, 46, 1, 61, 1, 63, 1, 46, 1, 62, 1, 64, 1, 63, 1, 62, 1, 65, 1, 63, 1, 64, 1), +"lods": [0.00177999, PackedByteArray(27, 0, 25, 0, 26, 0, 30, 0, 28, 0, 29, 0, 33, 0, 31, 0, 32, 0, 36, 0, 34, 0, 35, 0, 39, 0, 37, 0, 38, 0, 42, 0, 40, 0, 41, 0, 45, 0, 43, 0, 44, 0, 48, 0, 46, 0, 47, 0, 51, 0, 49, 0, 50, 0, 54, 0, 52, 0, 53, 0, 59, 0, 60, 0, 57, 0, 59, 0, 63, 0, 60, 0, 63, 0, 64, 0, 60, 0, 63, 0, 67, 0, 64, 0, 67, 0, 66, 0, 64, 0, 67, 0, 68, 0, 66, 0, 67, 0, 69, 0, 68, 0, 69, 0, 71, 0, 68, 0, 71, 0, 73, 0, 68, 0, 74, 0, 68, 0, 73, 0, 74, 0, 73, 0, 76, 0, 74, 0, 76, 0, 78, 0, 78, 0, 80, 0, 74, 0, 86, 0, 85, 0, 81, 0, 89, 0, 85, 0, 86, 0, 90, 0, 89, 0, 86, 0, 93, 0, 89, 0, 90, 0, 92, 0, 93, 0, 90, 0, 94, 0, 93, 0, 92, 0, 95, 0, 93, 0, 94, 0, 97, 0, 95, 0, 94, 0, 99, 0, 97, 0, 94, 0, 94, 0, 100, 0, 99, 0, 99, 0, 100, 0, 102, 0, 102, 0, 100, 0, 104, 0, 106, 0, 104, 0, 100, 0, 111, 0, 112, 0, 109, 0, 111, 0, 115, 0, 112, 0, 115, 0, 116, 0, 112, 0, 115, 0, 119, 0, 116, 0, 119, 0, 118, 0, 116, 0, 119, 0, 120, 0, 118, 0, 119, 0, 121, 0, 120, 0, 121, 0, 123, 0, 120, 0, 123, 0, 125, 0, 120, 0, 126, 0, 120, 0, 125, 0, 126, 0, 125, 0, 129, 0, 126, 0, 129, 0, 131, 0, 131, 0, 132, 0, 126, 0, 138, 0, 137, 0, 133, 0, 141, 0, 137, 0, 138, 0, 142, 0, 141, 0, 138, 0, 145, 0, 141, 0, 142, 0, 144, 0, 145, 0, 142, 0, 146, 0, 145, 0, 144, 0, 147, 0, 145, 0, 146, 0, 149, 0, 147, 0, 146, 0, 151, 0, 149, 0, 146, 0, 146, 0, 152, 0, 151, 0, 151, 0, 152, 0, 155, 0, 155, 0, 152, 0, 157, 0, 158, 0, 157, 0, 152, 0, 161, 0, 159, 0, 160, 0, 160, 0, 162, 0, 161, 0, 160, 0, 163, 0, 162, 0, 167, 0, 164, 0, 165, 0, 165, 0, 169, 0, 167, 0, 165, 0, 170, 0, 169, 0, 170, 0, 172, 0, 169, 0, 170, 0, 174, 0, 172, 0, 170, 0, 176, 0, 174, 0, 170, 0, 178, 0, 176, 0, 170, 0, 180, 0, 178, 0, 170, 0, 181, 0, 180, 0, 170, 0, 183, 0, 181, 0, 170, 0, 185, 0, 183, 0, 170, 0, 187, 0, 185, 0, 170, 0, 189, 0, 187, 0, 192, 0, 193, 0, 191, 0, 195, 0, 191, 0, 193, 0, 196, 0, 191, 0, 195, 0, 198, 0, 196, 0, 195, 0, 200, 0, 196, 0, 198, 0, 202, 0, 196, 0, 200, 0, 204, 0, 196, 0, 202, 0, 206, 0, 196, 0, 204, 0, 207, 0, 196, 0, 206, 0, 209, 0, 196, 0, 207, 0, 211, 0, 196, 0, 209, 0, 213, 0, 196, 0, 211, 0, 215, 0, 196, 0, 213, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 217, 0, 220, 0, 219, 0, 220, 0, 221, 0, 219, 0, 221, 0, 222, 0, 219, 0, 222, 0, 223, 0, 219, 0, 223, 0, 224, 0, 219, 0, 224, 0, 225, 0, 219, 0, 225, 0, 226, 0, 219, 0, 226, 0, 228, 0, 219, 0, 228, 0, 230, 0, 229, 0, 228, 0, 229, 0, 219, 0, 229, 0, 233, 0, 219, 0, 233, 0, 235, 0, 219, 0, 235, 0, 236, 0, 219, 0, 236, 0, 237, 0, 219, 0, 237, 0, 238, 0, 219, 0, 238, 0, 239, 0, 219, 0, 239, 0, 240, 0, 219, 0, 240, 0, 241, 0, 219, 0, 241, 0, 242, 0, 219, 0, 245, 0, 243, 0, 244, 0, 246, 0, 244, 0, 243, 0, 247, 0, 244, 0, 246, 0, 248, 0, 247, 0, 246, 0, 249, 0, 248, 0, 246, 0, 250, 0, 249, 0, 246, 0, 251, 0, 250, 0, 246, 0, 252, 0, 251, 0, 246, 0, 253, 0, 252, 0, 246, 0, 255, 0, 253, 0, 246, 0, 1, 1, 255, 0, 0, 1, 0, 1, 255, 0, 246, 0, 4, 1, 0, 1, 246, 0, 6, 1, 4, 1, 246, 0, 7, 1, 6, 1, 246, 0, 8, 1, 7, 1, 246, 0, 9, 1, 8, 1, 246, 0, 10, 1, 9, 1, 246, 0, 11, 1, 10, 1, 246, 0, 12, 1, 11, 1, 246, 0, 13, 1, 12, 1, 246, 0, 16, 1, 14, 1, 15, 1, 17, 1, 16, 1, 15, 1, 18, 1, 17, 1, 15, 1, 19, 1, 18, 1, 15, 1, 15, 1, 20, 1, 19, 1, 20, 1, 21, 1, 19, 1, 20, 1, 22, 1, 21, 1, 20, 1, 23, 1, 22, 1, 20, 1, 24, 1, 23, 1, 20, 1, 25, 1, 24, 1, 20, 1, 26, 1, 25, 1, 20, 1, 27, 1, 26, 1, 20, 1, 28, 1, 27, 1, 20, 1, 29, 1, 28, 1, 20, 1, 30, 1, 29, 1, 20, 1, 31, 1, 30, 1, 20, 1, 32, 1, 31, 1, 20, 1, 33, 1, 32, 1, 20, 1, 34, 1, 33, 1, 20, 1, 35, 1, 34, 1, 20, 1, 36, 1, 35, 1, 20, 1, 37, 1, 36, 1, 37, 1, 38, 1, 36, 1, 42, 1, 40, 1, 41, 1, 40, 1, 43, 1, 41, 1, 43, 1, 44, 1, 41, 1, 44, 1, 45, 1, 41, 1, 46, 1, 41, 1, 45, 1, 47, 1, 46, 1, 45, 1, 48, 1, 46, 1, 47, 1, 49, 1, 46, 1, 48, 1, 50, 1, 46, 1, 49, 1, 51, 1, 46, 1, 50, 1, 52, 1, 46, 1, 51, 1, 53, 1, 46, 1, 52, 1, 54, 1, 46, 1, 53, 1, 55, 1, 46, 1, 54, 1, 56, 1, 46, 1, 55, 1, 57, 1, 46, 1, 56, 1, 58, 1, 46, 1, 57, 1, 59, 1, 46, 1, 58, 1, 60, 1, 46, 1, 59, 1, 61, 1, 46, 1, 60, 1, 62, 1, 46, 1, 61, 1, 63, 1, 46, 1, 62, 1, 64, 1, 63, 1, 62, 1), 0.0180837, PackedByteArray(27, 0, 25, 0, 26, 0, 30, 0, 28, 0, 29, 0, 33, 0, 31, 0, 32, 0, 36, 0, 34, 0, 35, 0, 39, 0, 37, 0, 38, 0, 42, 0, 40, 0, 41, 0, 45, 0, 43, 0, 44, 0, 48, 0, 46, 0, 47, 0, 51, 0, 49, 0, 50, 0, 54, 0, 52, 0, 53, 0, 63, 0, 67, 0, 64, 0, 67, 0, 66, 0, 64, 0, 67, 0, 68, 0, 66, 0, 67, 0, 73, 0, 68, 0, 74, 0, 68, 0, 73, 0, 74, 0, 73, 0, 76, 0, 76, 0, 80, 0, 74, 0, 93, 0, 89, 0, 90, 0, 92, 0, 93, 0, 90, 0, 94, 0, 93, 0, 92, 0, 99, 0, 93, 0, 94, 0, 94, 0, 100, 0, 99, 0, 99, 0, 100, 0, 102, 0, 106, 0, 102, 0, 100, 0, 115, 0, 119, 0, 116, 0, 119, 0, 118, 0, 116, 0, 119, 0, 120, 0, 118, 0, 119, 0, 125, 0, 120, 0, 126, 0, 120, 0, 125, 0, 126, 0, 125, 0, 131, 0, 131, 0, 132, 0, 126, 0, 145, 0, 141, 0, 142, 0, 144, 0, 145, 0, 142, 0, 146, 0, 145, 0, 144, 0, 151, 0, 145, 0, 146, 0, 146, 0, 152, 0, 151, 0, 151, 0, 152, 0, 157, 0, 158, 0, 157, 0, 152, 0, 161, 0, 159, 0, 160, 0, 160, 0, 162, 0, 161, 0, 160, 0, 163, 0, 162, 0, 169, 0, 164, 0, 165, 0, 165, 0, 170, 0, 169, 0, 170, 0, 174, 0, 169, 0, 170, 0, 176, 0, 174, 0, 170, 0, 180, 0, 176, 0, 170, 0, 183, 0, 180, 0, 170, 0, 187, 0, 183, 0, 170, 0, 189, 0, 187, 0, 192, 0, 195, 0, 191, 0, 196, 0, 191, 0, 195, 0, 200, 0, 196, 0, 195, 0, 202, 0, 196, 0, 200, 0, 206, 0, 196, 0, 202, 0, 209, 0, 196, 0, 206, 0, 213, 0, 196, 0, 209, 0, 215, 0, 196, 0, 213, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 217, 0, 223, 0, 219, 0, 223, 0, 226, 0, 219, 0, 226, 0, 235, 0, 219, 0, 235, 0, 239, 0, 219, 0, 239, 0, 241, 0, 219, 0, 241, 0, 242, 0, 219, 0, 245, 0, 243, 0, 244, 0, 246, 0, 244, 0, 243, 0, 250, 0, 244, 0, 246, 0, 253, 0, 250, 0, 246, 0, 6, 1, 253, 0, 246, 0, 10, 1, 6, 1, 246, 0, 12, 1, 10, 1, 246, 0, 13, 1, 12, 1, 246, 0, 19, 1, 14, 1, 15, 1, 15, 1, 20, 1, 19, 1, 20, 1, 24, 1, 19, 1, 20, 1, 26, 1, 24, 1, 20, 1, 29, 1, 26, 1, 20, 1, 33, 1, 29, 1, 20, 1, 36, 1, 33, 1, 20, 1, 37, 1, 36, 1, 42, 1, 45, 1, 41, 1, 46, 1, 41, 1, 45, 1, 50, 1, 46, 1, 45, 1, 52, 1, 46, 1, 50, 1, 55, 1, 46, 1, 52, 1, 59, 1, 46, 1, 55, 1, 62, 1, 46, 1, 59, 1, 63, 1, 46, 1, 62, 1), 0.0937348, PackedByteArray(27, 0, 25, 0, 26, 0, 30, 0, 28, 0, 29, 0, 33, 0, 31, 0, 32, 0, 36, 0, 34, 0, 35, 0, 39, 0, 37, 0, 38, 0, 42, 0, 40, 0, 41, 0, 45, 0, 43, 0, 44, 0, 48, 0, 46, 0, 47, 0, 51, 0, 49, 0, 50, 0, 54, 0, 52, 0, 53, 0, 73, 0, 68, 0, 66, 0, 74, 0, 68, 0, 73, 0, 73, 0, 80, 0, 74, 0, 94, 0, 99, 0, 92, 0, 94, 0, 100, 0, 99, 0, 106, 0, 99, 0, 100, 0, 125, 0, 120, 0, 118, 0, 126, 0, 120, 0, 125, 0, 125, 0, 132, 0, 126, 0, 146, 0, 151, 0, 144, 0, 146, 0, 152, 0, 151, 0, 158, 0, 151, 0, 152, 0, 161, 0, 159, 0, 160, 0, 160, 0, 162, 0, 161, 0, 160, 0, 163, 0, 162, 0, 169, 0, 164, 0, 165, 0, 165, 0, 170, 0, 169, 0, 170, 0, 189, 0, 169, 0, 192, 0, 195, 0, 191, 0, 196, 0, 191, 0, 195, 0, 215, 0, 196, 0, 195, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 217, 0, 241, 0, 219, 0, 241, 0, 242, 0, 219, 0, 245, 0, 243, 0, 244, 0, 246, 0, 244, 0, 243, 0, 12, 1, 244, 0, 246, 0, 13, 1, 12, 1, 246, 0, 19, 1, 14, 1, 15, 1, 15, 1, 20, 1, 19, 1, 20, 1, 37, 1, 19, 1, 42, 1, 45, 1, 41, 1, 46, 1, 41, 1, 45, 1, 63, 1, 46, 1, 45, 1)], +"material": SubResource("StandardMaterial3D_d2cnj"), +"name": "snow", +"primitive": 3, +"vertex_count": 322, +"vertex_data": PackedByteArray(0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 191, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 169, 19, 208, 164, 0, 0, 0, 128, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 169, 19, 208, 164, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 255, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 169, 19, 208, 164, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 227, 218, 185, 191, 0, 0, 190, 146, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 227, 218, 185, 191, 0, 0, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 185, 191, 0, 0, 190, 146, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 186, 63, 228, 90, 0, 0, 64, 109, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 186, 63, 228, 90, 0, 0, 64, 109, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 186, 63, 228, 90, 0, 0, 64, 109, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 227, 218, 95, 229, 0, 0, 189, 210, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 95, 229, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 95, 229, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 96, 101, 228, 90, 0, 0, 65, 45, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 96, 101, 228, 90, 0, 0, 65, 45, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 96, 101, 228, 90, 0, 0, 65, 45, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 37, 209, 254, 255, 0, 0, 255, 191, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 254, 255, 0, 0, 255, 191, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 37, 209, 254, 255, 0, 0, 255, 191, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 254, 255, 0, 0, 255, 191, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 37, 209, 254, 255, 0, 0, 255, 191, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 254, 255, 0, 0, 255, 191, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 37, 209, 254, 255, 0, 0, 255, 191, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 254, 255, 0, 0, 255, 191, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 37, 209, 254, 255, 0, 0, 255, 191, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 254, 255, 0, 0, 255, 191, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 37, 209, 254, 255, 0, 0, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 254, 255, 0, 0, 255, 191, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 254, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 254, 255, 0, 0, 255, 191, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 254, 255, 0, 0, 255, 191, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 254, 255, 0, 0, 255, 191, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 254, 255, 0, 0, 255, 191, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 254, 255, 0, 0, 255, 191, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 37, 209, 254, 255, 0, 0, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 254, 255, 0, 0, 255, 191, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 37, 209, 254, 255, 0, 0, 255, 191, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 37, 209, 254, 255, 0, 0, 255, 191, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 37, 209, 254, 255, 0, 0, 255, 191, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 37, 209, 254, 255, 0, 0, 255, 191, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 37, 209, 254, 255, 0, 0, 255, 191, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 37, 209, 254, 255, 0, 0, 255, 191, 228, 240, 202, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 28, 15, 181, 190, 34, 166, 76, 63, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 192, 190, 76, 86, 76, 63, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 167, 213, 213, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 88, 42, 170, 190, 70, 149, 77, 63, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 60, 162, 224, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 198, 93, 159, 190, 180, 34, 79, 63, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 167, 74, 235, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 90, 181, 148, 190, 177, 76, 81, 63, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 27, 195, 245, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 228, 60, 138, 190, 215, 16, 84, 63, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 57, 134, 107, 190, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 83, 149, 86, 190, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 123, 68, 65, 190, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 80, 171, 43, 190, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 200, 225, 21, 190, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 190, 227, 129, 98, 63, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 212, 189, 14, 50, 98, 63, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 168, 189, 233, 66, 97, 63, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 19, 238, 122, 189, 123, 181, 95, 63, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 207, 170, 37, 189, 127, 139, 93, 63, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 163, 188, 88, 199, 90, 63, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 0, 24, 108, 87, 63, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 255, 255, 255, 191, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 255, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 255, 127, 255, 255, 255, 255, 255, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 217, 174, 254, 255, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 37, 209, 217, 174, 254, 255, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 37, 209, 217, 174, 254, 255, 0, 128, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 37, 209, 217, 174, 254, 255, 254, 255, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 37, 209, 217, 174, 255, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 37, 209, 217, 174, 254, 255, 254, 255, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 37, 209, 217, 174, 254, 255, 0, 128, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 37, 209, 217, 174, 0, 0, 254, 255, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 37, 209, 217, 174, 254, 255, 0, 128, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 37, 209, 217, 174, 254, 255, 254, 255, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 37, 209, 217, 174, 254, 255, 0, 128, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 37, 209, 217, 174, 254, 255, 0, 128, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 37, 209, 217, 174, 254, 255, 255, 255, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 37, 209, 217, 174, 254, 255, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 37, 209, 217, 174, 255, 255, 254, 255, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 37, 209, 217, 174, 254, 255, 0, 128, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 37, 209, 217, 174, 254, 255, 255, 255, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 37, 209, 217, 174, 254, 255, 255, 255, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 37, 209, 217, 174, 254, 255, 254, 255, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 37, 209, 217, 174, 255, 255, 254, 255, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 37, 209, 217, 174, 254, 255, 0, 128, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 37, 209, 217, 174, 254, 255, 0, 128, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 37, 209, 217, 174, 255, 255, 0, 128, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 37, 209, 217, 174, 255, 255, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 217, 174, 0, 0, 254, 255, 91, 125, 21, 63, 88, 199, 90, 63, 27, 195, 245, 62, 217, 46, 37, 81, 254, 255, 254, 127, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 37, 81, 254, 255, 254, 127, 139, 228, 19, 63, 127, 139, 93, 63, 167, 74, 235, 62, 217, 46, 37, 81, 254, 255, 254, 127, 169, 164, 18, 63, 123, 181, 95, 63, 60, 162, 224, 62, 217, 46, 37, 81, 254, 255, 0, 0, 56, 191, 17, 63, 233, 66, 97, 63, 167, 213, 213, 62, 217, 46, 37, 81, 255, 255, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 217, 46, 37, 81, 254, 255, 0, 0, 34, 53, 17, 63, 14, 50, 98, 63, 228, 240, 202, 62, 217, 46, 37, 81, 254, 255, 254, 127, 16, 7, 17, 63, 227, 129, 98, 63, 0, 0, 192, 62, 217, 46, 37, 81, 0, 0, 0, 0, 34, 53, 17, 63, 14, 50, 98, 63, 28, 15, 181, 62, 217, 46, 37, 81, 254, 255, 254, 127, 56, 191, 17, 63, 233, 66, 97, 63, 88, 42, 170, 62, 217, 46, 37, 81, 254, 255, 0, 0, 169, 164, 18, 63, 123, 181, 95, 63, 198, 93, 159, 62, 217, 46, 37, 81, 254, 255, 254, 127, 139, 228, 19, 63, 127, 139, 93, 63, 90, 181, 148, 62, 217, 46, 37, 81, 254, 255, 254, 127, 91, 125, 21, 63, 88, 199, 90, 63, 228, 60, 138, 62, 217, 46, 37, 81, 0, 0, 0, 0, 146, 93, 25, 63, 215, 16, 84, 63, 57, 134, 107, 62, 217, 46, 37, 81, 254, 255, 254, 127, 98, 246, 26, 63, 177, 76, 81, 63, 83, 149, 86, 62, 217, 46, 37, 81, 254, 255, 0, 0, 68, 54, 28, 63, 180, 34, 79, 63, 123, 68, 65, 62, 217, 46, 37, 81, 255, 255, 254, 127, 181, 27, 29, 63, 70, 149, 77, 63, 80, 171, 43, 62, 217, 46, 37, 81, 254, 255, 0, 0, 202, 165, 29, 63, 34, 166, 76, 63, 200, 225, 21, 62, 217, 46, 37, 81, 254, 255, 0, 0, 221, 211, 29, 63, 76, 86, 76, 63, 0, 0, 0, 62, 217, 46, 37, 81, 255, 255, 0, 0, 202, 165, 29, 63, 34, 166, 76, 63, 111, 60, 212, 61, 217, 46, 37, 81, 254, 255, 0, 0, 181, 27, 29, 63, 70, 149, 77, 63, 95, 169, 168, 61, 217, 46, 37, 81, 254, 255, 254, 127, 68, 54, 28, 63, 180, 34, 79, 63, 19, 238, 122, 61, 217, 46, 37, 81, 254, 255, 254, 127, 98, 246, 26, 63, 177, 76, 81, 63, 207, 170, 37, 61, 217, 46, 37, 81, 255, 255, 0, 0, 146, 93, 25, 63, 215, 16, 84, 63, 59, 206, 163, 60, 217, 46, 37, 81, 255, 255, 0, 0, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 37, 81, 0, 0, 0, 0, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 217, 46, 217, 174, 255, 127, 255, 191, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 217, 46, 217, 174, 255, 127, 255, 191, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 217, 46, 217, 174, 255, 127, 255, 191, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 217, 46, 217, 174, 255, 127, 255, 191, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 217, 46, 217, 174, 255, 127, 255, 191, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 217, 46, 217, 174, 255, 127, 254, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 217, 46, 217, 174, 255, 127, 255, 191, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 217, 46, 217, 174, 255, 127, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 217, 46, 217, 174, 255, 127, 255, 191, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 217, 46, 217, 174, 255, 127, 255, 191, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 217, 46, 217, 174, 255, 127, 255, 191, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 217, 46, 217, 174, 255, 127, 255, 191, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 217, 46, 217, 174, 255, 127, 255, 191, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 217, 46, 217, 174, 255, 127, 255, 191, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 217, 46, 217, 174, 255, 127, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 217, 46, 217, 174, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 141, 93, 25, 191, 215, 16, 84, 63, 57, 134, 235, 62, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 37, 209, 37, 81, 255, 127, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 79, 149, 214, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 120, 68, 193, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 80, 171, 171, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 200, 225, 149, 62, 37, 209, 37, 81, 255, 127, 255, 63, 221, 211, 29, 191, 76, 86, 76, 63, 0, 0, 128, 62, 37, 209, 37, 81, 255, 127, 255, 63, 197, 165, 29, 191, 34, 166, 76, 63, 111, 60, 84, 62, 37, 209, 37, 81, 255, 127, 255, 63, 179, 27, 29, 191, 70, 149, 77, 63, 95, 169, 40, 62, 37, 209, 37, 81, 255, 127, 255, 63, 62, 54, 28, 191, 180, 34, 79, 63, 32, 238, 250, 61, 37, 209, 37, 81, 255, 127, 255, 63, 103, 246, 26, 191, 177, 76, 81, 63, 194, 170, 165, 61, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 59, 206, 35, 189, 37, 209, 37, 81, 255, 127, 0, 64, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 128, 37, 209, 37, 81, 255, 127, 255, 63, 141, 93, 25, 191, 215, 16, 84, 63, 59, 206, 35, 61, 37, 209, 37, 81, 255, 127, 255, 63, 134, 228, 19, 191, 127, 139, 93, 63, 194, 170, 165, 189, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 32, 238, 250, 189, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 95, 169, 40, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 111, 60, 84, 190, 37, 209, 37, 81, 255, 127, 255, 63, 16, 7, 17, 191, 227, 129, 98, 63, 0, 0, 128, 190, 37, 209, 37, 81, 255, 127, 255, 63, 38, 53, 17, 191, 14, 50, 98, 63, 200, 225, 149, 190, 37, 209, 37, 81, 255, 127, 255, 63, 57, 191, 17, 191, 233, 66, 97, 63, 77, 171, 171, 190, 37, 209, 37, 81, 255, 127, 255, 63, 173, 164, 18, 191, 123, 181, 95, 63, 120, 68, 193, 190, 37, 209, 37, 81, 255, 127, 255, 63, 134, 228, 19, 191, 127, 139, 93, 63, 79, 149, 214, 190, 37, 209, 37, 81, 255, 127, 255, 63, 96, 125, 21, 191, 88, 199, 90, 63, 53, 134, 235, 190, 37, 209, 37, 81, 255, 127, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 191, 37, 209, 37, 81, 255, 127, 255, 63, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 227, 218, 140, 210, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 227, 218, 140, 210, 0, 0, 255, 223, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 227, 218, 140, 210, 0, 0, 255, 223, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 227, 218, 140, 210, 0, 0, 255, 223, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 227, 218, 140, 210, 0, 0, 255, 223, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 227, 218, 140, 210, 0, 0, 255, 159, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 227, 218, 140, 210, 0, 0, 255, 223, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 227, 218, 140, 210, 0, 0, 255, 159, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 227, 218, 140, 210, 0, 0, 255, 223, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 227, 218, 140, 210, 0, 0, 255, 159, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 227, 218, 140, 210, 0, 0, 255, 223, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 227, 218, 140, 210, 0, 0, 255, 159, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 227, 218, 140, 210, 0, 0, 255, 223, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 227, 218, 140, 210, 0, 0, 255, 223, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 227, 218, 140, 210, 0, 0, 255, 159, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 227, 218, 140, 210, 0, 0, 255, 223, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 227, 218, 140, 210, 0, 0, 255, 223, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 227, 218, 140, 210, 0, 0, 255, 223, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 227, 218, 140, 210, 0, 0, 255, 159, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 227, 218, 140, 210, 0, 0, 255, 223, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 227, 218, 140, 210, 0, 0, 255, 159, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 227, 218, 140, 210, 0, 0, 255, 223, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 227, 218, 140, 210, 0, 0, 255, 159, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 227, 218, 140, 210, 0, 0, 255, 223, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 227, 218, 140, 210, 0, 0, 255, 223, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191, 227, 218, 140, 210, 0, 0, 255, 159, 161, 19, 10, 63, 88, 199, 90, 63, 9, 132, 162, 189, 141, 82, 228, 90, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 128, 141, 82, 228, 90, 0, 0, 255, 31, 214, 144, 16, 63, 24, 108, 87, 63, 187, 134, 132, 189, 141, 82, 228, 90, 0, 0, 255, 31, 69, 182, 3, 63, 127, 139, 93, 63, 10, 93, 195, 189, 141, 82, 228, 90, 0, 0, 255, 31, 207, 255, 250, 62, 123, 181, 95, 63, 103, 237, 230, 189, 141, 82, 228, 90, 0, 0, 255, 31, 190, 238, 238, 62, 233, 66, 97, 63, 218, 134, 6, 190, 141, 82, 228, 90, 0, 0, 255, 95, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 191, 141, 82, 228, 90, 0, 0, 255, 31, 184, 70, 227, 62, 14, 50, 98, 63, 223, 201, 26, 190, 141, 82, 228, 90, 0, 0, 255, 95, 164, 20, 216, 62, 227, 129, 98, 63, 73, 41, 48, 190, 141, 82, 228, 90, 0, 0, 255, 31, 239, 100, 205, 62, 14, 50, 98, 63, 110, 141, 70, 190, 141, 82, 228, 90, 0, 0, 255, 95, 109, 67, 195, 62, 233, 66, 97, 63, 123, 221, 93, 190, 141, 82, 228, 90, 0, 0, 255, 31, 90, 187, 185, 62, 123, 181, 95, 63, 164, 255, 117, 190, 141, 82, 228, 90, 0, 0, 255, 95, 66, 215, 176, 62, 127, 139, 93, 63, 146, 108, 135, 190, 141, 82, 228, 90, 0, 0, 255, 31, 255, 160, 168, 62, 88, 199, 90, 63, 59, 39, 148, 190, 141, 82, 228, 90, 0, 0, 255, 31, 95, 162, 153, 62, 215, 16, 84, 63, 41, 28, 174, 190, 141, 82, 228, 90, 0, 0, 255, 95, 31, 108, 145, 62, 177, 76, 81, 63, 206, 214, 186, 190, 141, 82, 228, 90, 0, 0, 255, 31, 6, 136, 136, 62, 180, 34, 79, 63, 146, 67, 199, 190, 141, 82, 228, 90, 0, 0, 255, 31, 231, 255, 125, 62, 70, 149, 77, 63, 162, 84, 211, 190, 141, 82, 228, 90, 0, 0, 255, 95, 226, 188, 105, 62, 34, 166, 76, 63, 172, 252, 222, 190, 141, 82, 228, 90, 0, 0, 255, 95, 120, 93, 84, 62, 76, 86, 76, 63, 190, 46, 234, 190, 141, 82, 228, 90, 0, 0, 255, 31, 82, 249, 61, 62, 34, 166, 76, 63, 117, 222, 244, 190, 141, 82, 228, 90, 0, 0, 255, 95, 70, 169, 38, 62, 70, 149, 77, 63, 243, 255, 254, 190, 141, 82, 228, 90, 0, 0, 255, 31, 30, 135, 14, 62, 180, 34, 79, 63, 6, 68, 4, 191, 141, 82, 228, 90, 0, 0, 255, 95, 187, 134, 132, 61, 24, 108, 87, 63, 214, 144, 16, 191, 141, 82, 228, 90, 0, 0, 255, 31, 59, 91, 235, 61, 177, 76, 81, 63, 15, 182, 8, 191, 141, 82, 228, 90, 0, 0, 255, 31, 165, 112, 184, 61, 215, 16, 84, 63, 49, 209, 12, 191, 141, 82, 228, 90, 0, 0, 255, 95) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_4ttns") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_wftwv"] +data = PackedVector3Array(0, 0, -0.5, 0.5, 0, 0, 0.5, 1, 0, 0.5, 1, 0, 0, 1, -0.5, 0, 0, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0, 0, -0.5, 0.5, 0, 0.5, 0.5, 0, 0, 0, 0, -0.5, 0.5, 0, 0, 0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 1, 0, 0.5, 0, 0, -0.5, 1, -0.5, -0.5, 0, -0.5, 0, 0, -0.5, 0, 0, -0.5, 0, 1, -0.5, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, -0.5, -0.5, 1, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5, 0.8415, -0.5915, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.5647, 0.8415, -0.0647, 0.5915, 0.8415, 0, 0.5, 1, 0, 0.5915, 0.8415, 0, 0.5647, 0.8415, -0.0647, 0.5, 1, 0, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, 0, 1, -0.5, 0, 0.8415, -0.5915, 0.0647, 0.8415, -0.5647, 0, 0.8415, -0.5915, 0, 1, -0.5, 0.0647, 0.8415, -0.5647, -0.3964, 0.7994, -0.6158, -0.375, 0.7982, -0.6165, -0.3536, 0.7994, -0.6158, -0.3536, 0.7994, -0.6158, -0.4176, 0.8031, -0.6137, -0.3964, 0.7994, -0.6158, -0.3536, 0.7994, -0.6158, -0.3324, 0.8031, -0.6137, -0.4176, 0.8031, -0.6137, -0.3324, 0.8031, -0.6137, -0.4387, 0.8091, -0.6102, -0.4176, 0.8031, -0.6137, -0.3324, 0.8031, -0.6137, -0.3113, 0.8091, -0.6102, -0.4387, 0.8091, -0.6102, -0.3113, 0.8091, -0.6102, -0.4596, 0.8176, -0.6053, -0.4387, 0.8091, -0.6102, -0.3113, 0.8091, -0.6102, -0.2904, 0.8176, -0.6053, -0.4596, 0.8176, -0.6053, -0.2904, 0.8176, -0.6053, -0.48, 0.8284, -0.5991, -0.4596, 0.8176, -0.6053, -0.2904, 0.8176, -0.6053, -0.27, 0.8284, -0.5991, -0.48, 0.8284, -0.5991, -0.27, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.48, 0.8284, -0.5991, -0.27, 0.8284, -0.5991, -0.23, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, -0.23, 0.8546, -0.5839, -0.5, 1, -0.5, -0.5, 0.8415, -0.5915, -0.23, 0.8546, -0.5839, -0.2096, 0.8654, -0.5777, -0.5, 1, -0.5, -0.2096, 0.8654, -0.5777, -0.1887, 0.8739, -0.5728, -0.5, 1, -0.5, -0.1887, 0.8739, -0.5728, -0.1676, 0.8799, -0.5693, -0.5, 1, -0.5, -0.1676, 0.8799, -0.5693, -0.1464, 0.8836, -0.5672, -0.5, 1, -0.5, -0.1464, 0.8836, -0.5672, -0.125, 0.8848, -0.5665, -0.5, 1, -0.5, 0, 1, -0.5, -0.5, 1, -0.5, -0.125, 0.8848, -0.5665, 0, 1, -0.5, -0.125, 0.8848, -0.5665, -0.1036, 0.8836, -0.5672, 0, 1, -0.5, -0.1036, 0.8836, -0.5672, -0.0824, 0.8799, -0.5693, 0, 1, -0.5, -0.0824, 0.8799, -0.5693, -0.0613, 0.8739, -0.5728, 0, 1, -0.5, -0.0613, 0.8739, -0.5728, -0.0404, 0.8654, -0.5777, 0, 1, -0.5, -0.0404, 0.8654, -0.5777, -0.02, 0.8546, -0.5839, -0.02, 0.8546, -0.5839, 0, 0.8415, -0.5915, 0, 1, -0.5, -0.375, 0.7982, -0.6165, -0.3964, 0.7994, -0.6158, -0.3536, 0.7994, -0.6158, -0.4176, 0.8031, -0.6137, -0.3536, 0.7994, -0.6158, -0.3964, 0.7994, -0.6158, -0.3324, 0.8031, -0.6137, -0.3536, 0.7994, -0.6158, -0.4176, 0.8031, -0.6137, -0.4387, 0.8091, -0.6102, -0.3324, 0.8031, -0.6137, -0.4176, 0.8031, -0.6137, -0.3113, 0.8091, -0.6102, -0.3324, 0.8031, -0.6137, -0.4387, 0.8091, -0.6102, -0.4596, 0.8176, -0.6053, -0.3113, 0.8091, -0.6102, -0.4387, 0.8091, -0.6102, -0.2904, 0.8176, -0.6053, -0.3113, 0.8091, -0.6102, -0.4596, 0.8176, -0.6053, -0.48, 0.8284, -0.5991, -0.2904, 0.8176, -0.6053, -0.4596, 0.8176, -0.6053, -0.27, 0.8284, -0.5991, -0.2904, 0.8176, -0.6053, -0.48, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.27, 0.8284, -0.5991, -0.48, 0.8284, -0.5991, -0.23, 0.8546, -0.5839, -0.27, 0.8284, -0.5991, -0.5, 0.8415, -0.5915, -0.5, 1, -0.5, -0.23, 0.8546, -0.5839, -0.5, 0.8415, -0.5915, -0.2096, 0.8654, -0.5777, -0.23, 0.8546, -0.5839, -0.5, 1, -0.5, -0.1887, 0.8739, -0.5728, -0.2096, 0.8654, -0.5777, -0.5, 1, -0.5, -0.1676, 0.8799, -0.5693, -0.1887, 0.8739, -0.5728, -0.5, 1, -0.5, -0.1464, 0.8836, -0.5672, -0.1676, 0.8799, -0.5693, -0.5, 1, -0.5, -0.125, 0.8848, -0.5665, -0.1464, 0.8836, -0.5672, -0.5, 1, -0.5, -0.5, 1, -0.5, 0, 1, -0.5, -0.125, 0.8848, -0.5665, -0.125, 0.8848, -0.5665, 0, 1, -0.5, -0.1036, 0.8836, -0.5672, -0.1036, 0.8836, -0.5672, 0, 1, -0.5, -0.0824, 0.8799, -0.5693, -0.0824, 0.8799, -0.5693, 0, 1, -0.5, -0.0613, 0.8739, -0.5728, -0.0613, 0.8739, -0.5728, 0, 1, -0.5, -0.0404, 0.8654, -0.5777, -0.0404, 0.8654, -0.5777, 0, 1, -0.5, -0.02, 0.8546, -0.5839, 0, 0.8415, -0.5915, -0.02, 0.8546, -0.5839, 0, 1, -0.5, 0.2927, 0.7994, 0.6158, 0.25, 0.7982, 0.6165, 0.2073, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.0809, 0.8654, 0.5777, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.25, 0.8848, 0.5665, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.46, 0.8546, 0.5839, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.25, 0.7982, 0.6165, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.2927, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.0809, 0.8654, 0.5777, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.46, 0.8546, 0.5839, -0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 1, -0.5, 0, 1, -0.5, 0, 1, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, 0, 1, -0.5, 0.5, 1, 0, 0.5, 1, 0.5, 0.5839, 0.8546, 0.48, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4596, 0.5839, 0.8546, 0.48, 0.5, 1, 0.5, 0.5728, 0.8739, 0.4387, 0.5777, 0.8654, 0.4596, 0.5, 1, 0.5, 0.5693, 0.8799, 0.4176, 0.5728, 0.8739, 0.4387, 0.5, 1, 0.5, 0.5, 1, 0, 0.5693, 0.8799, 0.4176, 0.5, 1, 0, 0.5672, 0.8836, 0.3964, 0.5693, 0.8799, 0.4176, 0.5, 1, 0, 0.5665, 0.8848, 0.375, 0.5672, 0.8836, 0.3964, 0.5, 1, 0, 0.5672, 0.8836, 0.3536, 0.5665, 0.8848, 0.375, 0.5, 1, 0, 0.5693, 0.8799, 0.3324, 0.5672, 0.8836, 0.3536, 0.5, 1, 0, 0.5728, 0.8739, 0.3113, 0.5693, 0.8799, 0.3324, 0.5, 1, 0, 0.5777, 0.8654, 0.2904, 0.5728, 0.8739, 0.3113, 0.5, 1, 0, 0.5839, 0.8546, 0.27, 0.5777, 0.8654, 0.2904, 0.5, 1, 0, 0.5991, 0.8284, 0.23, 0.5839, 0.8546, 0.27, 0.5, 1, 0, 0.6053, 0.8176, 0.2096, 0.5991, 0.8284, 0.23, 0.5, 1, 0, 0.6102, 0.8091, 0.1887, 0.6053, 0.8176, 0.2096, 0.5, 1, 0, 0.6137, 0.8031, 0.1676, 0.6102, 0.8091, 0.1887, 0.5, 1, 0, 0.6158, 0.7994, 0.1464, 0.6137, 0.8031, 0.1676, 0.5, 1, 0, 0.6165, 0.7982, 0.125, 0.6158, 0.7994, 0.1464, 0.5, 1, 0, 0.6158, 0.7994, 0.1036, 0.6165, 0.7982, 0.125, 0.5, 1, 0, 0.6137, 0.8031, 0.0824, 0.6158, 0.7994, 0.1036, 0.5, 1, 0, 0.6102, 0.8091, 0.0613, 0.6137, 0.8031, 0.0824, 0.5, 1, 0, 0.6053, 0.8176, 0.0404, 0.6102, 0.8091, 0.0613, 0.5, 1, 0, 0.5991, 0.8284, 0.02, 0.6053, 0.8176, 0.0404, 0.5, 1, 0, 0.5915, 0.8415, 0, 0.5991, 0.8284, 0.02, 0.5915, 0.8415, 0.5, 0.5839, 0.8546, 0.48, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4596, 0.5, 1, 0.5, 0.5839, 0.8546, 0.48, 0.5728, 0.8739, 0.4387, 0.5, 1, 0.5, 0.5777, 0.8654, 0.4596, 0.5693, 0.8799, 0.4176, 0.5, 1, 0.5, 0.5728, 0.8739, 0.4387, 0.5, 1, 0, 0.5, 1, 0.5, 0.5693, 0.8799, 0.4176, 0.5672, 0.8836, 0.3964, 0.5, 1, 0, 0.5693, 0.8799, 0.4176, 0.5665, 0.8848, 0.375, 0.5, 1, 0, 0.5672, 0.8836, 0.3964, 0.5672, 0.8836, 0.3536, 0.5, 1, 0, 0.5665, 0.8848, 0.375, 0.5693, 0.8799, 0.3324, 0.5, 1, 0, 0.5672, 0.8836, 0.3536, 0.5728, 0.8739, 0.3113, 0.5, 1, 0, 0.5693, 0.8799, 0.3324, 0.5777, 0.8654, 0.2904, 0.5, 1, 0, 0.5728, 0.8739, 0.3113, 0.5839, 0.8546, 0.27, 0.5, 1, 0, 0.5777, 0.8654, 0.2904, 0.5991, 0.8284, 0.23, 0.5, 1, 0, 0.5839, 0.8546, 0.27, 0.6053, 0.8176, 0.2096, 0.5, 1, 0, 0.5991, 0.8284, 0.23, 0.6102, 0.8091, 0.1887, 0.5, 1, 0, 0.6053, 0.8176, 0.2096, 0.6137, 0.8031, 0.1676, 0.5, 1, 0, 0.6102, 0.8091, 0.1887, 0.6158, 0.7994, 0.1464, 0.5, 1, 0, 0.6137, 0.8031, 0.1676, 0.6165, 0.7982, 0.125, 0.5, 1, 0, 0.6158, 0.7994, 0.1464, 0.6158, 0.7994, 0.1036, 0.5, 1, 0, 0.6165, 0.7982, 0.125, 0.6137, 0.8031, 0.0824, 0.5, 1, 0, 0.6158, 0.7994, 0.1036, 0.6102, 0.8091, 0.0613, 0.5, 1, 0, 0.6137, 0.8031, 0.0824, 0.6053, 0.8176, 0.0404, 0.5, 1, 0, 0.6102, 0.8091, 0.0613, 0.5991, 0.8284, 0.02, 0.5, 1, 0, 0.6053, 0.8176, 0.0404, 0.5915, 0.8415, 0, 0.5, 1, 0, 0.5991, 0.8284, 0.02, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5991, 0.8284, 0.46, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6053, 0.8176, 0.4191, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.5915, 0.8415, 0, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5991, 0.8284, 0.04, -0.5915, 0.8415, 0, -0.5839, 0.8546, -0.04, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5777, 0.8654, -0.0809, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5915, 0.8415, -0.5, -0.5, 1, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.5991, 0.8284, 0.46, -0.5, 1, 0.5, -0.6053, 0.8176, 0.4191, -0.5991, 0.8284, 0.46, -0.5, 1, -0.5, -0.6102, 0.8091, 0.3775, -0.6053, 0.8176, 0.4191, -0.5, 1, -0.5, -0.6137, 0.8031, 0.3353, -0.6102, 0.8091, 0.3775, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2927, -0.6137, 0.8031, 0.3353, -0.5, 1, -0.5, -0.6165, 0.7982, 0.25, -0.6158, 0.7994, 0.2927, -0.5, 1, -0.5, -0.6158, 0.7994, 0.2073, -0.6165, 0.7982, 0.25, -0.5, 1, -0.5, -0.6137, 0.8031, 0.1647, -0.6158, 0.7994, 0.2073, -0.5, 1, -0.5, -0.6102, 0.8091, 0.1225, -0.6137, 0.8031, 0.1647, -0.5, 1, -0.5, -0.6053, 0.8176, 0.0809, -0.6102, 0.8091, 0.1225, -0.5, 1, -0.5, -0.5839, 0.8546, -0.04, -0.6053, 0.8176, 0.0809, -0.5, 1, -0.5, -0.5915, 0.8415, 0, -0.6053, 0.8176, 0.0809, -0.5839, 0.8546, -0.04, -0.5991, 0.8284, 0.04, -0.6053, 0.8176, 0.0809, -0.5915, 0.8415, 0, -0.5777, 0.8654, -0.0809, -0.5839, 0.8546, -0.04, -0.5, 1, -0.5, -0.5728, 0.8739, -0.1225, -0.5777, 0.8654, -0.0809, -0.5, 1, -0.5, -0.5693, 0.8799, -0.1647, -0.5728, 0.8739, -0.1225, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2073, -0.5693, 0.8799, -0.1647, -0.5, 1, -0.5, -0.5665, 0.8848, -0.25, -0.5672, 0.8836, -0.2073, -0.5, 1, -0.5, -0.5672, 0.8836, -0.2927, -0.5665, 0.8848, -0.25, -0.5, 1, -0.5, -0.5693, 0.8799, -0.3353, -0.5672, 0.8836, -0.2927, -0.5, 1, -0.5, -0.5728, 0.8739, -0.3775, -0.5693, 0.8799, -0.3353, -0.5, 1, -0.5, -0.5777, 0.8654, -0.4191, -0.5728, 0.8739, -0.3775, -0.5, 1, -0.5, -0.5839, 0.8546, -0.46, -0.5777, 0.8654, -0.4191, -0.5, 1, -0.5, -0.5915, 0.8415, -0.5, -0.5839, 0.8546, -0.46, -0.5, 1, -0.5, 0.5394, 0.8546, -0.0794, 0.5647, 0.8415, -0.0647, 0.5, 1, 0, 0.5145, 0.8654, -0.0954, 0.5394, 0.8546, -0.0794, 0.5, 1, 0, 0.4902, 0.8739, -0.1128, 0.5145, 0.8654, -0.0954, 0.5, 1, 0, 0.4667, 0.8799, -0.1314, 0.4902, 0.8739, -0.1128, 0.5, 1, 0, 0.5, 1, 0, 0, 1, -0.5, 0.4667, 0.8799, -0.1314, 0, 1, -0.5, 0.4439, 0.8836, -0.1512, 0.4667, 0.8799, -0.1314, 0, 1, -0.5, 0.422, 0.8848, -0.172, 0.4439, 0.8836, -0.1512, 0, 1, -0.5, 0.4012, 0.8836, -0.1939, 0.422, 0.8848, -0.172, 0, 1, -0.5, 0.3814, 0.8799, -0.2167, 0.4012, 0.8836, -0.1939, 0, 1, -0.5, 0.3628, 0.8739, -0.2402, 0.3814, 0.8799, -0.2167, 0, 1, -0.5, 0.3454, 0.8654, -0.2645, 0.3628, 0.8739, -0.2402, 0, 1, -0.5, 0.3294, 0.8546, -0.2894, 0.3454, 0.8654, -0.2645, 0, 1, -0.5, 0.3001, 0.8284, -0.3401, 0.3294, 0.8546, -0.2894, 0, 1, -0.5, 0.284, 0.8176, -0.3649, 0.3001, 0.8284, -0.3401, 0, 1, -0.5, 0.2667, 0.8091, -0.3892, 0.284, 0.8176, -0.3649, 0, 1, -0.5, 0.248, 0.8031, -0.4128, 0.2667, 0.8091, -0.3892, 0, 1, -0.5, 0.2283, 0.7994, -0.4355, 0.248, 0.8031, -0.4128, 0, 1, -0.5, 0.2074, 0.7982, -0.4574, 0.2283, 0.7994, -0.4355, 0, 1, -0.5, 0.1855, 0.7994, -0.4783, 0.2074, 0.7982, -0.4574, 0, 1, -0.5, 0.1628, 0.8031, -0.498, 0.1855, 0.7994, -0.4783, 0, 1, -0.5, 0.1392, 0.8091, -0.5167, 0.1628, 0.8031, -0.498, 0, 1, -0.5, 0.0647, 0.8415, -0.5647, 0.1392, 0.8091, -0.5167, 0.0647, 0.8415, -0.5647, 0.1149, 0.8176, -0.534, 0.1392, 0.8091, -0.5167, 0.0647, 0.8415, -0.5647, 0.0901, 0.8284, -0.5501, 0.1149, 0.8176, -0.534, 0.5647, 0.8415, -0.0647, 0.5394, 0.8546, -0.0794, 0.5, 1, 0, 0.5394, 0.8546, -0.0794, 0.5145, 0.8654, -0.0954, 0.5, 1, 0, 0.5145, 0.8654, -0.0954, 0.4902, 0.8739, -0.1128, 0.5, 1, 0, 0.4902, 0.8739, -0.1128, 0.4667, 0.8799, -0.1314, 0.5, 1, 0, 0, 1, -0.5, 0.5, 1, 0, 0.4667, 0.8799, -0.1314, 0.4439, 0.8836, -0.1512, 0, 1, -0.5, 0.4667, 0.8799, -0.1314, 0.422, 0.8848, -0.172, 0, 1, -0.5, 0.4439, 0.8836, -0.1512, 0.4012, 0.8836, -0.1939, 0, 1, -0.5, 0.422, 0.8848, -0.172, 0.3814, 0.8799, -0.2167, 0, 1, -0.5, 0.4012, 0.8836, -0.1939, 0.3628, 0.8739, -0.2402, 0, 1, -0.5, 0.3814, 0.8799, -0.2167, 0.3454, 0.8654, -0.2645, 0, 1, -0.5, 0.3628, 0.8739, -0.2402, 0.3294, 0.8546, -0.2894, 0, 1, -0.5, 0.3454, 0.8654, -0.2645, 0.3001, 0.8284, -0.3401, 0, 1, -0.5, 0.3294, 0.8546, -0.2894, 0.284, 0.8176, -0.3649, 0, 1, -0.5, 0.3001, 0.8284, -0.3401, 0.2667, 0.8091, -0.3892, 0, 1, -0.5, 0.284, 0.8176, -0.3649, 0.248, 0.8031, -0.4128, 0, 1, -0.5, 0.2667, 0.8091, -0.3892, 0.2283, 0.7994, -0.4355, 0, 1, -0.5, 0.248, 0.8031, -0.4128, 0.2074, 0.7982, -0.4574, 0, 1, -0.5, 0.2283, 0.7994, -0.4355, 0.1855, 0.7994, -0.4783, 0, 1, -0.5, 0.2074, 0.7982, -0.4574, 0.1628, 0.8031, -0.498, 0, 1, -0.5, 0.1855, 0.7994, -0.4783, 0.1392, 0.8091, -0.5167, 0, 1, -0.5, 0.1628, 0.8031, -0.498, 0.0647, 0.8415, -0.5647, 0, 1, -0.5, 0.1392, 0.8091, -0.5167, 0.1149, 0.8176, -0.534, 0.0647, 0.8415, -0.5647, 0.1392, 0.8091, -0.5167, 0.0901, 0.8284, -0.5501, 0.0647, 0.8415, -0.5647, 0.1149, 0.8176, -0.534) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vr3sx"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ac7pb"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_hlc1b"] +_surfaces = [{ +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 1.20181, 1.23303), +"format": 4097, +"index_count": 870, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 16, 0, 17, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 19, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 21, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 10, 0, 21, 0, 22, 0, 23, 0, 10, 0, 23, 0, 11, 0, 10, 0, 23, 0, 24, 0, 11, 0, 24, 0, 25, 0, 11, 0, 25, 0, 26, 0, 11, 0, 26, 0, 27, 0, 11, 0, 27, 0, 28, 0, 11, 0, 8, 0, 11, 0, 28, 0, 8, 0, 28, 0, 29, 0, 8, 0, 29, 0, 30, 0, 8, 0, 30, 0, 31, 0, 8, 0, 31, 0, 32, 0, 8, 0, 32, 0, 33, 0, 33, 0, 6, 0, 8, 0, 12, 0, 14, 0, 13, 0, 15, 0, 13, 0, 14, 0, 16, 0, 13, 0, 15, 0, 17, 0, 16, 0, 15, 0, 18, 0, 16, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 18, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 20, 0, 21, 0, 10, 0, 22, 0, 21, 0, 23, 0, 22, 0, 10, 0, 11, 0, 23, 0, 10, 0, 24, 0, 23, 0, 11, 0, 25, 0, 24, 0, 11, 0, 26, 0, 25, 0, 11, 0, 27, 0, 26, 0, 11, 0, 28, 0, 27, 0, 11, 0, 11, 0, 8, 0, 28, 0, 28, 0, 8, 0, 29, 0, 29, 0, 8, 0, 30, 0, 30, 0, 8, 0, 31, 0, 31, 0, 8, 0, 32, 0, 32, 0, 8, 0, 33, 0, 6, 0, 33, 0, 8, 0, 34, 0, 9, 0, 11, 0, 11, 0, 35, 0, 34, 0, 11, 0, 36, 0, 35, 0, 11, 0, 37, 0, 36, 0, 11, 0, 38, 0, 37, 0, 11, 0, 4, 0, 38, 0, 4, 0, 39, 0, 38, 0, 4, 0, 40, 0, 39, 0, 4, 0, 41, 0, 40, 0, 4, 0, 42, 0, 41, 0, 4, 0, 43, 0, 42, 0, 4, 0, 44, 0, 43, 0, 4, 0, 45, 0, 44, 0, 4, 0, 46, 0, 45, 0, 4, 0, 47, 0, 46, 0, 4, 0, 48, 0, 47, 0, 4, 0, 49, 0, 48, 0, 4, 0, 50, 0, 49, 0, 4, 0, 51, 0, 50, 0, 4, 0, 52, 0, 51, 0, 48, 0, 53, 0, 47, 0, 53, 0, 54, 0, 47, 0, 53, 0, 55, 0, 54, 0, 4, 0, 56, 0, 52, 0, 53, 0, 57, 0, 55, 0, 4, 0, 58, 0, 56, 0, 57, 0, 59, 0, 55, 0, 57, 0, 60, 0, 59, 0, 57, 0, 61, 0, 60, 0, 4, 0, 62, 0, 58, 0, 57, 0, 63, 0, 61, 0, 63, 0, 64, 0, 61, 0, 63, 0, 65, 0, 64, 0, 63, 0, 66, 0, 65, 0, 4, 0, 67, 0, 62, 0, 4, 0, 68, 0, 67, 0, 4, 0, 69, 0, 68, 0, 4, 0, 70, 0, 69, 0, 4, 0, 71, 0, 70, 0, 4, 0, 72, 0, 71, 0, 4, 0, 73, 0, 72, 0, 4, 0, 74, 0, 73, 0, 4, 0, 75, 0, 74, 0, 4, 0, 76, 0, 75, 0, 4, 0, 77, 0, 76, 0, 4, 0, 3, 0, 77, 0, 9, 0, 34, 0, 11, 0, 35, 0, 11, 0, 34, 0, 36, 0, 11, 0, 35, 0, 37, 0, 11, 0, 36, 0, 38, 0, 11, 0, 37, 0, 4, 0, 11, 0, 38, 0, 39, 0, 4, 0, 38, 0, 40, 0, 4, 0, 39, 0, 41, 0, 4, 0, 40, 0, 42, 0, 4, 0, 41, 0, 43, 0, 4, 0, 42, 0, 44, 0, 4, 0, 43, 0, 45, 0, 4, 0, 44, 0, 46, 0, 4, 0, 45, 0, 47, 0, 4, 0, 46, 0, 48, 0, 4, 0, 47, 0, 49, 0, 4, 0, 48, 0, 50, 0, 4, 0, 49, 0, 51, 0, 4, 0, 50, 0, 52, 0, 4, 0, 51, 0, 53, 0, 48, 0, 47, 0, 54, 0, 53, 0, 47, 0, 55, 0, 53, 0, 54, 0, 56, 0, 4, 0, 52, 0, 57, 0, 53, 0, 55, 0, 58, 0, 4, 0, 56, 0, 59, 0, 57, 0, 55, 0, 60, 0, 57, 0, 59, 0, 61, 0, 57, 0, 60, 0, 62, 0, 4, 0, 58, 0, 63, 0, 57, 0, 61, 0, 64, 0, 63, 0, 61, 0, 65, 0, 63, 0, 64, 0, 66, 0, 63, 0, 65, 0, 67, 0, 4, 0, 62, 0, 68, 0, 4, 0, 67, 0, 69, 0, 4, 0, 68, 0, 70, 0, 4, 0, 69, 0, 71, 0, 4, 0, 70, 0, 72, 0, 4, 0, 71, 0, 73, 0, 4, 0, 72, 0, 74, 0, 4, 0, 73, 0, 75, 0, 4, 0, 74, 0, 76, 0, 4, 0, 75, 0, 77, 0, 4, 0, 76, 0, 3, 0, 4, 0, 77, 0, 8, 0, 7, 0, 78, 0, 78, 0, 79, 0, 8, 0, 79, 0, 80, 0, 8, 0, 80, 0, 81, 0, 8, 0, 81, 0, 82, 0, 8, 0, 82, 0, 2, 0, 8, 0, 82, 0, 83, 0, 2, 0, 83, 0, 84, 0, 2, 0, 84, 0, 85, 0, 2, 0, 85, 0, 86, 0, 2, 0, 86, 0, 87, 0, 2, 0, 87, 0, 88, 0, 2, 0, 88, 0, 89, 0, 2, 0, 89, 0, 90, 0, 2, 0, 90, 0, 91, 0, 2, 0, 91, 0, 92, 0, 2, 0, 92, 0, 93, 0, 2, 0, 93, 0, 94, 0, 2, 0, 94, 0, 95, 0, 2, 0, 95, 0, 96, 0, 2, 0, 91, 0, 97, 0, 92, 0, 91, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 96, 0, 100, 0, 2, 0, 99, 0, 101, 0, 97, 0, 100, 0, 102, 0, 2, 0, 99, 0, 103, 0, 101, 0, 103, 0, 104, 0, 101, 0, 104, 0, 105, 0, 101, 0, 102, 0, 106, 0, 2, 0, 105, 0, 107, 0, 101, 0, 105, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 109, 0, 110, 0, 107, 0, 106, 0, 111, 0, 2, 0, 111, 0, 112, 0, 2, 0, 112, 0, 113, 0, 2, 0, 113, 0, 114, 0, 2, 0, 114, 0, 115, 0, 2, 0, 115, 0, 116, 0, 2, 0, 116, 0, 117, 0, 2, 0, 117, 0, 118, 0, 2, 0, 118, 0, 119, 0, 2, 0, 119, 0, 120, 0, 2, 0, 120, 0, 121, 0, 2, 0, 121, 0, 0, 0, 2, 0, 7, 0, 8, 0, 78, 0, 79, 0, 78, 0, 8, 0, 80, 0, 79, 0, 8, 0, 81, 0, 80, 0, 8, 0, 82, 0, 81, 0, 8, 0, 2, 0, 82, 0, 8, 0, 83, 0, 82, 0, 2, 0, 84, 0, 83, 0, 2, 0, 85, 0, 84, 0, 2, 0, 86, 0, 85, 0, 2, 0, 87, 0, 86, 0, 2, 0, 88, 0, 87, 0, 2, 0, 89, 0, 88, 0, 2, 0, 90, 0, 89, 0, 2, 0, 91, 0, 90, 0, 2, 0, 92, 0, 91, 0, 2, 0, 93, 0, 92, 0, 2, 0, 94, 0, 93, 0, 2, 0, 95, 0, 94, 0, 2, 0, 96, 0, 95, 0, 2, 0, 97, 0, 91, 0, 92, 0, 98, 0, 91, 0, 97, 0, 99, 0, 98, 0, 97, 0, 100, 0, 96, 0, 2, 0, 101, 0, 99, 0, 97, 0, 102, 0, 100, 0, 2, 0, 103, 0, 99, 0, 101, 0, 104, 0, 103, 0, 101, 0, 105, 0, 104, 0, 101, 0, 106, 0, 102, 0, 2, 0, 107, 0, 105, 0, 101, 0, 108, 0, 105, 0, 107, 0, 109, 0, 108, 0, 107, 0, 110, 0, 109, 0, 107, 0, 111, 0, 106, 0, 2, 0, 112, 0, 111, 0, 2, 0, 113, 0, 112, 0, 2, 0, 114, 0, 113, 0, 2, 0, 115, 0, 114, 0, 2, 0, 116, 0, 115, 0, 2, 0, 117, 0, 116, 0, 2, 0, 118, 0, 117, 0, 2, 0, 119, 0, 118, 0, 2, 0, 120, 0, 119, 0, 2, 0, 121, 0, 120, 0, 2, 0, 0, 0, 121, 0, 2, 0, 124, 0, 122, 0, 123, 0, 123, 0, 125, 0, 124, 0, 123, 0, 126, 0, 125, 0, 126, 0, 127, 0, 125, 0, 126, 0, 128, 0, 127, 0, 128, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 130, 0, 131, 0, 129, 0, 130, 0, 132, 0, 131, 0, 132, 0, 1, 0, 131, 0, 132, 0, 133, 0, 1, 0, 133, 0, 2, 0, 1, 0, 133, 0, 134, 0, 2, 0, 134, 0, 135, 0, 2, 0, 135, 0, 136, 0, 2, 0, 136, 0, 137, 0, 2, 0, 137, 0, 138, 0, 2, 0, 4, 0, 2, 0, 138, 0, 4, 0, 138, 0, 139, 0, 4, 0, 139, 0, 140, 0, 4, 0, 140, 0, 141, 0, 4, 0, 141, 0, 142, 0, 4, 0, 142, 0, 143, 0, 143, 0, 5, 0, 4, 0, 122, 0, 124, 0, 123, 0, 125, 0, 123, 0, 124, 0, 126, 0, 123, 0, 125, 0, 127, 0, 126, 0, 125, 0, 128, 0, 126, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 128, 0, 129, 0, 131, 0, 130, 0, 129, 0, 132, 0, 130, 0, 131, 0, 1, 0, 132, 0, 131, 0, 133, 0, 132, 0, 1, 0, 2, 0, 133, 0, 1, 0, 134, 0, 133, 0, 2, 0, 135, 0, 134, 0, 2, 0, 136, 0, 135, 0, 2, 0, 137, 0, 136, 0, 2, 0, 138, 0, 137, 0, 2, 0, 2, 0, 4, 0, 138, 0, 138, 0, 4, 0, 139, 0, 139, 0, 4, 0, 140, 0, 140, 0, 4, 0, 141, 0, 141, 0, 4, 0, 142, 0, 142, 0, 4, 0, 143, 0, 5, 0, 143, 0, 4, 0, 8, 0, 2, 0, 4, 0, 4, 0, 11, 0, 8, 0), +"lods": [0.00855179, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 20, 0, 21, 0, 17, 0, 20, 0, 23, 0, 21, 0, 23, 0, 10, 0, 21, 0, 23, 0, 11, 0, 10, 0, 23, 0, 24, 0, 11, 0, 24, 0, 26, 0, 11, 0, 26, 0, 28, 0, 11, 0, 8, 0, 11, 0, 28, 0, 8, 0, 28, 0, 31, 0, 8, 0, 31, 0, 33, 0, 33, 0, 6, 0, 8, 0, 21, 0, 20, 0, 17, 0, 23, 0, 20, 0, 21, 0, 10, 0, 23, 0, 21, 0, 11, 0, 23, 0, 10, 0, 24, 0, 23, 0, 11, 0, 26, 0, 24, 0, 11, 0, 28, 0, 26, 0, 11, 0, 11, 0, 8, 0, 28, 0, 28, 0, 8, 0, 31, 0, 31, 0, 8, 0, 33, 0, 6, 0, 33, 0, 8, 0, 34, 0, 9, 0, 11, 0, 11, 0, 36, 0, 34, 0, 11, 0, 38, 0, 36, 0, 11, 0, 4, 0, 38, 0, 4, 0, 41, 0, 38, 0, 4, 0, 43, 0, 41, 0, 4, 0, 45, 0, 43, 0, 4, 0, 47, 0, 45, 0, 4, 0, 3, 0, 77, 0, 4, 0, 77, 0, 76, 0, 4, 0, 76, 0, 74, 0, 4, 0, 74, 0, 72, 0, 4, 0, 72, 0, 70, 0, 4, 0, 70, 0, 68, 0, 4, 0, 68, 0, 58, 0, 4, 0, 58, 0, 56, 0, 4, 0, 56, 0, 51, 0, 4, 0, 51, 0, 48, 0, 4, 0, 48, 0, 47, 0, 48, 0, 53, 0, 47, 0, 53, 0, 54, 0, 47, 0, 53, 0, 55, 0, 54, 0, 53, 0, 57, 0, 55, 0, 57, 0, 60, 0, 55, 0, 57, 0, 64, 0, 60, 0, 9, 0, 34, 0, 11, 0, 36, 0, 11, 0, 34, 0, 38, 0, 11, 0, 36, 0, 4, 0, 11, 0, 38, 0, 41, 0, 4, 0, 38, 0, 43, 0, 4, 0, 41, 0, 45, 0, 4, 0, 43, 0, 47, 0, 4, 0, 45, 0, 3, 0, 4, 0, 77, 0, 77, 0, 4, 0, 76, 0, 76, 0, 4, 0, 74, 0, 74, 0, 4, 0, 72, 0, 72, 0, 4, 0, 70, 0, 70, 0, 4, 0, 68, 0, 68, 0, 4, 0, 58, 0, 58, 0, 4, 0, 56, 0, 56, 0, 4, 0, 51, 0, 51, 0, 4, 0, 48, 0, 48, 0, 4, 0, 47, 0, 53, 0, 48, 0, 47, 0, 54, 0, 53, 0, 47, 0, 55, 0, 53, 0, 54, 0, 57, 0, 53, 0, 55, 0, 60, 0, 57, 0, 55, 0, 64, 0, 57, 0, 60, 0, 8, 0, 7, 0, 78, 0, 78, 0, 80, 0, 8, 0, 80, 0, 82, 0, 8, 0, 82, 0, 2, 0, 8, 0, 82, 0, 85, 0, 2, 0, 85, 0, 87, 0, 2, 0, 87, 0, 89, 0, 2, 0, 89, 0, 91, 0, 2, 0, 121, 0, 0, 0, 2, 0, 119, 0, 121, 0, 2, 0, 117, 0, 119, 0, 2, 0, 115, 0, 117, 0, 2, 0, 113, 0, 115, 0, 2, 0, 111, 0, 113, 0, 2, 0, 102, 0, 111, 0, 2, 0, 96, 0, 102, 0, 2, 0, 94, 0, 96, 0, 2, 0, 97, 0, 94, 0, 2, 0, 91, 0, 97, 0, 2, 0, 91, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 99, 0, 101, 0, 97, 0, 99, 0, 104, 0, 101, 0, 7, 0, 8, 0, 78, 0, 80, 0, 78, 0, 8, 0, 82, 0, 80, 0, 8, 0, 2, 0, 82, 0, 8, 0, 85, 0, 82, 0, 2, 0, 87, 0, 85, 0, 2, 0, 89, 0, 87, 0, 2, 0, 91, 0, 89, 0, 2, 0, 0, 0, 121, 0, 2, 0, 121, 0, 119, 0, 2, 0, 119, 0, 117, 0, 2, 0, 117, 0, 115, 0, 2, 0, 115, 0, 113, 0, 2, 0, 113, 0, 111, 0, 2, 0, 111, 0, 102, 0, 2, 0, 102, 0, 96, 0, 2, 0, 96, 0, 94, 0, 2, 0, 94, 0, 97, 0, 2, 0, 97, 0, 91, 0, 2, 0, 98, 0, 91, 0, 97, 0, 99, 0, 98, 0, 97, 0, 101, 0, 99, 0, 97, 0, 104, 0, 99, 0, 101, 0, 126, 0, 130, 0, 127, 0, 130, 0, 131, 0, 127, 0, 130, 0, 133, 0, 131, 0, 133, 0, 1, 0, 131, 0, 133, 0, 2, 0, 1, 0, 133, 0, 134, 0, 2, 0, 134, 0, 136, 0, 2, 0, 136, 0, 138, 0, 2, 0, 4, 0, 2, 0, 138, 0, 4, 0, 138, 0, 141, 0, 4, 0, 141, 0, 143, 0, 143, 0, 5, 0, 4, 0, 130, 0, 126, 0, 127, 0, 131, 0, 130, 0, 127, 0, 133, 0, 130, 0, 131, 0, 1, 0, 133, 0, 131, 0, 2, 0, 133, 0, 1, 0, 134, 0, 133, 0, 2, 0, 136, 0, 134, 0, 2, 0, 138, 0, 136, 0, 2, 0, 2, 0, 4, 0, 138, 0, 138, 0, 4, 0, 141, 0, 141, 0, 4, 0, 143, 0, 5, 0, 143, 0, 4, 0, 8, 0, 2, 0, 4, 0, 4, 0, 11, 0, 8, 0), 0.0298562, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 23, 0, 10, 0, 21, 0, 23, 0, 11, 0, 10, 0, 23, 0, 28, 0, 11, 0, 8, 0, 11, 0, 28, 0, 28, 0, 6, 0, 8, 0, 10, 0, 23, 0, 21, 0, 11, 0, 23, 0, 10, 0, 28, 0, 23, 0, 11, 0, 11, 0, 8, 0, 28, 0, 6, 0, 28, 0, 8, 0, 38, 0, 9, 0, 11, 0, 11, 0, 4, 0, 38, 0, 4, 0, 47, 0, 38, 0, 4, 0, 53, 0, 47, 0, 53, 0, 55, 0, 47, 0, 53, 0, 57, 0, 55, 0, 4, 0, 72, 0, 53, 0, 4, 0, 76, 0, 72, 0, 4, 0, 77, 0, 76, 0, 4, 0, 3, 0, 77, 0, 9, 0, 38, 0, 11, 0, 4, 0, 11, 0, 38, 0, 47, 0, 4, 0, 38, 0, 53, 0, 4, 0, 47, 0, 55, 0, 53, 0, 47, 0, 57, 0, 53, 0, 55, 0, 72, 0, 4, 0, 53, 0, 76, 0, 4, 0, 72, 0, 77, 0, 4, 0, 76, 0, 3, 0, 4, 0, 77, 0, 8, 0, 7, 0, 78, 0, 78, 0, 82, 0, 8, 0, 82, 0, 2, 0, 8, 0, 82, 0, 87, 0, 2, 0, 87, 0, 91, 0, 2, 0, 91, 0, 99, 0, 97, 0, 91, 0, 97, 0, 2, 0, 97, 0, 102, 0, 2, 0, 102, 0, 113, 0, 2, 0, 113, 0, 117, 0, 2, 0, 117, 0, 121, 0, 2, 0, 121, 0, 0, 0, 2, 0, 7, 0, 8, 0, 78, 0, 82, 0, 78, 0, 8, 0, 2, 0, 82, 0, 8, 0, 87, 0, 82, 0, 2, 0, 91, 0, 87, 0, 2, 0, 99, 0, 91, 0, 97, 0, 97, 0, 91, 0, 2, 0, 102, 0, 97, 0, 2, 0, 113, 0, 102, 0, 2, 0, 117, 0, 113, 0, 2, 0, 121, 0, 117, 0, 2, 0, 0, 0, 121, 0, 2, 0, 133, 0, 1, 0, 131, 0, 133, 0, 2, 0, 1, 0, 133, 0, 138, 0, 2, 0, 4, 0, 2, 0, 138, 0, 4, 0, 138, 0, 143, 0, 143, 0, 5, 0, 4, 0, 1, 0, 133, 0, 131, 0, 2, 0, 133, 0, 1, 0, 138, 0, 133, 0, 2, 0, 2, 0, 4, 0, 138, 0, 138, 0, 4, 0, 143, 0, 5, 0, 143, 0, 4, 0, 8, 0, 2, 0, 4, 0, 4, 0, 11, 0, 8, 0), 0.077036, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 28, 0, 11, 0, 10, 0, 8, 0, 11, 0, 28, 0, 28, 0, 6, 0, 8, 0, 11, 0, 28, 0, 10, 0, 11, 0, 8, 0, 28, 0, 6, 0, 28, 0, 8, 0, 38, 0, 9, 0, 11, 0, 11, 0, 4, 0, 38, 0, 4, 0, 77, 0, 38, 0, 4, 0, 3, 0, 77, 0, 9, 0, 38, 0, 11, 0, 4, 0, 11, 0, 38, 0, 77, 0, 4, 0, 38, 0, 3, 0, 4, 0, 77, 0, 8, 0, 7, 0, 82, 0, 82, 0, 2, 0, 8, 0, 82, 0, 121, 0, 2, 0, 121, 0, 0, 0, 2, 0, 7, 0, 8, 0, 82, 0, 2, 0, 82, 0, 8, 0, 121, 0, 82, 0, 2, 0, 0, 0, 121, 0, 2, 0, 138, 0, 2, 0, 1, 0, 4, 0, 2, 0, 138, 0, 138, 0, 5, 0, 4, 0, 2, 0, 138, 0, 1, 0, 2, 0, 4, 0, 138, 0, 5, 0, 138, 0, 4, 0, 8, 0, 2, 0, 4, 0, 4, 0, 11, 0, 8, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 146, +"vertex_data": PackedByteArray(118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 1.20181, 1.23303), +"format": 4097, +"index_count": 18, +"index_data": PackedByteArray(4, 0, 144, 0, 11, 0, 2, 0, 8, 0, 145, 0, 4, 0, 2, 0, 145, 0, 145, 0, 144, 0, 4, 0, 11, 0, 144, 0, 145, 0, 145, 0, 8, 0, 11, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 146, +"vertex_data": PackedByteArray(118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_llpn1"] +resource_name = "blockSnowSlope_Mesh blockSnowSlope" +_surfaces = [{ +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 1.20181, 1.23303), +"attribute_data": PackedByteArray(163, 12, 35, 64, 170, 25, 146, 65, 149, 12, 35, 192, 170, 25, 146, 65, 191, 80, 176, 53, 130, 90, 56, 65, 191, 80, 176, 53, 130, 90, 56, 65, 149, 12, 35, 192, 170, 25, 146, 65, 163, 12, 35, 64, 170, 25, 146, 65, 155, 12, 35, 192, 169, 25, 146, 65, 0, 160, 249, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 160, 249, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 52, 245, 173, 140, 107, 199, 193, 0, 52, 245, 173, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 156, 30, 204, 181, 140, 107, 199, 193, 156, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 171, 136, 229, 193, 114, 29, 192, 193, 71, 31, 215, 193, 93, 238, 247, 193, 58, 227, 222, 193, 209, 176, 189, 193, 192, 83, 216, 193, 92, 75, 186, 193, 110, 225, 209, 193, 225, 240, 181, 193, 123, 147, 203, 193, 43, 166, 176, 193, 216, 112, 197, 193, 28, 113, 170, 193, 243, 144, 230, 64, 85, 105, 80, 65, 90, 128, 191, 193, 140, 88, 163, 193, 139, 200, 185, 193, 99, 100, 155, 193, 203, 79, 180, 193, 103, 157, 146, 193, 35, 28, 175, 193, 90, 13, 137, 193, 95, 51, 170, 193, 146, 125, 125, 193, 220, 154, 165, 193, 95, 122, 103, 193, 184, 20, 157, 193, 97, 216, 56, 193, 55, 124, 152, 193, 47, 213, 34, 193, 115, 147, 147, 193, 13, 56, 14, 193, 118, 99, 6, 193, 32, 168, 148, 189, 90, 60, 244, 192, 58, 13, 52, 63, 97, 122, 220, 192, 122, 143, 203, 63, 43, 155, 197, 192, 17, 105, 37, 64, 38, 184, 175, 192, 228, 160, 107, 64, 90, 255, 18, 193, 244, 235, 59, 191, 201, 95, 142, 193, 228, 47, 246, 192, 9, 231, 136, 193, 244, 19, 211, 192, 124, 233, 154, 192, 170, 16, 156, 64, 251, 227, 31, 193, 124, 157, 163, 191, 115, 70, 135, 192, 235, 74, 197, 64, 58, 47, 131, 193, 80, 67, 179, 192, 119, 125, 122, 193, 24, 225, 150, 192, 50, 56, 110, 193, 164, 25, 124, 192, 213, 200, 105, 192, 81, 81, 241, 64, 240, 2, 45, 193, 220, 244, 217, 191, 74, 156, 97, 193, 244, 195, 81, 192, 169, 183, 84, 193, 36, 240, 46, 192, 180, 152, 71, 193, 116, 196, 19, 192, 173, 151, 37, 192, 166, 74, 39, 65, 156, 211, 0, 192, 217, 77, 61, 65, 20, 27, 179, 191, 248, 234, 81, 65, 216, 192, 63, 191, 20, 11, 101, 65, 47, 71, 133, 189, 12, 153, 118, 65, 3, 81, 38, 63, 175, 64, 131, 65, 99, 48, 178, 63, 62, 89, 138, 65, 72, 45, 10, 64, 79, 142, 144, 65, 229, 156, 60, 64, 5, 217, 149, 65, 105, 47, 112, 64, 127, 51, 154, 65, 159, 85, 146, 64, 245, 152, 157, 65, 99, 235, 172, 64, 149, 5, 160, 65, 58, 227, 222, 193, 209, 176, 189, 193, 71, 31, 215, 193, 93, 238, 247, 193, 171, 136, 229, 193, 114, 29, 192, 193, 192, 83, 216, 193, 92, 75, 186, 193, 110, 225, 209, 193, 225, 240, 181, 193, 123, 147, 203, 193, 43, 166, 176, 193, 216, 112, 197, 193, 28, 113, 170, 193, 243, 144, 230, 64, 85, 105, 80, 65, 90, 128, 191, 193, 140, 88, 163, 193, 139, 200, 185, 193, 99, 100, 155, 193, 203, 79, 180, 193, 103, 157, 146, 193, 35, 28, 175, 193, 90, 13, 137, 193, 95, 51, 170, 193, 146, 125, 125, 193, 220, 154, 165, 193, 95, 122, 103, 193, 184, 20, 157, 193, 97, 216, 56, 193, 55, 124, 152, 193, 47, 213, 34, 193, 115, 147, 147, 193, 13, 56, 14, 193, 118, 99, 6, 193, 32, 168, 148, 189, 90, 60, 244, 192, 58, 13, 52, 63, 97, 122, 220, 192, 122, 143, 203, 63, 43, 155, 197, 192, 17, 105, 37, 64, 38, 184, 175, 192, 228, 160, 107, 64, 90, 255, 18, 193, 244, 235, 59, 191, 201, 95, 142, 193, 228, 47, 246, 192, 9, 231, 136, 193, 244, 19, 211, 192, 124, 233, 154, 192, 170, 16, 156, 64, 251, 227, 31, 193, 124, 157, 163, 191, 115, 70, 135, 192, 235, 74, 197, 64, 58, 47, 131, 193, 80, 67, 179, 192, 119, 125, 122, 193, 24, 225, 150, 192, 50, 56, 110, 193, 164, 25, 124, 192, 213, 200, 105, 192, 81, 81, 241, 64, 240, 2, 45, 193, 220, 244, 217, 191, 74, 156, 97, 193, 244, 195, 81, 192, 169, 183, 84, 193, 36, 240, 46, 192, 180, 152, 71, 193, 116, 196, 19, 192, 173, 151, 37, 192, 166, 74, 39, 65, 156, 211, 0, 192, 217, 77, 61, 65, 20, 27, 179, 191, 248, 234, 81, 65, 216, 192, 63, 191, 20, 11, 101, 65, 47, 71, 133, 189, 12, 153, 118, 65, 3, 81, 38, 63, 175, 64, 131, 65, 99, 48, 178, 63, 62, 89, 138, 65, 72, 45, 10, 64, 79, 142, 144, 65, 229, 156, 60, 64, 5, 217, 149, 65, 105, 47, 112, 64, 127, 51, 154, 65, 159, 85, 146, 64, 245, 152, 157, 65, 99, 235, 172, 64, 149, 5, 160, 65, 164, 136, 229, 65, 117, 29, 192, 193, 54, 227, 222, 65, 210, 176, 189, 193, 66, 31, 215, 65, 96, 238, 247, 193, 182, 83, 216, 65, 97, 75, 186, 193, 106, 225, 209, 65, 227, 240, 181, 193, 117, 147, 203, 65, 47, 166, 176, 193, 212, 112, 197, 65, 30, 113, 170, 193, 55, 145, 230, 192, 58, 105, 80, 65, 83, 128, 191, 65, 144, 88, 163, 193, 134, 200, 185, 65, 101, 100, 155, 193, 196, 79, 180, 65, 107, 157, 146, 193, 29, 28, 175, 65, 92, 13, 137, 193, 83, 51, 170, 65, 160, 125, 125, 193, 214, 154, 165, 65, 100, 122, 103, 193, 170, 20, 157, 65, 113, 216, 56, 193, 48, 124, 152, 65, 54, 213, 34, 193, 101, 147, 147, 65, 30, 56, 14, 193, 93, 99, 6, 65, 96, 176, 148, 189, 47, 60, 244, 64, 93, 12, 52, 63, 42, 122, 220, 64, 228, 142, 203, 63, 255, 154, 197, 64, 214, 104, 37, 64, 240, 183, 175, 64, 155, 160, 107, 64, 69, 255, 18, 65, 196, 236, 59, 191, 188, 95, 142, 65, 0, 48, 246, 192, 250, 230, 136, 65, 23, 20, 211, 192, 77, 233, 154, 64, 139, 16, 156, 64, 219, 227, 31, 65, 40, 158, 163, 191, 43, 70, 135, 64, 186, 74, 197, 64, 46, 47, 131, 65, 106, 67, 179, 192, 89, 125, 122, 65, 61, 225, 150, 192, 23, 56, 110, 65, 228, 25, 124, 192, 114, 200, 105, 64, 50, 81, 241, 64, 221, 2, 45, 65, 56, 245, 217, 191, 43, 156, 97, 65, 66, 196, 81, 192, 151, 183, 84, 65, 77, 240, 46, 192, 149, 152, 71, 65, 197, 196, 19, 192, 19, 151, 37, 64, 140, 74, 39, 65, 47, 211, 0, 64, 200, 77, 61, 65, 209, 25, 179, 63, 222, 234, 81, 65, 138, 190, 63, 63, 252, 10, 101, 65, 93, 50, 133, 61, 240, 152, 118, 65, 67, 83, 38, 191, 164, 64, 131, 65, 185, 49, 178, 191, 48, 89, 138, 65, 228, 45, 10, 192, 66, 142, 144, 65, 147, 157, 60, 192, 247, 216, 149, 65, 231, 47, 112, 192, 117, 51, 154, 65, 246, 85, 146, 192, 230, 152, 157, 65, 175, 235, 172, 192, 137, 5, 160, 65, 66, 31, 215, 65, 96, 238, 247, 193, 54, 227, 222, 65, 210, 176, 189, 193, 164, 136, 229, 65, 117, 29, 192, 193, 182, 83, 216, 65, 97, 75, 186, 193, 106, 225, 209, 65, 227, 240, 181, 193, 117, 147, 203, 65, 47, 166, 176, 193, 212, 112, 197, 65, 30, 113, 170, 193, 55, 145, 230, 192, 58, 105, 80, 65, 83, 128, 191, 65, 144, 88, 163, 193, 134, 200, 185, 65, 101, 100, 155, 193, 196, 79, 180, 65, 107, 157, 146, 193, 29, 28, 175, 65, 92, 13, 137, 193, 83, 51, 170, 65, 160, 125, 125, 193, 214, 154, 165, 65, 100, 122, 103, 193, 170, 20, 157, 65, 113, 216, 56, 193, 48, 124, 152, 65, 54, 213, 34, 193, 101, 147, 147, 65, 30, 56, 14, 193, 93, 99, 6, 65, 96, 176, 148, 189, 47, 60, 244, 64, 93, 12, 52, 63, 42, 122, 220, 64, 228, 142, 203, 63, 255, 154, 197, 64, 214, 104, 37, 64, 240, 183, 175, 64, 155, 160, 107, 64, 69, 255, 18, 65, 196, 236, 59, 191, 188, 95, 142, 65, 0, 48, 246, 192, 250, 230, 136, 65, 23, 20, 211, 192, 77, 233, 154, 64, 139, 16, 156, 64, 219, 227, 31, 65, 40, 158, 163, 191, 43, 70, 135, 64, 186, 74, 197, 64, 46, 47, 131, 65, 106, 67, 179, 192, 89, 125, 122, 65, 61, 225, 150, 192, 23, 56, 110, 65, 228, 25, 124, 192, 114, 200, 105, 64, 50, 81, 241, 64, 221, 2, 45, 65, 56, 245, 217, 191, 43, 156, 97, 65, 66, 196, 81, 192, 151, 183, 84, 65, 77, 240, 46, 192, 149, 152, 71, 65, 197, 196, 19, 192, 19, 151, 37, 64, 140, 74, 39, 65, 47, 211, 0, 64, 200, 77, 61, 65, 209, 25, 179, 63, 222, 234, 81, 65, 138, 190, 63, 63, 252, 10, 101, 65, 93, 50, 133, 61, 240, 152, 118, 65, 67, 83, 38, 191, 164, 64, 131, 65, 185, 49, 178, 191, 48, 89, 138, 65, 228, 45, 10, 192, 66, 142, 144, 65, 147, 157, 60, 192, 247, 216, 149, 65, 231, 47, 112, 192, 117, 51, 154, 65, 246, 85, 146, 192, 230, 152, 157, 65, 175, 235, 172, 192, 137, 5, 160, 65, 251, 122, 29, 65, 135, 34, 160, 65, 6, 143, 2, 65, 32, 177, 159, 65, 240, 102, 56, 65, 32, 177, 159, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 240, 102, 56, 65, 32, 177, 159, 65, 6, 143, 2, 65, 32, 177, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 246, 122, 157, 65, 247, 181, 110, 65, 246, 122, 157, 193, 247, 181, 110, 65, 246, 122, 157, 65, 121, 8, 35, 194, 246, 122, 157, 193, 121, 8, 35, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194), +"format": 4119, +"index_count": 870, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 28, 0, 30, 0, 29, 0, 30, 0, 31, 0, 29, 0, 30, 0, 32, 0, 31, 0, 32, 0, 33, 0, 31, 0, 32, 0, 34, 0, 33, 0, 34, 0, 35, 0, 33, 0, 34, 0, 36, 0, 35, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 37, 0, 38, 0, 39, 0, 37, 0, 39, 0, 40, 0, 37, 0, 40, 0, 41, 0, 37, 0, 41, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 43, 0, 42, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 45, 0, 46, 0, 43, 0, 46, 0, 47, 0, 43, 0, 47, 0, 48, 0, 48, 0, 49, 0, 43, 0, 52, 0, 50, 0, 51, 0, 53, 0, 51, 0, 50, 0, 54, 0, 51, 0, 53, 0, 55, 0, 54, 0, 53, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 57, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 63, 0, 66, 0, 65, 0, 63, 0, 67, 0, 66, 0, 63, 0, 68, 0, 67, 0, 63, 0, 63, 0, 69, 0, 68, 0, 68, 0, 69, 0, 70, 0, 70, 0, 69, 0, 71, 0, 71, 0, 69, 0, 72, 0, 72, 0, 69, 0, 73, 0, 73, 0, 69, 0, 74, 0, 75, 0, 74, 0, 69, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 77, 0, 80, 0, 79, 0, 77, 0, 81, 0, 80, 0, 77, 0, 82, 0, 81, 0, 77, 0, 83, 0, 82, 0, 83, 0, 84, 0, 82, 0, 83, 0, 85, 0, 84, 0, 83, 0, 86, 0, 85, 0, 83, 0, 87, 0, 86, 0, 83, 0, 88, 0, 87, 0, 83, 0, 89, 0, 88, 0, 83, 0, 90, 0, 89, 0, 83, 0, 91, 0, 90, 0, 83, 0, 92, 0, 91, 0, 83, 0, 93, 0, 92, 0, 83, 0, 94, 0, 93, 0, 83, 0, 95, 0, 94, 0, 83, 0, 96, 0, 95, 0, 83, 0, 97, 0, 96, 0, 93, 0, 98, 0, 92, 0, 98, 0, 99, 0, 92, 0, 98, 0, 100, 0, 99, 0, 83, 0, 101, 0, 97, 0, 98, 0, 102, 0, 100, 0, 83, 0, 103, 0, 101, 0, 102, 0, 104, 0, 100, 0, 102, 0, 105, 0, 104, 0, 102, 0, 106, 0, 105, 0, 83, 0, 107, 0, 103, 0, 102, 0, 108, 0, 106, 0, 108, 0, 109, 0, 106, 0, 108, 0, 110, 0, 109, 0, 108, 0, 111, 0, 110, 0, 83, 0, 112, 0, 107, 0, 83, 0, 113, 0, 112, 0, 83, 0, 114, 0, 113, 0, 83, 0, 115, 0, 114, 0, 83, 0, 116, 0, 115, 0, 83, 0, 117, 0, 116, 0, 83, 0, 118, 0, 117, 0, 83, 0, 119, 0, 118, 0, 83, 0, 120, 0, 119, 0, 83, 0, 121, 0, 120, 0, 83, 0, 122, 0, 121, 0, 83, 0, 123, 0, 122, 0, 126, 0, 124, 0, 125, 0, 127, 0, 125, 0, 124, 0, 128, 0, 125, 0, 127, 0, 129, 0, 125, 0, 128, 0, 130, 0, 125, 0, 129, 0, 131, 0, 125, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 131, 0, 132, 0, 134, 0, 131, 0, 133, 0, 135, 0, 131, 0, 134, 0, 136, 0, 131, 0, 135, 0, 137, 0, 131, 0, 136, 0, 138, 0, 131, 0, 137, 0, 139, 0, 131, 0, 138, 0, 140, 0, 131, 0, 139, 0, 141, 0, 131, 0, 140, 0, 142, 0, 131, 0, 141, 0, 143, 0, 131, 0, 142, 0, 144, 0, 131, 0, 143, 0, 145, 0, 131, 0, 144, 0, 146, 0, 141, 0, 140, 0, 147, 0, 146, 0, 140, 0, 148, 0, 146, 0, 147, 0, 149, 0, 131, 0, 145, 0, 150, 0, 146, 0, 148, 0, 151, 0, 131, 0, 149, 0, 152, 0, 150, 0, 148, 0, 153, 0, 150, 0, 152, 0, 154, 0, 150, 0, 153, 0, 155, 0, 131, 0, 151, 0, 156, 0, 150, 0, 154, 0, 157, 0, 156, 0, 154, 0, 158, 0, 156, 0, 157, 0, 159, 0, 156, 0, 158, 0, 160, 0, 131, 0, 155, 0, 161, 0, 131, 0, 160, 0, 162, 0, 131, 0, 161, 0, 163, 0, 131, 0, 162, 0, 164, 0, 131, 0, 163, 0, 165, 0, 131, 0, 164, 0, 166, 0, 131, 0, 165, 0, 167, 0, 131, 0, 166, 0, 168, 0, 131, 0, 167, 0, 169, 0, 131, 0, 168, 0, 170, 0, 131, 0, 169, 0, 171, 0, 131, 0, 170, 0, 174, 0, 172, 0, 173, 0, 173, 0, 175, 0, 174, 0, 175, 0, 176, 0, 174, 0, 176, 0, 177, 0, 174, 0, 177, 0, 178, 0, 174, 0, 178, 0, 179, 0, 174, 0, 178, 0, 180, 0, 179, 0, 180, 0, 181, 0, 179, 0, 181, 0, 182, 0, 179, 0, 182, 0, 183, 0, 179, 0, 183, 0, 184, 0, 179, 0, 184, 0, 185, 0, 179, 0, 185, 0, 186, 0, 179, 0, 186, 0, 187, 0, 179, 0, 187, 0, 188, 0, 179, 0, 188, 0, 189, 0, 179, 0, 189, 0, 190, 0, 179, 0, 190, 0, 191, 0, 179, 0, 191, 0, 192, 0, 179, 0, 192, 0, 193, 0, 179, 0, 188, 0, 194, 0, 189, 0, 188, 0, 195, 0, 194, 0, 195, 0, 196, 0, 194, 0, 193, 0, 197, 0, 179, 0, 196, 0, 198, 0, 194, 0, 197, 0, 199, 0, 179, 0, 196, 0, 200, 0, 198, 0, 200, 0, 201, 0, 198, 0, 201, 0, 202, 0, 198, 0, 199, 0, 203, 0, 179, 0, 202, 0, 204, 0, 198, 0, 202, 0, 205, 0, 204, 0, 205, 0, 206, 0, 204, 0, 206, 0, 207, 0, 204, 0, 203, 0, 208, 0, 179, 0, 208, 0, 209, 0, 179, 0, 209, 0, 210, 0, 179, 0, 210, 0, 211, 0, 179, 0, 211, 0, 212, 0, 179, 0, 212, 0, 213, 0, 179, 0, 213, 0, 214, 0, 179, 0, 214, 0, 215, 0, 179, 0, 215, 0, 216, 0, 179, 0, 216, 0, 217, 0, 179, 0, 217, 0, 218, 0, 179, 0, 218, 0, 219, 0, 179, 0, 222, 0, 220, 0, 221, 0, 223, 0, 221, 0, 220, 0, 224, 0, 223, 0, 220, 0, 225, 0, 224, 0, 220, 0, 226, 0, 225, 0, 220, 0, 227, 0, 226, 0, 220, 0, 228, 0, 226, 0, 227, 0, 229, 0, 228, 0, 227, 0, 230, 0, 229, 0, 227, 0, 231, 0, 230, 0, 227, 0, 232, 0, 231, 0, 227, 0, 233, 0, 232, 0, 227, 0, 234, 0, 233, 0, 227, 0, 235, 0, 234, 0, 227, 0, 236, 0, 235, 0, 227, 0, 237, 0, 236, 0, 227, 0, 238, 0, 237, 0, 227, 0, 239, 0, 238, 0, 227, 0, 240, 0, 239, 0, 227, 0, 241, 0, 240, 0, 227, 0, 242, 0, 236, 0, 237, 0, 243, 0, 236, 0, 242, 0, 244, 0, 243, 0, 242, 0, 245, 0, 241, 0, 227, 0, 246, 0, 244, 0, 242, 0, 247, 0, 245, 0, 227, 0, 248, 0, 244, 0, 246, 0, 249, 0, 248, 0, 246, 0, 250, 0, 249, 0, 246, 0, 251, 0, 247, 0, 227, 0, 252, 0, 250, 0, 246, 0, 253, 0, 250, 0, 252, 0, 254, 0, 253, 0, 252, 0, 255, 0, 254, 0, 252, 0, 0, 1, 251, 0, 227, 0, 1, 1, 0, 1, 227, 0, 2, 1, 1, 1, 227, 0, 3, 1, 2, 1, 227, 0, 4, 1, 3, 1, 227, 0, 5, 1, 4, 1, 227, 0, 6, 1, 5, 1, 227, 0, 7, 1, 6, 1, 227, 0, 8, 1, 7, 1, 227, 0, 9, 1, 8, 1, 227, 0, 10, 1, 9, 1, 227, 0, 11, 1, 10, 1, 227, 0, 14, 1, 12, 1, 13, 1, 13, 1, 15, 1, 14, 1, 13, 1, 16, 1, 15, 1, 16, 1, 17, 1, 15, 1, 16, 1, 18, 1, 17, 1, 18, 1, 19, 1, 17, 1, 18, 1, 20, 1, 19, 1, 20, 1, 21, 1, 19, 1, 20, 1, 22, 1, 21, 1, 22, 1, 23, 1, 21, 1, 22, 1, 24, 1, 23, 1, 24, 1, 25, 1, 23, 1, 24, 1, 26, 1, 25, 1, 26, 1, 27, 1, 25, 1, 27, 1, 28, 1, 25, 1, 28, 1, 29, 1, 25, 1, 29, 1, 30, 1, 25, 1, 31, 1, 25, 1, 30, 1, 31, 1, 30, 1, 32, 1, 31, 1, 32, 1, 33, 1, 31, 1, 33, 1, 34, 1, 31, 1, 34, 1, 35, 1, 31, 1, 35, 1, 36, 1, 36, 1, 37, 1, 31, 1, 40, 1, 38, 1, 39, 1, 41, 1, 39, 1, 38, 1, 42, 1, 39, 1, 41, 1, 43, 1, 42, 1, 41, 1, 44, 1, 42, 1, 43, 1, 45, 1, 44, 1, 43, 1, 46, 1, 44, 1, 45, 1, 47, 1, 46, 1, 45, 1, 48, 1, 46, 1, 47, 1, 49, 1, 48, 1, 47, 1, 50, 1, 48, 1, 49, 1, 51, 1, 50, 1, 49, 1, 52, 1, 50, 1, 51, 1, 53, 1, 52, 1, 51, 1, 54, 1, 53, 1, 51, 1, 55, 1, 54, 1, 51, 1, 56, 1, 55, 1, 51, 1, 51, 1, 57, 1, 56, 1, 56, 1, 57, 1, 58, 1, 58, 1, 57, 1, 59, 1, 59, 1, 57, 1, 60, 1, 60, 1, 57, 1, 61, 1, 61, 1, 57, 1, 62, 1, 63, 1, 62, 1, 57, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1), +"lods": [0.00855179, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 32, 0, 33, 0, 29, 0, 32, 0, 36, 0, 33, 0, 36, 0, 35, 0, 33, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 37, 0, 38, 0, 40, 0, 37, 0, 40, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 43, 0, 42, 0, 46, 0, 43, 0, 46, 0, 48, 0, 48, 0, 49, 0, 43, 0, 59, 0, 58, 0, 55, 0, 62, 0, 58, 0, 59, 0, 61, 0, 62, 0, 59, 0, 63, 0, 62, 0, 61, 0, 64, 0, 62, 0, 63, 0, 66, 0, 64, 0, 63, 0, 68, 0, 66, 0, 63, 0, 63, 0, 69, 0, 68, 0, 68, 0, 69, 0, 72, 0, 72, 0, 69, 0, 74, 0, 75, 0, 74, 0, 69, 0, 78, 0, 76, 0, 77, 0, 77, 0, 80, 0, 78, 0, 77, 0, 82, 0, 80, 0, 77, 0, 83, 0, 82, 0, 83, 0, 86, 0, 82, 0, 83, 0, 88, 0, 86, 0, 83, 0, 90, 0, 88, 0, 83, 0, 92, 0, 90, 0, 83, 0, 123, 0, 122, 0, 83, 0, 122, 0, 121, 0, 83, 0, 121, 0, 119, 0, 83, 0, 119, 0, 117, 0, 83, 0, 117, 0, 115, 0, 83, 0, 115, 0, 113, 0, 83, 0, 113, 0, 103, 0, 83, 0, 103, 0, 101, 0, 83, 0, 101, 0, 96, 0, 83, 0, 96, 0, 93, 0, 83, 0, 93, 0, 92, 0, 93, 0, 98, 0, 92, 0, 98, 0, 99, 0, 92, 0, 98, 0, 100, 0, 99, 0, 98, 0, 102, 0, 100, 0, 102, 0, 105, 0, 100, 0, 102, 0, 109, 0, 105, 0, 126, 0, 124, 0, 125, 0, 128, 0, 125, 0, 124, 0, 130, 0, 125, 0, 128, 0, 131, 0, 125, 0, 130, 0, 134, 0, 131, 0, 130, 0, 136, 0, 131, 0, 134, 0, 138, 0, 131, 0, 136, 0, 140, 0, 131, 0, 138, 0, 171, 0, 131, 0, 170, 0, 170, 0, 131, 0, 169, 0, 169, 0, 131, 0, 167, 0, 167, 0, 131, 0, 165, 0, 165, 0, 131, 0, 163, 0, 163, 0, 131, 0, 161, 0, 161, 0, 131, 0, 151, 0, 151, 0, 131, 0, 149, 0, 149, 0, 131, 0, 144, 0, 144, 0, 131, 0, 141, 0, 141, 0, 131, 0, 140, 0, 146, 0, 141, 0, 140, 0, 147, 0, 146, 0, 140, 0, 148, 0, 146, 0, 147, 0, 150, 0, 146, 0, 148, 0, 153, 0, 150, 0, 148, 0, 157, 0, 150, 0, 153, 0, 174, 0, 172, 0, 173, 0, 173, 0, 176, 0, 174, 0, 176, 0, 178, 0, 174, 0, 178, 0, 179, 0, 174, 0, 178, 0, 182, 0, 179, 0, 182, 0, 184, 0, 179, 0, 184, 0, 186, 0, 179, 0, 186, 0, 188, 0, 179, 0, 218, 0, 219, 0, 179, 0, 216, 0, 218, 0, 179, 0, 214, 0, 216, 0, 179, 0, 212, 0, 214, 0, 179, 0, 210, 0, 212, 0, 179, 0, 208, 0, 210, 0, 179, 0, 199, 0, 208, 0, 179, 0, 193, 0, 199, 0, 179, 0, 191, 0, 193, 0, 179, 0, 194, 0, 191, 0, 179, 0, 188, 0, 194, 0, 179, 0, 188, 0, 195, 0, 194, 0, 195, 0, 196, 0, 194, 0, 196, 0, 198, 0, 194, 0, 196, 0, 201, 0, 198, 0, 222, 0, 220, 0, 221, 0, 224, 0, 221, 0, 220, 0, 226, 0, 224, 0, 220, 0, 227, 0, 226, 0, 220, 0, 230, 0, 226, 0, 227, 0, 232, 0, 230, 0, 227, 0, 234, 0, 232, 0, 227, 0, 236, 0, 234, 0, 227, 0, 11, 1, 10, 1, 227, 0, 10, 1, 8, 1, 227, 0, 8, 1, 6, 1, 227, 0, 6, 1, 4, 1, 227, 0, 4, 1, 2, 1, 227, 0, 2, 1, 0, 1, 227, 0, 0, 1, 247, 0, 227, 0, 247, 0, 241, 0, 227, 0, 241, 0, 239, 0, 227, 0, 239, 0, 242, 0, 227, 0, 242, 0, 236, 0, 227, 0, 243, 0, 236, 0, 242, 0, 244, 0, 243, 0, 242, 0, 246, 0, 244, 0, 242, 0, 249, 0, 244, 0, 246, 0, 16, 1, 20, 1, 17, 1, 20, 1, 21, 1, 17, 1, 20, 1, 24, 1, 21, 1, 24, 1, 23, 1, 21, 1, 24, 1, 25, 1, 23, 1, 24, 1, 26, 1, 25, 1, 26, 1, 28, 1, 25, 1, 28, 1, 30, 1, 25, 1, 31, 1, 25, 1, 30, 1, 31, 1, 30, 1, 34, 1, 31, 1, 34, 1, 36, 1, 36, 1, 37, 1, 31, 1, 46, 1, 42, 1, 43, 1, 47, 1, 46, 1, 43, 1, 50, 1, 46, 1, 47, 1, 49, 1, 50, 1, 47, 1, 51, 1, 50, 1, 49, 1, 52, 1, 50, 1, 51, 1, 54, 1, 52, 1, 51, 1, 56, 1, 54, 1, 51, 1, 51, 1, 57, 1, 56, 1, 56, 1, 57, 1, 60, 1, 60, 1, 57, 1, 62, 1, 63, 1, 62, 1, 57, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1), 0.0298562, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 36, 0, 35, 0, 33, 0, 36, 0, 37, 0, 35, 0, 36, 0, 42, 0, 37, 0, 43, 0, 37, 0, 42, 0, 42, 0, 49, 0, 43, 0, 61, 0, 62, 0, 59, 0, 63, 0, 62, 0, 61, 0, 68, 0, 62, 0, 63, 0, 63, 0, 69, 0, 68, 0, 75, 0, 68, 0, 69, 0, 82, 0, 76, 0, 77, 0, 77, 0, 83, 0, 82, 0, 83, 0, 92, 0, 82, 0, 83, 0, 98, 0, 92, 0, 98, 0, 100, 0, 92, 0, 98, 0, 102, 0, 100, 0, 83, 0, 117, 0, 98, 0, 83, 0, 121, 0, 117, 0, 83, 0, 122, 0, 121, 0, 83, 0, 123, 0, 122, 0, 126, 0, 130, 0, 125, 0, 131, 0, 125, 0, 130, 0, 140, 0, 131, 0, 130, 0, 146, 0, 131, 0, 140, 0, 148, 0, 146, 0, 140, 0, 150, 0, 146, 0, 148, 0, 165, 0, 131, 0, 146, 0, 169, 0, 131, 0, 165, 0, 170, 0, 131, 0, 169, 0, 171, 0, 131, 0, 170, 0, 174, 0, 172, 0, 173, 0, 173, 0, 178, 0, 174, 0, 178, 0, 179, 0, 174, 0, 178, 0, 184, 0, 179, 0, 184, 0, 188, 0, 179, 0, 188, 0, 196, 0, 194, 0, 188, 0, 194, 0, 179, 0, 194, 0, 199, 0, 179, 0, 199, 0, 210, 0, 179, 0, 210, 0, 214, 0, 179, 0, 214, 0, 218, 0, 179, 0, 218, 0, 219, 0, 179, 0, 222, 0, 220, 0, 221, 0, 226, 0, 221, 0, 220, 0, 227, 0, 226, 0, 220, 0, 232, 0, 226, 0, 227, 0, 236, 0, 232, 0, 227, 0, 244, 0, 236, 0, 242, 0, 242, 0, 236, 0, 227, 0, 247, 0, 242, 0, 227, 0, 2, 1, 247, 0, 227, 0, 6, 1, 2, 1, 227, 0, 10, 1, 6, 1, 227, 0, 11, 1, 10, 1, 227, 0, 24, 1, 23, 1, 21, 1, 24, 1, 25, 1, 23, 1, 24, 1, 30, 1, 25, 1, 31, 1, 25, 1, 30, 1, 31, 1, 30, 1, 36, 1, 36, 1, 37, 1, 31, 1, 49, 1, 50, 1, 47, 1, 51, 1, 50, 1, 49, 1, 56, 1, 50, 1, 51, 1, 51, 1, 57, 1, 56, 1, 56, 1, 57, 1, 62, 1, 63, 1, 62, 1, 57, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1), 0.077036, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 42, 0, 37, 0, 35, 0, 43, 0, 37, 0, 42, 0, 42, 0, 49, 0, 43, 0, 63, 0, 68, 0, 61, 0, 63, 0, 69, 0, 68, 0, 75, 0, 68, 0, 69, 0, 82, 0, 76, 0, 77, 0, 77, 0, 83, 0, 82, 0, 83, 0, 122, 0, 82, 0, 83, 0, 123, 0, 122, 0, 126, 0, 130, 0, 125, 0, 131, 0, 125, 0, 130, 0, 170, 0, 131, 0, 130, 0, 171, 0, 131, 0, 170, 0, 174, 0, 172, 0, 178, 0, 178, 0, 179, 0, 174, 0, 178, 0, 218, 0, 179, 0, 218, 0, 219, 0, 179, 0, 222, 0, 220, 0, 226, 0, 227, 0, 226, 0, 220, 0, 10, 1, 226, 0, 227, 0, 11, 1, 10, 1, 227, 0, 30, 1, 25, 1, 23, 1, 31, 1, 25, 1, 30, 1, 30, 1, 37, 1, 31, 1, 51, 1, 56, 1, 49, 1, 51, 1, 57, 1, 56, 1, 63, 1, 56, 1, 57, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1)], +"material": SubResource("StandardMaterial3D_vr3sx"), +"name": "snow", +"primitive": 3, +"vertex_count": 338, +"vertex_data": PackedByteArray(118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 255, 255, 255, 191, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 108, 151, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 108, 151, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 178, 221, 151, 196, 0, 0, 108, 151, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 178, 221, 151, 196, 0, 0, 146, 232, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 178, 221, 151, 196, 0, 0, 108, 151, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 178, 221, 151, 196, 0, 0, 146, 232, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 178, 221, 151, 196, 0, 0, 146, 232, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 146, 232, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 178, 221, 151, 196, 0, 0, 146, 232, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 178, 221, 151, 196, 0, 0, 146, 232, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 178, 221, 151, 196, 0, 0, 108, 151, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 178, 221, 151, 196, 0, 0, 146, 232, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 178, 221, 151, 196, 0, 0, 146, 232, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 178, 221, 151, 196, 0, 0, 108, 151, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 178, 221, 151, 196, 0, 0, 108, 151, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 178, 221, 151, 196, 0, 0, 108, 151, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 178, 221, 151, 196, 0, 0, 146, 232, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 178, 221, 151, 196, 0, 0, 146, 232, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 178, 221, 151, 196, 0, 0, 108, 151, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 178, 221, 151, 196, 0, 0, 146, 232, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 178, 221, 151, 196, 0, 0, 108, 151, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 178, 221, 151, 196, 0, 0, 146, 232, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 178, 221, 151, 196, 0, 0, 108, 151, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 178, 221, 151, 196, 0, 0, 108, 151, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 178, 221, 151, 196, 0, 0, 108, 151, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 178, 221, 151, 196, 0, 0, 146, 232, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 178, 221, 151, 196, 0, 0, 146, 232, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 178, 221, 151, 196, 0, 0, 146, 232, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 178, 221, 151, 196, 0, 0, 146, 232, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 178, 221, 151, 196, 0, 0, 108, 151, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 178, 221, 151, 196, 0, 0, 146, 232, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 178, 221, 151, 196, 0, 0, 108, 151, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 178, 221, 151, 196, 0, 0, 108, 151, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 178, 221, 151, 196, 0, 0, 146, 232, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 178, 221, 151, 196, 0, 0, 108, 151, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 178, 221, 151, 196, 0, 0, 146, 232, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 178, 221, 151, 196, 0, 0, 146, 232, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 178, 221, 151, 196, 0, 0, 146, 232, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 178, 221, 151, 196, 0, 0, 146, 232, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 178, 221, 151, 196, 0, 0, 146, 232, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 178, 221, 151, 196, 0, 0, 146, 232, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 178, 221, 151, 196, 0, 0, 108, 151, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 178, 221, 151, 196, 0, 0, 146, 232, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 178, 221, 151, 196, 0, 0, 108, 151, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 178, 221, 151, 196, 0, 0, 108, 151, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 178, 221, 151, 196, 0, 0, 146, 232, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 108, 151, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 152, 68, 179, 93, 0, 0, 146, 104, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 146, 104, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 152, 68, 179, 93, 0, 0, 108, 23, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 152, 68, 179, 93, 0, 0, 146, 104, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 152, 68, 179, 93, 0, 0, 108, 23, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 152, 68, 179, 93, 0, 0, 108, 23, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 108, 23, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 152, 68, 179, 93, 0, 0, 108, 23, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 152, 68, 179, 93, 0, 0, 108, 23, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 152, 68, 179, 93, 0, 0, 146, 104, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 152, 68, 179, 93, 0, 0, 108, 23, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 152, 68, 179, 93, 0, 0, 108, 23, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 152, 68, 179, 93, 0, 0, 146, 104, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 152, 68, 179, 93, 0, 0, 146, 104, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 152, 68, 179, 93, 0, 0, 146, 104, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 152, 68, 179, 93, 0, 0, 108, 23, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 152, 68, 179, 93, 0, 0, 108, 23, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 152, 68, 179, 93, 0, 0, 146, 104, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 152, 68, 179, 93, 0, 0, 108, 23, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 152, 68, 179, 93, 0, 0, 146, 104, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 152, 68, 179, 93, 0, 0, 108, 23, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 152, 68, 179, 93, 0, 0, 146, 104, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 152, 68, 179, 93, 0, 0, 146, 104, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 152, 68, 179, 93, 0, 0, 146, 104, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 152, 68, 179, 93, 0, 0, 108, 23, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 152, 68, 179, 93, 0, 0, 108, 23, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 152, 68, 179, 93, 0, 0, 108, 23, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 152, 68, 179, 93, 0, 0, 108, 23, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 152, 68, 179, 93, 0, 0, 146, 104, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 152, 68, 179, 93, 0, 0, 108, 23, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 152, 68, 179, 93, 0, 0, 146, 104, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 152, 68, 179, 93, 0, 0, 146, 104, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 152, 68, 179, 93, 0, 0, 108, 23, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 152, 68, 179, 93, 0, 0, 146, 104, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 152, 68, 179, 93, 0, 0, 108, 23, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 152, 68, 179, 93, 0, 0, 108, 23, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 152, 68, 179, 93, 0, 0, 108, 23, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 152, 68, 179, 93, 0, 0, 108, 23, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 152, 68, 179, 93, 0, 0, 108, 23, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 152, 68, 179, 93, 0, 0, 108, 23, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 152, 68, 179, 93, 0, 0, 146, 104, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 152, 68, 179, 93, 0, 0, 108, 23, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 152, 68, 179, 93, 0, 0, 146, 104, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 152, 68, 179, 93, 0, 0, 108, 23, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 152, 68, 179, 93, 0, 0, 108, 23, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 76, 34, 151, 196, 37, 81, 255, 191, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 76, 34, 151, 196, 37, 81, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 76, 34, 151, 196, 37, 81, 255, 191, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 76, 34, 151, 196, 37, 81, 255, 191, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 76, 34, 151, 196, 37, 81, 255, 191, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 76, 34, 151, 196, 37, 81, 255, 191, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 76, 34, 151, 196, 37, 81, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 76, 34, 151, 196, 37, 81, 255, 191, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 76, 34, 151, 196, 37, 81, 255, 191, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 76, 34, 151, 196, 37, 81, 255, 191, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 76, 34, 151, 196, 37, 81, 255, 191, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 76, 34, 151, 196, 37, 81, 255, 191, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 76, 34, 151, 196, 37, 81, 255, 191, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 76, 34, 151, 196, 37, 81, 255, 191, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 76, 34, 151, 196, 37, 81, 255, 191, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 76, 34, 151, 196, 37, 81, 255, 191, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 76, 34, 151, 196, 37, 81, 255, 191, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 76, 34, 151, 196, 37, 81, 255, 191, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 76, 34, 151, 196, 37, 81, 255, 191, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 76, 34, 151, 196, 37, 81, 255, 191, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 76, 34, 151, 196, 37, 81, 255, 191, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 76, 34, 151, 196, 37, 81, 255, 191, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 76, 34, 151, 196, 38, 81, 255, 191, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 76, 34, 151, 196, 37, 81, 255, 191, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 76, 34, 151, 196, 37, 81, 255, 191, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 76, 34, 151, 196, 37, 81, 255, 191, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 76, 34, 151, 196, 37, 81, 255, 191, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 76, 34, 151, 196, 37, 81, 255, 191, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 76, 34, 151, 196, 37, 81, 255, 191, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 76, 34, 151, 196, 37, 81, 255, 191, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 76, 34, 151, 196, 37, 81, 255, 191, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 76, 34, 151, 196, 37, 81, 255, 191, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 76, 34, 151, 196, 38, 81, 255, 191, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 76, 34, 151, 196, 37, 81, 255, 191, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 76, 34, 151, 196, 37, 81, 255, 191, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 76, 34, 151, 196, 37, 81, 255, 191, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 76, 34, 151, 196, 37, 81, 255, 191, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 76, 34, 151, 196, 37, 81, 255, 191, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 76, 34, 151, 196, 37, 81, 255, 191, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 76, 34, 151, 196, 37, 81, 255, 191, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 76, 34, 151, 196, 37, 81, 255, 191, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 76, 34, 151, 196, 37, 81, 255, 191, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 76, 34, 151, 196, 37, 81, 255, 191, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 76, 34, 151, 196, 37, 81, 255, 191, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 76, 34, 151, 196, 37, 81, 255, 191, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 76, 34, 151, 196, 37, 81, 255, 191, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 76, 34, 151, 196, 37, 81, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 102, 187, 179, 93, 37, 81, 255, 63, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 102, 187, 179, 93, 37, 81, 255, 63, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 102, 187, 179, 93, 37, 81, 255, 63, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 102, 187, 179, 93, 37, 81, 255, 63, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 102, 187, 179, 93, 37, 81, 255, 63, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 102, 187, 179, 93, 37, 81, 255, 63, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 102, 187, 179, 93, 37, 81, 255, 63, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 102, 187, 179, 93, 37, 81, 255, 63, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 102, 187, 179, 93, 37, 81, 255, 63, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 102, 187, 179, 93, 37, 81, 255, 63, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 102, 187, 179, 93, 37, 81, 255, 63, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 102, 187, 179, 93, 37, 81, 255, 63, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 102, 187, 179, 93, 37, 81, 255, 63, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 102, 187, 179, 93, 37, 81, 255, 63, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 102, 187, 179, 93, 37, 81, 255, 63, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 102, 187, 179, 93, 37, 81, 255, 63, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 102, 187, 179, 93, 37, 81, 255, 63, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 102, 187, 179, 93, 37, 81, 255, 63, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 102, 187, 179, 93, 37, 81, 255, 63, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 102, 187, 179, 93, 37, 81, 255, 63, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 102, 187, 179, 93, 38, 81, 255, 63, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 102, 187, 179, 93, 37, 81, 255, 63, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 102, 187, 179, 93, 37, 81, 255, 63, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 102, 187, 179, 93, 37, 81, 255, 63, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 102, 187, 179, 93, 37, 81, 255, 63, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 102, 187, 179, 93, 37, 81, 255, 63, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 102, 187, 179, 93, 37, 81, 255, 63, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 102, 187, 179, 93, 37, 81, 255, 63, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 102, 187, 179, 93, 37, 81, 255, 63, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 102, 187, 179, 93, 37, 81, 255, 63, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 102, 187, 179, 93, 38, 81, 255, 63, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 102, 187, 179, 93, 37, 81, 255, 63, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 102, 187, 179, 93, 37, 81, 255, 63, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 102, 187, 179, 93, 37, 81, 255, 63, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 102, 187, 179, 93, 37, 81, 255, 63, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 102, 187, 179, 93, 37, 81, 255, 63, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 102, 187, 179, 93, 37, 81, 255, 63, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 102, 187, 179, 93, 37, 81, 255, 63, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 102, 187, 179, 93, 37, 81, 255, 63, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 102, 187, 179, 93, 37, 81, 255, 63, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 102, 187, 179, 93, 37, 81, 255, 63, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 102, 187, 179, 93, 37, 81, 255, 63, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 102, 187, 179, 93, 37, 81, 255, 63, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 102, 187, 179, 93, 37, 81, 255, 63, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 1.20181, 1.23303), +"attribute_data": PackedByteArray(163, 12, 35, 64, 170, 25, 146, 65, 149, 12, 35, 192, 170, 25, 146, 65, 191, 80, 176, 53, 130, 90, 56, 65, 191, 80, 176, 53, 130, 90, 56, 65, 149, 12, 35, 192, 170, 25, 146, 65, 163, 12, 35, 64, 170, 25, 146, 65, 155, 12, 35, 192, 169, 25, 146, 65, 0, 160, 249, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 160, 249, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 0, 52, 245, 173, 140, 107, 199, 193, 0, 52, 245, 173, 140, 107, 199, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 156, 30, 204, 181, 140, 107, 199, 193, 156, 30, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 149, 12, 35, 64, 36, 127, 145, 193, 246, 122, 29, 65, 26, 66, 97, 193, 1, 143, 2, 65, 239, 36, 98, 193, 234, 102, 56, 65, 239, 36, 98, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 234, 102, 56, 65, 239, 36, 98, 193, 1, 143, 2, 65, 239, 36, 98, 193, 246, 122, 29, 65, 26, 66, 97, 193, 5, 53, 83, 65, 104, 204, 100, 193, 195, 129, 207, 64, 104, 204, 100, 193, 163, 199, 109, 65, 159, 53, 105, 193, 143, 92, 154, 64, 159, 53, 105, 193, 163, 0, 132, 65, 169, 91, 111, 193, 149, 210, 75, 64, 169, 91, 111, 193, 111, 226, 144, 65, 184, 55, 119, 193, 77, 136, 201, 63, 184, 55, 119, 193, 246, 122, 157, 65, 140, 96, 128, 193, 83, 136, 201, 191, 61, 37, 133, 193, 246, 122, 157, 65, 21, 6, 186, 193, 152, 210, 75, 192, 70, 19, 137, 193, 145, 92, 154, 192, 74, 38, 140, 193, 197, 129, 207, 192, 229, 90, 142, 193, 2, 143, 2, 193, 163, 174, 143, 193, 246, 122, 29, 193, 12, 32, 144, 193, 246, 122, 157, 193, 21, 6, 186, 193, 235, 102, 56, 193, 163, 174, 143, 193, 10, 53, 83, 193, 229, 90, 142, 193, 164, 199, 109, 193, 74, 38, 140, 193, 163, 0, 132, 193, 70, 19, 137, 193, 113, 226, 144, 193, 61, 37, 133, 193, 246, 122, 157, 193, 140, 96, 128, 193, 171, 136, 229, 193, 114, 29, 192, 193, 71, 31, 215, 193, 93, 238, 247, 193, 58, 227, 222, 193, 209, 176, 189, 193, 192, 83, 216, 193, 92, 75, 186, 193, 110, 225, 209, 193, 225, 240, 181, 193, 123, 147, 203, 193, 43, 166, 176, 193, 216, 112, 197, 193, 28, 113, 170, 193, 243, 144, 230, 64, 85, 105, 80, 65, 90, 128, 191, 193, 140, 88, 163, 193, 139, 200, 185, 193, 99, 100, 155, 193, 203, 79, 180, 193, 103, 157, 146, 193, 35, 28, 175, 193, 90, 13, 137, 193, 95, 51, 170, 193, 146, 125, 125, 193, 220, 154, 165, 193, 95, 122, 103, 193, 184, 20, 157, 193, 97, 216, 56, 193, 55, 124, 152, 193, 47, 213, 34, 193, 115, 147, 147, 193, 13, 56, 14, 193, 118, 99, 6, 193, 32, 168, 148, 189, 90, 60, 244, 192, 58, 13, 52, 63, 97, 122, 220, 192, 122, 143, 203, 63, 43, 155, 197, 192, 17, 105, 37, 64, 38, 184, 175, 192, 228, 160, 107, 64, 90, 255, 18, 193, 244, 235, 59, 191, 201, 95, 142, 193, 228, 47, 246, 192, 9, 231, 136, 193, 244, 19, 211, 192, 124, 233, 154, 192, 170, 16, 156, 64, 251, 227, 31, 193, 124, 157, 163, 191, 115, 70, 135, 192, 235, 74, 197, 64, 58, 47, 131, 193, 80, 67, 179, 192, 119, 125, 122, 193, 24, 225, 150, 192, 50, 56, 110, 193, 164, 25, 124, 192, 213, 200, 105, 192, 81, 81, 241, 64, 240, 2, 45, 193, 220, 244, 217, 191, 74, 156, 97, 193, 244, 195, 81, 192, 169, 183, 84, 193, 36, 240, 46, 192, 180, 152, 71, 193, 116, 196, 19, 192, 173, 151, 37, 192, 166, 74, 39, 65, 156, 211, 0, 192, 217, 77, 61, 65, 20, 27, 179, 191, 248, 234, 81, 65, 216, 192, 63, 191, 20, 11, 101, 65, 47, 71, 133, 189, 12, 153, 118, 65, 3, 81, 38, 63, 175, 64, 131, 65, 99, 48, 178, 63, 62, 89, 138, 65, 72, 45, 10, 64, 79, 142, 144, 65, 229, 156, 60, 64, 5, 217, 149, 65, 105, 47, 112, 64, 127, 51, 154, 65, 159, 85, 146, 64, 245, 152, 157, 65, 99, 235, 172, 64, 149, 5, 160, 65, 58, 227, 222, 193, 209, 176, 189, 193, 71, 31, 215, 193, 93, 238, 247, 193, 171, 136, 229, 193, 114, 29, 192, 193, 192, 83, 216, 193, 92, 75, 186, 193, 110, 225, 209, 193, 225, 240, 181, 193, 123, 147, 203, 193, 43, 166, 176, 193, 216, 112, 197, 193, 28, 113, 170, 193, 243, 144, 230, 64, 85, 105, 80, 65, 90, 128, 191, 193, 140, 88, 163, 193, 139, 200, 185, 193, 99, 100, 155, 193, 203, 79, 180, 193, 103, 157, 146, 193, 35, 28, 175, 193, 90, 13, 137, 193, 95, 51, 170, 193, 146, 125, 125, 193, 220, 154, 165, 193, 95, 122, 103, 193, 184, 20, 157, 193, 97, 216, 56, 193, 55, 124, 152, 193, 47, 213, 34, 193, 115, 147, 147, 193, 13, 56, 14, 193, 118, 99, 6, 193, 32, 168, 148, 189, 90, 60, 244, 192, 58, 13, 52, 63, 97, 122, 220, 192, 122, 143, 203, 63, 43, 155, 197, 192, 17, 105, 37, 64, 38, 184, 175, 192, 228, 160, 107, 64, 90, 255, 18, 193, 244, 235, 59, 191, 201, 95, 142, 193, 228, 47, 246, 192, 9, 231, 136, 193, 244, 19, 211, 192, 124, 233, 154, 192, 170, 16, 156, 64, 251, 227, 31, 193, 124, 157, 163, 191, 115, 70, 135, 192, 235, 74, 197, 64, 58, 47, 131, 193, 80, 67, 179, 192, 119, 125, 122, 193, 24, 225, 150, 192, 50, 56, 110, 193, 164, 25, 124, 192, 213, 200, 105, 192, 81, 81, 241, 64, 240, 2, 45, 193, 220, 244, 217, 191, 74, 156, 97, 193, 244, 195, 81, 192, 169, 183, 84, 193, 36, 240, 46, 192, 180, 152, 71, 193, 116, 196, 19, 192, 173, 151, 37, 192, 166, 74, 39, 65, 156, 211, 0, 192, 217, 77, 61, 65, 20, 27, 179, 191, 248, 234, 81, 65, 216, 192, 63, 191, 20, 11, 101, 65, 47, 71, 133, 189, 12, 153, 118, 65, 3, 81, 38, 63, 175, 64, 131, 65, 99, 48, 178, 63, 62, 89, 138, 65, 72, 45, 10, 64, 79, 142, 144, 65, 229, 156, 60, 64, 5, 217, 149, 65, 105, 47, 112, 64, 127, 51, 154, 65, 159, 85, 146, 64, 245, 152, 157, 65, 99, 235, 172, 64, 149, 5, 160, 65, 164, 136, 229, 65, 117, 29, 192, 193, 54, 227, 222, 65, 210, 176, 189, 193, 66, 31, 215, 65, 96, 238, 247, 193, 182, 83, 216, 65, 97, 75, 186, 193, 106, 225, 209, 65, 227, 240, 181, 193, 117, 147, 203, 65, 47, 166, 176, 193, 212, 112, 197, 65, 30, 113, 170, 193, 55, 145, 230, 192, 58, 105, 80, 65, 83, 128, 191, 65, 144, 88, 163, 193, 134, 200, 185, 65, 101, 100, 155, 193, 196, 79, 180, 65, 107, 157, 146, 193, 29, 28, 175, 65, 92, 13, 137, 193, 83, 51, 170, 65, 160, 125, 125, 193, 214, 154, 165, 65, 100, 122, 103, 193, 170, 20, 157, 65, 113, 216, 56, 193, 48, 124, 152, 65, 54, 213, 34, 193, 101, 147, 147, 65, 30, 56, 14, 193, 93, 99, 6, 65, 96, 176, 148, 189, 47, 60, 244, 64, 93, 12, 52, 63, 42, 122, 220, 64, 228, 142, 203, 63, 255, 154, 197, 64, 214, 104, 37, 64, 240, 183, 175, 64, 155, 160, 107, 64, 69, 255, 18, 65, 196, 236, 59, 191, 188, 95, 142, 65, 0, 48, 246, 192, 250, 230, 136, 65, 23, 20, 211, 192, 77, 233, 154, 64, 139, 16, 156, 64, 219, 227, 31, 65, 40, 158, 163, 191, 43, 70, 135, 64, 186, 74, 197, 64, 46, 47, 131, 65, 106, 67, 179, 192, 89, 125, 122, 65, 61, 225, 150, 192, 23, 56, 110, 65, 228, 25, 124, 192, 114, 200, 105, 64, 50, 81, 241, 64, 221, 2, 45, 65, 56, 245, 217, 191, 43, 156, 97, 65, 66, 196, 81, 192, 151, 183, 84, 65, 77, 240, 46, 192, 149, 152, 71, 65, 197, 196, 19, 192, 19, 151, 37, 64, 140, 74, 39, 65, 47, 211, 0, 64, 200, 77, 61, 65, 209, 25, 179, 63, 222, 234, 81, 65, 138, 190, 63, 63, 252, 10, 101, 65, 93, 50, 133, 61, 240, 152, 118, 65, 67, 83, 38, 191, 164, 64, 131, 65, 185, 49, 178, 191, 48, 89, 138, 65, 228, 45, 10, 192, 66, 142, 144, 65, 147, 157, 60, 192, 247, 216, 149, 65, 231, 47, 112, 192, 117, 51, 154, 65, 246, 85, 146, 192, 230, 152, 157, 65, 175, 235, 172, 192, 137, 5, 160, 65, 66, 31, 215, 65, 96, 238, 247, 193, 54, 227, 222, 65, 210, 176, 189, 193, 164, 136, 229, 65, 117, 29, 192, 193, 182, 83, 216, 65, 97, 75, 186, 193, 106, 225, 209, 65, 227, 240, 181, 193, 117, 147, 203, 65, 47, 166, 176, 193, 212, 112, 197, 65, 30, 113, 170, 193, 55, 145, 230, 192, 58, 105, 80, 65, 83, 128, 191, 65, 144, 88, 163, 193, 134, 200, 185, 65, 101, 100, 155, 193, 196, 79, 180, 65, 107, 157, 146, 193, 29, 28, 175, 65, 92, 13, 137, 193, 83, 51, 170, 65, 160, 125, 125, 193, 214, 154, 165, 65, 100, 122, 103, 193, 170, 20, 157, 65, 113, 216, 56, 193, 48, 124, 152, 65, 54, 213, 34, 193, 101, 147, 147, 65, 30, 56, 14, 193, 93, 99, 6, 65, 96, 176, 148, 189, 47, 60, 244, 64, 93, 12, 52, 63, 42, 122, 220, 64, 228, 142, 203, 63, 255, 154, 197, 64, 214, 104, 37, 64, 240, 183, 175, 64, 155, 160, 107, 64, 69, 255, 18, 65, 196, 236, 59, 191, 188, 95, 142, 65, 0, 48, 246, 192, 250, 230, 136, 65, 23, 20, 211, 192, 77, 233, 154, 64, 139, 16, 156, 64, 219, 227, 31, 65, 40, 158, 163, 191, 43, 70, 135, 64, 186, 74, 197, 64, 46, 47, 131, 65, 106, 67, 179, 192, 89, 125, 122, 65, 61, 225, 150, 192, 23, 56, 110, 65, 228, 25, 124, 192, 114, 200, 105, 64, 50, 81, 241, 64, 221, 2, 45, 65, 56, 245, 217, 191, 43, 156, 97, 65, 66, 196, 81, 192, 151, 183, 84, 65, 77, 240, 46, 192, 149, 152, 71, 65, 197, 196, 19, 192, 19, 151, 37, 64, 140, 74, 39, 65, 47, 211, 0, 64, 200, 77, 61, 65, 209, 25, 179, 63, 222, 234, 81, 65, 138, 190, 63, 63, 252, 10, 101, 65, 93, 50, 133, 61, 240, 152, 118, 65, 67, 83, 38, 191, 164, 64, 131, 65, 185, 49, 178, 191, 48, 89, 138, 65, 228, 45, 10, 192, 66, 142, 144, 65, 147, 157, 60, 192, 247, 216, 149, 65, 231, 47, 112, 192, 117, 51, 154, 65, 246, 85, 146, 192, 230, 152, 157, 65, 175, 235, 172, 192, 137, 5, 160, 65, 251, 122, 29, 65, 135, 34, 160, 65, 6, 143, 2, 65, 32, 177, 159, 65, 240, 102, 56, 65, 32, 177, 159, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 240, 102, 56, 65, 32, 177, 159, 65, 6, 143, 2, 65, 32, 177, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 246, 122, 157, 65, 247, 181, 110, 65, 246, 122, 157, 193, 247, 181, 110, 65, 246, 122, 157, 65, 121, 8, 35, 194, 246, 122, 157, 193, 121, 8, 35, 194, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194), +"format": 4119, +"index_count": 18, +"index_data": PackedByteArray(70, 1, 68, 1, 69, 1, 73, 1, 71, 1, 72, 1, 76, 1, 74, 1, 75, 1, 75, 1, 77, 1, 76, 1, 80, 1, 78, 1, 79, 1, 79, 1, 81, 1, 80, 1), +"material": SubResource("StandardMaterial3D_ac7pb"), +"name": "dirt", +"primitive": 3, +"vertex_count": 338, +"vertex_data": PackedByteArray(118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 34, 166, 76, 63, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 76, 86, 76, 63, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 70, 149, 77, 63, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 180, 34, 79, 63, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 177, 76, 81, 63, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 62, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 215, 16, 84, 63, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 227, 129, 98, 63, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 14, 50, 98, 63, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 190, 233, 66, 97, 63, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 123, 181, 95, 63, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 127, 139, 93, 63, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 190, 88, 199, 90, 63, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 0, 128, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 178, 221, 151, 196, 0, 0, 0, 128, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 178, 221, 151, 196, 0, 0, 0, 128, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 178, 221, 151, 196, 0, 0, 0, 128, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 178, 221, 151, 196, 0, 0, 0, 128, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 178, 221, 151, 196, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 178, 221, 151, 196, 0, 0, 0, 128, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 178, 221, 151, 196, 0, 0, 0, 128, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 178, 221, 151, 196, 0, 0, 0, 128, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 178, 221, 151, 196, 0, 0, 0, 128, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 178, 221, 151, 196, 0, 0, 0, 128, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 178, 221, 151, 196, 0, 0, 0, 128, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 178, 221, 151, 196, 0, 0, 0, 128, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 178, 221, 151, 196, 0, 0, 0, 128, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 178, 221, 151, 196, 0, 0, 0, 128, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 178, 221, 151, 196, 0, 0, 0, 128, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 178, 221, 151, 196, 0, 0, 0, 128, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 178, 221, 151, 196, 0, 0, 0, 128, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 178, 221, 151, 196, 0, 0, 0, 128, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 178, 221, 151, 196, 0, 0, 0, 128, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 178, 221, 151, 196, 0, 0, 0, 128, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 178, 221, 151, 196, 0, 0, 0, 128, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 178, 221, 151, 196, 0, 0, 0, 128, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 178, 221, 151, 196, 0, 0, 0, 128, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 178, 221, 151, 196, 0, 0, 0, 128, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 178, 221, 151, 196, 0, 0, 0, 128, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 178, 221, 151, 196, 0, 0, 0, 128, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 178, 221, 151, 196, 0, 0, 0, 128, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 178, 221, 151, 196, 0, 0, 0, 128, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 178, 221, 151, 196, 0, 0, 0, 128, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 178, 221, 151, 196, 0, 0, 0, 128, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 178, 221, 151, 196, 0, 0, 0, 128, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 178, 221, 151, 196, 0, 0, 0, 128, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 178, 221, 151, 196, 0, 0, 0, 128, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 178, 221, 151, 196, 0, 0, 0, 128, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 178, 221, 151, 196, 0, 0, 0, 128, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 178, 221, 151, 196, 0, 0, 0, 128, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 178, 221, 151, 196, 0, 0, 0, 128, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 178, 221, 151, 196, 0, 0, 0, 128, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 178, 221, 151, 196, 0, 0, 0, 128, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 178, 221, 151, 196, 0, 0, 0, 128, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 178, 221, 151, 196, 0, 0, 0, 128, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 178, 221, 151, 196, 0, 0, 0, 128, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 178, 221, 151, 196, 0, 0, 0, 128, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 0, 128, 91, 125, 21, 63, 229, 168, 85, 63, 27, 195, 245, 62, 152, 68, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 0, 128, 139, 228, 19, 63, 210, 48, 83, 63, 167, 74, 235, 62, 152, 68, 179, 93, 0, 0, 0, 128, 169, 164, 18, 63, 152, 6, 80, 63, 60, 162, 224, 62, 152, 68, 179, 93, 0, 0, 0, 128, 56, 191, 17, 63, 188, 45, 76, 63, 167, 213, 213, 62, 152, 68, 179, 93, 0, 0, 0, 128, 34, 53, 17, 63, 129, 170, 71, 63, 228, 240, 202, 62, 152, 68, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 0, 128, 16, 7, 17, 63, 227, 129, 66, 63, 0, 0, 192, 62, 152, 68, 179, 93, 0, 0, 0, 128, 34, 53, 17, 63, 156, 185, 60, 63, 28, 15, 181, 62, 152, 68, 179, 93, 0, 0, 0, 128, 56, 191, 17, 63, 21, 88, 54, 63, 88, 42, 170, 62, 152, 68, 179, 93, 0, 0, 0, 128, 169, 164, 18, 63, 93, 100, 47, 63, 198, 93, 159, 62, 152, 68, 179, 93, 0, 0, 0, 128, 139, 228, 19, 63, 42, 230, 39, 63, 90, 181, 148, 62, 152, 68, 179, 93, 0, 0, 0, 128, 91, 125, 21, 63, 201, 229, 31, 63, 228, 60, 138, 62, 152, 68, 179, 93, 0, 0, 0, 128, 146, 93, 25, 63, 102, 242, 14, 63, 57, 134, 107, 62, 152, 68, 179, 93, 0, 0, 0, 128, 98, 246, 26, 63, 5, 242, 6, 63, 83, 149, 86, 62, 152, 68, 179, 93, 0, 0, 0, 128, 68, 54, 28, 63, 162, 231, 254, 62, 123, 68, 65, 62, 152, 68, 179, 93, 0, 0, 0, 128, 56, 191, 17, 63, 121, 91, 152, 62, 82, 169, 168, 189, 152, 68, 179, 93, 0, 0, 0, 128, 34, 53, 17, 63, 253, 84, 143, 62, 111, 60, 212, 189, 152, 68, 179, 93, 0, 0, 0, 128, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 0, 190, 152, 68, 179, 93, 0, 0, 0, 128, 34, 53, 17, 63, 107, 230, 114, 62, 193, 225, 21, 190, 152, 68, 179, 93, 0, 0, 0, 128, 56, 191, 17, 63, 82, 96, 89, 62, 80, 171, 43, 190, 152, 68, 179, 93, 0, 0, 0, 128, 169, 164, 18, 63, 51, 13, 160, 62, 19, 238, 122, 189, 152, 68, 179, 93, 0, 0, 0, 128, 181, 27, 29, 63, 53, 0, 241, 62, 80, 171, 43, 62, 152, 68, 179, 93, 0, 0, 0, 128, 202, 165, 29, 63, 37, 61, 228, 62, 200, 225, 21, 62, 152, 68, 179, 93, 0, 0, 0, 128, 169, 164, 18, 63, 117, 145, 61, 62, 123, 68, 65, 190, 152, 68, 179, 93, 0, 0, 0, 128, 139, 228, 19, 63, 164, 97, 166, 62, 207, 170, 37, 189, 152, 68, 179, 93, 0, 0, 0, 128, 139, 228, 19, 63, 169, 152, 31, 62, 76, 149, 86, 190, 152, 68, 179, 93, 0, 0, 0, 128, 221, 211, 29, 63, 152, 172, 216, 62, 0, 0, 0, 62, 152, 68, 179, 93, 0, 0, 0, 128, 202, 165, 29, 63, 96, 91, 206, 62, 111, 60, 212, 61, 152, 68, 179, 93, 0, 0, 0, 128, 181, 27, 29, 63, 228, 84, 197, 62, 95, 169, 168, 61, 152, 68, 179, 93, 0, 0, 0, 128, 91, 125, 21, 63, 73, 46, 255, 61, 57, 134, 107, 190, 152, 68, 179, 93, 0, 0, 0, 128, 91, 125, 21, 63, 203, 81, 171, 62, 59, 206, 163, 188, 152, 68, 179, 93, 0, 0, 0, 128, 68, 54, 28, 63, 46, 163, 189, 62, 19, 238, 122, 61, 152, 68, 179, 93, 0, 0, 0, 128, 98, 246, 26, 63, 186, 78, 183, 62, 207, 170, 37, 61, 152, 68, 179, 93, 0, 0, 0, 128, 146, 93, 25, 63, 147, 94, 178, 62, 59, 206, 163, 60, 152, 68, 179, 93, 0, 0, 0, 128, 146, 93, 25, 63, 94, 38, 111, 61, 228, 60, 138, 190, 152, 68, 179, 93, 0, 0, 0, 128, 98, 246, 26, 63, 151, 64, 222, 60, 90, 181, 148, 190, 152, 68, 179, 93, 0, 0, 0, 128, 68, 54, 28, 63, 216, 45, 12, 187, 194, 93, 159, 190, 152, 68, 179, 93, 0, 0, 0, 128, 181, 27, 29, 63, 156, 252, 239, 188, 88, 42, 170, 190, 152, 68, 179, 93, 0, 0, 0, 128, 202, 165, 29, 63, 203, 22, 94, 189, 28, 15, 181, 190, 152, 68, 179, 93, 0, 0, 0, 128, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 192, 190, 152, 68, 179, 93, 0, 0, 0, 128, 202, 165, 29, 63, 131, 146, 198, 189, 228, 240, 202, 190, 152, 68, 179, 93, 0, 0, 0, 128, 181, 27, 29, 63, 110, 172, 234, 189, 167, 213, 213, 190, 152, 68, 179, 93, 0, 0, 0, 128, 68, 54, 28, 63, 163, 185, 4, 190, 62, 162, 224, 190, 152, 68, 179, 93, 0, 0, 0, 128, 98, 246, 26, 63, 141, 98, 17, 190, 165, 74, 235, 190, 152, 68, 179, 93, 0, 0, 0, 128, 146, 93, 25, 63, 218, 66, 27, 190, 27, 195, 245, 190, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 76, 34, 151, 196, 0, 0, 0, 128, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 76, 34, 151, 196, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 76, 34, 151, 196, 0, 0, 0, 128, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 76, 34, 151, 196, 0, 0, 0, 128, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 76, 34, 151, 196, 0, 0, 0, 128, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 76, 34, 151, 196, 0, 0, 0, 128, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 76, 34, 151, 196, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 76, 34, 151, 196, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 76, 34, 151, 196, 0, 0, 0, 128, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 76, 34, 151, 196, 0, 0, 0, 128, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 76, 34, 151, 196, 0, 0, 0, 128, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 76, 34, 151, 196, 0, 0, 0, 128, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 76, 34, 151, 196, 0, 0, 0, 128, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 76, 34, 151, 196, 0, 0, 0, 128, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 76, 34, 151, 196, 0, 0, 0, 128, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 76, 34, 151, 196, 0, 0, 0, 128, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 76, 34, 151, 196, 0, 0, 0, 128, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 76, 34, 151, 196, 0, 0, 0, 128, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 76, 34, 151, 196, 0, 0, 0, 128, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 76, 34, 151, 196, 0, 0, 0, 128, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 76, 34, 151, 196, 0, 0, 0, 128, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 76, 34, 151, 196, 0, 0, 0, 128, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 76, 34, 151, 196, 0, 0, 0, 128, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 76, 34, 151, 196, 0, 0, 0, 128, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 76, 34, 151, 196, 0, 0, 0, 128, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 76, 34, 151, 196, 0, 0, 0, 128, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 76, 34, 151, 196, 0, 0, 0, 128, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 76, 34, 151, 196, 0, 0, 0, 128, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 76, 34, 151, 196, 0, 0, 0, 128, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 76, 34, 151, 196, 0, 0, 0, 128, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 76, 34, 151, 196, 0, 0, 0, 128, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 76, 34, 151, 196, 0, 0, 0, 128, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 76, 34, 151, 196, 0, 0, 0, 128, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 76, 34, 151, 196, 0, 0, 0, 128, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 76, 34, 151, 196, 0, 0, 0, 128, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 76, 34, 151, 196, 0, 0, 0, 128, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 76, 34, 151, 196, 0, 0, 0, 128, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 76, 34, 151, 196, 0, 0, 0, 128, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 76, 34, 151, 196, 0, 0, 0, 128, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 76, 34, 151, 196, 0, 0, 0, 128, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 76, 34, 151, 196, 0, 0, 0, 128, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 76, 34, 151, 196, 0, 0, 0, 128, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 76, 34, 151, 196, 0, 0, 0, 128, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 76, 34, 151, 196, 0, 0, 0, 128, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 76, 34, 151, 196, 0, 0, 0, 128, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 76, 34, 151, 196, 0, 0, 0, 128, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 76, 34, 151, 196, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 102, 187, 179, 93, 0, 0, 0, 128, 96, 125, 21, 191, 229, 168, 85, 63, 27, 195, 245, 62, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 102, 187, 179, 93, 0, 0, 0, 128, 134, 228, 19, 191, 210, 48, 83, 63, 167, 74, 235, 62, 102, 187, 179, 93, 0, 0, 0, 128, 173, 164, 18, 191, 152, 6, 80, 63, 60, 162, 224, 62, 102, 187, 179, 93, 0, 0, 0, 128, 57, 191, 17, 191, 188, 45, 76, 63, 167, 213, 213, 62, 102, 187, 179, 93, 0, 0, 0, 128, 38, 53, 17, 191, 129, 170, 71, 63, 228, 240, 202, 62, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 102, 187, 179, 93, 0, 0, 0, 128, 16, 7, 17, 191, 227, 129, 66, 63, 0, 0, 192, 62, 102, 187, 179, 93, 0, 0, 0, 128, 38, 53, 17, 191, 156, 185, 60, 63, 28, 15, 181, 62, 102, 187, 179, 93, 0, 0, 0, 128, 57, 191, 17, 191, 21, 88, 54, 63, 88, 42, 170, 62, 102, 187, 179, 93, 0, 0, 0, 128, 173, 164, 18, 191, 93, 100, 47, 63, 198, 93, 159, 62, 102, 187, 179, 93, 0, 0, 0, 128, 134, 228, 19, 191, 42, 230, 39, 63, 90, 181, 148, 62, 102, 187, 179, 93, 0, 0, 0, 128, 96, 125, 21, 191, 201, 229, 31, 63, 228, 60, 138, 62, 102, 187, 179, 93, 0, 0, 0, 128, 141, 93, 25, 191, 102, 242, 14, 63, 57, 134, 107, 62, 102, 187, 179, 93, 0, 0, 0, 128, 103, 246, 26, 191, 5, 242, 6, 63, 83, 149, 86, 62, 102, 187, 179, 93, 0, 0, 0, 128, 62, 54, 28, 191, 162, 231, 254, 62, 123, 68, 65, 62, 102, 187, 179, 93, 0, 0, 0, 128, 57, 191, 17, 191, 121, 91, 152, 62, 82, 169, 168, 189, 102, 187, 179, 93, 0, 0, 0, 128, 38, 53, 17, 191, 253, 84, 143, 62, 111, 60, 212, 189, 102, 187, 179, 93, 0, 0, 0, 128, 16, 7, 17, 191, 197, 3, 133, 62, 0, 0, 0, 190, 102, 187, 179, 93, 0, 0, 0, 128, 38, 53, 17, 191, 107, 230, 114, 62, 193, 225, 21, 190, 102, 187, 179, 93, 0, 0, 0, 128, 57, 191, 17, 191, 82, 96, 89, 62, 80, 171, 43, 190, 102, 187, 179, 93, 0, 0, 0, 128, 173, 164, 18, 191, 51, 13, 160, 62, 19, 238, 122, 189, 102, 187, 179, 93, 0, 0, 0, 128, 179, 27, 29, 191, 53, 0, 241, 62, 80, 171, 43, 62, 102, 187, 179, 93, 0, 0, 0, 128, 197, 165, 29, 191, 37, 61, 228, 62, 200, 225, 21, 62, 102, 187, 179, 93, 0, 0, 0, 128, 173, 164, 18, 191, 117, 145, 61, 62, 123, 68, 65, 190, 102, 187, 179, 93, 0, 0, 0, 128, 134, 228, 19, 191, 164, 97, 166, 62, 207, 170, 37, 189, 102, 187, 179, 93, 0, 0, 0, 128, 134, 228, 19, 191, 169, 152, 31, 62, 76, 149, 86, 190, 102, 187, 179, 93, 0, 0, 0, 128, 221, 211, 29, 191, 152, 172, 216, 62, 0, 0, 0, 62, 102, 187, 179, 93, 0, 0, 0, 128, 197, 165, 29, 191, 96, 91, 206, 62, 111, 60, 212, 61, 102, 187, 179, 93, 0, 0, 0, 128, 179, 27, 29, 191, 228, 84, 197, 62, 95, 169, 168, 61, 102, 187, 179, 93, 0, 0, 0, 128, 96, 125, 21, 191, 73, 46, 255, 61, 57, 134, 107, 190, 102, 187, 179, 93, 0, 0, 0, 128, 96, 125, 21, 191, 203, 81, 171, 62, 59, 206, 163, 188, 102, 187, 179, 93, 0, 0, 0, 128, 62, 54, 28, 191, 46, 163, 189, 62, 19, 238, 122, 61, 102, 187, 179, 93, 0, 0, 0, 128, 103, 246, 26, 191, 186, 78, 183, 62, 207, 170, 37, 61, 102, 187, 179, 93, 0, 0, 0, 128, 141, 93, 25, 191, 147, 94, 178, 62, 59, 206, 163, 60, 102, 187, 179, 93, 0, 0, 0, 128, 141, 93, 25, 191, 94, 38, 111, 61, 228, 60, 138, 190, 102, 187, 179, 93, 0, 0, 0, 128, 103, 246, 26, 191, 151, 64, 222, 60, 90, 181, 148, 190, 102, 187, 179, 93, 0, 0, 0, 128, 62, 54, 28, 191, 216, 45, 12, 187, 194, 93, 159, 190, 102, 187, 179, 93, 0, 0, 0, 128, 179, 27, 29, 191, 156, 252, 239, 188, 88, 42, 170, 190, 102, 187, 179, 93, 0, 0, 0, 128, 197, 165, 29, 191, 203, 22, 94, 189, 28, 15, 181, 190, 102, 187, 179, 93, 0, 0, 0, 128, 221, 211, 29, 191, 153, 77, 157, 189, 0, 0, 192, 190, 102, 187, 179, 93, 0, 0, 0, 128, 197, 165, 29, 191, 131, 146, 198, 189, 228, 240, 202, 190, 102, 187, 179, 93, 0, 0, 0, 128, 179, 27, 29, 191, 110, 172, 234, 189, 167, 213, 213, 190, 102, 187, 179, 93, 0, 0, 0, 128, 62, 54, 28, 191, 163, 185, 4, 190, 62, 162, 224, 190, 102, 187, 179, 93, 0, 0, 0, 128, 103, 246, 26, 191, 141, 98, 17, 190, 165, 74, 235, 190, 102, 187, 179, 93, 0, 0, 0, 128, 141, 93, 25, 191, 218, 66, 27, 190, 27, 195, 245, 190, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 33, 31, 160, 168, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_hlc1b") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_5x6vn"] +data = PackedVector3Array(-0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.5, -0.1585, -0.5915, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, 0.5, -0.1585, -0.5915, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.2927, 0.7994, 0.6158, 0.25, 0.7982, 0.6165, 0.2073, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.3353, 0.8031, 0.6137, 0.1647, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.3775, 0.8091, 0.6102, 0.1225, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.4191, 0.8176, 0.6053, 0.0809, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.46, 0.8284, 0.5991, 0.04, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.04, 0.8546, 0.5839, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.0809, 0.8654, 0.5777, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.25, 0.8848, 0.5665, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.46, 0.8546, 0.5839, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.25, 0.7982, 0.6165, 0.2927, 0.7994, 0.6158, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.2927, 0.7994, 0.6158, 0.1647, 0.8031, 0.6137, 0.2073, 0.7994, 0.6158, 0.3353, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3353, 0.8031, 0.6137, 0.1225, 0.8091, 0.6102, 0.1647, 0.8031, 0.6137, 0.3775, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.3775, 0.8091, 0.6102, 0.0809, 0.8176, 0.6053, 0.1225, 0.8091, 0.6102, 0.4191, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.4191, 0.8176, 0.6053, 0.04, 0.8284, 0.5991, 0.0809, 0.8176, 0.6053, 0.46, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.04, 0.8284, 0.5991, 0.46, 0.8284, 0.5991, -0.04, 0.8546, 0.5839, 0.04, 0.8284, 0.5991, 0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.04, 0.8546, 0.5839, 0.5, 0.8415, 0.5915, -0.0809, 0.8654, 0.5777, -0.04, 0.8546, 0.5839, 0.5, 1, 0.5, -0.1225, 0.8739, 0.5728, -0.0809, 0.8654, 0.5777, 0.5, 1, 0.5, -0.1647, 0.8799, 0.5693, -0.1225, 0.8739, 0.5728, 0.5, 1, 0.5, -0.2073, 0.8836, 0.5672, -0.1647, 0.8799, 0.5693, 0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.2073, 0.8836, 0.5672, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.25, 0.8848, 0.5665, -0.25, 0.8848, 0.5665, -0.5, 1, 0.5, -0.2927, 0.8836, 0.5672, -0.2927, 0.8836, 0.5672, -0.5, 1, 0.5, -0.3353, 0.8799, 0.5693, -0.3353, 0.8799, 0.5693, -0.5, 1, 0.5, -0.3775, 0.8739, 0.5728, -0.3775, 0.8739, 0.5728, -0.5, 1, 0.5, -0.4191, 0.8654, 0.5777, -0.4191, 0.8654, 0.5777, -0.5, 1, 0.5, -0.46, 0.8546, 0.5839, -0.5, 0.8415, 0.5915, -0.46, 0.8546, 0.5839, -0.5, 1, 0.5, 0.5839, 0.8346, 0.48, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5777, 0.825, 0.4596, 0.5839, 0.8346, 0.48, 0.5, 1, 0.5, 0.5728, 0.8126, 0.4387, 0.5777, 0.825, 0.4596, 0.5, 1, 0.5, 0.5693, 0.7976, 0.4176, 0.5728, 0.8126, 0.4387, 0.5, 1, 0.5, 0.5672, 0.7799, 0.3964, 0.5693, 0.7976, 0.4176, 0.5, 1, 0.5, 0.5, 0, -0.5, 0.5672, 0.7799, 0.3964, 0.5, 0, -0.5, 0.5665, 0.7598, 0.375, 0.5672, 0.7799, 0.3964, 0.5, 0, -0.5, 0.5672, 0.7372, 0.3536, 0.5665, 0.7598, 0.375, 0.5, 0, -0.5, 0.5693, 0.7123, 0.3324, 0.5672, 0.7372, 0.3536, 0.5, 0, -0.5, 0.5728, 0.6851, 0.3113, 0.5693, 0.7123, 0.3324, 0.5, 0, -0.5, 0.5777, 0.6559, 0.2904, 0.5728, 0.6851, 0.3113, 0.5, 0, -0.5, 0.5839, 0.6246, 0.27, 0.5777, 0.6559, 0.2904, 0.5, 0, -0.5, 0.5991, 0.5584, 0.23, 0.5839, 0.6246, 0.27, 0.5, 0, -0.5, 0.6053, 0.5271, 0.2096, 0.5991, 0.5584, 0.23, 0.5, 0, -0.5, 0.6102, 0.4979, 0.1887, 0.6053, 0.5271, 0.2096, 0.5, 0, -0.5, 0.5693, 0.2976, -0.0824, 0.6102, 0.4979, 0.1887, 0.5, 0, -0.5, 0.5672, 0.2799, -0.1036, 0.5693, 0.2976, -0.0824, 0.5, 0, -0.5, 0.5665, 0.2598, -0.125, 0.5672, 0.2799, -0.1036, 0.5, 0, -0.5, 0.5672, 0.2372, -0.1464, 0.5665, 0.2598, -0.125, 0.5, 0, -0.5, 0.5693, 0.2123, -0.1676, 0.5672, 0.2372, -0.1464, 0.5693, 0.2976, -0.0824, 0.5728, 0.3126, -0.0613, 0.6102, 0.4979, 0.1887, 0.5728, 0.3126, -0.0613, 0.6137, 0.4707, 0.1676, 0.6102, 0.4979, 0.1887, 0.5728, 0.3126, -0.0613, 0.6158, 0.4458, 0.1464, 0.6137, 0.4707, 0.1676, 0.5, 0, -0.5, 0.5728, 0.1851, -0.1887, 0.5693, 0.2123, -0.1676, 0.5728, 0.3126, -0.0613, 0.5777, 0.325, -0.0404, 0.6158, 0.4458, 0.1464, 0.5, 0, -0.5, 0.5777, 0.1559, -0.2096, 0.5728, 0.1851, -0.1887, 0.5777, 0.325, -0.0404, 0.6165, 0.4232, 0.125, 0.6158, 0.4458, 0.1464, 0.5777, 0.325, -0.0404, 0.6158, 0.403, 0.1036, 0.6165, 0.4232, 0.125, 0.5777, 0.325, -0.0404, 0.6137, 0.3854, 0.0824, 0.6158, 0.403, 0.1036, 0.5, 0, -0.5, 0.5839, 0.1246, -0.23, 0.5777, 0.1559, -0.2096, 0.5777, 0.325, -0.0404, 0.5839, 0.3346, -0.02, 0.6137, 0.3854, 0.0824, 0.5839, 0.3346, -0.02, 0.6102, 0.3704, 0.0613, 0.6137, 0.3854, 0.0824, 0.5839, 0.3346, -0.02, 0.6053, 0.358, 0.0404, 0.6102, 0.3704, 0.0613, 0.5839, 0.3346, -0.02, 0.5991, 0.3484, 0.02, 0.6053, 0.358, 0.0404, 0.5, 0, -0.5, 0.5991, 0.0584, -0.27, 0.5839, 0.1246, -0.23, 0.5, 0, -0.5, 0.6053, 0.0271, -0.2904, 0.5991, 0.0584, -0.27, 0.5, 0, -0.5, 0.6102, -0.0021, -0.3113, 0.6053, 0.0271, -0.2904, 0.5, 0, -0.5, 0.6137, -0.0293, -0.3324, 0.6102, -0.0021, -0.3113, 0.5, 0, -0.5, 0.6158, -0.0542, -0.3536, 0.6137, -0.0293, -0.3324, 0.5, 0, -0.5, 0.6165, -0.0768, -0.375, 0.6158, -0.0542, -0.3536, 0.5, 0, -0.5, 0.6158, -0.097, -0.3964, 0.6165, -0.0768, -0.375, 0.5, 0, -0.5, 0.6137, -0.1146, -0.4176, 0.6158, -0.097, -0.3964, 0.5, 0, -0.5, 0.6102, -0.1296, -0.4387, 0.6137, -0.1146, -0.4176, 0.5, 0, -0.5, 0.6053, -0.142, -0.4596, 0.6102, -0.1296, -0.4387, 0.5, 0, -0.5, 0.5991, -0.1516, -0.48, 0.6053, -0.142, -0.4596, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.5991, -0.1516, -0.48, 0.5915, 0.8415, 0.5, 0.5839, 0.8346, 0.48, 0.5, 1, 0.5, 0.5777, 0.825, 0.4596, 0.5, 1, 0.5, 0.5839, 0.8346, 0.48, 0.5728, 0.8126, 0.4387, 0.5, 1, 0.5, 0.5777, 0.825, 0.4596, 0.5693, 0.7976, 0.4176, 0.5, 1, 0.5, 0.5728, 0.8126, 0.4387, 0.5672, 0.7799, 0.3964, 0.5, 1, 0.5, 0.5693, 0.7976, 0.4176, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5672, 0.7799, 0.3964, 0.5665, 0.7598, 0.375, 0.5, 0, -0.5, 0.5672, 0.7799, 0.3964, 0.5672, 0.7372, 0.3536, 0.5, 0, -0.5, 0.5665, 0.7598, 0.375, 0.5693, 0.7123, 0.3324, 0.5, 0, -0.5, 0.5672, 0.7372, 0.3536, 0.5728, 0.6851, 0.3113, 0.5, 0, -0.5, 0.5693, 0.7123, 0.3324, 0.5777, 0.6559, 0.2904, 0.5, 0, -0.5, 0.5728, 0.6851, 0.3113, 0.5839, 0.6246, 0.27, 0.5, 0, -0.5, 0.5777, 0.6559, 0.2904, 0.5991, 0.5584, 0.23, 0.5, 0, -0.5, 0.5839, 0.6246, 0.27, 0.6053, 0.5271, 0.2096, 0.5, 0, -0.5, 0.5991, 0.5584, 0.23, 0.6102, 0.4979, 0.1887, 0.5, 0, -0.5, 0.6053, 0.5271, 0.2096, 0.5693, 0.2976, -0.0824, 0.5, 0, -0.5, 0.6102, 0.4979, 0.1887, 0.5672, 0.2799, -0.1036, 0.5, 0, -0.5, 0.5693, 0.2976, -0.0824, 0.5665, 0.2598, -0.125, 0.5, 0, -0.5, 0.5672, 0.2799, -0.1036, 0.5672, 0.2372, -0.1464, 0.5, 0, -0.5, 0.5665, 0.2598, -0.125, 0.5693, 0.2123, -0.1676, 0.5, 0, -0.5, 0.5672, 0.2372, -0.1464, 0.5728, 0.3126, -0.0613, 0.5693, 0.2976, -0.0824, 0.6102, 0.4979, 0.1887, 0.6137, 0.4707, 0.1676, 0.5728, 0.3126, -0.0613, 0.6102, 0.4979, 0.1887, 0.6158, 0.4458, 0.1464, 0.5728, 0.3126, -0.0613, 0.6137, 0.4707, 0.1676, 0.5728, 0.1851, -0.1887, 0.5, 0, -0.5, 0.5693, 0.2123, -0.1676, 0.5777, 0.325, -0.0404, 0.5728, 0.3126, -0.0613, 0.6158, 0.4458, 0.1464, 0.5777, 0.1559, -0.2096, 0.5, 0, -0.5, 0.5728, 0.1851, -0.1887, 0.6165, 0.4232, 0.125, 0.5777, 0.325, -0.0404, 0.6158, 0.4458, 0.1464, 0.6158, 0.403, 0.1036, 0.5777, 0.325, -0.0404, 0.6165, 0.4232, 0.125, 0.6137, 0.3854, 0.0824, 0.5777, 0.325, -0.0404, 0.6158, 0.403, 0.1036, 0.5839, 0.1246, -0.23, 0.5, 0, -0.5, 0.5777, 0.1559, -0.2096, 0.5839, 0.3346, -0.02, 0.5777, 0.325, -0.0404, 0.6137, 0.3854, 0.0824, 0.6102, 0.3704, 0.0613, 0.5839, 0.3346, -0.02, 0.6137, 0.3854, 0.0824, 0.6053, 0.358, 0.0404, 0.5839, 0.3346, -0.02, 0.6102, 0.3704, 0.0613, 0.5991, 0.3484, 0.02, 0.5839, 0.3346, -0.02, 0.6053, 0.358, 0.0404, 0.5991, 0.0584, -0.27, 0.5, 0, -0.5, 0.5839, 0.1246, -0.23, 0.6053, 0.0271, -0.2904, 0.5, 0, -0.5, 0.5991, 0.0584, -0.27, 0.6102, -0.0021, -0.3113, 0.5, 0, -0.5, 0.6053, 0.0271, -0.2904, 0.6137, -0.0293, -0.3324, 0.5, 0, -0.5, 0.6102, -0.0021, -0.3113, 0.6158, -0.0542, -0.3536, 0.5, 0, -0.5, 0.6137, -0.0293, -0.3324, 0.6165, -0.0768, -0.375, 0.5, 0, -0.5, 0.6158, -0.0542, -0.3536, 0.6158, -0.097, -0.3964, 0.5, 0, -0.5, 0.6165, -0.0768, -0.375, 0.6137, -0.1146, -0.4176, 0.5, 0, -0.5, 0.6158, -0.097, -0.3964, 0.6102, -0.1296, -0.4387, 0.5, 0, -0.5, 0.6137, -0.1146, -0.4176, 0.6053, -0.142, -0.4596, 0.5, 0, -0.5, 0.6102, -0.1296, -0.4387, 0.5991, -0.1516, -0.48, 0.5, 0, -0.5, 0.6053, -0.142, -0.4596, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.5991, -0.1516, -0.48, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5839, 0.8346, 0.48, -0.5839, 0.8346, 0.48, -0.5777, 0.825, 0.4596, -0.5, 1, 0.5, -0.5777, 0.825, 0.4596, -0.5728, 0.8126, 0.4387, -0.5, 1, 0.5, -0.5728, 0.8126, 0.4387, -0.5693, 0.7976, 0.4176, -0.5, 1, 0.5, -0.5693, 0.7976, 0.4176, -0.5672, 0.7799, 0.3964, -0.5, 1, 0.5, -0.5672, 0.7799, 0.3964, -0.5, 0, -0.5, -0.5, 1, 0.5, -0.5672, 0.7799, 0.3964, -0.5665, 0.7598, 0.375, -0.5, 0, -0.5, -0.5665, 0.7598, 0.375, -0.5672, 0.7372, 0.3536, -0.5, 0, -0.5, -0.5672, 0.7372, 0.3536, -0.5693, 0.7123, 0.3324, -0.5, 0, -0.5, -0.5693, 0.7123, 0.3324, -0.5728, 0.6851, 0.3113, -0.5, 0, -0.5, -0.5728, 0.6851, 0.3113, -0.5777, 0.6559, 0.2904, -0.5, 0, -0.5, -0.5777, 0.6559, 0.2904, -0.5839, 0.6246, 0.27, -0.5, 0, -0.5, -0.5839, 0.6246, 0.27, -0.5991, 0.5584, 0.23, -0.5, 0, -0.5, -0.5991, 0.5584, 0.23, -0.6053, 0.5271, 0.2096, -0.5, 0, -0.5, -0.6053, 0.5271, 0.2096, -0.6102, 0.4979, 0.1887, -0.5, 0, -0.5, -0.6102, 0.4979, 0.1887, -0.5693, 0.2976, -0.0824, -0.5, 0, -0.5, -0.5693, 0.2976, -0.0824, -0.5672, 0.2799, -0.1036, -0.5, 0, -0.5, -0.5672, 0.2799, -0.1036, -0.5665, 0.2598, -0.125, -0.5, 0, -0.5, -0.5665, 0.2598, -0.125, -0.5672, 0.2372, -0.1464, -0.5, 0, -0.5, -0.5672, 0.2372, -0.1464, -0.5693, 0.2123, -0.1676, -0.5, 0, -0.5, -0.6102, 0.4979, 0.1887, -0.5728, 0.3126, -0.0613, -0.5693, 0.2976, -0.0824, -0.6102, 0.4979, 0.1887, -0.6137, 0.4707, 0.1676, -0.5728, 0.3126, -0.0613, -0.6137, 0.4707, 0.1676, -0.6158, 0.4458, 0.1464, -0.5728, 0.3126, -0.0613, -0.5693, 0.2123, -0.1676, -0.5728, 0.1851, -0.1887, -0.5, 0, -0.5, -0.6158, 0.4458, 0.1464, -0.5777, 0.325, -0.0404, -0.5728, 0.3126, -0.0613, -0.5728, 0.1851, -0.1887, -0.5777, 0.1559, -0.2096, -0.5, 0, -0.5, -0.6158, 0.4458, 0.1464, -0.6165, 0.4232, 0.125, -0.5777, 0.325, -0.0404, -0.6165, 0.4232, 0.125, -0.6158, 0.403, 0.1036, -0.5777, 0.325, -0.0404, -0.6158, 0.403, 0.1036, -0.6137, 0.3854, 0.0824, -0.5777, 0.325, -0.0404, -0.5777, 0.1559, -0.2096, -0.5839, 0.1246, -0.23, -0.5, 0, -0.5, -0.6137, 0.3854, 0.0824, -0.5839, 0.3346, -0.02, -0.5777, 0.325, -0.0404, -0.6137, 0.3854, 0.0824, -0.6102, 0.3704, 0.0613, -0.5839, 0.3346, -0.02, -0.6102, 0.3704, 0.0613, -0.6053, 0.358, 0.0404, -0.5839, 0.3346, -0.02, -0.6053, 0.358, 0.0404, -0.5991, 0.3484, 0.02, -0.5839, 0.3346, -0.02, -0.5839, 0.1246, -0.23, -0.5991, 0.0584, -0.27, -0.5, 0, -0.5, -0.5991, 0.0584, -0.27, -0.6053, 0.0271, -0.2904, -0.5, 0, -0.5, -0.6053, 0.0271, -0.2904, -0.6102, -0.0021, -0.3113, -0.5, 0, -0.5, -0.6102, -0.0021, -0.3113, -0.6137, -0.0293, -0.3324, -0.5, 0, -0.5, -0.6137, -0.0293, -0.3324, -0.6158, -0.0542, -0.3536, -0.5, 0, -0.5, -0.6158, -0.0542, -0.3536, -0.6165, -0.0768, -0.375, -0.5, 0, -0.5, -0.6165, -0.0768, -0.375, -0.6158, -0.097, -0.3964, -0.5, 0, -0.5, -0.6158, -0.097, -0.3964, -0.6137, -0.1146, -0.4176, -0.5, 0, -0.5, -0.6137, -0.1146, -0.4176, -0.6102, -0.1296, -0.4387, -0.5, 0, -0.5, -0.6102, -0.1296, -0.4387, -0.6053, -0.142, -0.4596, -0.5, 0, -0.5, -0.6053, -0.142, -0.4596, -0.5991, -0.1516, -0.48, -0.5, 0, -0.5, -0.5991, -0.1516, -0.48, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5839, 0.8346, 0.48, -0.5777, 0.825, 0.4596, -0.5839, 0.8346, 0.48, -0.5, 1, 0.5, -0.5728, 0.8126, 0.4387, -0.5777, 0.825, 0.4596, -0.5, 1, 0.5, -0.5693, 0.7976, 0.4176, -0.5728, 0.8126, 0.4387, -0.5, 1, 0.5, -0.5672, 0.7799, 0.3964, -0.5693, 0.7976, 0.4176, -0.5, 1, 0.5, -0.5, 0, -0.5, -0.5672, 0.7799, 0.3964, -0.5, 1, 0.5, -0.5665, 0.7598, 0.375, -0.5672, 0.7799, 0.3964, -0.5, 0, -0.5, -0.5672, 0.7372, 0.3536, -0.5665, 0.7598, 0.375, -0.5, 0, -0.5, -0.5693, 0.7123, 0.3324, -0.5672, 0.7372, 0.3536, -0.5, 0, -0.5, -0.5728, 0.6851, 0.3113, -0.5693, 0.7123, 0.3324, -0.5, 0, -0.5, -0.5777, 0.6559, 0.2904, -0.5728, 0.6851, 0.3113, -0.5, 0, -0.5, -0.5839, 0.6246, 0.27, -0.5777, 0.6559, 0.2904, -0.5, 0, -0.5, -0.5991, 0.5584, 0.23, -0.5839, 0.6246, 0.27, -0.5, 0, -0.5, -0.6053, 0.5271, 0.2096, -0.5991, 0.5584, 0.23, -0.5, 0, -0.5, -0.6102, 0.4979, 0.1887, -0.6053, 0.5271, 0.2096, -0.5, 0, -0.5, -0.5693, 0.2976, -0.0824, -0.6102, 0.4979, 0.1887, -0.5, 0, -0.5, -0.5672, 0.2799, -0.1036, -0.5693, 0.2976, -0.0824, -0.5, 0, -0.5, -0.5665, 0.2598, -0.125, -0.5672, 0.2799, -0.1036, -0.5, 0, -0.5, -0.5672, 0.2372, -0.1464, -0.5665, 0.2598, -0.125, -0.5, 0, -0.5, -0.5693, 0.2123, -0.1676, -0.5672, 0.2372, -0.1464, -0.5, 0, -0.5, -0.5728, 0.3126, -0.0613, -0.6102, 0.4979, 0.1887, -0.5693, 0.2976, -0.0824, -0.6137, 0.4707, 0.1676, -0.6102, 0.4979, 0.1887, -0.5728, 0.3126, -0.0613, -0.6158, 0.4458, 0.1464, -0.6137, 0.4707, 0.1676, -0.5728, 0.3126, -0.0613, -0.5728, 0.1851, -0.1887, -0.5693, 0.2123, -0.1676, -0.5, 0, -0.5, -0.5777, 0.325, -0.0404, -0.6158, 0.4458, 0.1464, -0.5728, 0.3126, -0.0613, -0.5777, 0.1559, -0.2096, -0.5728, 0.1851, -0.1887, -0.5, 0, -0.5, -0.6165, 0.4232, 0.125, -0.6158, 0.4458, 0.1464, -0.5777, 0.325, -0.0404, -0.6158, 0.403, 0.1036, -0.6165, 0.4232, 0.125, -0.5777, 0.325, -0.0404, -0.6137, 0.3854, 0.0824, -0.6158, 0.403, 0.1036, -0.5777, 0.325, -0.0404, -0.5839, 0.1246, -0.23, -0.5777, 0.1559, -0.2096, -0.5, 0, -0.5, -0.5839, 0.3346, -0.02, -0.6137, 0.3854, 0.0824, -0.5777, 0.325, -0.0404, -0.6102, 0.3704, 0.0613, -0.6137, 0.3854, 0.0824, -0.5839, 0.3346, -0.02, -0.6053, 0.358, 0.0404, -0.6102, 0.3704, 0.0613, -0.5839, 0.3346, -0.02, -0.5991, 0.3484, 0.02, -0.6053, 0.358, 0.0404, -0.5839, 0.3346, -0.02, -0.5991, 0.0584, -0.27, -0.5839, 0.1246, -0.23, -0.5, 0, -0.5, -0.6053, 0.0271, -0.2904, -0.5991, 0.0584, -0.27, -0.5, 0, -0.5, -0.6102, -0.0021, -0.3113, -0.6053, 0.0271, -0.2904, -0.5, 0, -0.5, -0.6137, -0.0293, -0.3324, -0.6102, -0.0021, -0.3113, -0.5, 0, -0.5, -0.6158, -0.0542, -0.3536, -0.6137, -0.0293, -0.3324, -0.5, 0, -0.5, -0.6165, -0.0768, -0.375, -0.6158, -0.0542, -0.3536, -0.5, 0, -0.5, -0.6158, -0.097, -0.3964, -0.6165, -0.0768, -0.375, -0.5, 0, -0.5, -0.6137, -0.1146, -0.4176, -0.6158, -0.097, -0.3964, -0.5, 0, -0.5, -0.6102, -0.1296, -0.4387, -0.6137, -0.1146, -0.4176, -0.5, 0, -0.5, -0.6053, -0.142, -0.4596, -0.6102, -0.1296, -0.4387, -0.5, 0, -0.5, -0.5991, -0.1516, -0.48, -0.6053, -0.142, -0.4596, -0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.5991, -0.1516, -0.48, -0.5, 0, -0.5, -0.2927, -0.2006, -0.6158, -0.25, -0.2018, -0.6165, -0.2073, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.2927, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.1647, -0.1969, -0.6137, -0.3353, -0.1969, -0.6137, -0.1647, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.3353, -0.1969, -0.6137, -0.1647, -0.1969, -0.6137, -0.1225, -0.1909, -0.6102, -0.3775, -0.1909, -0.6102, -0.1225, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.3775, -0.1909, -0.6102, -0.1225, -0.1909, -0.6102, -0.0809, -0.1824, -0.6053, -0.4191, -0.1824, -0.6053, -0.0809, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.4191, -0.1824, -0.6053, -0.0809, -0.1824, -0.6053, -0.04, -0.1716, -0.5991, -0.46, -0.1716, -0.5991, -0.04, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.46, -0.1716, -0.5991, -0.04, -0.1716, -0.5991, 0.04, -0.1454, -0.5839, -0.5, -0.1585, -0.5915, 0.04, -0.1454, -0.5839, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, 0.04, -0.1454, -0.5839, 0.0809, -0.1346, -0.5777, -0.5, 0, -0.5, 0.0809, -0.1346, -0.5777, 0.1225, -0.1261, -0.5728, -0.5, 0, -0.5, 0.1225, -0.1261, -0.5728, 0.1647, -0.1201, -0.5693, -0.5, 0, -0.5, 0.1647, -0.1201, -0.5693, 0.2073, -0.1164, -0.5672, -0.5, 0, -0.5, 0.2073, -0.1164, -0.5672, 0.25, -0.1152, -0.5665, -0.5, 0, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.2927, -0.1164, -0.5672, 0.5, 0, -0.5, 0.2927, -0.1164, -0.5672, 0.3353, -0.1201, -0.5693, 0.5, 0, -0.5, 0.3353, -0.1201, -0.5693, 0.3775, -0.1261, -0.5728, 0.5, 0, -0.5, 0.3775, -0.1261, -0.5728, 0.4191, -0.1346, -0.5777, 0.5, 0, -0.5, 0.4191, -0.1346, -0.5777, 0.46, -0.1454, -0.5839, 0.46, -0.1454, -0.5839, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, -0.25, -0.2018, -0.6165, -0.2927, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.2073, -0.2006, -0.6158, -0.2927, -0.2006, -0.6158, -0.1647, -0.1969, -0.6137, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.1647, -0.1969, -0.6137, -0.3353, -0.1969, -0.6137, -0.1225, -0.1909, -0.6102, -0.1647, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.1225, -0.1909, -0.6102, -0.3775, -0.1909, -0.6102, -0.0809, -0.1824, -0.6053, -0.1225, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.0809, -0.1824, -0.6053, -0.4191, -0.1824, -0.6053, -0.04, -0.1716, -0.5991, -0.0809, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.04, -0.1716, -0.5991, -0.46, -0.1716, -0.5991, 0.04, -0.1454, -0.5839, -0.04, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.5, 0, -0.5, 0.04, -0.1454, -0.5839, -0.5, -0.1585, -0.5915, 0.0809, -0.1346, -0.5777, 0.04, -0.1454, -0.5839, -0.5, 0, -0.5, 0.1225, -0.1261, -0.5728, 0.0809, -0.1346, -0.5777, -0.5, 0, -0.5, 0.1647, -0.1201, -0.5693, 0.1225, -0.1261, -0.5728, -0.5, 0, -0.5, 0.2073, -0.1164, -0.5672, 0.1647, -0.1201, -0.5693, -0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.2073, -0.1164, -0.5672, -0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.25, -0.1152, -0.5665, 0.5, 0, -0.5, 0.2927, -0.1164, -0.5672, 0.2927, -0.1164, -0.5672, 0.5, 0, -0.5, 0.3353, -0.1201, -0.5693, 0.3353, -0.1201, -0.5693, 0.5, 0, -0.5, 0.3775, -0.1261, -0.5728, 0.3775, -0.1261, -0.5728, 0.5, 0, -0.5, 0.4191, -0.1346, -0.5777, 0.4191, -0.1346, -0.5777, 0.5, 0, -0.5, 0.46, -0.1454, -0.5839, 0.5, -0.1585, -0.5915, 0.46, -0.1454, -0.5839, 0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, 0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, -0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2iohs"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7in0v"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_saeal"] +_surfaces = [{ +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 0.701808, 1.23303), +"format": 4097, +"index_count": 612, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 2, 0, 1, 0, 12, 0, 12, 0, 11, 0, 2, 0, 12, 0, 13, 0, 11, 0, 13, 0, 14, 0, 11, 0, 14, 0, 15, 0, 11, 0, 15, 0, 16, 0, 11, 0, 16, 0, 17, 0, 11, 0, 17, 0, 18, 0, 11, 0, 18, 0, 19, 0, 11, 0, 19, 0, 20, 0, 11, 0, 20, 0, 21, 0, 11, 0, 21, 0, 22, 0, 11, 0, 21, 0, 23, 0, 22, 0, 21, 0, 24, 0, 23, 0, 22, 0, 25, 0, 11, 0, 25, 0, 26, 0, 11, 0, 26, 0, 27, 0, 11, 0, 27, 0, 28, 0, 11, 0, 28, 0, 29, 0, 11, 0, 29, 0, 30, 0, 11, 0, 30, 0, 31, 0, 11, 0, 31, 0, 32, 0, 11, 0, 32, 0, 33, 0, 11, 0, 33, 0, 34, 0, 11, 0, 34, 0, 9, 0, 11, 0, 1, 0, 2, 0, 12, 0, 11, 0, 12, 0, 2, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 11, 0, 15, 0, 14, 0, 11, 0, 16, 0, 15, 0, 11, 0, 17, 0, 16, 0, 11, 0, 18, 0, 17, 0, 11, 0, 19, 0, 18, 0, 11, 0, 20, 0, 19, 0, 11, 0, 21, 0, 20, 0, 11, 0, 22, 0, 21, 0, 11, 0, 23, 0, 21, 0, 22, 0, 24, 0, 21, 0, 23, 0, 25, 0, 22, 0, 11, 0, 26, 0, 25, 0, 11, 0, 27, 0, 26, 0, 11, 0, 28, 0, 27, 0, 11, 0, 29, 0, 28, 0, 11, 0, 30, 0, 29, 0, 11, 0, 31, 0, 30, 0, 11, 0, 32, 0, 31, 0, 11, 0, 33, 0, 32, 0, 11, 0, 34, 0, 33, 0, 11, 0, 9, 0, 34, 0, 11, 0, 37, 0, 35, 0, 36, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 39, 0, 40, 0, 38, 0, 39, 0, 41, 0, 40, 0, 41, 0, 42, 0, 40, 0, 41, 0, 43, 0, 42, 0, 43, 0, 44, 0, 42, 0, 43, 0, 45, 0, 44, 0, 45, 0, 10, 0, 44, 0, 45, 0, 46, 0, 10, 0, 46, 0, 11, 0, 10, 0, 46, 0, 47, 0, 11, 0, 47, 0, 48, 0, 11, 0, 48, 0, 49, 0, 11, 0, 49, 0, 50, 0, 11, 0, 50, 0, 51, 0, 11, 0, 4, 0, 11, 0, 51, 0, 4, 0, 51, 0, 52, 0, 4, 0, 52, 0, 53, 0, 4, 0, 53, 0, 54, 0, 4, 0, 54, 0, 55, 0, 4, 0, 55, 0, 56, 0, 56, 0, 5, 0, 4, 0, 35, 0, 37, 0, 36, 0, 38, 0, 36, 0, 37, 0, 39, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 39, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 41, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 43, 0, 44, 0, 10, 0, 45, 0, 44, 0, 46, 0, 45, 0, 10, 0, 11, 0, 46, 0, 10, 0, 47, 0, 46, 0, 11, 0, 48, 0, 47, 0, 11, 0, 49, 0, 48, 0, 11, 0, 50, 0, 49, 0, 11, 0, 51, 0, 50, 0, 11, 0, 11, 0, 4, 0, 51, 0, 51, 0, 4, 0, 52, 0, 52, 0, 4, 0, 53, 0, 53, 0, 4, 0, 54, 0, 54, 0, 4, 0, 55, 0, 55, 0, 4, 0, 56, 0, 5, 0, 56, 0, 4, 0, 59, 0, 57, 0, 58, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 63, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 65, 0, 66, 0, 64, 0, 65, 0, 67, 0, 66, 0, 67, 0, 7, 0, 66, 0, 67, 0, 68, 0, 7, 0, 68, 0, 8, 0, 7, 0, 68, 0, 69, 0, 8, 0, 69, 0, 70, 0, 8, 0, 70, 0, 71, 0, 8, 0, 71, 0, 72, 0, 8, 0, 72, 0, 73, 0, 8, 0, 2, 0, 8, 0, 73, 0, 2, 0, 73, 0, 74, 0, 2, 0, 74, 0, 75, 0, 2, 0, 75, 0, 76, 0, 2, 0, 76, 0, 77, 0, 2, 0, 77, 0, 78, 0, 78, 0, 0, 0, 2, 0, 57, 0, 59, 0, 58, 0, 60, 0, 58, 0, 59, 0, 61, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 61, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 63, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 65, 0, 66, 0, 7, 0, 67, 0, 66, 0, 68, 0, 67, 0, 7, 0, 8, 0, 68, 0, 7, 0, 69, 0, 68, 0, 8, 0, 70, 0, 69, 0, 8, 0, 71, 0, 70, 0, 8, 0, 72, 0, 71, 0, 8, 0, 73, 0, 72, 0, 8, 0, 8, 0, 2, 0, 73, 0, 73, 0, 2, 0, 74, 0, 74, 0, 2, 0, 75, 0, 75, 0, 2, 0, 76, 0, 76, 0, 2, 0, 77, 0, 77, 0, 2, 0, 78, 0, 0, 0, 78, 0, 2, 0, 8, 0, 2, 0, 11, 0, 11, 0, 4, 0, 8, 0, 79, 0, 6, 0, 8, 0, 8, 0, 80, 0, 79, 0, 8, 0, 81, 0, 80, 0, 8, 0, 82, 0, 81, 0, 8, 0, 4, 0, 82, 0, 4, 0, 83, 0, 82, 0, 4, 0, 84, 0, 83, 0, 4, 0, 85, 0, 84, 0, 4, 0, 86, 0, 85, 0, 4, 0, 87, 0, 86, 0, 4, 0, 88, 0, 87, 0, 4, 0, 89, 0, 88, 0, 4, 0, 90, 0, 89, 0, 4, 0, 91, 0, 90, 0, 4, 0, 92, 0, 91, 0, 4, 0, 93, 0, 92, 0, 4, 0, 94, 0, 93, 0, 4, 0, 95, 0, 94, 0, 4, 0, 96, 0, 95, 0, 4, 0, 97, 0, 96, 0, 4, 0, 98, 0, 97, 0, 4, 0, 99, 0, 98, 0, 4, 0, 100, 0, 99, 0, 4, 0, 3, 0, 100, 0, 6, 0, 79, 0, 8, 0, 80, 0, 8, 0, 79, 0, 81, 0, 8, 0, 80, 0, 82, 0, 8, 0, 81, 0, 4, 0, 8, 0, 82, 0, 83, 0, 4, 0, 82, 0, 84, 0, 4, 0, 83, 0, 85, 0, 4, 0, 84, 0, 86, 0, 4, 0, 85, 0, 87, 0, 4, 0, 86, 0, 88, 0, 4, 0, 87, 0, 89, 0, 4, 0, 88, 0, 90, 0, 4, 0, 89, 0, 91, 0, 4, 0, 90, 0, 92, 0, 4, 0, 91, 0, 93, 0, 4, 0, 92, 0, 94, 0, 4, 0, 93, 0, 95, 0, 4, 0, 94, 0, 96, 0, 4, 0, 95, 0, 97, 0, 4, 0, 96, 0, 98, 0, 4, 0, 97, 0, 99, 0, 4, 0, 98, 0, 100, 0, 4, 0, 99, 0, 3, 0, 4, 0, 100, 0), +"lods": [0.00184846, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 2, 0, 1, 0, 12, 0, 12, 0, 11, 0, 2, 0, 12, 0, 14, 0, 11, 0, 14, 0, 16, 0, 11, 0, 16, 0, 18, 0, 11, 0, 18, 0, 19, 0, 11, 0, 19, 0, 21, 0, 11, 0, 21, 0, 23, 0, 22, 0, 21, 0, 22, 0, 11, 0, 22, 0, 26, 0, 11, 0, 26, 0, 28, 0, 11, 0, 28, 0, 30, 0, 11, 0, 30, 0, 32, 0, 11, 0, 32, 0, 33, 0, 11, 0, 33, 0, 9, 0, 11, 0, 1, 0, 2, 0, 12, 0, 11, 0, 12, 0, 2, 0, 14, 0, 12, 0, 11, 0, 16, 0, 14, 0, 11, 0, 18, 0, 16, 0, 11, 0, 19, 0, 18, 0, 11, 0, 21, 0, 19, 0, 11, 0, 23, 0, 21, 0, 22, 0, 22, 0, 21, 0, 11, 0, 26, 0, 22, 0, 11, 0, 28, 0, 26, 0, 11, 0, 30, 0, 28, 0, 11, 0, 32, 0, 30, 0, 11, 0, 33, 0, 32, 0, 11, 0, 9, 0, 33, 0, 11, 0, 39, 0, 40, 0, 37, 0, 39, 0, 43, 0, 40, 0, 43, 0, 44, 0, 40, 0, 43, 0, 46, 0, 44, 0, 46, 0, 10, 0, 44, 0, 46, 0, 11, 0, 10, 0, 46, 0, 47, 0, 11, 0, 47, 0, 49, 0, 11, 0, 49, 0, 51, 0, 11, 0, 4, 0, 11, 0, 51, 0, 4, 0, 51, 0, 54, 0, 4, 0, 54, 0, 56, 0, 56, 0, 5, 0, 4, 0, 40, 0, 39, 0, 37, 0, 43, 0, 39, 0, 40, 0, 44, 0, 43, 0, 40, 0, 46, 0, 43, 0, 44, 0, 10, 0, 46, 0, 44, 0, 11, 0, 46, 0, 10, 0, 47, 0, 46, 0, 11, 0, 49, 0, 47, 0, 11, 0, 51, 0, 49, 0, 11, 0, 11, 0, 4, 0, 51, 0, 51, 0, 4, 0, 54, 0, 54, 0, 4, 0, 56, 0, 5, 0, 56, 0, 4, 0, 61, 0, 62, 0, 59, 0, 61, 0, 65, 0, 62, 0, 65, 0, 66, 0, 62, 0, 65, 0, 68, 0, 66, 0, 68, 0, 7, 0, 66, 0, 68, 0, 8, 0, 7, 0, 68, 0, 69, 0, 8, 0, 69, 0, 71, 0, 8, 0, 71, 0, 73, 0, 8, 0, 2, 0, 8, 0, 73, 0, 2, 0, 73, 0, 74, 0, 2, 0, 74, 0, 75, 0, 2, 0, 75, 0, 76, 0, 2, 0, 76, 0, 77, 0, 2, 0, 77, 0, 78, 0, 78, 0, 0, 0, 2, 0, 62, 0, 61, 0, 59, 0, 65, 0, 61, 0, 62, 0, 66, 0, 65, 0, 62, 0, 68, 0, 65, 0, 66, 0, 7, 0, 68, 0, 66, 0, 8, 0, 68, 0, 7, 0, 69, 0, 68, 0, 8, 0, 71, 0, 69, 0, 8, 0, 73, 0, 71, 0, 8, 0, 8, 0, 2, 0, 73, 0, 73, 0, 2, 0, 74, 0, 74, 0, 2, 0, 75, 0, 75, 0, 2, 0, 76, 0, 76, 0, 2, 0, 77, 0, 77, 0, 2, 0, 78, 0, 0, 0, 78, 0, 2, 0, 8, 0, 2, 0, 11, 0, 11, 0, 4, 0, 8, 0, 79, 0, 6, 0, 8, 0, 8, 0, 80, 0, 79, 0, 8, 0, 81, 0, 80, 0, 8, 0, 82, 0, 81, 0, 8, 0, 4, 0, 82, 0, 4, 0, 84, 0, 82, 0, 4, 0, 85, 0, 84, 0, 4, 0, 86, 0, 85, 0, 4, 0, 87, 0, 86, 0, 4, 0, 88, 0, 87, 0, 4, 0, 89, 0, 88, 0, 4, 0, 90, 0, 89, 0, 4, 0, 91, 0, 90, 0, 4, 0, 92, 0, 91, 0, 4, 0, 93, 0, 92, 0, 4, 0, 94, 0, 93, 0, 4, 0, 95, 0, 94, 0, 4, 0, 96, 0, 95, 0, 4, 0, 97, 0, 96, 0, 4, 0, 98, 0, 97, 0, 4, 0, 99, 0, 98, 0, 4, 0, 100, 0, 99, 0, 4, 0, 3, 0, 100, 0, 6, 0, 79, 0, 8, 0, 80, 0, 8, 0, 79, 0, 81, 0, 8, 0, 80, 0, 82, 0, 8, 0, 81, 0, 4, 0, 8, 0, 82, 0, 84, 0, 4, 0, 82, 0, 85, 0, 4, 0, 84, 0, 86, 0, 4, 0, 85, 0, 87, 0, 4, 0, 86, 0, 88, 0, 4, 0, 87, 0, 89, 0, 4, 0, 88, 0, 90, 0, 4, 0, 89, 0, 91, 0, 4, 0, 90, 0, 92, 0, 4, 0, 91, 0, 93, 0, 4, 0, 92, 0, 94, 0, 4, 0, 93, 0, 95, 0, 4, 0, 94, 0, 96, 0, 4, 0, 95, 0, 97, 0, 4, 0, 96, 0, 98, 0, 4, 0, 97, 0, 99, 0, 4, 0, 98, 0, 100, 0, 4, 0, 99, 0, 3, 0, 4, 0, 100, 0), 0.0190085, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 2, 0, 1, 0, 12, 0, 12, 0, 11, 0, 2, 0, 12, 0, 16, 0, 11, 0, 16, 0, 19, 0, 11, 0, 19, 0, 28, 0, 11, 0, 28, 0, 32, 0, 11, 0, 32, 0, 33, 0, 11, 0, 33, 0, 9, 0, 11, 0, 1, 0, 2, 0, 12, 0, 11, 0, 12, 0, 2, 0, 16, 0, 12, 0, 11, 0, 19, 0, 16, 0, 11, 0, 28, 0, 19, 0, 11, 0, 32, 0, 28, 0, 11, 0, 33, 0, 32, 0, 11, 0, 9, 0, 33, 0, 11, 0, 43, 0, 46, 0, 44, 0, 46, 0, 10, 0, 44, 0, 46, 0, 11, 0, 10, 0, 46, 0, 51, 0, 11, 0, 4, 0, 11, 0, 51, 0, 4, 0, 51, 0, 56, 0, 56, 0, 5, 0, 4, 0, 46, 0, 43, 0, 44, 0, 10, 0, 46, 0, 44, 0, 11, 0, 46, 0, 10, 0, 51, 0, 46, 0, 11, 0, 11, 0, 4, 0, 51, 0, 51, 0, 4, 0, 56, 0, 5, 0, 56, 0, 4, 0, 65, 0, 66, 0, 62, 0, 65, 0, 68, 0, 66, 0, 68, 0, 7, 0, 66, 0, 68, 0, 8, 0, 7, 0, 68, 0, 73, 0, 8, 0, 2, 0, 8, 0, 73, 0, 2, 0, 73, 0, 78, 0, 78, 0, 0, 0, 2, 0, 66, 0, 65, 0, 62, 0, 68, 0, 65, 0, 66, 0, 7, 0, 68, 0, 66, 0, 8, 0, 68, 0, 7, 0, 73, 0, 68, 0, 8, 0, 8, 0, 2, 0, 73, 0, 73, 0, 2, 0, 78, 0, 0, 0, 78, 0, 2, 0, 8, 0, 2, 0, 11, 0, 11, 0, 4, 0, 8, 0, 79, 0, 6, 0, 8, 0, 8, 0, 82, 0, 79, 0, 8, 0, 4, 0, 82, 0, 4, 0, 87, 0, 82, 0, 4, 0, 92, 0, 87, 0, 4, 0, 94, 0, 92, 0, 4, 0, 100, 0, 94, 0, 4, 0, 3, 0, 100, 0, 6, 0, 79, 0, 8, 0, 82, 0, 8, 0, 79, 0, 4, 0, 8, 0, 82, 0, 87, 0, 4, 0, 82, 0, 92, 0, 4, 0, 87, 0, 94, 0, 4, 0, 92, 0, 100, 0, 4, 0, 94, 0, 3, 0, 4, 0, 100, 0), 0.0872025, PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 2, 0, 1, 0, 12, 0, 12, 0, 11, 0, 2, 0, 12, 0, 33, 0, 11, 0, 33, 0, 9, 0, 11, 0, 1, 0, 2, 0, 12, 0, 11, 0, 12, 0, 2, 0, 33, 0, 12, 0, 11, 0, 9, 0, 33, 0, 11, 0, 51, 0, 11, 0, 10, 0, 4, 0, 11, 0, 51, 0, 51, 0, 5, 0, 4, 0, 11, 0, 51, 0, 10, 0, 11, 0, 4, 0, 51, 0, 5, 0, 51, 0, 4, 0, 73, 0, 8, 0, 7, 0, 2, 0, 8, 0, 73, 0, 73, 0, 0, 0, 2, 0, 8, 0, 73, 0, 7, 0, 8, 0, 2, 0, 73, 0, 0, 0, 73, 0, 2, 0, 8, 0, 2, 0, 11, 0, 11, 0, 4, 0, 8, 0, 82, 0, 6, 0, 8, 0, 8, 0, 4, 0, 82, 0, 4, 0, 3, 0, 82, 0, 6, 0, 82, 0, 8, 0, 4, 0, 8, 0, 82, 0, 3, 0, 4, 0, 82, 0)], +"name": "snow", +"primitive": 3, +"vertex_count": 103, +"vertex_data": PackedByteArray(0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}, { +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 0.701808, 1.23303), +"format": 4097, +"index_count": 18, +"index_data": PackedByteArray(11, 0, 2, 0, 101, 0, 4, 0, 102, 0, 8, 0, 8, 0, 102, 0, 101, 0, 101, 0, 2, 0, 8, 0, 4, 0, 11, 0, 101, 0, 101, 0, 102, 0, 4, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 103, +"vertex_data": PackedByteArray(0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ccnwl"] +resource_name = "blockSnowSlopeHalf_Mesh blockSnowSlopeHalf" +_surfaces = [{ +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 0.701808, 1.23303), +"attribute_data": PackedByteArray(157, 12, 35, 64, 160, 134, 26, 61, 157, 12, 35, 192, 160, 134, 26, 61, 0, 179, 189, 175, 149, 124, 214, 192, 0, 179, 189, 175, 149, 124, 214, 192, 157, 12, 35, 192, 160, 134, 26, 61, 157, 12, 35, 64, 160, 134, 26, 61, 155, 12, 35, 192, 169, 25, 146, 65, 0, 240, 248, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 240, 248, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 149, 12, 35, 64, 240, 133, 26, 61, 164, 12, 35, 192, 240, 133, 26, 61, 160, 30, 204, 181, 151, 124, 214, 192, 160, 30, 204, 181, 151, 124, 214, 192, 164, 12, 35, 192, 240, 133, 26, 61, 149, 12, 35, 64, 240, 133, 26, 61, 163, 12, 35, 64, 170, 25, 146, 65, 149, 12, 35, 192, 170, 25, 146, 65, 201, 81, 176, 53, 130, 90, 56, 65, 201, 81, 176, 53, 130, 90, 56, 65, 149, 12, 35, 192, 170, 25, 146, 65, 163, 12, 35, 64, 170, 25, 146, 65, 56, 249, 202, 65, 65, 86, 35, 192, 123, 136, 191, 65, 42, 227, 135, 191, 184, 250, 194, 65, 116, 3, 27, 193, 2, 64, 87, 193, 99, 40, 77, 65, 144, 179, 179, 65, 66, 237, 176, 62, 148, 135, 167, 65, 75, 231, 212, 63, 3, 18, 155, 65, 248, 178, 56, 64, 171, 96, 142, 65, 112, 66, 128, 64, 155, 129, 129, 65, 250, 204, 160, 64, 47, 6, 105, 65, 241, 212, 189, 64, 10, 231, 78, 65, 67, 58, 215, 64, 184, 194, 52, 65, 191, 224, 236, 64, 49, 182, 26, 65, 107, 176, 254, 64, 63, 162, 155, 64, 243, 53, 16, 65, 111, 175, 206, 64, 91, 64, 11, 65, 80, 222, 0, 65, 196, 74, 6, 65, 250, 228, 79, 64, 131, 40, 23, 65, 180, 101, 207, 63, 88, 16, 32, 65, 59, 110, 94, 188, 149, 227, 42, 65, 254, 181, 210, 191, 60, 150, 55, 65, 31, 79, 81, 192, 59, 26, 70, 65, 206, 35, 156, 192, 124, 95, 86, 65, 38, 233, 206, 192, 249, 83, 104, 65, 185, 95, 0, 193, 206, 227, 123, 65, 178, 183, 24, 193, 167, 124, 136, 65, 131, 97, 48, 193, 142, 190, 147, 65, 1, 67, 71, 193, 35, 171, 159, 65, 184, 250, 194, 65, 116, 3, 27, 193, 123, 136, 191, 65, 42, 227, 135, 191, 56, 249, 202, 65, 65, 86, 35, 192, 2, 64, 87, 193, 99, 40, 77, 65, 144, 179, 179, 65, 66, 237, 176, 62, 148, 135, 167, 65, 75, 231, 212, 63, 3, 18, 155, 65, 248, 178, 56, 64, 171, 96, 142, 65, 112, 66, 128, 64, 155, 129, 129, 65, 250, 204, 160, 64, 47, 6, 105, 65, 241, 212, 189, 64, 10, 231, 78, 65, 67, 58, 215, 64, 184, 194, 52, 65, 191, 224, 236, 64, 49, 182, 26, 65, 107, 176, 254, 64, 63, 162, 155, 64, 243, 53, 16, 65, 111, 175, 206, 64, 91, 64, 11, 65, 80, 222, 0, 65, 196, 74, 6, 65, 250, 228, 79, 64, 131, 40, 23, 65, 180, 101, 207, 63, 88, 16, 32, 65, 59, 110, 94, 188, 149, 227, 42, 65, 254, 181, 210, 191, 60, 150, 55, 65, 31, 79, 81, 192, 59, 26, 70, 65, 206, 35, 156, 192, 124, 95, 86, 65, 38, 233, 206, 192, 249, 83, 104, 65, 185, 95, 0, 193, 206, 227, 123, 65, 178, 183, 24, 193, 167, 124, 136, 65, 131, 97, 48, 193, 142, 190, 147, 65, 1, 67, 71, 193, 35, 171, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 6, 143, 2, 65, 32, 177, 159, 65, 240, 102, 56, 65, 32, 177, 159, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 240, 102, 56, 65, 32, 177, 159, 65, 6, 143, 2, 65, 32, 177, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 246, 122, 29, 65, 218, 5, 62, 64, 1, 143, 2, 65, 130, 122, 58, 64, 235, 102, 56, 65, 130, 122, 58, 64, 6, 53, 83, 65, 158, 220, 47, 64, 196, 129, 207, 64, 158, 220, 47, 64, 164, 199, 109, 65, 197, 55, 30, 64, 144, 92, 154, 64, 198, 55, 30, 64, 163, 0, 132, 65, 158, 159, 5, 64, 151, 210, 75, 64, 158, 159, 5, 64, 111, 226, 144, 65, 191, 94, 204, 63, 81, 136, 201, 63, 191, 94, 204, 63, 246, 122, 157, 65, 188, 19, 128, 63, 79, 136, 201, 191, 228, 34, 207, 62, 246, 122, 157, 65, 52, 145, 198, 192, 150, 210, 75, 192, 16, 124, 177, 189, 144, 92, 154, 192, 100, 32, 241, 190, 196, 129, 207, 192, 150, 35, 63, 191, 1, 143, 2, 193, 38, 155, 105, 191, 246, 122, 29, 193, 124, 200, 119, 191, 246, 122, 157, 193, 51, 145, 198, 192, 234, 102, 56, 193, 38, 155, 105, 191, 10, 53, 83, 193, 150, 35, 63, 191, 164, 199, 109, 193, 100, 32, 241, 190, 163, 0, 132, 193, 16, 124, 177, 189, 112, 226, 144, 193, 230, 34, 207, 62, 246, 122, 157, 193, 189, 19, 128, 63, 235, 102, 56, 65, 130, 122, 58, 64, 1, 143, 2, 65, 130, 122, 58, 64, 246, 122, 29, 65, 218, 5, 62, 64, 6, 53, 83, 65, 158, 220, 47, 64, 196, 129, 207, 64, 158, 220, 47, 64, 164, 199, 109, 65, 197, 55, 30, 64, 144, 92, 154, 64, 198, 55, 30, 64, 163, 0, 132, 65, 158, 159, 5, 64, 151, 210, 75, 64, 158, 159, 5, 64, 111, 226, 144, 65, 191, 94, 204, 63, 81, 136, 201, 63, 191, 94, 204, 63, 246, 122, 157, 65, 188, 19, 128, 63, 79, 136, 201, 191, 228, 34, 207, 62, 246, 122, 157, 65, 52, 145, 198, 192, 150, 210, 75, 192, 16, 124, 177, 189, 144, 92, 154, 192, 100, 32, 241, 190, 196, 129, 207, 192, 150, 35, 63, 191, 1, 143, 2, 193, 38, 155, 105, 191, 246, 122, 29, 193, 124, 200, 119, 191, 246, 122, 157, 193, 51, 145, 198, 192, 234, 102, 56, 193, 38, 155, 105, 191, 10, 53, 83, 193, 150, 35, 63, 191, 164, 199, 109, 193, 100, 32, 241, 190, 163, 0, 132, 193, 16, 124, 177, 189, 112, 226, 144, 193, 230, 34, 207, 62, 246, 122, 157, 193, 189, 19, 128, 63, 246, 122, 157, 65, 50, 72, 203, 193, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 50, 72, 203, 193, 246, 122, 157, 193, 204, 218, 148, 65, 58, 249, 202, 193, 25, 86, 35, 192, 185, 250, 194, 193, 106, 3, 27, 193, 236, 53, 190, 193, 210, 127, 15, 192, 255, 73, 177, 193, 212, 106, 231, 191, 184, 67, 164, 193, 126, 44, 160, 191, 144, 49, 151, 193, 224, 36, 19, 191, 253, 63, 87, 65, 113, 40, 77, 65, 253, 33, 138, 193, 228, 21, 96, 62, 245, 70, 122, 193, 201, 34, 144, 63, 211, 136, 96, 193, 98, 38, 9, 64, 38, 38, 71, 193, 89, 248, 80, 64, 1, 59, 46, 193, 206, 155, 143, 64, 15, 227, 21, 193, 229, 198, 185, 64, 102, 114, 252, 192, 109, 206, 230, 64, 139, 236, 160, 192, 152, 25, 35, 65, 167, 49, 99, 192, 92, 157, 57, 65, 223, 209, 1, 192, 230, 178, 78, 65, 91, 42, 241, 190, 183, 66, 98, 65, 212, 202, 142, 63, 56, 55, 116, 65, 243, 93, 46, 64, 58, 62, 130, 65, 3, 41, 139, 64, 60, 128, 137, 65, 72, 103, 191, 64, 142, 217, 143, 65, 239, 175, 243, 64, 45, 67, 149, 65, 134, 228, 19, 65, 20, 183, 153, 65, 92, 188, 45, 65, 97, 48, 157, 65, 252, 66, 71, 65, 42, 171, 159, 65, 236, 53, 190, 193, 210, 127, 15, 192, 185, 250, 194, 193, 106, 3, 27, 193, 58, 249, 202, 193, 25, 86, 35, 192, 255, 73, 177, 193, 212, 106, 231, 191, 184, 67, 164, 193, 126, 44, 160, 191, 144, 49, 151, 193, 224, 36, 19, 191, 253, 63, 87, 65, 113, 40, 77, 65, 253, 33, 138, 193, 228, 21, 96, 62, 245, 70, 122, 193, 201, 34, 144, 63, 211, 136, 96, 193, 98, 38, 9, 64, 38, 38, 71, 193, 89, 248, 80, 64, 1, 59, 46, 193, 206, 155, 143, 64, 15, 227, 21, 193, 229, 198, 185, 64, 102, 114, 252, 192, 109, 206, 230, 64, 139, 236, 160, 192, 152, 25, 35, 65, 167, 49, 99, 192, 92, 157, 57, 65, 223, 209, 1, 192, 230, 178, 78, 65, 91, 42, 241, 190, 183, 66, 98, 65, 212, 202, 142, 63, 56, 55, 116, 65, 243, 93, 46, 64, 58, 62, 130, 65, 3, 41, 139, 64, 60, 128, 137, 65, 72, 103, 191, 64, 142, 217, 143, 65, 239, 175, 243, 64, 45, 67, 149, 65, 134, 228, 19, 65, 20, 183, 153, 65, 92, 188, 45, 65, 97, 48, 157, 65, 252, 66, 71, 65, 42, 171, 159, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65), +"format": 4119, +"index_count": 612, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 29, 0, 30, 0, 27, 0, 30, 0, 31, 0, 27, 0, 31, 0, 32, 0, 27, 0, 32, 0, 33, 0, 27, 0, 33, 0, 34, 0, 27, 0, 34, 0, 35, 0, 27, 0, 35, 0, 36, 0, 27, 0, 36, 0, 37, 0, 27, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 37, 0, 40, 0, 27, 0, 40, 0, 41, 0, 27, 0, 41, 0, 42, 0, 27, 0, 42, 0, 43, 0, 27, 0, 43, 0, 44, 0, 27, 0, 44, 0, 45, 0, 27, 0, 45, 0, 46, 0, 27, 0, 46, 0, 47, 0, 27, 0, 47, 0, 48, 0, 27, 0, 48, 0, 49, 0, 27, 0, 49, 0, 50, 0, 27, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 55, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 54, 0, 58, 0, 57, 0, 54, 0, 59, 0, 58, 0, 54, 0, 60, 0, 59, 0, 54, 0, 61, 0, 60, 0, 54, 0, 62, 0, 61, 0, 54, 0, 63, 0, 62, 0, 54, 0, 64, 0, 63, 0, 54, 0, 65, 0, 63, 0, 64, 0, 66, 0, 63, 0, 65, 0, 67, 0, 64, 0, 54, 0, 68, 0, 67, 0, 54, 0, 69, 0, 68, 0, 54, 0, 70, 0, 69, 0, 54, 0, 71, 0, 70, 0, 54, 0, 72, 0, 71, 0, 54, 0, 73, 0, 72, 0, 54, 0, 74, 0, 73, 0, 54, 0, 75, 0, 74, 0, 54, 0, 76, 0, 75, 0, 54, 0, 77, 0, 76, 0, 54, 0, 80, 0, 78, 0, 79, 0, 79, 0, 81, 0, 80, 0, 79, 0, 82, 0, 81, 0, 82, 0, 83, 0, 81, 0, 82, 0, 84, 0, 83, 0, 84, 0, 85, 0, 83, 0, 84, 0, 86, 0, 85, 0, 86, 0, 87, 0, 85, 0, 86, 0, 88, 0, 87, 0, 88, 0, 89, 0, 87, 0, 88, 0, 90, 0, 89, 0, 90, 0, 91, 0, 89, 0, 90, 0, 92, 0, 91, 0, 92, 0, 93, 0, 91, 0, 93, 0, 94, 0, 91, 0, 94, 0, 95, 0, 91, 0, 95, 0, 96, 0, 91, 0, 97, 0, 91, 0, 96, 0, 97, 0, 96, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 99, 0, 100, 0, 97, 0, 100, 0, 101, 0, 97, 0, 101, 0, 102, 0, 102, 0, 103, 0, 97, 0, 106, 0, 104, 0, 105, 0, 107, 0, 105, 0, 104, 0, 108, 0, 105, 0, 107, 0, 109, 0, 108, 0, 107, 0, 110, 0, 108, 0, 109, 0, 111, 0, 110, 0, 109, 0, 112, 0, 110, 0, 111, 0, 113, 0, 112, 0, 111, 0, 114, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 114, 0, 115, 0, 117, 0, 116, 0, 115, 0, 118, 0, 116, 0, 117, 0, 119, 0, 118, 0, 117, 0, 120, 0, 119, 0, 117, 0, 121, 0, 120, 0, 117, 0, 122, 0, 121, 0, 117, 0, 117, 0, 123, 0, 122, 0, 122, 0, 123, 0, 124, 0, 124, 0, 123, 0, 125, 0, 125, 0, 123, 0, 126, 0, 126, 0, 123, 0, 127, 0, 127, 0, 123, 0, 128, 0, 129, 0, 128, 0, 123, 0, 132, 0, 130, 0, 131, 0, 131, 0, 133, 0, 132, 0, 131, 0, 134, 0, 133, 0, 134, 0, 135, 0, 133, 0, 134, 0, 136, 0, 135, 0, 136, 0, 137, 0, 135, 0, 136, 0, 138, 0, 137, 0, 138, 0, 139, 0, 137, 0, 138, 0, 140, 0, 139, 0, 140, 0, 141, 0, 139, 0, 140, 0, 142, 0, 141, 0, 142, 0, 143, 0, 141, 0, 142, 0, 144, 0, 143, 0, 144, 0, 145, 0, 143, 0, 145, 0, 146, 0, 143, 0, 146, 0, 147, 0, 143, 0, 147, 0, 148, 0, 143, 0, 149, 0, 143, 0, 148, 0, 149, 0, 148, 0, 150, 0, 149, 0, 150, 0, 151, 0, 149, 0, 151, 0, 152, 0, 149, 0, 152, 0, 153, 0, 149, 0, 153, 0, 154, 0, 154, 0, 155, 0, 149, 0, 158, 0, 156, 0, 157, 0, 159, 0, 157, 0, 156, 0, 160, 0, 157, 0, 159, 0, 161, 0, 160, 0, 159, 0, 162, 0, 160, 0, 161, 0, 163, 0, 162, 0, 161, 0, 164, 0, 162, 0, 163, 0, 165, 0, 164, 0, 163, 0, 166, 0, 164, 0, 165, 0, 167, 0, 166, 0, 165, 0, 168, 0, 166, 0, 167, 0, 169, 0, 168, 0, 167, 0, 170, 0, 168, 0, 169, 0, 171, 0, 170, 0, 169, 0, 172, 0, 171, 0, 169, 0, 173, 0, 172, 0, 169, 0, 174, 0, 173, 0, 169, 0, 169, 0, 175, 0, 174, 0, 174, 0, 175, 0, 176, 0, 176, 0, 175, 0, 177, 0, 177, 0, 175, 0, 178, 0, 178, 0, 175, 0, 179, 0, 179, 0, 175, 0, 180, 0, 181, 0, 180, 0, 175, 0, 184, 0, 182, 0, 183, 0, 183, 0, 185, 0, 184, 0, 188, 0, 186, 0, 187, 0, 187, 0, 189, 0, 188, 0, 187, 0, 190, 0, 189, 0, 187, 0, 191, 0, 190, 0, 187, 0, 192, 0, 191, 0, 192, 0, 193, 0, 191, 0, 192, 0, 194, 0, 193, 0, 192, 0, 195, 0, 194, 0, 192, 0, 196, 0, 195, 0, 192, 0, 197, 0, 196, 0, 192, 0, 198, 0, 197, 0, 192, 0, 199, 0, 198, 0, 192, 0, 200, 0, 199, 0, 192, 0, 201, 0, 200, 0, 192, 0, 202, 0, 201, 0, 192, 0, 203, 0, 202, 0, 192, 0, 204, 0, 203, 0, 192, 0, 205, 0, 204, 0, 192, 0, 206, 0, 205, 0, 192, 0, 207, 0, 206, 0, 192, 0, 208, 0, 207, 0, 192, 0, 209, 0, 208, 0, 192, 0, 210, 0, 209, 0, 192, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 215, 0, 213, 0, 212, 0, 216, 0, 213, 0, 215, 0, 217, 0, 213, 0, 216, 0, 218, 0, 213, 0, 217, 0, 219, 0, 218, 0, 217, 0, 220, 0, 218, 0, 219, 0, 221, 0, 218, 0, 220, 0, 222, 0, 218, 0, 221, 0, 223, 0, 218, 0, 222, 0, 224, 0, 218, 0, 223, 0, 225, 0, 218, 0, 224, 0, 226, 0, 218, 0, 225, 0, 227, 0, 218, 0, 226, 0, 228, 0, 218, 0, 227, 0, 229, 0, 218, 0, 228, 0, 230, 0, 218, 0, 229, 0, 231, 0, 218, 0, 230, 0, 232, 0, 218, 0, 231, 0, 233, 0, 218, 0, 232, 0, 234, 0, 218, 0, 233, 0, 235, 0, 218, 0, 234, 0, 236, 0, 218, 0, 235, 0, 237, 0, 218, 0, 236, 0), +"lods": [0.00184846, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 29, 0, 27, 0, 29, 0, 31, 0, 27, 0, 31, 0, 33, 0, 27, 0, 33, 0, 34, 0, 27, 0, 34, 0, 36, 0, 27, 0, 36, 0, 38, 0, 37, 0, 36, 0, 37, 0, 27, 0, 37, 0, 41, 0, 27, 0, 41, 0, 43, 0, 27, 0, 43, 0, 45, 0, 27, 0, 45, 0, 47, 0, 27, 0, 47, 0, 48, 0, 27, 0, 48, 0, 50, 0, 27, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 56, 0, 52, 0, 54, 0, 58, 0, 56, 0, 54, 0, 60, 0, 58, 0, 54, 0, 61, 0, 60, 0, 54, 0, 63, 0, 61, 0, 54, 0, 65, 0, 63, 0, 64, 0, 64, 0, 63, 0, 54, 0, 68, 0, 64, 0, 54, 0, 70, 0, 68, 0, 54, 0, 72, 0, 70, 0, 54, 0, 74, 0, 72, 0, 54, 0, 75, 0, 74, 0, 54, 0, 77, 0, 75, 0, 54, 0, 82, 0, 83, 0, 80, 0, 82, 0, 86, 0, 83, 0, 86, 0, 87, 0, 83, 0, 86, 0, 90, 0, 87, 0, 90, 0, 89, 0, 87, 0, 90, 0, 91, 0, 89, 0, 90, 0, 92, 0, 91, 0, 92, 0, 94, 0, 91, 0, 94, 0, 96, 0, 91, 0, 97, 0, 91, 0, 96, 0, 97, 0, 96, 0, 100, 0, 97, 0, 100, 0, 102, 0, 102, 0, 103, 0, 97, 0, 109, 0, 108, 0, 104, 0, 112, 0, 108, 0, 109, 0, 113, 0, 112, 0, 109, 0, 116, 0, 112, 0, 113, 0, 115, 0, 116, 0, 113, 0, 117, 0, 116, 0, 115, 0, 118, 0, 116, 0, 117, 0, 120, 0, 118, 0, 117, 0, 122, 0, 120, 0, 117, 0, 117, 0, 123, 0, 122, 0, 122, 0, 123, 0, 126, 0, 126, 0, 123, 0, 128, 0, 129, 0, 128, 0, 123, 0, 134, 0, 135, 0, 132, 0, 134, 0, 138, 0, 135, 0, 138, 0, 139, 0, 135, 0, 138, 0, 142, 0, 139, 0, 142, 0, 141, 0, 139, 0, 142, 0, 143, 0, 141, 0, 142, 0, 144, 0, 143, 0, 144, 0, 146, 0, 143, 0, 146, 0, 148, 0, 143, 0, 149, 0, 143, 0, 148, 0, 149, 0, 148, 0, 150, 0, 149, 0, 150, 0, 151, 0, 149, 0, 151, 0, 152, 0, 149, 0, 152, 0, 153, 0, 149, 0, 153, 0, 154, 0, 154, 0, 155, 0, 149, 0, 161, 0, 160, 0, 156, 0, 164, 0, 160, 0, 161, 0, 165, 0, 164, 0, 161, 0, 168, 0, 164, 0, 165, 0, 167, 0, 168, 0, 165, 0, 169, 0, 168, 0, 167, 0, 170, 0, 168, 0, 169, 0, 172, 0, 170, 0, 169, 0, 174, 0, 172, 0, 169, 0, 169, 0, 175, 0, 174, 0, 174, 0, 175, 0, 176, 0, 176, 0, 175, 0, 177, 0, 177, 0, 175, 0, 178, 0, 178, 0, 175, 0, 179, 0, 179, 0, 175, 0, 180, 0, 181, 0, 180, 0, 175, 0, 184, 0, 182, 0, 183, 0, 183, 0, 185, 0, 184, 0, 188, 0, 186, 0, 187, 0, 187, 0, 189, 0, 188, 0, 187, 0, 190, 0, 189, 0, 187, 0, 191, 0, 190, 0, 187, 0, 192, 0, 191, 0, 192, 0, 194, 0, 191, 0, 192, 0, 195, 0, 194, 0, 192, 0, 196, 0, 195, 0, 192, 0, 197, 0, 196, 0, 192, 0, 198, 0, 197, 0, 192, 0, 199, 0, 198, 0, 192, 0, 200, 0, 199, 0, 192, 0, 201, 0, 200, 0, 192, 0, 202, 0, 201, 0, 192, 0, 203, 0, 202, 0, 192, 0, 204, 0, 203, 0, 192, 0, 205, 0, 204, 0, 192, 0, 206, 0, 205, 0, 192, 0, 207, 0, 206, 0, 192, 0, 208, 0, 207, 0, 192, 0, 209, 0, 208, 0, 192, 0, 210, 0, 209, 0, 192, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 215, 0, 213, 0, 212, 0, 216, 0, 213, 0, 215, 0, 217, 0, 213, 0, 216, 0, 218, 0, 213, 0, 217, 0, 220, 0, 218, 0, 217, 0, 221, 0, 218, 0, 220, 0, 222, 0, 218, 0, 221, 0, 223, 0, 218, 0, 222, 0, 224, 0, 218, 0, 223, 0, 225, 0, 218, 0, 224, 0, 226, 0, 218, 0, 225, 0, 227, 0, 218, 0, 226, 0, 228, 0, 218, 0, 227, 0, 229, 0, 218, 0, 228, 0, 230, 0, 218, 0, 229, 0, 231, 0, 218, 0, 230, 0, 232, 0, 218, 0, 231, 0, 233, 0, 218, 0, 232, 0, 234, 0, 218, 0, 233, 0, 235, 0, 218, 0, 234, 0, 236, 0, 218, 0, 235, 0, 237, 0, 218, 0, 236, 0), 0.0190085, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 31, 0, 27, 0, 31, 0, 34, 0, 27, 0, 34, 0, 43, 0, 27, 0, 43, 0, 47, 0, 27, 0, 47, 0, 48, 0, 27, 0, 48, 0, 50, 0, 27, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 58, 0, 52, 0, 54, 0, 61, 0, 58, 0, 54, 0, 70, 0, 61, 0, 54, 0, 74, 0, 70, 0, 54, 0, 75, 0, 74, 0, 54, 0, 77, 0, 75, 0, 54, 0, 86, 0, 90, 0, 87, 0, 90, 0, 89, 0, 87, 0, 90, 0, 91, 0, 89, 0, 90, 0, 96, 0, 91, 0, 97, 0, 91, 0, 96, 0, 97, 0, 96, 0, 102, 0, 102, 0, 103, 0, 97, 0, 116, 0, 112, 0, 113, 0, 115, 0, 116, 0, 113, 0, 117, 0, 116, 0, 115, 0, 122, 0, 116, 0, 117, 0, 117, 0, 123, 0, 122, 0, 122, 0, 123, 0, 128, 0, 129, 0, 128, 0, 123, 0, 138, 0, 139, 0, 135, 0, 138, 0, 142, 0, 139, 0, 142, 0, 141, 0, 139, 0, 142, 0, 143, 0, 141, 0, 142, 0, 148, 0, 143, 0, 149, 0, 143, 0, 148, 0, 149, 0, 148, 0, 154, 0, 154, 0, 155, 0, 149, 0, 165, 0, 164, 0, 161, 0, 168, 0, 164, 0, 165, 0, 167, 0, 168, 0, 165, 0, 169, 0, 168, 0, 167, 0, 174, 0, 168, 0, 169, 0, 169, 0, 175, 0, 174, 0, 174, 0, 175, 0, 180, 0, 181, 0, 180, 0, 175, 0, 184, 0, 182, 0, 183, 0, 183, 0, 185, 0, 184, 0, 188, 0, 186, 0, 187, 0, 187, 0, 191, 0, 188, 0, 187, 0, 192, 0, 191, 0, 192, 0, 197, 0, 191, 0, 192, 0, 202, 0, 197, 0, 192, 0, 204, 0, 202, 0, 192, 0, 210, 0, 204, 0, 192, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 217, 0, 213, 0, 212, 0, 218, 0, 213, 0, 217, 0, 223, 0, 218, 0, 217, 0, 228, 0, 218, 0, 223, 0, 230, 0, 218, 0, 228, 0, 236, 0, 218, 0, 230, 0, 237, 0, 218, 0, 236, 0), 0.0872025, PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 25, 0, 48, 0, 27, 0, 48, 0, 50, 0, 27, 0, 53, 0, 51, 0, 52, 0, 54, 0, 52, 0, 51, 0, 75, 0, 52, 0, 54, 0, 77, 0, 75, 0, 54, 0, 96, 0, 91, 0, 89, 0, 97, 0, 91, 0, 96, 0, 96, 0, 103, 0, 97, 0, 117, 0, 122, 0, 115, 0, 117, 0, 123, 0, 122, 0, 129, 0, 122, 0, 123, 0, 148, 0, 143, 0, 141, 0, 149, 0, 143, 0, 148, 0, 148, 0, 155, 0, 149, 0, 169, 0, 174, 0, 167, 0, 169, 0, 175, 0, 174, 0, 181, 0, 174, 0, 175, 0, 184, 0, 182, 0, 183, 0, 183, 0, 185, 0, 184, 0, 191, 0, 186, 0, 187, 0, 187, 0, 192, 0, 191, 0, 192, 0, 211, 0, 191, 0, 214, 0, 217, 0, 213, 0, 218, 0, 213, 0, 217, 0, 237, 0, 218, 0, 217, 0)], +"material": SubResource("StandardMaterial3D_2iohs"), +"name": "snow", +"primitive": 3, +"vertex_count": 252, +"vertex_data": PackedByteArray(0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 154, 39, 102, 187, 83, 99, 255, 191, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 154, 39, 102, 187, 83, 99, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 154, 39, 102, 187, 83, 99, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 154, 39, 102, 187, 83, 99, 255, 191, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 154, 39, 102, 187, 83, 99, 255, 191, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 154, 39, 102, 187, 83, 99, 255, 191, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 154, 39, 102, 187, 83, 99, 255, 191, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 154, 39, 102, 187, 83, 99, 255, 191, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 154, 39, 102, 187, 83, 99, 255, 191, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 154, 39, 102, 187, 83, 99, 255, 191, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 154, 39, 102, 187, 83, 99, 255, 191, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 154, 39, 102, 187, 83, 99, 255, 191, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 154, 39, 102, 187, 83, 99, 255, 191, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 154, 39, 102, 187, 83, 99, 255, 191, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 154, 39, 102, 187, 83, 99, 255, 191, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 154, 39, 102, 187, 83, 99, 255, 191, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 154, 39, 102, 187, 83, 99, 255, 191, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 154, 39, 102, 187, 83, 99, 255, 191, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 154, 39, 102, 187, 83, 99, 255, 191, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 154, 39, 102, 187, 83, 99, 255, 191, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 154, 39, 102, 187, 83, 99, 255, 191, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 154, 39, 102, 187, 83, 99, 255, 191, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 154, 39, 102, 187, 83, 99, 255, 191, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 154, 39, 102, 187, 83, 99, 255, 191, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 154, 39, 102, 187, 83, 99, 255, 191, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 154, 39, 102, 187, 83, 99, 255, 191, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 154, 39, 102, 187, 83, 99, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 151, 196, 101, 88, 83, 99, 255, 63, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 151, 196, 101, 88, 83, 99, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 151, 196, 101, 88, 83, 99, 255, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 151, 196, 101, 88, 83, 99, 255, 63, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 151, 196, 101, 88, 83, 99, 255, 63, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 151, 196, 101, 88, 83, 99, 255, 63, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 151, 196, 101, 88, 83, 99, 255, 63, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 151, 196, 101, 88, 83, 99, 255, 63, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 151, 196, 101, 88, 83, 99, 255, 63, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 151, 196, 101, 88, 83, 99, 255, 63, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 151, 196, 101, 88, 83, 99, 255, 63, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 151, 196, 101, 88, 83, 99, 255, 63, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 151, 196, 101, 88, 83, 99, 255, 63, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 151, 196, 101, 88, 83, 99, 255, 63, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 151, 196, 101, 88, 83, 99, 255, 63, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 151, 196, 101, 88, 83, 99, 255, 63, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 151, 196, 101, 88, 83, 99, 255, 63, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 151, 196, 101, 88, 83, 99, 255, 63, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 151, 196, 101, 88, 83, 99, 255, 63, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 151, 196, 101, 88, 83, 99, 255, 63, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 151, 196, 101, 88, 83, 99, 255, 63, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 151, 196, 101, 88, 83, 99, 255, 63, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 151, 196, 101, 88, 83, 99, 255, 63, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 151, 196, 101, 88, 83, 99, 255, 63, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 151, 196, 101, 88, 83, 99, 255, 63, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 151, 196, 101, 88, 83, 99, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 151, 196, 101, 88, 83, 99, 255, 63, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 255, 191, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 255, 191, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 255, 191, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 255, 191, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 255, 63, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 255, 63, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 255, 63, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 255, 63, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 255, 127, 217, 174, 255, 255, 255, 191, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 255, 127, 217, 174, 255, 255, 255, 191, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 255, 127, 217, 174, 255, 255, 255, 191, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 255, 127, 217, 174, 254, 255, 255, 191, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 255, 127, 217, 174, 254, 255, 255, 191, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 255, 127, 217, 174, 254, 255, 255, 191, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 255, 127, 217, 174, 254, 255, 255, 191, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 255, 127, 217, 174, 254, 255, 255, 191, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 254, 255, 255, 191, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 37, 209, 0, 0, 255, 255, 255, 63, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 37, 209, 0, 0, 255, 255, 255, 63, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 37, 209, 0, 0, 255, 255, 255, 63, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 254, 255, 255, 63, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 37, 209, 0, 0, 254, 255, 255, 63, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 37, 209, 0, 0, 254, 255, 255, 63, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 37, 209, 0, 0, 254, 255, 255, 63, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 254, 255, 255, 63, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 169, 170, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 169, 170, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 170, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 169, 170, 255, 255, 0, 0, 255, 191, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 100, 216, 102, 187, 0, 0, 85, 142, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 100, 216, 102, 187, 0, 0, 168, 241, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 100, 216, 102, 187, 0, 0, 85, 142, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 100, 216, 102, 187, 0, 0, 168, 241, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 100, 216, 102, 187, 0, 0, 85, 142, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 100, 216, 102, 187, 0, 0, 85, 142, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 100, 216, 102, 187, 0, 0, 168, 241, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 100, 216, 102, 187, 0, 0, 85, 142, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 100, 216, 102, 187, 0, 0, 168, 241, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 100, 216, 102, 187, 0, 0, 85, 142, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 100, 216, 102, 187, 0, 0, 168, 241, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 100, 216, 102, 187, 0, 0, 168, 241, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 100, 216, 102, 187, 0, 0, 168, 241, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 100, 216, 102, 187, 0, 0, 85, 142, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 100, 216, 102, 187, 0, 0, 85, 142, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 100, 216, 102, 187, 0, 0, 85, 142, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 100, 216, 102, 187, 0, 0, 168, 241, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 100, 216, 102, 187, 0, 0, 168, 241, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 100, 216, 102, 187, 0, 0, 168, 241, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 100, 216, 102, 187, 0, 0, 85, 142, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 100, 216, 102, 187, 0, 0, 168, 241, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 100, 216, 102, 187, 0, 0, 85, 142, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 100, 216, 102, 187, 0, 0, 85, 142, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 100, 216, 102, 187, 0, 0, 168, 241, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 100, 216, 102, 187, 0, 0, 168, 241, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 100, 216, 102, 187, 0, 0, 168, 241, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 103, 59, 101, 88, 0, 0, 169, 113, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 103, 59, 101, 88, 0, 0, 169, 113, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 103, 59, 101, 88, 0, 0, 169, 113, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 103, 59, 101, 88, 0, 0, 86, 14, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 103, 59, 101, 88, 0, 0, 169, 113, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 103, 59, 101, 88, 0, 0, 169, 113, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 103, 59, 101, 88, 0, 0, 86, 14, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 103, 59, 101, 88, 0, 0, 169, 113, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 103, 59, 101, 88, 0, 0, 86, 14, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 103, 59, 101, 88, 0, 0, 169, 113, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 103, 59, 101, 88, 0, 0, 86, 14, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 103, 59, 101, 88, 0, 0, 86, 14, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 103, 59, 101, 88, 0, 0, 86, 14, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 103, 59, 101, 88, 0, 0, 169, 113, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 103, 59, 101, 88, 0, 0, 86, 14, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 103, 59, 101, 88, 0, 0, 169, 113, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 103, 59, 101, 88, 0, 0, 86, 14, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 103, 59, 101, 88, 0, 0, 86, 14, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 103, 59, 101, 88, 0, 0, 86, 14, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 103, 59, 101, 88, 0, 0, 169, 113, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 103, 59, 101, 88, 0, 0, 86, 14, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 103, 59, 101, 88, 0, 0, 169, 113, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 103, 59, 101, 88, 0, 0, 169, 113, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 103, 59, 101, 88, 0, 0, 86, 14, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 103, 59, 101, 88, 0, 0, 86, 14, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 103, 59, 101, 88, 0, 0, 86, 14, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.616514, -0.201808, -0.616514, 1.23303, 0.701808, 1.23303), +"attribute_data": PackedByteArray(157, 12, 35, 64, 160, 134, 26, 61, 157, 12, 35, 192, 160, 134, 26, 61, 0, 179, 189, 175, 149, 124, 214, 192, 0, 179, 189, 175, 149, 124, 214, 192, 157, 12, 35, 192, 160, 134, 26, 61, 157, 12, 35, 64, 160, 134, 26, 61, 155, 12, 35, 192, 169, 25, 146, 65, 0, 240, 248, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 240, 248, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 149, 12, 35, 64, 240, 133, 26, 61, 164, 12, 35, 192, 240, 133, 26, 61, 160, 30, 204, 181, 151, 124, 214, 192, 160, 30, 204, 181, 151, 124, 214, 192, 164, 12, 35, 192, 240, 133, 26, 61, 149, 12, 35, 64, 240, 133, 26, 61, 163, 12, 35, 64, 170, 25, 146, 65, 149, 12, 35, 192, 170, 25, 146, 65, 201, 81, 176, 53, 130, 90, 56, 65, 201, 81, 176, 53, 130, 90, 56, 65, 149, 12, 35, 192, 170, 25, 146, 65, 163, 12, 35, 64, 170, 25, 146, 65, 56, 249, 202, 65, 65, 86, 35, 192, 123, 136, 191, 65, 42, 227, 135, 191, 184, 250, 194, 65, 116, 3, 27, 193, 2, 64, 87, 193, 99, 40, 77, 65, 144, 179, 179, 65, 66, 237, 176, 62, 148, 135, 167, 65, 75, 231, 212, 63, 3, 18, 155, 65, 248, 178, 56, 64, 171, 96, 142, 65, 112, 66, 128, 64, 155, 129, 129, 65, 250, 204, 160, 64, 47, 6, 105, 65, 241, 212, 189, 64, 10, 231, 78, 65, 67, 58, 215, 64, 184, 194, 52, 65, 191, 224, 236, 64, 49, 182, 26, 65, 107, 176, 254, 64, 63, 162, 155, 64, 243, 53, 16, 65, 111, 175, 206, 64, 91, 64, 11, 65, 80, 222, 0, 65, 196, 74, 6, 65, 250, 228, 79, 64, 131, 40, 23, 65, 180, 101, 207, 63, 88, 16, 32, 65, 59, 110, 94, 188, 149, 227, 42, 65, 254, 181, 210, 191, 60, 150, 55, 65, 31, 79, 81, 192, 59, 26, 70, 65, 206, 35, 156, 192, 124, 95, 86, 65, 38, 233, 206, 192, 249, 83, 104, 65, 185, 95, 0, 193, 206, 227, 123, 65, 178, 183, 24, 193, 167, 124, 136, 65, 131, 97, 48, 193, 142, 190, 147, 65, 1, 67, 71, 193, 35, 171, 159, 65, 184, 250, 194, 65, 116, 3, 27, 193, 123, 136, 191, 65, 42, 227, 135, 191, 56, 249, 202, 65, 65, 86, 35, 192, 2, 64, 87, 193, 99, 40, 77, 65, 144, 179, 179, 65, 66, 237, 176, 62, 148, 135, 167, 65, 75, 231, 212, 63, 3, 18, 155, 65, 248, 178, 56, 64, 171, 96, 142, 65, 112, 66, 128, 64, 155, 129, 129, 65, 250, 204, 160, 64, 47, 6, 105, 65, 241, 212, 189, 64, 10, 231, 78, 65, 67, 58, 215, 64, 184, 194, 52, 65, 191, 224, 236, 64, 49, 182, 26, 65, 107, 176, 254, 64, 63, 162, 155, 64, 243, 53, 16, 65, 111, 175, 206, 64, 91, 64, 11, 65, 80, 222, 0, 65, 196, 74, 6, 65, 250, 228, 79, 64, 131, 40, 23, 65, 180, 101, 207, 63, 88, 16, 32, 65, 59, 110, 94, 188, 149, 227, 42, 65, 254, 181, 210, 191, 60, 150, 55, 65, 31, 79, 81, 192, 59, 26, 70, 65, 206, 35, 156, 192, 124, 95, 86, 65, 38, 233, 206, 192, 249, 83, 104, 65, 185, 95, 0, 193, 206, 227, 123, 65, 178, 183, 24, 193, 167, 124, 136, 65, 131, 97, 48, 193, 142, 190, 147, 65, 1, 67, 71, 193, 35, 171, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 6, 143, 2, 65, 32, 177, 159, 65, 240, 102, 56, 65, 32, 177, 159, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 240, 102, 56, 65, 32, 177, 159, 65, 6, 143, 2, 65, 32, 177, 159, 65, 251, 122, 29, 65, 135, 34, 160, 65, 15, 53, 83, 65, 97, 93, 158, 65, 206, 129, 207, 64, 97, 93, 158, 65, 169, 199, 109, 65, 200, 40, 156, 65, 154, 92, 154, 64, 200, 40, 156, 65, 165, 0, 132, 65, 189, 21, 153, 65, 171, 210, 75, 64, 189, 21, 153, 65, 115, 226, 144, 65, 187, 39, 149, 65, 119, 136, 201, 63, 188, 39, 149, 65, 248, 122, 157, 65, 7, 99, 144, 65, 42, 136, 201, 191, 85, 158, 139, 65, 248, 122, 157, 65, 254, 122, 45, 65, 132, 210, 75, 192, 84, 176, 135, 65, 135, 92, 154, 192, 72, 157, 132, 65, 187, 129, 207, 192, 176, 104, 130, 65, 253, 142, 2, 193, 240, 20, 129, 65, 241, 122, 29, 193, 138, 163, 128, 65, 244, 122, 157, 193, 2, 123, 45, 65, 230, 102, 56, 193, 240, 20, 129, 65, 1, 53, 83, 193, 176, 104, 130, 65, 159, 199, 109, 193, 73, 157, 132, 65, 161, 0, 132, 193, 84, 176, 135, 65, 108, 226, 144, 193, 86, 158, 139, 65, 244, 122, 157, 193, 9, 99, 144, 65, 246, 122, 29, 65, 218, 5, 62, 64, 1, 143, 2, 65, 130, 122, 58, 64, 235, 102, 56, 65, 130, 122, 58, 64, 6, 53, 83, 65, 158, 220, 47, 64, 196, 129, 207, 64, 158, 220, 47, 64, 164, 199, 109, 65, 197, 55, 30, 64, 144, 92, 154, 64, 198, 55, 30, 64, 163, 0, 132, 65, 158, 159, 5, 64, 151, 210, 75, 64, 158, 159, 5, 64, 111, 226, 144, 65, 191, 94, 204, 63, 81, 136, 201, 63, 191, 94, 204, 63, 246, 122, 157, 65, 188, 19, 128, 63, 79, 136, 201, 191, 228, 34, 207, 62, 246, 122, 157, 65, 52, 145, 198, 192, 150, 210, 75, 192, 16, 124, 177, 189, 144, 92, 154, 192, 100, 32, 241, 190, 196, 129, 207, 192, 150, 35, 63, 191, 1, 143, 2, 193, 38, 155, 105, 191, 246, 122, 29, 193, 124, 200, 119, 191, 246, 122, 157, 193, 51, 145, 198, 192, 234, 102, 56, 193, 38, 155, 105, 191, 10, 53, 83, 193, 150, 35, 63, 191, 164, 199, 109, 193, 100, 32, 241, 190, 163, 0, 132, 193, 16, 124, 177, 189, 112, 226, 144, 193, 230, 34, 207, 62, 246, 122, 157, 193, 189, 19, 128, 63, 235, 102, 56, 65, 130, 122, 58, 64, 1, 143, 2, 65, 130, 122, 58, 64, 246, 122, 29, 65, 218, 5, 62, 64, 6, 53, 83, 65, 158, 220, 47, 64, 196, 129, 207, 64, 158, 220, 47, 64, 164, 199, 109, 65, 197, 55, 30, 64, 144, 92, 154, 64, 198, 55, 30, 64, 163, 0, 132, 65, 158, 159, 5, 64, 151, 210, 75, 64, 158, 159, 5, 64, 111, 226, 144, 65, 191, 94, 204, 63, 81, 136, 201, 63, 191, 94, 204, 63, 246, 122, 157, 65, 188, 19, 128, 63, 79, 136, 201, 191, 228, 34, 207, 62, 246, 122, 157, 65, 52, 145, 198, 192, 150, 210, 75, 192, 16, 124, 177, 189, 144, 92, 154, 192, 100, 32, 241, 190, 196, 129, 207, 192, 150, 35, 63, 191, 1, 143, 2, 193, 38, 155, 105, 191, 246, 122, 29, 193, 124, 200, 119, 191, 246, 122, 157, 193, 51, 145, 198, 192, 234, 102, 56, 193, 38, 155, 105, 191, 10, 53, 83, 193, 150, 35, 63, 191, 164, 199, 109, 193, 100, 32, 241, 190, 163, 0, 132, 193, 16, 124, 177, 189, 112, 226, 144, 193, 230, 34, 207, 62, 246, 122, 157, 193, 189, 19, 128, 63, 246, 122, 157, 65, 50, 72, 203, 193, 246, 122, 157, 65, 204, 218, 148, 65, 246, 122, 157, 193, 50, 72, 203, 193, 246, 122, 157, 193, 204, 218, 148, 65, 58, 249, 202, 193, 25, 86, 35, 192, 185, 250, 194, 193, 106, 3, 27, 193, 236, 53, 190, 193, 210, 127, 15, 192, 255, 73, 177, 193, 212, 106, 231, 191, 184, 67, 164, 193, 126, 44, 160, 191, 144, 49, 151, 193, 224, 36, 19, 191, 253, 63, 87, 65, 113, 40, 77, 65, 253, 33, 138, 193, 228, 21, 96, 62, 245, 70, 122, 193, 201, 34, 144, 63, 211, 136, 96, 193, 98, 38, 9, 64, 38, 38, 71, 193, 89, 248, 80, 64, 1, 59, 46, 193, 206, 155, 143, 64, 15, 227, 21, 193, 229, 198, 185, 64, 102, 114, 252, 192, 109, 206, 230, 64, 139, 236, 160, 192, 152, 25, 35, 65, 167, 49, 99, 192, 92, 157, 57, 65, 223, 209, 1, 192, 230, 178, 78, 65, 91, 42, 241, 190, 183, 66, 98, 65, 212, 202, 142, 63, 56, 55, 116, 65, 243, 93, 46, 64, 58, 62, 130, 65, 3, 41, 139, 64, 60, 128, 137, 65, 72, 103, 191, 64, 142, 217, 143, 65, 239, 175, 243, 64, 45, 67, 149, 65, 134, 228, 19, 65, 20, 183, 153, 65, 92, 188, 45, 65, 97, 48, 157, 65, 252, 66, 71, 65, 42, 171, 159, 65, 236, 53, 190, 193, 210, 127, 15, 192, 185, 250, 194, 193, 106, 3, 27, 193, 58, 249, 202, 193, 25, 86, 35, 192, 255, 73, 177, 193, 212, 106, 231, 191, 184, 67, 164, 193, 126, 44, 160, 191, 144, 49, 151, 193, 224, 36, 19, 191, 253, 63, 87, 65, 113, 40, 77, 65, 253, 33, 138, 193, 228, 21, 96, 62, 245, 70, 122, 193, 201, 34, 144, 63, 211, 136, 96, 193, 98, 38, 9, 64, 38, 38, 71, 193, 89, 248, 80, 64, 1, 59, 46, 193, 206, 155, 143, 64, 15, 227, 21, 193, 229, 198, 185, 64, 102, 114, 252, 192, 109, 206, 230, 64, 139, 236, 160, 192, 152, 25, 35, 65, 167, 49, 99, 192, 92, 157, 57, 65, 223, 209, 1, 192, 230, 178, 78, 65, 91, 42, 241, 190, 183, 66, 98, 65, 212, 202, 142, 63, 56, 55, 116, 65, 243, 93, 46, 64, 58, 62, 130, 65, 3, 41, 139, 64, 60, 128, 137, 65, 72, 103, 191, 64, 142, 217, 143, 65, 239, 175, 243, 64, 45, 67, 149, 65, 134, 228, 19, 65, 20, 183, 153, 65, 92, 188, 45, 65, 97, 48, 157, 65, 252, 66, 71, 65, 42, 171, 159, 65, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65), +"format": 4119, +"index_count": 18, +"index_data": PackedByteArray(240, 0, 238, 0, 239, 0, 243, 0, 241, 0, 242, 0, 246, 0, 244, 0, 245, 0, 245, 0, 247, 0, 246, 0, 250, 0, 248, 0, 249, 0, 249, 0, 251, 0, 250, 0), +"material": SubResource("StandardMaterial3D_7in0v"), +"name": "dirt", +"primitive": 3, +"vertex_count": 252, +"vertex_data": PackedByteArray(0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 154, 39, 102, 187, 0, 0, 0, 128, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 154, 39, 102, 187, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 154, 39, 102, 187, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 154, 39, 102, 187, 0, 0, 0, 128, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 154, 39, 102, 187, 0, 0, 0, 128, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 154, 39, 102, 187, 0, 0, 0, 128, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 154, 39, 102, 187, 0, 0, 0, 128, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 154, 39, 102, 187, 0, 0, 0, 128, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 154, 39, 102, 187, 0, 0, 0, 128, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 154, 39, 102, 187, 0, 0, 0, 128, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 154, 39, 102, 187, 0, 0, 0, 128, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 154, 39, 102, 187, 0, 0, 0, 128, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 154, 39, 102, 187, 0, 0, 0, 128, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 154, 39, 102, 187, 0, 0, 0, 128, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 154, 39, 102, 187, 0, 0, 0, 128, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 154, 39, 102, 187, 0, 0, 0, 128, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 154, 39, 102, 187, 0, 0, 0, 128, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 154, 39, 102, 187, 0, 0, 0, 128, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 154, 39, 102, 187, 0, 0, 0, 128, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 154, 39, 102, 187, 0, 0, 0, 128, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 154, 39, 102, 187, 0, 0, 0, 128, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 154, 39, 102, 187, 0, 0, 0, 128, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 154, 39, 102, 187, 0, 0, 0, 128, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 154, 39, 102, 187, 0, 0, 0, 128, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 154, 39, 102, 187, 0, 0, 0, 128, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 154, 39, 102, 187, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 154, 39, 102, 187, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 151, 196, 101, 88, 0, 0, 0, 128, 141, 93, 25, 191, 203, 228, 157, 62, 57, 134, 235, 62, 151, 196, 101, 88, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 0, 0, 0, 63, 151, 196, 101, 88, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 151, 196, 101, 88, 0, 0, 0, 128, 103, 246, 26, 191, 9, 228, 141, 62, 79, 149, 214, 62, 151, 196, 101, 88, 0, 0, 0, 128, 62, 54, 28, 191, 71, 207, 125, 62, 120, 68, 193, 62, 151, 196, 101, 88, 0, 0, 0, 128, 179, 27, 29, 191, 105, 0, 98, 62, 80, 171, 171, 62, 151, 196, 101, 88, 0, 0, 0, 128, 197, 165, 29, 191, 81, 122, 72, 62, 200, 225, 149, 62, 151, 196, 101, 88, 0, 0, 0, 128, 221, 211, 29, 191, 49, 89, 49, 62, 0, 0, 128, 62, 151, 196, 101, 88, 0, 0, 0, 128, 197, 165, 29, 191, 193, 182, 28, 62, 111, 60, 84, 62, 151, 196, 101, 88, 0, 0, 0, 128, 179, 27, 29, 191, 200, 169, 10, 62, 95, 169, 40, 62, 151, 196, 101, 88, 0, 0, 0, 128, 62, 54, 28, 191, 173, 140, 246, 61, 32, 238, 250, 61, 151, 196, 101, 88, 0, 0, 0, 128, 103, 246, 26, 191, 230, 58, 221, 61, 194, 170, 165, 61, 151, 196, 101, 88, 0, 0, 0, 128, 96, 125, 21, 191, 43, 71, 173, 61, 59, 206, 35, 189, 151, 196, 101, 88, 0, 0, 0, 128, 118, 109, 23, 191, 189, 96, 187, 61, 152, 221, 143, 170, 151, 196, 101, 88, 0, 0, 0, 128, 141, 93, 25, 191, 78, 122, 201, 61, 59, 206, 35, 61, 151, 196, 101, 88, 0, 0, 0, 128, 134, 228, 19, 191, 142, 134, 153, 61, 194, 170, 165, 189, 151, 196, 101, 88, 0, 0, 0, 128, 173, 164, 18, 191, 198, 52, 128, 61, 32, 238, 250, 189, 151, 196, 101, 88, 0, 0, 0, 128, 57, 191, 17, 191, 197, 219, 66, 61, 95, 169, 40, 190, 151, 196, 101, 88, 0, 0, 0, 128, 38, 53, 17, 191, 243, 79, 245, 60, 111, 60, 84, 190, 151, 196, 101, 88, 0, 0, 0, 128, 16, 7, 17, 191, 149, 120, 32, 60, 0, 0, 128, 190, 151, 196, 101, 88, 0, 0, 0, 128, 38, 53, 17, 191, 16, 153, 81, 188, 200, 225, 149, 190, 151, 196, 101, 88, 0, 0, 0, 128, 57, 191, 17, 191, 191, 126, 26, 189, 77, 171, 171, 190, 151, 196, 101, 88, 0, 0, 0, 128, 173, 164, 18, 191, 24, 221, 132, 189, 120, 68, 193, 190, 151, 196, 101, 88, 0, 0, 0, 128, 134, 228, 19, 191, 172, 206, 192, 189, 79, 149, 214, 190, 151, 196, 101, 88, 0, 0, 0, 128, 96, 125, 21, 191, 219, 104, 0, 190, 53, 134, 235, 190, 151, 196, 101, 88, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 151, 196, 101, 88, 0, 0, 0, 128, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 37, 209, 255, 255, 0, 0, 0, 128, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 37, 209, 255, 255, 0, 0, 0, 128, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 37, 209, 255, 255, 0, 0, 0, 128, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 37, 209, 255, 255, 0, 0, 0, 128, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 200, 225, 149, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 190, 119, 103, 77, 190, 202, 165, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 207, 166, 78, 190, 221, 211, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 80, 171, 171, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 190, 230, 170, 73, 190, 181, 27, 29, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 190, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 189, 46, 117, 67, 190, 68, 54, 28, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 190, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 189, 57, 205, 58, 190, 98, 246, 26, 191, 255, 127, 37, 81, 0, 0, 0, 128, 57, 134, 235, 190, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 189, 161, 188, 47, 190, 146, 93, 25, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 59, 206, 35, 61, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 194, 170, 165, 61, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 32, 238, 250, 61, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 95, 169, 40, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 111, 60, 84, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 235, 189, 16, 7, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 200, 225, 149, 62, 140, 111, 238, 189, 34, 53, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 77, 171, 171, 62, 185, 232, 245, 189, 56, 191, 17, 191, 255, 127, 37, 81, 0, 0, 0, 128, 120, 68, 193, 62, 22, 42, 1, 190, 169, 164, 18, 191, 255, 127, 37, 81, 0, 0, 0, 128, 79, 149, 214, 62, 10, 210, 9, 190, 139, 228, 19, 191, 255, 127, 37, 81, 0, 0, 0, 128, 53, 134, 235, 62, 163, 226, 20, 190, 91, 125, 21, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 255, 127, 217, 174, 0, 0, 0, 128, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 255, 127, 217, 174, 0, 0, 0, 128, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 255, 127, 217, 174, 0, 0, 0, 128, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 255, 127, 217, 174, 0, 0, 0, 128, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 200, 225, 149, 62, 68, 76, 153, 62, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 62, 68, 76, 153, 62, 197, 165, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 152, 172, 152, 62, 221, 211, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 77, 171, 171, 62, 140, 42, 155, 62, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 62, 140, 42, 155, 62, 179, 27, 29, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 62, 105, 69, 158, 62, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 61, 105, 69, 158, 62, 62, 54, 28, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 62, 99, 153, 162, 62, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 61, 99, 153, 162, 62, 103, 246, 26, 63, 37, 209, 0, 0, 0, 0, 0, 128, 53, 134, 235, 62, 175, 33, 168, 62, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 61, 175, 33, 168, 62, 141, 93, 25, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 59, 206, 35, 189, 174, 142, 181, 62, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 194, 170, 165, 189, 251, 22, 187, 62, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 32, 238, 250, 189, 245, 106, 191, 62, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 95, 169, 40, 190, 209, 133, 194, 62, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 111, 60, 84, 190, 25, 100, 196, 62, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 197, 3, 197, 62, 16, 7, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 200, 225, 149, 190, 25, 100, 196, 62, 38, 53, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 80, 171, 171, 190, 209, 133, 194, 62, 57, 191, 17, 63, 37, 209, 0, 0, 0, 0, 0, 128, 120, 68, 193, 190, 245, 106, 191, 62, 173, 164, 18, 63, 37, 209, 0, 0, 0, 0, 0, 128, 79, 149, 214, 190, 251, 22, 187, 62, 134, 228, 19, 63, 37, 209, 0, 0, 0, 0, 0, 128, 57, 134, 235, 190, 174, 142, 181, 62, 96, 125, 21, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 47, 216, 174, 62, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 169, 170, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 169, 170, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 169, 170, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 169, 170, 255, 255, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 100, 216, 102, 187, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 100, 216, 102, 187, 0, 0, 0, 128, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 100, 216, 102, 187, 0, 0, 0, 128, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 100, 216, 102, 187, 0, 0, 0, 128, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 100, 216, 102, 187, 0, 0, 0, 128, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 100, 216, 102, 187, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 100, 216, 102, 187, 0, 0, 0, 128, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 100, 216, 102, 187, 0, 0, 0, 128, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 100, 216, 102, 187, 0, 0, 0, 128, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 100, 216, 102, 187, 0, 0, 0, 128, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 100, 216, 102, 187, 0, 0, 0, 128, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 100, 216, 102, 187, 0, 0, 0, 128, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 100, 216, 102, 187, 0, 0, 0, 128, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 100, 216, 102, 187, 0, 0, 0, 128, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 100, 216, 102, 187, 0, 0, 0, 128, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 100, 216, 102, 187, 0, 0, 0, 128, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 100, 216, 102, 187, 0, 0, 0, 128, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 100, 216, 102, 187, 0, 0, 0, 128, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 100, 216, 102, 187, 0, 0, 0, 128, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 100, 216, 102, 187, 0, 0, 0, 128, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 100, 216, 102, 187, 0, 0, 0, 128, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 100, 216, 102, 187, 0, 0, 0, 128, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 100, 216, 102, 187, 0, 0, 0, 128, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 100, 216, 102, 187, 0, 0, 0, 128, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 100, 216, 102, 187, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 100, 216, 102, 187, 0, 0, 0, 128, 91, 125, 21, 63, 203, 81, 171, 62, 57, 134, 235, 62, 103, 59, 101, 88, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 103, 59, 101, 88, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 0, 0, 0, 63, 103, 59, 101, 88, 0, 0, 0, 128, 139, 228, 19, 63, 164, 97, 166, 62, 79, 149, 214, 62, 103, 59, 101, 88, 0, 0, 0, 128, 169, 164, 18, 63, 51, 13, 160, 62, 120, 68, 193, 62, 103, 59, 101, 88, 0, 0, 0, 128, 56, 191, 17, 63, 121, 91, 152, 62, 80, 171, 171, 62, 103, 59, 101, 88, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 103, 59, 101, 88, 0, 0, 0, 128, 34, 53, 17, 63, 253, 84, 143, 62, 200, 225, 149, 62, 103, 59, 101, 88, 0, 0, 0, 128, 16, 7, 17, 63, 197, 3, 133, 62, 0, 0, 128, 62, 103, 59, 101, 88, 0, 0, 0, 128, 34, 53, 17, 63, 107, 230, 114, 62, 111, 60, 84, 62, 103, 59, 101, 88, 0, 0, 0, 128, 56, 191, 17, 63, 82, 96, 89, 62, 95, 169, 40, 62, 103, 59, 101, 88, 0, 0, 0, 128, 169, 164, 18, 63, 117, 145, 61, 62, 32, 238, 250, 61, 103, 59, 101, 88, 0, 0, 0, 128, 139, 228, 19, 63, 169, 152, 31, 62, 194, 170, 165, 61, 103, 59, 101, 88, 0, 0, 0, 128, 91, 125, 21, 63, 73, 46, 255, 61, 59, 206, 35, 61, 103, 59, 101, 88, 0, 0, 0, 128, 146, 93, 25, 63, 94, 38, 111, 61, 59, 206, 35, 189, 103, 59, 101, 88, 0, 0, 0, 128, 98, 246, 26, 63, 151, 64, 222, 60, 194, 170, 165, 189, 103, 59, 101, 88, 0, 0, 0, 128, 68, 54, 28, 63, 216, 45, 12, 187, 32, 238, 250, 189, 103, 59, 101, 88, 0, 0, 0, 128, 181, 27, 29, 63, 156, 252, 239, 188, 95, 169, 40, 190, 103, 59, 101, 88, 0, 0, 0, 128, 202, 165, 29, 63, 203, 22, 94, 189, 111, 60, 84, 190, 103, 59, 101, 88, 0, 0, 0, 128, 221, 211, 29, 63, 153, 77, 157, 189, 0, 0, 128, 190, 103, 59, 101, 88, 0, 0, 0, 128, 202, 165, 29, 63, 131, 146, 198, 189, 200, 225, 149, 190, 103, 59, 101, 88, 0, 0, 0, 128, 181, 27, 29, 63, 110, 172, 234, 189, 77, 171, 171, 190, 103, 59, 101, 88, 0, 0, 0, 128, 68, 54, 28, 63, 163, 185, 4, 190, 120, 68, 193, 190, 103, 59, 101, 88, 0, 0, 0, 128, 98, 246, 26, 63, 141, 98, 17, 190, 79, 149, 214, 190, 103, 59, 101, 88, 0, 0, 0, 128, 146, 93, 25, 63, 218, 66, 27, 190, 53, 134, 235, 190, 103, 59, 101, 88, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 103, 59, 101, 88, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 255, 255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_saeal") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_yn5ad"] +data = PackedVector3Array(-0.5, 0.5, 0.5, -0.5, 0.3415, 0.5915, -0.5915, 0.3415, 0.5, -0.5, 0.3415, 0.5915, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.5, 0.5, -0.1585, -0.5915, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, 0.5, 0.5, 0.5, 0.5915, 0.3415, 0.5, 0.5, 0.3415, 0.5915, 0.5915, 0.3415, 0.5, 0.5, 0.5, 0.5, 0.5, 0.3415, 0.5915, -0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.5, -0.1585, -0.5915, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, -0.5, 0.5, 0.5, -0.5915, 0.3415, 0.5, -0.5991, 0.3084, 0.46, -0.5991, 0.3084, 0.46, -0.5, 0, -0.5, -0.5, 0.5, 0.5, -0.5991, 0.3084, 0.46, -0.6053, 0.2771, 0.4191, -0.5, 0, -0.5, -0.6053, 0.2771, 0.4191, -0.6102, 0.2479, 0.3775, -0.5, 0, -0.5, -0.6102, 0.2479, 0.3775, -0.6137, 0.2207, 0.3353, -0.5, 0, -0.5, -0.6137, 0.2207, 0.3353, -0.6158, 0.1958, 0.2927, -0.5, 0, -0.5, -0.6158, 0.1958, 0.2927, -0.6165, 0.1732, 0.25, -0.5, 0, -0.5, -0.6165, 0.1732, 0.25, -0.6158, 0.153, 0.2073, -0.5, 0, -0.5, -0.6158, 0.153, 0.2073, -0.6137, 0.1354, 0.1647, -0.5, 0, -0.5, -0.6137, 0.1354, 0.1647, -0.6102, 0.1204, 0.1225, -0.5, 0, -0.5, -0.6102, 0.1204, 0.1225, -0.6053, 0.108, 0.0809, -0.5, 0, -0.5, -0.6053, 0.108, 0.0809, -0.5839, 0.0846, -0.04, -0.5, 0, -0.5, -0.6053, 0.108, 0.0809, -0.5915, 0.0915, 0, -0.5839, 0.0846, -0.04, -0.6053, 0.108, 0.0809, -0.5991, 0.0984, 0.04, -0.5915, 0.0915, 0, -0.5839, 0.0846, -0.04, -0.5777, 0.075, -0.0809, -0.5, 0, -0.5, -0.5777, 0.075, -0.0809, -0.5728, 0.0626, -0.1225, -0.5, 0, -0.5, -0.5728, 0.0626, -0.1225, -0.5693, 0.0476, -0.1647, -0.5, 0, -0.5, -0.5693, 0.0476, -0.1647, -0.5672, 0.0299, -0.2073, -0.5, 0, -0.5, -0.5672, 0.0299, -0.2073, -0.5665, 0.0098, -0.25, -0.5, 0, -0.5, -0.5665, 0.0098, -0.25, -0.5672, -0.0128, -0.2927, -0.5, 0, -0.5, -0.5672, -0.0128, -0.2927, -0.5693, -0.0377, -0.3353, -0.5, 0, -0.5, -0.5693, -0.0377, -0.3353, -0.5728, -0.0649, -0.3775, -0.5, 0, -0.5, -0.5728, -0.0649, -0.3775, -0.5777, -0.0941, -0.4191, -0.5, 0, -0.5, -0.5777, -0.0941, -0.4191, -0.5839, -0.1254, -0.46, -0.5, 0, -0.5, -0.5839, -0.1254, -0.46, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5915, 0.3415, 0.5, -0.5, 0.5, 0.5, -0.5991, 0.3084, 0.46, -0.5, 0, -0.5, -0.5991, 0.3084, 0.46, -0.5, 0.5, 0.5, -0.6053, 0.2771, 0.4191, -0.5991, 0.3084, 0.46, -0.5, 0, -0.5, -0.6102, 0.2479, 0.3775, -0.6053, 0.2771, 0.4191, -0.5, 0, -0.5, -0.6137, 0.2207, 0.3353, -0.6102, 0.2479, 0.3775, -0.5, 0, -0.5, -0.6158, 0.1958, 0.2927, -0.6137, 0.2207, 0.3353, -0.5, 0, -0.5, -0.6165, 0.1732, 0.25, -0.6158, 0.1958, 0.2927, -0.5, 0, -0.5, -0.6158, 0.153, 0.2073, -0.6165, 0.1732, 0.25, -0.5, 0, -0.5, -0.6137, 0.1354, 0.1647, -0.6158, 0.153, 0.2073, -0.5, 0, -0.5, -0.6102, 0.1204, 0.1225, -0.6137, 0.1354, 0.1647, -0.5, 0, -0.5, -0.6053, 0.108, 0.0809, -0.6102, 0.1204, 0.1225, -0.5, 0, -0.5, -0.5839, 0.0846, -0.04, -0.6053, 0.108, 0.0809, -0.5, 0, -0.5, -0.5915, 0.0915, 0, -0.6053, 0.108, 0.0809, -0.5839, 0.0846, -0.04, -0.5991, 0.0984, 0.04, -0.6053, 0.108, 0.0809, -0.5915, 0.0915, 0, -0.5777, 0.075, -0.0809, -0.5839, 0.0846, -0.04, -0.5, 0, -0.5, -0.5728, 0.0626, -0.1225, -0.5777, 0.075, -0.0809, -0.5, 0, -0.5, -0.5693, 0.0476, -0.1647, -0.5728, 0.0626, -0.1225, -0.5, 0, -0.5, -0.5672, 0.0299, -0.2073, -0.5693, 0.0476, -0.1647, -0.5, 0, -0.5, -0.5665, 0.0098, -0.25, -0.5672, 0.0299, -0.2073, -0.5, 0, -0.5, -0.5672, -0.0128, -0.2927, -0.5665, 0.0098, -0.25, -0.5, 0, -0.5, -0.5693, -0.0377, -0.3353, -0.5672, -0.0128, -0.2927, -0.5, 0, -0.5, -0.5728, -0.0649, -0.3775, -0.5693, -0.0377, -0.3353, -0.5, 0, -0.5, -0.5777, -0.0941, -0.4191, -0.5728, -0.0649, -0.3775, -0.5, 0, -0.5, -0.5839, -0.1254, -0.46, -0.5777, -0.0941, -0.4191, -0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.5839, -0.1254, -0.46, -0.5, 0, -0.5, -0.2927, -0.2006, -0.6158, -0.25, -0.2018, -0.6165, -0.2073, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.2927, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.1647, -0.1969, -0.6137, -0.3353, -0.1969, -0.6137, -0.1647, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.3353, -0.1969, -0.6137, -0.1647, -0.1969, -0.6137, -0.1225, -0.1909, -0.6102, -0.3775, -0.1909, -0.6102, -0.1225, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.3775, -0.1909, -0.6102, -0.1225, -0.1909, -0.6102, -0.0809, -0.1824, -0.6053, -0.4191, -0.1824, -0.6053, -0.0809, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.4191, -0.1824, -0.6053, -0.0809, -0.1824, -0.6053, -0.04, -0.1716, -0.5991, -0.46, -0.1716, -0.5991, -0.04, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.46, -0.1716, -0.5991, -0.04, -0.1716, -0.5991, 0.04, -0.1454, -0.5839, -0.5, -0.1585, -0.5915, 0.04, -0.1454, -0.5839, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, 0.04, -0.1454, -0.5839, 0.0809, -0.1346, -0.5777, -0.5, 0, -0.5, 0.0809, -0.1346, -0.5777, 0.1225, -0.1261, -0.5728, -0.5, 0, -0.5, 0.1225, -0.1261, -0.5728, 0.1647, -0.1201, -0.5693, -0.5, 0, -0.5, 0.1647, -0.1201, -0.5693, 0.2073, -0.1164, -0.5672, -0.5, 0, -0.5, 0.2073, -0.1164, -0.5672, 0.25, -0.1152, -0.5665, -0.5, 0, -0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.2927, -0.1164, -0.5672, 0.5, 0, -0.5, 0.2927, -0.1164, -0.5672, 0.3353, -0.1201, -0.5693, 0.5, 0, -0.5, 0.3353, -0.1201, -0.5693, 0.3775, -0.1261, -0.5728, 0.5, 0, -0.5, 0.3775, -0.1261, -0.5728, 0.4191, -0.1346, -0.5777, 0.5, 0, -0.5, 0.4191, -0.1346, -0.5777, 0.46, -0.1454, -0.5839, 0.46, -0.1454, -0.5839, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, -0.25, -0.2018, -0.6165, -0.2927, -0.2006, -0.6158, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.2073, -0.2006, -0.6158, -0.2927, -0.2006, -0.6158, -0.1647, -0.1969, -0.6137, -0.2073, -0.2006, -0.6158, -0.3353, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.1647, -0.1969, -0.6137, -0.3353, -0.1969, -0.6137, -0.1225, -0.1909, -0.6102, -0.1647, -0.1969, -0.6137, -0.3775, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.1225, -0.1909, -0.6102, -0.3775, -0.1909, -0.6102, -0.0809, -0.1824, -0.6053, -0.1225, -0.1909, -0.6102, -0.4191, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.0809, -0.1824, -0.6053, -0.4191, -0.1824, -0.6053, -0.04, -0.1716, -0.5991, -0.0809, -0.1824, -0.6053, -0.46, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.04, -0.1716, -0.5991, -0.46, -0.1716, -0.5991, 0.04, -0.1454, -0.5839, -0.04, -0.1716, -0.5991, -0.5, -0.1585, -0.5915, -0.5, 0, -0.5, 0.04, -0.1454, -0.5839, -0.5, -0.1585, -0.5915, 0.0809, -0.1346, -0.5777, 0.04, -0.1454, -0.5839, -0.5, 0, -0.5, 0.1225, -0.1261, -0.5728, 0.0809, -0.1346, -0.5777, -0.5, 0, -0.5, 0.1647, -0.1201, -0.5693, 0.1225, -0.1261, -0.5728, -0.5, 0, -0.5, 0.2073, -0.1164, -0.5672, 0.1647, -0.1201, -0.5693, -0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.2073, -0.1164, -0.5672, -0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.25, -0.1152, -0.5665, 0.25, -0.1152, -0.5665, 0.5, 0, -0.5, 0.2927, -0.1164, -0.5672, 0.2927, -0.1164, -0.5672, 0.5, 0, -0.5, 0.3353, -0.1201, -0.5693, 0.3353, -0.1201, -0.5693, 0.5, 0, -0.5, 0.3775, -0.1261, -0.5728, 0.3775, -0.1261, -0.5728, 0.5, 0, -0.5, 0.4191, -0.1346, -0.5777, 0.4191, -0.1346, -0.5777, 0.5, 0, -0.5, 0.46, -0.1454, -0.5839, 0.5, -0.1585, -0.5915, 0.46, -0.1454, -0.5839, 0.5, 0, -0.5, 0.2927, 0.2994, 0.6158, 0.25, 0.2982, 0.6165, 0.2073, 0.2994, 0.6158, 0.2073, 0.2994, 0.6158, 0.3353, 0.3031, 0.6137, 0.2927, 0.2994, 0.6158, 0.2073, 0.2994, 0.6158, 0.1647, 0.3031, 0.6137, 0.3353, 0.3031, 0.6137, 0.1647, 0.3031, 0.6137, 0.3775, 0.3091, 0.6102, 0.3353, 0.3031, 0.6137, 0.1647, 0.3031, 0.6137, 0.1225, 0.3091, 0.6102, 0.3775, 0.3091, 0.6102, 0.1225, 0.3091, 0.6102, 0.4191, 0.3176, 0.6053, 0.3775, 0.3091, 0.6102, 0.1225, 0.3091, 0.6102, 0.0809, 0.3176, 0.6053, 0.4191, 0.3176, 0.6053, 0.0809, 0.3176, 0.6053, 0.46, 0.3284, 0.5991, 0.4191, 0.3176, 0.6053, 0.0809, 0.3176, 0.6053, 0.04, 0.3284, 0.5991, 0.46, 0.3284, 0.5991, 0.04, 0.3284, 0.5991, 0.5, 0.3415, 0.5915, 0.46, 0.3284, 0.5991, 0.04, 0.3284, 0.5991, -0.04, 0.3546, 0.5839, 0.5, 0.3415, 0.5915, -0.04, 0.3546, 0.5839, 0.5, 0.5, 0.5, 0.5, 0.3415, 0.5915, -0.04, 0.3546, 0.5839, -0.0809, 0.3654, 0.5777, 0.5, 0.5, 0.5, -0.0809, 0.3654, 0.5777, -0.1225, 0.3739, 0.5728, 0.5, 0.5, 0.5, -0.1225, 0.3739, 0.5728, -0.1647, 0.3799, 0.5693, 0.5, 0.5, 0.5, -0.1647, 0.3799, 0.5693, -0.2073, 0.3836, 0.5672, 0.5, 0.5, 0.5, -0.2073, 0.3836, 0.5672, -0.25, 0.3848, 0.5665, 0.5, 0.5, 0.5, -0.5, 0.5, 0.5, 0.5, 0.5, 0.5, -0.25, 0.3848, 0.5665, -0.5, 0.5, 0.5, -0.25, 0.3848, 0.5665, -0.2927, 0.3836, 0.5672, -0.5, 0.5, 0.5, -0.2927, 0.3836, 0.5672, -0.3353, 0.3799, 0.5693, -0.5, 0.5, 0.5, -0.3353, 0.3799, 0.5693, -0.3775, 0.3739, 0.5728, -0.5, 0.5, 0.5, -0.3775, 0.3739, 0.5728, -0.4191, 0.3654, 0.5777, -0.5, 0.5, 0.5, -0.4191, 0.3654, 0.5777, -0.46, 0.3546, 0.5839, -0.46, 0.3546, 0.5839, -0.5, 0.3415, 0.5915, -0.5, 0.5, 0.5, 0.25, 0.2982, 0.6165, 0.2927, 0.2994, 0.6158, 0.2073, 0.2994, 0.6158, 0.3353, 0.3031, 0.6137, 0.2073, 0.2994, 0.6158, 0.2927, 0.2994, 0.6158, 0.1647, 0.3031, 0.6137, 0.2073, 0.2994, 0.6158, 0.3353, 0.3031, 0.6137, 0.3775, 0.3091, 0.6102, 0.1647, 0.3031, 0.6137, 0.3353, 0.3031, 0.6137, 0.1225, 0.3091, 0.6102, 0.1647, 0.3031, 0.6137, 0.3775, 0.3091, 0.6102, 0.4191, 0.3176, 0.6053, 0.1225, 0.3091, 0.6102, 0.3775, 0.3091, 0.6102, 0.0809, 0.3176, 0.6053, 0.1225, 0.3091, 0.6102, 0.4191, 0.3176, 0.6053, 0.46, 0.3284, 0.5991, 0.0809, 0.3176, 0.6053, 0.4191, 0.3176, 0.6053, 0.04, 0.3284, 0.5991, 0.0809, 0.3176, 0.6053, 0.46, 0.3284, 0.5991, 0.5, 0.3415, 0.5915, 0.04, 0.3284, 0.5991, 0.46, 0.3284, 0.5991, -0.04, 0.3546, 0.5839, 0.04, 0.3284, 0.5991, 0.5, 0.3415, 0.5915, 0.5, 0.5, 0.5, -0.04, 0.3546, 0.5839, 0.5, 0.3415, 0.5915, -0.0809, 0.3654, 0.5777, -0.04, 0.3546, 0.5839, 0.5, 0.5, 0.5, -0.1225, 0.3739, 0.5728, -0.0809, 0.3654, 0.5777, 0.5, 0.5, 0.5, -0.1647, 0.3799, 0.5693, -0.1225, 0.3739, 0.5728, 0.5, 0.5, 0.5, -0.2073, 0.3836, 0.5672, -0.1647, 0.3799, 0.5693, 0.5, 0.5, 0.5, -0.25, 0.3848, 0.5665, -0.2073, 0.3836, 0.5672, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, -0.5, 0.5, 0.5, -0.25, 0.3848, 0.5665, -0.25, 0.3848, 0.5665, -0.5, 0.5, 0.5, -0.2927, 0.3836, 0.5672, -0.2927, 0.3836, 0.5672, -0.5, 0.5, 0.5, -0.3353, 0.3799, 0.5693, -0.3353, 0.3799, 0.5693, -0.5, 0.5, 0.5, -0.3775, 0.3739, 0.5728, -0.3775, 0.3739, 0.5728, -0.5, 0.5, 0.5, -0.4191, 0.3654, 0.5777, -0.4191, 0.3654, 0.5777, -0.5, 0.5, 0.5, -0.46, 0.3546, 0.5839, -0.5, 0.3415, 0.5915, -0.46, 0.3546, 0.5839, -0.5, 0.5, 0.5, 0.5, 0.5, 0.5, -0.5, 0.5, 0.5, -0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 0.5, 0.5, 0.5839, 0.3346, 0.46, 0.5915, 0.3415, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5777, 0.325, 0.4191, 0.5839, 0.3346, 0.46, 0.5, 0.5, 0.5, 0.5728, 0.3126, 0.3775, 0.5777, 0.325, 0.4191, 0.5, 0.5, 0.5, 0.5693, 0.2976, 0.3353, 0.5728, 0.3126, 0.3775, 0.5, 0.5, 0.5, 0.5, 0, -0.5, 0.5693, 0.2976, 0.3353, 0.5, 0, -0.5, 0.5672, 0.2799, 0.2927, 0.5693, 0.2976, 0.3353, 0.5, 0, -0.5, 0.5665, 0.2598, 0.25, 0.5672, 0.2799, 0.2927, 0.5, 0, -0.5, 0.5672, 0.2372, 0.2073, 0.5665, 0.2598, 0.25, 0.5, 0, -0.5, 0.5693, 0.2123, 0.1647, 0.5672, 0.2372, 0.2073, 0.5, 0, -0.5, 0.5728, 0.1851, 0.1225, 0.5693, 0.2123, 0.1647, 0.5, 0, -0.5, 0.5777, 0.1559, 0.0809, 0.5728, 0.1851, 0.1225, 0.5, 0, -0.5, 0.5839, 0.1246, 0.04, 0.5777, 0.1559, 0.0809, 0.5, 0, -0.5, 0.5991, 0.0584, -0.04, 0.5839, 0.1246, 0.04, 0.5, 0, -0.5, 0.6053, 0.0271, -0.0809, 0.5991, 0.0584, -0.04, 0.5, 0, -0.5, 0.6102, -0.0021, -0.1225, 0.6053, 0.0271, -0.0809, 0.5, 0, -0.5, 0.6137, -0.0293, -0.1647, 0.6102, -0.0021, -0.1225, 0.5, 0, -0.5, 0.6158, -0.0542, -0.2073, 0.6137, -0.0293, -0.1647, 0.5, 0, -0.5, 0.6165, -0.0768, -0.25, 0.6158, -0.0542, -0.2073, 0.5, 0, -0.5, 0.6158, -0.097, -0.2927, 0.6165, -0.0768, -0.25, 0.5, 0, -0.5, 0.6137, -0.1146, -0.3353, 0.6158, -0.097, -0.2927, 0.5, 0, -0.5, 0.6102, -0.1296, -0.3775, 0.6137, -0.1146, -0.3353, 0.5, 0, -0.5, 0.6053, -0.142, -0.4191, 0.6102, -0.1296, -0.3775, 0.5, 0, -0.5, 0.5991, -0.1516, -0.46, 0.6053, -0.142, -0.4191, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.5991, -0.1516, -0.46, 0.5915, 0.3415, 0.5, 0.5839, 0.3346, 0.46, 0.5, 0.5, 0.5, 0.5777, 0.325, 0.4191, 0.5, 0.5, 0.5, 0.5839, 0.3346, 0.46, 0.5728, 0.3126, 0.3775, 0.5, 0.5, 0.5, 0.5777, 0.325, 0.4191, 0.5693, 0.2976, 0.3353, 0.5, 0.5, 0.5, 0.5728, 0.3126, 0.3775, 0.5, 0, -0.5, 0.5, 0.5, 0.5, 0.5693, 0.2976, 0.3353, 0.5672, 0.2799, 0.2927, 0.5, 0, -0.5, 0.5693, 0.2976, 0.3353, 0.5665, 0.2598, 0.25, 0.5, 0, -0.5, 0.5672, 0.2799, 0.2927, 0.5672, 0.2372, 0.2073, 0.5, 0, -0.5, 0.5665, 0.2598, 0.25, 0.5693, 0.2123, 0.1647, 0.5, 0, -0.5, 0.5672, 0.2372, 0.2073, 0.5728, 0.1851, 0.1225, 0.5, 0, -0.5, 0.5693, 0.2123, 0.1647, 0.5777, 0.1559, 0.0809, 0.5, 0, -0.5, 0.5728, 0.1851, 0.1225, 0.5839, 0.1246, 0.04, 0.5, 0, -0.5, 0.5777, 0.1559, 0.0809, 0.5991, 0.0584, -0.04, 0.5, 0, -0.5, 0.5839, 0.1246, 0.04, 0.6053, 0.0271, -0.0809, 0.5, 0, -0.5, 0.5991, 0.0584, -0.04, 0.6102, -0.0021, -0.1225, 0.5, 0, -0.5, 0.6053, 0.0271, -0.0809, 0.6137, -0.0293, -0.1647, 0.5, 0, -0.5, 0.6102, -0.0021, -0.1225, 0.6158, -0.0542, -0.2073, 0.5, 0, -0.5, 0.6137, -0.0293, -0.1647, 0.6165, -0.0768, -0.25, 0.5, 0, -0.5, 0.6158, -0.0542, -0.2073, 0.6158, -0.097, -0.2927, 0.5, 0, -0.5, 0.6165, -0.0768, -0.25, 0.6137, -0.1146, -0.3353, 0.5, 0, -0.5, 0.6158, -0.097, -0.2927, 0.6102, -0.1296, -0.3775, 0.5, 0, -0.5, 0.6137, -0.1146, -0.3353, 0.6053, -0.142, -0.4191, 0.5, 0, -0.5, 0.6102, -0.1296, -0.3775, 0.5991, -0.1516, -0.46, 0.5, 0, -0.5, 0.6053, -0.142, -0.4191, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.5991, -0.1516, -0.46, -0.5, 0, -0.5, -0.5, 0.5, 0.5, -0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_quxi2"] +resource_name = "rock" +vertex_color_use_as_albedo = true +albedo_color = Color(0.666667, 0.686274, 0.756863, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_um815"] +resource_name = "_defaultMat" +vertex_color_use_as_albedo = true +albedo_color = Color(1, 1, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_xeoxy"] +_surfaces = [{ +"aabb": AABB(-0.326549, 0, -0.331152, 0.653099, 0.4, 0.662304), +"format": 4097, +"index_count": 297, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 22, 0, 21, 0, 14, 0, 14, 0, 13, 0, 22, 0, 13, 0, 23, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 4, 0, 28, 0, 22, 0, 22, 0, 23, 0, 4, 0, 23, 0, 5, 0, 4, 0, 31, 0, 29, 0, 30, 0, 30, 0, 15, 0, 31, 0, 30, 0, 16, 0, 15, 0, 25, 0, 32, 0, 33, 0, 33, 0, 34, 0, 25, 0, 34, 0, 27, 0, 25, 0, 34, 0, 9, 0, 27, 0, 34, 0, 10, 0, 9, 0, 37, 0, 35, 0, 36, 0, 36, 0, 1, 0, 37, 0, 1, 0, 0, 0, 37, 0, 19, 0, 38, 0, 29, 0, 29, 0, 31, 0, 19, 0, 31, 0, 20, 0, 19, 0, 41, 0, 39, 0, 40, 0, 40, 0, 42, 0, 41, 0, 43, 0, 28, 0, 4, 0, 4, 0, 44, 0, 43, 0, 4, 0, 3, 0, 44, 0, 44, 0, 42, 0, 40, 0, 40, 0, 2, 0, 44, 0, 2, 0, 43, 0, 44, 0, 2, 0, 1, 0, 43, 0, 1, 0, 36, 0, 43, 0, 46, 0, 45, 0, 39, 0, 34, 0, 46, 0, 39, 0, 10, 0, 34, 0, 39, 0, 11, 0, 10, 0, 39, 0, 39, 0, 41, 0, 11, 0, 33, 0, 32, 0, 38, 0, 38, 0, 19, 0, 33, 0, 19, 0, 18, 0, 33, 0, 8, 0, 7, 0, 47, 0, 47, 0, 35, 0, 8, 0, 35, 0, 37, 0, 8, 0, 20, 0, 31, 0, 15, 0, 15, 0, 17, 0, 20, 0, 17, 0, 46, 0, 20, 0, 46, 0, 18, 0, 20, 0, 46, 0, 34, 0, 18, 0, 34, 0, 33, 0, 18, 0, 11, 0, 41, 0, 42, 0, 42, 0, 9, 0, 11, 0, 5, 0, 9, 0, 42, 0, 3, 0, 5, 0, 42, 0, 42, 0, 44, 0, 3, 0, 5, 0, 26, 0, 9, 0, 26, 0, 27, 0, 9, 0, 5, 0, 12, 0, 26, 0, 5, 0, 23, 0, 12, 0, 23, 0, 13, 0, 12, 0, 35, 0, 47, 0, 48, 0, 38, 0, 35, 0, 48, 0, 38, 0, 36, 0, 35, 0, 29, 0, 38, 0, 48, 0, 48, 0, 30, 0, 29, 0, 38, 0, 32, 0, 36, 0, 32, 0, 43, 0, 36, 0, 32, 0, 25, 0, 43, 0, 28, 0, 43, 0, 25, 0, 25, 0, 24, 0, 28, 0, 24, 0, 22, 0, 28, 0, 24, 0, 21, 0, 22, 0, 49, 0, 6, 0, 8, 0, 8, 0, 37, 0, 49, 0, 37, 0, 50, 0, 49, 0, 37, 0, 0, 0, 50, 0, 0, 0, 45, 0, 50, 0, 0, 0, 39, 0, 45, 0, 0, 0, 2, 0, 39, 0, 2, 0, 40, 0, 39, 0, 30, 0, 48, 0, 51, 0, 51, 0, 16, 0, 30, 0, 51, 0, 17, 0, 16, 0, 51, 0, 50, 0, 17, 0, 50, 0, 45, 0, 17, 0, 45, 0, 46, 0, 17, 0, 49, 0, 51, 0, 48, 0, 48, 0, 6, 0, 49, 0, 48, 0, 47, 0, 6, 0, 47, 0, 7, 0, 6, 0, 14, 0, 21, 0, 24, 0, 24, 0, 26, 0, 14, 0, 26, 0, 12, 0, 14, 0), +"name": "rock", +"primitive": 3, +"vertex_count": 52, +"vertex_data": PackedByteArray(138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189) +}, { +"aabb": AABB(-0.326549, 0, -0.331152, 0.653099, 0.4, 0.662304), +"format": 4097, +"index_count": 3, +"index_data": PackedByteArray(49, 0, 50, 0, 51, 0), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 52, +"vertex_data": PackedByteArray(138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_vb03r"] +resource_name = "rocks_Mesh rocks" +_surfaces = [{ +"aabb": AABB(-0.326549, 0, -0.331152, 0.653099, 0.4, 0.662304), +"attribute_data": PackedByteArray(14, 240, 8, 65, 122, 24, 197, 192, 153, 163, 233, 64, 56, 153, 6, 191, 17, 103, 193, 64, 122, 24, 197, 192, 115, 11, 166, 191, 201, 69, 137, 64, 33, 93, 135, 192, 215, 199, 5, 65, 101, 55, 229, 192, 201, 69, 137, 64, 67, 147, 114, 192, 48, 143, 141, 192, 165, 94, 196, 192, 126, 49, 187, 63, 212, 185, 7, 193, 48, 143, 141, 192, 139, 61, 50, 192, 240, 137, 122, 192, 9, 187, 164, 191, 30, 118, 224, 192, 195, 120, 69, 63, 240, 137, 122, 192, 108, 193, 45, 64, 118, 227, 104, 64, 2, 120, 187, 64, 118, 227, 104, 64, 97, 44, 137, 64, 106, 109, 227, 64, 14, 87, 229, 64, 39, 165, 65, 193, 230, 157, 183, 64, 162, 13, 122, 192, 206, 228, 137, 64, 39, 165, 65, 193, 15, 193, 244, 191, 44, 192, 42, 193, 85, 130, 146, 192, 77, 255, 15, 192, 93, 212, 231, 192, 44, 192, 42, 193, 203, 65, 30, 192, 152, 235, 236, 64, 101, 132, 214, 191, 142, 64, 148, 64, 149, 156, 239, 64, 152, 235, 236, 64, 179, 145, 111, 63, 20, 86, 238, 63, 253, 156, 188, 64, 20, 86, 238, 63, 85, 122, 236, 64, 75, 86, 74, 64, 79, 195, 200, 64, 74, 86, 74, 64, 184, 122, 185, 64, 218, 85, 24, 192, 244, 240, 114, 64, 217, 85, 24, 192, 91, 134, 36, 64, 83, 210, 237, 64, 75, 122, 236, 192, 83, 210, 237, 64, 132, 13, 227, 63, 73, 39, 149, 64, 180, 122, 185, 192, 253, 240, 241, 63, 32, 55, 26, 192, 252, 240, 241, 63, 167, 40, 8, 65, 183, 22, 61, 64, 207, 145, 11, 191, 184, 22, 61, 64, 147, 244, 225, 64, 17, 224, 79, 193, 218, 108, 35, 64, 17, 224, 79, 193, 82, 132, 55, 62, 100, 154, 160, 192, 164, 40, 8, 193, 126, 188, 193, 63, 145, 244, 225, 192, 47, 238, 102, 193, 27, 164, 220, 192, 126, 188, 193, 63, 227, 83, 103, 191, 48, 238, 102, 193, 158, 254, 80, 192, 250, 141, 86, 192, 241, 167, 212, 191, 252, 141, 86, 192, 220, 131, 55, 190, 160, 182, 206, 192, 209, 243, 13, 65, 126, 57, 107, 64, 42, 77, 103, 63, 127, 57, 107, 64, 38, 27, 243, 64, 210, 191, 226, 192, 136, 63, 197, 63, 38, 70, 218, 191, 67, 88, 104, 64, 208, 191, 226, 192, 54, 112, 35, 64, 130, 196, 72, 64, 105, 11, 208, 192, 130, 196, 72, 64, 248, 38, 234, 63, 126, 195, 154, 192, 174, 174, 161, 192, 158, 244, 76, 193, 140, 166, 252, 191, 159, 244, 76, 193, 42, 235, 217, 62, 188, 126, 29, 193, 218, 141, 178, 64, 188, 126, 29, 193, 64, 74, 171, 63, 172, 124, 127, 192, 10, 189, 200, 64, 172, 124, 127, 192, 19, 92, 30, 193, 123, 101, 170, 64, 45, 156, 17, 193, 226, 116, 35, 64, 126, 143, 183, 192, 123, 101, 170, 64, 202, 81, 151, 192, 80, 19, 94, 190, 105, 89, 157, 192, 32, 19, 94, 190, 70, 98, 139, 64, 226, 228, 46, 192, 117, 145, 161, 64, 202, 88, 9, 193, 185, 131, 189, 64, 226, 228, 46, 192, 62, 64, 16, 65, 202, 88, 9, 193, 89, 236, 10, 65, 248, 85, 11, 64, 94, 174, 49, 65, 150, 6, 77, 192, 126, 225, 59, 65, 252, 85, 11, 64, 161, 9, 177, 64, 102, 88, 21, 193, 5, 243, 38, 64, 102, 88, 21, 193, 182, 174, 161, 64, 163, 217, 105, 193, 128, 109, 141, 191, 163, 217, 105, 193, 8, 39, 234, 191, 134, 141, 212, 192, 194, 179, 94, 62, 202, 59, 98, 192, 115, 51, 180, 63, 200, 59, 98, 192, 165, 221, 182, 191, 67, 168, 26, 64, 122, 189, 39, 193, 67, 168, 26, 64, 75, 40, 56, 192, 174, 123, 88, 193, 76, 38, 28, 193, 157, 209, 177, 192, 48, 153, 190, 192, 174, 123, 88, 193, 65, 214, 243, 62, 174, 174, 187, 191, 131, 142, 142, 63, 58, 133, 122, 64, 184, 182, 55, 192, 244, 25, 219, 192, 95, 90, 219, 192, 58, 133, 122, 64, 231, 141, 178, 192, 244, 25, 219, 192, 55, 147, 30, 193, 72, 250, 0, 65, 55, 147, 30, 193, 214, 108, 99, 64, 93, 212, 231, 192, 139, 155, 25, 65, 169, 182, 7, 193, 40, 18, 138, 63, 85, 130, 146, 192, 52, 106, 150, 191, 15, 193, 244, 191, 139, 155, 25, 65, 103, 14, 65, 63, 244, 169, 243, 63, 103, 14, 65, 63, 72, 250, 0, 65, 196, 211, 12, 191, 88, 226, 92, 191, 24, 107, 245, 63, 165, 94, 164, 192, 163, 37, 246, 62, 168, 10, 137, 190, 117, 220, 31, 64, 252, 83, 42, 64, 101, 55, 229, 64, 143, 204, 210, 192, 115, 11, 166, 63, 143, 204, 210, 192, 52, 40, 145, 63, 188, 200, 207, 192, 33, 93, 135, 64, 114, 128, 168, 64, 117, 220, 31, 64, 80, 127, 136, 64, 255, 98, 8, 65, 29, 86, 50, 64, 212, 136, 33, 65, 253, 156, 156, 192, 212, 136, 33, 65, 104, 114, 131, 61, 78, 179, 77, 65, 165, 94, 164, 192, 253, 55, 37, 65, 152, 24, 65, 191, 207, 243, 13, 65, 135, 153, 64, 193, 85, 130, 146, 64, 135, 153, 96, 65, 17, 77, 103, 63, 135, 153, 64, 193, 214, 185, 70, 65, 165, 40, 24, 65, 214, 185, 70, 65, 56, 220, 232, 62, 22, 222, 80, 192, 165, 40, 24, 65, 219, 91, 32, 191, 128, 51, 22, 193, 22, 222, 80, 192, 29, 164, 252, 64, 33, 93, 135, 192, 169, 125, 55, 193, 33, 93, 135, 192, 210, 63, 7, 65, 78, 179, 77, 193, 149, 156, 207, 192, 78, 179, 77, 193, 203, 65, 94, 64, 51, 58, 15, 193, 67, 147, 50, 192, 51, 58, 15, 193, 168, 115, 239, 192, 36, 27, 243, 192, 232, 73, 227, 190, 36, 27, 243, 192, 90, 68, 29, 193, 72, 58, 240, 192, 232, 73, 227, 190, 62, 88, 104, 192, 90, 68, 29, 193, 85, 130, 146, 192, 199, 160, 8, 192, 95, 246, 2, 192, 162, 66, 44, 191, 108, 236, 185, 191, 21, 38, 9, 193, 59, 227, 7, 63, 165, 94, 164, 192, 161, 12, 1, 65, 174, 76, 3, 64, 102, 130, 188, 64, 20, 56, 7, 193, 120, 189, 39, 65, 174, 76, 3, 64, 72, 38, 28, 65, 104, 127, 189, 192, 81, 82, 236, 64, 147, 82, 94, 193, 193, 240, 184, 64, 87, 209, 9, 193, 120, 114, 25, 64, 87, 209, 9, 193, 78, 40, 56, 64, 147, 82, 94, 193, 103, 242, 160, 192, 86, 39, 254, 192, 181, 213, 213, 192, 107, 237, 41, 64, 116, 145, 161, 192, 238, 178, 1, 193, 248, 67, 248, 192, 238, 178, 1, 193, 123, 225, 59, 193, 108, 237, 41, 64, 92, 174, 49, 193, 37, 111, 46, 192, 18, 92, 30, 65, 10, 152, 168, 64, 111, 85, 129, 189, 10, 152, 168, 64, 44, 156, 17, 65, 0, 218, 31, 64, 14, 233, 195, 63, 160, 224, 139, 190, 5, 165, 207, 64, 176, 224, 139, 190, 59, 227, 7, 63, 165, 94, 164, 192, 95, 246, 2, 192, 162, 66, 44, 191, 108, 236, 185, 191, 21, 38, 9, 193), +"format": 4119, +"index_count": 297, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 22, 0, 24, 0, 23, 0, 24, 0, 25, 0, 23, 0, 28, 0, 26, 0, 27, 0, 27, 0, 29, 0, 28, 0, 32, 0, 30, 0, 31, 0, 31, 0, 33, 0, 32, 0, 33, 0, 34, 0, 32, 0, 37, 0, 35, 0, 36, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 43, 0, 44, 0, 42, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 45, 0, 49, 0, 47, 0, 48, 0, 48, 0, 50, 0, 49, 0, 50, 0, 51, 0, 49, 0, 54, 0, 52, 0, 53, 0, 53, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 59, 0, 57, 0, 58, 0, 58, 0, 60, 0, 59, 0, 63, 0, 61, 0, 62, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 68, 0, 66, 0, 67, 0, 67, 0, 69, 0, 68, 0, 69, 0, 70, 0, 68, 0, 69, 0, 71, 0, 70, 0, 71, 0, 72, 0, 70, 0, 75, 0, 73, 0, 74, 0, 76, 0, 75, 0, 74, 0, 77, 0, 76, 0, 74, 0, 78, 0, 77, 0, 74, 0, 74, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 83, 0, 84, 0, 82, 0, 87, 0, 85, 0, 86, 0, 86, 0, 88, 0, 87, 0, 88, 0, 89, 0, 87, 0, 92, 0, 90, 0, 91, 0, 91, 0, 93, 0, 92, 0, 93, 0, 94, 0, 92, 0, 94, 0, 95, 0, 92, 0, 94, 0, 96, 0, 95, 0, 96, 0, 97, 0, 95, 0, 100, 0, 98, 0, 99, 0, 99, 0, 101, 0, 100, 0, 102, 0, 101, 0, 99, 0, 103, 0, 102, 0, 99, 0, 99, 0, 104, 0, 103, 0, 102, 0, 105, 0, 101, 0, 105, 0, 106, 0, 101, 0, 102, 0, 107, 0, 105, 0, 102, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 112, 0, 110, 0, 111, 0, 113, 0, 112, 0, 111, 0, 113, 0, 114, 0, 112, 0, 115, 0, 113, 0, 111, 0, 111, 0, 116, 0, 115, 0, 113, 0, 117, 0, 114, 0, 117, 0, 118, 0, 114, 0, 117, 0, 119, 0, 118, 0, 120, 0, 118, 0, 119, 0, 119, 0, 121, 0, 120, 0, 121, 0, 122, 0, 120, 0, 121, 0, 123, 0, 122, 0, 126, 0, 124, 0, 125, 0, 125, 0, 127, 0, 126, 0, 127, 0, 128, 0, 126, 0, 127, 0, 129, 0, 128, 0, 129, 0, 130, 0, 128, 0, 129, 0, 131, 0, 130, 0, 129, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 136, 0, 134, 0, 135, 0, 135, 0, 137, 0, 136, 0, 135, 0, 138, 0, 137, 0, 135, 0, 139, 0, 138, 0, 139, 0, 140, 0, 138, 0, 140, 0, 141, 0, 138, 0, 144, 0, 142, 0, 143, 0, 143, 0, 145, 0, 144, 0, 143, 0, 146, 0, 145, 0, 146, 0, 147, 0, 145, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 151, 0, 152, 0, 150, 0), +"material": SubResource("StandardMaterial3D_quxi2"), +"name": "rock", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 36, 228, 87, 219, 0, 0, 146, 168, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 36, 228, 87, 219, 0, 0, 146, 168, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 36, 228, 87, 219, 0, 0, 146, 168, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 12, 182, 255, 255, 0, 0, 255, 191, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 12, 182, 255, 255, 0, 0, 255, 191, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 12, 182, 255, 255, 0, 0, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 160, 42, 160, 170, 255, 127, 255, 191, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 160, 42, 160, 170, 255, 127, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 160, 42, 160, 170, 255, 127, 255, 191, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 21, 244, 190, 68, 0, 0, 229, 229, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 21, 244, 190, 68, 0, 0, 229, 229, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 21, 244, 190, 68, 0, 0, 229, 229, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 13, 174, 90, 183, 255, 255, 108, 151, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 13, 174, 90, 183, 255, 255, 108, 151, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 13, 174, 90, 183, 255, 255, 108, 151, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 86, 22, 2, 189, 37, 81, 255, 191, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 86, 22, 2, 189, 37, 81, 255, 191, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 86, 22, 2, 189, 37, 81, 255, 191, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 53, 163, 255, 255, 255, 191, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 255, 127, 53, 163, 255, 255, 255, 191, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 53, 163, 255, 255, 255, 191, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 75, 209, 178, 174, 255, 255, 255, 255, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 75, 209, 178, 174, 0, 0, 255, 255, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 75, 209, 178, 174, 0, 0, 255, 255, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 75, 209, 178, 174, 0, 0, 255, 255, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 75, 209, 178, 174, 255, 255, 255, 255, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 4, 95, 227, 165, 37, 209, 255, 191, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 4, 95, 227, 165, 37, 209, 255, 191, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 4, 95, 227, 165, 37, 209, 255, 191, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 4, 95, 227, 165, 37, 209, 255, 191, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 26, 218, 3, 223, 0, 0, 108, 215, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 26, 218, 3, 223, 0, 0, 108, 215, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 26, 218, 3, 223, 0, 0, 108, 215, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 26, 218, 3, 223, 0, 0, 108, 215, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 26, 218, 3, 223, 0, 0, 146, 168, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 151, 17, 151, 145, 255, 127, 255, 191, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 151, 17, 151, 145, 255, 127, 255, 191, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 151, 17, 151, 145, 255, 127, 255, 191, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 151, 17, 151, 145, 255, 127, 255, 191, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 151, 17, 151, 145, 255, 127, 255, 191, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 103, 238, 151, 145, 255, 255, 254, 255, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 103, 238, 151, 145, 254, 255, 0, 128, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 103, 238, 151, 145, 255, 255, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 103, 238, 151, 145, 254, 255, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 103, 238, 151, 145, 254, 255, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 103, 238, 151, 145, 254, 255, 0, 128, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 103, 238, 151, 145, 255, 255, 254, 255, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 207, 233, 255, 255, 0, 0, 255, 191, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 207, 233, 255, 255, 0, 0, 255, 191, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 207, 233, 255, 255, 0, 0, 255, 191, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 207, 233, 255, 255, 0, 0, 255, 191, 138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 207, 233, 255, 255, 0, 0, 255, 191, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 10, 86, 94, 141, 37, 209, 255, 191, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 10, 86, 94, 141, 37, 209, 255, 191, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 10, 86, 94, 141, 37, 209, 255, 191, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 10, 86, 94, 141, 37, 209, 255, 191, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 10, 86, 94, 141, 37, 209, 255, 191, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 89, 198, 7, 145, 255, 255, 146, 232, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 89, 198, 7, 145, 255, 255, 146, 232, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 89, 198, 7, 145, 255, 255, 146, 232, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 89, 198, 7, 145, 255, 255, 146, 232, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 228, 37, 3, 223, 217, 46, 255, 191, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 228, 37, 3, 223, 217, 46, 255, 191, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 228, 37, 3, 223, 217, 46, 255, 191, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 228, 37, 3, 223, 217, 46, 255, 191, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 228, 37, 3, 223, 217, 46, 255, 191, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 246, 238, 165, 185, 0, 0, 146, 232, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 246, 238, 165, 185, 0, 0, 146, 232, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 246, 238, 165, 185, 0, 0, 146, 232, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 246, 238, 165, 185, 0, 0, 146, 232, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 246, 238, 165, 185, 0, 0, 146, 232, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 246, 238, 165, 185, 0, 0, 146, 232, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 246, 238, 165, 185, 0, 0, 146, 232, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 159, 242, 10, 214, 0, 0, 146, 168, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 159, 242, 10, 214, 0, 0, 108, 215, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 159, 242, 10, 214, 0, 0, 146, 168, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 159, 242, 10, 214, 0, 0, 108, 215, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 159, 242, 10, 214, 0, 0, 146, 168, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 159, 242, 10, 214, 0, 0, 108, 215, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 159, 242, 10, 214, 0, 0, 108, 215, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 244, 169, 94, 141, 255, 255, 108, 215, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 244, 169, 94, 141, 255, 255, 146, 168, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 244, 169, 94, 141, 255, 255, 146, 168, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 244, 169, 94, 141, 254, 255, 146, 168, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 244, 169, 94, 141, 255, 255, 108, 215, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 8, 17, 165, 185, 37, 81, 255, 191, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 8, 17, 165, 185, 37, 81, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 8, 17, 165, 185, 37, 81, 255, 191, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 8, 17, 165, 185, 37, 81, 255, 191, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 8, 17, 165, 185, 37, 81, 255, 191, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 255, 127, 255, 255, 255, 255, 255, 191, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 255, 127, 255, 255, 255, 255, 255, 191, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 255, 255, 255, 255, 255, 191, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 255, 127, 255, 255, 255, 255, 255, 191, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 255, 127, 255, 255, 255, 255, 255, 191, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 255, 255, 255, 255, 255, 191, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 255, 127, 255, 255, 255, 255, 255, 191, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 255, 127, 255, 255, 255, 255, 255, 191, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 255, 127, 255, 255, 255, 255, 255, 191, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 255, 127, 255, 255, 255, 255, 255, 191, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 255, 127, 255, 255, 255, 255, 255, 191, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 255, 127, 255, 255, 255, 255, 255, 191, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 255, 127, 255, 255, 255, 255, 255, 191, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 255, 127, 255, 255, 255, 255, 255, 191, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 255, 127, 255, 255, 255, 255, 255, 191, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 255, 127, 255, 255, 255, 255, 255, 191, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 255, 127, 255, 255, 255, 255, 255, 191, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 255, 127, 255, 255, 255, 255, 255, 191, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 255, 127, 255, 255, 255, 255, 255, 191, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 255, 127, 255, 255, 255, 255, 255, 191, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 255, 127, 0, 0, 0, 0, 255, 191, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 255, 127, 0, 0, 0, 0, 255, 191, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 255, 127, 0, 0, 0, 0, 255, 191, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 255, 127, 0, 0, 0, 0, 255, 191, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 255, 127, 0, 0, 0, 0, 255, 191, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 255, 127, 0, 0, 0, 0, 255, 191, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 255, 127, 0, 0, 0, 0, 255, 191, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 255, 127, 0, 0, 0, 0, 255, 191, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 255, 127, 0, 0, 0, 0, 255, 191, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 255, 127, 0, 0, 0, 0, 255, 191, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 255, 127, 0, 0, 0, 0, 255, 191, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 255, 127, 0, 0, 0, 0, 255, 191, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 255, 127, 0, 0, 0, 0, 255, 191, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 255, 127, 0, 0, 0, 0, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 255, 127, 255, 255, 254, 255, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 255, 127, 255, 255, 255, 255, 255, 191, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 255, 255, 255, 255, 255, 191, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 255, 127, 255, 255, 255, 255, 255, 191, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 255, 255, 255, 255, 255, 191, 138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 255, 127, 255, 255, 255, 255, 255, 191, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 255, 127, 255, 255, 255, 255, 255, 191, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 255, 127, 255, 255, 255, 255, 255, 191, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 255, 127, 255, 255, 254, 255, 255, 191, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 255, 127, 255, 255, 255, 255, 255, 191, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 95, 13, 10, 214, 217, 46, 255, 191, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 95, 13, 10, 214, 217, 46, 255, 191, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 95, 13, 10, 214, 217, 46, 255, 191, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 95, 13, 10, 214, 217, 46, 255, 191, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 95, 13, 10, 214, 217, 46, 255, 191, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 95, 13, 10, 214, 217, 46, 255, 191, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 95, 13, 10, 214, 217, 46, 255, 191, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 95, 13, 10, 214, 217, 46, 255, 191, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 165, 57, 7, 145, 217, 174, 255, 191, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 165, 57, 7, 145, 217, 174, 255, 191, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 165, 57, 7, 145, 217, 174, 255, 191, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 165, 57, 7, 145, 217, 174, 255, 191, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 165, 57, 7, 145, 217, 174, 255, 191, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 165, 57, 7, 145, 217, 174, 255, 191, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 250, 160, 227, 165, 255, 255, 108, 215, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 250, 160, 227, 165, 255, 255, 146, 168, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 250, 160, 227, 165, 255, 255, 108, 215, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 250, 160, 227, 165, 255, 255, 146, 168, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 250, 160, 227, 165, 255, 255, 108, 215, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 47, 150, 0, 0, 0, 128, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 255, 127, 47, 150, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 47, 150, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.326549, 0, -0.331152, 0.653099, 0.4, 0.662304), +"attribute_data": PackedByteArray(14, 240, 8, 65, 122, 24, 197, 192, 153, 163, 233, 64, 56, 153, 6, 191, 17, 103, 193, 64, 122, 24, 197, 192, 115, 11, 166, 191, 201, 69, 137, 64, 33, 93, 135, 192, 215, 199, 5, 65, 101, 55, 229, 192, 201, 69, 137, 64, 67, 147, 114, 192, 48, 143, 141, 192, 165, 94, 196, 192, 126, 49, 187, 63, 212, 185, 7, 193, 48, 143, 141, 192, 139, 61, 50, 192, 240, 137, 122, 192, 9, 187, 164, 191, 30, 118, 224, 192, 195, 120, 69, 63, 240, 137, 122, 192, 108, 193, 45, 64, 118, 227, 104, 64, 2, 120, 187, 64, 118, 227, 104, 64, 97, 44, 137, 64, 106, 109, 227, 64, 14, 87, 229, 64, 39, 165, 65, 193, 230, 157, 183, 64, 162, 13, 122, 192, 206, 228, 137, 64, 39, 165, 65, 193, 15, 193, 244, 191, 44, 192, 42, 193, 85, 130, 146, 192, 77, 255, 15, 192, 93, 212, 231, 192, 44, 192, 42, 193, 203, 65, 30, 192, 152, 235, 236, 64, 101, 132, 214, 191, 142, 64, 148, 64, 149, 156, 239, 64, 152, 235, 236, 64, 179, 145, 111, 63, 20, 86, 238, 63, 253, 156, 188, 64, 20, 86, 238, 63, 85, 122, 236, 64, 75, 86, 74, 64, 79, 195, 200, 64, 74, 86, 74, 64, 184, 122, 185, 64, 218, 85, 24, 192, 244, 240, 114, 64, 217, 85, 24, 192, 91, 134, 36, 64, 83, 210, 237, 64, 75, 122, 236, 192, 83, 210, 237, 64, 132, 13, 227, 63, 73, 39, 149, 64, 180, 122, 185, 192, 253, 240, 241, 63, 32, 55, 26, 192, 252, 240, 241, 63, 167, 40, 8, 65, 183, 22, 61, 64, 207, 145, 11, 191, 184, 22, 61, 64, 147, 244, 225, 64, 17, 224, 79, 193, 218, 108, 35, 64, 17, 224, 79, 193, 82, 132, 55, 62, 100, 154, 160, 192, 164, 40, 8, 193, 126, 188, 193, 63, 145, 244, 225, 192, 47, 238, 102, 193, 27, 164, 220, 192, 126, 188, 193, 63, 227, 83, 103, 191, 48, 238, 102, 193, 158, 254, 80, 192, 250, 141, 86, 192, 241, 167, 212, 191, 252, 141, 86, 192, 220, 131, 55, 190, 160, 182, 206, 192, 209, 243, 13, 65, 126, 57, 107, 64, 42, 77, 103, 63, 127, 57, 107, 64, 38, 27, 243, 64, 210, 191, 226, 192, 136, 63, 197, 63, 38, 70, 218, 191, 67, 88, 104, 64, 208, 191, 226, 192, 54, 112, 35, 64, 130, 196, 72, 64, 105, 11, 208, 192, 130, 196, 72, 64, 248, 38, 234, 63, 126, 195, 154, 192, 174, 174, 161, 192, 158, 244, 76, 193, 140, 166, 252, 191, 159, 244, 76, 193, 42, 235, 217, 62, 188, 126, 29, 193, 218, 141, 178, 64, 188, 126, 29, 193, 64, 74, 171, 63, 172, 124, 127, 192, 10, 189, 200, 64, 172, 124, 127, 192, 19, 92, 30, 193, 123, 101, 170, 64, 45, 156, 17, 193, 226, 116, 35, 64, 126, 143, 183, 192, 123, 101, 170, 64, 202, 81, 151, 192, 80, 19, 94, 190, 105, 89, 157, 192, 32, 19, 94, 190, 70, 98, 139, 64, 226, 228, 46, 192, 117, 145, 161, 64, 202, 88, 9, 193, 185, 131, 189, 64, 226, 228, 46, 192, 62, 64, 16, 65, 202, 88, 9, 193, 89, 236, 10, 65, 248, 85, 11, 64, 94, 174, 49, 65, 150, 6, 77, 192, 126, 225, 59, 65, 252, 85, 11, 64, 161, 9, 177, 64, 102, 88, 21, 193, 5, 243, 38, 64, 102, 88, 21, 193, 182, 174, 161, 64, 163, 217, 105, 193, 128, 109, 141, 191, 163, 217, 105, 193, 8, 39, 234, 191, 134, 141, 212, 192, 194, 179, 94, 62, 202, 59, 98, 192, 115, 51, 180, 63, 200, 59, 98, 192, 165, 221, 182, 191, 67, 168, 26, 64, 122, 189, 39, 193, 67, 168, 26, 64, 75, 40, 56, 192, 174, 123, 88, 193, 76, 38, 28, 193, 157, 209, 177, 192, 48, 153, 190, 192, 174, 123, 88, 193, 65, 214, 243, 62, 174, 174, 187, 191, 131, 142, 142, 63, 58, 133, 122, 64, 184, 182, 55, 192, 244, 25, 219, 192, 95, 90, 219, 192, 58, 133, 122, 64, 231, 141, 178, 192, 244, 25, 219, 192, 55, 147, 30, 193, 72, 250, 0, 65, 55, 147, 30, 193, 214, 108, 99, 64, 93, 212, 231, 192, 139, 155, 25, 65, 169, 182, 7, 193, 40, 18, 138, 63, 85, 130, 146, 192, 52, 106, 150, 191, 15, 193, 244, 191, 139, 155, 25, 65, 103, 14, 65, 63, 244, 169, 243, 63, 103, 14, 65, 63, 72, 250, 0, 65, 196, 211, 12, 191, 88, 226, 92, 191, 24, 107, 245, 63, 165, 94, 164, 192, 163, 37, 246, 62, 168, 10, 137, 190, 117, 220, 31, 64, 252, 83, 42, 64, 101, 55, 229, 64, 143, 204, 210, 192, 115, 11, 166, 63, 143, 204, 210, 192, 52, 40, 145, 63, 188, 200, 207, 192, 33, 93, 135, 64, 114, 128, 168, 64, 117, 220, 31, 64, 80, 127, 136, 64, 255, 98, 8, 65, 29, 86, 50, 64, 212, 136, 33, 65, 253, 156, 156, 192, 212, 136, 33, 65, 104, 114, 131, 61, 78, 179, 77, 65, 165, 94, 164, 192, 253, 55, 37, 65, 152, 24, 65, 191, 207, 243, 13, 65, 135, 153, 64, 193, 85, 130, 146, 64, 135, 153, 96, 65, 17, 77, 103, 63, 135, 153, 64, 193, 214, 185, 70, 65, 165, 40, 24, 65, 214, 185, 70, 65, 56, 220, 232, 62, 22, 222, 80, 192, 165, 40, 24, 65, 219, 91, 32, 191, 128, 51, 22, 193, 22, 222, 80, 192, 29, 164, 252, 64, 33, 93, 135, 192, 169, 125, 55, 193, 33, 93, 135, 192, 210, 63, 7, 65, 78, 179, 77, 193, 149, 156, 207, 192, 78, 179, 77, 193, 203, 65, 94, 64, 51, 58, 15, 193, 67, 147, 50, 192, 51, 58, 15, 193, 168, 115, 239, 192, 36, 27, 243, 192, 232, 73, 227, 190, 36, 27, 243, 192, 90, 68, 29, 193, 72, 58, 240, 192, 232, 73, 227, 190, 62, 88, 104, 192, 90, 68, 29, 193, 85, 130, 146, 192, 199, 160, 8, 192, 95, 246, 2, 192, 162, 66, 44, 191, 108, 236, 185, 191, 21, 38, 9, 193, 59, 227, 7, 63, 165, 94, 164, 192, 161, 12, 1, 65, 174, 76, 3, 64, 102, 130, 188, 64, 20, 56, 7, 193, 120, 189, 39, 65, 174, 76, 3, 64, 72, 38, 28, 65, 104, 127, 189, 192, 81, 82, 236, 64, 147, 82, 94, 193, 193, 240, 184, 64, 87, 209, 9, 193, 120, 114, 25, 64, 87, 209, 9, 193, 78, 40, 56, 64, 147, 82, 94, 193, 103, 242, 160, 192, 86, 39, 254, 192, 181, 213, 213, 192, 107, 237, 41, 64, 116, 145, 161, 192, 238, 178, 1, 193, 248, 67, 248, 192, 238, 178, 1, 193, 123, 225, 59, 193, 108, 237, 41, 64, 92, 174, 49, 193, 37, 111, 46, 192, 18, 92, 30, 65, 10, 152, 168, 64, 111, 85, 129, 189, 10, 152, 168, 64, 44, 156, 17, 65, 0, 218, 31, 64, 14, 233, 195, 63, 160, 224, 139, 190, 5, 165, 207, 64, 176, 224, 139, 190, 59, 227, 7, 63, 165, 94, 164, 192, 95, 246, 2, 192, 162, 66, 44, 191, 108, 236, 185, 191, 21, 38, 9, 193), +"format": 4119, +"index_count": 3, +"index_data": PackedByteArray(155, 0, 153, 0, 154, 0), +"material": SubResource("StandardMaterial3D_um815"), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 36, 228, 87, 219, 0, 0, 0, 128, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 36, 228, 87, 219, 0, 0, 0, 128, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 36, 228, 87, 219, 0, 0, 0, 128, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 12, 182, 255, 255, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 12, 182, 255, 255, 0, 0, 0, 128, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 12, 182, 255, 255, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 160, 42, 160, 170, 0, 0, 0, 128, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 160, 42, 160, 170, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 160, 42, 160, 170, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 21, 244, 190, 68, 0, 0, 0, 128, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 21, 244, 190, 68, 0, 0, 0, 128, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 21, 244, 190, 68, 0, 0, 0, 128, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 13, 174, 90, 183, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 13, 174, 90, 183, 0, 0, 0, 128, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 13, 174, 90, 183, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 86, 22, 2, 189, 0, 0, 0, 128, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 86, 22, 2, 189, 0, 0, 0, 128, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 86, 22, 2, 189, 0, 0, 0, 128, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 53, 163, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 255, 127, 53, 163, 0, 0, 0, 128, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 53, 163, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 75, 209, 178, 174, 0, 0, 0, 128, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 75, 209, 178, 174, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 75, 209, 178, 174, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 75, 209, 178, 174, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 75, 209, 178, 174, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 4, 95, 227, 165, 0, 0, 0, 128, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 4, 95, 227, 165, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 4, 95, 227, 165, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 4, 95, 227, 165, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 26, 218, 3, 223, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 26, 218, 3, 223, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 26, 218, 3, 223, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 26, 218, 3, 223, 0, 0, 0, 128, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 26, 218, 3, 223, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 151, 17, 151, 145, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 151, 17, 151, 145, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 151, 17, 151, 145, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 151, 17, 151, 145, 0, 0, 0, 128, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 151, 17, 151, 145, 0, 0, 0, 128, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 103, 238, 151, 145, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 103, 238, 151, 145, 0, 0, 0, 128, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 103, 238, 151, 145, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 103, 238, 151, 145, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 103, 238, 151, 145, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 103, 238, 151, 145, 0, 0, 0, 128, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 103, 238, 151, 145, 0, 0, 0, 128, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 207, 233, 255, 255, 0, 0, 0, 128, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 207, 233, 255, 255, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 207, 233, 255, 255, 0, 0, 0, 128, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 207, 233, 255, 255, 0, 0, 0, 128, 138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 207, 233, 255, 255, 0, 0, 0, 128, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 10, 86, 94, 141, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 10, 86, 94, 141, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 10, 86, 94, 141, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 10, 86, 94, 141, 0, 0, 0, 128, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 10, 86, 94, 141, 0, 0, 0, 128, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 89, 198, 7, 145, 0, 0, 0, 128, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 89, 198, 7, 145, 0, 0, 0, 128, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 89, 198, 7, 145, 0, 0, 0, 128, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 89, 198, 7, 145, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 228, 37, 3, 223, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 121, 61, 160, 107, 141, 190, 228, 37, 3, 223, 0, 0, 0, 128, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 228, 37, 3, 223, 0, 0, 0, 128, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 228, 37, 3, 223, 0, 0, 0, 128, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 228, 37, 3, 223, 0, 0, 0, 128, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 246, 238, 165, 185, 0, 0, 0, 128, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 246, 238, 165, 185, 0, 0, 0, 128, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 246, 238, 165, 185, 0, 0, 0, 128, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 246, 238, 165, 185, 0, 0, 0, 128, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 246, 238, 165, 185, 0, 0, 0, 128, 187, 82, 32, 189, 98, 248, 8, 62, 203, 48, 155, 190, 246, 238, 165, 185, 0, 0, 0, 128, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 246, 238, 165, 185, 0, 0, 0, 128, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 159, 242, 10, 214, 0, 0, 0, 128, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 159, 242, 10, 214, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 159, 242, 10, 214, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 159, 242, 10, 214, 0, 0, 0, 128, 43, 255, 80, 61, 205, 204, 76, 62, 93, 41, 149, 59, 159, 242, 10, 214, 0, 0, 0, 128, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 159, 242, 10, 214, 0, 0, 0, 128, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 159, 242, 10, 214, 0, 0, 0, 128, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 244, 169, 94, 141, 0, 0, 0, 128, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 244, 169, 94, 141, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 244, 169, 94, 141, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 76, 62, 79, 181, 150, 62, 244, 169, 94, 141, 0, 0, 0, 128, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 244, 169, 94, 141, 0, 0, 0, 128, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 8, 17, 165, 185, 0, 0, 0, 128, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 8, 17, 165, 185, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 8, 17, 165, 185, 0, 0, 0, 128, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 8, 17, 165, 185, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 8, 17, 165, 185, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 16, 168, 55, 62, 255, 127, 255, 255, 0, 0, 0, 128, 202, 227, 128, 190, 205, 204, 204, 62, 251, 212, 132, 61, 255, 127, 255, 255, 0, 0, 0, 128, 89, 110, 60, 190, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 255, 255, 0, 0, 0, 128, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 255, 127, 255, 255, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 255, 127, 255, 255, 0, 0, 0, 128, 168, 239, 70, 189, 205, 204, 204, 62, 229, 177, 95, 62, 255, 127, 255, 255, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 240, 5, 188, 60, 255, 127, 255, 255, 0, 0, 0, 128, 135, 234, 156, 60, 205, 204, 204, 62, 16, 168, 55, 62, 255, 127, 255, 255, 0, 0, 0, 128, 192, 237, 100, 188, 126, 248, 249, 61, 68, 206, 65, 189, 255, 127, 255, 255, 0, 0, 0, 128, 220, 121, 71, 61, 126, 248, 249, 61, 251, 155, 31, 190, 255, 127, 255, 255, 0, 0, 0, 128, 124, 17, 72, 60, 126, 248, 249, 61, 160, 226, 3, 189, 255, 127, 255, 255, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 206, 216, 44, 61, 255, 127, 255, 255, 0, 0, 0, 128, 156, 78, 58, 62, 126, 248, 249, 61, 218, 88, 69, 190, 255, 127, 255, 255, 0, 0, 0, 128, 14, 246, 6, 61, 126, 248, 249, 61, 218, 88, 69, 190, 255, 127, 255, 255, 0, 0, 0, 128, 160, 247, 235, 60, 126, 248, 249, 61, 131, 229, 66, 190, 255, 127, 255, 255, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 255, 127, 255, 255, 0, 0, 0, 128, 102, 239, 129, 61, 126, 248, 249, 61, 240, 222, 169, 61, 255, 127, 255, 255, 0, 0, 0, 128, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 255, 127, 255, 255, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 10, 78, 25, 190, 255, 127, 255, 255, 0, 0, 0, 128, 148, 75, 131, 62, 126, 248, 249, 61, 199, 184, 194, 188, 255, 127, 255, 255, 0, 0, 0, 128, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 255, 127, 0, 0, 0, 0, 0, 128, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 255, 127, 0, 0, 0, 0, 0, 128, 254, 193, 102, 190, 52, 17, 54, 38, 195, 140, 169, 190, 255, 127, 0, 0, 0, 0, 0, 128, 75, 42, 238, 189, 132, 13, 143, 38, 195, 140, 169, 62, 255, 127, 0, 0, 0, 0, 0, 128, 97, 0, 188, 188, 52, 17, 54, 38, 195, 140, 169, 190, 255, 127, 0, 0, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 246, 86, 93, 62, 255, 127, 0, 0, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 255, 127, 0, 0, 0, 0, 0, 128, 124, 196, 169, 61, 132, 13, 143, 38, 246, 86, 93, 62, 255, 127, 0, 0, 0, 0, 0, 128, 243, 86, 130, 60, 173, 199, 21, 38, 156, 22, 135, 190, 255, 127, 0, 0, 0, 0, 0, 128, 124, 196, 169, 61, 0, 0, 0, 0, 73, 86, 51, 62, 255, 127, 0, 0, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 107, 37, 162, 190, 255, 127, 0, 0, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 255, 127, 0, 0, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 160, 193, 66, 190, 255, 127, 0, 0, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 255, 127, 0, 0, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 255, 127, 255, 255, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 209, 162, 92, 190, 255, 127, 255, 255, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 255, 255, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 216, 212, 140, 190, 255, 127, 255, 255, 0, 0, 0, 128, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 255, 255, 0, 0, 0, 128, 138, 217, 188, 189, 98, 248, 136, 62, 216, 212, 140, 190, 255, 127, 255, 255, 0, 0, 0, 128, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 255, 127, 255, 255, 0, 0, 0, 128, 120, 228, 84, 189, 98, 248, 136, 62, 132, 11, 46, 189, 255, 127, 255, 255, 0, 0, 0, 128, 95, 30, 23, 189, 98, 248, 136, 62, 104, 245, 120, 190, 255, 127, 255, 255, 0, 0, 0, 128, 31, 230, 92, 60, 98, 248, 136, 62, 251, 155, 31, 190, 255, 127, 255, 255, 0, 0, 0, 128, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 95, 13, 10, 214, 0, 0, 0, 128, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 95, 13, 10, 214, 0, 0, 0, 128, 65, 134, 161, 190, 132, 13, 143, 38, 130, 226, 98, 188, 95, 13, 10, 214, 0, 0, 0, 128, 4, 53, 145, 190, 205, 204, 76, 62, 93, 41, 149, 59, 95, 13, 10, 214, 0, 0, 0, 128, 171, 157, 92, 190, 205, 204, 204, 62, 110, 248, 2, 59, 95, 13, 10, 214, 0, 0, 0, 128, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 95, 13, 10, 214, 0, 0, 0, 128, 75, 42, 238, 189, 98, 248, 136, 62, 10, 18, 163, 189, 95, 13, 10, 214, 0, 0, 0, 128, 75, 42, 238, 189, 205, 204, 204, 62, 172, 75, 98, 189, 95, 13, 10, 214, 0, 0, 0, 128, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 165, 57, 7, 145, 0, 0, 0, 128, 46, 74, 134, 190, 162, 23, 125, 38, 60, 131, 54, 189, 165, 57, 7, 145, 0, 0, 0, 128, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 165, 57, 7, 145, 0, 0, 0, 128, 147, 212, 104, 190, 98, 248, 136, 62, 72, 42, 197, 189, 165, 57, 7, 145, 0, 0, 0, 128, 123, 49, 167, 190, 52, 17, 54, 38, 251, 155, 31, 190, 165, 57, 7, 145, 0, 0, 0, 128, 217, 156, 150, 190, 98, 248, 8, 62, 251, 155, 31, 190, 165, 57, 7, 145, 0, 0, 0, 128, 123, 49, 167, 62, 0, 0, 0, 0, 156, 161, 128, 61, 250, 160, 227, 165, 0, 0, 0, 128, 32, 12, 220, 61, 0, 0, 0, 0, 5, 218, 65, 62, 250, 160, 227, 165, 0, 0, 0, 128, 136, 62, 149, 62, 126, 248, 121, 61, 12, 92, 46, 61, 250, 160, 227, 165, 0, 0, 0, 128, 32, 12, 220, 61, 126, 248, 249, 61, 177, 229, 221, 61, 250, 160, 227, 165, 0, 0, 0, 128, 209, 181, 93, 62, 126, 248, 249, 61, 127, 221, 57, 61, 250, 160, 227, 165, 0, 0, 0, 128, 205, 65, 67, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 47, 150, 37, 207, 139, 221, 3, 26, 70, 190, 101, 226, 134, 62, 131, 185, 18, 189, 255, 127, 47, 150, 37, 207, 139, 221, 185, 152, 69, 190, 98, 248, 136, 62, 53, 57, 22, 189, 255, 127, 47, 150, 37, 207, 139, 221) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_xeoxy") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_70rrv"] +data = PackedVector3Array(-0.0369, 0.2675, -0.2431, -0.0922, 0.2675, -0.2751, -0.0391, 0.1338, -0.3031, 0.1819, 0.1221, -0.1927, 0.0329, 0.1221, -0.1927, 0.1074, 0.061, -0.2762, -0.2274, 0.2675, -0.2155, -0.2274, 0.2675, -0.0963, -0.2942, 0.1338, -0.1559, 0.0122, 0.1221, -0.0322, 0.0634, 0.1221, 0.0422, 0.051, 0.2, 0.0046, 0.2915, 0.061, 0.0426, 0.2165, 0.1221, 0.0454, 0.2564, 0.1221, -0.0238, -0.2154, 0.4, 0.002, -0.2517, 0.4, 0.0649, -0.2836, 0.2, 0.0046, -0.184, 0.4, 0.2185, -0.0486, 0.4, 0.2185, -0.1163, 0.2, 0.2944, 0.3265, 0, -0.1902, 0.3265, 0, 0.0628, 0.2915, 0.061, 0.0426, 0.2915, 0.061, 0.0426, 0.2564, 0.1221, -0.0238, 0.3265, 0, -0.1902, 0.2564, 0.1221, -0.0238, 0.2564, 0.1221, -0.1497, 0.3265, 0, -0.1902, 0.1074, 0.1221, 0.1083, 0.1074, 0, 0.1893, 0.0829, 0, 0.1751, 0.0829, 0, 0.1751, 0.0634, 0.1221, 0.0829, 0.1074, 0.1221, 0.1083, 0.1074, 0.061, -0.2762, 0.1074, 0, -0.3167, 0.3265, 0, -0.1902, 0.3265, 0, -0.1902, 0.2564, 0.1221, -0.1497, 0.1074, 0.061, -0.2762, 0.2564, 0.1221, -0.1497, 0.1819, 0.1221, -0.1927, 0.1074, 0.061, -0.2762, -0.2517, 0.4, 0.1794, -0.3155, 0, 0.2162, -0.3155, 0, -0.0138, -0.3155, 0, -0.0138, -0.2517, 0.4, 0.0649, -0.2517, 0.4, 0.1794, -0.3155, 0, -0.0138, -0.2836, 0.2, 0.0046, -0.2517, 0.4, 0.0649, 0.0829, 0, 0.1751, 0.0829, 0, 0.2162, 0.0192, 0.4, 0.1794, 0.0192, 0.4, 0.1794, 0.0192, 0.4, 0.023, 0.0829, 0, 0.1751, 0.0192, 0.4, 0.023, 0.0634, 0.1221, 0.0829, 0.0829, 0, 0.1751, 0.0192, 0.4, 0.023, 0.0634, 0.1221, 0.0422, 0.0634, 0.1221, 0.0829, 0.0192, 0.4, 0.023, 0.051, 0.2, 0.0046, 0.0634, 0.1221, 0.0422, -0.193, 0.2675, -0.2751, -0.2253, 0, -0.3312, -0.0229, 0, -0.3312, -0.0229, 0, -0.3312, -0.0391, 0.1338, -0.3031, -0.193, 0.2675, -0.2751, -0.0391, 0.1338, -0.3031, -0.0922, 0.2675, -0.2751, -0.193, 0.2675, -0.2751, -0.1163, 0.2, 0.2944, -0.1163, 0, 0.3312, -0.3155, 0, 0.2162, -0.3155, 0, 0.2162, -0.2517, 0.4, 0.1794, -0.1163, 0.2, 0.2944, -0.2517, 0.4, 0.1794, -0.184, 0.4, 0.2185, -0.1163, 0.2, 0.2944, -0.014, 0.1221, -0.0473, -0.052, 0.2675, -0.0425, 0.0135, 0.2675, -0.1559, 0.0135, 0.2675, -0.1559, 0.0487, 0.1221, -0.1559, -0.014, 0.1221, -0.0473, 0.0159, 0, -0.2638, 0.1074, 0, -0.3167, 0.1074, 0.061, -0.2762, 0.1074, 0.061, -0.2762, 0.0288, 0.1221, -0.1903, 0.0159, 0, -0.2638, 0.1074, 0.061, -0.2762, 0.0329, 0.1221, -0.1927, 0.0288, 0.1221, -0.1903, 0.0288, 0.1221, -0.1903, 0.0487, 0.1221, -0.1559, 0.0135, 0.2675, -0.1559, 0.0135, 0.2675, -0.1559, -0.0369, 0.2675, -0.2431, 0.0288, 0.1221, -0.1903, -0.0369, 0.2675, -0.2431, 0.0159, 0, -0.2638, 0.0288, 0.1221, -0.1903, -0.0369, 0.2675, -0.2431, -0.0391, 0.1338, -0.3031, 0.0159, 0, -0.2638, -0.0391, 0.1338, -0.3031, -0.0229, 0, -0.3312, 0.0159, 0, -0.2638, -0.1163, 0.4, -0.0552, -0.1163, 0.2675, -0.0796, -0.052, 0.2675, -0.0425, 0.0192, 0.4, 0.023, -0.1163, 0.4, -0.0552, -0.052, 0.2675, -0.0425, 0.051, 0.2, 0.0046, 0.0192, 0.4, 0.023, -0.052, 0.2675, -0.0425, 0.0122, 0.1221, -0.0322, 0.051, 0.2, 0.0046, -0.052, 0.2675, -0.0425, -0.052, 0.2675, -0.0425, -0.014, 0.1221, -0.0473, 0.0122, 0.1221, -0.0322, 0.0192, 0.4, 0.1794, 0.0829, 0, 0.2162, -0.1163, 0, 0.3312, -0.1163, 0, 0.3312, -0.1163, 0.2, 0.2944, 0.0192, 0.4, 0.1794, -0.1163, 0.2, 0.2944, -0.0486, 0.4, 0.2185, 0.0192, 0.4, 0.1794, -0.2274, 0.2675, -0.2155, -0.2942, 0.1338, -0.1559, -0.3265, 0, -0.1559, -0.3265, 0, -0.1559, -0.2253, 0, -0.3312, -0.2274, 0.2675, -0.2155, -0.2253, 0, -0.3312, -0.193, 0.2675, -0.2751, -0.2274, 0.2675, -0.2155, -0.184, 0.4, 0.2185, -0.2517, 0.4, 0.1794, -0.2517, 0.4, 0.0649, -0.2517, 0.4, 0.0649, -0.2154, 0.4, 0.002, -0.184, 0.4, 0.2185, -0.2154, 0.4, 0.002, -0.1163, 0.4, -0.0552, -0.184, 0.4, 0.2185, -0.1163, 0.4, -0.0552, -0.0486, 0.4, 0.2185, -0.184, 0.4, 0.2185, -0.1163, 0.4, -0.0552, 0.0192, 0.4, 0.023, -0.0486, 0.4, 0.2185, 0.0192, 0.4, 0.023, 0.0192, 0.4, 0.1794, -0.0486, 0.4, 0.2185, 0.0122, 0.1221, -0.0322, -0.014, 0.1221, -0.0473, 0.0487, 0.1221, -0.1559, 0.0487, 0.1221, -0.1559, 0.0634, 0.1221, 0.0422, 0.0122, 0.1221, -0.0322, 0.1819, 0.1221, -0.1927, 0.0634, 0.1221, 0.0422, 0.0487, 0.1221, -0.1559, 0.0329, 0.1221, -0.1927, 0.1819, 0.1221, -0.1927, 0.0487, 0.1221, -0.1559, 0.0487, 0.1221, -0.1559, 0.0288, 0.1221, -0.1903, 0.0329, 0.1221, -0.1927, 0.1819, 0.1221, -0.1927, 0.1074, 0.1221, 0.1083, 0.0634, 0.1221, 0.0422, 0.1074, 0.1221, 0.1083, 0.0634, 0.1221, 0.0829, 0.0634, 0.1221, 0.0422, 0.1819, 0.1221, -0.1927, 0.2165, 0.1221, 0.0454, 0.1074, 0.1221, 0.1083, 0.1819, 0.1221, -0.1927, 0.2564, 0.1221, -0.1497, 0.2165, 0.1221, 0.0454, 0.2564, 0.1221, -0.1497, 0.2564, 0.1221, -0.0238, 0.2165, 0.1221, 0.0454, -0.2253, 0, -0.3312, -0.3265, 0, -0.1559, -0.2623, 0, -0.0446, -0.1163, 0, 0.3312, -0.2253, 0, -0.3312, -0.2623, 0, -0.0446, -0.1163, 0, 0.3312, -0.0229, 0, -0.3312, -0.2253, 0, -0.3312, -0.3155, 0, 0.2162, -0.1163, 0, 0.3312, -0.2623, 0, -0.0446, -0.2623, 0, -0.0446, -0.3155, 0, -0.0138, -0.3155, 0, 0.2162, -0.1163, 0, 0.3312, 0.0829, 0, 0.2162, -0.0229, 0, -0.3312, 0.0829, 0, 0.2162, 0.0159, 0, -0.2638, -0.0229, 0, -0.3312, 0.0829, 0, 0.2162, 0.0829, 0, 0.1751, 0.0159, 0, -0.2638, 0.1074, 0, -0.3167, 0.0159, 0, -0.2638, 0.0829, 0, 0.1751, 0.0829, 0, 0.1751, 0.1074, 0, 0.1893, 0.1074, 0, -0.3167, 0.1074, 0, 0.1893, 0.3265, 0, -0.1902, 0.1074, 0, -0.3167, 0.1074, 0, 0.1893, 0.3265, 0, 0.0628, 0.3265, 0, -0.1902, -0.193, 0.2675, -0.0367, -0.2274, 0.2675, -0.0963, -0.2274, 0.2675, -0.2155, -0.2274, 0.2675, -0.2155, -0.193, 0.2675, -0.2751, -0.193, 0.2675, -0.0367, -0.193, 0.2675, -0.2751, -0.1907, 0.2675, -0.0367, -0.193, 0.2675, -0.0367, -0.193, 0.2675, -0.2751, -0.0922, 0.2675, -0.2751, -0.1907, 0.2675, -0.0367, -0.0922, 0.2675, -0.2751, -0.1163, 0.2675, -0.0796, -0.1907, 0.2675, -0.0367, -0.0922, 0.2675, -0.2751, -0.052, 0.2675, -0.0425, -0.1163, 0.2675, -0.0796, -0.0922, 0.2675, -0.2751, -0.0369, 0.2675, -0.2431, -0.052, 0.2675, -0.0425, -0.0369, 0.2675, -0.2431, 0.0135, 0.2675, -0.1559, -0.052, 0.2675, -0.0425, -0.3155, 0, -0.0138, -0.2623, 0, -0.0446, -0.1935, 0.2634, -0.0358, -0.1935, 0.2634, -0.0358, -0.2836, 0.2, 0.0046, -0.3155, 0, -0.0138, -0.1935, 0.2634, -0.0358, -0.2154, 0.4, 0.002, -0.2836, 0.2, 0.0046, -0.1935, 0.2634, -0.0358, -0.1907, 0.2675, -0.0367, -0.2154, 0.4, 0.002, -0.1907, 0.2675, -0.0367, -0.1163, 0.2675, -0.0796, -0.2154, 0.4, 0.002, -0.1163, 0.2675, -0.0796, -0.1163, 0.4, -0.0552, -0.2154, 0.4, 0.002, -0.193, 0.2675, -0.0367, -0.1935, 0.2634, -0.0358, -0.2623, 0, -0.0446, -0.2623, 0, -0.0446, -0.2274, 0.2675, -0.0963, -0.193, 0.2675, -0.0367, -0.2623, 0, -0.0446, -0.3265, 0, -0.1559, -0.2274, 0.2675, -0.0963, -0.3265, 0, -0.1559, -0.2942, 0.1338, -0.1559, -0.2274, 0.2675, -0.0963, 0.2915, 0.061, 0.0426, 0.3265, 0, 0.0628, 0.1074, 0, 0.1893, 0.1074, 0, 0.1893, 0.1074, 0.1221, 0.1083, 0.2915, 0.061, 0.0426, 0.1074, 0.1221, 0.1083, 0.2165, 0.1221, 0.0454, 0.2915, 0.061, 0.0426, -0.193, 0.2675, -0.0367, -0.1907, 0.2675, -0.0367, -0.1935, 0.2634, -0.0358) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pkdxv"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4qr8f"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_lqif2"] +_surfaces = [{ +"aabb": AABB(-0.633028, -0.230411, -0.633028, 1.26606, 1.23041, 1.26606), +"format": 4097, +"index_count": 18, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 1, 0, 0, 0, 4, 0, 4, 0, 3, 0, 1, 0, 2, 0, 5, 0, 4, 0, 4, 0, 0, 0, 2, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 66, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63) +}, { +"aabb": AABB(-0.633028, -0.230411, -0.633028, 1.26606, 1.23041, 1.26606), +"format": 4097, +"index_count": 390, +"index_data": PackedByteArray(7, 0, 6, 0, 2, 0, 6, 0, 7, 0, 2, 0, 1, 0, 8, 0, 9, 0, 8, 0, 1, 0, 9, 0, 5, 0, 10, 0, 11, 0, 10, 0, 5, 0, 11, 0, 13, 0, 3, 0, 12, 0, 3, 0, 13, 0, 12, 0, 11, 0, 14, 0, 15, 0, 15, 0, 5, 0, 11, 0, 15, 0, 16, 0, 5, 0, 16, 0, 15, 0, 17, 0, 16, 0, 18, 0, 5, 0, 18, 0, 16, 0, 19, 0, 18, 0, 20, 0, 5, 0, 20, 0, 18, 0, 21, 0, 20, 0, 22, 0, 5, 0, 22, 0, 20, 0, 23, 0, 22, 0, 7, 0, 5, 0, 7, 0, 2, 0, 5, 0, 7, 0, 22, 0, 24, 0, 14, 0, 11, 0, 15, 0, 5, 0, 15, 0, 11, 0, 16, 0, 15, 0, 5, 0, 15, 0, 16, 0, 17, 0, 18, 0, 16, 0, 5, 0, 16, 0, 18, 0, 19, 0, 20, 0, 18, 0, 5, 0, 18, 0, 20, 0, 21, 0, 22, 0, 20, 0, 5, 0, 20, 0, 22, 0, 23, 0, 7, 0, 22, 0, 5, 0, 22, 0, 7, 0, 24, 0, 2, 0, 7, 0, 5, 0, 5, 0, 3, 0, 13, 0, 13, 0, 25, 0, 5, 0, 13, 0, 26, 0, 25, 0, 25, 0, 27, 0, 5, 0, 27, 0, 28, 0, 5, 0, 25, 0, 29, 0, 27, 0, 27, 0, 30, 0, 28, 0, 28, 0, 31, 0, 5, 0, 28, 0, 32, 0, 31, 0, 31, 0, 33, 0, 5, 0, 31, 0, 34, 0, 33, 0, 33, 0, 35, 0, 5, 0, 33, 0, 36, 0, 35, 0, 35, 0, 37, 0, 5, 0, 37, 0, 38, 0, 5, 0, 38, 0, 39, 0, 5, 0, 39, 0, 10, 0, 5, 0, 3, 0, 5, 0, 13, 0, 25, 0, 13, 0, 5, 0, 26, 0, 13, 0, 25, 0, 27, 0, 25, 0, 5, 0, 28, 0, 27, 0, 5, 0, 29, 0, 25, 0, 27, 0, 30, 0, 27, 0, 28, 0, 31, 0, 28, 0, 5, 0, 32, 0, 28, 0, 31, 0, 33, 0, 31, 0, 5, 0, 34, 0, 31, 0, 33, 0, 35, 0, 33, 0, 5, 0, 36, 0, 33, 0, 35, 0, 37, 0, 35, 0, 5, 0, 38, 0, 37, 0, 5, 0, 39, 0, 38, 0, 5, 0, 10, 0, 39, 0, 5, 0, 5, 0, 2, 0, 1, 0, 1, 0, 3, 0, 5, 0, 40, 0, 8, 0, 1, 0, 1, 0, 41, 0, 40, 0, 1, 0, 2, 0, 41, 0, 2, 0, 42, 0, 41, 0, 2, 0, 43, 0, 42, 0, 42, 0, 44, 0, 41, 0, 43, 0, 45, 0, 42, 0, 2, 0, 46, 0, 43, 0, 46, 0, 47, 0, 43, 0, 2, 0, 48, 0, 46, 0, 48, 0, 49, 0, 46, 0, 2, 0, 50, 0, 48, 0, 50, 0, 51, 0, 48, 0, 2, 0, 52, 0, 50, 0, 2, 0, 53, 0, 52, 0, 2, 0, 54, 0, 53, 0, 2, 0, 6, 0, 54, 0, 8, 0, 40, 0, 1, 0, 41, 0, 1, 0, 40, 0, 2, 0, 1, 0, 41, 0, 42, 0, 2, 0, 41, 0, 43, 0, 2, 0, 42, 0, 44, 0, 42, 0, 41, 0, 45, 0, 43, 0, 42, 0, 46, 0, 2, 0, 43, 0, 47, 0, 46, 0, 43, 0, 48, 0, 2, 0, 46, 0, 49, 0, 48, 0, 46, 0, 50, 0, 2, 0, 48, 0, 51, 0, 50, 0, 48, 0, 52, 0, 2, 0, 50, 0, 53, 0, 2, 0, 52, 0, 54, 0, 2, 0, 53, 0, 6, 0, 2, 0, 54, 0, 9, 0, 55, 0, 56, 0, 56, 0, 1, 0, 9, 0, 56, 0, 57, 0, 1, 0, 57, 0, 56, 0, 58, 0, 57, 0, 59, 0, 1, 0, 59, 0, 57, 0, 60, 0, 59, 0, 61, 0, 1, 0, 61, 0, 59, 0, 62, 0, 61, 0, 63, 0, 1, 0, 63, 0, 61, 0, 64, 0, 63, 0, 12, 0, 1, 0, 12, 0, 3, 0, 1, 0, 12, 0, 63, 0, 65, 0, 55, 0, 9, 0, 56, 0, 1, 0, 56, 0, 9, 0, 57, 0, 56, 0, 1, 0, 56, 0, 57, 0, 58, 0, 59, 0, 57, 0, 1, 0, 57, 0, 59, 0, 60, 0, 61, 0, 59, 0, 1, 0, 59, 0, 61, 0, 62, 0, 63, 0, 61, 0, 1, 0, 61, 0, 63, 0, 64, 0, 12, 0, 63, 0, 1, 0, 63, 0, 12, 0, 65, 0, 3, 0, 12, 0, 1, 0), +"lods": [0.0632573, PackedByteArray(7, 0, 6, 0, 2, 0, 6, 0, 7, 0, 2, 0, 1, 0, 8, 0, 9, 0, 8, 0, 1, 0, 9, 0, 5, 0, 10, 0, 11, 0, 10, 0, 5, 0, 11, 0, 13, 0, 3, 0, 12, 0, 3, 0, 13, 0, 12, 0, 15, 0, 5, 0, 11, 0, 15, 0, 18, 0, 5, 0, 18, 0, 22, 0, 5, 0, 22, 0, 7, 0, 5, 0, 7, 0, 2, 0, 5, 0, 5, 0, 15, 0, 11, 0, 18, 0, 15, 0, 5, 0, 22, 0, 18, 0, 5, 0, 7, 0, 22, 0, 5, 0, 2, 0, 7, 0, 5, 0, 5, 0, 3, 0, 13, 0, 13, 0, 25, 0, 5, 0, 25, 0, 28, 0, 5, 0, 28, 0, 33, 0, 5, 0, 33, 0, 39, 0, 5, 0, 39, 0, 10, 0, 5, 0, 3, 0, 5, 0, 13, 0, 25, 0, 13, 0, 5, 0, 28, 0, 25, 0, 5, 0, 33, 0, 28, 0, 5, 0, 39, 0, 33, 0, 5, 0, 10, 0, 39, 0, 5, 0, 5, 0, 2, 0, 1, 0, 1, 0, 3, 0, 5, 0, 40, 0, 8, 0, 1, 0, 1, 0, 41, 0, 40, 0, 1, 0, 2, 0, 41, 0, 2, 0, 42, 0, 41, 0, 2, 0, 43, 0, 42, 0, 2, 0, 46, 0, 43, 0, 2, 0, 48, 0, 46, 0, 2, 0, 50, 0, 48, 0, 2, 0, 52, 0, 50, 0, 2, 0, 54, 0, 52, 0, 2, 0, 6, 0, 54, 0, 8, 0, 40, 0, 1, 0, 41, 0, 1, 0, 40, 0, 2, 0, 1, 0, 41, 0, 42, 0, 2, 0, 41, 0, 43, 0, 2, 0, 42, 0, 46, 0, 2, 0, 43, 0, 48, 0, 2, 0, 46, 0, 50, 0, 2, 0, 48, 0, 52, 0, 2, 0, 50, 0, 54, 0, 2, 0, 52, 0, 6, 0, 2, 0, 54, 0, 56, 0, 1, 0, 9, 0, 56, 0, 57, 0, 1, 0, 57, 0, 59, 0, 1, 0, 59, 0, 61, 0, 1, 0, 61, 0, 63, 0, 1, 0, 63, 0, 12, 0, 1, 0, 12, 0, 3, 0, 1, 0, 1, 0, 56, 0, 9, 0, 57, 0, 56, 0, 1, 0, 59, 0, 57, 0, 1, 0, 61, 0, 59, 0, 1, 0, 63, 0, 61, 0, 1, 0, 12, 0, 63, 0, 1, 0, 3, 0, 12, 0, 1, 0), 0.393173, PackedByteArray(7, 0, 6, 0, 2, 0, 6, 0, 7, 0, 2, 0, 1, 0, 8, 0, 9, 0, 8, 0, 1, 0, 9, 0, 5, 0, 10, 0, 11, 0, 10, 0, 5, 0, 11, 0, 13, 0, 3, 0, 12, 0, 3, 0, 13, 0, 12, 0, 15, 0, 5, 0, 11, 0, 15, 0, 7, 0, 5, 0, 7, 0, 2, 0, 5, 0, 5, 0, 15, 0, 11, 0, 7, 0, 15, 0, 5, 0, 2, 0, 7, 0, 5, 0, 5, 0, 3, 0, 13, 0, 13, 0, 28, 0, 5, 0, 28, 0, 10, 0, 5, 0, 3, 0, 5, 0, 13, 0, 28, 0, 13, 0, 5, 0, 10, 0, 28, 0, 5, 0, 5, 0, 2, 0, 1, 0, 1, 0, 3, 0, 5, 0, 41, 0, 8, 0, 1, 0, 1, 0, 2, 0, 41, 0, 2, 0, 6, 0, 41, 0, 8, 0, 41, 0, 1, 0, 2, 0, 1, 0, 41, 0, 6, 0, 2, 0, 41, 0, 56, 0, 1, 0, 9, 0, 56, 0, 12, 0, 1, 0, 12, 0, 3, 0, 1, 0, 1, 0, 56, 0, 9, 0, 12, 0, 56, 0, 1, 0, 3, 0, 12, 0, 1, 0)], +"name": "grass", +"primitive": 3, +"vertex_count": 66, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_vjvuh"] +resource_name = "blockSlope_Mesh blockSlope" +_surfaces = [{ +"aabb": AABB(-0.633028, -0.230411, -0.633028, 1.26606, 1.23041, 1.26606), +"attribute_data": PackedByteArray(246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 155, 12, 35, 192, 169, 25, 146, 65, 0, 80, 248, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 80, 248, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 119, 37, 204, 181, 140, 107, 199, 193, 119, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 64, 170, 25, 146, 65, 148, 12, 35, 192, 170, 25, 146, 65, 91, 37, 204, 53, 130, 90, 56, 65, 91, 37, 204, 53, 130, 90, 56, 65, 148, 12, 35, 192, 170, 25, 146, 65, 164, 12, 35, 64, 170, 25, 146, 65, 0, 210, 172, 46, 140, 107, 199, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 0, 210, 172, 46, 140, 107, 199, 193, 205, 59, 131, 65, 142, 137, 170, 65, 71, 249, 81, 65, 5, 99, 144, 65, 246, 122, 157, 65, 5, 99, 144, 65, 246, 122, 157, 65, 248, 122, 45, 65, 75, 249, 209, 64, 5, 99, 144, 65, 246, 122, 29, 65, 142, 137, 170, 65, 136, 85, 150, 41, 5, 99, 144, 65, 66, 249, 81, 64, 142, 137, 170, 65, 75, 249, 209, 192, 5, 99, 144, 65, 66, 249, 81, 192, 142, 137, 170, 65, 71, 249, 81, 193, 5, 99, 144, 65, 246, 122, 29, 193, 142, 137, 170, 65, 246, 122, 157, 193, 5, 99, 144, 65, 246, 122, 157, 193, 248, 122, 45, 65, 204, 59, 131, 193, 142, 137, 170, 65, 246, 122, 157, 65, 5, 99, 144, 65, 71, 249, 81, 65, 5, 99, 144, 65, 205, 59, 131, 65, 142, 137, 170, 65, 246, 122, 157, 65, 248, 122, 45, 65, 75, 249, 209, 64, 5, 99, 144, 65, 246, 122, 29, 65, 142, 137, 170, 65, 136, 85, 150, 41, 5, 99, 144, 65, 66, 249, 81, 64, 142, 137, 170, 65, 75, 249, 209, 192, 5, 99, 144, 65, 66, 249, 81, 192, 142, 137, 170, 65, 71, 249, 81, 193, 5, 99, 144, 65, 246, 122, 29, 193, 142, 137, 170, 65, 246, 122, 157, 193, 5, 99, 144, 65, 204, 59, 131, 193, 142, 137, 170, 65, 246, 122, 157, 193, 248, 122, 45, 65, 67, 31, 215, 65, 96, 238, 247, 193, 165, 136, 229, 65, 116, 29, 192, 193, 50, 145, 230, 192, 60, 105, 80, 65, 51, 112, 195, 65, 21, 25, 148, 193, 15, 6, 219, 65, 80, 201, 144, 193, 193, 87, 161, 65, 106, 41, 80, 193, 159, 126, 126, 65, 84, 65, 240, 192, 157, 237, 184, 65, 220, 137, 73, 193, 43, 213, 150, 65, 64, 2, 227, 192, 187, 77, 58, 65, 171, 95, 0, 192, 114, 121, 105, 65, 230, 194, 203, 191, 174, 57, 236, 64, 84, 195, 95, 64, 142, 72, 37, 65, 139, 65, 122, 64, 205, 175, 71, 64, 148, 249, 15, 65, 84, 47, 194, 64, 33, 153, 22, 65, 51, 54, 231, 63, 224, 161, 110, 65, 133, 39, 146, 191, 84, 2, 104, 65, 132, 40, 29, 192, 79, 85, 163, 65, 169, 235, 172, 192, 138, 5, 160, 65, 50, 145, 230, 192, 60, 105, 80, 65, 165, 136, 229, 65, 116, 29, 192, 193, 67, 31, 215, 65, 96, 238, 247, 193, 51, 112, 195, 65, 21, 25, 148, 193, 15, 6, 219, 65, 80, 201, 144, 193, 193, 87, 161, 65, 106, 41, 80, 193, 159, 126, 126, 65, 84, 65, 240, 192, 157, 237, 184, 65, 220, 137, 73, 193, 43, 213, 150, 65, 64, 2, 227, 192, 187, 77, 58, 65, 171, 95, 0, 192, 114, 121, 105, 65, 230, 194, 203, 191, 174, 57, 236, 64, 84, 195, 95, 64, 142, 72, 37, 65, 139, 65, 122, 64, 205, 175, 71, 64, 148, 249, 15, 65, 84, 47, 194, 64, 33, 153, 22, 65, 51, 54, 231, 63, 224, 161, 110, 65, 133, 39, 146, 191, 84, 2, 104, 65, 132, 40, 29, 192, 79, 85, 163, 65, 169, 235, 172, 192, 138, 5, 160, 65, 246, 122, 157, 193, 247, 181, 110, 65, 246, 122, 157, 193, 121, 8, 35, 194, 246, 122, 157, 65, 247, 181, 110, 65, 246, 122, 157, 65, 121, 8, 35, 194, 165, 136, 229, 193, 117, 29, 192, 193, 67, 31, 215, 193, 96, 238, 247, 193, 15, 6, 219, 193, 80, 201, 144, 193, 51, 112, 195, 193, 21, 25, 148, 193, 49, 145, 230, 64, 60, 105, 80, 65, 193, 87, 161, 193, 106, 41, 80, 193, 159, 126, 126, 193, 84, 65, 240, 192, 157, 237, 184, 193, 220, 137, 73, 193, 43, 213, 150, 193, 64, 2, 227, 192, 187, 77, 58, 193, 171, 95, 0, 192, 114, 121, 105, 193, 228, 194, 203, 191, 174, 57, 236, 192, 83, 195, 95, 64, 142, 72, 37, 193, 140, 65, 122, 64, 205, 175, 71, 192, 148, 249, 15, 65, 85, 47, 194, 192, 33, 153, 22, 65, 53, 54, 231, 191, 224, 161, 110, 65, 132, 39, 146, 63, 84, 2, 104, 65, 131, 40, 29, 64, 79, 85, 163, 65, 169, 235, 172, 64, 138, 5, 160, 65, 15, 6, 219, 193, 80, 201, 144, 193, 67, 31, 215, 193, 96, 238, 247, 193, 165, 136, 229, 193, 117, 29, 192, 193, 51, 112, 195, 193, 21, 25, 148, 193, 49, 145, 230, 64, 60, 105, 80, 65, 193, 87, 161, 193, 106, 41, 80, 193, 159, 126, 126, 193, 84, 65, 240, 192, 157, 237, 184, 193, 220, 137, 73, 193, 43, 213, 150, 193, 64, 2, 227, 192, 187, 77, 58, 193, 171, 95, 0, 192, 114, 121, 105, 193, 228, 194, 203, 191, 174, 57, 236, 192, 83, 195, 95, 64, 142, 72, 37, 193, 140, 65, 122, 64, 205, 175, 71, 192, 148, 249, 15, 65, 85, 47, 194, 192, 33, 153, 22, 65, 53, 54, 231, 191, 224, 161, 110, 65, 132, 39, 146, 63, 84, 2, 104, 65, 131, 40, 29, 64, 79, 85, 163, 65, 169, 235, 172, 64, 138, 5, 160, 65, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 54, 253, 97, 169, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 54, 253, 97, 169, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193), +"format": 4119, +"index_count": 18, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 7, 0, 9, 0, 8, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0), +"material": SubResource("StandardMaterial3D_pkdxv"), +"name": "dirt", +"primitive": 3, +"vertex_count": 178, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 255, 255, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 255, 255, 127, 255, 255, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 0, 0, 255, 127, 255, 127, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 255, 255, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 255, 191, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 172, 28, 85, 206, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 0, 0, 0, 128, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 0, 128, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 0, 128, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 76, 34, 151, 196, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 76, 34, 151, 196, 0, 0, 0, 128, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 76, 34, 151, 196, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 76, 34, 151, 196, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 102, 187, 179, 93, 0, 0, 0, 128, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 102, 187, 179, 93, 0, 0, 0, 128, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 102, 187, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 178, 221, 151, 196, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 178, 221, 151, 196, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 0, 128, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 152, 68, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 152, 68, 179, 93, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 152, 68, 179, 93, 0, 0, 0, 128, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 152, 68, 179, 93, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 0, 0, 0, 128, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 0, 0, 0, 128, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.633028, -0.230411, -0.633028, 1.26606, 1.23041, 1.26606), +"attribute_data": PackedByteArray(246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 0, 0, 128, 63, 246, 122, 157, 193, 0, 0, 128, 63, 246, 122, 157, 65, 246, 122, 25, 194, 246, 122, 157, 193, 246, 122, 25, 194, 246, 122, 157, 65, 246, 122, 149, 193, 246, 122, 157, 65, 246, 122, 165, 65, 246, 122, 157, 193, 246, 122, 149, 193, 246, 122, 157, 193, 246, 122, 165, 65, 155, 12, 35, 192, 169, 25, 146, 65, 0, 80, 248, 44, 129, 90, 56, 65, 155, 12, 35, 64, 169, 25, 146, 65, 155, 12, 35, 64, 169, 25, 146, 65, 0, 80, 248, 44, 129, 90, 56, 65, 155, 12, 35, 192, 169, 25, 146, 65, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 192, 36, 127, 145, 193, 119, 37, 204, 181, 140, 107, 199, 193, 119, 37, 204, 181, 140, 107, 199, 193, 164, 12, 35, 192, 36, 127, 145, 193, 148, 12, 35, 64, 36, 127, 145, 193, 164, 12, 35, 64, 170, 25, 146, 65, 148, 12, 35, 192, 170, 25, 146, 65, 91, 37, 204, 53, 130, 90, 56, 65, 91, 37, 204, 53, 130, 90, 56, 65, 148, 12, 35, 192, 170, 25, 146, 65, 164, 12, 35, 64, 170, 25, 146, 65, 0, 210, 172, 46, 140, 107, 199, 193, 157, 12, 35, 64, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 192, 35, 127, 145, 193, 157, 12, 35, 64, 35, 127, 145, 193, 0, 210, 172, 46, 140, 107, 199, 193, 205, 59, 131, 65, 142, 137, 170, 65, 71, 249, 81, 65, 5, 99, 144, 65, 246, 122, 157, 65, 5, 99, 144, 65, 246, 122, 157, 65, 248, 122, 45, 65, 75, 249, 209, 64, 5, 99, 144, 65, 246, 122, 29, 65, 142, 137, 170, 65, 136, 85, 150, 41, 5, 99, 144, 65, 66, 249, 81, 64, 142, 137, 170, 65, 75, 249, 209, 192, 5, 99, 144, 65, 66, 249, 81, 192, 142, 137, 170, 65, 71, 249, 81, 193, 5, 99, 144, 65, 246, 122, 29, 193, 142, 137, 170, 65, 246, 122, 157, 193, 5, 99, 144, 65, 246, 122, 157, 193, 248, 122, 45, 65, 204, 59, 131, 193, 142, 137, 170, 65, 246, 122, 157, 65, 5, 99, 144, 65, 71, 249, 81, 65, 5, 99, 144, 65, 205, 59, 131, 65, 142, 137, 170, 65, 246, 122, 157, 65, 248, 122, 45, 65, 75, 249, 209, 64, 5, 99, 144, 65, 246, 122, 29, 65, 142, 137, 170, 65, 136, 85, 150, 41, 5, 99, 144, 65, 66, 249, 81, 64, 142, 137, 170, 65, 75, 249, 209, 192, 5, 99, 144, 65, 66, 249, 81, 192, 142, 137, 170, 65, 71, 249, 81, 193, 5, 99, 144, 65, 246, 122, 29, 193, 142, 137, 170, 65, 246, 122, 157, 193, 5, 99, 144, 65, 204, 59, 131, 193, 142, 137, 170, 65, 246, 122, 157, 193, 248, 122, 45, 65, 67, 31, 215, 65, 96, 238, 247, 193, 165, 136, 229, 65, 116, 29, 192, 193, 50, 145, 230, 192, 60, 105, 80, 65, 51, 112, 195, 65, 21, 25, 148, 193, 15, 6, 219, 65, 80, 201, 144, 193, 193, 87, 161, 65, 106, 41, 80, 193, 159, 126, 126, 65, 84, 65, 240, 192, 157, 237, 184, 65, 220, 137, 73, 193, 43, 213, 150, 65, 64, 2, 227, 192, 187, 77, 58, 65, 171, 95, 0, 192, 114, 121, 105, 65, 230, 194, 203, 191, 174, 57, 236, 64, 84, 195, 95, 64, 142, 72, 37, 65, 139, 65, 122, 64, 205, 175, 71, 64, 148, 249, 15, 65, 84, 47, 194, 64, 33, 153, 22, 65, 51, 54, 231, 63, 224, 161, 110, 65, 133, 39, 146, 191, 84, 2, 104, 65, 132, 40, 29, 192, 79, 85, 163, 65, 169, 235, 172, 192, 138, 5, 160, 65, 50, 145, 230, 192, 60, 105, 80, 65, 165, 136, 229, 65, 116, 29, 192, 193, 67, 31, 215, 65, 96, 238, 247, 193, 51, 112, 195, 65, 21, 25, 148, 193, 15, 6, 219, 65, 80, 201, 144, 193, 193, 87, 161, 65, 106, 41, 80, 193, 159, 126, 126, 65, 84, 65, 240, 192, 157, 237, 184, 65, 220, 137, 73, 193, 43, 213, 150, 65, 64, 2, 227, 192, 187, 77, 58, 65, 171, 95, 0, 192, 114, 121, 105, 65, 230, 194, 203, 191, 174, 57, 236, 64, 84, 195, 95, 64, 142, 72, 37, 65, 139, 65, 122, 64, 205, 175, 71, 64, 148, 249, 15, 65, 84, 47, 194, 64, 33, 153, 22, 65, 51, 54, 231, 63, 224, 161, 110, 65, 133, 39, 146, 191, 84, 2, 104, 65, 132, 40, 29, 192, 79, 85, 163, 65, 169, 235, 172, 192, 138, 5, 160, 65, 246, 122, 157, 193, 247, 181, 110, 65, 246, 122, 157, 193, 121, 8, 35, 194, 246, 122, 157, 65, 247, 181, 110, 65, 246, 122, 157, 65, 121, 8, 35, 194, 165, 136, 229, 193, 117, 29, 192, 193, 67, 31, 215, 193, 96, 238, 247, 193, 15, 6, 219, 193, 80, 201, 144, 193, 51, 112, 195, 193, 21, 25, 148, 193, 49, 145, 230, 64, 60, 105, 80, 65, 193, 87, 161, 193, 106, 41, 80, 193, 159, 126, 126, 193, 84, 65, 240, 192, 157, 237, 184, 193, 220, 137, 73, 193, 43, 213, 150, 193, 64, 2, 227, 192, 187, 77, 58, 193, 171, 95, 0, 192, 114, 121, 105, 193, 228, 194, 203, 191, 174, 57, 236, 192, 83, 195, 95, 64, 142, 72, 37, 193, 140, 65, 122, 64, 205, 175, 71, 192, 148, 249, 15, 65, 85, 47, 194, 192, 33, 153, 22, 65, 53, 54, 231, 191, 224, 161, 110, 65, 132, 39, 146, 63, 84, 2, 104, 65, 131, 40, 29, 64, 79, 85, 163, 65, 169, 235, 172, 64, 138, 5, 160, 65, 15, 6, 219, 193, 80, 201, 144, 193, 67, 31, 215, 193, 96, 238, 247, 193, 165, 136, 229, 193, 117, 29, 192, 193, 51, 112, 195, 193, 21, 25, 148, 193, 49, 145, 230, 64, 60, 105, 80, 65, 193, 87, 161, 193, 106, 41, 80, 193, 159, 126, 126, 193, 84, 65, 240, 192, 157, 237, 184, 193, 220, 137, 73, 193, 43, 213, 150, 193, 64, 2, 227, 192, 187, 77, 58, 193, 171, 95, 0, 192, 114, 121, 105, 193, 228, 194, 203, 191, 174, 57, 236, 192, 83, 195, 95, 64, 142, 72, 37, 193, 140, 65, 122, 64, 205, 175, 71, 192, 148, 249, 15, 65, 85, 47, 194, 192, 33, 153, 22, 65, 53, 54, 231, 191, 224, 161, 110, 65, 132, 39, 146, 63, 84, 2, 104, 65, 131, 40, 29, 64, 79, 85, 163, 65, 169, 235, 172, 64, 138, 5, 160, 65, 204, 59, 131, 65, 5, 116, 76, 193, 71, 249, 81, 65, 142, 96, 128, 193, 246, 122, 157, 65, 142, 96, 128, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 54, 253, 97, 169, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 246, 122, 157, 193, 22, 6, 186, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 65, 142, 96, 128, 193, 71, 249, 81, 65, 142, 96, 128, 193, 204, 59, 131, 65, 5, 116, 76, 193, 246, 122, 157, 65, 22, 6, 186, 193, 75, 249, 209, 64, 142, 96, 128, 193, 246, 122, 29, 65, 5, 116, 76, 193, 54, 253, 97, 169, 142, 96, 128, 193, 66, 249, 81, 64, 5, 116, 76, 193, 75, 249, 209, 192, 142, 96, 128, 193, 66, 249, 81, 192, 5, 116, 76, 193, 71, 249, 81, 193, 142, 96, 128, 193, 246, 122, 29, 193, 5, 116, 76, 193, 246, 122, 157, 193, 142, 96, 128, 193, 205, 59, 131, 193, 5, 116, 76, 193, 246, 122, 157, 193, 22, 6, 186, 193), +"format": 4119, +"index_count": 390, +"index_data": PackedByteArray(16, 0, 14, 0, 15, 0, 19, 0, 17, 0, 18, 0, 22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 40, 0, 38, 0, 39, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 42, 0, 39, 0, 43, 0, 42, 0, 44, 0, 41, 0, 44, 0, 42, 0, 45, 0, 44, 0, 46, 0, 41, 0, 46, 0, 44, 0, 47, 0, 46, 0, 48, 0, 41, 0, 48, 0, 46, 0, 49, 0, 48, 0, 50, 0, 41, 0, 50, 0, 51, 0, 41, 0, 50, 0, 48, 0, 52, 0, 55, 0, 53, 0, 54, 0, 56, 0, 54, 0, 53, 0, 57, 0, 54, 0, 56, 0, 54, 0, 57, 0, 58, 0, 59, 0, 57, 0, 56, 0, 57, 0, 59, 0, 60, 0, 61, 0, 59, 0, 56, 0, 59, 0, 61, 0, 62, 0, 63, 0, 61, 0, 56, 0, 61, 0, 63, 0, 64, 0, 65, 0, 63, 0, 56, 0, 63, 0, 65, 0, 66, 0, 67, 0, 65, 0, 56, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 69, 0, 72, 0, 71, 0, 71, 0, 73, 0, 70, 0, 73, 0, 74, 0, 70, 0, 71, 0, 75, 0, 73, 0, 73, 0, 76, 0, 74, 0, 74, 0, 77, 0, 70, 0, 74, 0, 78, 0, 77, 0, 77, 0, 79, 0, 70, 0, 77, 0, 80, 0, 79, 0, 79, 0, 81, 0, 70, 0, 79, 0, 82, 0, 81, 0, 81, 0, 83, 0, 70, 0, 83, 0, 84, 0, 70, 0, 84, 0, 85, 0, 70, 0, 85, 0, 86, 0, 70, 0, 89, 0, 87, 0, 88, 0, 90, 0, 88, 0, 87, 0, 91, 0, 88, 0, 90, 0, 92, 0, 90, 0, 87, 0, 93, 0, 92, 0, 87, 0, 94, 0, 90, 0, 92, 0, 95, 0, 92, 0, 93, 0, 96, 0, 93, 0, 87, 0, 97, 0, 93, 0, 96, 0, 98, 0, 96, 0, 87, 0, 99, 0, 96, 0, 98, 0, 100, 0, 98, 0, 87, 0, 101, 0, 98, 0, 100, 0, 102, 0, 100, 0, 87, 0, 103, 0, 102, 0, 87, 0, 104, 0, 103, 0, 87, 0, 105, 0, 104, 0, 87, 0, 108, 0, 106, 0, 107, 0, 107, 0, 109, 0, 108, 0, 112, 0, 110, 0, 111, 0, 111, 0, 113, 0, 112, 0, 111, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 114, 0, 116, 0, 115, 0, 115, 0, 117, 0, 113, 0, 116, 0, 118, 0, 115, 0, 114, 0, 119, 0, 116, 0, 119, 0, 120, 0, 116, 0, 114, 0, 121, 0, 119, 0, 121, 0, 122, 0, 119, 0, 114, 0, 123, 0, 121, 0, 123, 0, 124, 0, 121, 0, 114, 0, 125, 0, 123, 0, 114, 0, 126, 0, 125, 0, 114, 0, 127, 0, 126, 0, 114, 0, 128, 0, 127, 0, 131, 0, 129, 0, 130, 0, 132, 0, 130, 0, 129, 0, 133, 0, 130, 0, 132, 0, 134, 0, 133, 0, 132, 0, 135, 0, 133, 0, 134, 0, 136, 0, 134, 0, 132, 0, 137, 0, 135, 0, 134, 0, 138, 0, 133, 0, 135, 0, 139, 0, 138, 0, 135, 0, 140, 0, 133, 0, 138, 0, 141, 0, 140, 0, 138, 0, 142, 0, 133, 0, 140, 0, 143, 0, 142, 0, 140, 0, 144, 0, 133, 0, 142, 0, 145, 0, 133, 0, 144, 0, 146, 0, 133, 0, 145, 0, 147, 0, 133, 0, 146, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 149, 0, 152, 0, 151, 0, 152, 0, 149, 0, 153, 0, 152, 0, 154, 0, 151, 0, 154, 0, 152, 0, 155, 0, 154, 0, 156, 0, 151, 0, 156, 0, 154, 0, 157, 0, 156, 0, 158, 0, 151, 0, 158, 0, 156, 0, 159, 0, 158, 0, 160, 0, 151, 0, 160, 0, 161, 0, 151, 0, 160, 0, 158, 0, 162, 0, 165, 0, 163, 0, 164, 0, 166, 0, 164, 0, 163, 0, 167, 0, 164, 0, 166, 0, 164, 0, 167, 0, 168, 0, 169, 0, 167, 0, 166, 0, 167, 0, 169, 0, 170, 0, 171, 0, 169, 0, 166, 0, 169, 0, 171, 0, 172, 0, 173, 0, 171, 0, 166, 0, 171, 0, 173, 0, 174, 0, 175, 0, 173, 0, 166, 0, 173, 0, 175, 0, 176, 0, 177, 0, 175, 0, 166, 0), +"lods": [0.0632573, PackedByteArray(16, 0, 14, 0, 15, 0, 19, 0, 17, 0, 18, 0, 22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 39, 0, 41, 0, 40, 0, 39, 0, 44, 0, 41, 0, 44, 0, 48, 0, 41, 0, 48, 0, 50, 0, 41, 0, 50, 0, 51, 0, 41, 0, 56, 0, 54, 0, 53, 0, 59, 0, 54, 0, 56, 0, 63, 0, 59, 0, 56, 0, 65, 0, 63, 0, 56, 0, 67, 0, 65, 0, 56, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 71, 0, 74, 0, 70, 0, 74, 0, 79, 0, 70, 0, 79, 0, 85, 0, 70, 0, 85, 0, 86, 0, 70, 0, 89, 0, 87, 0, 88, 0, 90, 0, 88, 0, 87, 0, 93, 0, 90, 0, 87, 0, 98, 0, 93, 0, 87, 0, 104, 0, 98, 0, 87, 0, 105, 0, 104, 0, 87, 0, 108, 0, 106, 0, 107, 0, 107, 0, 109, 0, 108, 0, 112, 0, 110, 0, 111, 0, 111, 0, 113, 0, 112, 0, 111, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 114, 0, 116, 0, 115, 0, 114, 0, 119, 0, 116, 0, 114, 0, 121, 0, 119, 0, 114, 0, 123, 0, 121, 0, 114, 0, 125, 0, 123, 0, 114, 0, 127, 0, 125, 0, 114, 0, 128, 0, 127, 0, 131, 0, 129, 0, 130, 0, 132, 0, 130, 0, 129, 0, 133, 0, 130, 0, 132, 0, 134, 0, 133, 0, 132, 0, 135, 0, 133, 0, 134, 0, 138, 0, 133, 0, 135, 0, 140, 0, 133, 0, 138, 0, 142, 0, 133, 0, 140, 0, 144, 0, 133, 0, 142, 0, 146, 0, 133, 0, 144, 0, 147, 0, 133, 0, 146, 0, 149, 0, 151, 0, 150, 0, 149, 0, 152, 0, 151, 0, 152, 0, 154, 0, 151, 0, 154, 0, 156, 0, 151, 0, 156, 0, 158, 0, 151, 0, 158, 0, 160, 0, 151, 0, 160, 0, 161, 0, 151, 0, 166, 0, 164, 0, 163, 0, 167, 0, 164, 0, 166, 0, 169, 0, 167, 0, 166, 0, 171, 0, 169, 0, 166, 0, 173, 0, 171, 0, 166, 0, 175, 0, 173, 0, 166, 0, 177, 0, 175, 0, 166, 0), 0.393173, PackedByteArray(16, 0, 14, 0, 15, 0, 19, 0, 17, 0, 18, 0, 22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0, 28, 0, 26, 0, 27, 0, 31, 0, 29, 0, 30, 0, 34, 0, 32, 0, 33, 0, 37, 0, 35, 0, 36, 0, 39, 0, 41, 0, 40, 0, 39, 0, 50, 0, 41, 0, 50, 0, 51, 0, 41, 0, 56, 0, 54, 0, 53, 0, 65, 0, 54, 0, 56, 0, 67, 0, 65, 0, 56, 0, 70, 0, 68, 0, 69, 0, 69, 0, 74, 0, 70, 0, 74, 0, 86, 0, 70, 0, 89, 0, 87, 0, 88, 0, 93, 0, 88, 0, 87, 0, 105, 0, 93, 0, 87, 0, 108, 0, 106, 0, 107, 0, 107, 0, 109, 0, 108, 0, 113, 0, 110, 0, 111, 0, 111, 0, 114, 0, 113, 0, 114, 0, 128, 0, 113, 0, 131, 0, 132, 0, 130, 0, 133, 0, 130, 0, 132, 0, 147, 0, 133, 0, 132, 0, 149, 0, 151, 0, 150, 0, 149, 0, 160, 0, 151, 0, 160, 0, 161, 0, 151, 0, 166, 0, 164, 0, 163, 0, 175, 0, 164, 0, 166, 0, 177, 0, 175, 0, 166, 0)], +"material": SubResource("StandardMaterial3D_4qr8f"), +"name": "grass", +"primitive": 3, +"vertex_count": 178, +"vertex_data": PackedByteArray(0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 255, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 0, 0, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 255, 127, 0, 0, 0, 128, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 255, 127, 0, 0, 0, 0, 0, 128, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 82, 227, 85, 206, 0, 0, 255, 223, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 85, 78, 83, 99, 0, 0, 255, 31, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 85, 78, 83, 99, 0, 0, 255, 31, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 169, 177, 171, 156, 255, 255, 255, 159, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 172, 28, 169, 49, 255, 255, 255, 95, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 172, 28, 85, 206, 255, 63, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 169, 177, 83, 99, 255, 63, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 169, 177, 83, 99, 255, 63, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 85, 78, 171, 156, 255, 191, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 82, 227, 169, 49, 255, 191, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 82, 227, 169, 49, 255, 191, 255, 63, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 37, 209, 255, 255, 0, 0, 255, 191, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 37, 209, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 190, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 85, 85, 213, 190, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 190, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 190, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 169, 19, 208, 166, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 189, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 173, 170, 42, 62, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 166, 170, 170, 61, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 170, 170, 170, 62, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 128, 62, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 162, 79, 34, 190, 118, 109, 23, 191, 255, 127, 37, 81, 0, 0, 255, 63, 84, 85, 213, 62, 234, 240, 107, 190, 31, 14, 34, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 127, 37, 81, 0, 0, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 76, 34, 151, 196, 37, 81, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 76, 34, 151, 196, 37, 81, 255, 191, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 76, 34, 151, 196, 37, 81, 255, 191, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 76, 34, 151, 196, 37, 81, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 24, 108, 87, 63, 0, 0, 0, 63, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 23, 108, 55, 63, 0, 0, 192, 62, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 198, 3, 53, 63, 0, 0, 224, 62, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 24, 108, 23, 63, 0, 0, 128, 62, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 46, 216, 238, 62, 0, 0, 0, 62, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 196, 3, 21, 63, 0, 0, 160, 62, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 139, 7, 234, 62, 0, 0, 64, 62, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 47, 216, 174, 62, 103, 213, 141, 170, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 135, 7, 170, 62, 0, 0, 128, 61, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 94, 176, 93, 62, 0, 0, 0, 190, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 15, 15, 84, 62, 0, 0, 128, 189, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 189, 96, 187, 61, 0, 0, 128, 190, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 38, 30, 168, 61, 0, 0, 64, 190, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 181, 195, 47, 189, 0, 0, 160, 190, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 136, 62, 9, 189, 0, 0, 192, 190, 102, 187, 179, 93, 37, 81, 255, 63, 31, 14, 34, 191, 234, 240, 43, 190, 3, 0, 224, 190, 102, 187, 179, 93, 37, 81, 255, 63, 118, 109, 23, 191, 162, 79, 34, 190, 0, 0, 0, 191, 102, 187, 179, 93, 37, 81, 255, 63, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 89, 23, 119, 168, 0, 0, 0, 191, 255, 191, 255, 255, 0, 0, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 191, 255, 255, 0, 0, 255, 191, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 108, 151, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 178, 221, 151, 196, 0, 0, 108, 151, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 178, 221, 151, 196, 0, 0, 108, 151, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 178, 221, 151, 196, 0, 0, 146, 232, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 178, 221, 151, 196, 0, 0, 146, 232, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 178, 221, 151, 196, 0, 0, 108, 151, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 178, 221, 151, 196, 0, 0, 146, 232, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 178, 221, 151, 196, 0, 0, 108, 151, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 178, 221, 151, 196, 0, 0, 108, 151, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 178, 221, 151, 196, 0, 0, 108, 151, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 178, 221, 151, 196, 0, 0, 108, 151, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 178, 221, 151, 196, 0, 0, 146, 232, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 178, 221, 151, 196, 0, 0, 146, 232, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 178, 221, 151, 196, 0, 0, 146, 232, 31, 14, 34, 63, 198, 3, 53, 63, 0, 0, 224, 62, 152, 68, 179, 93, 0, 0, 146, 104, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 24, 108, 87, 63, 0, 0, 0, 63, 152, 68, 179, 93, 0, 0, 108, 23, 118, 109, 23, 63, 23, 108, 55, 63, 0, 0, 192, 62, 152, 68, 179, 93, 0, 0, 146, 104, 0, 0, 0, 63, 34, 108, 128, 168, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 24, 108, 23, 63, 0, 0, 128, 62, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 46, 216, 238, 62, 0, 0, 0, 62, 152, 68, 179, 93, 0, 0, 108, 23, 31, 14, 34, 63, 196, 3, 21, 63, 0, 0, 160, 62, 152, 68, 179, 93, 0, 0, 108, 23, 31, 14, 34, 63, 139, 7, 234, 62, 0, 0, 64, 62, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 47, 216, 174, 62, 103, 213, 141, 170, 152, 68, 179, 93, 0, 0, 146, 104, 31, 14, 34, 63, 135, 7, 170, 62, 0, 0, 128, 61, 152, 68, 179, 93, 0, 0, 108, 23, 118, 109, 23, 63, 94, 176, 93, 62, 0, 0, 0, 190, 152, 68, 179, 93, 0, 0, 146, 104, 31, 14, 34, 63, 15, 15, 84, 62, 0, 0, 128, 189, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 189, 96, 187, 61, 0, 0, 128, 190, 152, 68, 179, 93, 0, 0, 146, 104, 31, 14, 34, 63, 38, 30, 168, 61, 0, 0, 64, 190, 152, 68, 179, 93, 0, 0, 146, 104, 31, 14, 34, 63, 181, 195, 47, 189, 0, 0, 160, 190, 152, 68, 179, 93, 0, 0, 146, 104, 118, 109, 23, 63, 136, 62, 9, 189, 0, 0, 192, 190, 152, 68, 179, 93, 0, 0, 108, 23, 31, 14, 34, 63, 234, 240, 43, 190, 3, 0, 224, 190, 152, 68, 179, 93, 0, 0, 108, 23, 118, 109, 23, 63, 162, 79, 34, 190, 0, 0, 0, 191, 152, 68, 179, 93, 0, 0, 108, 23, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 255, 127, 217, 174, 255, 255, 255, 191, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 63, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 84, 85, 213, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 62, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 62, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 169, 19, 208, 166, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 61, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 173, 170, 42, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 166, 170, 170, 189, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 170, 170, 170, 190, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 128, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 24, 108, 87, 63, 118, 109, 23, 63, 37, 209, 0, 0, 255, 255, 255, 63, 85, 85, 213, 190, 195, 3, 69, 63, 31, 14, 34, 63, 37, 209, 0, 0, 255, 255, 255, 63, 0, 0, 0, 191, 0, 0, 128, 63, 0, 0, 0, 63, 37, 209, 0, 0, 255, 255, 255, 63) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_lqif2") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_hs8j1"] +data = PackedVector3Array(0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 1, 0.5, -0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0, 0.5, 0.5, 1, 0.5, 0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, -0.5, 1, 0.5, 0.5, 1, 0.5, 0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 0, 0.5, -0.5, 0, 0.5, 0.5, 0, 0.5, 0.5, 0, -0.5, 0.5, -0.1585, -0.5915, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5915, 0.8415, 0.5, 0.5, 0.8415, 0.5915, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, -0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.5, -0.1585, -0.5915, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, -0.5915, 0.8415, 0.5, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5, 0.8415, 0.5915, -0.5, -0.1585, -0.5915, -0.4167, -0.2304, -0.633, -0.3333, -0.1585, -0.5915, -0.3333, -0.1585, -0.5915, -0.5, 0, -0.5, -0.5, -0.1585, -0.5915, -0.3333, -0.1585, -0.5915, -0.1667, -0.1585, -0.5915, -0.5, 0, -0.5, -0.1667, -0.1585, -0.5915, -0.3333, -0.1585, -0.5915, -0.25, -0.2304, -0.633, -0.1667, -0.1585, -0.5915, 0, -0.1585, -0.5915, -0.5, 0, -0.5, 0, -0.1585, -0.5915, -0.1667, -0.1585, -0.5915, -0.0833, -0.2304, -0.633, 0, -0.1585, -0.5915, 0.1667, -0.1585, -0.5915, -0.5, 0, -0.5, 0.1667, -0.1585, -0.5915, 0, -0.1585, -0.5915, 0.0833, -0.2304, -0.633, 0.1667, -0.1585, -0.5915, 0.3333, -0.1585, -0.5915, -0.5, 0, -0.5, 0.3333, -0.1585, -0.5915, 0.1667, -0.1585, -0.5915, 0.25, -0.2304, -0.633, 0.3333, -0.1585, -0.5915, 0.5, -0.1585, -0.5915, -0.5, 0, -0.5, 0.5, -0.1585, -0.5915, 0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, -0.1585, -0.5915, 0.3333, -0.1585, -0.5915, 0.4167, -0.2304, -0.633, -0.4167, -0.2304, -0.633, -0.5, -0.1585, -0.5915, -0.3333, -0.1585, -0.5915, -0.5, 0, -0.5, -0.3333, -0.1585, -0.5915, -0.5, -0.1585, -0.5915, -0.1667, -0.1585, -0.5915, -0.3333, -0.1585, -0.5915, -0.5, 0, -0.5, -0.3333, -0.1585, -0.5915, -0.1667, -0.1585, -0.5915, -0.25, -0.2304, -0.633, 0, -0.1585, -0.5915, -0.1667, -0.1585, -0.5915, -0.5, 0, -0.5, -0.1667, -0.1585, -0.5915, 0, -0.1585, -0.5915, -0.0833, -0.2304, -0.633, 0.1667, -0.1585, -0.5915, 0, -0.1585, -0.5915, -0.5, 0, -0.5, 0, -0.1585, -0.5915, 0.1667, -0.1585, -0.5915, 0.0833, -0.2304, -0.633, 0.3333, -0.1585, -0.5915, 0.1667, -0.1585, -0.5915, -0.5, 0, -0.5, 0.1667, -0.1585, -0.5915, 0.3333, -0.1585, -0.5915, 0.25, -0.2304, -0.633, 0.5, -0.1585, -0.5915, 0.3333, -0.1585, -0.5915, -0.5, 0, -0.5, 0.3333, -0.1585, -0.5915, 0.5, -0.1585, -0.5915, 0.4167, -0.2304, -0.633, 0.5, 0, -0.5, 0.5, -0.1585, -0.5915, -0.5, 0, -0.5, -0.5, 0, -0.5, -0.5, 1, 0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.7165, 0.375, -0.5, 0, -0.5, -0.5915, 0.8415, 0.5, -0.633, 0.7071, 0.4375, -0.5915, 0.7165, 0.375, -0.5915, 0.7165, 0.375, -0.5915, 0.5915, 0.25, -0.5, 0, -0.5, -0.5915, 0.5915, 0.25, -0.5915, 0.4665, 0.125, -0.5, 0, -0.5, -0.5915, 0.7165, 0.375, -0.633, 0.5821, 0.3125, -0.5915, 0.5915, 0.25, -0.5915, 0.5915, 0.25, -0.633, 0.4571, 0.1875, -0.5915, 0.4665, 0.125, -0.5915, 0.4665, 0.125, -0.5915, 0.3415, 0, -0.5, 0, -0.5, -0.5915, 0.4665, 0.125, -0.633, 0.3321, 0.0625, -0.5915, 0.3415, 0, -0.5915, 0.3415, 0, -0.5915, 0.2165, -0.125, -0.5, 0, -0.5, -0.5915, 0.3415, 0, -0.633, 0.2071, -0.0625, -0.5915, 0.2165, -0.125, -0.5915, 0.2165, -0.125, -0.5915, 0.0915, -0.25, -0.5, 0, -0.5, -0.5915, 0.2165, -0.125, -0.633, 0.0821, -0.1875, -0.5915, 0.0915, -0.25, -0.5915, 0.0915, -0.25, -0.633, -0.0429, -0.3125, -0.5, 0, -0.5, -0.633, -0.0429, -0.3125, -0.5915, -0.0335, -0.375, -0.5, 0, -0.5, -0.5915, -0.0335, -0.375, -0.633, -0.1679, -0.4375, -0.5, 0, -0.5, -0.633, -0.1679, -0.4375, -0.5915, -0.1585, -0.5, -0.5, 0, -0.5, -0.5, 1, 0.5, -0.5, 0, -0.5, -0.5915, 0.8415, 0.5, -0.5915, 0.7165, 0.375, -0.5915, 0.8415, 0.5, -0.5, 0, -0.5, -0.633, 0.7071, 0.4375, -0.5915, 0.8415, 0.5, -0.5915, 0.7165, 0.375, -0.5915, 0.5915, 0.25, -0.5915, 0.7165, 0.375, -0.5, 0, -0.5, -0.5915, 0.4665, 0.125, -0.5915, 0.5915, 0.25, -0.5, 0, -0.5, -0.633, 0.5821, 0.3125, -0.5915, 0.7165, 0.375, -0.5915, 0.5915, 0.25, -0.633, 0.4571, 0.1875, -0.5915, 0.5915, 0.25, -0.5915, 0.4665, 0.125, -0.5915, 0.3415, 0, -0.5915, 0.4665, 0.125, -0.5, 0, -0.5, -0.633, 0.3321, 0.0625, -0.5915, 0.4665, 0.125, -0.5915, 0.3415, 0, -0.5915, 0.2165, -0.125, -0.5915, 0.3415, 0, -0.5, 0, -0.5, -0.633, 0.2071, -0.0625, -0.5915, 0.3415, 0, -0.5915, 0.2165, -0.125, -0.5915, 0.0915, -0.25, -0.5915, 0.2165, -0.125, -0.5, 0, -0.5, -0.633, 0.0821, -0.1875, -0.5915, 0.2165, -0.125, -0.5915, 0.0915, -0.25, -0.633, -0.0429, -0.3125, -0.5915, 0.0915, -0.25, -0.5, 0, -0.5, -0.5915, -0.0335, -0.375, -0.633, -0.0429, -0.3125, -0.5, 0, -0.5, -0.633, -0.1679, -0.4375, -0.5915, -0.0335, -0.375, -0.5, 0, -0.5, -0.5915, -0.1585, -0.5, -0.633, -0.1679, -0.4375, -0.5, 0, -0.5, -0.5, 0, -0.5, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 1, 0.5, -0.5, 0, -0.5, 0.633, 0.7071, 0.4375, 0.5915, 0.8415, 0.5, 0.5, 1, 0.5, 0.5, 1, 0.5, 0.5915, 0.7165, 0.375, 0.633, 0.7071, 0.4375, 0.5, 1, 0.5, 0.5, 0, -0.5, 0.5915, 0.7165, 0.375, 0.5, 0, -0.5, 0.5915, 0.5915, 0.25, 0.5915, 0.7165, 0.375, 0.5, 0, -0.5, 0.5915, 0.4665, 0.125, 0.5915, 0.5915, 0.25, 0.5915, 0.5915, 0.25, 0.633, 0.5821, 0.3125, 0.5915, 0.7165, 0.375, 0.5915, 0.4665, 0.125, 0.633, 0.4571, 0.1875, 0.5915, 0.5915, 0.25, 0.5, 0, -0.5, 0.5915, 0.3415, 0, 0.5915, 0.4665, 0.125, 0.5915, 0.3415, 0, 0.633, 0.3321, 0.0625, 0.5915, 0.4665, 0.125, 0.5, 0, -0.5, 0.5915, 0.2165, -0.125, 0.5915, 0.3415, 0, 0.5915, 0.2165, -0.125, 0.633, 0.2071, -0.0625, 0.5915, 0.3415, 0, 0.5, 0, -0.5, 0.5915, 0.0915, -0.25, 0.5915, 0.2165, -0.125, 0.5915, 0.0915, -0.25, 0.633, 0.0821, -0.1875, 0.5915, 0.2165, -0.125, 0.5, 0, -0.5, 0.633, -0.0429, -0.3125, 0.5915, 0.0915, -0.25, 0.5, 0, -0.5, 0.5915, -0.0335, -0.375, 0.633, -0.0429, -0.3125, 0.5, 0, -0.5, 0.633, -0.1679, -0.4375, 0.5915, -0.0335, -0.375, 0.5, 0, -0.5, 0.5915, -0.1585, -0.5, 0.633, -0.1679, -0.4375, 0.5915, 0.8415, 0.5, 0.633, 0.7071, 0.4375, 0.5, 1, 0.5, 0.5915, 0.7165, 0.375, 0.5, 1, 0.5, 0.633, 0.7071, 0.4375, 0.5, 0, -0.5, 0.5, 1, 0.5, 0.5915, 0.7165, 0.375, 0.5915, 0.5915, 0.25, 0.5, 0, -0.5, 0.5915, 0.7165, 0.375, 0.5915, 0.4665, 0.125, 0.5, 0, -0.5, 0.5915, 0.5915, 0.25, 0.633, 0.5821, 0.3125, 0.5915, 0.5915, 0.25, 0.5915, 0.7165, 0.375, 0.633, 0.4571, 0.1875, 0.5915, 0.4665, 0.125, 0.5915, 0.5915, 0.25, 0.5915, 0.3415, 0, 0.5, 0, -0.5, 0.5915, 0.4665, 0.125, 0.633, 0.3321, 0.0625, 0.5915, 0.3415, 0, 0.5915, 0.4665, 0.125, 0.5915, 0.2165, -0.125, 0.5, 0, -0.5, 0.5915, 0.3415, 0, 0.633, 0.2071, -0.0625, 0.5915, 0.2165, -0.125, 0.5915, 0.3415, 0, 0.5915, 0.0915, -0.25, 0.5, 0, -0.5, 0.5915, 0.2165, -0.125, 0.633, 0.0821, -0.1875, 0.5915, 0.0915, -0.25, 0.5915, 0.2165, -0.125, 0.633, -0.0429, -0.3125, 0.5, 0, -0.5, 0.5915, 0.0915, -0.25, 0.5915, -0.0335, -0.375, 0.5, 0, -0.5, 0.633, -0.0429, -0.3125, 0.633, -0.1679, -0.4375, 0.5, 0, -0.5, 0.5915, -0.0335, -0.375, 0.5915, -0.1585, -0.5, 0.5, 0, -0.5, 0.633, -0.1679, -0.4375, 0.5, 0.8415, 0.5915, 0.4167, 0.7696, 0.633, 0.3333, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.5, 1, 0.5, 0.5, 1, 0.5, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, 0.4167, 0.7696, 0.633, 0.5, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.5, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, 0.3333, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.25, 0.7696, 0.633, 0, 0.8415, 0.5915, 0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, 0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.0833, 0.7696, 0.633, -0.1667, 0.8415, 0.5915, 0, 0.8415, 0.5915, 0.5, 1, 0.5, 0, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, -0.0833, 0.7696, 0.633, -0.3333, 0.8415, 0.5915, -0.1667, 0.8415, 0.5915, 0.5, 1, 0.5, -0.1667, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, -0.25, 0.7696, 0.633, -0.5, 0.8415, 0.5915, -0.3333, 0.8415, 0.5915, 0.5, 1, 0.5, -0.3333, 0.8415, 0.5915, -0.5, 0.8415, 0.5915, -0.4167, 0.7696, 0.633, -0.5, 1, 0.5, -0.5, 0.8415, 0.5915, 0.5, 1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_l4sr7"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ot3td"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_3p37u"] +_surfaces = [{ +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"format": 4097, +"index_count": 54, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 5, 0, 4, 0, 2, 0, 2, 0, 3, 0, 5, 0, 0, 0, 6, 0, 7, 0, 7, 0, 8, 0, 0, 0, 8, 0, 7, 0, 9, 0, 9, 0, 4, 0, 8, 0, 1, 0, 0, 0, 8, 0, 8, 0, 10, 0, 1, 0, 11, 0, 6, 0, 0, 0, 0, 0, 2, 0, 11, 0, 11, 0, 9, 0, 7, 0, 7, 0, 6, 0, 11, 0, 4, 0, 9, 0, 11, 0, 11, 0, 2, 0, 4, 0, 10, 0, 8, 0, 4, 0, 4, 0, 5, 0, 10, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62) +}, { +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"format": 4097, +"index_count": 870, +"index_data": PackedByteArray(14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 20, 0, 21, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 23, 0, 21, 0, 22, 0, 24, 0, 23, 0, 24, 0, 25, 0, 23, 0, 24, 0, 26, 0, 25, 0, 26, 0, 5, 0, 25, 0, 5, 0, 27, 0, 25, 0, 26, 0, 10, 0, 5, 0, 5, 0, 3, 0, 27, 0, 10, 0, 26, 0, 28, 0, 3, 0, 29, 0, 27, 0, 28, 0, 1, 0, 10, 0, 3, 0, 1, 0, 29, 0, 28, 0, 30, 0, 1, 0, 30, 0, 29, 0, 1, 0, 30, 0, 31, 0, 29, 0, 30, 0, 32, 0, 31, 0, 32, 0, 33, 0, 31, 0, 32, 0, 14, 0, 33, 0, 14, 0, 34, 0, 33, 0, 14, 0, 15, 0, 34, 0, 15, 0, 35, 0, 34, 0, 15, 0, 36, 0, 35, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 39, 0, 39, 0, 37, 0, 36, 0, 12, 0, 14, 0, 32, 0, 32, 0, 40, 0, 12, 0, 41, 0, 28, 0, 26, 0, 26, 0, 42, 0, 41, 0, 44, 0, 43, 0, 16, 0, 16, 0, 18, 0, 44, 0, 46, 0, 45, 0, 22, 0, 22, 0, 20, 0, 46, 0, 47, 0, 23, 0, 25, 0, 25, 0, 48, 0, 47, 0, 15, 0, 13, 0, 38, 0, 38, 0, 36, 0, 15, 0, 48, 0, 25, 0, 27, 0, 27, 0, 49, 0, 48, 0, 33, 0, 34, 0, 50, 0, 50, 0, 51, 0, 33, 0, 52, 0, 24, 0, 22, 0, 22, 0, 45, 0, 52, 0, 34, 0, 35, 0, 53, 0, 53, 0, 50, 0, 34, 0, 49, 0, 27, 0, 29, 0, 29, 0, 54, 0, 49, 0, 55, 0, 19, 0, 21, 0, 21, 0, 56, 0, 55, 0, 37, 0, 39, 0, 53, 0, 53, 0, 35, 0, 37, 0, 42, 0, 26, 0, 24, 0, 24, 0, 52, 0, 42, 0, 57, 0, 30, 0, 28, 0, 28, 0, 41, 0, 57, 0, 58, 0, 46, 0, 20, 0, 20, 0, 17, 0, 58, 0, 44, 0, 18, 0, 19, 0, 19, 0, 55, 0, 44, 0, 56, 0, 21, 0, 23, 0, 23, 0, 47, 0, 56, 0, 54, 0, 29, 0, 31, 0, 31, 0, 59, 0, 54, 0, 61, 0, 60, 0, 43, 0, 43, 0, 44, 0, 61, 0, 62, 0, 56, 0, 47, 0, 47, 0, 63, 0, 62, 0, 64, 0, 54, 0, 59, 0, 59, 0, 65, 0, 64, 0, 38, 0, 13, 0, 66, 0, 66, 0, 67, 0, 38, 0, 68, 0, 12, 0, 40, 0, 40, 0, 69, 0, 68, 0, 39, 0, 70, 0, 71, 0, 71, 0, 53, 0, 39, 0, 50, 0, 72, 0, 73, 0, 73, 0, 51, 0, 50, 0, 53, 0, 71, 0, 72, 0, 72, 0, 50, 0, 53, 0, 74, 0, 57, 0, 41, 0, 41, 0, 75, 0, 74, 0, 63, 0, 47, 0, 48, 0, 48, 0, 76, 0, 63, 0, 65, 0, 59, 0, 51, 0, 51, 0, 73, 0, 65, 0, 13, 0, 12, 0, 68, 0, 68, 0, 66, 0, 13, 0, 59, 0, 31, 0, 33, 0, 33, 0, 51, 0, 59, 0, 43, 0, 58, 0, 17, 0, 17, 0, 16, 0, 43, 0, 77, 0, 61, 0, 44, 0, 44, 0, 55, 0, 77, 0, 39, 0, 38, 0, 67, 0, 67, 0, 70, 0, 39, 0, 40, 0, 32, 0, 30, 0, 30, 0, 57, 0, 40, 0, 80, 0, 78, 0, 79, 0, 79, 0, 81, 0, 80, 0, 84, 0, 82, 0, 83, 0, 83, 0, 85, 0, 84, 0, 88, 0, 86, 0, 87, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 90, 0, 91, 0, 89, 0, 90, 0, 60, 0, 91, 0, 60, 0, 90, 0, 92, 0, 60, 0, 61, 0, 91, 0, 92, 0, 93, 0, 60, 0, 61, 0, 77, 0, 91, 0, 92, 0, 94, 0, 93, 0, 77, 0, 95, 0, 91, 0, 77, 0, 62, 0, 95, 0, 62, 0, 63, 0, 95, 0, 63, 0, 96, 0, 95, 0, 63, 0, 76, 0, 96, 0, 92, 0, 97, 0, 94, 0, 97, 0, 98, 0, 94, 0, 97, 0, 99, 0, 98, 0, 97, 0, 100, 0, 99, 0, 100, 0, 101, 0, 99, 0, 76, 0, 102, 0, 96, 0, 76, 0, 103, 0, 102, 0, 103, 0, 64, 0, 102, 0, 64, 0, 104, 0, 102, 0, 64, 0, 65, 0, 104, 0, 65, 0, 105, 0, 104, 0, 65, 0, 73, 0, 105, 0, 100, 0, 106, 0, 101, 0, 106, 0, 75, 0, 101, 0, 106, 0, 74, 0, 75, 0, 106, 0, 107, 0, 74, 0, 107, 0, 69, 0, 74, 0, 107, 0, 108, 0, 69, 0, 108, 0, 68, 0, 69, 0, 73, 0, 109, 0, 105, 0, 73, 0, 72, 0, 109, 0, 72, 0, 71, 0, 109, 0, 108, 0, 110, 0, 68, 0, 110, 0, 66, 0, 68, 0, 110, 0, 67, 0, 66, 0, 71, 0, 111, 0, 109, 0, 110, 0, 112, 0, 67, 0, 71, 0, 70, 0, 111, 0, 112, 0, 70, 0, 67, 0, 112, 0, 111, 0, 70, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 75, 0, 41, 0, 42, 0, 42, 0, 101, 0, 75, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 62, 0, 77, 0, 55, 0, 55, 0, 56, 0, 62, 0, 99, 0, 52, 0, 45, 0, 45, 0, 98, 0, 99, 0, 93, 0, 58, 0, 43, 0, 43, 0, 60, 0, 93, 0, 98, 0, 45, 0, 46, 0, 46, 0, 94, 0, 98, 0, 101, 0, 42, 0, 52, 0, 52, 0, 99, 0, 101, 0, 84, 0, 85, 0, 120, 0, 120, 0, 121, 0, 84, 0, 120, 0, 122, 0, 121, 0, 122, 0, 123, 0, 121, 0, 122, 0, 124, 0, 123, 0, 124, 0, 125, 0, 123, 0, 124, 0, 126, 0, 125, 0, 126, 0, 127, 0, 125, 0, 126, 0, 128, 0, 127, 0, 128, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 130, 0, 81, 0, 129, 0, 130, 0, 131, 0, 81, 0, 131, 0, 80, 0, 81, 0, 131, 0, 132, 0, 80, 0, 132, 0, 133, 0, 80, 0, 132, 0, 134, 0, 133, 0, 134, 0, 117, 0, 133, 0, 134, 0, 135, 0, 117, 0, 135, 0, 119, 0, 117, 0, 135, 0, 136, 0, 119, 0, 136, 0, 137, 0, 119, 0, 76, 0, 48, 0, 49, 0, 49, 0, 103, 0, 76, 0, 94, 0, 46, 0, 58, 0, 58, 0, 93, 0, 94, 0, 129, 0, 138, 0, 139, 0, 139, 0, 127, 0, 129, 0, 103, 0, 49, 0, 54, 0, 54, 0, 64, 0, 103, 0, 69, 0, 40, 0, 57, 0, 57, 0, 74, 0, 69, 0, 130, 0, 140, 0, 141, 0, 141, 0, 131, 0, 130, 0, 142, 0, 135, 0, 134, 0, 134, 0, 143, 0, 142, 0, 81, 0, 79, 0, 138, 0, 138, 0, 129, 0, 81, 0, 132, 0, 144, 0, 143, 0, 143, 0, 134, 0, 132, 0, 124, 0, 122, 0, 145, 0, 145, 0, 146, 0, 124, 0, 126, 0, 147, 0, 148, 0, 148, 0, 128, 0, 126, 0, 131, 0, 141, 0, 144, 0, 144, 0, 132, 0, 131, 0, 149, 0, 118, 0, 119, 0, 119, 0, 137, 0, 149, 0, 150, 0, 136, 0, 135, 0, 135, 0, 142, 0, 150, 0, 124, 0, 146, 0, 147, 0, 147, 0, 126, 0, 124, 0, 123, 0, 151, 0, 152, 0, 152, 0, 121, 0, 123, 0, 127, 0, 139, 0, 153, 0, 153, 0, 125, 0, 127, 0, 149, 0, 137, 0, 136, 0, 136, 0, 150, 0, 149, 0, 122, 0, 120, 0, 154, 0, 154, 0, 145, 0, 122, 0, 128, 0, 148, 0, 140, 0, 140, 0, 130, 0, 128, 0, 116, 0, 155, 0, 133, 0, 133, 0, 117, 0, 116, 0, 121, 0, 152, 0, 82, 0, 82, 0, 84, 0, 121, 0, 120, 0, 85, 0, 83, 0, 83, 0, 154, 0, 120, 0, 125, 0, 153, 0, 151, 0, 151, 0, 123, 0, 125, 0, 133, 0, 155, 0, 78, 0, 78, 0, 80, 0, 133, 0, 154, 0, 83, 0, 86, 0, 86, 0, 88, 0, 154, 0, 145, 0, 89, 0, 91, 0, 91, 0, 146, 0, 145, 0, 138, 0, 106, 0, 100, 0, 100, 0, 139, 0, 138, 0, 115, 0, 149, 0, 150, 0, 150, 0, 113, 0, 115, 0, 114, 0, 118, 0, 149, 0, 149, 0, 115, 0, 114, 0, 152, 0, 151, 0, 92, 0, 92, 0, 90, 0, 152, 0, 78, 0, 108, 0, 107, 0, 107, 0, 79, 0, 78, 0, 112, 0, 116, 0, 118, 0, 118, 0, 114, 0, 112, 0, 111, 0, 113, 0, 150, 0, 150, 0, 142, 0, 111, 0, 155, 0, 110, 0, 108, 0, 108, 0, 78, 0, 155, 0, 148, 0, 96, 0, 102, 0, 102, 0, 140, 0, 148, 0, 139, 0, 100, 0, 97, 0, 97, 0, 153, 0, 139, 0, 110, 0, 155, 0, 116, 0, 116, 0, 112, 0, 110, 0, 141, 0, 104, 0, 105, 0, 105, 0, 144, 0, 141, 0, 82, 0, 152, 0, 90, 0, 90, 0, 87, 0, 82, 0, 83, 0, 82, 0, 87, 0, 87, 0, 86, 0, 83, 0, 144, 0, 105, 0, 109, 0, 109, 0, 143, 0, 144, 0, 153, 0, 97, 0, 92, 0, 92, 0, 151, 0, 153, 0, 79, 0, 107, 0, 106, 0, 106, 0, 138, 0, 79, 0, 147, 0, 95, 0, 96, 0, 96, 0, 148, 0, 147, 0, 146, 0, 91, 0, 95, 0, 95, 0, 147, 0, 146, 0, 140, 0, 102, 0, 104, 0, 104, 0, 141, 0, 140, 0, 109, 0, 111, 0, 142, 0, 142, 0, 143, 0, 109, 0, 154, 0, 88, 0, 89, 0, 89, 0, 145, 0, 154, 0), +"name": "grass", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_3k4bs"] +resource_name = "treePine_Mesh treePine" +_surfaces = [{ +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"attribute_data": PackedByteArray(129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 192, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 120, 157, 133, 64, 240, 58, 75, 192, 120, 157, 133, 64, 120, 157, 165, 64, 120, 157, 133, 192, 240, 58, 75, 192, 120, 157, 133, 192, 120, 157, 165, 64, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 142, 224, 137, 65, 0, 0, 128, 63, 218, 45, 133, 65, 175, 189, 174, 64, 218, 45, 133, 65, 94, 123, 93, 192, 109, 207, 110, 65, 28, 193, 243, 192, 109, 207, 110, 65, 142, 224, 25, 65, 222, 252, 66, 65, 222, 252, 50, 193, 222, 252, 66, 65, 222, 252, 82, 65, 142, 224, 9, 65, 109, 207, 94, 193, 142, 224, 9, 65, 109, 207, 126, 65, 175, 189, 142, 64, 180, 91, 122, 193, 175, 189, 142, 64, 218, 45, 141, 65, 25, 228, 13, 64, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 129, 193, 25, 228, 13, 64, 25, 228, 77, 64, 25, 228, 13, 192, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 145, 65, 175, 189, 142, 192, 180, 91, 122, 193, 25, 228, 13, 192, 25, 228, 77, 64, 175, 189, 142, 192, 218, 45, 141, 65, 142, 224, 9, 193, 109, 207, 94, 193, 142, 224, 9, 193, 109, 207, 126, 65, 222, 252, 66, 193, 222, 252, 50, 193, 222, 252, 66, 193, 222, 252, 82, 65, 109, 207, 110, 193, 28, 193, 243, 192, 109, 207, 110, 193, 142, 224, 25, 65, 218, 45, 133, 193, 94, 123, 93, 192, 218, 45, 133, 193, 175, 189, 174, 64, 142, 224, 137, 193, 0, 0, 128, 63, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 240, 247, 123, 65, 0, 0, 128, 63, 5, 98, 115, 65, 178, 109, 162, 64, 5, 98, 115, 65, 100, 219, 68, 192, 12, 54, 90, 65, 240, 247, 219, 192, 12, 54, 90, 65, 248, 251, 13, 65, 44, 43, 50, 65, 44, 43, 34, 193, 12, 71, 63, 65, 0, 0, 128, 63, 44, 43, 50, 65, 44, 43, 66, 65, 137, 194, 56, 65, 107, 6, 6, 192, 137, 194, 56, 65, 54, 3, 131, 64, 181, 166, 37, 65, 12, 71, 159, 192, 181, 166, 37, 65, 12, 71, 223, 64, 240, 247, 251, 64, 12, 54, 74, 193, 239, 64, 7, 65, 222, 129, 238, 192, 12, 71, 191, 64, 181, 166, 21, 193, 178, 109, 130, 64, 5, 98, 99, 193, 107, 6, 70, 64, 137, 194, 40, 193, 240, 247, 251, 64, 12, 54, 106, 65, 239, 64, 7, 65, 239, 64, 23, 65, 12, 71, 191, 64, 181, 166, 53, 65, 178, 109, 130, 64, 2, 177, 129, 65, 107, 6, 70, 64, 137, 194, 72, 65, 0, 0, 0, 0, 240, 247, 107, 193, 0, 0, 128, 42, 12, 71, 47, 193, 107, 6, 70, 192, 137, 194, 40, 193, 178, 109, 130, 192, 5, 98, 99, 193, 12, 71, 191, 192, 181, 166, 21, 193, 240, 247, 251, 192, 12, 54, 74, 193, 239, 64, 7, 193, 222, 129, 238, 192, 0, 0, 0, 0, 248, 251, 133, 65, 0, 0, 0, 43, 12, 71, 79, 65, 107, 6, 70, 192, 137, 194, 72, 65, 178, 109, 130, 192, 2, 177, 129, 65, 12, 71, 191, 192, 181, 166, 53, 65, 240, 247, 251, 192, 12, 54, 106, 65, 239, 64, 7, 193, 239, 64, 23, 65, 44, 43, 50, 193, 44, 43, 34, 193, 181, 166, 37, 193, 12, 71, 159, 192, 137, 194, 56, 193, 107, 6, 6, 192, 44, 43, 50, 193, 44, 43, 66, 65, 181, 166, 37, 193, 12, 71, 223, 64, 137, 194, 56, 193, 54, 3, 131, 64, 12, 54, 90, 193, 240, 247, 219, 192, 12, 54, 90, 193, 248, 251, 13, 65, 12, 71, 63, 193, 0, 0, 128, 63, 5, 98, 115, 193, 100, 219, 68, 192, 5, 98, 115, 193, 178, 109, 162, 64, 240, 247, 123, 193, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 153, 249, 17, 192, 0, 0, 128, 63, 66, 0, 13, 192, 74, 192, 209, 62, 66, 0, 13, 192, 238, 143, 203, 63, 11, 214, 252, 191, 204, 252, 8, 64, 11, 214, 252, 191, 200, 204, 15, 190, 151, 112, 206, 191, 76, 56, 39, 64, 151, 112, 206, 191, 46, 225, 28, 191, 153, 249, 145, 191, 6, 107, 62, 64, 153, 249, 145, 191, 22, 172, 121, 191, 219, 31, 23, 191, 66, 0, 77, 64, 219, 31, 23, 191, 132, 0, 154, 191, 0, 0, 128, 170, 153, 249, 81, 64, 0, 0, 128, 170, 50, 243, 163, 191, 219, 31, 23, 63, 66, 0, 77, 64, 219, 31, 23, 63, 132, 0, 154, 191, 153, 249, 145, 63, 6, 107, 62, 64, 153, 249, 145, 63, 22, 172, 121, 191, 151, 112, 206, 63, 76, 56, 39, 64, 151, 112, 206, 63, 46, 225, 28, 191, 11, 214, 252, 63, 204, 252, 8, 64, 11, 214, 252, 63, 200, 204, 15, 190, 66, 0, 13, 64, 238, 143, 203, 63, 66, 0, 13, 64, 74, 192, 209, 62, 153, 249, 17, 64, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194), +"format": 4119, +"index_count": 54, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 30, 0, 28, 0, 29, 0, 29, 0, 31, 0, 30, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0), +"material": SubResource("StandardMaterial3D_l4sr7"), +"name": "dirt", +"primitive": 3, +"vertex_count": 520, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 255, 255, 255, 255, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 17, 250, 237, 133, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 255, 255, 255, 255, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 237, 133, 255, 255, 255, 255, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 255, 255, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 255, 255, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 38, 27, 38, 155, 255, 127, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 38, 27, 38, 155, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 255, 255, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 255, 255, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 216, 228, 38, 155, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 255, 255, 255, 255, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 38, 155, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 255, 255, 255, 255, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 255, 127, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 237, 5, 237, 133, 255, 127, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 237, 5, 237, 133, 255, 127, 255, 191, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 255, 255, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"attribute_data": PackedByteArray(129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 192, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 120, 157, 133, 64, 240, 58, 75, 192, 120, 157, 133, 64, 120, 157, 165, 64, 120, 157, 133, 192, 240, 58, 75, 192, 120, 157, 133, 192, 120, 157, 165, 64, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 142, 224, 137, 65, 0, 0, 128, 63, 218, 45, 133, 65, 175, 189, 174, 64, 218, 45, 133, 65, 94, 123, 93, 192, 109, 207, 110, 65, 28, 193, 243, 192, 109, 207, 110, 65, 142, 224, 25, 65, 222, 252, 66, 65, 222, 252, 50, 193, 222, 252, 66, 65, 222, 252, 82, 65, 142, 224, 9, 65, 109, 207, 94, 193, 142, 224, 9, 65, 109, 207, 126, 65, 175, 189, 142, 64, 180, 91, 122, 193, 175, 189, 142, 64, 218, 45, 141, 65, 25, 228, 13, 64, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 129, 193, 25, 228, 13, 64, 25, 228, 77, 64, 25, 228, 13, 192, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 145, 65, 175, 189, 142, 192, 180, 91, 122, 193, 25, 228, 13, 192, 25, 228, 77, 64, 175, 189, 142, 192, 218, 45, 141, 65, 142, 224, 9, 193, 109, 207, 94, 193, 142, 224, 9, 193, 109, 207, 126, 65, 222, 252, 66, 193, 222, 252, 50, 193, 222, 252, 66, 193, 222, 252, 82, 65, 109, 207, 110, 193, 28, 193, 243, 192, 109, 207, 110, 193, 142, 224, 25, 65, 218, 45, 133, 193, 94, 123, 93, 192, 218, 45, 133, 193, 175, 189, 174, 64, 142, 224, 137, 193, 0, 0, 128, 63, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 240, 247, 123, 65, 0, 0, 128, 63, 5, 98, 115, 65, 178, 109, 162, 64, 5, 98, 115, 65, 100, 219, 68, 192, 12, 54, 90, 65, 240, 247, 219, 192, 12, 54, 90, 65, 248, 251, 13, 65, 44, 43, 50, 65, 44, 43, 34, 193, 12, 71, 63, 65, 0, 0, 128, 63, 44, 43, 50, 65, 44, 43, 66, 65, 137, 194, 56, 65, 107, 6, 6, 192, 137, 194, 56, 65, 54, 3, 131, 64, 181, 166, 37, 65, 12, 71, 159, 192, 181, 166, 37, 65, 12, 71, 223, 64, 240, 247, 251, 64, 12, 54, 74, 193, 239, 64, 7, 65, 222, 129, 238, 192, 12, 71, 191, 64, 181, 166, 21, 193, 178, 109, 130, 64, 5, 98, 99, 193, 107, 6, 70, 64, 137, 194, 40, 193, 240, 247, 251, 64, 12, 54, 106, 65, 239, 64, 7, 65, 239, 64, 23, 65, 12, 71, 191, 64, 181, 166, 53, 65, 178, 109, 130, 64, 2, 177, 129, 65, 107, 6, 70, 64, 137, 194, 72, 65, 0, 0, 0, 0, 240, 247, 107, 193, 0, 0, 128, 42, 12, 71, 47, 193, 107, 6, 70, 192, 137, 194, 40, 193, 178, 109, 130, 192, 5, 98, 99, 193, 12, 71, 191, 192, 181, 166, 21, 193, 240, 247, 251, 192, 12, 54, 74, 193, 239, 64, 7, 193, 222, 129, 238, 192, 0, 0, 0, 0, 248, 251, 133, 65, 0, 0, 0, 43, 12, 71, 79, 65, 107, 6, 70, 192, 137, 194, 72, 65, 178, 109, 130, 192, 2, 177, 129, 65, 12, 71, 191, 192, 181, 166, 53, 65, 240, 247, 251, 192, 12, 54, 106, 65, 239, 64, 7, 193, 239, 64, 23, 65, 44, 43, 50, 193, 44, 43, 34, 193, 181, 166, 37, 193, 12, 71, 159, 192, 137, 194, 56, 193, 107, 6, 6, 192, 44, 43, 50, 193, 44, 43, 66, 65, 181, 166, 37, 193, 12, 71, 223, 64, 137, 194, 56, 193, 54, 3, 131, 64, 12, 54, 90, 193, 240, 247, 219, 192, 12, 54, 90, 193, 248, 251, 13, 65, 12, 71, 63, 193, 0, 0, 128, 63, 5, 98, 115, 193, 100, 219, 68, 192, 5, 98, 115, 193, 178, 109, 162, 64, 240, 247, 123, 193, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 153, 249, 17, 192, 0, 0, 128, 63, 66, 0, 13, 192, 74, 192, 209, 62, 66, 0, 13, 192, 238, 143, 203, 63, 11, 214, 252, 191, 204, 252, 8, 64, 11, 214, 252, 191, 200, 204, 15, 190, 151, 112, 206, 191, 76, 56, 39, 64, 151, 112, 206, 191, 46, 225, 28, 191, 153, 249, 145, 191, 6, 107, 62, 64, 153, 249, 145, 191, 22, 172, 121, 191, 219, 31, 23, 191, 66, 0, 77, 64, 219, 31, 23, 191, 132, 0, 154, 191, 0, 0, 128, 170, 153, 249, 81, 64, 0, 0, 128, 170, 50, 243, 163, 191, 219, 31, 23, 63, 66, 0, 77, 64, 219, 31, 23, 63, 132, 0, 154, 191, 153, 249, 145, 63, 6, 107, 62, 64, 153, 249, 145, 63, 22, 172, 121, 191, 151, 112, 206, 63, 76, 56, 39, 64, 151, 112, 206, 63, 46, 225, 28, 191, 11, 214, 252, 63, 204, 252, 8, 64, 11, 214, 252, 63, 200, 204, 15, 190, 66, 0, 13, 64, 238, 143, 203, 63, 66, 0, 13, 64, 74, 192, 209, 62, 153, 249, 17, 64, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194), +"format": 4119, +"index_count": 870, +"index_data": PackedByteArray(38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 41, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 44, 0, 46, 0, 45, 0, 46, 0, 47, 0, 45, 0, 46, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 48, 0, 50, 0, 49, 0, 50, 0, 51, 0, 49, 0, 51, 0, 52, 0, 49, 0, 50, 0, 53, 0, 51, 0, 51, 0, 54, 0, 52, 0, 53, 0, 50, 0, 55, 0, 54, 0, 56, 0, 52, 0, 55, 0, 57, 0, 53, 0, 54, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 56, 0, 57, 0, 58, 0, 59, 0, 56, 0, 58, 0, 60, 0, 59, 0, 60, 0, 61, 0, 59, 0, 60, 0, 62, 0, 61, 0, 62, 0, 63, 0, 61, 0, 62, 0, 64, 0, 63, 0, 64, 0, 65, 0, 63, 0, 64, 0, 66, 0, 65, 0, 66, 0, 67, 0, 65, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 90, 0, 88, 0, 89, 0, 89, 0, 91, 0, 90, 0, 94, 0, 92, 0, 93, 0, 93, 0, 95, 0, 94, 0, 98, 0, 96, 0, 97, 0, 97, 0, 99, 0, 98, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 107, 0, 106, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 114, 0, 112, 0, 113, 0, 113, 0, 115, 0, 114, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 122, 0, 120, 0, 121, 0, 121, 0, 123, 0, 122, 0, 126, 0, 124, 0, 125, 0, 125, 0, 127, 0, 126, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 134, 0, 132, 0, 133, 0, 133, 0, 135, 0, 134, 0, 138, 0, 136, 0, 137, 0, 137, 0, 139, 0, 138, 0, 142, 0, 140, 0, 141, 0, 141, 0, 143, 0, 142, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0, 170, 0, 168, 0, 169, 0, 169, 0, 171, 0, 170, 0, 174, 0, 172, 0, 173, 0, 173, 0, 175, 0, 174, 0, 178, 0, 176, 0, 177, 0, 177, 0, 179, 0, 178, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 190, 0, 188, 0, 189, 0, 189, 0, 191, 0, 190, 0, 194, 0, 192, 0, 193, 0, 193, 0, 195, 0, 194, 0, 198, 0, 196, 0, 197, 0, 197, 0, 199, 0, 198, 0, 202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 213, 0, 215, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 222, 0, 220, 0, 221, 0, 221, 0, 223, 0, 222, 0, 226, 0, 224, 0, 225, 0, 225, 0, 227, 0, 226, 0, 225, 0, 228, 0, 227, 0, 228, 0, 229, 0, 227, 0, 228, 0, 230, 0, 229, 0, 230, 0, 228, 0, 231, 0, 230, 0, 232, 0, 229, 0, 231, 0, 233, 0, 230, 0, 232, 0, 234, 0, 229, 0, 231, 0, 235, 0, 233, 0, 234, 0, 236, 0, 229, 0, 234, 0, 237, 0, 236, 0, 237, 0, 238, 0, 236, 0, 238, 0, 239, 0, 236, 0, 238, 0, 240, 0, 239, 0, 231, 0, 241, 0, 235, 0, 241, 0, 242, 0, 235, 0, 241, 0, 243, 0, 242, 0, 241, 0, 244, 0, 243, 0, 244, 0, 245, 0, 243, 0, 240, 0, 246, 0, 239, 0, 240, 0, 247, 0, 246, 0, 247, 0, 248, 0, 246, 0, 248, 0, 249, 0, 246, 0, 248, 0, 250, 0, 249, 0, 250, 0, 251, 0, 249, 0, 250, 0, 252, 0, 251, 0, 244, 0, 253, 0, 245, 0, 253, 0, 254, 0, 245, 0, 253, 0, 255, 0, 254, 0, 253, 0, 0, 1, 255, 0, 0, 1, 1, 1, 255, 0, 0, 1, 2, 1, 1, 1, 2, 1, 3, 1, 1, 1, 252, 0, 4, 1, 251, 0, 252, 0, 5, 1, 4, 1, 5, 1, 6, 1, 4, 1, 2, 1, 7, 1, 3, 1, 7, 1, 8, 1, 3, 1, 7, 1, 9, 1, 8, 1, 6, 1, 10, 1, 4, 1, 7, 1, 11, 1, 9, 1, 6, 1, 12, 1, 10, 1, 11, 1, 12, 1, 9, 1, 11, 1, 10, 1, 12, 1, 11, 1, 13, 1, 10, 1, 11, 1, 14, 1, 13, 1, 14, 1, 15, 1, 13, 1, 18, 1, 16, 1, 17, 1, 17, 1, 19, 1, 18, 1, 22, 1, 20, 1, 21, 1, 21, 1, 23, 1, 22, 1, 26, 1, 24, 1, 25, 1, 25, 1, 27, 1, 26, 1, 30, 1, 28, 1, 29, 1, 29, 1, 31, 1, 30, 1, 34, 1, 32, 1, 33, 1, 33, 1, 35, 1, 34, 1, 38, 1, 36, 1, 37, 1, 37, 1, 39, 1, 38, 1, 42, 1, 40, 1, 41, 1, 41, 1, 43, 1, 42, 1, 46, 1, 44, 1, 45, 1, 45, 1, 47, 1, 46, 1, 45, 1, 48, 1, 47, 1, 48, 1, 49, 1, 47, 1, 48, 1, 50, 1, 49, 1, 50, 1, 51, 1, 49, 1, 50, 1, 52, 1, 51, 1, 52, 1, 53, 1, 51, 1, 52, 1, 54, 1, 53, 1, 54, 1, 55, 1, 53, 1, 54, 1, 56, 1, 55, 1, 56, 1, 57, 1, 55, 1, 56, 1, 58, 1, 57, 1, 58, 1, 59, 1, 57, 1, 58, 1, 60, 1, 59, 1, 60, 1, 61, 1, 59, 1, 60, 1, 62, 1, 61, 1, 62, 1, 63, 1, 61, 1, 62, 1, 64, 1, 63, 1, 64, 1, 65, 1, 63, 1, 64, 1, 66, 1, 65, 1, 66, 1, 67, 1, 65, 1, 70, 1, 68, 1, 69, 1, 69, 1, 71, 1, 70, 1, 74, 1, 72, 1, 73, 1, 73, 1, 75, 1, 74, 1, 78, 1, 76, 1, 77, 1, 77, 1, 79, 1, 78, 1, 82, 1, 80, 1, 81, 1, 81, 1, 83, 1, 82, 1, 86, 1, 84, 1, 85, 1, 85, 1, 87, 1, 86, 1, 90, 1, 88, 1, 89, 1, 89, 1, 91, 1, 90, 1, 94, 1, 92, 1, 93, 1, 93, 1, 95, 1, 94, 1, 98, 1, 96, 1, 97, 1, 97, 1, 99, 1, 98, 1, 102, 1, 100, 1, 101, 1, 101, 1, 103, 1, 102, 1, 106, 1, 104, 1, 105, 1, 105, 1, 107, 1, 106, 1, 110, 1, 108, 1, 109, 1, 109, 1, 111, 1, 110, 1, 114, 1, 112, 1, 113, 1, 113, 1, 115, 1, 114, 1, 118, 1, 116, 1, 117, 1, 117, 1, 119, 1, 118, 1, 122, 1, 120, 1, 121, 1, 121, 1, 123, 1, 122, 1, 126, 1, 124, 1, 125, 1, 125, 1, 127, 1, 126, 1, 130, 1, 128, 1, 129, 1, 129, 1, 131, 1, 130, 1, 134, 1, 132, 1, 133, 1, 133, 1, 135, 1, 134, 1, 138, 1, 136, 1, 137, 1, 137, 1, 139, 1, 138, 1, 142, 1, 140, 1, 141, 1, 141, 1, 143, 1, 142, 1, 146, 1, 144, 1, 145, 1, 145, 1, 147, 1, 146, 1, 150, 1, 148, 1, 149, 1, 149, 1, 151, 1, 150, 1, 154, 1, 152, 1, 153, 1, 153, 1, 155, 1, 154, 1, 158, 1, 156, 1, 157, 1, 157, 1, 159, 1, 158, 1, 162, 1, 160, 1, 161, 1, 161, 1, 163, 1, 162, 1, 166, 1, 164, 1, 165, 1, 165, 1, 167, 1, 166, 1, 170, 1, 168, 1, 169, 1, 169, 1, 171, 1, 170, 1, 174, 1, 172, 1, 173, 1, 173, 1, 175, 1, 174, 1, 178, 1, 176, 1, 177, 1, 177, 1, 179, 1, 178, 1, 182, 1, 180, 1, 181, 1, 181, 1, 183, 1, 182, 1, 186, 1, 184, 1, 185, 1, 185, 1, 187, 1, 186, 1, 190, 1, 188, 1, 189, 1, 189, 1, 191, 1, 190, 1, 194, 1, 192, 1, 193, 1, 193, 1, 195, 1, 194, 1, 198, 1, 196, 1, 197, 1, 197, 1, 199, 1, 198, 1, 202, 1, 200, 1, 201, 1, 201, 1, 203, 1, 202, 1, 206, 1, 204, 1, 205, 1, 205, 1, 207, 1, 206, 1, 210, 1, 208, 1, 209, 1, 209, 1, 211, 1, 210, 1, 214, 1, 212, 1, 213, 1, 213, 1, 215, 1, 214, 1, 218, 1, 216, 1, 217, 1, 217, 1, 219, 1, 218, 1, 222, 1, 220, 1, 221, 1, 221, 1, 223, 1, 222, 1, 226, 1, 224, 1, 225, 1, 225, 1, 227, 1, 226, 1, 230, 1, 228, 1, 229, 1, 229, 1, 231, 1, 230, 1, 234, 1, 232, 1, 233, 1, 233, 1, 235, 1, 234, 1, 238, 1, 236, 1, 237, 1, 237, 1, 239, 1, 238, 1, 242, 1, 240, 1, 241, 1, 241, 1, 243, 1, 242, 1, 246, 1, 244, 1, 245, 1, 245, 1, 247, 1, 246, 1, 250, 1, 248, 1, 249, 1, 249, 1, 251, 1, 250, 1, 254, 1, 252, 1, 253, 1, 253, 1, 255, 1, 254, 1, 2, 2, 0, 2, 1, 2, 1, 2, 3, 2, 2, 2, 6, 2, 4, 2, 5, 2, 5, 2, 7, 2, 6, 2), +"material": SubResource("StandardMaterial3D_ot3td"), +"name": "grass", +"primitive": 3, +"vertex_count": 520, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 17, 250, 237, 133, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 237, 133, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 38, 27, 38, 155, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 38, 27, 38, 155, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 216, 228, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 237, 5, 237, 133, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 237, 5, 237, 133, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 160, 252, 198, 158, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 134, 252, 204, 232, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 160, 252, 198, 158, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 134, 252, 204, 232, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 255, 191, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 24, 252, 153, 140, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 86, 251, 64, 255, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 24, 252, 153, 140, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 86, 251, 64, 255, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 160, 252, 117, 224, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 134, 252, 16, 167, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 160, 252, 117, 224, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 134, 252, 16, 167, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 217, 249, 83, 194, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 227, 226, 12, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 217, 249, 83, 194, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 227, 226, 12, 190, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 130, 126, 83, 194, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 130, 126, 83, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 202, 102, 12, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 202, 102, 12, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 141, 189, 174, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 141, 189, 174, 193, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 100, 174, 66, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 100, 174, 66, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 63, 48, 190, 193, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 22, 31, 18, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 63, 48, 190, 193, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 22, 31, 18, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 128, 252, 95, 150, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 38, 252, 96, 242, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 128, 252, 95, 150, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 38, 252, 96, 242, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 27, 29, 242, 193, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 37, 6, 171, 189, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 27, 29, 242, 193, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 37, 6, 171, 189, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 120, 3, 49, 151, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 120, 3, 49, 151, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 94, 3, 56, 225, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 94, 3, 56, 225, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 33, 206, 187, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 19, 191, 80, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 33, 206, 187, 193, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 19, 191, 80, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 216, 3, 158, 141, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 216, 3, 158, 141, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 126, 3, 158, 233, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 126, 3, 158, 233, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 168, 4, 18, 195, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 230, 3, 113, 177, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 168, 4, 18, 195, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 230, 3, 113, 177, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 154, 81, 187, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 113, 66, 80, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 154, 81, 187, 193, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 113, 66, 80, 190, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 168, 4, 190, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 230, 3, 100, 243, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 168, 4, 190, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 230, 3, 100, 243, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 232, 224, 235, 193, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 191, 207, 63, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 232, 224, 235, 193, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 191, 207, 63, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 24, 252, 140, 206, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 86, 251, 236, 188, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 24, 252, 140, 206, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 86, 251, 236, 188, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 192, 172, 190, 193, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 192, 172, 190, 193, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 61, 155, 18, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 61, 155, 18, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 193, 100, 235, 193, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 62, 83, 63, 190, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 193, 100, 235, 193, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 62, 83, 63, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 235, 64, 174, 193, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 221, 49, 66, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 235, 64, 174, 193, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 221, 49, 66, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 216, 3, 138, 207, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 126, 3, 223, 167, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 216, 3, 138, 207, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 126, 3, 223, 167, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 117, 124, 189, 188, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 117, 124, 189, 188, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 160, 104, 206, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 160, 104, 206, 194, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 142, 64, 151, 189, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 241, 51, 118, 194, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 142, 64, 151, 189, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 241, 51, 118, 194, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 110, 5, 32, 175, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 3, 5, 3, 216, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 110, 5, 32, 175, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 3, 5, 3, 216, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 251, 250, 124, 234, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 251, 250, 124, 234, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 144, 250, 39, 142, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 144, 250, 39, 142, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 47, 251, 184, 159, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 15, 251, 247, 217, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 47, 251, 184, 159, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 15, 251, 247, 217, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 131, 6, 58, 254, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 157, 5, 175, 139, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 131, 6, 58, 254, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 157, 5, 175, 139, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 239, 4, 126, 232, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 207, 4, 222, 157, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 239, 4, 126, 232, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 207, 4, 222, 157, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 110, 5, 215, 241, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 3, 5, 130, 149, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 110, 5, 215, 241, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 3, 5, 130, 149, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 97, 250, 128, 177, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 123, 249, 5, 197, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 97, 250, 128, 177, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 123, 249, 5, 197, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 8, 48, 125, 189, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 190, 33, 182, 194, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 8, 48, 125, 189, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 190, 33, 182, 194, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 239, 4, 6, 166, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 207, 4, 70, 224, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 239, 4, 6, 166, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 207, 4, 70, 224, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 47, 251, 31, 226, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 47, 251, 31, 226, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 15, 251, 128, 151, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 15, 251, 128, 151, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 120, 3, 238, 216, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 94, 3, 137, 159, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 120, 3, 238, 216, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 94, 3, 137, 159, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 52, 153, 242, 193, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 52, 153, 242, 193, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 124, 129, 171, 189, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 124, 129, 171, 189, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 175, 99, 71, 189, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 175, 99, 71, 189, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 249, 84, 128, 194, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 249, 84, 128, 194, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 97, 250, 79, 244, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 97, 250, 79, 244, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 123, 249, 196, 129, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 123, 249, 196, 129, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 128, 252, 30, 216, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 38, 252, 115, 176, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 128, 252, 30, 216, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 38, 252, 115, 176, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 154, 251, 225, 167, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 50, 251, 68, 208, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 154, 251, 225, 167, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 50, 251, 68, 208, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 66, 152, 138, 189, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 133, 130, 226, 194, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 66, 152, 138, 189, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 133, 130, 226, 194, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 241, 245, 189, 188, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 2, 227, 206, 194, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 241, 245, 189, 188, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 2, 227, 206, 194, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 154, 251, 19, 234, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 154, 251, 19, 234, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 50, 251, 222, 141, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 50, 251, 222, 141, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 253, 80, 135, 189, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 253, 80, 135, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 64, 68, 102, 194, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 64, 68, 102, 194, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 13, 204, 135, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 112, 191, 102, 194, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 13, 204, 135, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 112, 191, 102, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 94, 151, 48, 189, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 137, 131, 64, 195, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 94, 151, 48, 189, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 137, 131, 64, 195, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 190, 187, 151, 189, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 1, 175, 118, 194, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 190, 187, 151, 189, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 1, 175, 118, 194, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 64, 222, 71, 189, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 246, 207, 128, 194, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 64, 222, 71, 189, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 246, 207, 128, 194, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 255, 255, 255, 191, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 254, 255, 255, 191, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 254, 255, 255, 191, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 254, 255, 255, 191, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 255, 255, 255, 191, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 255, 255, 255, 255, 255, 191, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 255, 127, 255, 255, 255, 255, 255, 191, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 255, 255, 255, 191, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 254, 255, 255, 191, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 254, 255, 255, 191, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 252, 28, 48, 189, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 13, 10, 64, 195, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 252, 28, 48, 189, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 13, 10, 64, 195, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 5, 171, 125, 189, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 79, 156, 182, 194, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 5, 171, 125, 189, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 79, 156, 182, 194, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 178, 247, 27, 189, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 210, 226, 115, 194, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 178, 247, 27, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 210, 226, 115, 194, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 131, 6, 248, 186, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 157, 5, 125, 206, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 131, 6, 248, 186, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 157, 5, 125, 206, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 251, 250, 250, 167, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 144, 250, 222, 208, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 251, 250, 250, 167, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 144, 250, 222, 208, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 199, 5, 216, 187, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 233, 4, 149, 206, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 199, 5, 216, 187, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 233, 4, 149, 206, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 88, 4, 171, 232, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 57, 4, 74, 158, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 88, 4, 171, 232, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 57, 4, 74, 158, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 21, 251, 105, 177, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 55, 250, 37, 196, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 21, 251, 105, 177, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 55, 250, 37, 196, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 88, 4, 128, 166, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 57, 4, 102, 224, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 88, 4, 128, 166, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 57, 4, 102, 224, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 89, 81, 211, 189, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 89, 81, 211, 189, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 106, 67, 27, 194, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 106, 67, 27, 194, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 59, 48, 205, 189, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 138, 32, 101, 194, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 59, 48, 205, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 138, 32, 101, 194, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 204, 4, 185, 175, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 100, 4, 28, 216, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 204, 4, 185, 175, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 100, 4, 28, 216, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 21, 251, 221, 243, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 21, 251, 221, 243, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 55, 250, 66, 129, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 55, 250, 66, 129, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 204, 4, 31, 242, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 100, 4, 234, 149, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 204, 4, 31, 242, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 100, 4, 234, 149, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 206, 64, 226, 189, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 254, 50, 43, 194, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 206, 64, 226, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 254, 50, 43, 194, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 148, 188, 226, 189, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 165, 174, 43, 194, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 148, 188, 226, 189, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 165, 174, 43, 194, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 116, 223, 153, 189, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 195, 207, 49, 194, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 116, 223, 153, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 195, 207, 49, 194, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 199, 5, 188, 254, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 233, 4, 32, 140, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 199, 5, 188, 254, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 233, 4, 32, 140, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 64, 100, 153, 189, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 64, 100, 153, 189, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 40, 84, 49, 194, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 40, 84, 49, 194, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 44, 29, 138, 189, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 76, 8, 226, 194, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 44, 29, 138, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 76, 8, 226, 194, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 197, 251, 180, 225, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 197, 251, 180, 225, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 166, 251, 82, 151, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 166, 251, 82, 151, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 214, 171, 205, 189, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 190, 155, 101, 194, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 214, 171, 205, 189, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 190, 155, 101, 194, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 121, 125, 27, 189, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 121, 125, 27, 189, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 188, 103, 115, 194, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 188, 103, 115, 194, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 205, 211, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 48, 191, 27, 194, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 205, 211, 189, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 48, 191, 27, 194, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 197, 251, 151, 159, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 166, 251, 126, 217, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 197, 251, 151, 159, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 166, 251, 126, 217, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 93, 127, 146, 193, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 93, 127, 146, 193, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 237, 101, 177, 190, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 237, 101, 177, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 168, 81, 41, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 114, 65, 222, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 168, 81, 41, 193, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 114, 65, 222, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 54, 252, 146, 193, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 81, 227, 177, 190, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 54, 252, 146, 193, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 81, 227, 177, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 38, 3, 80, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 154, 2, 245, 242, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 38, 3, 80, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 154, 2, 245, 242, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 100, 253, 8, 141, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 216, 252, 174, 255, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 100, 253, 8, 141, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 216, 252, 174, 255, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 140, 190, 31, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 140, 190, 31, 193, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 86, 174, 212, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 86, 174, 212, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 168, 253, 253, 215, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 103, 253, 61, 177, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 168, 253, 253, 215, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 103, 253, 61, 177, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 168, 253, 210, 150, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 103, 253, 136, 242, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 168, 253, 210, 150, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 103, 253, 136, 242, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 151, 2, 117, 141, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 151, 2, 117, 141, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 86, 2, 43, 233, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 86, 2, 43, 233, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 189, 253, 102, 224, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 170, 253, 169, 167, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 189, 253, 102, 224, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 170, 253, 169, 167, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 173, 28, 76, 193, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 200, 3, 107, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 173, 28, 76, 193, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 200, 3, 107, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 122, 226, 74, 193, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 1, 208, 212, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 122, 226, 74, 193, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 1, 208, 212, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 189, 253, 70, 159, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 170, 253, 211, 232, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 189, 253, 70, 159, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 170, 253, 211, 232, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 151, 2, 193, 206, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 86, 2, 0, 168, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 151, 2, 193, 206, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 86, 2, 0, 168, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 166, 173, 42, 193, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 166, 173, 42, 193, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 236, 154, 179, 190, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 236, 154, 179, 190, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 18, 154, 76, 193, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 18, 154, 76, 193, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 161, 128, 107, 190, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 161, 128, 107, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 84, 2, 85, 216, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 65, 2, 151, 159, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 84, 2, 85, 216, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 65, 2, 151, 159, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 83, 207, 41, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 48, 191, 222, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 83, 207, 41, 193, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 48, 191, 222, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 100, 253, 85, 206, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 216, 252, 27, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 100, 253, 85, 206, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 216, 252, 27, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 253, 47, 42, 193, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 132, 29, 179, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 253, 47, 42, 193, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 132, 29, 179, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 206, 64, 31, 193, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 171, 48, 212, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 206, 64, 31, 193, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 171, 48, 212, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 38, 3, 227, 193, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 154, 2, 168, 177, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 38, 3, 227, 193, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 154, 2, 168, 177, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 84, 2, 42, 151, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 84, 2, 42, 151, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 65, 2, 184, 224, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 65, 2, 184, 224, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 18, 101, 74, 193, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 88, 82, 212, 190, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 18, 101, 74, 193, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 88, 82, 212, 190) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_3p37u") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_bwatw"] +data = PackedVector3Array(0.0763, 0.1105, -0.0763, 0.0763, 0.1105, 0.0763, 0.0563, 0.522, 0.0563, 0.0563, 0.522, 0.0563, 0.0563, 0.522, -0.0563, 0.0763, 0.1105, -0.0763, -0.0563, 0.522, -0.0563, -0.0763, 0.1105, -0.0763, 0.0763, 0.1105, -0.0763, 0.0763, 0.1105, -0.0763, 0.0563, 0.522, -0.0563, -0.0563, 0.522, -0.0563, 0.0763, 0.1105, 0.0763, 0.1061, 0, 0.1061, -0.1061, 0, 0.1061, -0.1061, 0, 0.1061, -0.0763, 0.1105, 0.0763, 0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.1061, 0, 0.1061, -0.1061, 0, -0.1061, -0.1061, 0, -0.1061, -0.0763, 0.1105, -0.0763, -0.0763, 0.1105, 0.0763, 0.0563, 0.522, 0.0563, 0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.0563, 0.522, 0.0563, 0.0563, 0.522, 0.0563, 0.1061, 0, -0.1061, 0.1061, 0, 0.1061, 0.0763, 0.1105, 0.0763, 0.0763, 0.1105, 0.0763, 0.0763, 0.1105, -0.0763, 0.1061, 0, -0.1061, 0.1061, 0, -0.1061, -0.1061, 0, -0.1061, -0.1061, 0, 0.1061, -0.1061, 0, 0.1061, 0.1061, 0, 0.1061, 0.1061, 0, -0.1061, -0.0763, 0.1105, -0.0763, -0.1061, 0, -0.1061, 0.1061, 0, -0.1061, 0.1061, 0, -0.1061, 0.0763, 0.1105, -0.0763, -0.0763, 0.1105, -0.0763, -0.0563, 0.522, 0.0563, -0.0763, 0.1105, 0.0763, -0.0763, 0.1105, -0.0763, -0.0763, 0.1105, -0.0763, -0.0563, 0.522, -0.0563, -0.0563, 0.522, 0.0563, 0.3095, 0.522, 0.3095, 0.3353, 0.636, 0.3353, 0.4107, 0.636, 0.2371, 0.4107, 0.636, 0.2371, 0.3791, 0.522, 0.2189, 0.3095, 0.522, 0.3095, -0.4228, 0.522, -0.1133, -0.4378, 0.522, 0, -0.4228, 0.522, 0.1133, -0.4228, 0.522, 0.1133, -0.3791, 0.522, -0.2189, -0.4228, 0.522, -0.1133, -0.4228, 0.522, 0.1133, -0.3791, 0.522, 0.2189, -0.3791, 0.522, -0.2189, -0.3791, 0.522, 0.2189, -0.3095, 0.522, -0.3095, -0.3791, 0.522, -0.2189, -0.3791, 0.522, 0.2189, -0.3095, 0.522, 0.3095, -0.3095, 0.522, -0.3095, -0.3095, 0.522, 0.3095, -0.2189, 0.522, -0.3791, -0.3095, 0.522, -0.3095, -0.3095, 0.522, 0.3095, -0.2189, 0.522, 0.3791, -0.2189, 0.522, -0.3791, -0.2189, 0.522, 0.3791, -0.1133, 0.522, -0.4228, -0.2189, 0.522, -0.3791, -0.2189, 0.522, 0.3791, -0.1133, 0.522, 0.4228, -0.1133, 0.522, -0.4228, -0.1133, 0.522, 0.4228, -0.0563, 0.522, -0.0563, -0.1133, 0.522, -0.4228, -0.0563, 0.522, -0.0563, 0, 0.522, -0.4378, -0.1133, 0.522, -0.4228, -0.1133, 0.522, 0.4228, -0.0563, 0.522, 0.0563, -0.0563, 0.522, -0.0563, -0.0563, 0.522, -0.0563, 0.0563, 0.522, -0.0563, 0, 0.522, -0.4378, -0.0563, 0.522, 0.0563, -0.1133, 0.522, 0.4228, 0, 0.522, 0.4378, 0.0563, 0.522, -0.0563, 0.1133, 0.522, -0.4228, 0, 0.522, -0.4378, 0, 0.522, 0.4378, 0.0563, 0.522, 0.0563, -0.0563, 0.522, 0.0563, 0.0563, 0.522, -0.0563, 0.0563, 0.522, 0.0563, 0.1133, 0.522, -0.4228, 0, 0.522, 0.4378, 0.1133, 0.522, 0.4228, 0.0563, 0.522, 0.0563, 0.1133, 0.522, 0.4228, 0.1133, 0.522, -0.4228, 0.0563, 0.522, 0.0563, 0.1133, 0.522, 0.4228, 0.2189, 0.522, -0.3791, 0.1133, 0.522, -0.4228, 0.1133, 0.522, 0.4228, 0.2189, 0.522, 0.3791, 0.2189, 0.522, -0.3791, 0.2189, 0.522, 0.3791, 0.3095, 0.522, -0.3095, 0.2189, 0.522, -0.3791, 0.2189, 0.522, 0.3791, 0.3095, 0.522, 0.3095, 0.3095, 0.522, -0.3095, 0.3095, 0.522, 0.3095, 0.3791, 0.522, -0.2189, 0.3095, 0.522, -0.3095, 0.3095, 0.522, 0.3095, 0.3791, 0.522, 0.2189, 0.3791, 0.522, -0.2189, 0.3791, 0.522, 0.2189, 0.4228, 0.522, -0.1133, 0.3791, 0.522, -0.2189, 0.3791, 0.522, 0.2189, 0.4228, 0.522, 0.1133, 0.4228, 0.522, -0.1133, 0.4228, 0.522, 0.1133, 0.4378, 0.522, 0, 0.4228, 0.522, -0.1133, 0.4228, 0.522, 0.1133, 0.4581, 0.636, 0.1227, 0.4742, 0.636, 0, 0.4742, 0.636, 0, 0.4378, 0.522, 0, 0.4228, 0.522, 0.1133, 0.3353, 0.636, 0.3353, 0.3095, 0.522, 0.3095, 0.2189, 0.522, 0.3791, 0.2189, 0.522, 0.3791, 0.2371, 0.636, 0.4107, 0.3353, 0.636, 0.3353, 0, 0.636, 0.4742, 0, 0.522, 0.4378, -0.1133, 0.522, 0.4228, -0.1133, 0.522, 0.4228, -0.1227, 0.636, 0.4581, 0, 0.636, 0.4742, -0.4581, 0.636, -0.1227, -0.4742, 0.636, 0, -0.4378, 0.522, 0, -0.4378, 0.522, 0, -0.4228, 0.522, -0.1133, -0.4581, 0.636, -0.1227, -0.4107, 0.636, 0.2371, -0.3353, 0.636, 0.3353, -0.3095, 0.522, 0.3095, -0.3095, 0.522, 0.3095, -0.3791, 0.522, 0.2189, -0.4107, 0.636, 0.2371, -0.2371, 0.636, -0.4107, -0.2189, 0.522, -0.3791, -0.1133, 0.522, -0.4228, -0.1133, 0.522, -0.4228, -0.1227, 0.636, -0.4581, -0.2371, 0.636, -0.4107, 0.3791, 0.522, 0.2189, 0.4107, 0.636, 0.2371, 0.4581, 0.636, 0.1227, 0.4581, 0.636, 0.1227, 0.4228, 0.522, 0.1133, 0.3791, 0.522, 0.2189, -0.1227, 0.636, -0.4581, -0.1133, 0.522, -0.4228, 0, 0.522, -0.4378, 0, 0.522, -0.4378, 0, 0.636, -0.4742, -0.1227, 0.636, -0.4581, 0.3095, 0.522, -0.3095, 0.3791, 0.522, -0.2189, 0.4107, 0.636, -0.2371, 0.4107, 0.636, -0.2371, 0.3353, 0.636, -0.3353, 0.3095, 0.522, -0.3095, -0.2371, 0.636, 0.4107, -0.2189, 0.522, 0.3791, -0.3095, 0.522, 0.3095, -0.3095, 0.522, 0.3095, -0.3353, 0.636, 0.3353, -0.2371, 0.636, 0.4107, 0.3791, 0.522, -0.2189, 0.4228, 0.522, -0.1133, 0.4581, 0.636, -0.1227, 0.4581, 0.636, -0.1227, 0.4107, 0.636, -0.2371, 0.3791, 0.522, -0.2189, 0, 0.636, -0.4742, 0, 0.522, -0.4378, 0.1133, 0.522, -0.4228, 0.1133, 0.522, -0.4228, 0.1227, 0.636, -0.4581, 0, 0.636, -0.4742, -0.4107, 0.636, -0.2371, -0.3791, 0.522, -0.2189, -0.3095, 0.522, -0.3095, -0.3095, 0.522, -0.3095, -0.3353, 0.636, -0.3353, -0.4107, 0.636, -0.2371, 0.4378, 0.522, 0, 0.4742, 0.636, 0, 0.4581, 0.636, -0.1227, 0.4581, 0.636, -0.1227, 0.4228, 0.522, -0.1133, 0.4378, 0.522, 0, -0.1227, 0.636, 0.4581, -0.1133, 0.522, 0.4228, -0.2189, 0.522, 0.3791, -0.2189, 0.522, 0.3791, -0.2371, 0.636, 0.4107, -0.1227, 0.636, 0.4581, 0.1227, 0.636, 0.4581, 0.1133, 0.522, 0.4228, 0, 0.522, 0.4378, 0, 0.522, 0.4378, 0, 0.636, 0.4742, 0.1227, 0.636, 0.4581, -0.4581, 0.636, 0.1227, -0.4107, 0.636, 0.2371, -0.3791, 0.522, 0.2189, -0.3791, 0.522, 0.2189, -0.4228, 0.522, 0.1133, -0.4581, 0.636, 0.1227, -0.4581, 0.636, -0.1227, -0.4228, 0.522, -0.1133, -0.3791, 0.522, -0.2189, -0.3791, 0.522, -0.2189, -0.4107, 0.636, -0.2371, -0.4581, 0.636, -0.1227, -0.3353, 0.636, -0.3353, -0.3095, 0.522, -0.3095, -0.2189, 0.522, -0.3791, -0.2189, 0.522, -0.3791, -0.2371, 0.636, -0.4107, -0.3353, 0.636, -0.3353, 0.1227, 0.636, -0.4581, 0.1133, 0.522, -0.4228, 0.2189, 0.522, -0.3791, 0.2189, 0.522, -0.3791, 0.2371, 0.636, -0.4107, 0.1227, 0.636, -0.4581, -0.2933, 0.95, -0.0786, -0.3037, 0.95, 0, -0.4742, 0.636, 0, -0.4742, 0.636, 0, -0.4581, 0.636, -0.1227, -0.2933, 0.95, -0.0786, -0.2147, 0.95, -0.2147, -0.3353, 0.636, -0.3353, -0.2371, 0.636, -0.4107, -0.2371, 0.636, -0.4107, -0.1518, 0.95, -0.263, -0.2147, 0.95, -0.2147, 0.0786, 0.95, -0.2933, 0.1227, 0.636, -0.4581, 0.2371, 0.636, -0.4107, 0.2371, 0.636, -0.4107, 0.1518, 0.95, -0.263, 0.0786, 0.95, -0.2933, 0.4581, 0.636, 0.1227, 0.4107, 0.636, 0.2371, 0.263, 0.95, 0.1518, 0.263, 0.95, 0.1518, 0.2933, 0.95, 0.0786, 0.4581, 0.636, 0.1227, 0.2147, 0.95, 0.2147, 0.3353, 0.636, 0.3353, 0.2371, 0.636, 0.4107, 0.2371, 0.636, 0.4107, 0.1518, 0.95, 0.263, 0.2147, 0.95, 0.2147, 0.4742, 0.636, 0, 0.3037, 0.95, 0, 0.2933, 0.95, -0.0786, 0.2933, 0.95, -0.0786, 0.4581, 0.636, -0.1227, 0.4742, 0.636, 0, 0.4107, 0.636, -0.2371, 0.263, 0.95, -0.1518, 0.2147, 0.95, -0.2147, 0.2147, 0.95, -0.2147, 0.3353, 0.636, -0.3353, 0.4107, 0.636, -0.2371, 0.4581, 0.636, -0.1227, 0.2933, 0.95, -0.0786, 0.263, 0.95, -0.1518, 0.263, 0.95, -0.1518, 0.4107, 0.636, -0.2371, 0.4581, 0.636, -0.1227, 0.0786, 0.95, 0.2933, 0.1227, 0.636, 0.4581, 0, 0.636, 0.4742, 0, 0.636, 0.4742, 0, 0.95, 0.3037, 0.0786, 0.95, 0.2933, -0.1518, 0.95, -0.263, -0.2371, 0.636, -0.4107, -0.1227, 0.636, -0.4581, -0.1227, 0.636, -0.4581, -0.0786, 0.95, -0.2933, -0.1518, 0.95, -0.263, 0.1518, 0.95, -0.263, 0.2371, 0.636, -0.4107, 0.3353, 0.636, -0.3353, 0.3353, 0.636, -0.3353, 0.2147, 0.95, -0.2147, 0.1518, 0.95, -0.263, 0.4107, 0.636, 0.2371, 0.3353, 0.636, 0.3353, 0.2147, 0.95, 0.2147, 0.2147, 0.95, 0.2147, 0.263, 0.95, 0.1518, 0.4107, 0.636, 0.2371, 0.2371, 0.636, -0.4107, 0.2189, 0.522, -0.3791, 0.3095, 0.522, -0.3095, 0.3095, 0.522, -0.3095, 0.3353, 0.636, -0.3353, 0.2371, 0.636, -0.4107, -0.4742, 0.636, 0, -0.4581, 0.636, 0.1227, -0.4228, 0.522, 0.1133, -0.4228, 0.522, 0.1133, -0.4378, 0.522, 0, -0.4742, 0.636, 0, -0.263, 0.95, -0.1518, -0.2933, 0.95, -0.0786, -0.4581, 0.636, -0.1227, -0.4581, 0.636, -0.1227, -0.4107, 0.636, -0.2371, -0.263, 0.95, -0.1518, 0.4742, 0.636, 0, 0.4581, 0.636, 0.1227, 0.2933, 0.95, 0.0786, 0.2933, 0.95, 0.0786, 0.3037, 0.95, 0, 0.4742, 0.636, 0, 0.2371, 0.636, 0.4107, 0.2189, 0.522, 0.3791, 0.1133, 0.522, 0.4228, 0.1133, 0.522, 0.4228, 0.1227, 0.636, 0.4581, 0.2371, 0.636, 0.4107, 0.029, 1.941, 0.0502, 0.2142, 1.0921, 0.3711, 0.1109, 1.0921, 0.4139, 0.1109, 1.0921, 0.4139, 0.015, 1.941, 0.056, 0.029, 1.941, 0.0502, -0.056, 1.941, 0.015, -0.4139, 1.0921, 0.1109, -0.4285, 1.0921, 0, -0.4285, 1.0921, 0, -0.0579, 1.941, 0, -0.056, 1.941, 0.015, -0.3864, 0.95, -0.1035, -0.4, 0.95, 0, -0.3864, 0.95, 0.1035, -0.3864, 0.95, 0.1035, -0.3464, 0.95, -0.2, -0.3864, 0.95, -0.1035, -0.3864, 0.95, 0.1035, -0.3464, 0.95, 0.2, -0.3464, 0.95, -0.2, -0.3464, 0.95, 0.2, -0.2828, 0.95, -0.2828, -0.3464, 0.95, -0.2, -0.3464, 0.95, 0.2, -0.3037, 0.95, 0, -0.2828, 0.95, -0.2828, -0.3037, 0.95, 0, -0.3464, 0.95, 0.2, -0.2828, 0.95, 0.2828, -0.3037, 0.95, 0, -0.2933, 0.95, -0.0786, -0.2828, 0.95, -0.2828, -0.2828, 0.95, 0.2828, -0.2933, 0.95, 0.0786, -0.3037, 0.95, 0, -0.2933, 0.95, -0.0786, -0.263, 0.95, -0.1518, -0.2828, 0.95, -0.2828, -0.2828, 0.95, 0.2828, -0.263, 0.95, 0.1518, -0.2933, 0.95, 0.0786, -0.263, 0.95, -0.1518, -0.2, 0.95, -0.3464, -0.2828, 0.95, -0.2828, -0.263, 0.95, -0.1518, -0.2147, 0.95, -0.2147, -0.2, 0.95, -0.3464, -0.2147, 0.95, -0.2147, -0.1518, 0.95, -0.263, -0.2, 0.95, -0.3464, -0.1518, 0.95, -0.263, -0.1035, 0.95, -0.3864, -0.2, 0.95, -0.3464, -0.1518, 0.95, -0.263, -0.0786, 0.95, -0.2933, -0.1035, 0.95, -0.3864, -0.2828, 0.95, 0.2828, -0.2, 0.95, 0.3464, -0.263, 0.95, 0.1518, -0.2, 0.95, 0.3464, -0.2147, 0.95, 0.2147, -0.263, 0.95, 0.1518, -0.2, 0.95, 0.3464, -0.1518, 0.95, 0.263, -0.2147, 0.95, 0.2147, -0.2, 0.95, 0.3464, -0.1035, 0.95, 0.3864, -0.1518, 0.95, 0.263, -0.1035, 0.95, 0.3864, -0.0786, 0.95, 0.2933, -0.1518, 0.95, 0.263, -0.0786, 0.95, -0.2933, 0, 0.95, -0.4, -0.1035, 0.95, -0.3864, -0.0786, 0.95, -0.2933, 0, 0.95, -0.3037, 0, 0.95, -0.4, 0, 0.95, -0.3037, 0.0786, 0.95, -0.2933, 0, 0.95, -0.4, 0.0786, 0.95, -0.2933, 0.1035, 0.95, -0.3864, 0, 0.95, -0.4, 0.0786, 0.95, -0.2933, 0.1518, 0.95, -0.263, 0.1035, 0.95, -0.3864, 0.1518, 0.95, -0.263, 0.2, 0.95, -0.3464, 0.1035, 0.95, -0.3864, 0.1518, 0.95, -0.263, 0.2147, 0.95, -0.2147, 0.2, 0.95, -0.3464, -0.1035, 0.95, 0.3864, 0, 0.95, 0.4, -0.0786, 0.95, 0.2933, 0, 0.95, 0.4, 0, 0.95, 0.3037, -0.0786, 0.95, 0.2933, 0, 0.95, 0.4, 0.0786, 0.95, 0.2933, 0, 0.95, 0.3037, 0, 0.95, 0.4, 0.1035, 0.95, 0.3864, 0.0786, 0.95, 0.2933, 0.1035, 0.95, 0.3864, 0.1518, 0.95, 0.263, 0.0786, 0.95, 0.2933, 0.1035, 0.95, 0.3864, 0.2, 0.95, 0.3464, 0.1518, 0.95, 0.263, 0.2, 0.95, 0.3464, 0.2147, 0.95, 0.2147, 0.1518, 0.95, 0.263, 0.2147, 0.95, -0.2147, 0.2828, 0.95, -0.2828, 0.2, 0.95, -0.3464, 0.2147, 0.95, -0.2147, 0.263, 0.95, -0.1518, 0.2828, 0.95, -0.2828, 0.263, 0.95, -0.1518, 0.2933, 0.95, -0.0786, 0.2828, 0.95, -0.2828, 0.2, 0.95, 0.3464, 0.2828, 0.95, 0.2828, 0.2147, 0.95, 0.2147, 0.2828, 0.95, 0.2828, 0.263, 0.95, 0.1518, 0.2147, 0.95, 0.2147, 0.2828, 0.95, 0.2828, 0.2933, 0.95, 0.0786, 0.263, 0.95, 0.1518, 0.2933, 0.95, -0.0786, 0.3464, 0.95, -0.2, 0.2828, 0.95, -0.2828, 0.2828, 0.95, 0.2828, 0.3464, 0.95, 0.2, 0.2933, 0.95, 0.0786, 0.2933, 0.95, -0.0786, 0.3037, 0.95, 0, 0.3464, 0.95, -0.2, 0.3464, 0.95, 0.2, 0.3037, 0.95, 0, 0.2933, 0.95, 0.0786, 0.3464, 0.95, 0.2, 0.3464, 0.95, -0.2, 0.3037, 0.95, 0, 0.3464, 0.95, 0.2, 0.3864, 0.95, -0.1035, 0.3464, 0.95, -0.2, 0.3464, 0.95, 0.2, 0.3864, 0.95, 0.1035, 0.3864, 0.95, -0.1035, 0.3864, 0.95, 0.1035, 0.4, 0.95, 0, 0.3864, 0.95, -0.1035, 0, 0.95, 0.3037, 0, 0.636, 0.4742, -0.1227, 0.636, 0.4581, -0.1227, 0.636, 0.4581, -0.0786, 0.95, 0.2933, 0, 0.95, 0.3037, 0.4139, 1.0921, 0.1109, 0.3711, 1.0921, 0.2142, 0.0502, 1.941, 0.029, 0.0502, 1.941, 0.029, 0.056, 1.941, 0.015, 0.4139, 1.0921, 0.1109, -0.2147, 0.95, -0.2147, -0.263, 0.95, -0.1518, -0.4107, 0.636, -0.2371, -0.4107, 0.636, -0.2371, -0.3353, 0.636, -0.3353, -0.2147, 0.95, -0.2147, -0.1518, 0.95, 0.263, -0.2371, 0.636, 0.4107, -0.3353, 0.636, 0.3353, -0.3353, 0.636, 0.3353, -0.2147, 0.95, 0.2147, -0.1518, 0.95, 0.263, -0.2933, 0.95, 0.0786, -0.4581, 0.636, 0.1227, -0.4742, 0.636, 0, -0.4742, 0.636, 0, -0.3037, 0.95, 0, -0.2933, 0.95, 0.0786, -0.2147, 0.95, 0.2147, -0.3353, 0.636, 0.3353, -0.4107, 0.636, 0.2371, -0.4107, 0.636, 0.2371, -0.263, 0.95, 0.1518, -0.2147, 0.95, 0.2147, -0.0786, 0.95, 0.2933, -0.1227, 0.636, 0.4581, -0.2371, 0.636, 0.4107, -0.2371, 0.636, 0.4107, -0.1518, 0.95, 0.263, -0.0786, 0.95, 0.2933, -0.056, 1.941, 0.015, -0.0579, 1.941, 0, -0.056, 1.941, -0.015, -0.056, 1.941, -0.015, -0.0502, 1.941, 0.029, -0.056, 1.941, 0.015, -0.056, 1.941, -0.015, -0.0502, 1.941, -0.029, -0.0502, 1.941, 0.029, -0.0502, 1.941, -0.029, -0.041, 1.941, 0.041, -0.0502, 1.941, 0.029, -0.0502, 1.941, -0.029, -0.041, 1.941, -0.041, -0.041, 1.941, 0.041, -0.041, 1.941, -0.041, -0.029, 1.941, 0.0502, -0.041, 1.941, 0.041, -0.041, 1.941, -0.041, -0.029, 1.941, -0.0502, -0.029, 1.941, 0.0502, -0.029, 1.941, -0.0502, -0.015, 1.941, 0.056, -0.029, 1.941, 0.0502, -0.029, 1.941, -0.0502, -0.015, 1.941, -0.056, -0.015, 1.941, 0.056, -0.015, 1.941, -0.056, 0, 1.941, 0.0579, -0.015, 1.941, 0.056, -0.015, 1.941, -0.056, 0, 1.941, -0.0579, 0, 1.941, 0.0579, 0, 1.941, -0.0579, 0.015, 1.941, 0.056, 0, 1.941, 0.0579, 0, 1.941, -0.0579, 0.015, 1.941, -0.056, 0.015, 1.941, 0.056, 0.015, 1.941, -0.056, 0.029, 1.941, 0.0502, 0.015, 1.941, 0.056, 0.015, 1.941, -0.056, 0.029, 1.941, -0.0502, 0.029, 1.941, 0.0502, 0.029, 1.941, -0.0502, 0.041, 1.941, 0.041, 0.029, 1.941, 0.0502, 0.029, 1.941, -0.0502, 0.041, 1.941, -0.041, 0.041, 1.941, 0.041, 0.041, 1.941, -0.041, 0.0502, 1.941, 0.029, 0.041, 1.941, 0.041, 0.041, 1.941, -0.041, 0.0502, 1.941, -0.029, 0.0502, 1.941, 0.029, 0.0502, 1.941, -0.029, 0.056, 1.941, 0.015, 0.0502, 1.941, 0.029, 0.0502, 1.941, -0.029, 0.056, 1.941, -0.015, 0.056, 1.941, 0.015, 0.056, 1.941, -0.015, 0.0579, 1.941, 0, 0.056, 1.941, 0.015, -0.0786, 0.95, -0.2933, -0.1227, 0.636, -0.4581, 0, 0.636, -0.4742, 0, 0.636, -0.4742, 0, 0.95, -0.3037, -0.0786, 0.95, -0.2933, -0.263, 0.95, 0.1518, -0.4107, 0.636, 0.2371, -0.4581, 0.636, 0.1227, -0.4581, 0.636, 0.1227, -0.2933, 0.95, 0.0786, -0.263, 0.95, 0.1518, 0, 1.941, 0.0579, 0, 1.0921, 0.4285, -0.1109, 1.0921, 0.4139, -0.1109, 1.0921, 0.4139, -0.015, 1.941, 0.056, 0, 1.941, 0.0579, 0, 0.95, -0.3037, 0, 0.636, -0.4742, 0.1227, 0.636, -0.4581, 0.1227, 0.636, -0.4581, 0.0786, 0.95, -0.2933, 0, 0.95, -0.3037, 0.1518, 0.95, 0.263, 0.2371, 0.636, 0.4107, 0.1227, 0.636, 0.4581, 0.1227, 0.636, 0.4581, 0.0786, 0.95, 0.2933, 0.1518, 0.95, 0.263, 0, 1.941, -0.0579, 0, 1.0921, -0.4285, 0.1109, 1.0921, -0.4139, 0.1109, 1.0921, -0.4139, 0.015, 1.941, -0.056, 0, 1.941, -0.0579, 0.3711, 1.0921, -0.2142, 0.0502, 1.941, -0.029, 0.041, 1.941, -0.041, 0.041, 1.941, -0.041, 0.303, 1.0921, -0.303, 0.3711, 1.0921, -0.2142, 0.015, 1.941, 0.056, 0.1109, 1.0921, 0.4139, 0, 1.0921, 0.4285, 0, 1.0921, 0.4285, 0, 1.941, 0.0579, 0.015, 1.941, 0.056, 0.029, 1.941, -0.0502, 0.2142, 1.0921, -0.3711, 0.303, 1.0921, -0.303, 0.303, 1.0921, -0.303, 0.041, 1.941, -0.041, 0.029, 1.941, -0.0502, -0.041, 1.941, -0.041, -0.0502, 1.941, -0.029, -0.3711, 1.0921, -0.2142, -0.3711, 1.0921, -0.2142, -0.303, 1.0921, -0.303, -0.041, 1.941, -0.041, -0.029, 1.941, -0.0502, -0.2142, 1.0921, -0.3711, -0.1109, 1.0921, -0.4139, -0.1109, 1.0921, -0.4139, -0.015, 1.941, -0.056, -0.029, 1.941, -0.0502, 0.015, 1.941, -0.056, 0.1109, 1.0921, -0.4139, 0.2142, 1.0921, -0.3711, 0.2142, 1.0921, -0.3711, 0.029, 1.941, -0.0502, 0.015, 1.941, -0.056, 0.4285, 1.0921, 0, 0.4139, 1.0921, 0.1109, 0.056, 1.941, 0.015, 0.056, 1.941, 0.015, 0.0579, 1.941, 0, 0.4285, 1.0921, 0, 0.4139, 1.0921, -0.1109, 0.056, 1.941, -0.015, 0.0502, 1.941, -0.029, 0.0502, 1.941, -0.029, 0.3711, 1.0921, -0.2142, 0.4139, 1.0921, -0.1109, -0.041, 1.941, -0.041, -0.303, 1.0921, -0.303, -0.2142, 1.0921, -0.3711, -0.2142, 1.0921, -0.3711, -0.029, 1.941, -0.0502, -0.041, 1.941, -0.041, -0.041, 1.941, 0.041, -0.303, 1.0921, 0.303, -0.3711, 1.0921, 0.2142, -0.3711, 1.0921, 0.2142, -0.0502, 1.941, 0.029, -0.041, 1.941, 0.041, -0.015, 1.941, 0.056, -0.1109, 1.0921, 0.4139, -0.2142, 1.0921, 0.3711, -0.2142, 1.0921, 0.3711, -0.029, 1.941, 0.0502, -0.015, 1.941, 0.056, 0.4285, 1.0921, 0, 0.0579, 1.941, 0, 0.056, 1.941, -0.015, 0.056, 1.941, -0.015, 0.4139, 1.0921, -0.1109, 0.4285, 1.0921, 0, -0.0502, 1.941, -0.029, -0.056, 1.941, -0.015, -0.4139, 1.0921, -0.1109, -0.4139, 1.0921, -0.1109, -0.3711, 1.0921, -0.2142, -0.0502, 1.941, -0.029, -0.015, 1.941, -0.056, -0.1109, 1.0921, -0.4139, 0, 1.0921, -0.4285, 0, 1.0921, -0.4285, 0, 1.941, -0.0579, -0.015, 1.941, -0.056, 0.3711, 1.0921, 0.2142, 0.303, 1.0921, 0.303, 0.041, 1.941, 0.041, 0.041, 1.941, 0.041, 0.0502, 1.941, 0.029, 0.3711, 1.0921, 0.2142, -0.0502, 1.941, 0.029, -0.3711, 1.0921, 0.2142, -0.4139, 1.0921, 0.1109, -0.4139, 1.0921, 0.1109, -0.056, 1.941, 0.015, -0.0502, 1.941, 0.029, -0.056, 1.941, -0.015, -0.0579, 1.941, 0, -0.4285, 1.0921, 0, -0.4285, 1.0921, 0, -0.4139, 1.0921, -0.1109, -0.056, 1.941, -0.015, -0.029, 1.941, 0.0502, -0.2142, 1.0921, 0.3711, -0.303, 1.0921, 0.303, -0.303, 1.0921, 0.303, -0.041, 1.941, 0.041, -0.029, 1.941, 0.0502, 0.041, 1.941, 0.041, 0.303, 1.0921, 0.303, 0.2142, 1.0921, 0.3711, 0.2142, 1.0921, 0.3711, 0.029, 1.941, 0.0502, 0.041, 1.941, 0.041, -0.4139, 1.0921, -0.1109, -0.4285, 1.0921, 0, -0.4, 0.95, 0, -0.4, 0.95, 0, -0.3864, 0.95, -0.1035, -0.4139, 1.0921, -0.1109, -0.3711, 1.0921, -0.2142, -0.3464, 0.95, -0.2, -0.2828, 0.95, -0.2828, -0.2828, 0.95, -0.2828, -0.303, 1.0921, -0.303, -0.3711, 1.0921, -0.2142, 0, 1.0921, 0.4285, 0, 0.95, 0.4, -0.1035, 0.95, 0.3864, -0.1035, 0.95, 0.3864, -0.1109, 1.0921, 0.4139, 0, 1.0921, 0.4285, 0.4, 0.95, 0, 0.4285, 1.0921, 0, 0.4139, 1.0921, -0.1109, 0.4139, 1.0921, -0.1109, 0.3864, 0.95, -0.1035, 0.4, 0.95, 0, 0.3864, 0.95, 0.1035, 0.4139, 1.0921, 0.1109, 0.4285, 1.0921, 0, 0.4285, 1.0921, 0, 0.4, 0.95, 0, 0.3864, 0.95, 0.1035, -0.3711, 1.0921, 0.2142, -0.303, 1.0921, 0.303, -0.2828, 0.95, 0.2828, -0.2828, 0.95, 0.2828, -0.3464, 0.95, 0.2, -0.3711, 1.0921, 0.2142, 0.2142, 1.0921, 0.3711, 0.2, 0.95, 0.3464, 0.1035, 0.95, 0.3864, 0.1035, 0.95, 0.3864, 0.1109, 1.0921, 0.4139, 0.2142, 1.0921, 0.3711, 0.3464, 0.95, 0.2, 0.3711, 1.0921, 0.2142, 0.4139, 1.0921, 0.1109, 0.4139, 1.0921, 0.1109, 0.3864, 0.95, 0.1035, 0.3464, 0.95, 0.2, 0.3464, 0.95, -0.2, 0.3864, 0.95, -0.1035, 0.4139, 1.0921, -0.1109, 0.4139, 1.0921, -0.1109, 0.3711, 1.0921, -0.2142, 0.3464, 0.95, -0.2, 0.303, 1.0921, 0.303, 0.2828, 0.95, 0.2828, 0.2, 0.95, 0.3464, 0.2, 0.95, 0.3464, 0.2142, 1.0921, 0.3711, 0.303, 1.0921, 0.303, -0.1109, 1.0921, -0.4139, -0.1035, 0.95, -0.3864, 0, 0.95, -0.4, 0, 0.95, -0.4, 0, 1.0921, -0.4285, -0.1109, 1.0921, -0.4139, -0.1109, 1.0921, 0.4139, -0.1035, 0.95, 0.3864, -0.2, 0.95, 0.3464, -0.2, 0.95, 0.3464, -0.2142, 1.0921, 0.3711, -0.1109, 1.0921, 0.4139, 0.2828, 0.95, 0.2828, 0.303, 1.0921, 0.303, 0.3711, 1.0921, 0.2142, 0.3711, 1.0921, 0.2142, 0.3464, 0.95, 0.2, 0.2828, 0.95, 0.2828, 0.1109, 1.0921, -0.4139, 0.1035, 0.95, -0.3864, 0.2, 0.95, -0.3464, 0.2, 0.95, -0.3464, 0.2142, 1.0921, -0.3711, 0.1109, 1.0921, -0.4139, -0.4139, 1.0921, 0.1109, -0.3711, 1.0921, 0.2142, -0.3464, 0.95, 0.2, -0.3464, 0.95, 0.2, -0.3864, 0.95, 0.1035, -0.4139, 1.0921, 0.1109, -0.4285, 1.0921, 0, -0.4139, 1.0921, 0.1109, -0.3864, 0.95, 0.1035, -0.3864, 0.95, 0.1035, -0.4, 0.95, 0, -0.4285, 1.0921, 0, 0.2142, 1.0921, -0.3711, 0.2, 0.95, -0.3464, 0.2828, 0.95, -0.2828, 0.2828, 0.95, -0.2828, 0.303, 1.0921, -0.303, 0.2142, 1.0921, -0.3711, -0.2142, 1.0921, 0.3711, -0.2, 0.95, 0.3464, -0.2828, 0.95, 0.2828, -0.2828, 0.95, 0.2828, -0.303, 1.0921, 0.303, -0.2142, 1.0921, 0.3711, 0.1109, 1.0921, 0.4139, 0.1035, 0.95, 0.3864, 0, 0.95, 0.4, 0, 0.95, 0.4, 0, 1.0921, 0.4285, 0.1109, 1.0921, 0.4139, -0.2142, 1.0921, -0.3711, -0.2, 0.95, -0.3464, -0.1035, 0.95, -0.3864, -0.1035, 0.95, -0.3864, -0.1109, 1.0921, -0.4139, -0.2142, 1.0921, -0.3711, -0.303, 1.0921, -0.303, -0.2828, 0.95, -0.2828, -0.2, 0.95, -0.3464, -0.2, 0.95, -0.3464, -0.2142, 1.0921, -0.3711, -0.303, 1.0921, -0.303, 0, 1.0921, -0.4285, 0, 0.95, -0.4, 0.1035, 0.95, -0.3864, 0.1035, 0.95, -0.3864, 0.1109, 1.0921, -0.4139, 0, 1.0921, -0.4285, 0.2828, 0.95, -0.2828, 0.3464, 0.95, -0.2, 0.3711, 1.0921, -0.2142, 0.3711, 1.0921, -0.2142, 0.303, 1.0921, -0.303, 0.2828, 0.95, -0.2828, -0.4139, 1.0921, -0.1109, -0.3864, 0.95, -0.1035, -0.3464, 0.95, -0.2, -0.3464, 0.95, -0.2, -0.3711, 1.0921, -0.2142, -0.4139, 1.0921, -0.1109) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8txcc"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qupgh"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_t1ngi"] +_surfaces = [{ +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"format": 4097, +"index_count": 54, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 5, 0, 4, 0, 2, 0, 2, 0, 3, 0, 5, 0, 0, 0, 6, 0, 7, 0, 7, 0, 8, 0, 0, 0, 8, 0, 7, 0, 9, 0, 9, 0, 4, 0, 8, 0, 1, 0, 0, 0, 8, 0, 8, 0, 10, 0, 1, 0, 11, 0, 6, 0, 0, 0, 0, 0, 2, 0, 11, 0, 11, 0, 9, 0, 7, 0, 7, 0, 6, 0, 11, 0, 4, 0, 9, 0, 11, 0, 11, 0, 2, 0, 4, 0, 10, 0, 8, 0, 4, 0, 4, 0, 5, 0, 10, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62) +}, { +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"format": 4097, +"index_count": 870, +"index_data": PackedByteArray(14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 20, 0, 21, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 23, 0, 21, 0, 22, 0, 24, 0, 23, 0, 24, 0, 25, 0, 23, 0, 24, 0, 26, 0, 25, 0, 26, 0, 5, 0, 25, 0, 5, 0, 27, 0, 25, 0, 26, 0, 10, 0, 5, 0, 5, 0, 3, 0, 27, 0, 10, 0, 26, 0, 28, 0, 3, 0, 29, 0, 27, 0, 28, 0, 1, 0, 10, 0, 3, 0, 1, 0, 29, 0, 28, 0, 30, 0, 1, 0, 30, 0, 29, 0, 1, 0, 30, 0, 31, 0, 29, 0, 30, 0, 32, 0, 31, 0, 32, 0, 33, 0, 31, 0, 32, 0, 14, 0, 33, 0, 14, 0, 34, 0, 33, 0, 14, 0, 15, 0, 34, 0, 15, 0, 35, 0, 34, 0, 15, 0, 36, 0, 35, 0, 36, 0, 37, 0, 35, 0, 36, 0, 38, 0, 39, 0, 39, 0, 37, 0, 36, 0, 12, 0, 14, 0, 32, 0, 32, 0, 40, 0, 12, 0, 41, 0, 28, 0, 26, 0, 26, 0, 42, 0, 41, 0, 44, 0, 43, 0, 16, 0, 16, 0, 18, 0, 44, 0, 46, 0, 45, 0, 22, 0, 22, 0, 20, 0, 46, 0, 47, 0, 23, 0, 25, 0, 25, 0, 48, 0, 47, 0, 15, 0, 13, 0, 38, 0, 38, 0, 36, 0, 15, 0, 48, 0, 25, 0, 27, 0, 27, 0, 49, 0, 48, 0, 33, 0, 34, 0, 50, 0, 50, 0, 51, 0, 33, 0, 52, 0, 24, 0, 22, 0, 22, 0, 45, 0, 52, 0, 34, 0, 35, 0, 53, 0, 53, 0, 50, 0, 34, 0, 49, 0, 27, 0, 29, 0, 29, 0, 54, 0, 49, 0, 55, 0, 19, 0, 21, 0, 21, 0, 56, 0, 55, 0, 37, 0, 39, 0, 53, 0, 53, 0, 35, 0, 37, 0, 42, 0, 26, 0, 24, 0, 24, 0, 52, 0, 42, 0, 57, 0, 30, 0, 28, 0, 28, 0, 41, 0, 57, 0, 58, 0, 46, 0, 20, 0, 20, 0, 17, 0, 58, 0, 44, 0, 18, 0, 19, 0, 19, 0, 55, 0, 44, 0, 56, 0, 21, 0, 23, 0, 23, 0, 47, 0, 56, 0, 54, 0, 29, 0, 31, 0, 31, 0, 59, 0, 54, 0, 61, 0, 60, 0, 43, 0, 43, 0, 44, 0, 61, 0, 62, 0, 56, 0, 47, 0, 47, 0, 63, 0, 62, 0, 64, 0, 54, 0, 59, 0, 59, 0, 65, 0, 64, 0, 38, 0, 13, 0, 66, 0, 66, 0, 67, 0, 38, 0, 68, 0, 12, 0, 40, 0, 40, 0, 69, 0, 68, 0, 39, 0, 70, 0, 71, 0, 71, 0, 53, 0, 39, 0, 50, 0, 72, 0, 73, 0, 73, 0, 51, 0, 50, 0, 53, 0, 71, 0, 72, 0, 72, 0, 50, 0, 53, 0, 74, 0, 57, 0, 41, 0, 41, 0, 75, 0, 74, 0, 63, 0, 47, 0, 48, 0, 48, 0, 76, 0, 63, 0, 65, 0, 59, 0, 51, 0, 51, 0, 73, 0, 65, 0, 13, 0, 12, 0, 68, 0, 68, 0, 66, 0, 13, 0, 59, 0, 31, 0, 33, 0, 33, 0, 51, 0, 59, 0, 43, 0, 58, 0, 17, 0, 17, 0, 16, 0, 43, 0, 77, 0, 61, 0, 44, 0, 44, 0, 55, 0, 77, 0, 39, 0, 38, 0, 67, 0, 67, 0, 70, 0, 39, 0, 40, 0, 32, 0, 30, 0, 30, 0, 57, 0, 40, 0, 80, 0, 78, 0, 79, 0, 79, 0, 81, 0, 80, 0, 84, 0, 82, 0, 83, 0, 83, 0, 85, 0, 84, 0, 88, 0, 86, 0, 87, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 90, 0, 91, 0, 89, 0, 90, 0, 60, 0, 91, 0, 60, 0, 90, 0, 92, 0, 60, 0, 61, 0, 91, 0, 92, 0, 93, 0, 60, 0, 61, 0, 77, 0, 91, 0, 92, 0, 94, 0, 93, 0, 77, 0, 95, 0, 91, 0, 77, 0, 62, 0, 95, 0, 62, 0, 63, 0, 95, 0, 63, 0, 96, 0, 95, 0, 63, 0, 76, 0, 96, 0, 92, 0, 97, 0, 94, 0, 97, 0, 98, 0, 94, 0, 97, 0, 99, 0, 98, 0, 97, 0, 100, 0, 99, 0, 100, 0, 101, 0, 99, 0, 76, 0, 102, 0, 96, 0, 76, 0, 103, 0, 102, 0, 103, 0, 64, 0, 102, 0, 64, 0, 104, 0, 102, 0, 64, 0, 65, 0, 104, 0, 65, 0, 105, 0, 104, 0, 65, 0, 73, 0, 105, 0, 100, 0, 106, 0, 101, 0, 106, 0, 75, 0, 101, 0, 106, 0, 74, 0, 75, 0, 106, 0, 107, 0, 74, 0, 107, 0, 69, 0, 74, 0, 107, 0, 108, 0, 69, 0, 108, 0, 68, 0, 69, 0, 73, 0, 109, 0, 105, 0, 73, 0, 72, 0, 109, 0, 72, 0, 71, 0, 109, 0, 108, 0, 110, 0, 68, 0, 110, 0, 66, 0, 68, 0, 110, 0, 67, 0, 66, 0, 71, 0, 111, 0, 109, 0, 110, 0, 112, 0, 67, 0, 71, 0, 70, 0, 111, 0, 112, 0, 70, 0, 67, 0, 112, 0, 111, 0, 70, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 75, 0, 41, 0, 42, 0, 42, 0, 101, 0, 75, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 62, 0, 77, 0, 55, 0, 55, 0, 56, 0, 62, 0, 99, 0, 52, 0, 45, 0, 45, 0, 98, 0, 99, 0, 93, 0, 58, 0, 43, 0, 43, 0, 60, 0, 93, 0, 98, 0, 45, 0, 46, 0, 46, 0, 94, 0, 98, 0, 101, 0, 42, 0, 52, 0, 52, 0, 99, 0, 101, 0, 84, 0, 85, 0, 120, 0, 120, 0, 121, 0, 84, 0, 120, 0, 122, 0, 121, 0, 122, 0, 123, 0, 121, 0, 122, 0, 124, 0, 123, 0, 124, 0, 125, 0, 123, 0, 124, 0, 126, 0, 125, 0, 126, 0, 127, 0, 125, 0, 126, 0, 128, 0, 127, 0, 128, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 130, 0, 81, 0, 129, 0, 130, 0, 131, 0, 81, 0, 131, 0, 80, 0, 81, 0, 131, 0, 132, 0, 80, 0, 132, 0, 133, 0, 80, 0, 132, 0, 134, 0, 133, 0, 134, 0, 117, 0, 133, 0, 134, 0, 135, 0, 117, 0, 135, 0, 119, 0, 117, 0, 135, 0, 136, 0, 119, 0, 136, 0, 137, 0, 119, 0, 76, 0, 48, 0, 49, 0, 49, 0, 103, 0, 76, 0, 94, 0, 46, 0, 58, 0, 58, 0, 93, 0, 94, 0, 129, 0, 138, 0, 139, 0, 139, 0, 127, 0, 129, 0, 103, 0, 49, 0, 54, 0, 54, 0, 64, 0, 103, 0, 69, 0, 40, 0, 57, 0, 57, 0, 74, 0, 69, 0, 130, 0, 140, 0, 141, 0, 141, 0, 131, 0, 130, 0, 142, 0, 135, 0, 134, 0, 134, 0, 143, 0, 142, 0, 81, 0, 79, 0, 138, 0, 138, 0, 129, 0, 81, 0, 132, 0, 144, 0, 143, 0, 143, 0, 134, 0, 132, 0, 124, 0, 122, 0, 145, 0, 145, 0, 146, 0, 124, 0, 126, 0, 147, 0, 148, 0, 148, 0, 128, 0, 126, 0, 131, 0, 141, 0, 144, 0, 144, 0, 132, 0, 131, 0, 149, 0, 118, 0, 119, 0, 119, 0, 137, 0, 149, 0, 150, 0, 136, 0, 135, 0, 135, 0, 142, 0, 150, 0, 124, 0, 146, 0, 147, 0, 147, 0, 126, 0, 124, 0, 123, 0, 151, 0, 152, 0, 152, 0, 121, 0, 123, 0, 127, 0, 139, 0, 153, 0, 153, 0, 125, 0, 127, 0, 149, 0, 137, 0, 136, 0, 136, 0, 150, 0, 149, 0, 122, 0, 120, 0, 154, 0, 154, 0, 145, 0, 122, 0, 128, 0, 148, 0, 140, 0, 140, 0, 130, 0, 128, 0, 116, 0, 155, 0, 133, 0, 133, 0, 117, 0, 116, 0, 121, 0, 152, 0, 82, 0, 82, 0, 84, 0, 121, 0, 120, 0, 85, 0, 83, 0, 83, 0, 154, 0, 120, 0, 125, 0, 153, 0, 151, 0, 151, 0, 123, 0, 125, 0, 133, 0, 155, 0, 78, 0, 78, 0, 80, 0, 133, 0, 154, 0, 83, 0, 86, 0, 86, 0, 88, 0, 154, 0, 145, 0, 89, 0, 91, 0, 91, 0, 146, 0, 145, 0, 138, 0, 106, 0, 100, 0, 100, 0, 139, 0, 138, 0, 115, 0, 149, 0, 150, 0, 150, 0, 113, 0, 115, 0, 114, 0, 118, 0, 149, 0, 149, 0, 115, 0, 114, 0, 152, 0, 151, 0, 92, 0, 92, 0, 90, 0, 152, 0, 78, 0, 108, 0, 107, 0, 107, 0, 79, 0, 78, 0, 112, 0, 116, 0, 118, 0, 118, 0, 114, 0, 112, 0, 111, 0, 113, 0, 150, 0, 150, 0, 142, 0, 111, 0, 155, 0, 110, 0, 108, 0, 108, 0, 78, 0, 155, 0, 148, 0, 96, 0, 102, 0, 102, 0, 140, 0, 148, 0, 139, 0, 100, 0, 97, 0, 97, 0, 153, 0, 139, 0, 110, 0, 155, 0, 116, 0, 116, 0, 112, 0, 110, 0, 141, 0, 104, 0, 105, 0, 105, 0, 144, 0, 141, 0, 82, 0, 152, 0, 90, 0, 90, 0, 87, 0, 82, 0, 83, 0, 82, 0, 87, 0, 87, 0, 86, 0, 83, 0, 144, 0, 105, 0, 109, 0, 109, 0, 143, 0, 144, 0, 153, 0, 97, 0, 92, 0, 92, 0, 151, 0, 153, 0, 79, 0, 107, 0, 106, 0, 106, 0, 138, 0, 79, 0, 147, 0, 95, 0, 96, 0, 96, 0, 148, 0, 147, 0, 146, 0, 91, 0, 95, 0, 95, 0, 147, 0, 146, 0, 140, 0, 102, 0, 104, 0, 104, 0, 141, 0, 140, 0, 109, 0, 111, 0, 142, 0, 142, 0, 143, 0, 109, 0, 154, 0, 88, 0, 89, 0, 89, 0, 145, 0, 154, 0), +"name": "snow", +"primitive": 3, +"vertex_count": 156, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_yln2m"] +resource_name = "treePineSnow_Mesh treePineSnow" +_surfaces = [{ +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"attribute_data": PackedByteArray(129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 192, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 120, 157, 133, 64, 240, 58, 75, 192, 120, 157, 133, 64, 120, 157, 165, 64, 120, 157, 133, 192, 240, 58, 75, 192, 120, 157, 133, 192, 120, 157, 165, 64, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 142, 224, 137, 65, 0, 0, 128, 63, 218, 45, 133, 65, 175, 189, 174, 64, 218, 45, 133, 65, 94, 123, 93, 192, 109, 207, 110, 65, 28, 193, 243, 192, 109, 207, 110, 65, 142, 224, 25, 65, 222, 252, 66, 65, 222, 252, 50, 193, 222, 252, 66, 65, 222, 252, 82, 65, 142, 224, 9, 65, 109, 207, 94, 193, 142, 224, 9, 65, 109, 207, 126, 65, 175, 189, 142, 64, 180, 91, 122, 193, 175, 189, 142, 64, 218, 45, 141, 65, 25, 228, 13, 64, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 129, 193, 25, 228, 13, 64, 25, 228, 77, 64, 25, 228, 13, 192, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 145, 65, 175, 189, 142, 192, 180, 91, 122, 193, 25, 228, 13, 192, 25, 228, 77, 64, 175, 189, 142, 192, 218, 45, 141, 65, 142, 224, 9, 193, 109, 207, 94, 193, 142, 224, 9, 193, 109, 207, 126, 65, 222, 252, 66, 193, 222, 252, 50, 193, 222, 252, 66, 193, 222, 252, 82, 65, 109, 207, 110, 193, 28, 193, 243, 192, 109, 207, 110, 193, 142, 224, 25, 65, 218, 45, 133, 193, 94, 123, 93, 192, 218, 45, 133, 193, 175, 189, 174, 64, 142, 224, 137, 193, 0, 0, 128, 63, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 240, 247, 123, 65, 0, 0, 128, 63, 5, 98, 115, 65, 178, 109, 162, 64, 5, 98, 115, 65, 100, 219, 68, 192, 12, 54, 90, 65, 240, 247, 219, 192, 12, 54, 90, 65, 248, 251, 13, 65, 44, 43, 50, 65, 44, 43, 34, 193, 12, 71, 63, 65, 0, 0, 128, 63, 44, 43, 50, 65, 44, 43, 66, 65, 137, 194, 56, 65, 107, 6, 6, 192, 137, 194, 56, 65, 54, 3, 131, 64, 181, 166, 37, 65, 12, 71, 159, 192, 181, 166, 37, 65, 12, 71, 223, 64, 240, 247, 251, 64, 12, 54, 74, 193, 239, 64, 7, 65, 222, 129, 238, 192, 12, 71, 191, 64, 181, 166, 21, 193, 178, 109, 130, 64, 5, 98, 99, 193, 107, 6, 70, 64, 137, 194, 40, 193, 240, 247, 251, 64, 12, 54, 106, 65, 239, 64, 7, 65, 239, 64, 23, 65, 12, 71, 191, 64, 181, 166, 53, 65, 178, 109, 130, 64, 2, 177, 129, 65, 107, 6, 70, 64, 137, 194, 72, 65, 0, 0, 0, 0, 240, 247, 107, 193, 0, 0, 128, 42, 12, 71, 47, 193, 107, 6, 70, 192, 137, 194, 40, 193, 178, 109, 130, 192, 5, 98, 99, 193, 12, 71, 191, 192, 181, 166, 21, 193, 240, 247, 251, 192, 12, 54, 74, 193, 239, 64, 7, 193, 222, 129, 238, 192, 0, 0, 0, 0, 248, 251, 133, 65, 0, 0, 0, 43, 12, 71, 79, 65, 107, 6, 70, 192, 137, 194, 72, 65, 178, 109, 130, 192, 2, 177, 129, 65, 12, 71, 191, 192, 181, 166, 53, 65, 240, 247, 251, 192, 12, 54, 106, 65, 239, 64, 7, 193, 239, 64, 23, 65, 44, 43, 50, 193, 44, 43, 34, 193, 181, 166, 37, 193, 12, 71, 159, 192, 137, 194, 56, 193, 107, 6, 6, 192, 44, 43, 50, 193, 44, 43, 66, 65, 181, 166, 37, 193, 12, 71, 223, 64, 137, 194, 56, 193, 54, 3, 131, 64, 12, 54, 90, 193, 240, 247, 219, 192, 12, 54, 90, 193, 248, 251, 13, 65, 12, 71, 63, 193, 0, 0, 128, 63, 5, 98, 115, 193, 100, 219, 68, 192, 5, 98, 115, 193, 178, 109, 162, 64, 240, 247, 123, 193, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 153, 249, 17, 192, 0, 0, 128, 63, 66, 0, 13, 192, 74, 192, 209, 62, 66, 0, 13, 192, 238, 143, 203, 63, 11, 214, 252, 191, 204, 252, 8, 64, 11, 214, 252, 191, 200, 204, 15, 190, 151, 112, 206, 191, 76, 56, 39, 64, 151, 112, 206, 191, 46, 225, 28, 191, 153, 249, 145, 191, 6, 107, 62, 64, 153, 249, 145, 191, 22, 172, 121, 191, 219, 31, 23, 191, 66, 0, 77, 64, 219, 31, 23, 191, 132, 0, 154, 191, 0, 0, 128, 170, 153, 249, 81, 64, 0, 0, 128, 170, 50, 243, 163, 191, 219, 31, 23, 63, 66, 0, 77, 64, 219, 31, 23, 63, 132, 0, 154, 191, 153, 249, 145, 63, 6, 107, 62, 64, 153, 249, 145, 63, 22, 172, 121, 191, 151, 112, 206, 63, 76, 56, 39, 64, 151, 112, 206, 63, 46, 225, 28, 191, 11, 214, 252, 63, 204, 252, 8, 64, 11, 214, 252, 63, 200, 204, 15, 190, 66, 0, 13, 64, 238, 143, 203, 63, 66, 0, 13, 64, 74, 192, 209, 62, 153, 249, 17, 64, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194), +"format": 4119, +"index_count": 54, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 30, 0, 28, 0, 29, 0, 29, 0, 31, 0, 30, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0), +"material": SubResource("StandardMaterial3D_8txcc"), +"name": "dirt", +"primitive": 3, +"vertex_count": 520, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 255, 255, 255, 255, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 17, 250, 237, 133, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 255, 255, 255, 255, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 237, 133, 255, 255, 255, 255, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 255, 255, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 255, 255, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 38, 27, 38, 155, 255, 127, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 38, 27, 38, 155, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 255, 255, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 255, 255, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 255, 255, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 216, 228, 38, 155, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 255, 255, 255, 255, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 38, 155, 255, 255, 255, 255, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 255, 255, 255, 255, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 255, 191, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 255, 191, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 255, 127, 255, 191, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 255, 127, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 237, 5, 237, 133, 255, 127, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 237, 5, 237, 133, 255, 127, 255, 191, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 0, 0, 0, 128, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 0, 0, 0, 128, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 0, 0, 0, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 0, 0, 0, 128, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 0, 0, 0, 128, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 0, 0, 0, 128, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 0, 0, 0, 128, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 0, 0, 0, 128, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 0, 0, 0, 128, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 0, 0, 0, 128, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 0, 0, 0, 128, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 0, 0, 0, 128, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 0, 0, 0, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 0, 0, 0, 128, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 0, 0, 0, 128, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 0, 0, 0, 128, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 0, 0, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 0, 128, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 0, 128, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 0, 128, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 0, 0, 0, 128, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 0, 0, 0, 128, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 0, 0, 0, 128, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 0, 0, 0, 128, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 0, 0, 0, 128, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 0, 0, 0, 128, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 0, 0, 0, 128, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 255, 255, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 0, 0, 0, 128, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 0, 0, 0, 128, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 0, 0, 0, 128, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 0, 0, 0, 128, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 0, 0, 0, 128, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 0, 0, 0, 128, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 0, 0, 0, 128, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 0, 0, 0, 128, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 0, 0, 0, 128, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 0, 0, 0, 128, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 0, 0, 0, 128, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 0, 0, 0, 128, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 0, 0, 0, 128, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 0, 0, 128, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 0, 0, 0, 128, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 0, 0, 0, 128, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 0, 0, 0, 128, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 0, 0, 0, 128, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 0, 0, 0, 128, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 0, 0, 0, 128, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 0, 0, 0, 128, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 0, 0, 0, 128, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 0, 0, 128, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 0, 0, 0, 128, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 0, 0, 0, 128, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 0, 0, 0, 128, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 0, 0, 0, 128, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 0, 0, 0, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 0, 0, 0, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 0, 0, 0, 128, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 0, 0, 0, 128, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 0, 0, 0, 128, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 0, 0, 0, 128, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 0, 0, 0, 128, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 0, 0, 0, 128, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 0, 0, 0, 128, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 0, 0, 0, 128, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 0, 0, 0, 128, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 0, 0, 0, 128, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 0, 0, 0, 128, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 0, 0, 0, 128, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 0, 0, 0, 128, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 0, 0, 0, 128, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 0, 0, 0, 128, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 0, 0, 0, 128, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 0, 0, 0, 128, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 0, 0, 0, 128, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 0, 0, 0, 128, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 0, 0, 0, 128, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 0, 0, 0, 128, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.47424, -8.01483e-32, -0.47424, 0.94848, 1.941, 0.94848), +"attribute_data": PackedByteArray(129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 192, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 192, 126, 239, 26, 192, 120, 157, 133, 64, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 120, 157, 133, 64, 240, 58, 75, 192, 120, 157, 133, 64, 120, 157, 165, 64, 120, 157, 133, 192, 240, 58, 75, 192, 120, 157, 133, 192, 120, 157, 165, 64, 120, 157, 133, 64, 252, 120, 5, 64, 120, 157, 133, 192, 252, 120, 5, 64, 129, 64, 64, 64, 126, 239, 26, 192, 129, 64, 64, 192, 126, 239, 26, 192, 129, 64, 64, 64, 4, 214, 76, 192, 129, 64, 64, 192, 4, 214, 76, 192, 25, 228, 13, 64, 246, 90, 155, 193, 25, 228, 13, 192, 246, 90, 155, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 142, 224, 137, 65, 0, 0, 128, 63, 218, 45, 133, 65, 175, 189, 174, 64, 218, 45, 133, 65, 94, 123, 93, 192, 109, 207, 110, 65, 28, 193, 243, 192, 109, 207, 110, 65, 142, 224, 25, 65, 222, 252, 66, 65, 222, 252, 50, 193, 222, 252, 66, 65, 222, 252, 82, 65, 142, 224, 9, 65, 109, 207, 94, 193, 142, 224, 9, 65, 109, 207, 126, 65, 175, 189, 142, 64, 180, 91, 122, 193, 175, 189, 142, 64, 218, 45, 141, 65, 25, 228, 13, 64, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 129, 193, 25, 228, 13, 64, 25, 228, 77, 64, 25, 228, 13, 192, 50, 200, 155, 191, 0, 0, 0, 170, 142, 224, 145, 65, 175, 189, 142, 192, 180, 91, 122, 193, 25, 228, 13, 192, 25, 228, 77, 64, 175, 189, 142, 192, 218, 45, 141, 65, 142, 224, 9, 193, 109, 207, 94, 193, 142, 224, 9, 193, 109, 207, 126, 65, 222, 252, 66, 193, 222, 252, 50, 193, 222, 252, 66, 193, 222, 252, 82, 65, 109, 207, 110, 193, 28, 193, 243, 192, 109, 207, 110, 193, 142, 224, 25, 65, 218, 45, 133, 193, 94, 123, 93, 192, 218, 45, 133, 193, 175, 189, 174, 64, 142, 224, 137, 193, 0, 0, 128, 63, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 106, 248, 27, 64, 31, 184, 227, 193, 0, 249, 15, 64, 204, 12, 190, 193, 106, 248, 27, 192, 31, 184, 227, 193, 0, 249, 15, 192, 204, 12, 190, 193, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 0, 249, 15, 64, 204, 12, 190, 193, 0, 249, 15, 192, 204, 12, 190, 193, 106, 248, 27, 64, 31, 184, 227, 193, 106, 248, 27, 192, 31, 184, 227, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 240, 247, 123, 65, 0, 0, 128, 63, 5, 98, 115, 65, 178, 109, 162, 64, 5, 98, 115, 65, 100, 219, 68, 192, 12, 54, 90, 65, 240, 247, 219, 192, 12, 54, 90, 65, 248, 251, 13, 65, 44, 43, 50, 65, 44, 43, 34, 193, 12, 71, 63, 65, 0, 0, 128, 63, 44, 43, 50, 65, 44, 43, 66, 65, 137, 194, 56, 65, 107, 6, 6, 192, 137, 194, 56, 65, 54, 3, 131, 64, 181, 166, 37, 65, 12, 71, 159, 192, 181, 166, 37, 65, 12, 71, 223, 64, 240, 247, 251, 64, 12, 54, 74, 193, 239, 64, 7, 65, 222, 129, 238, 192, 12, 71, 191, 64, 181, 166, 21, 193, 178, 109, 130, 64, 5, 98, 99, 193, 107, 6, 70, 64, 137, 194, 40, 193, 240, 247, 251, 64, 12, 54, 106, 65, 239, 64, 7, 65, 239, 64, 23, 65, 12, 71, 191, 64, 181, 166, 53, 65, 178, 109, 130, 64, 2, 177, 129, 65, 107, 6, 70, 64, 137, 194, 72, 65, 0, 0, 0, 0, 240, 247, 107, 193, 0, 0, 128, 42, 12, 71, 47, 193, 107, 6, 70, 192, 137, 194, 40, 193, 178, 109, 130, 192, 5, 98, 99, 193, 12, 71, 191, 192, 181, 166, 21, 193, 240, 247, 251, 192, 12, 54, 74, 193, 239, 64, 7, 193, 222, 129, 238, 192, 0, 0, 0, 0, 248, 251, 133, 65, 0, 0, 0, 43, 12, 71, 79, 65, 107, 6, 70, 192, 137, 194, 72, 65, 178, 109, 130, 192, 2, 177, 129, 65, 12, 71, 191, 192, 181, 166, 53, 65, 240, 247, 251, 192, 12, 54, 106, 65, 239, 64, 7, 193, 239, 64, 23, 65, 44, 43, 50, 193, 44, 43, 34, 193, 181, 166, 37, 193, 12, 71, 159, 192, 137, 194, 56, 193, 107, 6, 6, 192, 44, 43, 50, 193, 44, 43, 66, 65, 181, 166, 37, 193, 12, 71, 223, 64, 137, 194, 56, 193, 54, 3, 131, 64, 12, 54, 90, 193, 240, 247, 219, 192, 12, 54, 90, 193, 248, 251, 13, 65, 12, 71, 63, 193, 0, 0, 128, 63, 5, 98, 115, 193, 100, 219, 68, 192, 5, 98, 115, 193, 178, 109, 162, 64, 240, 247, 123, 193, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 220, 187, 199, 63, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 192, 205, 68, 68, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 153, 249, 17, 192, 0, 0, 128, 63, 66, 0, 13, 192, 74, 192, 209, 62, 66, 0, 13, 192, 238, 143, 203, 63, 11, 214, 252, 191, 204, 252, 8, 64, 11, 214, 252, 191, 200, 204, 15, 190, 151, 112, 206, 191, 76, 56, 39, 64, 151, 112, 206, 191, 46, 225, 28, 191, 153, 249, 145, 191, 6, 107, 62, 64, 153, 249, 145, 191, 22, 172, 121, 191, 219, 31, 23, 191, 66, 0, 77, 64, 219, 31, 23, 191, 132, 0, 154, 191, 0, 0, 128, 170, 153, 249, 81, 64, 0, 0, 128, 170, 50, 243, 163, 191, 219, 31, 23, 63, 66, 0, 77, 64, 219, 31, 23, 63, 132, 0, 154, 191, 153, 249, 145, 63, 6, 107, 62, 64, 153, 249, 145, 63, 22, 172, 121, 191, 151, 112, 206, 63, 76, 56, 39, 64, 151, 112, 206, 63, 46, 225, 28, 191, 11, 214, 252, 63, 204, 252, 8, 64, 11, 214, 252, 63, 200, 204, 15, 190, 66, 0, 13, 64, 238, 143, 203, 63, 66, 0, 13, 64, 74, 192, 209, 62, 153, 249, 17, 64, 0, 0, 128, 63, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 106, 248, 27, 64, 205, 68, 68, 193, 106, 248, 27, 192, 205, 68, 68, 193, 220, 187, 199, 63, 42, 119, 210, 193, 220, 187, 199, 191, 42, 119, 210, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 177, 109, 152, 62, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 192, 212, 135, 254, 193, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 212, 135, 254, 193, 172, 235, 12, 192, 212, 135, 254, 193, 177, 109, 152, 62, 175, 119, 136, 194, 177, 109, 152, 190, 175, 119, 136, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 192, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 208, 141, 3, 64, 4, 233, 26, 194, 208, 141, 3, 192, 4, 233, 26, 194, 172, 235, 12, 64, 252, 184, 49, 194, 172, 235, 12, 192, 252, 184, 49, 194), +"format": 4119, +"index_count": 870, +"index_data": PackedByteArray(38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 41, 0, 44, 0, 43, 0, 44, 0, 45, 0, 43, 0, 44, 0, 46, 0, 45, 0, 46, 0, 47, 0, 45, 0, 46, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 48, 0, 50, 0, 49, 0, 50, 0, 51, 0, 49, 0, 51, 0, 52, 0, 49, 0, 50, 0, 53, 0, 51, 0, 51, 0, 54, 0, 52, 0, 53, 0, 50, 0, 55, 0, 54, 0, 56, 0, 52, 0, 55, 0, 57, 0, 53, 0, 54, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 58, 0, 56, 0, 57, 0, 58, 0, 59, 0, 56, 0, 58, 0, 60, 0, 59, 0, 60, 0, 61, 0, 59, 0, 60, 0, 62, 0, 61, 0, 62, 0, 63, 0, 61, 0, 62, 0, 64, 0, 63, 0, 64, 0, 65, 0, 63, 0, 64, 0, 66, 0, 65, 0, 66, 0, 67, 0, 65, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 90, 0, 88, 0, 89, 0, 89, 0, 91, 0, 90, 0, 94, 0, 92, 0, 93, 0, 93, 0, 95, 0, 94, 0, 98, 0, 96, 0, 97, 0, 97, 0, 99, 0, 98, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 107, 0, 106, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 114, 0, 112, 0, 113, 0, 113, 0, 115, 0, 114, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 122, 0, 120, 0, 121, 0, 121, 0, 123, 0, 122, 0, 126, 0, 124, 0, 125, 0, 125, 0, 127, 0, 126, 0, 130, 0, 128, 0, 129, 0, 129, 0, 131, 0, 130, 0, 134, 0, 132, 0, 133, 0, 133, 0, 135, 0, 134, 0, 138, 0, 136, 0, 137, 0, 137, 0, 139, 0, 138, 0, 142, 0, 140, 0, 141, 0, 141, 0, 143, 0, 142, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0, 170, 0, 168, 0, 169, 0, 169, 0, 171, 0, 170, 0, 174, 0, 172, 0, 173, 0, 173, 0, 175, 0, 174, 0, 178, 0, 176, 0, 177, 0, 177, 0, 179, 0, 178, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 190, 0, 188, 0, 189, 0, 189, 0, 191, 0, 190, 0, 194, 0, 192, 0, 193, 0, 193, 0, 195, 0, 194, 0, 198, 0, 196, 0, 197, 0, 197, 0, 199, 0, 198, 0, 202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 213, 0, 215, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 222, 0, 220, 0, 221, 0, 221, 0, 223, 0, 222, 0, 226, 0, 224, 0, 225, 0, 225, 0, 227, 0, 226, 0, 225, 0, 228, 0, 227, 0, 228, 0, 229, 0, 227, 0, 228, 0, 230, 0, 229, 0, 230, 0, 228, 0, 231, 0, 230, 0, 232, 0, 229, 0, 231, 0, 233, 0, 230, 0, 232, 0, 234, 0, 229, 0, 231, 0, 235, 0, 233, 0, 234, 0, 236, 0, 229, 0, 234, 0, 237, 0, 236, 0, 237, 0, 238, 0, 236, 0, 238, 0, 239, 0, 236, 0, 238, 0, 240, 0, 239, 0, 231, 0, 241, 0, 235, 0, 241, 0, 242, 0, 235, 0, 241, 0, 243, 0, 242, 0, 241, 0, 244, 0, 243, 0, 244, 0, 245, 0, 243, 0, 240, 0, 246, 0, 239, 0, 240, 0, 247, 0, 246, 0, 247, 0, 248, 0, 246, 0, 248, 0, 249, 0, 246, 0, 248, 0, 250, 0, 249, 0, 250, 0, 251, 0, 249, 0, 250, 0, 252, 0, 251, 0, 244, 0, 253, 0, 245, 0, 253, 0, 254, 0, 245, 0, 253, 0, 255, 0, 254, 0, 253, 0, 0, 1, 255, 0, 0, 1, 1, 1, 255, 0, 0, 1, 2, 1, 1, 1, 2, 1, 3, 1, 1, 1, 252, 0, 4, 1, 251, 0, 252, 0, 5, 1, 4, 1, 5, 1, 6, 1, 4, 1, 2, 1, 7, 1, 3, 1, 7, 1, 8, 1, 3, 1, 7, 1, 9, 1, 8, 1, 6, 1, 10, 1, 4, 1, 7, 1, 11, 1, 9, 1, 6, 1, 12, 1, 10, 1, 11, 1, 12, 1, 9, 1, 11, 1, 10, 1, 12, 1, 11, 1, 13, 1, 10, 1, 11, 1, 14, 1, 13, 1, 14, 1, 15, 1, 13, 1, 18, 1, 16, 1, 17, 1, 17, 1, 19, 1, 18, 1, 22, 1, 20, 1, 21, 1, 21, 1, 23, 1, 22, 1, 26, 1, 24, 1, 25, 1, 25, 1, 27, 1, 26, 1, 30, 1, 28, 1, 29, 1, 29, 1, 31, 1, 30, 1, 34, 1, 32, 1, 33, 1, 33, 1, 35, 1, 34, 1, 38, 1, 36, 1, 37, 1, 37, 1, 39, 1, 38, 1, 42, 1, 40, 1, 41, 1, 41, 1, 43, 1, 42, 1, 46, 1, 44, 1, 45, 1, 45, 1, 47, 1, 46, 1, 45, 1, 48, 1, 47, 1, 48, 1, 49, 1, 47, 1, 48, 1, 50, 1, 49, 1, 50, 1, 51, 1, 49, 1, 50, 1, 52, 1, 51, 1, 52, 1, 53, 1, 51, 1, 52, 1, 54, 1, 53, 1, 54, 1, 55, 1, 53, 1, 54, 1, 56, 1, 55, 1, 56, 1, 57, 1, 55, 1, 56, 1, 58, 1, 57, 1, 58, 1, 59, 1, 57, 1, 58, 1, 60, 1, 59, 1, 60, 1, 61, 1, 59, 1, 60, 1, 62, 1, 61, 1, 62, 1, 63, 1, 61, 1, 62, 1, 64, 1, 63, 1, 64, 1, 65, 1, 63, 1, 64, 1, 66, 1, 65, 1, 66, 1, 67, 1, 65, 1, 70, 1, 68, 1, 69, 1, 69, 1, 71, 1, 70, 1, 74, 1, 72, 1, 73, 1, 73, 1, 75, 1, 74, 1, 78, 1, 76, 1, 77, 1, 77, 1, 79, 1, 78, 1, 82, 1, 80, 1, 81, 1, 81, 1, 83, 1, 82, 1, 86, 1, 84, 1, 85, 1, 85, 1, 87, 1, 86, 1, 90, 1, 88, 1, 89, 1, 89, 1, 91, 1, 90, 1, 94, 1, 92, 1, 93, 1, 93, 1, 95, 1, 94, 1, 98, 1, 96, 1, 97, 1, 97, 1, 99, 1, 98, 1, 102, 1, 100, 1, 101, 1, 101, 1, 103, 1, 102, 1, 106, 1, 104, 1, 105, 1, 105, 1, 107, 1, 106, 1, 110, 1, 108, 1, 109, 1, 109, 1, 111, 1, 110, 1, 114, 1, 112, 1, 113, 1, 113, 1, 115, 1, 114, 1, 118, 1, 116, 1, 117, 1, 117, 1, 119, 1, 118, 1, 122, 1, 120, 1, 121, 1, 121, 1, 123, 1, 122, 1, 126, 1, 124, 1, 125, 1, 125, 1, 127, 1, 126, 1, 130, 1, 128, 1, 129, 1, 129, 1, 131, 1, 130, 1, 134, 1, 132, 1, 133, 1, 133, 1, 135, 1, 134, 1, 138, 1, 136, 1, 137, 1, 137, 1, 139, 1, 138, 1, 142, 1, 140, 1, 141, 1, 141, 1, 143, 1, 142, 1, 146, 1, 144, 1, 145, 1, 145, 1, 147, 1, 146, 1, 150, 1, 148, 1, 149, 1, 149, 1, 151, 1, 150, 1, 154, 1, 152, 1, 153, 1, 153, 1, 155, 1, 154, 1, 158, 1, 156, 1, 157, 1, 157, 1, 159, 1, 158, 1, 162, 1, 160, 1, 161, 1, 161, 1, 163, 1, 162, 1, 166, 1, 164, 1, 165, 1, 165, 1, 167, 1, 166, 1, 170, 1, 168, 1, 169, 1, 169, 1, 171, 1, 170, 1, 174, 1, 172, 1, 173, 1, 173, 1, 175, 1, 174, 1, 178, 1, 176, 1, 177, 1, 177, 1, 179, 1, 178, 1, 182, 1, 180, 1, 181, 1, 181, 1, 183, 1, 182, 1, 186, 1, 184, 1, 185, 1, 185, 1, 187, 1, 186, 1, 190, 1, 188, 1, 189, 1, 189, 1, 191, 1, 190, 1, 194, 1, 192, 1, 193, 1, 193, 1, 195, 1, 194, 1, 198, 1, 196, 1, 197, 1, 197, 1, 199, 1, 198, 1, 202, 1, 200, 1, 201, 1, 201, 1, 203, 1, 202, 1, 206, 1, 204, 1, 205, 1, 205, 1, 207, 1, 206, 1, 210, 1, 208, 1, 209, 1, 209, 1, 211, 1, 210, 1, 214, 1, 212, 1, 213, 1, 213, 1, 215, 1, 214, 1, 218, 1, 216, 1, 217, 1, 217, 1, 219, 1, 218, 1, 222, 1, 220, 1, 221, 1, 221, 1, 223, 1, 222, 1, 226, 1, 224, 1, 225, 1, 225, 1, 227, 1, 226, 1, 230, 1, 228, 1, 229, 1, 229, 1, 231, 1, 230, 1, 234, 1, 232, 1, 233, 1, 233, 1, 235, 1, 234, 1, 238, 1, 236, 1, 237, 1, 237, 1, 239, 1, 238, 1, 242, 1, 240, 1, 241, 1, 241, 1, 243, 1, 242, 1, 246, 1, 244, 1, 245, 1, 245, 1, 247, 1, 246, 1, 250, 1, 248, 1, 249, 1, 249, 1, 251, 1, 250, 1, 254, 1, 252, 1, 253, 1, 253, 1, 255, 1, 254, 1, 2, 2, 0, 2, 1, 2, 1, 2, 3, 2, 2, 2, 6, 2, 4, 2, 5, 2, 5, 2, 7, 2, 6, 2), +"material": SubResource("StandardMaterial3D_qupgh"), +"name": "snow", +"primitive": 3, +"vertex_count": 520, +"vertex_data": PackedByteArray(45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 17, 250, 237, 133, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 237, 133, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 17, 250, 255, 255, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 38, 27, 38, 155, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 38, 27, 38, 155, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 255, 127, 81, 146, 0, 0, 0, 128, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 237, 133, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 216, 228, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 61, 173, 237, 81, 146, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 38, 155, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 81, 146, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 61, 255, 127, 0, 0, 0, 0, 0, 128, 105, 52, 217, 189, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 0, 128, 105, 52, 217, 61, 169, 19, 208, 139, 105, 52, 217, 189, 216, 228, 255, 255, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 61, 156, 91, 226, 61, 45, 67, 156, 189, 173, 237, 255, 255, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 61, 81, 18, 81, 146, 0, 0, 0, 128, 45, 67, 156, 189, 156, 91, 226, 61, 45, 67, 156, 189, 81, 18, 81, 146, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 237, 5, 237, 133, 0, 0, 0, 128, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 237, 5, 237, 133, 0, 0, 0, 128, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 160, 252, 198, 158, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 134, 252, 204, 232, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 160, 252, 198, 158, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 134, 252, 204, 232, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 189, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 189, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 255, 127, 0, 0, 0, 0, 255, 191, 116, 168, 102, 61, 203, 161, 5, 63, 116, 168, 102, 61, 255, 127, 0, 0, 0, 0, 255, 191, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 255, 127, 0, 0, 0, 0, 255, 191, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 255, 127, 0, 0, 0, 0, 255, 191, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 255, 127, 0, 0, 0, 0, 255, 191, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 255, 127, 0, 0, 0, 0, 255, 191, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 255, 127, 0, 0, 0, 0, 255, 191, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 24, 252, 153, 140, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 86, 251, 64, 255, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 24, 252, 153, 140, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 86, 251, 64, 255, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 62, 48, 180, 97, 104, 160, 252, 117, 224, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 134, 252, 16, 167, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 48, 180, 97, 104, 160, 252, 117, 224, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 134, 252, 16, 167, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 217, 249, 83, 194, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 227, 226, 12, 190, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 217, 249, 83, 194, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 227, 226, 12, 190, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 130, 126, 83, 194, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 130, 126, 83, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 202, 102, 12, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 202, 102, 12, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 141, 189, 174, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 141, 189, 174, 193, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 100, 174, 66, 190, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 100, 174, 66, 190, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 63, 48, 190, 193, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 22, 31, 18, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 63, 48, 190, 193, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 22, 31, 18, 190, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 190, 193, 180, 103, 128, 252, 95, 150, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 8, 208, 123, 101, 38, 252, 96, 242, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 62, 190, 193, 180, 103, 128, 252, 95, 150, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 61, 8, 208, 123, 101, 38, 252, 96, 242, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 190, 131, 26, 114, 21, 27, 29, 242, 193, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 37, 6, 171, 189, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 131, 26, 114, 21, 27, 29, 242, 193, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 37, 6, 171, 189, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 120, 3, 49, 151, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 120, 3, 49, 151, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 94, 3, 56, 225, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 94, 3, 56, 225, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 33, 206, 187, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 62, 206, 75, 97, 104, 19, 191, 80, 190, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 33, 206, 187, 193, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 206, 75, 97, 104, 19, 191, 80, 190, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 216, 3, 158, 141, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 216, 3, 158, 141, 224, 26, 194, 62, 203, 161, 5, 63, 20, 34, 96, 190, 179, 231, 190, 65, 126, 3, 158, 233, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 179, 231, 190, 65, 126, 3, 158, 233, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 190, 247, 224, 0, 0, 168, 4, 18, 195, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 230, 3, 113, 177, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 247, 224, 0, 0, 168, 4, 18, 195, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 230, 3, 113, 177, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 154, 81, 187, 193, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 113, 66, 80, 190, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 154, 81, 187, 193, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 113, 66, 80, 190, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 247, 224, 247, 96, 168, 4, 190, 128, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 123, 229, 9, 80, 230, 3, 100, 243, 20, 34, 224, 62, 203, 161, 5, 63, 169, 19, 80, 167, 247, 224, 247, 96, 168, 4, 190, 128, 247, 126, 216, 62, 203, 161, 5, 63, 41, 10, 232, 189, 123, 229, 9, 80, 230, 3, 100, 243, 41, 10, 232, 189, 203, 161, 5, 63, 247, 126, 216, 62, 141, 106, 123, 101, 232, 224, 235, 193, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 62, 10, 90, 180, 103, 191, 207, 63, 190, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 141, 106, 123, 101, 232, 224, 235, 193, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 10, 90, 180, 103, 191, 207, 63, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 24, 252, 140, 206, 169, 19, 80, 39, 203, 161, 5, 63, 20, 34, 224, 62, 255, 127, 247, 96, 86, 251, 236, 188, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 24, 252, 140, 206, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 247, 96, 86, 251, 236, 188, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 64, 62, 180, 103, 192, 172, 190, 193, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 62, 64, 62, 180, 103, 192, 172, 190, 193, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 61, 155, 18, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 61, 155, 18, 190, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 189, 131, 26, 9, 80, 193, 100, 235, 193, 224, 26, 194, 190, 203, 161, 5, 63, 20, 34, 96, 190, 75, 24, 190, 65, 62, 83, 63, 190, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 131, 26, 9, 80, 193, 100, 235, 193, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 75, 24, 190, 65, 62, 83, 63, 190, 110, 124, 158, 190, 203, 161, 5, 63, 110, 124, 158, 190, 158, 23, 48, 52, 235, 64, 174, 193, 20, 34, 96, 190, 203, 161, 5, 63, 224, 26, 194, 190, 75, 24, 245, 37, 221, 49, 66, 190, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 158, 23, 48, 52, 235, 64, 174, 193, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 75, 24, 245, 37, 221, 49, 66, 190, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 190, 123, 229, 114, 21, 216, 3, 138, 207, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 126, 3, 223, 167, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 123, 229, 114, 21, 216, 3, 138, 207, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 126, 3, 223, 167, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 117, 124, 189, 188, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 117, 124, 189, 188, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 160, 104, 206, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 160, 104, 206, 194, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 142, 64, 151, 189, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 241, 51, 118, 194, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 142, 64, 151, 189, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 241, 51, 118, 194, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 110, 5, 32, 175, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 3, 5, 3, 216, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 110, 5, 32, 175, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 3, 5, 3, 216, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 251, 250, 124, 234, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 251, 250, 124, 234, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 144, 250, 39, 142, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 144, 250, 39, 142, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 47, 251, 184, 159, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 15, 251, 247, 217, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 47, 251, 184, 159, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 15, 251, 247, 217, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 131, 6, 58, 254, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 157, 5, 175, 139, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 131, 6, 58, 254, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 157, 5, 175, 139, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 239, 4, 126, 232, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 207, 4, 222, 157, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 239, 4, 126, 232, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 207, 4, 222, 157, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 170, 216, 17, 186, 110, 5, 215, 241, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 147, 219, 240, 197, 3, 5, 130, 149, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 189, 170, 216, 17, 186, 110, 5, 215, 241, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 190, 147, 219, 240, 197, 3, 5, 130, 149, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 97, 250, 128, 177, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 123, 249, 5, 197, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 97, 250, 128, 177, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 123, 249, 5, 197, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 190, 107, 36, 121, 222, 8, 48, 125, 189, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 190, 33, 182, 194, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 107, 36, 121, 222, 8, 48, 125, 189, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 190, 33, 182, 194, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 147, 219, 121, 222, 239, 4, 6, 166, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 120, 220, 194, 209, 207, 4, 70, 224, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 147, 219, 121, 222, 239, 4, 6, 166, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 120, 220, 194, 209, 207, 4, 70, 224, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 62, 60, 174, 133, 163, 47, 251, 31, 226, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 60, 174, 133, 163, 47, 251, 31, 226, 200, 71, 210, 62, 229, 208, 34, 63, 150, 207, 114, 62, 14, 186, 107, 164, 15, 251, 128, 151, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 14, 186, 107, 164, 15, 251, 128, 151, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 190, 179, 231, 245, 37, 120, 3, 238, 216, 110, 124, 158, 62, 203, 161, 5, 63, 110, 124, 158, 190, 96, 232, 48, 52, 94, 3, 137, 159, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 190, 179, 231, 245, 37, 120, 3, 238, 216, 119, 177, 171, 62, 229, 208, 34, 63, 119, 177, 171, 190, 96, 232, 48, 52, 94, 3, 137, 159, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 246, 47, 123, 101, 52, 153, 242, 193, 247, 126, 216, 190, 203, 161, 5, 63, 41, 10, 232, 61, 246, 47, 123, 101, 52, 153, 242, 193, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 7, 31, 247, 96, 124, 129, 171, 189, 20, 34, 224, 190, 203, 161, 5, 63, 169, 19, 80, 167, 7, 31, 247, 96, 124, 129, 171, 189, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 84, 39, 17, 186, 175, 99, 71, 189, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 189, 84, 39, 17, 186, 175, 99, 71, 189, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 249, 84, 128, 194, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 249, 84, 128, 194, 140, 137, 234, 62, 229, 208, 34, 63, 86, 96, 251, 61, 237, 197, 84, 167, 97, 250, 79, 244, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 237, 197, 84, 167, 97, 250, 79, 244, 150, 207, 242, 62, 229, 208, 34, 63, 169, 19, 208, 39, 240, 210, 14, 173, 123, 249, 196, 129, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 240, 210, 14, 173, 123, 249, 196, 129, 20, 34, 96, 62, 203, 161, 5, 63, 224, 26, 194, 62, 244, 165, 180, 103, 128, 252, 30, 216, 41, 10, 232, 61, 203, 161, 5, 63, 247, 126, 216, 62, 113, 149, 123, 101, 38, 252, 115, 176, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 244, 165, 180, 103, 128, 252, 30, 216, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 113, 149, 123, 101, 38, 252, 115, 176, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 154, 251, 225, 167, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 50, 251, 68, 208, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 154, 251, 225, 167, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 50, 251, 68, 208, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 66, 152, 138, 189, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 133, 130, 226, 194, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 66, 152, 138, 189, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 133, 130, 226, 194, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 190, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 190, 255, 127, 0, 0, 0, 0, 255, 191, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 0, 0, 0, 0, 255, 191, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 255, 127, 0, 0, 0, 0, 255, 191, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 255, 127, 0, 0, 0, 0, 255, 191, 75, 222, 91, 62, 50, 51, 115, 63, 75, 222, 91, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 190, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 189, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 255, 127, 0, 0, 0, 0, 255, 191, 44, 164, 134, 62, 50, 51, 115, 63, 106, 120, 27, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 44, 150, 62, 50, 51, 115, 63, 108, 244, 160, 61, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 255, 127, 0, 0, 0, 0, 255, 191, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 255, 127, 0, 0, 0, 0, 255, 191, 106, 120, 155, 62, 50, 51, 115, 63, 191, 14, 156, 40, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 255, 127, 0, 0, 0, 0, 255, 191, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 255, 127, 0, 0, 0, 0, 255, 191, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 255, 127, 0, 0, 0, 0, 255, 191, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 62, 255, 127, 14, 173, 241, 245, 189, 188, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 2, 227, 206, 194, 169, 19, 80, 168, 50, 51, 115, 63, 106, 120, 155, 62, 255, 127, 14, 173, 241, 245, 189, 188, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 2, 227, 206, 194, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 154, 251, 19, 234, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 154, 251, 19, 234, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 50, 251, 222, 141, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 50, 251, 222, 141, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 190, 107, 36, 240, 197, 253, 80, 135, 189, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 190, 107, 36, 240, 197, 253, 80, 135, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 190, 134, 35, 194, 209, 64, 68, 102, 194, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 190, 134, 35, 194, 209, 64, 68, 102, 194, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 13, 204, 135, 189, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 112, 191, 102, 194, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 13, 204, 135, 189, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 112, 191, 102, 194, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 94, 151, 48, 189, 150, 207, 242, 190, 229, 208, 34, 63, 169, 19, 208, 39, 14, 45, 14, 173, 137, 131, 64, 195, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 94, 151, 48, 189, 106, 120, 155, 190, 50, 51, 115, 63, 52, 17, 182, 40, 14, 45, 14, 173, 137, 131, 64, 195, 119, 177, 171, 190, 229, 208, 34, 63, 119, 177, 171, 62, 194, 81, 133, 163, 190, 187, 151, 189, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 1, 175, 118, 194, 75, 222, 91, 190, 50, 51, 115, 63, 75, 222, 91, 62, 194, 81, 133, 163, 190, 187, 151, 189, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 1, 175, 118, 194, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 62, 66, 109, 84, 167, 64, 222, 71, 189, 150, 207, 114, 190, 229, 208, 34, 63, 200, 71, 210, 62, 122, 94, 107, 164, 246, 207, 128, 194, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 62, 66, 109, 84, 167, 64, 222, 71, 189, 106, 120, 27, 190, 50, 51, 115, 63, 44, 164, 134, 62, 122, 94, 107, 164, 246, 207, 128, 194, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 255, 255, 255, 191, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 254, 255, 255, 191, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 254, 255, 255, 191, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 254, 255, 255, 191, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 255, 255, 255, 191, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 255, 255, 255, 255, 255, 191, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 255, 127, 255, 255, 255, 255, 255, 191, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 255, 127, 255, 255, 255, 255, 255, 191, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 255, 127, 255, 255, 255, 255, 255, 191, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 255, 127, 255, 255, 255, 255, 255, 191, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 255, 127, 255, 255, 254, 255, 255, 191, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 255, 127, 255, 255, 255, 255, 255, 191, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 255, 127, 255, 255, 254, 255, 255, 191, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 255, 127, 255, 255, 254, 255, 255, 191, 86, 96, 251, 189, 229, 208, 34, 63, 140, 137, 234, 190, 84, 39, 66, 237, 252, 28, 48, 189, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 13, 10, 64, 195, 108, 244, 160, 189, 50, 51, 115, 63, 64, 44, 150, 190, 84, 39, 66, 237, 252, 28, 48, 189, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 13, 10, 64, 195, 200, 71, 210, 190, 229, 208, 34, 63, 150, 207, 114, 62, 240, 69, 107, 164, 5, 171, 125, 189, 140, 137, 234, 190, 229, 208, 34, 63, 86, 96, 251, 61, 17, 58, 84, 167, 79, 156, 182, 194, 44, 164, 134, 190, 50, 51, 115, 63, 106, 120, 27, 62, 240, 69, 107, 164, 5, 171, 125, 189, 64, 44, 150, 190, 50, 51, 115, 63, 108, 244, 160, 61, 17, 58, 84, 167, 79, 156, 182, 194, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 178, 247, 27, 189, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 210, 226, 115, 194, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 178, 247, 27, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 210, 226, 115, 194, 169, 19, 80, 167, 229, 208, 34, 63, 150, 207, 242, 190, 240, 210, 255, 255, 131, 6, 248, 186, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 190, 170, 216, 66, 237, 157, 5, 125, 206, 169, 19, 208, 167, 50, 51, 115, 63, 106, 120, 155, 190, 240, 210, 255, 255, 131, 6, 248, 186, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 190, 170, 216, 66, 237, 157, 5, 125, 206, 150, 207, 114, 62, 229, 208, 34, 63, 200, 71, 210, 62, 132, 161, 107, 164, 251, 250, 250, 167, 86, 96, 251, 61, 229, 208, 34, 63, 140, 137, 234, 62, 188, 146, 84, 167, 144, 250, 222, 208, 106, 120, 27, 62, 50, 51, 115, 63, 44, 164, 134, 62, 132, 161, 107, 164, 251, 250, 250, 167, 108, 244, 160, 61, 50, 51, 115, 63, 64, 44, 150, 62, 188, 146, 84, 167, 144, 250, 222, 208, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 199, 5, 216, 187, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 233, 4, 149, 206, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 199, 5, 216, 187, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 233, 4, 149, 206, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 88, 4, 171, 232, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 57, 4, 74, 158, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 88, 4, 171, 232, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 57, 4, 74, 158, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 240, 147, 161, 161, 21, 251, 105, 177, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 228, 166, 55, 250, 37, 196, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 61, 240, 147, 161, 161, 21, 251, 105, 177, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 61, 255, 127, 228, 166, 55, 250, 37, 196, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 88, 4, 128, 166, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 206, 225, 23, 207, 57, 4, 102, 224, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 88, 4, 128, 166, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 189, 206, 225, 23, 207, 57, 4, 102, 224, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 89, 81, 211, 189, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 89, 81, 211, 189, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 106, 67, 27, 194, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 106, 67, 27, 194, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 59, 48, 205, 189, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 138, 32, 101, 194, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 59, 48, 205, 189, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 138, 32, 101, 194, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 93, 222, 13, 236, 204, 4, 185, 175, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 0, 225, 125, 220, 100, 4, 28, 216, 250, 170, 117, 60, 175, 114, 248, 63, 19, 54, 101, 189, 93, 222, 13, 236, 204, 4, 185, 175, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 189, 0, 225, 125, 220, 100, 4, 28, 216, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 108, 202, 161, 161, 21, 251, 221, 243, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 60, 108, 202, 161, 161, 21, 251, 221, 243, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 55, 250, 66, 129, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 55, 250, 66, 129, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 204, 4, 31, 242, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 188, 0, 225, 127, 194, 100, 4, 234, 149, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 204, 4, 31, 242, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 0, 225, 127, 194, 100, 4, 234, 149, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 48, 30, 23, 207, 206, 64, 226, 189, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 254, 30, 125, 220, 254, 50, 43, 194, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 189, 48, 30, 23, 207, 206, 64, 226, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 189, 254, 30, 125, 220, 254, 50, 43, 194, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 148, 188, 226, 189, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 165, 174, 43, 194, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 148, 188, 226, 189, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 165, 174, 43, 194, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 14, 108, 161, 161, 116, 223, 153, 189, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 195, 207, 49, 194, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 61, 14, 108, 161, 161, 116, 223, 153, 189, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 195, 207, 49, 194, 4, 76, 109, 61, 175, 114, 248, 63, 169, 19, 208, 40, 26, 217, 228, 166, 199, 5, 188, 254, 19, 54, 101, 61, 175, 114, 248, 63, 250, 170, 117, 188, 93, 222, 146, 181, 233, 4, 32, 140, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 26, 217, 228, 166, 199, 5, 188, 254, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 93, 222, 146, 181, 233, 4, 32, 140, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 64, 100, 153, 189, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 64, 100, 153, 189, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 188, 254, 30, 127, 194, 40, 84, 49, 194, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 254, 30, 127, 194, 40, 84, 49, 194, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 161, 33, 13, 236, 44, 29, 138, 189, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 26, 217, 255, 255, 76, 8, 226, 194, 250, 170, 117, 188, 175, 114, 248, 63, 19, 54, 101, 189, 161, 33, 13, 236, 44, 29, 138, 189, 169, 19, 208, 167, 175, 114, 248, 63, 4, 76, 109, 189, 26, 217, 255, 255, 76, 8, 226, 194, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 197, 251, 180, 225, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 197, 251, 180, 225, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 126, 189, 254, 158, 166, 251, 82, 151, 84, 129, 77, 61, 175, 114, 248, 63, 4, 76, 237, 60, 126, 189, 254, 158, 166, 251, 82, 151, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 128, 66, 254, 158, 214, 171, 205, 189, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 146, 53, 161, 161, 190, 155, 101, 194, 84, 129, 77, 189, 175, 114, 248, 63, 4, 76, 237, 60, 128, 66, 254, 158, 214, 171, 205, 189, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 60, 146, 53, 161, 161, 190, 155, 101, 194, 4, 76, 109, 189, 175, 114, 248, 63, 169, 19, 208, 40, 228, 38, 228, 166, 121, 125, 27, 189, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 228, 38, 228, 166, 121, 125, 27, 189, 19, 54, 101, 189, 175, 114, 248, 63, 250, 170, 117, 188, 161, 33, 146, 181, 188, 103, 115, 194, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 161, 33, 146, 181, 188, 103, 115, 194, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 126, 92, 254, 158, 0, 205, 211, 189, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 23, 79, 47, 158, 48, 191, 27, 194, 4, 76, 237, 188, 175, 114, 248, 63, 84, 129, 77, 61, 126, 92, 254, 158, 0, 205, 211, 189, 85, 203, 39, 189, 175, 114, 248, 63, 85, 203, 39, 61, 23, 79, 47, 158, 48, 191, 27, 194, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 231, 176, 47, 158, 197, 251, 151, 159, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 128, 163, 254, 158, 166, 251, 126, 217, 85, 203, 39, 61, 175, 114, 248, 63, 85, 203, 39, 61, 231, 176, 47, 158, 197, 251, 151, 159, 4, 76, 237, 60, 175, 114, 248, 63, 84, 129, 77, 61, 128, 163, 254, 158, 166, 251, 126, 217, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 93, 127, 146, 193, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 93, 127, 146, 193, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 237, 101, 177, 190, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 237, 101, 177, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 168, 81, 41, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 114, 65, 222, 190, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 168, 81, 41, 193, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 114, 65, 222, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 54, 252, 146, 193, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 81, 227, 177, 190, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 54, 252, 146, 193, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 81, 227, 177, 190, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 38, 3, 80, 128, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 154, 2, 245, 242, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 38, 3, 80, 128, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 154, 2, 245, 242, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 100, 253, 8, 141, 187, 97, 219, 62, 71, 201, 139, 63, 169, 19, 208, 39, 159, 234, 160, 106, 216, 252, 174, 255, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 100, 253, 8, 141, 205, 204, 204, 62, 50, 51, 115, 63, 0, 0, 0, 128, 159, 234, 160, 106, 216, 252, 174, 255, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 140, 190, 31, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 140, 190, 31, 193, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 86, 174, 212, 190, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 86, 174, 212, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 168, 253, 253, 215, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 103, 253, 61, 177, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 168, 253, 253, 215, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 103, 253, 61, 177, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 168, 253, 210, 150, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 61, 191, 214, 254, 109, 103, 253, 136, 242, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 168, 253, 210, 150, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 61, 191, 214, 254, 109, 103, 253, 136, 242, 85, 210, 197, 62, 50, 51, 115, 63, 74, 6, 212, 189, 254, 237, 192, 86, 151, 2, 117, 141, 18, 232, 211, 62, 71, 201, 139, 63, 232, 30, 227, 189, 254, 237, 192, 86, 151, 2, 117, 141, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 86, 2, 43, 233, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 86, 2, 43, 233, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 189, 253, 102, 224, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 62, 218, 168, 158, 111, 170, 253, 169, 167, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 189, 253, 102, 224, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 62, 218, 168, 158, 111, 170, 253, 169, 167, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 173, 28, 76, 193, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 200, 3, 107, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 173, 28, 76, 193, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 200, 3, 107, 190, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 62, 192, 104, 254, 109, 122, 226, 74, 193, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 1, 208, 212, 190, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 62, 192, 104, 254, 109, 122, 226, 74, 193, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 1, 208, 212, 190, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 62, 13, 184, 27, 112, 189, 253, 70, 159, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 62, 194, 198, 158, 111, 170, 253, 211, 232, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 62, 13, 184, 27, 112, 189, 253, 70, 159, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 62, 194, 198, 158, 111, 170, 253, 211, 232, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 151, 2, 193, 206, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 86, 2, 0, 168, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 151, 2, 193, 206, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 86, 2, 0, 168, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 62, 60, 57, 158, 111, 166, 173, 42, 193, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 62, 60, 57, 158, 111, 166, 173, 42, 193, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 236, 154, 179, 190, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 236, 154, 179, 190, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 61, 63, 41, 254, 109, 18, 154, 76, 193, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 61, 63, 41, 254, 109, 18, 154, 76, 193, 187, 97, 219, 190, 71, 201, 139, 63, 169, 19, 208, 39, 95, 21, 160, 106, 161, 128, 107, 190, 205, 204, 204, 190, 50, 51, 115, 63, 0, 0, 0, 128, 95, 21, 160, 106, 161, 128, 107, 190, 205, 204, 76, 62, 50, 51, 115, 63, 172, 92, 177, 190, 157, 239, 218, 40, 84, 2, 85, 216, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 65, 2, 151, 159, 187, 97, 91, 62, 71, 201, 139, 63, 124, 253, 189, 190, 157, 239, 218, 40, 84, 2, 85, 216, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 65, 2, 151, 159, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 62, 36, 87, 158, 111, 83, 207, 41, 193, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 62, 241, 71, 27, 112, 48, 191, 222, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 62, 36, 87, 158, 111, 83, 207, 41, 193, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 62, 241, 71, 27, 112, 48, 191, 222, 190, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 62, 62, 151, 254, 109, 100, 253, 85, 206, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 62, 255, 127, 160, 106, 216, 252, 27, 190, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 62, 62, 151, 254, 109, 100, 253, 85, 206, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 62, 255, 127, 160, 106, 216, 252, 27, 190, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 253, 47, 42, 193, 74, 6, 212, 189, 50, 51, 115, 63, 85, 210, 197, 190, 0, 18, 62, 23, 132, 29, 179, 190, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 253, 47, 42, 193, 232, 30, 227, 189, 71, 201, 139, 63, 18, 232, 211, 190, 0, 18, 62, 23, 132, 29, 179, 190, 195, 208, 144, 190, 50, 51, 115, 63, 195, 208, 144, 190, 227, 15, 13, 56, 206, 64, 31, 193, 205, 204, 76, 190, 50, 51, 115, 63, 172, 92, 177, 190, 97, 16, 218, 40, 171, 48, 212, 190, 87, 32, 155, 190, 71, 201, 139, 63, 87, 32, 155, 190, 227, 15, 13, 56, 206, 64, 31, 193, 187, 97, 91, 190, 71, 201, 139, 63, 124, 253, 189, 190, 97, 16, 218, 40, 171, 48, 212, 190, 0, 0, 0, 0, 50, 51, 115, 63, 205, 204, 204, 190, 159, 234, 0, 0, 38, 3, 227, 193, 74, 6, 212, 61, 50, 51, 115, 63, 85, 210, 197, 190, 254, 237, 62, 23, 154, 2, 168, 177, 169, 19, 80, 167, 71, 201, 139, 63, 187, 97, 219, 190, 159, 234, 0, 0, 38, 3, 227, 193, 232, 30, 227, 61, 71, 201, 139, 63, 18, 232, 211, 190, 254, 237, 62, 23, 154, 2, 168, 177, 172, 92, 177, 62, 50, 51, 115, 63, 205, 204, 76, 190, 157, 239, 195, 70, 84, 2, 42, 151, 124, 253, 189, 62, 71, 201, 139, 63, 187, 97, 91, 190, 157, 239, 195, 70, 84, 2, 42, 151, 195, 208, 144, 62, 50, 51, 115, 63, 195, 208, 144, 190, 27, 240, 13, 56, 65, 2, 184, 224, 87, 32, 155, 62, 71, 201, 139, 63, 87, 32, 155, 190, 27, 240, 13, 56, 65, 2, 184, 224, 85, 210, 197, 190, 50, 51, 115, 63, 74, 6, 212, 189, 0, 18, 192, 86, 18, 101, 74, 193, 172, 92, 177, 190, 50, 51, 115, 63, 205, 204, 76, 190, 97, 16, 195, 70, 88, 82, 212, 190, 18, 232, 211, 190, 71, 201, 139, 63, 232, 30, 227, 189, 0, 18, 192, 86, 18, 101, 74, 193, 124, 253, 189, 190, 71, 201, 139, 63, 187, 97, 91, 190, 97, 16, 195, 70, 88, 82, 212, 190) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_t1ngi") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_x23p1"] +data = PackedVector3Array(0.0763, 0.1105, -0.0763, 0.0763, 0.1105, 0.0763, 0.0563, 0.522, 0.0563, 0.0563, 0.522, 0.0563, 0.0563, 0.522, -0.0563, 0.0763, 0.1105, -0.0763, -0.0563, 0.522, -0.0563, -0.0763, 0.1105, -0.0763, 0.0763, 0.1105, -0.0763, 0.0763, 0.1105, -0.0763, 0.0563, 0.522, -0.0563, -0.0563, 0.522, -0.0563, 0.0763, 0.1105, 0.0763, 0.1061, 0, 0.1061, -0.1061, 0, 0.1061, -0.1061, 0, 0.1061, -0.0763, 0.1105, 0.0763, 0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.1061, 0, 0.1061, -0.1061, 0, -0.1061, -0.1061, 0, -0.1061, -0.0763, 0.1105, -0.0763, -0.0763, 0.1105, 0.0763, 0.0563, 0.522, 0.0563, 0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.0763, 0.1105, 0.0763, -0.0563, 0.522, 0.0563, 0.0563, 0.522, 0.0563, 0.1061, 0, -0.1061, 0.1061, 0, 0.1061, 0.0763, 0.1105, 0.0763, 0.0763, 0.1105, 0.0763, 0.0763, 0.1105, -0.0763, 0.1061, 0, -0.1061, 0.1061, 0, -0.1061, -0.1061, 0, -0.1061, -0.1061, 0, 0.1061, -0.1061, 0, 0.1061, 0.1061, 0, 0.1061, 0.1061, 0, -0.1061, -0.0763, 0.1105, -0.0763, -0.1061, 0, -0.1061, 0.1061, 0, -0.1061, 0.1061, 0, -0.1061, 0.0763, 0.1105, -0.0763, -0.0763, 0.1105, -0.0763, -0.0563, 0.522, 0.0563, -0.0763, 0.1105, 0.0763, -0.0763, 0.1105, -0.0763, -0.0763, 0.1105, -0.0763, -0.0563, 0.522, -0.0563, -0.0563, 0.522, 0.0563, 0.3095, 0.522, 0.3095, 0.3353, 0.636, 0.3353, 0.4107, 0.636, 0.2371, 0.4107, 0.636, 0.2371, 0.3791, 0.522, 0.2189, 0.3095, 0.522, 0.3095, -0.4228, 0.522, -0.1133, -0.4378, 0.522, 0, -0.4228, 0.522, 0.1133, -0.4228, 0.522, 0.1133, -0.3791, 0.522, -0.2189, -0.4228, 0.522, -0.1133, -0.4228, 0.522, 0.1133, -0.3791, 0.522, 0.2189, -0.3791, 0.522, -0.2189, -0.3791, 0.522, 0.2189, -0.3095, 0.522, -0.3095, -0.3791, 0.522, -0.2189, -0.3791, 0.522, 0.2189, -0.3095, 0.522, 0.3095, -0.3095, 0.522, -0.3095, -0.3095, 0.522, 0.3095, -0.2189, 0.522, -0.3791, -0.3095, 0.522, -0.3095, -0.3095, 0.522, 0.3095, -0.2189, 0.522, 0.3791, -0.2189, 0.522, -0.3791, -0.2189, 0.522, 0.3791, -0.1133, 0.522, -0.4228, -0.2189, 0.522, -0.3791, -0.2189, 0.522, 0.3791, -0.1133, 0.522, 0.4228, -0.1133, 0.522, -0.4228, -0.1133, 0.522, 0.4228, -0.0563, 0.522, -0.0563, -0.1133, 0.522, -0.4228, -0.0563, 0.522, -0.0563, 0, 0.522, -0.4378, -0.1133, 0.522, -0.4228, -0.1133, 0.522, 0.4228, -0.0563, 0.522, 0.0563, -0.0563, 0.522, -0.0563, -0.0563, 0.522, -0.0563, 0.0563, 0.522, -0.0563, 0, 0.522, -0.4378, -0.0563, 0.522, 0.0563, -0.1133, 0.522, 0.4228, 0, 0.522, 0.4378, 0.0563, 0.522, -0.0563, 0.1133, 0.522, -0.4228, 0, 0.522, -0.4378, 0, 0.522, 0.4378, 0.0563, 0.522, 0.0563, -0.0563, 0.522, 0.0563, 0.0563, 0.522, -0.0563, 0.0563, 0.522, 0.0563, 0.1133, 0.522, -0.4228, 0, 0.522, 0.4378, 0.1133, 0.522, 0.4228, 0.0563, 0.522, 0.0563, 0.1133, 0.522, 0.4228, 0.1133, 0.522, -0.4228, 0.0563, 0.522, 0.0563, 0.1133, 0.522, 0.4228, 0.2189, 0.522, -0.3791, 0.1133, 0.522, -0.4228, 0.1133, 0.522, 0.4228, 0.2189, 0.522, 0.3791, 0.2189, 0.522, -0.3791, 0.2189, 0.522, 0.3791, 0.3095, 0.522, -0.3095, 0.2189, 0.522, -0.3791, 0.2189, 0.522, 0.3791, 0.3095, 0.522, 0.3095, 0.3095, 0.522, -0.3095, 0.3095, 0.522, 0.3095, 0.3791, 0.522, -0.2189, 0.3095, 0.522, -0.3095, 0.3095, 0.522, 0.3095, 0.3791, 0.522, 0.2189, 0.3791, 0.522, -0.2189, 0.3791, 0.522, 0.2189, 0.4228, 0.522, -0.1133, 0.3791, 0.522, -0.2189, 0.3791, 0.522, 0.2189, 0.4228, 0.522, 0.1133, 0.4228, 0.522, -0.1133, 0.4228, 0.522, 0.1133, 0.4378, 0.522, 0, 0.4228, 0.522, -0.1133, 0.4228, 0.522, 0.1133, 0.4581, 0.636, 0.1227, 0.4742, 0.636, 0, 0.4742, 0.636, 0, 0.4378, 0.522, 0, 0.4228, 0.522, 0.1133, 0.3353, 0.636, 0.3353, 0.3095, 0.522, 0.3095, 0.2189, 0.522, 0.3791, 0.2189, 0.522, 0.3791, 0.2371, 0.636, 0.4107, 0.3353, 0.636, 0.3353, 0, 0.636, 0.4742, 0, 0.522, 0.4378, -0.1133, 0.522, 0.4228, -0.1133, 0.522, 0.4228, -0.1227, 0.636, 0.4581, 0, 0.636, 0.4742, -0.4581, 0.636, -0.1227, -0.4742, 0.636, 0, -0.4378, 0.522, 0, -0.4378, 0.522, 0, -0.4228, 0.522, -0.1133, -0.4581, 0.636, -0.1227, -0.4107, 0.636, 0.2371, -0.3353, 0.636, 0.3353, -0.3095, 0.522, 0.3095, -0.3095, 0.522, 0.3095, -0.3791, 0.522, 0.2189, -0.4107, 0.636, 0.2371, -0.2371, 0.636, -0.4107, -0.2189, 0.522, -0.3791, -0.1133, 0.522, -0.4228, -0.1133, 0.522, -0.4228, -0.1227, 0.636, -0.4581, -0.2371, 0.636, -0.4107, 0.3791, 0.522, 0.2189, 0.4107, 0.636, 0.2371, 0.4581, 0.636, 0.1227, 0.4581, 0.636, 0.1227, 0.4228, 0.522, 0.1133, 0.3791, 0.522, 0.2189, -0.1227, 0.636, -0.4581, -0.1133, 0.522, -0.4228, 0, 0.522, -0.4378, 0, 0.522, -0.4378, 0, 0.636, -0.4742, -0.1227, 0.636, -0.4581, 0.3095, 0.522, -0.3095, 0.3791, 0.522, -0.2189, 0.4107, 0.636, -0.2371, 0.4107, 0.636, -0.2371, 0.3353, 0.636, -0.3353, 0.3095, 0.522, -0.3095, -0.2371, 0.636, 0.4107, -0.2189, 0.522, 0.3791, -0.3095, 0.522, 0.3095, -0.3095, 0.522, 0.3095, -0.3353, 0.636, 0.3353, -0.2371, 0.636, 0.4107, 0.3791, 0.522, -0.2189, 0.4228, 0.522, -0.1133, 0.4581, 0.636, -0.1227, 0.4581, 0.636, -0.1227, 0.4107, 0.636, -0.2371, 0.3791, 0.522, -0.2189, 0, 0.636, -0.4742, 0, 0.522, -0.4378, 0.1133, 0.522, -0.4228, 0.1133, 0.522, -0.4228, 0.1227, 0.636, -0.4581, 0, 0.636, -0.4742, -0.4107, 0.636, -0.2371, -0.3791, 0.522, -0.2189, -0.3095, 0.522, -0.3095, -0.3095, 0.522, -0.3095, -0.3353, 0.636, -0.3353, -0.4107, 0.636, -0.2371, 0.4378, 0.522, 0, 0.4742, 0.636, 0, 0.4581, 0.636, -0.1227, 0.4581, 0.636, -0.1227, 0.4228, 0.522, -0.1133, 0.4378, 0.522, 0, -0.1227, 0.636, 0.4581, -0.1133, 0.522, 0.4228, -0.2189, 0.522, 0.3791, -0.2189, 0.522, 0.3791, -0.2371, 0.636, 0.4107, -0.1227, 0.636, 0.4581, 0.1227, 0.636, 0.4581, 0.1133, 0.522, 0.4228, 0, 0.522, 0.4378, 0, 0.522, 0.4378, 0, 0.636, 0.4742, 0.1227, 0.636, 0.4581, -0.4581, 0.636, 0.1227, -0.4107, 0.636, 0.2371, -0.3791, 0.522, 0.2189, -0.3791, 0.522, 0.2189, -0.4228, 0.522, 0.1133, -0.4581, 0.636, 0.1227, -0.4581, 0.636, -0.1227, -0.4228, 0.522, -0.1133, -0.3791, 0.522, -0.2189, -0.3791, 0.522, -0.2189, -0.4107, 0.636, -0.2371, -0.4581, 0.636, -0.1227, -0.3353, 0.636, -0.3353, -0.3095, 0.522, -0.3095, -0.2189, 0.522, -0.3791, -0.2189, 0.522, -0.3791, -0.2371, 0.636, -0.4107, -0.3353, 0.636, -0.3353, 0.1227, 0.636, -0.4581, 0.1133, 0.522, -0.4228, 0.2189, 0.522, -0.3791, 0.2189, 0.522, -0.3791, 0.2371, 0.636, -0.4107, 0.1227, 0.636, -0.4581, -0.2933, 0.95, -0.0786, -0.3037, 0.95, 0, -0.4742, 0.636, 0, -0.4742, 0.636, 0, -0.4581, 0.636, -0.1227, -0.2933, 0.95, -0.0786, -0.2147, 0.95, -0.2147, -0.3353, 0.636, -0.3353, -0.2371, 0.636, -0.4107, -0.2371, 0.636, -0.4107, -0.1518, 0.95, -0.263, -0.2147, 0.95, -0.2147, 0.0786, 0.95, -0.2933, 0.1227, 0.636, -0.4581, 0.2371, 0.636, -0.4107, 0.2371, 0.636, -0.4107, 0.1518, 0.95, -0.263, 0.0786, 0.95, -0.2933, 0.4581, 0.636, 0.1227, 0.4107, 0.636, 0.2371, 0.263, 0.95, 0.1518, 0.263, 0.95, 0.1518, 0.2933, 0.95, 0.0786, 0.4581, 0.636, 0.1227, 0.2147, 0.95, 0.2147, 0.3353, 0.636, 0.3353, 0.2371, 0.636, 0.4107, 0.2371, 0.636, 0.4107, 0.1518, 0.95, 0.263, 0.2147, 0.95, 0.2147, 0.4742, 0.636, 0, 0.3037, 0.95, 0, 0.2933, 0.95, -0.0786, 0.2933, 0.95, -0.0786, 0.4581, 0.636, -0.1227, 0.4742, 0.636, 0, 0.4107, 0.636, -0.2371, 0.263, 0.95, -0.1518, 0.2147, 0.95, -0.2147, 0.2147, 0.95, -0.2147, 0.3353, 0.636, -0.3353, 0.4107, 0.636, -0.2371, 0.4581, 0.636, -0.1227, 0.2933, 0.95, -0.0786, 0.263, 0.95, -0.1518, 0.263, 0.95, -0.1518, 0.4107, 0.636, -0.2371, 0.4581, 0.636, -0.1227, 0.0786, 0.95, 0.2933, 0.1227, 0.636, 0.4581, 0, 0.636, 0.4742, 0, 0.636, 0.4742, 0, 0.95, 0.3037, 0.0786, 0.95, 0.2933, -0.1518, 0.95, -0.263, -0.2371, 0.636, -0.4107, -0.1227, 0.636, -0.4581, -0.1227, 0.636, -0.4581, -0.0786, 0.95, -0.2933, -0.1518, 0.95, -0.263, 0.1518, 0.95, -0.263, 0.2371, 0.636, -0.4107, 0.3353, 0.636, -0.3353, 0.3353, 0.636, -0.3353, 0.2147, 0.95, -0.2147, 0.1518, 0.95, -0.263, 0.4107, 0.636, 0.2371, 0.3353, 0.636, 0.3353, 0.2147, 0.95, 0.2147, 0.2147, 0.95, 0.2147, 0.263, 0.95, 0.1518, 0.4107, 0.636, 0.2371, 0.2371, 0.636, -0.4107, 0.2189, 0.522, -0.3791, 0.3095, 0.522, -0.3095, 0.3095, 0.522, -0.3095, 0.3353, 0.636, -0.3353, 0.2371, 0.636, -0.4107, -0.4742, 0.636, 0, -0.4581, 0.636, 0.1227, -0.4228, 0.522, 0.1133, -0.4228, 0.522, 0.1133, -0.4378, 0.522, 0, -0.4742, 0.636, 0, -0.263, 0.95, -0.1518, -0.2933, 0.95, -0.0786, -0.4581, 0.636, -0.1227, -0.4581, 0.636, -0.1227, -0.4107, 0.636, -0.2371, -0.263, 0.95, -0.1518, 0.4742, 0.636, 0, 0.4581, 0.636, 0.1227, 0.2933, 0.95, 0.0786, 0.2933, 0.95, 0.0786, 0.3037, 0.95, 0, 0.4742, 0.636, 0, 0.2371, 0.636, 0.4107, 0.2189, 0.522, 0.3791, 0.1133, 0.522, 0.4228, 0.1133, 0.522, 0.4228, 0.1227, 0.636, 0.4581, 0.2371, 0.636, 0.4107, 0.029, 1.941, 0.0502, 0.2142, 1.0921, 0.3711, 0.1109, 1.0921, 0.4139, 0.1109, 1.0921, 0.4139, 0.015, 1.941, 0.056, 0.029, 1.941, 0.0502, -0.056, 1.941, 0.015, -0.4139, 1.0921, 0.1109, -0.4285, 1.0921, 0, -0.4285, 1.0921, 0, -0.0579, 1.941, 0, -0.056, 1.941, 0.015, -0.3864, 0.95, -0.1035, -0.4, 0.95, 0, -0.3864, 0.95, 0.1035, -0.3864, 0.95, 0.1035, -0.3464, 0.95, -0.2, -0.3864, 0.95, -0.1035, -0.3864, 0.95, 0.1035, -0.3464, 0.95, 0.2, -0.3464, 0.95, -0.2, -0.3464, 0.95, 0.2, -0.2828, 0.95, -0.2828, -0.3464, 0.95, -0.2, -0.3464, 0.95, 0.2, -0.3037, 0.95, 0, -0.2828, 0.95, -0.2828, -0.3037, 0.95, 0, -0.3464, 0.95, 0.2, -0.2828, 0.95, 0.2828, -0.3037, 0.95, 0, -0.2933, 0.95, -0.0786, -0.2828, 0.95, -0.2828, -0.2828, 0.95, 0.2828, -0.2933, 0.95, 0.0786, -0.3037, 0.95, 0, -0.2933, 0.95, -0.0786, -0.263, 0.95, -0.1518, -0.2828, 0.95, -0.2828, -0.2828, 0.95, 0.2828, -0.263, 0.95, 0.1518, -0.2933, 0.95, 0.0786, -0.263, 0.95, -0.1518, -0.2, 0.95, -0.3464, -0.2828, 0.95, -0.2828, -0.263, 0.95, -0.1518, -0.2147, 0.95, -0.2147, -0.2, 0.95, -0.3464, -0.2147, 0.95, -0.2147, -0.1518, 0.95, -0.263, -0.2, 0.95, -0.3464, -0.1518, 0.95, -0.263, -0.1035, 0.95, -0.3864, -0.2, 0.95, -0.3464, -0.1518, 0.95, -0.263, -0.0786, 0.95, -0.2933, -0.1035, 0.95, -0.3864, -0.2828, 0.95, 0.2828, -0.2, 0.95, 0.3464, -0.263, 0.95, 0.1518, -0.2, 0.95, 0.3464, -0.2147, 0.95, 0.2147, -0.263, 0.95, 0.1518, -0.2, 0.95, 0.3464, -0.1518, 0.95, 0.263, -0.2147, 0.95, 0.2147, -0.2, 0.95, 0.3464, -0.1035, 0.95, 0.3864, -0.1518, 0.95, 0.263, -0.1035, 0.95, 0.3864, -0.0786, 0.95, 0.2933, -0.1518, 0.95, 0.263, -0.0786, 0.95, -0.2933, 0, 0.95, -0.4, -0.1035, 0.95, -0.3864, -0.0786, 0.95, -0.2933, 0, 0.95, -0.3037, 0, 0.95, -0.4, 0, 0.95, -0.3037, 0.0786, 0.95, -0.2933, 0, 0.95, -0.4, 0.0786, 0.95, -0.2933, 0.1035, 0.95, -0.3864, 0, 0.95, -0.4, 0.0786, 0.95, -0.2933, 0.1518, 0.95, -0.263, 0.1035, 0.95, -0.3864, 0.1518, 0.95, -0.263, 0.2, 0.95, -0.3464, 0.1035, 0.95, -0.3864, 0.1518, 0.95, -0.263, 0.2147, 0.95, -0.2147, 0.2, 0.95, -0.3464, -0.1035, 0.95, 0.3864, 0, 0.95, 0.4, -0.0786, 0.95, 0.2933, 0, 0.95, 0.4, 0, 0.95, 0.3037, -0.0786, 0.95, 0.2933, 0, 0.95, 0.4, 0.0786, 0.95, 0.2933, 0, 0.95, 0.3037, 0, 0.95, 0.4, 0.1035, 0.95, 0.3864, 0.0786, 0.95, 0.2933, 0.1035, 0.95, 0.3864, 0.1518, 0.95, 0.263, 0.0786, 0.95, 0.2933, 0.1035, 0.95, 0.3864, 0.2, 0.95, 0.3464, 0.1518, 0.95, 0.263, 0.2, 0.95, 0.3464, 0.2147, 0.95, 0.2147, 0.1518, 0.95, 0.263, 0.2147, 0.95, -0.2147, 0.2828, 0.95, -0.2828, 0.2, 0.95, -0.3464, 0.2147, 0.95, -0.2147, 0.263, 0.95, -0.1518, 0.2828, 0.95, -0.2828, 0.263, 0.95, -0.1518, 0.2933, 0.95, -0.0786, 0.2828, 0.95, -0.2828, 0.2, 0.95, 0.3464, 0.2828, 0.95, 0.2828, 0.2147, 0.95, 0.2147, 0.2828, 0.95, 0.2828, 0.263, 0.95, 0.1518, 0.2147, 0.95, 0.2147, 0.2828, 0.95, 0.2828, 0.2933, 0.95, 0.0786, 0.263, 0.95, 0.1518, 0.2933, 0.95, -0.0786, 0.3464, 0.95, -0.2, 0.2828, 0.95, -0.2828, 0.2828, 0.95, 0.2828, 0.3464, 0.95, 0.2, 0.2933, 0.95, 0.0786, 0.2933, 0.95, -0.0786, 0.3037, 0.95, 0, 0.3464, 0.95, -0.2, 0.3464, 0.95, 0.2, 0.3037, 0.95, 0, 0.2933, 0.95, 0.0786, 0.3464, 0.95, 0.2, 0.3464, 0.95, -0.2, 0.3037, 0.95, 0, 0.3464, 0.95, 0.2, 0.3864, 0.95, -0.1035, 0.3464, 0.95, -0.2, 0.3464, 0.95, 0.2, 0.3864, 0.95, 0.1035, 0.3864, 0.95, -0.1035, 0.3864, 0.95, 0.1035, 0.4, 0.95, 0, 0.3864, 0.95, -0.1035, 0, 0.95, 0.3037, 0, 0.636, 0.4742, -0.1227, 0.636, 0.4581, -0.1227, 0.636, 0.4581, -0.0786, 0.95, 0.2933, 0, 0.95, 0.3037, 0.4139, 1.0921, 0.1109, 0.3711, 1.0921, 0.2142, 0.0502, 1.941, 0.029, 0.0502, 1.941, 0.029, 0.056, 1.941, 0.015, 0.4139, 1.0921, 0.1109, -0.2147, 0.95, -0.2147, -0.263, 0.95, -0.1518, -0.4107, 0.636, -0.2371, -0.4107, 0.636, -0.2371, -0.3353, 0.636, -0.3353, -0.2147, 0.95, -0.2147, -0.1518, 0.95, 0.263, -0.2371, 0.636, 0.4107, -0.3353, 0.636, 0.3353, -0.3353, 0.636, 0.3353, -0.2147, 0.95, 0.2147, -0.1518, 0.95, 0.263, -0.2933, 0.95, 0.0786, -0.4581, 0.636, 0.1227, -0.4742, 0.636, 0, -0.4742, 0.636, 0, -0.3037, 0.95, 0, -0.2933, 0.95, 0.0786, -0.2147, 0.95, 0.2147, -0.3353, 0.636, 0.3353, -0.4107, 0.636, 0.2371, -0.4107, 0.636, 0.2371, -0.263, 0.95, 0.1518, -0.2147, 0.95, 0.2147, -0.0786, 0.95, 0.2933, -0.1227, 0.636, 0.4581, -0.2371, 0.636, 0.4107, -0.2371, 0.636, 0.4107, -0.1518, 0.95, 0.263, -0.0786, 0.95, 0.2933, -0.056, 1.941, 0.015, -0.0579, 1.941, 0, -0.056, 1.941, -0.015, -0.056, 1.941, -0.015, -0.0502, 1.941, 0.029, -0.056, 1.941, 0.015, -0.056, 1.941, -0.015, -0.0502, 1.941, -0.029, -0.0502, 1.941, 0.029, -0.0502, 1.941, -0.029, -0.041, 1.941, 0.041, -0.0502, 1.941, 0.029, -0.0502, 1.941, -0.029, -0.041, 1.941, -0.041, -0.041, 1.941, 0.041, -0.041, 1.941, -0.041, -0.029, 1.941, 0.0502, -0.041, 1.941, 0.041, -0.041, 1.941, -0.041, -0.029, 1.941, -0.0502, -0.029, 1.941, 0.0502, -0.029, 1.941, -0.0502, -0.015, 1.941, 0.056, -0.029, 1.941, 0.0502, -0.029, 1.941, -0.0502, -0.015, 1.941, -0.056, -0.015, 1.941, 0.056, -0.015, 1.941, -0.056, 0, 1.941, 0.0579, -0.015, 1.941, 0.056, -0.015, 1.941, -0.056, 0, 1.941, -0.0579, 0, 1.941, 0.0579, 0, 1.941, -0.0579, 0.015, 1.941, 0.056, 0, 1.941, 0.0579, 0, 1.941, -0.0579, 0.015, 1.941, -0.056, 0.015, 1.941, 0.056, 0.015, 1.941, -0.056, 0.029, 1.941, 0.0502, 0.015, 1.941, 0.056, 0.015, 1.941, -0.056, 0.029, 1.941, -0.0502, 0.029, 1.941, 0.0502, 0.029, 1.941, -0.0502, 0.041, 1.941, 0.041, 0.029, 1.941, 0.0502, 0.029, 1.941, -0.0502, 0.041, 1.941, -0.041, 0.041, 1.941, 0.041, 0.041, 1.941, -0.041, 0.0502, 1.941, 0.029, 0.041, 1.941, 0.041, 0.041, 1.941, -0.041, 0.0502, 1.941, -0.029, 0.0502, 1.941, 0.029, 0.0502, 1.941, -0.029, 0.056, 1.941, 0.015, 0.0502, 1.941, 0.029, 0.0502, 1.941, -0.029, 0.056, 1.941, -0.015, 0.056, 1.941, 0.015, 0.056, 1.941, -0.015, 0.0579, 1.941, 0, 0.056, 1.941, 0.015, -0.0786, 0.95, -0.2933, -0.1227, 0.636, -0.4581, 0, 0.636, -0.4742, 0, 0.636, -0.4742, 0, 0.95, -0.3037, -0.0786, 0.95, -0.2933, -0.263, 0.95, 0.1518, -0.4107, 0.636, 0.2371, -0.4581, 0.636, 0.1227, -0.4581, 0.636, 0.1227, -0.2933, 0.95, 0.0786, -0.263, 0.95, 0.1518, 0, 1.941, 0.0579, 0, 1.0921, 0.4285, -0.1109, 1.0921, 0.4139, -0.1109, 1.0921, 0.4139, -0.015, 1.941, 0.056, 0, 1.941, 0.0579, 0, 0.95, -0.3037, 0, 0.636, -0.4742, 0.1227, 0.636, -0.4581, 0.1227, 0.636, -0.4581, 0.0786, 0.95, -0.2933, 0, 0.95, -0.3037, 0.1518, 0.95, 0.263, 0.2371, 0.636, 0.4107, 0.1227, 0.636, 0.4581, 0.1227, 0.636, 0.4581, 0.0786, 0.95, 0.2933, 0.1518, 0.95, 0.263, 0, 1.941, -0.0579, 0, 1.0921, -0.4285, 0.1109, 1.0921, -0.4139, 0.1109, 1.0921, -0.4139, 0.015, 1.941, -0.056, 0, 1.941, -0.0579, 0.3711, 1.0921, -0.2142, 0.0502, 1.941, -0.029, 0.041, 1.941, -0.041, 0.041, 1.941, -0.041, 0.303, 1.0921, -0.303, 0.3711, 1.0921, -0.2142, 0.015, 1.941, 0.056, 0.1109, 1.0921, 0.4139, 0, 1.0921, 0.4285, 0, 1.0921, 0.4285, 0, 1.941, 0.0579, 0.015, 1.941, 0.056, 0.029, 1.941, -0.0502, 0.2142, 1.0921, -0.3711, 0.303, 1.0921, -0.303, 0.303, 1.0921, -0.303, 0.041, 1.941, -0.041, 0.029, 1.941, -0.0502, -0.041, 1.941, -0.041, -0.0502, 1.941, -0.029, -0.3711, 1.0921, -0.2142, -0.3711, 1.0921, -0.2142, -0.303, 1.0921, -0.303, -0.041, 1.941, -0.041, -0.029, 1.941, -0.0502, -0.2142, 1.0921, -0.3711, -0.1109, 1.0921, -0.4139, -0.1109, 1.0921, -0.4139, -0.015, 1.941, -0.056, -0.029, 1.941, -0.0502, 0.015, 1.941, -0.056, 0.1109, 1.0921, -0.4139, 0.2142, 1.0921, -0.3711, 0.2142, 1.0921, -0.3711, 0.029, 1.941, -0.0502, 0.015, 1.941, -0.056, 0.4285, 1.0921, 0, 0.4139, 1.0921, 0.1109, 0.056, 1.941, 0.015, 0.056, 1.941, 0.015, 0.0579, 1.941, 0, 0.4285, 1.0921, 0, 0.4139, 1.0921, -0.1109, 0.056, 1.941, -0.015, 0.0502, 1.941, -0.029, 0.0502, 1.941, -0.029, 0.3711, 1.0921, -0.2142, 0.4139, 1.0921, -0.1109, -0.041, 1.941, -0.041, -0.303, 1.0921, -0.303, -0.2142, 1.0921, -0.3711, -0.2142, 1.0921, -0.3711, -0.029, 1.941, -0.0502, -0.041, 1.941, -0.041, -0.041, 1.941, 0.041, -0.303, 1.0921, 0.303, -0.3711, 1.0921, 0.2142, -0.3711, 1.0921, 0.2142, -0.0502, 1.941, 0.029, -0.041, 1.941, 0.041, -0.015, 1.941, 0.056, -0.1109, 1.0921, 0.4139, -0.2142, 1.0921, 0.3711, -0.2142, 1.0921, 0.3711, -0.029, 1.941, 0.0502, -0.015, 1.941, 0.056, 0.4285, 1.0921, 0, 0.0579, 1.941, 0, 0.056, 1.941, -0.015, 0.056, 1.941, -0.015, 0.4139, 1.0921, -0.1109, 0.4285, 1.0921, 0, -0.0502, 1.941, -0.029, -0.056, 1.941, -0.015, -0.4139, 1.0921, -0.1109, -0.4139, 1.0921, -0.1109, -0.3711, 1.0921, -0.2142, -0.0502, 1.941, -0.029, -0.015, 1.941, -0.056, -0.1109, 1.0921, -0.4139, 0, 1.0921, -0.4285, 0, 1.0921, -0.4285, 0, 1.941, -0.0579, -0.015, 1.941, -0.056, 0.3711, 1.0921, 0.2142, 0.303, 1.0921, 0.303, 0.041, 1.941, 0.041, 0.041, 1.941, 0.041, 0.0502, 1.941, 0.029, 0.3711, 1.0921, 0.2142, -0.0502, 1.941, 0.029, -0.3711, 1.0921, 0.2142, -0.4139, 1.0921, 0.1109, -0.4139, 1.0921, 0.1109, -0.056, 1.941, 0.015, -0.0502, 1.941, 0.029, -0.056, 1.941, -0.015, -0.0579, 1.941, 0, -0.4285, 1.0921, 0, -0.4285, 1.0921, 0, -0.4139, 1.0921, -0.1109, -0.056, 1.941, -0.015, -0.029, 1.941, 0.0502, -0.2142, 1.0921, 0.3711, -0.303, 1.0921, 0.303, -0.303, 1.0921, 0.303, -0.041, 1.941, 0.041, -0.029, 1.941, 0.0502, 0.041, 1.941, 0.041, 0.303, 1.0921, 0.303, 0.2142, 1.0921, 0.3711, 0.2142, 1.0921, 0.3711, 0.029, 1.941, 0.0502, 0.041, 1.941, 0.041, -0.4139, 1.0921, -0.1109, -0.4285, 1.0921, 0, -0.4, 0.95, 0, -0.4, 0.95, 0, -0.3864, 0.95, -0.1035, -0.4139, 1.0921, -0.1109, -0.3711, 1.0921, -0.2142, -0.3464, 0.95, -0.2, -0.2828, 0.95, -0.2828, -0.2828, 0.95, -0.2828, -0.303, 1.0921, -0.303, -0.3711, 1.0921, -0.2142, 0, 1.0921, 0.4285, 0, 0.95, 0.4, -0.1035, 0.95, 0.3864, -0.1035, 0.95, 0.3864, -0.1109, 1.0921, 0.4139, 0, 1.0921, 0.4285, 0.4, 0.95, 0, 0.4285, 1.0921, 0, 0.4139, 1.0921, -0.1109, 0.4139, 1.0921, -0.1109, 0.3864, 0.95, -0.1035, 0.4, 0.95, 0, 0.3864, 0.95, 0.1035, 0.4139, 1.0921, 0.1109, 0.4285, 1.0921, 0, 0.4285, 1.0921, 0, 0.4, 0.95, 0, 0.3864, 0.95, 0.1035, -0.3711, 1.0921, 0.2142, -0.303, 1.0921, 0.303, -0.2828, 0.95, 0.2828, -0.2828, 0.95, 0.2828, -0.3464, 0.95, 0.2, -0.3711, 1.0921, 0.2142, 0.2142, 1.0921, 0.3711, 0.2, 0.95, 0.3464, 0.1035, 0.95, 0.3864, 0.1035, 0.95, 0.3864, 0.1109, 1.0921, 0.4139, 0.2142, 1.0921, 0.3711, 0.3464, 0.95, 0.2, 0.3711, 1.0921, 0.2142, 0.4139, 1.0921, 0.1109, 0.4139, 1.0921, 0.1109, 0.3864, 0.95, 0.1035, 0.3464, 0.95, 0.2, 0.3464, 0.95, -0.2, 0.3864, 0.95, -0.1035, 0.4139, 1.0921, -0.1109, 0.4139, 1.0921, -0.1109, 0.3711, 1.0921, -0.2142, 0.3464, 0.95, -0.2, 0.303, 1.0921, 0.303, 0.2828, 0.95, 0.2828, 0.2, 0.95, 0.3464, 0.2, 0.95, 0.3464, 0.2142, 1.0921, 0.3711, 0.303, 1.0921, 0.303, -0.1109, 1.0921, -0.4139, -0.1035, 0.95, -0.3864, 0, 0.95, -0.4, 0, 0.95, -0.4, 0, 1.0921, -0.4285, -0.1109, 1.0921, -0.4139, -0.1109, 1.0921, 0.4139, -0.1035, 0.95, 0.3864, -0.2, 0.95, 0.3464, -0.2, 0.95, 0.3464, -0.2142, 1.0921, 0.3711, -0.1109, 1.0921, 0.4139, 0.2828, 0.95, 0.2828, 0.303, 1.0921, 0.303, 0.3711, 1.0921, 0.2142, 0.3711, 1.0921, 0.2142, 0.3464, 0.95, 0.2, 0.2828, 0.95, 0.2828, 0.1109, 1.0921, -0.4139, 0.1035, 0.95, -0.3864, 0.2, 0.95, -0.3464, 0.2, 0.95, -0.3464, 0.2142, 1.0921, -0.3711, 0.1109, 1.0921, -0.4139, -0.4139, 1.0921, 0.1109, -0.3711, 1.0921, 0.2142, -0.3464, 0.95, 0.2, -0.3464, 0.95, 0.2, -0.3864, 0.95, 0.1035, -0.4139, 1.0921, 0.1109, -0.4285, 1.0921, 0, -0.4139, 1.0921, 0.1109, -0.3864, 0.95, 0.1035, -0.3864, 0.95, 0.1035, -0.4, 0.95, 0, -0.4285, 1.0921, 0, 0.2142, 1.0921, -0.3711, 0.2, 0.95, -0.3464, 0.2828, 0.95, -0.2828, 0.2828, 0.95, -0.2828, 0.303, 1.0921, -0.303, 0.2142, 1.0921, -0.3711, -0.2142, 1.0921, 0.3711, -0.2, 0.95, 0.3464, -0.2828, 0.95, 0.2828, -0.2828, 0.95, 0.2828, -0.303, 1.0921, 0.303, -0.2142, 1.0921, 0.3711, 0.1109, 1.0921, 0.4139, 0.1035, 0.95, 0.3864, 0, 0.95, 0.4, 0, 0.95, 0.4, 0, 1.0921, 0.4285, 0.1109, 1.0921, 0.4139, -0.2142, 1.0921, -0.3711, -0.2, 0.95, -0.3464, -0.1035, 0.95, -0.3864, -0.1035, 0.95, -0.3864, -0.1109, 1.0921, -0.4139, -0.2142, 1.0921, -0.3711, -0.303, 1.0921, -0.303, -0.2828, 0.95, -0.2828, -0.2, 0.95, -0.3464, -0.2, 0.95, -0.3464, -0.2142, 1.0921, -0.3711, -0.303, 1.0921, -0.303, 0, 1.0921, -0.4285, 0, 0.95, -0.4, 0.1035, 0.95, -0.3864, 0.1035, 0.95, -0.3864, 0.1109, 1.0921, -0.4139, 0, 1.0921, -0.4285, 0.2828, 0.95, -0.2828, 0.3464, 0.95, -0.2, 0.3711, 1.0921, -0.2142, 0.3711, 1.0921, -0.2142, 0.303, 1.0921, -0.303, 0.2828, 0.95, -0.2828, -0.4139, 1.0921, -0.1109, -0.3864, 0.95, -0.1035, -0.3464, 0.95, -0.2, -0.3464, 0.95, -0.2, -0.3711, 1.0921, -0.2142, -0.4139, 1.0921, -0.1109) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gmaku"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ru6xr"] +resource_name = "_defaultMat" +vertex_color_use_as_albedo = true +albedo_color = Color(1, 1, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3ttsi"] +resource_name = "heart" +vertex_color_use_as_albedo = true +albedo_color = Color(0.976471, 0.290196, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_owvi0"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_6b00e"] +_surfaces = [{ +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"format": 4097, +"index_count": 576, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 5, 0, 3, 0, 4, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 6, 0, 8, 0, 7, 0, 11, 0, 9, 0, 10, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 12, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 15, 0, 17, 0, 16, 0, 20, 0, 18, 0, 19, 0, 18, 0, 20, 0, 19, 0, 23, 0, 21, 0, 22, 0, 21, 0, 23, 0, 22, 0, 26, 0, 24, 0, 25, 0, 24, 0, 26, 0, 25, 0, 29, 0, 27, 0, 28, 0, 27, 0, 29, 0, 28, 0, 32, 0, 30, 0, 31, 0, 30, 0, 32, 0, 31, 0, 35, 0, 33, 0, 34, 0, 33, 0, 35, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 47, 0, 48, 0, 46, 0, 48, 0, 49, 0, 46, 0, 49, 0, 50, 0, 46, 0, 49, 0, 51, 0, 50, 0, 51, 0, 52, 0, 50, 0, 51, 0, 53, 0, 52, 0, 51, 0, 54, 0, 53, 0, 54, 0, 55, 0, 53, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 60, 0, 58, 0, 59, 0, 59, 0, 61, 0, 60, 0, 63, 0, 62, 0, 40, 0, 40, 0, 42, 0, 63, 0, 66, 0, 64, 0, 65, 0, 65, 0, 67, 0, 66, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 43, 0, 41, 0, 76, 0, 76, 0, 77, 0, 43, 0, 78, 0, 34, 0, 0, 0, 0, 0, 71, 0, 78, 0, 80, 0, 79, 0, 58, 0, 58, 0, 60, 0, 80, 0, 83, 0, 81, 0, 82, 0, 82, 0, 84, 0, 83, 0, 82, 0, 85, 0, 84, 0, 82, 0, 86, 0, 85, 0, 82, 0, 87, 0, 86, 0, 87, 0, 88, 0, 86, 0, 87, 0, 89, 0, 88, 0, 89, 0, 90, 0, 88, 0, 90, 0, 91, 0, 88, 0, 90, 0, 92, 0, 91, 0, 92, 0, 93, 0, 91, 0, 93, 0, 94, 0, 91, 0, 97, 0, 95, 0, 96, 0, 96, 0, 98, 0, 97, 0, 19, 0, 99, 0, 100, 0, 100, 0, 8, 0, 19, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 70, 0, 104, 0, 97, 0, 97, 0, 98, 0, 70, 0, 98, 0, 68, 0, 70, 0, 98, 0, 66, 0, 68, 0, 66, 0, 67, 0, 68, 0, 67, 0, 105, 0, 68, 0, 67, 0, 75, 0, 105, 0, 75, 0, 73, 0, 105, 0, 73, 0, 106, 0, 105, 0, 106, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 106, 0, 109, 0, 108, 0, 108, 0, 109, 0, 110, 0, 110, 0, 111, 0, 108, 0, 27, 0, 8, 0, 100, 0, 100, 0, 102, 0, 27, 0, 77, 0, 76, 0, 99, 0, 99, 0, 112, 0, 77, 0, 39, 0, 37, 0, 62, 0, 62, 0, 63, 0, 39, 0, 113, 0, 110, 0, 109, 0, 109, 0, 106, 0, 113, 0, 25, 0, 54, 0, 91, 0, 91, 0, 14, 0, 25, 0, 94, 0, 93, 0, 56, 0, 56, 0, 57, 0, 94, 0, 37, 0, 36, 0, 114, 0, 114, 0, 59, 0, 37, 0, 59, 0, 62, 0, 37, 0, 59, 0, 58, 0, 62, 0, 58, 0, 40, 0, 62, 0, 58, 0, 79, 0, 40, 0, 79, 0, 41, 0, 40, 0, 79, 0, 115, 0, 41, 0, 115, 0, 76, 0, 41, 0, 115, 0, 101, 0, 76, 0, 101, 0, 99, 0, 76, 0, 101, 0, 100, 0, 99, 0, 61, 0, 116, 0, 38, 0, 38, 0, 39, 0, 61, 0, 39, 0, 63, 0, 61, 0, 63, 0, 60, 0, 61, 0, 63, 0, 42, 0, 60, 0, 42, 0, 80, 0, 60, 0, 42, 0, 43, 0, 80, 0, 43, 0, 117, 0, 80, 0, 43, 0, 77, 0, 117, 0, 77, 0, 103, 0, 117, 0, 77, 0, 112, 0, 103, 0, 112, 0, 102, 0, 103, 0, 105, 0, 107, 0, 118, 0, 118, 0, 119, 0, 105, 0, 49, 0, 48, 0, 85, 0, 85, 0, 86, 0, 49, 0, 15, 0, 112, 0, 99, 0, 99, 0, 19, 0, 15, 0, 88, 0, 91, 0, 54, 0, 54, 0, 51, 0, 88, 0, 86, 0, 88, 0, 51, 0, 51, 0, 49, 0, 86, 0, 93, 0, 92, 0, 55, 0, 55, 0, 56, 0, 93, 0, 71, 0, 0, 0, 30, 0, 30, 0, 70, 0, 71, 0, 87, 0, 82, 0, 46, 0, 46, 0, 50, 0, 87, 0, 98, 0, 96, 0, 64, 0, 64, 0, 66, 0, 98, 0, 57, 0, 54, 0, 25, 0, 25, 0, 9, 0, 57, 0, 90, 0, 89, 0, 52, 0, 52, 0, 53, 0, 90, 0, 61, 0, 59, 0, 114, 0, 114, 0, 116, 0, 61, 0, 23, 0, 104, 0, 70, 0, 70, 0, 30, 0, 23, 0, 117, 0, 115, 0, 79, 0, 79, 0, 80, 0, 117, 0, 65, 0, 74, 0, 75, 0, 75, 0, 67, 0, 65, 0, 68, 0, 105, 0, 119, 0, 119, 0, 69, 0, 68, 0, 95, 0, 78, 0, 71, 0, 71, 0, 96, 0, 95, 0, 71, 0, 69, 0, 96, 0, 69, 0, 64, 0, 96, 0, 69, 0, 65, 0, 64, 0, 69, 0, 119, 0, 65, 0, 119, 0, 74, 0, 65, 0, 119, 0, 72, 0, 74, 0, 119, 0, 113, 0, 72, 0, 119, 0, 118, 0, 113, 0, 118, 0, 111, 0, 113, 0, 111, 0, 110, 0, 113, 0, 14, 0, 91, 0, 94, 0, 94, 0, 3, 0, 14, 0, 45, 0, 44, 0, 81, 0, 81, 0, 83, 0, 45, 0, 102, 0, 112, 0, 15, 0, 15, 0, 27, 0, 102, 0, 89, 0, 87, 0, 50, 0, 50, 0, 52, 0, 89, 0, 9, 0, 3, 0, 94, 0, 94, 0, 57, 0, 9, 0, 103, 0, 101, 0, 115, 0, 115, 0, 117, 0, 103, 0, 107, 0, 108, 0, 111, 0, 111, 0, 118, 0, 107, 0, 92, 0, 90, 0, 53, 0, 53, 0, 55, 0, 92, 0, 104, 0, 78, 0, 95, 0, 95, 0, 97, 0, 104, 0, 48, 0, 47, 0, 84, 0, 84, 0, 85, 0, 48, 0, 104, 0, 23, 0, 34, 0, 34, 0, 78, 0, 104, 0, 47, 0, 45, 0, 83, 0, 83, 0, 84, 0, 47, 0), +"name": "grass", +"primitive": 3, +"vertex_count": 144, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"format": 4097, +"index_count": 18, +"index_data": PackedByteArray(46, 0, 82, 0, 81, 0, 81, 0, 44, 0, 46, 0, 38, 0, 116, 0, 114, 0, 114, 0, 36, 0, 38, 0, 106, 0, 73, 0, 72, 0, 72, 0, 113, 0, 106, 0), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 144, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"format": 4097, +"index_count": 288, +"index_data": PackedByteArray(120, 0, 10, 0, 9, 0, 121, 0, 120, 0, 9, 0, 5, 0, 121, 0, 9, 0, 9, 0, 3, 0, 5, 0, 4, 0, 3, 0, 14, 0, 4, 0, 14, 0, 13, 0, 122, 0, 4, 0, 13, 0, 13, 0, 123, 0, 122, 0, 12, 0, 14, 0, 124, 0, 124, 0, 125, 0, 12, 0, 14, 0, 25, 0, 124, 0, 25, 0, 24, 0, 124, 0, 26, 0, 25, 0, 9, 0, 9, 0, 11, 0, 26, 0, 11, 0, 126, 0, 26, 0, 11, 0, 127, 0, 126, 0, 10, 0, 120, 0, 9, 0, 120, 0, 121, 0, 9, 0, 121, 0, 5, 0, 9, 0, 3, 0, 9, 0, 5, 0, 3, 0, 4, 0, 14, 0, 14, 0, 4, 0, 13, 0, 4, 0, 122, 0, 13, 0, 123, 0, 13, 0, 122, 0, 14, 0, 12, 0, 124, 0, 125, 0, 124, 0, 12, 0, 25, 0, 14, 0, 124, 0, 24, 0, 25, 0, 124, 0, 25, 0, 26, 0, 9, 0, 11, 0, 9, 0, 26, 0, 126, 0, 11, 0, 26, 0, 127, 0, 11, 0, 126, 0, 7, 0, 128, 0, 129, 0, 129, 0, 28, 0, 7, 0, 28, 0, 8, 0, 7, 0, 28, 0, 27, 0, 8, 0, 15, 0, 27, 0, 29, 0, 29, 0, 130, 0, 15, 0, 130, 0, 131, 0, 15, 0, 131, 0, 16, 0, 15, 0, 6, 0, 8, 0, 132, 0, 132, 0, 133, 0, 6, 0, 8, 0, 19, 0, 132, 0, 19, 0, 18, 0, 132, 0, 20, 0, 19, 0, 15, 0, 15, 0, 17, 0, 20, 0, 17, 0, 134, 0, 20, 0, 17, 0, 135, 0, 134, 0, 128, 0, 7, 0, 129, 0, 28, 0, 129, 0, 7, 0, 8, 0, 28, 0, 7, 0, 27, 0, 28, 0, 8, 0, 27, 0, 15, 0, 29, 0, 130, 0, 29, 0, 15, 0, 131, 0, 130, 0, 15, 0, 16, 0, 131, 0, 15, 0, 8, 0, 6, 0, 132, 0, 133, 0, 132, 0, 6, 0, 19, 0, 8, 0, 132, 0, 18, 0, 19, 0, 132, 0, 19, 0, 20, 0, 15, 0, 17, 0, 15, 0, 20, 0, 134, 0, 17, 0, 20, 0, 135, 0, 17, 0, 134, 0, 137, 0, 136, 0, 1, 0, 137, 0, 1, 0, 0, 0, 32, 0, 137, 0, 0, 0, 0, 0, 30, 0, 32, 0, 31, 0, 30, 0, 23, 0, 138, 0, 31, 0, 23, 0, 138, 0, 23, 0, 22, 0, 22, 0, 139, 0, 138, 0, 21, 0, 23, 0, 140, 0, 140, 0, 141, 0, 21, 0, 23, 0, 34, 0, 140, 0, 34, 0, 33, 0, 140, 0, 35, 0, 34, 0, 0, 0, 0, 0, 142, 0, 35, 0, 0, 0, 2, 0, 142, 0, 2, 0, 143, 0, 142, 0, 136, 0, 137, 0, 1, 0, 1, 0, 137, 0, 0, 0, 137, 0, 32, 0, 0, 0, 30, 0, 0, 0, 32, 0, 30, 0, 31, 0, 23, 0, 31, 0, 138, 0, 23, 0, 23, 0, 138, 0, 22, 0, 139, 0, 22, 0, 138, 0, 23, 0, 21, 0, 140, 0, 141, 0, 140, 0, 21, 0, 34, 0, 23, 0, 140, 0, 33, 0, 34, 0, 140, 0, 34, 0, 35, 0, 0, 0, 142, 0, 0, 0, 35, 0, 2, 0, 0, 0, 142, 0, 143, 0, 2, 0, 142, 0), +"lods": [0.0320044, PackedByteArray(121, 0, 10, 0, 9, 0, 5, 0, 121, 0, 9, 0, 9, 0, 3, 0, 5, 0, 4, 0, 3, 0, 14, 0, 4, 0, 14, 0, 13, 0, 12, 0, 14, 0, 124, 0, 14, 0, 25, 0, 124, 0, 26, 0, 25, 0, 9, 0, 9, 0, 11, 0, 26, 0, 11, 0, 126, 0, 26, 0, 10, 0, 121, 0, 9, 0, 121, 0, 5, 0, 9, 0, 3, 0, 9, 0, 5, 0, 3, 0, 4, 0, 14, 0, 14, 0, 4, 0, 13, 0, 14, 0, 12, 0, 124, 0, 25, 0, 14, 0, 124, 0, 25, 0, 26, 0, 9, 0, 11, 0, 9, 0, 26, 0, 126, 0, 11, 0, 26, 0, 28, 0, 8, 0, 7, 0, 28, 0, 27, 0, 8, 0, 6, 0, 8, 0, 132, 0, 8, 0, 19, 0, 132, 0, 19, 0, 18, 0, 132, 0, 15, 0, 27, 0, 29, 0, 29, 0, 130, 0, 15, 0, 130, 0, 16, 0, 15, 0, 20, 0, 19, 0, 15, 0, 15, 0, 17, 0, 20, 0, 17, 0, 134, 0, 20, 0, 8, 0, 28, 0, 7, 0, 27, 0, 28, 0, 8, 0, 8, 0, 6, 0, 132, 0, 19, 0, 8, 0, 132, 0, 18, 0, 19, 0, 132, 0, 27, 0, 15, 0, 29, 0, 130, 0, 29, 0, 15, 0, 16, 0, 130, 0, 15, 0, 19, 0, 20, 0, 15, 0, 17, 0, 15, 0, 20, 0, 134, 0, 17, 0, 20, 0, 137, 0, 1, 0, 0, 0, 32, 0, 137, 0, 0, 0, 0, 0, 30, 0, 32, 0, 0, 0, 2, 0, 142, 0, 0, 0, 142, 0, 35, 0, 35, 0, 34, 0, 0, 0, 23, 0, 34, 0, 140, 0, 21, 0, 23, 0, 140, 0, 31, 0, 30, 0, 23, 0, 138, 0, 31, 0, 23, 0, 138, 0, 23, 0, 22, 0, 1, 0, 137, 0, 0, 0, 137, 0, 32, 0, 0, 0, 30, 0, 0, 0, 32, 0, 2, 0, 0, 0, 142, 0, 142, 0, 0, 0, 35, 0, 34, 0, 35, 0, 0, 0, 34, 0, 23, 0, 140, 0, 23, 0, 21, 0, 140, 0, 30, 0, 31, 0, 23, 0, 31, 0, 138, 0, 23, 0, 23, 0, 138, 0, 22, 0), 0.0362993, PackedByteArray(5, 0, 10, 0, 9, 0, 9, 0, 3, 0, 5, 0, 13, 0, 3, 0, 14, 0, 11, 0, 25, 0, 9, 0, 14, 0, 25, 0, 124, 0, 10, 0, 5, 0, 9, 0, 3, 0, 9, 0, 5, 0, 25, 0, 11, 0, 9, 0, 3, 0, 13, 0, 14, 0, 25, 0, 14, 0, 124, 0, 28, 0, 8, 0, 7, 0, 28, 0, 27, 0, 8, 0, 15, 0, 27, 0, 29, 0, 29, 0, 16, 0, 15, 0, 17, 0, 19, 0, 15, 0, 8, 0, 19, 0, 132, 0, 19, 0, 18, 0, 132, 0, 8, 0, 28, 0, 7, 0, 27, 0, 28, 0, 8, 0, 19, 0, 8, 0, 132, 0, 18, 0, 19, 0, 132, 0, 19, 0, 17, 0, 15, 0, 27, 0, 15, 0, 29, 0, 16, 0, 29, 0, 15, 0, 0, 0, 30, 0, 32, 0, 22, 0, 30, 0, 23, 0, 2, 0, 34, 0, 0, 0, 23, 0, 34, 0, 140, 0, 30, 0, 0, 0, 32, 0, 34, 0, 2, 0, 0, 0, 30, 0, 22, 0, 23, 0, 34, 0, 23, 0, 140, 0)], +"name": "heart", +"primitive": 3, +"vertex_count": 144, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"format": 4097, +"index_count": 18, +"index_data": PackedByteArray(19, 0, 8, 0, 27, 0, 27, 0, 15, 0, 19, 0, 25, 0, 14, 0, 3, 0, 3, 0, 9, 0, 25, 0, 34, 0, 23, 0, 30, 0, 30, 0, 0, 0, 34, 0), +"name": "snow", +"primitive": 3, +"vertex_count": 144, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_e6axn"] +resource_name = "flowers_Mesh flowers" +_surfaces = [{ +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"attribute_data": PackedByteArray(131, 125, 37, 61, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 211, 54, 164, 63, 104, 75, 28, 63, 211, 54, 164, 63, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 131, 125, 37, 61, 104, 75, 28, 63, 20, 107, 82, 64, 30, 57, 220, 63, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 171, 81, 47, 64, 20, 107, 82, 64, 171, 81, 47, 64, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 30, 57, 220, 63, 148, 174, 152, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 148, 174, 152, 192, 238, 16, 95, 192, 118, 121, 176, 63, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 129, 60, 184, 62, 30, 57, 220, 63, 129, 60, 184, 62, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 118, 121, 176, 63, 30, 57, 220, 63, 20, 107, 82, 64, 244, 139, 154, 191, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 244, 139, 154, 191, 39, 46, 70, 190, 18, 38, 0, 191, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 148, 211, 139, 63, 39, 46, 70, 190, 148, 211, 139, 63, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 230, 105, 75, 192, 18, 38, 0, 191, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 74, 106, 18, 192, 154, 204, 133, 64, 167, 239, 97, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 167, 239, 97, 192, 197, 19, 60, 64, 74, 106, 18, 192, 154, 204, 133, 64, 118, 121, 176, 63, 244, 139, 154, 191, 118, 121, 176, 63, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 118, 121, 176, 63, 88, 13, 65, 190, 118, 121, 176, 63, 244, 139, 154, 191, 39, 46, 70, 190, 56, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 226, 32, 179, 63, 126, 17, 95, 192, 226, 32, 179, 63, 126, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 39, 46, 70, 190, 56, 17, 95, 192, 222, 105, 18, 192, 191, 74, 28, 63, 110, 239, 97, 192, 112, 74, 28, 63, 224, 105, 18, 192, 28, 203, 33, 191, 224, 105, 18, 192, 28, 203, 33, 191, 110, 239, 97, 192, 112, 74, 28, 63, 222, 105, 18, 192, 191, 74, 28, 63, 175, 158, 37, 61, 88, 204, 133, 64, 6, 148, 37, 61, 12, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 6, 148, 37, 61, 12, 19, 60, 64, 175, 158, 37, 61, 88, 204, 133, 64, 96, 147, 43, 192, 34, 174, 104, 63, 96, 147, 43, 192, 204, 239, 200, 191, 96, 229, 48, 191, 34, 174, 104, 63, 96, 229, 48, 191, 204, 239, 200, 191, 96, 147, 43, 192, 215, 215, 221, 192, 96, 147, 43, 192, 197, 148, 22, 193, 96, 229, 48, 191, 215, 215, 221, 192, 96, 229, 48, 191, 197, 148, 22, 193, 105, 53, 0, 64, 0, 0, 128, 63, 211, 241, 4, 64, 250, 222, 49, 191, 186, 169, 81, 64, 0, 0, 128, 63, 168, 29, 19, 64, 40, 28, 24, 192, 108, 157, 42, 64, 193, 13, 129, 192, 83, 67, 75, 64, 171, 211, 180, 192, 189, 22, 86, 64, 100, 121, 21, 191, 180, 207, 116, 64, 228, 250, 230, 192, 33, 85, 99, 64, 50, 247, 9, 192, 42, 75, 121, 64, 136, 6, 109, 192, 205, 120, 147, 64, 228, 144, 11, 193, 1, 231, 139, 64, 179, 229, 166, 192, 33, 81, 159, 64, 160, 196, 213, 192, 24, 190, 182, 64, 90, 98, 1, 193, 96, 147, 43, 64, 47, 214, 137, 192, 96, 147, 43, 64, 148, 217, 211, 191, 96, 229, 48, 63, 47, 214, 137, 192, 96, 229, 48, 63, 148, 217, 211, 191, 96, 147, 43, 192, 114, 152, 139, 192, 96, 147, 43, 192, 40, 234, 218, 192, 96, 229, 48, 191, 114, 152, 139, 192, 96, 229, 48, 191, 40, 234, 218, 192, 45, 247, 177, 190, 38, 148, 188, 192, 45, 247, 177, 190, 94, 107, 125, 192, 252, 40, 243, 191, 38, 148, 188, 192, 252, 40, 243, 191, 94, 107, 125, 192, 252, 40, 243, 63, 220, 189, 41, 193, 45, 247, 177, 62, 220, 189, 41, 193, 20, 41, 243, 63, 179, 215, 74, 193, 138, 247, 177, 62, 179, 215, 74, 193, 202, 247, 177, 190, 187, 184, 69, 63, 36, 41, 243, 191, 188, 184, 69, 63, 42, 248, 177, 190, 120, 157, 148, 191, 36, 41, 243, 191, 120, 157, 148, 191, 96, 147, 43, 192, 178, 237, 22, 193, 96, 147, 43, 192, 142, 150, 62, 193, 96, 229, 48, 191, 178, 237, 22, 193, 96, 229, 48, 191, 142, 150, 62, 193, 64, 37, 15, 193, 30, 126, 30, 193, 151, 190, 222, 192, 168, 239, 49, 193, 200, 18, 0, 193, 205, 193, 17, 193, 72, 200, 213, 192, 38, 184, 30, 193, 96, 147, 43, 64, 47, 177, 221, 192, 96, 147, 43, 64, 98, 209, 136, 192, 96, 229, 48, 63, 47, 177, 221, 192, 96, 229, 48, 63, 98, 209, 136, 192, 105, 53, 0, 192, 0, 0, 128, 63, 186, 169, 81, 192, 0, 0, 128, 63, 211, 241, 4, 192, 250, 222, 49, 191, 168, 29, 19, 192, 40, 28, 24, 192, 108, 157, 42, 192, 193, 13, 129, 192, 83, 67, 75, 192, 171, 211, 180, 192, 189, 22, 86, 192, 100, 121, 21, 191, 180, 207, 116, 192, 228, 250, 230, 192, 33, 85, 99, 192, 50, 247, 9, 192, 42, 75, 121, 192, 136, 6, 109, 192, 205, 120, 147, 192, 228, 144, 11, 193, 1, 231, 139, 192, 179, 229, 166, 192, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 45, 247, 177, 190, 247, 30, 39, 193, 45, 247, 177, 190, 189, 47, 8, 193, 252, 40, 243, 191, 247, 30, 39, 193, 252, 40, 243, 191, 189, 47, 8, 193, 249, 162, 200, 64, 111, 46, 81, 193, 187, 82, 146, 64, 187, 204, 97, 193, 112, 72, 239, 64, 87, 130, 97, 193, 35, 208, 157, 64, 206, 111, 122, 193, 96, 147, 43, 64, 252, 143, 102, 193, 96, 147, 43, 64, 24, 32, 60, 193, 96, 229, 48, 63, 252, 143, 102, 193, 96, 229, 48, 63, 24, 32, 60, 193, 228, 2, 3, 65, 63, 76, 33, 193, 100, 116, 233, 64, 204, 219, 5, 193, 113, 2, 219, 64, 239, 182, 45, 193, 66, 199, 209, 64, 200, 142, 210, 192, 222, 112, 188, 64, 141, 90, 16, 193, 139, 44, 191, 64, 97, 141, 151, 192, 127, 200, 177, 64, 176, 76, 54, 192, 71, 27, 163, 64, 122, 139, 227, 192, 44, 181, 169, 64, 24, 123, 110, 191, 76, 2, 167, 64, 250, 255, 127, 63, 0, 175, 106, 64, 250, 255, 127, 63, 7, 51, 143, 64, 45, 104, 164, 192, 221, 222, 128, 64, 122, 140, 71, 192, 136, 117, 112, 64, 56, 142, 136, 191, 25, 41, 243, 63, 84, 16, 197, 191, 158, 247, 177, 62, 86, 16, 197, 191, 27, 41, 243, 63, 130, 239, 102, 192, 3, 248, 177, 62, 130, 239, 102, 192, 230, 105, 75, 64, 164, 176, 129, 193, 96, 147, 43, 64, 233, 93, 107, 193, 39, 46, 70, 62, 164, 176, 129, 193, 96, 229, 48, 63, 233, 93, 107, 193, 96, 147, 43, 192, 157, 131, 61, 193, 96, 147, 43, 192, 123, 44, 101, 193, 96, 229, 48, 191, 157, 131, 61, 193, 96, 229, 48, 191, 123, 44, 101, 193, 96, 147, 43, 192, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 229, 48, 191, 35, 15, 135, 192, 45, 247, 177, 62, 20, 72, 157, 191, 252, 40, 243, 63, 20, 72, 157, 191, 45, 247, 177, 62, 77, 13, 87, 63, 252, 40, 243, 63, 77, 13, 87, 63, 126, 51, 217, 191, 244, 129, 22, 193, 16, 14, 62, 192, 244, 129, 22, 193, 118, 121, 176, 191, 206, 221, 37, 193, 20, 107, 82, 192, 206, 221, 37, 193, 16, 14, 62, 64, 25, 200, 1, 193, 126, 51, 217, 63, 25, 200, 1, 193, 16, 14, 62, 64, 221, 37, 27, 193, 126, 51, 217, 63, 221, 37, 27, 193, 46, 167, 5, 64, 0, 0, 128, 63, 178, 164, 201, 61, 0, 0, 128, 63, 166, 146, 12, 64, 142, 249, 188, 191, 141, 74, 91, 62, 120, 44, 211, 191, 116, 71, 33, 64, 202, 196, 123, 192, 255, 114, 15, 63, 5, 241, 136, 192, 104, 157, 67, 64, 198, 82, 203, 192, 134, 52, 145, 63, 201, 205, 219, 192, 124, 81, 115, 64, 85, 124, 11, 193, 50, 75, 247, 63, 251, 95, 22, 193, 103, 3, 152, 64, 89, 32, 48, 193, 75, 155, 60, 64, 232, 148, 61, 193, 145, 163, 188, 64, 13, 78, 83, 193, 109, 126, 133, 64, 76, 57, 99, 193, 178, 164, 201, 189, 0, 0, 128, 63, 46, 167, 5, 192, 0, 0, 128, 63, 141, 74, 91, 190, 120, 44, 211, 191, 166, 146, 12, 192, 142, 249, 188, 191, 116, 71, 33, 192, 202, 196, 123, 192, 255, 114, 15, 191, 5, 241, 136, 192, 104, 157, 67, 192, 198, 82, 203, 192, 134, 52, 145, 191, 201, 205, 219, 192, 124, 81, 115, 192, 85, 124, 11, 193, 50, 75, 247, 191, 251, 95, 22, 193, 103, 3, 152, 192, 89, 32, 48, 193, 75, 155, 60, 192, 232, 148, 61, 193, 145, 163, 188, 192, 13, 78, 83, 193, 109, 126, 133, 192, 76, 57, 99, 193, 20, 41, 243, 63, 158, 96, 198, 192, 138, 247, 177, 62, 158, 96, 198, 192, 252, 40, 243, 63, 39, 74, 4, 193, 45, 247, 177, 62, 39, 74, 4, 193, 126, 51, 217, 191, 141, 64, 147, 192, 16, 14, 62, 192, 141, 64, 147, 192, 126, 51, 217, 191, 171, 137, 201, 192, 16, 14, 62, 192, 171, 137, 201, 192, 96, 229, 48, 191, 215, 158, 75, 193, 96, 147, 43, 192, 215, 158, 75, 193, 39, 46, 70, 190, 47, 162, 99, 193, 230, 105, 75, 192, 47, 162, 99, 193, 16, 14, 62, 192, 68, 9, 28, 193, 126, 51, 217, 191, 68, 9, 28, 193, 16, 14, 62, 192, 182, 228, 0, 193, 126, 51, 217, 191, 182, 228, 0, 193, 16, 14, 62, 192, 225, 132, 203, 192, 126, 51, 217, 191, 225, 132, 203, 192, 16, 14, 62, 64, 163, 75, 205, 192, 126, 51, 217, 63, 163, 75, 205, 192, 16, 14, 62, 64, 151, 3, 0, 193, 126, 51, 217, 63, 151, 3, 0, 193, 208, 164, 37, 189, 157, 103, 81, 193, 210, 105, 18, 64, 157, 103, 81, 193, 204, 246, 177, 62, 172, 172, 62, 193, 228, 40, 243, 63, 172, 172, 62, 193, 16, 14, 62, 64, 46, 107, 91, 63, 126, 51, 217, 63, 46, 107, 91, 63, 16, 14, 62, 64, 24, 113, 58, 191, 126, 51, 217, 63, 24, 113, 58, 191, 45, 247, 177, 190, 222, 52, 3, 193, 45, 247, 177, 190, 71, 139, 200, 192, 252, 40, 243, 191, 222, 52, 3, 193, 252, 40, 243, 191, 71, 139, 200, 192, 123, 218, 135, 64, 172, 92, 243, 192, 207, 51, 143, 64, 84, 112, 9, 193, 156, 151, 170, 64, 143, 26, 222, 192, 133, 79, 195, 64, 134, 253, 242, 192, 16, 14, 62, 64, 204, 97, 54, 192, 126, 51, 217, 63, 204, 97, 54, 192, 16, 14, 62, 64, 108, 236, 141, 192, 126, 51, 217, 63, 108, 236, 141, 192, 96, 147, 43, 64, 234, 11, 212, 191, 96, 147, 43, 64, 139, 230, 126, 63, 96, 229, 48, 63, 234, 11, 212, 191, 96, 229, 48, 63, 139, 230, 126, 63, 89, 75, 6, 65, 66, 236, 27, 193, 107, 57, 226, 64, 156, 226, 40, 193, 206, 93, 21, 65, 148, 168, 40, 193, 179, 47, 235, 64, 29, 26, 60, 193, 96, 147, 43, 64, 77, 248, 23, 193, 96, 147, 43, 64, 204, 16, 219, 192, 96, 229, 48, 63, 77, 248, 23, 193, 96, 229, 48, 63, 204, 16, 219, 192, 42, 248, 177, 190, 2, 187, 205, 191, 36, 41, 243, 191, 4, 187, 205, 191, 212, 247, 177, 190, 110, 154, 98, 192, 38, 41, 243, 191, 108, 154, 98, 192, 252, 40, 243, 63, 104, 26, 7, 193, 45, 247, 177, 62, 104, 26, 7, 193, 252, 40, 243, 63, 64, 52, 40, 193, 45, 247, 177, 62, 64, 52, 40, 193, 228, 2, 3, 193, 62, 76, 33, 193, 115, 2, 219, 192, 239, 182, 45, 193, 101, 116, 233, 192, 204, 219, 5, 193, 68, 199, 209, 192, 200, 142, 210, 192, 223, 112, 188, 192, 140, 90, 16, 193, 140, 44, 191, 192, 96, 141, 151, 192, 128, 200, 177, 192, 175, 76, 54, 192, 72, 27, 163, 192, 122, 139, 227, 192, 39, 181, 169, 192, 18, 123, 110, 191, 78, 2, 167, 192, 255, 255, 127, 63, 2, 175, 106, 192, 255, 255, 127, 63, 8, 51, 143, 192, 45, 104, 164, 192, 216, 222, 128, 192, 122, 140, 71, 192, 138, 117, 112, 192, 52, 142, 136, 191, 84, 176, 161, 192, 78, 202, 14, 193, 117, 109, 196, 192, 64, 41, 4, 193, 168, 9, 169, 192, 77, 140, 30, 193, 94, 37, 221, 192, 187, 154, 14, 193, 126, 51, 217, 191, 42, 161, 105, 63, 16, 14, 62, 192, 42, 161, 105, 63, 126, 51, 217, 191, 164, 167, 72, 191, 16, 14, 62, 192, 164, 167, 72, 191, 242, 247, 181, 192, 177, 237, 65, 193, 103, 157, 220, 192, 152, 65, 82, 193, 102, 79, 127, 192, 252, 139, 82, 193, 24, 37, 139, 192, 14, 47, 107, 193, 16, 14, 62, 64, 248, 227, 128, 191, 126, 51, 217, 63, 248, 227, 128, 191, 16, 14, 62, 64, 12, 233, 37, 192, 126, 51, 217, 63, 12, 233, 37, 192, 20, 107, 82, 64, 100, 98, 35, 193, 16, 14, 62, 64, 132, 6, 20, 193, 118, 121, 176, 63, 100, 98, 35, 193, 126, 51, 217, 63, 132, 6, 20, 193, 96, 147, 43, 64, 20, 250, 63, 193, 96, 147, 43, 64, 49, 138, 21, 193, 96, 229, 48, 63, 20, 250, 63, 193, 96, 229, 48, 63, 49, 138, 21, 193, 27, 41, 243, 63, 88, 22, 121, 192, 3, 248, 177, 62, 86, 22, 121, 192, 54, 41, 243, 63, 215, 190, 190, 192, 17, 248, 177, 62, 216, 190, 190, 192, 16, 14, 62, 64, 80, 7, 149, 192, 126, 51, 217, 63, 80, 7, 149, 192, 16, 14, 62, 64, 217, 194, 199, 192, 126, 51, 217, 63, 217, 194, 199, 192, 45, 247, 177, 190, 102, 194, 73, 193, 45, 247, 177, 190, 42, 211, 42, 193, 252, 40, 243, 191, 102, 194, 73, 193, 252, 40, 243, 191, 42, 211, 42, 193, 126, 51, 217, 191, 59, 212, 50, 192, 16, 14, 62, 192, 59, 212, 50, 192, 126, 51, 217, 191, 54, 179, 143, 192, 16, 14, 62, 192, 54, 179, 143, 192, 203, 105, 18, 192, 219, 158, 89, 193, 144, 166, 37, 61, 220, 158, 89, 193, 196, 40, 243, 191, 238, 227, 70, 193, 73, 246, 177, 190, 237, 227, 70, 193, 126, 51, 217, 191, 206, 145, 115, 191, 16, 14, 62, 192, 206, 145, 115, 191, 126, 51, 217, 191, 164, 118, 41, 192, 16, 14, 62, 192, 164, 118, 41, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 118, 121, 176, 63, 252, 81, 47, 64, 118, 121, 176, 63, 17, 135, 112, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 118, 121, 176, 63, 17, 135, 112, 64, 118, 121, 176, 63, 252, 81, 47, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 230, 105, 75, 192, 225, 123, 213, 192, 39, 46, 70, 190, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 39, 46, 70, 190, 225, 123, 213, 192, 230, 105, 75, 192, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 189, 160, 37, 61, 110, 240, 239, 191, 226, 105, 18, 192, 82, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63, 226, 105, 18, 192, 82, 240, 239, 191, 189, 160, 37, 61, 110, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63), +"format": 4119, +"index_count": 576, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 8, 0, 6, 0, 7, 0, 11, 0, 9, 0, 10, 0, 14, 0, 12, 0, 13, 0, 17, 0, 15, 0, 16, 0, 20, 0, 18, 0, 19, 0, 23, 0, 21, 0, 22, 0, 26, 0, 24, 0, 25, 0, 29, 0, 27, 0, 28, 0, 32, 0, 30, 0, 31, 0, 35, 0, 33, 0, 34, 0, 38, 0, 36, 0, 37, 0, 41, 0, 39, 0, 40, 0, 44, 0, 42, 0, 43, 0, 47, 0, 45, 0, 46, 0, 50, 0, 48, 0, 49, 0, 53, 0, 51, 0, 52, 0, 56, 0, 54, 0, 55, 0, 59, 0, 57, 0, 58, 0, 62, 0, 60, 0, 61, 0, 65, 0, 63, 0, 64, 0, 68, 0, 66, 0, 67, 0, 71, 0, 69, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 83, 0, 84, 0, 82, 0, 84, 0, 85, 0, 82, 0, 85, 0, 86, 0, 82, 0, 85, 0, 87, 0, 86, 0, 87, 0, 88, 0, 86, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 90, 0, 91, 0, 89, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 92, 0, 96, 0, 94, 0, 95, 0, 95, 0, 97, 0, 96, 0, 100, 0, 98, 0, 99, 0, 99, 0, 101, 0, 100, 0, 104, 0, 102, 0, 103, 0, 103, 0, 105, 0, 104, 0, 108, 0, 106, 0, 107, 0, 107, 0, 109, 0, 108, 0, 112, 0, 110, 0, 111, 0, 111, 0, 113, 0, 112, 0, 116, 0, 114, 0, 115, 0, 115, 0, 117, 0, 116, 0, 120, 0, 118, 0, 119, 0, 119, 0, 121, 0, 120, 0, 124, 0, 122, 0, 123, 0, 123, 0, 125, 0, 124, 0, 128, 0, 126, 0, 127, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 129, 0, 127, 0, 131, 0, 130, 0, 127, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 132, 0, 134, 0, 133, 0, 134, 0, 135, 0, 133, 0, 135, 0, 136, 0, 133, 0, 135, 0, 137, 0, 136, 0, 137, 0, 138, 0, 136, 0, 138, 0, 139, 0, 136, 0, 142, 0, 140, 0, 141, 0, 141, 0, 143, 0, 142, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 155, 0, 156, 0, 154, 0, 155, 0, 157, 0, 156, 0, 157, 0, 158, 0, 156, 0, 158, 0, 159, 0, 156, 0, 158, 0, 160, 0, 159, 0, 160, 0, 161, 0, 159, 0, 161, 0, 162, 0, 159, 0, 162, 0, 163, 0, 159, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 168, 0, 166, 0, 167, 0, 167, 0, 169, 0, 168, 0, 172, 0, 170, 0, 171, 0, 171, 0, 173, 0, 172, 0, 176, 0, 174, 0, 175, 0, 175, 0, 177, 0, 176, 0, 180, 0, 178, 0, 179, 0, 179, 0, 181, 0, 180, 0, 184, 0, 182, 0, 183, 0, 183, 0, 185, 0, 184, 0, 188, 0, 186, 0, 187, 0, 187, 0, 189, 0, 188, 0, 192, 0, 190, 0, 191, 0, 191, 0, 193, 0, 192, 0, 196, 0, 194, 0, 195, 0, 195, 0, 197, 0, 196, 0, 197, 0, 198, 0, 196, 0, 197, 0, 199, 0, 198, 0, 199, 0, 200, 0, 198, 0, 199, 0, 201, 0, 200, 0, 201, 0, 202, 0, 200, 0, 201, 0, 203, 0, 202, 0, 203, 0, 204, 0, 202, 0, 203, 0, 205, 0, 204, 0, 205, 0, 206, 0, 204, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 211, 0, 212, 0, 210, 0, 212, 0, 213, 0, 210, 0, 212, 0, 214, 0, 213, 0, 214, 0, 215, 0, 213, 0, 214, 0, 216, 0, 215, 0, 216, 0, 217, 0, 215, 0, 216, 0, 218, 0, 217, 0, 218, 0, 219, 0, 217, 0, 218, 0, 220, 0, 219, 0, 220, 0, 221, 0, 219, 0, 224, 0, 222, 0, 223, 0, 223, 0, 225, 0, 224, 0, 228, 0, 226, 0, 227, 0, 227, 0, 229, 0, 228, 0, 232, 0, 230, 0, 231, 0, 231, 0, 233, 0, 232, 0, 236, 0, 234, 0, 235, 0, 235, 0, 237, 0, 236, 0, 238, 0, 236, 0, 237, 0, 237, 0, 239, 0, 238, 0, 242, 0, 240, 0, 241, 0, 241, 0, 243, 0, 242, 0, 246, 0, 244, 0, 245, 0, 245, 0, 247, 0, 246, 0, 250, 0, 248, 0, 249, 0, 249, 0, 251, 0, 250, 0, 254, 0, 252, 0, 253, 0, 253, 0, 255, 0, 254, 0, 2, 1, 0, 1, 1, 1, 1, 1, 3, 1, 2, 1, 6, 1, 4, 1, 5, 1, 5, 1, 7, 1, 6, 1, 10, 1, 8, 1, 9, 1, 9, 1, 11, 1, 10, 1, 14, 1, 12, 1, 13, 1, 13, 1, 15, 1, 14, 1, 18, 1, 16, 1, 17, 1, 17, 1, 19, 1, 18, 1, 22, 1, 20, 1, 21, 1, 21, 1, 23, 1, 22, 1, 26, 1, 24, 1, 25, 1, 25, 1, 27, 1, 26, 1, 30, 1, 28, 1, 29, 1, 29, 1, 31, 1, 30, 1, 29, 1, 32, 1, 31, 1, 32, 1, 33, 1, 31, 1, 32, 1, 34, 1, 33, 1, 32, 1, 35, 1, 34, 1, 35, 1, 36, 1, 34, 1, 35, 1, 37, 1, 36, 1, 35, 1, 38, 1, 37, 1, 35, 1, 39, 1, 38, 1, 39, 1, 40, 1, 38, 1, 40, 1, 41, 1, 38, 1, 44, 1, 42, 1, 43, 1, 43, 1, 45, 1, 44, 1, 48, 1, 46, 1, 47, 1, 47, 1, 49, 1, 48, 1, 52, 1, 50, 1, 51, 1, 51, 1, 53, 1, 52, 1, 56, 1, 54, 1, 55, 1, 55, 1, 57, 1, 56, 1, 60, 1, 58, 1, 59, 1, 59, 1, 61, 1, 60, 1, 64, 1, 62, 1, 63, 1, 63, 1, 65, 1, 64, 1, 68, 1, 66, 1, 67, 1, 67, 1, 69, 1, 68, 1, 72, 1, 70, 1, 71, 1, 71, 1, 73, 1, 72, 1, 76, 1, 74, 1, 75, 1, 75, 1, 77, 1, 76, 1, 80, 1, 78, 1, 79, 1, 79, 1, 81, 1, 80, 1, 84, 1, 82, 1, 83, 1, 83, 1, 85, 1, 84, 1, 88, 1, 86, 1, 87, 1, 87, 1, 89, 1, 88, 1), +"material": SubResource("StandardMaterial3D_gmaku"), +"name": "grass", +"primitive": 3, +"vertex_count": 422, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 59, 99, 118, 198, 255, 191, 255, 191, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 59, 99, 118, 198, 255, 191, 255, 191, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 59, 99, 118, 198, 255, 191, 255, 191, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 136, 185, 196, 28, 255, 191, 255, 63, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 136, 185, 196, 28, 255, 191, 255, 63, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 136, 185, 196, 28, 255, 191, 255, 63, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 255, 63, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 217, 174, 37, 209, 255, 255, 255, 255, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 37, 81, 217, 46, 255, 255, 0, 0, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 255, 191, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 255, 63, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 255, 255, 0, 0, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 59, 99, 118, 198, 255, 191, 255, 191, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 59, 99, 118, 198, 255, 191, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 59, 99, 118, 198, 255, 191, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 136, 185, 196, 28, 255, 191, 255, 63, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 136, 185, 196, 28, 255, 191, 255, 63, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 136, 185, 196, 28, 255, 191, 255, 63, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 255, 63, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 37, 81, 217, 46, 254, 255, 254, 127, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 37, 81, 217, 46, 254, 255, 254, 127, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 37, 81, 217, 46, 254, 255, 254, 127, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 59, 99, 118, 198, 255, 191, 255, 191, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 59, 99, 118, 198, 255, 191, 255, 191, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 59, 99, 118, 198, 255, 191, 255, 191, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 136, 185, 196, 28, 255, 191, 255, 63, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 136, 185, 196, 28, 255, 191, 255, 63, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 136, 185, 196, 28, 255, 191, 255, 63, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 255, 191, 255, 191, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 59, 99, 118, 198, 255, 191, 255, 191, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 59, 99, 118, 198, 255, 191, 255, 191, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 136, 185, 196, 28, 255, 191, 255, 63, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 136, 185, 196, 28, 255, 191, 255, 63, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 255, 191, 255, 63, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 164, 250, 164, 122, 255, 255, 255, 255, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 255, 255, 255, 255, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 164, 250, 164, 122, 255, 255, 255, 255, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 255, 255, 255, 255, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 255, 255, 255, 255, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 255, 255, 255, 255, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 255, 255, 255, 255, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 255, 255, 255, 255, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 255, 255, 127, 255, 255, 255, 255, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 255, 255, 127, 254, 255, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 255, 255, 127, 255, 255, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 255, 255, 127, 254, 255, 255, 255, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 255, 255, 127, 255, 255, 255, 255, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 255, 255, 127, 254, 255, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 255, 255, 255, 127, 254, 255, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 255, 255, 127, 254, 255, 255, 255, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 255, 255, 255, 127, 254, 255, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 255, 255, 255, 127, 254, 255, 255, 255, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 63, 254, 83, 133, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 255, 255, 255, 127, 255, 255, 255, 255, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 255, 255, 255, 127, 255, 255, 255, 255, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 84, 254, 53, 133, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 255, 127, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 255, 127, 255, 191, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 255, 127, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 255, 127, 255, 191, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 255, 255, 255, 255, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 255, 255, 255, 255, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 255, 255, 255, 255, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 255, 255, 255, 255, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 255, 191, 255, 191, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 255, 191, 255, 191, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 255, 191, 255, 191, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 255, 191, 255, 191, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 255, 159, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 255, 159, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 255, 223, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 255, 223, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 234, 65, 42, 124, 255, 191, 255, 191, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 234, 65, 42, 124, 255, 191, 255, 191, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 255, 191, 255, 191, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 255, 191, 255, 191, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 255, 255, 255, 255, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 255, 255, 255, 255, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 255, 255, 255, 255, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 255, 255, 255, 255, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 234, 189, 85, 105, 254, 255, 96, 154, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 234, 189, 85, 105, 254, 255, 96, 154, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 217, 254, 184, 156, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 218, 254, 164, 156, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 255, 127, 255, 191, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 255, 127, 255, 191, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 255, 127, 255, 191, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 255, 127, 255, 191, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 166, 138, 222, 192, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 0, 0, 255, 127, 255, 127, 255, 191, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 107, 138, 212, 192, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 255, 191, 255, 191, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 255, 191, 255, 191, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 255, 191, 255, 191, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 255, 191, 255, 191, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 158, 243, 188, 192, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 94, 243, 187, 192, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 206, 112, 174, 101, 223, 236, 255, 191, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 206, 112, 174, 101, 223, 236, 255, 191, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 255, 127, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 255, 127, 255, 191, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 255, 127, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 255, 127, 255, 191, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 242, 58, 90, 191, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 0, 0, 255, 191, 255, 63, 255, 191, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 214, 58, 82, 191, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 0, 0, 255, 191, 255, 63, 255, 191, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 0, 0, 255, 191, 255, 63, 255, 191, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 0, 0, 255, 191, 255, 63, 255, 191, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 0, 0, 255, 191, 255, 63, 255, 191, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 0, 0, 255, 191, 255, 63, 255, 191, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 0, 0, 255, 191, 255, 63, 255, 191, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 0, 0, 255, 191, 255, 63, 255, 191, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 0, 0, 255, 191, 255, 63, 255, 191, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 0, 0, 255, 191, 255, 63, 255, 191, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 0, 0, 255, 191, 255, 63, 255, 191, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 0, 0, 255, 191, 255, 63, 255, 191, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 255, 223, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 255, 223, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 255, 223, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 255, 223, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 63, 20, 62, 148, 255, 127, 255, 191, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 255, 127, 255, 191, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 63, 20, 62, 148, 255, 127, 255, 191, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 255, 127, 255, 191, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 255, 255, 255, 255, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 255, 255, 255, 255, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 255, 255, 255, 255, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 255, 255, 255, 255, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 255, 255, 255, 255, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 255, 255, 255, 255, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 255, 255, 255, 255, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 255, 255, 255, 255, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 255, 159, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 255, 159, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 41, 252, 233, 193, 0, 0, 255, 223, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 41, 252, 233, 193, 0, 0, 255, 223, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 255, 255, 255, 191, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 255, 255, 255, 191, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 255, 255, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 255, 255, 255, 191, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 255, 191, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 255, 255, 255, 191, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 255, 255, 255, 191, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 255, 127, 255, 127, 255, 255, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 255, 127, 255, 127, 255, 255, 255, 191, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 255, 127, 255, 127, 255, 255, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 255, 127, 255, 127, 254, 255, 255, 191, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 232, 243, 42, 191, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 152, 243, 31, 191, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 255, 191, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 22, 12, 212, 192, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 102, 12, 222, 192, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 255, 159, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 255, 159, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 255, 159, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 255, 159, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 255, 255, 255, 191, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 255, 255, 255, 191, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 255, 255, 255, 191, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 255, 255, 255, 191, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 255, 255, 255, 255, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 30, 187, 31, 59, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 30, 187, 31, 59, 255, 255, 255, 255, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 255, 255, 255, 191, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 255, 255, 255, 191, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 255, 255, 255, 191, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 255, 255, 255, 191, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 255, 255, 255, 191, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 255, 255, 255, 191, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 255, 191, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 251, 240, 128, 199, 0, 0, 255, 159, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 251, 240, 128, 199, 0, 0, 255, 223, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 255, 159, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 255, 223, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 255, 191, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 255, 191, 255, 191, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 255, 191, 255, 191, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 255, 191, 255, 191, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 255, 191, 255, 191, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 135, 254, 106, 250, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 125, 214, 174, 101, 254, 255, 111, 246, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 132, 254, 140, 250, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 125, 214, 174, 101, 254, 255, 143, 137, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 255, 127, 255, 191, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 90, 5, 90, 133, 255, 127, 255, 191, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 255, 127, 255, 191, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 90, 5, 90, 133, 255, 127, 255, 191, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 152, 58, 146, 192, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 111, 58, 145, 192, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 169, 22, 106, 43, 193, 52, 255, 191, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 169, 22, 106, 43, 193, 52, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 255, 127, 255, 191, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 255, 127, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 255, 127, 255, 191, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 255, 127, 255, 191, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 255, 191, 255, 191, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 255, 191, 255, 191, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 255, 191, 255, 191, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 255, 191, 255, 191, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 255, 159, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 255, 159, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 255, 159, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 255, 223, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 181, 254, 42, 227, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 164, 254, 64, 227, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 255, 191, 255, 127, 255, 255, 255, 223, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 255, 191, 255, 127, 255, 255, 255, 159, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 255, 191, 255, 127, 254, 255, 255, 159, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 255, 191, 255, 127, 254, 255, 255, 159, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 255, 191, 255, 127, 254, 255, 255, 223, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 255, 191, 255, 127, 254, 255, 255, 223, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 255, 191, 255, 127, 255, 255, 255, 223, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 191, 255, 127, 255, 255, 255, 223, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 191, 255, 127, 255, 255, 255, 159, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 255, 191, 255, 127, 255, 255, 255, 223, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 255, 191, 255, 127, 254, 255, 255, 223, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 255, 191, 255, 127, 254, 255, 255, 159, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 40, 139, 67, 191, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 229, 138, 65, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 129, 41, 174, 101, 31, 147, 255, 191, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 129, 41, 174, 101, 31, 147, 255, 191, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 255, 255, 255, 191, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 255, 255, 255, 191, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 255, 255, 255, 191, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 255, 255, 255, 191, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 96, 12, 65, 191, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 80, 26, 49, 15, 31, 19, 255, 191, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 160, 12, 67, 191, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 80, 26, 49, 15, 31, 19, 255, 191, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 255, 191, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 255, 191, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 255, 127, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 255, 127, 255, 191, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 255, 127, 255, 191, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 255, 127, 255, 191, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 255, 159, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 255, 159, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 255, 223, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 255, 223, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 255, 191, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 255, 191, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 255, 191, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 255, 191, 255, 191, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 255, 191, 255, 191, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 255, 191, 255, 191, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 255, 191, 255, 191, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 255, 255, 255, 191, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 255, 255, 255, 191, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 255, 255, 255, 191, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 255, 255, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 232, 92, 46, 70, 255, 191, 255, 191, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 232, 92, 46, 70, 255, 191, 255, 191, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 255, 191, 255, 191, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 255, 191, 255, 191, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 255, 255, 255, 191, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 255, 255, 255, 191, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 255, 255, 255, 191, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 255, 255, 255, 191, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 59, 99, 118, 198, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 59, 99, 118, 198, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 59, 99, 118, 198, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 59, 99, 118, 198, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 59, 99, 118, 198, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 59, 99, 118, 198, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 136, 185, 196, 28, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 136, 185, 196, 28, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 136, 185, 196, 28, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 136, 185, 196, 28, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 136, 185, 196, 28, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 136, 185, 196, 28, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 136, 185, 196, 28, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"attribute_data": PackedByteArray(131, 125, 37, 61, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 211, 54, 164, 63, 104, 75, 28, 63, 211, 54, 164, 63, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 131, 125, 37, 61, 104, 75, 28, 63, 20, 107, 82, 64, 30, 57, 220, 63, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 171, 81, 47, 64, 20, 107, 82, 64, 171, 81, 47, 64, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 30, 57, 220, 63, 148, 174, 152, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 148, 174, 152, 192, 238, 16, 95, 192, 118, 121, 176, 63, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 129, 60, 184, 62, 30, 57, 220, 63, 129, 60, 184, 62, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 118, 121, 176, 63, 30, 57, 220, 63, 20, 107, 82, 64, 244, 139, 154, 191, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 244, 139, 154, 191, 39, 46, 70, 190, 18, 38, 0, 191, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 148, 211, 139, 63, 39, 46, 70, 190, 148, 211, 139, 63, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 230, 105, 75, 192, 18, 38, 0, 191, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 74, 106, 18, 192, 154, 204, 133, 64, 167, 239, 97, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 167, 239, 97, 192, 197, 19, 60, 64, 74, 106, 18, 192, 154, 204, 133, 64, 118, 121, 176, 63, 244, 139, 154, 191, 118, 121, 176, 63, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 118, 121, 176, 63, 88, 13, 65, 190, 118, 121, 176, 63, 244, 139, 154, 191, 39, 46, 70, 190, 56, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 226, 32, 179, 63, 126, 17, 95, 192, 226, 32, 179, 63, 126, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 39, 46, 70, 190, 56, 17, 95, 192, 222, 105, 18, 192, 191, 74, 28, 63, 110, 239, 97, 192, 112, 74, 28, 63, 224, 105, 18, 192, 28, 203, 33, 191, 224, 105, 18, 192, 28, 203, 33, 191, 110, 239, 97, 192, 112, 74, 28, 63, 222, 105, 18, 192, 191, 74, 28, 63, 175, 158, 37, 61, 88, 204, 133, 64, 6, 148, 37, 61, 12, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 6, 148, 37, 61, 12, 19, 60, 64, 175, 158, 37, 61, 88, 204, 133, 64, 96, 147, 43, 192, 34, 174, 104, 63, 96, 147, 43, 192, 204, 239, 200, 191, 96, 229, 48, 191, 34, 174, 104, 63, 96, 229, 48, 191, 204, 239, 200, 191, 96, 147, 43, 192, 215, 215, 221, 192, 96, 147, 43, 192, 197, 148, 22, 193, 96, 229, 48, 191, 215, 215, 221, 192, 96, 229, 48, 191, 197, 148, 22, 193, 105, 53, 0, 64, 0, 0, 128, 63, 211, 241, 4, 64, 250, 222, 49, 191, 186, 169, 81, 64, 0, 0, 128, 63, 168, 29, 19, 64, 40, 28, 24, 192, 108, 157, 42, 64, 193, 13, 129, 192, 83, 67, 75, 64, 171, 211, 180, 192, 189, 22, 86, 64, 100, 121, 21, 191, 180, 207, 116, 64, 228, 250, 230, 192, 33, 85, 99, 64, 50, 247, 9, 192, 42, 75, 121, 64, 136, 6, 109, 192, 205, 120, 147, 64, 228, 144, 11, 193, 1, 231, 139, 64, 179, 229, 166, 192, 33, 81, 159, 64, 160, 196, 213, 192, 24, 190, 182, 64, 90, 98, 1, 193, 96, 147, 43, 64, 47, 214, 137, 192, 96, 147, 43, 64, 148, 217, 211, 191, 96, 229, 48, 63, 47, 214, 137, 192, 96, 229, 48, 63, 148, 217, 211, 191, 96, 147, 43, 192, 114, 152, 139, 192, 96, 147, 43, 192, 40, 234, 218, 192, 96, 229, 48, 191, 114, 152, 139, 192, 96, 229, 48, 191, 40, 234, 218, 192, 45, 247, 177, 190, 38, 148, 188, 192, 45, 247, 177, 190, 94, 107, 125, 192, 252, 40, 243, 191, 38, 148, 188, 192, 252, 40, 243, 191, 94, 107, 125, 192, 252, 40, 243, 63, 220, 189, 41, 193, 45, 247, 177, 62, 220, 189, 41, 193, 20, 41, 243, 63, 179, 215, 74, 193, 138, 247, 177, 62, 179, 215, 74, 193, 202, 247, 177, 190, 187, 184, 69, 63, 36, 41, 243, 191, 188, 184, 69, 63, 42, 248, 177, 190, 120, 157, 148, 191, 36, 41, 243, 191, 120, 157, 148, 191, 96, 147, 43, 192, 178, 237, 22, 193, 96, 147, 43, 192, 142, 150, 62, 193, 96, 229, 48, 191, 178, 237, 22, 193, 96, 229, 48, 191, 142, 150, 62, 193, 64, 37, 15, 193, 30, 126, 30, 193, 151, 190, 222, 192, 168, 239, 49, 193, 200, 18, 0, 193, 205, 193, 17, 193, 72, 200, 213, 192, 38, 184, 30, 193, 96, 147, 43, 64, 47, 177, 221, 192, 96, 147, 43, 64, 98, 209, 136, 192, 96, 229, 48, 63, 47, 177, 221, 192, 96, 229, 48, 63, 98, 209, 136, 192, 105, 53, 0, 192, 0, 0, 128, 63, 186, 169, 81, 192, 0, 0, 128, 63, 211, 241, 4, 192, 250, 222, 49, 191, 168, 29, 19, 192, 40, 28, 24, 192, 108, 157, 42, 192, 193, 13, 129, 192, 83, 67, 75, 192, 171, 211, 180, 192, 189, 22, 86, 192, 100, 121, 21, 191, 180, 207, 116, 192, 228, 250, 230, 192, 33, 85, 99, 192, 50, 247, 9, 192, 42, 75, 121, 192, 136, 6, 109, 192, 205, 120, 147, 192, 228, 144, 11, 193, 1, 231, 139, 192, 179, 229, 166, 192, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 45, 247, 177, 190, 247, 30, 39, 193, 45, 247, 177, 190, 189, 47, 8, 193, 252, 40, 243, 191, 247, 30, 39, 193, 252, 40, 243, 191, 189, 47, 8, 193, 249, 162, 200, 64, 111, 46, 81, 193, 187, 82, 146, 64, 187, 204, 97, 193, 112, 72, 239, 64, 87, 130, 97, 193, 35, 208, 157, 64, 206, 111, 122, 193, 96, 147, 43, 64, 252, 143, 102, 193, 96, 147, 43, 64, 24, 32, 60, 193, 96, 229, 48, 63, 252, 143, 102, 193, 96, 229, 48, 63, 24, 32, 60, 193, 228, 2, 3, 65, 63, 76, 33, 193, 100, 116, 233, 64, 204, 219, 5, 193, 113, 2, 219, 64, 239, 182, 45, 193, 66, 199, 209, 64, 200, 142, 210, 192, 222, 112, 188, 64, 141, 90, 16, 193, 139, 44, 191, 64, 97, 141, 151, 192, 127, 200, 177, 64, 176, 76, 54, 192, 71, 27, 163, 64, 122, 139, 227, 192, 44, 181, 169, 64, 24, 123, 110, 191, 76, 2, 167, 64, 250, 255, 127, 63, 0, 175, 106, 64, 250, 255, 127, 63, 7, 51, 143, 64, 45, 104, 164, 192, 221, 222, 128, 64, 122, 140, 71, 192, 136, 117, 112, 64, 56, 142, 136, 191, 25, 41, 243, 63, 84, 16, 197, 191, 158, 247, 177, 62, 86, 16, 197, 191, 27, 41, 243, 63, 130, 239, 102, 192, 3, 248, 177, 62, 130, 239, 102, 192, 230, 105, 75, 64, 164, 176, 129, 193, 96, 147, 43, 64, 233, 93, 107, 193, 39, 46, 70, 62, 164, 176, 129, 193, 96, 229, 48, 63, 233, 93, 107, 193, 96, 147, 43, 192, 157, 131, 61, 193, 96, 147, 43, 192, 123, 44, 101, 193, 96, 229, 48, 191, 157, 131, 61, 193, 96, 229, 48, 191, 123, 44, 101, 193, 96, 147, 43, 192, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 229, 48, 191, 35, 15, 135, 192, 45, 247, 177, 62, 20, 72, 157, 191, 252, 40, 243, 63, 20, 72, 157, 191, 45, 247, 177, 62, 77, 13, 87, 63, 252, 40, 243, 63, 77, 13, 87, 63, 126, 51, 217, 191, 244, 129, 22, 193, 16, 14, 62, 192, 244, 129, 22, 193, 118, 121, 176, 191, 206, 221, 37, 193, 20, 107, 82, 192, 206, 221, 37, 193, 16, 14, 62, 64, 25, 200, 1, 193, 126, 51, 217, 63, 25, 200, 1, 193, 16, 14, 62, 64, 221, 37, 27, 193, 126, 51, 217, 63, 221, 37, 27, 193, 46, 167, 5, 64, 0, 0, 128, 63, 178, 164, 201, 61, 0, 0, 128, 63, 166, 146, 12, 64, 142, 249, 188, 191, 141, 74, 91, 62, 120, 44, 211, 191, 116, 71, 33, 64, 202, 196, 123, 192, 255, 114, 15, 63, 5, 241, 136, 192, 104, 157, 67, 64, 198, 82, 203, 192, 134, 52, 145, 63, 201, 205, 219, 192, 124, 81, 115, 64, 85, 124, 11, 193, 50, 75, 247, 63, 251, 95, 22, 193, 103, 3, 152, 64, 89, 32, 48, 193, 75, 155, 60, 64, 232, 148, 61, 193, 145, 163, 188, 64, 13, 78, 83, 193, 109, 126, 133, 64, 76, 57, 99, 193, 178, 164, 201, 189, 0, 0, 128, 63, 46, 167, 5, 192, 0, 0, 128, 63, 141, 74, 91, 190, 120, 44, 211, 191, 166, 146, 12, 192, 142, 249, 188, 191, 116, 71, 33, 192, 202, 196, 123, 192, 255, 114, 15, 191, 5, 241, 136, 192, 104, 157, 67, 192, 198, 82, 203, 192, 134, 52, 145, 191, 201, 205, 219, 192, 124, 81, 115, 192, 85, 124, 11, 193, 50, 75, 247, 191, 251, 95, 22, 193, 103, 3, 152, 192, 89, 32, 48, 193, 75, 155, 60, 192, 232, 148, 61, 193, 145, 163, 188, 192, 13, 78, 83, 193, 109, 126, 133, 192, 76, 57, 99, 193, 20, 41, 243, 63, 158, 96, 198, 192, 138, 247, 177, 62, 158, 96, 198, 192, 252, 40, 243, 63, 39, 74, 4, 193, 45, 247, 177, 62, 39, 74, 4, 193, 126, 51, 217, 191, 141, 64, 147, 192, 16, 14, 62, 192, 141, 64, 147, 192, 126, 51, 217, 191, 171, 137, 201, 192, 16, 14, 62, 192, 171, 137, 201, 192, 96, 229, 48, 191, 215, 158, 75, 193, 96, 147, 43, 192, 215, 158, 75, 193, 39, 46, 70, 190, 47, 162, 99, 193, 230, 105, 75, 192, 47, 162, 99, 193, 16, 14, 62, 192, 68, 9, 28, 193, 126, 51, 217, 191, 68, 9, 28, 193, 16, 14, 62, 192, 182, 228, 0, 193, 126, 51, 217, 191, 182, 228, 0, 193, 16, 14, 62, 192, 225, 132, 203, 192, 126, 51, 217, 191, 225, 132, 203, 192, 16, 14, 62, 64, 163, 75, 205, 192, 126, 51, 217, 63, 163, 75, 205, 192, 16, 14, 62, 64, 151, 3, 0, 193, 126, 51, 217, 63, 151, 3, 0, 193, 208, 164, 37, 189, 157, 103, 81, 193, 210, 105, 18, 64, 157, 103, 81, 193, 204, 246, 177, 62, 172, 172, 62, 193, 228, 40, 243, 63, 172, 172, 62, 193, 16, 14, 62, 64, 46, 107, 91, 63, 126, 51, 217, 63, 46, 107, 91, 63, 16, 14, 62, 64, 24, 113, 58, 191, 126, 51, 217, 63, 24, 113, 58, 191, 45, 247, 177, 190, 222, 52, 3, 193, 45, 247, 177, 190, 71, 139, 200, 192, 252, 40, 243, 191, 222, 52, 3, 193, 252, 40, 243, 191, 71, 139, 200, 192, 123, 218, 135, 64, 172, 92, 243, 192, 207, 51, 143, 64, 84, 112, 9, 193, 156, 151, 170, 64, 143, 26, 222, 192, 133, 79, 195, 64, 134, 253, 242, 192, 16, 14, 62, 64, 204, 97, 54, 192, 126, 51, 217, 63, 204, 97, 54, 192, 16, 14, 62, 64, 108, 236, 141, 192, 126, 51, 217, 63, 108, 236, 141, 192, 96, 147, 43, 64, 234, 11, 212, 191, 96, 147, 43, 64, 139, 230, 126, 63, 96, 229, 48, 63, 234, 11, 212, 191, 96, 229, 48, 63, 139, 230, 126, 63, 89, 75, 6, 65, 66, 236, 27, 193, 107, 57, 226, 64, 156, 226, 40, 193, 206, 93, 21, 65, 148, 168, 40, 193, 179, 47, 235, 64, 29, 26, 60, 193, 96, 147, 43, 64, 77, 248, 23, 193, 96, 147, 43, 64, 204, 16, 219, 192, 96, 229, 48, 63, 77, 248, 23, 193, 96, 229, 48, 63, 204, 16, 219, 192, 42, 248, 177, 190, 2, 187, 205, 191, 36, 41, 243, 191, 4, 187, 205, 191, 212, 247, 177, 190, 110, 154, 98, 192, 38, 41, 243, 191, 108, 154, 98, 192, 252, 40, 243, 63, 104, 26, 7, 193, 45, 247, 177, 62, 104, 26, 7, 193, 252, 40, 243, 63, 64, 52, 40, 193, 45, 247, 177, 62, 64, 52, 40, 193, 228, 2, 3, 193, 62, 76, 33, 193, 115, 2, 219, 192, 239, 182, 45, 193, 101, 116, 233, 192, 204, 219, 5, 193, 68, 199, 209, 192, 200, 142, 210, 192, 223, 112, 188, 192, 140, 90, 16, 193, 140, 44, 191, 192, 96, 141, 151, 192, 128, 200, 177, 192, 175, 76, 54, 192, 72, 27, 163, 192, 122, 139, 227, 192, 39, 181, 169, 192, 18, 123, 110, 191, 78, 2, 167, 192, 255, 255, 127, 63, 2, 175, 106, 192, 255, 255, 127, 63, 8, 51, 143, 192, 45, 104, 164, 192, 216, 222, 128, 192, 122, 140, 71, 192, 138, 117, 112, 192, 52, 142, 136, 191, 84, 176, 161, 192, 78, 202, 14, 193, 117, 109, 196, 192, 64, 41, 4, 193, 168, 9, 169, 192, 77, 140, 30, 193, 94, 37, 221, 192, 187, 154, 14, 193, 126, 51, 217, 191, 42, 161, 105, 63, 16, 14, 62, 192, 42, 161, 105, 63, 126, 51, 217, 191, 164, 167, 72, 191, 16, 14, 62, 192, 164, 167, 72, 191, 242, 247, 181, 192, 177, 237, 65, 193, 103, 157, 220, 192, 152, 65, 82, 193, 102, 79, 127, 192, 252, 139, 82, 193, 24, 37, 139, 192, 14, 47, 107, 193, 16, 14, 62, 64, 248, 227, 128, 191, 126, 51, 217, 63, 248, 227, 128, 191, 16, 14, 62, 64, 12, 233, 37, 192, 126, 51, 217, 63, 12, 233, 37, 192, 20, 107, 82, 64, 100, 98, 35, 193, 16, 14, 62, 64, 132, 6, 20, 193, 118, 121, 176, 63, 100, 98, 35, 193, 126, 51, 217, 63, 132, 6, 20, 193, 96, 147, 43, 64, 20, 250, 63, 193, 96, 147, 43, 64, 49, 138, 21, 193, 96, 229, 48, 63, 20, 250, 63, 193, 96, 229, 48, 63, 49, 138, 21, 193, 27, 41, 243, 63, 88, 22, 121, 192, 3, 248, 177, 62, 86, 22, 121, 192, 54, 41, 243, 63, 215, 190, 190, 192, 17, 248, 177, 62, 216, 190, 190, 192, 16, 14, 62, 64, 80, 7, 149, 192, 126, 51, 217, 63, 80, 7, 149, 192, 16, 14, 62, 64, 217, 194, 199, 192, 126, 51, 217, 63, 217, 194, 199, 192, 45, 247, 177, 190, 102, 194, 73, 193, 45, 247, 177, 190, 42, 211, 42, 193, 252, 40, 243, 191, 102, 194, 73, 193, 252, 40, 243, 191, 42, 211, 42, 193, 126, 51, 217, 191, 59, 212, 50, 192, 16, 14, 62, 192, 59, 212, 50, 192, 126, 51, 217, 191, 54, 179, 143, 192, 16, 14, 62, 192, 54, 179, 143, 192, 203, 105, 18, 192, 219, 158, 89, 193, 144, 166, 37, 61, 220, 158, 89, 193, 196, 40, 243, 191, 238, 227, 70, 193, 73, 246, 177, 190, 237, 227, 70, 193, 126, 51, 217, 191, 206, 145, 115, 191, 16, 14, 62, 192, 206, 145, 115, 191, 126, 51, 217, 191, 164, 118, 41, 192, 16, 14, 62, 192, 164, 118, 41, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 118, 121, 176, 63, 252, 81, 47, 64, 118, 121, 176, 63, 17, 135, 112, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 118, 121, 176, 63, 17, 135, 112, 64, 118, 121, 176, 63, 252, 81, 47, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 230, 105, 75, 192, 225, 123, 213, 192, 39, 46, 70, 190, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 39, 46, 70, 190, 225, 123, 213, 192, 230, 105, 75, 192, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 189, 160, 37, 61, 110, 240, 239, 191, 226, 105, 18, 192, 82, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63, 226, 105, 18, 192, 82, 240, 239, 191, 189, 160, 37, 61, 110, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63), +"format": 4119, +"index_count": 18, +"index_data": PackedByteArray(92, 1, 90, 1, 91, 1, 95, 1, 93, 1, 94, 1, 98, 1, 96, 1, 97, 1, 101, 1, 99, 1, 100, 1, 104, 1, 102, 1, 103, 1, 107, 1, 105, 1, 106, 1), +"material": SubResource("StandardMaterial3D_ru6xr"), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 422, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 59, 99, 118, 198, 0, 0, 0, 128, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 59, 99, 118, 198, 0, 0, 0, 128, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 59, 99, 118, 198, 0, 0, 0, 128, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 136, 185, 196, 28, 0, 0, 0, 128, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 136, 185, 196, 28, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 59, 99, 118, 198, 0, 0, 0, 128, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 59, 99, 118, 198, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 59, 99, 118, 198, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 136, 185, 196, 28, 0, 0, 0, 128, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 136, 185, 196, 28, 0, 0, 0, 128, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 136, 185, 196, 28, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 59, 99, 118, 198, 0, 0, 0, 128, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 59, 99, 118, 198, 0, 0, 0, 128, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 59, 99, 118, 198, 0, 0, 0, 128, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 136, 185, 196, 28, 0, 0, 0, 128, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 136, 185, 196, 28, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 59, 99, 118, 198, 0, 0, 0, 128, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 59, 99, 118, 198, 0, 0, 0, 128, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 136, 185, 196, 28, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 234, 65, 42, 124, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 234, 65, 42, 124, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 234, 189, 85, 105, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 234, 189, 85, 105, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 0, 0, 255, 191, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 0, 0, 255, 191, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 0, 0, 255, 191, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 0, 0, 255, 191, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 0, 0, 255, 191, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 0, 0, 255, 191, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 0, 0, 255, 191, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 0, 0, 255, 191, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 41, 252, 233, 193, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 41, 252, 233, 193, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 30, 187, 31, 59, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 30, 187, 31, 59, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 251, 240, 128, 199, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 251, 240, 128, 199, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 125, 214, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 125, 214, 174, 101, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 90, 5, 90, 133, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 90, 5, 90, 133, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 169, 22, 106, 43, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 169, 22, 106, 43, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 255, 191, 255, 127, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 255, 191, 255, 127, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 255, 191, 255, 127, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 255, 191, 255, 127, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 255, 191, 255, 127, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 255, 191, 255, 127, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 255, 191, 255, 127, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 191, 255, 127, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 191, 255, 127, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 255, 191, 255, 127, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 255, 191, 255, 127, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 255, 191, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 129, 41, 174, 101, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 129, 41, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 232, 92, 46, 70, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 232, 92, 46, 70, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 223, 167, 255, 191, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 223, 167, 255, 191, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 223, 167, 255, 191, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 14, 236, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 14, 236, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 14, 236, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 255, 191, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 255, 191, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 255, 191, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 255, 255, 255, 191, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 255, 255, 255, 191, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 255, 255, 255, 191, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 238, 164, 255, 191, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 238, 164, 255, 191, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 238, 164, 255, 191, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 135, 237, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 135, 237, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 135, 237, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 59, 99, 118, 198, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 59, 99, 118, 198, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 59, 99, 118, 198, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 59, 99, 118, 198, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 59, 99, 118, 198, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 59, 99, 118, 198, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 136, 185, 196, 28, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 136, 185, 196, 28, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 136, 185, 196, 28, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 136, 185, 196, 28, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 136, 185, 196, 28, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 136, 185, 196, 28, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 136, 185, 196, 28, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"attribute_data": PackedByteArray(131, 125, 37, 61, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 211, 54, 164, 63, 104, 75, 28, 63, 211, 54, 164, 63, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 131, 125, 37, 61, 104, 75, 28, 63, 20, 107, 82, 64, 30, 57, 220, 63, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 171, 81, 47, 64, 20, 107, 82, 64, 171, 81, 47, 64, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 30, 57, 220, 63, 148, 174, 152, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 148, 174, 152, 192, 238, 16, 95, 192, 118, 121, 176, 63, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 129, 60, 184, 62, 30, 57, 220, 63, 129, 60, 184, 62, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 118, 121, 176, 63, 30, 57, 220, 63, 20, 107, 82, 64, 244, 139, 154, 191, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 244, 139, 154, 191, 39, 46, 70, 190, 18, 38, 0, 191, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 148, 211, 139, 63, 39, 46, 70, 190, 148, 211, 139, 63, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 230, 105, 75, 192, 18, 38, 0, 191, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 74, 106, 18, 192, 154, 204, 133, 64, 167, 239, 97, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 167, 239, 97, 192, 197, 19, 60, 64, 74, 106, 18, 192, 154, 204, 133, 64, 118, 121, 176, 63, 244, 139, 154, 191, 118, 121, 176, 63, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 118, 121, 176, 63, 88, 13, 65, 190, 118, 121, 176, 63, 244, 139, 154, 191, 39, 46, 70, 190, 56, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 226, 32, 179, 63, 126, 17, 95, 192, 226, 32, 179, 63, 126, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 39, 46, 70, 190, 56, 17, 95, 192, 222, 105, 18, 192, 191, 74, 28, 63, 110, 239, 97, 192, 112, 74, 28, 63, 224, 105, 18, 192, 28, 203, 33, 191, 224, 105, 18, 192, 28, 203, 33, 191, 110, 239, 97, 192, 112, 74, 28, 63, 222, 105, 18, 192, 191, 74, 28, 63, 175, 158, 37, 61, 88, 204, 133, 64, 6, 148, 37, 61, 12, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 6, 148, 37, 61, 12, 19, 60, 64, 175, 158, 37, 61, 88, 204, 133, 64, 96, 147, 43, 192, 34, 174, 104, 63, 96, 147, 43, 192, 204, 239, 200, 191, 96, 229, 48, 191, 34, 174, 104, 63, 96, 229, 48, 191, 204, 239, 200, 191, 96, 147, 43, 192, 215, 215, 221, 192, 96, 147, 43, 192, 197, 148, 22, 193, 96, 229, 48, 191, 215, 215, 221, 192, 96, 229, 48, 191, 197, 148, 22, 193, 105, 53, 0, 64, 0, 0, 128, 63, 211, 241, 4, 64, 250, 222, 49, 191, 186, 169, 81, 64, 0, 0, 128, 63, 168, 29, 19, 64, 40, 28, 24, 192, 108, 157, 42, 64, 193, 13, 129, 192, 83, 67, 75, 64, 171, 211, 180, 192, 189, 22, 86, 64, 100, 121, 21, 191, 180, 207, 116, 64, 228, 250, 230, 192, 33, 85, 99, 64, 50, 247, 9, 192, 42, 75, 121, 64, 136, 6, 109, 192, 205, 120, 147, 64, 228, 144, 11, 193, 1, 231, 139, 64, 179, 229, 166, 192, 33, 81, 159, 64, 160, 196, 213, 192, 24, 190, 182, 64, 90, 98, 1, 193, 96, 147, 43, 64, 47, 214, 137, 192, 96, 147, 43, 64, 148, 217, 211, 191, 96, 229, 48, 63, 47, 214, 137, 192, 96, 229, 48, 63, 148, 217, 211, 191, 96, 147, 43, 192, 114, 152, 139, 192, 96, 147, 43, 192, 40, 234, 218, 192, 96, 229, 48, 191, 114, 152, 139, 192, 96, 229, 48, 191, 40, 234, 218, 192, 45, 247, 177, 190, 38, 148, 188, 192, 45, 247, 177, 190, 94, 107, 125, 192, 252, 40, 243, 191, 38, 148, 188, 192, 252, 40, 243, 191, 94, 107, 125, 192, 252, 40, 243, 63, 220, 189, 41, 193, 45, 247, 177, 62, 220, 189, 41, 193, 20, 41, 243, 63, 179, 215, 74, 193, 138, 247, 177, 62, 179, 215, 74, 193, 202, 247, 177, 190, 187, 184, 69, 63, 36, 41, 243, 191, 188, 184, 69, 63, 42, 248, 177, 190, 120, 157, 148, 191, 36, 41, 243, 191, 120, 157, 148, 191, 96, 147, 43, 192, 178, 237, 22, 193, 96, 147, 43, 192, 142, 150, 62, 193, 96, 229, 48, 191, 178, 237, 22, 193, 96, 229, 48, 191, 142, 150, 62, 193, 64, 37, 15, 193, 30, 126, 30, 193, 151, 190, 222, 192, 168, 239, 49, 193, 200, 18, 0, 193, 205, 193, 17, 193, 72, 200, 213, 192, 38, 184, 30, 193, 96, 147, 43, 64, 47, 177, 221, 192, 96, 147, 43, 64, 98, 209, 136, 192, 96, 229, 48, 63, 47, 177, 221, 192, 96, 229, 48, 63, 98, 209, 136, 192, 105, 53, 0, 192, 0, 0, 128, 63, 186, 169, 81, 192, 0, 0, 128, 63, 211, 241, 4, 192, 250, 222, 49, 191, 168, 29, 19, 192, 40, 28, 24, 192, 108, 157, 42, 192, 193, 13, 129, 192, 83, 67, 75, 192, 171, 211, 180, 192, 189, 22, 86, 192, 100, 121, 21, 191, 180, 207, 116, 192, 228, 250, 230, 192, 33, 85, 99, 192, 50, 247, 9, 192, 42, 75, 121, 192, 136, 6, 109, 192, 205, 120, 147, 192, 228, 144, 11, 193, 1, 231, 139, 192, 179, 229, 166, 192, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 45, 247, 177, 190, 247, 30, 39, 193, 45, 247, 177, 190, 189, 47, 8, 193, 252, 40, 243, 191, 247, 30, 39, 193, 252, 40, 243, 191, 189, 47, 8, 193, 249, 162, 200, 64, 111, 46, 81, 193, 187, 82, 146, 64, 187, 204, 97, 193, 112, 72, 239, 64, 87, 130, 97, 193, 35, 208, 157, 64, 206, 111, 122, 193, 96, 147, 43, 64, 252, 143, 102, 193, 96, 147, 43, 64, 24, 32, 60, 193, 96, 229, 48, 63, 252, 143, 102, 193, 96, 229, 48, 63, 24, 32, 60, 193, 228, 2, 3, 65, 63, 76, 33, 193, 100, 116, 233, 64, 204, 219, 5, 193, 113, 2, 219, 64, 239, 182, 45, 193, 66, 199, 209, 64, 200, 142, 210, 192, 222, 112, 188, 64, 141, 90, 16, 193, 139, 44, 191, 64, 97, 141, 151, 192, 127, 200, 177, 64, 176, 76, 54, 192, 71, 27, 163, 64, 122, 139, 227, 192, 44, 181, 169, 64, 24, 123, 110, 191, 76, 2, 167, 64, 250, 255, 127, 63, 0, 175, 106, 64, 250, 255, 127, 63, 7, 51, 143, 64, 45, 104, 164, 192, 221, 222, 128, 64, 122, 140, 71, 192, 136, 117, 112, 64, 56, 142, 136, 191, 25, 41, 243, 63, 84, 16, 197, 191, 158, 247, 177, 62, 86, 16, 197, 191, 27, 41, 243, 63, 130, 239, 102, 192, 3, 248, 177, 62, 130, 239, 102, 192, 230, 105, 75, 64, 164, 176, 129, 193, 96, 147, 43, 64, 233, 93, 107, 193, 39, 46, 70, 62, 164, 176, 129, 193, 96, 229, 48, 63, 233, 93, 107, 193, 96, 147, 43, 192, 157, 131, 61, 193, 96, 147, 43, 192, 123, 44, 101, 193, 96, 229, 48, 191, 157, 131, 61, 193, 96, 229, 48, 191, 123, 44, 101, 193, 96, 147, 43, 192, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 229, 48, 191, 35, 15, 135, 192, 45, 247, 177, 62, 20, 72, 157, 191, 252, 40, 243, 63, 20, 72, 157, 191, 45, 247, 177, 62, 77, 13, 87, 63, 252, 40, 243, 63, 77, 13, 87, 63, 126, 51, 217, 191, 244, 129, 22, 193, 16, 14, 62, 192, 244, 129, 22, 193, 118, 121, 176, 191, 206, 221, 37, 193, 20, 107, 82, 192, 206, 221, 37, 193, 16, 14, 62, 64, 25, 200, 1, 193, 126, 51, 217, 63, 25, 200, 1, 193, 16, 14, 62, 64, 221, 37, 27, 193, 126, 51, 217, 63, 221, 37, 27, 193, 46, 167, 5, 64, 0, 0, 128, 63, 178, 164, 201, 61, 0, 0, 128, 63, 166, 146, 12, 64, 142, 249, 188, 191, 141, 74, 91, 62, 120, 44, 211, 191, 116, 71, 33, 64, 202, 196, 123, 192, 255, 114, 15, 63, 5, 241, 136, 192, 104, 157, 67, 64, 198, 82, 203, 192, 134, 52, 145, 63, 201, 205, 219, 192, 124, 81, 115, 64, 85, 124, 11, 193, 50, 75, 247, 63, 251, 95, 22, 193, 103, 3, 152, 64, 89, 32, 48, 193, 75, 155, 60, 64, 232, 148, 61, 193, 145, 163, 188, 64, 13, 78, 83, 193, 109, 126, 133, 64, 76, 57, 99, 193, 178, 164, 201, 189, 0, 0, 128, 63, 46, 167, 5, 192, 0, 0, 128, 63, 141, 74, 91, 190, 120, 44, 211, 191, 166, 146, 12, 192, 142, 249, 188, 191, 116, 71, 33, 192, 202, 196, 123, 192, 255, 114, 15, 191, 5, 241, 136, 192, 104, 157, 67, 192, 198, 82, 203, 192, 134, 52, 145, 191, 201, 205, 219, 192, 124, 81, 115, 192, 85, 124, 11, 193, 50, 75, 247, 191, 251, 95, 22, 193, 103, 3, 152, 192, 89, 32, 48, 193, 75, 155, 60, 192, 232, 148, 61, 193, 145, 163, 188, 192, 13, 78, 83, 193, 109, 126, 133, 192, 76, 57, 99, 193, 20, 41, 243, 63, 158, 96, 198, 192, 138, 247, 177, 62, 158, 96, 198, 192, 252, 40, 243, 63, 39, 74, 4, 193, 45, 247, 177, 62, 39, 74, 4, 193, 126, 51, 217, 191, 141, 64, 147, 192, 16, 14, 62, 192, 141, 64, 147, 192, 126, 51, 217, 191, 171, 137, 201, 192, 16, 14, 62, 192, 171, 137, 201, 192, 96, 229, 48, 191, 215, 158, 75, 193, 96, 147, 43, 192, 215, 158, 75, 193, 39, 46, 70, 190, 47, 162, 99, 193, 230, 105, 75, 192, 47, 162, 99, 193, 16, 14, 62, 192, 68, 9, 28, 193, 126, 51, 217, 191, 68, 9, 28, 193, 16, 14, 62, 192, 182, 228, 0, 193, 126, 51, 217, 191, 182, 228, 0, 193, 16, 14, 62, 192, 225, 132, 203, 192, 126, 51, 217, 191, 225, 132, 203, 192, 16, 14, 62, 64, 163, 75, 205, 192, 126, 51, 217, 63, 163, 75, 205, 192, 16, 14, 62, 64, 151, 3, 0, 193, 126, 51, 217, 63, 151, 3, 0, 193, 208, 164, 37, 189, 157, 103, 81, 193, 210, 105, 18, 64, 157, 103, 81, 193, 204, 246, 177, 62, 172, 172, 62, 193, 228, 40, 243, 63, 172, 172, 62, 193, 16, 14, 62, 64, 46, 107, 91, 63, 126, 51, 217, 63, 46, 107, 91, 63, 16, 14, 62, 64, 24, 113, 58, 191, 126, 51, 217, 63, 24, 113, 58, 191, 45, 247, 177, 190, 222, 52, 3, 193, 45, 247, 177, 190, 71, 139, 200, 192, 252, 40, 243, 191, 222, 52, 3, 193, 252, 40, 243, 191, 71, 139, 200, 192, 123, 218, 135, 64, 172, 92, 243, 192, 207, 51, 143, 64, 84, 112, 9, 193, 156, 151, 170, 64, 143, 26, 222, 192, 133, 79, 195, 64, 134, 253, 242, 192, 16, 14, 62, 64, 204, 97, 54, 192, 126, 51, 217, 63, 204, 97, 54, 192, 16, 14, 62, 64, 108, 236, 141, 192, 126, 51, 217, 63, 108, 236, 141, 192, 96, 147, 43, 64, 234, 11, 212, 191, 96, 147, 43, 64, 139, 230, 126, 63, 96, 229, 48, 63, 234, 11, 212, 191, 96, 229, 48, 63, 139, 230, 126, 63, 89, 75, 6, 65, 66, 236, 27, 193, 107, 57, 226, 64, 156, 226, 40, 193, 206, 93, 21, 65, 148, 168, 40, 193, 179, 47, 235, 64, 29, 26, 60, 193, 96, 147, 43, 64, 77, 248, 23, 193, 96, 147, 43, 64, 204, 16, 219, 192, 96, 229, 48, 63, 77, 248, 23, 193, 96, 229, 48, 63, 204, 16, 219, 192, 42, 248, 177, 190, 2, 187, 205, 191, 36, 41, 243, 191, 4, 187, 205, 191, 212, 247, 177, 190, 110, 154, 98, 192, 38, 41, 243, 191, 108, 154, 98, 192, 252, 40, 243, 63, 104, 26, 7, 193, 45, 247, 177, 62, 104, 26, 7, 193, 252, 40, 243, 63, 64, 52, 40, 193, 45, 247, 177, 62, 64, 52, 40, 193, 228, 2, 3, 193, 62, 76, 33, 193, 115, 2, 219, 192, 239, 182, 45, 193, 101, 116, 233, 192, 204, 219, 5, 193, 68, 199, 209, 192, 200, 142, 210, 192, 223, 112, 188, 192, 140, 90, 16, 193, 140, 44, 191, 192, 96, 141, 151, 192, 128, 200, 177, 192, 175, 76, 54, 192, 72, 27, 163, 192, 122, 139, 227, 192, 39, 181, 169, 192, 18, 123, 110, 191, 78, 2, 167, 192, 255, 255, 127, 63, 2, 175, 106, 192, 255, 255, 127, 63, 8, 51, 143, 192, 45, 104, 164, 192, 216, 222, 128, 192, 122, 140, 71, 192, 138, 117, 112, 192, 52, 142, 136, 191, 84, 176, 161, 192, 78, 202, 14, 193, 117, 109, 196, 192, 64, 41, 4, 193, 168, 9, 169, 192, 77, 140, 30, 193, 94, 37, 221, 192, 187, 154, 14, 193, 126, 51, 217, 191, 42, 161, 105, 63, 16, 14, 62, 192, 42, 161, 105, 63, 126, 51, 217, 191, 164, 167, 72, 191, 16, 14, 62, 192, 164, 167, 72, 191, 242, 247, 181, 192, 177, 237, 65, 193, 103, 157, 220, 192, 152, 65, 82, 193, 102, 79, 127, 192, 252, 139, 82, 193, 24, 37, 139, 192, 14, 47, 107, 193, 16, 14, 62, 64, 248, 227, 128, 191, 126, 51, 217, 63, 248, 227, 128, 191, 16, 14, 62, 64, 12, 233, 37, 192, 126, 51, 217, 63, 12, 233, 37, 192, 20, 107, 82, 64, 100, 98, 35, 193, 16, 14, 62, 64, 132, 6, 20, 193, 118, 121, 176, 63, 100, 98, 35, 193, 126, 51, 217, 63, 132, 6, 20, 193, 96, 147, 43, 64, 20, 250, 63, 193, 96, 147, 43, 64, 49, 138, 21, 193, 96, 229, 48, 63, 20, 250, 63, 193, 96, 229, 48, 63, 49, 138, 21, 193, 27, 41, 243, 63, 88, 22, 121, 192, 3, 248, 177, 62, 86, 22, 121, 192, 54, 41, 243, 63, 215, 190, 190, 192, 17, 248, 177, 62, 216, 190, 190, 192, 16, 14, 62, 64, 80, 7, 149, 192, 126, 51, 217, 63, 80, 7, 149, 192, 16, 14, 62, 64, 217, 194, 199, 192, 126, 51, 217, 63, 217, 194, 199, 192, 45, 247, 177, 190, 102, 194, 73, 193, 45, 247, 177, 190, 42, 211, 42, 193, 252, 40, 243, 191, 102, 194, 73, 193, 252, 40, 243, 191, 42, 211, 42, 193, 126, 51, 217, 191, 59, 212, 50, 192, 16, 14, 62, 192, 59, 212, 50, 192, 126, 51, 217, 191, 54, 179, 143, 192, 16, 14, 62, 192, 54, 179, 143, 192, 203, 105, 18, 192, 219, 158, 89, 193, 144, 166, 37, 61, 220, 158, 89, 193, 196, 40, 243, 191, 238, 227, 70, 193, 73, 246, 177, 190, 237, 227, 70, 193, 126, 51, 217, 191, 206, 145, 115, 191, 16, 14, 62, 192, 206, 145, 115, 191, 126, 51, 217, 191, 164, 118, 41, 192, 16, 14, 62, 192, 164, 118, 41, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 118, 121, 176, 63, 252, 81, 47, 64, 118, 121, 176, 63, 17, 135, 112, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 118, 121, 176, 63, 17, 135, 112, 64, 118, 121, 176, 63, 252, 81, 47, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 230, 105, 75, 192, 225, 123, 213, 192, 39, 46, 70, 190, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 39, 46, 70, 190, 225, 123, 213, 192, 230, 105, 75, 192, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 189, 160, 37, 61, 110, 240, 239, 191, 226, 105, 18, 192, 82, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63, 226, 105, 18, 192, 82, 240, 239, 191, 189, 160, 37, 61, 110, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63), +"format": 4119, +"index_count": 288, +"index_data": PackedByteArray(109, 1, 108, 1, 18, 0, 110, 1, 109, 1, 18, 0, 8, 0, 110, 1, 18, 0, 18, 0, 6, 0, 8, 0, 7, 0, 6, 0, 26, 0, 7, 0, 26, 0, 25, 0, 111, 1, 7, 0, 25, 0, 25, 0, 112, 1, 111, 1, 24, 0, 26, 0, 113, 1, 113, 1, 114, 1, 24, 0, 26, 0, 49, 0, 113, 1, 49, 0, 115, 1, 113, 1, 50, 0, 49, 0, 18, 0, 18, 0, 20, 0, 50, 0, 20, 0, 116, 1, 50, 0, 20, 0, 117, 1, 116, 1, 119, 1, 118, 1, 23, 0, 118, 1, 120, 1, 23, 0, 120, 1, 9, 0, 23, 0, 11, 0, 23, 0, 9, 0, 11, 0, 10, 0, 27, 0, 27, 0, 10, 0, 28, 0, 10, 0, 121, 1, 28, 0, 122, 1, 28, 0, 121, 1, 27, 0, 29, 0, 123, 1, 124, 1, 123, 1, 29, 0, 52, 0, 27, 0, 123, 1, 125, 1, 52, 0, 123, 1, 52, 0, 51, 0, 23, 0, 21, 0, 23, 0, 51, 0, 126, 1, 21, 0, 51, 0, 127, 1, 21, 0, 126, 1, 13, 0, 128, 1, 129, 1, 129, 1, 55, 0, 13, 0, 55, 0, 14, 0, 13, 0, 55, 0, 54, 0, 14, 0, 30, 0, 54, 0, 56, 0, 56, 0, 130, 1, 30, 0, 130, 1, 131, 1, 30, 0, 131, 1, 132, 1, 30, 0, 12, 0, 14, 0, 133, 1, 133, 1, 134, 1, 12, 0, 14, 0, 37, 0, 133, 1, 37, 0, 135, 1, 133, 1, 38, 0, 37, 0, 30, 0, 30, 0, 32, 0, 38, 0, 32, 0, 136, 1, 38, 0, 32, 0, 137, 1, 136, 1, 139, 1, 16, 0, 138, 1, 58, 0, 138, 1, 16, 0, 15, 0, 58, 0, 16, 0, 59, 0, 58, 0, 15, 0, 59, 0, 35, 0, 57, 0, 140, 1, 57, 0, 35, 0, 141, 1, 140, 1, 35, 0, 142, 1, 141, 1, 35, 0, 15, 0, 17, 0, 143, 1, 144, 1, 143, 1, 17, 0, 40, 0, 15, 0, 143, 1, 145, 1, 40, 0, 143, 1, 40, 0, 39, 0, 35, 0, 33, 0, 35, 0, 39, 0, 146, 1, 33, 0, 39, 0, 147, 1, 33, 0, 146, 1, 149, 1, 148, 1, 1, 0, 149, 1, 1, 0, 0, 0, 62, 0, 149, 1, 0, 0, 0, 0, 60, 0, 62, 0, 61, 0, 60, 0, 44, 0, 150, 1, 61, 0, 44, 0, 150, 1, 44, 0, 43, 0, 43, 0, 151, 1, 150, 1, 42, 0, 44, 0, 152, 1, 152, 1, 153, 1, 42, 0, 44, 0, 67, 0, 152, 1, 67, 0, 154, 1, 152, 1, 68, 0, 67, 0, 0, 0, 0, 0, 155, 1, 68, 0, 0, 0, 2, 0, 155, 1, 2, 0, 156, 1, 155, 1, 158, 1, 157, 1, 4, 0, 4, 0, 157, 1, 5, 0, 157, 1, 63, 0, 5, 0, 65, 0, 5, 0, 63, 0, 65, 0, 64, 0, 45, 0, 64, 0, 159, 1, 45, 0, 45, 0, 159, 1, 46, 0, 160, 1, 46, 0, 159, 1, 45, 0, 47, 0, 161, 1, 162, 1, 161, 1, 47, 0, 70, 0, 45, 0, 161, 1, 163, 1, 70, 0, 161, 1, 70, 0, 69, 0, 5, 0, 164, 1, 5, 0, 69, 0, 3, 0, 5, 0, 164, 1, 165, 1, 3, 0, 164, 1), +"lods": [0.0320044, PackedByteArray(110, 1, 108, 1, 18, 0, 8, 0, 110, 1, 18, 0, 18, 0, 6, 0, 8, 0, 7, 0, 6, 0, 26, 0, 7, 0, 26, 0, 25, 0, 24, 0, 26, 0, 113, 1, 26, 0, 49, 0, 113, 1, 50, 0, 49, 0, 18, 0, 18, 0, 20, 0, 50, 0, 20, 0, 116, 1, 50, 0, 119, 1, 120, 1, 23, 0, 120, 1, 9, 0, 23, 0, 11, 0, 23, 0, 9, 0, 11, 0, 10, 0, 27, 0, 27, 0, 10, 0, 28, 0, 27, 0, 29, 0, 123, 1, 52, 0, 27, 0, 123, 1, 52, 0, 51, 0, 23, 0, 21, 0, 23, 0, 51, 0, 126, 1, 21, 0, 51, 0, 55, 0, 14, 0, 13, 0, 55, 0, 54, 0, 14, 0, 12, 0, 14, 0, 133, 1, 14, 0, 37, 0, 133, 1, 37, 0, 135, 1, 133, 1, 30, 0, 54, 0, 56, 0, 56, 0, 130, 1, 30, 0, 130, 1, 132, 1, 30, 0, 38, 0, 37, 0, 30, 0, 30, 0, 32, 0, 38, 0, 32, 0, 136, 1, 38, 0, 15, 0, 58, 0, 16, 0, 59, 0, 58, 0, 15, 0, 15, 0, 17, 0, 143, 1, 40, 0, 15, 0, 143, 1, 145, 1, 40, 0, 143, 1, 59, 0, 35, 0, 57, 0, 140, 1, 57, 0, 35, 0, 142, 1, 140, 1, 35, 0, 40, 0, 39, 0, 35, 0, 33, 0, 35, 0, 39, 0, 146, 1, 33, 0, 39, 0, 149, 1, 1, 0, 0, 0, 62, 0, 149, 1, 0, 0, 0, 0, 60, 0, 62, 0, 0, 0, 2, 0, 155, 1, 0, 0, 155, 1, 68, 0, 68, 0, 67, 0, 0, 0, 44, 0, 67, 0, 152, 1, 42, 0, 44, 0, 152, 1, 61, 0, 60, 0, 44, 0, 150, 1, 61, 0, 44, 0, 150, 1, 44, 0, 43, 0, 4, 0, 157, 1, 5, 0, 157, 1, 63, 0, 5, 0, 65, 0, 5, 0, 63, 0, 3, 0, 5, 0, 164, 1, 164, 1, 5, 0, 69, 0, 70, 0, 69, 0, 5, 0, 70, 0, 45, 0, 161, 1, 45, 0, 47, 0, 161, 1, 65, 0, 64, 0, 45, 0, 64, 0, 159, 1, 45, 0, 45, 0, 159, 1, 46, 0), 0.0362993, PackedByteArray(8, 0, 108, 1, 18, 0, 18, 0, 6, 0, 8, 0, 25, 0, 6, 0, 26, 0, 20, 0, 49, 0, 18, 0, 26, 0, 49, 0, 113, 1, 119, 1, 9, 0, 23, 0, 11, 0, 23, 0, 9, 0, 52, 0, 21, 0, 23, 0, 11, 0, 28, 0, 27, 0, 52, 0, 27, 0, 123, 1, 55, 0, 14, 0, 13, 0, 55, 0, 54, 0, 14, 0, 30, 0, 54, 0, 56, 0, 56, 0, 132, 1, 30, 0, 32, 0, 37, 0, 30, 0, 14, 0, 37, 0, 133, 1, 37, 0, 135, 1, 133, 1, 15, 0, 58, 0, 16, 0, 59, 0, 58, 0, 15, 0, 40, 0, 15, 0, 143, 1, 145, 1, 40, 0, 143, 1, 40, 0, 33, 0, 35, 0, 59, 0, 35, 0, 57, 0, 142, 1, 57, 0, 35, 0, 0, 0, 60, 0, 62, 0, 43, 0, 60, 0, 44, 0, 2, 0, 67, 0, 0, 0, 44, 0, 67, 0, 152, 1, 65, 0, 5, 0, 63, 0, 70, 0, 3, 0, 5, 0, 65, 0, 46, 0, 45, 0, 70, 0, 45, 0, 161, 1)], +"material": SubResource("StandardMaterial3D_3ttsi"), +"name": "heart", +"primitive": 3, +"vertex_count": 422, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 59, 99, 118, 198, 255, 191, 255, 191, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 59, 99, 118, 198, 255, 191, 255, 191, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 59, 99, 118, 198, 255, 191, 255, 191, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 136, 185, 196, 28, 255, 191, 255, 63, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 136, 185, 196, 28, 255, 191, 255, 63, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 136, 185, 196, 28, 255, 191, 255, 63, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 1, 0, 255, 191, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 255, 63, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 1, 0, 255, 63, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 254, 255, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 254, 255, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 0, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 37, 81, 217, 46, 254, 255, 254, 127, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 0, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 254, 191, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 64, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 255, 191, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 255, 63, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 59, 99, 118, 198, 255, 191, 255, 191, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 59, 99, 118, 198, 255, 191, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 59, 99, 118, 198, 254, 191, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 136, 185, 196, 28, 254, 191, 255, 63, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 136, 185, 196, 28, 255, 191, 255, 63, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 136, 185, 196, 28, 255, 191, 255, 63, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 37, 81, 217, 46, 254, 255, 254, 127, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 37, 81, 217, 46, 254, 255, 254, 127, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 37, 81, 217, 46, 254, 255, 254, 127, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 59, 99, 118, 198, 255, 191, 255, 191, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 59, 99, 118, 198, 255, 191, 255, 191, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 59, 99, 118, 198, 255, 191, 255, 191, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 136, 185, 196, 28, 255, 191, 255, 63, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 136, 185, 196, 28, 255, 191, 255, 63, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 136, 185, 196, 28, 255, 191, 255, 63, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 59, 99, 118, 198, 255, 191, 255, 191, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 59, 99, 118, 198, 255, 191, 255, 191, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 136, 185, 196, 28, 255, 191, 255, 63, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 136, 185, 196, 28, 255, 191, 255, 63, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 234, 65, 42, 124, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 234, 65, 42, 124, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 234, 189, 85, 105, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 234, 189, 85, 105, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 0, 0, 255, 191, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 0, 0, 255, 191, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 0, 0, 255, 191, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 0, 0, 255, 191, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 0, 0, 255, 191, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 0, 0, 255, 191, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 0, 0, 255, 191, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 0, 0, 255, 191, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 41, 252, 233, 193, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 41, 252, 233, 193, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 30, 187, 31, 59, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 30, 187, 31, 59, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 251, 240, 128, 199, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 251, 240, 128, 199, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 125, 214, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 125, 214, 174, 101, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 90, 5, 90, 133, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 90, 5, 90, 133, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 169, 22, 106, 43, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 169, 22, 106, 43, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 255, 191, 255, 127, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 255, 191, 255, 127, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 255, 191, 255, 127, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 255, 191, 255, 127, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 255, 191, 255, 127, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 255, 191, 255, 127, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 255, 191, 255, 127, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 191, 255, 127, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 191, 255, 127, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 255, 191, 255, 127, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 255, 191, 255, 127, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 255, 191, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 129, 41, 174, 101, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 129, 41, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 232, 92, 46, 70, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 232, 92, 46, 70, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 255, 255, 255, 191, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 255, 191, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 1, 0, 255, 191, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 255, 255, 255, 191, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 254, 191, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 253, 191, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 255, 255, 255, 63, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 255, 63, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 1, 0, 255, 63, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 255, 63, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 255, 63, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 255, 255, 255, 63, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 64, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 1, 64, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 217, 174, 37, 209, 254, 255, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 254, 255, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 255, 255, 255, 255, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 217, 174, 37, 209, 255, 255, 255, 255, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 37, 81, 217, 46, 254, 255, 254, 127, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 37, 81, 217, 46, 254, 255, 254, 127, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 0, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 255, 255, 255, 255, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 37, 81, 217, 46, 255, 255, 0, 0, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 37, 81, 217, 46, 255, 255, 0, 0, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 59, 99, 118, 198, 255, 191, 255, 191, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 59, 99, 118, 198, 255, 191, 255, 191, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 59, 99, 118, 198, 255, 191, 255, 191, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 59, 99, 118, 198, 255, 191, 255, 191, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 59, 99, 118, 198, 255, 191, 255, 191, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 59, 99, 118, 198, 255, 191, 255, 191, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 227, 218, 133, 21, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 59, 99, 118, 198, 255, 191, 255, 191, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 59, 99, 118, 198, 255, 191, 255, 191, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 136, 185, 196, 28, 255, 191, 255, 63, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 136, 185, 196, 28, 255, 191, 255, 63, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 136, 185, 196, 28, 255, 191, 255, 63, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 136, 185, 196, 28, 255, 191, 255, 63, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 136, 185, 196, 28, 255, 191, 255, 63, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 136, 185, 196, 28, 255, 191, 255, 63, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 227, 218, 123, 234, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 136, 185, 196, 28, 255, 191, 255, 63, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 136, 185, 196, 28, 255, 191, 255, 63) +}, { +"aabb": AABB(-0.248739, 0, -0.208377, 0.497478, 0.464044, 0.416754), +"attribute_data": PackedByteArray(131, 125, 37, 61, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 211, 54, 164, 63, 104, 75, 28, 63, 211, 54, 164, 63, 104, 75, 28, 63, 145, 130, 37, 61, 114, 202, 33, 191, 131, 125, 37, 61, 104, 75, 28, 63, 20, 107, 82, 64, 30, 57, 220, 63, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 171, 81, 47, 64, 20, 107, 82, 64, 171, 81, 47, 64, 23, 208, 137, 64, 30, 57, 220, 63, 20, 107, 82, 64, 30, 57, 220, 63, 148, 174, 152, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 238, 16, 95, 192, 230, 105, 75, 192, 23, 130, 162, 192, 148, 174, 152, 192, 238, 16, 95, 192, 118, 121, 176, 63, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 129, 60, 184, 62, 30, 57, 220, 63, 129, 60, 184, 62, 30, 57, 220, 63, 118, 121, 176, 63, 171, 81, 47, 64, 118, 121, 176, 63, 30, 57, 220, 63, 20, 107, 82, 64, 244, 139, 154, 191, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 20, 107, 82, 64, 128, 13, 65, 190, 23, 208, 137, 64, 128, 13, 65, 190, 20, 107, 82, 64, 244, 139, 154, 191, 39, 46, 70, 190, 18, 38, 0, 191, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 148, 211, 139, 63, 39, 46, 70, 190, 148, 211, 139, 63, 226, 32, 179, 63, 18, 38, 0, 191, 39, 46, 70, 190, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 230, 105, 75, 192, 18, 38, 0, 191, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 148, 211, 139, 63, 230, 105, 75, 192, 18, 38, 0, 191, 148, 174, 152, 192, 18, 38, 0, 191, 74, 106, 18, 192, 154, 204, 133, 64, 167, 239, 97, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 64, 106, 18, 192, 197, 19, 60, 64, 167, 239, 97, 192, 197, 19, 60, 64, 74, 106, 18, 192, 154, 204, 133, 64, 118, 121, 176, 63, 244, 139, 154, 191, 118, 121, 176, 63, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 129, 60, 184, 62, 88, 13, 65, 190, 118, 121, 176, 63, 88, 13, 65, 190, 118, 121, 176, 63, 244, 139, 154, 191, 39, 46, 70, 190, 56, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 226, 32, 179, 63, 126, 17, 95, 192, 226, 32, 179, 63, 126, 17, 95, 192, 39, 46, 70, 190, 61, 130, 162, 192, 39, 46, 70, 190, 56, 17, 95, 192, 222, 105, 18, 192, 191, 74, 28, 63, 110, 239, 97, 192, 112, 74, 28, 63, 224, 105, 18, 192, 28, 203, 33, 191, 224, 105, 18, 192, 28, 203, 33, 191, 110, 239, 97, 192, 112, 74, 28, 63, 222, 105, 18, 192, 191, 74, 28, 63, 175, 158, 37, 61, 88, 204, 133, 64, 6, 148, 37, 61, 12, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 135, 55, 164, 63, 17, 19, 60, 64, 6, 148, 37, 61, 12, 19, 60, 64, 175, 158, 37, 61, 88, 204, 133, 64, 96, 147, 43, 192, 34, 174, 104, 63, 96, 147, 43, 192, 204, 239, 200, 191, 96, 229, 48, 191, 34, 174, 104, 63, 96, 229, 48, 191, 204, 239, 200, 191, 96, 147, 43, 192, 215, 215, 221, 192, 96, 147, 43, 192, 197, 148, 22, 193, 96, 229, 48, 191, 215, 215, 221, 192, 96, 229, 48, 191, 197, 148, 22, 193, 105, 53, 0, 64, 0, 0, 128, 63, 211, 241, 4, 64, 250, 222, 49, 191, 186, 169, 81, 64, 0, 0, 128, 63, 168, 29, 19, 64, 40, 28, 24, 192, 108, 157, 42, 64, 193, 13, 129, 192, 83, 67, 75, 64, 171, 211, 180, 192, 189, 22, 86, 64, 100, 121, 21, 191, 180, 207, 116, 64, 228, 250, 230, 192, 33, 85, 99, 64, 50, 247, 9, 192, 42, 75, 121, 64, 136, 6, 109, 192, 205, 120, 147, 64, 228, 144, 11, 193, 1, 231, 139, 64, 179, 229, 166, 192, 33, 81, 159, 64, 160, 196, 213, 192, 24, 190, 182, 64, 90, 98, 1, 193, 96, 147, 43, 64, 47, 214, 137, 192, 96, 147, 43, 64, 148, 217, 211, 191, 96, 229, 48, 63, 47, 214, 137, 192, 96, 229, 48, 63, 148, 217, 211, 191, 96, 147, 43, 192, 114, 152, 139, 192, 96, 147, 43, 192, 40, 234, 218, 192, 96, 229, 48, 191, 114, 152, 139, 192, 96, 229, 48, 191, 40, 234, 218, 192, 45, 247, 177, 190, 38, 148, 188, 192, 45, 247, 177, 190, 94, 107, 125, 192, 252, 40, 243, 191, 38, 148, 188, 192, 252, 40, 243, 191, 94, 107, 125, 192, 252, 40, 243, 63, 220, 189, 41, 193, 45, 247, 177, 62, 220, 189, 41, 193, 20, 41, 243, 63, 179, 215, 74, 193, 138, 247, 177, 62, 179, 215, 74, 193, 202, 247, 177, 190, 187, 184, 69, 63, 36, 41, 243, 191, 188, 184, 69, 63, 42, 248, 177, 190, 120, 157, 148, 191, 36, 41, 243, 191, 120, 157, 148, 191, 96, 147, 43, 192, 178, 237, 22, 193, 96, 147, 43, 192, 142, 150, 62, 193, 96, 229, 48, 191, 178, 237, 22, 193, 96, 229, 48, 191, 142, 150, 62, 193, 64, 37, 15, 193, 30, 126, 30, 193, 151, 190, 222, 192, 168, 239, 49, 193, 200, 18, 0, 193, 205, 193, 17, 193, 72, 200, 213, 192, 38, 184, 30, 193, 96, 147, 43, 64, 47, 177, 221, 192, 96, 147, 43, 64, 98, 209, 136, 192, 96, 229, 48, 63, 47, 177, 221, 192, 96, 229, 48, 63, 98, 209, 136, 192, 105, 53, 0, 192, 0, 0, 128, 63, 186, 169, 81, 192, 0, 0, 128, 63, 211, 241, 4, 192, 250, 222, 49, 191, 168, 29, 19, 192, 40, 28, 24, 192, 108, 157, 42, 192, 193, 13, 129, 192, 83, 67, 75, 192, 171, 211, 180, 192, 189, 22, 86, 192, 100, 121, 21, 191, 180, 207, 116, 192, 228, 250, 230, 192, 33, 85, 99, 192, 50, 247, 9, 192, 42, 75, 121, 192, 136, 6, 109, 192, 205, 120, 147, 192, 228, 144, 11, 193, 1, 231, 139, 192, 179, 229, 166, 192, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 45, 247, 177, 190, 247, 30, 39, 193, 45, 247, 177, 190, 189, 47, 8, 193, 252, 40, 243, 191, 247, 30, 39, 193, 252, 40, 243, 191, 189, 47, 8, 193, 249, 162, 200, 64, 111, 46, 81, 193, 187, 82, 146, 64, 187, 204, 97, 193, 112, 72, 239, 64, 87, 130, 97, 193, 35, 208, 157, 64, 206, 111, 122, 193, 96, 147, 43, 64, 252, 143, 102, 193, 96, 147, 43, 64, 24, 32, 60, 193, 96, 229, 48, 63, 252, 143, 102, 193, 96, 229, 48, 63, 24, 32, 60, 193, 228, 2, 3, 65, 63, 76, 33, 193, 100, 116, 233, 64, 204, 219, 5, 193, 113, 2, 219, 64, 239, 182, 45, 193, 66, 199, 209, 64, 200, 142, 210, 192, 222, 112, 188, 64, 141, 90, 16, 193, 139, 44, 191, 64, 97, 141, 151, 192, 127, 200, 177, 64, 176, 76, 54, 192, 71, 27, 163, 64, 122, 139, 227, 192, 44, 181, 169, 64, 24, 123, 110, 191, 76, 2, 167, 64, 250, 255, 127, 63, 0, 175, 106, 64, 250, 255, 127, 63, 7, 51, 143, 64, 45, 104, 164, 192, 221, 222, 128, 64, 122, 140, 71, 192, 136, 117, 112, 64, 56, 142, 136, 191, 25, 41, 243, 63, 84, 16, 197, 191, 158, 247, 177, 62, 86, 16, 197, 191, 27, 41, 243, 63, 130, 239, 102, 192, 3, 248, 177, 62, 130, 239, 102, 192, 230, 105, 75, 64, 164, 176, 129, 193, 96, 147, 43, 64, 233, 93, 107, 193, 39, 46, 70, 62, 164, 176, 129, 193, 96, 229, 48, 63, 233, 93, 107, 193, 96, 147, 43, 192, 157, 131, 61, 193, 96, 147, 43, 192, 123, 44, 101, 193, 96, 229, 48, 191, 157, 131, 61, 193, 96, 229, 48, 191, 123, 44, 101, 193, 96, 147, 43, 192, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 229, 48, 191, 35, 15, 135, 192, 45, 247, 177, 62, 20, 72, 157, 191, 252, 40, 243, 63, 20, 72, 157, 191, 45, 247, 177, 62, 77, 13, 87, 63, 252, 40, 243, 63, 77, 13, 87, 63, 126, 51, 217, 191, 244, 129, 22, 193, 16, 14, 62, 192, 244, 129, 22, 193, 118, 121, 176, 191, 206, 221, 37, 193, 20, 107, 82, 192, 206, 221, 37, 193, 16, 14, 62, 64, 25, 200, 1, 193, 126, 51, 217, 63, 25, 200, 1, 193, 16, 14, 62, 64, 221, 37, 27, 193, 126, 51, 217, 63, 221, 37, 27, 193, 46, 167, 5, 64, 0, 0, 128, 63, 178, 164, 201, 61, 0, 0, 128, 63, 166, 146, 12, 64, 142, 249, 188, 191, 141, 74, 91, 62, 120, 44, 211, 191, 116, 71, 33, 64, 202, 196, 123, 192, 255, 114, 15, 63, 5, 241, 136, 192, 104, 157, 67, 64, 198, 82, 203, 192, 134, 52, 145, 63, 201, 205, 219, 192, 124, 81, 115, 64, 85, 124, 11, 193, 50, 75, 247, 63, 251, 95, 22, 193, 103, 3, 152, 64, 89, 32, 48, 193, 75, 155, 60, 64, 232, 148, 61, 193, 145, 163, 188, 64, 13, 78, 83, 193, 109, 126, 133, 64, 76, 57, 99, 193, 178, 164, 201, 189, 0, 0, 128, 63, 46, 167, 5, 192, 0, 0, 128, 63, 141, 74, 91, 190, 120, 44, 211, 191, 166, 146, 12, 192, 142, 249, 188, 191, 116, 71, 33, 192, 202, 196, 123, 192, 255, 114, 15, 191, 5, 241, 136, 192, 104, 157, 67, 192, 198, 82, 203, 192, 134, 52, 145, 191, 201, 205, 219, 192, 124, 81, 115, 192, 85, 124, 11, 193, 50, 75, 247, 191, 251, 95, 22, 193, 103, 3, 152, 192, 89, 32, 48, 193, 75, 155, 60, 192, 232, 148, 61, 193, 145, 163, 188, 192, 13, 78, 83, 193, 109, 126, 133, 192, 76, 57, 99, 193, 20, 41, 243, 63, 158, 96, 198, 192, 138, 247, 177, 62, 158, 96, 198, 192, 252, 40, 243, 63, 39, 74, 4, 193, 45, 247, 177, 62, 39, 74, 4, 193, 126, 51, 217, 191, 141, 64, 147, 192, 16, 14, 62, 192, 141, 64, 147, 192, 126, 51, 217, 191, 171, 137, 201, 192, 16, 14, 62, 192, 171, 137, 201, 192, 96, 229, 48, 191, 215, 158, 75, 193, 96, 147, 43, 192, 215, 158, 75, 193, 39, 46, 70, 190, 47, 162, 99, 193, 230, 105, 75, 192, 47, 162, 99, 193, 16, 14, 62, 192, 68, 9, 28, 193, 126, 51, 217, 191, 68, 9, 28, 193, 16, 14, 62, 192, 182, 228, 0, 193, 126, 51, 217, 191, 182, 228, 0, 193, 16, 14, 62, 192, 225, 132, 203, 192, 126, 51, 217, 191, 225, 132, 203, 192, 16, 14, 62, 64, 163, 75, 205, 192, 126, 51, 217, 63, 163, 75, 205, 192, 16, 14, 62, 64, 151, 3, 0, 193, 126, 51, 217, 63, 151, 3, 0, 193, 208, 164, 37, 189, 157, 103, 81, 193, 210, 105, 18, 64, 157, 103, 81, 193, 204, 246, 177, 62, 172, 172, 62, 193, 228, 40, 243, 63, 172, 172, 62, 193, 16, 14, 62, 64, 46, 107, 91, 63, 126, 51, 217, 63, 46, 107, 91, 63, 16, 14, 62, 64, 24, 113, 58, 191, 126, 51, 217, 63, 24, 113, 58, 191, 45, 247, 177, 190, 222, 52, 3, 193, 45, 247, 177, 190, 71, 139, 200, 192, 252, 40, 243, 191, 222, 52, 3, 193, 252, 40, 243, 191, 71, 139, 200, 192, 123, 218, 135, 64, 172, 92, 243, 192, 207, 51, 143, 64, 84, 112, 9, 193, 156, 151, 170, 64, 143, 26, 222, 192, 133, 79, 195, 64, 134, 253, 242, 192, 16, 14, 62, 64, 204, 97, 54, 192, 126, 51, 217, 63, 204, 97, 54, 192, 16, 14, 62, 64, 108, 236, 141, 192, 126, 51, 217, 63, 108, 236, 141, 192, 96, 147, 43, 64, 234, 11, 212, 191, 96, 147, 43, 64, 139, 230, 126, 63, 96, 229, 48, 63, 234, 11, 212, 191, 96, 229, 48, 63, 139, 230, 126, 63, 89, 75, 6, 65, 66, 236, 27, 193, 107, 57, 226, 64, 156, 226, 40, 193, 206, 93, 21, 65, 148, 168, 40, 193, 179, 47, 235, 64, 29, 26, 60, 193, 96, 147, 43, 64, 77, 248, 23, 193, 96, 147, 43, 64, 204, 16, 219, 192, 96, 229, 48, 63, 77, 248, 23, 193, 96, 229, 48, 63, 204, 16, 219, 192, 42, 248, 177, 190, 2, 187, 205, 191, 36, 41, 243, 191, 4, 187, 205, 191, 212, 247, 177, 190, 110, 154, 98, 192, 38, 41, 243, 191, 108, 154, 98, 192, 252, 40, 243, 63, 104, 26, 7, 193, 45, 247, 177, 62, 104, 26, 7, 193, 252, 40, 243, 63, 64, 52, 40, 193, 45, 247, 177, 62, 64, 52, 40, 193, 228, 2, 3, 193, 62, 76, 33, 193, 115, 2, 219, 192, 239, 182, 45, 193, 101, 116, 233, 192, 204, 219, 5, 193, 68, 199, 209, 192, 200, 142, 210, 192, 223, 112, 188, 192, 140, 90, 16, 193, 140, 44, 191, 192, 96, 141, 151, 192, 128, 200, 177, 192, 175, 76, 54, 192, 72, 27, 163, 192, 122, 139, 227, 192, 39, 181, 169, 192, 18, 123, 110, 191, 78, 2, 167, 192, 255, 255, 127, 63, 2, 175, 106, 192, 255, 255, 127, 63, 8, 51, 143, 192, 45, 104, 164, 192, 216, 222, 128, 192, 122, 140, 71, 192, 138, 117, 112, 192, 52, 142, 136, 191, 84, 176, 161, 192, 78, 202, 14, 193, 117, 109, 196, 192, 64, 41, 4, 193, 168, 9, 169, 192, 77, 140, 30, 193, 94, 37, 221, 192, 187, 154, 14, 193, 126, 51, 217, 191, 42, 161, 105, 63, 16, 14, 62, 192, 42, 161, 105, 63, 126, 51, 217, 191, 164, 167, 72, 191, 16, 14, 62, 192, 164, 167, 72, 191, 242, 247, 181, 192, 177, 237, 65, 193, 103, 157, 220, 192, 152, 65, 82, 193, 102, 79, 127, 192, 252, 139, 82, 193, 24, 37, 139, 192, 14, 47, 107, 193, 16, 14, 62, 64, 248, 227, 128, 191, 126, 51, 217, 63, 248, 227, 128, 191, 16, 14, 62, 64, 12, 233, 37, 192, 126, 51, 217, 63, 12, 233, 37, 192, 20, 107, 82, 64, 100, 98, 35, 193, 16, 14, 62, 64, 132, 6, 20, 193, 118, 121, 176, 63, 100, 98, 35, 193, 126, 51, 217, 63, 132, 6, 20, 193, 96, 147, 43, 64, 20, 250, 63, 193, 96, 147, 43, 64, 49, 138, 21, 193, 96, 229, 48, 63, 20, 250, 63, 193, 96, 229, 48, 63, 49, 138, 21, 193, 27, 41, 243, 63, 88, 22, 121, 192, 3, 248, 177, 62, 86, 22, 121, 192, 54, 41, 243, 63, 215, 190, 190, 192, 17, 248, 177, 62, 216, 190, 190, 192, 16, 14, 62, 64, 80, 7, 149, 192, 126, 51, 217, 63, 80, 7, 149, 192, 16, 14, 62, 64, 217, 194, 199, 192, 126, 51, 217, 63, 217, 194, 199, 192, 45, 247, 177, 190, 102, 194, 73, 193, 45, 247, 177, 190, 42, 211, 42, 193, 252, 40, 243, 191, 102, 194, 73, 193, 252, 40, 243, 191, 42, 211, 42, 193, 126, 51, 217, 191, 59, 212, 50, 192, 16, 14, 62, 192, 59, 212, 50, 192, 126, 51, 217, 191, 54, 179, 143, 192, 16, 14, 62, 192, 54, 179, 143, 192, 203, 105, 18, 192, 219, 158, 89, 193, 144, 166, 37, 61, 220, 158, 89, 193, 196, 40, 243, 191, 238, 227, 70, 193, 73, 246, 177, 190, 237, 227, 70, 193, 126, 51, 217, 191, 206, 145, 115, 191, 16, 14, 62, 192, 206, 145, 115, 191, 126, 51, 217, 191, 164, 118, 41, 192, 16, 14, 62, 192, 164, 118, 41, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 24, 190, 182, 192, 90, 98, 1, 193, 205, 120, 147, 192, 228, 144, 11, 193, 33, 81, 159, 192, 160, 196, 213, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 96, 229, 48, 191, 35, 15, 135, 192, 96, 229, 48, 191, 170, 245, 222, 191, 96, 147, 43, 192, 35, 15, 135, 192, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 109, 126, 133, 64, 76, 57, 99, 193, 145, 163, 188, 64, 13, 78, 83, 193, 75, 155, 60, 64, 232, 148, 61, 193, 118, 121, 176, 63, 252, 81, 47, 64, 118, 121, 176, 63, 17, 135, 112, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 118, 121, 176, 63, 17, 135, 112, 64, 118, 121, 176, 63, 252, 81, 47, 64, 20, 107, 82, 64, 17, 135, 112, 64, 164, 106, 170, 64, 38, 59, 220, 63, 164, 106, 170, 64, 88, 13, 65, 190, 118, 121, 176, 63, 227, 122, 14, 192, 20, 107, 82, 64, 227, 122, 14, 192, 118, 121, 176, 63, 176, 139, 154, 191, 41, 182, 40, 191, 88, 13, 65, 190, 41, 182, 40, 191, 38, 59, 220, 63, 230, 105, 75, 192, 225, 123, 213, 192, 39, 46, 70, 190, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 39, 46, 70, 190, 225, 123, 213, 192, 230, 105, 75, 192, 225, 123, 213, 192, 179, 131, 63, 64, 126, 17, 95, 192, 179, 131, 63, 64, 168, 41, 0, 191, 226, 32, 179, 63, 168, 41, 0, 191, 62, 168, 203, 192, 168, 41, 0, 191, 62, 168, 203, 192, 126, 17, 95, 192, 148, 174, 152, 192, 168, 41, 0, 191, 230, 105, 75, 192, 157, 220, 43, 64, 39, 46, 70, 190, 157, 220, 43, 64, 189, 160, 37, 61, 110, 240, 239, 191, 226, 105, 18, 192, 82, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63, 226, 105, 18, 192, 82, 240, 239, 191, 189, 160, 37, 61, 110, 240, 239, 191, 113, 186, 152, 192, 102, 74, 28, 63, 110, 186, 152, 192, 2, 19, 60, 64, 175, 158, 37, 61, 21, 143, 173, 64, 223, 105, 18, 192, 21, 143, 173, 64, 175, 158, 37, 61, 90, 204, 133, 64, 44, 161, 33, 64, 12, 19, 60, 64, 53, 161, 33, 64, 182, 74, 28, 63), +"format": 4119, +"index_count": 18, +"index_data": PackedByteArray(37, 0, 14, 0, 54, 0, 54, 0, 30, 0, 37, 0, 49, 0, 26, 0, 6, 0, 6, 0, 18, 0, 49, 0, 67, 0, 44, 0, 60, 0, 60, 0, 0, 0, 67, 0), +"material": SubResource("StandardMaterial3D_owvi0"), +"name": "snow", +"primitive": 3, +"vertex_count": 422, +"vertex_data": PackedByteArray(241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 59, 99, 118, 198, 255, 191, 255, 191, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 59, 99, 118, 198, 0, 0, 0, 128, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 59, 99, 118, 198, 0, 0, 0, 128, 171, 129, 212, 189, 127, 41, 169, 62, 193, 113, 25, 62, 136, 185, 196, 28, 0, 0, 0, 128, 60, 161, 218, 189, 207, 61, 177, 62, 190, 154, 221, 61, 136, 185, 196, 28, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 80, 7, 224, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 217, 174, 37, 209, 254, 255, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 255, 191, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 80, 7, 224, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 217, 174, 37, 209, 255, 255, 255, 255, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 217, 174, 37, 209, 254, 255, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 203, 211, 90, 62, 162, 27, 187, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 59, 99, 118, 198, 0, 0, 0, 128, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 59, 99, 118, 198, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 59, 99, 118, 198, 254, 191, 255, 191, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 136, 185, 196, 28, 0, 0, 0, 128, 107, 219, 103, 190, 6, 6, 154, 62, 28, 2, 204, 61, 136, 185, 196, 28, 0, 0, 0, 128, 168, 203, 100, 190, 184, 241, 145, 62, 112, 165, 16, 62, 136, 185, 196, 28, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 255, 191, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 79, 191, 21, 188, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 217, 174, 37, 209, 254, 255, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 146, 169, 159, 61, 141, 59, 227, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 59, 99, 118, 198, 255, 191, 255, 191, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 59, 99, 118, 198, 0, 0, 0, 128, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 59, 99, 118, 198, 0, 0, 0, 128, 24, 34, 24, 190, 207, 61, 177, 62, 190, 247, 135, 61, 136, 185, 196, 28, 0, 0, 0, 128, 128, 198, 66, 190, 127, 41, 169, 62, 58, 216, 129, 61, 136, 185, 196, 28, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 59, 99, 118, 198, 255, 191, 255, 191, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 59, 99, 118, 198, 0, 0, 0, 128, 199, 85, 15, 190, 6, 6, 154, 62, 178, 134, 62, 62, 136, 185, 196, 28, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 164, 250, 164, 122, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 255, 255, 255, 127, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 242, 228, 242, 100, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 242, 228, 242, 100, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 234, 65, 42, 124, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 234, 65, 42, 124, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 215, 221, 215, 93, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 234, 189, 85, 105, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 234, 189, 85, 105, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 47, 19, 47, 147, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 47, 19, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 0, 0, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 206, 112, 174, 101, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 0, 0, 255, 191, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 0, 0, 255, 191, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 0, 0, 255, 191, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 0, 0, 255, 191, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 0, 0, 255, 191, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 0, 0, 255, 191, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 0, 0, 255, 191, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 0, 0, 255, 191, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 0, 0, 255, 191, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 0, 0, 255, 191, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 170, 85, 165, 61, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 202, 31, 202, 159, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 63, 20, 62, 148, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 202, 31, 202, 159, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 74, 215, 74, 87, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 207, 236, 207, 108, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 178, 245, 179, 117, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 207, 236, 207, 108, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 137, 248, 185, 195, 0, 0, 0, 128, 189, 19, 208, 189, 219, 7, 87, 61, 246, 165, 8, 61, 137, 248, 185, 195, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 41, 252, 233, 193, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 41, 252, 233, 193, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 62, 148, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 255, 127, 255, 127, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 145, 118, 171, 111, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 235, 116, 139, 61, 95, 118, 83, 111, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 229, 131, 100, 61, 142, 209, 128, 61, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 113, 22, 131, 61, 18, 84, 0, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 231, 48, 105, 60, 205, 80, 9, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 234, 254, 158, 61, 83, 69, 63, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 228, 196, 197, 61, 236, 193, 124, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 225, 28, 247, 61, 10, 41, 156, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 255, 255, 255, 255, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 54, 198, 55, 70, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 235, 116, 139, 61, 54, 198, 55, 70, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 30, 187, 31, 59, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 170, 85, 165, 61, 30, 187, 31, 59, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 255, 127, 202, 159, 0, 0, 0, 128, 6, 122, 154, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 133, 138, 48, 189, 11, 192, 85, 62, 143, 251, 198, 189, 255, 127, 180, 168, 0, 0, 0, 128, 6, 122, 154, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 133, 138, 48, 189, 83, 252, 44, 62, 80, 54, 165, 189, 255, 127, 39, 162, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 162, 194, 71, 62, 39, 126, 1, 190, 74, 215, 0, 0, 0, 0, 0, 128, 241, 26, 1, 190, 127, 41, 169, 62, 178, 151, 2, 62, 251, 240, 128, 199, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 251, 240, 128, 199, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 192, 231, 30, 204, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 192, 231, 30, 204, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 164, 250, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 25, 77, 204, 101, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 49, 74, 156, 107, 0, 0, 0, 128, 105, 129, 27, 190, 163, 38, 69, 62, 16, 66, 171, 61, 25, 77, 204, 101, 0, 0, 0, 128, 26, 208, 16, 190, 247, 48, 21, 62, 115, 223, 149, 61, 49, 74, 156, 107, 0, 0, 0, 128, 133, 138, 48, 189, 87, 227, 124, 62, 244, 186, 239, 189, 179, 229, 83, 111, 0, 0, 0, 128, 61, 112, 15, 189, 131, 182, 138, 62, 197, 243, 248, 189, 125, 214, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 61, 230, 171, 111, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 125, 214, 174, 101, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 235, 116, 139, 61, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 90, 5, 90, 133, 0, 0, 0, 128, 106, 61, 178, 59, 23, 215, 137, 61, 244, 199, 143, 60, 76, 10, 75, 138, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 90, 5, 90, 133, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 253, 12, 51, 52, 0, 0, 0, 128, 161, 207, 32, 190, 52, 51, 154, 62, 115, 222, 181, 61, 75, 13, 236, 51, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 169, 22, 106, 43, 0, 0, 0, 128, 107, 236, 43, 190, 127, 41, 169, 62, 101, 140, 175, 61, 169, 22, 106, 43, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 235, 116, 139, 61, 12, 27, 12, 155, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 167, 11, 236, 60, 138, 170, 76, 62, 244, 199, 143, 60, 12, 27, 12, 155, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 186, 67, 138, 120, 0, 0, 0, 128, 183, 121, 4, 190, 252, 244, 72, 61, 86, 101, 122, 61, 186, 67, 138, 120, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 24, 71, 206, 113, 0, 0, 0, 128, 226, 29, 9, 190, 56, 49, 200, 61, 1, 123, 134, 61, 24, 71, 206, 113, 0, 0, 0, 128, 120, 174, 0, 190, 66, 245, 82, 62, 93, 56, 107, 61, 203, 229, 24, 205, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 203, 229, 24, 205, 0, 0, 0, 128, 249, 61, 15, 190, 226, 85, 130, 62, 49, 187, 146, 61, 65, 224, 221, 207, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 65, 224, 221, 207, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 206, 190, 2, 115, 0, 0, 0, 128, 249, 67, 4, 190, 52, 51, 154, 62, 196, 245, 238, 61, 198, 190, 179, 114, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 255, 191, 255, 127, 0, 0, 0, 128, 130, 235, 253, 189, 163, 38, 69, 62, 96, 89, 228, 61, 255, 191, 255, 127, 0, 0, 0, 128, 162, 100, 229, 189, 226, 85, 130, 62, 129, 210, 203, 61, 255, 191, 255, 127, 0, 0, 0, 128, 229, 136, 232, 189, 247, 48, 21, 62, 195, 246, 206, 61, 255, 191, 255, 127, 0, 0, 0, 128, 114, 36, 217, 189, 56, 49, 200, 61, 82, 146, 191, 61, 255, 191, 255, 127, 0, 0, 0, 128, 160, 69, 200, 189, 66, 245, 82, 62, 127, 179, 174, 61, 255, 191, 255, 127, 0, 0, 0, 128, 28, 220, 207, 189, 252, 244, 72, 61, 238, 73, 182, 61, 255, 191, 255, 127, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 191, 255, 127, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 191, 255, 127, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 255, 191, 255, 127, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 255, 191, 255, 127, 0, 0, 0, 128, 109, 252, 150, 189, 219, 7, 87, 61, 151, 212, 122, 61, 255, 191, 255, 127, 0, 0, 0, 128, 6, 122, 154, 189, 87, 227, 124, 62, 244, 186, 239, 189, 75, 26, 83, 111, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 193, 25, 171, 111, 0, 0, 0, 128, 41, 7, 171, 189, 131, 182, 138, 62, 197, 243, 248, 189, 129, 41, 174, 101, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 129, 41, 174, 101, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 90, 133, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 98, 83, 25, 62, 223, 192, 184, 62, 244, 199, 143, 60, 84, 16, 109, 9, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 242, 1, 217, 61, 60, 177, 197, 62, 244, 199, 143, 60, 171, 16, 160, 9, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 184, 20, 161, 59, 80, 26, 49, 15, 0, 0, 0, 128, 6, 122, 154, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 226, 200, 36, 61, 235, 2, 174, 189, 178, 245, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 91, 40, 164, 61, 160, 198, 184, 189, 207, 236, 0, 0, 0, 0, 0, 128, 41, 7, 171, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 67, 153, 124, 62, 105, 122, 39, 190, 30, 187, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 39, 86, 108, 62, 124, 136, 20, 190, 54, 198, 0, 0, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 235, 116, 139, 61, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 235, 116, 139, 61, 39, 34, 39, 162, 0, 0, 0, 128, 169, 76, 153, 61, 198, 24, 167, 62, 244, 199, 143, 60, 180, 40, 180, 168, 0, 0, 0, 128, 22, 0, 73, 61, 195, 58, 135, 62, 244, 199, 143, 60, 39, 34, 39, 162, 0, 0, 0, 128, 124, 2, 218, 189, 97, 54, 214, 61, 116, 131, 28, 61, 206, 241, 23, 199, 0, 0, 0, 128, 43, 235, 160, 189, 97, 54, 214, 61, 253, 88, 135, 61, 206, 241, 23, 199, 0, 0, 0, 128, 246, 122, 234, 189, 186, 163, 31, 62, 79, 116, 61, 61, 155, 235, 49, 202, 0, 0, 0, 128, 166, 99, 177, 189, 186, 163, 31, 62, 120, 209, 151, 61, 155, 235, 49, 202, 0, 0, 0, 128, 6, 122, 154, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 109, 172, 244, 61, 55, 160, 202, 189, 242, 228, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 232, 169, 33, 62, 223, 108, 227, 189, 215, 221, 0, 0, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 79, 145, 12, 190, 48, 156, 115, 62, 123, 144, 255, 61, 222, 79, 66, 96, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 246, 28, 41, 190, 48, 156, 115, 62, 43, 121, 198, 61, 222, 79, 66, 96, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 133, 138, 48, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 6, 122, 154, 189, 139, 231, 2, 62, 2, 173, 138, 189, 255, 127, 12, 155, 0, 0, 0, 128, 86, 1, 81, 190, 6, 6, 154, 62, 57, 182, 249, 61, 232, 92, 46, 70, 0, 0, 0, 128, 220, 47, 38, 190, 6, 6, 154, 62, 157, 172, 39, 62, 232, 92, 46, 70, 0, 0, 0, 128, 59, 136, 57, 190, 144, 27, 144, 62, 181, 79, 231, 61, 138, 87, 234, 80, 0, 0, 0, 128, 147, 252, 28, 190, 144, 27, 144, 62, 131, 51, 16, 62, 138, 87, 234, 80, 0, 0, 0, 128, 133, 138, 48, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 6, 122, 154, 189, 63, 83, 48, 61, 98, 29, 88, 189, 255, 127, 75, 138, 0, 0, 0, 128, 133, 138, 48, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 121, 167, 175, 61, 202, 38, 111, 189, 255, 127, 47, 147, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 133, 138, 48, 189, 0, 0, 0, 0, 1, 106, 170, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 122, 154, 189, 0, 0, 0, 0, 124, 106, 80, 189, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 50, 68, 89, 61, 0, 0, 0, 0, 244, 199, 143, 60, 255, 127, 0, 0, 0, 0, 0, 128, 77, 229, 35, 59, 0, 0, 0, 0, 235, 116, 139, 61, 255, 127, 0, 0, 0, 0, 0, 128, 165, 236, 2, 190, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 168, 170, 147, 189, 0, 0, 0, 0, 15, 49, 116, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 111, 2, 2, 61, 255, 127, 0, 0, 0, 0, 0, 128, 249, 193, 204, 189, 0, 0, 0, 0, 216, 47, 179, 61, 255, 127, 0, 0, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 217, 174, 255, 255, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 217, 174, 255, 255, 0, 0, 0, 128, 61, 112, 15, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 50, 89, 111, 62, 149, 109, 62, 190, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 40, 25, 98, 62, 192, 96, 85, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 188, 131, 10, 190, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 41, 7, 171, 189, 137, 246, 151, 62, 8, 39, 157, 189, 255, 127, 217, 46, 0, 0, 0, 128, 61, 112, 15, 189, 135, 86, 145, 62, 95, 13, 203, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 131, 182, 138, 62, 197, 243, 248, 189, 255, 127, 217, 46, 0, 0, 0, 128, 246, 32, 137, 60, 67, 153, 124, 62, 105, 122, 39, 190, 255, 127, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 217, 174, 37, 209, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 217, 174, 37, 209, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 217, 174, 37, 209, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 78, 204, 47, 61, 61, 151, 237, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 183, 169, 155, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 121, 152, 17, 189, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 254, 108, 231, 61, 223, 223, 216, 62, 86, 136, 37, 62, 37, 81, 217, 46, 0, 0, 0, 128, 14, 242, 54, 62, 80, 119, 197, 62, 36, 51, 248, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 170, 85, 165, 61, 37, 81, 217, 46, 0, 0, 0, 128, 128, 181, 126, 62, 241, 191, 176, 62, 184, 20, 161, 59, 37, 81, 217, 46, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 59, 99, 118, 198, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 59, 99, 118, 198, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 59, 99, 118, 198, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 59, 99, 118, 198, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 59, 99, 118, 198, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 59, 99, 118, 198, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 59, 99, 118, 198, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 59, 99, 118, 198, 0, 0, 0, 128, 203, 87, 4, 190, 32, 82, 185, 62, 73, 198, 64, 61, 136, 185, 196, 28, 0, 0, 0, 128, 150, 12, 179, 189, 32, 82, 185, 62, 22, 6, 182, 61, 136, 185, 196, 28, 0, 0, 0, 128, 151, 160, 89, 190, 127, 41, 169, 62, 29, 72, 40, 61, 136, 185, 196, 28, 0, 0, 0, 128, 128, 181, 126, 190, 6, 6, 154, 62, 241, 77, 158, 61, 136, 185, 196, 28, 0, 0, 0, 128, 124, 196, 77, 190, 104, 221, 137, 62, 61, 65, 79, 62, 136, 185, 196, 28, 0, 0, 0, 128, 246, 149, 120, 190, 104, 221, 137, 62, 196, 111, 36, 62, 136, 185, 196, 28, 0, 0, 0, 128, 41, 250, 57, 190, 184, 241, 145, 62, 233, 118, 59, 62, 136, 185, 196, 28, 0, 0, 0, 128, 99, 247, 240, 189, 6, 6, 154, 62, 192, 96, 85, 62, 136, 185, 196, 28, 0, 0, 0, 128, 141, 205, 166, 189, 127, 41, 169, 62, 214, 75, 48, 62, 136, 185, 196, 28, 0, 0, 0, 128) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_6b00e") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_swi18"] +resource_name = "heart" +vertex_color_use_as_albedo = true +albedo_color = Color(0.976471, 0.290196, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cvgmy"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tnd7m"] +resource_name = "snow" +vertex_color_use_as_albedo = true +albedo_color = Color(0.919811, 0.979345, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5l5jd"] +resource_name = "_defaultMat" +vertex_color_use_as_albedo = true +albedo_color = Color(1, 1, 1, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_th2oj"] +_surfaces = [{ +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"format": 4097, +"index_count": 252, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 1, 0, 4, 0, 3, 0, 0, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 4, 0, 1, 0, 3, 0, 7, 0, 5, 0, 6, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 6, 0, 3, 0, 10, 0, 10, 0, 11, 0, 6, 0, 10, 0, 12, 0, 11, 0, 3, 0, 6, 0, 10, 0, 11, 0, 10, 0, 6, 0, 12, 0, 10, 0, 11, 0, 15, 0, 13, 0, 14, 0, 14, 0, 2, 0, 15, 0, 2, 0, 5, 0, 15, 0, 13, 0, 15, 0, 14, 0, 2, 0, 14, 0, 15, 0, 5, 0, 2, 0, 15, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 16, 0, 18, 0, 17, 0, 19, 0, 17, 0, 18, 0, 20, 0, 17, 0, 19, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 20, 0, 22, 0, 21, 0, 23, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 26, 0, 25, 0, 19, 0, 19, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 29, 0, 27, 0, 22, 0, 22, 0, 30, 0, 29, 0, 30, 0, 31, 0, 29, 0, 27, 0, 29, 0, 22, 0, 30, 0, 22, 0, 29, 0, 31, 0, 30, 0, 29, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 35, 0, 36, 0, 34, 0, 32, 0, 34, 0, 33, 0, 35, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 39, 0, 37, 0, 38, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 37, 0, 39, 0, 38, 0, 40, 0, 38, 0, 39, 0, 41, 0, 38, 0, 40, 0, 35, 0, 42, 0, 43, 0, 43, 0, 37, 0, 35, 0, 43, 0, 44, 0, 37, 0, 42, 0, 35, 0, 43, 0, 37, 0, 43, 0, 35, 0, 44, 0, 43, 0, 37, 0, 45, 0, 36, 0, 39, 0, 39, 0, 46, 0, 45, 0, 39, 0, 47, 0, 46, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 51, 0, 52, 0, 50, 0, 48, 0, 50, 0, 49, 0, 51, 0, 49, 0, 50, 0, 52, 0, 51, 0, 50, 0, 54, 0, 53, 0, 50, 0, 50, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 53, 0, 54, 0, 50, 0, 55, 0, 50, 0, 54, 0, 56, 0, 55, 0, 54, 0, 59, 0, 57, 0, 58, 0, 58, 0, 60, 0, 59, 0, 58, 0, 48, 0, 60, 0, 57, 0, 59, 0, 58, 0, 60, 0, 58, 0, 59, 0, 48, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 60, 0, 53, 0, 62, 0, 53, 0, 63, 0, 62, 0), +"lods": [0.0435886, PackedByteArray(1, 0, 3, 0, 2, 0, 3, 0, 1, 0, 2, 0, 7, 0, 5, 0, 6, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 6, 0, 3, 0, 10, 0, 3, 0, 6, 0, 10, 0, 2, 0, 5, 0, 14, 0, 5, 0, 2, 0, 14, 0, 17, 0, 20, 0, 19, 0, 20, 0, 17, 0, 19, 0, 22, 0, 20, 0, 21, 0, 20, 0, 22, 0, 21, 0, 26, 0, 25, 0, 19, 0, 19, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 30, 0, 27, 0, 22, 0, 27, 0, 30, 0, 22, 0, 35, 0, 36, 0, 33, 0, 36, 0, 35, 0, 33, 0, 39, 0, 37, 0, 38, 0, 37, 0, 39, 0, 38, 0, 43, 0, 37, 0, 35, 0, 37, 0, 43, 0, 35, 0, 45, 0, 36, 0, 39, 0, 39, 0, 46, 0, 45, 0, 39, 0, 47, 0, 46, 0, 50, 0, 48, 0, 49, 0, 48, 0, 50, 0, 49, 0, 55, 0, 53, 0, 50, 0, 53, 0, 55, 0, 50, 0, 58, 0, 48, 0, 60, 0, 48, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 60, 0, 53, 0, 62, 0, 53, 0, 63, 0, 62, 0)], +"name": "heart", +"primitive": 3, +"vertex_count": 80, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"format": 4097, +"index_count": 120, +"index_data": PackedByteArray(2, 0, 64, 0, 65, 0, 65, 0, 3, 0, 2, 0, 2, 0, 5, 0, 66, 0, 66, 0, 64, 0, 2, 0, 6, 0, 67, 0, 66, 0, 66, 0, 5, 0, 6, 0, 67, 0, 6, 0, 3, 0, 3, 0, 65, 0, 67, 0, 65, 0, 64, 0, 66, 0, 66, 0, 67, 0, 65, 0, 68, 0, 27, 0, 22, 0, 22, 0, 69, 0, 68, 0, 20, 0, 19, 0, 70, 0, 70, 0, 71, 0, 20, 0, 20, 0, 71, 0, 69, 0, 69, 0, 22, 0, 20, 0, 27, 0, 68, 0, 70, 0, 70, 0, 19, 0, 27, 0, 71, 0, 70, 0, 68, 0, 68, 0, 69, 0, 71, 0, 39, 0, 72, 0, 73, 0, 73, 0, 36, 0, 39, 0, 35, 0, 74, 0, 75, 0, 75, 0, 37, 0, 35, 0, 75, 0, 74, 0, 73, 0, 73, 0, 72, 0, 75, 0, 35, 0, 36, 0, 73, 0, 73, 0, 74, 0, 35, 0, 72, 0, 39, 0, 37, 0, 37, 0, 75, 0, 72, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 77, 0, 53, 0, 50, 0, 50, 0, 79, 0, 77, 0, 53, 0, 77, 0, 76, 0, 76, 0, 60, 0, 53, 0, 48, 0, 60, 0, 76, 0, 76, 0, 78, 0, 48, 0, 48, 0, 78, 0, 79, 0, 79, 0, 50, 0, 48, 0), +"name": "grass", +"primitive": 3, +"vertex_count": 80, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"format": 4097, +"index_count": 144, +"index_data": PackedByteArray(64, 0, 2, 0, 65, 0, 3, 0, 65, 0, 2, 0, 5, 0, 2, 0, 66, 0, 64, 0, 66, 0, 2, 0, 67, 0, 6, 0, 66, 0, 5, 0, 66, 0, 6, 0, 2, 0, 3, 0, 5, 0, 6, 0, 5, 0, 3, 0, 6, 0, 67, 0, 3, 0, 65, 0, 3, 0, 67, 0, 64, 0, 65, 0, 66, 0, 67, 0, 66, 0, 65, 0, 27, 0, 68, 0, 22, 0, 69, 0, 22, 0, 68, 0, 19, 0, 20, 0, 70, 0, 71, 0, 70, 0, 20, 0, 71, 0, 20, 0, 69, 0, 22, 0, 69, 0, 20, 0, 68, 0, 27, 0, 70, 0, 19, 0, 70, 0, 27, 0, 19, 0, 20, 0, 27, 0, 22, 0, 27, 0, 20, 0, 70, 0, 71, 0, 68, 0, 69, 0, 68, 0, 71, 0, 72, 0, 39, 0, 73, 0, 36, 0, 73, 0, 39, 0, 74, 0, 35, 0, 75, 0, 37, 0, 75, 0, 35, 0, 74, 0, 75, 0, 73, 0, 72, 0, 73, 0, 75, 0, 36, 0, 35, 0, 73, 0, 74, 0, 73, 0, 35, 0, 35, 0, 37, 0, 36, 0, 39, 0, 36, 0, 37, 0, 39, 0, 72, 0, 37, 0, 75, 0, 37, 0, 72, 0, 76, 0, 78, 0, 77, 0, 79, 0, 77, 0, 78, 0, 60, 0, 48, 0, 53, 0, 50, 0, 53, 0, 48, 0, 53, 0, 77, 0, 50, 0, 79, 0, 50, 0, 77, 0, 77, 0, 53, 0, 76, 0, 60, 0, 76, 0, 53, 0, 60, 0, 48, 0, 76, 0, 78, 0, 76, 0, 48, 0, 78, 0, 48, 0, 79, 0, 50, 0, 79, 0, 48, 0), +"name": "snow", +"primitive": 3, +"vertex_count": 80, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"format": 4097, +"index_count": 24, +"index_data": PackedByteArray(3, 0, 2, 0, 5, 0, 5, 0, 6, 0, 3, 0, 20, 0, 19, 0, 27, 0, 27, 0, 22, 0, 20, 0, 37, 0, 35, 0, 36, 0, 36, 0, 39, 0, 37, 0, 48, 0, 60, 0, 53, 0, 53, 0, 50, 0, 48, 0), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 80, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_4yu4q"] +resource_name = "flowersLow_Mesh flowersLow" +_surfaces = [{ +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"attribute_data": PackedByteArray(152, 52, 20, 63, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 152, 52, 20, 63, 96, 194, 30, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 153, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 189, 107, 209, 64, 152, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 139, 130, 144, 192, 194, 109, 146, 64, 65, 156, 55, 193, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 138, 60, 241, 192, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 36, 199, 185, 191, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 36, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 30, 9, 35, 64, 139, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 154, 52, 20, 63, 194, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 154, 52, 20, 63, 194, 109, 146, 64, 139, 130, 144, 64, 194, 109, 146, 64, 30, 9, 35, 64, 139, 223, 38, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 138, 60, 241, 64, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 192, 36, 199, 185, 191, 138, 60, 241, 192, 152, 97, 4, 63, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 152, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 94, 65, 62, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 192, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 154, 52, 20, 191, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 154, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 139, 130, 144, 192, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 65, 156, 55, 193, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 65, 156, 55, 65, 38, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 138, 60, 241, 64, 38, 199, 185, 191, 154, 52, 20, 63, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 67, 29, 24, 193, 138, 223, 90, 192, 138, 60, 241, 192, 36, 199, 185, 191, 65, 156, 55, 193, 36, 199, 185, 191, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 138, 60, 241, 192, 36, 199, 185, 191, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 155, 52, 20, 191, 94, 65, 62, 193, 155, 52, 20, 191, 96, 194, 30, 193, 31, 9, 35, 192, 92, 192, 93, 193, 139, 130, 144, 192, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 69, 22, 200, 191, 2, 72, 108, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 139, 130, 144, 192, 103, 145, 188, 192, 138, 60, 241, 192, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 26, 7, 98, 64, 62, 248, 153, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 138, 60, 241, 64, 247, 239, 49, 192, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 111, 76, 154, 63, 169, 157, 24, 193, 44, 43, 50, 63, 208, 98, 244, 192, 44, 43, 50, 191, 132, 196, 32, 193, 111, 76, 154, 191, 67, 88, 2, 193, 154, 52, 20, 63, 103, 145, 188, 192, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 191, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 196, 93, 8, 193, 170, 84, 20, 191, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 194, 220, 39, 65, 76, 123, 217, 63, 196, 93, 8, 65, 76, 123, 217, 63, 65, 156, 55, 65, 152, 116, 0, 191, 138, 60, 241, 64, 152, 116, 0, 191, 104, 49, 10, 193, 150, 21, 217, 63, 169, 157, 40, 193, 56, 38, 13, 64, 67, 88, 18, 193, 120, 99, 82, 190, 132, 196, 48, 193, 168, 169, 155, 62, 196, 93, 8, 193, 76, 123, 217, 63, 194, 220, 39, 193, 76, 123, 217, 63, 138, 60, 241, 192, 152, 116, 0, 191, 65, 156, 55, 193, 152, 116, 0, 191, 194, 220, 39, 65, 170, 84, 20, 191, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 132, 196, 48, 65, 168, 169, 155, 62, 169, 157, 40, 65, 56, 38, 13, 64, 67, 88, 18, 65, 120, 99, 82, 190, 104, 49, 10, 65, 150, 21, 217, 63, 154, 52, 20, 191, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 63, 176, 21, 39, 64, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 111, 76, 154, 63, 169, 157, 56, 65, 44, 43, 50, 191, 132, 196, 64, 65, 44, 43, 50, 63, 104, 49, 26, 65, 111, 76, 154, 191, 67, 88, 34, 65, 65, 156, 55, 193, 247, 239, 49, 192, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 26, 7, 98, 64, 2, 72, 108, 192, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 65, 156, 55, 65, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 69, 22, 200, 191, 62, 248, 153, 64, 26, 7, 98, 192, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 139, 130, 144, 192, 176, 21, 39, 64, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 65, 156, 55, 193, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 138, 60, 241, 192, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 154, 52, 20, 63, 176, 21, 39, 64, 44, 43, 178, 191, 18, 14, 52, 193, 44, 43, 178, 63, 180, 207, 205, 192, 111, 76, 26, 64, 91, 192, 35, 193, 111, 76, 26, 192, 32, 107, 238, 192, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 194, 220, 39, 65, 170, 84, 20, 191, 44, 43, 50, 191, 132, 196, 32, 193, 44, 43, 50, 63, 208, 98, 244, 192, 111, 76, 154, 63, 169, 157, 24, 193, 111, 76, 154, 191, 67, 88, 2, 193, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 26, 7, 98, 64, 2, 72, 108, 192, 139, 130, 144, 192, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 65, 156, 55, 193, 247, 239, 49, 192, 65, 156, 55, 65, 152, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 152, 116, 0, 191, 144, 53, 7, 193, 222, 152, 180, 191, 91, 192, 51, 193, 111, 76, 90, 64, 180, 207, 237, 192, 150, 21, 25, 64, 18, 14, 68, 193, 176, 172, 200, 190, 67, 88, 18, 193, 120, 99, 82, 190, 169, 157, 40, 193, 56, 38, 13, 64, 104, 49, 10, 193, 150, 21, 217, 63, 132, 196, 48, 193, 168, 169, 155, 62, 138, 60, 241, 192, 152, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 152, 116, 0, 191, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 138, 60, 241, 64, 247, 239, 49, 192, 67, 88, 18, 65, 120, 99, 82, 190, 169, 157, 40, 65, 56, 38, 13, 64, 132, 196, 48, 65, 168, 169, 155, 62, 104, 49, 10, 65, 150, 21, 217, 63, 139, 130, 144, 192, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 144, 53, 7, 65, 222, 152, 180, 191, 91, 192, 51, 65, 111, 76, 90, 64, 18, 14, 68, 65, 176, 172, 200, 190, 180, 207, 237, 64, 150, 21, 25, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 26, 7, 98, 64, 62, 248, 153, 64, 44, 43, 50, 63, 104, 49, 26, 65, 44, 43, 50, 191, 132, 196, 64, 65, 111, 76, 154, 63, 169, 157, 56, 65, 111, 76, 154, 191, 67, 88, 34, 65, 44, 43, 178, 63, 218, 231, 6, 65, 44, 43, 178, 191, 18, 14, 84, 65, 111, 76, 26, 64, 91, 192, 67, 65, 111, 76, 26, 192, 144, 53, 23, 65, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 196, 93, 8, 193, 170, 84, 20, 191, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 63, 103, 145, 188, 192, 138, 60, 241, 64, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 65, 156, 55, 65, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 111, 76, 26, 64, 91, 192, 35, 193, 44, 43, 178, 63, 180, 207, 205, 192, 44, 43, 178, 191, 18, 14, 52, 193, 111, 76, 26, 192, 32, 107, 238, 192, 180, 207, 237, 192, 150, 21, 25, 64, 91, 192, 51, 193, 111, 76, 90, 64, 144, 53, 7, 193, 222, 152, 180, 191, 18, 14, 68, 193, 176, 172, 200, 190, 18, 14, 68, 65, 176, 172, 200, 190, 91, 192, 51, 65, 111, 76, 90, 64, 144, 53, 7, 65, 222, 152, 180, 191, 180, 207, 237, 64, 150, 21, 25, 64, 111, 76, 26, 64, 91, 192, 67, 65, 44, 43, 178, 191, 18, 14, 84, 65, 44, 43, 178, 63, 218, 231, 6, 65, 111, 76, 26, 192, 144, 53, 23, 65), +"format": 4119, +"index_count": 252, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 1, 0, 4, 0, 3, 0, 7, 0, 5, 0, 6, 0, 8, 0, 6, 0, 5, 0, 9, 0, 6, 0, 8, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 23, 0, 21, 0, 20, 0, 24, 0, 21, 0, 23, 0, 27, 0, 25, 0, 26, 0, 26, 0, 28, 0, 27, 0, 28, 0, 29, 0, 27, 0, 32, 0, 30, 0, 31, 0, 33, 0, 31, 0, 30, 0, 34, 0, 33, 0, 30, 0, 37, 0, 35, 0, 36, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 43, 0, 41, 0, 40, 0, 44, 0, 41, 0, 43, 0, 47, 0, 45, 0, 46, 0, 46, 0, 48, 0, 47, 0, 48, 0, 49, 0, 47, 0, 52, 0, 50, 0, 51, 0, 53, 0, 51, 0, 50, 0, 54, 0, 53, 0, 50, 0, 57, 0, 55, 0, 56, 0, 56, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 62, 0, 60, 0, 61, 0, 61, 0, 63, 0, 62, 0, 63, 0, 64, 0, 62, 0, 67, 0, 65, 0, 66, 0, 68, 0, 66, 0, 65, 0, 69, 0, 68, 0, 65, 0, 72, 0, 70, 0, 71, 0, 71, 0, 73, 0, 72, 0, 73, 0, 74, 0, 72, 0, 77, 0, 75, 0, 76, 0, 78, 0, 76, 0, 75, 0, 79, 0, 78, 0, 75, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 81, 0, 84, 0, 83, 0, 87, 0, 85, 0, 86, 0, 88, 0, 86, 0, 85, 0, 89, 0, 86, 0, 88, 0, 92, 0, 90, 0, 91, 0, 91, 0, 93, 0, 92, 0, 91, 0, 94, 0, 93, 0, 97, 0, 95, 0, 96, 0, 98, 0, 96, 0, 95, 0, 99, 0, 96, 0, 98, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 107, 0, 105, 0, 106, 0, 106, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 112, 0, 110, 0, 111, 0, 113, 0, 111, 0, 110, 0, 114, 0, 113, 0, 110, 0, 117, 0, 115, 0, 116, 0, 116, 0, 118, 0, 117, 0, 118, 0, 119, 0, 117, 0, 122, 0, 120, 0, 121, 0, 123, 0, 121, 0, 120, 0, 124, 0, 123, 0, 120, 0, 127, 0, 125, 0, 126, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 132, 0, 130, 0, 131, 0, 133, 0, 131, 0, 130, 0, 134, 0, 131, 0, 133, 0, 137, 0, 135, 0, 136, 0, 136, 0, 138, 0, 137, 0, 138, 0, 139, 0, 137, 0), +"lods": [0.0435886, PackedByteArray(1, 0, 3, 0, 2, 0, 8, 0, 6, 0, 5, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 17, 0, 15, 0, 16, 0, 22, 0, 20, 0, 21, 0, 28, 0, 29, 0, 26, 0, 34, 0, 33, 0, 31, 0, 36, 0, 39, 0, 38, 0, 44, 0, 41, 0, 43, 0, 47, 0, 45, 0, 46, 0, 52, 0, 50, 0, 51, 0, 57, 0, 55, 0, 56, 0, 56, 0, 58, 0, 57, 0, 58, 0, 59, 0, 57, 0, 63, 0, 60, 0, 61, 0, 67, 0, 68, 0, 66, 0, 73, 0, 74, 0, 71, 0, 79, 0, 78, 0, 76, 0, 82, 0, 80, 0, 81, 0, 87, 0, 85, 0, 86, 0, 91, 0, 93, 0, 92, 0, 98, 0, 96, 0, 95, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 107, 0, 105, 0, 106, 0, 112, 0, 110, 0, 111, 0, 118, 0, 115, 0, 116, 0, 122, 0, 123, 0, 121, 0, 126, 0, 129, 0, 128, 0, 134, 0, 131, 0, 133, 0, 137, 0, 135, 0, 136, 0, 136, 0, 138, 0, 137, 0, 138, 0, 139, 0, 137, 0)], +"material": SubResource("StandardMaterial3D_swi18"), +"name": "heart", +"primitive": 3, +"vertex_count": 332, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 51, 139, 250, 202, 254, 255, 133, 205, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 51, 139, 250, 202, 254, 255, 133, 205, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 51, 139, 250, 202, 254, 255, 133, 205, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 51, 139, 250, 202, 254, 255, 133, 205, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 51, 139, 250, 202, 254, 255, 133, 205, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 250, 74, 52, 11, 254, 255, 121, 50, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 250, 74, 52, 11, 254, 255, 121, 50, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 250, 74, 52, 11, 254, 255, 121, 50, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 250, 74, 52, 11, 255, 255, 121, 50, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 250, 74, 52, 11, 254, 255, 121, 50, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 250, 74, 202, 244, 12, 27, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 250, 74, 202, 244, 12, 27, 255, 191, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 250, 74, 202, 244, 12, 27, 255, 191, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 250, 74, 202, 244, 12, 27, 255, 191, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 250, 74, 202, 244, 12, 27, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 47, 86, 250, 202, 12, 155, 255, 191, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 47, 86, 250, 202, 12, 155, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 47, 86, 250, 202, 12, 155, 255, 191, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 47, 86, 250, 202, 12, 155, 255, 191, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 47, 86, 250, 202, 12, 155, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 4, 181, 208, 41, 12, 155, 255, 63, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 4, 181, 208, 41, 12, 155, 255, 63, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 4, 181, 208, 41, 12, 155, 255, 63, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 4, 181, 208, 41, 12, 155, 255, 63, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 4, 181, 208, 41, 12, 155, 255, 63, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 4, 181, 46, 214, 0, 0, 120, 242, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 4, 181, 46, 214, 0, 0, 120, 242, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 4, 181, 46, 214, 0, 0, 120, 242, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 4, 181, 46, 214, 0, 0, 120, 242, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 4, 181, 46, 214, 0, 0, 133, 141, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 47, 86, 4, 53, 0, 0, 134, 13, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 47, 86, 4, 53, 0, 0, 134, 13, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 47, 86, 4, 53, 0, 0, 134, 13, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 47, 86, 4, 53, 0, 0, 134, 13, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 47, 86, 4, 53, 0, 0, 121, 114, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 207, 169, 250, 202, 255, 255, 120, 242, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 207, 169, 250, 202, 255, 255, 120, 242, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 207, 169, 250, 202, 255, 255, 120, 242, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 207, 169, 250, 202, 255, 255, 120, 242, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 207, 169, 250, 202, 255, 255, 120, 242, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 250, 74, 208, 41, 255, 255, 134, 13, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 250, 74, 208, 41, 255, 255, 134, 13, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 250, 74, 208, 41, 255, 255, 134, 13, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 208, 41, 255, 255, 134, 13, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 208, 41, 255, 255, 134, 13, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 203, 116, 250, 202, 242, 228, 255, 191, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 203, 116, 250, 202, 242, 228, 255, 191, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 203, 116, 250, 202, 242, 228, 255, 191, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 203, 116, 250, 202, 242, 228, 255, 191, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 203, 116, 250, 202, 242, 228, 255, 191, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 52, 11, 242, 228, 255, 63, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 4, 181, 52, 11, 242, 228, 255, 63, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 52, 11, 242, 228, 255, 63, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 4, 181, 52, 11, 242, 228, 255, 63, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 4, 181, 52, 11, 242, 228, 255, 63, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 4, 181, 202, 244, 0, 0, 120, 178, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 202, 244, 0, 0, 120, 178, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 4, 181, 202, 244, 0, 0, 120, 178, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 202, 244, 0, 0, 120, 178, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 4, 181, 202, 244, 0, 0, 120, 178, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 46, 214, 242, 100, 255, 191, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 46, 214, 242, 100, 255, 191, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 250, 74, 46, 214, 242, 100, 255, 191, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 250, 74, 46, 214, 242, 100, 255, 191, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 250, 74, 46, 214, 242, 100, 255, 191, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 207, 169, 4, 53, 242, 100, 255, 63, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 207, 169, 4, 53, 242, 100, 255, 63, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 207, 169, 4, 53, 242, 100, 255, 63, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 207, 169, 4, 53, 242, 100, 255, 63, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 207, 169, 4, 53, 242, 100, 255, 63, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 4, 181, 46, 214, 0, 0, 120, 242, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 4, 181, 46, 214, 0, 0, 120, 242, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 4, 181, 46, 214, 0, 0, 120, 242, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 46, 214, 0, 0, 120, 242, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 46, 214, 0, 0, 120, 242, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 47, 86, 4, 53, 0, 0, 134, 13, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 47, 86, 4, 53, 0, 0, 134, 13, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 47, 86, 4, 53, 0, 0, 134, 13, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 47, 86, 4, 53, 0, 0, 134, 13, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 47, 86, 4, 53, 0, 0, 134, 13, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 47, 86, 250, 202, 12, 155, 255, 191, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 47, 86, 250, 202, 12, 155, 255, 191, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 47, 86, 250, 202, 12, 155, 255, 191, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 47, 86, 250, 202, 12, 155, 255, 191, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 47, 86, 250, 202, 12, 155, 255, 191, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 208, 41, 12, 155, 255, 63, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 4, 181, 208, 41, 12, 155, 255, 63, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 208, 41, 12, 155, 255, 63, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 4, 181, 208, 41, 12, 155, 255, 63, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 4, 181, 208, 41, 12, 155, 255, 63, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 51, 139, 250, 202, 254, 255, 133, 205, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 51, 139, 250, 202, 255, 255, 120, 178, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 51, 139, 250, 202, 255, 255, 133, 205, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 51, 139, 250, 202, 255, 255, 120, 178, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 51, 139, 250, 202, 255, 255, 120, 178, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 52, 11, 255, 255, 121, 50, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 250, 74, 52, 11, 255, 255, 134, 77, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 250, 74, 52, 11, 254, 255, 121, 50, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 52, 11, 255, 255, 134, 77, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 250, 74, 52, 11, 255, 255, 134, 77, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 202, 244, 12, 27, 255, 191, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 202, 244, 12, 27, 255, 191, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 250, 74, 202, 244, 12, 27, 255, 191, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 250, 74, 202, 244, 12, 27, 255, 191, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 250, 74, 202, 244, 12, 27, 255, 191, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 203, 116, 250, 202, 242, 228, 255, 191, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 203, 116, 250, 202, 242, 228, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 203, 116, 250, 202, 242, 228, 255, 191, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 203, 116, 250, 202, 242, 228, 255, 191, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 203, 116, 250, 202, 242, 228, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 4, 181, 52, 11, 242, 228, 255, 63, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 4, 181, 52, 11, 242, 228, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 4, 181, 52, 11, 242, 228, 255, 63, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 4, 181, 52, 11, 242, 228, 255, 63, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 4, 181, 52, 11, 242, 228, 255, 63, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 250, 74, 46, 214, 242, 100, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 250, 74, 46, 214, 242, 100, 255, 191, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 250, 74, 46, 214, 242, 100, 255, 191, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 250, 74, 46, 214, 242, 100, 255, 191, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 250, 74, 46, 214, 242, 100, 255, 191, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 207, 169, 4, 53, 242, 100, 255, 63, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 207, 169, 4, 53, 242, 100, 255, 63, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 207, 169, 4, 53, 242, 100, 255, 63, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 207, 169, 4, 53, 242, 100, 255, 63, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 207, 169, 4, 53, 242, 100, 255, 63, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 207, 169, 250, 202, 255, 255, 120, 242, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 207, 169, 250, 202, 255, 255, 120, 242, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 207, 169, 250, 202, 255, 255, 120, 242, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 207, 169, 250, 202, 255, 255, 120, 242, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 207, 169, 250, 202, 255, 255, 120, 242, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 250, 74, 208, 41, 255, 255, 134, 13, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 250, 74, 208, 41, 255, 255, 134, 13, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 250, 74, 208, 41, 255, 255, 134, 13, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 250, 74, 208, 41, 255, 255, 134, 13, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 250, 74, 208, 41, 255, 255, 134, 13, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 4, 181, 202, 244, 0, 0, 120, 178, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 4, 181, 202, 244, 0, 0, 120, 178, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 4, 181, 202, 244, 0, 0, 120, 178, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 4, 181, 202, 244, 0, 0, 120, 178, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 4, 181, 202, 244, 0, 0, 120, 178, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 27, 37, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 80, 56, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 174, 199, 228, 90, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 174, 199, 228, 90, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 174, 199, 228, 90, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 174, 199, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 175, 71, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 175, 71, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 53, 19, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 53, 19, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 53, 19, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 53, 19, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 202, 108, 228, 90, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 202, 108, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 52, 147, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 52, 147, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 52, 147, 228, 90, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 52, 147, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 53, 19, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 53, 19, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 53, 19, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 53, 19, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 80, 56, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 80, 56, 228, 90, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 80, 56, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 80, 56, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 175, 71, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 175, 71, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 175, 71, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 202, 108, 228, 90, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 27, 37, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 227, 218, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 27, 37, 201, 236, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 80, 56, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 79, 184, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 79, 184, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 79, 184, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 79, 184, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 174, 199, 26, 165, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 174, 199, 26, 165, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 174, 199, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 174, 199, 26, 165, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 202, 108, 26, 165, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 202, 108, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 202, 108, 26, 165, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 202, 108, 26, 165, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 201, 236, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 201, 236, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 201, 236, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 201, 236, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 201, 236, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 201, 236, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 201, 236, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 201, 236, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 52, 147, 26, 165, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 52, 147, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 79, 184, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 79, 184, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 79, 184, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 79, 184, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 80, 56, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 80, 56, 26, 165, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 80, 56, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 202, 108, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"attribute_data": PackedByteArray(152, 52, 20, 63, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 152, 52, 20, 63, 96, 194, 30, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 153, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 189, 107, 209, 64, 152, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 139, 130, 144, 192, 194, 109, 146, 64, 65, 156, 55, 193, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 138, 60, 241, 192, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 36, 199, 185, 191, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 36, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 30, 9, 35, 64, 139, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 154, 52, 20, 63, 194, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 154, 52, 20, 63, 194, 109, 146, 64, 139, 130, 144, 64, 194, 109, 146, 64, 30, 9, 35, 64, 139, 223, 38, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 138, 60, 241, 64, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 192, 36, 199, 185, 191, 138, 60, 241, 192, 152, 97, 4, 63, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 152, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 94, 65, 62, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 192, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 154, 52, 20, 191, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 154, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 139, 130, 144, 192, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 65, 156, 55, 193, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 65, 156, 55, 65, 38, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 138, 60, 241, 64, 38, 199, 185, 191, 154, 52, 20, 63, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 67, 29, 24, 193, 138, 223, 90, 192, 138, 60, 241, 192, 36, 199, 185, 191, 65, 156, 55, 193, 36, 199, 185, 191, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 138, 60, 241, 192, 36, 199, 185, 191, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 155, 52, 20, 191, 94, 65, 62, 193, 155, 52, 20, 191, 96, 194, 30, 193, 31, 9, 35, 192, 92, 192, 93, 193, 139, 130, 144, 192, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 69, 22, 200, 191, 2, 72, 108, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 139, 130, 144, 192, 103, 145, 188, 192, 138, 60, 241, 192, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 26, 7, 98, 64, 62, 248, 153, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 138, 60, 241, 64, 247, 239, 49, 192, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 111, 76, 154, 63, 169, 157, 24, 193, 44, 43, 50, 63, 208, 98, 244, 192, 44, 43, 50, 191, 132, 196, 32, 193, 111, 76, 154, 191, 67, 88, 2, 193, 154, 52, 20, 63, 103, 145, 188, 192, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 191, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 196, 93, 8, 193, 170, 84, 20, 191, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 194, 220, 39, 65, 76, 123, 217, 63, 196, 93, 8, 65, 76, 123, 217, 63, 65, 156, 55, 65, 152, 116, 0, 191, 138, 60, 241, 64, 152, 116, 0, 191, 104, 49, 10, 193, 150, 21, 217, 63, 169, 157, 40, 193, 56, 38, 13, 64, 67, 88, 18, 193, 120, 99, 82, 190, 132, 196, 48, 193, 168, 169, 155, 62, 196, 93, 8, 193, 76, 123, 217, 63, 194, 220, 39, 193, 76, 123, 217, 63, 138, 60, 241, 192, 152, 116, 0, 191, 65, 156, 55, 193, 152, 116, 0, 191, 194, 220, 39, 65, 170, 84, 20, 191, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 132, 196, 48, 65, 168, 169, 155, 62, 169, 157, 40, 65, 56, 38, 13, 64, 67, 88, 18, 65, 120, 99, 82, 190, 104, 49, 10, 65, 150, 21, 217, 63, 154, 52, 20, 191, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 63, 176, 21, 39, 64, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 111, 76, 154, 63, 169, 157, 56, 65, 44, 43, 50, 191, 132, 196, 64, 65, 44, 43, 50, 63, 104, 49, 26, 65, 111, 76, 154, 191, 67, 88, 34, 65, 65, 156, 55, 193, 247, 239, 49, 192, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 26, 7, 98, 64, 2, 72, 108, 192, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 65, 156, 55, 65, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 69, 22, 200, 191, 62, 248, 153, 64, 26, 7, 98, 192, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 139, 130, 144, 192, 176, 21, 39, 64, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 65, 156, 55, 193, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 138, 60, 241, 192, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 154, 52, 20, 63, 176, 21, 39, 64, 44, 43, 178, 191, 18, 14, 52, 193, 44, 43, 178, 63, 180, 207, 205, 192, 111, 76, 26, 64, 91, 192, 35, 193, 111, 76, 26, 192, 32, 107, 238, 192, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 194, 220, 39, 65, 170, 84, 20, 191, 44, 43, 50, 191, 132, 196, 32, 193, 44, 43, 50, 63, 208, 98, 244, 192, 111, 76, 154, 63, 169, 157, 24, 193, 111, 76, 154, 191, 67, 88, 2, 193, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 26, 7, 98, 64, 2, 72, 108, 192, 139, 130, 144, 192, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 65, 156, 55, 193, 247, 239, 49, 192, 65, 156, 55, 65, 152, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 152, 116, 0, 191, 144, 53, 7, 193, 222, 152, 180, 191, 91, 192, 51, 193, 111, 76, 90, 64, 180, 207, 237, 192, 150, 21, 25, 64, 18, 14, 68, 193, 176, 172, 200, 190, 67, 88, 18, 193, 120, 99, 82, 190, 169, 157, 40, 193, 56, 38, 13, 64, 104, 49, 10, 193, 150, 21, 217, 63, 132, 196, 48, 193, 168, 169, 155, 62, 138, 60, 241, 192, 152, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 152, 116, 0, 191, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 138, 60, 241, 64, 247, 239, 49, 192, 67, 88, 18, 65, 120, 99, 82, 190, 169, 157, 40, 65, 56, 38, 13, 64, 132, 196, 48, 65, 168, 169, 155, 62, 104, 49, 10, 65, 150, 21, 217, 63, 139, 130, 144, 192, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 144, 53, 7, 65, 222, 152, 180, 191, 91, 192, 51, 65, 111, 76, 90, 64, 18, 14, 68, 65, 176, 172, 200, 190, 180, 207, 237, 64, 150, 21, 25, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 26, 7, 98, 64, 62, 248, 153, 64, 44, 43, 50, 63, 104, 49, 26, 65, 44, 43, 50, 191, 132, 196, 64, 65, 111, 76, 154, 63, 169, 157, 56, 65, 111, 76, 154, 191, 67, 88, 34, 65, 44, 43, 178, 63, 218, 231, 6, 65, 44, 43, 178, 191, 18, 14, 84, 65, 111, 76, 26, 64, 91, 192, 67, 65, 111, 76, 26, 192, 144, 53, 23, 65, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 196, 93, 8, 193, 170, 84, 20, 191, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 63, 103, 145, 188, 192, 138, 60, 241, 64, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 65, 156, 55, 65, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 111, 76, 26, 64, 91, 192, 35, 193, 44, 43, 178, 63, 180, 207, 205, 192, 44, 43, 178, 191, 18, 14, 52, 193, 111, 76, 26, 192, 32, 107, 238, 192, 180, 207, 237, 192, 150, 21, 25, 64, 91, 192, 51, 193, 111, 76, 90, 64, 144, 53, 7, 193, 222, 152, 180, 191, 18, 14, 68, 193, 176, 172, 200, 190, 18, 14, 68, 65, 176, 172, 200, 190, 91, 192, 51, 65, 111, 76, 90, 64, 144, 53, 7, 65, 222, 152, 180, 191, 180, 207, 237, 64, 150, 21, 25, 64, 111, 76, 26, 64, 91, 192, 67, 65, 44, 43, 178, 191, 18, 14, 84, 65, 44, 43, 178, 63, 218, 231, 6, 65, 111, 76, 26, 192, 144, 53, 23, 65), +"format": 4119, +"index_count": 120, +"index_data": PackedByteArray(142, 0, 140, 0, 141, 0, 141, 0, 143, 0, 142, 0, 146, 0, 144, 0, 145, 0, 145, 0, 147, 0, 146, 0, 150, 0, 148, 0, 149, 0, 149, 0, 151, 0, 150, 0, 154, 0, 152, 0, 153, 0, 153, 0, 155, 0, 154, 0, 158, 0, 156, 0, 157, 0, 157, 0, 159, 0, 158, 0, 162, 0, 160, 0, 161, 0, 161, 0, 163, 0, 162, 0, 166, 0, 164, 0, 165, 0, 165, 0, 167, 0, 166, 0, 170, 0, 168, 0, 169, 0, 169, 0, 171, 0, 170, 0, 174, 0, 172, 0, 173, 0, 173, 0, 175, 0, 174, 0, 178, 0, 176, 0, 177, 0, 177, 0, 179, 0, 178, 0, 182, 0, 180, 0, 181, 0, 181, 0, 183, 0, 182, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 190, 0, 188, 0, 189, 0, 189, 0, 191, 0, 190, 0, 194, 0, 192, 0, 193, 0, 193, 0, 195, 0, 194, 0, 198, 0, 196, 0, 197, 0, 197, 0, 199, 0, 198, 0, 202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 213, 0, 215, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0), +"material": SubResource("StandardMaterial3D_cvgmy"), +"name": "grass", +"primitive": 3, +"vertex_count": 332, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 51, 139, 250, 202, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 51, 139, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 51, 139, 250, 202, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 250, 74, 52, 11, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 250, 74, 52, 11, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 250, 74, 52, 11, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 250, 74, 202, 244, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 250, 74, 202, 244, 0, 0, 0, 128, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 250, 74, 202, 244, 0, 0, 0, 128, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 250, 74, 202, 244, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 47, 86, 250, 202, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 47, 86, 250, 202, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 47, 86, 250, 202, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 4, 181, 208, 41, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 4, 181, 208, 41, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 4, 181, 208, 41, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 4, 181, 46, 214, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 4, 181, 46, 214, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 4, 181, 46, 214, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 47, 86, 4, 53, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 47, 86, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 47, 86, 4, 53, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 47, 86, 4, 53, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 47, 86, 4, 53, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 207, 169, 250, 202, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 207, 169, 250, 202, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 207, 169, 250, 202, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 250, 74, 208, 41, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 250, 74, 208, 41, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 250, 74, 208, 41, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 203, 116, 250, 202, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 203, 116, 250, 202, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 203, 116, 250, 202, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 52, 11, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 4, 181, 52, 11, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 52, 11, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 4, 181, 52, 11, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 4, 181, 52, 11, 0, 0, 0, 128, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 4, 181, 202, 244, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 202, 244, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 202, 244, 0, 0, 0, 128, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 46, 214, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 250, 74, 46, 214, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 250, 74, 46, 214, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 207, 169, 4, 53, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 207, 169, 4, 53, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 207, 169, 4, 53, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 4, 181, 46, 214, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 4, 181, 46, 214, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 46, 214, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 47, 86, 4, 53, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 47, 86, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 47, 86, 4, 53, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 47, 86, 4, 53, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 47, 86, 4, 53, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 47, 86, 250, 202, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 47, 86, 250, 202, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 47, 86, 250, 202, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 208, 41, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 4, 181, 208, 41, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 208, 41, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 4, 181, 208, 41, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 4, 181, 208, 41, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 51, 139, 250, 202, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 51, 139, 250, 202, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 51, 139, 250, 202, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 250, 74, 52, 11, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 250, 74, 52, 11, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 52, 11, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 202, 244, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 202, 244, 0, 0, 0, 128, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 250, 74, 202, 244, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 250, 74, 202, 244, 0, 0, 0, 128, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 203, 116, 250, 202, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 203, 116, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 203, 116, 250, 202, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 4, 181, 52, 11, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 4, 181, 52, 11, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 250, 74, 46, 214, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 250, 74, 46, 214, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 250, 74, 46, 214, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 207, 169, 4, 53, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 207, 169, 4, 53, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 207, 169, 4, 53, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 207, 169, 250, 202, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 207, 169, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 207, 169, 250, 202, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 250, 74, 208, 41, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 250, 74, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 250, 74, 208, 41, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 250, 74, 208, 41, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 250, 74, 208, 41, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 4, 181, 202, 244, 0, 0, 0, 128, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 27, 37, 53, 19, 12, 27, 255, 191, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 27, 37, 53, 19, 12, 27, 255, 191, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 27, 37, 53, 19, 12, 27, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 27, 37, 53, 19, 12, 27, 255, 191, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 80, 56, 228, 90, 12, 155, 255, 191, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 80, 56, 228, 90, 12, 155, 255, 191, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 80, 56, 228, 90, 12, 155, 255, 191, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 80, 56, 228, 90, 12, 155, 255, 191, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 52, 147, 228, 90, 255, 255, 133, 205, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 52, 147, 228, 90, 255, 255, 133, 205, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 52, 147, 228, 90, 255, 255, 133, 205, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 52, 147, 228, 90, 255, 255, 133, 205, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 227, 218, 175, 71, 0, 0, 120, 242, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 227, 218, 175, 71, 0, 0, 120, 242, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 227, 218, 175, 71, 0, 0, 120, 242, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 227, 218, 175, 71, 0, 0, 120, 242, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 0, 0, 0, 0, 255, 191, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 0, 0, 0, 0, 255, 191, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 174, 199, 228, 90, 255, 255, 120, 242, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 174, 199, 228, 90, 255, 255, 120, 242, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 174, 199, 228, 90, 255, 255, 120, 242, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 174, 199, 228, 90, 254, 255, 120, 242, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 175, 71, 242, 100, 255, 191, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 175, 71, 242, 100, 255, 191, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 175, 71, 242, 100, 255, 191, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 175, 71, 242, 100, 255, 191, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 53, 19, 0, 0, 120, 178, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 53, 19, 0, 0, 120, 178, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 53, 19, 0, 0, 120, 178, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 53, 19, 0, 0, 120, 178, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 202, 108, 228, 90, 242, 228, 255, 191, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 202, 108, 228, 90, 242, 228, 255, 191, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 202, 108, 228, 90, 242, 228, 255, 191, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 202, 108, 228, 90, 242, 228, 255, 191, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 255, 191, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 255, 191, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 255, 191, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 255, 191, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 52, 147, 228, 90, 255, 255, 120, 178, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 52, 147, 228, 90, 255, 255, 120, 178, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 52, 147, 228, 90, 255, 255, 120, 178, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 52, 147, 228, 90, 255, 255, 133, 205, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 53, 19, 12, 27, 255, 191, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 53, 19, 12, 27, 255, 191, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 53, 19, 12, 27, 255, 191, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 53, 19, 12, 27, 255, 191, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 255, 191, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 255, 191, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 255, 191, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 255, 191, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 80, 56, 228, 90, 12, 155, 255, 191, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 80, 56, 228, 90, 12, 155, 255, 191, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 80, 56, 228, 90, 12, 155, 255, 191, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 80, 56, 228, 90, 12, 155, 255, 191, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 175, 71, 0, 0, 120, 242, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 175, 71, 0, 0, 120, 242, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 175, 71, 0, 0, 120, 242, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 175, 71, 0, 0, 120, 242, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 0, 0, 0, 0, 255, 191, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 174, 199, 228, 90, 255, 255, 133, 141, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 174, 199, 228, 90, 255, 255, 133, 141, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 174, 199, 228, 90, 255, 255, 133, 141, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 174, 199, 228, 90, 255, 255, 133, 141, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 202, 108, 228, 90, 242, 228, 255, 191, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 202, 108, 228, 90, 242, 228, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 202, 108, 228, 90, 242, 228, 255, 191, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 202, 108, 228, 90, 242, 228, 255, 191, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 27, 37, 175, 71, 242, 100, 255, 191, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 27, 37, 175, 71, 242, 100, 255, 191, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 27, 37, 175, 71, 242, 100, 255, 191, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 27, 37, 175, 71, 242, 100, 255, 191, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 227, 218, 53, 19, 0, 0, 120, 178, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 227, 218, 53, 19, 0, 0, 120, 178, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 227, 218, 53, 19, 0, 0, 120, 178, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 227, 218, 53, 19, 0, 0, 120, 178, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 27, 37, 201, 236, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 80, 56, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 79, 184, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 79, 184, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 79, 184, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 79, 184, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 174, 199, 26, 165, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 174, 199, 26, 165, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 174, 199, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 174, 199, 26, 165, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 202, 108, 26, 165, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 202, 108, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 202, 108, 26, 165, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 202, 108, 26, 165, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 201, 236, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 201, 236, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 201, 236, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 201, 236, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 201, 236, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 201, 236, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 201, 236, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 201, 236, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 52, 147, 26, 165, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 52, 147, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 79, 184, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 79, 184, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 79, 184, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 79, 184, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 80, 56, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 80, 56, 26, 165, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 80, 56, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 202, 108, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"attribute_data": PackedByteArray(152, 52, 20, 63, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 152, 52, 20, 63, 96, 194, 30, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 153, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 189, 107, 209, 64, 152, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 139, 130, 144, 192, 194, 109, 146, 64, 65, 156, 55, 193, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 138, 60, 241, 192, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 36, 199, 185, 191, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 36, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 30, 9, 35, 64, 139, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 154, 52, 20, 63, 194, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 154, 52, 20, 63, 194, 109, 146, 64, 139, 130, 144, 64, 194, 109, 146, 64, 30, 9, 35, 64, 139, 223, 38, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 138, 60, 241, 64, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 192, 36, 199, 185, 191, 138, 60, 241, 192, 152, 97, 4, 63, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 152, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 94, 65, 62, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 192, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 154, 52, 20, 191, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 154, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 139, 130, 144, 192, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 65, 156, 55, 193, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 65, 156, 55, 65, 38, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 138, 60, 241, 64, 38, 199, 185, 191, 154, 52, 20, 63, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 67, 29, 24, 193, 138, 223, 90, 192, 138, 60, 241, 192, 36, 199, 185, 191, 65, 156, 55, 193, 36, 199, 185, 191, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 138, 60, 241, 192, 36, 199, 185, 191, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 155, 52, 20, 191, 94, 65, 62, 193, 155, 52, 20, 191, 96, 194, 30, 193, 31, 9, 35, 192, 92, 192, 93, 193, 139, 130, 144, 192, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 69, 22, 200, 191, 2, 72, 108, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 139, 130, 144, 192, 103, 145, 188, 192, 138, 60, 241, 192, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 26, 7, 98, 64, 62, 248, 153, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 138, 60, 241, 64, 247, 239, 49, 192, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 111, 76, 154, 63, 169, 157, 24, 193, 44, 43, 50, 63, 208, 98, 244, 192, 44, 43, 50, 191, 132, 196, 32, 193, 111, 76, 154, 191, 67, 88, 2, 193, 154, 52, 20, 63, 103, 145, 188, 192, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 191, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 196, 93, 8, 193, 170, 84, 20, 191, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 194, 220, 39, 65, 76, 123, 217, 63, 196, 93, 8, 65, 76, 123, 217, 63, 65, 156, 55, 65, 152, 116, 0, 191, 138, 60, 241, 64, 152, 116, 0, 191, 104, 49, 10, 193, 150, 21, 217, 63, 169, 157, 40, 193, 56, 38, 13, 64, 67, 88, 18, 193, 120, 99, 82, 190, 132, 196, 48, 193, 168, 169, 155, 62, 196, 93, 8, 193, 76, 123, 217, 63, 194, 220, 39, 193, 76, 123, 217, 63, 138, 60, 241, 192, 152, 116, 0, 191, 65, 156, 55, 193, 152, 116, 0, 191, 194, 220, 39, 65, 170, 84, 20, 191, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 132, 196, 48, 65, 168, 169, 155, 62, 169, 157, 40, 65, 56, 38, 13, 64, 67, 88, 18, 65, 120, 99, 82, 190, 104, 49, 10, 65, 150, 21, 217, 63, 154, 52, 20, 191, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 63, 176, 21, 39, 64, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 111, 76, 154, 63, 169, 157, 56, 65, 44, 43, 50, 191, 132, 196, 64, 65, 44, 43, 50, 63, 104, 49, 26, 65, 111, 76, 154, 191, 67, 88, 34, 65, 65, 156, 55, 193, 247, 239, 49, 192, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 26, 7, 98, 64, 2, 72, 108, 192, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 65, 156, 55, 65, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 69, 22, 200, 191, 62, 248, 153, 64, 26, 7, 98, 192, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 139, 130, 144, 192, 176, 21, 39, 64, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 65, 156, 55, 193, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 138, 60, 241, 192, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 154, 52, 20, 63, 176, 21, 39, 64, 44, 43, 178, 191, 18, 14, 52, 193, 44, 43, 178, 63, 180, 207, 205, 192, 111, 76, 26, 64, 91, 192, 35, 193, 111, 76, 26, 192, 32, 107, 238, 192, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 194, 220, 39, 65, 170, 84, 20, 191, 44, 43, 50, 191, 132, 196, 32, 193, 44, 43, 50, 63, 208, 98, 244, 192, 111, 76, 154, 63, 169, 157, 24, 193, 111, 76, 154, 191, 67, 88, 2, 193, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 26, 7, 98, 64, 2, 72, 108, 192, 139, 130, 144, 192, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 65, 156, 55, 193, 247, 239, 49, 192, 65, 156, 55, 65, 152, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 152, 116, 0, 191, 144, 53, 7, 193, 222, 152, 180, 191, 91, 192, 51, 193, 111, 76, 90, 64, 180, 207, 237, 192, 150, 21, 25, 64, 18, 14, 68, 193, 176, 172, 200, 190, 67, 88, 18, 193, 120, 99, 82, 190, 169, 157, 40, 193, 56, 38, 13, 64, 104, 49, 10, 193, 150, 21, 217, 63, 132, 196, 48, 193, 168, 169, 155, 62, 138, 60, 241, 192, 152, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 152, 116, 0, 191, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 138, 60, 241, 64, 247, 239, 49, 192, 67, 88, 18, 65, 120, 99, 82, 190, 169, 157, 40, 65, 56, 38, 13, 64, 132, 196, 48, 65, 168, 169, 155, 62, 104, 49, 10, 65, 150, 21, 217, 63, 139, 130, 144, 192, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 144, 53, 7, 65, 222, 152, 180, 191, 91, 192, 51, 65, 111, 76, 90, 64, 18, 14, 68, 65, 176, 172, 200, 190, 180, 207, 237, 64, 150, 21, 25, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 26, 7, 98, 64, 62, 248, 153, 64, 44, 43, 50, 63, 104, 49, 26, 65, 44, 43, 50, 191, 132, 196, 64, 65, 111, 76, 154, 63, 169, 157, 56, 65, 111, 76, 154, 191, 67, 88, 34, 65, 44, 43, 178, 63, 218, 231, 6, 65, 44, 43, 178, 191, 18, 14, 84, 65, 111, 76, 26, 64, 91, 192, 67, 65, 111, 76, 26, 192, 144, 53, 23, 65, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 196, 93, 8, 193, 170, 84, 20, 191, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 63, 103, 145, 188, 192, 138, 60, 241, 64, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 65, 156, 55, 65, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 111, 76, 26, 64, 91, 192, 35, 193, 44, 43, 178, 63, 180, 207, 205, 192, 44, 43, 178, 191, 18, 14, 52, 193, 111, 76, 26, 192, 32, 107, 238, 192, 180, 207, 237, 192, 150, 21, 25, 64, 91, 192, 51, 193, 111, 76, 90, 64, 144, 53, 7, 193, 222, 152, 180, 191, 18, 14, 68, 193, 176, 172, 200, 190, 18, 14, 68, 65, 176, 172, 200, 190, 91, 192, 51, 65, 111, 76, 90, 64, 144, 53, 7, 65, 222, 152, 180, 191, 180, 207, 237, 64, 150, 21, 25, 64, 111, 76, 26, 64, 91, 192, 67, 65, 44, 43, 178, 191, 18, 14, 84, 65, 44, 43, 178, 63, 218, 231, 6, 65, 111, 76, 26, 192, 144, 53, 23, 65), +"format": 4119, +"index_count": 144, +"index_data": PackedByteArray(222, 0, 220, 0, 221, 0, 223, 0, 221, 0, 220, 0, 226, 0, 224, 0, 225, 0, 227, 0, 225, 0, 224, 0, 230, 0, 228, 0, 229, 0, 231, 0, 229, 0, 228, 0, 234, 0, 232, 0, 233, 0, 235, 0, 233, 0, 232, 0, 238, 0, 236, 0, 237, 0, 239, 0, 237, 0, 236, 0, 242, 0, 240, 0, 241, 0, 243, 0, 241, 0, 240, 0, 246, 0, 244, 0, 245, 0, 247, 0, 245, 0, 244, 0, 250, 0, 248, 0, 249, 0, 251, 0, 249, 0, 248, 0, 254, 0, 252, 0, 253, 0, 255, 0, 253, 0, 252, 0, 2, 1, 0, 1, 1, 1, 3, 1, 1, 1, 0, 1, 6, 1, 4, 1, 5, 1, 7, 1, 5, 1, 4, 1, 10, 1, 8, 1, 9, 1, 11, 1, 9, 1, 8, 1, 14, 1, 12, 1, 13, 1, 15, 1, 13, 1, 12, 1, 18, 1, 16, 1, 17, 1, 19, 1, 17, 1, 16, 1, 22, 1, 20, 1, 21, 1, 23, 1, 21, 1, 20, 1, 26, 1, 24, 1, 25, 1, 27, 1, 25, 1, 24, 1, 30, 1, 28, 1, 29, 1, 31, 1, 29, 1, 28, 1, 34, 1, 32, 1, 33, 1, 35, 1, 33, 1, 32, 1, 38, 1, 36, 1, 37, 1, 39, 1, 37, 1, 36, 1, 42, 1, 40, 1, 41, 1, 43, 1, 41, 1, 40, 1, 46, 1, 44, 1, 45, 1, 47, 1, 45, 1, 44, 1, 50, 1, 48, 1, 49, 1, 51, 1, 49, 1, 48, 1, 54, 1, 52, 1, 53, 1, 55, 1, 53, 1, 52, 1, 58, 1, 56, 1, 57, 1, 59, 1, 57, 1, 56, 1), +"material": SubResource("StandardMaterial3D_tnd7m"), +"name": "snow", +"primitive": 3, +"vertex_count": 332, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 51, 139, 250, 202, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 51, 139, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 51, 139, 250, 202, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 250, 74, 52, 11, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 250, 74, 52, 11, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 250, 74, 52, 11, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 250, 74, 202, 244, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 250, 74, 202, 244, 0, 0, 0, 128, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 250, 74, 202, 244, 0, 0, 0, 128, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 250, 74, 202, 244, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 47, 86, 250, 202, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 47, 86, 250, 202, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 47, 86, 250, 202, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 4, 181, 208, 41, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 4, 181, 208, 41, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 4, 181, 208, 41, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 4, 181, 46, 214, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 4, 181, 46, 214, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 4, 181, 46, 214, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 47, 86, 4, 53, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 47, 86, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 47, 86, 4, 53, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 47, 86, 4, 53, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 47, 86, 4, 53, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 207, 169, 250, 202, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 207, 169, 250, 202, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 207, 169, 250, 202, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 250, 74, 208, 41, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 250, 74, 208, 41, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 250, 74, 208, 41, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 203, 116, 250, 202, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 203, 116, 250, 202, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 203, 116, 250, 202, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 52, 11, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 4, 181, 52, 11, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 52, 11, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 4, 181, 52, 11, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 4, 181, 52, 11, 0, 0, 0, 128, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 4, 181, 202, 244, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 202, 244, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 202, 244, 0, 0, 0, 128, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 46, 214, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 250, 74, 46, 214, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 250, 74, 46, 214, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 207, 169, 4, 53, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 207, 169, 4, 53, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 207, 169, 4, 53, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 4, 181, 46, 214, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 4, 181, 46, 214, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 46, 214, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 47, 86, 4, 53, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 47, 86, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 47, 86, 4, 53, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 47, 86, 4, 53, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 47, 86, 4, 53, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 47, 86, 250, 202, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 47, 86, 250, 202, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 47, 86, 250, 202, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 208, 41, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 4, 181, 208, 41, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 208, 41, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 4, 181, 208, 41, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 4, 181, 208, 41, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 51, 139, 250, 202, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 51, 139, 250, 202, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 51, 139, 250, 202, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 250, 74, 52, 11, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 250, 74, 52, 11, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 52, 11, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 202, 244, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 202, 244, 0, 0, 0, 128, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 250, 74, 202, 244, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 250, 74, 202, 244, 0, 0, 0, 128, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 203, 116, 250, 202, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 203, 116, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 203, 116, 250, 202, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 4, 181, 52, 11, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 4, 181, 52, 11, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 250, 74, 46, 214, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 250, 74, 46, 214, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 250, 74, 46, 214, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 207, 169, 4, 53, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 207, 169, 4, 53, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 207, 169, 4, 53, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 207, 169, 250, 202, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 207, 169, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 207, 169, 250, 202, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 250, 74, 208, 41, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 250, 74, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 250, 74, 208, 41, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 250, 74, 208, 41, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 250, 74, 208, 41, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 4, 181, 202, 244, 0, 0, 0, 128, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 27, 37, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 80, 56, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 174, 199, 228, 90, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 174, 199, 228, 90, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 174, 199, 228, 90, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 174, 199, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 175, 71, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 175, 71, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 53, 19, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 53, 19, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 53, 19, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 53, 19, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 202, 108, 228, 90, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 202, 108, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 52, 147, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 52, 147, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 52, 147, 228, 90, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 52, 147, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 53, 19, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 53, 19, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 53, 19, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 53, 19, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 80, 56, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 80, 56, 228, 90, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 80, 56, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 80, 56, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 175, 71, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 175, 71, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 175, 71, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 202, 108, 228, 90, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 27, 37, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 227, 218, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 52, 147, 26, 165, 12, 27, 255, 63, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 52, 147, 26, 165, 12, 27, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 52, 147, 26, 165, 12, 27, 255, 63, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 52, 147, 26, 165, 12, 27, 255, 63, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 227, 218, 79, 184, 12, 155, 255, 63, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 227, 218, 79, 184, 12, 155, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 227, 218, 79, 184, 12, 155, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 227, 218, 79, 184, 12, 155, 255, 63, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 27, 37, 201, 236, 255, 255, 121, 50, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 27, 37, 201, 236, 255, 255, 121, 50, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 27, 37, 201, 236, 255, 255, 121, 50, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 27, 37, 201, 236, 255, 255, 121, 50, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 80, 56, 26, 165, 0, 0, 134, 13, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 80, 56, 26, 165, 0, 0, 134, 13, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 80, 56, 26, 165, 0, 0, 134, 13, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 80, 56, 26, 165, 0, 0, 134, 13, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 255, 255, 0, 0, 255, 63, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 79, 184, 255, 255, 134, 13, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 79, 184, 255, 255, 134, 13, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 79, 184, 255, 255, 134, 13, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 79, 184, 254, 255, 134, 13, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 174, 199, 26, 165, 242, 100, 255, 63, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 174, 199, 26, 165, 242, 100, 255, 63, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 174, 199, 26, 165, 242, 100, 255, 63, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 174, 199, 26, 165, 242, 100, 255, 63, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 202, 108, 26, 165, 0, 0, 134, 77, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 202, 108, 26, 165, 0, 0, 134, 77, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 202, 108, 26, 165, 0, 0, 134, 77, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 202, 108, 26, 165, 0, 0, 134, 77, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 201, 236, 242, 228, 255, 63, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 201, 236, 242, 228, 255, 63, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 201, 236, 242, 228, 255, 63, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 201, 236, 242, 228, 255, 63, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 255, 63, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 255, 63, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 255, 63, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 255, 63, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 255, 63, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 255, 63, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 255, 63, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 255, 63, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 201, 236, 255, 255, 134, 77, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 201, 236, 255, 255, 134, 77, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 201, 236, 255, 255, 134, 77, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 201, 236, 255, 255, 121, 50, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 52, 147, 26, 165, 12, 27, 255, 63, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 52, 147, 26, 165, 12, 27, 255, 63, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 52, 147, 26, 165, 12, 27, 255, 63, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 52, 147, 26, 165, 12, 27, 255, 63, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 255, 63, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 255, 63, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 255, 63, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 255, 63, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 79, 184, 12, 155, 255, 63, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 79, 184, 12, 155, 255, 63, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 79, 184, 12, 155, 255, 63, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 79, 184, 12, 155, 255, 63, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 255, 63, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 255, 63, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 255, 63, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 255, 63, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 80, 56, 26, 165, 0, 0, 134, 13, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 80, 56, 26, 165, 0, 0, 134, 13, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 80, 56, 26, 165, 0, 0, 134, 13, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 80, 56, 26, 165, 0, 0, 134, 13, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 255, 255, 0, 0, 255, 63, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 255, 255, 0, 0, 255, 63, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 27, 37, 79, 184, 255, 255, 121, 114, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 27, 37, 79, 184, 255, 255, 121, 114, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 27, 37, 79, 184, 255, 255, 121, 114, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 27, 37, 79, 184, 255, 255, 121, 114, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 227, 218, 201, 236, 242, 228, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 227, 218, 201, 236, 242, 228, 255, 63, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 227, 218, 201, 236, 242, 228, 255, 63, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 227, 218, 201, 236, 242, 228, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 174, 199, 26, 165, 242, 100, 255, 63, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 174, 199, 26, 165, 242, 100, 255, 63, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 174, 199, 26, 165, 242, 100, 255, 63, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 174, 199, 26, 165, 242, 100, 255, 63, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 202, 108, 26, 165, 0, 0, 134, 77, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 202, 108, 26, 165, 0, 0, 134, 77, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 202, 108, 26, 165, 0, 0, 134, 77, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 202, 108, 26, 165, 0, 0, 134, 77, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 0, 0, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.381948, 0, -0.381948, 0.763896, 0.1, 0.763896), +"attribute_data": PackedByteArray(152, 52, 20, 63, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 152, 52, 20, 63, 96, 194, 30, 193, 30, 9, 35, 64, 92, 192, 93, 193, 152, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 139, 130, 144, 64, 94, 65, 62, 193, 153, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 189, 107, 209, 64, 152, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 139, 130, 144, 192, 194, 109, 146, 64, 65, 156, 55, 193, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 138, 60, 241, 192, 106, 74, 121, 192, 65, 156, 55, 193, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 36, 199, 185, 191, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 138, 60, 241, 64, 36, 199, 185, 191, 65, 156, 55, 65, 36, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 30, 9, 35, 64, 139, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 154, 52, 20, 63, 194, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 154, 52, 20, 63, 194, 109, 146, 64, 139, 130, 144, 64, 194, 109, 146, 64, 30, 9, 35, 64, 139, 223, 38, 64, 154, 52, 20, 63, 189, 107, 209, 64, 139, 130, 144, 64, 189, 107, 209, 64, 138, 60, 241, 64, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 192, 36, 199, 185, 191, 138, 60, 241, 192, 152, 97, 4, 63, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 152, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 154, 52, 20, 191, 94, 65, 62, 193, 139, 130, 144, 192, 96, 194, 30, 193, 154, 52, 20, 191, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 30, 9, 35, 192, 92, 192, 93, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 94, 65, 62, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 154, 52, 20, 63, 94, 65, 62, 193, 139, 130, 144, 64, 94, 65, 62, 193, 30, 9, 35, 64, 92, 192, 93, 193, 139, 130, 144, 64, 96, 194, 30, 193, 154, 52, 20, 63, 96, 194, 30, 193, 139, 130, 144, 192, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 154, 52, 20, 191, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 154, 52, 20, 191, 189, 107, 209, 64, 139, 130, 144, 192, 194, 109, 146, 64, 139, 130, 144, 192, 189, 107, 209, 64, 154, 52, 20, 191, 194, 109, 146, 64, 30, 9, 35, 192, 139, 223, 38, 64, 65, 156, 55, 193, 49, 163, 187, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 106, 74, 121, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 193, 106, 74, 121, 192, 67, 29, 24, 193, 44, 161, 250, 192, 65, 156, 55, 193, 49, 163, 187, 192, 138, 60, 241, 192, 106, 74, 121, 192, 138, 60, 241, 192, 49, 163, 187, 192, 65, 156, 55, 65, 150, 97, 4, 63, 138, 60, 241, 64, 150, 97, 4, 63, 65, 156, 55, 65, 38, 199, 185, 191, 67, 29, 24, 65, 138, 223, 90, 192, 138, 60, 241, 64, 38, 199, 185, 191, 154, 52, 20, 63, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 139, 130, 144, 64, 189, 107, 209, 64, 155, 52, 20, 63, 193, 109, 146, 64, 154, 52, 20, 63, 189, 107, 209, 64, 31, 9, 35, 64, 138, 223, 38, 64, 139, 130, 144, 64, 194, 109, 146, 64, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 65, 156, 55, 65, 49, 163, 187, 192, 138, 60, 241, 64, 106, 74, 121, 192, 65, 156, 55, 65, 106, 74, 121, 192, 138, 60, 241, 64, 49, 163, 187, 192, 67, 29, 24, 65, 44, 161, 250, 192, 67, 29, 24, 193, 138, 223, 90, 192, 138, 60, 241, 192, 36, 199, 185, 191, 65, 156, 55, 193, 36, 199, 185, 191, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 65, 156, 55, 193, 36, 199, 185, 191, 138, 60, 241, 192, 36, 199, 185, 191, 67, 29, 24, 193, 138, 223, 90, 192, 65, 156, 55, 193, 150, 97, 4, 63, 138, 60, 241, 192, 150, 97, 4, 63, 155, 52, 20, 191, 94, 65, 62, 193, 155, 52, 20, 191, 96, 194, 30, 193, 31, 9, 35, 192, 92, 192, 93, 193, 139, 130, 144, 192, 96, 194, 30, 193, 139, 130, 144, 192, 94, 65, 62, 193, 69, 22, 200, 191, 2, 72, 108, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 139, 130, 144, 192, 103, 145, 188, 192, 138, 60, 241, 192, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 26, 7, 98, 64, 62, 248, 153, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 138, 60, 241, 64, 247, 239, 49, 192, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 111, 76, 154, 63, 169, 157, 24, 193, 44, 43, 50, 63, 208, 98, 244, 192, 44, 43, 50, 191, 132, 196, 32, 193, 111, 76, 154, 191, 67, 88, 2, 193, 154, 52, 20, 63, 103, 145, 188, 192, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 191, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 196, 93, 8, 193, 170, 84, 20, 191, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 194, 220, 39, 65, 76, 123, 217, 63, 196, 93, 8, 65, 76, 123, 217, 63, 65, 156, 55, 65, 152, 116, 0, 191, 138, 60, 241, 64, 152, 116, 0, 191, 104, 49, 10, 193, 150, 21, 217, 63, 169, 157, 40, 193, 56, 38, 13, 64, 67, 88, 18, 193, 120, 99, 82, 190, 132, 196, 48, 193, 168, 169, 155, 62, 196, 93, 8, 193, 76, 123, 217, 63, 194, 220, 39, 193, 76, 123, 217, 63, 138, 60, 241, 192, 152, 116, 0, 191, 65, 156, 55, 193, 152, 116, 0, 191, 194, 220, 39, 65, 170, 84, 20, 191, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 132, 196, 48, 65, 168, 169, 155, 62, 169, 157, 40, 65, 56, 38, 13, 64, 67, 88, 18, 65, 120, 99, 82, 190, 104, 49, 10, 65, 150, 21, 217, 63, 154, 52, 20, 191, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 154, 52, 20, 63, 176, 21, 39, 64, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 111, 76, 154, 63, 169, 157, 56, 65, 44, 43, 50, 191, 132, 196, 64, 65, 44, 43, 50, 63, 104, 49, 26, 65, 111, 76, 154, 191, 67, 88, 34, 65, 65, 156, 55, 193, 247, 239, 49, 192, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 26, 7, 98, 64, 2, 72, 108, 192, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 65, 156, 55, 65, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 69, 22, 200, 191, 62, 248, 153, 64, 26, 7, 98, 192, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 139, 130, 144, 192, 176, 21, 39, 64, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 69, 22, 200, 191, 2, 72, 108, 192, 139, 130, 144, 192, 103, 145, 188, 192, 65, 156, 55, 193, 154, 116, 0, 191, 196, 93, 8, 193, 76, 123, 217, 63, 138, 60, 241, 192, 154, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 139, 130, 144, 64, 176, 21, 39, 64, 69, 22, 200, 63, 62, 248, 153, 64, 26, 7, 98, 64, 62, 248, 153, 64, 154, 52, 20, 63, 176, 21, 39, 64, 44, 43, 178, 191, 18, 14, 52, 193, 44, 43, 178, 63, 180, 207, 205, 192, 111, 76, 26, 64, 91, 192, 35, 193, 111, 76, 26, 192, 32, 107, 238, 192, 196, 93, 8, 65, 170, 84, 20, 191, 65, 156, 55, 65, 247, 239, 49, 192, 138, 60, 241, 64, 247, 239, 49, 192, 194, 220, 39, 65, 170, 84, 20, 191, 44, 43, 50, 191, 132, 196, 32, 193, 44, 43, 50, 63, 208, 98, 244, 192, 111, 76, 154, 63, 169, 157, 24, 193, 111, 76, 154, 191, 67, 88, 2, 193, 69, 22, 200, 63, 2, 72, 108, 192, 139, 130, 144, 64, 103, 145, 188, 192, 154, 52, 20, 63, 103, 145, 188, 192, 26, 7, 98, 64, 2, 72, 108, 192, 139, 130, 144, 192, 176, 21, 39, 64, 69, 22, 200, 191, 62, 248, 153, 64, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 138, 60, 241, 192, 247, 239, 49, 192, 194, 220, 39, 193, 170, 84, 20, 191, 196, 93, 8, 193, 170, 84, 20, 191, 65, 156, 55, 193, 247, 239, 49, 192, 65, 156, 55, 65, 152, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 194, 220, 39, 65, 76, 123, 217, 63, 138, 60, 241, 64, 152, 116, 0, 191, 144, 53, 7, 193, 222, 152, 180, 191, 91, 192, 51, 193, 111, 76, 90, 64, 180, 207, 237, 192, 150, 21, 25, 64, 18, 14, 68, 193, 176, 172, 200, 190, 67, 88, 18, 193, 120, 99, 82, 190, 169, 157, 40, 193, 56, 38, 13, 64, 104, 49, 10, 193, 150, 21, 217, 63, 132, 196, 48, 193, 168, 169, 155, 62, 138, 60, 241, 192, 152, 116, 0, 191, 194, 220, 39, 193, 76, 123, 217, 63, 196, 93, 8, 193, 76, 123, 217, 63, 65, 156, 55, 193, 152, 116, 0, 191, 65, 156, 55, 65, 247, 239, 49, 192, 196, 93, 8, 65, 170, 84, 20, 191, 194, 220, 39, 65, 170, 84, 20, 191, 138, 60, 241, 64, 247, 239, 49, 192, 67, 88, 18, 65, 120, 99, 82, 190, 169, 157, 40, 65, 56, 38, 13, 64, 132, 196, 48, 65, 168, 169, 155, 62, 104, 49, 10, 65, 150, 21, 217, 63, 139, 130, 144, 192, 103, 145, 188, 192, 69, 22, 200, 191, 2, 72, 108, 192, 154, 52, 20, 191, 103, 145, 188, 192, 26, 7, 98, 192, 2, 72, 108, 192, 144, 53, 7, 65, 222, 152, 180, 191, 91, 192, 51, 65, 111, 76, 90, 64, 18, 14, 68, 65, 176, 172, 200, 190, 180, 207, 237, 64, 150, 21, 25, 64, 69, 22, 200, 63, 62, 248, 153, 64, 139, 130, 144, 64, 176, 21, 39, 64, 154, 52, 20, 63, 176, 21, 39, 64, 26, 7, 98, 64, 62, 248, 153, 64, 44, 43, 50, 63, 104, 49, 26, 65, 44, 43, 50, 191, 132, 196, 64, 65, 111, 76, 154, 63, 169, 157, 56, 65, 111, 76, 154, 191, 67, 88, 34, 65, 44, 43, 178, 63, 218, 231, 6, 65, 44, 43, 178, 191, 18, 14, 84, 65, 111, 76, 26, 64, 91, 192, 67, 65, 111, 76, 26, 192, 144, 53, 23, 65, 194, 220, 39, 193, 170, 84, 20, 191, 138, 60, 241, 192, 247, 239, 49, 192, 65, 156, 55, 193, 247, 239, 49, 192, 196, 93, 8, 193, 170, 84, 20, 191, 139, 130, 144, 64, 103, 145, 188, 192, 69, 22, 200, 63, 2, 72, 108, 192, 26, 7, 98, 64, 2, 72, 108, 192, 154, 52, 20, 63, 103, 145, 188, 192, 138, 60, 241, 64, 154, 116, 0, 191, 194, 220, 39, 65, 76, 123, 217, 63, 65, 156, 55, 65, 154, 116, 0, 191, 196, 93, 8, 65, 76, 123, 217, 63, 154, 52, 20, 191, 176, 21, 39, 64, 26, 7, 98, 192, 62, 248, 153, 64, 69, 22, 200, 191, 62, 248, 153, 64, 139, 130, 144, 192, 176, 21, 39, 64, 111, 76, 26, 64, 91, 192, 35, 193, 44, 43, 178, 63, 180, 207, 205, 192, 44, 43, 178, 191, 18, 14, 52, 193, 111, 76, 26, 192, 32, 107, 238, 192, 180, 207, 237, 192, 150, 21, 25, 64, 91, 192, 51, 193, 111, 76, 90, 64, 144, 53, 7, 193, 222, 152, 180, 191, 18, 14, 68, 193, 176, 172, 200, 190, 18, 14, 68, 65, 176, 172, 200, 190, 91, 192, 51, 65, 111, 76, 90, 64, 144, 53, 7, 65, 222, 152, 180, 191, 180, 207, 237, 64, 150, 21, 25, 64, 111, 76, 26, 64, 91, 192, 67, 65, 44, 43, 178, 191, 18, 14, 84, 65, 44, 43, 178, 63, 218, 231, 6, 65, 111, 76, 26, 192, 144, 53, 23, 65), +"format": 4119, +"index_count": 24, +"index_data": PackedByteArray(62, 1, 60, 1, 61, 1, 61, 1, 63, 1, 62, 1, 66, 1, 64, 1, 65, 1, 65, 1, 67, 1, 66, 1, 70, 1, 68, 1, 69, 1, 69, 1, 71, 1, 70, 1, 74, 1, 72, 1, 73, 1, 73, 1, 75, 1, 74, 1), +"material": SubResource("StandardMaterial3D_5l5jd"), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 332, +"vertex_data": PackedByteArray(192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 51, 139, 250, 202, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 51, 139, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 51, 139, 250, 202, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 51, 139, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 250, 74, 52, 11, 0, 0, 0, 128, 194, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 190, 250, 74, 52, 11, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 250, 74, 52, 11, 0, 0, 0, 128, 85, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 190, 250, 74, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 250, 74, 202, 244, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 250, 74, 202, 244, 0, 0, 0, 128, 85, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 190, 250, 74, 202, 244, 0, 0, 0, 128, 194, 208, 16, 61, 205, 204, 204, 61, 73, 197, 241, 189, 250, 74, 202, 244, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 190, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 47, 86, 250, 202, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 47, 86, 250, 202, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 47, 86, 250, 202, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 47, 86, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 4, 181, 208, 41, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 190, 4, 181, 208, 41, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 4, 181, 208, 41, 0, 0, 0, 128, 185, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 190, 4, 181, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 4, 181, 46, 214, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 4, 181, 46, 214, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 4, 181, 46, 214, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 4, 181, 46, 214, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 190, 47, 86, 4, 53, 0, 0, 0, 128, 186, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 190, 47, 86, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 190, 47, 86, 4, 53, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 47, 86, 4, 53, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 47, 86, 4, 53, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 207, 169, 250, 202, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 207, 169, 250, 202, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 207, 169, 250, 202, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 207, 169, 250, 202, 0, 0, 0, 128, 163, 118, 22, 62, 154, 153, 153, 61, 84, 210, 197, 60, 250, 74, 208, 41, 0, 0, 0, 128, 108, 247, 48, 62, 154, 153, 153, 61, 192, 93, 148, 189, 250, 74, 208, 41, 0, 0, 0, 128, 74, 197, 241, 61, 205, 204, 204, 61, 195, 208, 16, 189, 250, 74, 208, 41, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 208, 41, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 203, 116, 250, 202, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 203, 116, 250, 202, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 203, 116, 250, 202, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 203, 116, 250, 202, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 52, 11, 0, 0, 0, 128, 182, 69, 103, 62, 154, 153, 153, 61, 186, 18, 211, 189, 4, 181, 52, 11, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 52, 11, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 204, 61, 91, 29, 7, 190, 4, 181, 52, 11, 0, 0, 0, 128, 112, 23, 165, 62, 154, 153, 153, 61, 39, 17, 158, 189, 4, 181, 52, 11, 0, 0, 0, 128, 32, 209, 53, 62, 154, 153, 153, 61, 39, 17, 158, 61, 4, 181, 202, 244, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 202, 244, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 204, 61, 91, 29, 7, 62, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 202, 244, 0, 0, 0, 128, 37, 93, 140, 62, 154, 153, 153, 61, 186, 18, 211, 61, 4, 181, 202, 244, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 46, 214, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 250, 74, 46, 214, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 250, 74, 46, 214, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 250, 74, 46, 214, 0, 0, 0, 128, 73, 132, 167, 62, 154, 153, 153, 61, 191, 93, 148, 61, 207, 169, 4, 53, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 207, 169, 4, 53, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 207, 169, 4, 53, 0, 0, 0, 128, 175, 196, 180, 62, 154, 153, 153, 61, 85, 210, 197, 188, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 62, 205, 204, 204, 61, 195, 208, 16, 61, 207, 169, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 4, 181, 46, 214, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 4, 181, 46, 214, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 4, 181, 46, 214, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 4, 181, 46, 214, 0, 0, 0, 128, 73, 132, 167, 190, 154, 153, 153, 61, 191, 93, 148, 61, 47, 86, 4, 53, 0, 0, 0, 128, 175, 196, 180, 190, 154, 153, 153, 61, 85, 210, 197, 188, 47, 86, 4, 53, 0, 0, 0, 128, 174, 142, 195, 190, 205, 204, 204, 61, 195, 208, 16, 61, 47, 86, 4, 53, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 47, 86, 4, 53, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 47, 86, 4, 53, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 47, 86, 250, 202, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 47, 86, 250, 202, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 47, 86, 250, 202, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 47, 86, 250, 202, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 4, 181, 208, 41, 0, 0, 0, 128, 108, 247, 48, 190, 154, 153, 153, 61, 192, 93, 148, 189, 4, 181, 208, 41, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 4, 181, 208, 41, 0, 0, 0, 128, 163, 118, 22, 190, 154, 153, 153, 61, 84, 210, 197, 60, 4, 181, 208, 41, 0, 0, 0, 128, 74, 197, 241, 189, 205, 204, 204, 61, 195, 208, 16, 189, 4, 181, 208, 41, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 51, 139, 250, 202, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 51, 139, 250, 202, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 51, 139, 250, 202, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 51, 139, 250, 202, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 204, 61, 91, 29, 7, 190, 250, 74, 52, 11, 0, 0, 0, 128, 112, 23, 165, 190, 154, 153, 153, 61, 39, 17, 158, 189, 250, 74, 52, 11, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 250, 74, 52, 11, 0, 0, 0, 128, 182, 69, 103, 190, 154, 153, 153, 61, 185, 18, 211, 189, 250, 74, 52, 11, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 250, 74, 202, 244, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 250, 74, 202, 244, 0, 0, 0, 128, 37, 93, 140, 190, 154, 153, 153, 61, 185, 18, 211, 61, 250, 74, 202, 244, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 204, 61, 91, 29, 7, 62, 250, 74, 202, 244, 0, 0, 0, 128, 32, 209, 53, 190, 154, 153, 153, 61, 39, 17, 158, 61, 250, 74, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 203, 116, 250, 202, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 203, 116, 250, 202, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 203, 116, 250, 202, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 203, 116, 250, 202, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 4, 181, 52, 11, 0, 0, 0, 128, 84, 210, 197, 188, 154, 153, 153, 61, 163, 118, 22, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 204, 61, 74, 197, 241, 61, 4, 181, 52, 11, 0, 0, 0, 128, 192, 93, 148, 61, 154, 153, 153, 61, 108, 247, 48, 62, 4, 181, 52, 11, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 250, 74, 46, 214, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 250, 74, 46, 214, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 250, 74, 46, 214, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 250, 74, 46, 214, 0, 0, 0, 128, 39, 17, 158, 61, 154, 153, 153, 61, 112, 23, 165, 62, 207, 169, 4, 53, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 207, 169, 4, 53, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 207, 169, 4, 53, 0, 0, 0, 128, 186, 18, 211, 61, 154, 153, 153, 61, 182, 69, 103, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 62, 205, 204, 204, 61, 24, 26, 146, 62, 207, 169, 4, 53, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 207, 169, 250, 202, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 207, 169, 250, 202, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 207, 169, 250, 202, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 207, 169, 250, 202, 0, 0, 0, 128, 185, 18, 211, 189, 154, 153, 153, 61, 37, 93, 140, 62, 250, 74, 208, 41, 0, 0, 0, 128, 39, 17, 158, 189, 154, 153, 153, 61, 32, 209, 53, 62, 250, 74, 208, 41, 0, 0, 0, 128, 91, 29, 7, 190, 205, 204, 204, 61, 206, 203, 91, 62, 250, 74, 208, 41, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 250, 74, 208, 41, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 250, 74, 208, 41, 0, 0, 0, 128, 192, 93, 148, 189, 154, 153, 153, 61, 73, 132, 167, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 204, 61, 174, 142, 195, 62, 4, 181, 202, 244, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 4, 181, 202, 244, 0, 0, 0, 128, 84, 210, 197, 60, 154, 153, 153, 61, 175, 196, 180, 62, 4, 181, 202, 244, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 27, 37, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 27, 37, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 80, 56, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 80, 56, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 52, 147, 228, 90, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 52, 147, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 227, 218, 175, 71, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 174, 199, 228, 90, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 174, 199, 228, 90, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 174, 199, 228, 90, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 174, 199, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 175, 71, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 175, 71, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 175, 71, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 53, 19, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 53, 19, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 53, 19, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 53, 19, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 202, 108, 228, 90, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 202, 108, 228, 90, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 202, 108, 228, 90, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 52, 147, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 52, 147, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 52, 147, 228, 90, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 52, 147, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 53, 19, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 27, 37, 53, 19, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 53, 19, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 27, 37, 53, 19, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 0, 0, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 0, 0, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 0, 0, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 0, 0, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 80, 56, 228, 90, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 80, 56, 228, 90, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 80, 56, 228, 90, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 80, 56, 228, 90, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 175, 71, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 227, 218, 175, 71, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 175, 71, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 227, 218, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 0, 0, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 0, 0, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 174, 199, 228, 90, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 174, 199, 228, 90, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 202, 108, 228, 90, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 202, 108, 228, 90, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 27, 37, 175, 71, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 27, 37, 175, 71, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 227, 218, 53, 19, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 227, 218, 53, 19, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 52, 147, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 52, 147, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 227, 218, 79, 184, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 227, 218, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 27, 37, 201, 236, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 27, 37, 201, 236, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 80, 56, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 190, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 190, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 190, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 79, 184, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 27, 37, 79, 184, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 79, 184, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 27, 37, 79, 184, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 174, 199, 26, 165, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 174, 199, 26, 165, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 174, 199, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 174, 199, 26, 165, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 202, 108, 26, 165, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 202, 108, 26, 165, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 202, 108, 26, 165, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 202, 108, 26, 165, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 201, 236, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 227, 218, 201, 236, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 201, 236, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 227, 218, 201, 236, 0, 0, 0, 128, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 231, 229, 109, 62, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 62, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 62, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 62, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 27, 37, 201, 236, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 27, 37, 201, 236, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 27, 37, 201, 236, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 27, 37, 201, 236, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 52, 147, 26, 165, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 52, 147, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 52, 147, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 255, 127, 255, 255, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 255, 127, 255, 255, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 227, 218, 79, 184, 0, 0, 0, 128, 12, 13, 137, 190, 0, 0, 0, 0, 231, 211, 250, 60, 227, 218, 79, 184, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 227, 218, 79, 184, 0, 0, 0, 128, 63, 173, 143, 190, 0, 0, 0, 0, 195, 208, 144, 188, 227, 218, 79, 184, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 255, 255, 0, 0, 0, 128, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 255, 255, 0, 0, 0, 128, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 255, 255, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 255, 255, 0, 0, 0, 128, 131, 165, 96, 190, 0, 0, 0, 0, 194, 208, 144, 60, 80, 56, 26, 165, 0, 0, 0, 128, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 80, 56, 26, 165, 0, 0, 0, 128, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 80, 56, 26, 165, 0, 0, 0, 128, 231, 229, 109, 190, 0, 0, 0, 0, 231, 211, 250, 188, 80, 56, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 255, 255, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 255, 255, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 27, 37, 79, 184, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 27, 37, 79, 184, 0, 0, 0, 128, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 144, 60, 0, 0, 0, 0, 63, 173, 143, 62, 227, 218, 201, 236, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 227, 218, 201, 236, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 250, 188, 0, 0, 0, 0, 12, 13, 137, 62, 174, 199, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 174, 199, 26, 165, 0, 0, 0, 128, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 250, 60, 0, 0, 0, 0, 231, 229, 109, 62, 202, 108, 26, 165, 0, 0, 0, 128, 195, 208, 144, 188, 0, 0, 0, 0, 131, 165, 96, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 202, 108, 26, 165, 0, 0, 0, 128, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 190, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 190, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 190, 255, 127, 0, 0, 0, 0, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 190, 255, 127, 0, 0, 0, 0, 255, 191, 6, 75, 65, 62, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 255, 191, 24, 26, 146, 62, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 255, 191, 206, 203, 91, 62, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 255, 191, 125, 90, 159, 62, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 255, 191, 125, 90, 159, 190, 205, 204, 76, 61, 195, 208, 16, 189, 255, 127, 0, 0, 0, 0, 255, 191, 24, 26, 146, 190, 205, 204, 76, 61, 231, 211, 122, 61, 255, 127, 0, 0, 0, 0, 255, 191, 206, 203, 91, 190, 205, 204, 76, 61, 231, 211, 122, 189, 255, 127, 0, 0, 0, 0, 255, 191, 6, 75, 65, 190, 205, 204, 76, 61, 195, 208, 16, 61, 255, 127, 0, 0, 0, 0, 255, 191, 231, 211, 122, 189, 205, 204, 76, 61, 24, 26, 146, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 16, 61, 205, 204, 76, 61, 125, 90, 159, 62, 255, 127, 0, 0, 0, 0, 255, 191, 195, 208, 16, 189, 205, 204, 76, 61, 6, 75, 65, 62, 255, 127, 0, 0, 0, 0, 255, 191, 231, 211, 122, 61, 205, 204, 76, 61, 206, 203, 91, 62, 255, 127, 0, 0, 0, 0, 255, 191) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_th2oj") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yib0j"] +resource_name = "grass" +vertex_color_use_as_albedo = true +albedo_color = Color(0.376602, 0.858491, 0.697589, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_engi2"] +_surfaces = [{ +"aabb": AABB(-0.275709, 0, -0.185162, 0.551418, 0.163512, 0.477542), +"format": 4097, +"index_count": 108, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 4, 0, 6, 0, 5, 0, 7, 0, 5, 0, 6, 0, 5, 0, 8, 0, 9, 0, 9, 0, 7, 0, 5, 0, 8, 0, 5, 0, 9, 0, 7, 0, 9, 0, 5, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0, 10, 0, 12, 0, 11, 0, 13, 0, 11, 0, 12, 0, 15, 0, 14, 0, 6, 0, 6, 0, 16, 0, 15, 0, 14, 0, 15, 0, 6, 0, 16, 0, 6, 0, 15, 0, 15, 0, 16, 0, 0, 0, 0, 0, 2, 0, 15, 0, 16, 0, 15, 0, 0, 0, 2, 0, 0, 0, 15, 0, 17, 0, 4, 0, 14, 0, 14, 0, 18, 0, 17, 0, 4, 0, 17, 0, 14, 0, 18, 0, 14, 0, 17, 0, 10, 0, 17, 0, 18, 0, 18, 0, 11, 0, 10, 0, 17, 0, 10, 0, 18, 0, 11, 0, 18, 0, 10, 0, 8, 0, 19, 0, 20, 0, 20, 0, 9, 0, 8, 0, 19, 0, 8, 0, 20, 0, 9, 0, 20, 0, 8, 0), +"name": "grass", +"primitive": 3, +"vertex_count": 21, +"vertex_data": PackedByteArray(205, 43, 20, 62, 51, 109, 39, 62, 107, 85, 49, 190, 6, 63, 108, 62, 144, 194, 245, 61, 252, 154, 61, 190, 56, 169, 99, 62, 51, 109, 39, 62, 197, 156, 30, 189, 192, 41, 141, 62, 144, 194, 245, 61, 195, 149, 219, 189, 235, 81, 56, 189, 0, 0, 0, 0, 156, 213, 212, 60, 39, 115, 54, 190, 128, 68, 28, 62, 200, 149, 224, 187, 151, 144, 47, 41, 0, 0, 0, 0, 156, 213, 84, 189, 25, 155, 194, 189, 128, 68, 28, 62, 62, 127, 26, 190, 56, 169, 99, 190, 51, 109, 39, 62, 197, 156, 30, 189, 205, 43, 20, 190, 51, 109, 39, 62, 107, 85, 49, 190, 214, 250, 158, 189, 51, 109, 39, 62, 157, 252, 88, 62, 215, 250, 158, 61, 51, 109, 39, 62, 157, 252, 88, 62, 233, 81, 56, 189, 144, 194, 245, 61, 239, 178, 149, 62, 238, 81, 56, 61, 144, 194, 245, 61, 239, 178, 149, 62, 235, 81, 56, 61, 0, 0, 0, 0, 154, 213, 212, 60, 39, 115, 54, 62, 128, 68, 28, 62, 200, 149, 224, 187, 25, 155, 194, 61, 128, 68, 28, 62, 62, 127, 26, 190, 54, 75, 170, 189, 128, 68, 28, 62, 236, 131, 33, 62, 55, 75, 170, 61, 128, 68, 28, 62, 235, 131, 33, 62, 192, 41, 141, 190, 144, 194, 245, 61, 195, 149, 219, 189, 6, 63, 108, 190, 144, 194, 245, 61, 252, 154, 61, 190) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_1oxjk"] +resource_name = "plant_Mesh plant" +_surfaces = [{ +"aabb": AABB(-0.275709, 0, -0.185162, 0.551418, 0.163512, 0.477542), +"attribute_data": PackedByteArray(100, 152, 67, 64, 211, 229, 168, 64, 139, 197, 226, 63, 182, 19, 14, 65, 100, 152, 67, 192, 211, 229, 168, 64, 139, 197, 226, 191, 182, 19, 14, 65, 100, 152, 67, 192, 211, 229, 168, 64, 139, 197, 226, 63, 182, 19, 14, 65, 100, 152, 67, 64, 211, 229, 168, 64, 139, 197, 226, 191, 182, 19, 14, 65, 140, 197, 226, 191, 130, 195, 169, 62, 215, 131, 81, 192, 152, 98, 243, 192, 139, 197, 226, 63, 130, 195, 169, 62, 215, 131, 81, 64, 152, 98, 243, 192, 139, 197, 226, 63, 130, 195, 169, 62, 215, 131, 81, 192, 152, 98, 243, 192, 140, 197, 226, 191, 130, 195, 169, 62, 215, 131, 81, 64, 152, 98, 243, 192, 100, 152, 67, 192, 226, 43, 7, 193, 100, 152, 67, 64, 226, 43, 7, 193, 215, 131, 81, 192, 111, 186, 200, 192, 215, 131, 81, 64, 111, 186, 200, 192, 215, 131, 81, 192, 111, 186, 200, 192, 100, 152, 67, 64, 226, 43, 7, 193, 100, 152, 67, 192, 226, 43, 7, 193, 215, 131, 81, 64, 111, 186, 200, 192, 100, 152, 67, 192, 211, 229, 168, 64, 100, 152, 67, 64, 211, 229, 168, 64, 139, 197, 226, 191, 182, 19, 14, 65, 139, 197, 226, 63, 182, 19, 14, 65, 139, 197, 226, 191, 182, 19, 14, 65, 100, 152, 67, 64, 211, 229, 168, 64, 100, 152, 67, 192, 211, 229, 168, 64, 139, 197, 226, 63, 182, 19, 14, 65, 139, 197, 226, 63, 130, 195, 169, 62, 139, 197, 226, 191, 130, 195, 169, 62, 215, 131, 81, 64, 152, 98, 243, 192, 215, 131, 81, 192, 152, 98, 243, 192, 215, 131, 81, 64, 152, 98, 243, 192, 139, 197, 226, 191, 130, 195, 169, 62, 139, 197, 226, 63, 130, 195, 169, 62, 215, 131, 81, 192, 152, 98, 243, 192, 215, 131, 81, 192, 111, 186, 200, 192, 100, 152, 67, 192, 226, 43, 7, 193, 215, 131, 81, 64, 111, 186, 200, 192, 100, 152, 67, 64, 226, 43, 7, 193, 215, 131, 81, 64, 111, 186, 200, 192, 100, 152, 67, 192, 226, 43, 7, 193, 215, 131, 81, 192, 111, 186, 200, 192, 100, 152, 67, 64, 226, 43, 7, 193, 139, 197, 226, 63, 130, 195, 169, 62, 139, 197, 226, 191, 130, 195, 169, 62, 215, 131, 81, 64, 152, 98, 243, 192, 215, 131, 81, 192, 152, 98, 243, 192, 215, 131, 81, 64, 152, 98, 243, 192, 139, 197, 226, 191, 130, 195, 169, 62, 139, 197, 226, 63, 130, 195, 169, 62, 215, 131, 81, 192, 152, 98, 243, 192, 215, 131, 81, 64, 111, 186, 200, 192, 215, 131, 81, 192, 111, 186, 200, 192, 100, 152, 67, 64, 226, 43, 7, 193, 100, 152, 67, 192, 226, 43, 7, 193, 100, 152, 67, 64, 226, 43, 7, 193, 215, 131, 81, 192, 111, 186, 200, 192, 215, 131, 81, 64, 111, 186, 200, 192, 100, 152, 67, 192, 226, 43, 7, 193, 139, 197, 226, 63, 182, 19, 14, 65, 139, 197, 226, 191, 182, 19, 14, 65, 100, 152, 67, 64, 211, 229, 168, 64, 100, 152, 67, 192, 211, 229, 168, 64, 100, 152, 67, 64, 211, 229, 168, 64, 139, 197, 226, 191, 182, 19, 14, 65, 139, 197, 226, 63, 182, 19, 14, 65, 100, 152, 67, 192, 211, 229, 168, 64), +"format": 4119, +"index_count": 108, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 7, 0, 5, 0, 4, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 15, 0, 13, 0, 12, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 23, 0, 21, 0, 20, 0, 26, 0, 24, 0, 25, 0, 25, 0, 27, 0, 26, 0, 30, 0, 28, 0, 29, 0, 31, 0, 29, 0, 28, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 38, 0, 36, 0, 37, 0, 39, 0, 37, 0, 36, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 46, 0, 44, 0, 45, 0, 47, 0, 45, 0, 44, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 54, 0, 52, 0, 53, 0, 55, 0, 53, 0, 52, 0, 58, 0, 56, 0, 57, 0, 57, 0, 59, 0, 58, 0, 62, 0, 60, 0, 61, 0, 63, 0, 61, 0, 60, 0, 66, 0, 64, 0, 65, 0, 65, 0, 67, 0, 66, 0, 70, 0, 68, 0, 69, 0, 71, 0, 69, 0, 68, 0), +"material": SubResource("StandardMaterial3D_yib0j"), +"name": "grass", +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(205, 43, 20, 62, 51, 109, 39, 62, 107, 85, 49, 190, 132, 142, 202, 246, 0, 0, 146, 232, 6, 63, 108, 62, 144, 194, 245, 61, 252, 154, 61, 190, 93, 182, 135, 221, 0, 0, 108, 151, 56, 169, 99, 62, 51, 109, 39, 62, 197, 156, 30, 189, 132, 142, 202, 246, 0, 0, 108, 151, 192, 41, 141, 62, 144, 194, 245, 61, 195, 149, 219, 189, 93, 182, 135, 221, 0, 0, 108, 151, 56, 169, 99, 62, 51, 109, 39, 62, 197, 156, 30, 189, 202, 118, 133, 14, 0, 0, 146, 104, 6, 63, 108, 62, 144, 194, 245, 61, 252, 154, 61, 190, 135, 93, 94, 54, 0, 0, 146, 104, 205, 43, 20, 62, 51, 109, 39, 62, 107, 85, 49, 190, 202, 118, 133, 14, 0, 0, 108, 23, 192, 41, 141, 62, 144, 194, 245, 61, 195, 149, 219, 189, 135, 93, 94, 54, 0, 0, 146, 104, 235, 81, 56, 189, 0, 0, 0, 0, 156, 213, 212, 60, 184, 177, 144, 177, 255, 255, 146, 232, 39, 115, 54, 190, 128, 68, 28, 62, 200, 149, 224, 187, 133, 163, 246, 199, 255, 255, 146, 232, 151, 144, 47, 41, 0, 0, 0, 0, 156, 213, 84, 189, 184, 177, 144, 177, 255, 255, 146, 232, 25, 155, 194, 189, 128, 68, 28, 62, 62, 127, 26, 190, 133, 163, 246, 199, 255, 255, 146, 232, 151, 144, 47, 41, 0, 0, 0, 0, 156, 213, 84, 189, 145, 49, 184, 49, 255, 255, 108, 23, 39, 115, 54, 190, 128, 68, 28, 62, 200, 149, 224, 187, 246, 71, 134, 35, 255, 255, 108, 23, 235, 81, 56, 189, 0, 0, 0, 0, 156, 213, 212, 60, 145, 49, 184, 49, 255, 255, 108, 23, 25, 155, 194, 189, 128, 68, 28, 62, 62, 127, 26, 190, 246, 71, 134, 35, 255, 255, 108, 23, 56, 169, 99, 190, 51, 109, 39, 62, 197, 156, 30, 189, 122, 113, 202, 246, 255, 255, 108, 151, 205, 43, 20, 190, 51, 109, 39, 62, 107, 85, 49, 190, 122, 113, 202, 246, 255, 255, 108, 151, 39, 115, 54, 190, 128, 68, 28, 62, 200, 149, 224, 187, 133, 163, 246, 199, 255, 255, 146, 232, 25, 155, 194, 189, 128, 68, 28, 62, 62, 127, 26, 190, 133, 163, 246, 199, 255, 255, 146, 232, 39, 115, 54, 190, 128, 68, 28, 62, 200, 149, 224, 187, 246, 71, 134, 35, 255, 255, 108, 23, 205, 43, 20, 190, 51, 109, 39, 62, 107, 85, 49, 190, 52, 137, 133, 14, 255, 255, 146, 104, 56, 169, 99, 190, 51, 109, 39, 62, 197, 156, 30, 189, 52, 137, 133, 14, 255, 255, 146, 104, 25, 155, 194, 189, 128, 68, 28, 62, 62, 127, 26, 190, 246, 71, 134, 35, 255, 255, 108, 23, 214, 250, 158, 189, 51, 109, 39, 62, 157, 252, 88, 62, 255, 127, 8, 245, 255, 255, 255, 191, 215, 250, 158, 61, 51, 109, 39, 62, 157, 252, 88, 62, 255, 127, 8, 245, 255, 255, 255, 191, 233, 81, 56, 189, 144, 194, 245, 61, 239, 178, 149, 62, 255, 127, 21, 211, 255, 255, 255, 191, 238, 81, 56, 61, 144, 194, 245, 61, 239, 178, 149, 62, 255, 127, 21, 211, 255, 255, 255, 191, 233, 81, 56, 189, 144, 194, 245, 61, 239, 178, 149, 62, 232, 172, 0, 0, 255, 255, 255, 63, 215, 250, 158, 61, 51, 109, 39, 62, 157, 252, 88, 62, 245, 138, 0, 0, 255, 255, 255, 63, 214, 250, 158, 189, 51, 109, 39, 62, 157, 252, 88, 62, 245, 138, 0, 0, 255, 255, 255, 63, 238, 81, 56, 61, 144, 194, 245, 61, 239, 178, 149, 62, 232, 172, 0, 0, 255, 255, 255, 63, 235, 81, 56, 61, 0, 0, 0, 0, 154, 213, 212, 60, 70, 78, 144, 177, 217, 174, 255, 191, 151, 144, 47, 41, 0, 0, 0, 0, 156, 213, 84, 189, 70, 78, 144, 177, 217, 174, 255, 191, 39, 115, 54, 62, 128, 68, 28, 62, 200, 149, 224, 187, 121, 92, 246, 199, 217, 174, 255, 191, 25, 155, 194, 61, 128, 68, 28, 62, 62, 127, 26, 190, 121, 92, 246, 199, 217, 174, 255, 191, 39, 115, 54, 62, 128, 68, 28, 62, 200, 149, 224, 187, 8, 184, 134, 35, 217, 174, 255, 63, 151, 144, 47, 41, 0, 0, 0, 0, 156, 213, 84, 189, 109, 206, 184, 49, 217, 174, 255, 63, 235, 81, 56, 61, 0, 0, 0, 0, 154, 213, 212, 60, 109, 206, 184, 49, 217, 174, 255, 63, 25, 155, 194, 61, 128, 68, 28, 62, 62, 127, 26, 190, 8, 184, 134, 35, 217, 174, 255, 63, 25, 155, 194, 61, 128, 68, 28, 62, 62, 127, 26, 190, 121, 92, 246, 199, 217, 174, 255, 191, 205, 43, 20, 62, 51, 109, 39, 62, 107, 85, 49, 190, 132, 142, 202, 246, 217, 174, 255, 191, 39, 115, 54, 62, 128, 68, 28, 62, 200, 149, 224, 187, 121, 92, 246, 199, 217, 174, 255, 191, 56, 169, 99, 62, 51, 109, 39, 62, 197, 156, 30, 189, 132, 142, 202, 246, 217, 174, 255, 191, 39, 115, 54, 62, 128, 68, 28, 62, 200, 149, 224, 187, 8, 184, 134, 35, 217, 174, 255, 63, 205, 43, 20, 62, 51, 109, 39, 62, 107, 85, 49, 190, 202, 118, 133, 14, 217, 174, 255, 63, 25, 155, 194, 61, 128, 68, 28, 62, 62, 127, 26, 190, 8, 184, 134, 35, 217, 174, 255, 63, 56, 169, 99, 62, 51, 109, 39, 62, 197, 156, 30, 189, 202, 118, 133, 14, 217, 174, 255, 63, 235, 81, 56, 189, 0, 0, 0, 0, 156, 213, 212, 60, 176, 196, 255, 255, 0, 0, 255, 191, 235, 81, 56, 61, 0, 0, 0, 0, 154, 213, 212, 60, 176, 196, 255, 255, 0, 0, 255, 191, 54, 75, 170, 189, 128, 68, 28, 62, 236, 131, 33, 62, 120, 174, 255, 255, 0, 0, 255, 191, 55, 75, 170, 61, 128, 68, 28, 62, 235, 131, 33, 62, 120, 174, 255, 255, 0, 0, 255, 191, 54, 75, 170, 189, 128, 68, 28, 62, 236, 131, 33, 62, 255, 127, 120, 46, 0, 0, 255, 63, 235, 81, 56, 61, 0, 0, 0, 0, 154, 213, 212, 60, 255, 127, 177, 68, 0, 0, 255, 63, 235, 81, 56, 189, 0, 0, 0, 0, 156, 213, 212, 60, 255, 127, 177, 68, 0, 0, 255, 63, 55, 75, 170, 61, 128, 68, 28, 62, 235, 131, 33, 62, 255, 127, 120, 46, 0, 0, 255, 63, 54, 75, 170, 189, 128, 68, 28, 62, 236, 131, 33, 62, 120, 174, 255, 255, 0, 0, 255, 191, 55, 75, 170, 61, 128, 68, 28, 62, 235, 131, 33, 62, 120, 174, 255, 255, 0, 0, 255, 191, 214, 250, 158, 189, 51, 109, 39, 62, 157, 252, 88, 62, 255, 127, 8, 245, 0, 0, 255, 191, 215, 250, 158, 61, 51, 109, 39, 62, 157, 252, 88, 62, 255, 127, 8, 245, 0, 0, 255, 191, 214, 250, 158, 189, 51, 109, 39, 62, 157, 252, 88, 62, 245, 138, 0, 0, 0, 0, 255, 63, 55, 75, 170, 61, 128, 68, 28, 62, 235, 131, 33, 62, 255, 127, 120, 46, 0, 0, 255, 63, 54, 75, 170, 189, 128, 68, 28, 62, 236, 131, 33, 62, 255, 127, 120, 46, 0, 0, 255, 63, 215, 250, 158, 61, 51, 109, 39, 62, 157, 252, 88, 62, 245, 138, 0, 0, 0, 0, 255, 63, 192, 41, 141, 190, 144, 194, 245, 61, 195, 149, 219, 189, 161, 73, 135, 221, 37, 81, 255, 191, 6, 63, 108, 190, 144, 194, 245, 61, 252, 154, 61, 190, 161, 73, 135, 221, 37, 81, 255, 191, 56, 169, 99, 190, 51, 109, 39, 62, 197, 156, 30, 189, 122, 113, 202, 246, 37, 81, 255, 191, 205, 43, 20, 190, 51, 109, 39, 62, 107, 85, 49, 190, 122, 113, 202, 246, 37, 81, 255, 191, 56, 169, 99, 190, 51, 109, 39, 62, 197, 156, 30, 189, 52, 137, 133, 14, 37, 81, 255, 63, 6, 63, 108, 190, 144, 194, 245, 61, 252, 154, 61, 190, 119, 162, 94, 54, 37, 81, 255, 63, 192, 41, 141, 190, 144, 194, 245, 61, 195, 149, 219, 189, 119, 162, 94, 54, 37, 81, 255, 63, 205, 43, 20, 190, 51, 109, 39, 62, 107, 85, 49, 190, 52, 137, 133, 14, 37, 81, 255, 63) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_engi2") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y6ao6"] +resource_name = "heart" +vertex_color_use_as_albedo = true +albedo_color = Color(0.976471, 0.290196, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_868gw"] +resource_name = "dirt" +vertex_color_use_as_albedo = true +albedo_color = Color(0.878431, 0.576471, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_bmbmt"] +_surfaces = [{ +"aabb": AABB(-0.262123, 0, -0.259406, 0.524246, 0.295, 0.518812), +"format": 4097, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 4, 0, 2, 0, 3, 0, 3, 0, 5, 0, 4, 0, 8, 0, 6, 0, 7, 0, 7, 0, 9, 0, 8, 0, 12, 0, 10, 0, 11, 0, 11, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 14, 0, 15, 0, 13, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0, 22, 0, 20, 0, 21, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 25, 0, 23, 0, 21, 0, 23, 0, 26, 0, 24, 0, 21, 0, 27, 0, 25, 0, 26, 0, 28, 0, 24, 0, 27, 0, 28, 0, 25, 0, 27, 0, 24, 0, 28, 0, 27, 0, 29, 0, 24, 0, 24, 0, 29, 0, 30, 0, 30, 0, 31, 0, 24, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 37, 0, 36, 0, 20, 0, 20, 0, 22, 0, 37, 0, 11, 0, 10, 0, 36, 0, 36, 0, 37, 0, 11, 0, 39, 0, 38, 0, 16, 0, 16, 0, 18, 0, 39, 0, 40, 0, 34, 0, 35, 0, 35, 0, 41, 0, 40, 0, 11, 0, 37, 0, 31, 0, 31, 0, 14, 0, 11, 0, 42, 0, 4, 0, 8, 0, 8, 0, 9, 0, 42, 0, 37, 0, 22, 0, 24, 0, 24, 0, 31, 0, 37, 0, 35, 0, 43, 0, 44, 0, 44, 0, 41, 0, 35, 0, 27, 0, 45, 0, 30, 0, 30, 0, 29, 0, 27, 0, 12, 0, 46, 0, 36, 0, 36, 0, 10, 0, 12, 0, 48, 0, 47, 0, 6, 0, 6, 0, 8, 0, 48, 0, 31, 0, 30, 0, 15, 0, 15, 0, 14, 0, 31, 0, 18, 0, 19, 0, 40, 0, 40, 0, 39, 0, 18, 0, 40, 0, 41, 0, 39, 0, 41, 0, 44, 0, 39, 0, 50, 0, 49, 0, 42, 0, 42, 0, 51, 0, 50, 0, 42, 0, 9, 0, 51, 0, 9, 0, 7, 0, 51, 0, 33, 0, 52, 0, 43, 0, 43, 0, 35, 0, 33, 0, 53, 0, 38, 0, 43, 0, 43, 0, 52, 0, 53, 0, 30, 0, 45, 0, 13, 0, 13, 0, 15, 0, 30, 0, 45, 0, 27, 0, 21, 0, 21, 0, 46, 0, 45, 0, 50, 0, 0, 0, 2, 0, 2, 0, 49, 0, 50, 0, 5, 0, 3, 0, 1, 0, 1, 0, 54, 0, 5, 0, 54, 0, 48, 0, 5, 0, 55, 0, 54, 0, 1, 0, 54, 0, 56, 0, 48, 0, 1, 0, 57, 0, 55, 0, 56, 0, 58, 0, 48, 0, 57, 0, 58, 0, 55, 0, 57, 0, 48, 0, 58, 0, 57, 0, 47, 0, 48, 0, 57, 0, 59, 0, 6, 0, 6, 0, 47, 0, 57, 0, 40, 0, 19, 0, 17, 0, 17, 0, 34, 0, 40, 0, 4, 0, 5, 0, 48, 0, 48, 0, 8, 0, 4, 0, 6, 0, 59, 0, 51, 0, 51, 0, 7, 0, 6, 0, 38, 0, 53, 0, 60, 0, 60, 0, 16, 0, 38, 0, 36, 0, 46, 0, 21, 0, 21, 0, 20, 0, 36, 0, 34, 0, 17, 0, 61, 0, 61, 0, 32, 0, 34, 0, 51, 0, 59, 0, 0, 0, 0, 0, 50, 0, 51, 0, 43, 0, 38, 0, 39, 0, 39, 0, 44, 0, 43, 0, 13, 0, 45, 0, 46, 0, 46, 0, 12, 0, 13, 0, 59, 0, 57, 0, 1, 0, 1, 0, 0, 0, 59, 0, 32, 0, 61, 0, 60, 0, 60, 0, 62, 0, 32, 0, 62, 0, 33, 0, 32, 0, 63, 0, 62, 0, 60, 0, 62, 0, 64, 0, 33, 0, 60, 0, 53, 0, 63, 0, 64, 0, 65, 0, 33, 0, 53, 0, 65, 0, 63, 0, 53, 0, 33, 0, 65, 0, 53, 0, 52, 0, 33, 0, 17, 0, 16, 0, 60, 0, 60, 0, 61, 0, 17, 0, 42, 0, 49, 0, 2, 0, 2, 0, 4, 0, 42, 0), +"name": "heart", +"primitive": 3, +"vertex_count": 78, +"vertex_data": PackedByteArray(143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62) +}, { +"aabb": AABB(-0.262123, 0, -0.259406, 0.524246, 0.295, 0.518812), +"format": 4097, +"index_count": 90, +"index_data": PackedByteArray(68, 0, 66, 0, 67, 0, 67, 0, 69, 0, 68, 0, 54, 0, 66, 0, 68, 0, 68, 0, 56, 0, 54, 0, 55, 0, 67, 0, 66, 0, 66, 0, 54, 0, 55, 0, 72, 0, 70, 0, 71, 0, 71, 0, 73, 0, 72, 0, 65, 0, 73, 0, 71, 0, 71, 0, 63, 0, 65, 0, 58, 0, 69, 0, 67, 0, 67, 0, 55, 0, 58, 0, 76, 0, 74, 0, 75, 0, 75, 0, 77, 0, 76, 0, 25, 0, 75, 0, 74, 0, 74, 0, 23, 0, 25, 0, 62, 0, 70, 0, 72, 0, 72, 0, 64, 0, 62, 0, 63, 0, 71, 0, 70, 0, 70, 0, 62, 0, 63, 0, 76, 0, 77, 0, 28, 0, 28, 0, 26, 0, 76, 0, 28, 0, 77, 0, 75, 0, 75, 0, 25, 0, 28, 0, 23, 0, 74, 0, 76, 0, 76, 0, 26, 0, 23, 0, 72, 0, 73, 0, 65, 0, 65, 0, 64, 0, 72, 0, 68, 0, 69, 0, 58, 0, 58, 0, 56, 0, 68, 0), +"name": "dirt", +"primitive": 3, +"vertex_count": 78, +"vertex_data": PackedByteArray(143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_ncvmo"] +resource_name = "mushrooms_Mesh mushrooms" +_surfaces = [{ +"aabb": AABB(-0.262123, 0, -0.259406, 0.524246, 0.295, 0.518812), +"attribute_data": PackedByteArray(109, 196, 43, 192, 219, 40, 145, 192, 165, 241, 52, 192, 67, 73, 60, 192, 151, 16, 237, 192, 219, 40, 145, 192, 249, 121, 232, 192, 67, 73, 60, 192, 222, 110, 76, 192, 147, 172, 175, 192, 26, 156, 85, 192, 178, 80, 121, 192, 200, 101, 253, 192, 147, 172, 175, 192, 38, 207, 248, 192, 178, 80, 121, 192, 107, 196, 43, 64, 76, 65, 37, 191, 65, 174, 96, 64, 92, 87, 123, 192, 143, 16, 237, 64, 74, 65, 37, 191, 164, 155, 210, 64, 94, 87, 123, 192, 212, 145, 33, 64, 84, 226, 227, 64, 46, 235, 129, 64, 40, 200, 142, 64, 46, 235, 129, 64, 68, 126, 28, 65, 192, 47, 228, 64, 68, 126, 28, 65, 192, 47, 228, 64, 40, 200, 142, 64, 254, 168, 10, 65, 84, 226, 227, 64, 130, 242, 24, 64, 132, 159, 11, 192, 57, 106, 21, 192, 129, 159, 11, 192, 102, 17, 200, 63, 67, 211, 174, 192, 195, 0, 193, 191, 69, 211, 174, 192, 72, 49, 148, 191, 84, 226, 227, 64, 197, 25, 88, 192, 139, 110, 47, 65, 197, 25, 88, 192, 52, 207, 81, 64, 252, 4, 140, 192, 221, 217, 188, 64, 12, 14, 250, 192, 52, 207, 81, 64, 252, 4, 140, 192, 102, 117, 5, 65, 234, 21, 218, 192, 221, 217, 188, 64, 12, 14, 250, 192, 139, 110, 47, 65, 234, 21, 218, 192, 102, 117, 5, 65, 74, 135, 32, 193, 84, 226, 227, 64, 163, 21, 37, 193, 97, 114, 13, 192, 242, 96, 39, 193, 212, 122, 115, 192, 42, 42, 188, 192, 98, 114, 13, 192, 138, 147, 183, 192, 210, 122, 115, 192, 3, 14, 250, 64, 241, 229, 194, 192, 197, 25, 88, 64, 241, 229, 194, 192, 153, 164, 254, 64, 42, 234, 245, 192, 137, 236, 78, 64, 42, 234, 245, 192, 114, 180, 155, 64, 163, 219, 18, 192, 212, 29, 151, 64, 192, 76, 51, 191, 30, 195, 16, 62, 163, 219, 18, 192, 74, 203, 145, 62, 194, 76, 51, 191, 134, 63, 129, 64, 76, 164, 239, 192, 113, 180, 155, 64, 199, 160, 134, 192, 24, 216, 119, 63, 76, 164, 239, 192, 248, 194, 16, 62, 198, 160, 134, 192, 137, 236, 78, 192, 182, 101, 101, 192, 153, 164, 254, 192, 182, 101, 101, 192, 38, 235, 129, 192, 94, 182, 219, 192, 183, 47, 228, 192, 94, 182, 219, 192, 153, 164, 254, 64, 220, 206, 205, 192, 137, 236, 78, 64, 220, 206, 205, 192, 183, 47, 228, 64, 47, 105, 27, 193, 38, 235, 129, 64, 47, 105, 27, 193, 137, 236, 78, 192, 108, 103, 91, 192, 161, 164, 254, 192, 108, 103, 91, 192, 46, 235, 129, 192, 60, 183, 214, 192, 192, 47, 228, 192, 60, 183, 214, 192, 210, 7, 237, 63, 20, 141, 254, 62, 208, 216, 55, 192, 20, 141, 254, 62, 43, 52, 131, 63, 106, 53, 50, 192, 253, 238, 2, 192, 106, 53, 50, 192, 197, 25, 88, 192, 164, 124, 122, 191, 12, 14, 250, 192, 164, 124, 122, 191, 137, 236, 78, 192, 156, 167, 36, 192, 161, 164, 254, 192, 156, 167, 36, 192, 158, 242, 24, 192, 240, 177, 250, 192, 141, 17, 200, 191, 187, 218, 49, 193, 29, 106, 21, 64, 242, 177, 250, 192, 157, 0, 193, 63, 186, 218, 49, 193, 135, 180, 155, 192, 11, 65, 152, 192, 218, 196, 16, 190, 12, 65, 152, 192, 231, 29, 151, 192, 164, 121, 74, 192, 69, 204, 145, 190, 164, 121, 74, 192, 245, 96, 39, 65, 166, 154, 196, 191, 139, 147, 183, 64, 168, 154, 196, 191, 127, 38, 26, 65, 47, 42, 154, 192, 116, 8, 210, 64, 47, 42, 154, 192, 166, 241, 52, 64, 131, 16, 129, 192, 105, 196, 43, 64, 188, 20, 180, 192, 235, 121, 232, 64, 131, 16, 129, 192, 142, 16, 237, 64, 189, 20, 180, 192, 243, 96, 39, 193, 0, 116, 179, 60, 126, 38, 26, 193, 34, 160, 80, 192, 141, 147, 183, 192, 0, 115, 179, 60, 125, 8, 210, 192, 32, 160, 80, 192, 254, 168, 10, 193, 94, 101, 136, 64, 183, 47, 228, 192, 167, 44, 205, 63, 183, 47, 228, 192, 147, 127, 221, 64, 38, 235, 129, 192, 147, 127, 221, 64, 38, 235, 129, 192, 167, 44, 205, 63, 195, 145, 33, 192, 94, 101, 136, 64, 159, 222, 35, 192, 92, 226, 163, 192, 43, 52, 131, 191, 136, 252, 248, 192, 43, 52, 131, 191, 80, 144, 29, 192, 253, 238, 2, 64, 80, 144, 29, 192, 253, 238, 2, 64, 136, 252, 248, 192, 134, 51, 101, 64, 92, 226, 163, 192, 97, 197, 15, 192, 189, 223, 178, 192, 157, 242, 24, 192, 246, 227, 229, 192, 245, 60, 12, 64, 189, 223, 178, 192, 30, 106, 21, 64, 246, 227, 229, 192, 188, 134, 255, 192, 44, 39, 246, 192, 189, 176, 80, 192, 44, 39, 246, 192, 32, 240, 250, 192, 242, 34, 195, 192, 249, 221, 89, 192, 242, 34, 195, 192, 132, 180, 155, 192, 19, 91, 44, 64, 146, 63, 129, 192, 198, 175, 22, 191, 116, 196, 16, 190, 22, 91, 44, 64, 95, 216, 119, 191, 214, 175, 22, 191, 12, 14, 250, 64, 207, 173, 56, 192, 197, 25, 88, 64, 207, 173, 56, 192, 161, 164, 254, 64, 33, 91, 143, 192, 137, 236, 78, 64, 33, 91, 143, 192, 109, 196, 43, 192, 248, 244, 108, 192, 151, 16, 237, 192, 248, 244, 108, 192, 70, 174, 96, 192, 2, 126, 223, 192, 174, 155, 210, 192, 1, 126, 223, 192, 206, 87, 123, 64, 92, 226, 163, 192, 91, 173, 218, 63, 104, 158, 163, 191, 91, 173, 218, 63, 135, 110, 15, 193, 236, 153, 53, 63, 203, 234, 202, 192, 149, 171, 46, 192, 135, 110, 15, 193, 236, 153, 53, 63, 186, 179, 121, 192, 197, 118, 221, 191, 203, 234, 202, 192, 149, 171, 46, 192, 104, 158, 163, 191, 197, 118, 221, 191, 186, 179, 121, 192, 91, 86, 158, 192, 92, 226, 163, 192, 223, 110, 76, 64, 3, 145, 149, 192, 208, 101, 253, 64, 4, 145, 149, 192, 23, 156, 85, 64, 148, 25, 69, 192, 50, 207, 248, 64, 148, 25, 69, 192, 223, 17, 229, 64, 73, 97, 220, 192, 202, 134, 255, 64, 136, 187, 102, 192, 84, 205, 130, 64, 71, 97, 220, 192, 218, 176, 80, 64, 140, 187, 102, 192, 91, 173, 218, 63, 98, 30, 142, 192, 149, 171, 46, 192, 98, 30, 142, 192, 210, 7, 237, 63, 156, 34, 193, 192, 208, 216, 55, 192, 156, 34, 193, 192, 224, 110, 76, 64, 146, 68, 84, 192, 93, 172, 128, 64, 207, 37, 211, 192, 208, 101, 253, 64, 146, 68, 84, 192, 231, 240, 226, 64, 206, 37, 211, 192, 197, 25, 88, 192, 86, 108, 227, 192, 3, 14, 250, 192, 86, 108, 227, 192, 137, 236, 78, 192, 72, 56, 11, 193, 153, 164, 254, 192, 72, 56, 11, 193, 246, 96, 39, 65, 2, 227, 79, 192, 168, 21, 37, 65, 30, 181, 211, 191, 139, 147, 183, 64, 2, 227, 79, 192, 41, 42, 188, 64, 30, 181, 211, 191, 192, 134, 255, 64, 198, 25, 11, 193, 30, 240, 250, 64, 82, 47, 227, 192, 198, 176, 80, 64, 198, 25, 11, 193, 247, 221, 89, 64, 84, 47, 227, 192, 208, 216, 55, 64, 114, 11, 155, 192, 210, 7, 237, 191, 114, 11, 155, 192, 253, 238, 2, 64, 124, 7, 2, 193, 43, 52, 131, 191, 124, 7, 2, 193, 188, 134, 255, 192, 238, 35, 205, 192, 213, 17, 229, 192, 184, 19, 27, 193, 190, 176, 80, 192, 237, 35, 205, 192, 75, 205, 130, 192, 185, 19, 27, 193, 161, 164, 254, 64, 54, 2, 245, 63, 137, 236, 78, 64, 54, 2, 245, 63, 192, 47, 228, 64, 228, 11, 175, 191, 46, 235, 129, 64, 228, 11, 175, 191, 149, 171, 46, 64, 193, 45, 34, 192, 91, 173, 218, 191, 193, 45, 34, 192, 208, 216, 55, 64, 26, 27, 132, 192, 210, 7, 237, 191, 26, 27, 132, 192, 70, 135, 32, 65, 94, 101, 136, 64, 3, 14, 250, 64, 12, 176, 1, 65, 3, 14, 250, 64, 190, 169, 214, 62, 226, 21, 218, 64, 206, 185, 66, 64, 197, 25, 88, 64, 190, 169, 214, 62, 226, 21, 218, 64, 214, 109, 175, 64, 252, 4, 140, 64, 206, 185, 66, 64, 197, 25, 88, 64, 12, 176, 1, 65, 252, 4, 140, 64, 214, 109, 175, 64, 39, 49, 148, 63, 94, 101, 136, 64, 149, 242, 24, 64, 101, 59, 19, 193, 86, 197, 15, 64, 146, 114, 243, 192, 37, 106, 21, 192, 102, 59, 19, 193, 225, 60, 12, 192, 146, 114, 243, 192, 91, 172, 128, 192, 225, 3, 138, 192, 224, 110, 76, 192, 112, 1, 132, 191, 222, 240, 226, 192, 226, 3, 138, 192, 201, 101, 253, 192, 112, 1, 132, 191, 56, 217, 126, 63, 181, 18, 212, 192, 56, 217, 126, 63, 230, 99, 103, 192, 53, 11, 1, 192, 181, 18, 212, 192, 53, 11, 1, 192, 230, 99, 103, 192, 56, 217, 126, 63, 242, 195, 198, 63, 53, 11, 1, 192, 242, 195, 198, 63, 236, 153, 53, 63, 22, 64, 25, 192, 197, 118, 221, 191, 22, 64, 25, 192, 243, 177, 147, 192, 120, 60, 137, 63, 181, 18, 244, 192, 120, 60, 137, 63, 221, 217, 156, 192, 211, 3, 56, 192, 203, 234, 234, 192, 211, 3, 56, 192, 212, 61, 227, 64, 251, 105, 48, 64, 212, 61, 227, 64, 191, 149, 184, 64, 18, 221, 130, 64, 251, 105, 48, 64, 18, 221, 130, 64, 191, 149, 184, 64, 18, 221, 130, 192, 86, 159, 152, 63, 212, 61, 227, 192, 86, 159, 152, 63, 252, 4, 140, 192, 2, 205, 188, 192, 226, 21, 218, 192, 2, 205, 188, 192, 53, 11, 1, 64, 30, 91, 42, 63, 56, 217, 126, 191, 30, 91, 42, 63, 197, 118, 221, 63, 70, 11, 82, 192, 236, 153, 53, 191, 70, 11, 82, 192, 18, 221, 130, 192, 243, 177, 179, 64, 18, 221, 130, 192, 90, 9, 10, 65, 220, 61, 227, 192, 243, 177, 179, 64, 220, 61, 227, 192, 90, 9, 10, 65, 181, 18, 244, 64, 2, 29, 2, 63, 243, 177, 147, 64, 2, 29, 2, 63, 203, 234, 234, 64, 248, 131, 239, 191, 221, 217, 156, 64, 248, 131, 239, 191, 212, 61, 227, 64, 36, 220, 109, 63, 18, 221, 130, 64, 36, 220, 109, 63, 226, 21, 218, 64, 83, 57, 197, 192, 252, 4, 140, 64, 83, 57, 197, 192, 191, 149, 152, 64, 142, 171, 164, 63, 246, 211, 224, 63, 142, 171, 164, 63, 214, 109, 143, 64, 244, 201, 185, 192, 206, 185, 2, 64, 244, 201, 185, 192, 181, 18, 244, 192, 27, 77, 237, 63, 203, 234, 234, 192, 194, 138, 6, 191, 243, 177, 147, 192, 27, 77, 237, 63, 221, 217, 156, 192, 194, 138, 6, 191, 220, 61, 227, 64, 55, 101, 245, 63, 18, 221, 130, 64, 55, 101, 245, 63, 234, 21, 218, 64, 4, 181, 236, 190, 252, 4, 140, 64, 4, 181, 236, 190, 18, 221, 130, 192, 0, 216, 227, 62, 220, 61, 227, 192, 0, 216, 227, 62, 252, 4, 140, 192, 120, 156, 247, 191, 234, 21, 218, 192, 120, 156, 247, 191, 191, 149, 152, 192, 246, 195, 85, 63, 214, 109, 143, 192, 89, 60, 200, 192, 246, 211, 224, 191, 246, 195, 85, 63, 206, 185, 2, 192, 89, 60, 200, 192, 243, 177, 147, 64, 10, 181, 146, 63, 221, 217, 156, 64, 138, 71, 51, 192, 181, 18, 244, 64, 10, 181, 146, 63, 203, 234, 234, 64, 138, 71, 51, 192), +"format": 4119, +"index_count": 342, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 16, 0, 17, 0, 15, 0, 20, 0, 18, 0, 19, 0, 19, 0, 21, 0, 20, 0, 24, 0, 22, 0, 23, 0, 23, 0, 25, 0, 24, 0, 25, 0, 26, 0, 24, 0, 27, 0, 25, 0, 23, 0, 25, 0, 28, 0, 26, 0, 23, 0, 29, 0, 27, 0, 28, 0, 30, 0, 26, 0, 29, 0, 30, 0, 27, 0, 29, 0, 26, 0, 30, 0, 29, 0, 31, 0, 26, 0, 34, 0, 32, 0, 33, 0, 33, 0, 35, 0, 34, 0, 38, 0, 36, 0, 37, 0, 37, 0, 39, 0, 38, 0, 42, 0, 40, 0, 41, 0, 41, 0, 43, 0, 42, 0, 46, 0, 44, 0, 45, 0, 45, 0, 47, 0, 46, 0, 50, 0, 48, 0, 49, 0, 49, 0, 51, 0, 50, 0, 54, 0, 52, 0, 53, 0, 53, 0, 55, 0, 54, 0, 58, 0, 56, 0, 57, 0, 57, 0, 59, 0, 58, 0, 62, 0, 60, 0, 61, 0, 61, 0, 63, 0, 62, 0, 66, 0, 64, 0, 65, 0, 65, 0, 67, 0, 66, 0, 70, 0, 68, 0, 69, 0, 69, 0, 71, 0, 70, 0, 74, 0, 72, 0, 73, 0, 73, 0, 75, 0, 74, 0, 78, 0, 76, 0, 77, 0, 77, 0, 79, 0, 78, 0, 82, 0, 80, 0, 81, 0, 81, 0, 83, 0, 82, 0, 86, 0, 84, 0, 85, 0, 85, 0, 87, 0, 86, 0, 90, 0, 88, 0, 89, 0, 89, 0, 91, 0, 90, 0, 89, 0, 92, 0, 91, 0, 92, 0, 93, 0, 91, 0, 96, 0, 94, 0, 95, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 102, 0, 100, 0, 101, 0, 101, 0, 103, 0, 102, 0, 106, 0, 104, 0, 105, 0, 105, 0, 107, 0, 106, 0, 110, 0, 108, 0, 109, 0, 109, 0, 111, 0, 110, 0, 114, 0, 112, 0, 113, 0, 113, 0, 115, 0, 114, 0, 118, 0, 116, 0, 117, 0, 117, 0, 119, 0, 118, 0, 122, 0, 120, 0, 121, 0, 121, 0, 123, 0, 122, 0, 123, 0, 124, 0, 122, 0, 125, 0, 123, 0, 121, 0, 123, 0, 126, 0, 124, 0, 121, 0, 127, 0, 125, 0, 126, 0, 128, 0, 124, 0, 127, 0, 128, 0, 125, 0, 127, 0, 124, 0, 128, 0, 127, 0, 129, 0, 124, 0, 132, 0, 130, 0, 131, 0, 131, 0, 133, 0, 132, 0, 136, 0, 134, 0, 135, 0, 135, 0, 137, 0, 136, 0, 140, 0, 138, 0, 139, 0, 139, 0, 141, 0, 140, 0, 144, 0, 142, 0, 143, 0, 143, 0, 145, 0, 144, 0, 148, 0, 146, 0, 147, 0, 147, 0, 149, 0, 148, 0, 152, 0, 150, 0, 151, 0, 151, 0, 153, 0, 152, 0, 156, 0, 154, 0, 155, 0, 155, 0, 157, 0, 156, 0, 160, 0, 158, 0, 159, 0, 159, 0, 161, 0, 160, 0, 164, 0, 162, 0, 163, 0, 163, 0, 165, 0, 164, 0, 168, 0, 166, 0, 167, 0, 167, 0, 169, 0, 168, 0, 172, 0, 170, 0, 171, 0, 171, 0, 173, 0, 172, 0, 176, 0, 174, 0, 175, 0, 175, 0, 177, 0, 176, 0, 177, 0, 178, 0, 176, 0, 179, 0, 177, 0, 175, 0, 177, 0, 180, 0, 178, 0, 175, 0, 181, 0, 179, 0, 180, 0, 182, 0, 178, 0, 181, 0, 182, 0, 179, 0, 181, 0, 178, 0, 182, 0, 181, 0, 183, 0, 178, 0, 186, 0, 184, 0, 185, 0, 185, 0, 187, 0, 186, 0, 190, 0, 188, 0, 189, 0, 189, 0, 191, 0, 190, 0), +"material": SubResource("StandardMaterial3D_y6ao6"), +"name": "heart", +"primitive": 3, +"vertex_count": 252, +"vertex_data": PackedByteArray(143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 145, 203, 64, 188, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 168, 86, 241, 112, 94, 202, 105, 196, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 127, 129, 246, 196, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 183, 19, 71, 108, 29, 130, 47, 186, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 127, 126, 7, 187, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 183, 19, 71, 108, 225, 125, 207, 197, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 109, 52, 190, 195, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 14, 15, 86, 41, 160, 53, 148, 187, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 238, 9, 63, 255, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 12, 210, 242, 173, 195, 22, 159, 249, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 125, 7, 200, 165, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 199, 218, 196, 222, 242, 18, 174, 158, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 255, 127, 255, 255, 254, 255, 255, 191, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 255, 127, 255, 255, 255, 255, 255, 191, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 255, 127, 255, 255, 255, 255, 255, 191, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 255, 127, 255, 255, 255, 255, 255, 191, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 255, 127, 255, 255, 255, 255, 255, 191, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 255, 127, 255, 255, 255, 255, 255, 191, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 145, 203, 64, 188, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 127, 129, 246, 196, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 196, 94, 54, 165, 93, 189, 133, 182, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 242, 45, 242, 173, 190, 140, 97, 203, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 255, 127, 0, 0, 0, 0, 255, 191, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 255, 127, 0, 0, 0, 0, 255, 191, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 255, 127, 0, 0, 0, 0, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 255, 127, 0, 0, 0, 0, 255, 191, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 255, 127, 0, 0, 0, 0, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 0, 0, 0, 0, 255, 191, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 255, 127, 0, 0, 0, 0, 255, 191, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 255, 127, 0, 0, 0, 0, 255, 191, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 255, 127, 0, 0, 0, 0, 255, 191, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 71, 236, 71, 108, 160, 11, 14, 129, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 238, 9, 63, 255, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 240, 240, 86, 41, 213, 8, 207, 218, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 125, 7, 200, 165, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 14, 15, 86, 41, 80, 51, 116, 196, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 240, 240, 86, 41, 234, 8, 87, 166, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 204, 50, 58, 188, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 138, 7, 101, 217, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 127, 126, 7, 187, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 183, 19, 71, 108, 225, 125, 207, 197, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 109, 52, 190, 195, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 14, 15, 86, 41, 160, 53, 148, 187, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 242, 45, 242, 173, 64, 115, 157, 180, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 127, 126, 7, 187, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 55, 37, 196, 222, 161, 66, 120, 201, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 109, 52, 190, 195, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 116, 248, 153, 166, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 50, 205, 196, 195, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 58, 161, 54, 165, 210, 235, 79, 166, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 196, 94, 54, 165, 160, 204, 21, 202, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 204, 50, 58, 188, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 138, 7, 101, 217, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 55, 37, 196, 222, 94, 51, 233, 181, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 199, 218, 196, 222, 44, 20, 174, 217, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 204, 50, 58, 188, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 138, 7, 101, 217, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 55, 37, 196, 222, 94, 51, 233, 181, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 199, 218, 196, 222, 44, 20, 174, 217, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 204, 50, 58, 188, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 138, 7, 101, 217, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 55, 37, 196, 222, 94, 51, 233, 181, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 199, 218, 196, 222, 44, 20, 174, 217, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 14, 15, 86, 41, 80, 51, 116, 196, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 240, 240, 86, 41, 234, 8, 87, 166, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 204, 50, 58, 188, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 138, 7, 101, 217, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 238, 9, 63, 255, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 12, 210, 242, 173, 195, 22, 159, 249, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 125, 7, 200, 165, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 199, 218, 196, 222, 242, 18, 174, 158, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 129, 248, 54, 218, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 16, 246, 191, 128, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 86, 169, 241, 112, 41, 247, 46, 165, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 71, 236, 71, 108, 94, 244, 240, 254, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 145, 203, 64, 188, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 127, 129, 246, 196, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 196, 94, 54, 165, 93, 189, 133, 182, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 242, 45, 242, 173, 190, 140, 97, 203, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 71, 236, 71, 108, 160, 11, 14, 129, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 238, 9, 63, 255, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 240, 240, 86, 41, 213, 8, 207, 218, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 125, 7, 200, 165, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 238, 9, 63, 255, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 12, 210, 242, 173, 195, 22, 159, 249, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 125, 7, 200, 165, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 199, 218, 196, 222, 242, 18, 174, 158, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 255, 127, 255, 255, 255, 255, 255, 191, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 255, 127, 255, 255, 255, 255, 255, 191, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 255, 127, 255, 255, 255, 255, 255, 191, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 255, 127, 255, 255, 255, 255, 255, 191, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 255, 127, 255, 255, 255, 255, 255, 191, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 255, 127, 255, 255, 254, 255, 255, 191, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 255, 127, 255, 255, 255, 255, 255, 191, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 255, 127, 255, 255, 255, 255, 255, 191, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 255, 127, 255, 255, 255, 255, 255, 191, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 255, 127, 255, 255, 255, 255, 255, 191, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 255, 127, 255, 255, 255, 255, 255, 191, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 255, 127, 255, 255, 254, 255, 255, 191, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 71, 236, 71, 108, 160, 11, 14, 129, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 238, 9, 63, 255, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 240, 240, 86, 41, 213, 8, 207, 218, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 125, 7, 200, 165, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 129, 248, 54, 218, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 16, 246, 191, 128, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 86, 169, 241, 112, 41, 247, 46, 165, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 71, 236, 71, 108, 94, 244, 239, 254, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 129, 248, 54, 218, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 58, 161, 54, 165, 12, 237, 80, 225, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 16, 246, 191, 128, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 12, 210, 242, 173, 59, 233, 95, 134, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 86, 169, 241, 112, 20, 247, 167, 217, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 168, 86, 241, 112, 174, 204, 138, 187, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 116, 248, 153, 166, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 50, 205, 196, 195, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 145, 203, 64, 188, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 127, 129, 246, 196, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 196, 94, 54, 165, 93, 189, 133, 182, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 242, 45, 242, 173, 190, 140, 97, 203, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 255, 127, 0, 0, 0, 0, 255, 191, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 255, 127, 0, 0, 0, 0, 255, 191, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 255, 127, 0, 0, 0, 0, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 255, 127, 0, 0, 0, 0, 255, 191, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 255, 127, 0, 0, 0, 0, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 0, 0, 0, 0, 255, 191, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 255, 127, 0, 0, 0, 0, 255, 191, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 255, 127, 0, 0, 0, 0, 255, 191, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 0, 0, 0, 0, 255, 191, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 255, 127, 0, 0, 0, 0, 255, 191, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 129, 248, 54, 218, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 16, 246, 191, 128, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 86, 169, 241, 112, 41, 247, 46, 165, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 71, 236, 71, 108, 94, 244, 240, 254, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 242, 45, 242, 173, 64, 115, 157, 180, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 127, 126, 7, 187, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 55, 37, 196, 222, 161, 66, 120, 201, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 109, 52, 190, 195, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 14, 15, 86, 41, 80, 51, 116, 196, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 240, 240, 86, 41, 234, 8, 87, 166, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 204, 50, 58, 188, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 138, 7, 101, 217, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 129, 248, 54, 218, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 58, 161, 54, 165, 12, 237, 80, 225, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 16, 246, 191, 128, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 12, 210, 242, 173, 59, 233, 95, 134, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 86, 169, 241, 112, 20, 247, 167, 217, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 168, 86, 241, 112, 174, 204, 138, 187, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 116, 248, 153, 166, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 50, 205, 196, 195, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 145, 203, 64, 188, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 168, 86, 241, 112, 94, 202, 105, 196, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 127, 129, 246, 196, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 183, 19, 71, 108, 29, 130, 47, 186, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 127, 126, 7, 187, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 183, 19, 71, 108, 225, 125, 207, 197, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 109, 52, 190, 195, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 14, 15, 86, 41, 160, 53, 148, 187, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 116, 248, 153, 166, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 50, 205, 196, 195, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 58, 161, 54, 165, 210, 235, 79, 166, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 196, 94, 54, 165, 160, 204, 21, 202, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 129, 248, 54, 218, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 58, 161, 54, 165, 12, 237, 80, 225, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 16, 246, 191, 128, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 12, 210, 242, 173, 59, 233, 95, 134, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 116, 248, 153, 166, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 50, 205, 196, 195, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 58, 161, 54, 165, 210, 235, 79, 166, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 196, 94, 54, 165, 160, 204, 21, 202, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 86, 169, 241, 112, 20, 247, 167, 217, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 168, 86, 241, 112, 174, 204, 138, 187, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 116, 248, 153, 166, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 50, 205, 196, 195, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 255, 127, 0, 0, 0, 0, 255, 191, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 255, 127, 0, 0, 0, 0, 255, 191, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 255, 127, 0, 0, 0, 0, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 255, 127, 0, 0, 0, 0, 255, 191, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 255, 127, 0, 0, 0, 0, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 0, 0, 0, 0, 255, 191, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 255, 127, 0, 0, 0, 0, 255, 191, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 255, 127, 0, 0, 0, 0, 255, 191, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 0, 0, 0, 0, 255, 191, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 255, 127, 0, 0, 0, 0, 255, 191, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 145, 203, 64, 188, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 168, 86, 241, 112, 94, 202, 105, 196, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 127, 129, 246, 196, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 183, 19, 71, 108, 29, 130, 47, 186, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 242, 45, 242, 173, 64, 115, 157, 180, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 127, 126, 7, 187, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 55, 37, 196, 222, 161, 66, 120, 201, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 109, 52, 190, 195, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 255, 127, 0, 0, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 0, 0, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 255, 127, 0, 0, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 0, 0, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 255, 255, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 255, 255, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 255, 255, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 255, 255, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 172, 8, 171, 136, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 172, 8, 171, 136, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 172, 8, 171, 136, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 172, 8, 171, 136, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 255, 127, 0, 0, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 0, 0, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 255, 127, 0, 0, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 0, 0, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 247, 132, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 247, 132, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 247, 132, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 247, 132, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 171, 136, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 171, 136, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 171, 136, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 171, 136, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 255, 127, 0, 0, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 0, 0, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 255, 127, 0, 0, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 0, 0, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 212, 13, 211, 141, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 212, 13, 211, 141, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 212, 13, 211, 141, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 212, 13, 211, 141, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 255, 255, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 255, 255, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 255, 255, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 255, 255, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 247, 4, 247, 132, 0, 0, 0, 128, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 247, 4, 247, 132, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 247, 4, 247, 132, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 247, 4, 247, 132, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 42, 242, 211, 141, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 42, 242, 211, 141, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 211, 141, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 211, 141, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 211, 141, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 211, 141, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 211, 141, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 211, 141, 0, 0, 0, 128, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 255, 255, 0, 0, 0, 128, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 255, 255, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 255, 255, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 255, 255, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 7, 251, 247, 132, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 7, 251, 247, 132, 0, 0, 0, 128, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 247, 132, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 247, 132, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 82, 247, 171, 136, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 82, 247, 171, 136, 0, 0, 0, 128, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 171, 136, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 171, 136, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.262123, 0, -0.259406, 0.524246, 0.295, 0.518812), +"attribute_data": PackedByteArray(109, 196, 43, 192, 219, 40, 145, 192, 165, 241, 52, 192, 67, 73, 60, 192, 151, 16, 237, 192, 219, 40, 145, 192, 249, 121, 232, 192, 67, 73, 60, 192, 222, 110, 76, 192, 147, 172, 175, 192, 26, 156, 85, 192, 178, 80, 121, 192, 200, 101, 253, 192, 147, 172, 175, 192, 38, 207, 248, 192, 178, 80, 121, 192, 107, 196, 43, 64, 76, 65, 37, 191, 65, 174, 96, 64, 92, 87, 123, 192, 143, 16, 237, 64, 74, 65, 37, 191, 164, 155, 210, 64, 94, 87, 123, 192, 212, 145, 33, 64, 84, 226, 227, 64, 46, 235, 129, 64, 40, 200, 142, 64, 46, 235, 129, 64, 68, 126, 28, 65, 192, 47, 228, 64, 68, 126, 28, 65, 192, 47, 228, 64, 40, 200, 142, 64, 254, 168, 10, 65, 84, 226, 227, 64, 130, 242, 24, 64, 132, 159, 11, 192, 57, 106, 21, 192, 129, 159, 11, 192, 102, 17, 200, 63, 67, 211, 174, 192, 195, 0, 193, 191, 69, 211, 174, 192, 72, 49, 148, 191, 84, 226, 227, 64, 197, 25, 88, 192, 139, 110, 47, 65, 197, 25, 88, 192, 52, 207, 81, 64, 252, 4, 140, 192, 221, 217, 188, 64, 12, 14, 250, 192, 52, 207, 81, 64, 252, 4, 140, 192, 102, 117, 5, 65, 234, 21, 218, 192, 221, 217, 188, 64, 12, 14, 250, 192, 139, 110, 47, 65, 234, 21, 218, 192, 102, 117, 5, 65, 74, 135, 32, 193, 84, 226, 227, 64, 163, 21, 37, 193, 97, 114, 13, 192, 242, 96, 39, 193, 212, 122, 115, 192, 42, 42, 188, 192, 98, 114, 13, 192, 138, 147, 183, 192, 210, 122, 115, 192, 3, 14, 250, 64, 241, 229, 194, 192, 197, 25, 88, 64, 241, 229, 194, 192, 153, 164, 254, 64, 42, 234, 245, 192, 137, 236, 78, 64, 42, 234, 245, 192, 114, 180, 155, 64, 163, 219, 18, 192, 212, 29, 151, 64, 192, 76, 51, 191, 30, 195, 16, 62, 163, 219, 18, 192, 74, 203, 145, 62, 194, 76, 51, 191, 134, 63, 129, 64, 76, 164, 239, 192, 113, 180, 155, 64, 199, 160, 134, 192, 24, 216, 119, 63, 76, 164, 239, 192, 248, 194, 16, 62, 198, 160, 134, 192, 137, 236, 78, 192, 182, 101, 101, 192, 153, 164, 254, 192, 182, 101, 101, 192, 38, 235, 129, 192, 94, 182, 219, 192, 183, 47, 228, 192, 94, 182, 219, 192, 153, 164, 254, 64, 220, 206, 205, 192, 137, 236, 78, 64, 220, 206, 205, 192, 183, 47, 228, 64, 47, 105, 27, 193, 38, 235, 129, 64, 47, 105, 27, 193, 137, 236, 78, 192, 108, 103, 91, 192, 161, 164, 254, 192, 108, 103, 91, 192, 46, 235, 129, 192, 60, 183, 214, 192, 192, 47, 228, 192, 60, 183, 214, 192, 210, 7, 237, 63, 20, 141, 254, 62, 208, 216, 55, 192, 20, 141, 254, 62, 43, 52, 131, 63, 106, 53, 50, 192, 253, 238, 2, 192, 106, 53, 50, 192, 197, 25, 88, 192, 164, 124, 122, 191, 12, 14, 250, 192, 164, 124, 122, 191, 137, 236, 78, 192, 156, 167, 36, 192, 161, 164, 254, 192, 156, 167, 36, 192, 158, 242, 24, 192, 240, 177, 250, 192, 141, 17, 200, 191, 187, 218, 49, 193, 29, 106, 21, 64, 242, 177, 250, 192, 157, 0, 193, 63, 186, 218, 49, 193, 135, 180, 155, 192, 11, 65, 152, 192, 218, 196, 16, 190, 12, 65, 152, 192, 231, 29, 151, 192, 164, 121, 74, 192, 69, 204, 145, 190, 164, 121, 74, 192, 245, 96, 39, 65, 166, 154, 196, 191, 139, 147, 183, 64, 168, 154, 196, 191, 127, 38, 26, 65, 47, 42, 154, 192, 116, 8, 210, 64, 47, 42, 154, 192, 166, 241, 52, 64, 131, 16, 129, 192, 105, 196, 43, 64, 188, 20, 180, 192, 235, 121, 232, 64, 131, 16, 129, 192, 142, 16, 237, 64, 189, 20, 180, 192, 243, 96, 39, 193, 0, 116, 179, 60, 126, 38, 26, 193, 34, 160, 80, 192, 141, 147, 183, 192, 0, 115, 179, 60, 125, 8, 210, 192, 32, 160, 80, 192, 254, 168, 10, 193, 94, 101, 136, 64, 183, 47, 228, 192, 167, 44, 205, 63, 183, 47, 228, 192, 147, 127, 221, 64, 38, 235, 129, 192, 147, 127, 221, 64, 38, 235, 129, 192, 167, 44, 205, 63, 195, 145, 33, 192, 94, 101, 136, 64, 159, 222, 35, 192, 92, 226, 163, 192, 43, 52, 131, 191, 136, 252, 248, 192, 43, 52, 131, 191, 80, 144, 29, 192, 253, 238, 2, 64, 80, 144, 29, 192, 253, 238, 2, 64, 136, 252, 248, 192, 134, 51, 101, 64, 92, 226, 163, 192, 97, 197, 15, 192, 189, 223, 178, 192, 157, 242, 24, 192, 246, 227, 229, 192, 245, 60, 12, 64, 189, 223, 178, 192, 30, 106, 21, 64, 246, 227, 229, 192, 188, 134, 255, 192, 44, 39, 246, 192, 189, 176, 80, 192, 44, 39, 246, 192, 32, 240, 250, 192, 242, 34, 195, 192, 249, 221, 89, 192, 242, 34, 195, 192, 132, 180, 155, 192, 19, 91, 44, 64, 146, 63, 129, 192, 198, 175, 22, 191, 116, 196, 16, 190, 22, 91, 44, 64, 95, 216, 119, 191, 214, 175, 22, 191, 12, 14, 250, 64, 207, 173, 56, 192, 197, 25, 88, 64, 207, 173, 56, 192, 161, 164, 254, 64, 33, 91, 143, 192, 137, 236, 78, 64, 33, 91, 143, 192, 109, 196, 43, 192, 248, 244, 108, 192, 151, 16, 237, 192, 248, 244, 108, 192, 70, 174, 96, 192, 2, 126, 223, 192, 174, 155, 210, 192, 1, 126, 223, 192, 206, 87, 123, 64, 92, 226, 163, 192, 91, 173, 218, 63, 104, 158, 163, 191, 91, 173, 218, 63, 135, 110, 15, 193, 236, 153, 53, 63, 203, 234, 202, 192, 149, 171, 46, 192, 135, 110, 15, 193, 236, 153, 53, 63, 186, 179, 121, 192, 197, 118, 221, 191, 203, 234, 202, 192, 149, 171, 46, 192, 104, 158, 163, 191, 197, 118, 221, 191, 186, 179, 121, 192, 91, 86, 158, 192, 92, 226, 163, 192, 223, 110, 76, 64, 3, 145, 149, 192, 208, 101, 253, 64, 4, 145, 149, 192, 23, 156, 85, 64, 148, 25, 69, 192, 50, 207, 248, 64, 148, 25, 69, 192, 223, 17, 229, 64, 73, 97, 220, 192, 202, 134, 255, 64, 136, 187, 102, 192, 84, 205, 130, 64, 71, 97, 220, 192, 218, 176, 80, 64, 140, 187, 102, 192, 91, 173, 218, 63, 98, 30, 142, 192, 149, 171, 46, 192, 98, 30, 142, 192, 210, 7, 237, 63, 156, 34, 193, 192, 208, 216, 55, 192, 156, 34, 193, 192, 224, 110, 76, 64, 146, 68, 84, 192, 93, 172, 128, 64, 207, 37, 211, 192, 208, 101, 253, 64, 146, 68, 84, 192, 231, 240, 226, 64, 206, 37, 211, 192, 197, 25, 88, 192, 86, 108, 227, 192, 3, 14, 250, 192, 86, 108, 227, 192, 137, 236, 78, 192, 72, 56, 11, 193, 153, 164, 254, 192, 72, 56, 11, 193, 246, 96, 39, 65, 2, 227, 79, 192, 168, 21, 37, 65, 30, 181, 211, 191, 139, 147, 183, 64, 2, 227, 79, 192, 41, 42, 188, 64, 30, 181, 211, 191, 192, 134, 255, 64, 198, 25, 11, 193, 30, 240, 250, 64, 82, 47, 227, 192, 198, 176, 80, 64, 198, 25, 11, 193, 247, 221, 89, 64, 84, 47, 227, 192, 208, 216, 55, 64, 114, 11, 155, 192, 210, 7, 237, 191, 114, 11, 155, 192, 253, 238, 2, 64, 124, 7, 2, 193, 43, 52, 131, 191, 124, 7, 2, 193, 188, 134, 255, 192, 238, 35, 205, 192, 213, 17, 229, 192, 184, 19, 27, 193, 190, 176, 80, 192, 237, 35, 205, 192, 75, 205, 130, 192, 185, 19, 27, 193, 161, 164, 254, 64, 54, 2, 245, 63, 137, 236, 78, 64, 54, 2, 245, 63, 192, 47, 228, 64, 228, 11, 175, 191, 46, 235, 129, 64, 228, 11, 175, 191, 149, 171, 46, 64, 193, 45, 34, 192, 91, 173, 218, 191, 193, 45, 34, 192, 208, 216, 55, 64, 26, 27, 132, 192, 210, 7, 237, 191, 26, 27, 132, 192, 70, 135, 32, 65, 94, 101, 136, 64, 3, 14, 250, 64, 12, 176, 1, 65, 3, 14, 250, 64, 190, 169, 214, 62, 226, 21, 218, 64, 206, 185, 66, 64, 197, 25, 88, 64, 190, 169, 214, 62, 226, 21, 218, 64, 214, 109, 175, 64, 252, 4, 140, 64, 206, 185, 66, 64, 197, 25, 88, 64, 12, 176, 1, 65, 252, 4, 140, 64, 214, 109, 175, 64, 39, 49, 148, 63, 94, 101, 136, 64, 149, 242, 24, 64, 101, 59, 19, 193, 86, 197, 15, 64, 146, 114, 243, 192, 37, 106, 21, 192, 102, 59, 19, 193, 225, 60, 12, 192, 146, 114, 243, 192, 91, 172, 128, 192, 225, 3, 138, 192, 224, 110, 76, 192, 112, 1, 132, 191, 222, 240, 226, 192, 226, 3, 138, 192, 201, 101, 253, 192, 112, 1, 132, 191, 56, 217, 126, 63, 181, 18, 212, 192, 56, 217, 126, 63, 230, 99, 103, 192, 53, 11, 1, 192, 181, 18, 212, 192, 53, 11, 1, 192, 230, 99, 103, 192, 56, 217, 126, 63, 242, 195, 198, 63, 53, 11, 1, 192, 242, 195, 198, 63, 236, 153, 53, 63, 22, 64, 25, 192, 197, 118, 221, 191, 22, 64, 25, 192, 243, 177, 147, 192, 120, 60, 137, 63, 181, 18, 244, 192, 120, 60, 137, 63, 221, 217, 156, 192, 211, 3, 56, 192, 203, 234, 234, 192, 211, 3, 56, 192, 212, 61, 227, 64, 251, 105, 48, 64, 212, 61, 227, 64, 191, 149, 184, 64, 18, 221, 130, 64, 251, 105, 48, 64, 18, 221, 130, 64, 191, 149, 184, 64, 18, 221, 130, 192, 86, 159, 152, 63, 212, 61, 227, 192, 86, 159, 152, 63, 252, 4, 140, 192, 2, 205, 188, 192, 226, 21, 218, 192, 2, 205, 188, 192, 53, 11, 1, 64, 30, 91, 42, 63, 56, 217, 126, 191, 30, 91, 42, 63, 197, 118, 221, 63, 70, 11, 82, 192, 236, 153, 53, 191, 70, 11, 82, 192, 18, 221, 130, 192, 243, 177, 179, 64, 18, 221, 130, 192, 90, 9, 10, 65, 220, 61, 227, 192, 243, 177, 179, 64, 220, 61, 227, 192, 90, 9, 10, 65, 181, 18, 244, 64, 2, 29, 2, 63, 243, 177, 147, 64, 2, 29, 2, 63, 203, 234, 234, 64, 248, 131, 239, 191, 221, 217, 156, 64, 248, 131, 239, 191, 212, 61, 227, 64, 36, 220, 109, 63, 18, 221, 130, 64, 36, 220, 109, 63, 226, 21, 218, 64, 83, 57, 197, 192, 252, 4, 140, 64, 83, 57, 197, 192, 191, 149, 152, 64, 142, 171, 164, 63, 246, 211, 224, 63, 142, 171, 164, 63, 214, 109, 143, 64, 244, 201, 185, 192, 206, 185, 2, 64, 244, 201, 185, 192, 181, 18, 244, 192, 27, 77, 237, 63, 203, 234, 234, 192, 194, 138, 6, 191, 243, 177, 147, 192, 27, 77, 237, 63, 221, 217, 156, 192, 194, 138, 6, 191, 220, 61, 227, 64, 55, 101, 245, 63, 18, 221, 130, 64, 55, 101, 245, 63, 234, 21, 218, 64, 4, 181, 236, 190, 252, 4, 140, 64, 4, 181, 236, 190, 18, 221, 130, 192, 0, 216, 227, 62, 220, 61, 227, 192, 0, 216, 227, 62, 252, 4, 140, 192, 120, 156, 247, 191, 234, 21, 218, 192, 120, 156, 247, 191, 191, 149, 152, 192, 246, 195, 85, 63, 214, 109, 143, 192, 89, 60, 200, 192, 246, 211, 224, 191, 246, 195, 85, 63, 206, 185, 2, 192, 89, 60, 200, 192, 243, 177, 147, 64, 10, 181, 146, 63, 221, 217, 156, 64, 138, 71, 51, 192, 181, 18, 244, 64, 10, 181, 146, 63, 203, 234, 234, 64, 138, 71, 51, 192), +"format": 4119, +"index_count": 90, +"index_data": PackedByteArray(194, 0, 192, 0, 193, 0, 193, 0, 195, 0, 194, 0, 198, 0, 196, 0, 197, 0, 197, 0, 199, 0, 198, 0, 202, 0, 200, 0, 201, 0, 201, 0, 203, 0, 202, 0, 206, 0, 204, 0, 205, 0, 205, 0, 207, 0, 206, 0, 210, 0, 208, 0, 209, 0, 209, 0, 211, 0, 210, 0, 214, 0, 212, 0, 213, 0, 213, 0, 215, 0, 214, 0, 218, 0, 216, 0, 217, 0, 217, 0, 219, 0, 218, 0, 222, 0, 220, 0, 221, 0, 221, 0, 223, 0, 222, 0, 226, 0, 224, 0, 225, 0, 225, 0, 227, 0, 226, 0, 230, 0, 228, 0, 229, 0, 229, 0, 231, 0, 230, 0, 234, 0, 232, 0, 233, 0, 233, 0, 235, 0, 234, 0, 238, 0, 236, 0, 237, 0, 237, 0, 239, 0, 238, 0, 242, 0, 240, 0, 241, 0, 241, 0, 243, 0, 242, 0, 246, 0, 244, 0, 245, 0, 245, 0, 247, 0, 246, 0, 250, 0, 248, 0, 249, 0, 249, 0, 251, 0, 250, 0), +"material": SubResource("StandardMaterial3D_868gw"), +"name": "dirt", +"primitive": 3, +"vertex_count": 252, +"vertex_data": PackedByteArray(143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 168, 86, 241, 112, 0, 0, 0, 128, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 0, 0, 0, 128, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 183, 19, 71, 108, 0, 0, 0, 128, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 0, 0, 0, 128, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 183, 19, 71, 108, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 14, 15, 86, 41, 0, 0, 0, 128, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 0, 0, 0, 128, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 12, 210, 242, 173, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 199, 218, 196, 222, 0, 0, 0, 128, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 255, 127, 255, 255, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 255, 127, 255, 255, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 255, 127, 255, 255, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 255, 127, 255, 255, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 255, 127, 255, 255, 0, 0, 0, 128, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 255, 127, 255, 255, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 0, 0, 0, 128, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 196, 94, 54, 165, 0, 0, 0, 128, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 242, 45, 242, 173, 0, 0, 0, 128, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 255, 127, 0, 0, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 255, 127, 0, 0, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 255, 127, 0, 0, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 255, 127, 0, 0, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 255, 127, 0, 0, 0, 0, 0, 128, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 0, 0, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 255, 127, 0, 0, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 255, 127, 0, 0, 0, 0, 0, 128, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 255, 127, 0, 0, 0, 0, 0, 128, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 71, 236, 71, 108, 0, 0, 0, 128, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 240, 240, 86, 41, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 14, 15, 86, 41, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 240, 240, 86, 41, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 0, 0, 0, 128, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 0, 0, 0, 128, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 183, 19, 71, 108, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 14, 15, 86, 41, 0, 0, 0, 128, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 242, 45, 242, 173, 0, 0, 0, 128, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 55, 37, 196, 222, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 58, 161, 54, 165, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 196, 94, 54, 165, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 55, 37, 196, 222, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 199, 218, 196, 222, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 69, 22, 180, 61, 55, 37, 196, 222, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 199, 218, 196, 222, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 55, 37, 196, 222, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 199, 218, 196, 222, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 26, 7, 109, 61, 14, 15, 86, 41, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 26, 7, 109, 61, 240, 240, 86, 41, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 148, 48, 83, 61, 188, 12, 206, 213, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 0, 0, 0, 128, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 0, 0, 0, 128, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 12, 210, 242, 173, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 199, 218, 196, 222, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 0, 0, 0, 128, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 86, 169, 241, 112, 0, 0, 0, 128, 64, 122, 130, 62, 144, 194, 117, 61, 239, 54, 31, 62, 71, 236, 71, 108, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 0, 0, 0, 128, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 196, 94, 54, 165, 0, 0, 0, 128, 229, 82, 131, 61, 51, 51, 51, 62, 239, 54, 31, 62, 242, 45, 242, 173, 0, 0, 0, 128, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 71, 236, 71, 108, 0, 0, 0, 128, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 240, 240, 86, 41, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 0, 0, 0, 128, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 0, 0, 0, 128, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 12, 210, 242, 173, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 148, 48, 83, 61, 66, 243, 206, 213, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 69, 22, 180, 61, 199, 218, 196, 222, 0, 0, 0, 128, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 255, 127, 255, 255, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 255, 127, 255, 255, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 53, 6, 26, 62, 255, 127, 255, 255, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 255, 127, 255, 255, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 212, 232, 122, 60, 255, 127, 255, 255, 0, 0, 0, 128, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 255, 127, 255, 255, 0, 0, 0, 128, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 255, 127, 255, 255, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 255, 127, 255, 255, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 255, 127, 255, 255, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 255, 127, 255, 255, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 195, 98, 100, 190, 255, 127, 255, 255, 0, 0, 0, 128, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 255, 127, 255, 255, 0, 0, 0, 128, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 71, 236, 71, 108, 0, 0, 0, 128, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 240, 240, 86, 41, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 75, 131, 172, 188, 66, 243, 206, 213, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 0, 0, 0, 128, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 86, 169, 241, 112, 0, 0, 0, 128, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 71, 236, 71, 108, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 58, 161, 54, 165, 0, 0, 0, 128, 251, 52, 134, 62, 205, 204, 204, 61, 239, 54, 31, 62, 53, 239, 201, 144, 0, 0, 0, 128, 233, 103, 97, 62, 51, 51, 51, 62, 239, 54, 31, 62, 12, 210, 242, 173, 0, 0, 0, 128, 158, 62, 75, 62, 144, 194, 117, 61, 15, 150, 129, 62, 86, 169, 241, 112, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 168, 86, 241, 112, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 0, 0, 0, 128, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 196, 94, 54, 165, 0, 0, 0, 128, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 242, 45, 242, 173, 0, 0, 0, 128, 165, 74, 204, 189, 205, 204, 204, 61, 246, 54, 31, 190, 255, 127, 0, 0, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 255, 127, 0, 0, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 255, 127, 0, 0, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 255, 127, 0, 0, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 255, 127, 0, 0, 0, 0, 0, 128, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 0, 0, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 255, 127, 0, 0, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 255, 127, 0, 0, 0, 0, 0, 128, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 0, 0, 0, 0, 0, 128, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 255, 127, 0, 0, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 0, 0, 0, 128, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 86, 169, 241, 112, 0, 0, 0, 128, 83, 178, 0, 62, 205, 204, 204, 61, 246, 54, 31, 190, 71, 236, 71, 108, 0, 0, 0, 128, 233, 103, 97, 190, 61, 10, 151, 62, 194, 180, 169, 61, 242, 45, 242, 173, 0, 0, 0, 128, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 0, 0, 0, 128, 75, 120, 57, 190, 61, 10, 151, 62, 212, 232, 122, 60, 55, 37, 196, 222, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 12, 150, 129, 190, 14, 15, 86, 41, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 12, 150, 129, 190, 240, 240, 86, 41, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 224, 208, 132, 190, 66, 243, 206, 213, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 58, 161, 54, 165, 0, 0, 0, 128, 200, 39, 8, 62, 41, 92, 15, 62, 246, 54, 31, 190, 53, 239, 201, 144, 0, 0, 0, 128, 119, 75, 186, 61, 246, 40, 92, 62, 246, 54, 31, 190, 12, 210, 242, 173, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 86, 169, 241, 112, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 168, 86, 241, 112, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 0, 0, 0, 128, 137, 165, 175, 61, 144, 194, 117, 61, 15, 150, 129, 62, 168, 86, 241, 112, 0, 0, 0, 128, 48, 59, 181, 60, 205, 204, 204, 61, 239, 54, 31, 62, 201, 16, 201, 144, 0, 0, 0, 128, 216, 230, 240, 60, 144, 194, 117, 61, 239, 54, 31, 62, 183, 19, 71, 108, 0, 0, 0, 128, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 0, 0, 0, 128, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 183, 19, 71, 108, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 75, 131, 172, 188, 188, 12, 206, 213, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 14, 15, 86, 41, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 0, 0, 0, 128, 119, 216, 84, 61, 246, 40, 92, 62, 69, 22, 180, 189, 58, 161, 54, 165, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 69, 22, 180, 189, 196, 94, 54, 165, 0, 0, 0, 128, 19, 48, 168, 189, 173, 71, 97, 62, 44, 69, 63, 62, 47, 170, 188, 140, 0, 0, 0, 128, 18, 50, 211, 189, 61, 10, 151, 62, 53, 6, 26, 62, 58, 161, 54, 165, 0, 0, 0, 128, 251, 58, 181, 188, 173, 71, 97, 62, 194, 180, 169, 61, 53, 239, 201, 144, 0, 0, 0, 128, 215, 82, 131, 189, 61, 10, 151, 62, 194, 180, 169, 61, 12, 210, 242, 173, 0, 0, 0, 128, 81, 249, 78, 62, 205, 204, 204, 61, 224, 208, 132, 62, 47, 170, 188, 140, 0, 0, 0, 128, 19, 48, 168, 61, 205, 204, 204, 61, 224, 208, 132, 62, 207, 85, 188, 140, 0, 0, 0, 128, 82, 120, 57, 62, 51, 51, 51, 62, 195, 98, 100, 62, 58, 161, 54, 165, 0, 0, 0, 128, 31, 50, 211, 61, 51, 51, 51, 62, 195, 98, 100, 62, 196, 94, 54, 165, 0, 0, 0, 128, 211, 248, 141, 61, 205, 204, 204, 61, 26, 7, 109, 189, 86, 169, 241, 112, 0, 0, 0, 128, 165, 189, 49, 189, 205, 204, 204, 61, 26, 7, 109, 189, 168, 86, 241, 112, 0, 0, 0, 128, 71, 110, 149, 61, 41, 92, 15, 62, 148, 48, 83, 189, 47, 170, 188, 140, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 148, 48, 83, 189, 207, 85, 188, 140, 0, 0, 0, 128, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 255, 127, 0, 0, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 255, 127, 0, 0, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 235, 172, 113, 188, 255, 127, 0, 0, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 255, 127, 0, 0, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 235, 172, 113, 188, 255, 127, 0, 0, 0, 0, 0, 128, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 0, 0, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 255, 127, 0, 0, 0, 0, 0, 128, 137, 165, 175, 189, 235, 81, 56, 62, 138, 207, 56, 62, 255, 127, 0, 0, 0, 0, 0, 128, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 0, 0, 0, 0, 0, 128, 162, 230, 240, 188, 235, 81, 56, 62, 194, 180, 169, 61, 255, 127, 0, 0, 0, 0, 0, 128, 75, 249, 78, 190, 173, 71, 97, 62, 44, 69, 63, 62, 207, 85, 188, 140, 0, 0, 0, 128, 151, 62, 75, 190, 235, 81, 56, 62, 138, 207, 56, 62, 168, 86, 241, 112, 0, 0, 0, 128, 251, 52, 134, 190, 173, 71, 97, 62, 194, 180, 169, 61, 201, 16, 201, 144, 0, 0, 0, 128, 61, 122, 130, 190, 235, 81, 56, 62, 194, 180, 169, 61, 183, 19, 71, 108, 0, 0, 0, 128, 119, 49, 133, 189, 246, 40, 92, 62, 246, 54, 31, 190, 242, 45, 242, 173, 0, 0, 0, 128, 143, 53, 219, 189, 41, 92, 15, 62, 246, 54, 31, 190, 201, 16, 201, 144, 0, 0, 0, 128, 237, 72, 213, 188, 246, 40, 92, 62, 195, 98, 100, 190, 55, 37, 196, 222, 0, 0, 0, 128, 143, 168, 64, 189, 41, 92, 15, 62, 224, 208, 132, 190, 188, 12, 206, 213, 0, 0, 0, 128, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 255, 127, 0, 0, 0, 0, 255, 191, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 0, 0, 0, 0, 255, 191, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 255, 127, 0, 0, 0, 0, 255, 191, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 0, 0, 0, 0, 255, 191, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 255, 255, 0, 0, 255, 191, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 255, 255, 0, 0, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 255, 255, 0, 0, 255, 191, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 255, 255, 0, 0, 255, 191, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 172, 8, 171, 136, 255, 127, 255, 191, 16, 36, 207, 188, 171, 19, 208, 37, 242, 97, 70, 190, 172, 8, 171, 136, 255, 127, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 172, 8, 171, 136, 255, 127, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 207, 240, 62, 190, 172, 8, 171, 136, 255, 127, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 255, 127, 0, 0, 0, 0, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 0, 0, 0, 0, 255, 191, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 255, 127, 0, 0, 0, 0, 255, 191, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 0, 0, 0, 0, 255, 191, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 247, 132, 255, 255, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 255, 127, 247, 132, 255, 255, 255, 191, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 247, 132, 255, 255, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 255, 127, 247, 132, 255, 255, 255, 191, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 171, 136, 255, 255, 255, 191, 16, 36, 207, 188, 171, 19, 208, 37, 218, 23, 240, 189, 255, 127, 171, 136, 255, 255, 255, 191, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 171, 136, 255, 255, 255, 191, 2, 155, 147, 188, 205, 204, 204, 61, 31, 250, 254, 189, 255, 127, 171, 136, 255, 255, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 255, 127, 0, 0, 0, 0, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 0, 0, 0, 0, 255, 191, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 255, 127, 0, 0, 0, 0, 255, 191, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 0, 0, 0, 0, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 212, 13, 211, 141, 255, 127, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 212, 13, 211, 141, 255, 127, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 212, 13, 211, 141, 255, 127, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 212, 13, 211, 141, 255, 127, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 255, 255, 0, 0, 255, 191, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 255, 255, 0, 0, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 255, 255, 0, 0, 255, 191, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 255, 255, 0, 0, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 198, 10, 248, 61, 247, 4, 247, 132, 255, 127, 255, 191, 176, 179, 56, 190, 169, 19, 80, 38, 124, 189, 54, 61, 247, 4, 247, 132, 255, 127, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 131, 40, 233, 61, 247, 4, 247, 132, 255, 127, 255, 191, 135, 66, 49, 190, 235, 81, 56, 62, 3, 130, 84, 61, 247, 4, 247, 132, 255, 127, 255, 191, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 42, 242, 211, 141, 255, 255, 255, 255, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 42, 242, 211, 141, 255, 255, 255, 255, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 211, 141, 255, 255, 255, 255, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 211, 141, 255, 255, 255, 255, 182, 179, 56, 62, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 211, 141, 255, 255, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 242, 97, 70, 62, 255, 127, 211, 141, 255, 255, 255, 191, 142, 66, 49, 62, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 211, 141, 255, 255, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 207, 240, 62, 62, 255, 127, 211, 141, 255, 255, 255, 191, 87, 187, 212, 61, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 255, 255, 0, 0, 255, 191, 182, 179, 56, 62, 0, 0, 0, 0, 218, 23, 240, 61, 42, 242, 255, 255, 0, 0, 255, 191, 155, 157, 227, 61, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 255, 255, 0, 0, 255, 191, 142, 66, 49, 62, 144, 194, 117, 61, 31, 250, 254, 61, 42, 242, 255, 255, 0, 0, 255, 191, 87, 187, 212, 189, 169, 19, 80, 38, 198, 10, 248, 61, 7, 251, 247, 132, 255, 255, 255, 255, 155, 157, 227, 189, 235, 81, 56, 62, 131, 40, 233, 61, 7, 251, 247, 132, 255, 255, 255, 255, 87, 187, 212, 189, 169, 19, 80, 38, 124, 189, 54, 61, 7, 251, 247, 132, 255, 255, 255, 255, 155, 157, 227, 189, 235, 81, 56, 62, 3, 130, 84, 61, 7, 251, 247, 132, 255, 255, 255, 255, 8, 198, 81, 61, 171, 19, 208, 37, 218, 23, 240, 189, 82, 247, 171, 136, 255, 255, 255, 255, 130, 1, 52, 61, 205, 204, 204, 61, 31, 250, 254, 189, 82, 247, 171, 136, 255, 255, 255, 255, 8, 198, 81, 61, 171, 19, 208, 37, 242, 97, 70, 190, 82, 247, 171, 136, 255, 255, 255, 255, 130, 1, 52, 61, 205, 204, 204, 61, 207, 240, 62, 190, 82, 247, 171, 136, 255, 255, 255, 255) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_bmbmt") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kmhjb"] +resource_name = "woodDark" +vertex_color_use_as_albedo = true +albedo_color = Color(0.627451, 0.384314, 0.223529, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_tse3o"] +resource_name = "_defaultMat" +vertex_color_use_as_albedo = true +albedo_color = Color(1, 1, 1, 1) +metallic = 1.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6tnsh"] +resource_name = "heart" +vertex_color_use_as_albedo = true +albedo_color = Color(0.976471, 0.290196, 0.372549, 1) +metallic = 1.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_gnfut"] +_surfaces = [{ +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"format": 4097, +"index_count": 30, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 4, 0, 5, 0, 5, 0, 1, 0, 0, 0, 7, 0, 6, 0, 2, 0, 2, 0, 3, 0, 7, 0, 2, 0, 6, 0, 4, 0, 4, 0, 0, 0, 2, 0, 1, 0, 5, 0, 7, 0, 7, 0, 3, 0, 1, 0), +"name": "woodDark", +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49) +}, { +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"format": 4097, +"index_count": 6, +"index_data": PackedByteArray(5, 0, 4, 0, 6, 0, 6, 0, 7, 0, 5, 0), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49) +}, { +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"format": 4097, +"index_count": 84, +"index_data": PackedByteArray(10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 8, 0, 10, 0, 9, 0, 11, 0, 9, 0, 10, 0, 12, 0, 8, 0, 10, 0, 10, 0, 13, 0, 12, 0, 8, 0, 12, 0, 10, 0, 13, 0, 10, 0, 12, 0, 16, 0, 14, 0, 15, 0, 15, 0, 17, 0, 16, 0, 16, 0, 17, 0, 12, 0, 12, 0, 13, 0, 16, 0, 14, 0, 16, 0, 15, 0, 17, 0, 15, 0, 16, 0, 17, 0, 16, 0, 12, 0, 13, 0, 12, 0, 16, 0, 20, 0, 18, 0, 19, 0, 19, 0, 21, 0, 20, 0, 18, 0, 20, 0, 19, 0, 21, 0, 19, 0, 20, 0, 22, 0, 18, 0, 20, 0, 20, 0, 23, 0, 22, 0, 18, 0, 22, 0, 20, 0, 23, 0, 20, 0, 22, 0, 21, 0, 19, 0, 15, 0, 15, 0, 14, 0, 21, 0, 19, 0, 21, 0, 15, 0, 14, 0, 15, 0, 21, 0), +"name": "heart", +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49) +}] +blend_shape_mode = 0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_tbtgc"] +resource_name = "flag_Mesh flag" +_surfaces = [{ +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"attribute_data": PackedByteArray(131, 193, 128, 191, 194, 96, 0, 64, 131, 193, 128, 191, 0, 131, 193, 187, 131, 193, 128, 63, 194, 96, 0, 64, 131, 193, 128, 63, 0, 131, 193, 187, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 91, 49, 1, 194, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 182, 144, 205, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 160, 103, 169, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 160, 103, 169, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 182, 144, 205, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 91, 49, 1, 194, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 91, 49, 1, 194, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 91, 49, 1, 194), +"format": 4119, +"index_count": 30, +"index_data": PackedByteArray(2, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 6, 0, 4, 0, 5, 0, 5, 0, 7, 0, 6, 0, 10, 0, 8, 0, 9, 0, 9, 0, 11, 0, 10, 0, 14, 0, 12, 0, 13, 0, 13, 0, 15, 0, 14, 0, 18, 0, 16, 0, 17, 0, 17, 0, 19, 0, 18, 0), +"material": SubResource("StandardMaterial3D_kmhjb"), +"name": "woodDark", +"primitive": 3, +"vertex_count": 78, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 255, 255, 255, 191, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 255, 255, 255, 191, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 255, 255, 255, 191, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 255, 255, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 84, 1, 83, 129, 255, 127, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 84, 1, 83, 129, 255, 127, 255, 191, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 84, 1, 83, 129, 255, 127, 255, 191, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 84, 1, 83, 129, 255, 127, 255, 191, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 170, 254, 83, 129, 255, 255, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 170, 254, 83, 129, 255, 255, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 83, 129, 255, 255, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 83, 129, 255, 255, 255, 255, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 255, 255, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 255, 255, 255, 191, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 255, 255, 255, 191, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 255, 255, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 170, 254, 255, 255, 0, 0, 255, 191, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 255, 255, 0, 0, 255, 191, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 255, 191, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 0, 0, 135, 231, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 0, 0, 135, 231, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 118, 152, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 118, 152, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 0, 128, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 0, 0, 188, 197, 0, 0, 0, 128, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 0, 0, 188, 197, 0, 0, 0, 128, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 65, 186, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 65, 186, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"attribute_data": PackedByteArray(131, 193, 128, 191, 194, 96, 0, 64, 131, 193, 128, 191, 0, 131, 193, 187, 131, 193, 128, 63, 194, 96, 0, 64, 131, 193, 128, 63, 0, 131, 193, 187, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 91, 49, 1, 194, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 182, 144, 205, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 160, 103, 169, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 160, 103, 169, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 182, 144, 205, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 91, 49, 1, 194, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 91, 49, 1, 194, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 91, 49, 1, 194), +"format": 4119, +"index_count": 6, +"index_data": PackedByteArray(22, 0, 20, 0, 21, 0, 25, 0, 23, 0, 24, 0), +"material": SubResource("StandardMaterial3D_tse3o"), +"name": "_defaultMat", +"primitive": 3, +"vertex_count": 78, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 84, 1, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 84, 1, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 84, 1, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 84, 1, 83, 129, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 170, 254, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 170, 254, 83, 129, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 83, 129, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 170, 254, 255, 255, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 255, 255, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 255, 255, 255, 191, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 255, 255, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 255, 255, 255, 191, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 255, 127, 0, 0, 0, 0, 255, 191, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 0, 0, 255, 191, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 255, 191, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 0, 0, 135, 231, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 0, 0, 135, 231, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 118, 152, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 118, 152, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 0, 128, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 0, 128, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 0, 0, 0, 128, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 0, 0, 188, 197, 0, 0, 0, 128, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 0, 0, 188, 197, 0, 0, 0, 128, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 65, 186, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 0, 0, 0, 128, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 65, 186, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 0, 128, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 0, 128, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 0, 128) +}, { +"aabb": AABB(-0.337615, 0, -0.05, 0.372615, 0.90001, 0.085), +"attribute_data": PackedByteArray(131, 193, 128, 191, 194, 96, 0, 64, 131, 193, 128, 191, 0, 131, 193, 187, 131, 193, 128, 63, 194, 96, 0, 64, 131, 193, 128, 63, 0, 131, 193, 187, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 63, 20, 218, 129, 63, 194, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 194, 96, 176, 63, 20, 218, 129, 63, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 63, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 131, 193, 128, 191, 166, 174, 9, 194, 131, 193, 128, 63, 166, 174, 9, 194, 193, 96, 176, 191, 20, 218, 129, 63, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 91, 49, 1, 194, 181, 163, 80, 64, 91, 49, 1, 194, 238, 24, 128, 63, 130, 27, 170, 193, 181, 163, 80, 64, 130, 27, 170, 193, 238, 24, 128, 63, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 233, 247, 168, 64, 130, 27, 170, 193, 148, 88, 65, 64, 91, 49, 1, 194, 148, 88, 65, 64, 130, 27, 170, 193, 233, 247, 168, 64, 91, 49, 1, 194, 182, 144, 205, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 160, 103, 169, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 160, 103, 169, 64, 91, 49, 1, 194, 182, 144, 205, 64, 130, 27, 170, 193, 182, 144, 205, 64, 91, 49, 1, 194, 160, 103, 169, 64, 130, 27, 170, 193, 138, 62, 133, 64, 130, 27, 170, 193, 138, 62, 133, 64, 91, 49, 1, 194, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 91, 49, 1, 194, 205, 161, 46, 65, 91, 49, 1, 194, 254, 123, 10, 65, 130, 27, 170, 193, 205, 161, 46, 65, 130, 27, 170, 193, 254, 123, 10, 65, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 67, 54, 35, 65, 130, 27, 170, 193, 89, 26, 254, 64, 91, 49, 1, 194, 89, 26, 254, 64, 130, 27, 170, 193, 67, 54, 35, 65, 91, 49, 1, 194, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 91, 49, 1, 194, 117, 248, 24, 65, 91, 49, 1, 194, 74, 165, 233, 64, 130, 27, 170, 193, 117, 248, 24, 65, 130, 27, 170, 193, 74, 165, 233, 64, 91, 49, 1, 194), +"format": 4119, +"index_count": 84, +"index_data": PackedByteArray(28, 0, 26, 0, 27, 0, 27, 0, 29, 0, 28, 0, 32, 0, 30, 0, 31, 0, 33, 0, 31, 0, 30, 0, 36, 0, 34, 0, 35, 0, 35, 0, 37, 0, 36, 0, 40, 0, 38, 0, 39, 0, 41, 0, 39, 0, 38, 0, 44, 0, 42, 0, 43, 0, 43, 0, 45, 0, 44, 0, 44, 0, 45, 0, 46, 0, 46, 0, 47, 0, 44, 0, 50, 0, 48, 0, 49, 0, 51, 0, 49, 0, 48, 0, 51, 0, 48, 0, 52, 0, 53, 0, 52, 0, 48, 0, 56, 0, 54, 0, 55, 0, 55, 0, 57, 0, 56, 0, 60, 0, 58, 0, 59, 0, 61, 0, 59, 0, 58, 0, 64, 0, 62, 0, 63, 0, 63, 0, 65, 0, 64, 0, 68, 0, 66, 0, 67, 0, 69, 0, 67, 0, 66, 0, 72, 0, 70, 0, 71, 0, 71, 0, 73, 0, 72, 0, 76, 0, 74, 0, 75, 0, 77, 0, 75, 0, 74, 0), +"material": SubResource("StandardMaterial3D_6tnsh"), +"name": "heart", +"primitive": 3, +"vertex_count": 78, +"vertex_data": PackedByteArray(60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 255, 127, 255, 255, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 84, 1, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 84, 1, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 84, 1, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 84, 1, 83, 129, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 170, 254, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 170, 254, 83, 129, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 83, 129, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 83, 129, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 60, 255, 127, 83, 129, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 170, 254, 255, 255, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 170, 254, 255, 255, 0, 0, 0, 128, 60, 78, 209, 188, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 0, 128, 60, 78, 209, 60, 102, 102, 102, 63, 60, 78, 209, 188, 170, 254, 255, 255, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 61, 0, 0, 0, 0, 40, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 41, 92, 15, 189, 0, 0, 0, 0, 41, 92, 15, 189, 255, 127, 0, 0, 0, 0, 0, 128, 40, 92, 15, 61, 0, 0, 0, 0, 41, 92, 15, 61, 255, 127, 0, 0, 0, 0, 0, 128, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 255, 191, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 0, 0, 135, 231, 119, 24, 255, 191, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 255, 191, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 0, 0, 135, 231, 119, 24, 255, 191, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 255, 63, 75, 248, 213, 188, 7, 196, 16, 63, 41, 197, 77, 47, 118, 152, 255, 127, 119, 24, 255, 63, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 255, 63, 75, 248, 213, 188, 169, 132, 88, 63, 93, 197, 77, 47, 118, 152, 255, 127, 119, 24, 255, 63, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 255, 191, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 255, 255, 255, 0, 0, 255, 191, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 87, 213, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 87, 213, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 167, 42, 179, 221, 167, 189, 169, 132, 88, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 255, 63, 179, 221, 167, 189, 7, 196, 16, 63, 142, 54, 88, 60, 255, 127, 255, 127, 0, 0, 255, 63, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 167, 42, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 87, 213, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 87, 213, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 32, 221, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 255, 255, 188, 197, 0, 0, 32, 221, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 255, 255, 78, 213, 0, 0, 87, 213, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 255, 255, 78, 213, 0, 0, 87, 213, 1, 173, 35, 190, 169, 132, 88, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 222, 34, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 167, 42, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 167, 42, 1, 173, 35, 190, 7, 196, 16, 63, 40, 191, 150, 188, 189, 69, 255, 127, 0, 0, 222, 34, 170, 30, 13, 190, 7, 196, 16, 63, 41, 197, 77, 47, 78, 85, 255, 127, 0, 0, 167, 42, 170, 30, 13, 190, 169, 132, 88, 63, 93, 197, 77, 47, 78, 85, 255, 127, 0, 0, 167, 42, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 176, 42, 255, 191, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 255, 191, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 176, 42, 255, 191, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 255, 191, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 176, 42, 255, 63, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 255, 63, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 176, 42, 255, 63, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 255, 63, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 0, 0, 78, 213, 176, 42, 255, 191, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 0, 0, 78, 213, 176, 42, 255, 191, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 0, 0, 188, 197, 66, 58, 255, 191, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 0, 0, 188, 197, 66, 58, 255, 191, 211, 219, 172, 190, 7, 196, 16, 63, 35, 169, 89, 49, 65, 186, 255, 127, 66, 58, 255, 63, 124, 77, 150, 190, 169, 132, 88, 63, 40, 191, 22, 189, 176, 170, 255, 127, 176, 42, 255, 63, 124, 77, 150, 190, 7, 196, 16, 63, 40, 191, 22, 189, 176, 170, 255, 127, 176, 42, 255, 63, 211, 219, 172, 190, 169, 132, 88, 63, 31, 169, 89, 49, 65, 186, 255, 127, 66, 58, 255, 63, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 255, 191, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 87, 213, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 255, 255, 255, 0, 0, 255, 191, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 255, 255, 78, 213, 0, 0, 87, 213, 41, 107, 115, 190, 169, 132, 88, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 255, 63, 88, 59, 58, 190, 7, 196, 16, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 167, 42, 41, 107, 115, 190, 7, 196, 16, 63, 204, 204, 76, 189, 255, 127, 255, 127, 0, 0, 255, 63, 88, 59, 58, 190, 169, 132, 88, 63, 41, 191, 22, 189, 78, 85, 255, 127, 0, 0, 167, 42) +}] +blend_shape_mode = 0 +shadow_mesh = SubResource("ArrayMesh_gnfut") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_pqqaw"] +data = PackedVector3Array(0.0256, 0.9, 0.0256, -0.0256, 0.9, 0.0256, -0.0256, 0.9, -0.0256, -0.0256, 0.9, -0.0256, 0.0256, 0.9, -0.0256, 0.0256, 0.9, 0.0256, -0.0256, 0.9, 0.0256, -0.035, 0, 0.035, -0.035, 0, -0.035, -0.035, 0, -0.035, -0.0256, 0.9, -0.0256, -0.0256, 0.9, 0.0256, 0.035, 0, -0.035, 0.035, 0, 0.035, 0.0256, 0.9, 0.0256, 0.0256, 0.9, 0.0256, 0.0256, 0.9, -0.0256, 0.035, 0, -0.035, 0.0256, 0.9, 0.0256, 0.035, 0, 0.035, -0.035, 0, 0.035, -0.035, 0, 0.035, -0.0256, 0.9, 0.0256, 0.0256, 0.9, 0.0256, -0.0256, 0.9, -0.0256, -0.035, 0, -0.035, 0.035, 0, -0.035, 0.035, 0, -0.035, 0.0256, 0.9, -0.0256, -0.0256, 0.9, -0.0256, -0.035, 0, -0.035, -0.035, 0, 0.035, 0.035, 0, 0.035, 0.035, 0, 0.035, 0.035, 0, -0.035, -0.035, 0, -0.035, -0.082, 0.8458, 0.0132, -0.082, 0.5655, 0.0132, -0.0261, 0.5655, 0, -0.0261, 0.5655, 0, -0.0261, 0.8458, 0, -0.082, 0.8458, 0.0132, -0.082, 0.5655, 0.0132, -0.082, 0.8458, 0.0132, -0.0261, 0.5655, 0, -0.0261, 0.8458, 0, -0.0261, 0.5655, 0, -0.082, 0.8458, 0.0132, -0.1378, 0.5655, 0, -0.082, 0.5655, 0.0132, -0.082, 0.8458, 0.0132, -0.082, 0.8458, 0.0132, -0.1378, 0.8458, 0, -0.1378, 0.5655, 0, -0.082, 0.5655, 0.0132, -0.1378, 0.5655, 0, -0.082, 0.8458, 0.0132, -0.1378, 0.8458, 0, -0.082, 0.8458, 0.0132, -0.1378, 0.5655, 0, -0.1598, 0.8458, -0.0184, -0.1819, 0.8458, -0.0368, -0.1819, 0.5655, -0.0368, -0.1819, 0.5655, -0.0368, -0.1598, 0.5655, -0.0184, -0.1598, 0.8458, -0.0184, -0.1598, 0.8458, -0.0184, -0.1598, 0.5655, -0.0184, -0.1378, 0.5655, 0, -0.1378, 0.5655, 0, -0.1378, 0.8458, 0, -0.1598, 0.8458, -0.0184, -0.1819, 0.8458, -0.0368, -0.1598, 0.8458, -0.0184, -0.1819, 0.5655, -0.0368, -0.1598, 0.5655, -0.0184, -0.1819, 0.5655, -0.0368, -0.1598, 0.8458, -0.0184, -0.1598, 0.5655, -0.0184, -0.1598, 0.8458, -0.0184, -0.1378, 0.5655, 0, -0.1378, 0.8458, 0, -0.1378, 0.5655, 0, -0.1598, 0.8458, -0.0184, -0.2936, 0.8458, -0.0368, -0.2936, 0.5655, -0.0368, -0.2377, 0.5655, -0.05, -0.2377, 0.5655, -0.05, -0.2377, 0.8458, -0.05, -0.2936, 0.8458, -0.0368, -0.2936, 0.5655, -0.0368, -0.2936, 0.8458, -0.0368, -0.2377, 0.5655, -0.05, -0.2377, 0.8458, -0.05, -0.2377, 0.5655, -0.05, -0.2936, 0.8458, -0.0368, -0.3376, 0.5655, 0, -0.2936, 0.5655, -0.0368, -0.2936, 0.8458, -0.0368, -0.2936, 0.8458, -0.0368, -0.3376, 0.8458, 0, -0.3376, 0.5655, 0, -0.2936, 0.5655, -0.0368, -0.3376, 0.5655, 0, -0.2936, 0.8458, -0.0368, -0.3376, 0.8458, 0, -0.2936, 0.8458, -0.0368, -0.3376, 0.5655, 0, -0.2377, 0.8458, -0.05, -0.2377, 0.5655, -0.05, -0.1819, 0.5655, -0.0368, -0.1819, 0.5655, -0.0368, -0.1819, 0.8458, -0.0368, -0.2377, 0.8458, -0.05, -0.2377, 0.5655, -0.05, -0.2377, 0.8458, -0.05, -0.1819, 0.5655, -0.0368, -0.1819, 0.8458, -0.0368, -0.1819, 0.5655, -0.0368, -0.2377, 0.8458, -0.05) + +[node name="forest-blocks" type="Node3D"] + +[node name="block2" type="MeshInstance3D" parent="."] +mesh = SubResource("ArrayMesh_k1g66") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="block2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="block2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_w5axk") + +[node name="blockCliff2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0) +mesh = SubResource("ArrayMesh_37m0g") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockCliff2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockCliff2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_byf41") + +[node name="blockCliffCorner2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 0) +mesh = SubResource("ArrayMesh_y800a") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockCliffCorner2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockCliffCorner2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_h4xdm") + +[node name="blockDirt2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) +mesh = SubResource("ArrayMesh_8ut0e") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockDirt2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockDirt2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_l140x") + +[node name="blockDirtRamp2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2) +mesh = SubResource("ArrayMesh_ys1ar") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockDirtRamp2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockDirtRamp2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_fsegj") + +[node name="blockEnd2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 2) +mesh = SubResource("ArrayMesh_v24is") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockEnd2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockEnd2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_1p6np") + +[node name="blockHexagon2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) +mesh = SubResource("ArrayMesh_a1omu") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockHexagon2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockHexagon2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_d6bml") + +[node name="blockLevel2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2) +mesh = SubResource("ArrayMesh_b14oy") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockLevel2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockLevel2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_y8ll0") + +[node name="blockQuarter2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 4) +mesh = SubResource("ArrayMesh_mya62") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockQuarter2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockQuarter2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_26jv0") + +[node name="bridge2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 4) +mesh = SubResource("ArrayMesh_cvajg") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="bridge2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="bridge2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_1w6qt") + +[node name="blockSnow2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 4) +mesh = SubResource("ArrayMesh_ittdv") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnow2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnow2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_ci4ec") + +[node name="blockSnowCliff2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 4) +mesh = SubResource("ArrayMesh_jjyko") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnowCliff2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnowCliff2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_j3olc") + +[node name="blockSnowCliffCorner2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 4) +mesh = SubResource("ArrayMesh_nbn1x") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnowCliffCorner2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnowCliffCorner2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_lemui") + +[node name="blockSnowCornerSmall2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6) +mesh = SubResource("ArrayMesh_c63r3") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnowCornerSmall2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnowCornerSmall2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_wftwv") + +[node name="blockSnowSlope2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 6) +mesh = SubResource("ArrayMesh_llpn1") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnowSlope2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnowSlope2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_5x6vn") + +[node name="blockSnowSlopeHalf2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6) +mesh = SubResource("ArrayMesh_ccnwl") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSnowSlopeHalf2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSnowSlopeHalf2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_yn5ad") + +[node name="rocks2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6) +mesh = SubResource("ArrayMesh_vb03r") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="rocks2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="rocks2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_70rrv") + +[node name="blockSlope2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 8) +mesh = SubResource("ArrayMesh_vjvuh") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="blockSlope2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="blockSlope2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_hs8j1") + +[node name="treePine2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 8) +mesh = SubResource("ArrayMesh_3k4bs") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="treePine2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="treePine2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_bwatw") + +[node name="treePineSnow2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 8) +mesh = SubResource("ArrayMesh_yln2m") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="treePineSnow2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="treePineSnow2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_x23p1") + +[node name="flowers2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 8) +mesh = SubResource("ArrayMesh_e6axn") +skeleton = NodePath("") + +[node name="flowersLow2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10) +mesh = SubResource("ArrayMesh_4yu4q") +skeleton = NodePath("") + +[node name="plant2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 10) +mesh = SubResource("ArrayMesh_1oxjk") +skeleton = NodePath("") + +[node name="mushrooms2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10) +mesh = SubResource("ArrayMesh_ncvmo") +skeleton = NodePath("") + +[node name="flag2" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +mesh = SubResource("ArrayMesh_tbtgc") +skeleton = NodePath("") + +[node name="StaticBody3D" type="StaticBody3D" parent="flag2"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="flag2/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_pqqaw") diff --git a/examples/forest-brawl/models/kenney-platformer-kit/License.txt b/examples/forest-brawl/models/kenney-platformer-kit/License.txt new file mode 100644 index 0000000..61cb914 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/License.txt @@ -0,0 +1,25 @@ + + + Platformer Kit (2.2) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 05-12-2022 12:11 + + ------------------------------ + + License: Creative Commons Zero, CC0 + http://creativecommons.org/publicdomain/zero/1.0/ + + The content in this package is free to use in personal, educational and commercial projects. + Support the creation of these game assets by crediting 'Kenney' or 'www.kenney.nl' (this is not mandatory) + + ------------------------------ + + • Donate: donate.kenney.nl + • Patreon: patreon.com/kenney + + Follow on social media for updates: + + • Twitter: twitter.com/KenneyNL + • Instagram: instagram.com/kenney_nl + • Mastodon: mastodon.gamedev.place/@kenney \ No newline at end of file diff --git a/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb b/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb new file mode 100644 index 0000000..6297afd Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb.import new file mode 100644 index 0000000..ca52a08 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/arrow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://t7itw03vvgsv" +path="res://.godot/imported/arrow.glb-da57c8b03d31baf1e129949eb0b416f2.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/arrow.glb" +dest_files=["res://.godot/imported/arrow.glb-da57c8b03d31baf1e129949eb0b416f2.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb b/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb new file mode 100644 index 0000000..9c55aa2 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb.import new file mode 100644 index 0000000..93b3851 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/arrows.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2agi8a3sabmt" +path="res://.godot/imported/arrows.glb-a12d0baf2c23ba528f0ab7e07cae61b3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/arrows.glb" +dest_files=["res://.godot/imported/arrows.glb-a12d0baf2c23ba528f0ab7e07cae61b3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb b/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb new file mode 100644 index 0000000..ae8fbe0 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb.import new file mode 100644 index 0000000..2da9b3d --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/barrel.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bcvd4122lu426" +path="res://.godot/imported/barrel.glb-649a0de91046d07f6499c00b52b7580c.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/barrel.glb" +dest_files=["res://.godot/imported/barrel.glb-649a0de91046d07f6499c00b52b7580c.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/block.glb b/examples/forest-brawl/models/kenney-platformer-kit/block.glb new file mode 100644 index 0000000..0a11a3d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/block.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/block.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/block.glb.import new file mode 100644 index 0000000..d3f0278 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/block.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://7mscudbyj6hx" +path="res://.godot/imported/block.glb-3de6a54f8186aedc6a80d0ecac2b38a7.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/block.glb" +dest_files=["res://.godot/imported/block.glb-3de6a54f8186aedc6a80d0ecac2b38a7.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb new file mode 100644 index 0000000..cd570b7 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb.import new file mode 100644 index 0000000..8205970 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3dpwx8qiliqt" +path="res://.godot/imported/blockCliff.glb-64cd03e00f29e6ddd3485128c7363f17.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCliff.glb" +dest_files=["res://.godot/imported/blockCliff.glb-64cd03e00f29e6ddd3485128c7363f17.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb new file mode 100644 index 0000000..85a5631 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb.import new file mode 100644 index 0000000..541beb8 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4dhg11pcs2w8" +path="res://.godot/imported/blockCliffCorner.glb-d4b45bea29b749f7d6a1743ad9265459.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCliffCorner.glb" +dest_files=["res://.godot/imported/blockCliffCorner.glb-d4b45bea29b749f7d6a1743ad9265459.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb new file mode 100644 index 0000000..315e205 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb.import new file mode 100644 index 0000000..52dead5 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfrkasmt3qqfv" +path="res://.godot/imported/blockCornerLarge.glb-d5fbc3b09e26dab6ef1d8307002c6a17.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCornerLarge.glb" +dest_files=["res://.godot/imported/blockCornerLarge.glb-d5fbc3b09e26dab6ef1d8307002c6a17.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb new file mode 100644 index 0000000..59ed959 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb.import new file mode 100644 index 0000000..e363122 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwdd18eedv46a" +path="res://.godot/imported/blockCornerSmall.glb-d96c83627c853c1004df6536a2fd2138.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCornerSmall.glb" +dest_files=["res://.godot/imported/blockCornerSmall.glb-d96c83627c853c1004df6536a2fd2138.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb new file mode 100644 index 0000000..cc54c6d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb.import new file mode 100644 index 0000000..c0bb4ff --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://eqsrmc3dy6yh" +path="res://.godot/imported/blockCurve.glb-e34f5f7259a6828a402e64cad1fcded8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCurve.glb" +dest_files=["res://.godot/imported/blockCurve.glb-e34f5f7259a6828a402e64cad1fcded8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb new file mode 100644 index 0000000..d527d45 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb.import new file mode 100644 index 0000000..1204050 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cyc0rah5is4dg" +path="res://.godot/imported/blockCurveHalf.glb-83315f5cf7d9a17acfba6ccc5550a575.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCurveHalf.glb" +dest_files=["res://.godot/imported/blockCurveHalf.glb-83315f5cf7d9a17acfba6ccc5550a575.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb new file mode 100644 index 0000000..3a30b89 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb.import new file mode 100644 index 0000000..b6a668f --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1t0pwaoqosyb" +path="res://.godot/imported/blockCurveLow.glb-db256199ea7fff10899fd74d2cf83e62.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockCurveLow.glb" +dest_files=["res://.godot/imported/blockCurveLow.glb-db256199ea7fff10899fd74d2cf83e62.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb new file mode 100644 index 0000000..7894cbc Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb.import new file mode 100644 index 0000000..260554b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bqt5s486r2am" +path="res://.godot/imported/blockDirt.glb-31050e33d578d7ab4b2f3c9c80dc2927.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockDirt.glb" +dest_files=["res://.godot/imported/blockDirt.glb-31050e33d578d7ab4b2f3c9c80dc2927.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb new file mode 100644 index 0000000..b2a4002 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb.import new file mode 100644 index 0000000..c974039 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://6rkv4arirmw2" +path="res://.godot/imported/blockDirtHalf.glb-b97126900f96b6ca98a8de50303c0cb5.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockDirtHalf.glb" +dest_files=["res://.godot/imported/blockDirtHalf.glb-b97126900f96b6ca98a8de50303c0cb5.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb new file mode 100644 index 0000000..30466e5 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb.import new file mode 100644 index 0000000..5b39b56 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c37820wb43xer" +path="res://.godot/imported/blockDirtRamp.glb-b551957d2760280c26197cc428a6d0eb.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockDirtRamp.glb" +dest_files=["res://.godot/imported/blockDirtRamp.glb-b551957d2760280c26197cc428a6d0eb.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb new file mode 100644 index 0000000..022fb6a Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb.import new file mode 100644 index 0000000..b92cf20 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8f3o7dur3vt4" +path="res://.godot/imported/blockDirtRampHalf.glb-1c4971bb4520b0e87a31a7c6459dc4d6.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockDirtRampHalf.glb" +dest_files=["res://.godot/imported/blockDirtRampHalf.glb-1c4971bb4520b0e87a31a7c6459dc4d6.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb new file mode 100644 index 0000000..39661de Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb.import new file mode 100644 index 0000000..c338f03 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://brd7fngcd5drl" +path="res://.godot/imported/blockEnd.glb-ed623af61c7987f660d0beb1dd9c4c45.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockEnd.glb" +dest_files=["res://.godot/imported/blockEnd.glb-ed623af61c7987f660d0beb1dd9c4c45.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb new file mode 100644 index 0000000..c5e7025 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb.import new file mode 100644 index 0000000..37b6f40 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://di4mqfjjnd1jx" +path="res://.godot/imported/blockHalf.glb-25cad130e73628335c3fc84a78013ef7.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockHalf.glb" +dest_files=["res://.godot/imported/blockHalf.glb-25cad130e73628335c3fc84a78013ef7.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb new file mode 100644 index 0000000..474e95e Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb.import new file mode 100644 index 0000000..9f1dee4 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bnyoffewc4b" +path="res://.godot/imported/blockHexagon.glb-501df061fa147d14ed34826cd34e3448.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb" +dest_files=["res://.godot/imported/blockHexagon.glb-501df061fa147d14ed34826cd34e3448.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb new file mode 100644 index 0000000..f9d9892 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb.import new file mode 100644 index 0000000..fd1f389 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://boeyotumjdulj" +path="res://.godot/imported/blockHexagonLow.glb-891edd38c03b2f3c5a59ad94ac9a4d4f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockHexagonLow.glb" +dest_files=["res://.godot/imported/blockHexagonLow.glb-891edd38c03b2f3c5a59ad94ac9a4d4f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb new file mode 100644 index 0000000..c4e9cbe Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb.import new file mode 100644 index 0000000..64fcb04 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5l6jbvfm5nfq" +path="res://.godot/imported/blockLarge.glb-eeb9157d09d80a09748214165a3bee6a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockLarge.glb" +dest_files=["res://.godot/imported/blockLarge.glb-eeb9157d09d80a09748214165a3bee6a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb new file mode 100644 index 0000000..83690f1 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb.import new file mode 100644 index 0000000..ce19132 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d15ehqit77umo" +path="res://.godot/imported/blockLevel.glb-af58cdd8e43674f0d6388df14adc1d81.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockLevel.glb" +dest_files=["res://.godot/imported/blockLevel.glb-af58cdd8e43674f0d6388df14adc1d81.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb new file mode 100644 index 0000000..f30f6fe Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb.import new file mode 100644 index 0000000..8a28414 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://41li1m0xgqf1" +path="res://.godot/imported/blockLong.glb-c778c00af82d2e8e1b8531d39875381f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockLong.glb" +dest_files=["res://.godot/imported/blockLong.glb-c778c00af82d2e8e1b8531d39875381f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb new file mode 100644 index 0000000..15ebdc9 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb.import new file mode 100644 index 0000000..d10514a --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1ccybw2mrsab" +path="res://.godot/imported/blockMoving.glb-c0d2caa08d0ff7d85adabb7c8435e129.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockMoving.glb" +dest_files=["res://.godot/imported/blockMoving.glb-c0d2caa08d0ff7d85adabb7c8435e129.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb new file mode 100644 index 0000000..b9cde14 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb.import new file mode 100644 index 0000000..8d5701d --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bh6k5rwy380np" +path="res://.godot/imported/blockMovingBlue.glb-b3615d152786fa384983f516be7d4658.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockMovingBlue.glb" +dest_files=["res://.godot/imported/blockMovingBlue.glb-b3615d152786fa384983f516be7d4658.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb new file mode 100644 index 0000000..533af7c Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb.import new file mode 100644 index 0000000..6eab948 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d0nc6xcbabr2" +path="res://.godot/imported/blockMovingLarge.glb-17f1c60f0214e3d0530b10d46d6edbd7.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockMovingLarge.glb" +dest_files=["res://.godot/imported/blockMovingLarge.glb-17f1c60f0214e3d0530b10d46d6edbd7.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb new file mode 100644 index 0000000..a7df7c9 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb.import new file mode 100644 index 0000000..f768da4 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bt8aahoyvqesy" +path="res://.godot/imported/blockQuarter.glb-188e4d97e079c28d7467862f74556b81.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockQuarter.glb" +dest_files=["res://.godot/imported/blockQuarter.glb-188e4d97e079c28d7467862f74556b81.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb new file mode 100644 index 0000000..c94f568 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb.import new file mode 100644 index 0000000..a562931 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cdhaion5pq76t" +path="res://.godot/imported/blockRounded.glb-91ed6a8d49de618b51f197bb9406304e.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockRounded.glb" +dest_files=["res://.godot/imported/blockRounded.glb-91ed6a8d49de618b51f197bb9406304e.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb new file mode 100644 index 0000000..2380958 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb.import new file mode 100644 index 0000000..acb2345 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b251ntvwc7yqj" +path="res://.godot/imported/blockRoundedLarge.glb-ea85357a8632810e97338834840a7b4f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLarge.glb" +dest_files=["res://.godot/imported/blockRoundedLarge.glb-ea85357a8632810e97338834840a7b4f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb new file mode 100644 index 0000000..b69a8ea Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb.import new file mode 100644 index 0000000..af62bd2 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://chnd3cf1bhhj2" +path="res://.godot/imported/blockRoundedLong.glb-9e1b0b690561b0847bc57f21250def6a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLong.glb" +dest_files=["res://.godot/imported/blockRoundedLong.glb-9e1b0b690561b0847bc57f21250def6a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb new file mode 100644 index 0000000..f933491 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb.import new file mode 100644 index 0000000..56f5a52 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bda8ltu6su0xf" +path="res://.godot/imported/blockRoundedLow.glb-9d67ba34a502ebcef5afb48d6debdf1a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLow.glb" +dest_files=["res://.godot/imported/blockRoundedLow.glb-9d67ba34a502ebcef5afb48d6debdf1a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb new file mode 100644 index 0000000..c205b95 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb.import new file mode 100644 index 0000000..e80427e --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://xvai20y2fk4c" +path="res://.godot/imported/blockRoundedLowLong.glb-77d91b06d06083fe4340180e0935da50.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockRoundedLowLong.glb" +dest_files=["res://.godot/imported/blockRoundedLowLong.glb-77d91b06d06083fe4340180e0935da50.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb new file mode 100644 index 0000000..789b039 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb.import new file mode 100644 index 0000000..3a857b2 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ico5lrswd6k1" +path="res://.godot/imported/blockSlope.glb-0f96600a2f4741973f2fb87b96c4dced.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSlope.glb" +dest_files=["res://.godot/imported/blockSlope.glb-0f96600a2f4741973f2fb87b96c4dced.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb new file mode 100644 index 0000000..8f4d0fc Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb.import new file mode 100644 index 0000000..060466b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://yogvhjol5nrr" +path="res://.godot/imported/blockSlopeHalf.glb-3a8ac56a4eb43c4f6ad0e66b147d94ea.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSlopeHalf.glb" +dest_files=["res://.godot/imported/blockSlopeHalf.glb-3a8ac56a4eb43c4f6ad0e66b147d94ea.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb new file mode 100644 index 0000000..f3639d7 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb.import new file mode 100644 index 0000000..a6321c7 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://5plv8rd5jpbg" +path="res://.godot/imported/blockSnow.glb-2e3667b871cc1dc8221b659e13c66478.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnow.glb" +dest_files=["res://.godot/imported/blockSnow.glb-2e3667b871cc1dc8221b659e13c66478.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb new file mode 100644 index 0000000..84b2f1f Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb.import new file mode 100644 index 0000000..d3d25ee --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crhnyhjkdbf5c" +path="res://.godot/imported/blockSnowCliff.glb-672519fc9ef634f6fa5a155a59c232a3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliff.glb" +dest_files=["res://.godot/imported/blockSnowCliff.glb-672519fc9ef634f6fa5a155a59c232a3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb new file mode 100644 index 0000000..3e5f89d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb.import new file mode 100644 index 0000000..08869e7 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bv85bvjp2d3qv" +path="res://.godot/imported/blockSnowCliffCorner.glb-ac6c537a427e47ccb37ea5f8145dc81a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCliffCorner.glb" +dest_files=["res://.godot/imported/blockSnowCliffCorner.glb-ac6c537a427e47ccb37ea5f8145dc81a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb new file mode 100644 index 0000000..fa7891b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb.import new file mode 100644 index 0000000..c33bf04 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://vyc4enaui5ta" +path="res://.godot/imported/blockSnowCornerLarge.glb-911f2b615c5a66f672e049a57f0e2ea8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerLarge.glb" +dest_files=["res://.godot/imported/blockSnowCornerLarge.glb-911f2b615c5a66f672e049a57f0e2ea8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb new file mode 100644 index 0000000..4d08335 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb.import new file mode 100644 index 0000000..33499cc --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bow4jr8ul37q8" +path="res://.godot/imported/blockSnowCornerSmall.glb-6c6acebee4d27e8c92dccd3de143b3f5.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCornerSmall.glb" +dest_files=["res://.godot/imported/blockSnowCornerSmall.glb-6c6acebee4d27e8c92dccd3de143b3f5.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb new file mode 100644 index 0000000..16ef573 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb.import new file mode 100644 index 0000000..23a7d28 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dufn4md4a86i3" +path="res://.godot/imported/blockSnowCurve.glb-53891eb186a90bc32e450ca1b4dbd543.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurve.glb" +dest_files=["res://.godot/imported/blockSnowCurve.glb-53891eb186a90bc32e450ca1b4dbd543.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb new file mode 100644 index 0000000..0d0444c Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb.import new file mode 100644 index 0000000..38cd9ae --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://irn1bqjntr14" +path="res://.godot/imported/blockSnowCurveHalf.glb-7849f02f6c24b6df70288531b6353b6a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveHalf.glb" +dest_files=["res://.godot/imported/blockSnowCurveHalf.glb-7849f02f6c24b6df70288531b6353b6a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb new file mode 100644 index 0000000..f3df547 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb.import new file mode 100644 index 0000000..2a07828 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c48joyxtamjk" +path="res://.godot/imported/blockSnowCurveLow.glb-8d83237d775422dab02f673b55070c65.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowCurveLow.glb" +dest_files=["res://.godot/imported/blockSnowCurveLow.glb-8d83237d775422dab02f673b55070c65.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb new file mode 100644 index 0000000..afadae5 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb.import new file mode 100644 index 0000000..32ecbaf --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhwvoeb1blpju" +path="res://.godot/imported/blockSnowEnd.glb-3d3584ff99468badf38c3d2bd79cf0be.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowEnd.glb" +dest_files=["res://.godot/imported/blockSnowEnd.glb-3d3584ff99468badf38c3d2bd79cf0be.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb new file mode 100644 index 0000000..5839b83 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb.import new file mode 100644 index 0000000..36cf740 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dy71ulq5oavq" +path="res://.godot/imported/blockSnowHalf.glb-ad95a28c3fa9773eda027a8a5fd10dc8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowHalf.glb" +dest_files=["res://.godot/imported/blockSnowHalf.glb-ad95a28c3fa9773eda027a8a5fd10dc8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb new file mode 100644 index 0000000..9127873 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb.import new file mode 100644 index 0000000..5c8be72 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bcfe4nhefmm61" +path="res://.godot/imported/blockSnowHexagon.glb-d303ba6f95e60f2cc15015728f2de1dd.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagon.glb" +dest_files=["res://.godot/imported/blockSnowHexagon.glb-d303ba6f95e60f2cc15015728f2de1dd.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb new file mode 100644 index 0000000..22860e2 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb.import new file mode 100644 index 0000000..04e17f4 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bnswwdi4icaye" +path="res://.godot/imported/blockSnowHexagonLow.glb-3e6186215626b7ddf3fecc224de5ea9e.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowHexagonLow.glb" +dest_files=["res://.godot/imported/blockSnowHexagonLow.glb-3e6186215626b7ddf3fecc224de5ea9e.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb new file mode 100644 index 0000000..f2f7716 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb.import new file mode 100644 index 0000000..74c3ae2 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bc7s0sdmv5qtn" +path="res://.godot/imported/blockSnowLarge.glb-24abdc5c866ad1c93b1275fffb7091b1.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowLarge.glb" +dest_files=["res://.godot/imported/blockSnowLarge.glb-24abdc5c866ad1c93b1275fffb7091b1.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb new file mode 100644 index 0000000..4973a0d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb.import new file mode 100644 index 0000000..2941add --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2cib8d4dlnpl" +path="res://.godot/imported/blockSnowLevel.glb-1d382c76f58e9bb0a2bf1bc4f4f71d85.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowLevel.glb" +dest_files=["res://.godot/imported/blockSnowLevel.glb-1d382c76f58e9bb0a2bf1bc4f4f71d85.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb new file mode 100644 index 0000000..9d505ec Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb.import new file mode 100644 index 0000000..4fd2ed1 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkq6wq7gkwi2g" +path="res://.godot/imported/blockSnowLong.glb-328b0cf81088792a5d356e873b62d573.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowLong.glb" +dest_files=["res://.godot/imported/blockSnowLong.glb-328b0cf81088792a5d356e873b62d573.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb new file mode 100644 index 0000000..aeedc5a Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb.import new file mode 100644 index 0000000..8f0bad3 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dlbmf7jvvnkri" +path="res://.godot/imported/blockSnowQuarter.glb-a8b0e3d730f24a1465d9b301883aa6ac.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowQuarter.glb" +dest_files=["res://.godot/imported/blockSnowQuarter.glb-a8b0e3d730f24a1465d9b301883aa6ac.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb new file mode 100644 index 0000000..c605f29 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb.import new file mode 100644 index 0000000..8b8c24b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpa61uxsn08na" +path="res://.godot/imported/blockSnowRounded.glb-8b0a17db7a2c5e8af10ba21f5587e5e9.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowRounded.glb" +dest_files=["res://.godot/imported/blockSnowRounded.glb-8b0a17db7a2c5e8af10ba21f5587e5e9.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb new file mode 100644 index 0000000..25b6df9 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb.import new file mode 100644 index 0000000..adefffe --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpi58od52ctol" +path="res://.godot/imported/blockSnowRoundedLarge.glb-52763f2cce4310bb0d22f5ab1c0fabdb.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLarge.glb" +dest_files=["res://.godot/imported/blockSnowRoundedLarge.glb-52763f2cce4310bb0d22f5ab1c0fabdb.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb new file mode 100644 index 0000000..6e02f8d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb.import new file mode 100644 index 0000000..74cb65b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://csj6khix0isgp" +path="res://.godot/imported/blockSnowRoundedLong.glb-d7ae4816a7e5cbd86905f9659e27264f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLong.glb" +dest_files=["res://.godot/imported/blockSnowRoundedLong.glb-d7ae4816a7e5cbd86905f9659e27264f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb new file mode 100644 index 0000000..2eb7d08 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb.import new file mode 100644 index 0000000..c797afd --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://mv57byytvhow" +path="res://.godot/imported/blockSnowRoundedLow.glb-ffba296780e7139389a552e6abd33908.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLow.glb" +dest_files=["res://.godot/imported/blockSnowRoundedLow.glb-ffba296780e7139389a552e6abd33908.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb new file mode 100644 index 0000000..28d7c89 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb.import new file mode 100644 index 0000000..cb6b8e4 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5nja7cmsjouj" +path="res://.godot/imported/blockSnowRoundedLowLong.glb-a9ff9a0ba208f1fcfdafbc2aca7a5c23.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowRoundedLowLong.glb" +dest_files=["res://.godot/imported/blockSnowRoundedLowLong.glb-a9ff9a0ba208f1fcfdafbc2aca7a5c23.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb new file mode 100644 index 0000000..6093436 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb.import new file mode 100644 index 0000000..09b4bfd --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c3hl5i6ff7fd6" +path="res://.godot/imported/blockSnowSlope.glb-ead94ad0c41ff437e548e7aa848585bc.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlope.glb" +dest_files=["res://.godot/imported/blockSnowSlope.glb-ead94ad0c41ff437e548e7aa848585bc.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb new file mode 100644 index 0000000..0f7c386 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb.import new file mode 100644 index 0000000..931a264 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4sknnfkygcb3" +path="res://.godot/imported/blockSnowSlopeHalf.glb-398c45582d7b99b631042c6181dc52f3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/blockSnowSlopeHalf.glb" +dest_files=["res://.godot/imported/blockSnowSlopeHalf.glb-398c45582d7b99b631042c6181dc52f3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb b/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb new file mode 100644 index 0000000..ac71821 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb.import new file mode 100644 index 0000000..9c2faa1 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/bomb.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cn6ypxuayfwfl" +path="res://.godot/imported/bomb.glb-d1e695e78e61ed8a6ecacd830066d7c3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/bomb.glb" +dest_files=["res://.godot/imported/bomb.glb-d1e695e78e61ed8a6ecacd830066d7c3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb b/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb new file mode 100644 index 0000000..ba1aa0a Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb.import new file mode 100644 index 0000000..1346d6a --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/bridge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c8mfccicniek2" +path="res://.godot/imported/bridge.glb-3b38dfad089e38fc1815681182d7f392.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/bridge.glb" +dest_files=["res://.godot/imported/bridge.glb-3b38dfad089e38fc1815681182d7f392.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb b/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb new file mode 100644 index 0000000..2291622 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb.import new file mode 100644 index 0000000..d0fb2c9 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://drv3m15yh1gl4" +path="res://.godot/imported/bridgeHalf.glb-4e66e07266275065b527abe80299c65b.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/bridgeHalf.glb" +dest_files=["res://.godot/imported/bridgeHalf.glb-4e66e07266275065b527abe80299c65b.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb b/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb new file mode 100644 index 0000000..26d9020 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb.import new file mode 100644 index 0000000..5de6467 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkinhuwuogygb" +path="res://.godot/imported/bridgeRamp.glb-578d75af2d3c716ddd13ad844e1baf34.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/bridgeRamp.glb" +dest_files=["res://.godot/imported/bridgeRamp.glb-578d75af2d3c716ddd13ad844e1baf34.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb b/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb new file mode 100644 index 0000000..616003d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb.import new file mode 100644 index 0000000..905d602 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ckrdfxufsb7ev" +path="res://.godot/imported/buttonRound.glb-0980dc77be6b5a708e5f6168b112646e.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/buttonRound.glb" +dest_files=["res://.godot/imported/buttonRound.glb-0980dc77be6b5a708e5f6168b112646e.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb b/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb new file mode 100644 index 0000000..c546521 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb.import new file mode 100644 index 0000000..2393cd3 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8hnyr3fmc3am" +path="res://.godot/imported/buttonSquare.glb-02c40f0232a0ecd1e53fac56c6110f05.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/buttonSquare.glb" +dest_files=["res://.godot/imported/buttonSquare.glb-02c40f0232a0ecd1e53fac56c6110f05.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/chest.glb b/examples/forest-brawl/models/kenney-platformer-kit/chest.glb new file mode 100644 index 0000000..717cdec Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/chest.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/chest.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/chest.glb.import new file mode 100644 index 0000000..3ce6d5d --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/chest.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bdd3k6mg8ucg8" +path="res://.godot/imported/chest.glb-a9e38a5b62a8c033008669d385c652c0.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/chest.glb" +dest_files=["res://.godot/imported/chest.glb-a9e38a5b62a8c033008669d385c652c0.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb b/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb new file mode 100644 index 0000000..f087bf5 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb.import new file mode 100644 index 0000000..15f6f6c --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3i3vgbyh8t60" +path="res://.godot/imported/coinBronze.glb-e899143adf1a3a2df8f5aa89ca9a786d.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/coinBronze.glb" +dest_files=["res://.godot/imported/coinBronze.glb-e899143adf1a3a2df8f5aa89ca9a786d.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb b/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb new file mode 100644 index 0000000..7ed57e6 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb.import new file mode 100644 index 0000000..51d1b83 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfm8pxdktbgga" +path="res://.godot/imported/coinGold.glb-0eead439c11c525db3297630137ff755.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/coinGold.glb" +dest_files=["res://.godot/imported/coinGold.glb-0eead439c11c525db3297630137ff755.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb b/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb new file mode 100644 index 0000000..1305c69 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb.import new file mode 100644 index 0000000..6aa3da0 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dqwtk37kqfuh6" +path="res://.godot/imported/coinSilver.glb-61b013ce941b9afdefd46fca17bd9d40.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/coinSilver.glb" +dest_files=["res://.godot/imported/coinSilver.glb-61b013ce941b9afdefd46fca17bd9d40.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crate.glb b/examples/forest-brawl/models/kenney-platformer-kit/crate.glb new file mode 100644 index 0000000..2b5641b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/crate.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crate.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/crate.glb.import new file mode 100644 index 0000000..a666731 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/crate.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bv3qmxey50cih" +path="res://.godot/imported/crate.glb-272b283062479121578f1959cbd84b60.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/crate.glb" +dest_files=["res://.godot/imported/crate.glb-272b283062479121578f1959cbd84b60.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb b/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb new file mode 100644 index 0000000..e562968 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb.import new file mode 100644 index 0000000..872f76d --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ch61st8ietkte" +path="res://.godot/imported/crateItem.glb-01e9e9d482fc6a4a796ffa15247c3fb3.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb" +dest_files=["res://.godot/imported/crateItem.glb-01e9e9d482fc6a4a796ffa15247c3fb3.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb b/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb new file mode 100644 index 0000000..9fec10e Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb.import new file mode 100644 index 0000000..cd26a6a --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c3ts4ta7x2co2" +path="res://.godot/imported/crateItemStrong.glb-904f688b9aa02c54309c6a6b23e7f85b.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/crateItemStrong.glb" +dest_files=["res://.godot/imported/crateItemStrong.glb-904f688b9aa02c54309c6a6b23e7f85b.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb b/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb new file mode 100644 index 0000000..3b68577 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb.import new file mode 100644 index 0000000..41b03f5 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dg8aaswuktrst" +path="res://.godot/imported/crateStrong.glb-dc93bab2ca151de70df3af0c3cf8b3b8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/crateStrong.glb" +dest_files=["res://.godot/imported/crateStrong.glb-dc93bab2ca151de70df3af0c3cf8b3b8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb b/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb new file mode 100644 index 0000000..12da9ca Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb.import new file mode 100644 index 0000000..f08da0e --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bi5hklu37h01a" +path="res://.godot/imported/doorClosed.glb-c64ab677ead4e5beb4729c82d620095f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/doorClosed.glb" +dest_files=["res://.godot/imported/doorClosed.glb-c64ab677ead4e5beb4729c82d620095f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb new file mode 100644 index 0000000..2640b5d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb.import new file mode 100644 index 0000000..be7c13b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c3lpkf3mybdfp" +path="res://.godot/imported/doorLargeClosed.glb-6ea1d164ac29a28422b0af5e8136b5f0.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/doorLargeClosed.glb" +dest_files=["res://.godot/imported/doorLargeClosed.glb-6ea1d164ac29a28422b0af5e8136b5f0.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb new file mode 100644 index 0000000..8325e8f Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb.import new file mode 100644 index 0000000..a303b67 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://da6vdlh3jhu8j" +path="res://.godot/imported/doorLargeOpen.glb-44c6c42985b409ab09c3560e595a4076.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/doorLargeOpen.glb" +dest_files=["res://.godot/imported/doorLargeOpen.glb-44c6c42985b409ab09c3560e595a4076.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb b/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb new file mode 100644 index 0000000..9de35d8 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb.import new file mode 100644 index 0000000..c325394 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://y2iwiuetaag2" +path="res://.godot/imported/doorOpen.glb-1f6f9e6cd442e8c234f3b188f38de69c.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/doorOpen.glb" +dest_files=["res://.godot/imported/doorOpen.glb-1f6f9e6cd442e8c234f3b188f38de69c.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fence.glb b/examples/forest-brawl/models/kenney-platformer-kit/fence.glb new file mode 100644 index 0000000..f944c8c Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fence.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fence.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fence.glb.import new file mode 100644 index 0000000..e785040 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fence.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://boeoe53cr0g16" +path="res://.godot/imported/fence.glb-7620672ca4a107154c39d103ba8a485a.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fence.glb" +dest_files=["res://.godot/imported/fence.glb-7620672ca4a107154c39d103ba8a485a.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb new file mode 100644 index 0000000..0c574aa Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb.import new file mode 100644 index 0000000..7891bc6 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ccxqwcpk80kt4" +path="res://.godot/imported/fenceBroken.glb-10dab30760850241012dcf58abdc87cb.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceBroken.glb" +dest_files=["res://.godot/imported/fenceBroken.glb-10dab30760850241012dcf58abdc87cb.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb new file mode 100644 index 0000000..7cd4340 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb.import new file mode 100644 index 0000000..9e04b44 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cjvdgqt3mdrb5" +path="res://.godot/imported/fenceCorner.glb-a7b31a9f41c38a7159c349f805dffc54.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceCorner.glb" +dest_files=["res://.godot/imported/fenceCorner.glb-a7b31a9f41c38a7159c349f805dffc54.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb new file mode 100644 index 0000000..b441509 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb.import new file mode 100644 index 0000000..f6f02ee --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://pro7mmm7p3ug" +path="res://.godot/imported/fenceCornerCurved.glb-b6a9a30568c2aba0ce8ab64de6b48f5f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceCornerCurved.glb" +dest_files=["res://.godot/imported/fenceCornerCurved.glb-b6a9a30568c2aba0ce8ab64de6b48f5f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb new file mode 100644 index 0000000..66cacd5 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb.import new file mode 100644 index 0000000..c9b3f3b --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://diand5d5mpwb7" +path="res://.godot/imported/fenceLow.glb-8d6741a5ca288c63c571d89b14076ba2.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceLow.glb" +dest_files=["res://.godot/imported/fenceLow.glb-8d6741a5ca288c63c571d89b14076ba2.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb new file mode 100644 index 0000000..231658b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb.import new file mode 100644 index 0000000..63d78fc --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bhj1ndn5op7ac" +path="res://.godot/imported/fenceLowBroken.glb-b4e2dbc39a703dc40f89fe1f8edefe4e.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceLowBroken.glb" +dest_files=["res://.godot/imported/fenceLowBroken.glb-b4e2dbc39a703dc40f89fe1f8edefe4e.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb new file mode 100644 index 0000000..b3fb8ef Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb.import new file mode 100644 index 0000000..a92919c --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cauquor2clcax" +path="res://.godot/imported/fenceLowCorner.glb-1b728a986dd655575425b3146e7cc465.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceLowCorner.glb" +dest_files=["res://.godot/imported/fenceLowCorner.glb-1b728a986dd655575425b3146e7cc465.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb new file mode 100644 index 0000000..fa34e6d Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb.import new file mode 100644 index 0000000..4db9194 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bsgttma3s1a4t" +path="res://.godot/imported/fenceLowCornerCurved.glb-cabb6bcfc345e9ae72be24e32add4037.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/fenceLowCornerCurved.glb" +dest_files=["res://.godot/imported/fenceLowCornerCurved.glb-cabb6bcfc345e9ae72be24e32add4037.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flag.glb b/examples/forest-brawl/models/kenney-platformer-kit/flag.glb new file mode 100644 index 0000000..a22b2ce Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/flag.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flag.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/flag.glb.import new file mode 100644 index 0000000..a89e970 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/flag.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6j3iqqk5mq7r" +path="res://.godot/imported/flag.glb-2e0ef85323385e987a11d03d2464ff82.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/flag.glb" +dest_files=["res://.godot/imported/flag.glb-2e0ef85323385e987a11d03d2464ff82.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb b/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb new file mode 100644 index 0000000..dde578b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb.import new file mode 100644 index 0000000..13d105c --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/flowers.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ble0j0npslm4j" +path="res://.godot/imported/flowers.glb-946f94305c6ffa3e1f6ec9d6a742d6f5.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/flowers.glb" +dest_files=["res://.godot/imported/flowers.glb-946f94305c6ffa3e1f6ec9d6a742d6f5.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb b/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb new file mode 100644 index 0000000..91da53f Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb.import new file mode 100644 index 0000000..f4521b4 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ky24tgdcn3o8" +path="res://.godot/imported/flowersLow.glb-9afa05da5ac1bb313f54549a1bb18678.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/flowersLow.glb" +dest_files=["res://.godot/imported/flowersLow.glb-9afa05da5ac1bb313f54549a1bb18678.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/heart.glb b/examples/forest-brawl/models/kenney-platformer-kit/heart.glb new file mode 100644 index 0000000..766af7b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/heart.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/heart.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/heart.glb.import new file mode 100644 index 0000000..c137126 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/heart.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgg4r2kmch3sp" +path="res://.godot/imported/heart.glb-3fdc4e5c975bb219143b3201623d7a6f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/heart.glb" +dest_files=["res://.godot/imported/heart.glb-3fdc4e5c975bb219143b3201623d7a6f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb b/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb new file mode 100644 index 0000000..7ed6df1 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb.import new file mode 100644 index 0000000..45b457e --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/hedge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dp1t4soetuctw" +path="res://.godot/imported/hedge.glb-1a109b18aee1aa4f5a12c35b1cb54866.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/hedge.glb" +dest_files=["res://.godot/imported/hedge.glb-1a109b18aee1aa4f5a12c35b1cb54866.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb b/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb new file mode 100644 index 0000000..add3bb2 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb.import new file mode 100644 index 0000000..756be45 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5w2hxyyek0ne" +path="res://.godot/imported/hedgeCorner.glb-6cd4f45ba0ca722636cfe415a31eb0aa.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/hedgeCorner.glb" +dest_files=["res://.godot/imported/hedgeCorner.glb-6cd4f45ba0ca722636cfe415a31eb0aa.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb b/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb new file mode 100644 index 0000000..5ed6670 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb.import new file mode 100644 index 0000000..46b8453 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/jewel.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c0uawulx4rcor" +path="res://.godot/imported/jewel.glb-0494597962c1fd86d88ba3fe99c79d21.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/jewel.glb" +dest_files=["res://.godot/imported/jewel.glb-0494597962c1fd86d88ba3fe99c79d21.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/key.glb b/examples/forest-brawl/models/kenney-platformer-kit/key.glb new file mode 100644 index 0000000..c7ff6de Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/key.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/key.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/key.glb.import new file mode 100644 index 0000000..48aecc5 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/key.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7wmmvnsfvggm" +path="res://.godot/imported/key.glb-f9a822789d864c3edba2bc9d5f464587.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/key.glb" +dest_files=["res://.godot/imported/key.glb-f9a822789d864c3edba2bc9d5f464587.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb b/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb new file mode 100644 index 0000000..0699389 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb.import new file mode 100644 index 0000000..70aabbd --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/ladder.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2obdd1ne62va" +path="res://.godot/imported/ladder.glb-c34f2b9efc41a43b6f5c845bc0323de9.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/ladder.glb" +dest_files=["res://.godot/imported/ladder.glb-c34f2b9efc41a43b6f5c845bc0323de9.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb b/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb new file mode 100644 index 0000000..edfc189 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb.import new file mode 100644 index 0000000..c35112f --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://f2vg1a748u2e" +path="res://.godot/imported/ladderBroken.glb-b144b873d952ceced1da3a80b3c72442.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/ladderBroken.glb" +dest_files=["res://.godot/imported/ladderBroken.glb-b144b873d952ceced1da3a80b3c72442.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb b/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb new file mode 100644 index 0000000..757deec Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb.import new file mode 100644 index 0000000..ba9dfa6 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cc3slpkuec5xf" +path="res://.godot/imported/ladderLong.glb-0e55f9a0d20db32f38b1729dfa98c0a1.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/ladderLong.glb" +dest_files=["res://.godot/imported/ladderLong.glb-0e55f9a0d20db32f38b1729dfa98c0a1.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/lever.glb b/examples/forest-brawl/models/kenney-platformer-kit/lever.glb new file mode 100644 index 0000000..e65d2d9 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/lever.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/lever.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/lever.glb.import new file mode 100644 index 0000000..dfa2a68 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/lever.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ka0dumkqswwq" +path="res://.godot/imported/lever.glb-56411fe22830e1ec7fea8289fcbb7d9b.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/lever.glb" +dest_files=["res://.godot/imported/lever.glb-56411fe22830e1ec7fea8289fcbb7d9b.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/lock.glb b/examples/forest-brawl/models/kenney-platformer-kit/lock.glb new file mode 100644 index 0000000..d19195c Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/lock.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/lock.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/lock.glb.import new file mode 100644 index 0000000..83f557d --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/lock.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://baq3qnvrvoxlo" +path="res://.godot/imported/lock.glb-1f3d8b76f3182ea77d0a48076b307acd.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/lock.glb" +dest_files=["res://.godot/imported/lock.glb-1f3d8b76f3182ea77d0a48076b307acd.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb b/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb new file mode 100644 index 0000000..71d012f Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb.import new file mode 100644 index 0000000..79fc9c2 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b16iwdgqjfxgo" +path="res://.godot/imported/mushrooms.glb-33ea10439dda0fcc1418c64a80bd2cbd.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/mushrooms.glb" +dest_files=["res://.godot/imported/mushrooms.glb-33ea10439dda0fcc1418c64a80bd2cbd.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/plant.glb b/examples/forest-brawl/models/kenney-platformer-kit/plant.glb new file mode 100644 index 0000000..ea55805 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/plant.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/plant.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/plant.glb.import new file mode 100644 index 0000000..0a8b8eb --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/plant.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dsk6x773uq4ej" +path="res://.godot/imported/plant.glb-952ca46fb232720139567642d39e6360.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/plant.glb" +dest_files=["res://.godot/imported/plant.glb-952ca46fb232720139567642d39e6360.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/platform.glb b/examples/forest-brawl/models/kenney-platformer-kit/platform.glb new file mode 100644 index 0000000..1f1d894 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/platform.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/platform.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/platform.glb.import new file mode 100644 index 0000000..6959c24 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/platform.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dx8o4d3t4r3uu" +path="res://.godot/imported/platform.glb-f74e3dc9b4b41fa7ff1377a617dcf648.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/platform.glb" +dest_files=["res://.godot/imported/platform.glb-f74e3dc9b4b41fa7ff1377a617dcf648.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/poles.glb b/examples/forest-brawl/models/kenney-platformer-kit/poles.glb new file mode 100644 index 0000000..6d2c226 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/poles.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/poles.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/poles.glb.import new file mode 100644 index 0000000..cca2805 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/poles.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d2mtmcj6455s7" +path="res://.godot/imported/poles.glb-48ffe9b6acbf8b11dce972100bb9aca8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/poles.glb" +dest_files=["res://.godot/imported/poles.glb-48ffe9b6acbf8b11dce972100bb9aca8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb b/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb new file mode 100644 index 0000000..04e26ea Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb.import new file mode 100644 index 0000000..20a9501 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/rocks.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bovq7lm2l2wau" +path="res://.godot/imported/rocks.glb-e0e3a1bc424f13d077fc54d7b91051b1.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/rocks.glb" +dest_files=["res://.godot/imported/rocks.glb-e0e3a1bc424f13d077fc54d7b91051b1.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/saw.glb b/examples/forest-brawl/models/kenney-platformer-kit/saw.glb new file mode 100644 index 0000000..70ad155 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/saw.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/saw.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/saw.glb.import new file mode 100644 index 0000000..19ec871 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/saw.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cq4qq35tlq8l4" +path="res://.godot/imported/saw.glb-a7c4c71d0d9ffaa06853005f9d591852.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/saw.glb" +dest_files=["res://.godot/imported/saw.glb-a7c4c71d0d9ffaa06853005f9d591852.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/sign.glb b/examples/forest-brawl/models/kenney-platformer-kit/sign.glb new file mode 100644 index 0000000..da5a3d1 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/sign.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/sign.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/sign.glb.import new file mode 100644 index 0000000..a9ae907 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/sign.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://brvu7ihe70vaw" +path="res://.godot/imported/sign.glb-cdfb1c61590ea7105f1df92e58bf3652.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/sign.glb" +dest_files=["res://.godot/imported/sign.glb-cdfb1c61590ea7105f1df92e58bf3652.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb new file mode 100644 index 0000000..b2d4368 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb.import new file mode 100644 index 0000000..d6b58ce --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b3plyi0lkq0a" +path="res://.godot/imported/spikeBlock.glb-28f813bbbfcd772cd132fda148ad2035.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/spikeBlock.glb" +dest_files=["res://.godot/imported/spikeBlock.glb-28f813bbbfcd772cd132fda148ad2035.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb new file mode 100644 index 0000000..8bbf845 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb.import new file mode 100644 index 0000000..0d1df27 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bu7p6a71o5qow" +path="res://.godot/imported/spikeBlockWide.glb-f02bc9f784c3c0aa1e0057b5a924d590.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/spikeBlockWide.glb" +dest_files=["res://.godot/imported/spikeBlockWide.glb-f02bc9f784c3c0aa1e0057b5a924d590.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb b/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb new file mode 100644 index 0000000..613e86a Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb.import new file mode 100644 index 0000000..dd44878 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/spikes.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ejyf7etts36g" +path="res://.godot/imported/spikes.glb-1e4d3aa83fdc53017cfe6ca4b1a497f8.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/spikes.glb" +dest_files=["res://.godot/imported/spikes.glb-1e4d3aa83fdc53017cfe6ca4b1a497f8.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb b/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb new file mode 100644 index 0000000..d66bf20 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb.import new file mode 100644 index 0000000..12d7d84 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://da5okxs8e6nea" +path="res://.godot/imported/spikesHidden.glb-a01d8c98408baa084de3a80395891a86.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/spikesHidden.glb" +dest_files=["res://.godot/imported/spikesHidden.glb-a01d8c98408baa084de3a80395891a86.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb b/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb new file mode 100644 index 0000000..722c544 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb.import new file mode 100644 index 0000000..15194c9 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://caqi27cqpc745" +path="res://.godot/imported/spikesLarge.glb-2897c97ee4d6e4f7a711c284828afb2b.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/spikesLarge.glb" +dest_files=["res://.godot/imported/spikesLarge.glb-2897c97ee4d6e4f7a711c284828afb2b.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/stones.glb b/examples/forest-brawl/models/kenney-platformer-kit/stones.glb new file mode 100644 index 0000000..42a6fa1 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/stones.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/stones.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/stones.glb.import new file mode 100644 index 0000000..f6a8a53 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/stones.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://tly7r44f5rqx" +path="res://.godot/imported/stones.glb-bc9a11916de31a3539be83fb757127b2.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/stones.glb" +dest_files=["res://.godot/imported/stones.glb-bc9a11916de31a3539be83fb757127b2.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/tree.glb b/examples/forest-brawl/models/kenney-platformer-kit/tree.glb new file mode 100644 index 0000000..cfc7cfa Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/tree.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/tree.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/tree.glb.import new file mode 100644 index 0000000..021dd73 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/tree.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b55ikrnleekq7" +path="res://.godot/imported/tree.glb-9d8c7b6a769c67b9509d970294decb7f.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/tree.glb" +dest_files=["res://.godot/imported/tree.glb-9d8c7b6a769c67b9509d970294decb7f.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb b/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb new file mode 100644 index 0000000..8798c6b Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb.import new file mode 100644 index 0000000..817f103 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/treePine.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://kv3qjt7u6ogb" +path="res://.godot/imported/treePine.glb-ab4948437618c157762686abc179240e.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/treePine.glb" +dest_files=["res://.godot/imported/treePine.glb-ab4948437618c157762686abc179240e.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb new file mode 100644 index 0000000..c292336 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb.import new file mode 100644 index 0000000..ea53920 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbtlewwcw6ip" +path="res://.godot/imported/treePineSmall.glb-9b6e55170b29c16efe91de5cba84076c.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/treePineSmall.glb" +dest_files=["res://.godot/imported/treePineSmall.glb-9b6e55170b29c16efe91de5cba84076c.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb new file mode 100644 index 0000000..930b043 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb.import new file mode 100644 index 0000000..6171253 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bychiaan0xpw2" +path="res://.godot/imported/treePineSmallSnow.glb-209cf1135a176152e771e43c04f538ac.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/treePineSmallSnow.glb" +dest_files=["res://.godot/imported/treePineSmallSnow.glb-209cf1135a176152e771e43c04f538ac.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb b/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb new file mode 100644 index 0000000..879d3a9 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb.import new file mode 100644 index 0000000..20c69d0 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ce0xkl4ilwufq" +path="res://.godot/imported/treePineSnow.glb-f670cd76cbea0477d524c8c1a5efb10c.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/treePineSnow.glb" +dest_files=["res://.godot/imported/treePineSnow.glb-f670cd76cbea0477d524c8c1a5efb10c.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb b/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb new file mode 100644 index 0000000..f664671 Binary files /dev/null and b/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb differ diff --git a/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb.import b/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb.import new file mode 100644 index 0000000..ef64bf0 --- /dev/null +++ b/examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://x2rvyswd65pv" +path="res://.godot/imported/treeSnow.glb-6169c87e6609d4ace6c2c339e12ed496.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/kenney-platformer-kit/treeSnow.glb" +dest_files=["res://.godot/imported/treeSnow.glb-6169c87e6609d4ace6c2c339e12ed496.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/models/player/bomber-guy.glb b/examples/forest-brawl/models/player/bomber-guy.glb new file mode 100644 index 0000000..0ea0157 Binary files /dev/null and b/examples/forest-brawl/models/player/bomber-guy.glb differ diff --git a/examples/forest-brawl/models/player/bomber-guy.glb.import b/examples/forest-brawl/models/player/bomber-guy.glb.import new file mode 100644 index 0000000..3f12364 --- /dev/null +++ b/examples/forest-brawl/models/player/bomber-guy.glb.import @@ -0,0 +1,12384 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://fctd5hkxnf2y" +path="res://.godot/imported/bomber-guy.glb-6c596a7a6e8a31f160c5f03a365b794c.scn" + +[deps] + +source_file="res://examples/forest-brawl/models/player/bomber-guy.glb" +dest_files=["res://.godot/imported/bomber-guy.glb-6c596a7a6e8a31f160c5f03a365b794c.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"animations": { +"Backpedal": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +}, +"Float": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +}, +"Idle": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +}, +"Run": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +}, +"Strafe_L": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +}, +"Strafe_R": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": null +} +} +} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/forest-brawl/scenes/bomb-projectile.tscn b/examples/forest-brawl/scenes/bomb-projectile.tscn new file mode 100644 index 0000000..70d5ad8 --- /dev/null +++ b/examples/forest-brawl/scenes/bomb-projectile.tscn @@ -0,0 +1,24 @@ +[gd_scene load_steps=6 format=3 uid="uid://8sru5hge6spx"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/bomb-projectile.gd" id="1_eudhi"] +[ext_resource type="PackedScene" uid="uid://cn6ypxuayfwfl" path="res://examples/forest-brawl/models/kenney-platformer-kit/bomb.glb" id="1_lr6uq"] +[ext_resource type="PackedScene" uid="uid://6212jkmbikjq" path="res://examples/forest-brawl/scenes/explosion.tscn" id="2_r3c2e"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="4_dyck1"] + +[sub_resource type="SphereShape3D" id="SphereShape3D_pc5j5"] +radius = 0.25 + +[node name="Bomb Projectile" type="ShapeCast3D"] +shape = SubResource("SphereShape3D_pc5j5") +target_position = Vector3(0, 0, 0) +script = ExtResource("1_eudhi") +strength = 4.0 +effect = ExtResource("2_r3c2e") + +[node name="bomb" parent="." instance=ExtResource("1_lr6uq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.226921, 0) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("4_dyck1") +root = NodePath("..") +properties = Array[String]([":global_position"]) diff --git a/examples/forest-brawl/scenes/brawler-crown.tscn b/examples/forest-brawl/scenes/brawler-crown.tscn new file mode 100644 index 0000000..877bd2e --- /dev/null +++ b/examples/forest-brawl/scenes/brawler-crown.tscn @@ -0,0 +1,114 @@ +[gd_scene load_steps=10 format=3 uid="uid://b1vadi3ma8uiq"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/brawler-crown.gd" id="1_2fc6v"] +[ext_resource type="PackedScene" uid="uid://sinafrhckrei" path="res://examples/forest-brawl/models/brawler-crown.glb" id="1_pqi5f"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/aura-sphere-mesh.gd" id="2_1d1j8"] + +[sub_resource type="Animation" id="Animation_dd222"] +resource_name = "crown_rotate" +length = 8.0 +loop_mode = 1 +tracks/0/type = "bezier" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:rotation:x") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"handle_modes": PackedInt32Array(0), +"points": PackedFloat32Array(0.1, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0) +} +tracks/1/type = "bezier" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:rotation:y") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"handle_modes": PackedInt32Array(0, 0), +"points": PackedFloat32Array(0, -0.25, 0, 0.25, 0, 6.283, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0, 8) +} +tracks/2/type = "bezier" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath(".:rotation:z") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"handle_modes": PackedInt32Array(), +"points": PackedFloat32Array(), +"times": PackedFloat32Array() +} +tracks/3/type = "position_3d" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath(".") +tracks/3/interp = 2 +tracks/3/loop_wrap = true +tracks/3/keys = PackedFloat32Array(0, 1, 0, 0, 0, 4, 1, 0, -0.25, 0, 8, 1, 0, 0, 0) + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_p7bnw"] +_data = { +"crown_rotate": SubResource("Animation_dd222") +} + +[sub_resource type="Gradient" id="Gradient_k0qrh"] +interpolation_mode = 2 +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_1hcsp"] +gradient = SubResource("Gradient_k0qrh") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0uyxw"] +blend_mode = 1 +cull_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +albedo_color = Color(1, 0.633333, 0, 1) +albedo_texture = SubResource("GradientTexture2D_1hcsp") +disable_receive_shadows = true +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true +proximity_fade_distance = 0.13 + +[sub_resource type="ArrayMesh" id="ArrayMesh_f8n6h"] +_surfaces = [{ +"aabb": AABB(-0.984808, -1, -0.984808, 1.96962, 2.00001, 1.96962), +"attribute_data": PackedByteArray(0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 81, 199, 43, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 94, 113, 168, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 0, 0, 0, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 222, 70, 82, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 138, 228, 54, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 0, 0, 0, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 236, 217, 110, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 160, 48, 137, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 0, 0, 0, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 46, 14, 126, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 0, 233, 248, 59, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 0, 0, 0, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 46, 14, 126, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 0, 233, 248, 59, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 0, 0, 0, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 236, 217, 110, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 164, 48, 137, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 0, 0, 0, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 221, 70, 82, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 140, 228, 54, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 0, 0, 0, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 81, 199, 43, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 94, 113, 168, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0), +"format": 4119, +"index_count": 864, +"index_data": PackedByteArray(0, 0, 1, 0, 17, 0, 1, 0, 18, 0, 17, 0, 1, 0, 2, 0, 18, 0, 2, 0, 19, 0, 18, 0, 2, 0, 3, 0, 19, 0, 3, 0, 20, 0, 19, 0, 3, 0, 4, 0, 20, 0, 4, 0, 21, 0, 20, 0, 4, 0, 5, 0, 21, 0, 5, 0, 22, 0, 21, 0, 5, 0, 6, 0, 22, 0, 6, 0, 23, 0, 22, 0, 6, 0, 7, 0, 23, 0, 7, 0, 24, 0, 23, 0, 7, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 8, 0, 9, 0, 25, 0, 9, 0, 26, 0, 25, 0, 9, 0, 10, 0, 26, 0, 10, 0, 27, 0, 26, 0, 10, 0, 11, 0, 27, 0, 11, 0, 28, 0, 27, 0, 11, 0, 12, 0, 28, 0, 12, 0, 29, 0, 28, 0, 12, 0, 13, 0, 29, 0, 13, 0, 30, 0, 29, 0, 13, 0, 14, 0, 30, 0, 14, 0, 31, 0, 30, 0, 14, 0, 15, 0, 31, 0, 15, 0, 32, 0, 31, 0, 15, 0, 16, 0, 32, 0, 16, 0, 33, 0, 32, 0, 17, 0, 18, 0, 34, 0, 18, 0, 35, 0, 34, 0, 18, 0, 19, 0, 35, 0, 19, 0, 36, 0, 35, 0, 19, 0, 20, 0, 36, 0, 20, 0, 37, 0, 36, 0, 20, 0, 21, 0, 37, 0, 21, 0, 38, 0, 37, 0, 21, 0, 22, 0, 38, 0, 22, 0, 39, 0, 38, 0, 22, 0, 23, 0, 39, 0, 23, 0, 40, 0, 39, 0, 23, 0, 24, 0, 40, 0, 24, 0, 41, 0, 40, 0, 24, 0, 25, 0, 41, 0, 25, 0, 42, 0, 41, 0, 25, 0, 26, 0, 42, 0, 26, 0, 43, 0, 42, 0, 26, 0, 27, 0, 43, 0, 27, 0, 44, 0, 43, 0, 27, 0, 28, 0, 44, 0, 28, 0, 45, 0, 44, 0, 28, 0, 29, 0, 45, 0, 29, 0, 46, 0, 45, 0, 29, 0, 30, 0, 46, 0, 30, 0, 47, 0, 46, 0, 30, 0, 31, 0, 47, 0, 31, 0, 48, 0, 47, 0, 31, 0, 32, 0, 48, 0, 32, 0, 49, 0, 48, 0, 32, 0, 33, 0, 49, 0, 33, 0, 50, 0, 49, 0, 34, 0, 35, 0, 51, 0, 35, 0, 52, 0, 51, 0, 35, 0, 36, 0, 52, 0, 36, 0, 53, 0, 52, 0, 36, 0, 37, 0, 53, 0, 37, 0, 54, 0, 53, 0, 37, 0, 38, 0, 54, 0, 38, 0, 55, 0, 54, 0, 38, 0, 39, 0, 55, 0, 39, 0, 56, 0, 55, 0, 39, 0, 40, 0, 56, 0, 40, 0, 57, 0, 56, 0, 40, 0, 41, 0, 57, 0, 41, 0, 58, 0, 57, 0, 41, 0, 42, 0, 58, 0, 42, 0, 59, 0, 58, 0, 42, 0, 43, 0, 59, 0, 43, 0, 60, 0, 59, 0, 43, 0, 44, 0, 60, 0, 44, 0, 61, 0, 60, 0, 44, 0, 45, 0, 61, 0, 45, 0, 62, 0, 61, 0, 45, 0, 46, 0, 62, 0, 46, 0, 63, 0, 62, 0, 46, 0, 47, 0, 63, 0, 47, 0, 64, 0, 63, 0, 47, 0, 48, 0, 64, 0, 48, 0, 65, 0, 64, 0, 48, 0, 49, 0, 65, 0, 49, 0, 66, 0, 65, 0, 49, 0, 50, 0, 66, 0, 50, 0, 67, 0, 66, 0, 51, 0, 52, 0, 68, 0, 52, 0, 69, 0, 68, 0, 52, 0, 53, 0, 69, 0, 53, 0, 70, 0, 69, 0, 53, 0, 54, 0, 70, 0, 54, 0, 71, 0, 70, 0, 54, 0, 55, 0, 71, 0, 55, 0, 72, 0, 71, 0, 55, 0, 56, 0, 72, 0, 56, 0, 73, 0, 72, 0, 56, 0, 57, 0, 73, 0, 57, 0, 74, 0, 73, 0, 57, 0, 58, 0, 74, 0, 58, 0, 75, 0, 74, 0, 58, 0, 59, 0, 75, 0, 59, 0, 76, 0, 75, 0, 59, 0, 60, 0, 76, 0, 60, 0, 77, 0, 76, 0, 60, 0, 61, 0, 77, 0, 61, 0, 78, 0, 77, 0, 61, 0, 62, 0, 78, 0, 62, 0, 79, 0, 78, 0, 62, 0, 63, 0, 79, 0, 63, 0, 80, 0, 79, 0, 63, 0, 64, 0, 80, 0, 64, 0, 81, 0, 80, 0, 64, 0, 65, 0, 81, 0, 65, 0, 82, 0, 81, 0, 65, 0, 66, 0, 82, 0, 66, 0, 83, 0, 82, 0, 66, 0, 67, 0, 83, 0, 67, 0, 84, 0, 83, 0, 68, 0, 69, 0, 85, 0, 69, 0, 86, 0, 85, 0, 69, 0, 70, 0, 86, 0, 70, 0, 87, 0, 86, 0, 70, 0, 71, 0, 87, 0, 71, 0, 88, 0, 87, 0, 71, 0, 72, 0, 88, 0, 72, 0, 89, 0, 88, 0, 72, 0, 73, 0, 89, 0, 73, 0, 90, 0, 89, 0, 73, 0, 74, 0, 90, 0, 74, 0, 91, 0, 90, 0, 74, 0, 75, 0, 91, 0, 75, 0, 92, 0, 91, 0, 75, 0, 76, 0, 92, 0, 76, 0, 93, 0, 92, 0, 76, 0, 77, 0, 93, 0, 77, 0, 94, 0, 93, 0, 77, 0, 78, 0, 94, 0, 78, 0, 95, 0, 94, 0, 78, 0, 79, 0, 95, 0, 79, 0, 96, 0, 95, 0, 79, 0, 80, 0, 96, 0, 80, 0, 97, 0, 96, 0, 80, 0, 81, 0, 97, 0, 81, 0, 98, 0, 97, 0, 81, 0, 82, 0, 98, 0, 82, 0, 99, 0, 98, 0, 82, 0, 83, 0, 99, 0, 83, 0, 100, 0, 99, 0, 83, 0, 84, 0, 100, 0, 84, 0, 101, 0, 100, 0, 85, 0, 86, 0, 102, 0, 86, 0, 103, 0, 102, 0, 86, 0, 87, 0, 103, 0, 87, 0, 104, 0, 103, 0, 87, 0, 88, 0, 104, 0, 88, 0, 105, 0, 104, 0, 88, 0, 89, 0, 105, 0, 89, 0, 106, 0, 105, 0, 89, 0, 90, 0, 106, 0, 90, 0, 107, 0, 106, 0, 90, 0, 91, 0, 107, 0, 91, 0, 108, 0, 107, 0, 91, 0, 92, 0, 108, 0, 92, 0, 109, 0, 108, 0, 92, 0, 93, 0, 109, 0, 93, 0, 110, 0, 109, 0, 93, 0, 94, 0, 110, 0, 94, 0, 111, 0, 110, 0, 94, 0, 95, 0, 111, 0, 95, 0, 112, 0, 111, 0, 95, 0, 96, 0, 112, 0, 96, 0, 113, 0, 112, 0, 96, 0, 97, 0, 113, 0, 97, 0, 114, 0, 113, 0, 97, 0, 98, 0, 114, 0, 98, 0, 115, 0, 114, 0, 98, 0, 99, 0, 115, 0, 99, 0, 116, 0, 115, 0, 99, 0, 100, 0, 116, 0, 100, 0, 117, 0, 116, 0, 100, 0, 101, 0, 117, 0, 101, 0, 118, 0, 117, 0, 102, 0, 103, 0, 119, 0, 103, 0, 120, 0, 119, 0, 103, 0, 104, 0, 120, 0, 104, 0, 121, 0, 120, 0, 104, 0, 105, 0, 121, 0, 105, 0, 122, 0, 121, 0, 105, 0, 106, 0, 122, 0, 106, 0, 123, 0, 122, 0, 106, 0, 107, 0, 123, 0, 107, 0, 124, 0, 123, 0, 107, 0, 108, 0, 124, 0, 108, 0, 125, 0, 124, 0, 108, 0, 109, 0, 125, 0, 109, 0, 126, 0, 125, 0, 109, 0, 110, 0, 126, 0, 110, 0, 127, 0, 126, 0, 110, 0, 111, 0, 127, 0, 111, 0, 128, 0, 127, 0, 111, 0, 112, 0, 128, 0, 112, 0, 129, 0, 128, 0, 112, 0, 113, 0, 129, 0, 113, 0, 130, 0, 129, 0, 113, 0, 114, 0, 130, 0, 114, 0, 131, 0, 130, 0, 114, 0, 115, 0, 131, 0, 115, 0, 132, 0, 131, 0, 115, 0, 116, 0, 132, 0, 116, 0, 133, 0, 132, 0, 116, 0, 117, 0, 133, 0, 117, 0, 134, 0, 133, 0, 117, 0, 118, 0, 134, 0, 118, 0, 135, 0, 134, 0, 119, 0, 120, 0, 136, 0, 120, 0, 137, 0, 136, 0, 120, 0, 121, 0, 137, 0, 121, 0, 138, 0, 137, 0, 121, 0, 122, 0, 138, 0, 122, 0, 139, 0, 138, 0, 122, 0, 123, 0, 139, 0, 123, 0, 140, 0, 139, 0, 123, 0, 124, 0, 140, 0, 124, 0, 141, 0, 140, 0, 124, 0, 125, 0, 141, 0, 125, 0, 142, 0, 141, 0, 125, 0, 126, 0, 142, 0, 126, 0, 143, 0, 142, 0, 126, 0, 127, 0, 143, 0, 127, 0, 144, 0, 143, 0, 127, 0, 128, 0, 144, 0, 128, 0, 145, 0, 144, 0, 128, 0, 129, 0, 145, 0, 129, 0, 146, 0, 145, 0, 129, 0, 130, 0, 146, 0, 130, 0, 147, 0, 146, 0, 130, 0, 131, 0, 147, 0, 131, 0, 148, 0, 147, 0, 131, 0, 132, 0, 148, 0, 132, 0, 149, 0, 148, 0, 132, 0, 133, 0, 149, 0, 133, 0, 150, 0, 149, 0, 133, 0, 134, 0, 150, 0, 134, 0, 151, 0, 150, 0, 134, 0, 135, 0, 151, 0, 135, 0, 152, 0, 151, 0, 136, 0, 137, 0, 153, 0, 137, 0, 154, 0, 153, 0, 137, 0, 138, 0, 154, 0, 138, 0, 155, 0, 154, 0, 138, 0, 139, 0, 155, 0, 139, 0, 156, 0, 155, 0, 139, 0, 140, 0, 156, 0, 140, 0, 157, 0, 156, 0, 140, 0, 141, 0, 157, 0, 141, 0, 158, 0, 157, 0, 141, 0, 142, 0, 158, 0, 142, 0, 159, 0, 158, 0, 142, 0, 143, 0, 159, 0, 143, 0, 160, 0, 159, 0, 143, 0, 144, 0, 160, 0, 144, 0, 161, 0, 160, 0, 144, 0, 145, 0, 161, 0, 145, 0, 162, 0, 161, 0, 145, 0, 146, 0, 162, 0, 146, 0, 163, 0, 162, 0, 146, 0, 147, 0, 163, 0, 147, 0, 164, 0, 163, 0, 147, 0, 148, 0, 164, 0, 148, 0, 165, 0, 164, 0, 148, 0, 149, 0, 165, 0, 149, 0, 166, 0, 165, 0, 149, 0, 150, 0, 166, 0, 150, 0, 167, 0, 166, 0, 150, 0, 151, 0, 167, 0, 151, 0, 168, 0, 167, 0, 151, 0, 152, 0, 168, 0, 152, 0, 169, 0, 168, 0), +"material": SubResource("StandardMaterial3D_0uyxw"), +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 63, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 130, 90, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 127, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 124, 165, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 191, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 129, 218, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 62, 20, 140, 190, 214, 255, 255, 189, 210, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 62, 190, 149, 128, 212, 255, 255, 255, 223, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 62, 42, 157, 190, 214, 255, 255, 64, 237, 68, 29, 175, 62, 178, 143, 112, 63, 139, 41, 193, 35, 39, 162, 215, 221, 255, 255, 255, 255, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 190, 64, 169, 211, 226, 0, 0, 64, 237, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 190, 125, 171, 63, 234, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 190, 64, 169, 233, 243, 0, 0, 189, 210, 139, 41, 65, 36, 178, 143, 112, 63, 68, 29, 175, 190, 39, 162, 255, 255, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 190, 190, 86, 233, 243, 125, 37, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 190, 128, 84, 63, 234, 255, 63, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 190, 190, 86, 211, 226, 130, 90, 255, 191, 68, 29, 175, 190, 178, 143, 112, 63, 39, 223, 144, 164, 215, 93, 215, 221, 255, 127, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 62, 212, 98, 190, 214, 124, 165, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 62, 64, 106, 128, 212, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 62, 234, 115, 190, 214, 129, 218, 255, 191, 139, 41, 193, 164, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 0, 0, 0, 0, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 63, 154, 147, 14, 189, 255, 255, 189, 210, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 62, 186, 162, 136, 186, 255, 255, 255, 223, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 62, 84, 175, 14, 189, 255, 255, 64, 237, 187, 141, 36, 63, 125, 27, 68, 63, 95, 131, 53, 36, 101, 186, 152, 197, 255, 255, 255, 255, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 190, 240, 194, 169, 208, 0, 0, 64, 237, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 190, 117, 197, 67, 221, 0, 0, 255, 223, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 191, 240, 194, 99, 236, 0, 0, 189, 210, 95, 131, 181, 36, 125, 27, 68, 63, 187, 141, 36, 191, 101, 186, 255, 255, 0, 0, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 191, 14, 61, 99, 236, 125, 37, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 190, 137, 58, 67, 221, 255, 63, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 190, 14, 61, 169, 208, 130, 90, 255, 191, 187, 141, 36, 191, 125, 27, 68, 63, 134, 34, 8, 165, 153, 69, 152, 197, 255, 127, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 62, 170, 80, 14, 189, 124, 165, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 62, 68, 93, 136, 186, 255, 191, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 63, 100, 108, 14, 189, 129, 218, 255, 191, 95, 131, 53, 165, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 0, 0, 0, 0, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 63, 255, 153, 57, 167, 255, 255, 189, 210, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 63, 113, 173, 26, 165, 255, 255, 255, 223, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 62, 196, 190, 57, 167, 255, 255, 64, 237, 216, 179, 93, 63, 255, 255, 255, 62, 81, 141, 116, 36, 36, 209, 217, 174, 255, 255, 255, 255, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 190, 196, 216, 57, 193, 0, 0, 64, 237, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 191, 227, 218, 140, 210, 0, 0, 255, 223, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 191, 196, 216, 254, 229, 0, 0, 189, 210, 81, 141, 244, 36, 255, 255, 255, 62, 216, 179, 93, 191, 37, 209, 255, 255, 0, 0, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 191, 57, 39, 254, 229, 125, 37, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 191, 27, 37, 140, 210, 255, 63, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 190, 57, 39, 57, 193, 130, 90, 255, 191, 216, 179, 93, 191, 255, 255, 255, 62, 252, 105, 55, 165, 217, 46, 217, 174, 255, 127, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 62, 58, 65, 57, 167, 124, 165, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 63, 141, 82, 26, 165, 255, 191, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 63, 255, 101, 57, 167, 129, 218, 255, 191, 81, 141, 116, 165, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 63, 7, 161, 55, 143, 255, 255, 189, 210, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 63, 230, 184, 48, 142, 255, 255, 255, 223, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 62, 190, 207, 55, 143, 255, 255, 64, 237, 92, 28, 124, 63, 211, 208, 49, 62, 17, 12, 139, 36, 207, 236, 47, 147, 255, 255, 255, 255, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 190, 198, 240, 63, 176, 0, 0, 64, 237, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 191, 206, 241, 23, 199, 0, 0, 255, 223, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 191, 198, 240, 246, 222, 0, 0, 189, 210, 17, 12, 11, 37, 211, 208, 49, 62, 92, 28, 124, 191, 207, 236, 255, 255, 0, 0, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 191, 55, 15, 246, 222, 125, 37, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 191, 47, 14, 23, 199, 255, 63, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 190, 55, 15, 63, 176, 130, 90, 255, 191, 92, 28, 124, 191, 211, 208, 49, 62, 25, 146, 80, 165, 46, 19, 46, 147, 255, 127, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 62, 63, 48, 55, 143, 124, 165, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 63, 24, 71, 48, 142, 255, 191, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 63, 247, 94, 55, 143, 129, 218, 255, 191, 17, 12, 139, 165, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 0, 0, 0, 0, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 63, 7, 161, 199, 112, 255, 255, 189, 210, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 63, 230, 184, 206, 113, 255, 255, 255, 223, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 62, 190, 207, 199, 112, 255, 255, 64, 237, 92, 28, 124, 63, 217, 208, 49, 190, 17, 12, 139, 36, 207, 236, 207, 108, 255, 255, 255, 255, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 190, 198, 240, 191, 79, 0, 0, 64, 237, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 191, 206, 241, 231, 56, 0, 0, 255, 223, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 191, 198, 240, 8, 33, 0, 0, 189, 210, 17, 12, 11, 37, 217, 208, 49, 190, 92, 28, 124, 191, 207, 236, 0, 0, 0, 0, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 191, 55, 15, 8, 33, 125, 37, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 191, 47, 14, 231, 56, 255, 63, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 190, 55, 15, 191, 79, 130, 90, 255, 191, 92, 28, 124, 191, 217, 208, 49, 190, 25, 146, 80, 165, 46, 19, 207, 108, 255, 127, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 62, 63, 48, 199, 112, 124, 165, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 63, 24, 71, 206, 113, 255, 191, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 63, 247, 94, 199, 112, 129, 218, 255, 191, 17, 12, 139, 165, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 0, 0, 0, 0, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 63, 255, 153, 197, 88, 255, 255, 189, 210, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 63, 113, 173, 228, 90, 255, 255, 255, 223, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 62, 196, 190, 197, 88, 255, 255, 64, 237, 215, 179, 93, 63, 1, 0, 0, 191, 80, 141, 116, 36, 37, 209, 37, 81, 255, 255, 255, 255, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 190, 196, 216, 197, 62, 0, 0, 64, 237, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 191, 227, 218, 114, 45, 0, 0, 255, 223, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 191, 196, 216, 0, 26, 0, 0, 189, 210, 80, 141, 244, 36, 1, 0, 0, 191, 215, 179, 93, 191, 37, 209, 0, 0, 0, 0, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 191, 57, 39, 0, 26, 125, 37, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 191, 27, 37, 114, 45, 255, 63, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 190, 57, 39, 197, 62, 130, 90, 255, 191, 215, 179, 93, 191, 1, 0, 0, 191, 251, 105, 55, 165, 217, 46, 37, 81, 255, 127, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 62, 58, 65, 197, 88, 124, 165, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 63, 141, 82, 228, 90, 255, 191, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 63, 255, 101, 197, 88, 129, 218, 255, 191, 80, 141, 116, 165, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 0, 0, 0, 0, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 63, 154, 147, 240, 66, 255, 255, 189, 210, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 62, 186, 162, 118, 69, 255, 255, 255, 223, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 62, 84, 175, 240, 66, 255, 255, 64, 237, 186, 141, 36, 63, 126, 27, 68, 191, 93, 131, 53, 36, 101, 186, 101, 58, 255, 255, 255, 255, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 190, 240, 194, 84, 47, 0, 0, 64, 237, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 190, 117, 197, 187, 34, 0, 0, 255, 223, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 191, 240, 194, 154, 19, 0, 0, 189, 210, 93, 131, 181, 36, 126, 27, 68, 191, 186, 141, 36, 191, 101, 186, 0, 0, 0, 0, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 191, 14, 61, 154, 19, 125, 37, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 190, 137, 58, 187, 34, 255, 63, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 190, 14, 61, 84, 47, 130, 90, 255, 191, 186, 141, 36, 191, 126, 27, 68, 191, 133, 34, 8, 165, 153, 69, 102, 58, 255, 127, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 62, 170, 80, 240, 66, 124, 165, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 62, 68, 93, 118, 69, 255, 191, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 63, 100, 108, 240, 66, 129, 218, 255, 191, 93, 131, 53, 165, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 62, 20, 140, 63, 41, 255, 255, 189, 210, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 62, 190, 149, 126, 43, 255, 255, 255, 223, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 62, 42, 157, 63, 41, 255, 255, 64, 237, 67, 29, 175, 62, 178, 143, 112, 191, 137, 41, 193, 35, 39, 162, 38, 34, 255, 255, 255, 255, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 190, 64, 169, 42, 29, 0, 0, 64, 237, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 190, 126, 171, 191, 21, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 190, 64, 169, 20, 12, 0, 0, 189, 210, 137, 41, 65, 36, 178, 143, 112, 191, 67, 29, 175, 190, 39, 162, 0, 0, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 190, 189, 86, 20, 12, 125, 37, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 190, 128, 84, 191, 21, 255, 63, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 190, 190, 86, 42, 29, 130, 90, 255, 191, 67, 29, 175, 190, 178, 143, 112, 191, 38, 223, 144, 164, 215, 93, 38, 34, 255, 127, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 62, 212, 98, 63, 41, 124, 165, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 62, 64, 106, 126, 43, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 62, 234, 115, 63, 41, 129, 218, 255, 191, 137, 41, 193, 164, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 255, 255, 189, 210, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 255, 255, 223, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 255, 255, 64, 237, 50, 49, 13, 37, 0, 0, 128, 191, 117, 190, 27, 10, 0, 128, 0, 0, 255, 255, 255, 255, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 0, 0, 64, 237, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 0, 0, 255, 223, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 0, 0, 189, 210, 117, 190, 155, 10, 0, 0, 128, 191, 50, 49, 13, 165, 0, 128, 0, 0, 0, 0, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 125, 37, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 255, 63, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 130, 90, 255, 191, 50, 49, 13, 165, 0, 0, 128, 191, 174, 157, 233, 138, 0, 128, 0, 0, 255, 127, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 124, 165, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 191, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 129, 218, 255, 191, 117, 190, 27, 139, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191) +}] +script = ExtResource("2_1d1j8") +segments = 16 +rings = 8 +radius = 1.0 +material = SubResource("StandardMaterial3D_0uyxw") + +[node name="Brawler Crown" type="Node3D"] +script = ExtResource("1_2fc6v") +offset = Vector3(0, 1, 0) +tween_time = 0.1 + +[node name="brawler-crown" parent="." instance=ExtResource("1_pqi5f")] +transform = Transform3D(-0.130488, 0.0350476, 0.349814, -0.000145384, 0.373127, -0.0374375, -0.351565, -0.0131627, -0.129822, 0, -0.170775, 0) + +[node name="AnimationPlayer" type="AnimationPlayer" parent="brawler-crown"] +libraries = { +"": SubResource("AnimationLibrary_p7bnw") +} + +[node name="Aura" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.25, 0) +mesh = SubResource("ArrayMesh_f8n6h") +skeleton = NodePath("../..") diff --git a/examples/forest-brawl/scenes/brawler.tscn b/examples/forest-brawl/scenes/brawler.tscn new file mode 100644 index 0000000..f44089a --- /dev/null +++ b/examples/forest-brawl/scenes/brawler.tscn @@ -0,0 +1,162 @@ +[gd_scene load_steps=28 format=3 uid="uid://wi4owat0bml3"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/brawler-controller.gd" id="1_np8na"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/brawler-input.gd" id="2_m3v43"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/play-random-3d.gd" id="3_rcsmp"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/brawler-weapon.gd" id="4_0hvdj"] +[ext_resource type="AudioStream" uid="uid://cih2i8xa2v2is" path="res://examples/forest-brawl/sounds/fall1.wav" id="4_mw5vb"] +[ext_resource type="PackedScene" uid="uid://8sru5hge6spx" path="res://examples/forest-brawl/scenes/bomb-projectile.tscn" id="5_a4qop"] +[ext_resource type="AudioStream" uid="uid://4oilc8k83mmt" path="res://examples/forest-brawl/sounds/fall2.wav" id="5_kqmf5"] +[ext_resource type="AudioStream" uid="uid://b03phi3tfl21k" path="res://examples/forest-brawl/sounds/whoosh.wav" id="6_gh8ps"] +[ext_resource type="AudioStream" uid="uid://cegpnj82f4gio" path="res://examples/forest-brawl/sounds/fall3.wav" id="6_jc44e"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="7_cmfmx"] +[ext_resource type="PackedScene" uid="uid://fctd5hkxnf2y" path="res://examples/forest-brawl/models/player/bomber-guy.glb" id="7_ij3cr"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="8_pj7o0"] + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_gdp4i"] +animation = &"Float" + +[sub_resource type="AnimationNodeBlend2" id="AnimationNodeBlend2_qv2tk"] + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rss6c"] +animation = &"Idle" + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_7lmj4"] +animation = &"Run" + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_7yjg4"] +animation = &"Strafe_L" + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_v2fmc"] +animation = &"Strafe_R" + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_tp0nc"] +animation = &"Backpedal" + +[sub_resource type="AnimationNodeBlendSpace2D" id="AnimationNodeBlendSpace2D_blhbt"] +blend_point_0/node = SubResource("AnimationNodeAnimation_rss6c") +blend_point_0/pos = Vector2(0, 0) +blend_point_1/node = SubResource("AnimationNodeAnimation_7lmj4") +blend_point_1/pos = Vector2(0, 1) +blend_point_2/node = SubResource("AnimationNodeAnimation_7yjg4") +blend_point_2/pos = Vector2(1, 0) +blend_point_3/node = SubResource("AnimationNodeAnimation_v2fmc") +blend_point_3/pos = Vector2(-1, 0) +blend_point_4/node = SubResource("AnimationNodeAnimation_tp0nc") +blend_point_4/pos = Vector2(0, -1) +min_space = Vector2(-4, -1) +max_space = Vector2(4, 1) + +[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_2k2qg"] + +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_w05vo"] +animation = &"Throw" + +[sub_resource type="AnimationNodeOneShot" id="AnimationNodeOneShot_byyqa"] +filter_enabled = true +filters = ["rig/Skeleton3D:DEF-breast.L", "rig/Skeleton3D:DEF-breast.R", "rig/Skeleton3D:DEF-forearm.L", "rig/Skeleton3D:DEF-forearm.L.001", "rig/Skeleton3D:DEF-forearm.R", "rig/Skeleton3D:DEF-forearm.R.001", "rig/Skeleton3D:DEF-hand.L", "rig/Skeleton3D:DEF-hand.R", "rig/Skeleton3D:DEF-shoulder.L", "rig/Skeleton3D:DEF-shoulder.R", "rig/Skeleton3D:DEF-spine", "rig/Skeleton3D:DEF-spine.001", "rig/Skeleton3D:DEF-spine.002", "rig/Skeleton3D:DEF-spine.003", "rig/Skeleton3D:DEF-spine.004", "rig/Skeleton3D:DEF-spine.005", "rig/Skeleton3D:DEF-spine.006", "rig/Skeleton3D:DEF-upper_arm.L", "rig/Skeleton3D:DEF-upper_arm.L.001", "rig/Skeleton3D:DEF-upper_arm.R", "rig/Skeleton3D:DEF-upper_arm.R.001"] +fadein_time = 0.2 +fadeout_time = 0.2 + +[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_ofns8"] + +[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_8to0y"] +graph_offset = Vector2(-680.797, -57.1155) +nodes/Float/node = SubResource("AnimationNodeBlend2_qv2tk") +nodes/Float/position = Vector2(-80, 0) +"nodes/Float Anim/node" = SubResource("AnimationNodeAnimation_gdp4i") +"nodes/Float Anim/position" = Vector2(-280, 120) +nodes/Move/node = SubResource("AnimationNodeBlendSpace2D_blhbt") +nodes/Move/position = Vector2(-480, -40) +nodes/MoveScale/node = SubResource("AnimationNodeTimeScale_2k2qg") +nodes/MoveScale/position = Vector2(-280, -40) +nodes/Throw/node = SubResource("AnimationNodeOneShot_byyqa") +nodes/Throw/position = Vector2(100, 20) +"nodes/Throw Anim/node" = SubResource("AnimationNodeAnimation_w05vo") +"nodes/Throw Anim/position" = Vector2(-280, 260) +nodes/ThrowScale/node = SubResource("AnimationNodeTimeScale_ofns8") +nodes/ThrowScale/position = Vector2(-100, 260) +nodes/output/position = Vector2(320, 80) +node_connections = [&"output", 0, &"Throw", &"Float", 0, &"MoveScale", &"Float", 1, &"Float Anim", &"MoveScale", 0, &"Move", &"Throw", 0, &"Float", &"Throw", 1, &"ThrowScale", &"ThrowScale", 0, &"Throw Anim"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_qgusj"] +radius = 0.25 +height = 1.0 + +[sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_4cjl8"] +properties/0/path = NodePath(".:player_name") +properties/0/spawn = true +properties/0/sync = false +properties/0/watch = true +properties/1/path = NodePath(".:visible") +properties/1/spawn = true +properties/1/sync = false +properties/1/watch = true + +[node name="Brawler" type="CharacterBody3D" groups=["Brawlers"]] +platform_on_leave = 2 +platform_floor_layers = 0 +script = ExtResource("1_np8na") +speed = 4.0 +death_depth = 16.0 +respawn_time = 8.0 + +[node name="bomber-guy" parent="." instance=ExtResource("7_ij3cr")] +transform = Transform3D(0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, -0.5, 0) + +[node name="AnimationTree" type="AnimationTree" parent="."] +tree_root = SubResource("AnimationNodeBlendTree_8to0y") +anim_player = NodePath("../bomber-guy/AnimationPlayer") +active = true +parameters/Float/blend_amount = 0.0 +parameters/Move/blend_position = Vector2(0, 0) +parameters/MoveScale/scale = 1.0 +parameters/Throw/active = false +parameters/Throw/internal_active = false +parameters/Throw/request = 0 +parameters/ThrowScale/scale = 1.0 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_qgusj") + +[node name="Nametag" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +pixel_size = 0.0007 +billboard = 1 +fixed_size = true +text = "Nameless Brawler" +width = 128.0 + +[node name="Fall Sound" type="AudioStreamPlayer3D" parent="."] +script = ExtResource("3_rcsmp") +sounds = Array[AudioStream]([ExtResource("4_mw5vb"), ExtResource("5_kqmf5"), ExtResource("6_jc44e")]) + +[node name="Input" type="Node" parent="."] +script = ExtResource("2_m3v43") + +[node name="Weapon" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.5) +script = ExtResource("4_0hvdj") +projectile = ExtResource("5_a4qop") +fire_cooldown = 0.5 + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Weapon"] +stream = ExtResource("6_gh8ps") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("7_cmfmx") +root = NodePath("..") +enable_prediction = true +state_properties = Array[String]([":transform", ":velocity", ":speed", ":mass"]) +full_state_interval = 24 +diff_ack_interval = 4 +input_properties = Array[String](["Input:movement", "Input:aim"]) +enable_input_broadcast = false + +[node name="MultiplayerSynchronizer" type="MultiplayerSynchronizer" parent="."] +replication_config = SubResource("SceneReplicationConfig_4cjl8") + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("8_pj7o0") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/forest-brawl/scenes/doodads/cloud-puff-material.tres b/examples/forest-brawl/scenes/doodads/cloud-puff-material.tres new file mode 100644 index 0000000..81a5acf --- /dev/null +++ b/examples/forest-brawl/scenes/doodads/cloud-puff-material.tres @@ -0,0 +1,25 @@ +[gd_resource type="StandardMaterial3D" load_steps=3 format=3 uid="uid://joecqmf51gl0"] + +[sub_resource type="Gradient" id="Gradient_t3ujw"] +interpolation_mode = 2 +colors = PackedColorArray(1, 1, 1, 1, 1, 1, 1, 0) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_6a55y"] +gradient = SubResource("Gradient_t3ujw") +width = 256 +height = 256 +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(0.75, 0.5) + +[resource] +transparency = 1 +shading_mode = 2 +specular_mode = 2 +albedo_color = Color(0.701961, 0.901961, 1, 1) +albedo_texture = SubResource("GradientTexture2D_6a55y") +rim_tint = 1.0 +texture_repeat = false +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true diff --git a/examples/forest-brawl/scenes/doodads/cloud-puff.tscn b/examples/forest-brawl/scenes/doodads/cloud-puff.tscn new file mode 100644 index 0000000..ec920f2 --- /dev/null +++ b/examples/forest-brawl/scenes/doodads/cloud-puff.tscn @@ -0,0 +1,12 @@ +[gd_scene load_steps=3 format=3 uid="uid://bsbr5iwwmvkni"] + +[ext_resource type="Material" uid="uid://joecqmf51gl0" path="res://examples/forest-brawl/scenes/doodads/cloud-puff-material.tres" id="1_poiuj"] + +[sub_resource type="QuadMesh" id="QuadMesh_o76l3"] +material = ExtResource("1_poiuj") +size = Vector2(16, 16) + +[node name="Cloud Puff" type="MeshInstance3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.17294, 0) +cast_shadow = 0 +mesh = SubResource("QuadMesh_o76l3") diff --git a/examples/forest-brawl/scenes/doodads/clouds-1.tscn b/examples/forest-brawl/scenes/doodads/clouds-1.tscn new file mode 100644 index 0000000..ce3e138 --- /dev/null +++ b/examples/forest-brawl/scenes/doodads/clouds-1.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=2 format=3 uid="uid://c12hb5btenkcy"] + +[ext_resource type="PackedScene" uid="uid://bsbr5iwwmvkni" path="res://examples/forest-brawl/scenes/doodads/cloud-puff.tscn" id="1_g3m5f"] + +[node name="Clouds 1" type="Node3D"] + +[node name="Cloud Puff" parent="." instance=ExtResource("1_g3m5f")] + +[node name="Cloud Puff2" parent="." instance=ExtResource("1_g3m5f")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.61259, 1.17294, 0.902248) +skeleton = NodePath("") + +[node name="Cloud Puff3" parent="." instance=ExtResource("1_g3m5f")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.5049, 1.17294, 2.82576) +skeleton = NodePath("") + +[node name="Cloud Puff4" parent="." instance=ExtResource("1_g3m5f")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.66857, 1.17294, -0.671089) +skeleton = NodePath("") diff --git a/examples/forest-brawl/scenes/doodads/clouds-2.tscn b/examples/forest-brawl/scenes/doodads/clouds-2.tscn new file mode 100644 index 0000000..d0261c4 --- /dev/null +++ b/examples/forest-brawl/scenes/doodads/clouds-2.tscn @@ -0,0 +1,33 @@ +[gd_scene load_steps=2 format=3 uid="uid://c5l8x303sjqhs"] + +[ext_resource type="PackedScene" uid="uid://bsbr5iwwmvkni" path="res://examples/forest-brawl/scenes/doodads/cloud-puff.tscn" id="1_inhlv"] + +[node name="Clouds 2" type="Node3D"] + +[node name="Cloud Puff" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.87052, 1.17294, 1.65643) +skeleton = NodePath("") + +[node name="Cloud Puff2" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.82601, 0.801252, 2.57458) +skeleton = NodePath("") + +[node name="Cloud Puff3" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.89437, 0.801252, -2.56131) +skeleton = NodePath("") + +[node name="Cloud Puff4" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.24966, 1.12834, -0.138732) +skeleton = NodePath("") + +[node name="Cloud Puff5" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.18009, 0.756649, -0.0275192) +skeleton = NodePath("") + +[node name="Cloud Puff6" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.212608, 2.86806, -0.8603) +skeleton = NodePath("") + +[node name="Cloud Puff7" parent="." instance=ExtResource("1_inhlv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.20852, 0.416291, -2.78978) +skeleton = NodePath("") diff --git a/examples/forest-brawl/scenes/doodads/clouds-3.tscn b/examples/forest-brawl/scenes/doodads/clouds-3.tscn new file mode 100644 index 0000000..690bdbe --- /dev/null +++ b/examples/forest-brawl/scenes/doodads/clouds-3.tscn @@ -0,0 +1,45 @@ +[gd_scene load_steps=2 format=3 uid="uid://dq14vitb32x5p"] + +[ext_resource type="PackedScene" uid="uid://bsbr5iwwmvkni" path="res://examples/forest-brawl/scenes/doodads/cloud-puff.tscn" id="1_5rh3p"] + +[node name="Clouds 3" type="Node3D"] + +[node name="Cloud Puff" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.99559, 0) +skeleton = NodePath("") + +[node name="Cloud Puff2" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.49789, 0, 4.6289) +skeleton = NodePath("") + +[node name="Cloud Puff3" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.54156, 3.06295, 1.44107) +skeleton = NodePath("") + +[node name="Cloud Puff4" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.02192, 0, -2.40179) +skeleton = NodePath("") + +[node name="Cloud Puff5" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.30146, 0, 2.75114) +skeleton = NodePath("") + +[node name="Cloud Puff6" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.2622, 0, -1.44107) +skeleton = NodePath("") + +[node name="Cloud Puff7" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.57647, 0, -2.62013) +skeleton = NodePath("") + +[node name="Cloud Puff8" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.54595, 0, 1.48474) +skeleton = NodePath("") + +[node name="Cloud Puff9" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.829708, 0, 2.79481) +skeleton = NodePath("") + +[node name="Cloud Puff10" parent="." instance=ExtResource("1_5rh3p")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.57207, 0, -3.31883) +skeleton = NodePath("") diff --git a/examples/forest-brawl/scenes/effects/mass-effect.tscn b/examples/forest-brawl/scenes/effects/mass-effect.tscn new file mode 100644 index 0000000..6c96c55 --- /dev/null +++ b/examples/forest-brawl/scenes/effects/mass-effect.tscn @@ -0,0 +1,237 @@ +[gd_scene load_steps=24 format=3 uid="uid://5cts743r7q3v"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/effects/mass-effect.gd" id="1_1iicr"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/aura-sphere-mesh.gd" id="2_mt3ku"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/play-random-3d.gd" id="3_rqiuv"] +[ext_resource type="AudioStream" uid="uid://cajfyvodmjy8i" path="res://examples/forest-brawl/sounds/glitch1.wav" id="4_6nsiq"] +[ext_resource type="AudioStream" uid="uid://c708geohjw7ci" path="res://examples/forest-brawl/sounds/glitch2.wav" id="5_ogrob"] + +[sub_resource type="Gradient" id="Gradient_k0qrh"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0.511312, 1) +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_lut6u"] +gradient = SubResource("Gradient_k0qrh") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gyt54"] +blend_mode = 1 +cull_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +albedo_color = Color(1, 0, 0.301961, 1) +albedo_texture = SubResource("GradientTexture2D_lut6u") +disable_receive_shadows = true +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true +proximity_fade_distance = 0.13 + +[sub_resource type="ArrayMesh" id="ArrayMesh_u237y"] +_surfaces = [{ +"aabb": AABB(-0.984808, -1, -0.984808, 1.96962, 2.00001, 1.96962), +"attribute_data": PackedByteArray(0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 81, 199, 43, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 94, 113, 168, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 0, 0, 0, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 222, 70, 82, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 138, 228, 54, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 0, 0, 0, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 236, 217, 110, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 160, 48, 137, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 0, 0, 0, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 46, 14, 126, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 0, 233, 248, 59, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 0, 0, 0, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 46, 14, 126, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 0, 233, 248, 59, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 0, 0, 0, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 236, 217, 110, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 164, 48, 137, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 0, 0, 0, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 221, 70, 82, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 140, 228, 54, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 0, 0, 0, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 81, 199, 43, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 94, 113, 168, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0), +"format": 4119, +"index_count": 864, +"index_data": PackedByteArray(0, 0, 1, 0, 17, 0, 1, 0, 18, 0, 17, 0, 1, 0, 2, 0, 18, 0, 2, 0, 19, 0, 18, 0, 2, 0, 3, 0, 19, 0, 3, 0, 20, 0, 19, 0, 3, 0, 4, 0, 20, 0, 4, 0, 21, 0, 20, 0, 4, 0, 5, 0, 21, 0, 5, 0, 22, 0, 21, 0, 5, 0, 6, 0, 22, 0, 6, 0, 23, 0, 22, 0, 6, 0, 7, 0, 23, 0, 7, 0, 24, 0, 23, 0, 7, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 8, 0, 9, 0, 25, 0, 9, 0, 26, 0, 25, 0, 9, 0, 10, 0, 26, 0, 10, 0, 27, 0, 26, 0, 10, 0, 11, 0, 27, 0, 11, 0, 28, 0, 27, 0, 11, 0, 12, 0, 28, 0, 12, 0, 29, 0, 28, 0, 12, 0, 13, 0, 29, 0, 13, 0, 30, 0, 29, 0, 13, 0, 14, 0, 30, 0, 14, 0, 31, 0, 30, 0, 14, 0, 15, 0, 31, 0, 15, 0, 32, 0, 31, 0, 15, 0, 16, 0, 32, 0, 16, 0, 33, 0, 32, 0, 17, 0, 18, 0, 34, 0, 18, 0, 35, 0, 34, 0, 18, 0, 19, 0, 35, 0, 19, 0, 36, 0, 35, 0, 19, 0, 20, 0, 36, 0, 20, 0, 37, 0, 36, 0, 20, 0, 21, 0, 37, 0, 21, 0, 38, 0, 37, 0, 21, 0, 22, 0, 38, 0, 22, 0, 39, 0, 38, 0, 22, 0, 23, 0, 39, 0, 23, 0, 40, 0, 39, 0, 23, 0, 24, 0, 40, 0, 24, 0, 41, 0, 40, 0, 24, 0, 25, 0, 41, 0, 25, 0, 42, 0, 41, 0, 25, 0, 26, 0, 42, 0, 26, 0, 43, 0, 42, 0, 26, 0, 27, 0, 43, 0, 27, 0, 44, 0, 43, 0, 27, 0, 28, 0, 44, 0, 28, 0, 45, 0, 44, 0, 28, 0, 29, 0, 45, 0, 29, 0, 46, 0, 45, 0, 29, 0, 30, 0, 46, 0, 30, 0, 47, 0, 46, 0, 30, 0, 31, 0, 47, 0, 31, 0, 48, 0, 47, 0, 31, 0, 32, 0, 48, 0, 32, 0, 49, 0, 48, 0, 32, 0, 33, 0, 49, 0, 33, 0, 50, 0, 49, 0, 34, 0, 35, 0, 51, 0, 35, 0, 52, 0, 51, 0, 35, 0, 36, 0, 52, 0, 36, 0, 53, 0, 52, 0, 36, 0, 37, 0, 53, 0, 37, 0, 54, 0, 53, 0, 37, 0, 38, 0, 54, 0, 38, 0, 55, 0, 54, 0, 38, 0, 39, 0, 55, 0, 39, 0, 56, 0, 55, 0, 39, 0, 40, 0, 56, 0, 40, 0, 57, 0, 56, 0, 40, 0, 41, 0, 57, 0, 41, 0, 58, 0, 57, 0, 41, 0, 42, 0, 58, 0, 42, 0, 59, 0, 58, 0, 42, 0, 43, 0, 59, 0, 43, 0, 60, 0, 59, 0, 43, 0, 44, 0, 60, 0, 44, 0, 61, 0, 60, 0, 44, 0, 45, 0, 61, 0, 45, 0, 62, 0, 61, 0, 45, 0, 46, 0, 62, 0, 46, 0, 63, 0, 62, 0, 46, 0, 47, 0, 63, 0, 47, 0, 64, 0, 63, 0, 47, 0, 48, 0, 64, 0, 48, 0, 65, 0, 64, 0, 48, 0, 49, 0, 65, 0, 49, 0, 66, 0, 65, 0, 49, 0, 50, 0, 66, 0, 50, 0, 67, 0, 66, 0, 51, 0, 52, 0, 68, 0, 52, 0, 69, 0, 68, 0, 52, 0, 53, 0, 69, 0, 53, 0, 70, 0, 69, 0, 53, 0, 54, 0, 70, 0, 54, 0, 71, 0, 70, 0, 54, 0, 55, 0, 71, 0, 55, 0, 72, 0, 71, 0, 55, 0, 56, 0, 72, 0, 56, 0, 73, 0, 72, 0, 56, 0, 57, 0, 73, 0, 57, 0, 74, 0, 73, 0, 57, 0, 58, 0, 74, 0, 58, 0, 75, 0, 74, 0, 58, 0, 59, 0, 75, 0, 59, 0, 76, 0, 75, 0, 59, 0, 60, 0, 76, 0, 60, 0, 77, 0, 76, 0, 60, 0, 61, 0, 77, 0, 61, 0, 78, 0, 77, 0, 61, 0, 62, 0, 78, 0, 62, 0, 79, 0, 78, 0, 62, 0, 63, 0, 79, 0, 63, 0, 80, 0, 79, 0, 63, 0, 64, 0, 80, 0, 64, 0, 81, 0, 80, 0, 64, 0, 65, 0, 81, 0, 65, 0, 82, 0, 81, 0, 65, 0, 66, 0, 82, 0, 66, 0, 83, 0, 82, 0, 66, 0, 67, 0, 83, 0, 67, 0, 84, 0, 83, 0, 68, 0, 69, 0, 85, 0, 69, 0, 86, 0, 85, 0, 69, 0, 70, 0, 86, 0, 70, 0, 87, 0, 86, 0, 70, 0, 71, 0, 87, 0, 71, 0, 88, 0, 87, 0, 71, 0, 72, 0, 88, 0, 72, 0, 89, 0, 88, 0, 72, 0, 73, 0, 89, 0, 73, 0, 90, 0, 89, 0, 73, 0, 74, 0, 90, 0, 74, 0, 91, 0, 90, 0, 74, 0, 75, 0, 91, 0, 75, 0, 92, 0, 91, 0, 75, 0, 76, 0, 92, 0, 76, 0, 93, 0, 92, 0, 76, 0, 77, 0, 93, 0, 77, 0, 94, 0, 93, 0, 77, 0, 78, 0, 94, 0, 78, 0, 95, 0, 94, 0, 78, 0, 79, 0, 95, 0, 79, 0, 96, 0, 95, 0, 79, 0, 80, 0, 96, 0, 80, 0, 97, 0, 96, 0, 80, 0, 81, 0, 97, 0, 81, 0, 98, 0, 97, 0, 81, 0, 82, 0, 98, 0, 82, 0, 99, 0, 98, 0, 82, 0, 83, 0, 99, 0, 83, 0, 100, 0, 99, 0, 83, 0, 84, 0, 100, 0, 84, 0, 101, 0, 100, 0, 85, 0, 86, 0, 102, 0, 86, 0, 103, 0, 102, 0, 86, 0, 87, 0, 103, 0, 87, 0, 104, 0, 103, 0, 87, 0, 88, 0, 104, 0, 88, 0, 105, 0, 104, 0, 88, 0, 89, 0, 105, 0, 89, 0, 106, 0, 105, 0, 89, 0, 90, 0, 106, 0, 90, 0, 107, 0, 106, 0, 90, 0, 91, 0, 107, 0, 91, 0, 108, 0, 107, 0, 91, 0, 92, 0, 108, 0, 92, 0, 109, 0, 108, 0, 92, 0, 93, 0, 109, 0, 93, 0, 110, 0, 109, 0, 93, 0, 94, 0, 110, 0, 94, 0, 111, 0, 110, 0, 94, 0, 95, 0, 111, 0, 95, 0, 112, 0, 111, 0, 95, 0, 96, 0, 112, 0, 96, 0, 113, 0, 112, 0, 96, 0, 97, 0, 113, 0, 97, 0, 114, 0, 113, 0, 97, 0, 98, 0, 114, 0, 98, 0, 115, 0, 114, 0, 98, 0, 99, 0, 115, 0, 99, 0, 116, 0, 115, 0, 99, 0, 100, 0, 116, 0, 100, 0, 117, 0, 116, 0, 100, 0, 101, 0, 117, 0, 101, 0, 118, 0, 117, 0, 102, 0, 103, 0, 119, 0, 103, 0, 120, 0, 119, 0, 103, 0, 104, 0, 120, 0, 104, 0, 121, 0, 120, 0, 104, 0, 105, 0, 121, 0, 105, 0, 122, 0, 121, 0, 105, 0, 106, 0, 122, 0, 106, 0, 123, 0, 122, 0, 106, 0, 107, 0, 123, 0, 107, 0, 124, 0, 123, 0, 107, 0, 108, 0, 124, 0, 108, 0, 125, 0, 124, 0, 108, 0, 109, 0, 125, 0, 109, 0, 126, 0, 125, 0, 109, 0, 110, 0, 126, 0, 110, 0, 127, 0, 126, 0, 110, 0, 111, 0, 127, 0, 111, 0, 128, 0, 127, 0, 111, 0, 112, 0, 128, 0, 112, 0, 129, 0, 128, 0, 112, 0, 113, 0, 129, 0, 113, 0, 130, 0, 129, 0, 113, 0, 114, 0, 130, 0, 114, 0, 131, 0, 130, 0, 114, 0, 115, 0, 131, 0, 115, 0, 132, 0, 131, 0, 115, 0, 116, 0, 132, 0, 116, 0, 133, 0, 132, 0, 116, 0, 117, 0, 133, 0, 117, 0, 134, 0, 133, 0, 117, 0, 118, 0, 134, 0, 118, 0, 135, 0, 134, 0, 119, 0, 120, 0, 136, 0, 120, 0, 137, 0, 136, 0, 120, 0, 121, 0, 137, 0, 121, 0, 138, 0, 137, 0, 121, 0, 122, 0, 138, 0, 122, 0, 139, 0, 138, 0, 122, 0, 123, 0, 139, 0, 123, 0, 140, 0, 139, 0, 123, 0, 124, 0, 140, 0, 124, 0, 141, 0, 140, 0, 124, 0, 125, 0, 141, 0, 125, 0, 142, 0, 141, 0, 125, 0, 126, 0, 142, 0, 126, 0, 143, 0, 142, 0, 126, 0, 127, 0, 143, 0, 127, 0, 144, 0, 143, 0, 127, 0, 128, 0, 144, 0, 128, 0, 145, 0, 144, 0, 128, 0, 129, 0, 145, 0, 129, 0, 146, 0, 145, 0, 129, 0, 130, 0, 146, 0, 130, 0, 147, 0, 146, 0, 130, 0, 131, 0, 147, 0, 131, 0, 148, 0, 147, 0, 131, 0, 132, 0, 148, 0, 132, 0, 149, 0, 148, 0, 132, 0, 133, 0, 149, 0, 133, 0, 150, 0, 149, 0, 133, 0, 134, 0, 150, 0, 134, 0, 151, 0, 150, 0, 134, 0, 135, 0, 151, 0, 135, 0, 152, 0, 151, 0, 136, 0, 137, 0, 153, 0, 137, 0, 154, 0, 153, 0, 137, 0, 138, 0, 154, 0, 138, 0, 155, 0, 154, 0, 138, 0, 139, 0, 155, 0, 139, 0, 156, 0, 155, 0, 139, 0, 140, 0, 156, 0, 140, 0, 157, 0, 156, 0, 140, 0, 141, 0, 157, 0, 141, 0, 158, 0, 157, 0, 141, 0, 142, 0, 158, 0, 142, 0, 159, 0, 158, 0, 142, 0, 143, 0, 159, 0, 143, 0, 160, 0, 159, 0, 143, 0, 144, 0, 160, 0, 144, 0, 161, 0, 160, 0, 144, 0, 145, 0, 161, 0, 145, 0, 162, 0, 161, 0, 145, 0, 146, 0, 162, 0, 146, 0, 163, 0, 162, 0, 146, 0, 147, 0, 163, 0, 147, 0, 164, 0, 163, 0, 147, 0, 148, 0, 164, 0, 148, 0, 165, 0, 164, 0, 148, 0, 149, 0, 165, 0, 149, 0, 166, 0, 165, 0, 149, 0, 150, 0, 166, 0, 150, 0, 167, 0, 166, 0, 150, 0, 151, 0, 167, 0, 151, 0, 168, 0, 167, 0, 151, 0, 152, 0, 168, 0, 152, 0, 169, 0, 168, 0), +"material": SubResource("StandardMaterial3D_gyt54"), +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 63, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 130, 90, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 127, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 124, 165, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 191, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 129, 218, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 62, 20, 140, 190, 214, 255, 255, 189, 210, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 62, 190, 149, 128, 212, 255, 255, 255, 223, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 62, 42, 157, 190, 214, 255, 255, 64, 237, 68, 29, 175, 62, 178, 143, 112, 63, 139, 41, 193, 35, 39, 162, 215, 221, 255, 255, 255, 255, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 190, 64, 169, 211, 226, 0, 0, 64, 237, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 190, 125, 171, 63, 234, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 190, 64, 169, 233, 243, 0, 0, 189, 210, 139, 41, 65, 36, 178, 143, 112, 63, 68, 29, 175, 190, 39, 162, 255, 255, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 190, 190, 86, 233, 243, 125, 37, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 190, 128, 84, 63, 234, 255, 63, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 190, 190, 86, 211, 226, 130, 90, 255, 191, 68, 29, 175, 190, 178, 143, 112, 63, 39, 223, 144, 164, 215, 93, 215, 221, 255, 127, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 62, 212, 98, 190, 214, 124, 165, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 62, 64, 106, 128, 212, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 62, 234, 115, 190, 214, 129, 218, 255, 191, 139, 41, 193, 164, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 0, 0, 0, 0, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 63, 154, 147, 14, 189, 255, 255, 189, 210, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 62, 186, 162, 136, 186, 255, 255, 255, 223, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 62, 84, 175, 14, 189, 255, 255, 64, 237, 187, 141, 36, 63, 125, 27, 68, 63, 95, 131, 53, 36, 101, 186, 152, 197, 255, 255, 255, 255, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 190, 240, 194, 169, 208, 0, 0, 64, 237, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 190, 117, 197, 67, 221, 0, 0, 255, 223, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 191, 240, 194, 99, 236, 0, 0, 189, 210, 95, 131, 181, 36, 125, 27, 68, 63, 187, 141, 36, 191, 101, 186, 255, 255, 0, 0, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 191, 14, 61, 99, 236, 125, 37, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 190, 137, 58, 67, 221, 255, 63, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 190, 14, 61, 169, 208, 130, 90, 255, 191, 187, 141, 36, 191, 125, 27, 68, 63, 134, 34, 8, 165, 153, 69, 152, 197, 255, 127, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 62, 170, 80, 14, 189, 124, 165, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 62, 68, 93, 136, 186, 255, 191, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 63, 100, 108, 14, 189, 129, 218, 255, 191, 95, 131, 53, 165, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 0, 0, 0, 0, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 63, 255, 153, 57, 167, 255, 255, 189, 210, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 63, 113, 173, 26, 165, 255, 255, 255, 223, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 62, 196, 190, 57, 167, 255, 255, 64, 237, 216, 179, 93, 63, 255, 255, 255, 62, 81, 141, 116, 36, 36, 209, 217, 174, 255, 255, 255, 255, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 190, 196, 216, 57, 193, 0, 0, 64, 237, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 191, 227, 218, 140, 210, 0, 0, 255, 223, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 191, 196, 216, 254, 229, 0, 0, 189, 210, 81, 141, 244, 36, 255, 255, 255, 62, 216, 179, 93, 191, 37, 209, 255, 255, 0, 0, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 191, 57, 39, 254, 229, 125, 37, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 191, 27, 37, 140, 210, 255, 63, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 190, 57, 39, 57, 193, 130, 90, 255, 191, 216, 179, 93, 191, 255, 255, 255, 62, 252, 105, 55, 165, 217, 46, 217, 174, 255, 127, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 62, 58, 65, 57, 167, 124, 165, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 63, 141, 82, 26, 165, 255, 191, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 63, 255, 101, 57, 167, 129, 218, 255, 191, 81, 141, 116, 165, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 63, 7, 161, 55, 143, 255, 255, 189, 210, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 63, 230, 184, 48, 142, 255, 255, 255, 223, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 62, 190, 207, 55, 143, 255, 255, 64, 237, 92, 28, 124, 63, 211, 208, 49, 62, 17, 12, 139, 36, 207, 236, 47, 147, 255, 255, 255, 255, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 190, 198, 240, 63, 176, 0, 0, 64, 237, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 191, 206, 241, 23, 199, 0, 0, 255, 223, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 191, 198, 240, 246, 222, 0, 0, 189, 210, 17, 12, 11, 37, 211, 208, 49, 62, 92, 28, 124, 191, 207, 236, 255, 255, 0, 0, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 191, 55, 15, 246, 222, 125, 37, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 191, 47, 14, 23, 199, 255, 63, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 190, 55, 15, 63, 176, 130, 90, 255, 191, 92, 28, 124, 191, 211, 208, 49, 62, 25, 146, 80, 165, 46, 19, 46, 147, 255, 127, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 62, 63, 48, 55, 143, 124, 165, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 63, 24, 71, 48, 142, 255, 191, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 63, 247, 94, 55, 143, 129, 218, 255, 191, 17, 12, 139, 165, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 0, 0, 0, 0, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 63, 7, 161, 199, 112, 255, 255, 189, 210, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 63, 230, 184, 206, 113, 255, 255, 255, 223, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 62, 190, 207, 199, 112, 255, 255, 64, 237, 92, 28, 124, 63, 217, 208, 49, 190, 17, 12, 139, 36, 207, 236, 207, 108, 255, 255, 255, 255, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 190, 198, 240, 191, 79, 0, 0, 64, 237, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 191, 206, 241, 231, 56, 0, 0, 255, 223, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 191, 198, 240, 8, 33, 0, 0, 189, 210, 17, 12, 11, 37, 217, 208, 49, 190, 92, 28, 124, 191, 207, 236, 0, 0, 0, 0, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 191, 55, 15, 8, 33, 125, 37, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 191, 47, 14, 231, 56, 255, 63, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 190, 55, 15, 191, 79, 130, 90, 255, 191, 92, 28, 124, 191, 217, 208, 49, 190, 25, 146, 80, 165, 46, 19, 207, 108, 255, 127, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 62, 63, 48, 199, 112, 124, 165, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 63, 24, 71, 206, 113, 255, 191, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 63, 247, 94, 199, 112, 129, 218, 255, 191, 17, 12, 139, 165, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 0, 0, 0, 0, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 63, 255, 153, 197, 88, 255, 255, 189, 210, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 63, 113, 173, 228, 90, 255, 255, 255, 223, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 62, 196, 190, 197, 88, 255, 255, 64, 237, 215, 179, 93, 63, 1, 0, 0, 191, 80, 141, 116, 36, 37, 209, 37, 81, 255, 255, 255, 255, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 190, 196, 216, 197, 62, 0, 0, 64, 237, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 191, 227, 218, 114, 45, 0, 0, 255, 223, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 191, 196, 216, 0, 26, 0, 0, 189, 210, 80, 141, 244, 36, 1, 0, 0, 191, 215, 179, 93, 191, 37, 209, 0, 0, 0, 0, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 191, 57, 39, 0, 26, 125, 37, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 191, 27, 37, 114, 45, 255, 63, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 190, 57, 39, 197, 62, 130, 90, 255, 191, 215, 179, 93, 191, 1, 0, 0, 191, 251, 105, 55, 165, 217, 46, 37, 81, 255, 127, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 62, 58, 65, 197, 88, 124, 165, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 63, 141, 82, 228, 90, 255, 191, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 63, 255, 101, 197, 88, 129, 218, 255, 191, 80, 141, 116, 165, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 0, 0, 0, 0, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 63, 154, 147, 240, 66, 255, 255, 189, 210, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 62, 186, 162, 118, 69, 255, 255, 255, 223, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 62, 84, 175, 240, 66, 255, 255, 64, 237, 186, 141, 36, 63, 126, 27, 68, 191, 93, 131, 53, 36, 101, 186, 101, 58, 255, 255, 255, 255, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 190, 240, 194, 84, 47, 0, 0, 64, 237, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 190, 117, 197, 187, 34, 0, 0, 255, 223, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 191, 240, 194, 154, 19, 0, 0, 189, 210, 93, 131, 181, 36, 126, 27, 68, 191, 186, 141, 36, 191, 101, 186, 0, 0, 0, 0, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 191, 14, 61, 154, 19, 125, 37, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 190, 137, 58, 187, 34, 255, 63, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 190, 14, 61, 84, 47, 130, 90, 255, 191, 186, 141, 36, 191, 126, 27, 68, 191, 133, 34, 8, 165, 153, 69, 102, 58, 255, 127, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 62, 170, 80, 240, 66, 124, 165, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 62, 68, 93, 118, 69, 255, 191, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 63, 100, 108, 240, 66, 129, 218, 255, 191, 93, 131, 53, 165, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 62, 20, 140, 63, 41, 255, 255, 189, 210, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 62, 190, 149, 126, 43, 255, 255, 255, 223, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 62, 42, 157, 63, 41, 255, 255, 64, 237, 67, 29, 175, 62, 178, 143, 112, 191, 137, 41, 193, 35, 39, 162, 38, 34, 255, 255, 255, 255, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 190, 64, 169, 42, 29, 0, 0, 64, 237, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 190, 126, 171, 191, 21, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 190, 64, 169, 20, 12, 0, 0, 189, 210, 137, 41, 65, 36, 178, 143, 112, 191, 67, 29, 175, 190, 39, 162, 0, 0, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 190, 189, 86, 20, 12, 125, 37, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 190, 128, 84, 191, 21, 255, 63, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 190, 190, 86, 42, 29, 130, 90, 255, 191, 67, 29, 175, 190, 178, 143, 112, 191, 38, 223, 144, 164, 215, 93, 38, 34, 255, 127, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 62, 212, 98, 63, 41, 124, 165, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 62, 64, 106, 126, 43, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 62, 234, 115, 63, 41, 129, 218, 255, 191, 137, 41, 193, 164, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 255, 255, 189, 210, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 255, 255, 223, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 255, 255, 64, 237, 50, 49, 13, 37, 0, 0, 128, 191, 117, 190, 27, 10, 0, 128, 0, 0, 255, 255, 255, 255, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 0, 0, 64, 237, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 0, 0, 255, 223, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 0, 0, 189, 210, 117, 190, 155, 10, 0, 0, 128, 191, 50, 49, 13, 165, 0, 128, 0, 0, 0, 0, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 125, 37, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 255, 63, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 130, 90, 255, 191, 50, 49, 13, 165, 0, 0, 128, 191, 174, 157, 233, 138, 0, 128, 0, 0, 255, 127, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 124, 165, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 191, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 129, 218, 255, 191, 117, 190, 27, 139, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191) +}] +script = ExtResource("2_mt3ku") +segments = 16 +rings = 8 +radius = 1.0 +material = SubResource("StandardMaterial3D_gyt54") + +[sub_resource type="Gradient" id="Gradient_yy78k"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0, 0.5, 1) +colors = PackedColorArray(0, 0, 0, 1, 0.257408, 0.0935, 0.85, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture1D" id="GradientTexture1D_2haui"] +gradient = SubResource("Gradient_yy78k") + +[sub_resource type="Curve" id="Curve_jkehe"] +_data = [Vector2(0, 0), 0.0, 5.47368, 0, 0, Vector2(0.495192, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -5.38946, 0.0, 0, 0] +point_count = 3 + +[sub_resource type="CurveTexture" id="CurveTexture_0kndu"] +curve = SubResource("Curve_jkehe") + +[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_la0c6"] +direction = Vector3(0, -1, 0) +spread = 0.0 +gravity = Vector3(0, 0, 0) +initial_velocity_min = 1.0 +initial_velocity_max = 1.0 +scale_max = 2.0 +scale_curve = SubResource("CurveTexture_0kndu") +color = Color(0.48, 0.48, 0.48, 1) +color_ramp = SubResource("GradientTexture1D_2haui") +attractor_interaction_enabled = false + +[sub_resource type="Gradient" id="Gradient_5hsw6"] +offsets = PackedFloat32Array(0.8, 0.85, 1) +colors = PackedColorArray(0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_knj8r"] +gradient = SubResource("Gradient_5hsw6") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ehh2v"] +blend_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +vertex_color_use_as_albedo = true +albedo_texture = SubResource("GradientTexture2D_knj8r") + +[sub_resource type="QuadMesh" id="QuadMesh_uexxv"] +material = SubResource("StandardMaterial3D_ehh2v") +orientation = 1 + +[sub_resource type="Gradient" id="Gradient_dxffg"] +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_0b7dv"] +gradient = SubResource("Gradient_dxffg") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) +metadata/_snap_enabled = true + +[sub_resource type="Animation" id="Animation_km8h3"] +resource_name = "birth" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [1.0, 0.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} + +[sub_resource type="Animation" id="Animation_psafd"] +resource_name = "death" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [true, false] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_g1rid"] +_data = { +"birth": SubResource("Animation_km8h3"), +"death": SubResource("Animation_psafd") +} + +[node name="Mass Effect" type="Node3D"] +script = ExtResource("1_1iicr") +bonus_mass = 7.0 +duration = 10.0 + +[node name="Aura" type="MeshInstance3D" parent="."] +transform = Transform3D(0.005, 0, 0, 0, 0.005, 0, 0, 0, 0.005, 0, 0.25, 0) +transparency = 1.0 +mesh = SubResource("ArrayMesh_u237y") +skeleton = NodePath("../..") + +[node name="GPUParticles3D" type="GPUParticles3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +emitting = false +amount = 128 +lifetime = 2.0 +local_coords = true +process_material = SubResource("ParticleProcessMaterial_la0c6") +draw_pass_1 = SubResource("QuadMesh_uexxv") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +autoplay = true +script = ExtResource("3_rqiuv") +sounds = Array[AudioStream]([ExtResource("4_6nsiq"), ExtResource("5_ogrob")]) + +[node name="Decal" type="Decal" parent="."] +transform = Transform3D(0.005, 0, 0, 0, 0.005, 0, 0, 0, 0.005, 0, -0.375, 0) +size = Vector3(2, 1, 2) +texture_emission = SubResource("GradientTexture2D_0b7dv") +modulate = Color(1, 0, 0.301961, 1) +cull_mask = 1048573 + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "birth" +libraries = { +"": SubResource("AnimationLibrary_g1rid") +} diff --git a/examples/forest-brawl/scenes/effects/repulse-effect.tscn b/examples/forest-brawl/scenes/effects/repulse-effect.tscn new file mode 100644 index 0000000..fc451db --- /dev/null +++ b/examples/forest-brawl/scenes/effects/repulse-effect.tscn @@ -0,0 +1,245 @@ +[gd_scene load_steps=24 format=3 uid="uid://jskoprs7vkq0"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/effects/repulse-effect.gd" id="1_47iru"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/aura-sphere-mesh.gd" id="2_7rgpm"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/play-random-3d.gd" id="3_pwfeh"] +[ext_resource type="AudioStream" uid="uid://cpqwch1ruf417" path="res://examples/forest-brawl/sounds/repulse1.wav" id="4_rqncr"] +[ext_resource type="AudioStream" uid="uid://djx8bf0n5hpjd" path="res://examples/forest-brawl/sounds/repulse2.wav" id="5_4vybw"] +[ext_resource type="AudioStream" uid="uid://b1l44piqung8p" path="res://examples/forest-brawl/sounds/repulse3.wav" id="6_6gndw"] + +[sub_resource type="Gradient" id="Gradient_k0qrh"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0.764706, 1, 1) +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1, 0.0705882, 0.0705882, 0.0705882, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_lut6u"] +gradient = SubResource("Gradient_k0qrh") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gyt54"] +blend_mode = 1 +cull_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +albedo_color = Color(1, 0.4, 0, 1) +albedo_texture = SubResource("GradientTexture2D_lut6u") +disable_receive_shadows = true +billboard_mode = 1 +billboard_keep_scale = true +grow_amount = 7.529 +proximity_fade_enabled = true +proximity_fade_distance = 0.25 +distance_fade_min_distance = 2.0 +distance_fade_max_distance = 16.0 + +[sub_resource type="ArrayMesh" id="ArrayMesh_c08x4"] +_surfaces = [{ +"aabb": AABB(-3.99547, -4, -3.99547, 7.99094, 8.00001, 7.99094), +"attribute_data": PackedByteArray(0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 160, 107, 127, 63, 78, 49, 1, 63, 160, 107, 127, 63, 171, 95, 2, 63, 160, 107, 127, 63, 45, 136, 3, 63, 160, 107, 127, 63, 251, 167, 4, 63, 160, 107, 127, 63, 78, 188, 5, 63, 160, 107, 127, 63, 125, 194, 6, 63, 160, 107, 127, 63, 2, 184, 7, 63, 160, 107, 127, 63, 126, 154, 8, 63, 160, 107, 127, 63, 197, 103, 9, 63, 160, 107, 127, 63, 220, 29, 10, 63, 160, 107, 127, 63, 1, 187, 10, 63, 160, 107, 127, 63, 178, 61, 11, 63, 160, 107, 127, 63, 173, 164, 11, 63, 160, 107, 127, 63, 242, 238, 11, 63, 160, 107, 127, 63, 204, 27, 12, 63, 160, 107, 127, 63, 204, 42, 12, 63, 160, 107, 127, 63, 204, 27, 12, 63, 160, 107, 127, 63, 242, 238, 11, 63, 160, 107, 127, 63, 173, 164, 11, 63, 160, 107, 127, 63, 178, 61, 11, 63, 160, 107, 127, 63, 1, 187, 10, 63, 160, 107, 127, 63, 220, 29, 10, 63, 160, 107, 127, 63, 197, 103, 9, 63, 160, 107, 127, 63, 126, 154, 8, 63, 160, 107, 127, 63, 2, 184, 7, 63, 160, 107, 127, 63, 125, 194, 6, 63, 160, 107, 127, 63, 78, 188, 5, 63, 160, 107, 127, 63, 251, 167, 4, 63, 160, 107, 127, 63, 45, 136, 3, 63, 160, 107, 127, 63, 171, 95, 2, 63, 160, 107, 127, 63, 78, 49, 1, 63, 160, 107, 127, 63, 0, 0, 0, 63, 160, 107, 127, 63, 101, 157, 253, 62, 160, 107, 127, 63, 171, 64, 251, 62, 160, 107, 127, 63, 165, 239, 248, 62, 160, 107, 127, 63, 10, 176, 246, 62, 160, 107, 127, 63, 100, 135, 244, 62, 160, 107, 127, 63, 6, 123, 242, 62, 160, 107, 127, 63, 253, 143, 240, 62, 160, 107, 127, 63, 3, 203, 238, 62, 160, 107, 127, 63, 118, 48, 237, 62, 160, 107, 127, 63, 72, 196, 235, 62, 160, 107, 127, 63, 253, 137, 234, 62, 160, 107, 127, 63, 155, 132, 233, 62, 160, 107, 127, 63, 167, 182, 232, 62, 160, 107, 127, 63, 27, 34, 232, 62, 160, 107, 127, 63, 103, 200, 231, 62, 160, 107, 127, 63, 104, 170, 231, 62, 160, 107, 127, 63, 103, 200, 231, 62, 160, 107, 127, 63, 27, 34, 232, 62, 160, 107, 127, 63, 167, 182, 232, 62, 160, 107, 127, 63, 155, 132, 233, 62, 160, 107, 127, 63, 253, 137, 234, 62, 160, 107, 127, 63, 72, 196, 235, 62, 160, 107, 127, 63, 118, 48, 237, 62, 160, 107, 127, 63, 3, 203, 238, 62, 160, 107, 127, 63, 253, 143, 240, 62, 160, 107, 127, 63, 6, 123, 242, 62, 160, 107, 127, 63, 100, 135, 244, 62, 160, 107, 127, 63, 10, 176, 246, 62, 160, 107, 127, 63, 165, 239, 248, 62, 160, 107, 127, 63, 171, 64, 251, 62, 160, 107, 127, 63, 101, 157, 253, 62, 160, 107, 127, 63, 0, 0, 0, 63, 160, 107, 127, 63, 0, 0, 0, 63, 215, 175, 125, 63, 216, 95, 2, 63, 215, 175, 125, 63, 213, 185, 4, 63, 215, 175, 125, 63, 43, 8, 7, 63, 215, 175, 125, 63, 43, 69, 9, 63, 215, 175, 125, 63, 80, 107, 11, 63, 215, 175, 125, 63, 78, 117, 13, 63, 215, 175, 125, 63, 30, 94, 15, 63, 215, 175, 125, 63, 10, 33, 17, 63, 215, 175, 125, 63, 188, 185, 18, 63, 215, 175, 125, 63, 67, 36, 20, 63, 215, 175, 125, 63, 34, 93, 21, 63, 215, 175, 125, 63, 85, 97, 22, 63, 215, 175, 125, 63, 91, 46, 23, 63, 215, 175, 125, 63, 58, 194, 23, 63, 215, 175, 125, 63, 134, 27, 24, 63, 215, 175, 125, 63, 98, 57, 24, 63, 215, 175, 125, 63, 134, 27, 24, 63, 215, 175, 125, 63, 58, 194, 23, 63, 215, 175, 125, 63, 91, 46, 23, 63, 215, 175, 125, 63, 85, 97, 22, 63, 215, 175, 125, 63, 34, 93, 21, 63, 215, 175, 125, 63, 67, 36, 20, 63, 215, 175, 125, 63, 188, 185, 18, 63, 215, 175, 125, 63, 10, 33, 17, 63, 215, 175, 125, 63, 30, 94, 15, 63, 215, 175, 125, 63, 78, 117, 13, 63, 215, 175, 125, 63, 80, 107, 11, 63, 215, 175, 125, 63, 43, 69, 9, 63, 215, 175, 125, 63, 43, 8, 7, 63, 215, 175, 125, 63, 213, 185, 4, 63, 215, 175, 125, 63, 216, 95, 2, 63, 215, 175, 125, 63, 0, 0, 0, 63, 215, 175, 125, 63, 81, 64, 251, 62, 215, 175, 125, 63, 87, 140, 246, 62, 215, 175, 125, 63, 171, 239, 241, 62, 215, 175, 125, 63, 170, 117, 237, 62, 215, 175, 125, 63, 96, 41, 233, 62, 215, 175, 125, 63, 100, 21, 229, 62, 215, 175, 125, 63, 196, 67, 225, 62, 215, 175, 125, 63, 235, 189, 221, 62, 215, 175, 125, 63, 136, 140, 218, 62, 215, 175, 125, 63, 122, 183, 215, 62, 215, 175, 125, 63, 188, 69, 213, 62, 215, 175, 125, 63, 86, 61, 211, 62, 215, 175, 125, 63, 74, 163, 209, 62, 215, 175, 125, 63, 140, 123, 208, 62, 215, 175, 125, 63, 244, 200, 207, 62, 215, 175, 125, 63, 59, 141, 207, 62, 215, 175, 125, 63, 244, 200, 207, 62, 215, 175, 125, 63, 140, 123, 208, 62, 215, 175, 125, 63, 74, 163, 209, 62, 215, 175, 125, 63, 86, 61, 211, 62, 215, 175, 125, 63, 188, 69, 213, 62, 215, 175, 125, 63, 122, 183, 215, 62, 215, 175, 125, 63, 136, 140, 218, 62, 215, 175, 125, 63, 235, 189, 221, 62, 215, 175, 125, 63, 196, 67, 225, 62, 215, 175, 125, 63, 100, 21, 229, 62, 215, 175, 125, 63, 96, 41, 233, 62, 215, 175, 125, 63, 170, 117, 237, 62, 215, 175, 125, 63, 171, 239, 241, 62, 215, 175, 125, 63, 87, 140, 246, 62, 215, 175, 125, 63, 81, 64, 251, 62, 215, 175, 125, 63, 0, 0, 0, 63, 215, 175, 125, 63, 0, 0, 0, 63, 170, 208, 122, 63, 224, 136, 3, 63, 170, 208, 122, 63, 10, 9, 7, 63, 170, 208, 122, 63, 218, 119, 10, 63, 170, 208, 122, 63, 221, 204, 13, 63, 170, 208, 122, 63, 217, 255, 16, 63, 170, 208, 122, 63, 236, 8, 20, 63, 170, 208, 122, 63, 154, 224, 22, 63, 170, 208, 122, 63, 224, 127, 25, 63, 170, 208, 122, 63, 74, 224, 27, 63, 170, 208, 122, 63, 249, 251, 29, 63, 170, 208, 122, 63, 187, 205, 31, 63, 170, 208, 122, 63, 21, 81, 33, 63, 170, 208, 122, 63, 75, 130, 34, 63, 170, 208, 122, 63, 109, 94, 35, 63, 170, 208, 122, 63, 92, 227, 35, 63, 170, 208, 122, 63, 208, 15, 36, 63, 170, 208, 122, 63, 92, 227, 35, 63, 170, 208, 122, 63, 109, 94, 35, 63, 170, 208, 122, 63, 75, 130, 34, 63, 170, 208, 122, 63, 21, 81, 33, 63, 170, 208, 122, 63, 187, 205, 31, 63, 170, 208, 122, 63, 249, 251, 29, 63, 170, 208, 122, 63, 74, 224, 27, 63, 170, 208, 122, 63, 224, 127, 25, 63, 170, 208, 122, 63, 154, 224, 22, 63, 170, 208, 122, 63, 236, 8, 20, 63, 170, 208, 122, 63, 217, 255, 16, 63, 170, 208, 122, 63, 221, 204, 13, 63, 170, 208, 122, 63, 218, 119, 10, 63, 170, 208, 122, 63, 10, 9, 7, 63, 170, 208, 122, 63, 224, 136, 3, 63, 170, 208, 122, 63, 0, 0, 0, 63, 170, 208, 122, 63, 64, 238, 248, 62, 170, 208, 122, 63, 237, 237, 241, 62, 170, 208, 122, 63, 75, 16, 235, 62, 170, 208, 122, 63, 71, 102, 228, 62, 170, 208, 122, 63, 79, 0, 222, 62, 170, 208, 122, 63, 41, 238, 215, 62, 170, 208, 122, 63, 205, 62, 210, 62, 170, 208, 122, 63, 63, 0, 205, 62, 170, 208, 122, 63, 109, 63, 200, 62, 170, 208, 122, 63, 15, 8, 196, 62, 170, 208, 122, 63, 137, 100, 192, 62, 170, 208, 122, 63, 214, 93, 189, 62, 170, 208, 122, 63, 106, 251, 186, 62, 170, 208, 122, 63, 38, 67, 185, 62, 170, 208, 122, 63, 72, 57, 184, 62, 170, 208, 122, 63, 96, 224, 183, 62, 170, 208, 122, 63, 72, 57, 184, 62, 170, 208, 122, 63, 38, 67, 185, 62, 170, 208, 122, 63, 106, 251, 186, 62, 170, 208, 122, 63, 214, 93, 189, 62, 170, 208, 122, 63, 137, 100, 192, 62, 170, 208, 122, 63, 15, 8, 196, 62, 170, 208, 122, 63, 109, 63, 200, 62, 170, 208, 122, 63, 63, 0, 205, 62, 170, 208, 122, 63, 205, 62, 210, 62, 170, 208, 122, 63, 41, 238, 215, 62, 170, 208, 122, 63, 79, 0, 222, 62, 170, 208, 122, 63, 71, 102, 228, 62, 170, 208, 122, 63, 75, 16, 235, 62, 170, 208, 122, 63, 237, 237, 241, 62, 170, 208, 122, 63, 64, 238, 248, 62, 170, 208, 122, 63, 0, 0, 0, 63, 170, 208, 122, 63, 0, 0, 0, 63, 194, 212, 118, 63, 183, 169, 4, 63, 194, 212, 118, 63, 239, 71, 9, 63, 194, 212, 118, 63, 69, 207, 13, 63, 194, 212, 118, 63, 144, 52, 18, 63, 194, 212, 118, 63, 248, 108, 22, 63, 194, 212, 118, 63, 22, 110, 26, 63, 194, 212, 118, 63, 11, 46, 30, 63, 194, 212, 118, 63, 152, 163, 33, 63, 194, 212, 118, 63, 54, 198, 36, 63, 194, 212, 118, 63, 42, 142, 39, 63, 194, 212, 118, 63, 153, 244, 41, 63, 194, 212, 118, 63, 152, 243, 43, 63, 194, 212, 118, 63, 58, 134, 45, 63, 194, 212, 118, 63, 160, 168, 46, 63, 194, 212, 118, 63, 254, 87, 47, 63, 194, 212, 118, 63, 163, 146, 47, 63, 194, 212, 118, 63, 254, 87, 47, 63, 194, 212, 118, 63, 160, 168, 46, 63, 194, 212, 118, 63, 58, 134, 45, 63, 194, 212, 118, 63, 152, 243, 43, 63, 194, 212, 118, 63, 153, 244, 41, 63, 194, 212, 118, 63, 42, 142, 39, 63, 194, 212, 118, 63, 54, 198, 36, 63, 194, 212, 118, 63, 152, 163, 33, 63, 194, 212, 118, 63, 11, 46, 30, 63, 194, 212, 118, 63, 22, 110, 26, 63, 194, 212, 118, 63, 248, 108, 22, 63, 194, 212, 118, 63, 144, 52, 18, 63, 194, 212, 118, 63, 69, 207, 13, 63, 194, 212, 118, 63, 239, 71, 9, 63, 194, 212, 118, 63, 183, 169, 4, 63, 194, 212, 118, 63, 0, 0, 0, 63, 194, 212, 118, 63, 146, 172, 246, 62, 194, 212, 118, 63, 34, 112, 237, 62, 194, 212, 118, 63, 117, 97, 228, 62, 194, 212, 118, 63, 224, 150, 219, 62, 194, 212, 118, 63, 16, 38, 211, 62, 194, 212, 118, 63, 211, 35, 203, 62, 194, 212, 118, 63, 233, 163, 195, 62, 194, 212, 118, 63, 207, 184, 188, 62, 194, 212, 118, 63, 147, 115, 182, 62, 194, 212, 118, 63, 172, 227, 176, 62, 194, 212, 118, 63, 206, 22, 172, 62, 194, 212, 118, 63, 209, 24, 168, 62, 194, 212, 118, 63, 140, 243, 164, 62, 194, 212, 118, 63, 192, 174, 162, 62, 194, 212, 118, 63, 4, 80, 161, 62, 194, 212, 118, 63, 186, 218, 160, 62, 194, 212, 118, 63, 4, 80, 161, 62, 194, 212, 118, 63, 192, 174, 162, 62, 194, 212, 118, 63, 140, 243, 164, 62, 194, 212, 118, 63, 209, 24, 168, 62, 194, 212, 118, 63, 206, 22, 172, 62, 194, 212, 118, 63, 172, 227, 176, 62, 194, 212, 118, 63, 147, 115, 182, 62, 194, 212, 118, 63, 207, 184, 188, 62, 194, 212, 118, 63, 233, 163, 195, 62, 194, 212, 118, 63, 211, 35, 203, 62, 194, 212, 118, 63, 16, 38, 211, 62, 194, 212, 118, 63, 224, 150, 219, 62, 194, 212, 118, 63, 117, 97, 228, 62, 194, 212, 118, 63, 34, 112, 237, 62, 194, 212, 118, 63, 146, 172, 246, 62, 194, 212, 118, 63, 0, 0, 0, 63, 194, 212, 118, 63, 0, 0, 0, 63, 92, 197, 113, 63, 190, 191, 5, 63, 92, 197, 113, 63, 80, 113, 11, 63, 92, 197, 113, 63, 172, 6, 17, 63, 92, 197, 113, 63, 14, 114, 22, 63, 92, 197, 113, 63, 26, 166, 27, 63, 92, 197, 113, 63, 251, 149, 32, 63, 92, 197, 113, 63, 133, 53, 37, 63, 92, 197, 113, 63, 84, 121, 41, 63, 92, 197, 113, 63, 226, 86, 45, 63, 92, 197, 113, 63, 168, 196, 48, 63, 92, 197, 113, 63, 50, 186, 51, 63, 92, 197, 113, 63, 52, 48, 54, 63, 92, 197, 113, 63, 158, 32, 56, 63, 92, 197, 113, 63, 168, 134, 57, 63, 92, 197, 113, 63, 222, 94, 58, 63, 92, 197, 113, 63, 43, 167, 58, 63, 92, 197, 113, 63, 222, 94, 58, 63, 92, 197, 113, 63, 168, 134, 57, 63, 92, 197, 113, 63, 158, 32, 56, 63, 92, 197, 113, 63, 52, 48, 54, 63, 92, 197, 113, 63, 50, 186, 51, 63, 92, 197, 113, 63, 168, 196, 48, 63, 92, 197, 113, 63, 226, 86, 45, 63, 92, 197, 113, 63, 84, 121, 41, 63, 92, 197, 113, 63, 133, 53, 37, 63, 92, 197, 113, 63, 251, 149, 32, 63, 92, 197, 113, 63, 26, 166, 27, 63, 92, 197, 113, 63, 14, 114, 22, 63, 92, 197, 113, 63, 172, 6, 17, 63, 92, 197, 113, 63, 80, 113, 11, 63, 92, 197, 113, 63, 190, 191, 5, 63, 92, 197, 113, 63, 0, 0, 0, 63, 92, 197, 113, 63, 131, 128, 244, 62, 92, 197, 113, 63, 95, 29, 233, 62, 92, 197, 113, 63, 168, 242, 221, 62, 92, 197, 113, 63, 228, 27, 211, 62, 92, 197, 113, 63, 204, 179, 200, 62, 92, 197, 113, 63, 10, 212, 190, 62, 92, 197, 113, 63, 246, 148, 181, 62, 92, 197, 113, 63, 89, 13, 173, 62, 92, 197, 113, 63, 61, 82, 165, 62, 92, 197, 113, 63, 176, 118, 158, 62, 92, 197, 113, 63, 156, 139, 152, 62, 92, 197, 113, 63, 151, 159, 147, 62, 92, 197, 113, 63, 195, 190, 143, 62, 92, 197, 113, 63, 177, 242, 140, 62, 92, 197, 113, 63, 69, 66, 139, 62, 92, 197, 113, 63, 170, 177, 138, 62, 92, 197, 113, 63, 69, 66, 139, 62, 92, 197, 113, 63, 177, 242, 140, 62, 92, 197, 113, 63, 195, 190, 143, 62, 92, 197, 113, 63, 151, 159, 147, 62, 92, 197, 113, 63, 156, 139, 152, 62, 92, 197, 113, 63, 176, 118, 158, 62, 92, 197, 113, 63, 61, 82, 165, 62, 92, 197, 113, 63, 89, 13, 173, 62, 92, 197, 113, 63, 246, 148, 181, 62, 92, 197, 113, 63, 10, 212, 190, 62, 92, 197, 113, 63, 204, 179, 200, 62, 92, 197, 113, 63, 228, 27, 211, 62, 92, 197, 113, 63, 168, 242, 221, 62, 92, 197, 113, 63, 95, 29, 233, 62, 92, 197, 113, 63, 131, 128, 244, 62, 92, 197, 113, 63, 0, 0, 0, 63, 92, 197, 113, 63, 0, 0, 0, 63, 50, 174, 107, 63, 114, 200, 6, 63, 50, 174, 107, 63, 42, 128, 13, 63, 50, 174, 107, 63, 154, 22, 20, 63, 50, 174, 107, 63, 131, 123, 26, 63, 50, 174, 107, 63, 34, 159, 32, 63, 50, 174, 107, 63, 84, 114, 38, 63, 50, 174, 107, 63, 188, 230, 43, 63, 50, 174, 107, 63, 232, 238, 48, 63, 50, 174, 107, 63, 112, 126, 53, 63, 50, 174, 107, 63, 21, 138, 57, 63, 50, 174, 107, 63, 222, 7, 61, 63, 50, 174, 107, 63, 48, 239, 63, 63, 50, 174, 107, 63, 227, 56, 66, 63, 50, 174, 107, 63, 81, 223, 67, 63, 50, 174, 107, 63, 106, 222, 68, 63, 50, 174, 107, 63, 184, 51, 69, 63, 50, 174, 107, 63, 106, 222, 68, 63, 50, 174, 107, 63, 81, 223, 67, 63, 50, 174, 107, 63, 227, 56, 66, 63, 50, 174, 107, 63, 48, 239, 63, 63, 50, 174, 107, 63, 222, 7, 61, 63, 50, 174, 107, 63, 21, 138, 57, 63, 50, 174, 107, 63, 112, 126, 53, 63, 50, 174, 107, 63, 232, 238, 48, 63, 50, 174, 107, 63, 188, 230, 43, 63, 50, 174, 107, 63, 84, 114, 38, 63, 50, 174, 107, 63, 34, 159, 32, 63, 50, 174, 107, 63, 131, 123, 26, 63, 50, 174, 107, 63, 154, 22, 20, 63, 50, 174, 107, 63, 42, 128, 13, 63, 50, 174, 107, 63, 114, 200, 6, 63, 50, 174, 107, 63, 0, 0, 0, 63, 50, 174, 107, 63, 29, 111, 242, 62, 50, 174, 107, 63, 171, 255, 228, 62, 50, 174, 107, 63, 204, 210, 215, 62, 50, 174, 107, 63, 250, 8, 203, 62, 50, 174, 107, 63, 188, 193, 190, 62, 50, 174, 107, 63, 89, 27, 179, 62, 50, 174, 107, 63, 137, 50, 168, 62, 50, 174, 107, 63, 49, 34, 158, 62, 50, 174, 107, 63, 33, 3, 149, 62, 50, 174, 107, 63, 214, 235, 140, 62, 50, 174, 107, 63, 67, 240, 133, 62, 50, 174, 107, 63, 159, 33, 128, 62, 50, 174, 107, 63, 116, 28, 119, 62, 50, 174, 107, 63, 188, 130, 112, 62, 50, 174, 107, 63, 90, 134, 108, 62, 50, 174, 107, 63, 32, 49, 107, 62, 50, 174, 107, 63, 90, 134, 108, 62, 50, 174, 107, 63, 188, 130, 112, 62, 50, 174, 107, 63, 116, 28, 119, 62, 50, 174, 107, 63, 159, 33, 128, 62, 50, 174, 107, 63, 67, 240, 133, 62, 50, 174, 107, 63, 214, 235, 140, 62, 50, 174, 107, 63, 33, 3, 149, 62, 50, 174, 107, 63, 49, 34, 158, 62, 50, 174, 107, 63, 137, 50, 168, 62, 50, 174, 107, 63, 89, 27, 179, 62, 50, 174, 107, 63, 188, 193, 190, 62, 50, 174, 107, 63, 250, 8, 203, 62, 50, 174, 107, 63, 204, 210, 215, 62, 50, 174, 107, 63, 171, 255, 228, 62, 50, 174, 107, 63, 29, 111, 242, 62, 50, 174, 107, 63, 0, 0, 0, 63, 50, 174, 107, 63, 0, 0, 0, 63, 99, 157, 100, 63, 107, 193, 7, 63, 99, 157, 100, 63, 184, 111, 15, 63, 99, 157, 100, 63, 245, 247, 22, 63, 99, 157, 100, 63, 146, 71, 30, 63, 99, 157, 100, 63, 137, 76, 37, 63, 99, 157, 100, 63, 138, 245, 43, 63, 99, 157, 100, 63, 42, 50, 50, 63, 99, 157, 100, 63, 10, 243, 55, 63, 99, 157, 100, 63, 248, 41, 61, 63, 99, 157, 100, 63, 28, 202, 65, 63, 99, 157, 100, 63, 13, 200, 69, 63, 99, 157, 100, 63, 243, 25, 73, 63, 99, 157, 100, 63, 160, 183, 75, 63, 99, 157, 100, 63, 160, 154, 77, 63, 99, 157, 100, 63, 76, 190, 78, 63, 99, 157, 100, 63, 214, 31, 79, 63, 99, 157, 100, 63, 76, 190, 78, 63, 99, 157, 100, 63, 160, 154, 77, 63, 99, 157, 100, 63, 160, 183, 75, 63, 99, 157, 100, 63, 243, 25, 73, 63, 99, 157, 100, 63, 13, 200, 69, 63, 99, 157, 100, 63, 28, 202, 65, 63, 99, 157, 100, 63, 248, 41, 61, 63, 99, 157, 100, 63, 10, 243, 55, 63, 99, 157, 100, 63, 42, 50, 50, 63, 99, 157, 100, 63, 138, 245, 43, 63, 99, 157, 100, 63, 137, 76, 37, 63, 99, 157, 100, 63, 146, 71, 30, 63, 99, 157, 100, 63, 245, 247, 22, 63, 99, 157, 100, 63, 184, 111, 15, 63, 99, 157, 100, 63, 107, 193, 7, 63, 99, 157, 100, 63, 0, 0, 0, 63, 99, 157, 100, 63, 42, 125, 240, 62, 99, 157, 100, 63, 145, 32, 225, 62, 99, 157, 100, 63, 22, 16, 210, 62, 99, 157, 100, 63, 219, 112, 195, 62, 99, 157, 100, 63, 238, 102, 181, 62, 99, 157, 100, 63, 236, 20, 168, 62, 99, 157, 100, 63, 172, 155, 155, 62, 99, 157, 100, 63, 237, 25, 144, 62, 99, 157, 100, 63, 15, 172, 133, 62, 99, 157, 100, 63, 144, 215, 120, 62, 99, 157, 100, 63, 204, 223, 104, 62, 99, 157, 100, 63, 52, 152, 91, 62, 99, 157, 100, 63, 128, 33, 81, 62, 99, 157, 100, 63, 130, 149, 73, 62, 99, 157, 100, 63, 208, 6, 69, 62, 99, 157, 100, 63, 170, 128, 67, 62, 99, 157, 100, 63, 208, 6, 69, 62, 99, 157, 100, 63, 130, 149, 73, 62, 99, 157, 100, 63, 128, 33, 81, 62, 99, 157, 100, 63, 52, 152, 91, 62, 99, 157, 100, 63, 204, 223, 104, 62, 99, 157, 100, 63, 144, 215, 120, 62, 99, 157, 100, 63, 15, 172, 133, 62, 99, 157, 100, 63, 237, 25, 144, 62, 99, 157, 100, 63, 172, 155, 155, 62, 99, 157, 100, 63, 236, 20, 168, 62, 99, 157, 100, 63, 238, 102, 181, 62, 99, 157, 100, 63, 219, 112, 195, 62, 99, 157, 100, 63, 22, 16, 210, 62, 99, 157, 100, 63, 145, 32, 225, 62, 99, 157, 100, 63, 42, 125, 240, 62, 99, 157, 100, 63, 0, 0, 0, 63, 99, 157, 100, 63, 0, 0, 0, 63, 81, 163, 92, 63, 106, 168, 8, 63, 81, 163, 92, 63, 123, 59, 17, 63, 81, 163, 92, 63, 17, 164, 25, 63, 81, 163, 92, 63, 111, 205, 33, 63, 81, 163, 92, 63, 119, 163, 41, 63, 81, 163, 92, 63, 214, 18, 49, 63, 81, 163, 92, 63, 58, 9, 56, 63, 81, 163, 92, 63, 118, 117, 62, 63, 81, 163, 92, 63, 180, 71, 68, 63, 81, 163, 92, 63, 158, 113, 73, 63, 81, 163, 92, 63, 116, 230, 77, 63, 81, 163, 92, 63, 60, 155, 81, 63, 81, 163, 92, 63, 210, 134, 84, 63, 81, 163, 92, 63, 4, 162, 86, 63, 81, 163, 92, 63, 160, 231, 87, 63, 81, 163, 92, 63, 130, 84, 88, 63, 81, 163, 92, 63, 160, 231, 87, 63, 81, 163, 92, 63, 4, 162, 86, 63, 81, 163, 92, 63, 210, 134, 84, 63, 81, 163, 92, 63, 60, 155, 81, 63, 81, 163, 92, 63, 116, 230, 77, 63, 81, 163, 92, 63, 158, 113, 73, 63, 81, 163, 92, 63, 180, 71, 68, 63, 81, 163, 92, 63, 118, 117, 62, 63, 81, 163, 92, 63, 58, 9, 56, 63, 81, 163, 92, 63, 214, 18, 49, 63, 81, 163, 92, 63, 119, 163, 41, 63, 81, 163, 92, 63, 111, 205, 33, 63, 81, 163, 92, 63, 17, 164, 25, 63, 81, 163, 92, 63, 123, 59, 17, 63, 81, 163, 92, 63, 106, 168, 8, 63, 81, 163, 92, 63, 0, 0, 0, 63, 81, 163, 92, 63, 44, 175, 238, 62, 81, 163, 92, 63, 9, 137, 221, 62, 81, 163, 92, 63, 223, 183, 204, 62, 81, 163, 92, 63, 34, 101, 188, 62, 81, 163, 92, 63, 18, 185, 172, 62, 81, 163, 92, 63, 83, 218, 157, 62, 81, 163, 92, 63, 141, 237, 143, 62, 81, 163, 92, 63, 21, 21, 131, 62, 81, 163, 92, 63, 46, 225, 110, 62, 81, 163, 92, 63, 138, 57, 90, 62, 81, 163, 92, 63, 48, 102, 72, 62, 81, 163, 92, 63, 16, 147, 57, 62, 81, 163, 92, 63, 182, 228, 45, 62, 81, 163, 92, 63, 240, 119, 37, 62, 81, 163, 92, 63, 128, 97, 32, 62, 81, 163, 92, 63, 246, 173, 30, 62, 81, 163, 92, 63, 128, 97, 32, 62, 81, 163, 92, 63, 240, 119, 37, 62, 81, 163, 92, 63, 182, 228, 45, 62, 81, 163, 92, 63, 16, 147, 57, 62, 81, 163, 92, 63, 48, 102, 72, 62, 81, 163, 92, 63, 138, 57, 90, 62, 81, 163, 92, 63, 46, 225, 110, 62, 81, 163, 92, 63, 21, 21, 131, 62, 81, 163, 92, 63, 141, 237, 143, 62, 81, 163, 92, 63, 83, 218, 157, 62, 81, 163, 92, 63, 18, 185, 172, 62, 81, 163, 92, 63, 34, 101, 188, 62, 81, 163, 92, 63, 223, 183, 204, 62, 81, 163, 92, 63, 9, 137, 221, 62, 81, 163, 92, 63, 44, 175, 238, 62, 81, 163, 92, 63, 0, 0, 0, 63, 81, 163, 92, 63, 0, 0, 0, 63, 122, 210, 83, 63, 86, 123, 9, 63, 122, 210, 83, 63, 76, 223, 18, 63, 122, 210, 83, 63, 186, 20, 28, 63, 122, 210, 83, 63, 237, 4, 37, 63, 122, 210, 83, 63, 220, 153, 45, 63, 122, 210, 83, 63, 94, 190, 53, 63, 122, 210, 83, 63, 95, 94, 61, 63, 122, 210, 83, 63, 20, 103, 68, 63, 122, 210, 83, 63, 36, 199, 74, 63, 122, 210, 83, 63, 217, 110, 80, 63, 122, 210, 83, 63, 65, 80, 85, 63, 122, 210, 83, 63, 83, 95, 89, 63, 122, 210, 83, 63, 14, 146, 92, 63, 122, 210, 83, 63, 144, 224, 94, 63, 122, 210, 83, 63, 40, 69, 96, 63, 122, 210, 83, 63, 103, 188, 96, 63, 122, 210, 83, 63, 40, 69, 96, 63, 122, 210, 83, 63, 144, 224, 94, 63, 122, 210, 83, 63, 14, 146, 92, 63, 122, 210, 83, 63, 83, 95, 89, 63, 122, 210, 83, 63, 65, 80, 85, 63, 122, 210, 83, 63, 217, 110, 80, 63, 122, 210, 83, 63, 36, 199, 74, 63, 122, 210, 83, 63, 20, 103, 68, 63, 122, 210, 83, 63, 95, 94, 61, 63, 122, 210, 83, 63, 94, 190, 53, 63, 122, 210, 83, 63, 220, 153, 45, 63, 122, 210, 83, 63, 237, 4, 37, 63, 122, 210, 83, 63, 186, 20, 28, 63, 122, 210, 83, 63, 76, 223, 18, 63, 122, 210, 83, 63, 86, 123, 9, 63, 122, 210, 83, 63, 0, 0, 0, 63, 122, 210, 83, 63, 84, 9, 237, 62, 122, 210, 83, 63, 105, 65, 218, 62, 122, 210, 83, 63, 140, 214, 199, 62, 122, 210, 83, 63, 38, 246, 181, 62, 122, 210, 83, 63, 72, 204, 164, 62, 122, 210, 83, 63, 69, 131, 148, 62, 122, 210, 83, 63, 66, 67, 133, 62, 122, 210, 83, 63, 178, 99, 110, 62, 122, 210, 83, 63, 112, 227, 84, 62, 122, 210, 83, 63, 156, 68, 62, 62, 122, 210, 83, 63, 252, 190, 42, 62, 122, 210, 83, 63, 180, 130, 26, 62, 122, 210, 83, 63, 198, 183, 13, 62, 122, 210, 83, 63, 194, 125, 4, 62, 122, 210, 83, 63, 196, 214, 253, 61, 122, 210, 83, 63, 200, 28, 250, 61, 122, 210, 83, 63, 196, 214, 253, 61, 122, 210, 83, 63, 194, 125, 4, 62, 122, 210, 83, 63, 198, 183, 13, 62, 122, 210, 83, 63, 180, 130, 26, 62, 122, 210, 83, 63, 252, 190, 42, 62, 122, 210, 83, 63, 156, 68, 62, 62, 122, 210, 83, 63, 112, 227, 84, 62, 122, 210, 83, 63, 178, 99, 110, 62, 122, 210, 83, 63, 66, 67, 133, 62, 122, 210, 83, 63, 69, 131, 148, 62, 122, 210, 83, 63, 72, 204, 164, 62, 122, 210, 83, 63, 38, 246, 181, 62, 122, 210, 83, 63, 140, 214, 199, 62, 122, 210, 83, 63, 105, 65, 218, 62, 122, 210, 83, 63, 84, 9, 237, 62, 122, 210, 83, 63, 0, 0, 0, 63, 122, 210, 83, 63, 0, 0, 0, 63, 78, 63, 74, 63, 71, 56, 10, 63, 78, 63, 74, 63, 91, 87, 20, 63, 78, 63, 74, 63, 73, 68, 30, 63, 78, 63, 74, 63, 152, 230, 39, 63, 78, 63, 74, 63, 137, 38, 49, 63, 78, 63, 74, 63, 76, 237, 57, 63, 78, 63, 74, 63, 62, 37, 66, 63, 78, 63, 74, 63, 28, 186, 73, 63, 78, 63, 74, 63, 55, 153, 80, 63, 78, 63, 74, 63, 156, 177, 86, 63, 78, 63, 74, 63, 68, 244, 91, 63, 78, 63, 74, 63, 55, 84, 96, 63, 78, 63, 74, 63, 173, 198, 99, 63, 78, 63, 74, 63, 37, 67, 102, 63, 78, 63, 74, 63, 127, 195, 103, 63, 78, 63, 74, 63, 6, 68, 104, 63, 78, 63, 74, 63, 127, 195, 103, 63, 78, 63, 74, 63, 37, 67, 102, 63, 78, 63, 74, 63, 173, 198, 99, 63, 78, 63, 74, 63, 55, 84, 96, 63, 78, 63, 74, 63, 68, 244, 91, 63, 78, 63, 74, 63, 156, 177, 86, 63, 78, 63, 74, 63, 55, 153, 80, 63, 78, 63, 74, 63, 28, 186, 73, 63, 78, 63, 74, 63, 62, 37, 66, 63, 78, 63, 74, 63, 76, 237, 57, 63, 78, 63, 74, 63, 137, 38, 49, 63, 78, 63, 74, 63, 152, 230, 39, 63, 78, 63, 74, 63, 73, 68, 30, 63, 78, 63, 74, 63, 91, 87, 20, 63, 78, 63, 74, 63, 71, 56, 10, 63, 78, 63, 74, 63, 0, 0, 0, 63, 78, 63, 74, 63, 115, 143, 235, 62, 78, 63, 74, 63, 74, 81, 215, 62, 78, 63, 74, 63, 110, 119, 195, 62, 78, 63, 74, 63, 207, 50, 176, 62, 78, 63, 74, 63, 238, 178, 157, 62, 78, 63, 74, 63, 105, 37, 140, 62, 78, 63, 74, 63, 8, 107, 119, 62, 78, 63, 74, 63, 142, 23, 89, 62, 78, 63, 74, 63, 36, 155, 61, 62, 78, 63, 74, 63, 146, 57, 37, 62, 78, 63, 74, 63, 240, 46, 16, 62, 78, 63, 74, 63, 72, 94, 253, 61, 78, 63, 74, 63, 152, 202, 225, 61, 78, 63, 74, 63, 216, 230, 205, 61, 78, 63, 74, 63, 8, 228, 193, 61, 78, 63, 74, 63, 204, 223, 189, 61, 78, 63, 74, 63, 8, 228, 193, 61, 78, 63, 74, 63, 216, 230, 205, 61, 78, 63, 74, 63, 152, 202, 225, 61, 78, 63, 74, 63, 72, 94, 253, 61, 78, 63, 74, 63, 240, 46, 16, 62, 78, 63, 74, 63, 146, 57, 37, 62, 78, 63, 74, 63, 36, 155, 61, 62, 78, 63, 74, 63, 142, 23, 89, 62, 78, 63, 74, 63, 8, 107, 119, 62, 78, 63, 74, 63, 105, 37, 140, 62, 78, 63, 74, 63, 238, 178, 157, 62, 78, 63, 74, 63, 207, 50, 176, 62, 78, 63, 74, 63, 110, 119, 195, 62, 78, 63, 74, 63, 74, 81, 215, 62, 78, 63, 74, 63, 115, 143, 235, 62, 78, 63, 74, 63, 0, 0, 0, 63, 78, 63, 74, 63, 0, 0, 0, 63, 0, 0, 64, 63, 134, 221, 10, 63, 0, 0, 64, 63, 66, 160, 21, 63, 0, 0, 64, 63, 173, 45, 32, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 66, 65, 52, 63, 0, 0, 64, 63, 238, 149, 61, 63, 0, 0, 64, 63, 196, 82, 70, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 110, 176, 85, 63, 0, 0, 64, 63, 97, 43, 92, 63, 0, 0, 64, 63, 24, 195, 97, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 250, 19, 106, 63, 0, 0, 64, 63, 166, 184, 108, 63, 0, 0, 64, 63, 70, 81, 110, 63, 0, 0, 64, 63, 236, 217, 110, 63, 0, 0, 64, 63, 70, 81, 110, 63, 0, 0, 64, 63, 166, 184, 108, 63, 0, 0, 64, 63, 250, 19, 106, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 24, 195, 97, 63, 0, 0, 64, 63, 97, 43, 92, 63, 0, 0, 64, 63, 110, 176, 85, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 196, 82, 70, 63, 0, 0, 64, 63, 238, 149, 61, 63, 0, 0, 64, 63, 66, 65, 52, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 173, 45, 32, 63, 0, 0, 64, 63, 66, 160, 21, 63, 0, 0, 64, 63, 134, 221, 10, 63, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 244, 68, 234, 62, 0, 0, 64, 63, 124, 191, 212, 62, 0, 0, 64, 63, 166, 164, 191, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 123, 125, 151, 62, 0, 0, 64, 63, 36, 212, 132, 62, 0, 0, 64, 63, 242, 180, 102, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 72, 62, 41, 62, 0, 0, 64, 63, 124, 82, 15, 62, 0, 0, 64, 63, 64, 231, 241, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 44, 96, 175, 61, 0, 0, 64, 63, 212, 58, 154, 61, 0, 0, 64, 63, 208, 117, 141, 61, 0, 0, 64, 63, 160, 48, 137, 61, 0, 0, 64, 63, 208, 117, 141, 61, 0, 0, 64, 63, 212, 58, 154, 61, 0, 0, 64, 63, 44, 96, 175, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 64, 231, 241, 61, 0, 0, 64, 63, 124, 82, 15, 62, 0, 0, 64, 63, 72, 62, 41, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 242, 180, 102, 62, 0, 0, 64, 63, 36, 212, 132, 62, 0, 0, 64, 63, 123, 125, 151, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 166, 164, 191, 62, 0, 0, 64, 63, 124, 191, 212, 62, 0, 0, 64, 63, 244, 68, 234, 62, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 0, 0, 0, 63, 82, 44, 53, 63, 148, 105, 11, 63, 82, 44, 53, 63, 6, 183, 22, 63, 82, 44, 53, 63, 118, 204, 33, 63, 82, 44, 53, 63, 148, 142, 44, 63, 82, 44, 53, 63, 215, 226, 54, 63, 82, 44, 53, 63, 200, 175, 64, 63, 82, 44, 53, 63, 64, 221, 73, 63, 82, 44, 53, 63, 155, 84, 82, 63, 82, 44, 53, 63, 252, 0, 90, 63, 82, 44, 53, 63, 120, 207, 96, 63, 82, 44, 53, 63, 70, 175, 102, 63, 82, 44, 53, 63, 234, 145, 107, 63, 82, 44, 53, 63, 90, 107, 111, 63, 82, 44, 53, 63, 24, 50, 114, 63, 82, 44, 53, 63, 76, 223, 115, 63, 82, 44, 53, 63, 210, 110, 116, 63, 82, 44, 53, 63, 76, 223, 115, 63, 82, 44, 53, 63, 24, 50, 114, 63, 82, 44, 53, 63, 90, 107, 111, 63, 82, 44, 53, 63, 234, 145, 107, 63, 82, 44, 53, 63, 70, 175, 102, 63, 82, 44, 53, 63, 120, 207, 96, 63, 82, 44, 53, 63, 252, 0, 90, 63, 82, 44, 53, 63, 155, 84, 82, 63, 82, 44, 53, 63, 64, 221, 73, 63, 82, 44, 53, 63, 200, 175, 64, 63, 82, 44, 53, 63, 215, 226, 54, 63, 82, 44, 53, 63, 148, 142, 44, 63, 82, 44, 53, 63, 118, 204, 33, 63, 82, 44, 53, 63, 6, 183, 22, 63, 82, 44, 53, 63, 148, 105, 11, 63, 82, 44, 53, 63, 0, 0, 0, 63, 82, 44, 53, 63, 215, 44, 233, 62, 82, 44, 53, 63, 244, 145, 210, 62, 82, 44, 53, 63, 19, 103, 188, 62, 82, 44, 53, 63, 216, 226, 166, 62, 82, 44, 53, 63, 82, 58, 146, 62, 82, 44, 53, 63, 222, 64, 125, 62, 82, 44, 53, 63, 2, 139, 88, 62, 82, 44, 53, 63, 148, 173, 54, 62, 82, 44, 53, 63, 16, 252, 23, 62, 82, 44, 53, 63, 68, 132, 249, 61, 82, 44, 53, 63, 212, 133, 202, 61, 82, 44, 53, 63, 180, 112, 163, 61, 82, 44, 53, 63, 48, 165, 132, 61, 82, 44, 53, 63, 136, 222, 92, 61, 82, 44, 53, 63, 72, 11, 66, 61, 82, 44, 53, 63, 216, 18, 57, 61, 82, 44, 53, 63, 72, 11, 66, 61, 82, 44, 53, 63, 136, 222, 92, 61, 82, 44, 53, 63, 48, 165, 132, 61, 82, 44, 53, 63, 180, 112, 163, 61, 82, 44, 53, 63, 212, 133, 202, 61, 82, 44, 53, 63, 68, 132, 249, 61, 82, 44, 53, 63, 16, 252, 23, 62, 82, 44, 53, 63, 148, 173, 54, 62, 82, 44, 53, 63, 2, 139, 88, 62, 82, 44, 53, 63, 222, 64, 125, 62, 82, 44, 53, 63, 82, 58, 146, 62, 82, 44, 53, 63, 216, 226, 166, 62, 82, 44, 53, 63, 19, 103, 188, 62, 82, 44, 53, 63, 244, 145, 210, 62, 82, 44, 53, 63, 215, 44, 233, 62, 82, 44, 53, 63, 0, 0, 0, 63, 82, 44, 53, 63, 0, 0, 0, 63, 93, 221, 41, 63, 46, 219, 11, 63, 93, 221, 41, 63, 32, 153, 23, 63, 93, 221, 41, 63, 229, 28, 35, 63, 93, 221, 41, 63, 24, 74, 46, 63, 93, 221, 41, 63, 44, 5, 57, 63, 93, 221, 41, 63, 172, 51, 67, 63, 93, 221, 41, 63, 124, 188, 76, 63, 93, 221, 41, 63, 30, 136, 85, 63, 93, 221, 41, 63, 224, 128, 93, 63, 93, 221, 41, 63, 28, 147, 100, 63, 93, 221, 41, 63, 99, 173, 106, 63, 93, 221, 41, 63, 168, 192, 111, 63, 93, 221, 41, 63, 106, 192, 115, 63, 93, 221, 41, 63, 202, 162, 118, 63, 93, 221, 41, 63, 174, 96, 120, 63, 93, 221, 41, 63, 202, 245, 120, 63, 93, 221, 41, 63, 174, 96, 120, 63, 93, 221, 41, 63, 202, 162, 118, 63, 93, 221, 41, 63, 106, 192, 115, 63, 93, 221, 41, 63, 168, 192, 111, 63, 93, 221, 41, 63, 99, 173, 106, 63, 93, 221, 41, 63, 28, 147, 100, 63, 93, 221, 41, 63, 224, 128, 93, 63, 93, 221, 41, 63, 30, 136, 85, 63, 93, 221, 41, 63, 124, 188, 76, 63, 93, 221, 41, 63, 172, 51, 67, 63, 93, 221, 41, 63, 44, 5, 57, 63, 93, 221, 41, 63, 24, 74, 46, 63, 93, 221, 41, 63, 229, 28, 35, 63, 93, 221, 41, 63, 32, 153, 23, 63, 93, 221, 41, 63, 46, 219, 11, 63, 93, 221, 41, 63, 0, 0, 0, 63, 93, 221, 41, 63, 165, 73, 232, 62, 93, 221, 41, 63, 192, 205, 208, 62, 93, 221, 41, 63, 54, 198, 185, 62, 93, 221, 41, 63, 208, 107, 163, 62, 93, 221, 41, 63, 168, 245, 141, 62, 93, 221, 41, 63, 82, 49, 115, 62, 93, 221, 41, 63, 14, 14, 77, 62, 93, 221, 41, 63, 136, 223, 41, 62, 93, 221, 41, 63, 126, 252, 9, 62, 93, 221, 41, 63, 28, 103, 219, 61, 93, 221, 41, 63, 232, 148, 170, 61, 93, 221, 41, 63, 192, 250, 129, 61, 93, 221, 41, 63, 104, 249, 67, 61, 93, 221, 41, 63, 104, 211, 21, 61, 93, 221, 41, 63, 80, 234, 243, 60, 93, 221, 41, 63, 208, 70, 225, 60, 93, 221, 41, 63, 80, 234, 243, 60, 93, 221, 41, 63, 104, 211, 21, 61, 93, 221, 41, 63, 104, 249, 67, 61, 93, 221, 41, 63, 192, 250, 129, 61, 93, 221, 41, 63, 232, 148, 170, 61, 93, 221, 41, 63, 28, 103, 219, 61, 93, 221, 41, 63, 126, 252, 9, 62, 93, 221, 41, 63, 136, 223, 41, 62, 93, 221, 41, 63, 14, 14, 77, 62, 93, 221, 41, 63, 82, 49, 115, 62, 93, 221, 41, 63, 168, 245, 141, 62, 93, 221, 41, 63, 208, 107, 163, 62, 93, 221, 41, 63, 54, 198, 185, 62, 93, 221, 41, 63, 192, 205, 208, 62, 93, 221, 41, 63, 165, 73, 232, 62, 93, 221, 41, 63, 0, 0, 0, 63, 93, 221, 41, 63, 0, 0, 0, 63, 89, 45, 30, 63, 74, 49, 12, 63, 89, 45, 30, 63, 133, 68, 24, 63, 89, 45, 30, 63, 235, 27, 36, 63, 89, 45, 30, 63, 75, 154, 47, 63, 89, 45, 30, 63, 79, 163, 58, 63, 89, 45, 30, 63, 194, 27, 69, 63, 89, 45, 30, 63, 211, 233, 78, 63, 89, 45, 30, 63, 86, 245, 87, 63, 89, 45, 30, 63, 254, 39, 96, 63, 89, 45, 30, 63, 150, 109, 103, 63, 89, 45, 30, 63, 48, 180, 109, 63, 89, 45, 30, 63, 81, 236, 114, 63, 89, 45, 30, 63, 30, 9, 119, 63, 89, 45, 30, 63, 113, 0, 122, 63, 89, 45, 30, 63, 252, 202, 123, 63, 89, 45, 30, 63, 82, 100, 124, 63, 89, 45, 30, 63, 252, 202, 123, 63, 89, 45, 30, 63, 113, 0, 122, 63, 89, 45, 30, 63, 30, 9, 119, 63, 89, 45, 30, 63, 81, 236, 114, 63, 89, 45, 30, 63, 48, 180, 109, 63, 89, 45, 30, 63, 150, 109, 103, 63, 89, 45, 30, 63, 254, 39, 96, 63, 89, 45, 30, 63, 86, 245, 87, 63, 89, 45, 30, 63, 211, 233, 78, 63, 89, 45, 30, 63, 194, 27, 69, 63, 89, 45, 30, 63, 79, 163, 58, 63, 89, 45, 30, 63, 75, 154, 47, 63, 89, 45, 30, 63, 235, 27, 36, 63, 89, 45, 30, 63, 133, 68, 24, 63, 89, 45, 30, 63, 74, 49, 12, 63, 89, 45, 30, 63, 0, 0, 0, 63, 89, 45, 30, 63, 108, 157, 231, 62, 89, 45, 30, 63, 246, 118, 207, 62, 89, 45, 30, 63, 42, 200, 183, 62, 89, 45, 30, 63, 106, 203, 160, 62, 89, 45, 30, 63, 98, 185, 138, 62, 89, 45, 30, 63, 248, 144, 107, 62, 89, 45, 30, 63, 180, 88, 68, 62, 89, 45, 30, 63, 168, 42, 32, 62, 89, 45, 30, 63, 12, 192, 254, 61, 89, 45, 30, 63, 80, 147, 196, 61, 89, 45, 30, 63, 132, 94, 146, 61, 89, 45, 30, 63, 240, 58, 81, 61, 89, 45, 30, 63, 32, 110, 15, 61, 89, 45, 30, 63, 224, 241, 191, 60, 89, 45, 30, 63, 144, 160, 134, 60, 89, 45, 30, 63, 96, 235, 102, 60, 89, 45, 30, 63, 144, 160, 134, 60, 89, 45, 30, 63, 224, 241, 191, 60, 89, 45, 30, 63, 32, 110, 15, 61, 89, 45, 30, 63, 240, 58, 81, 61, 89, 45, 30, 63, 132, 94, 146, 61, 89, 45, 30, 63, 80, 147, 196, 61, 89, 45, 30, 63, 12, 192, 254, 61, 89, 45, 30, 63, 168, 42, 32, 62, 89, 45, 30, 63, 180, 88, 68, 62, 89, 45, 30, 63, 248, 144, 107, 62, 89, 45, 30, 63, 98, 185, 138, 62, 89, 45, 30, 63, 106, 203, 160, 62, 89, 45, 30, 63, 42, 200, 183, 62, 89, 45, 30, 63, 246, 118, 207, 62, 89, 45, 30, 63, 108, 157, 231, 62, 89, 45, 30, 63, 0, 0, 0, 63, 89, 45, 30, 63, 0, 0, 0, 63, 95, 55, 18, 63, 34, 107, 12, 63, 95, 55, 18, 63, 167, 183, 24, 63, 95, 55, 18, 63, 58, 199, 36, 63, 95, 55, 18, 63, 34, 124, 48, 63, 95, 55, 18, 63, 129, 185, 59, 63, 95, 55, 18, 63, 160, 99, 70, 63, 95, 55, 18, 63, 54, 96, 80, 63, 95, 55, 18, 63, 162, 150, 89, 63, 95, 55, 18, 63, 47, 240, 97, 63, 95, 55, 18, 63, 70, 88, 105, 63, 95, 55, 18, 63, 166, 188, 111, 63, 95, 55, 18, 63, 138, 13, 117, 63, 95, 55, 18, 63, 218, 61, 121, 63, 95, 55, 18, 63, 64, 67, 124, 63, 95, 55, 18, 63, 74, 22, 126, 63, 95, 55, 18, 63, 120, 178, 126, 63, 95, 55, 18, 63, 74, 22, 126, 63, 95, 55, 18, 63, 64, 67, 124, 63, 95, 55, 18, 63, 218, 61, 121, 63, 95, 55, 18, 63, 138, 13, 117, 63, 95, 55, 18, 63, 166, 188, 111, 63, 95, 55, 18, 63, 70, 88, 105, 63, 95, 55, 18, 63, 47, 240, 97, 63, 95, 55, 18, 63, 162, 150, 89, 63, 95, 55, 18, 63, 54, 96, 80, 63, 95, 55, 18, 63, 160, 99, 70, 63, 95, 55, 18, 63, 129, 185, 59, 63, 95, 55, 18, 63, 34, 124, 48, 63, 95, 55, 18, 63, 58, 199, 36, 63, 95, 55, 18, 63, 167, 183, 24, 63, 95, 55, 18, 63, 34, 107, 12, 63, 95, 55, 18, 63, 0, 0, 0, 63, 95, 55, 18, 63, 188, 41, 231, 62, 95, 55, 18, 63, 179, 144, 206, 62, 95, 55, 18, 63, 139, 113, 182, 62, 95, 55, 18, 63, 188, 7, 159, 62, 95, 55, 18, 63, 254, 140, 136, 62, 95, 55, 18, 63, 128, 113, 102, 62, 95, 55, 18, 63, 42, 127, 62, 62, 95, 55, 18, 63, 120, 165, 25, 62, 95, 55, 18, 63, 136, 126, 240, 61, 95, 55, 18, 63, 204, 61, 181, 61, 95, 55, 18, 63, 208, 26, 130, 61, 95, 55, 18, 63, 88, 39, 47, 61, 95, 55, 18, 63, 192, 68, 216, 60, 95, 55, 18, 63, 32, 48, 111, 60, 95, 55, 18, 63, 64, 219, 244, 59, 95, 55, 18, 63, 0, 196, 166, 59, 95, 55, 18, 63, 64, 219, 244, 59, 95, 55, 18, 63, 32, 48, 111, 60, 95, 55, 18, 63, 192, 68, 216, 60, 95, 55, 18, 63, 88, 39, 47, 61, 95, 55, 18, 63, 208, 26, 130, 61, 95, 55, 18, 63, 204, 61, 181, 61, 95, 55, 18, 63, 136, 126, 240, 61, 95, 55, 18, 63, 120, 165, 25, 62, 95, 55, 18, 63, 42, 127, 62, 62, 95, 55, 18, 63, 128, 113, 102, 62, 95, 55, 18, 63, 254, 140, 136, 62, 95, 55, 18, 63, 188, 7, 159, 62, 95, 55, 18, 63, 139, 113, 182, 62, 95, 55, 18, 63, 179, 144, 206, 62, 95, 55, 18, 63, 188, 41, 231, 62, 95, 55, 18, 63, 0, 0, 0, 63, 95, 55, 18, 63, 0, 0, 0, 63, 42, 23, 6, 63, 48, 136, 12, 63, 42, 23, 6, 63, 123, 241, 24, 63, 42, 23, 6, 63, 70, 29, 37, 63, 42, 23, 6, 63, 145, 237, 48, 63, 42, 23, 6, 63, 60, 69, 60, 63, 42, 23, 6, 63, 78, 8, 71, 63, 42, 23, 6, 63, 65, 28, 81, 63, 42, 23, 6, 63, 59, 104, 90, 63, 42, 23, 6, 63, 80, 213, 98, 63, 42, 23, 6, 63, 188, 78, 106, 63, 42, 23, 6, 63, 16, 194, 112, 63, 42, 23, 6, 63, 101, 31, 118, 63, 42, 23, 6, 63, 129, 89, 122, 63, 42, 23, 6, 63, 248, 101, 125, 63, 42, 23, 6, 63, 71, 61, 127, 63, 42, 23, 6, 63, 226, 218, 127, 63, 42, 23, 6, 63, 71, 61, 127, 63, 42, 23, 6, 63, 248, 101, 125, 63, 42, 23, 6, 63, 129, 89, 122, 63, 42, 23, 6, 63, 101, 31, 118, 63, 42, 23, 6, 63, 16, 194, 112, 63, 42, 23, 6, 63, 188, 78, 106, 63, 42, 23, 6, 63, 80, 213, 98, 63, 42, 23, 6, 63, 59, 104, 90, 63, 42, 23, 6, 63, 65, 28, 81, 63, 42, 23, 6, 63, 78, 8, 71, 63, 42, 23, 6, 63, 60, 69, 60, 63, 42, 23, 6, 63, 145, 237, 48, 63, 42, 23, 6, 63, 70, 29, 37, 63, 42, 23, 6, 63, 123, 241, 24, 63, 42, 23, 6, 63, 48, 136, 12, 63, 42, 23, 6, 63, 0, 0, 0, 63, 42, 23, 6, 63, 160, 239, 230, 62, 42, 23, 6, 63, 11, 29, 206, 62, 42, 23, 6, 63, 116, 197, 181, 62, 42, 23, 6, 63, 222, 36, 158, 62, 42, 23, 6, 63, 137, 117, 135, 62, 42, 23, 6, 63, 200, 222, 99, 62, 42, 23, 6, 63, 252, 142, 59, 62, 42, 23, 6, 63, 20, 95, 22, 62, 42, 23, 6, 63, 124, 85, 233, 61, 42, 23, 6, 63, 28, 138, 173, 61, 42, 23, 6, 63, 248, 222, 115, 61, 42, 23, 6, 63, 176, 9, 30, 61, 42, 23, 6, 63, 224, 207, 180, 60, 42, 23, 6, 63, 0, 130, 38, 60, 42, 23, 6, 63, 0, 185, 66, 59, 42, 23, 6, 63, 0, 118, 20, 58, 42, 23, 6, 63, 0, 185, 66, 59, 42, 23, 6, 63, 0, 130, 38, 60, 42, 23, 6, 63, 224, 207, 180, 60, 42, 23, 6, 63, 176, 9, 30, 61, 42, 23, 6, 63, 248, 222, 115, 61, 42, 23, 6, 63, 28, 138, 173, 61, 42, 23, 6, 63, 124, 85, 233, 61, 42, 23, 6, 63, 20, 95, 22, 62, 42, 23, 6, 63, 252, 142, 59, 62, 42, 23, 6, 63, 200, 222, 99, 62, 42, 23, 6, 63, 137, 117, 135, 62, 42, 23, 6, 63, 222, 36, 158, 62, 42, 23, 6, 63, 116, 197, 181, 62, 42, 23, 6, 63, 11, 29, 206, 62, 42, 23, 6, 63, 160, 239, 230, 62, 42, 23, 6, 63, 0, 0, 0, 63, 42, 23, 6, 63, 0, 0, 0, 63, 173, 209, 243, 62, 48, 136, 12, 63, 173, 209, 243, 62, 123, 241, 24, 63, 173, 209, 243, 62, 70, 29, 37, 63, 173, 209, 243, 62, 145, 237, 48, 63, 173, 209, 243, 62, 60, 69, 60, 63, 173, 209, 243, 62, 78, 8, 71, 63, 173, 209, 243, 62, 65, 28, 81, 63, 173, 209, 243, 62, 59, 104, 90, 63, 173, 209, 243, 62, 80, 213, 98, 63, 173, 209, 243, 62, 188, 78, 106, 63, 173, 209, 243, 62, 16, 194, 112, 63, 173, 209, 243, 62, 101, 31, 118, 63, 173, 209, 243, 62, 129, 89, 122, 63, 173, 209, 243, 62, 248, 101, 125, 63, 173, 209, 243, 62, 71, 61, 127, 63, 173, 209, 243, 62, 226, 218, 127, 63, 173, 209, 243, 62, 71, 61, 127, 63, 173, 209, 243, 62, 248, 101, 125, 63, 173, 209, 243, 62, 129, 89, 122, 63, 173, 209, 243, 62, 101, 31, 118, 63, 173, 209, 243, 62, 16, 194, 112, 63, 173, 209, 243, 62, 188, 78, 106, 63, 173, 209, 243, 62, 80, 213, 98, 63, 173, 209, 243, 62, 59, 104, 90, 63, 173, 209, 243, 62, 65, 28, 81, 63, 173, 209, 243, 62, 78, 8, 71, 63, 173, 209, 243, 62, 60, 69, 60, 63, 173, 209, 243, 62, 145, 237, 48, 63, 173, 209, 243, 62, 70, 29, 37, 63, 173, 209, 243, 62, 123, 241, 24, 63, 173, 209, 243, 62, 48, 136, 12, 63, 173, 209, 243, 62, 0, 0, 0, 63, 173, 209, 243, 62, 160, 239, 230, 62, 173, 209, 243, 62, 11, 29, 206, 62, 173, 209, 243, 62, 116, 197, 181, 62, 173, 209, 243, 62, 222, 36, 158, 62, 173, 209, 243, 62, 137, 117, 135, 62, 173, 209, 243, 62, 200, 222, 99, 62, 173, 209, 243, 62, 252, 142, 59, 62, 173, 209, 243, 62, 20, 95, 22, 62, 173, 209, 243, 62, 124, 85, 233, 61, 173, 209, 243, 62, 28, 138, 173, 61, 173, 209, 243, 62, 248, 222, 115, 61, 173, 209, 243, 62, 176, 9, 30, 61, 173, 209, 243, 62, 224, 207, 180, 60, 173, 209, 243, 62, 0, 130, 38, 60, 173, 209, 243, 62, 0, 185, 66, 59, 173, 209, 243, 62, 0, 118, 20, 58, 173, 209, 243, 62, 0, 185, 66, 59, 173, 209, 243, 62, 0, 130, 38, 60, 173, 209, 243, 62, 224, 207, 180, 60, 173, 209, 243, 62, 176, 9, 30, 61, 173, 209, 243, 62, 248, 222, 115, 61, 173, 209, 243, 62, 28, 138, 173, 61, 173, 209, 243, 62, 124, 85, 233, 61, 173, 209, 243, 62, 20, 95, 22, 62, 173, 209, 243, 62, 252, 142, 59, 62, 173, 209, 243, 62, 200, 222, 99, 62, 173, 209, 243, 62, 137, 117, 135, 62, 173, 209, 243, 62, 222, 36, 158, 62, 173, 209, 243, 62, 116, 197, 181, 62, 173, 209, 243, 62, 11, 29, 206, 62, 173, 209, 243, 62, 160, 239, 230, 62, 173, 209, 243, 62, 0, 0, 0, 63, 173, 209, 243, 62, 0, 0, 0, 63, 64, 145, 219, 62, 34, 107, 12, 63, 64, 145, 219, 62, 167, 183, 24, 63, 64, 145, 219, 62, 58, 199, 36, 63, 64, 145, 219, 62, 34, 124, 48, 63, 64, 145, 219, 62, 129, 185, 59, 63, 64, 145, 219, 62, 160, 99, 70, 63, 64, 145, 219, 62, 54, 96, 80, 63, 64, 145, 219, 62, 162, 150, 89, 63, 64, 145, 219, 62, 47, 240, 97, 63, 64, 145, 219, 62, 70, 88, 105, 63, 64, 145, 219, 62, 166, 188, 111, 63, 64, 145, 219, 62, 138, 13, 117, 63, 64, 145, 219, 62, 218, 61, 121, 63, 64, 145, 219, 62, 64, 67, 124, 63, 64, 145, 219, 62, 74, 22, 126, 63, 64, 145, 219, 62, 120, 178, 126, 63, 64, 145, 219, 62, 74, 22, 126, 63, 64, 145, 219, 62, 64, 67, 124, 63, 64, 145, 219, 62, 218, 61, 121, 63, 64, 145, 219, 62, 138, 13, 117, 63, 64, 145, 219, 62, 166, 188, 111, 63, 64, 145, 219, 62, 70, 88, 105, 63, 64, 145, 219, 62, 47, 240, 97, 63, 64, 145, 219, 62, 162, 150, 89, 63, 64, 145, 219, 62, 54, 96, 80, 63, 64, 145, 219, 62, 160, 99, 70, 63, 64, 145, 219, 62, 129, 185, 59, 63, 64, 145, 219, 62, 34, 124, 48, 63, 64, 145, 219, 62, 58, 199, 36, 63, 64, 145, 219, 62, 167, 183, 24, 63, 64, 145, 219, 62, 34, 107, 12, 63, 64, 145, 219, 62, 0, 0, 0, 63, 64, 145, 219, 62, 188, 41, 231, 62, 64, 145, 219, 62, 179, 144, 206, 62, 64, 145, 219, 62, 139, 113, 182, 62, 64, 145, 219, 62, 188, 7, 159, 62, 64, 145, 219, 62, 254, 140, 136, 62, 64, 145, 219, 62, 128, 113, 102, 62, 64, 145, 219, 62, 42, 127, 62, 62, 64, 145, 219, 62, 120, 165, 25, 62, 64, 145, 219, 62, 136, 126, 240, 61, 64, 145, 219, 62, 204, 61, 181, 61, 64, 145, 219, 62, 208, 26, 130, 61, 64, 145, 219, 62, 88, 39, 47, 61, 64, 145, 219, 62, 192, 68, 216, 60, 64, 145, 219, 62, 32, 48, 111, 60, 64, 145, 219, 62, 64, 219, 244, 59, 64, 145, 219, 62, 0, 196, 166, 59, 64, 145, 219, 62, 64, 219, 244, 59, 64, 145, 219, 62, 32, 48, 111, 60, 64, 145, 219, 62, 192, 68, 216, 60, 64, 145, 219, 62, 88, 39, 47, 61, 64, 145, 219, 62, 208, 26, 130, 61, 64, 145, 219, 62, 204, 61, 181, 61, 64, 145, 219, 62, 136, 126, 240, 61, 64, 145, 219, 62, 120, 165, 25, 62, 64, 145, 219, 62, 42, 127, 62, 62, 64, 145, 219, 62, 128, 113, 102, 62, 64, 145, 219, 62, 254, 140, 136, 62, 64, 145, 219, 62, 188, 7, 159, 62, 64, 145, 219, 62, 139, 113, 182, 62, 64, 145, 219, 62, 179, 144, 206, 62, 64, 145, 219, 62, 188, 41, 231, 62, 64, 145, 219, 62, 0, 0, 0, 63, 64, 145, 219, 62, 0, 0, 0, 63, 78, 165, 195, 62, 74, 49, 12, 63, 78, 165, 195, 62, 133, 68, 24, 63, 78, 165, 195, 62, 235, 27, 36, 63, 78, 165, 195, 62, 75, 154, 47, 63, 78, 165, 195, 62, 79, 163, 58, 63, 78, 165, 195, 62, 194, 27, 69, 63, 78, 165, 195, 62, 211, 233, 78, 63, 78, 165, 195, 62, 86, 245, 87, 63, 78, 165, 195, 62, 254, 39, 96, 63, 78, 165, 195, 62, 150, 109, 103, 63, 78, 165, 195, 62, 48, 180, 109, 63, 78, 165, 195, 62, 81, 236, 114, 63, 78, 165, 195, 62, 30, 9, 119, 63, 78, 165, 195, 62, 113, 0, 122, 63, 78, 165, 195, 62, 252, 202, 123, 63, 78, 165, 195, 62, 82, 100, 124, 63, 78, 165, 195, 62, 252, 202, 123, 63, 78, 165, 195, 62, 113, 0, 122, 63, 78, 165, 195, 62, 30, 9, 119, 63, 78, 165, 195, 62, 81, 236, 114, 63, 78, 165, 195, 62, 48, 180, 109, 63, 78, 165, 195, 62, 150, 109, 103, 63, 78, 165, 195, 62, 254, 39, 96, 63, 78, 165, 195, 62, 86, 245, 87, 63, 78, 165, 195, 62, 211, 233, 78, 63, 78, 165, 195, 62, 194, 27, 69, 63, 78, 165, 195, 62, 79, 163, 58, 63, 78, 165, 195, 62, 75, 154, 47, 63, 78, 165, 195, 62, 235, 27, 36, 63, 78, 165, 195, 62, 133, 68, 24, 63, 78, 165, 195, 62, 74, 49, 12, 63, 78, 165, 195, 62, 0, 0, 0, 63, 78, 165, 195, 62, 108, 157, 231, 62, 78, 165, 195, 62, 246, 118, 207, 62, 78, 165, 195, 62, 42, 200, 183, 62, 78, 165, 195, 62, 106, 203, 160, 62, 78, 165, 195, 62, 98, 185, 138, 62, 78, 165, 195, 62, 248, 144, 107, 62, 78, 165, 195, 62, 180, 88, 68, 62, 78, 165, 195, 62, 168, 42, 32, 62, 78, 165, 195, 62, 12, 192, 254, 61, 78, 165, 195, 62, 80, 147, 196, 61, 78, 165, 195, 62, 132, 94, 146, 61, 78, 165, 195, 62, 240, 58, 81, 61, 78, 165, 195, 62, 32, 110, 15, 61, 78, 165, 195, 62, 224, 241, 191, 60, 78, 165, 195, 62, 144, 160, 134, 60, 78, 165, 195, 62, 96, 235, 102, 60, 78, 165, 195, 62, 144, 160, 134, 60, 78, 165, 195, 62, 224, 241, 191, 60, 78, 165, 195, 62, 32, 110, 15, 61, 78, 165, 195, 62, 240, 58, 81, 61, 78, 165, 195, 62, 132, 94, 146, 61, 78, 165, 195, 62, 80, 147, 196, 61, 78, 165, 195, 62, 12, 192, 254, 61, 78, 165, 195, 62, 168, 42, 32, 62, 78, 165, 195, 62, 180, 88, 68, 62, 78, 165, 195, 62, 248, 144, 107, 62, 78, 165, 195, 62, 98, 185, 138, 62, 78, 165, 195, 62, 106, 203, 160, 62, 78, 165, 195, 62, 42, 200, 183, 62, 78, 165, 195, 62, 246, 118, 207, 62, 78, 165, 195, 62, 108, 157, 231, 62, 78, 165, 195, 62, 0, 0, 0, 63, 78, 165, 195, 62, 0, 0, 0, 63, 69, 69, 172, 62, 46, 219, 11, 63, 69, 69, 172, 62, 32, 153, 23, 63, 69, 69, 172, 62, 229, 28, 35, 63, 69, 69, 172, 62, 24, 74, 46, 63, 69, 69, 172, 62, 44, 5, 57, 63, 69, 69, 172, 62, 172, 51, 67, 63, 69, 69, 172, 62, 124, 188, 76, 63, 69, 69, 172, 62, 30, 136, 85, 63, 69, 69, 172, 62, 224, 128, 93, 63, 69, 69, 172, 62, 28, 147, 100, 63, 69, 69, 172, 62, 99, 173, 106, 63, 69, 69, 172, 62, 168, 192, 111, 63, 69, 69, 172, 62, 106, 192, 115, 63, 69, 69, 172, 62, 202, 162, 118, 63, 69, 69, 172, 62, 174, 96, 120, 63, 69, 69, 172, 62, 202, 245, 120, 63, 69, 69, 172, 62, 174, 96, 120, 63, 69, 69, 172, 62, 202, 162, 118, 63, 69, 69, 172, 62, 106, 192, 115, 63, 69, 69, 172, 62, 168, 192, 111, 63, 69, 69, 172, 62, 99, 173, 106, 63, 69, 69, 172, 62, 28, 147, 100, 63, 69, 69, 172, 62, 224, 128, 93, 63, 69, 69, 172, 62, 30, 136, 85, 63, 69, 69, 172, 62, 124, 188, 76, 63, 69, 69, 172, 62, 172, 51, 67, 63, 69, 69, 172, 62, 44, 5, 57, 63, 69, 69, 172, 62, 24, 74, 46, 63, 69, 69, 172, 62, 229, 28, 35, 63, 69, 69, 172, 62, 32, 153, 23, 63, 69, 69, 172, 62, 46, 219, 11, 63, 69, 69, 172, 62, 0, 0, 0, 63, 69, 69, 172, 62, 165, 73, 232, 62, 69, 69, 172, 62, 192, 205, 208, 62, 69, 69, 172, 62, 54, 198, 185, 62, 69, 69, 172, 62, 208, 107, 163, 62, 69, 69, 172, 62, 168, 245, 141, 62, 69, 69, 172, 62, 82, 49, 115, 62, 69, 69, 172, 62, 14, 14, 77, 62, 69, 69, 172, 62, 136, 223, 41, 62, 69, 69, 172, 62, 126, 252, 9, 62, 69, 69, 172, 62, 28, 103, 219, 61, 69, 69, 172, 62, 232, 148, 170, 61, 69, 69, 172, 62, 192, 250, 129, 61, 69, 69, 172, 62, 104, 249, 67, 61, 69, 69, 172, 62, 104, 211, 21, 61, 69, 69, 172, 62, 80, 234, 243, 60, 69, 69, 172, 62, 208, 70, 225, 60, 69, 69, 172, 62, 80, 234, 243, 60, 69, 69, 172, 62, 104, 211, 21, 61, 69, 69, 172, 62, 104, 249, 67, 61, 69, 69, 172, 62, 192, 250, 129, 61, 69, 69, 172, 62, 232, 148, 170, 61, 69, 69, 172, 62, 28, 103, 219, 61, 69, 69, 172, 62, 126, 252, 9, 62, 69, 69, 172, 62, 136, 223, 41, 62, 69, 69, 172, 62, 14, 14, 77, 62, 69, 69, 172, 62, 82, 49, 115, 62, 69, 69, 172, 62, 168, 245, 141, 62, 69, 69, 172, 62, 208, 107, 163, 62, 69, 69, 172, 62, 54, 198, 185, 62, 69, 69, 172, 62, 192, 205, 208, 62, 69, 69, 172, 62, 165, 73, 232, 62, 69, 69, 172, 62, 0, 0, 0, 63, 69, 69, 172, 62, 0, 0, 0, 63, 93, 167, 149, 62, 148, 105, 11, 63, 93, 167, 149, 62, 6, 183, 22, 63, 93, 167, 149, 62, 118, 204, 33, 63, 93, 167, 149, 62, 148, 142, 44, 63, 93, 167, 149, 62, 215, 226, 54, 63, 93, 167, 149, 62, 200, 175, 64, 63, 93, 167, 149, 62, 64, 221, 73, 63, 93, 167, 149, 62, 155, 84, 82, 63, 93, 167, 149, 62, 252, 0, 90, 63, 93, 167, 149, 62, 120, 207, 96, 63, 93, 167, 149, 62, 70, 175, 102, 63, 93, 167, 149, 62, 234, 145, 107, 63, 93, 167, 149, 62, 90, 107, 111, 63, 93, 167, 149, 62, 24, 50, 114, 63, 93, 167, 149, 62, 76, 223, 115, 63, 93, 167, 149, 62, 210, 110, 116, 63, 93, 167, 149, 62, 76, 223, 115, 63, 93, 167, 149, 62, 24, 50, 114, 63, 93, 167, 149, 62, 90, 107, 111, 63, 93, 167, 149, 62, 234, 145, 107, 63, 93, 167, 149, 62, 70, 175, 102, 63, 93, 167, 149, 62, 120, 207, 96, 63, 93, 167, 149, 62, 252, 0, 90, 63, 93, 167, 149, 62, 155, 84, 82, 63, 93, 167, 149, 62, 64, 221, 73, 63, 93, 167, 149, 62, 200, 175, 64, 63, 93, 167, 149, 62, 215, 226, 54, 63, 93, 167, 149, 62, 148, 142, 44, 63, 93, 167, 149, 62, 118, 204, 33, 63, 93, 167, 149, 62, 6, 183, 22, 63, 93, 167, 149, 62, 148, 105, 11, 63, 93, 167, 149, 62, 0, 0, 0, 63, 93, 167, 149, 62, 215, 44, 233, 62, 93, 167, 149, 62, 244, 145, 210, 62, 93, 167, 149, 62, 19, 103, 188, 62, 93, 167, 149, 62, 216, 226, 166, 62, 93, 167, 149, 62, 82, 58, 146, 62, 93, 167, 149, 62, 222, 64, 125, 62, 93, 167, 149, 62, 2, 139, 88, 62, 93, 167, 149, 62, 148, 173, 54, 62, 93, 167, 149, 62, 16, 252, 23, 62, 93, 167, 149, 62, 68, 132, 249, 61, 93, 167, 149, 62, 212, 133, 202, 61, 93, 167, 149, 62, 180, 112, 163, 61, 93, 167, 149, 62, 48, 165, 132, 61, 93, 167, 149, 62, 136, 222, 92, 61, 93, 167, 149, 62, 72, 11, 66, 61, 93, 167, 149, 62, 216, 18, 57, 61, 93, 167, 149, 62, 72, 11, 66, 61, 93, 167, 149, 62, 136, 222, 92, 61, 93, 167, 149, 62, 48, 165, 132, 61, 93, 167, 149, 62, 180, 112, 163, 61, 93, 167, 149, 62, 212, 133, 202, 61, 93, 167, 149, 62, 68, 132, 249, 61, 93, 167, 149, 62, 16, 252, 23, 62, 93, 167, 149, 62, 148, 173, 54, 62, 93, 167, 149, 62, 2, 139, 88, 62, 93, 167, 149, 62, 222, 64, 125, 62, 93, 167, 149, 62, 82, 58, 146, 62, 93, 167, 149, 62, 216, 226, 166, 62, 93, 167, 149, 62, 19, 103, 188, 62, 93, 167, 149, 62, 244, 145, 210, 62, 93, 167, 149, 62, 215, 44, 233, 62, 93, 167, 149, 62, 0, 0, 0, 63, 93, 167, 149, 62, 0, 0, 0, 63, 254, 255, 127, 62, 134, 221, 10, 63, 254, 255, 127, 62, 66, 160, 21, 63, 254, 255, 127, 62, 173, 45, 32, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 66, 65, 52, 63, 254, 255, 127, 62, 238, 149, 61, 63, 254, 255, 127, 62, 195, 82, 70, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 110, 176, 85, 63, 254, 255, 127, 62, 96, 43, 92, 63, 254, 255, 127, 62, 24, 195, 97, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 250, 19, 106, 63, 254, 255, 127, 62, 165, 184, 108, 63, 254, 255, 127, 62, 70, 81, 110, 63, 254, 255, 127, 62, 236, 217, 110, 63, 254, 255, 127, 62, 70, 81, 110, 63, 254, 255, 127, 62, 165, 184, 108, 63, 254, 255, 127, 62, 250, 19, 106, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 24, 195, 97, 63, 254, 255, 127, 62, 96, 43, 92, 63, 254, 255, 127, 62, 110, 176, 85, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 195, 82, 70, 63, 254, 255, 127, 62, 238, 149, 61, 63, 254, 255, 127, 62, 66, 65, 52, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 173, 45, 32, 63, 254, 255, 127, 62, 66, 160, 21, 63, 254, 255, 127, 62, 134, 221, 10, 63, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 244, 68, 234, 62, 254, 255, 127, 62, 124, 191, 212, 62, 254, 255, 127, 62, 166, 164, 191, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 124, 125, 151, 62, 254, 255, 127, 62, 37, 212, 132, 62, 254, 255, 127, 62, 244, 180, 102, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 74, 62, 41, 62, 254, 255, 127, 62, 126, 82, 15, 62, 254, 255, 127, 62, 68, 231, 241, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 48, 96, 175, 61, 254, 255, 127, 62, 216, 58, 154, 61, 254, 255, 127, 62, 212, 117, 141, 61, 254, 255, 127, 62, 164, 48, 137, 61, 254, 255, 127, 62, 212, 117, 141, 61, 254, 255, 127, 62, 216, 58, 154, 61, 254, 255, 127, 62, 48, 96, 175, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 68, 231, 241, 61, 254, 255, 127, 62, 126, 82, 15, 62, 254, 255, 127, 62, 74, 62, 41, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 244, 180, 102, 62, 254, 255, 127, 62, 37, 212, 132, 62, 254, 255, 127, 62, 124, 125, 151, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 166, 164, 191, 62, 254, 255, 127, 62, 124, 191, 212, 62, 254, 255, 127, 62, 244, 68, 234, 62, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 0, 0, 0, 63, 200, 2, 87, 62, 71, 56, 10, 63, 200, 2, 87, 62, 91, 87, 20, 63, 200, 2, 87, 62, 73, 68, 30, 63, 200, 2, 87, 62, 152, 230, 39, 63, 200, 2, 87, 62, 137, 38, 49, 63, 200, 2, 87, 62, 76, 237, 57, 63, 200, 2, 87, 62, 62, 37, 66, 63, 200, 2, 87, 62, 28, 186, 73, 63, 200, 2, 87, 62, 55, 153, 80, 63, 200, 2, 87, 62, 156, 177, 86, 63, 200, 2, 87, 62, 68, 244, 91, 63, 200, 2, 87, 62, 55, 84, 96, 63, 200, 2, 87, 62, 173, 198, 99, 63, 200, 2, 87, 62, 37, 67, 102, 63, 200, 2, 87, 62, 127, 195, 103, 63, 200, 2, 87, 62, 6, 68, 104, 63, 200, 2, 87, 62, 127, 195, 103, 63, 200, 2, 87, 62, 37, 67, 102, 63, 200, 2, 87, 62, 173, 198, 99, 63, 200, 2, 87, 62, 55, 84, 96, 63, 200, 2, 87, 62, 68, 244, 91, 63, 200, 2, 87, 62, 156, 177, 86, 63, 200, 2, 87, 62, 55, 153, 80, 63, 200, 2, 87, 62, 28, 186, 73, 63, 200, 2, 87, 62, 62, 37, 66, 63, 200, 2, 87, 62, 76, 237, 57, 63, 200, 2, 87, 62, 137, 38, 49, 63, 200, 2, 87, 62, 152, 230, 39, 63, 200, 2, 87, 62, 73, 68, 30, 63, 200, 2, 87, 62, 91, 87, 20, 63, 200, 2, 87, 62, 71, 56, 10, 63, 200, 2, 87, 62, 0, 0, 0, 63, 200, 2, 87, 62, 115, 143, 235, 62, 200, 2, 87, 62, 74, 81, 215, 62, 200, 2, 87, 62, 110, 119, 195, 62, 200, 2, 87, 62, 207, 50, 176, 62, 200, 2, 87, 62, 238, 178, 157, 62, 200, 2, 87, 62, 105, 37, 140, 62, 200, 2, 87, 62, 8, 107, 119, 62, 200, 2, 87, 62, 142, 23, 89, 62, 200, 2, 87, 62, 36, 155, 61, 62, 200, 2, 87, 62, 146, 57, 37, 62, 200, 2, 87, 62, 240, 46, 16, 62, 200, 2, 87, 62, 72, 94, 253, 61, 200, 2, 87, 62, 152, 202, 225, 61, 200, 2, 87, 62, 216, 230, 205, 61, 200, 2, 87, 62, 8, 228, 193, 61, 200, 2, 87, 62, 204, 223, 189, 61, 200, 2, 87, 62, 8, 228, 193, 61, 200, 2, 87, 62, 216, 230, 205, 61, 200, 2, 87, 62, 152, 202, 225, 61, 200, 2, 87, 62, 72, 94, 253, 61, 200, 2, 87, 62, 240, 46, 16, 62, 200, 2, 87, 62, 146, 57, 37, 62, 200, 2, 87, 62, 36, 155, 61, 62, 200, 2, 87, 62, 142, 23, 89, 62, 200, 2, 87, 62, 8, 107, 119, 62, 200, 2, 87, 62, 105, 37, 140, 62, 200, 2, 87, 62, 238, 178, 157, 62, 200, 2, 87, 62, 207, 50, 176, 62, 200, 2, 87, 62, 110, 119, 195, 62, 200, 2, 87, 62, 74, 81, 215, 62, 200, 2, 87, 62, 115, 143, 235, 62, 200, 2, 87, 62, 0, 0, 0, 63, 200, 2, 87, 62, 0, 0, 0, 63, 22, 182, 48, 62, 86, 123, 9, 63, 22, 182, 48, 62, 76, 223, 18, 63, 22, 182, 48, 62, 186, 20, 28, 63, 22, 182, 48, 62, 237, 4, 37, 63, 22, 182, 48, 62, 220, 153, 45, 63, 22, 182, 48, 62, 93, 190, 53, 63, 22, 182, 48, 62, 94, 94, 61, 63, 22, 182, 48, 62, 19, 103, 68, 63, 22, 182, 48, 62, 36, 199, 74, 63, 22, 182, 48, 62, 216, 110, 80, 63, 22, 182, 48, 62, 64, 80, 85, 63, 22, 182, 48, 62, 82, 95, 89, 63, 22, 182, 48, 62, 14, 146, 92, 63, 22, 182, 48, 62, 143, 224, 94, 63, 22, 182, 48, 62, 39, 69, 96, 63, 22, 182, 48, 62, 102, 188, 96, 63, 22, 182, 48, 62, 39, 69, 96, 63, 22, 182, 48, 62, 143, 224, 94, 63, 22, 182, 48, 62, 14, 146, 92, 63, 22, 182, 48, 62, 82, 95, 89, 63, 22, 182, 48, 62, 64, 80, 85, 63, 22, 182, 48, 62, 216, 110, 80, 63, 22, 182, 48, 62, 36, 199, 74, 63, 22, 182, 48, 62, 19, 103, 68, 63, 22, 182, 48, 62, 94, 94, 61, 63, 22, 182, 48, 62, 93, 190, 53, 63, 22, 182, 48, 62, 220, 153, 45, 63, 22, 182, 48, 62, 237, 4, 37, 63, 22, 182, 48, 62, 186, 20, 28, 63, 22, 182, 48, 62, 76, 223, 18, 63, 22, 182, 48, 62, 86, 123, 9, 63, 22, 182, 48, 62, 0, 0, 0, 63, 22, 182, 48, 62, 84, 9, 237, 62, 22, 182, 48, 62, 105, 65, 218, 62, 22, 182, 48, 62, 140, 214, 199, 62, 22, 182, 48, 62, 38, 246, 181, 62, 22, 182, 48, 62, 73, 204, 164, 62, 22, 182, 48, 62, 70, 131, 148, 62, 22, 182, 48, 62, 67, 67, 133, 62, 22, 182, 48, 62, 180, 99, 110, 62, 22, 182, 48, 62, 112, 227, 84, 62, 22, 182, 48, 62, 158, 68, 62, 62, 22, 182, 48, 62, 254, 190, 42, 62, 22, 182, 48, 62, 182, 130, 26, 62, 22, 182, 48, 62, 200, 183, 13, 62, 22, 182, 48, 62, 196, 125, 4, 62, 22, 182, 48, 62, 200, 214, 253, 61, 22, 182, 48, 62, 204, 28, 250, 61, 22, 182, 48, 62, 200, 214, 253, 61, 22, 182, 48, 62, 196, 125, 4, 62, 22, 182, 48, 62, 200, 183, 13, 62, 22, 182, 48, 62, 182, 130, 26, 62, 22, 182, 48, 62, 254, 190, 42, 62, 22, 182, 48, 62, 158, 68, 62, 62, 22, 182, 48, 62, 112, 227, 84, 62, 22, 182, 48, 62, 180, 99, 110, 62, 22, 182, 48, 62, 67, 67, 133, 62, 22, 182, 48, 62, 70, 131, 148, 62, 22, 182, 48, 62, 73, 204, 164, 62, 22, 182, 48, 62, 38, 246, 181, 62, 22, 182, 48, 62, 140, 214, 199, 62, 22, 182, 48, 62, 105, 65, 218, 62, 22, 182, 48, 62, 84, 9, 237, 62, 22, 182, 48, 62, 0, 0, 0, 63, 22, 182, 48, 62, 0, 0, 0, 63, 188, 114, 13, 62, 106, 168, 8, 63, 188, 114, 13, 62, 123, 59, 17, 63, 188, 114, 13, 62, 17, 164, 25, 63, 188, 114, 13, 62, 111, 205, 33, 63, 188, 114, 13, 62, 119, 163, 41, 63, 188, 114, 13, 62, 214, 18, 49, 63, 188, 114, 13, 62, 58, 9, 56, 63, 188, 114, 13, 62, 118, 117, 62, 63, 188, 114, 13, 62, 180, 71, 68, 63, 188, 114, 13, 62, 158, 113, 73, 63, 188, 114, 13, 62, 116, 230, 77, 63, 188, 114, 13, 62, 60, 155, 81, 63, 188, 114, 13, 62, 210, 134, 84, 63, 188, 114, 13, 62, 4, 162, 86, 63, 188, 114, 13, 62, 160, 231, 87, 63, 188, 114, 13, 62, 130, 84, 88, 63, 188, 114, 13, 62, 160, 231, 87, 63, 188, 114, 13, 62, 4, 162, 86, 63, 188, 114, 13, 62, 210, 134, 84, 63, 188, 114, 13, 62, 60, 155, 81, 63, 188, 114, 13, 62, 116, 230, 77, 63, 188, 114, 13, 62, 158, 113, 73, 63, 188, 114, 13, 62, 180, 71, 68, 63, 188, 114, 13, 62, 118, 117, 62, 63, 188, 114, 13, 62, 58, 9, 56, 63, 188, 114, 13, 62, 214, 18, 49, 63, 188, 114, 13, 62, 119, 163, 41, 63, 188, 114, 13, 62, 111, 205, 33, 63, 188, 114, 13, 62, 17, 164, 25, 63, 188, 114, 13, 62, 123, 59, 17, 63, 188, 114, 13, 62, 106, 168, 8, 63, 188, 114, 13, 62, 0, 0, 0, 63, 188, 114, 13, 62, 44, 175, 238, 62, 188, 114, 13, 62, 9, 137, 221, 62, 188, 114, 13, 62, 223, 183, 204, 62, 188, 114, 13, 62, 34, 101, 188, 62, 188, 114, 13, 62, 18, 185, 172, 62, 188, 114, 13, 62, 83, 218, 157, 62, 188, 114, 13, 62, 141, 237, 143, 62, 188, 114, 13, 62, 21, 21, 131, 62, 188, 114, 13, 62, 46, 225, 110, 62, 188, 114, 13, 62, 138, 57, 90, 62, 188, 114, 13, 62, 48, 102, 72, 62, 188, 114, 13, 62, 16, 147, 57, 62, 188, 114, 13, 62, 182, 228, 45, 62, 188, 114, 13, 62, 240, 119, 37, 62, 188, 114, 13, 62, 128, 97, 32, 62, 188, 114, 13, 62, 246, 173, 30, 62, 188, 114, 13, 62, 128, 97, 32, 62, 188, 114, 13, 62, 240, 119, 37, 62, 188, 114, 13, 62, 182, 228, 45, 62, 188, 114, 13, 62, 16, 147, 57, 62, 188, 114, 13, 62, 48, 102, 72, 62, 188, 114, 13, 62, 138, 57, 90, 62, 188, 114, 13, 62, 46, 225, 110, 62, 188, 114, 13, 62, 21, 21, 131, 62, 188, 114, 13, 62, 141, 237, 143, 62, 188, 114, 13, 62, 83, 218, 157, 62, 188, 114, 13, 62, 18, 185, 172, 62, 188, 114, 13, 62, 34, 101, 188, 62, 188, 114, 13, 62, 223, 183, 204, 62, 188, 114, 13, 62, 9, 137, 221, 62, 188, 114, 13, 62, 44, 175, 238, 62, 188, 114, 13, 62, 0, 0, 0, 63, 188, 114, 13, 62, 0, 0, 0, 63, 228, 20, 219, 61, 107, 193, 7, 63, 228, 20, 219, 61, 184, 111, 15, 63, 228, 20, 219, 61, 245, 247, 22, 63, 228, 20, 219, 61, 146, 71, 30, 63, 228, 20, 219, 61, 136, 76, 37, 63, 228, 20, 219, 61, 138, 245, 43, 63, 228, 20, 219, 61, 42, 50, 50, 63, 228, 20, 219, 61, 9, 243, 55, 63, 228, 20, 219, 61, 248, 41, 61, 63, 228, 20, 219, 61, 28, 202, 65, 63, 228, 20, 219, 61, 12, 200, 69, 63, 228, 20, 219, 61, 242, 25, 73, 63, 228, 20, 219, 61, 160, 183, 75, 63, 228, 20, 219, 61, 159, 154, 77, 63, 228, 20, 219, 61, 76, 190, 78, 63, 228, 20, 219, 61, 213, 31, 79, 63, 228, 20, 219, 61, 76, 190, 78, 63, 228, 20, 219, 61, 159, 154, 77, 63, 228, 20, 219, 61, 160, 183, 75, 63, 228, 20, 219, 61, 242, 25, 73, 63, 228, 20, 219, 61, 12, 200, 69, 63, 228, 20, 219, 61, 28, 202, 65, 63, 228, 20, 219, 61, 248, 41, 61, 63, 228, 20, 219, 61, 9, 243, 55, 63, 228, 20, 219, 61, 42, 50, 50, 63, 228, 20, 219, 61, 138, 245, 43, 63, 228, 20, 219, 61, 136, 76, 37, 63, 228, 20, 219, 61, 146, 71, 30, 63, 228, 20, 219, 61, 245, 247, 22, 63, 228, 20, 219, 61, 184, 111, 15, 63, 228, 20, 219, 61, 107, 193, 7, 63, 228, 20, 219, 61, 0, 0, 0, 63, 228, 20, 219, 61, 42, 125, 240, 62, 228, 20, 219, 61, 145, 32, 225, 62, 228, 20, 219, 61, 22, 16, 210, 62, 228, 20, 219, 61, 220, 112, 195, 62, 228, 20, 219, 61, 239, 102, 181, 62, 228, 20, 219, 61, 237, 20, 168, 62, 228, 20, 219, 61, 172, 155, 155, 62, 228, 20, 219, 61, 238, 25, 144, 62, 228, 20, 219, 61, 16, 172, 133, 62, 228, 20, 219, 61, 144, 215, 120, 62, 228, 20, 219, 61, 206, 223, 104, 62, 228, 20, 219, 61, 54, 152, 91, 62, 228, 20, 219, 61, 130, 33, 81, 62, 228, 20, 219, 61, 132, 149, 73, 62, 228, 20, 219, 61, 210, 6, 69, 62, 228, 20, 219, 61, 172, 128, 67, 62, 228, 20, 219, 61, 210, 6, 69, 62, 228, 20, 219, 61, 132, 149, 73, 62, 228, 20, 219, 61, 130, 33, 81, 62, 228, 20, 219, 61, 54, 152, 91, 62, 228, 20, 219, 61, 206, 223, 104, 62, 228, 20, 219, 61, 144, 215, 120, 62, 228, 20, 219, 61, 16, 172, 133, 62, 228, 20, 219, 61, 238, 25, 144, 62, 228, 20, 219, 61, 172, 155, 155, 62, 228, 20, 219, 61, 237, 20, 168, 62, 228, 20, 219, 61, 239, 102, 181, 62, 228, 20, 219, 61, 220, 112, 195, 62, 228, 20, 219, 61, 22, 16, 210, 62, 228, 20, 219, 61, 145, 32, 225, 62, 228, 20, 219, 61, 42, 125, 240, 62, 228, 20, 219, 61, 0, 0, 0, 63, 228, 20, 219, 61, 0, 0, 0, 63, 112, 142, 162, 61, 114, 200, 6, 63, 112, 142, 162, 61, 42, 128, 13, 63, 112, 142, 162, 61, 154, 22, 20, 63, 112, 142, 162, 61, 131, 123, 26, 63, 112, 142, 162, 61, 34, 159, 32, 63, 112, 142, 162, 61, 84, 114, 38, 63, 112, 142, 162, 61, 188, 230, 43, 63, 112, 142, 162, 61, 232, 238, 48, 63, 112, 142, 162, 61, 112, 126, 53, 63, 112, 142, 162, 61, 21, 138, 57, 63, 112, 142, 162, 61, 222, 7, 61, 63, 112, 142, 162, 61, 48, 239, 63, 63, 112, 142, 162, 61, 227, 56, 66, 63, 112, 142, 162, 61, 81, 223, 67, 63, 112, 142, 162, 61, 106, 222, 68, 63, 112, 142, 162, 61, 184, 51, 69, 63, 112, 142, 162, 61, 106, 222, 68, 63, 112, 142, 162, 61, 81, 223, 67, 63, 112, 142, 162, 61, 227, 56, 66, 63, 112, 142, 162, 61, 48, 239, 63, 63, 112, 142, 162, 61, 222, 7, 61, 63, 112, 142, 162, 61, 21, 138, 57, 63, 112, 142, 162, 61, 112, 126, 53, 63, 112, 142, 162, 61, 232, 238, 48, 63, 112, 142, 162, 61, 188, 230, 43, 63, 112, 142, 162, 61, 84, 114, 38, 63, 112, 142, 162, 61, 34, 159, 32, 63, 112, 142, 162, 61, 131, 123, 26, 63, 112, 142, 162, 61, 154, 22, 20, 63, 112, 142, 162, 61, 42, 128, 13, 63, 112, 142, 162, 61, 114, 200, 6, 63, 112, 142, 162, 61, 0, 0, 0, 63, 112, 142, 162, 61, 29, 111, 242, 62, 112, 142, 162, 61, 171, 255, 228, 62, 112, 142, 162, 61, 204, 210, 215, 62, 112, 142, 162, 61, 250, 8, 203, 62, 112, 142, 162, 61, 188, 193, 190, 62, 112, 142, 162, 61, 89, 27, 179, 62, 112, 142, 162, 61, 137, 50, 168, 62, 112, 142, 162, 61, 49, 34, 158, 62, 112, 142, 162, 61, 33, 3, 149, 62, 112, 142, 162, 61, 214, 235, 140, 62, 112, 142, 162, 61, 67, 240, 133, 62, 112, 142, 162, 61, 159, 33, 128, 62, 112, 142, 162, 61, 116, 28, 119, 62, 112, 142, 162, 61, 188, 130, 112, 62, 112, 142, 162, 61, 90, 134, 108, 62, 112, 142, 162, 61, 32, 49, 107, 62, 112, 142, 162, 61, 90, 134, 108, 62, 112, 142, 162, 61, 188, 130, 112, 62, 112, 142, 162, 61, 116, 28, 119, 62, 112, 142, 162, 61, 159, 33, 128, 62, 112, 142, 162, 61, 67, 240, 133, 62, 112, 142, 162, 61, 214, 235, 140, 62, 112, 142, 162, 61, 33, 3, 149, 62, 112, 142, 162, 61, 49, 34, 158, 62, 112, 142, 162, 61, 137, 50, 168, 62, 112, 142, 162, 61, 89, 27, 179, 62, 112, 142, 162, 61, 188, 193, 190, 62, 112, 142, 162, 61, 250, 8, 203, 62, 112, 142, 162, 61, 204, 210, 215, 62, 112, 142, 162, 61, 171, 255, 228, 62, 112, 142, 162, 61, 29, 111, 242, 62, 112, 142, 162, 61, 0, 0, 0, 63, 112, 142, 162, 61, 0, 0, 0, 63, 56, 170, 99, 61, 190, 191, 5, 63, 56, 170, 99, 61, 80, 113, 11, 63, 56, 170, 99, 61, 172, 6, 17, 63, 56, 170, 99, 61, 14, 114, 22, 63, 56, 170, 99, 61, 26, 166, 27, 63, 56, 170, 99, 61, 250, 149, 32, 63, 56, 170, 99, 61, 133, 53, 37, 63, 56, 170, 99, 61, 83, 121, 41, 63, 56, 170, 99, 61, 225, 86, 45, 63, 56, 170, 99, 61, 167, 196, 48, 63, 56, 170, 99, 61, 50, 186, 51, 63, 56, 170, 99, 61, 52, 48, 54, 63, 56, 170, 99, 61, 158, 32, 56, 63, 56, 170, 99, 61, 167, 134, 57, 63, 56, 170, 99, 61, 221, 94, 58, 63, 56, 170, 99, 61, 42, 167, 58, 63, 56, 170, 99, 61, 221, 94, 58, 63, 56, 170, 99, 61, 167, 134, 57, 63, 56, 170, 99, 61, 158, 32, 56, 63, 56, 170, 99, 61, 52, 48, 54, 63, 56, 170, 99, 61, 50, 186, 51, 63, 56, 170, 99, 61, 167, 196, 48, 63, 56, 170, 99, 61, 225, 86, 45, 63, 56, 170, 99, 61, 83, 121, 41, 63, 56, 170, 99, 61, 133, 53, 37, 63, 56, 170, 99, 61, 250, 149, 32, 63, 56, 170, 99, 61, 26, 166, 27, 63, 56, 170, 99, 61, 14, 114, 22, 63, 56, 170, 99, 61, 172, 6, 17, 63, 56, 170, 99, 61, 80, 113, 11, 63, 56, 170, 99, 61, 190, 191, 5, 63, 56, 170, 99, 61, 0, 0, 0, 63, 56, 170, 99, 61, 131, 128, 244, 62, 56, 170, 99, 61, 96, 29, 233, 62, 56, 170, 99, 61, 168, 242, 221, 62, 56, 170, 99, 61, 228, 27, 211, 62, 56, 170, 99, 61, 205, 179, 200, 62, 56, 170, 99, 61, 11, 212, 190, 62, 56, 170, 99, 61, 246, 148, 181, 62, 56, 170, 99, 61, 90, 13, 173, 62, 56, 170, 99, 61, 62, 82, 165, 62, 56, 170, 99, 61, 178, 118, 158, 62, 56, 170, 99, 61, 157, 139, 152, 62, 56, 170, 99, 61, 152, 159, 147, 62, 56, 170, 99, 61, 196, 190, 143, 62, 56, 170, 99, 61, 178, 242, 140, 62, 56, 170, 99, 61, 70, 66, 139, 62, 56, 170, 99, 61, 172, 177, 138, 62, 56, 170, 99, 61, 70, 66, 139, 62, 56, 170, 99, 61, 178, 242, 140, 62, 56, 170, 99, 61, 196, 190, 143, 62, 56, 170, 99, 61, 152, 159, 147, 62, 56, 170, 99, 61, 157, 139, 152, 62, 56, 170, 99, 61, 178, 118, 158, 62, 56, 170, 99, 61, 62, 82, 165, 62, 56, 170, 99, 61, 90, 13, 173, 62, 56, 170, 99, 61, 246, 148, 181, 62, 56, 170, 99, 61, 11, 212, 190, 62, 56, 170, 99, 61, 205, 179, 200, 62, 56, 170, 99, 61, 228, 27, 211, 62, 56, 170, 99, 61, 168, 242, 221, 62, 56, 170, 99, 61, 96, 29, 233, 62, 56, 170, 99, 61, 131, 128, 244, 62, 56, 170, 99, 61, 0, 0, 0, 63, 56, 170, 99, 61, 0, 0, 0, 63, 216, 179, 18, 61, 183, 169, 4, 63, 216, 179, 18, 61, 239, 71, 9, 63, 216, 179, 18, 61, 69, 207, 13, 63, 216, 179, 18, 61, 144, 52, 18, 63, 216, 179, 18, 61, 248, 108, 22, 63, 216, 179, 18, 61, 22, 110, 26, 63, 216, 179, 18, 61, 11, 46, 30, 63, 216, 179, 18, 61, 152, 163, 33, 63, 216, 179, 18, 61, 54, 198, 36, 63, 216, 179, 18, 61, 42, 142, 39, 63, 216, 179, 18, 61, 153, 244, 41, 63, 216, 179, 18, 61, 152, 243, 43, 63, 216, 179, 18, 61, 58, 134, 45, 63, 216, 179, 18, 61, 160, 168, 46, 63, 216, 179, 18, 61, 254, 87, 47, 63, 216, 179, 18, 61, 163, 146, 47, 63, 216, 179, 18, 61, 254, 87, 47, 63, 216, 179, 18, 61, 160, 168, 46, 63, 216, 179, 18, 61, 58, 134, 45, 63, 216, 179, 18, 61, 152, 243, 43, 63, 216, 179, 18, 61, 153, 244, 41, 63, 216, 179, 18, 61, 42, 142, 39, 63, 216, 179, 18, 61, 54, 198, 36, 63, 216, 179, 18, 61, 152, 163, 33, 63, 216, 179, 18, 61, 11, 46, 30, 63, 216, 179, 18, 61, 22, 110, 26, 63, 216, 179, 18, 61, 248, 108, 22, 63, 216, 179, 18, 61, 144, 52, 18, 63, 216, 179, 18, 61, 69, 207, 13, 63, 216, 179, 18, 61, 239, 71, 9, 63, 216, 179, 18, 61, 183, 169, 4, 63, 216, 179, 18, 61, 0, 0, 0, 63, 216, 179, 18, 61, 146, 172, 246, 62, 216, 179, 18, 61, 34, 112, 237, 62, 216, 179, 18, 61, 117, 97, 228, 62, 216, 179, 18, 61, 224, 150, 219, 62, 216, 179, 18, 61, 16, 38, 211, 62, 216, 179, 18, 61, 211, 35, 203, 62, 216, 179, 18, 61, 233, 163, 195, 62, 216, 179, 18, 61, 207, 184, 188, 62, 216, 179, 18, 61, 147, 115, 182, 62, 216, 179, 18, 61, 172, 227, 176, 62, 216, 179, 18, 61, 206, 22, 172, 62, 216, 179, 18, 61, 209, 24, 168, 62, 216, 179, 18, 61, 140, 243, 164, 62, 216, 179, 18, 61, 192, 174, 162, 62, 216, 179, 18, 61, 4, 80, 161, 62, 216, 179, 18, 61, 186, 218, 160, 62, 216, 179, 18, 61, 4, 80, 161, 62, 216, 179, 18, 61, 192, 174, 162, 62, 216, 179, 18, 61, 140, 243, 164, 62, 216, 179, 18, 61, 209, 24, 168, 62, 216, 179, 18, 61, 206, 22, 172, 62, 216, 179, 18, 61, 172, 227, 176, 62, 216, 179, 18, 61, 147, 115, 182, 62, 216, 179, 18, 61, 207, 184, 188, 62, 216, 179, 18, 61, 233, 163, 195, 62, 216, 179, 18, 61, 211, 35, 203, 62, 216, 179, 18, 61, 16, 38, 211, 62, 216, 179, 18, 61, 224, 150, 219, 62, 216, 179, 18, 61, 117, 97, 228, 62, 216, 179, 18, 61, 34, 112, 237, 62, 216, 179, 18, 61, 146, 172, 246, 62, 216, 179, 18, 61, 0, 0, 0, 63, 216, 179, 18, 61, 0, 0, 0, 63, 176, 234, 165, 60, 224, 136, 3, 63, 176, 234, 165, 60, 9, 9, 7, 63, 176, 234, 165, 60, 218, 119, 10, 63, 176, 234, 165, 60, 220, 204, 13, 63, 176, 234, 165, 60, 216, 255, 16, 63, 176, 234, 165, 60, 235, 8, 20, 63, 176, 234, 165, 60, 153, 224, 22, 63, 176, 234, 165, 60, 224, 127, 25, 63, 176, 234, 165, 60, 73, 224, 27, 63, 176, 234, 165, 60, 248, 251, 29, 63, 176, 234, 165, 60, 187, 205, 31, 63, 176, 234, 165, 60, 20, 81, 33, 63, 176, 234, 165, 60, 74, 130, 34, 63, 176, 234, 165, 60, 108, 94, 35, 63, 176, 234, 165, 60, 91, 227, 35, 63, 176, 234, 165, 60, 207, 15, 36, 63, 176, 234, 165, 60, 91, 227, 35, 63, 176, 234, 165, 60, 108, 94, 35, 63, 176, 234, 165, 60, 74, 130, 34, 63, 176, 234, 165, 60, 20, 81, 33, 63, 176, 234, 165, 60, 187, 205, 31, 63, 176, 234, 165, 60, 248, 251, 29, 63, 176, 234, 165, 60, 73, 224, 27, 63, 176, 234, 165, 60, 224, 127, 25, 63, 176, 234, 165, 60, 153, 224, 22, 63, 176, 234, 165, 60, 235, 8, 20, 63, 176, 234, 165, 60, 216, 255, 16, 63, 176, 234, 165, 60, 220, 204, 13, 63, 176, 234, 165, 60, 218, 119, 10, 63, 176, 234, 165, 60, 9, 9, 7, 63, 176, 234, 165, 60, 224, 136, 3, 63, 176, 234, 165, 60, 0, 0, 0, 63, 176, 234, 165, 60, 64, 238, 248, 62, 176, 234, 165, 60, 237, 237, 241, 62, 176, 234, 165, 60, 75, 16, 235, 62, 176, 234, 165, 60, 71, 102, 228, 62, 176, 234, 165, 60, 79, 0, 222, 62, 176, 234, 165, 60, 42, 238, 215, 62, 176, 234, 165, 60, 206, 62, 210, 62, 176, 234, 165, 60, 64, 0, 205, 62, 176, 234, 165, 60, 110, 63, 200, 62, 176, 234, 165, 60, 16, 8, 196, 62, 176, 234, 165, 60, 138, 100, 192, 62, 176, 234, 165, 60, 215, 93, 189, 62, 176, 234, 165, 60, 107, 251, 186, 62, 176, 234, 165, 60, 40, 67, 185, 62, 176, 234, 165, 60, 74, 57, 184, 62, 176, 234, 165, 60, 98, 224, 183, 62, 176, 234, 165, 60, 74, 57, 184, 62, 176, 234, 165, 60, 40, 67, 185, 62, 176, 234, 165, 60, 107, 251, 186, 62, 176, 234, 165, 60, 215, 93, 189, 62, 176, 234, 165, 60, 138, 100, 192, 62, 176, 234, 165, 60, 16, 8, 196, 62, 176, 234, 165, 60, 110, 63, 200, 62, 176, 234, 165, 60, 64, 0, 205, 62, 176, 234, 165, 60, 206, 62, 210, 62, 176, 234, 165, 60, 42, 238, 215, 62, 176, 234, 165, 60, 79, 0, 222, 62, 176, 234, 165, 60, 71, 102, 228, 62, 176, 234, 165, 60, 75, 16, 235, 62, 176, 234, 165, 60, 237, 237, 241, 62, 176, 234, 165, 60, 64, 238, 248, 62, 176, 234, 165, 60, 0, 0, 0, 63, 176, 234, 165, 60, 0, 0, 0, 63, 64, 10, 20, 60, 216, 95, 2, 63, 64, 10, 20, 60, 213, 185, 4, 63, 64, 10, 20, 60, 43, 8, 7, 63, 64, 10, 20, 60, 43, 69, 9, 63, 64, 10, 20, 60, 80, 107, 11, 63, 64, 10, 20, 60, 78, 117, 13, 63, 64, 10, 20, 60, 30, 94, 15, 63, 64, 10, 20, 60, 10, 33, 17, 63, 64, 10, 20, 60, 188, 185, 18, 63, 64, 10, 20, 60, 67, 36, 20, 63, 64, 10, 20, 60, 34, 93, 21, 63, 64, 10, 20, 60, 85, 97, 22, 63, 64, 10, 20, 60, 91, 46, 23, 63, 64, 10, 20, 60, 58, 194, 23, 63, 64, 10, 20, 60, 134, 27, 24, 63, 64, 10, 20, 60, 98, 57, 24, 63, 64, 10, 20, 60, 134, 27, 24, 63, 64, 10, 20, 60, 58, 194, 23, 63, 64, 10, 20, 60, 91, 46, 23, 63, 64, 10, 20, 60, 85, 97, 22, 63, 64, 10, 20, 60, 34, 93, 21, 63, 64, 10, 20, 60, 67, 36, 20, 63, 64, 10, 20, 60, 188, 185, 18, 63, 64, 10, 20, 60, 10, 33, 17, 63, 64, 10, 20, 60, 30, 94, 15, 63, 64, 10, 20, 60, 78, 117, 13, 63, 64, 10, 20, 60, 80, 107, 11, 63, 64, 10, 20, 60, 43, 69, 9, 63, 64, 10, 20, 60, 43, 8, 7, 63, 64, 10, 20, 60, 213, 185, 4, 63, 64, 10, 20, 60, 216, 95, 2, 63, 64, 10, 20, 60, 0, 0, 0, 63, 64, 10, 20, 60, 81, 64, 251, 62, 64, 10, 20, 60, 87, 140, 246, 62, 64, 10, 20, 60, 171, 239, 241, 62, 64, 10, 20, 60, 170, 117, 237, 62, 64, 10, 20, 60, 96, 41, 233, 62, 64, 10, 20, 60, 100, 21, 229, 62, 64, 10, 20, 60, 196, 67, 225, 62, 64, 10, 20, 60, 235, 189, 221, 62, 64, 10, 20, 60, 136, 140, 218, 62, 64, 10, 20, 60, 122, 183, 215, 62, 64, 10, 20, 60, 188, 69, 213, 62, 64, 10, 20, 60, 86, 61, 211, 62, 64, 10, 20, 60, 74, 163, 209, 62, 64, 10, 20, 60, 140, 123, 208, 62, 64, 10, 20, 60, 244, 200, 207, 62, 64, 10, 20, 60, 59, 141, 207, 62, 64, 10, 20, 60, 244, 200, 207, 62, 64, 10, 20, 60, 140, 123, 208, 62, 64, 10, 20, 60, 74, 163, 209, 62, 64, 10, 20, 60, 86, 61, 211, 62, 64, 10, 20, 60, 188, 69, 213, 62, 64, 10, 20, 60, 122, 183, 215, 62, 64, 10, 20, 60, 136, 140, 218, 62, 64, 10, 20, 60, 235, 189, 221, 62, 64, 10, 20, 60, 196, 67, 225, 62, 64, 10, 20, 60, 100, 21, 229, 62, 64, 10, 20, 60, 96, 41, 233, 62, 64, 10, 20, 60, 170, 117, 237, 62, 64, 10, 20, 60, 171, 239, 241, 62, 64, 10, 20, 60, 87, 140, 246, 62, 64, 10, 20, 60, 81, 64, 251, 62, 64, 10, 20, 60, 0, 0, 0, 63, 64, 10, 20, 60, 0, 0, 0, 63, 0, 96, 20, 59, 78, 49, 1, 63, 0, 96, 20, 59, 171, 95, 2, 63, 0, 96, 20, 59, 45, 136, 3, 63, 0, 96, 20, 59, 251, 167, 4, 63, 0, 96, 20, 59, 78, 188, 5, 63, 0, 96, 20, 59, 125, 194, 6, 63, 0, 96, 20, 59, 1, 184, 7, 63, 0, 96, 20, 59, 126, 154, 8, 63, 0, 96, 20, 59, 197, 103, 9, 63, 0, 96, 20, 59, 219, 29, 10, 63, 0, 96, 20, 59, 1, 187, 10, 63, 0, 96, 20, 59, 178, 61, 11, 63, 0, 96, 20, 59, 172, 164, 11, 63, 0, 96, 20, 59, 242, 238, 11, 63, 0, 96, 20, 59, 204, 27, 12, 63, 0, 96, 20, 59, 203, 42, 12, 63, 0, 96, 20, 59, 204, 27, 12, 63, 0, 96, 20, 59, 242, 238, 11, 63, 0, 96, 20, 59, 172, 164, 11, 63, 0, 96, 20, 59, 178, 61, 11, 63, 0, 96, 20, 59, 1, 187, 10, 63, 0, 96, 20, 59, 219, 29, 10, 63, 0, 96, 20, 59, 197, 103, 9, 63, 0, 96, 20, 59, 126, 154, 8, 63, 0, 96, 20, 59, 1, 184, 7, 63, 0, 96, 20, 59, 125, 194, 6, 63, 0, 96, 20, 59, 78, 188, 5, 63, 0, 96, 20, 59, 251, 167, 4, 63, 0, 96, 20, 59, 45, 136, 3, 63, 0, 96, 20, 59, 171, 95, 2, 63, 0, 96, 20, 59, 78, 49, 1, 63, 0, 96, 20, 59, 0, 0, 0, 63, 0, 96, 20, 59, 101, 157, 253, 62, 0, 96, 20, 59, 171, 64, 251, 62, 0, 96, 20, 59, 166, 239, 248, 62, 0, 96, 20, 59, 10, 176, 246, 62, 0, 96, 20, 59, 101, 135, 244, 62, 0, 96, 20, 59, 7, 123, 242, 62, 0, 96, 20, 59, 254, 143, 240, 62, 0, 96, 20, 59, 4, 203, 238, 62, 0, 96, 20, 59, 119, 48, 237, 62, 0, 96, 20, 59, 74, 196, 235, 62, 0, 96, 20, 59, 255, 137, 234, 62, 0, 96, 20, 59, 157, 132, 233, 62, 0, 96, 20, 59, 168, 182, 232, 62, 0, 96, 20, 59, 29, 34, 232, 62, 0, 96, 20, 59, 105, 200, 231, 62, 0, 96, 20, 59, 106, 170, 231, 62, 0, 96, 20, 59, 105, 200, 231, 62, 0, 96, 20, 59, 29, 34, 232, 62, 0, 96, 20, 59, 168, 182, 232, 62, 0, 96, 20, 59, 157, 132, 233, 62, 0, 96, 20, 59, 255, 137, 234, 62, 0, 96, 20, 59, 74, 196, 235, 62, 0, 96, 20, 59, 119, 48, 237, 62, 0, 96, 20, 59, 4, 203, 238, 62, 0, 96, 20, 59, 254, 143, 240, 62, 0, 96, 20, 59, 7, 123, 242, 62, 0, 96, 20, 59, 101, 135, 244, 62, 0, 96, 20, 59, 10, 176, 246, 62, 0, 96, 20, 59, 166, 239, 248, 62, 0, 96, 20, 59, 171, 64, 251, 62, 0, 96, 20, 59, 101, 157, 253, 62, 0, 96, 20, 59, 0, 0, 0, 63, 0, 96, 20, 59, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0), +"format": 4119, +"index_count": 12672, +"index_data": PackedByteArray(0, 0, 1, 0, 65, 0, 1, 0, 66, 0, 65, 0, 1, 0, 2, 0, 66, 0, 2, 0, 67, 0, 66, 0, 2, 0, 3, 0, 67, 0, 3, 0, 68, 0, 67, 0, 3, 0, 4, 0, 68, 0, 4, 0, 69, 0, 68, 0, 4, 0, 5, 0, 69, 0, 5, 0, 70, 0, 69, 0, 5, 0, 6, 0, 70, 0, 6, 0, 71, 0, 70, 0, 6, 0, 7, 0, 71, 0, 7, 0, 72, 0, 71, 0, 7, 0, 8, 0, 72, 0, 8, 0, 73, 0, 72, 0, 8, 0, 9, 0, 73, 0, 9, 0, 74, 0, 73, 0, 9, 0, 10, 0, 74, 0, 10, 0, 75, 0, 74, 0, 10, 0, 11, 0, 75, 0, 11, 0, 76, 0, 75, 0, 11, 0, 12, 0, 76, 0, 12, 0, 77, 0, 76, 0, 12, 0, 13, 0, 77, 0, 13, 0, 78, 0, 77, 0, 13, 0, 14, 0, 78, 0, 14, 0, 79, 0, 78, 0, 14, 0, 15, 0, 79, 0, 15, 0, 80, 0, 79, 0, 15, 0, 16, 0, 80, 0, 16, 0, 81, 0, 80, 0, 16, 0, 17, 0, 81, 0, 17, 0, 82, 0, 81, 0, 17, 0, 18, 0, 82, 0, 18, 0, 83, 0, 82, 0, 18, 0, 19, 0, 83, 0, 19, 0, 84, 0, 83, 0, 19, 0, 20, 0, 84, 0, 20, 0, 85, 0, 84, 0, 20, 0, 21, 0, 85, 0, 21, 0, 86, 0, 85, 0, 21, 0, 22, 0, 86, 0, 22, 0, 87, 0, 86, 0, 22, 0, 23, 0, 87, 0, 23, 0, 88, 0, 87, 0, 23, 0, 24, 0, 88, 0, 24, 0, 89, 0, 88, 0, 24, 0, 25, 0, 89, 0, 25, 0, 90, 0, 89, 0, 25, 0, 26, 0, 90, 0, 26, 0, 91, 0, 90, 0, 26, 0, 27, 0, 91, 0, 27, 0, 92, 0, 91, 0, 27, 0, 28, 0, 92, 0, 28, 0, 93, 0, 92, 0, 28, 0, 29, 0, 93, 0, 29, 0, 94, 0, 93, 0, 29, 0, 30, 0, 94, 0, 30, 0, 95, 0, 94, 0, 30, 0, 31, 0, 95, 0, 31, 0, 96, 0, 95, 0, 31, 0, 32, 0, 96, 0, 32, 0, 97, 0, 96, 0, 32, 0, 33, 0, 97, 0, 33, 0, 98, 0, 97, 0, 33, 0, 34, 0, 98, 0, 34, 0, 99, 0, 98, 0, 34, 0, 35, 0, 99, 0, 35, 0, 100, 0, 99, 0, 35, 0, 36, 0, 100, 0, 36, 0, 101, 0, 100, 0, 36, 0, 37, 0, 101, 0, 37, 0, 102, 0, 101, 0, 37, 0, 38, 0, 102, 0, 38, 0, 103, 0, 102, 0, 38, 0, 39, 0, 103, 0, 39, 0, 104, 0, 103, 0, 39, 0, 40, 0, 104, 0, 40, 0, 105, 0, 104, 0, 40, 0, 41, 0, 105, 0, 41, 0, 106, 0, 105, 0, 41, 0, 42, 0, 106, 0, 42, 0, 107, 0, 106, 0, 42, 0, 43, 0, 107, 0, 43, 0, 108, 0, 107, 0, 43, 0, 44, 0, 108, 0, 44, 0, 109, 0, 108, 0, 44, 0, 45, 0, 109, 0, 45, 0, 110, 0, 109, 0, 45, 0, 46, 0, 110, 0, 46, 0, 111, 0, 110, 0, 46, 0, 47, 0, 111, 0, 47, 0, 112, 0, 111, 0, 47, 0, 48, 0, 112, 0, 48, 0, 113, 0, 112, 0, 48, 0, 49, 0, 113, 0, 49, 0, 114, 0, 113, 0, 49, 0, 50, 0, 114, 0, 50, 0, 115, 0, 114, 0, 50, 0, 51, 0, 115, 0, 51, 0, 116, 0, 115, 0, 51, 0, 52, 0, 116, 0, 52, 0, 117, 0, 116, 0, 52, 0, 53, 0, 117, 0, 53, 0, 118, 0, 117, 0, 53, 0, 54, 0, 118, 0, 54, 0, 119, 0, 118, 0, 54, 0, 55, 0, 119, 0, 55, 0, 120, 0, 119, 0, 55, 0, 56, 0, 120, 0, 56, 0, 121, 0, 120, 0, 56, 0, 57, 0, 121, 0, 57, 0, 122, 0, 121, 0, 57, 0, 58, 0, 122, 0, 58, 0, 123, 0, 122, 0, 58, 0, 59, 0, 123, 0, 59, 0, 124, 0, 123, 0, 59, 0, 60, 0, 124, 0, 60, 0, 125, 0, 124, 0, 60, 0, 61, 0, 125, 0, 61, 0, 126, 0, 125, 0, 61, 0, 62, 0, 126, 0, 62, 0, 127, 0, 126, 0, 62, 0, 63, 0, 127, 0, 63, 0, 128, 0, 127, 0, 63, 0, 64, 0, 128, 0, 64, 0, 129, 0, 128, 0, 65, 0, 66, 0, 130, 0, 66, 0, 131, 0, 130, 0, 66, 0, 67, 0, 131, 0, 67, 0, 132, 0, 131, 0, 67, 0, 68, 0, 132, 0, 68, 0, 133, 0, 132, 0, 68, 0, 69, 0, 133, 0, 69, 0, 134, 0, 133, 0, 69, 0, 70, 0, 134, 0, 70, 0, 135, 0, 134, 0, 70, 0, 71, 0, 135, 0, 71, 0, 136, 0, 135, 0, 71, 0, 72, 0, 136, 0, 72, 0, 137, 0, 136, 0, 72, 0, 73, 0, 137, 0, 73, 0, 138, 0, 137, 0, 73, 0, 74, 0, 138, 0, 74, 0, 139, 0, 138, 0, 74, 0, 75, 0, 139, 0, 75, 0, 140, 0, 139, 0, 75, 0, 76, 0, 140, 0, 76, 0, 141, 0, 140, 0, 76, 0, 77, 0, 141, 0, 77, 0, 142, 0, 141, 0, 77, 0, 78, 0, 142, 0, 78, 0, 143, 0, 142, 0, 78, 0, 79, 0, 143, 0, 79, 0, 144, 0, 143, 0, 79, 0, 80, 0, 144, 0, 80, 0, 145, 0, 144, 0, 80, 0, 81, 0, 145, 0, 81, 0, 146, 0, 145, 0, 81, 0, 82, 0, 146, 0, 82, 0, 147, 0, 146, 0, 82, 0, 83, 0, 147, 0, 83, 0, 148, 0, 147, 0, 83, 0, 84, 0, 148, 0, 84, 0, 149, 0, 148, 0, 84, 0, 85, 0, 149, 0, 85, 0, 150, 0, 149, 0, 85, 0, 86, 0, 150, 0, 86, 0, 151, 0, 150, 0, 86, 0, 87, 0, 151, 0, 87, 0, 152, 0, 151, 0, 87, 0, 88, 0, 152, 0, 88, 0, 153, 0, 152, 0, 88, 0, 89, 0, 153, 0, 89, 0, 154, 0, 153, 0, 89, 0, 90, 0, 154, 0, 90, 0, 155, 0, 154, 0, 90, 0, 91, 0, 155, 0, 91, 0, 156, 0, 155, 0, 91, 0, 92, 0, 156, 0, 92, 0, 157, 0, 156, 0, 92, 0, 93, 0, 157, 0, 93, 0, 158, 0, 157, 0, 93, 0, 94, 0, 158, 0, 94, 0, 159, 0, 158, 0, 94, 0, 95, 0, 159, 0, 95, 0, 160, 0, 159, 0, 95, 0, 96, 0, 160, 0, 96, 0, 161, 0, 160, 0, 96, 0, 97, 0, 161, 0, 97, 0, 162, 0, 161, 0, 97, 0, 98, 0, 162, 0, 98, 0, 163, 0, 162, 0, 98, 0, 99, 0, 163, 0, 99, 0, 164, 0, 163, 0, 99, 0, 100, 0, 164, 0, 100, 0, 165, 0, 164, 0, 100, 0, 101, 0, 165, 0, 101, 0, 166, 0, 165, 0, 101, 0, 102, 0, 166, 0, 102, 0, 167, 0, 166, 0, 102, 0, 103, 0, 167, 0, 103, 0, 168, 0, 167, 0, 103, 0, 104, 0, 168, 0, 104, 0, 169, 0, 168, 0, 104, 0, 105, 0, 169, 0, 105, 0, 170, 0, 169, 0, 105, 0, 106, 0, 170, 0, 106, 0, 171, 0, 170, 0, 106, 0, 107, 0, 171, 0, 107, 0, 172, 0, 171, 0, 107, 0, 108, 0, 172, 0, 108, 0, 173, 0, 172, 0, 108, 0, 109, 0, 173, 0, 109, 0, 174, 0, 173, 0, 109, 0, 110, 0, 174, 0, 110, 0, 175, 0, 174, 0, 110, 0, 111, 0, 175, 0, 111, 0, 176, 0, 175, 0, 111, 0, 112, 0, 176, 0, 112, 0, 177, 0, 176, 0, 112, 0, 113, 0, 177, 0, 113, 0, 178, 0, 177, 0, 113, 0, 114, 0, 178, 0, 114, 0, 179, 0, 178, 0, 114, 0, 115, 0, 179, 0, 115, 0, 180, 0, 179, 0, 115, 0, 116, 0, 180, 0, 116, 0, 181, 0, 180, 0, 116, 0, 117, 0, 181, 0, 117, 0, 182, 0, 181, 0, 117, 0, 118, 0, 182, 0, 118, 0, 183, 0, 182, 0, 118, 0, 119, 0, 183, 0, 119, 0, 184, 0, 183, 0, 119, 0, 120, 0, 184, 0, 120, 0, 185, 0, 184, 0, 120, 0, 121, 0, 185, 0, 121, 0, 186, 0, 185, 0, 121, 0, 122, 0, 186, 0, 122, 0, 187, 0, 186, 0, 122, 0, 123, 0, 187, 0, 123, 0, 188, 0, 187, 0, 123, 0, 124, 0, 188, 0, 124, 0, 189, 0, 188, 0, 124, 0, 125, 0, 189, 0, 125, 0, 190, 0, 189, 0, 125, 0, 126, 0, 190, 0, 126, 0, 191, 0, 190, 0, 126, 0, 127, 0, 191, 0, 127, 0, 192, 0, 191, 0, 127, 0, 128, 0, 192, 0, 128, 0, 193, 0, 192, 0, 128, 0, 129, 0, 193, 0, 129, 0, 194, 0, 193, 0, 130, 0, 131, 0, 195, 0, 131, 0, 196, 0, 195, 0, 131, 0, 132, 0, 196, 0, 132, 0, 197, 0, 196, 0, 132, 0, 133, 0, 197, 0, 133, 0, 198, 0, 197, 0, 133, 0, 134, 0, 198, 0, 134, 0, 199, 0, 198, 0, 134, 0, 135, 0, 199, 0, 135, 0, 200, 0, 199, 0, 135, 0, 136, 0, 200, 0, 136, 0, 201, 0, 200, 0, 136, 0, 137, 0, 201, 0, 137, 0, 202, 0, 201, 0, 137, 0, 138, 0, 202, 0, 138, 0, 203, 0, 202, 0, 138, 0, 139, 0, 203, 0, 139, 0, 204, 0, 203, 0, 139, 0, 140, 0, 204, 0, 140, 0, 205, 0, 204, 0, 140, 0, 141, 0, 205, 0, 141, 0, 206, 0, 205, 0, 141, 0, 142, 0, 206, 0, 142, 0, 207, 0, 206, 0, 142, 0, 143, 0, 207, 0, 143, 0, 208, 0, 207, 0, 143, 0, 144, 0, 208, 0, 144, 0, 209, 0, 208, 0, 144, 0, 145, 0, 209, 0, 145, 0, 210, 0, 209, 0, 145, 0, 146, 0, 210, 0, 146, 0, 211, 0, 210, 0, 146, 0, 147, 0, 211, 0, 147, 0, 212, 0, 211, 0, 147, 0, 148, 0, 212, 0, 148, 0, 213, 0, 212, 0, 148, 0, 149, 0, 213, 0, 149, 0, 214, 0, 213, 0, 149, 0, 150, 0, 214, 0, 150, 0, 215, 0, 214, 0, 150, 0, 151, 0, 215, 0, 151, 0, 216, 0, 215, 0, 151, 0, 152, 0, 216, 0, 152, 0, 217, 0, 216, 0, 152, 0, 153, 0, 217, 0, 153, 0, 218, 0, 217, 0, 153, 0, 154, 0, 218, 0, 154, 0, 219, 0, 218, 0, 154, 0, 155, 0, 219, 0, 155, 0, 220, 0, 219, 0, 155, 0, 156, 0, 220, 0, 156, 0, 221, 0, 220, 0, 156, 0, 157, 0, 221, 0, 157, 0, 222, 0, 221, 0, 157, 0, 158, 0, 222, 0, 158, 0, 223, 0, 222, 0, 158, 0, 159, 0, 223, 0, 159, 0, 224, 0, 223, 0, 159, 0, 160, 0, 224, 0, 160, 0, 225, 0, 224, 0, 160, 0, 161, 0, 225, 0, 161, 0, 226, 0, 225, 0, 161, 0, 162, 0, 226, 0, 162, 0, 227, 0, 226, 0, 162, 0, 163, 0, 227, 0, 163, 0, 228, 0, 227, 0, 163, 0, 164, 0, 228, 0, 164, 0, 229, 0, 228, 0, 164, 0, 165, 0, 229, 0, 165, 0, 230, 0, 229, 0, 165, 0, 166, 0, 230, 0, 166, 0, 231, 0, 230, 0, 166, 0, 167, 0, 231, 0, 167, 0, 232, 0, 231, 0, 167, 0, 168, 0, 232, 0, 168, 0, 233, 0, 232, 0, 168, 0, 169, 0, 233, 0, 169, 0, 234, 0, 233, 0, 169, 0, 170, 0, 234, 0, 170, 0, 235, 0, 234, 0, 170, 0, 171, 0, 235, 0, 171, 0, 236, 0, 235, 0, 171, 0, 172, 0, 236, 0, 172, 0, 237, 0, 236, 0, 172, 0, 173, 0, 237, 0, 173, 0, 238, 0, 237, 0, 173, 0, 174, 0, 238, 0, 174, 0, 239, 0, 238, 0, 174, 0, 175, 0, 239, 0, 175, 0, 240, 0, 239, 0, 175, 0, 176, 0, 240, 0, 176, 0, 241, 0, 240, 0, 176, 0, 177, 0, 241, 0, 177, 0, 242, 0, 241, 0, 177, 0, 178, 0, 242, 0, 178, 0, 243, 0, 242, 0, 178, 0, 179, 0, 243, 0, 179, 0, 244, 0, 243, 0, 179, 0, 180, 0, 244, 0, 180, 0, 245, 0, 244, 0, 180, 0, 181, 0, 245, 0, 181, 0, 246, 0, 245, 0, 181, 0, 182, 0, 246, 0, 182, 0, 247, 0, 246, 0, 182, 0, 183, 0, 247, 0, 183, 0, 248, 0, 247, 0, 183, 0, 184, 0, 248, 0, 184, 0, 249, 0, 248, 0, 184, 0, 185, 0, 249, 0, 185, 0, 250, 0, 249, 0, 185, 0, 186, 0, 250, 0, 186, 0, 251, 0, 250, 0, 186, 0, 187, 0, 251, 0, 187, 0, 252, 0, 251, 0, 187, 0, 188, 0, 252, 0, 188, 0, 253, 0, 252, 0, 188, 0, 189, 0, 253, 0, 189, 0, 254, 0, 253, 0, 189, 0, 190, 0, 254, 0, 190, 0, 255, 0, 254, 0, 190, 0, 191, 0, 255, 0, 191, 0, 0, 1, 255, 0, 191, 0, 192, 0, 0, 1, 192, 0, 1, 1, 0, 1, 192, 0, 193, 0, 1, 1, 193, 0, 2, 1, 1, 1, 193, 0, 194, 0, 2, 1, 194, 0, 3, 1, 2, 1, 195, 0, 196, 0, 4, 1, 196, 0, 5, 1, 4, 1, 196, 0, 197, 0, 5, 1, 197, 0, 6, 1, 5, 1, 197, 0, 198, 0, 6, 1, 198, 0, 7, 1, 6, 1, 198, 0, 199, 0, 7, 1, 199, 0, 8, 1, 7, 1, 199, 0, 200, 0, 8, 1, 200, 0, 9, 1, 8, 1, 200, 0, 201, 0, 9, 1, 201, 0, 10, 1, 9, 1, 201, 0, 202, 0, 10, 1, 202, 0, 11, 1, 10, 1, 202, 0, 203, 0, 11, 1, 203, 0, 12, 1, 11, 1, 203, 0, 204, 0, 12, 1, 204, 0, 13, 1, 12, 1, 204, 0, 205, 0, 13, 1, 205, 0, 14, 1, 13, 1, 205, 0, 206, 0, 14, 1, 206, 0, 15, 1, 14, 1, 206, 0, 207, 0, 15, 1, 207, 0, 16, 1, 15, 1, 207, 0, 208, 0, 16, 1, 208, 0, 17, 1, 16, 1, 208, 0, 209, 0, 17, 1, 209, 0, 18, 1, 17, 1, 209, 0, 210, 0, 18, 1, 210, 0, 19, 1, 18, 1, 210, 0, 211, 0, 19, 1, 211, 0, 20, 1, 19, 1, 211, 0, 212, 0, 20, 1, 212, 0, 21, 1, 20, 1, 212, 0, 213, 0, 21, 1, 213, 0, 22, 1, 21, 1, 213, 0, 214, 0, 22, 1, 214, 0, 23, 1, 22, 1, 214, 0, 215, 0, 23, 1, 215, 0, 24, 1, 23, 1, 215, 0, 216, 0, 24, 1, 216, 0, 25, 1, 24, 1, 216, 0, 217, 0, 25, 1, 217, 0, 26, 1, 25, 1, 217, 0, 218, 0, 26, 1, 218, 0, 27, 1, 26, 1, 218, 0, 219, 0, 27, 1, 219, 0, 28, 1, 27, 1, 219, 0, 220, 0, 28, 1, 220, 0, 29, 1, 28, 1, 220, 0, 221, 0, 29, 1, 221, 0, 30, 1, 29, 1, 221, 0, 222, 0, 30, 1, 222, 0, 31, 1, 30, 1, 222, 0, 223, 0, 31, 1, 223, 0, 32, 1, 31, 1, 223, 0, 224, 0, 32, 1, 224, 0, 33, 1, 32, 1, 224, 0, 225, 0, 33, 1, 225, 0, 34, 1, 33, 1, 225, 0, 226, 0, 34, 1, 226, 0, 35, 1, 34, 1, 226, 0, 227, 0, 35, 1, 227, 0, 36, 1, 35, 1, 227, 0, 228, 0, 36, 1, 228, 0, 37, 1, 36, 1, 228, 0, 229, 0, 37, 1, 229, 0, 38, 1, 37, 1, 229, 0, 230, 0, 38, 1, 230, 0, 39, 1, 38, 1, 230, 0, 231, 0, 39, 1, 231, 0, 40, 1, 39, 1, 231, 0, 232, 0, 40, 1, 232, 0, 41, 1, 40, 1, 232, 0, 233, 0, 41, 1, 233, 0, 42, 1, 41, 1, 233, 0, 234, 0, 42, 1, 234, 0, 43, 1, 42, 1, 234, 0, 235, 0, 43, 1, 235, 0, 44, 1, 43, 1, 235, 0, 236, 0, 44, 1, 236, 0, 45, 1, 44, 1, 236, 0, 237, 0, 45, 1, 237, 0, 46, 1, 45, 1, 237, 0, 238, 0, 46, 1, 238, 0, 47, 1, 46, 1, 238, 0, 239, 0, 47, 1, 239, 0, 48, 1, 47, 1, 239, 0, 240, 0, 48, 1, 240, 0, 49, 1, 48, 1, 240, 0, 241, 0, 49, 1, 241, 0, 50, 1, 49, 1, 241, 0, 242, 0, 50, 1, 242, 0, 51, 1, 50, 1, 242, 0, 243, 0, 51, 1, 243, 0, 52, 1, 51, 1, 243, 0, 244, 0, 52, 1, 244, 0, 53, 1, 52, 1, 244, 0, 245, 0, 53, 1, 245, 0, 54, 1, 53, 1, 245, 0, 246, 0, 54, 1, 246, 0, 55, 1, 54, 1, 246, 0, 247, 0, 55, 1, 247, 0, 56, 1, 55, 1, 247, 0, 248, 0, 56, 1, 248, 0, 57, 1, 56, 1, 248, 0, 249, 0, 57, 1, 249, 0, 58, 1, 57, 1, 249, 0, 250, 0, 58, 1, 250, 0, 59, 1, 58, 1, 250, 0, 251, 0, 59, 1, 251, 0, 60, 1, 59, 1, 251, 0, 252, 0, 60, 1, 252, 0, 61, 1, 60, 1, 252, 0, 253, 0, 61, 1, 253, 0, 62, 1, 61, 1, 253, 0, 254, 0, 62, 1, 254, 0, 63, 1, 62, 1, 254, 0, 255, 0, 63, 1, 255, 0, 64, 1, 63, 1, 255, 0, 0, 1, 64, 1, 0, 1, 65, 1, 64, 1, 0, 1, 1, 1, 65, 1, 1, 1, 66, 1, 65, 1, 1, 1, 2, 1, 66, 1, 2, 1, 67, 1, 66, 1, 2, 1, 3, 1, 67, 1, 3, 1, 68, 1, 67, 1, 4, 1, 5, 1, 69, 1, 5, 1, 70, 1, 69, 1, 5, 1, 6, 1, 70, 1, 6, 1, 71, 1, 70, 1, 6, 1, 7, 1, 71, 1, 7, 1, 72, 1, 71, 1, 7, 1, 8, 1, 72, 1, 8, 1, 73, 1, 72, 1, 8, 1, 9, 1, 73, 1, 9, 1, 74, 1, 73, 1, 9, 1, 10, 1, 74, 1, 10, 1, 75, 1, 74, 1, 10, 1, 11, 1, 75, 1, 11, 1, 76, 1, 75, 1, 11, 1, 12, 1, 76, 1, 12, 1, 77, 1, 76, 1, 12, 1, 13, 1, 77, 1, 13, 1, 78, 1, 77, 1, 13, 1, 14, 1, 78, 1, 14, 1, 79, 1, 78, 1, 14, 1, 15, 1, 79, 1, 15, 1, 80, 1, 79, 1, 15, 1, 16, 1, 80, 1, 16, 1, 81, 1, 80, 1, 16, 1, 17, 1, 81, 1, 17, 1, 82, 1, 81, 1, 17, 1, 18, 1, 82, 1, 18, 1, 83, 1, 82, 1, 18, 1, 19, 1, 83, 1, 19, 1, 84, 1, 83, 1, 19, 1, 20, 1, 84, 1, 20, 1, 85, 1, 84, 1, 20, 1, 21, 1, 85, 1, 21, 1, 86, 1, 85, 1, 21, 1, 22, 1, 86, 1, 22, 1, 87, 1, 86, 1, 22, 1, 23, 1, 87, 1, 23, 1, 88, 1, 87, 1, 23, 1, 24, 1, 88, 1, 24, 1, 89, 1, 88, 1, 24, 1, 25, 1, 89, 1, 25, 1, 90, 1, 89, 1, 25, 1, 26, 1, 90, 1, 26, 1, 91, 1, 90, 1, 26, 1, 27, 1, 91, 1, 27, 1, 92, 1, 91, 1, 27, 1, 28, 1, 92, 1, 28, 1, 93, 1, 92, 1, 28, 1, 29, 1, 93, 1, 29, 1, 94, 1, 93, 1, 29, 1, 30, 1, 94, 1, 30, 1, 95, 1, 94, 1, 30, 1, 31, 1, 95, 1, 31, 1, 96, 1, 95, 1, 31, 1, 32, 1, 96, 1, 32, 1, 97, 1, 96, 1, 32, 1, 33, 1, 97, 1, 33, 1, 98, 1, 97, 1, 33, 1, 34, 1, 98, 1, 34, 1, 99, 1, 98, 1, 34, 1, 35, 1, 99, 1, 35, 1, 100, 1, 99, 1, 35, 1, 36, 1, 100, 1, 36, 1, 101, 1, 100, 1, 36, 1, 37, 1, 101, 1, 37, 1, 102, 1, 101, 1, 37, 1, 38, 1, 102, 1, 38, 1, 103, 1, 102, 1, 38, 1, 39, 1, 103, 1, 39, 1, 104, 1, 103, 1, 39, 1, 40, 1, 104, 1, 40, 1, 105, 1, 104, 1, 40, 1, 41, 1, 105, 1, 41, 1, 106, 1, 105, 1, 41, 1, 42, 1, 106, 1, 42, 1, 107, 1, 106, 1, 42, 1, 43, 1, 107, 1, 43, 1, 108, 1, 107, 1, 43, 1, 44, 1, 108, 1, 44, 1, 109, 1, 108, 1, 44, 1, 45, 1, 109, 1, 45, 1, 110, 1, 109, 1, 45, 1, 46, 1, 110, 1, 46, 1, 111, 1, 110, 1, 46, 1, 47, 1, 111, 1, 47, 1, 112, 1, 111, 1, 47, 1, 48, 1, 112, 1, 48, 1, 113, 1, 112, 1, 48, 1, 49, 1, 113, 1, 49, 1, 114, 1, 113, 1, 49, 1, 50, 1, 114, 1, 50, 1, 115, 1, 114, 1, 50, 1, 51, 1, 115, 1, 51, 1, 116, 1, 115, 1, 51, 1, 52, 1, 116, 1, 52, 1, 117, 1, 116, 1, 52, 1, 53, 1, 117, 1, 53, 1, 118, 1, 117, 1, 53, 1, 54, 1, 118, 1, 54, 1, 119, 1, 118, 1, 54, 1, 55, 1, 119, 1, 55, 1, 120, 1, 119, 1, 55, 1, 56, 1, 120, 1, 56, 1, 121, 1, 120, 1, 56, 1, 57, 1, 121, 1, 57, 1, 122, 1, 121, 1, 57, 1, 58, 1, 122, 1, 58, 1, 123, 1, 122, 1, 58, 1, 59, 1, 123, 1, 59, 1, 124, 1, 123, 1, 59, 1, 60, 1, 124, 1, 60, 1, 125, 1, 124, 1, 60, 1, 61, 1, 125, 1, 61, 1, 126, 1, 125, 1, 61, 1, 62, 1, 126, 1, 62, 1, 127, 1, 126, 1, 62, 1, 63, 1, 127, 1, 63, 1, 128, 1, 127, 1, 63, 1, 64, 1, 128, 1, 64, 1, 129, 1, 128, 1, 64, 1, 65, 1, 129, 1, 65, 1, 130, 1, 129, 1, 65, 1, 66, 1, 130, 1, 66, 1, 131, 1, 130, 1, 66, 1, 67, 1, 131, 1, 67, 1, 132, 1, 131, 1, 67, 1, 68, 1, 132, 1, 68, 1, 133, 1, 132, 1, 69, 1, 70, 1, 134, 1, 70, 1, 135, 1, 134, 1, 70, 1, 71, 1, 135, 1, 71, 1, 136, 1, 135, 1, 71, 1, 72, 1, 136, 1, 72, 1, 137, 1, 136, 1, 72, 1, 73, 1, 137, 1, 73, 1, 138, 1, 137, 1, 73, 1, 74, 1, 138, 1, 74, 1, 139, 1, 138, 1, 74, 1, 75, 1, 139, 1, 75, 1, 140, 1, 139, 1, 75, 1, 76, 1, 140, 1, 76, 1, 141, 1, 140, 1, 76, 1, 77, 1, 141, 1, 77, 1, 142, 1, 141, 1, 77, 1, 78, 1, 142, 1, 78, 1, 143, 1, 142, 1, 78, 1, 79, 1, 143, 1, 79, 1, 144, 1, 143, 1, 79, 1, 80, 1, 144, 1, 80, 1, 145, 1, 144, 1, 80, 1, 81, 1, 145, 1, 81, 1, 146, 1, 145, 1, 81, 1, 82, 1, 146, 1, 82, 1, 147, 1, 146, 1, 82, 1, 83, 1, 147, 1, 83, 1, 148, 1, 147, 1, 83, 1, 84, 1, 148, 1, 84, 1, 149, 1, 148, 1, 84, 1, 85, 1, 149, 1, 85, 1, 150, 1, 149, 1, 85, 1, 86, 1, 150, 1, 86, 1, 151, 1, 150, 1, 86, 1, 87, 1, 151, 1, 87, 1, 152, 1, 151, 1, 87, 1, 88, 1, 152, 1, 88, 1, 153, 1, 152, 1, 88, 1, 89, 1, 153, 1, 89, 1, 154, 1, 153, 1, 89, 1, 90, 1, 154, 1, 90, 1, 155, 1, 154, 1, 90, 1, 91, 1, 155, 1, 91, 1, 156, 1, 155, 1, 91, 1, 92, 1, 156, 1, 92, 1, 157, 1, 156, 1, 92, 1, 93, 1, 157, 1, 93, 1, 158, 1, 157, 1, 93, 1, 94, 1, 158, 1, 94, 1, 159, 1, 158, 1, 94, 1, 95, 1, 159, 1, 95, 1, 160, 1, 159, 1, 95, 1, 96, 1, 160, 1, 96, 1, 161, 1, 160, 1, 96, 1, 97, 1, 161, 1, 97, 1, 162, 1, 161, 1, 97, 1, 98, 1, 162, 1, 98, 1, 163, 1, 162, 1, 98, 1, 99, 1, 163, 1, 99, 1, 164, 1, 163, 1, 99, 1, 100, 1, 164, 1, 100, 1, 165, 1, 164, 1, 100, 1, 101, 1, 165, 1, 101, 1, 166, 1, 165, 1, 101, 1, 102, 1, 166, 1, 102, 1, 167, 1, 166, 1, 102, 1, 103, 1, 167, 1, 103, 1, 168, 1, 167, 1, 103, 1, 104, 1, 168, 1, 104, 1, 169, 1, 168, 1, 104, 1, 105, 1, 169, 1, 105, 1, 170, 1, 169, 1, 105, 1, 106, 1, 170, 1, 106, 1, 171, 1, 170, 1, 106, 1, 107, 1, 171, 1, 107, 1, 172, 1, 171, 1, 107, 1, 108, 1, 172, 1, 108, 1, 173, 1, 172, 1, 108, 1, 109, 1, 173, 1, 109, 1, 174, 1, 173, 1, 109, 1, 110, 1, 174, 1, 110, 1, 175, 1, 174, 1, 110, 1, 111, 1, 175, 1, 111, 1, 176, 1, 175, 1, 111, 1, 112, 1, 176, 1, 112, 1, 177, 1, 176, 1, 112, 1, 113, 1, 177, 1, 113, 1, 178, 1, 177, 1, 113, 1, 114, 1, 178, 1, 114, 1, 179, 1, 178, 1, 114, 1, 115, 1, 179, 1, 115, 1, 180, 1, 179, 1, 115, 1, 116, 1, 180, 1, 116, 1, 181, 1, 180, 1, 116, 1, 117, 1, 181, 1, 117, 1, 182, 1, 181, 1, 117, 1, 118, 1, 182, 1, 118, 1, 183, 1, 182, 1, 118, 1, 119, 1, 183, 1, 119, 1, 184, 1, 183, 1, 119, 1, 120, 1, 184, 1, 120, 1, 185, 1, 184, 1, 120, 1, 121, 1, 185, 1, 121, 1, 186, 1, 185, 1, 121, 1, 122, 1, 186, 1, 122, 1, 187, 1, 186, 1, 122, 1, 123, 1, 187, 1, 123, 1, 188, 1, 187, 1, 123, 1, 124, 1, 188, 1, 124, 1, 189, 1, 188, 1, 124, 1, 125, 1, 189, 1, 125, 1, 190, 1, 189, 1, 125, 1, 126, 1, 190, 1, 126, 1, 191, 1, 190, 1, 126, 1, 127, 1, 191, 1, 127, 1, 192, 1, 191, 1, 127, 1, 128, 1, 192, 1, 128, 1, 193, 1, 192, 1, 128, 1, 129, 1, 193, 1, 129, 1, 194, 1, 193, 1, 129, 1, 130, 1, 194, 1, 130, 1, 195, 1, 194, 1, 130, 1, 131, 1, 195, 1, 131, 1, 196, 1, 195, 1, 131, 1, 132, 1, 196, 1, 132, 1, 197, 1, 196, 1, 132, 1, 133, 1, 197, 1, 133, 1, 198, 1, 197, 1, 134, 1, 135, 1, 199, 1, 135, 1, 200, 1, 199, 1, 135, 1, 136, 1, 200, 1, 136, 1, 201, 1, 200, 1, 136, 1, 137, 1, 201, 1, 137, 1, 202, 1, 201, 1, 137, 1, 138, 1, 202, 1, 138, 1, 203, 1, 202, 1, 138, 1, 139, 1, 203, 1, 139, 1, 204, 1, 203, 1, 139, 1, 140, 1, 204, 1, 140, 1, 205, 1, 204, 1, 140, 1, 141, 1, 205, 1, 141, 1, 206, 1, 205, 1, 141, 1, 142, 1, 206, 1, 142, 1, 207, 1, 206, 1, 142, 1, 143, 1, 207, 1, 143, 1, 208, 1, 207, 1, 143, 1, 144, 1, 208, 1, 144, 1, 209, 1, 208, 1, 144, 1, 145, 1, 209, 1, 145, 1, 210, 1, 209, 1, 145, 1, 146, 1, 210, 1, 146, 1, 211, 1, 210, 1, 146, 1, 147, 1, 211, 1, 147, 1, 212, 1, 211, 1, 147, 1, 148, 1, 212, 1, 148, 1, 213, 1, 212, 1, 148, 1, 149, 1, 213, 1, 149, 1, 214, 1, 213, 1, 149, 1, 150, 1, 214, 1, 150, 1, 215, 1, 214, 1, 150, 1, 151, 1, 215, 1, 151, 1, 216, 1, 215, 1, 151, 1, 152, 1, 216, 1, 152, 1, 217, 1, 216, 1, 152, 1, 153, 1, 217, 1, 153, 1, 218, 1, 217, 1, 153, 1, 154, 1, 218, 1, 154, 1, 219, 1, 218, 1, 154, 1, 155, 1, 219, 1, 155, 1, 220, 1, 219, 1, 155, 1, 156, 1, 220, 1, 156, 1, 221, 1, 220, 1, 156, 1, 157, 1, 221, 1, 157, 1, 222, 1, 221, 1, 157, 1, 158, 1, 222, 1, 158, 1, 223, 1, 222, 1, 158, 1, 159, 1, 223, 1, 159, 1, 224, 1, 223, 1, 159, 1, 160, 1, 224, 1, 160, 1, 225, 1, 224, 1, 160, 1, 161, 1, 225, 1, 161, 1, 226, 1, 225, 1, 161, 1, 162, 1, 226, 1, 162, 1, 227, 1, 226, 1, 162, 1, 163, 1, 227, 1, 163, 1, 228, 1, 227, 1, 163, 1, 164, 1, 228, 1, 164, 1, 229, 1, 228, 1, 164, 1, 165, 1, 229, 1, 165, 1, 230, 1, 229, 1, 165, 1, 166, 1, 230, 1, 166, 1, 231, 1, 230, 1, 166, 1, 167, 1, 231, 1, 167, 1, 232, 1, 231, 1, 167, 1, 168, 1, 232, 1, 168, 1, 233, 1, 232, 1, 168, 1, 169, 1, 233, 1, 169, 1, 234, 1, 233, 1, 169, 1, 170, 1, 234, 1, 170, 1, 235, 1, 234, 1, 170, 1, 171, 1, 235, 1, 171, 1, 236, 1, 235, 1, 171, 1, 172, 1, 236, 1, 172, 1, 237, 1, 236, 1, 172, 1, 173, 1, 237, 1, 173, 1, 238, 1, 237, 1, 173, 1, 174, 1, 238, 1, 174, 1, 239, 1, 238, 1, 174, 1, 175, 1, 239, 1, 175, 1, 240, 1, 239, 1, 175, 1, 176, 1, 240, 1, 176, 1, 241, 1, 240, 1, 176, 1, 177, 1, 241, 1, 177, 1, 242, 1, 241, 1, 177, 1, 178, 1, 242, 1, 178, 1, 243, 1, 242, 1, 178, 1, 179, 1, 243, 1, 179, 1, 244, 1, 243, 1, 179, 1, 180, 1, 244, 1, 180, 1, 245, 1, 244, 1, 180, 1, 181, 1, 245, 1, 181, 1, 246, 1, 245, 1, 181, 1, 182, 1, 246, 1, 182, 1, 247, 1, 246, 1, 182, 1, 183, 1, 247, 1, 183, 1, 248, 1, 247, 1, 183, 1, 184, 1, 248, 1, 184, 1, 249, 1, 248, 1, 184, 1, 185, 1, 249, 1, 185, 1, 250, 1, 249, 1, 185, 1, 186, 1, 250, 1, 186, 1, 251, 1, 250, 1, 186, 1, 187, 1, 251, 1, 187, 1, 252, 1, 251, 1, 187, 1, 188, 1, 252, 1, 188, 1, 253, 1, 252, 1, 188, 1, 189, 1, 253, 1, 189, 1, 254, 1, 253, 1, 189, 1, 190, 1, 254, 1, 190, 1, 255, 1, 254, 1, 190, 1, 191, 1, 255, 1, 191, 1, 0, 2, 255, 1, 191, 1, 192, 1, 0, 2, 192, 1, 1, 2, 0, 2, 192, 1, 193, 1, 1, 2, 193, 1, 2, 2, 1, 2, 193, 1, 194, 1, 2, 2, 194, 1, 3, 2, 2, 2, 194, 1, 195, 1, 3, 2, 195, 1, 4, 2, 3, 2, 195, 1, 196, 1, 4, 2, 196, 1, 5, 2, 4, 2, 196, 1, 197, 1, 5, 2, 197, 1, 6, 2, 5, 2, 197, 1, 198, 1, 6, 2, 198, 1, 7, 2, 6, 2, 199, 1, 200, 1, 8, 2, 200, 1, 9, 2, 8, 2, 200, 1, 201, 1, 9, 2, 201, 1, 10, 2, 9, 2, 201, 1, 202, 1, 10, 2, 202, 1, 11, 2, 10, 2, 202, 1, 203, 1, 11, 2, 203, 1, 12, 2, 11, 2, 203, 1, 204, 1, 12, 2, 204, 1, 13, 2, 12, 2, 204, 1, 205, 1, 13, 2, 205, 1, 14, 2, 13, 2, 205, 1, 206, 1, 14, 2, 206, 1, 15, 2, 14, 2, 206, 1, 207, 1, 15, 2, 207, 1, 16, 2, 15, 2, 207, 1, 208, 1, 16, 2, 208, 1, 17, 2, 16, 2, 208, 1, 209, 1, 17, 2, 209, 1, 18, 2, 17, 2, 209, 1, 210, 1, 18, 2, 210, 1, 19, 2, 18, 2, 210, 1, 211, 1, 19, 2, 211, 1, 20, 2, 19, 2, 211, 1, 212, 1, 20, 2, 212, 1, 21, 2, 20, 2, 212, 1, 213, 1, 21, 2, 213, 1, 22, 2, 21, 2, 213, 1, 214, 1, 22, 2, 214, 1, 23, 2, 22, 2, 214, 1, 215, 1, 23, 2, 215, 1, 24, 2, 23, 2, 215, 1, 216, 1, 24, 2, 216, 1, 25, 2, 24, 2, 216, 1, 217, 1, 25, 2, 217, 1, 26, 2, 25, 2, 217, 1, 218, 1, 26, 2, 218, 1, 27, 2, 26, 2, 218, 1, 219, 1, 27, 2, 219, 1, 28, 2, 27, 2, 219, 1, 220, 1, 28, 2, 220, 1, 29, 2, 28, 2, 220, 1, 221, 1, 29, 2, 221, 1, 30, 2, 29, 2, 221, 1, 222, 1, 30, 2, 222, 1, 31, 2, 30, 2, 222, 1, 223, 1, 31, 2, 223, 1, 32, 2, 31, 2, 223, 1, 224, 1, 32, 2, 224, 1, 33, 2, 32, 2, 224, 1, 225, 1, 33, 2, 225, 1, 34, 2, 33, 2, 225, 1, 226, 1, 34, 2, 226, 1, 35, 2, 34, 2, 226, 1, 227, 1, 35, 2, 227, 1, 36, 2, 35, 2, 227, 1, 228, 1, 36, 2, 228, 1, 37, 2, 36, 2, 228, 1, 229, 1, 37, 2, 229, 1, 38, 2, 37, 2, 229, 1, 230, 1, 38, 2, 230, 1, 39, 2, 38, 2, 230, 1, 231, 1, 39, 2, 231, 1, 40, 2, 39, 2, 231, 1, 232, 1, 40, 2, 232, 1, 41, 2, 40, 2, 232, 1, 233, 1, 41, 2, 233, 1, 42, 2, 41, 2, 233, 1, 234, 1, 42, 2, 234, 1, 43, 2, 42, 2, 234, 1, 235, 1, 43, 2, 235, 1, 44, 2, 43, 2, 235, 1, 236, 1, 44, 2, 236, 1, 45, 2, 44, 2, 236, 1, 237, 1, 45, 2, 237, 1, 46, 2, 45, 2, 237, 1, 238, 1, 46, 2, 238, 1, 47, 2, 46, 2, 238, 1, 239, 1, 47, 2, 239, 1, 48, 2, 47, 2, 239, 1, 240, 1, 48, 2, 240, 1, 49, 2, 48, 2, 240, 1, 241, 1, 49, 2, 241, 1, 50, 2, 49, 2, 241, 1, 242, 1, 50, 2, 242, 1, 51, 2, 50, 2, 242, 1, 243, 1, 51, 2, 243, 1, 52, 2, 51, 2, 243, 1, 244, 1, 52, 2, 244, 1, 53, 2, 52, 2, 244, 1, 245, 1, 53, 2, 245, 1, 54, 2, 53, 2, 245, 1, 246, 1, 54, 2, 246, 1, 55, 2, 54, 2, 246, 1, 247, 1, 55, 2, 247, 1, 56, 2, 55, 2, 247, 1, 248, 1, 56, 2, 248, 1, 57, 2, 56, 2, 248, 1, 249, 1, 57, 2, 249, 1, 58, 2, 57, 2, 249, 1, 250, 1, 58, 2, 250, 1, 59, 2, 58, 2, 250, 1, 251, 1, 59, 2, 251, 1, 60, 2, 59, 2, 251, 1, 252, 1, 60, 2, 252, 1, 61, 2, 60, 2, 252, 1, 253, 1, 61, 2, 253, 1, 62, 2, 61, 2, 253, 1, 254, 1, 62, 2, 254, 1, 63, 2, 62, 2, 254, 1, 255, 1, 63, 2, 255, 1, 64, 2, 63, 2, 255, 1, 0, 2, 64, 2, 0, 2, 65, 2, 64, 2, 0, 2, 1, 2, 65, 2, 1, 2, 66, 2, 65, 2, 1, 2, 2, 2, 66, 2, 2, 2, 67, 2, 66, 2, 2, 2, 3, 2, 67, 2, 3, 2, 68, 2, 67, 2, 3, 2, 4, 2, 68, 2, 4, 2, 69, 2, 68, 2, 4, 2, 5, 2, 69, 2, 5, 2, 70, 2, 69, 2, 5, 2, 6, 2, 70, 2, 6, 2, 71, 2, 70, 2, 6, 2, 7, 2, 71, 2, 7, 2, 72, 2, 71, 2, 8, 2, 9, 2, 73, 2, 9, 2, 74, 2, 73, 2, 9, 2, 10, 2, 74, 2, 10, 2, 75, 2, 74, 2, 10, 2, 11, 2, 75, 2, 11, 2, 76, 2, 75, 2, 11, 2, 12, 2, 76, 2, 12, 2, 77, 2, 76, 2, 12, 2, 13, 2, 77, 2, 13, 2, 78, 2, 77, 2, 13, 2, 14, 2, 78, 2, 14, 2, 79, 2, 78, 2, 14, 2, 15, 2, 79, 2, 15, 2, 80, 2, 79, 2, 15, 2, 16, 2, 80, 2, 16, 2, 81, 2, 80, 2, 16, 2, 17, 2, 81, 2, 17, 2, 82, 2, 81, 2, 17, 2, 18, 2, 82, 2, 18, 2, 83, 2, 82, 2, 18, 2, 19, 2, 83, 2, 19, 2, 84, 2, 83, 2, 19, 2, 20, 2, 84, 2, 20, 2, 85, 2, 84, 2, 20, 2, 21, 2, 85, 2, 21, 2, 86, 2, 85, 2, 21, 2, 22, 2, 86, 2, 22, 2, 87, 2, 86, 2, 22, 2, 23, 2, 87, 2, 23, 2, 88, 2, 87, 2, 23, 2, 24, 2, 88, 2, 24, 2, 89, 2, 88, 2, 24, 2, 25, 2, 89, 2, 25, 2, 90, 2, 89, 2, 25, 2, 26, 2, 90, 2, 26, 2, 91, 2, 90, 2, 26, 2, 27, 2, 91, 2, 27, 2, 92, 2, 91, 2, 27, 2, 28, 2, 92, 2, 28, 2, 93, 2, 92, 2, 28, 2, 29, 2, 93, 2, 29, 2, 94, 2, 93, 2, 29, 2, 30, 2, 94, 2, 30, 2, 95, 2, 94, 2, 30, 2, 31, 2, 95, 2, 31, 2, 96, 2, 95, 2, 31, 2, 32, 2, 96, 2, 32, 2, 97, 2, 96, 2, 32, 2, 33, 2, 97, 2, 33, 2, 98, 2, 97, 2, 33, 2, 34, 2, 98, 2, 34, 2, 99, 2, 98, 2, 34, 2, 35, 2, 99, 2, 35, 2, 100, 2, 99, 2, 35, 2, 36, 2, 100, 2, 36, 2, 101, 2, 100, 2, 36, 2, 37, 2, 101, 2, 37, 2, 102, 2, 101, 2, 37, 2, 38, 2, 102, 2, 38, 2, 103, 2, 102, 2, 38, 2, 39, 2, 103, 2, 39, 2, 104, 2, 103, 2, 39, 2, 40, 2, 104, 2, 40, 2, 105, 2, 104, 2, 40, 2, 41, 2, 105, 2, 41, 2, 106, 2, 105, 2, 41, 2, 42, 2, 106, 2, 42, 2, 107, 2, 106, 2, 42, 2, 43, 2, 107, 2, 43, 2, 108, 2, 107, 2, 43, 2, 44, 2, 108, 2, 44, 2, 109, 2, 108, 2, 44, 2, 45, 2, 109, 2, 45, 2, 110, 2, 109, 2, 45, 2, 46, 2, 110, 2, 46, 2, 111, 2, 110, 2, 46, 2, 47, 2, 111, 2, 47, 2, 112, 2, 111, 2, 47, 2, 48, 2, 112, 2, 48, 2, 113, 2, 112, 2, 48, 2, 49, 2, 113, 2, 49, 2, 114, 2, 113, 2, 49, 2, 50, 2, 114, 2, 50, 2, 115, 2, 114, 2, 50, 2, 51, 2, 115, 2, 51, 2, 116, 2, 115, 2, 51, 2, 52, 2, 116, 2, 52, 2, 117, 2, 116, 2, 52, 2, 53, 2, 117, 2, 53, 2, 118, 2, 117, 2, 53, 2, 54, 2, 118, 2, 54, 2, 119, 2, 118, 2, 54, 2, 55, 2, 119, 2, 55, 2, 120, 2, 119, 2, 55, 2, 56, 2, 120, 2, 56, 2, 121, 2, 120, 2, 56, 2, 57, 2, 121, 2, 57, 2, 122, 2, 121, 2, 57, 2, 58, 2, 122, 2, 58, 2, 123, 2, 122, 2, 58, 2, 59, 2, 123, 2, 59, 2, 124, 2, 123, 2, 59, 2, 60, 2, 124, 2, 60, 2, 125, 2, 124, 2, 60, 2, 61, 2, 125, 2, 61, 2, 126, 2, 125, 2, 61, 2, 62, 2, 126, 2, 62, 2, 127, 2, 126, 2, 62, 2, 63, 2, 127, 2, 63, 2, 128, 2, 127, 2, 63, 2, 64, 2, 128, 2, 64, 2, 129, 2, 128, 2, 64, 2, 65, 2, 129, 2, 65, 2, 130, 2, 129, 2, 65, 2, 66, 2, 130, 2, 66, 2, 131, 2, 130, 2, 66, 2, 67, 2, 131, 2, 67, 2, 132, 2, 131, 2, 67, 2, 68, 2, 132, 2, 68, 2, 133, 2, 132, 2, 68, 2, 69, 2, 133, 2, 69, 2, 134, 2, 133, 2, 69, 2, 70, 2, 134, 2, 70, 2, 135, 2, 134, 2, 70, 2, 71, 2, 135, 2, 71, 2, 136, 2, 135, 2, 71, 2, 72, 2, 136, 2, 72, 2, 137, 2, 136, 2, 73, 2, 74, 2, 138, 2, 74, 2, 139, 2, 138, 2, 74, 2, 75, 2, 139, 2, 75, 2, 140, 2, 139, 2, 75, 2, 76, 2, 140, 2, 76, 2, 141, 2, 140, 2, 76, 2, 77, 2, 141, 2, 77, 2, 142, 2, 141, 2, 77, 2, 78, 2, 142, 2, 78, 2, 143, 2, 142, 2, 78, 2, 79, 2, 143, 2, 79, 2, 144, 2, 143, 2, 79, 2, 80, 2, 144, 2, 80, 2, 145, 2, 144, 2, 80, 2, 81, 2, 145, 2, 81, 2, 146, 2, 145, 2, 81, 2, 82, 2, 146, 2, 82, 2, 147, 2, 146, 2, 82, 2, 83, 2, 147, 2, 83, 2, 148, 2, 147, 2, 83, 2, 84, 2, 148, 2, 84, 2, 149, 2, 148, 2, 84, 2, 85, 2, 149, 2, 85, 2, 150, 2, 149, 2, 85, 2, 86, 2, 150, 2, 86, 2, 151, 2, 150, 2, 86, 2, 87, 2, 151, 2, 87, 2, 152, 2, 151, 2, 87, 2, 88, 2, 152, 2, 88, 2, 153, 2, 152, 2, 88, 2, 89, 2, 153, 2, 89, 2, 154, 2, 153, 2, 89, 2, 90, 2, 154, 2, 90, 2, 155, 2, 154, 2, 90, 2, 91, 2, 155, 2, 91, 2, 156, 2, 155, 2, 91, 2, 92, 2, 156, 2, 92, 2, 157, 2, 156, 2, 92, 2, 93, 2, 157, 2, 93, 2, 158, 2, 157, 2, 93, 2, 94, 2, 158, 2, 94, 2, 159, 2, 158, 2, 94, 2, 95, 2, 159, 2, 95, 2, 160, 2, 159, 2, 95, 2, 96, 2, 160, 2, 96, 2, 161, 2, 160, 2, 96, 2, 97, 2, 161, 2, 97, 2, 162, 2, 161, 2, 97, 2, 98, 2, 162, 2, 98, 2, 163, 2, 162, 2, 98, 2, 99, 2, 163, 2, 99, 2, 164, 2, 163, 2, 99, 2, 100, 2, 164, 2, 100, 2, 165, 2, 164, 2, 100, 2, 101, 2, 165, 2, 101, 2, 166, 2, 165, 2, 101, 2, 102, 2, 166, 2, 102, 2, 167, 2, 166, 2, 102, 2, 103, 2, 167, 2, 103, 2, 168, 2, 167, 2, 103, 2, 104, 2, 168, 2, 104, 2, 169, 2, 168, 2, 104, 2, 105, 2, 169, 2, 105, 2, 170, 2, 169, 2, 105, 2, 106, 2, 170, 2, 106, 2, 171, 2, 170, 2, 106, 2, 107, 2, 171, 2, 107, 2, 172, 2, 171, 2, 107, 2, 108, 2, 172, 2, 108, 2, 173, 2, 172, 2, 108, 2, 109, 2, 173, 2, 109, 2, 174, 2, 173, 2, 109, 2, 110, 2, 174, 2, 110, 2, 175, 2, 174, 2, 110, 2, 111, 2, 175, 2, 111, 2, 176, 2, 175, 2, 111, 2, 112, 2, 176, 2, 112, 2, 177, 2, 176, 2, 112, 2, 113, 2, 177, 2, 113, 2, 178, 2, 177, 2, 113, 2, 114, 2, 178, 2, 114, 2, 179, 2, 178, 2, 114, 2, 115, 2, 179, 2, 115, 2, 180, 2, 179, 2, 115, 2, 116, 2, 180, 2, 116, 2, 181, 2, 180, 2, 116, 2, 117, 2, 181, 2, 117, 2, 182, 2, 181, 2, 117, 2, 118, 2, 182, 2, 118, 2, 183, 2, 182, 2, 118, 2, 119, 2, 183, 2, 119, 2, 184, 2, 183, 2, 119, 2, 120, 2, 184, 2, 120, 2, 185, 2, 184, 2, 120, 2, 121, 2, 185, 2, 121, 2, 186, 2, 185, 2, 121, 2, 122, 2, 186, 2, 122, 2, 187, 2, 186, 2, 122, 2, 123, 2, 187, 2, 123, 2, 188, 2, 187, 2, 123, 2, 124, 2, 188, 2, 124, 2, 189, 2, 188, 2, 124, 2, 125, 2, 189, 2, 125, 2, 190, 2, 189, 2, 125, 2, 126, 2, 190, 2, 126, 2, 191, 2, 190, 2, 126, 2, 127, 2, 191, 2, 127, 2, 192, 2, 191, 2, 127, 2, 128, 2, 192, 2, 128, 2, 193, 2, 192, 2, 128, 2, 129, 2, 193, 2, 129, 2, 194, 2, 193, 2, 129, 2, 130, 2, 194, 2, 130, 2, 195, 2, 194, 2, 130, 2, 131, 2, 195, 2, 131, 2, 196, 2, 195, 2, 131, 2, 132, 2, 196, 2, 132, 2, 197, 2, 196, 2, 132, 2, 133, 2, 197, 2, 133, 2, 198, 2, 197, 2, 133, 2, 134, 2, 198, 2, 134, 2, 199, 2, 198, 2, 134, 2, 135, 2, 199, 2, 135, 2, 200, 2, 199, 2, 135, 2, 136, 2, 200, 2, 136, 2, 201, 2, 200, 2, 136, 2, 137, 2, 201, 2, 137, 2, 202, 2, 201, 2, 138, 2, 139, 2, 203, 2, 139, 2, 204, 2, 203, 2, 139, 2, 140, 2, 204, 2, 140, 2, 205, 2, 204, 2, 140, 2, 141, 2, 205, 2, 141, 2, 206, 2, 205, 2, 141, 2, 142, 2, 206, 2, 142, 2, 207, 2, 206, 2, 142, 2, 143, 2, 207, 2, 143, 2, 208, 2, 207, 2, 143, 2, 144, 2, 208, 2, 144, 2, 209, 2, 208, 2, 144, 2, 145, 2, 209, 2, 145, 2, 210, 2, 209, 2, 145, 2, 146, 2, 210, 2, 146, 2, 211, 2, 210, 2, 146, 2, 147, 2, 211, 2, 147, 2, 212, 2, 211, 2, 147, 2, 148, 2, 212, 2, 148, 2, 213, 2, 212, 2, 148, 2, 149, 2, 213, 2, 149, 2, 214, 2, 213, 2, 149, 2, 150, 2, 214, 2, 150, 2, 215, 2, 214, 2, 150, 2, 151, 2, 215, 2, 151, 2, 216, 2, 215, 2, 151, 2, 152, 2, 216, 2, 152, 2, 217, 2, 216, 2, 152, 2, 153, 2, 217, 2, 153, 2, 218, 2, 217, 2, 153, 2, 154, 2, 218, 2, 154, 2, 219, 2, 218, 2, 154, 2, 155, 2, 219, 2, 155, 2, 220, 2, 219, 2, 155, 2, 156, 2, 220, 2, 156, 2, 221, 2, 220, 2, 156, 2, 157, 2, 221, 2, 157, 2, 222, 2, 221, 2, 157, 2, 158, 2, 222, 2, 158, 2, 223, 2, 222, 2, 158, 2, 159, 2, 223, 2, 159, 2, 224, 2, 223, 2, 159, 2, 160, 2, 224, 2, 160, 2, 225, 2, 224, 2, 160, 2, 161, 2, 225, 2, 161, 2, 226, 2, 225, 2, 161, 2, 162, 2, 226, 2, 162, 2, 227, 2, 226, 2, 162, 2, 163, 2, 227, 2, 163, 2, 228, 2, 227, 2, 163, 2, 164, 2, 228, 2, 164, 2, 229, 2, 228, 2, 164, 2, 165, 2, 229, 2, 165, 2, 230, 2, 229, 2, 165, 2, 166, 2, 230, 2, 166, 2, 231, 2, 230, 2, 166, 2, 167, 2, 231, 2, 167, 2, 232, 2, 231, 2, 167, 2, 168, 2, 232, 2, 168, 2, 233, 2, 232, 2, 168, 2, 169, 2, 233, 2, 169, 2, 234, 2, 233, 2, 169, 2, 170, 2, 234, 2, 170, 2, 235, 2, 234, 2, 170, 2, 171, 2, 235, 2, 171, 2, 236, 2, 235, 2, 171, 2, 172, 2, 236, 2, 172, 2, 237, 2, 236, 2, 172, 2, 173, 2, 237, 2, 173, 2, 238, 2, 237, 2, 173, 2, 174, 2, 238, 2, 174, 2, 239, 2, 238, 2, 174, 2, 175, 2, 239, 2, 175, 2, 240, 2, 239, 2, 175, 2, 176, 2, 240, 2, 176, 2, 241, 2, 240, 2, 176, 2, 177, 2, 241, 2, 177, 2, 242, 2, 241, 2, 177, 2, 178, 2, 242, 2, 178, 2, 243, 2, 242, 2, 178, 2, 179, 2, 243, 2, 179, 2, 244, 2, 243, 2, 179, 2, 180, 2, 244, 2, 180, 2, 245, 2, 244, 2, 180, 2, 181, 2, 245, 2, 181, 2, 246, 2, 245, 2, 181, 2, 182, 2, 246, 2, 182, 2, 247, 2, 246, 2, 182, 2, 183, 2, 247, 2, 183, 2, 248, 2, 247, 2, 183, 2, 184, 2, 248, 2, 184, 2, 249, 2, 248, 2, 184, 2, 185, 2, 249, 2, 185, 2, 250, 2, 249, 2, 185, 2, 186, 2, 250, 2, 186, 2, 251, 2, 250, 2, 186, 2, 187, 2, 251, 2, 187, 2, 252, 2, 251, 2, 187, 2, 188, 2, 252, 2, 188, 2, 253, 2, 252, 2, 188, 2, 189, 2, 253, 2, 189, 2, 254, 2, 253, 2, 189, 2, 190, 2, 254, 2, 190, 2, 255, 2, 254, 2, 190, 2, 191, 2, 255, 2, 191, 2, 0, 3, 255, 2, 191, 2, 192, 2, 0, 3, 192, 2, 1, 3, 0, 3, 192, 2, 193, 2, 1, 3, 193, 2, 2, 3, 1, 3, 193, 2, 194, 2, 2, 3, 194, 2, 3, 3, 2, 3, 194, 2, 195, 2, 3, 3, 195, 2, 4, 3, 3, 3, 195, 2, 196, 2, 4, 3, 196, 2, 5, 3, 4, 3, 196, 2, 197, 2, 5, 3, 197, 2, 6, 3, 5, 3, 197, 2, 198, 2, 6, 3, 198, 2, 7, 3, 6, 3, 198, 2, 199, 2, 7, 3, 199, 2, 8, 3, 7, 3, 199, 2, 200, 2, 8, 3, 200, 2, 9, 3, 8, 3, 200, 2, 201, 2, 9, 3, 201, 2, 10, 3, 9, 3, 201, 2, 202, 2, 10, 3, 202, 2, 11, 3, 10, 3, 203, 2, 204, 2, 12, 3, 204, 2, 13, 3, 12, 3, 204, 2, 205, 2, 13, 3, 205, 2, 14, 3, 13, 3, 205, 2, 206, 2, 14, 3, 206, 2, 15, 3, 14, 3, 206, 2, 207, 2, 15, 3, 207, 2, 16, 3, 15, 3, 207, 2, 208, 2, 16, 3, 208, 2, 17, 3, 16, 3, 208, 2, 209, 2, 17, 3, 209, 2, 18, 3, 17, 3, 209, 2, 210, 2, 18, 3, 210, 2, 19, 3, 18, 3, 210, 2, 211, 2, 19, 3, 211, 2, 20, 3, 19, 3, 211, 2, 212, 2, 20, 3, 212, 2, 21, 3, 20, 3, 212, 2, 213, 2, 21, 3, 213, 2, 22, 3, 21, 3, 213, 2, 214, 2, 22, 3, 214, 2, 23, 3, 22, 3, 214, 2, 215, 2, 23, 3, 215, 2, 24, 3, 23, 3, 215, 2, 216, 2, 24, 3, 216, 2, 25, 3, 24, 3, 216, 2, 217, 2, 25, 3, 217, 2, 26, 3, 25, 3, 217, 2, 218, 2, 26, 3, 218, 2, 27, 3, 26, 3, 218, 2, 219, 2, 27, 3, 219, 2, 28, 3, 27, 3, 219, 2, 220, 2, 28, 3, 220, 2, 29, 3, 28, 3, 220, 2, 221, 2, 29, 3, 221, 2, 30, 3, 29, 3, 221, 2, 222, 2, 30, 3, 222, 2, 31, 3, 30, 3, 222, 2, 223, 2, 31, 3, 223, 2, 32, 3, 31, 3, 223, 2, 224, 2, 32, 3, 224, 2, 33, 3, 32, 3, 224, 2, 225, 2, 33, 3, 225, 2, 34, 3, 33, 3, 225, 2, 226, 2, 34, 3, 226, 2, 35, 3, 34, 3, 226, 2, 227, 2, 35, 3, 227, 2, 36, 3, 35, 3, 227, 2, 228, 2, 36, 3, 228, 2, 37, 3, 36, 3, 228, 2, 229, 2, 37, 3, 229, 2, 38, 3, 37, 3, 229, 2, 230, 2, 38, 3, 230, 2, 39, 3, 38, 3, 230, 2, 231, 2, 39, 3, 231, 2, 40, 3, 39, 3, 231, 2, 232, 2, 40, 3, 232, 2, 41, 3, 40, 3, 232, 2, 233, 2, 41, 3, 233, 2, 42, 3, 41, 3, 233, 2, 234, 2, 42, 3, 234, 2, 43, 3, 42, 3, 234, 2, 235, 2, 43, 3, 235, 2, 44, 3, 43, 3, 235, 2, 236, 2, 44, 3, 236, 2, 45, 3, 44, 3, 236, 2, 237, 2, 45, 3, 237, 2, 46, 3, 45, 3, 237, 2, 238, 2, 46, 3, 238, 2, 47, 3, 46, 3, 238, 2, 239, 2, 47, 3, 239, 2, 48, 3, 47, 3, 239, 2, 240, 2, 48, 3, 240, 2, 49, 3, 48, 3, 240, 2, 241, 2, 49, 3, 241, 2, 50, 3, 49, 3, 241, 2, 242, 2, 50, 3, 242, 2, 51, 3, 50, 3, 242, 2, 243, 2, 51, 3, 243, 2, 52, 3, 51, 3, 243, 2, 244, 2, 52, 3, 244, 2, 53, 3, 52, 3, 244, 2, 245, 2, 53, 3, 245, 2, 54, 3, 53, 3, 245, 2, 246, 2, 54, 3, 246, 2, 55, 3, 54, 3, 246, 2, 247, 2, 55, 3, 247, 2, 56, 3, 55, 3, 247, 2, 248, 2, 56, 3, 248, 2, 57, 3, 56, 3, 248, 2, 249, 2, 57, 3, 249, 2, 58, 3, 57, 3, 249, 2, 250, 2, 58, 3, 250, 2, 59, 3, 58, 3, 250, 2, 251, 2, 59, 3, 251, 2, 60, 3, 59, 3, 251, 2, 252, 2, 60, 3, 252, 2, 61, 3, 60, 3, 252, 2, 253, 2, 61, 3, 253, 2, 62, 3, 61, 3, 253, 2, 254, 2, 62, 3, 254, 2, 63, 3, 62, 3, 254, 2, 255, 2, 63, 3, 255, 2, 64, 3, 63, 3, 255, 2, 0, 3, 64, 3, 0, 3, 65, 3, 64, 3, 0, 3, 1, 3, 65, 3, 1, 3, 66, 3, 65, 3, 1, 3, 2, 3, 66, 3, 2, 3, 67, 3, 66, 3, 2, 3, 3, 3, 67, 3, 3, 3, 68, 3, 67, 3, 3, 3, 4, 3, 68, 3, 4, 3, 69, 3, 68, 3, 4, 3, 5, 3, 69, 3, 5, 3, 70, 3, 69, 3, 5, 3, 6, 3, 70, 3, 6, 3, 71, 3, 70, 3, 6, 3, 7, 3, 71, 3, 7, 3, 72, 3, 71, 3, 7, 3, 8, 3, 72, 3, 8, 3, 73, 3, 72, 3, 8, 3, 9, 3, 73, 3, 9, 3, 74, 3, 73, 3, 9, 3, 10, 3, 74, 3, 10, 3, 75, 3, 74, 3, 10, 3, 11, 3, 75, 3, 11, 3, 76, 3, 75, 3, 12, 3, 13, 3, 77, 3, 13, 3, 78, 3, 77, 3, 13, 3, 14, 3, 78, 3, 14, 3, 79, 3, 78, 3, 14, 3, 15, 3, 79, 3, 15, 3, 80, 3, 79, 3, 15, 3, 16, 3, 80, 3, 16, 3, 81, 3, 80, 3, 16, 3, 17, 3, 81, 3, 17, 3, 82, 3, 81, 3, 17, 3, 18, 3, 82, 3, 18, 3, 83, 3, 82, 3, 18, 3, 19, 3, 83, 3, 19, 3, 84, 3, 83, 3, 19, 3, 20, 3, 84, 3, 20, 3, 85, 3, 84, 3, 20, 3, 21, 3, 85, 3, 21, 3, 86, 3, 85, 3, 21, 3, 22, 3, 86, 3, 22, 3, 87, 3, 86, 3, 22, 3, 23, 3, 87, 3, 23, 3, 88, 3, 87, 3, 23, 3, 24, 3, 88, 3, 24, 3, 89, 3, 88, 3, 24, 3, 25, 3, 89, 3, 25, 3, 90, 3, 89, 3, 25, 3, 26, 3, 90, 3, 26, 3, 91, 3, 90, 3, 26, 3, 27, 3, 91, 3, 27, 3, 92, 3, 91, 3, 27, 3, 28, 3, 92, 3, 28, 3, 93, 3, 92, 3, 28, 3, 29, 3, 93, 3, 29, 3, 94, 3, 93, 3, 29, 3, 30, 3, 94, 3, 30, 3, 95, 3, 94, 3, 30, 3, 31, 3, 95, 3, 31, 3, 96, 3, 95, 3, 31, 3, 32, 3, 96, 3, 32, 3, 97, 3, 96, 3, 32, 3, 33, 3, 97, 3, 33, 3, 98, 3, 97, 3, 33, 3, 34, 3, 98, 3, 34, 3, 99, 3, 98, 3, 34, 3, 35, 3, 99, 3, 35, 3, 100, 3, 99, 3, 35, 3, 36, 3, 100, 3, 36, 3, 101, 3, 100, 3, 36, 3, 37, 3, 101, 3, 37, 3, 102, 3, 101, 3, 37, 3, 38, 3, 102, 3, 38, 3, 103, 3, 102, 3, 38, 3, 39, 3, 103, 3, 39, 3, 104, 3, 103, 3, 39, 3, 40, 3, 104, 3, 40, 3, 105, 3, 104, 3, 40, 3, 41, 3, 105, 3, 41, 3, 106, 3, 105, 3, 41, 3, 42, 3, 106, 3, 42, 3, 107, 3, 106, 3, 42, 3, 43, 3, 107, 3, 43, 3, 108, 3, 107, 3, 43, 3, 44, 3, 108, 3, 44, 3, 109, 3, 108, 3, 44, 3, 45, 3, 109, 3, 45, 3, 110, 3, 109, 3, 45, 3, 46, 3, 110, 3, 46, 3, 111, 3, 110, 3, 46, 3, 47, 3, 111, 3, 47, 3, 112, 3, 111, 3, 47, 3, 48, 3, 112, 3, 48, 3, 113, 3, 112, 3, 48, 3, 49, 3, 113, 3, 49, 3, 114, 3, 113, 3, 49, 3, 50, 3, 114, 3, 50, 3, 115, 3, 114, 3, 50, 3, 51, 3, 115, 3, 51, 3, 116, 3, 115, 3, 51, 3, 52, 3, 116, 3, 52, 3, 117, 3, 116, 3, 52, 3, 53, 3, 117, 3, 53, 3, 118, 3, 117, 3, 53, 3, 54, 3, 118, 3, 54, 3, 119, 3, 118, 3, 54, 3, 55, 3, 119, 3, 55, 3, 120, 3, 119, 3, 55, 3, 56, 3, 120, 3, 56, 3, 121, 3, 120, 3, 56, 3, 57, 3, 121, 3, 57, 3, 122, 3, 121, 3, 57, 3, 58, 3, 122, 3, 58, 3, 123, 3, 122, 3, 58, 3, 59, 3, 123, 3, 59, 3, 124, 3, 123, 3, 59, 3, 60, 3, 124, 3, 60, 3, 125, 3, 124, 3, 60, 3, 61, 3, 125, 3, 61, 3, 126, 3, 125, 3, 61, 3, 62, 3, 126, 3, 62, 3, 127, 3, 126, 3, 62, 3, 63, 3, 127, 3, 63, 3, 128, 3, 127, 3, 63, 3, 64, 3, 128, 3, 64, 3, 129, 3, 128, 3, 64, 3, 65, 3, 129, 3, 65, 3, 130, 3, 129, 3, 65, 3, 66, 3, 130, 3, 66, 3, 131, 3, 130, 3, 66, 3, 67, 3, 131, 3, 67, 3, 132, 3, 131, 3, 67, 3, 68, 3, 132, 3, 68, 3, 133, 3, 132, 3, 68, 3, 69, 3, 133, 3, 69, 3, 134, 3, 133, 3, 69, 3, 70, 3, 134, 3, 70, 3, 135, 3, 134, 3, 70, 3, 71, 3, 135, 3, 71, 3, 136, 3, 135, 3, 71, 3, 72, 3, 136, 3, 72, 3, 137, 3, 136, 3, 72, 3, 73, 3, 137, 3, 73, 3, 138, 3, 137, 3, 73, 3, 74, 3, 138, 3, 74, 3, 139, 3, 138, 3, 74, 3, 75, 3, 139, 3, 75, 3, 140, 3, 139, 3, 75, 3, 76, 3, 140, 3, 76, 3, 141, 3, 140, 3, 77, 3, 78, 3, 142, 3, 78, 3, 143, 3, 142, 3, 78, 3, 79, 3, 143, 3, 79, 3, 144, 3, 143, 3, 79, 3, 80, 3, 144, 3, 80, 3, 145, 3, 144, 3, 80, 3, 81, 3, 145, 3, 81, 3, 146, 3, 145, 3, 81, 3, 82, 3, 146, 3, 82, 3, 147, 3, 146, 3, 82, 3, 83, 3, 147, 3, 83, 3, 148, 3, 147, 3, 83, 3, 84, 3, 148, 3, 84, 3, 149, 3, 148, 3, 84, 3, 85, 3, 149, 3, 85, 3, 150, 3, 149, 3, 85, 3, 86, 3, 150, 3, 86, 3, 151, 3, 150, 3, 86, 3, 87, 3, 151, 3, 87, 3, 152, 3, 151, 3, 87, 3, 88, 3, 152, 3, 88, 3, 153, 3, 152, 3, 88, 3, 89, 3, 153, 3, 89, 3, 154, 3, 153, 3, 89, 3, 90, 3, 154, 3, 90, 3, 155, 3, 154, 3, 90, 3, 91, 3, 155, 3, 91, 3, 156, 3, 155, 3, 91, 3, 92, 3, 156, 3, 92, 3, 157, 3, 156, 3, 92, 3, 93, 3, 157, 3, 93, 3, 158, 3, 157, 3, 93, 3, 94, 3, 158, 3, 94, 3, 159, 3, 158, 3, 94, 3, 95, 3, 159, 3, 95, 3, 160, 3, 159, 3, 95, 3, 96, 3, 160, 3, 96, 3, 161, 3, 160, 3, 96, 3, 97, 3, 161, 3, 97, 3, 162, 3, 161, 3, 97, 3, 98, 3, 162, 3, 98, 3, 163, 3, 162, 3, 98, 3, 99, 3, 163, 3, 99, 3, 164, 3, 163, 3, 99, 3, 100, 3, 164, 3, 100, 3, 165, 3, 164, 3, 100, 3, 101, 3, 165, 3, 101, 3, 166, 3, 165, 3, 101, 3, 102, 3, 166, 3, 102, 3, 167, 3, 166, 3, 102, 3, 103, 3, 167, 3, 103, 3, 168, 3, 167, 3, 103, 3, 104, 3, 168, 3, 104, 3, 169, 3, 168, 3, 104, 3, 105, 3, 169, 3, 105, 3, 170, 3, 169, 3, 105, 3, 106, 3, 170, 3, 106, 3, 171, 3, 170, 3, 106, 3, 107, 3, 171, 3, 107, 3, 172, 3, 171, 3, 107, 3, 108, 3, 172, 3, 108, 3, 173, 3, 172, 3, 108, 3, 109, 3, 173, 3, 109, 3, 174, 3, 173, 3, 109, 3, 110, 3, 174, 3, 110, 3, 175, 3, 174, 3, 110, 3, 111, 3, 175, 3, 111, 3, 176, 3, 175, 3, 111, 3, 112, 3, 176, 3, 112, 3, 177, 3, 176, 3, 112, 3, 113, 3, 177, 3, 113, 3, 178, 3, 177, 3, 113, 3, 114, 3, 178, 3, 114, 3, 179, 3, 178, 3, 114, 3, 115, 3, 179, 3, 115, 3, 180, 3, 179, 3, 115, 3, 116, 3, 180, 3, 116, 3, 181, 3, 180, 3, 116, 3, 117, 3, 181, 3, 117, 3, 182, 3, 181, 3, 117, 3, 118, 3, 182, 3, 118, 3, 183, 3, 182, 3, 118, 3, 119, 3, 183, 3, 119, 3, 184, 3, 183, 3, 119, 3, 120, 3, 184, 3, 120, 3, 185, 3, 184, 3, 120, 3, 121, 3, 185, 3, 121, 3, 186, 3, 185, 3, 121, 3, 122, 3, 186, 3, 122, 3, 187, 3, 186, 3, 122, 3, 123, 3, 187, 3, 123, 3, 188, 3, 187, 3, 123, 3, 124, 3, 188, 3, 124, 3, 189, 3, 188, 3, 124, 3, 125, 3, 189, 3, 125, 3, 190, 3, 189, 3, 125, 3, 126, 3, 190, 3, 126, 3, 191, 3, 190, 3, 126, 3, 127, 3, 191, 3, 127, 3, 192, 3, 191, 3, 127, 3, 128, 3, 192, 3, 128, 3, 193, 3, 192, 3, 128, 3, 129, 3, 193, 3, 129, 3, 194, 3, 193, 3, 129, 3, 130, 3, 194, 3, 130, 3, 195, 3, 194, 3, 130, 3, 131, 3, 195, 3, 131, 3, 196, 3, 195, 3, 131, 3, 132, 3, 196, 3, 132, 3, 197, 3, 196, 3, 132, 3, 133, 3, 197, 3, 133, 3, 198, 3, 197, 3, 133, 3, 134, 3, 198, 3, 134, 3, 199, 3, 198, 3, 134, 3, 135, 3, 199, 3, 135, 3, 200, 3, 199, 3, 135, 3, 136, 3, 200, 3, 136, 3, 201, 3, 200, 3, 136, 3, 137, 3, 201, 3, 137, 3, 202, 3, 201, 3, 137, 3, 138, 3, 202, 3, 138, 3, 203, 3, 202, 3, 138, 3, 139, 3, 203, 3, 139, 3, 204, 3, 203, 3, 139, 3, 140, 3, 204, 3, 140, 3, 205, 3, 204, 3, 140, 3, 141, 3, 205, 3, 141, 3, 206, 3, 205, 3, 142, 3, 143, 3, 207, 3, 143, 3, 208, 3, 207, 3, 143, 3, 144, 3, 208, 3, 144, 3, 209, 3, 208, 3, 144, 3, 145, 3, 209, 3, 145, 3, 210, 3, 209, 3, 145, 3, 146, 3, 210, 3, 146, 3, 211, 3, 210, 3, 146, 3, 147, 3, 211, 3, 147, 3, 212, 3, 211, 3, 147, 3, 148, 3, 212, 3, 148, 3, 213, 3, 212, 3, 148, 3, 149, 3, 213, 3, 149, 3, 214, 3, 213, 3, 149, 3, 150, 3, 214, 3, 150, 3, 215, 3, 214, 3, 150, 3, 151, 3, 215, 3, 151, 3, 216, 3, 215, 3, 151, 3, 152, 3, 216, 3, 152, 3, 217, 3, 216, 3, 152, 3, 153, 3, 217, 3, 153, 3, 218, 3, 217, 3, 153, 3, 154, 3, 218, 3, 154, 3, 219, 3, 218, 3, 154, 3, 155, 3, 219, 3, 155, 3, 220, 3, 219, 3, 155, 3, 156, 3, 220, 3, 156, 3, 221, 3, 220, 3, 156, 3, 157, 3, 221, 3, 157, 3, 222, 3, 221, 3, 157, 3, 158, 3, 222, 3, 158, 3, 223, 3, 222, 3, 158, 3, 159, 3, 223, 3, 159, 3, 224, 3, 223, 3, 159, 3, 160, 3, 224, 3, 160, 3, 225, 3, 224, 3, 160, 3, 161, 3, 225, 3, 161, 3, 226, 3, 225, 3, 161, 3, 162, 3, 226, 3, 162, 3, 227, 3, 226, 3, 162, 3, 163, 3, 227, 3, 163, 3, 228, 3, 227, 3, 163, 3, 164, 3, 228, 3, 164, 3, 229, 3, 228, 3, 164, 3, 165, 3, 229, 3, 165, 3, 230, 3, 229, 3, 165, 3, 166, 3, 230, 3, 166, 3, 231, 3, 230, 3, 166, 3, 167, 3, 231, 3, 167, 3, 232, 3, 231, 3, 167, 3, 168, 3, 232, 3, 168, 3, 233, 3, 232, 3, 168, 3, 169, 3, 233, 3, 169, 3, 234, 3, 233, 3, 169, 3, 170, 3, 234, 3, 170, 3, 235, 3, 234, 3, 170, 3, 171, 3, 235, 3, 171, 3, 236, 3, 235, 3, 171, 3, 172, 3, 236, 3, 172, 3, 237, 3, 236, 3, 172, 3, 173, 3, 237, 3, 173, 3, 238, 3, 237, 3, 173, 3, 174, 3, 238, 3, 174, 3, 239, 3, 238, 3, 174, 3, 175, 3, 239, 3, 175, 3, 240, 3, 239, 3, 175, 3, 176, 3, 240, 3, 176, 3, 241, 3, 240, 3, 176, 3, 177, 3, 241, 3, 177, 3, 242, 3, 241, 3, 177, 3, 178, 3, 242, 3, 178, 3, 243, 3, 242, 3, 178, 3, 179, 3, 243, 3, 179, 3, 244, 3, 243, 3, 179, 3, 180, 3, 244, 3, 180, 3, 245, 3, 244, 3, 180, 3, 181, 3, 245, 3, 181, 3, 246, 3, 245, 3, 181, 3, 182, 3, 246, 3, 182, 3, 247, 3, 246, 3, 182, 3, 183, 3, 247, 3, 183, 3, 248, 3, 247, 3, 183, 3, 184, 3, 248, 3, 184, 3, 249, 3, 248, 3, 184, 3, 185, 3, 249, 3, 185, 3, 250, 3, 249, 3, 185, 3, 186, 3, 250, 3, 186, 3, 251, 3, 250, 3, 186, 3, 187, 3, 251, 3, 187, 3, 252, 3, 251, 3, 187, 3, 188, 3, 252, 3, 188, 3, 253, 3, 252, 3, 188, 3, 189, 3, 253, 3, 189, 3, 254, 3, 253, 3, 189, 3, 190, 3, 254, 3, 190, 3, 255, 3, 254, 3, 190, 3, 191, 3, 255, 3, 191, 3, 0, 4, 255, 3, 191, 3, 192, 3, 0, 4, 192, 3, 1, 4, 0, 4, 192, 3, 193, 3, 1, 4, 193, 3, 2, 4, 1, 4, 193, 3, 194, 3, 2, 4, 194, 3, 3, 4, 2, 4, 194, 3, 195, 3, 3, 4, 195, 3, 4, 4, 3, 4, 195, 3, 196, 3, 4, 4, 196, 3, 5, 4, 4, 4, 196, 3, 197, 3, 5, 4, 197, 3, 6, 4, 5, 4, 197, 3, 198, 3, 6, 4, 198, 3, 7, 4, 6, 4, 198, 3, 199, 3, 7, 4, 199, 3, 8, 4, 7, 4, 199, 3, 200, 3, 8, 4, 200, 3, 9, 4, 8, 4, 200, 3, 201, 3, 9, 4, 201, 3, 10, 4, 9, 4, 201, 3, 202, 3, 10, 4, 202, 3, 11, 4, 10, 4, 202, 3, 203, 3, 11, 4, 203, 3, 12, 4, 11, 4, 203, 3, 204, 3, 12, 4, 204, 3, 13, 4, 12, 4, 204, 3, 205, 3, 13, 4, 205, 3, 14, 4, 13, 4, 205, 3, 206, 3, 14, 4, 206, 3, 15, 4, 14, 4, 207, 3, 208, 3, 16, 4, 208, 3, 17, 4, 16, 4, 208, 3, 209, 3, 17, 4, 209, 3, 18, 4, 17, 4, 209, 3, 210, 3, 18, 4, 210, 3, 19, 4, 18, 4, 210, 3, 211, 3, 19, 4, 211, 3, 20, 4, 19, 4, 211, 3, 212, 3, 20, 4, 212, 3, 21, 4, 20, 4, 212, 3, 213, 3, 21, 4, 213, 3, 22, 4, 21, 4, 213, 3, 214, 3, 22, 4, 214, 3, 23, 4, 22, 4, 214, 3, 215, 3, 23, 4, 215, 3, 24, 4, 23, 4, 215, 3, 216, 3, 24, 4, 216, 3, 25, 4, 24, 4, 216, 3, 217, 3, 25, 4, 217, 3, 26, 4, 25, 4, 217, 3, 218, 3, 26, 4, 218, 3, 27, 4, 26, 4, 218, 3, 219, 3, 27, 4, 219, 3, 28, 4, 27, 4, 219, 3, 220, 3, 28, 4, 220, 3, 29, 4, 28, 4, 220, 3, 221, 3, 29, 4, 221, 3, 30, 4, 29, 4, 221, 3, 222, 3, 30, 4, 222, 3, 31, 4, 30, 4, 222, 3, 223, 3, 31, 4, 223, 3, 32, 4, 31, 4, 223, 3, 224, 3, 32, 4, 224, 3, 33, 4, 32, 4, 224, 3, 225, 3, 33, 4, 225, 3, 34, 4, 33, 4, 225, 3, 226, 3, 34, 4, 226, 3, 35, 4, 34, 4, 226, 3, 227, 3, 35, 4, 227, 3, 36, 4, 35, 4, 227, 3, 228, 3, 36, 4, 228, 3, 37, 4, 36, 4, 228, 3, 229, 3, 37, 4, 229, 3, 38, 4, 37, 4, 229, 3, 230, 3, 38, 4, 230, 3, 39, 4, 38, 4, 230, 3, 231, 3, 39, 4, 231, 3, 40, 4, 39, 4, 231, 3, 232, 3, 40, 4, 232, 3, 41, 4, 40, 4, 232, 3, 233, 3, 41, 4, 233, 3, 42, 4, 41, 4, 233, 3, 234, 3, 42, 4, 234, 3, 43, 4, 42, 4, 234, 3, 235, 3, 43, 4, 235, 3, 44, 4, 43, 4, 235, 3, 236, 3, 44, 4, 236, 3, 45, 4, 44, 4, 236, 3, 237, 3, 45, 4, 237, 3, 46, 4, 45, 4, 237, 3, 238, 3, 46, 4, 238, 3, 47, 4, 46, 4, 238, 3, 239, 3, 47, 4, 239, 3, 48, 4, 47, 4, 239, 3, 240, 3, 48, 4, 240, 3, 49, 4, 48, 4, 240, 3, 241, 3, 49, 4, 241, 3, 50, 4, 49, 4, 241, 3, 242, 3, 50, 4, 242, 3, 51, 4, 50, 4, 242, 3, 243, 3, 51, 4, 243, 3, 52, 4, 51, 4, 243, 3, 244, 3, 52, 4, 244, 3, 53, 4, 52, 4, 244, 3, 245, 3, 53, 4, 245, 3, 54, 4, 53, 4, 245, 3, 246, 3, 54, 4, 246, 3, 55, 4, 54, 4, 246, 3, 247, 3, 55, 4, 247, 3, 56, 4, 55, 4, 247, 3, 248, 3, 56, 4, 248, 3, 57, 4, 56, 4, 248, 3, 249, 3, 57, 4, 249, 3, 58, 4, 57, 4, 249, 3, 250, 3, 58, 4, 250, 3, 59, 4, 58, 4, 250, 3, 251, 3, 59, 4, 251, 3, 60, 4, 59, 4, 251, 3, 252, 3, 60, 4, 252, 3, 61, 4, 60, 4, 252, 3, 253, 3, 61, 4, 253, 3, 62, 4, 61, 4, 253, 3, 254, 3, 62, 4, 254, 3, 63, 4, 62, 4, 254, 3, 255, 3, 63, 4, 255, 3, 64, 4, 63, 4, 255, 3, 0, 4, 64, 4, 0, 4, 65, 4, 64, 4, 0, 4, 1, 4, 65, 4, 1, 4, 66, 4, 65, 4, 1, 4, 2, 4, 66, 4, 2, 4, 67, 4, 66, 4, 2, 4, 3, 4, 67, 4, 3, 4, 68, 4, 67, 4, 3, 4, 4, 4, 68, 4, 4, 4, 69, 4, 68, 4, 4, 4, 5, 4, 69, 4, 5, 4, 70, 4, 69, 4, 5, 4, 6, 4, 70, 4, 6, 4, 71, 4, 70, 4, 6, 4, 7, 4, 71, 4, 7, 4, 72, 4, 71, 4, 7, 4, 8, 4, 72, 4, 8, 4, 73, 4, 72, 4, 8, 4, 9, 4, 73, 4, 9, 4, 74, 4, 73, 4, 9, 4, 10, 4, 74, 4, 10, 4, 75, 4, 74, 4, 10, 4, 11, 4, 75, 4, 11, 4, 76, 4, 75, 4, 11, 4, 12, 4, 76, 4, 12, 4, 77, 4, 76, 4, 12, 4, 13, 4, 77, 4, 13, 4, 78, 4, 77, 4, 13, 4, 14, 4, 78, 4, 14, 4, 79, 4, 78, 4, 14, 4, 15, 4, 79, 4, 15, 4, 80, 4, 79, 4, 16, 4, 17, 4, 81, 4, 17, 4, 82, 4, 81, 4, 17, 4, 18, 4, 82, 4, 18, 4, 83, 4, 82, 4, 18, 4, 19, 4, 83, 4, 19, 4, 84, 4, 83, 4, 19, 4, 20, 4, 84, 4, 20, 4, 85, 4, 84, 4, 20, 4, 21, 4, 85, 4, 21, 4, 86, 4, 85, 4, 21, 4, 22, 4, 86, 4, 22, 4, 87, 4, 86, 4, 22, 4, 23, 4, 87, 4, 23, 4, 88, 4, 87, 4, 23, 4, 24, 4, 88, 4, 24, 4, 89, 4, 88, 4, 24, 4, 25, 4, 89, 4, 25, 4, 90, 4, 89, 4, 25, 4, 26, 4, 90, 4, 26, 4, 91, 4, 90, 4, 26, 4, 27, 4, 91, 4, 27, 4, 92, 4, 91, 4, 27, 4, 28, 4, 92, 4, 28, 4, 93, 4, 92, 4, 28, 4, 29, 4, 93, 4, 29, 4, 94, 4, 93, 4, 29, 4, 30, 4, 94, 4, 30, 4, 95, 4, 94, 4, 30, 4, 31, 4, 95, 4, 31, 4, 96, 4, 95, 4, 31, 4, 32, 4, 96, 4, 32, 4, 97, 4, 96, 4, 32, 4, 33, 4, 97, 4, 33, 4, 98, 4, 97, 4, 33, 4, 34, 4, 98, 4, 34, 4, 99, 4, 98, 4, 34, 4, 35, 4, 99, 4, 35, 4, 100, 4, 99, 4, 35, 4, 36, 4, 100, 4, 36, 4, 101, 4, 100, 4, 36, 4, 37, 4, 101, 4, 37, 4, 102, 4, 101, 4, 37, 4, 38, 4, 102, 4, 38, 4, 103, 4, 102, 4, 38, 4, 39, 4, 103, 4, 39, 4, 104, 4, 103, 4, 39, 4, 40, 4, 104, 4, 40, 4, 105, 4, 104, 4, 40, 4, 41, 4, 105, 4, 41, 4, 106, 4, 105, 4, 41, 4, 42, 4, 106, 4, 42, 4, 107, 4, 106, 4, 42, 4, 43, 4, 107, 4, 43, 4, 108, 4, 107, 4, 43, 4, 44, 4, 108, 4, 44, 4, 109, 4, 108, 4, 44, 4, 45, 4, 109, 4, 45, 4, 110, 4, 109, 4, 45, 4, 46, 4, 110, 4, 46, 4, 111, 4, 110, 4, 46, 4, 47, 4, 111, 4, 47, 4, 112, 4, 111, 4, 47, 4, 48, 4, 112, 4, 48, 4, 113, 4, 112, 4, 48, 4, 49, 4, 113, 4, 49, 4, 114, 4, 113, 4, 49, 4, 50, 4, 114, 4, 50, 4, 115, 4, 114, 4, 50, 4, 51, 4, 115, 4, 51, 4, 116, 4, 115, 4, 51, 4, 52, 4, 116, 4, 52, 4, 117, 4, 116, 4, 52, 4, 53, 4, 117, 4, 53, 4, 118, 4, 117, 4, 53, 4, 54, 4, 118, 4, 54, 4, 119, 4, 118, 4, 54, 4, 55, 4, 119, 4, 55, 4, 120, 4, 119, 4, 55, 4, 56, 4, 120, 4, 56, 4, 121, 4, 120, 4, 56, 4, 57, 4, 121, 4, 57, 4, 122, 4, 121, 4, 57, 4, 58, 4, 122, 4, 58, 4, 123, 4, 122, 4, 58, 4, 59, 4, 123, 4, 59, 4, 124, 4, 123, 4, 59, 4, 60, 4, 124, 4, 60, 4, 125, 4, 124, 4, 60, 4, 61, 4, 125, 4, 61, 4, 126, 4, 125, 4, 61, 4, 62, 4, 126, 4, 62, 4, 127, 4, 126, 4, 62, 4, 63, 4, 127, 4, 63, 4, 128, 4, 127, 4, 63, 4, 64, 4, 128, 4, 64, 4, 129, 4, 128, 4, 64, 4, 65, 4, 129, 4, 65, 4, 130, 4, 129, 4, 65, 4, 66, 4, 130, 4, 66, 4, 131, 4, 130, 4, 66, 4, 67, 4, 131, 4, 67, 4, 132, 4, 131, 4, 67, 4, 68, 4, 132, 4, 68, 4, 133, 4, 132, 4, 68, 4, 69, 4, 133, 4, 69, 4, 134, 4, 133, 4, 69, 4, 70, 4, 134, 4, 70, 4, 135, 4, 134, 4, 70, 4, 71, 4, 135, 4, 71, 4, 136, 4, 135, 4, 71, 4, 72, 4, 136, 4, 72, 4, 137, 4, 136, 4, 72, 4, 73, 4, 137, 4, 73, 4, 138, 4, 137, 4, 73, 4, 74, 4, 138, 4, 74, 4, 139, 4, 138, 4, 74, 4, 75, 4, 139, 4, 75, 4, 140, 4, 139, 4, 75, 4, 76, 4, 140, 4, 76, 4, 141, 4, 140, 4, 76, 4, 77, 4, 141, 4, 77, 4, 142, 4, 141, 4, 77, 4, 78, 4, 142, 4, 78, 4, 143, 4, 142, 4, 78, 4, 79, 4, 143, 4, 79, 4, 144, 4, 143, 4, 79, 4, 80, 4, 144, 4, 80, 4, 145, 4, 144, 4, 81, 4, 82, 4, 146, 4, 82, 4, 147, 4, 146, 4, 82, 4, 83, 4, 147, 4, 83, 4, 148, 4, 147, 4, 83, 4, 84, 4, 148, 4, 84, 4, 149, 4, 148, 4, 84, 4, 85, 4, 149, 4, 85, 4, 150, 4, 149, 4, 85, 4, 86, 4, 150, 4, 86, 4, 151, 4, 150, 4, 86, 4, 87, 4, 151, 4, 87, 4, 152, 4, 151, 4, 87, 4, 88, 4, 152, 4, 88, 4, 153, 4, 152, 4, 88, 4, 89, 4, 153, 4, 89, 4, 154, 4, 153, 4, 89, 4, 90, 4, 154, 4, 90, 4, 155, 4, 154, 4, 90, 4, 91, 4, 155, 4, 91, 4, 156, 4, 155, 4, 91, 4, 92, 4, 156, 4, 92, 4, 157, 4, 156, 4, 92, 4, 93, 4, 157, 4, 93, 4, 158, 4, 157, 4, 93, 4, 94, 4, 158, 4, 94, 4, 159, 4, 158, 4, 94, 4, 95, 4, 159, 4, 95, 4, 160, 4, 159, 4, 95, 4, 96, 4, 160, 4, 96, 4, 161, 4, 160, 4, 96, 4, 97, 4, 161, 4, 97, 4, 162, 4, 161, 4, 97, 4, 98, 4, 162, 4, 98, 4, 163, 4, 162, 4, 98, 4, 99, 4, 163, 4, 99, 4, 164, 4, 163, 4, 99, 4, 100, 4, 164, 4, 100, 4, 165, 4, 164, 4, 100, 4, 101, 4, 165, 4, 101, 4, 166, 4, 165, 4, 101, 4, 102, 4, 166, 4, 102, 4, 167, 4, 166, 4, 102, 4, 103, 4, 167, 4, 103, 4, 168, 4, 167, 4, 103, 4, 104, 4, 168, 4, 104, 4, 169, 4, 168, 4, 104, 4, 105, 4, 169, 4, 105, 4, 170, 4, 169, 4, 105, 4, 106, 4, 170, 4, 106, 4, 171, 4, 170, 4, 106, 4, 107, 4, 171, 4, 107, 4, 172, 4, 171, 4, 107, 4, 108, 4, 172, 4, 108, 4, 173, 4, 172, 4, 108, 4, 109, 4, 173, 4, 109, 4, 174, 4, 173, 4, 109, 4, 110, 4, 174, 4, 110, 4, 175, 4, 174, 4, 110, 4, 111, 4, 175, 4, 111, 4, 176, 4, 175, 4, 111, 4, 112, 4, 176, 4, 112, 4, 177, 4, 176, 4, 112, 4, 113, 4, 177, 4, 113, 4, 178, 4, 177, 4, 113, 4, 114, 4, 178, 4, 114, 4, 179, 4, 178, 4, 114, 4, 115, 4, 179, 4, 115, 4, 180, 4, 179, 4, 115, 4, 116, 4, 180, 4, 116, 4, 181, 4, 180, 4, 116, 4, 117, 4, 181, 4, 117, 4, 182, 4, 181, 4, 117, 4, 118, 4, 182, 4, 118, 4, 183, 4, 182, 4, 118, 4, 119, 4, 183, 4, 119, 4, 184, 4, 183, 4, 119, 4, 120, 4, 184, 4, 120, 4, 185, 4, 184, 4, 120, 4, 121, 4, 185, 4, 121, 4, 186, 4, 185, 4, 121, 4, 122, 4, 186, 4, 122, 4, 187, 4, 186, 4, 122, 4, 123, 4, 187, 4, 123, 4, 188, 4, 187, 4, 123, 4, 124, 4, 188, 4, 124, 4, 189, 4, 188, 4, 124, 4, 125, 4, 189, 4, 125, 4, 190, 4, 189, 4, 125, 4, 126, 4, 190, 4, 126, 4, 191, 4, 190, 4, 126, 4, 127, 4, 191, 4, 127, 4, 192, 4, 191, 4, 127, 4, 128, 4, 192, 4, 128, 4, 193, 4, 192, 4, 128, 4, 129, 4, 193, 4, 129, 4, 194, 4, 193, 4, 129, 4, 130, 4, 194, 4, 130, 4, 195, 4, 194, 4, 130, 4, 131, 4, 195, 4, 131, 4, 196, 4, 195, 4, 131, 4, 132, 4, 196, 4, 132, 4, 197, 4, 196, 4, 132, 4, 133, 4, 197, 4, 133, 4, 198, 4, 197, 4, 133, 4, 134, 4, 198, 4, 134, 4, 199, 4, 198, 4, 134, 4, 135, 4, 199, 4, 135, 4, 200, 4, 199, 4, 135, 4, 136, 4, 200, 4, 136, 4, 201, 4, 200, 4, 136, 4, 137, 4, 201, 4, 137, 4, 202, 4, 201, 4, 137, 4, 138, 4, 202, 4, 138, 4, 203, 4, 202, 4, 138, 4, 139, 4, 203, 4, 139, 4, 204, 4, 203, 4, 139, 4, 140, 4, 204, 4, 140, 4, 205, 4, 204, 4, 140, 4, 141, 4, 205, 4, 141, 4, 206, 4, 205, 4, 141, 4, 142, 4, 206, 4, 142, 4, 207, 4, 206, 4, 142, 4, 143, 4, 207, 4, 143, 4, 208, 4, 207, 4, 143, 4, 144, 4, 208, 4, 144, 4, 209, 4, 208, 4, 144, 4, 145, 4, 209, 4, 145, 4, 210, 4, 209, 4, 146, 4, 147, 4, 211, 4, 147, 4, 212, 4, 211, 4, 147, 4, 148, 4, 212, 4, 148, 4, 213, 4, 212, 4, 148, 4, 149, 4, 213, 4, 149, 4, 214, 4, 213, 4, 149, 4, 150, 4, 214, 4, 150, 4, 215, 4, 214, 4, 150, 4, 151, 4, 215, 4, 151, 4, 216, 4, 215, 4, 151, 4, 152, 4, 216, 4, 152, 4, 217, 4, 216, 4, 152, 4, 153, 4, 217, 4, 153, 4, 218, 4, 217, 4, 153, 4, 154, 4, 218, 4, 154, 4, 219, 4, 218, 4, 154, 4, 155, 4, 219, 4, 155, 4, 220, 4, 219, 4, 155, 4, 156, 4, 220, 4, 156, 4, 221, 4, 220, 4, 156, 4, 157, 4, 221, 4, 157, 4, 222, 4, 221, 4, 157, 4, 158, 4, 222, 4, 158, 4, 223, 4, 222, 4, 158, 4, 159, 4, 223, 4, 159, 4, 224, 4, 223, 4, 159, 4, 160, 4, 224, 4, 160, 4, 225, 4, 224, 4, 160, 4, 161, 4, 225, 4, 161, 4, 226, 4, 225, 4, 161, 4, 162, 4, 226, 4, 162, 4, 227, 4, 226, 4, 162, 4, 163, 4, 227, 4, 163, 4, 228, 4, 227, 4, 163, 4, 164, 4, 228, 4, 164, 4, 229, 4, 228, 4, 164, 4, 165, 4, 229, 4, 165, 4, 230, 4, 229, 4, 165, 4, 166, 4, 230, 4, 166, 4, 231, 4, 230, 4, 166, 4, 167, 4, 231, 4, 167, 4, 232, 4, 231, 4, 167, 4, 168, 4, 232, 4, 168, 4, 233, 4, 232, 4, 168, 4, 169, 4, 233, 4, 169, 4, 234, 4, 233, 4, 169, 4, 170, 4, 234, 4, 170, 4, 235, 4, 234, 4, 170, 4, 171, 4, 235, 4, 171, 4, 236, 4, 235, 4, 171, 4, 172, 4, 236, 4, 172, 4, 237, 4, 236, 4, 172, 4, 173, 4, 237, 4, 173, 4, 238, 4, 237, 4, 173, 4, 174, 4, 238, 4, 174, 4, 239, 4, 238, 4, 174, 4, 175, 4, 239, 4, 175, 4, 240, 4, 239, 4, 175, 4, 176, 4, 240, 4, 176, 4, 241, 4, 240, 4, 176, 4, 177, 4, 241, 4, 177, 4, 242, 4, 241, 4, 177, 4, 178, 4, 242, 4, 178, 4, 243, 4, 242, 4, 178, 4, 179, 4, 243, 4, 179, 4, 244, 4, 243, 4, 179, 4, 180, 4, 244, 4, 180, 4, 245, 4, 244, 4, 180, 4, 181, 4, 245, 4, 181, 4, 246, 4, 245, 4, 181, 4, 182, 4, 246, 4, 182, 4, 247, 4, 246, 4, 182, 4, 183, 4, 247, 4, 183, 4, 248, 4, 247, 4, 183, 4, 184, 4, 248, 4, 184, 4, 249, 4, 248, 4, 184, 4, 185, 4, 249, 4, 185, 4, 250, 4, 249, 4, 185, 4, 186, 4, 250, 4, 186, 4, 251, 4, 250, 4, 186, 4, 187, 4, 251, 4, 187, 4, 252, 4, 251, 4, 187, 4, 188, 4, 252, 4, 188, 4, 253, 4, 252, 4, 188, 4, 189, 4, 253, 4, 189, 4, 254, 4, 253, 4, 189, 4, 190, 4, 254, 4, 190, 4, 255, 4, 254, 4, 190, 4, 191, 4, 255, 4, 191, 4, 0, 5, 255, 4, 191, 4, 192, 4, 0, 5, 192, 4, 1, 5, 0, 5, 192, 4, 193, 4, 1, 5, 193, 4, 2, 5, 1, 5, 193, 4, 194, 4, 2, 5, 194, 4, 3, 5, 2, 5, 194, 4, 195, 4, 3, 5, 195, 4, 4, 5, 3, 5, 195, 4, 196, 4, 4, 5, 196, 4, 5, 5, 4, 5, 196, 4, 197, 4, 5, 5, 197, 4, 6, 5, 5, 5, 197, 4, 198, 4, 6, 5, 198, 4, 7, 5, 6, 5, 198, 4, 199, 4, 7, 5, 199, 4, 8, 5, 7, 5, 199, 4, 200, 4, 8, 5, 200, 4, 9, 5, 8, 5, 200, 4, 201, 4, 9, 5, 201, 4, 10, 5, 9, 5, 201, 4, 202, 4, 10, 5, 202, 4, 11, 5, 10, 5, 202, 4, 203, 4, 11, 5, 203, 4, 12, 5, 11, 5, 203, 4, 204, 4, 12, 5, 204, 4, 13, 5, 12, 5, 204, 4, 205, 4, 13, 5, 205, 4, 14, 5, 13, 5, 205, 4, 206, 4, 14, 5, 206, 4, 15, 5, 14, 5, 206, 4, 207, 4, 15, 5, 207, 4, 16, 5, 15, 5, 207, 4, 208, 4, 16, 5, 208, 4, 17, 5, 16, 5, 208, 4, 209, 4, 17, 5, 209, 4, 18, 5, 17, 5, 209, 4, 210, 4, 18, 5, 210, 4, 19, 5, 18, 5, 211, 4, 212, 4, 20, 5, 212, 4, 21, 5, 20, 5, 212, 4, 213, 4, 21, 5, 213, 4, 22, 5, 21, 5, 213, 4, 214, 4, 22, 5, 214, 4, 23, 5, 22, 5, 214, 4, 215, 4, 23, 5, 215, 4, 24, 5, 23, 5, 215, 4, 216, 4, 24, 5, 216, 4, 25, 5, 24, 5, 216, 4, 217, 4, 25, 5, 217, 4, 26, 5, 25, 5, 217, 4, 218, 4, 26, 5, 218, 4, 27, 5, 26, 5, 218, 4, 219, 4, 27, 5, 219, 4, 28, 5, 27, 5, 219, 4, 220, 4, 28, 5, 220, 4, 29, 5, 28, 5, 220, 4, 221, 4, 29, 5, 221, 4, 30, 5, 29, 5, 221, 4, 222, 4, 30, 5, 222, 4, 31, 5, 30, 5, 222, 4, 223, 4, 31, 5, 223, 4, 32, 5, 31, 5, 223, 4, 224, 4, 32, 5, 224, 4, 33, 5, 32, 5, 224, 4, 225, 4, 33, 5, 225, 4, 34, 5, 33, 5, 225, 4, 226, 4, 34, 5, 226, 4, 35, 5, 34, 5, 226, 4, 227, 4, 35, 5, 227, 4, 36, 5, 35, 5, 227, 4, 228, 4, 36, 5, 228, 4, 37, 5, 36, 5, 228, 4, 229, 4, 37, 5, 229, 4, 38, 5, 37, 5, 229, 4, 230, 4, 38, 5, 230, 4, 39, 5, 38, 5, 230, 4, 231, 4, 39, 5, 231, 4, 40, 5, 39, 5, 231, 4, 232, 4, 40, 5, 232, 4, 41, 5, 40, 5, 232, 4, 233, 4, 41, 5, 233, 4, 42, 5, 41, 5, 233, 4, 234, 4, 42, 5, 234, 4, 43, 5, 42, 5, 234, 4, 235, 4, 43, 5, 235, 4, 44, 5, 43, 5, 235, 4, 236, 4, 44, 5, 236, 4, 45, 5, 44, 5, 236, 4, 237, 4, 45, 5, 237, 4, 46, 5, 45, 5, 237, 4, 238, 4, 46, 5, 238, 4, 47, 5, 46, 5, 238, 4, 239, 4, 47, 5, 239, 4, 48, 5, 47, 5, 239, 4, 240, 4, 48, 5, 240, 4, 49, 5, 48, 5, 240, 4, 241, 4, 49, 5, 241, 4, 50, 5, 49, 5, 241, 4, 242, 4, 50, 5, 242, 4, 51, 5, 50, 5, 242, 4, 243, 4, 51, 5, 243, 4, 52, 5, 51, 5, 243, 4, 244, 4, 52, 5, 244, 4, 53, 5, 52, 5, 244, 4, 245, 4, 53, 5, 245, 4, 54, 5, 53, 5, 245, 4, 246, 4, 54, 5, 246, 4, 55, 5, 54, 5, 246, 4, 247, 4, 55, 5, 247, 4, 56, 5, 55, 5, 247, 4, 248, 4, 56, 5, 248, 4, 57, 5, 56, 5, 248, 4, 249, 4, 57, 5, 249, 4, 58, 5, 57, 5, 249, 4, 250, 4, 58, 5, 250, 4, 59, 5, 58, 5, 250, 4, 251, 4, 59, 5, 251, 4, 60, 5, 59, 5, 251, 4, 252, 4, 60, 5, 252, 4, 61, 5, 60, 5, 252, 4, 253, 4, 61, 5, 253, 4, 62, 5, 61, 5, 253, 4, 254, 4, 62, 5, 254, 4, 63, 5, 62, 5, 254, 4, 255, 4, 63, 5, 255, 4, 64, 5, 63, 5, 255, 4, 0, 5, 64, 5, 0, 5, 65, 5, 64, 5, 0, 5, 1, 5, 65, 5, 1, 5, 66, 5, 65, 5, 1, 5, 2, 5, 66, 5, 2, 5, 67, 5, 66, 5, 2, 5, 3, 5, 67, 5, 3, 5, 68, 5, 67, 5, 3, 5, 4, 5, 68, 5, 4, 5, 69, 5, 68, 5, 4, 5, 5, 5, 69, 5, 5, 5, 70, 5, 69, 5, 5, 5, 6, 5, 70, 5, 6, 5, 71, 5, 70, 5, 6, 5, 7, 5, 71, 5, 7, 5, 72, 5, 71, 5, 7, 5, 8, 5, 72, 5, 8, 5, 73, 5, 72, 5, 8, 5, 9, 5, 73, 5, 9, 5, 74, 5, 73, 5, 9, 5, 10, 5, 74, 5, 10, 5, 75, 5, 74, 5, 10, 5, 11, 5, 75, 5, 11, 5, 76, 5, 75, 5, 11, 5, 12, 5, 76, 5, 12, 5, 77, 5, 76, 5, 12, 5, 13, 5, 77, 5, 13, 5, 78, 5, 77, 5, 13, 5, 14, 5, 78, 5, 14, 5, 79, 5, 78, 5, 14, 5, 15, 5, 79, 5, 15, 5, 80, 5, 79, 5, 15, 5, 16, 5, 80, 5, 16, 5, 81, 5, 80, 5, 16, 5, 17, 5, 81, 5, 17, 5, 82, 5, 81, 5, 17, 5, 18, 5, 82, 5, 18, 5, 83, 5, 82, 5, 18, 5, 19, 5, 83, 5, 19, 5, 84, 5, 83, 5, 20, 5, 21, 5, 85, 5, 21, 5, 86, 5, 85, 5, 21, 5, 22, 5, 86, 5, 22, 5, 87, 5, 86, 5, 22, 5, 23, 5, 87, 5, 23, 5, 88, 5, 87, 5, 23, 5, 24, 5, 88, 5, 24, 5, 89, 5, 88, 5, 24, 5, 25, 5, 89, 5, 25, 5, 90, 5, 89, 5, 25, 5, 26, 5, 90, 5, 26, 5, 91, 5, 90, 5, 26, 5, 27, 5, 91, 5, 27, 5, 92, 5, 91, 5, 27, 5, 28, 5, 92, 5, 28, 5, 93, 5, 92, 5, 28, 5, 29, 5, 93, 5, 29, 5, 94, 5, 93, 5, 29, 5, 30, 5, 94, 5, 30, 5, 95, 5, 94, 5, 30, 5, 31, 5, 95, 5, 31, 5, 96, 5, 95, 5, 31, 5, 32, 5, 96, 5, 32, 5, 97, 5, 96, 5, 32, 5, 33, 5, 97, 5, 33, 5, 98, 5, 97, 5, 33, 5, 34, 5, 98, 5, 34, 5, 99, 5, 98, 5, 34, 5, 35, 5, 99, 5, 35, 5, 100, 5, 99, 5, 35, 5, 36, 5, 100, 5, 36, 5, 101, 5, 100, 5, 36, 5, 37, 5, 101, 5, 37, 5, 102, 5, 101, 5, 37, 5, 38, 5, 102, 5, 38, 5, 103, 5, 102, 5, 38, 5, 39, 5, 103, 5, 39, 5, 104, 5, 103, 5, 39, 5, 40, 5, 104, 5, 40, 5, 105, 5, 104, 5, 40, 5, 41, 5, 105, 5, 41, 5, 106, 5, 105, 5, 41, 5, 42, 5, 106, 5, 42, 5, 107, 5, 106, 5, 42, 5, 43, 5, 107, 5, 43, 5, 108, 5, 107, 5, 43, 5, 44, 5, 108, 5, 44, 5, 109, 5, 108, 5, 44, 5, 45, 5, 109, 5, 45, 5, 110, 5, 109, 5, 45, 5, 46, 5, 110, 5, 46, 5, 111, 5, 110, 5, 46, 5, 47, 5, 111, 5, 47, 5, 112, 5, 111, 5, 47, 5, 48, 5, 112, 5, 48, 5, 113, 5, 112, 5, 48, 5, 49, 5, 113, 5, 49, 5, 114, 5, 113, 5, 49, 5, 50, 5, 114, 5, 50, 5, 115, 5, 114, 5, 50, 5, 51, 5, 115, 5, 51, 5, 116, 5, 115, 5, 51, 5, 52, 5, 116, 5, 52, 5, 117, 5, 116, 5, 52, 5, 53, 5, 117, 5, 53, 5, 118, 5, 117, 5, 53, 5, 54, 5, 118, 5, 54, 5, 119, 5, 118, 5, 54, 5, 55, 5, 119, 5, 55, 5, 120, 5, 119, 5, 55, 5, 56, 5, 120, 5, 56, 5, 121, 5, 120, 5, 56, 5, 57, 5, 121, 5, 57, 5, 122, 5, 121, 5, 57, 5, 58, 5, 122, 5, 58, 5, 123, 5, 122, 5, 58, 5, 59, 5, 123, 5, 59, 5, 124, 5, 123, 5, 59, 5, 60, 5, 124, 5, 60, 5, 125, 5, 124, 5, 60, 5, 61, 5, 125, 5, 61, 5, 126, 5, 125, 5, 61, 5, 62, 5, 126, 5, 62, 5, 127, 5, 126, 5, 62, 5, 63, 5, 127, 5, 63, 5, 128, 5, 127, 5, 63, 5, 64, 5, 128, 5, 64, 5, 129, 5, 128, 5, 64, 5, 65, 5, 129, 5, 65, 5, 130, 5, 129, 5, 65, 5, 66, 5, 130, 5, 66, 5, 131, 5, 130, 5, 66, 5, 67, 5, 131, 5, 67, 5, 132, 5, 131, 5, 67, 5, 68, 5, 132, 5, 68, 5, 133, 5, 132, 5, 68, 5, 69, 5, 133, 5, 69, 5, 134, 5, 133, 5, 69, 5, 70, 5, 134, 5, 70, 5, 135, 5, 134, 5, 70, 5, 71, 5, 135, 5, 71, 5, 136, 5, 135, 5, 71, 5, 72, 5, 136, 5, 72, 5, 137, 5, 136, 5, 72, 5, 73, 5, 137, 5, 73, 5, 138, 5, 137, 5, 73, 5, 74, 5, 138, 5, 74, 5, 139, 5, 138, 5, 74, 5, 75, 5, 139, 5, 75, 5, 140, 5, 139, 5, 75, 5, 76, 5, 140, 5, 76, 5, 141, 5, 140, 5, 76, 5, 77, 5, 141, 5, 77, 5, 142, 5, 141, 5, 77, 5, 78, 5, 142, 5, 78, 5, 143, 5, 142, 5, 78, 5, 79, 5, 143, 5, 79, 5, 144, 5, 143, 5, 79, 5, 80, 5, 144, 5, 80, 5, 145, 5, 144, 5, 80, 5, 81, 5, 145, 5, 81, 5, 146, 5, 145, 5, 81, 5, 82, 5, 146, 5, 82, 5, 147, 5, 146, 5, 82, 5, 83, 5, 147, 5, 83, 5, 148, 5, 147, 5, 83, 5, 84, 5, 148, 5, 84, 5, 149, 5, 148, 5, 85, 5, 86, 5, 150, 5, 86, 5, 151, 5, 150, 5, 86, 5, 87, 5, 151, 5, 87, 5, 152, 5, 151, 5, 87, 5, 88, 5, 152, 5, 88, 5, 153, 5, 152, 5, 88, 5, 89, 5, 153, 5, 89, 5, 154, 5, 153, 5, 89, 5, 90, 5, 154, 5, 90, 5, 155, 5, 154, 5, 90, 5, 91, 5, 155, 5, 91, 5, 156, 5, 155, 5, 91, 5, 92, 5, 156, 5, 92, 5, 157, 5, 156, 5, 92, 5, 93, 5, 157, 5, 93, 5, 158, 5, 157, 5, 93, 5, 94, 5, 158, 5, 94, 5, 159, 5, 158, 5, 94, 5, 95, 5, 159, 5, 95, 5, 160, 5, 159, 5, 95, 5, 96, 5, 160, 5, 96, 5, 161, 5, 160, 5, 96, 5, 97, 5, 161, 5, 97, 5, 162, 5, 161, 5, 97, 5, 98, 5, 162, 5, 98, 5, 163, 5, 162, 5, 98, 5, 99, 5, 163, 5, 99, 5, 164, 5, 163, 5, 99, 5, 100, 5, 164, 5, 100, 5, 165, 5, 164, 5, 100, 5, 101, 5, 165, 5, 101, 5, 166, 5, 165, 5, 101, 5, 102, 5, 166, 5, 102, 5, 167, 5, 166, 5, 102, 5, 103, 5, 167, 5, 103, 5, 168, 5, 167, 5, 103, 5, 104, 5, 168, 5, 104, 5, 169, 5, 168, 5, 104, 5, 105, 5, 169, 5, 105, 5, 170, 5, 169, 5, 105, 5, 106, 5, 170, 5, 106, 5, 171, 5, 170, 5, 106, 5, 107, 5, 171, 5, 107, 5, 172, 5, 171, 5, 107, 5, 108, 5, 172, 5, 108, 5, 173, 5, 172, 5, 108, 5, 109, 5, 173, 5, 109, 5, 174, 5, 173, 5, 109, 5, 110, 5, 174, 5, 110, 5, 175, 5, 174, 5, 110, 5, 111, 5, 175, 5, 111, 5, 176, 5, 175, 5, 111, 5, 112, 5, 176, 5, 112, 5, 177, 5, 176, 5, 112, 5, 113, 5, 177, 5, 113, 5, 178, 5, 177, 5, 113, 5, 114, 5, 178, 5, 114, 5, 179, 5, 178, 5, 114, 5, 115, 5, 179, 5, 115, 5, 180, 5, 179, 5, 115, 5, 116, 5, 180, 5, 116, 5, 181, 5, 180, 5, 116, 5, 117, 5, 181, 5, 117, 5, 182, 5, 181, 5, 117, 5, 118, 5, 182, 5, 118, 5, 183, 5, 182, 5, 118, 5, 119, 5, 183, 5, 119, 5, 184, 5, 183, 5, 119, 5, 120, 5, 184, 5, 120, 5, 185, 5, 184, 5, 120, 5, 121, 5, 185, 5, 121, 5, 186, 5, 185, 5, 121, 5, 122, 5, 186, 5, 122, 5, 187, 5, 186, 5, 122, 5, 123, 5, 187, 5, 123, 5, 188, 5, 187, 5, 123, 5, 124, 5, 188, 5, 124, 5, 189, 5, 188, 5, 124, 5, 125, 5, 189, 5, 125, 5, 190, 5, 189, 5, 125, 5, 126, 5, 190, 5, 126, 5, 191, 5, 190, 5, 126, 5, 127, 5, 191, 5, 127, 5, 192, 5, 191, 5, 127, 5, 128, 5, 192, 5, 128, 5, 193, 5, 192, 5, 128, 5, 129, 5, 193, 5, 129, 5, 194, 5, 193, 5, 129, 5, 130, 5, 194, 5, 130, 5, 195, 5, 194, 5, 130, 5, 131, 5, 195, 5, 131, 5, 196, 5, 195, 5, 131, 5, 132, 5, 196, 5, 132, 5, 197, 5, 196, 5, 132, 5, 133, 5, 197, 5, 133, 5, 198, 5, 197, 5, 133, 5, 134, 5, 198, 5, 134, 5, 199, 5, 198, 5, 134, 5, 135, 5, 199, 5, 135, 5, 200, 5, 199, 5, 135, 5, 136, 5, 200, 5, 136, 5, 201, 5, 200, 5, 136, 5, 137, 5, 201, 5, 137, 5, 202, 5, 201, 5, 137, 5, 138, 5, 202, 5, 138, 5, 203, 5, 202, 5, 138, 5, 139, 5, 203, 5, 139, 5, 204, 5, 203, 5, 139, 5, 140, 5, 204, 5, 140, 5, 205, 5, 204, 5, 140, 5, 141, 5, 205, 5, 141, 5, 206, 5, 205, 5, 141, 5, 142, 5, 206, 5, 142, 5, 207, 5, 206, 5, 142, 5, 143, 5, 207, 5, 143, 5, 208, 5, 207, 5, 143, 5, 144, 5, 208, 5, 144, 5, 209, 5, 208, 5, 144, 5, 145, 5, 209, 5, 145, 5, 210, 5, 209, 5, 145, 5, 146, 5, 210, 5, 146, 5, 211, 5, 210, 5, 146, 5, 147, 5, 211, 5, 147, 5, 212, 5, 211, 5, 147, 5, 148, 5, 212, 5, 148, 5, 213, 5, 212, 5, 148, 5, 149, 5, 213, 5, 149, 5, 214, 5, 213, 5, 150, 5, 151, 5, 215, 5, 151, 5, 216, 5, 215, 5, 151, 5, 152, 5, 216, 5, 152, 5, 217, 5, 216, 5, 152, 5, 153, 5, 217, 5, 153, 5, 218, 5, 217, 5, 153, 5, 154, 5, 218, 5, 154, 5, 219, 5, 218, 5, 154, 5, 155, 5, 219, 5, 155, 5, 220, 5, 219, 5, 155, 5, 156, 5, 220, 5, 156, 5, 221, 5, 220, 5, 156, 5, 157, 5, 221, 5, 157, 5, 222, 5, 221, 5, 157, 5, 158, 5, 222, 5, 158, 5, 223, 5, 222, 5, 158, 5, 159, 5, 223, 5, 159, 5, 224, 5, 223, 5, 159, 5, 160, 5, 224, 5, 160, 5, 225, 5, 224, 5, 160, 5, 161, 5, 225, 5, 161, 5, 226, 5, 225, 5, 161, 5, 162, 5, 226, 5, 162, 5, 227, 5, 226, 5, 162, 5, 163, 5, 227, 5, 163, 5, 228, 5, 227, 5, 163, 5, 164, 5, 228, 5, 164, 5, 229, 5, 228, 5, 164, 5, 165, 5, 229, 5, 165, 5, 230, 5, 229, 5, 165, 5, 166, 5, 230, 5, 166, 5, 231, 5, 230, 5, 166, 5, 167, 5, 231, 5, 167, 5, 232, 5, 231, 5, 167, 5, 168, 5, 232, 5, 168, 5, 233, 5, 232, 5, 168, 5, 169, 5, 233, 5, 169, 5, 234, 5, 233, 5, 169, 5, 170, 5, 234, 5, 170, 5, 235, 5, 234, 5, 170, 5, 171, 5, 235, 5, 171, 5, 236, 5, 235, 5, 171, 5, 172, 5, 236, 5, 172, 5, 237, 5, 236, 5, 172, 5, 173, 5, 237, 5, 173, 5, 238, 5, 237, 5, 173, 5, 174, 5, 238, 5, 174, 5, 239, 5, 238, 5, 174, 5, 175, 5, 239, 5, 175, 5, 240, 5, 239, 5, 175, 5, 176, 5, 240, 5, 176, 5, 241, 5, 240, 5, 176, 5, 177, 5, 241, 5, 177, 5, 242, 5, 241, 5, 177, 5, 178, 5, 242, 5, 178, 5, 243, 5, 242, 5, 178, 5, 179, 5, 243, 5, 179, 5, 244, 5, 243, 5, 179, 5, 180, 5, 244, 5, 180, 5, 245, 5, 244, 5, 180, 5, 181, 5, 245, 5, 181, 5, 246, 5, 245, 5, 181, 5, 182, 5, 246, 5, 182, 5, 247, 5, 246, 5, 182, 5, 183, 5, 247, 5, 183, 5, 248, 5, 247, 5, 183, 5, 184, 5, 248, 5, 184, 5, 249, 5, 248, 5, 184, 5, 185, 5, 249, 5, 185, 5, 250, 5, 249, 5, 185, 5, 186, 5, 250, 5, 186, 5, 251, 5, 250, 5, 186, 5, 187, 5, 251, 5, 187, 5, 252, 5, 251, 5, 187, 5, 188, 5, 252, 5, 188, 5, 253, 5, 252, 5, 188, 5, 189, 5, 253, 5, 189, 5, 254, 5, 253, 5, 189, 5, 190, 5, 254, 5, 190, 5, 255, 5, 254, 5, 190, 5, 191, 5, 255, 5, 191, 5, 0, 6, 255, 5, 191, 5, 192, 5, 0, 6, 192, 5, 1, 6, 0, 6, 192, 5, 193, 5, 1, 6, 193, 5, 2, 6, 1, 6, 193, 5, 194, 5, 2, 6, 194, 5, 3, 6, 2, 6, 194, 5, 195, 5, 3, 6, 195, 5, 4, 6, 3, 6, 195, 5, 196, 5, 4, 6, 196, 5, 5, 6, 4, 6, 196, 5, 197, 5, 5, 6, 197, 5, 6, 6, 5, 6, 197, 5, 198, 5, 6, 6, 198, 5, 7, 6, 6, 6, 198, 5, 199, 5, 7, 6, 199, 5, 8, 6, 7, 6, 199, 5, 200, 5, 8, 6, 200, 5, 9, 6, 8, 6, 200, 5, 201, 5, 9, 6, 201, 5, 10, 6, 9, 6, 201, 5, 202, 5, 10, 6, 202, 5, 11, 6, 10, 6, 202, 5, 203, 5, 11, 6, 203, 5, 12, 6, 11, 6, 203, 5, 204, 5, 12, 6, 204, 5, 13, 6, 12, 6, 204, 5, 205, 5, 13, 6, 205, 5, 14, 6, 13, 6, 205, 5, 206, 5, 14, 6, 206, 5, 15, 6, 14, 6, 206, 5, 207, 5, 15, 6, 207, 5, 16, 6, 15, 6, 207, 5, 208, 5, 16, 6, 208, 5, 17, 6, 16, 6, 208, 5, 209, 5, 17, 6, 209, 5, 18, 6, 17, 6, 209, 5, 210, 5, 18, 6, 210, 5, 19, 6, 18, 6, 210, 5, 211, 5, 19, 6, 211, 5, 20, 6, 19, 6, 211, 5, 212, 5, 20, 6, 212, 5, 21, 6, 20, 6, 212, 5, 213, 5, 21, 6, 213, 5, 22, 6, 21, 6, 213, 5, 214, 5, 22, 6, 214, 5, 23, 6, 22, 6, 215, 5, 216, 5, 24, 6, 216, 5, 25, 6, 24, 6, 216, 5, 217, 5, 25, 6, 217, 5, 26, 6, 25, 6, 217, 5, 218, 5, 26, 6, 218, 5, 27, 6, 26, 6, 218, 5, 219, 5, 27, 6, 219, 5, 28, 6, 27, 6, 219, 5, 220, 5, 28, 6, 220, 5, 29, 6, 28, 6, 220, 5, 221, 5, 29, 6, 221, 5, 30, 6, 29, 6, 221, 5, 222, 5, 30, 6, 222, 5, 31, 6, 30, 6, 222, 5, 223, 5, 31, 6, 223, 5, 32, 6, 31, 6, 223, 5, 224, 5, 32, 6, 224, 5, 33, 6, 32, 6, 224, 5, 225, 5, 33, 6, 225, 5, 34, 6, 33, 6, 225, 5, 226, 5, 34, 6, 226, 5, 35, 6, 34, 6, 226, 5, 227, 5, 35, 6, 227, 5, 36, 6, 35, 6, 227, 5, 228, 5, 36, 6, 228, 5, 37, 6, 36, 6, 228, 5, 229, 5, 37, 6, 229, 5, 38, 6, 37, 6, 229, 5, 230, 5, 38, 6, 230, 5, 39, 6, 38, 6, 230, 5, 231, 5, 39, 6, 231, 5, 40, 6, 39, 6, 231, 5, 232, 5, 40, 6, 232, 5, 41, 6, 40, 6, 232, 5, 233, 5, 41, 6, 233, 5, 42, 6, 41, 6, 233, 5, 234, 5, 42, 6, 234, 5, 43, 6, 42, 6, 234, 5, 235, 5, 43, 6, 235, 5, 44, 6, 43, 6, 235, 5, 236, 5, 44, 6, 236, 5, 45, 6, 44, 6, 236, 5, 237, 5, 45, 6, 237, 5, 46, 6, 45, 6, 237, 5, 238, 5, 46, 6, 238, 5, 47, 6, 46, 6, 238, 5, 239, 5, 47, 6, 239, 5, 48, 6, 47, 6, 239, 5, 240, 5, 48, 6, 240, 5, 49, 6, 48, 6, 240, 5, 241, 5, 49, 6, 241, 5, 50, 6, 49, 6, 241, 5, 242, 5, 50, 6, 242, 5, 51, 6, 50, 6, 242, 5, 243, 5, 51, 6, 243, 5, 52, 6, 51, 6, 243, 5, 244, 5, 52, 6, 244, 5, 53, 6, 52, 6, 244, 5, 245, 5, 53, 6, 245, 5, 54, 6, 53, 6, 245, 5, 246, 5, 54, 6, 246, 5, 55, 6, 54, 6, 246, 5, 247, 5, 55, 6, 247, 5, 56, 6, 55, 6, 247, 5, 248, 5, 56, 6, 248, 5, 57, 6, 56, 6, 248, 5, 249, 5, 57, 6, 249, 5, 58, 6, 57, 6, 249, 5, 250, 5, 58, 6, 250, 5, 59, 6, 58, 6, 250, 5, 251, 5, 59, 6, 251, 5, 60, 6, 59, 6, 251, 5, 252, 5, 60, 6, 252, 5, 61, 6, 60, 6, 252, 5, 253, 5, 61, 6, 253, 5, 62, 6, 61, 6, 253, 5, 254, 5, 62, 6, 254, 5, 63, 6, 62, 6, 254, 5, 255, 5, 63, 6, 255, 5, 64, 6, 63, 6, 255, 5, 0, 6, 64, 6, 0, 6, 65, 6, 64, 6, 0, 6, 1, 6, 65, 6, 1, 6, 66, 6, 65, 6, 1, 6, 2, 6, 66, 6, 2, 6, 67, 6, 66, 6, 2, 6, 3, 6, 67, 6, 3, 6, 68, 6, 67, 6, 3, 6, 4, 6, 68, 6, 4, 6, 69, 6, 68, 6, 4, 6, 5, 6, 69, 6, 5, 6, 70, 6, 69, 6, 5, 6, 6, 6, 70, 6, 6, 6, 71, 6, 70, 6, 6, 6, 7, 6, 71, 6, 7, 6, 72, 6, 71, 6, 7, 6, 8, 6, 72, 6, 8, 6, 73, 6, 72, 6, 8, 6, 9, 6, 73, 6, 9, 6, 74, 6, 73, 6, 9, 6, 10, 6, 74, 6, 10, 6, 75, 6, 74, 6, 10, 6, 11, 6, 75, 6, 11, 6, 76, 6, 75, 6, 11, 6, 12, 6, 76, 6, 12, 6, 77, 6, 76, 6, 12, 6, 13, 6, 77, 6, 13, 6, 78, 6, 77, 6, 13, 6, 14, 6, 78, 6, 14, 6, 79, 6, 78, 6, 14, 6, 15, 6, 79, 6, 15, 6, 80, 6, 79, 6, 15, 6, 16, 6, 80, 6, 16, 6, 81, 6, 80, 6, 16, 6, 17, 6, 81, 6, 17, 6, 82, 6, 81, 6, 17, 6, 18, 6, 82, 6, 18, 6, 83, 6, 82, 6, 18, 6, 19, 6, 83, 6, 19, 6, 84, 6, 83, 6, 19, 6, 20, 6, 84, 6, 20, 6, 85, 6, 84, 6, 20, 6, 21, 6, 85, 6, 21, 6, 86, 6, 85, 6, 21, 6, 22, 6, 86, 6, 22, 6, 87, 6, 86, 6, 22, 6, 23, 6, 87, 6, 23, 6, 88, 6, 87, 6, 24, 6, 25, 6, 89, 6, 25, 6, 90, 6, 89, 6, 25, 6, 26, 6, 90, 6, 26, 6, 91, 6, 90, 6, 26, 6, 27, 6, 91, 6, 27, 6, 92, 6, 91, 6, 27, 6, 28, 6, 92, 6, 28, 6, 93, 6, 92, 6, 28, 6, 29, 6, 93, 6, 29, 6, 94, 6, 93, 6, 29, 6, 30, 6, 94, 6, 30, 6, 95, 6, 94, 6, 30, 6, 31, 6, 95, 6, 31, 6, 96, 6, 95, 6, 31, 6, 32, 6, 96, 6, 32, 6, 97, 6, 96, 6, 32, 6, 33, 6, 97, 6, 33, 6, 98, 6, 97, 6, 33, 6, 34, 6, 98, 6, 34, 6, 99, 6, 98, 6, 34, 6, 35, 6, 99, 6, 35, 6, 100, 6, 99, 6, 35, 6, 36, 6, 100, 6, 36, 6, 101, 6, 100, 6, 36, 6, 37, 6, 101, 6, 37, 6, 102, 6, 101, 6, 37, 6, 38, 6, 102, 6, 38, 6, 103, 6, 102, 6, 38, 6, 39, 6, 103, 6, 39, 6, 104, 6, 103, 6, 39, 6, 40, 6, 104, 6, 40, 6, 105, 6, 104, 6, 40, 6, 41, 6, 105, 6, 41, 6, 106, 6, 105, 6, 41, 6, 42, 6, 106, 6, 42, 6, 107, 6, 106, 6, 42, 6, 43, 6, 107, 6, 43, 6, 108, 6, 107, 6, 43, 6, 44, 6, 108, 6, 44, 6, 109, 6, 108, 6, 44, 6, 45, 6, 109, 6, 45, 6, 110, 6, 109, 6, 45, 6, 46, 6, 110, 6, 46, 6, 111, 6, 110, 6, 46, 6, 47, 6, 111, 6, 47, 6, 112, 6, 111, 6, 47, 6, 48, 6, 112, 6, 48, 6, 113, 6, 112, 6, 48, 6, 49, 6, 113, 6, 49, 6, 114, 6, 113, 6, 49, 6, 50, 6, 114, 6, 50, 6, 115, 6, 114, 6, 50, 6, 51, 6, 115, 6, 51, 6, 116, 6, 115, 6, 51, 6, 52, 6, 116, 6, 52, 6, 117, 6, 116, 6, 52, 6, 53, 6, 117, 6, 53, 6, 118, 6, 117, 6, 53, 6, 54, 6, 118, 6, 54, 6, 119, 6, 118, 6, 54, 6, 55, 6, 119, 6, 55, 6, 120, 6, 119, 6, 55, 6, 56, 6, 120, 6, 56, 6, 121, 6, 120, 6, 56, 6, 57, 6, 121, 6, 57, 6, 122, 6, 121, 6, 57, 6, 58, 6, 122, 6, 58, 6, 123, 6, 122, 6, 58, 6, 59, 6, 123, 6, 59, 6, 124, 6, 123, 6, 59, 6, 60, 6, 124, 6, 60, 6, 125, 6, 124, 6, 60, 6, 61, 6, 125, 6, 61, 6, 126, 6, 125, 6, 61, 6, 62, 6, 126, 6, 62, 6, 127, 6, 126, 6, 62, 6, 63, 6, 127, 6, 63, 6, 128, 6, 127, 6, 63, 6, 64, 6, 128, 6, 64, 6, 129, 6, 128, 6, 64, 6, 65, 6, 129, 6, 65, 6, 130, 6, 129, 6, 65, 6, 66, 6, 130, 6, 66, 6, 131, 6, 130, 6, 66, 6, 67, 6, 131, 6, 67, 6, 132, 6, 131, 6, 67, 6, 68, 6, 132, 6, 68, 6, 133, 6, 132, 6, 68, 6, 69, 6, 133, 6, 69, 6, 134, 6, 133, 6, 69, 6, 70, 6, 134, 6, 70, 6, 135, 6, 134, 6, 70, 6, 71, 6, 135, 6, 71, 6, 136, 6, 135, 6, 71, 6, 72, 6, 136, 6, 72, 6, 137, 6, 136, 6, 72, 6, 73, 6, 137, 6, 73, 6, 138, 6, 137, 6, 73, 6, 74, 6, 138, 6, 74, 6, 139, 6, 138, 6, 74, 6, 75, 6, 139, 6, 75, 6, 140, 6, 139, 6, 75, 6, 76, 6, 140, 6, 76, 6, 141, 6, 140, 6, 76, 6, 77, 6, 141, 6, 77, 6, 142, 6, 141, 6, 77, 6, 78, 6, 142, 6, 78, 6, 143, 6, 142, 6, 78, 6, 79, 6, 143, 6, 79, 6, 144, 6, 143, 6, 79, 6, 80, 6, 144, 6, 80, 6, 145, 6, 144, 6, 80, 6, 81, 6, 145, 6, 81, 6, 146, 6, 145, 6, 81, 6, 82, 6, 146, 6, 82, 6, 147, 6, 146, 6, 82, 6, 83, 6, 147, 6, 83, 6, 148, 6, 147, 6, 83, 6, 84, 6, 148, 6, 84, 6, 149, 6, 148, 6, 84, 6, 85, 6, 149, 6, 85, 6, 150, 6, 149, 6, 85, 6, 86, 6, 150, 6, 86, 6, 151, 6, 150, 6, 86, 6, 87, 6, 151, 6, 87, 6, 152, 6, 151, 6, 87, 6, 88, 6, 152, 6, 88, 6, 153, 6, 152, 6, 89, 6, 90, 6, 154, 6, 90, 6, 155, 6, 154, 6, 90, 6, 91, 6, 155, 6, 91, 6, 156, 6, 155, 6, 91, 6, 92, 6, 156, 6, 92, 6, 157, 6, 156, 6, 92, 6, 93, 6, 157, 6, 93, 6, 158, 6, 157, 6, 93, 6, 94, 6, 158, 6, 94, 6, 159, 6, 158, 6, 94, 6, 95, 6, 159, 6, 95, 6, 160, 6, 159, 6, 95, 6, 96, 6, 160, 6, 96, 6, 161, 6, 160, 6, 96, 6, 97, 6, 161, 6, 97, 6, 162, 6, 161, 6, 97, 6, 98, 6, 162, 6, 98, 6, 163, 6, 162, 6, 98, 6, 99, 6, 163, 6, 99, 6, 164, 6, 163, 6, 99, 6, 100, 6, 164, 6, 100, 6, 165, 6, 164, 6, 100, 6, 101, 6, 165, 6, 101, 6, 166, 6, 165, 6, 101, 6, 102, 6, 166, 6, 102, 6, 167, 6, 166, 6, 102, 6, 103, 6, 167, 6, 103, 6, 168, 6, 167, 6, 103, 6, 104, 6, 168, 6, 104, 6, 169, 6, 168, 6, 104, 6, 105, 6, 169, 6, 105, 6, 170, 6, 169, 6, 105, 6, 106, 6, 170, 6, 106, 6, 171, 6, 170, 6, 106, 6, 107, 6, 171, 6, 107, 6, 172, 6, 171, 6, 107, 6, 108, 6, 172, 6, 108, 6, 173, 6, 172, 6, 108, 6, 109, 6, 173, 6, 109, 6, 174, 6, 173, 6, 109, 6, 110, 6, 174, 6, 110, 6, 175, 6, 174, 6, 110, 6, 111, 6, 175, 6, 111, 6, 176, 6, 175, 6, 111, 6, 112, 6, 176, 6, 112, 6, 177, 6, 176, 6, 112, 6, 113, 6, 177, 6, 113, 6, 178, 6, 177, 6, 113, 6, 114, 6, 178, 6, 114, 6, 179, 6, 178, 6, 114, 6, 115, 6, 179, 6, 115, 6, 180, 6, 179, 6, 115, 6, 116, 6, 180, 6, 116, 6, 181, 6, 180, 6, 116, 6, 117, 6, 181, 6, 117, 6, 182, 6, 181, 6, 117, 6, 118, 6, 182, 6, 118, 6, 183, 6, 182, 6, 118, 6, 119, 6, 183, 6, 119, 6, 184, 6, 183, 6, 119, 6, 120, 6, 184, 6, 120, 6, 185, 6, 184, 6, 120, 6, 121, 6, 185, 6, 121, 6, 186, 6, 185, 6, 121, 6, 122, 6, 186, 6, 122, 6, 187, 6, 186, 6, 122, 6, 123, 6, 187, 6, 123, 6, 188, 6, 187, 6, 123, 6, 124, 6, 188, 6, 124, 6, 189, 6, 188, 6, 124, 6, 125, 6, 189, 6, 125, 6, 190, 6, 189, 6, 125, 6, 126, 6, 190, 6, 126, 6, 191, 6, 190, 6, 126, 6, 127, 6, 191, 6, 127, 6, 192, 6, 191, 6, 127, 6, 128, 6, 192, 6, 128, 6, 193, 6, 192, 6, 128, 6, 129, 6, 193, 6, 129, 6, 194, 6, 193, 6, 129, 6, 130, 6, 194, 6, 130, 6, 195, 6, 194, 6, 130, 6, 131, 6, 195, 6, 131, 6, 196, 6, 195, 6, 131, 6, 132, 6, 196, 6, 132, 6, 197, 6, 196, 6, 132, 6, 133, 6, 197, 6, 133, 6, 198, 6, 197, 6, 133, 6, 134, 6, 198, 6, 134, 6, 199, 6, 198, 6, 134, 6, 135, 6, 199, 6, 135, 6, 200, 6, 199, 6, 135, 6, 136, 6, 200, 6, 136, 6, 201, 6, 200, 6, 136, 6, 137, 6, 201, 6, 137, 6, 202, 6, 201, 6, 137, 6, 138, 6, 202, 6, 138, 6, 203, 6, 202, 6, 138, 6, 139, 6, 203, 6, 139, 6, 204, 6, 203, 6, 139, 6, 140, 6, 204, 6, 140, 6, 205, 6, 204, 6, 140, 6, 141, 6, 205, 6, 141, 6, 206, 6, 205, 6, 141, 6, 142, 6, 206, 6, 142, 6, 207, 6, 206, 6, 142, 6, 143, 6, 207, 6, 143, 6, 208, 6, 207, 6, 143, 6, 144, 6, 208, 6, 144, 6, 209, 6, 208, 6, 144, 6, 145, 6, 209, 6, 145, 6, 210, 6, 209, 6, 145, 6, 146, 6, 210, 6, 146, 6, 211, 6, 210, 6, 146, 6, 147, 6, 211, 6, 147, 6, 212, 6, 211, 6, 147, 6, 148, 6, 212, 6, 148, 6, 213, 6, 212, 6, 148, 6, 149, 6, 213, 6, 149, 6, 214, 6, 213, 6, 149, 6, 150, 6, 214, 6, 150, 6, 215, 6, 214, 6, 150, 6, 151, 6, 215, 6, 151, 6, 216, 6, 215, 6, 151, 6, 152, 6, 216, 6, 152, 6, 217, 6, 216, 6, 152, 6, 153, 6, 217, 6, 153, 6, 218, 6, 217, 6, 154, 6, 155, 6, 219, 6, 155, 6, 220, 6, 219, 6, 155, 6, 156, 6, 220, 6, 156, 6, 221, 6, 220, 6, 156, 6, 157, 6, 221, 6, 157, 6, 222, 6, 221, 6, 157, 6, 158, 6, 222, 6, 158, 6, 223, 6, 222, 6, 158, 6, 159, 6, 223, 6, 159, 6, 224, 6, 223, 6, 159, 6, 160, 6, 224, 6, 160, 6, 225, 6, 224, 6, 160, 6, 161, 6, 225, 6, 161, 6, 226, 6, 225, 6, 161, 6, 162, 6, 226, 6, 162, 6, 227, 6, 226, 6, 162, 6, 163, 6, 227, 6, 163, 6, 228, 6, 227, 6, 163, 6, 164, 6, 228, 6, 164, 6, 229, 6, 228, 6, 164, 6, 165, 6, 229, 6, 165, 6, 230, 6, 229, 6, 165, 6, 166, 6, 230, 6, 166, 6, 231, 6, 230, 6, 166, 6, 167, 6, 231, 6, 167, 6, 232, 6, 231, 6, 167, 6, 168, 6, 232, 6, 168, 6, 233, 6, 232, 6, 168, 6, 169, 6, 233, 6, 169, 6, 234, 6, 233, 6, 169, 6, 170, 6, 234, 6, 170, 6, 235, 6, 234, 6, 170, 6, 171, 6, 235, 6, 171, 6, 236, 6, 235, 6, 171, 6, 172, 6, 236, 6, 172, 6, 237, 6, 236, 6, 172, 6, 173, 6, 237, 6, 173, 6, 238, 6, 237, 6, 173, 6, 174, 6, 238, 6, 174, 6, 239, 6, 238, 6, 174, 6, 175, 6, 239, 6, 175, 6, 240, 6, 239, 6, 175, 6, 176, 6, 240, 6, 176, 6, 241, 6, 240, 6, 176, 6, 177, 6, 241, 6, 177, 6, 242, 6, 241, 6, 177, 6, 178, 6, 242, 6, 178, 6, 243, 6, 242, 6, 178, 6, 179, 6, 243, 6, 179, 6, 244, 6, 243, 6, 179, 6, 180, 6, 244, 6, 180, 6, 245, 6, 244, 6, 180, 6, 181, 6, 245, 6, 181, 6, 246, 6, 245, 6, 181, 6, 182, 6, 246, 6, 182, 6, 247, 6, 246, 6, 182, 6, 183, 6, 247, 6, 183, 6, 248, 6, 247, 6, 183, 6, 184, 6, 248, 6, 184, 6, 249, 6, 248, 6, 184, 6, 185, 6, 249, 6, 185, 6, 250, 6, 249, 6, 185, 6, 186, 6, 250, 6, 186, 6, 251, 6, 250, 6, 186, 6, 187, 6, 251, 6, 187, 6, 252, 6, 251, 6, 187, 6, 188, 6, 252, 6, 188, 6, 253, 6, 252, 6, 188, 6, 189, 6, 253, 6, 189, 6, 254, 6, 253, 6, 189, 6, 190, 6, 254, 6, 190, 6, 255, 6, 254, 6, 190, 6, 191, 6, 255, 6, 191, 6, 0, 7, 255, 6, 191, 6, 192, 6, 0, 7, 192, 6, 1, 7, 0, 7, 192, 6, 193, 6, 1, 7, 193, 6, 2, 7, 1, 7, 193, 6, 194, 6, 2, 7, 194, 6, 3, 7, 2, 7, 194, 6, 195, 6, 3, 7, 195, 6, 4, 7, 3, 7, 195, 6, 196, 6, 4, 7, 196, 6, 5, 7, 4, 7, 196, 6, 197, 6, 5, 7, 197, 6, 6, 7, 5, 7, 197, 6, 198, 6, 6, 7, 198, 6, 7, 7, 6, 7, 198, 6, 199, 6, 7, 7, 199, 6, 8, 7, 7, 7, 199, 6, 200, 6, 8, 7, 200, 6, 9, 7, 8, 7, 200, 6, 201, 6, 9, 7, 201, 6, 10, 7, 9, 7, 201, 6, 202, 6, 10, 7, 202, 6, 11, 7, 10, 7, 202, 6, 203, 6, 11, 7, 203, 6, 12, 7, 11, 7, 203, 6, 204, 6, 12, 7, 204, 6, 13, 7, 12, 7, 204, 6, 205, 6, 13, 7, 205, 6, 14, 7, 13, 7, 205, 6, 206, 6, 14, 7, 206, 6, 15, 7, 14, 7, 206, 6, 207, 6, 15, 7, 207, 6, 16, 7, 15, 7, 207, 6, 208, 6, 16, 7, 208, 6, 17, 7, 16, 7, 208, 6, 209, 6, 17, 7, 209, 6, 18, 7, 17, 7, 209, 6, 210, 6, 18, 7, 210, 6, 19, 7, 18, 7, 210, 6, 211, 6, 19, 7, 211, 6, 20, 7, 19, 7, 211, 6, 212, 6, 20, 7, 212, 6, 21, 7, 20, 7, 212, 6, 213, 6, 21, 7, 213, 6, 22, 7, 21, 7, 213, 6, 214, 6, 22, 7, 214, 6, 23, 7, 22, 7, 214, 6, 215, 6, 23, 7, 215, 6, 24, 7, 23, 7, 215, 6, 216, 6, 24, 7, 216, 6, 25, 7, 24, 7, 216, 6, 217, 6, 25, 7, 217, 6, 26, 7, 25, 7, 217, 6, 218, 6, 26, 7, 218, 6, 27, 7, 26, 7, 219, 6, 220, 6, 28, 7, 220, 6, 29, 7, 28, 7, 220, 6, 221, 6, 29, 7, 221, 6, 30, 7, 29, 7, 221, 6, 222, 6, 30, 7, 222, 6, 31, 7, 30, 7, 222, 6, 223, 6, 31, 7, 223, 6, 32, 7, 31, 7, 223, 6, 224, 6, 32, 7, 224, 6, 33, 7, 32, 7, 224, 6, 225, 6, 33, 7, 225, 6, 34, 7, 33, 7, 225, 6, 226, 6, 34, 7, 226, 6, 35, 7, 34, 7, 226, 6, 227, 6, 35, 7, 227, 6, 36, 7, 35, 7, 227, 6, 228, 6, 36, 7, 228, 6, 37, 7, 36, 7, 228, 6, 229, 6, 37, 7, 229, 6, 38, 7, 37, 7, 229, 6, 230, 6, 38, 7, 230, 6, 39, 7, 38, 7, 230, 6, 231, 6, 39, 7, 231, 6, 40, 7, 39, 7, 231, 6, 232, 6, 40, 7, 232, 6, 41, 7, 40, 7, 232, 6, 233, 6, 41, 7, 233, 6, 42, 7, 41, 7, 233, 6, 234, 6, 42, 7, 234, 6, 43, 7, 42, 7, 234, 6, 235, 6, 43, 7, 235, 6, 44, 7, 43, 7, 235, 6, 236, 6, 44, 7, 236, 6, 45, 7, 44, 7, 236, 6, 237, 6, 45, 7, 237, 6, 46, 7, 45, 7, 237, 6, 238, 6, 46, 7, 238, 6, 47, 7, 46, 7, 238, 6, 239, 6, 47, 7, 239, 6, 48, 7, 47, 7, 239, 6, 240, 6, 48, 7, 240, 6, 49, 7, 48, 7, 240, 6, 241, 6, 49, 7, 241, 6, 50, 7, 49, 7, 241, 6, 242, 6, 50, 7, 242, 6, 51, 7, 50, 7, 242, 6, 243, 6, 51, 7, 243, 6, 52, 7, 51, 7, 243, 6, 244, 6, 52, 7, 244, 6, 53, 7, 52, 7, 244, 6, 245, 6, 53, 7, 245, 6, 54, 7, 53, 7, 245, 6, 246, 6, 54, 7, 246, 6, 55, 7, 54, 7, 246, 6, 247, 6, 55, 7, 247, 6, 56, 7, 55, 7, 247, 6, 248, 6, 56, 7, 248, 6, 57, 7, 56, 7, 248, 6, 249, 6, 57, 7, 249, 6, 58, 7, 57, 7, 249, 6, 250, 6, 58, 7, 250, 6, 59, 7, 58, 7, 250, 6, 251, 6, 59, 7, 251, 6, 60, 7, 59, 7, 251, 6, 252, 6, 60, 7, 252, 6, 61, 7, 60, 7, 252, 6, 253, 6, 61, 7, 253, 6, 62, 7, 61, 7, 253, 6, 254, 6, 62, 7, 254, 6, 63, 7, 62, 7, 254, 6, 255, 6, 63, 7, 255, 6, 64, 7, 63, 7, 255, 6, 0, 7, 64, 7, 0, 7, 65, 7, 64, 7, 0, 7, 1, 7, 65, 7, 1, 7, 66, 7, 65, 7, 1, 7, 2, 7, 66, 7, 2, 7, 67, 7, 66, 7, 2, 7, 3, 7, 67, 7, 3, 7, 68, 7, 67, 7, 3, 7, 4, 7, 68, 7, 4, 7, 69, 7, 68, 7, 4, 7, 5, 7, 69, 7, 5, 7, 70, 7, 69, 7, 5, 7, 6, 7, 70, 7, 6, 7, 71, 7, 70, 7, 6, 7, 7, 7, 71, 7, 7, 7, 72, 7, 71, 7, 7, 7, 8, 7, 72, 7, 8, 7, 73, 7, 72, 7, 8, 7, 9, 7, 73, 7, 9, 7, 74, 7, 73, 7, 9, 7, 10, 7, 74, 7, 10, 7, 75, 7, 74, 7, 10, 7, 11, 7, 75, 7, 11, 7, 76, 7, 75, 7, 11, 7, 12, 7, 76, 7, 12, 7, 77, 7, 76, 7, 12, 7, 13, 7, 77, 7, 13, 7, 78, 7, 77, 7, 13, 7, 14, 7, 78, 7, 14, 7, 79, 7, 78, 7, 14, 7, 15, 7, 79, 7, 15, 7, 80, 7, 79, 7, 15, 7, 16, 7, 80, 7, 16, 7, 81, 7, 80, 7, 16, 7, 17, 7, 81, 7, 17, 7, 82, 7, 81, 7, 17, 7, 18, 7, 82, 7, 18, 7, 83, 7, 82, 7, 18, 7, 19, 7, 83, 7, 19, 7, 84, 7, 83, 7, 19, 7, 20, 7, 84, 7, 20, 7, 85, 7, 84, 7, 20, 7, 21, 7, 85, 7, 21, 7, 86, 7, 85, 7, 21, 7, 22, 7, 86, 7, 22, 7, 87, 7, 86, 7, 22, 7, 23, 7, 87, 7, 23, 7, 88, 7, 87, 7, 23, 7, 24, 7, 88, 7, 24, 7, 89, 7, 88, 7, 24, 7, 25, 7, 89, 7, 25, 7, 90, 7, 89, 7, 25, 7, 26, 7, 90, 7, 26, 7, 91, 7, 90, 7, 26, 7, 27, 7, 91, 7, 27, 7, 92, 7, 91, 7, 28, 7, 29, 7, 93, 7, 29, 7, 94, 7, 93, 7, 29, 7, 30, 7, 94, 7, 30, 7, 95, 7, 94, 7, 30, 7, 31, 7, 95, 7, 31, 7, 96, 7, 95, 7, 31, 7, 32, 7, 96, 7, 32, 7, 97, 7, 96, 7, 32, 7, 33, 7, 97, 7, 33, 7, 98, 7, 97, 7, 33, 7, 34, 7, 98, 7, 34, 7, 99, 7, 98, 7, 34, 7, 35, 7, 99, 7, 35, 7, 100, 7, 99, 7, 35, 7, 36, 7, 100, 7, 36, 7, 101, 7, 100, 7, 36, 7, 37, 7, 101, 7, 37, 7, 102, 7, 101, 7, 37, 7, 38, 7, 102, 7, 38, 7, 103, 7, 102, 7, 38, 7, 39, 7, 103, 7, 39, 7, 104, 7, 103, 7, 39, 7, 40, 7, 104, 7, 40, 7, 105, 7, 104, 7, 40, 7, 41, 7, 105, 7, 41, 7, 106, 7, 105, 7, 41, 7, 42, 7, 106, 7, 42, 7, 107, 7, 106, 7, 42, 7, 43, 7, 107, 7, 43, 7, 108, 7, 107, 7, 43, 7, 44, 7, 108, 7, 44, 7, 109, 7, 108, 7, 44, 7, 45, 7, 109, 7, 45, 7, 110, 7, 109, 7, 45, 7, 46, 7, 110, 7, 46, 7, 111, 7, 110, 7, 46, 7, 47, 7, 111, 7, 47, 7, 112, 7, 111, 7, 47, 7, 48, 7, 112, 7, 48, 7, 113, 7, 112, 7, 48, 7, 49, 7, 113, 7, 49, 7, 114, 7, 113, 7, 49, 7, 50, 7, 114, 7, 50, 7, 115, 7, 114, 7, 50, 7, 51, 7, 115, 7, 51, 7, 116, 7, 115, 7, 51, 7, 52, 7, 116, 7, 52, 7, 117, 7, 116, 7, 52, 7, 53, 7, 117, 7, 53, 7, 118, 7, 117, 7, 53, 7, 54, 7, 118, 7, 54, 7, 119, 7, 118, 7, 54, 7, 55, 7, 119, 7, 55, 7, 120, 7, 119, 7, 55, 7, 56, 7, 120, 7, 56, 7, 121, 7, 120, 7, 56, 7, 57, 7, 121, 7, 57, 7, 122, 7, 121, 7, 57, 7, 58, 7, 122, 7, 58, 7, 123, 7, 122, 7, 58, 7, 59, 7, 123, 7, 59, 7, 124, 7, 123, 7, 59, 7, 60, 7, 124, 7, 60, 7, 125, 7, 124, 7, 60, 7, 61, 7, 125, 7, 61, 7, 126, 7, 125, 7, 61, 7, 62, 7, 126, 7, 62, 7, 127, 7, 126, 7, 62, 7, 63, 7, 127, 7, 63, 7, 128, 7, 127, 7, 63, 7, 64, 7, 128, 7, 64, 7, 129, 7, 128, 7, 64, 7, 65, 7, 129, 7, 65, 7, 130, 7, 129, 7, 65, 7, 66, 7, 130, 7, 66, 7, 131, 7, 130, 7, 66, 7, 67, 7, 131, 7, 67, 7, 132, 7, 131, 7, 67, 7, 68, 7, 132, 7, 68, 7, 133, 7, 132, 7, 68, 7, 69, 7, 133, 7, 69, 7, 134, 7, 133, 7, 69, 7, 70, 7, 134, 7, 70, 7, 135, 7, 134, 7, 70, 7, 71, 7, 135, 7, 71, 7, 136, 7, 135, 7, 71, 7, 72, 7, 136, 7, 72, 7, 137, 7, 136, 7, 72, 7, 73, 7, 137, 7, 73, 7, 138, 7, 137, 7, 73, 7, 74, 7, 138, 7, 74, 7, 139, 7, 138, 7, 74, 7, 75, 7, 139, 7, 75, 7, 140, 7, 139, 7, 75, 7, 76, 7, 140, 7, 76, 7, 141, 7, 140, 7, 76, 7, 77, 7, 141, 7, 77, 7, 142, 7, 141, 7, 77, 7, 78, 7, 142, 7, 78, 7, 143, 7, 142, 7, 78, 7, 79, 7, 143, 7, 79, 7, 144, 7, 143, 7, 79, 7, 80, 7, 144, 7, 80, 7, 145, 7, 144, 7, 80, 7, 81, 7, 145, 7, 81, 7, 146, 7, 145, 7, 81, 7, 82, 7, 146, 7, 82, 7, 147, 7, 146, 7, 82, 7, 83, 7, 147, 7, 83, 7, 148, 7, 147, 7, 83, 7, 84, 7, 148, 7, 84, 7, 149, 7, 148, 7, 84, 7, 85, 7, 149, 7, 85, 7, 150, 7, 149, 7, 85, 7, 86, 7, 150, 7, 86, 7, 151, 7, 150, 7, 86, 7, 87, 7, 151, 7, 87, 7, 152, 7, 151, 7, 87, 7, 88, 7, 152, 7, 88, 7, 153, 7, 152, 7, 88, 7, 89, 7, 153, 7, 89, 7, 154, 7, 153, 7, 89, 7, 90, 7, 154, 7, 90, 7, 155, 7, 154, 7, 90, 7, 91, 7, 155, 7, 91, 7, 156, 7, 155, 7, 91, 7, 92, 7, 156, 7, 92, 7, 157, 7, 156, 7, 93, 7, 94, 7, 158, 7, 94, 7, 159, 7, 158, 7, 94, 7, 95, 7, 159, 7, 95, 7, 160, 7, 159, 7, 95, 7, 96, 7, 160, 7, 96, 7, 161, 7, 160, 7, 96, 7, 97, 7, 161, 7, 97, 7, 162, 7, 161, 7, 97, 7, 98, 7, 162, 7, 98, 7, 163, 7, 162, 7, 98, 7, 99, 7, 163, 7, 99, 7, 164, 7, 163, 7, 99, 7, 100, 7, 164, 7, 100, 7, 165, 7, 164, 7, 100, 7, 101, 7, 165, 7, 101, 7, 166, 7, 165, 7, 101, 7, 102, 7, 166, 7, 102, 7, 167, 7, 166, 7, 102, 7, 103, 7, 167, 7, 103, 7, 168, 7, 167, 7, 103, 7, 104, 7, 168, 7, 104, 7, 169, 7, 168, 7, 104, 7, 105, 7, 169, 7, 105, 7, 170, 7, 169, 7, 105, 7, 106, 7, 170, 7, 106, 7, 171, 7, 170, 7, 106, 7, 107, 7, 171, 7, 107, 7, 172, 7, 171, 7, 107, 7, 108, 7, 172, 7, 108, 7, 173, 7, 172, 7, 108, 7, 109, 7, 173, 7, 109, 7, 174, 7, 173, 7, 109, 7, 110, 7, 174, 7, 110, 7, 175, 7, 174, 7, 110, 7, 111, 7, 175, 7, 111, 7, 176, 7, 175, 7, 111, 7, 112, 7, 176, 7, 112, 7, 177, 7, 176, 7, 112, 7, 113, 7, 177, 7, 113, 7, 178, 7, 177, 7, 113, 7, 114, 7, 178, 7, 114, 7, 179, 7, 178, 7, 114, 7, 115, 7, 179, 7, 115, 7, 180, 7, 179, 7, 115, 7, 116, 7, 180, 7, 116, 7, 181, 7, 180, 7, 116, 7, 117, 7, 181, 7, 117, 7, 182, 7, 181, 7, 117, 7, 118, 7, 182, 7, 118, 7, 183, 7, 182, 7, 118, 7, 119, 7, 183, 7, 119, 7, 184, 7, 183, 7, 119, 7, 120, 7, 184, 7, 120, 7, 185, 7, 184, 7, 120, 7, 121, 7, 185, 7, 121, 7, 186, 7, 185, 7, 121, 7, 122, 7, 186, 7, 122, 7, 187, 7, 186, 7, 122, 7, 123, 7, 187, 7, 123, 7, 188, 7, 187, 7, 123, 7, 124, 7, 188, 7, 124, 7, 189, 7, 188, 7, 124, 7, 125, 7, 189, 7, 125, 7, 190, 7, 189, 7, 125, 7, 126, 7, 190, 7, 126, 7, 191, 7, 190, 7, 126, 7, 127, 7, 191, 7, 127, 7, 192, 7, 191, 7, 127, 7, 128, 7, 192, 7, 128, 7, 193, 7, 192, 7, 128, 7, 129, 7, 193, 7, 129, 7, 194, 7, 193, 7, 129, 7, 130, 7, 194, 7, 130, 7, 195, 7, 194, 7, 130, 7, 131, 7, 195, 7, 131, 7, 196, 7, 195, 7, 131, 7, 132, 7, 196, 7, 132, 7, 197, 7, 196, 7, 132, 7, 133, 7, 197, 7, 133, 7, 198, 7, 197, 7, 133, 7, 134, 7, 198, 7, 134, 7, 199, 7, 198, 7, 134, 7, 135, 7, 199, 7, 135, 7, 200, 7, 199, 7, 135, 7, 136, 7, 200, 7, 136, 7, 201, 7, 200, 7, 136, 7, 137, 7, 201, 7, 137, 7, 202, 7, 201, 7, 137, 7, 138, 7, 202, 7, 138, 7, 203, 7, 202, 7, 138, 7, 139, 7, 203, 7, 139, 7, 204, 7, 203, 7, 139, 7, 140, 7, 204, 7, 140, 7, 205, 7, 204, 7, 140, 7, 141, 7, 205, 7, 141, 7, 206, 7, 205, 7, 141, 7, 142, 7, 206, 7, 142, 7, 207, 7, 206, 7, 142, 7, 143, 7, 207, 7, 143, 7, 208, 7, 207, 7, 143, 7, 144, 7, 208, 7, 144, 7, 209, 7, 208, 7, 144, 7, 145, 7, 209, 7, 145, 7, 210, 7, 209, 7, 145, 7, 146, 7, 210, 7, 146, 7, 211, 7, 210, 7, 146, 7, 147, 7, 211, 7, 147, 7, 212, 7, 211, 7, 147, 7, 148, 7, 212, 7, 148, 7, 213, 7, 212, 7, 148, 7, 149, 7, 213, 7, 149, 7, 214, 7, 213, 7, 149, 7, 150, 7, 214, 7, 150, 7, 215, 7, 214, 7, 150, 7, 151, 7, 215, 7, 151, 7, 216, 7, 215, 7, 151, 7, 152, 7, 216, 7, 152, 7, 217, 7, 216, 7, 152, 7, 153, 7, 217, 7, 153, 7, 218, 7, 217, 7, 153, 7, 154, 7, 218, 7, 154, 7, 219, 7, 218, 7, 154, 7, 155, 7, 219, 7, 155, 7, 220, 7, 219, 7, 155, 7, 156, 7, 220, 7, 156, 7, 221, 7, 220, 7, 156, 7, 157, 7, 221, 7, 157, 7, 222, 7, 221, 7, 158, 7, 159, 7, 223, 7, 159, 7, 224, 7, 223, 7, 159, 7, 160, 7, 224, 7, 160, 7, 225, 7, 224, 7, 160, 7, 161, 7, 225, 7, 161, 7, 226, 7, 225, 7, 161, 7, 162, 7, 226, 7, 162, 7, 227, 7, 226, 7, 162, 7, 163, 7, 227, 7, 163, 7, 228, 7, 227, 7, 163, 7, 164, 7, 228, 7, 164, 7, 229, 7, 228, 7, 164, 7, 165, 7, 229, 7, 165, 7, 230, 7, 229, 7, 165, 7, 166, 7, 230, 7, 166, 7, 231, 7, 230, 7, 166, 7, 167, 7, 231, 7, 167, 7, 232, 7, 231, 7, 167, 7, 168, 7, 232, 7, 168, 7, 233, 7, 232, 7, 168, 7, 169, 7, 233, 7, 169, 7, 234, 7, 233, 7, 169, 7, 170, 7, 234, 7, 170, 7, 235, 7, 234, 7, 170, 7, 171, 7, 235, 7, 171, 7, 236, 7, 235, 7, 171, 7, 172, 7, 236, 7, 172, 7, 237, 7, 236, 7, 172, 7, 173, 7, 237, 7, 173, 7, 238, 7, 237, 7, 173, 7, 174, 7, 238, 7, 174, 7, 239, 7, 238, 7, 174, 7, 175, 7, 239, 7, 175, 7, 240, 7, 239, 7, 175, 7, 176, 7, 240, 7, 176, 7, 241, 7, 240, 7, 176, 7, 177, 7, 241, 7, 177, 7, 242, 7, 241, 7, 177, 7, 178, 7, 242, 7, 178, 7, 243, 7, 242, 7, 178, 7, 179, 7, 243, 7, 179, 7, 244, 7, 243, 7, 179, 7, 180, 7, 244, 7, 180, 7, 245, 7, 244, 7, 180, 7, 181, 7, 245, 7, 181, 7, 246, 7, 245, 7, 181, 7, 182, 7, 246, 7, 182, 7, 247, 7, 246, 7, 182, 7, 183, 7, 247, 7, 183, 7, 248, 7, 247, 7, 183, 7, 184, 7, 248, 7, 184, 7, 249, 7, 248, 7, 184, 7, 185, 7, 249, 7, 185, 7, 250, 7, 249, 7, 185, 7, 186, 7, 250, 7, 186, 7, 251, 7, 250, 7, 186, 7, 187, 7, 251, 7, 187, 7, 252, 7, 251, 7, 187, 7, 188, 7, 252, 7, 188, 7, 253, 7, 252, 7, 188, 7, 189, 7, 253, 7, 189, 7, 254, 7, 253, 7, 189, 7, 190, 7, 254, 7, 190, 7, 255, 7, 254, 7, 190, 7, 191, 7, 255, 7, 191, 7, 0, 8, 255, 7, 191, 7, 192, 7, 0, 8, 192, 7, 1, 8, 0, 8, 192, 7, 193, 7, 1, 8, 193, 7, 2, 8, 1, 8, 193, 7, 194, 7, 2, 8, 194, 7, 3, 8, 2, 8, 194, 7, 195, 7, 3, 8, 195, 7, 4, 8, 3, 8, 195, 7, 196, 7, 4, 8, 196, 7, 5, 8, 4, 8, 196, 7, 197, 7, 5, 8, 197, 7, 6, 8, 5, 8, 197, 7, 198, 7, 6, 8, 198, 7, 7, 8, 6, 8, 198, 7, 199, 7, 7, 8, 199, 7, 8, 8, 7, 8, 199, 7, 200, 7, 8, 8, 200, 7, 9, 8, 8, 8, 200, 7, 201, 7, 9, 8, 201, 7, 10, 8, 9, 8, 201, 7, 202, 7, 10, 8, 202, 7, 11, 8, 10, 8, 202, 7, 203, 7, 11, 8, 203, 7, 12, 8, 11, 8, 203, 7, 204, 7, 12, 8, 204, 7, 13, 8, 12, 8, 204, 7, 205, 7, 13, 8, 205, 7, 14, 8, 13, 8, 205, 7, 206, 7, 14, 8, 206, 7, 15, 8, 14, 8, 206, 7, 207, 7, 15, 8, 207, 7, 16, 8, 15, 8, 207, 7, 208, 7, 16, 8, 208, 7, 17, 8, 16, 8, 208, 7, 209, 7, 17, 8, 209, 7, 18, 8, 17, 8, 209, 7, 210, 7, 18, 8, 210, 7, 19, 8, 18, 8, 210, 7, 211, 7, 19, 8, 211, 7, 20, 8, 19, 8, 211, 7, 212, 7, 20, 8, 212, 7, 21, 8, 20, 8, 212, 7, 213, 7, 21, 8, 213, 7, 22, 8, 21, 8, 213, 7, 214, 7, 22, 8, 214, 7, 23, 8, 22, 8, 214, 7, 215, 7, 23, 8, 215, 7, 24, 8, 23, 8, 215, 7, 216, 7, 24, 8, 216, 7, 25, 8, 24, 8, 216, 7, 217, 7, 25, 8, 217, 7, 26, 8, 25, 8, 217, 7, 218, 7, 26, 8, 218, 7, 27, 8, 26, 8, 218, 7, 219, 7, 27, 8, 219, 7, 28, 8, 27, 8, 219, 7, 220, 7, 28, 8, 220, 7, 29, 8, 28, 8, 220, 7, 221, 7, 29, 8, 221, 7, 30, 8, 29, 8, 221, 7, 222, 7, 30, 8, 222, 7, 31, 8, 30, 8, 223, 7, 224, 7, 32, 8, 224, 7, 33, 8, 32, 8, 224, 7, 225, 7, 33, 8, 225, 7, 34, 8, 33, 8, 225, 7, 226, 7, 34, 8, 226, 7, 35, 8, 34, 8, 226, 7, 227, 7, 35, 8, 227, 7, 36, 8, 35, 8, 227, 7, 228, 7, 36, 8, 228, 7, 37, 8, 36, 8, 228, 7, 229, 7, 37, 8, 229, 7, 38, 8, 37, 8, 229, 7, 230, 7, 38, 8, 230, 7, 39, 8, 38, 8, 230, 7, 231, 7, 39, 8, 231, 7, 40, 8, 39, 8, 231, 7, 232, 7, 40, 8, 232, 7, 41, 8, 40, 8, 232, 7, 233, 7, 41, 8, 233, 7, 42, 8, 41, 8, 233, 7, 234, 7, 42, 8, 234, 7, 43, 8, 42, 8, 234, 7, 235, 7, 43, 8, 235, 7, 44, 8, 43, 8, 235, 7, 236, 7, 44, 8, 236, 7, 45, 8, 44, 8, 236, 7, 237, 7, 45, 8, 237, 7, 46, 8, 45, 8, 237, 7, 238, 7, 46, 8, 238, 7, 47, 8, 46, 8, 238, 7, 239, 7, 47, 8, 239, 7, 48, 8, 47, 8, 239, 7, 240, 7, 48, 8, 240, 7, 49, 8, 48, 8, 240, 7, 241, 7, 49, 8, 241, 7, 50, 8, 49, 8, 241, 7, 242, 7, 50, 8, 242, 7, 51, 8, 50, 8, 242, 7, 243, 7, 51, 8, 243, 7, 52, 8, 51, 8, 243, 7, 244, 7, 52, 8, 244, 7, 53, 8, 52, 8, 244, 7, 245, 7, 53, 8, 245, 7, 54, 8, 53, 8, 245, 7, 246, 7, 54, 8, 246, 7, 55, 8, 54, 8, 246, 7, 247, 7, 55, 8, 247, 7, 56, 8, 55, 8, 247, 7, 248, 7, 56, 8, 248, 7, 57, 8, 56, 8, 248, 7, 249, 7, 57, 8, 249, 7, 58, 8, 57, 8, 249, 7, 250, 7, 58, 8, 250, 7, 59, 8, 58, 8, 250, 7, 251, 7, 59, 8, 251, 7, 60, 8, 59, 8, 251, 7, 252, 7, 60, 8, 252, 7, 61, 8, 60, 8, 252, 7, 253, 7, 61, 8, 253, 7, 62, 8, 61, 8, 253, 7, 254, 7, 62, 8, 254, 7, 63, 8, 62, 8, 254, 7, 255, 7, 63, 8, 255, 7, 64, 8, 63, 8, 255, 7, 0, 8, 64, 8, 0, 8, 65, 8, 64, 8, 0, 8, 1, 8, 65, 8, 1, 8, 66, 8, 65, 8, 1, 8, 2, 8, 66, 8, 2, 8, 67, 8, 66, 8, 2, 8, 3, 8, 67, 8, 3, 8, 68, 8, 67, 8, 3, 8, 4, 8, 68, 8, 4, 8, 69, 8, 68, 8, 4, 8, 5, 8, 69, 8, 5, 8, 70, 8, 69, 8, 5, 8, 6, 8, 70, 8, 6, 8, 71, 8, 70, 8, 6, 8, 7, 8, 71, 8, 7, 8, 72, 8, 71, 8, 7, 8, 8, 8, 72, 8, 8, 8, 73, 8, 72, 8, 8, 8, 9, 8, 73, 8, 9, 8, 74, 8, 73, 8, 9, 8, 10, 8, 74, 8, 10, 8, 75, 8, 74, 8, 10, 8, 11, 8, 75, 8, 11, 8, 76, 8, 75, 8, 11, 8, 12, 8, 76, 8, 12, 8, 77, 8, 76, 8, 12, 8, 13, 8, 77, 8, 13, 8, 78, 8, 77, 8, 13, 8, 14, 8, 78, 8, 14, 8, 79, 8, 78, 8, 14, 8, 15, 8, 79, 8, 15, 8, 80, 8, 79, 8, 15, 8, 16, 8, 80, 8, 16, 8, 81, 8, 80, 8, 16, 8, 17, 8, 81, 8, 17, 8, 82, 8, 81, 8, 17, 8, 18, 8, 82, 8, 18, 8, 83, 8, 82, 8, 18, 8, 19, 8, 83, 8, 19, 8, 84, 8, 83, 8, 19, 8, 20, 8, 84, 8, 20, 8, 85, 8, 84, 8, 20, 8, 21, 8, 85, 8, 21, 8, 86, 8, 85, 8, 21, 8, 22, 8, 86, 8, 22, 8, 87, 8, 86, 8, 22, 8, 23, 8, 87, 8, 23, 8, 88, 8, 87, 8, 23, 8, 24, 8, 88, 8, 24, 8, 89, 8, 88, 8, 24, 8, 25, 8, 89, 8, 25, 8, 90, 8, 89, 8, 25, 8, 26, 8, 90, 8, 26, 8, 91, 8, 90, 8, 26, 8, 27, 8, 91, 8, 27, 8, 92, 8, 91, 8, 27, 8, 28, 8, 92, 8, 28, 8, 93, 8, 92, 8, 28, 8, 29, 8, 93, 8, 29, 8, 94, 8, 93, 8, 29, 8, 30, 8, 94, 8, 30, 8, 95, 8, 94, 8, 30, 8, 31, 8, 95, 8, 31, 8, 96, 8, 95, 8, 32, 8, 33, 8, 97, 8, 33, 8, 98, 8, 97, 8, 33, 8, 34, 8, 98, 8, 34, 8, 99, 8, 98, 8, 34, 8, 35, 8, 99, 8, 35, 8, 100, 8, 99, 8, 35, 8, 36, 8, 100, 8, 36, 8, 101, 8, 100, 8, 36, 8, 37, 8, 101, 8, 37, 8, 102, 8, 101, 8, 37, 8, 38, 8, 102, 8, 38, 8, 103, 8, 102, 8, 38, 8, 39, 8, 103, 8, 39, 8, 104, 8, 103, 8, 39, 8, 40, 8, 104, 8, 40, 8, 105, 8, 104, 8, 40, 8, 41, 8, 105, 8, 41, 8, 106, 8, 105, 8, 41, 8, 42, 8, 106, 8, 42, 8, 107, 8, 106, 8, 42, 8, 43, 8, 107, 8, 43, 8, 108, 8, 107, 8, 43, 8, 44, 8, 108, 8, 44, 8, 109, 8, 108, 8, 44, 8, 45, 8, 109, 8, 45, 8, 110, 8, 109, 8, 45, 8, 46, 8, 110, 8, 46, 8, 111, 8, 110, 8, 46, 8, 47, 8, 111, 8, 47, 8, 112, 8, 111, 8, 47, 8, 48, 8, 112, 8, 48, 8, 113, 8, 112, 8, 48, 8, 49, 8, 113, 8, 49, 8, 114, 8, 113, 8, 49, 8, 50, 8, 114, 8, 50, 8, 115, 8, 114, 8, 50, 8, 51, 8, 115, 8, 51, 8, 116, 8, 115, 8, 51, 8, 52, 8, 116, 8, 52, 8, 117, 8, 116, 8, 52, 8, 53, 8, 117, 8, 53, 8, 118, 8, 117, 8, 53, 8, 54, 8, 118, 8, 54, 8, 119, 8, 118, 8, 54, 8, 55, 8, 119, 8, 55, 8, 120, 8, 119, 8, 55, 8, 56, 8, 120, 8, 56, 8, 121, 8, 120, 8, 56, 8, 57, 8, 121, 8, 57, 8, 122, 8, 121, 8, 57, 8, 58, 8, 122, 8, 58, 8, 123, 8, 122, 8, 58, 8, 59, 8, 123, 8, 59, 8, 124, 8, 123, 8, 59, 8, 60, 8, 124, 8, 60, 8, 125, 8, 124, 8, 60, 8, 61, 8, 125, 8, 61, 8, 126, 8, 125, 8, 61, 8, 62, 8, 126, 8, 62, 8, 127, 8, 126, 8, 62, 8, 63, 8, 127, 8, 63, 8, 128, 8, 127, 8, 63, 8, 64, 8, 128, 8, 64, 8, 129, 8, 128, 8, 64, 8, 65, 8, 129, 8, 65, 8, 130, 8, 129, 8, 65, 8, 66, 8, 130, 8, 66, 8, 131, 8, 130, 8, 66, 8, 67, 8, 131, 8, 67, 8, 132, 8, 131, 8, 67, 8, 68, 8, 132, 8, 68, 8, 133, 8, 132, 8, 68, 8, 69, 8, 133, 8, 69, 8, 134, 8, 133, 8, 69, 8, 70, 8, 134, 8, 70, 8, 135, 8, 134, 8, 70, 8, 71, 8, 135, 8, 71, 8, 136, 8, 135, 8, 71, 8, 72, 8, 136, 8, 72, 8, 137, 8, 136, 8, 72, 8, 73, 8, 137, 8, 73, 8, 138, 8, 137, 8, 73, 8, 74, 8, 138, 8, 74, 8, 139, 8, 138, 8, 74, 8, 75, 8, 139, 8, 75, 8, 140, 8, 139, 8, 75, 8, 76, 8, 140, 8, 76, 8, 141, 8, 140, 8, 76, 8, 77, 8, 141, 8, 77, 8, 142, 8, 141, 8, 77, 8, 78, 8, 142, 8, 78, 8, 143, 8, 142, 8, 78, 8, 79, 8, 143, 8, 79, 8, 144, 8, 143, 8, 79, 8, 80, 8, 144, 8, 80, 8, 145, 8, 144, 8, 80, 8, 81, 8, 145, 8, 81, 8, 146, 8, 145, 8, 81, 8, 82, 8, 146, 8, 82, 8, 147, 8, 146, 8, 82, 8, 83, 8, 147, 8, 83, 8, 148, 8, 147, 8, 83, 8, 84, 8, 148, 8, 84, 8, 149, 8, 148, 8, 84, 8, 85, 8, 149, 8, 85, 8, 150, 8, 149, 8, 85, 8, 86, 8, 150, 8, 86, 8, 151, 8, 150, 8, 86, 8, 87, 8, 151, 8, 87, 8, 152, 8, 151, 8, 87, 8, 88, 8, 152, 8, 88, 8, 153, 8, 152, 8, 88, 8, 89, 8, 153, 8, 89, 8, 154, 8, 153, 8, 89, 8, 90, 8, 154, 8, 90, 8, 155, 8, 154, 8, 90, 8, 91, 8, 155, 8, 91, 8, 156, 8, 155, 8, 91, 8, 92, 8, 156, 8, 92, 8, 157, 8, 156, 8, 92, 8, 93, 8, 157, 8, 93, 8, 158, 8, 157, 8, 93, 8, 94, 8, 158, 8, 94, 8, 159, 8, 158, 8, 94, 8, 95, 8, 159, 8, 95, 8, 160, 8, 159, 8, 95, 8, 96, 8, 160, 8, 96, 8, 161, 8, 160, 8), +"material": SubResource("StandardMaterial3D_gyt54"), +"primitive": 3, +"vertex_count": 2210, +"vertex_data": PackedByteArray(0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 188, 197, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 157, 202, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 228, 206, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 189, 210, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 74, 214, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 161, 217, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 216, 220, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 223, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 37, 227, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 92, 230, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 180, 233, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 64, 237, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 25, 241, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 96, 245, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 66, 250, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 66, 250, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 96, 245, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 25, 241, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 64, 237, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 180, 233, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 92, 230, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 37, 227, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 216, 220, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 161, 217, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 74, 214, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 228, 206, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 157, 202, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 188, 197, 0, 0, 0, 0, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 120, 11, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 59, 21, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 201, 29, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 149, 44, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 68, 51, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 178, 57, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 255, 63, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 77, 70, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 185, 76, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 104, 83, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 130, 90, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 53, 98, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 195, 106, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 133, 116, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 128, 0, 128, 255, 255, 255, 127, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 121, 139, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 59, 149, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 201, 157, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 124, 165, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 149, 172, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 68, 179, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 177, 185, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 191, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 76, 198, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 186, 204, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 105, 211, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 129, 218, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 52, 226, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 194, 234, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 132, 244, 255, 191, 0, 0, 0, 128, 0, 0, 128, 64, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 63, 215, 126, 64, 191, 172, 194, 62, 255, 127, 213, 244, 255, 255, 255, 191, 216, 166, 24, 61, 63, 215, 126, 64, 197, 188, 193, 62, 21, 129, 229, 243, 255, 255, 188, 197, 171, 234, 151, 61, 63, 215, 126, 64, 37, 239, 190, 62, 36, 130, 19, 243, 255, 255, 157, 202, 95, 11, 226, 61, 63, 215, 126, 64, 203, 74, 186, 62, 43, 131, 95, 242, 255, 255, 228, 206, 101, 255, 20, 62, 63, 215, 126, 64, 38, 219, 179, 62, 40, 132, 204, 241, 255, 255, 189, 210, 194, 137, 55, 62, 63, 215, 126, 64, 22, 176, 171, 62, 25, 133, 89, 241, 255, 255, 74, 214, 160, 79, 88, 62, 63, 215, 126, 64, 189, 221, 161, 62, 254, 133, 6, 241, 255, 255, 161, 217, 49, 0, 119, 62, 63, 215, 126, 64, 83, 124, 150, 62, 213, 134, 213, 240, 255, 255, 216, 220, 231, 167, 137, 62, 63, 215, 126, 64, 231, 167, 137, 62, 156, 135, 196, 240, 255, 255, 255, 223, 83, 124, 150, 62, 63, 215, 126, 64, 49, 0, 119, 62, 83, 136, 213, 240, 255, 255, 37, 227, 189, 221, 161, 62, 63, 215, 126, 64, 160, 79, 88, 62, 248, 136, 6, 241, 255, 255, 92, 230, 22, 176, 171, 62, 63, 215, 126, 64, 194, 137, 55, 62, 139, 137, 89, 241, 255, 255, 180, 233, 38, 219, 179, 62, 63, 215, 126, 64, 101, 255, 20, 62, 9, 138, 204, 241, 255, 255, 64, 237, 203, 74, 186, 62, 63, 215, 126, 64, 95, 11, 226, 61, 115, 138, 95, 242, 255, 255, 25, 241, 37, 239, 190, 62, 63, 215, 126, 64, 171, 234, 151, 61, 198, 138, 18, 243, 255, 255, 96, 245, 197, 188, 193, 62, 63, 215, 126, 64, 216, 166, 24, 61, 3, 139, 229, 243, 255, 255, 66, 250, 191, 172, 194, 62, 63, 215, 126, 64, 29, 189, 214, 35, 39, 139, 214, 244, 255, 255, 255, 255, 197, 188, 193, 62, 63, 215, 126, 64, 216, 166, 24, 189, 24, 140, 251, 244, 0, 0, 66, 250, 37, 239, 190, 62, 63, 215, 126, 64, 171, 234, 151, 189, 235, 140, 55, 245, 0, 0, 96, 245, 203, 74, 186, 62, 63, 215, 126, 64, 95, 11, 226, 189, 158, 141, 139, 245, 0, 0, 25, 241, 38, 219, 179, 62, 63, 215, 126, 64, 101, 255, 20, 190, 50, 142, 244, 245, 0, 0, 64, 237, 22, 176, 171, 62, 63, 215, 126, 64, 194, 137, 55, 190, 165, 142, 115, 246, 0, 0, 180, 233, 189, 221, 161, 62, 63, 215, 126, 64, 160, 79, 88, 190, 247, 142, 5, 247, 0, 0, 92, 230, 83, 124, 150, 62, 63, 215, 126, 64, 49, 0, 119, 190, 41, 143, 170, 247, 0, 0, 37, 227, 231, 167, 137, 62, 63, 215, 126, 64, 231, 167, 137, 190, 58, 143, 97, 248, 0, 0, 255, 223, 49, 0, 119, 62, 63, 215, 126, 64, 83, 124, 150, 190, 41, 143, 41, 249, 0, 0, 216, 220, 160, 79, 88, 62, 63, 215, 126, 64, 189, 221, 161, 190, 246, 142, 255, 249, 0, 0, 161, 217, 194, 137, 55, 62, 63, 215, 126, 64, 22, 176, 171, 190, 165, 142, 228, 250, 0, 0, 74, 214, 101, 255, 20, 62, 63, 215, 126, 64, 38, 219, 179, 190, 50, 142, 214, 251, 0, 0, 189, 210, 95, 11, 226, 61, 63, 215, 126, 64, 203, 74, 186, 190, 158, 141, 211, 252, 0, 0, 228, 206, 171, 234, 151, 61, 63, 215, 126, 64, 37, 239, 190, 190, 235, 140, 218, 253, 0, 0, 157, 202, 216, 166, 24, 61, 63, 215, 126, 64, 197, 188, 193, 190, 24, 140, 233, 254, 0, 0, 188, 197, 29, 189, 86, 36, 63, 215, 126, 64, 191, 172, 194, 190, 39, 139, 255, 255, 0, 0, 255, 191, 216, 166, 24, 189, 63, 215, 126, 64, 197, 188, 193, 190, 230, 115, 233, 254, 120, 11, 255, 191, 171, 234, 151, 189, 63, 215, 126, 64, 37, 239, 190, 190, 19, 115, 218, 253, 59, 21, 255, 191, 95, 11, 226, 189, 63, 215, 126, 64, 203, 74, 186, 190, 96, 114, 211, 252, 201, 29, 255, 191, 101, 255, 20, 190, 63, 215, 126, 64, 38, 219, 179, 190, 203, 113, 214, 251, 125, 37, 255, 191, 194, 137, 55, 190, 63, 215, 126, 64, 22, 176, 171, 190, 89, 113, 228, 250, 149, 44, 255, 191, 160, 79, 88, 190, 63, 215, 126, 64, 189, 221, 161, 190, 7, 113, 255, 249, 68, 51, 255, 191, 49, 0, 119, 190, 63, 215, 126, 64, 83, 124, 150, 190, 213, 112, 41, 249, 178, 57, 255, 191, 231, 167, 137, 190, 63, 215, 126, 64, 231, 167, 137, 190, 197, 112, 97, 248, 255, 63, 255, 191, 83, 124, 150, 190, 63, 215, 126, 64, 49, 0, 119, 190, 213, 112, 170, 247, 77, 70, 255, 191, 189, 221, 161, 190, 63, 215, 126, 64, 160, 79, 88, 190, 7, 113, 5, 247, 185, 76, 255, 191, 22, 176, 171, 190, 63, 215, 126, 64, 194, 137, 55, 190, 89, 113, 115, 246, 104, 83, 255, 191, 38, 219, 179, 190, 63, 215, 126, 64, 101, 255, 20, 190, 204, 113, 244, 245, 130, 90, 255, 191, 203, 74, 186, 190, 63, 215, 126, 64, 95, 11, 226, 189, 95, 114, 139, 245, 53, 98, 255, 191, 37, 239, 190, 190, 63, 215, 126, 64, 171, 234, 151, 189, 19, 115, 55, 245, 195, 106, 255, 191, 197, 188, 193, 190, 63, 215, 126, 64, 216, 166, 24, 189, 230, 115, 251, 244, 133, 116, 255, 191, 191, 172, 194, 190, 63, 215, 126, 64, 213, 13, 161, 164, 215, 116, 213, 244, 255, 127, 255, 191, 197, 188, 193, 190, 63, 215, 126, 64, 216, 166, 24, 61, 251, 116, 229, 243, 121, 139, 255, 191, 37, 239, 190, 190, 63, 215, 126, 64, 171, 234, 151, 61, 56, 117, 19, 243, 59, 149, 255, 191, 203, 74, 186, 190, 63, 215, 126, 64, 95, 11, 226, 61, 139, 117, 95, 242, 201, 157, 255, 191, 38, 219, 179, 190, 63, 215, 126, 64, 101, 255, 20, 62, 245, 117, 204, 241, 124, 165, 255, 191, 22, 176, 171, 190, 63, 215, 126, 64, 194, 137, 55, 62, 115, 118, 89, 241, 149, 172, 255, 191, 189, 221, 161, 190, 63, 215, 126, 64, 160, 79, 88, 62, 6, 119, 6, 241, 68, 179, 255, 191, 83, 124, 150, 190, 63, 215, 126, 64, 49, 0, 119, 62, 171, 119, 213, 240, 177, 185, 255, 191, 231, 167, 137, 190, 63, 215, 126, 64, 231, 167, 137, 62, 98, 120, 195, 240, 255, 191, 255, 191, 49, 0, 119, 190, 63, 215, 126, 64, 83, 124, 150, 62, 41, 121, 212, 240, 76, 198, 255, 191, 160, 79, 88, 190, 63, 215, 126, 64, 189, 221, 161, 62, 0, 122, 6, 241, 186, 204, 255, 191, 194, 137, 55, 190, 63, 215, 126, 64, 22, 176, 171, 62, 229, 122, 89, 241, 105, 211, 255, 191, 101, 255, 20, 190, 63, 215, 126, 64, 38, 219, 179, 62, 214, 123, 204, 241, 129, 218, 255, 191, 95, 11, 226, 189, 63, 215, 126, 64, 203, 74, 186, 62, 211, 124, 95, 242, 52, 226, 255, 191, 171, 234, 151, 189, 63, 215, 126, 64, 37, 239, 190, 62, 218, 125, 18, 243, 194, 234, 255, 191, 216, 166, 24, 189, 63, 215, 126, 64, 197, 188, 193, 62, 233, 126, 228, 243, 132, 244, 255, 191, 29, 189, 214, 164, 63, 215, 126, 64, 191, 172, 194, 62, 255, 127, 213, 244, 255, 255, 255, 191, 0, 0, 0, 0, 174, 95, 123, 64, 20, 203, 65, 63, 255, 127, 80, 235, 255, 255, 255, 191, 227, 245, 151, 61, 174, 95, 123, 64, 48, 220, 64, 63, 254, 129, 184, 233, 255, 255, 188, 197, 145, 58, 23, 62, 174, 95, 123, 64, 208, 17, 62, 63, 235, 131, 88, 232, 255, 255, 157, 202, 87, 5, 97, 62, 174, 95, 123, 64, 216, 114, 57, 63, 197, 133, 48, 231, 255, 255, 228, 206, 173, 82, 148, 62, 174, 95, 123, 64, 169, 10, 51, 63, 138, 135, 63, 230, 255, 255, 189, 210, 0, 181, 182, 62, 174, 95, 123, 64, 17, 233, 42, 63, 56, 137, 132, 229, 255, 255, 74, 214, 225, 84, 215, 62, 174, 95, 123, 64, 26, 34, 33, 63, 208, 138, 254, 228, 255, 255, 161, 217, 222, 225, 245, 62, 174, 95, 123, 64, 226, 205, 21, 63, 79, 140, 174, 228, 255, 255, 216, 220, 84, 8, 9, 63, 174, 95, 123, 64, 84, 8, 9, 63, 180, 141, 148, 228, 255, 255, 255, 223, 226, 205, 21, 63, 174, 95, 123, 64, 222, 225, 245, 62, 255, 142, 174, 228, 255, 255, 37, 227, 26, 34, 33, 63, 174, 95, 123, 64, 225, 84, 215, 62, 46, 144, 254, 228, 255, 255, 92, 230, 17, 233, 42, 63, 174, 95, 123, 64, 0, 181, 182, 62, 64, 145, 132, 229, 255, 255, 180, 233, 169, 10, 51, 63, 174, 95, 123, 64, 173, 82, 148, 62, 52, 146, 63, 230, 255, 255, 64, 237, 216, 114, 57, 63, 174, 95, 123, 64, 87, 5, 97, 62, 7, 147, 48, 231, 255, 255, 25, 241, 208, 17, 62, 63, 174, 95, 123, 64, 145, 58, 23, 62, 185, 147, 88, 232, 255, 255, 96, 245, 48, 220, 64, 63, 174, 95, 123, 64, 227, 245, 151, 61, 70, 148, 184, 233, 255, 255, 66, 250, 20, 203, 65, 63, 174, 95, 123, 64, 47, 196, 85, 36, 174, 148, 80, 235, 255, 255, 255, 255, 48, 220, 64, 63, 174, 95, 123, 64, 227, 245, 151, 189, 70, 150, 183, 235, 0, 0, 66, 250, 208, 17, 62, 63, 174, 95, 123, 64, 145, 58, 23, 190, 165, 151, 69, 236, 0, 0, 96, 245, 216, 114, 57, 63, 174, 95, 123, 64, 87, 5, 97, 190, 204, 152, 246, 236, 0, 0, 25, 241, 169, 10, 51, 63, 174, 95, 123, 64, 173, 82, 148, 190, 191, 153, 202, 237, 0, 0, 64, 237, 17, 233, 42, 63, 174, 95, 123, 64, 0, 181, 182, 190, 122, 154, 189, 238, 0, 0, 180, 233, 26, 34, 33, 63, 174, 95, 123, 64, 225, 84, 215, 190, 255, 154, 207, 239, 0, 0, 92, 230, 226, 205, 21, 63, 174, 95, 123, 64, 222, 225, 245, 190, 79, 155, 254, 240, 0, 0, 37, 227, 84, 8, 9, 63, 174, 95, 123, 64, 84, 8, 9, 191, 105, 155, 73, 242, 0, 0, 255, 223, 222, 225, 245, 62, 174, 95, 123, 64, 226, 205, 21, 191, 79, 155, 175, 243, 0, 0, 216, 220, 225, 84, 215, 62, 174, 95, 123, 64, 26, 34, 33, 191, 255, 154, 46, 245, 0, 0, 161, 217, 0, 181, 182, 62, 174, 95, 123, 64, 17, 233, 42, 191, 122, 154, 197, 246, 0, 0, 74, 214, 173, 82, 148, 62, 174, 95, 123, 64, 169, 10, 51, 191, 191, 153, 116, 248, 0, 0, 189, 210, 87, 5, 97, 62, 174, 95, 123, 64, 216, 114, 57, 191, 204, 152, 57, 250, 0, 0, 228, 206, 145, 58, 23, 62, 174, 95, 123, 64, 208, 17, 62, 191, 165, 151, 18, 252, 0, 0, 157, 202, 227, 245, 151, 61, 174, 95, 123, 64, 48, 220, 64, 191, 70, 150, 255, 253, 0, 0, 188, 197, 47, 196, 213, 36, 174, 95, 123, 64, 20, 203, 65, 191, 174, 148, 255, 255, 0, 0, 255, 191, 227, 245, 151, 189, 174, 95, 123, 64, 48, 220, 64, 191, 184, 105, 255, 253, 120, 11, 255, 191, 145, 58, 23, 190, 174, 95, 123, 64, 208, 17, 62, 191, 89, 104, 18, 252, 59, 21, 255, 191, 87, 5, 97, 190, 174, 95, 123, 64, 216, 114, 57, 191, 49, 103, 57, 250, 201, 29, 255, 191, 173, 82, 148, 190, 174, 95, 123, 64, 169, 10, 51, 191, 63, 102, 116, 248, 125, 37, 255, 191, 0, 181, 182, 190, 174, 95, 123, 64, 17, 233, 42, 191, 132, 101, 197, 246, 149, 44, 255, 191, 225, 84, 215, 190, 174, 95, 123, 64, 26, 34, 33, 191, 255, 100, 46, 245, 68, 51, 255, 191, 222, 225, 245, 190, 174, 95, 123, 64, 226, 205, 21, 191, 175, 100, 175, 243, 178, 57, 255, 191, 84, 8, 9, 191, 174, 95, 123, 64, 84, 8, 9, 191, 148, 100, 73, 242, 255, 63, 255, 191, 226, 205, 21, 191, 174, 95, 123, 64, 222, 225, 245, 190, 175, 100, 254, 240, 77, 70, 255, 191, 26, 34, 33, 191, 174, 95, 123, 64, 225, 84, 215, 190, 255, 100, 207, 239, 185, 76, 255, 191, 17, 233, 42, 191, 174, 95, 123, 64, 0, 181, 182, 190, 132, 101, 189, 238, 104, 83, 255, 191, 169, 10, 51, 191, 174, 95, 123, 64, 173, 82, 148, 190, 63, 102, 202, 237, 130, 90, 255, 191, 216, 114, 57, 191, 174, 95, 123, 64, 87, 5, 97, 190, 49, 103, 246, 236, 53, 98, 255, 191, 208, 17, 62, 191, 174, 95, 123, 64, 145, 58, 23, 190, 89, 104, 69, 236, 195, 106, 255, 191, 48, 220, 64, 191, 174, 95, 123, 64, 227, 245, 151, 189, 184, 105, 183, 235, 133, 116, 255, 191, 20, 203, 65, 191, 174, 95, 123, 64, 35, 83, 32, 165, 80, 107, 80, 235, 255, 127, 255, 191, 48, 220, 64, 191, 174, 95, 123, 64, 227, 245, 151, 61, 184, 107, 184, 233, 121, 139, 255, 191, 208, 17, 62, 191, 174, 95, 123, 64, 145, 58, 23, 62, 69, 108, 88, 232, 59, 149, 255, 191, 216, 114, 57, 191, 174, 95, 123, 64, 87, 5, 97, 62, 247, 108, 48, 231, 201, 157, 255, 191, 169, 10, 51, 191, 174, 95, 123, 64, 173, 82, 148, 62, 202, 109, 63, 230, 124, 165, 255, 191, 17, 233, 42, 191, 174, 95, 123, 64, 0, 181, 182, 62, 190, 110, 132, 229, 149, 172, 255, 191, 26, 34, 33, 191, 174, 95, 123, 64, 225, 84, 215, 62, 208, 111, 255, 228, 68, 179, 255, 191, 226, 205, 21, 191, 174, 95, 123, 64, 222, 225, 245, 62, 255, 112, 175, 228, 177, 185, 255, 191, 84, 8, 9, 191, 174, 95, 123, 64, 84, 8, 9, 63, 74, 114, 147, 228, 255, 191, 255, 191, 222, 225, 245, 190, 174, 95, 123, 64, 226, 205, 21, 63, 175, 115, 174, 228, 76, 198, 255, 191, 225, 84, 215, 190, 174, 95, 123, 64, 26, 34, 33, 63, 46, 117, 254, 228, 186, 204, 255, 191, 0, 181, 182, 190, 174, 95, 123, 64, 17, 233, 42, 63, 198, 118, 132, 229, 105, 211, 255, 191, 173, 82, 148, 190, 174, 95, 123, 64, 169, 10, 51, 63, 116, 120, 63, 230, 129, 218, 255, 191, 87, 5, 97, 190, 174, 95, 123, 64, 216, 114, 57, 63, 57, 122, 47, 231, 52, 226, 255, 191, 145, 58, 23, 190, 174, 95, 123, 64, 208, 17, 62, 63, 19, 124, 88, 232, 194, 234, 255, 191, 227, 245, 151, 189, 174, 95, 123, 64, 48, 220, 64, 63, 0, 126, 184, 233, 132, 244, 255, 191, 47, 196, 85, 165, 174, 95, 123, 64, 20, 203, 65, 63, 255, 127, 80, 235, 255, 255, 255, 191, 0, 0, 0, 0, 85, 161, 117, 64, 64, 63, 144, 63, 255, 127, 240, 226, 255, 255, 255, 191, 14, 56, 226, 61, 85, 161, 117, 64, 111, 141, 143, 63, 201, 130, 228, 224, 255, 255, 188, 197, 49, 33, 97, 62, 85, 161, 117, 64, 180, 121, 141, 63, 114, 133, 37, 223, 255, 255, 157, 202, 168, 125, 167, 62, 85, 161, 117, 64, 45, 9, 138, 63, 251, 135, 175, 221, 255, 255, 228, 206, 201, 205, 220, 62, 85, 161, 117, 64, 84, 68, 133, 63, 100, 138, 129, 220, 255, 255, 189, 210, 197, 254, 7, 63, 85, 161, 117, 64, 219, 109, 126, 63, 173, 140, 152, 219, 255, 255, 74, 214, 93, 71, 32, 63, 85, 161, 117, 64, 197, 223, 111, 63, 213, 142, 243, 218, 255, 255, 161, 217, 204, 4, 55, 63, 85, 161, 117, 64, 77, 2, 95, 63, 222, 144, 145, 218, 255, 255, 216, 220, 4, 255, 75, 63, 85, 161, 117, 64, 4, 255, 75, 63, 198, 146, 112, 218, 255, 255, 255, 223, 77, 2, 95, 63, 85, 161, 117, 64, 204, 4, 55, 63, 142, 148, 145, 218, 255, 255, 37, 227, 197, 223, 111, 63, 85, 161, 117, 64, 93, 71, 32, 63, 52, 150, 243, 218, 255, 255, 92, 230, 219, 109, 126, 63, 85, 161, 117, 64, 197, 254, 7, 63, 183, 151, 152, 219, 255, 255, 180, 233, 84, 68, 133, 63, 85, 161, 117, 64, 201, 205, 220, 62, 23, 153, 129, 220, 255, 255, 64, 237, 45, 9, 138, 63, 85, 161, 117, 64, 168, 125, 167, 62, 82, 154, 175, 221, 255, 255, 25, 241, 180, 121, 141, 63, 85, 161, 117, 64, 49, 33, 97, 62, 102, 155, 37, 223, 255, 255, 96, 245, 111, 141, 143, 63, 85, 161, 117, 64, 14, 56, 226, 61, 79, 156, 228, 224, 255, 255, 66, 250, 64, 63, 144, 63, 85, 161, 117, 64, 29, 29, 159, 36, 13, 157, 241, 226, 255, 255, 255, 255, 111, 141, 143, 63, 85, 161, 117, 64, 14, 56, 226, 189, 25, 159, 174, 227, 0, 0, 66, 250, 180, 121, 141, 63, 85, 161, 117, 64, 49, 33, 97, 190, 217, 160, 152, 228, 0, 0, 96, 245, 45, 9, 138, 63, 85, 161, 117, 64, 168, 125, 167, 190, 78, 162, 171, 229, 0, 0, 25, 241, 84, 68, 133, 63, 85, 161, 117, 64, 201, 205, 220, 190, 124, 163, 230, 230, 0, 0, 64, 237, 219, 109, 126, 63, 85, 161, 117, 64, 197, 254, 7, 191, 101, 164, 70, 232, 0, 0, 180, 233, 197, 223, 111, 63, 85, 161, 117, 64, 93, 71, 32, 191, 9, 165, 202, 233, 0, 0, 92, 230, 77, 2, 95, 63, 85, 161, 117, 64, 204, 4, 55, 191, 109, 165, 112, 235, 0, 0, 37, 227, 4, 255, 75, 63, 85, 161, 117, 64, 4, 255, 75, 191, 141, 165, 55, 237, 0, 0, 255, 223, 204, 4, 55, 63, 85, 161, 117, 64, 77, 2, 95, 191, 109, 165, 32, 239, 0, 0, 216, 220, 93, 71, 32, 63, 85, 161, 117, 64, 197, 223, 111, 191, 10, 165, 40, 241, 0, 0, 161, 217, 197, 254, 7, 63, 85, 161, 117, 64, 219, 109, 126, 191, 101, 164, 81, 243, 0, 0, 74, 214, 201, 205, 220, 62, 85, 161, 117, 64, 84, 68, 133, 191, 124, 163, 153, 245, 0, 0, 189, 210, 168, 125, 167, 62, 85, 161, 117, 64, 45, 9, 138, 191, 78, 162, 2, 248, 0, 0, 228, 206, 49, 33, 97, 62, 85, 161, 117, 64, 180, 121, 141, 191, 217, 160, 139, 250, 0, 0, 157, 202, 14, 56, 226, 61, 85, 161, 117, 64, 111, 141, 143, 191, 25, 159, 53, 253, 0, 0, 188, 197, 29, 29, 31, 37, 85, 161, 117, 64, 64, 63, 144, 191, 13, 157, 255, 255, 0, 0, 255, 191, 14, 56, 226, 189, 85, 161, 117, 64, 111, 141, 143, 191, 228, 96, 53, 253, 120, 11, 255, 191, 49, 33, 97, 190, 85, 161, 117, 64, 180, 121, 141, 191, 36, 95, 139, 250, 59, 21, 255, 191, 168, 125, 167, 190, 85, 161, 117, 64, 45, 9, 138, 191, 176, 93, 2, 248, 201, 29, 255, 191, 201, 205, 220, 190, 85, 161, 117, 64, 84, 68, 133, 191, 130, 92, 153, 245, 125, 37, 255, 191, 197, 254, 7, 191, 85, 161, 117, 64, 219, 109, 126, 191, 153, 91, 81, 243, 149, 44, 255, 191, 93, 71, 32, 191, 85, 161, 117, 64, 197, 223, 111, 191, 244, 90, 40, 241, 68, 51, 255, 191, 204, 4, 55, 191, 85, 161, 117, 64, 77, 2, 95, 191, 145, 90, 32, 239, 178, 57, 255, 191, 4, 255, 75, 191, 85, 161, 117, 64, 4, 255, 75, 191, 113, 90, 55, 237, 255, 63, 255, 191, 77, 2, 95, 191, 85, 161, 117, 64, 204, 4, 55, 191, 145, 90, 112, 235, 77, 70, 255, 191, 197, 223, 111, 191, 85, 161, 117, 64, 93, 71, 32, 191, 244, 90, 202, 233, 185, 76, 255, 191, 219, 109, 126, 191, 85, 161, 117, 64, 197, 254, 7, 191, 153, 91, 70, 232, 104, 83, 255, 191, 84, 68, 133, 191, 85, 161, 117, 64, 201, 205, 220, 190, 130, 92, 230, 230, 130, 90, 255, 191, 45, 9, 138, 191, 85, 161, 117, 64, 168, 125, 167, 190, 176, 93, 171, 229, 53, 98, 255, 191, 180, 121, 141, 191, 85, 161, 117, 64, 49, 33, 97, 190, 37, 95, 152, 228, 195, 106, 255, 191, 111, 141, 143, 191, 85, 161, 117, 64, 14, 56, 226, 189, 228, 96, 174, 227, 133, 116, 255, 191, 64, 63, 144, 191, 85, 161, 117, 64, 170, 171, 110, 165, 240, 98, 241, 226, 255, 127, 255, 191, 111, 141, 143, 191, 85, 161, 117, 64, 14, 56, 226, 61, 175, 99, 228, 224, 121, 139, 255, 191, 180, 121, 141, 191, 85, 161, 117, 64, 49, 33, 97, 62, 152, 100, 36, 223, 59, 149, 255, 191, 45, 9, 138, 191, 85, 161, 117, 64, 168, 125, 167, 62, 172, 101, 175, 221, 201, 157, 255, 191, 84, 68, 133, 191, 85, 161, 117, 64, 201, 205, 220, 62, 231, 102, 129, 220, 124, 165, 255, 191, 219, 109, 126, 191, 85, 161, 117, 64, 197, 254, 7, 63, 71, 104, 152, 219, 149, 172, 255, 191, 197, 223, 111, 191, 85, 161, 117, 64, 93, 71, 32, 63, 202, 105, 243, 218, 68, 179, 255, 191, 77, 2, 95, 191, 85, 161, 117, 64, 204, 4, 55, 63, 112, 107, 145, 218, 177, 185, 255, 191, 4, 255, 75, 191, 85, 161, 117, 64, 4, 255, 75, 63, 56, 109, 112, 218, 255, 191, 255, 191, 204, 4, 55, 191, 85, 161, 117, 64, 77, 2, 95, 63, 32, 111, 145, 218, 76, 198, 255, 191, 93, 71, 32, 191, 85, 161, 117, 64, 197, 223, 111, 63, 41, 113, 243, 218, 186, 204, 255, 191, 197, 254, 7, 191, 85, 161, 117, 64, 219, 109, 126, 63, 81, 115, 152, 219, 105, 211, 255, 191, 201, 205, 220, 190, 85, 161, 117, 64, 84, 68, 133, 63, 154, 117, 129, 220, 129, 218, 255, 191, 168, 125, 167, 190, 85, 161, 117, 64, 45, 9, 138, 63, 3, 120, 175, 221, 52, 226, 255, 191, 49, 33, 97, 190, 85, 161, 117, 64, 180, 121, 141, 63, 140, 122, 36, 223, 194, 234, 255, 191, 14, 56, 226, 189, 85, 161, 117, 64, 111, 141, 143, 63, 53, 125, 228, 224, 132, 244, 255, 191, 29, 29, 159, 165, 85, 161, 117, 64, 64, 63, 144, 63, 255, 127, 240, 226, 255, 255, 255, 191, 0, 0, 0, 0, 133, 169, 109, 64, 139, 74, 190, 63, 255, 127, 102, 219, 255, 255, 255, 191, 226, 54, 21, 62, 133, 169, 109, 64, 248, 95, 189, 63, 125, 131, 7, 217, 255, 255, 188, 197, 242, 126, 148, 62, 133, 169, 109, 64, 129, 162, 186, 63, 203, 134, 6, 215, 255, 255, 157, 202, 87, 244, 220, 62, 133, 169, 109, 64, 233, 24, 182, 63, 235, 137, 94, 213, 255, 255, 228, 206, 127, 164, 17, 63, 133, 169, 109, 64, 94, 206, 175, 63, 223, 140, 9, 212, 255, 255, 189, 210, 193, 103, 51, 63, 133, 169, 109, 64, 101, 210, 167, 63, 170, 143, 4, 211, 255, 255, 74, 214, 179, 112, 83, 63, 133, 169, 109, 64, 169, 56, 158, 63, 77, 146, 75, 210, 255, 255, 161, 217, 91, 112, 113, 63, 133, 169, 109, 64, 218, 24, 147, 63, 202, 148, 222, 209, 255, 255, 216, 220, 98, 142, 134, 63, 133, 169, 109, 64, 98, 142, 134, 63, 34, 151, 185, 209, 255, 255, 255, 223, 218, 24, 147, 63, 133, 169, 109, 64, 91, 112, 113, 63, 85, 153, 222, 209, 255, 255, 37, 227, 169, 56, 158, 63, 133, 169, 109, 64, 179, 112, 83, 63, 100, 155, 75, 210, 255, 255, 92, 230, 101, 210, 167, 63, 133, 169, 109, 64, 193, 103, 51, 63, 79, 157, 4, 211, 255, 255, 180, 233, 94, 206, 175, 63, 133, 169, 109, 64, 127, 164, 17, 63, 20, 159, 9, 212, 255, 255, 64, 237, 233, 24, 182, 63, 133, 169, 109, 64, 87, 244, 220, 62, 180, 160, 94, 213, 255, 255, 25, 241, 129, 162, 186, 63, 133, 169, 109, 64, 242, 126, 148, 62, 43, 162, 6, 215, 255, 255, 96, 245, 248, 95, 189, 63, 133, 169, 109, 64, 226, 54, 21, 62, 120, 163, 6, 217, 255, 255, 66, 250, 139, 74, 190, 63, 133, 169, 109, 64, 64, 231, 209, 36, 151, 164, 103, 219, 255, 255, 255, 255, 248, 95, 189, 63, 133, 169, 109, 64, 226, 54, 21, 190, 245, 166, 134, 220, 0, 0, 66, 250, 129, 162, 186, 63, 133, 169, 109, 64, 242, 126, 148, 190, 247, 168, 211, 221, 0, 0, 96, 245, 233, 24, 182, 63, 133, 169, 109, 64, 87, 244, 220, 190, 160, 170, 74, 223, 0, 0, 25, 241, 94, 206, 175, 63, 133, 169, 109, 64, 127, 164, 17, 191, 244, 171, 233, 224, 0, 0, 64, 237, 101, 210, 167, 63, 133, 169, 109, 64, 193, 103, 51, 191, 249, 172, 175, 226, 0, 0, 180, 233, 169, 56, 158, 63, 133, 169, 109, 64, 179, 112, 83, 191, 178, 173, 153, 228, 0, 0, 92, 230, 218, 24, 147, 63, 133, 169, 109, 64, 91, 112, 113, 191, 32, 174, 169, 230, 0, 0, 37, 227, 98, 142, 134, 63, 133, 169, 109, 64, 98, 142, 134, 191, 68, 174, 220, 232, 0, 0, 255, 223, 91, 112, 113, 63, 133, 169, 109, 64, 218, 24, 147, 191, 32, 174, 52, 235, 0, 0, 216, 220, 179, 112, 83, 63, 133, 169, 109, 64, 169, 56, 158, 191, 178, 173, 177, 237, 0, 0, 161, 217, 193, 103, 51, 63, 133, 169, 109, 64, 101, 210, 167, 191, 250, 172, 84, 240, 0, 0, 74, 214, 127, 164, 17, 63, 133, 169, 109, 64, 94, 206, 175, 191, 244, 171, 30, 243, 0, 0, 189, 210, 87, 244, 220, 62, 133, 169, 109, 64, 233, 24, 182, 191, 159, 170, 19, 246, 0, 0, 228, 206, 242, 126, 148, 62, 133, 169, 109, 64, 129, 162, 186, 191, 247, 168, 50, 249, 0, 0, 157, 202, 226, 54, 21, 62, 133, 169, 109, 64, 248, 95, 189, 191, 246, 166, 128, 252, 0, 0, 188, 197, 64, 231, 81, 37, 133, 169, 109, 64, 139, 74, 190, 191, 150, 164, 255, 255, 0, 0, 255, 191, 226, 54, 21, 190, 133, 169, 109, 64, 248, 95, 189, 191, 8, 89, 128, 252, 120, 11, 255, 191, 242, 126, 148, 190, 133, 169, 109, 64, 129, 162, 186, 191, 7, 87, 50, 249, 59, 21, 255, 191, 87, 244, 220, 190, 133, 169, 109, 64, 233, 24, 182, 191, 95, 85, 19, 246, 201, 29, 255, 191, 127, 164, 17, 191, 133, 169, 109, 64, 94, 206, 175, 191, 10, 84, 30, 243, 125, 37, 255, 191, 193, 103, 51, 191, 133, 169, 109, 64, 101, 210, 167, 191, 3, 83, 84, 240, 149, 44, 255, 191, 179, 112, 83, 191, 133, 169, 109, 64, 169, 56, 158, 191, 76, 82, 177, 237, 68, 51, 255, 191, 91, 112, 113, 191, 133, 169, 109, 64, 218, 24, 147, 191, 222, 81, 52, 235, 178, 57, 255, 191, 98, 142, 134, 191, 133, 169, 109, 64, 98, 142, 134, 191, 186, 81, 220, 232, 255, 63, 255, 191, 218, 24, 147, 191, 133, 169, 109, 64, 91, 112, 113, 191, 222, 81, 169, 230, 77, 70, 255, 191, 169, 56, 158, 191, 133, 169, 109, 64, 179, 112, 83, 191, 76, 82, 153, 228, 185, 76, 255, 191, 101, 210, 167, 191, 133, 169, 109, 64, 193, 103, 51, 191, 4, 83, 175, 226, 104, 83, 255, 191, 94, 206, 175, 191, 133, 169, 109, 64, 127, 164, 17, 191, 10, 84, 233, 224, 130, 90, 255, 191, 233, 24, 182, 191, 133, 169, 109, 64, 87, 244, 220, 190, 94, 85, 74, 223, 53, 98, 255, 191, 129, 162, 186, 191, 133, 169, 109, 64, 242, 126, 148, 190, 7, 87, 211, 221, 195, 106, 255, 191, 248, 95, 189, 191, 133, 169, 109, 64, 226, 54, 21, 190, 8, 89, 134, 220, 133, 116, 255, 191, 139, 74, 190, 191, 133, 169, 109, 64, 111, 109, 157, 165, 102, 91, 103, 219, 255, 127, 255, 191, 248, 95, 189, 191, 133, 169, 109, 64, 226, 54, 21, 62, 134, 92, 7, 217, 121, 139, 255, 191, 129, 162, 186, 191, 133, 169, 109, 64, 242, 126, 148, 62, 211, 93, 6, 215, 59, 149, 255, 191, 233, 24, 182, 191, 133, 169, 109, 64, 87, 244, 220, 62, 74, 95, 94, 213, 201, 157, 255, 191, 94, 206, 175, 191, 133, 169, 109, 64, 127, 164, 17, 63, 234, 96, 9, 212, 124, 165, 255, 191, 101, 210, 167, 191, 133, 169, 109, 64, 193, 103, 51, 63, 175, 98, 4, 211, 149, 172, 255, 191, 169, 56, 158, 191, 133, 169, 109, 64, 179, 112, 83, 63, 154, 100, 75, 210, 68, 179, 255, 191, 218, 24, 147, 191, 133, 169, 109, 64, 91, 112, 113, 63, 169, 102, 222, 209, 177, 185, 255, 191, 98, 142, 134, 191, 133, 169, 109, 64, 98, 142, 134, 63, 220, 104, 185, 209, 255, 191, 255, 191, 91, 112, 113, 191, 133, 169, 109, 64, 218, 24, 147, 63, 52, 107, 222, 209, 76, 198, 255, 191, 179, 112, 83, 191, 133, 169, 109, 64, 169, 56, 158, 63, 177, 109, 75, 210, 186, 204, 255, 191, 193, 103, 51, 191, 133, 169, 109, 64, 101, 210, 167, 63, 84, 112, 4, 211, 105, 211, 255, 191, 127, 164, 17, 191, 133, 169, 109, 64, 94, 206, 175, 63, 31, 115, 9, 212, 129, 218, 255, 191, 87, 244, 220, 190, 133, 169, 109, 64, 233, 24, 182, 63, 19, 118, 94, 213, 52, 226, 255, 191, 242, 126, 148, 190, 133, 169, 109, 64, 129, 162, 186, 63, 51, 121, 6, 215, 194, 234, 255, 191, 226, 54, 21, 190, 133, 169, 109, 64, 248, 95, 189, 63, 129, 124, 7, 217, 132, 244, 255, 191, 64, 231, 209, 165, 133, 169, 109, 64, 139, 74, 190, 63, 255, 127, 102, 219, 255, 255, 255, 191, 0, 0, 0, 0, 184, 138, 99, 64, 171, 156, 234, 63, 255, 127, 116, 212, 255, 255, 255, 191, 205, 247, 55, 62, 184, 138, 99, 64, 118, 123, 233, 63, 34, 132, 220, 209, 255, 255, 188, 197, 5, 21, 183, 62, 184, 138, 99, 64, 158, 26, 230, 63, 3, 136, 176, 207, 255, 255, 157, 202, 98, 53, 8, 63, 184, 138, 99, 64, 122, 130, 224, 63, 168, 139, 231, 205, 255, 255, 228, 206, 114, 144, 51, 63, 184, 138, 99, 64, 210, 192, 216, 63, 22, 143, 122, 204, 255, 255, 189, 210, 207, 48, 93, 63, 184, 138, 99, 64, 200, 232, 206, 63, 82, 146, 100, 203, 255, 255, 74, 214, 236, 87, 130, 63, 184, 138, 99, 64, 159, 18, 195, 63, 95, 149, 161, 202, 255, 255, 161, 217, 21, 214, 148, 63, 184, 138, 99, 64, 134, 91, 181, 63, 66, 152, 44, 202, 255, 255, 216, 220, 78, 229, 165, 63, 184, 138, 99, 64, 78, 229, 165, 63, 251, 154, 6, 202, 255, 255, 255, 223, 134, 91, 181, 63, 184, 138, 99, 64, 21, 214, 148, 63, 143, 157, 44, 202, 255, 255, 37, 227, 159, 18, 195, 63, 184, 138, 99, 64, 236, 87, 130, 63, 253, 159, 161, 202, 255, 255, 92, 230, 200, 232, 206, 63, 184, 138, 99, 64, 207, 48, 93, 63, 71, 162, 99, 203, 255, 255, 180, 233, 210, 192, 216, 63, 184, 138, 99, 64, 114, 144, 51, 63, 108, 164, 122, 204, 255, 255, 64, 237, 122, 130, 224, 63, 184, 138, 99, 64, 98, 53, 8, 63, 110, 166, 231, 205, 255, 255, 25, 241, 158, 26, 230, 63, 184, 138, 99, 64, 5, 21, 183, 62, 74, 168, 176, 207, 255, 255, 96, 245, 118, 123, 233, 63, 184, 138, 99, 64, 205, 247, 55, 62, 255, 169, 220, 209, 255, 255, 66, 250, 171, 156, 234, 63, 184, 138, 99, 64, 96, 101, 1, 37, 137, 171, 116, 212, 255, 255, 255, 255, 118, 123, 233, 63, 184, 138, 99, 64, 205, 247, 55, 190, 34, 174, 255, 213, 0, 0, 66, 250, 158, 26, 230, 63, 184, 138, 99, 64, 5, 21, 183, 190, 78, 176, 179, 215, 0, 0, 96, 245, 122, 130, 224, 63, 184, 138, 99, 64, 98, 53, 8, 191, 23, 178, 143, 217, 0, 0, 25, 241, 210, 192, 216, 63, 184, 138, 99, 64, 114, 144, 51, 191, 131, 179, 145, 219, 0, 0, 64, 237, 200, 232, 206, 63, 184, 138, 99, 64, 207, 48, 93, 191, 153, 180, 183, 221, 0, 0, 180, 233, 159, 18, 195, 63, 184, 138, 99, 64, 236, 87, 130, 191, 93, 181, 1, 224, 0, 0, 92, 230, 134, 91, 181, 63, 184, 138, 99, 64, 21, 214, 148, 191, 209, 181, 111, 226, 0, 0, 37, 227, 78, 229, 165, 63, 184, 138, 99, 64, 78, 229, 165, 191, 248, 181, 2, 229, 0, 0, 255, 223, 21, 214, 148, 63, 184, 138, 99, 64, 134, 91, 181, 191, 209, 181, 188, 231, 0, 0, 216, 220, 236, 87, 130, 63, 184, 138, 99, 64, 159, 18, 195, 191, 93, 181, 158, 234, 0, 0, 161, 217, 207, 48, 93, 63, 184, 138, 99, 64, 200, 232, 206, 191, 153, 180, 172, 237, 0, 0, 74, 214, 114, 144, 51, 63, 184, 138, 99, 64, 210, 192, 216, 191, 131, 179, 232, 240, 0, 0, 189, 210, 98, 53, 8, 63, 184, 138, 99, 64, 122, 130, 224, 191, 23, 178, 86, 244, 0, 0, 228, 206, 5, 21, 183, 62, 184, 138, 99, 64, 158, 26, 230, 191, 78, 176, 251, 247, 0, 0, 157, 202, 205, 247, 55, 62, 184, 138, 99, 64, 118, 123, 233, 191, 34, 174, 220, 251, 0, 0, 188, 197, 96, 101, 129, 37, 184, 138, 99, 64, 171, 156, 234, 191, 137, 171, 255, 255, 0, 0, 255, 191, 205, 247, 55, 190, 184, 138, 99, 64, 118, 123, 233, 191, 220, 81, 220, 251, 120, 11, 255, 191, 5, 21, 183, 190, 184, 138, 99, 64, 158, 26, 230, 191, 176, 79, 251, 247, 59, 21, 255, 191, 98, 53, 8, 191, 184, 138, 99, 64, 122, 130, 224, 191, 231, 77, 86, 244, 201, 29, 255, 191, 114, 144, 51, 191, 184, 138, 99, 64, 210, 192, 216, 191, 123, 76, 232, 240, 125, 37, 255, 191, 207, 48, 93, 191, 184, 138, 99, 64, 200, 232, 206, 191, 101, 75, 172, 237, 149, 44, 255, 191, 236, 87, 130, 191, 184, 138, 99, 64, 159, 18, 195, 191, 161, 74, 158, 234, 68, 51, 255, 191, 21, 214, 148, 191, 184, 138, 99, 64, 134, 91, 181, 191, 45, 74, 188, 231, 178, 57, 255, 191, 78, 229, 165, 191, 184, 138, 99, 64, 78, 229, 165, 191, 6, 74, 2, 229, 255, 63, 255, 191, 134, 91, 181, 191, 184, 138, 99, 64, 21, 214, 148, 191, 44, 74, 111, 226, 77, 70, 255, 191, 159, 18, 195, 191, 184, 138, 99, 64, 236, 87, 130, 191, 161, 74, 1, 224, 185, 76, 255, 191, 200, 232, 206, 191, 184, 138, 99, 64, 207, 48, 93, 191, 101, 75, 183, 221, 104, 83, 255, 191, 210, 192, 216, 191, 184, 138, 99, 64, 114, 144, 51, 191, 123, 76, 145, 219, 130, 90, 255, 191, 122, 130, 224, 191, 184, 138, 99, 64, 98, 53, 8, 191, 231, 77, 143, 217, 53, 98, 255, 191, 158, 26, 230, 191, 184, 138, 99, 64, 5, 21, 183, 190, 176, 79, 179, 215, 195, 106, 255, 191, 118, 123, 233, 191, 184, 138, 99, 64, 205, 247, 55, 190, 220, 81, 255, 213, 133, 116, 255, 191, 171, 156, 234, 191, 184, 138, 99, 64, 15, 24, 194, 165, 117, 84, 116, 212, 255, 127, 255, 191, 118, 123, 233, 191, 184, 138, 99, 64, 205, 247, 55, 62, 255, 85, 220, 209, 121, 139, 255, 191, 158, 26, 230, 191, 184, 138, 99, 64, 5, 21, 183, 62, 179, 87, 176, 207, 59, 149, 255, 191, 122, 130, 224, 191, 184, 138, 99, 64, 98, 53, 8, 63, 144, 89, 231, 205, 201, 157, 255, 191, 210, 192, 216, 191, 184, 138, 99, 64, 114, 144, 51, 63, 146, 91, 122, 204, 124, 165, 255, 191, 200, 232, 206, 191, 184, 138, 99, 64, 207, 48, 93, 63, 183, 93, 100, 203, 149, 172, 255, 191, 159, 18, 195, 191, 184, 138, 99, 64, 236, 87, 130, 63, 1, 96, 161, 202, 68, 179, 255, 191, 134, 91, 181, 191, 184, 138, 99, 64, 21, 214, 148, 63, 111, 98, 44, 202, 177, 185, 255, 191, 78, 229, 165, 191, 184, 138, 99, 64, 78, 229, 165, 63, 3, 101, 6, 202, 255, 191, 255, 191, 21, 214, 148, 191, 184, 138, 99, 64, 134, 91, 181, 63, 188, 103, 44, 202, 76, 198, 255, 191, 236, 87, 130, 191, 184, 138, 99, 64, 159, 18, 195, 63, 159, 106, 161, 202, 186, 204, 255, 191, 207, 48, 93, 191, 184, 138, 99, 64, 200, 232, 206, 63, 172, 109, 100, 203, 105, 211, 255, 191, 114, 144, 51, 191, 184, 138, 99, 64, 210, 192, 216, 63, 232, 112, 122, 204, 129, 218, 255, 191, 98, 53, 8, 191, 184, 138, 99, 64, 122, 130, 224, 63, 86, 116, 231, 205, 52, 226, 255, 191, 5, 21, 183, 190, 184, 138, 99, 64, 158, 26, 230, 63, 251, 119, 176, 207, 194, 234, 255, 191, 205, 247, 55, 190, 184, 138, 99, 64, 118, 123, 233, 63, 220, 123, 220, 209, 132, 244, 255, 191, 96, 101, 1, 166, 184, 138, 99, 64, 171, 156, 234, 63, 255, 127, 116, 212, 255, 255, 255, 191, 0, 0, 0, 0, 100, 92, 87, 64, 112, 103, 10, 64, 255, 127, 235, 205, 255, 255, 255, 191, 54, 14, 89, 62, 100, 92, 87, 64, 211, 188, 9, 64, 187, 132, 45, 203, 255, 255, 188, 197, 165, 2, 216, 62, 100, 92, 87, 64, 162, 190, 7, 64, 35, 137, 231, 200, 255, 255, 157, 202, 208, 180, 32, 63, 100, 92, 87, 64, 198, 113, 4, 64, 64, 141, 12, 199, 255, 255, 228, 206, 24, 220, 83, 63, 100, 92, 87, 64, 194, 188, 255, 63, 27, 145, 147, 197, 255, 255, 189, 210, 135, 124, 130, 63, 100, 92, 87, 64, 122, 31, 244, 63, 188, 148, 116, 196, 255, 255, 74, 214, 78, 201, 153, 63, 100, 92, 87, 64, 83, 40, 230, 63, 41, 152, 172, 195, 255, 255, 161, 217, 238, 154, 175, 63, 100, 92, 87, 64, 190, 249, 213, 63, 102, 155, 52, 195, 255, 255, 216, 220, 158, 187, 195, 63, 100, 92, 87, 64, 158, 187, 195, 63, 120, 158, 13, 195, 255, 255, 255, 223, 190, 249, 213, 63, 100, 92, 87, 64, 238, 154, 175, 63, 98, 161, 51, 195, 255, 255, 37, 227, 83, 40, 230, 63, 100, 92, 87, 64, 78, 201, 153, 63, 40, 164, 172, 195, 255, 255, 92, 230, 122, 31, 244, 63, 100, 92, 87, 64, 135, 124, 130, 63, 204, 166, 116, 196, 255, 255, 180, 233, 194, 188, 255, 63, 100, 92, 87, 64, 24, 220, 83, 63, 78, 169, 147, 197, 255, 255, 64, 237, 198, 113, 4, 64, 100, 92, 87, 64, 208, 180, 32, 63, 177, 171, 12, 199, 255, 255, 25, 241, 162, 190, 7, 64, 100, 92, 87, 64, 165, 2, 216, 62, 243, 173, 231, 200, 255, 255, 96, 245, 211, 188, 9, 64, 100, 92, 87, 64, 54, 14, 89, 62, 20, 176, 44, 203, 255, 255, 66, 250, 112, 103, 10, 64, 100, 92, 87, 64, 35, 171, 24, 37, 19, 178, 235, 205, 255, 255, 255, 255, 211, 188, 9, 64, 100, 92, 87, 64, 54, 14, 89, 190, 208, 180, 233, 207, 0, 0, 66, 250, 162, 190, 7, 64, 100, 92, 87, 64, 165, 2, 216, 190, 22, 183, 11, 210, 0, 0, 96, 245, 198, 113, 4, 64, 100, 92, 87, 64, 208, 180, 32, 191, 242, 184, 77, 212, 0, 0, 25, 241, 194, 188, 255, 63, 100, 92, 87, 64, 24, 220, 83, 191, 107, 186, 175, 214, 0, 0, 64, 237, 122, 31, 244, 63, 100, 92, 87, 64, 135, 124, 130, 191, 137, 187, 50, 217, 0, 0, 180, 233, 83, 40, 230, 63, 100, 92, 87, 64, 78, 201, 153, 191, 82, 188, 213, 219, 0, 0, 92, 230, 190, 249, 213, 63, 100, 92, 87, 64, 238, 154, 175, 191, 201, 188, 155, 222, 0, 0, 37, 227, 158, 187, 195, 63, 100, 92, 87, 64, 158, 187, 195, 191, 240, 188, 134, 225, 0, 0, 255, 223, 238, 154, 175, 63, 100, 92, 87, 64, 190, 249, 213, 191, 201, 188, 152, 228, 0, 0, 216, 220, 78, 201, 153, 63, 100, 92, 87, 64, 83, 40, 230, 191, 82, 188, 213, 231, 0, 0, 161, 217, 135, 124, 130, 63, 100, 92, 87, 64, 122, 31, 244, 191, 137, 187, 65, 235, 0, 0, 74, 214, 24, 220, 83, 63, 100, 92, 87, 64, 194, 188, 255, 191, 107, 186, 226, 238, 0, 0, 189, 210, 208, 180, 32, 63, 100, 92, 87, 64, 198, 113, 4, 192, 242, 184, 189, 242, 0, 0, 228, 206, 165, 2, 216, 62, 100, 92, 87, 64, 162, 190, 7, 192, 23, 183, 219, 246, 0, 0, 157, 202, 54, 14, 89, 62, 100, 92, 87, 64, 211, 188, 9, 192, 208, 180, 66, 251, 0, 0, 188, 197, 35, 171, 152, 37, 100, 92, 87, 64, 112, 103, 10, 192, 19, 178, 255, 255, 0, 0, 255, 191, 54, 14, 89, 190, 100, 92, 87, 64, 211, 188, 9, 192, 46, 75, 66, 251, 120, 11, 255, 191, 165, 2, 216, 190, 100, 92, 87, 64, 162, 190, 7, 192, 230, 72, 219, 246, 59, 21, 255, 191, 208, 180, 32, 191, 100, 92, 87, 64, 198, 113, 4, 192, 12, 71, 189, 242, 201, 29, 255, 191, 24, 220, 83, 191, 100, 92, 87, 64, 194, 188, 255, 191, 147, 69, 226, 238, 125, 37, 255, 191, 135, 124, 130, 191, 100, 92, 87, 64, 122, 31, 244, 191, 117, 68, 65, 235, 149, 44, 255, 191, 78, 201, 153, 191, 100, 92, 87, 64, 83, 40, 230, 191, 172, 67, 213, 231, 68, 51, 255, 191, 238, 154, 175, 191, 100, 92, 87, 64, 190, 249, 213, 191, 53, 67, 152, 228, 178, 57, 255, 191, 158, 187, 195, 191, 100, 92, 87, 64, 158, 187, 195, 191, 14, 67, 134, 225, 255, 63, 255, 191, 190, 249, 213, 191, 100, 92, 87, 64, 238, 154, 175, 191, 53, 67, 155, 222, 77, 70, 255, 191, 83, 40, 230, 191, 100, 92, 87, 64, 78, 201, 153, 191, 172, 67, 213, 219, 185, 76, 255, 191, 122, 31, 244, 191, 100, 92, 87, 64, 135, 124, 130, 191, 117, 68, 50, 217, 104, 83, 255, 191, 194, 188, 255, 191, 100, 92, 87, 64, 24, 220, 83, 191, 147, 69, 175, 214, 130, 90, 255, 191, 198, 113, 4, 192, 100, 92, 87, 64, 208, 180, 32, 191, 12, 71, 77, 212, 53, 98, 255, 191, 162, 190, 7, 192, 100, 92, 87, 64, 165, 2, 216, 190, 231, 72, 11, 210, 195, 106, 255, 191, 211, 188, 9, 192, 100, 92, 87, 64, 54, 14, 89, 190, 46, 75, 233, 207, 133, 116, 255, 191, 112, 103, 10, 192, 100, 92, 87, 64, 179, 0, 229, 165, 235, 77, 235, 205, 255, 127, 255, 191, 211, 188, 9, 192, 100, 92, 87, 64, 54, 14, 89, 62, 234, 79, 45, 203, 121, 139, 255, 191, 162, 190, 7, 192, 100, 92, 87, 64, 165, 2, 216, 62, 11, 82, 231, 200, 59, 149, 255, 191, 198, 113, 4, 192, 100, 92, 87, 64, 208, 180, 32, 63, 77, 84, 12, 199, 201, 157, 255, 191, 194, 188, 255, 191, 100, 92, 87, 64, 24, 220, 83, 63, 175, 86, 147, 197, 124, 165, 255, 191, 122, 31, 244, 191, 100, 92, 87, 64, 135, 124, 130, 63, 50, 89, 116, 196, 149, 172, 255, 191, 83, 40, 230, 191, 100, 92, 87, 64, 78, 201, 153, 63, 214, 91, 172, 195, 68, 179, 255, 191, 190, 249, 213, 191, 100, 92, 87, 64, 238, 154, 175, 63, 156, 94, 52, 195, 177, 185, 255, 191, 158, 187, 195, 191, 100, 92, 87, 64, 158, 187, 195, 63, 134, 97, 13, 195, 255, 191, 255, 191, 238, 154, 175, 191, 100, 92, 87, 64, 190, 249, 213, 63, 152, 100, 52, 195, 76, 198, 255, 191, 78, 201, 153, 191, 100, 92, 87, 64, 83, 40, 230, 63, 213, 103, 172, 195, 186, 204, 255, 191, 135, 124, 130, 191, 100, 92, 87, 64, 122, 31, 244, 63, 66, 107, 116, 196, 105, 211, 255, 191, 24, 220, 83, 191, 100, 92, 87, 64, 194, 188, 255, 63, 227, 110, 147, 197, 129, 218, 255, 191, 208, 180, 32, 191, 100, 92, 87, 64, 198, 113, 4, 64, 190, 114, 12, 199, 52, 226, 255, 191, 165, 2, 216, 190, 100, 92, 87, 64, 162, 190, 7, 64, 219, 118, 231, 200, 194, 234, 255, 191, 54, 14, 89, 190, 100, 92, 87, 64, 211, 188, 9, 64, 67, 123, 45, 203, 132, 244, 255, 191, 35, 171, 24, 166, 100, 92, 87, 64, 112, 103, 10, 64, 255, 127, 235, 205, 255, 255, 255, 191, 0, 0, 0, 0, 198, 58, 73, 64, 171, 63, 30, 64, 255, 127, 166, 199, 255, 255, 255, 191, 104, 45, 120, 62, 198, 58, 73, 64, 152, 124, 29, 64, 77, 133, 211, 196, 255, 255, 188, 197, 122, 251, 246, 62, 198, 58, 73, 64, 63, 53, 27, 64, 51, 138, 128, 194, 255, 255, 157, 202, 170, 191, 55, 63, 198, 58, 73, 64, 64, 111, 23, 64, 191, 142, 157, 192, 255, 255, 228, 206, 147, 60, 114, 63, 198, 58, 73, 64, 230, 51, 18, 64, 255, 146, 33, 191, 255, 255, 189, 210, 35, 50, 149, 63, 198, 58, 73, 64, 26, 144, 11, 64, 252, 150, 1, 190, 255, 255, 74, 214, 40, 214, 175, 63, 198, 58, 73, 64, 56, 148, 3, 64, 190, 154, 55, 189, 255, 255, 161, 217, 169, 200, 200, 63, 198, 58, 73, 64, 226, 167, 244, 63, 78, 158, 192, 188, 255, 255, 216, 220, 38, 204, 223, 63, 198, 58, 73, 64, 38, 204, 223, 63, 178, 161, 153, 188, 255, 255, 255, 223, 226, 167, 244, 63, 198, 58, 73, 64, 169, 200, 200, 63, 238, 164, 192, 188, 255, 255, 37, 227, 56, 148, 3, 64, 198, 58, 73, 64, 40, 214, 175, 63, 7, 168, 55, 189, 255, 255, 92, 230, 26, 144, 11, 64, 198, 58, 73, 64, 35, 50, 149, 63, 0, 171, 1, 190, 255, 255, 180, 233, 230, 51, 18, 64, 198, 58, 73, 64, 147, 60, 114, 63, 221, 173, 33, 191, 255, 255, 64, 237, 64, 111, 23, 64, 198, 58, 73, 64, 170, 191, 55, 63, 160, 176, 157, 192, 255, 255, 25, 241, 63, 53, 27, 64, 198, 58, 73, 64, 122, 251, 246, 62, 74, 179, 128, 194, 255, 255, 96, 245, 152, 124, 29, 64, 198, 58, 73, 64, 104, 45, 120, 62, 221, 181, 211, 196, 255, 255, 66, 250, 171, 63, 30, 64, 198, 58, 73, 64, 245, 142, 46, 37, 88, 184, 166, 199, 255, 255, 255, 255, 152, 124, 29, 64, 198, 58, 73, 64, 104, 45, 120, 190, 43, 187, 33, 202, 0, 0, 66, 250, 63, 53, 27, 64, 198, 58, 73, 64, 122, 251, 246, 190, 126, 189, 179, 204, 0, 0, 96, 245, 64, 111, 23, 64, 198, 58, 73, 64, 170, 191, 55, 191, 96, 191, 94, 207, 0, 0, 25, 241, 230, 51, 18, 64, 198, 58, 73, 64, 147, 60, 114, 191, 221, 192, 32, 210, 0, 0, 64, 237, 26, 144, 11, 64, 198, 58, 73, 64, 35, 50, 149, 191, 253, 193, 253, 212, 0, 0, 180, 233, 56, 148, 3, 64, 198, 58, 73, 64, 40, 214, 175, 191, 198, 194, 247, 215, 0, 0, 92, 230, 226, 167, 244, 63, 198, 58, 73, 64, 169, 200, 200, 191, 61, 195, 16, 219, 0, 0, 37, 227, 38, 204, 223, 63, 198, 58, 73, 64, 38, 204, 223, 191, 101, 195, 76, 222, 0, 0, 255, 223, 169, 200, 200, 63, 198, 58, 73, 64, 226, 167, 244, 191, 61, 195, 175, 225, 0, 0, 216, 220, 40, 214, 175, 63, 198, 58, 73, 64, 56, 148, 3, 192, 198, 194, 63, 229, 0, 0, 161, 217, 35, 50, 149, 63, 198, 58, 73, 64, 26, 144, 11, 192, 253, 193, 2, 233, 0, 0, 74, 214, 147, 60, 114, 63, 198, 58, 73, 64, 230, 51, 18, 192, 221, 192, 255, 236, 0, 0, 189, 210, 170, 191, 55, 63, 198, 58, 73, 64, 64, 111, 23, 192, 96, 191, 62, 241, 0, 0, 228, 206, 122, 251, 246, 62, 198, 58, 73, 64, 63, 53, 27, 192, 126, 189, 203, 245, 0, 0, 157, 202, 104, 45, 120, 62, 198, 58, 73, 64, 152, 124, 29, 192, 43, 187, 176, 250, 0, 0, 188, 197, 245, 142, 174, 37, 198, 58, 73, 64, 171, 63, 30, 192, 88, 184, 255, 255, 0, 0, 255, 191, 104, 45, 120, 190, 198, 58, 73, 64, 152, 124, 29, 192, 211, 68, 176, 250, 120, 11, 255, 191, 122, 251, 246, 190, 198, 58, 73, 64, 63, 53, 27, 192, 128, 66, 203, 245, 59, 21, 255, 191, 170, 191, 55, 191, 198, 58, 73, 64, 64, 111, 23, 192, 158, 64, 62, 241, 201, 29, 255, 191, 147, 60, 114, 191, 198, 58, 73, 64, 230, 51, 18, 192, 32, 63, 255, 236, 125, 37, 255, 191, 35, 50, 149, 191, 198, 58, 73, 64, 26, 144, 11, 192, 1, 62, 2, 233, 149, 44, 255, 191, 40, 214, 175, 191, 198, 58, 73, 64, 56, 148, 3, 192, 55, 61, 63, 229, 68, 51, 255, 191, 169, 200, 200, 191, 198, 58, 73, 64, 226, 167, 244, 191, 193, 60, 175, 225, 178, 57, 255, 191, 38, 204, 223, 191, 198, 58, 73, 64, 38, 204, 223, 191, 153, 60, 76, 222, 255, 63, 255, 191, 226, 167, 244, 191, 198, 58, 73, 64, 169, 200, 200, 191, 193, 60, 16, 219, 77, 70, 255, 191, 56, 148, 3, 192, 198, 58, 73, 64, 40, 214, 175, 191, 55, 61, 247, 215, 185, 76, 255, 191, 26, 144, 11, 192, 198, 58, 73, 64, 35, 50, 149, 191, 1, 62, 253, 212, 104, 83, 255, 191, 230, 51, 18, 192, 198, 58, 73, 64, 147, 60, 114, 191, 32, 63, 32, 210, 130, 90, 255, 191, 64, 111, 23, 192, 198, 58, 73, 64, 170, 191, 55, 191, 158, 64, 94, 207, 53, 98, 255, 191, 63, 53, 27, 192, 198, 58, 73, 64, 122, 251, 246, 190, 128, 66, 179, 204, 195, 106, 255, 191, 152, 124, 29, 192, 198, 58, 73, 64, 104, 45, 120, 190, 211, 68, 33, 202, 133, 116, 255, 191, 171, 63, 30, 192, 198, 58, 73, 64, 55, 235, 2, 166, 166, 71, 166, 199, 255, 127, 255, 191, 152, 124, 29, 192, 198, 58, 73, 64, 104, 45, 120, 62, 33, 74, 211, 196, 121, 139, 255, 191, 63, 53, 27, 192, 198, 58, 73, 64, 122, 251, 246, 62, 179, 76, 128, 194, 59, 149, 255, 191, 64, 111, 23, 192, 198, 58, 73, 64, 170, 191, 55, 63, 94, 79, 157, 192, 201, 157, 255, 191, 230, 51, 18, 192, 198, 58, 73, 64, 147, 60, 114, 63, 33, 82, 33, 191, 124, 165, 255, 191, 26, 144, 11, 192, 198, 58, 73, 64, 35, 50, 149, 63, 254, 84, 1, 190, 149, 172, 255, 191, 56, 148, 3, 192, 198, 58, 73, 64, 40, 214, 175, 63, 247, 87, 55, 189, 68, 179, 255, 191, 226, 167, 244, 191, 198, 58, 73, 64, 169, 200, 200, 63, 16, 91, 192, 188, 177, 185, 255, 191, 38, 204, 223, 191, 198, 58, 73, 64, 38, 204, 223, 63, 76, 94, 153, 188, 255, 191, 255, 191, 169, 200, 200, 191, 198, 58, 73, 64, 226, 167, 244, 63, 176, 97, 192, 188, 76, 198, 255, 191, 40, 214, 175, 191, 198, 58, 73, 64, 56, 148, 3, 64, 64, 101, 55, 189, 186, 204, 255, 191, 35, 50, 149, 191, 198, 58, 73, 64, 26, 144, 11, 64, 2, 105, 1, 190, 105, 211, 255, 191, 147, 60, 114, 191, 198, 58, 73, 64, 230, 51, 18, 64, 255, 108, 33, 191, 129, 218, 255, 191, 170, 191, 55, 191, 198, 58, 73, 64, 64, 111, 23, 64, 63, 113, 157, 192, 52, 226, 255, 191, 122, 251, 246, 190, 198, 58, 73, 64, 63, 53, 27, 64, 203, 117, 128, 194, 194, 234, 255, 191, 104, 45, 120, 190, 198, 58, 73, 64, 152, 124, 29, 64, 177, 122, 211, 196, 132, 244, 255, 191, 245, 142, 46, 166, 198, 58, 73, 64, 171, 63, 30, 64, 255, 127, 166, 199, 255, 255, 255, 191, 0, 0, 0, 0, 162, 70, 57, 64, 5, 169, 48, 64, 255, 127, 133, 193, 255, 255, 255, 191, 158, 134, 138, 62, 162, 70, 57, 64, 64, 207, 47, 64, 218, 133, 171, 190, 255, 255, 188, 197, 219, 219, 9, 63, 162, 70, 57, 64, 8, 68, 45, 64, 57, 139, 87, 188, 255, 255, 157, 202, 133, 32, 77, 63, 162, 70, 57, 64, 165, 13, 41, 64, 46, 144, 119, 186, 255, 255, 228, 206, 187, 53, 135, 63, 162, 70, 57, 64, 120, 54, 35, 64, 203, 148, 254, 184, 255, 255, 189, 210, 219, 141, 166, 63, 162, 70, 57, 64, 232, 204, 27, 64, 29, 153, 226, 183, 255, 255, 74, 214, 90, 75, 196, 63, 162, 70, 57, 64, 59, 227, 18, 64, 49, 157, 27, 183, 255, 255, 161, 217, 230, 36, 224, 63, 162, 70, 57, 64, 105, 143, 8, 64, 14, 161, 167, 182, 255, 255, 216, 220, 214, 213, 249, 63, 162, 70, 57, 64, 214, 213, 249, 63, 190, 164, 128, 182, 255, 255, 255, 223, 105, 143, 8, 64, 162, 70, 57, 64, 230, 36, 224, 63, 72, 168, 167, 182, 255, 255, 37, 227, 59, 227, 18, 64, 162, 70, 57, 64, 90, 75, 196, 63, 176, 171, 27, 183, 255, 255, 92, 230, 232, 204, 27, 64, 162, 70, 57, 64, 219, 141, 166, 63, 254, 174, 226, 183, 255, 255, 180, 233, 120, 54, 35, 64, 162, 70, 57, 64, 187, 53, 135, 63, 52, 178, 254, 184, 255, 255, 64, 237, 165, 13, 41, 64, 162, 70, 57, 64, 133, 32, 77, 63, 88, 181, 119, 186, 255, 255, 25, 241, 8, 68, 45, 64, 162, 70, 57, 64, 219, 219, 9, 63, 109, 184, 87, 188, 255, 255, 96, 245, 64, 207, 47, 64, 162, 70, 57, 64, 158, 134, 138, 62, 119, 187, 171, 190, 255, 255, 66, 250, 5, 169, 48, 64, 162, 70, 57, 64, 21, 222, 66, 37, 121, 190, 133, 193, 255, 255, 255, 255, 64, 207, 47, 64, 162, 70, 57, 64, 158, 134, 138, 190, 83, 193, 134, 196, 0, 0, 66, 250, 8, 68, 45, 64, 162, 70, 57, 64, 219, 219, 9, 191, 167, 195, 144, 199, 0, 0, 96, 245, 165, 13, 41, 64, 162, 70, 57, 64, 133, 32, 77, 191, 135, 197, 165, 202, 0, 0, 25, 241, 120, 54, 35, 64, 162, 70, 57, 64, 187, 53, 135, 191, 0, 199, 201, 205, 0, 0, 64, 237, 232, 204, 27, 64, 162, 70, 57, 64, 219, 141, 166, 191, 28, 200, 0, 209, 0, 0, 180, 233, 59, 227, 18, 64, 162, 70, 57, 64, 90, 75, 196, 191, 226, 200, 77, 212, 0, 0, 92, 230, 105, 143, 8, 64, 162, 70, 57, 64, 230, 36, 224, 191, 87, 201, 182, 215, 0, 0, 37, 227, 214, 213, 249, 63, 162, 70, 57, 64, 214, 213, 249, 191, 126, 201, 63, 219, 0, 0, 255, 223, 230, 36, 224, 63, 162, 70, 57, 64, 105, 143, 8, 192, 87, 201, 239, 222, 0, 0, 216, 220, 90, 75, 196, 63, 162, 70, 57, 64, 59, 227, 18, 192, 226, 200, 205, 226, 0, 0, 161, 217, 219, 141, 166, 63, 162, 70, 57, 64, 232, 204, 27, 192, 28, 200, 224, 230, 0, 0, 74, 214, 187, 53, 135, 63, 162, 70, 57, 64, 120, 54, 35, 192, 0, 199, 51, 235, 0, 0, 189, 210, 133, 32, 77, 63, 162, 70, 57, 64, 165, 13, 41, 192, 135, 197, 208, 239, 0, 0, 228, 206, 219, 219, 9, 63, 162, 70, 57, 64, 8, 68, 45, 192, 167, 195, 197, 244, 0, 0, 157, 202, 158, 134, 138, 62, 162, 70, 57, 64, 64, 207, 47, 192, 83, 193, 35, 250, 0, 0, 188, 197, 21, 222, 194, 37, 162, 70, 57, 64, 5, 169, 48, 192, 121, 190, 255, 255, 0, 0, 255, 191, 158, 134, 138, 190, 162, 70, 57, 64, 64, 207, 47, 192, 171, 62, 35, 250, 120, 11, 255, 191, 219, 219, 9, 191, 162, 70, 57, 64, 8, 68, 45, 192, 86, 60, 197, 244, 59, 21, 255, 191, 133, 32, 77, 191, 162, 70, 57, 64, 165, 13, 41, 192, 119, 58, 208, 239, 201, 29, 255, 191, 187, 53, 135, 191, 162, 70, 57, 64, 120, 54, 35, 192, 254, 56, 51, 235, 125, 37, 255, 191, 219, 141, 166, 191, 162, 70, 57, 64, 232, 204, 27, 192, 226, 55, 224, 230, 149, 44, 255, 191, 90, 75, 196, 191, 162, 70, 57, 64, 59, 227, 18, 192, 28, 55, 205, 226, 68, 51, 255, 191, 230, 36, 224, 191, 162, 70, 57, 64, 105, 143, 8, 192, 167, 54, 239, 222, 178, 57, 255, 191, 214, 213, 249, 191, 162, 70, 57, 64, 214, 213, 249, 191, 128, 54, 63, 219, 255, 63, 255, 191, 105, 143, 8, 192, 162, 70, 57, 64, 230, 36, 224, 191, 167, 54, 182, 215, 77, 70, 255, 191, 59, 227, 18, 192, 162, 70, 57, 64, 90, 75, 196, 191, 28, 55, 77, 212, 185, 76, 255, 191, 232, 204, 27, 192, 162, 70, 57, 64, 219, 141, 166, 191, 226, 55, 0, 209, 104, 83, 255, 191, 120, 54, 35, 192, 162, 70, 57, 64, 187, 53, 135, 191, 254, 56, 201, 205, 130, 90, 255, 191, 165, 13, 41, 192, 162, 70, 57, 64, 133, 32, 77, 191, 119, 58, 165, 202, 53, 98, 255, 191, 8, 68, 45, 192, 162, 70, 57, 64, 219, 219, 9, 191, 86, 60, 144, 199, 195, 106, 255, 191, 64, 207, 47, 192, 162, 70, 57, 64, 158, 134, 138, 190, 171, 62, 134, 196, 133, 116, 255, 191, 5, 169, 48, 192, 162, 70, 57, 64, 143, 38, 18, 166, 133, 65, 133, 193, 255, 127, 255, 191, 64, 207, 47, 192, 162, 70, 57, 64, 158, 134, 138, 62, 135, 68, 171, 190, 121, 139, 255, 191, 8, 68, 45, 192, 162, 70, 57, 64, 219, 219, 9, 63, 145, 71, 87, 188, 59, 149, 255, 191, 165, 13, 41, 192, 162, 70, 57, 64, 133, 32, 77, 63, 166, 74, 119, 186, 201, 157, 255, 191, 120, 54, 35, 192, 162, 70, 57, 64, 187, 53, 135, 63, 202, 77, 254, 184, 124, 165, 255, 191, 232, 204, 27, 192, 162, 70, 57, 64, 219, 141, 166, 63, 0, 81, 226, 183, 149, 172, 255, 191, 59, 227, 18, 192, 162, 70, 57, 64, 90, 75, 196, 63, 77, 84, 27, 183, 68, 179, 255, 191, 105, 143, 8, 192, 162, 70, 57, 64, 230, 36, 224, 63, 182, 87, 167, 182, 177, 185, 255, 191, 214, 213, 249, 191, 162, 70, 57, 64, 214, 213, 249, 63, 64, 91, 128, 182, 255, 191, 255, 191, 230, 36, 224, 191, 162, 70, 57, 64, 105, 143, 8, 64, 240, 94, 167, 182, 76, 198, 255, 191, 90, 75, 196, 191, 162, 70, 57, 64, 59, 227, 18, 64, 205, 98, 27, 183, 186, 204, 255, 191, 219, 141, 166, 191, 162, 70, 57, 64, 232, 204, 27, 64, 225, 102, 226, 183, 105, 211, 255, 191, 187, 53, 135, 191, 162, 70, 57, 64, 120, 54, 35, 64, 51, 107, 254, 184, 129, 218, 255, 191, 133, 32, 77, 191, 162, 70, 57, 64, 165, 13, 41, 64, 208, 111, 119, 186, 52, 226, 255, 191, 219, 219, 9, 191, 162, 70, 57, 64, 8, 68, 45, 64, 197, 116, 87, 188, 194, 234, 255, 191, 158, 134, 138, 190, 162, 70, 57, 64, 64, 207, 47, 64, 36, 122, 171, 190, 132, 244, 255, 191, 21, 222, 66, 166, 162, 70, 57, 64, 5, 169, 48, 64, 255, 127, 133, 193, 255, 255, 255, 191, 0, 0, 0, 0, 244, 164, 39, 64, 206, 120, 65, 64, 255, 127, 107, 187, 255, 255, 255, 191, 96, 181, 151, 62, 244, 164, 39, 64, 79, 138, 64, 64, 102, 134, 151, 184, 255, 255, 188, 197, 93, 250, 22, 63, 244, 164, 39, 64, 31, 193, 61, 64, 57, 140, 77, 182, 255, 255, 157, 202, 207, 165, 96, 63, 244, 164, 39, 64, 29, 36, 57, 64, 147, 145, 120, 180, 255, 255, 228, 206, 181, 19, 148, 63, 244, 164, 39, 64, 166, 190, 50, 64, 137, 150, 9, 179, 255, 255, 189, 210, 111, 103, 182, 63, 244, 164, 39, 64, 130, 160, 42, 64, 45, 155, 246, 177, 255, 255, 74, 214, 118, 249, 214, 63, 244, 164, 39, 64, 178, 221, 32, 64, 141, 159, 54, 177, 255, 255, 161, 217, 123, 121, 245, 63, 244, 164, 39, 64, 72, 142, 21, 64, 181, 163, 198, 176, 255, 255, 216, 220, 39, 206, 8, 64, 244, 164, 39, 64, 39, 206, 8, 64, 174, 167, 160, 176, 255, 255, 255, 223, 72, 142, 21, 64, 244, 164, 39, 64, 123, 121, 245, 63, 130, 171, 198, 176, 255, 255, 37, 227, 178, 221, 32, 64, 244, 164, 39, 64, 118, 249, 214, 63, 57, 175, 54, 177, 255, 255, 92, 230, 130, 160, 42, 64, 244, 164, 39, 64, 111, 103, 182, 63, 217, 178, 246, 177, 255, 255, 180, 233, 166, 190, 50, 64, 244, 164, 39, 64, 181, 19, 148, 63, 106, 182, 9, 179, 255, 255, 64, 237, 29, 36, 57, 64, 244, 164, 39, 64, 207, 165, 96, 63, 242, 185, 120, 180, 255, 255, 25, 241, 31, 193, 61, 64, 244, 164, 39, 64, 93, 250, 22, 63, 119, 189, 77, 182, 255, 255, 96, 245, 79, 138, 64, 64, 244, 164, 39, 64, 96, 181, 151, 62, 255, 192, 151, 184, 255, 255, 66, 250, 206, 120, 65, 64, 244, 164, 39, 64, 111, 105, 85, 37, 146, 196, 107, 187, 255, 255, 255, 255, 79, 138, 64, 64, 244, 164, 39, 64, 96, 181, 151, 190, 102, 199, 254, 190, 0, 0, 66, 250, 31, 193, 61, 64, 244, 164, 39, 64, 93, 250, 22, 191, 176, 201, 135, 194, 0, 0, 96, 245, 29, 36, 57, 64, 244, 164, 39, 64, 207, 165, 96, 191, 134, 203, 12, 198, 0, 0, 25, 241, 166, 190, 50, 64, 244, 164, 39, 64, 181, 19, 148, 191, 245, 204, 147, 201, 0, 0, 64, 237, 130, 160, 42, 64, 244, 164, 39, 64, 111, 103, 182, 191, 8, 206, 36, 205, 0, 0, 180, 233, 178, 221, 32, 64, 244, 164, 39, 64, 118, 249, 214, 191, 199, 206, 197, 208, 0, 0, 92, 230, 72, 142, 21, 64, 244, 164, 39, 64, 123, 121, 245, 191, 56, 207, 123, 212, 0, 0, 37, 227, 39, 206, 8, 64, 244, 164, 39, 64, 39, 206, 8, 192, 93, 207, 79, 216, 0, 0, 255, 223, 123, 121, 245, 63, 244, 164, 39, 64, 72, 142, 21, 192, 56, 207, 73, 220, 0, 0, 216, 220, 118, 249, 214, 63, 244, 164, 39, 64, 178, 221, 32, 192, 199, 206, 112, 224, 0, 0, 161, 217, 111, 103, 182, 63, 244, 164, 39, 64, 130, 160, 42, 192, 8, 206, 208, 228, 0, 0, 74, 214, 181, 19, 148, 63, 244, 164, 39, 64, 166, 190, 50, 192, 245, 204, 116, 233, 0, 0, 189, 210, 207, 165, 96, 63, 244, 164, 39, 64, 29, 36, 57, 192, 134, 203, 106, 238, 0, 0, 228, 206, 93, 250, 22, 63, 244, 164, 39, 64, 31, 193, 61, 192, 176, 201, 197, 243, 0, 0, 157, 202, 96, 181, 151, 62, 244, 164, 39, 64, 79, 138, 64, 192, 102, 199, 152, 249, 0, 0, 188, 197, 111, 105, 213, 37, 244, 164, 39, 64, 206, 120, 65, 192, 147, 196, 255, 255, 0, 0, 255, 191, 96, 181, 151, 190, 244, 164, 39, 64, 79, 138, 64, 192, 151, 56, 152, 249, 120, 11, 255, 191, 93, 250, 22, 191, 244, 164, 39, 64, 31, 193, 61, 192, 77, 54, 197, 243, 59, 21, 255, 191, 207, 165, 96, 191, 244, 164, 39, 64, 29, 36, 57, 192, 120, 52, 106, 238, 201, 29, 255, 191, 181, 19, 148, 191, 244, 164, 39, 64, 166, 190, 50, 192, 9, 51, 116, 233, 125, 37, 255, 191, 111, 103, 182, 191, 244, 164, 39, 64, 130, 160, 42, 192, 246, 49, 208, 228, 149, 44, 255, 191, 118, 249, 214, 191, 244, 164, 39, 64, 178, 221, 32, 192, 54, 49, 112, 224, 68, 51, 255, 191, 123, 121, 245, 191, 244, 164, 39, 64, 72, 142, 21, 192, 198, 48, 73, 220, 178, 57, 255, 191, 39, 206, 8, 192, 244, 164, 39, 64, 39, 206, 8, 192, 161, 48, 79, 216, 255, 63, 255, 191, 72, 142, 21, 192, 244, 164, 39, 64, 123, 121, 245, 191, 198, 48, 123, 212, 77, 70, 255, 191, 178, 221, 32, 192, 244, 164, 39, 64, 118, 249, 214, 191, 54, 49, 197, 208, 185, 76, 255, 191, 130, 160, 42, 192, 244, 164, 39, 64, 111, 103, 182, 191, 246, 49, 36, 205, 104, 83, 255, 191, 166, 190, 50, 192, 244, 164, 39, 64, 181, 19, 148, 191, 9, 51, 147, 201, 130, 90, 255, 191, 29, 36, 57, 192, 244, 164, 39, 64, 207, 165, 96, 191, 120, 52, 12, 198, 53, 98, 255, 191, 31, 193, 61, 192, 244, 164, 39, 64, 93, 250, 22, 191, 77, 54, 135, 194, 195, 106, 255, 191, 79, 138, 64, 192, 244, 164, 39, 64, 96, 181, 151, 190, 152, 56, 254, 190, 133, 116, 255, 191, 206, 120, 65, 192, 244, 164, 39, 64, 18, 15, 32, 166, 107, 59, 107, 187, 255, 127, 255, 191, 79, 138, 64, 192, 244, 164, 39, 64, 96, 181, 151, 62, 255, 62, 151, 184, 121, 139, 255, 191, 31, 193, 61, 192, 244, 164, 39, 64, 93, 250, 22, 63, 136, 66, 77, 182, 59, 149, 255, 191, 29, 36, 57, 192, 244, 164, 39, 64, 207, 165, 96, 63, 12, 70, 120, 180, 201, 157, 255, 191, 166, 190, 50, 192, 244, 164, 39, 64, 181, 19, 148, 63, 148, 73, 9, 179, 124, 165, 255, 191, 130, 160, 42, 192, 244, 164, 39, 64, 111, 103, 182, 63, 37, 77, 246, 177, 149, 172, 255, 191, 178, 221, 32, 192, 244, 164, 39, 64, 118, 249, 214, 63, 197, 80, 54, 177, 68, 179, 255, 191, 72, 142, 21, 192, 244, 164, 39, 64, 123, 121, 245, 63, 124, 84, 198, 176, 177, 185, 255, 191, 39, 206, 8, 192, 244, 164, 39, 64, 39, 206, 8, 64, 79, 88, 160, 176, 255, 191, 255, 191, 123, 121, 245, 191, 244, 164, 39, 64, 72, 142, 21, 64, 73, 92, 198, 176, 76, 198, 255, 191, 118, 249, 214, 191, 244, 164, 39, 64, 178, 221, 32, 64, 113, 96, 54, 177, 186, 204, 255, 191, 111, 103, 182, 191, 244, 164, 39, 64, 130, 160, 42, 64, 209, 100, 246, 177, 105, 211, 255, 191, 181, 19, 148, 191, 244, 164, 39, 64, 166, 190, 50, 64, 117, 105, 9, 179, 129, 218, 255, 191, 207, 165, 96, 191, 244, 164, 39, 64, 29, 36, 57, 64, 107, 110, 120, 180, 52, 226, 255, 191, 93, 250, 22, 191, 244, 164, 39, 64, 31, 193, 61, 64, 197, 115, 77, 182, 194, 234, 255, 191, 96, 181, 151, 190, 244, 164, 39, 64, 79, 138, 64, 64, 152, 121, 151, 184, 132, 244, 255, 191, 111, 105, 85, 166, 244, 164, 39, 64, 206, 120, 65, 64, 255, 127, 107, 187, 255, 255, 255, 191, 0, 0, 0, 0, 156, 126, 20, 64, 13, 136, 80, 64, 255, 127, 60, 181, 255, 255, 255, 191, 107, 132, 163, 62, 156, 126, 20, 64, 254, 134, 79, 64, 242, 134, 124, 178, 255, 255, 188, 197, 217, 186, 34, 63, 156, 126, 20, 64, 74, 134, 76, 64, 57, 141, 70, 176, 255, 255, 157, 202, 73, 34, 114, 63, 156, 126, 20, 64, 90, 141, 71, 64, 246, 146, 132, 174, 255, 255, 228, 206, 98, 154, 159, 63, 156, 126, 20, 64, 110, 168, 64, 64, 67, 152, 38, 173, 255, 255, 189, 210, 35, 154, 196, 63, 156, 126, 20, 64, 136, 232, 55, 64, 54, 157, 32, 172, 255, 255, 74, 214, 46, 181, 231, 63, 156, 126, 20, 64, 55, 99, 45, 64, 223, 161, 107, 171, 255, 255, 161, 217, 124, 74, 4, 64, 156, 126, 20, 64, 110, 50, 33, 64, 79, 166, 0, 171, 255, 255, 216, 220, 57, 116, 19, 64, 156, 126, 20, 64, 57, 116, 19, 64, 144, 170, 221, 170, 255, 255, 255, 223, 110, 50, 33, 64, 156, 126, 20, 64, 124, 74, 4, 64, 174, 174, 0, 171, 255, 255, 37, 227, 55, 99, 45, 64, 156, 126, 20, 64, 46, 181, 231, 63, 178, 178, 107, 171, 255, 255, 92, 230, 136, 232, 55, 64, 156, 126, 20, 64, 35, 154, 196, 63, 167, 182, 32, 172, 255, 255, 180, 233, 110, 168, 64, 64, 156, 126, 20, 64, 98, 154, 159, 63, 148, 186, 38, 173, 255, 255, 64, 237, 90, 141, 71, 64, 156, 126, 20, 64, 73, 34, 114, 63, 131, 190, 132, 174, 255, 255, 25, 241, 74, 134, 76, 64, 156, 126, 20, 64, 217, 186, 34, 63, 125, 194, 70, 176, 255, 255, 96, 245, 254, 134, 79, 64, 156, 126, 20, 64, 107, 132, 163, 62, 142, 198, 124, 178, 255, 255, 66, 250, 13, 136, 80, 64, 156, 126, 20, 64, 4, 6, 102, 37, 194, 202, 60, 181, 255, 255, 255, 255, 254, 134, 79, 64, 156, 126, 20, 64, 107, 132, 163, 190, 129, 205, 111, 185, 0, 0, 66, 250, 74, 134, 76, 64, 156, 126, 20, 64, 217, 186, 34, 191, 183, 207, 128, 189, 0, 0, 96, 245, 90, 141, 71, 64, 156, 126, 20, 64, 73, 34, 114, 191, 121, 209, 123, 193, 0, 0, 25, 241, 110, 168, 64, 64, 156, 126, 20, 64, 98, 154, 159, 191, 216, 210, 106, 197, 0, 0, 64, 237, 136, 232, 55, 64, 156, 126, 20, 64, 35, 154, 196, 191, 221, 211, 87, 201, 0, 0, 180, 233, 55, 99, 45, 64, 156, 126, 20, 64, 46, 181, 231, 191, 147, 212, 75, 205, 0, 0, 92, 230, 110, 50, 33, 64, 156, 126, 20, 64, 124, 74, 4, 192, 253, 212, 80, 209, 0, 0, 37, 227, 57, 116, 19, 64, 156, 126, 20, 64, 57, 116, 19, 192, 33, 213, 110, 213, 0, 0, 255, 223, 124, 74, 4, 64, 156, 126, 20, 64, 110, 50, 33, 192, 253, 212, 175, 217, 0, 0, 216, 220, 46, 181, 231, 63, 156, 126, 20, 64, 55, 99, 45, 192, 147, 212, 30, 222, 0, 0, 161, 217, 35, 154, 196, 63, 156, 126, 20, 64, 136, 232, 55, 192, 221, 211, 200, 226, 0, 0, 74, 214, 98, 154, 159, 63, 156, 126, 20, 64, 110, 168, 64, 192, 216, 210, 187, 231, 0, 0, 189, 210, 73, 34, 114, 63, 156, 126, 20, 64, 90, 141, 71, 192, 121, 209, 8, 237, 0, 0, 228, 206, 217, 186, 34, 63, 156, 126, 20, 64, 74, 134, 76, 192, 183, 207, 197, 242, 0, 0, 157, 202, 107, 132, 163, 62, 156, 126, 20, 64, 254, 134, 79, 192, 129, 205, 11, 249, 0, 0, 188, 197, 4, 6, 230, 37, 156, 126, 20, 64, 13, 136, 80, 192, 194, 202, 255, 255, 0, 0, 255, 191, 107, 132, 163, 190, 156, 126, 20, 64, 254, 134, 79, 192, 124, 50, 11, 249, 120, 11, 255, 191, 217, 186, 34, 191, 156, 126, 20, 64, 74, 134, 76, 192, 70, 48, 197, 242, 59, 21, 255, 191, 73, 34, 114, 191, 156, 126, 20, 64, 90, 141, 71, 192, 133, 46, 8, 237, 201, 29, 255, 191, 98, 154, 159, 191, 156, 126, 20, 64, 110, 168, 64, 192, 37, 45, 187, 231, 125, 37, 255, 191, 35, 154, 196, 191, 156, 126, 20, 64, 136, 232, 55, 192, 32, 44, 200, 226, 149, 44, 255, 191, 46, 181, 231, 191, 156, 126, 20, 64, 55, 99, 45, 192, 107, 43, 30, 222, 68, 51, 255, 191, 124, 74, 4, 192, 156, 126, 20, 64, 110, 50, 33, 192, 1, 43, 175, 217, 178, 57, 255, 191, 57, 116, 19, 192, 156, 126, 20, 64, 57, 116, 19, 192, 221, 42, 110, 213, 255, 63, 255, 191, 110, 50, 33, 192, 156, 126, 20, 64, 124, 74, 4, 192, 1, 43, 80, 209, 77, 70, 255, 191, 55, 99, 45, 192, 156, 126, 20, 64, 46, 181, 231, 191, 107, 43, 75, 205, 185, 76, 255, 191, 136, 232, 55, 192, 156, 126, 20, 64, 35, 154, 196, 191, 32, 44, 87, 201, 104, 83, 255, 191, 110, 168, 64, 192, 156, 126, 20, 64, 98, 154, 159, 191, 37, 45, 106, 197, 130, 90, 255, 191, 90, 141, 71, 192, 156, 126, 20, 64, 73, 34, 114, 191, 133, 46, 123, 193, 53, 98, 255, 191, 74, 134, 76, 192, 156, 126, 20, 64, 217, 186, 34, 191, 70, 48, 128, 189, 195, 106, 255, 191, 254, 134, 79, 192, 156, 126, 20, 64, 107, 132, 163, 190, 125, 50, 111, 185, 133, 116, 255, 191, 13, 136, 80, 192, 156, 126, 20, 64, 130, 132, 44, 166, 59, 53, 60, 181, 255, 127, 255, 191, 254, 134, 79, 192, 156, 126, 20, 64, 107, 132, 163, 62, 112, 57, 124, 178, 121, 139, 255, 191, 74, 134, 76, 192, 156, 126, 20, 64, 217, 186, 34, 63, 129, 61, 70, 176, 59, 149, 255, 191, 90, 141, 71, 192, 156, 126, 20, 64, 73, 34, 114, 63, 123, 65, 132, 174, 201, 157, 255, 191, 110, 168, 64, 192, 156, 126, 20, 64, 98, 154, 159, 63, 105, 69, 38, 173, 124, 165, 255, 191, 136, 232, 55, 192, 156, 126, 20, 64, 35, 154, 196, 63, 87, 73, 32, 172, 149, 172, 255, 191, 55, 99, 45, 192, 156, 126, 20, 64, 46, 181, 231, 63, 76, 77, 107, 171, 68, 179, 255, 191, 110, 50, 33, 192, 156, 126, 20, 64, 124, 74, 4, 64, 80, 81, 0, 171, 177, 185, 255, 191, 57, 116, 19, 192, 156, 126, 20, 64, 57, 116, 19, 64, 110, 85, 221, 170, 255, 191, 255, 191, 124, 74, 4, 192, 156, 126, 20, 64, 110, 50, 33, 64, 174, 89, 0, 171, 76, 198, 255, 191, 46, 181, 231, 191, 156, 126, 20, 64, 55, 99, 45, 64, 31, 94, 107, 171, 186, 204, 255, 191, 35, 154, 196, 191, 156, 126, 20, 64, 136, 232, 55, 64, 200, 98, 32, 172, 105, 211, 255, 191, 98, 154, 159, 191, 156, 126, 20, 64, 110, 168, 64, 64, 187, 103, 38, 173, 129, 218, 255, 191, 73, 34, 114, 191, 156, 126, 20, 64, 90, 141, 71, 64, 8, 109, 132, 174, 52, 226, 255, 191, 217, 186, 34, 191, 156, 126, 20, 64, 74, 134, 76, 64, 197, 114, 70, 176, 194, 234, 255, 191, 107, 132, 163, 190, 156, 126, 20, 64, 254, 134, 79, 64, 12, 121, 124, 178, 132, 244, 255, 191, 4, 6, 102, 166, 156, 126, 20, 64, 13, 136, 80, 64, 255, 127, 60, 181, 255, 255, 255, 191, 0, 0, 0, 0, 255, 255, 255, 63, 216, 179, 93, 64, 255, 127, 217, 174, 255, 255, 255, 191, 93, 216, 173, 62, 255, 255, 255, 63, 140, 162, 92, 64, 130, 135, 60, 172, 255, 255, 188, 197, 16, 2, 45, 63, 255, 255, 255, 63, 75, 113, 89, 64, 61, 142, 38, 170, 255, 255, 157, 202, 180, 182, 128, 63, 255, 255, 255, 63, 245, 39, 84, 64, 92, 148, 128, 168, 255, 255, 228, 206, 11, 175, 169, 63, 255, 255, 255, 63, 144, 211, 76, 64, 255, 153, 57, 167, 255, 255, 189, 210, 10, 5, 209, 63, 255, 255, 255, 63, 48, 134, 67, 64, 64, 159, 70, 166, 255, 255, 74, 214, 183, 87, 246, 63, 255, 255, 255, 63, 194, 86, 56, 64, 50, 164, 158, 165, 255, 255, 161, 217, 135, 165, 12, 64, 255, 255, 255, 63, 220, 96, 43, 64, 233, 168, 59, 165, 255, 255, 216, 220, 113, 196, 28, 64, 255, 255, 255, 63, 113, 196, 28, 64, 113, 173, 26, 165, 255, 255, 255, 223, 220, 96, 43, 64, 255, 255, 255, 63, 135, 165, 12, 64, 217, 177, 59, 165, 255, 255, 37, 227, 194, 86, 56, 64, 255, 255, 255, 63, 183, 87, 246, 63, 45, 182, 158, 165, 255, 255, 92, 230, 48, 134, 67, 64, 255, 255, 255, 63, 10, 5, 209, 63, 119, 186, 70, 166, 255, 255, 180, 233, 144, 211, 76, 64, 255, 255, 255, 63, 11, 175, 169, 63, 196, 190, 57, 167, 255, 255, 64, 237, 245, 39, 84, 64, 255, 255, 255, 63, 180, 182, 128, 63, 32, 195, 128, 168, 255, 255, 25, 241, 75, 113, 89, 64, 255, 255, 255, 63, 16, 2, 45, 63, 154, 199, 38, 170, 255, 255, 96, 245, 140, 162, 92, 64, 255, 255, 255, 63, 93, 216, 173, 62, 63, 204, 60, 172, 255, 255, 66, 250, 216, 179, 93, 64, 255, 255, 255, 63, 81, 141, 116, 37, 36, 209, 217, 174, 255, 255, 255, 255, 140, 162, 92, 64, 255, 255, 255, 63, 93, 216, 173, 190, 194, 211, 190, 179, 0, 0, 66, 250, 75, 113, 89, 64, 255, 255, 255, 63, 16, 2, 45, 191, 216, 213, 100, 184, 0, 0, 96, 245, 245, 39, 84, 64, 255, 255, 255, 63, 180, 182, 128, 191, 126, 215, 221, 188, 0, 0, 25, 241, 144, 211, 76, 64, 255, 255, 255, 63, 11, 175, 169, 191, 196, 216, 57, 193, 0, 0, 64, 237, 48, 134, 67, 64, 255, 255, 255, 63, 10, 5, 209, 191, 184, 217, 134, 197, 0, 0, 180, 233, 194, 86, 56, 64, 255, 255, 255, 63, 183, 87, 246, 191, 96, 218, 209, 201, 0, 0, 92, 230, 220, 96, 43, 64, 255, 255, 255, 63, 135, 165, 12, 192, 195, 218, 36, 206, 0, 0, 37, 227, 113, 196, 28, 64, 255, 255, 255, 63, 113, 196, 28, 192, 227, 218, 140, 210, 0, 0, 255, 223, 135, 165, 12, 64, 255, 255, 255, 63, 220, 96, 43, 192, 195, 218, 21, 215, 0, 0, 216, 220, 183, 87, 246, 63, 255, 255, 255, 63, 194, 86, 56, 192, 96, 218, 203, 219, 0, 0, 161, 217, 10, 5, 209, 63, 255, 255, 255, 63, 48, 134, 67, 192, 184, 217, 190, 224, 0, 0, 74, 214, 11, 175, 169, 63, 255, 255, 255, 63, 144, 211, 76, 192, 196, 216, 254, 229, 0, 0, 189, 210, 180, 182, 128, 63, 255, 255, 255, 63, 245, 39, 84, 192, 126, 215, 161, 235, 0, 0, 228, 206, 16, 2, 45, 63, 255, 255, 255, 63, 75, 113, 89, 192, 216, 213, 192, 241, 0, 0, 157, 202, 93, 216, 173, 62, 255, 255, 255, 63, 140, 162, 92, 192, 194, 211, 124, 248, 0, 0, 188, 197, 81, 141, 244, 37, 255, 255, 255, 63, 216, 179, 93, 192, 37, 209, 255, 255, 0, 0, 255, 191, 93, 216, 173, 190, 255, 255, 255, 63, 140, 162, 92, 192, 59, 44, 124, 248, 120, 11, 255, 191, 16, 2, 45, 191, 255, 255, 255, 63, 75, 113, 89, 192, 37, 42, 192, 241, 59, 21, 255, 191, 180, 182, 128, 191, 255, 255, 255, 63, 245, 39, 84, 192, 128, 40, 161, 235, 201, 29, 255, 191, 11, 175, 169, 191, 255, 255, 255, 63, 144, 211, 76, 192, 57, 39, 254, 229, 125, 37, 255, 191, 10, 5, 209, 191, 255, 255, 255, 63, 48, 134, 67, 192, 69, 38, 190, 224, 149, 44, 255, 191, 183, 87, 246, 191, 255, 255, 255, 63, 194, 86, 56, 192, 158, 37, 203, 219, 68, 51, 255, 191, 135, 165, 12, 192, 255, 255, 255, 63, 220, 96, 43, 192, 58, 37, 21, 215, 178, 57, 255, 191, 113, 196, 28, 192, 255, 255, 255, 63, 113, 196, 28, 192, 27, 37, 140, 210, 255, 63, 255, 191, 220, 96, 43, 192, 255, 255, 255, 63, 135, 165, 12, 192, 58, 37, 36, 206, 77, 70, 255, 191, 194, 86, 56, 192, 255, 255, 255, 63, 183, 87, 246, 191, 158, 37, 209, 201, 185, 76, 255, 191, 48, 134, 67, 192, 255, 255, 255, 63, 10, 5, 209, 191, 69, 38, 134, 197, 104, 83, 255, 191, 144, 211, 76, 192, 255, 255, 255, 63, 11, 175, 169, 191, 57, 39, 57, 193, 130, 90, 255, 191, 245, 39, 84, 192, 255, 255, 255, 63, 180, 182, 128, 191, 128, 40, 221, 188, 53, 98, 255, 191, 75, 113, 89, 192, 255, 255, 255, 63, 16, 2, 45, 191, 37, 42, 100, 184, 195, 106, 255, 191, 140, 162, 92, 192, 255, 255, 255, 63, 93, 216, 173, 190, 59, 44, 190, 179, 133, 116, 255, 191, 216, 179, 93, 192, 255, 255, 255, 63, 252, 105, 55, 166, 217, 46, 217, 174, 255, 127, 255, 191, 140, 162, 92, 192, 255, 255, 255, 63, 93, 216, 173, 62, 190, 51, 60, 172, 121, 139, 255, 191, 75, 113, 89, 192, 255, 255, 255, 63, 16, 2, 45, 63, 100, 56, 38, 170, 59, 149, 255, 191, 245, 39, 84, 192, 255, 255, 255, 63, 180, 182, 128, 63, 221, 60, 128, 168, 201, 157, 255, 191, 144, 211, 76, 192, 255, 255, 255, 63, 11, 175, 169, 63, 58, 65, 57, 167, 124, 165, 255, 191, 48, 134, 67, 192, 255, 255, 255, 63, 10, 5, 209, 63, 135, 69, 70, 166, 149, 172, 255, 191, 194, 86, 56, 192, 255, 255, 255, 63, 183, 87, 246, 63, 209, 73, 158, 165, 68, 179, 255, 191, 220, 96, 43, 192, 255, 255, 255, 63, 135, 165, 12, 64, 37, 78, 59, 165, 177, 185, 255, 191, 113, 196, 28, 192, 255, 255, 255, 63, 113, 196, 28, 64, 141, 82, 26, 165, 255, 191, 255, 191, 135, 165, 12, 192, 255, 255, 255, 63, 220, 96, 43, 64, 21, 87, 59, 165, 76, 198, 255, 191, 183, 87, 246, 191, 255, 255, 255, 63, 194, 86, 56, 64, 204, 91, 158, 165, 186, 204, 255, 191, 10, 5, 209, 191, 255, 255, 255, 63, 48, 134, 67, 64, 190, 96, 70, 166, 105, 211, 255, 191, 11, 175, 169, 191, 255, 255, 255, 63, 144, 211, 76, 64, 255, 101, 57, 167, 129, 218, 255, 191, 180, 182, 128, 191, 255, 255, 255, 63, 245, 39, 84, 64, 162, 107, 128, 168, 52, 226, 255, 191, 16, 2, 45, 191, 255, 255, 255, 63, 75, 113, 89, 64, 193, 113, 38, 170, 194, 234, 255, 191, 93, 216, 173, 190, 255, 255, 255, 63, 140, 162, 92, 64, 124, 120, 60, 172, 132, 244, 255, 191, 81, 141, 116, 166, 255, 255, 255, 63, 216, 179, 93, 64, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 70, 177, 212, 63, 165, 221, 104, 64, 255, 127, 32, 168, 255, 255, 255, 191, 70, 153, 182, 62, 70, 177, 212, 63, 151, 190, 103, 64, 23, 136, 182, 165, 255, 255, 188, 197, 46, 184, 53, 63, 70, 177, 212, 63, 47, 100, 100, 64, 75, 143, 205, 163, 255, 255, 157, 202, 218, 49, 135, 63, 70, 177, 212, 63, 180, 214, 94, 64, 205, 149, 77, 162, 255, 255, 228, 206, 79, 58, 178, 63, 70, 177, 212, 63, 211, 35, 87, 64, 199, 155, 38, 161, 255, 255, 189, 210, 91, 139, 219, 63, 70, 177, 212, 63, 139, 94, 77, 64, 85, 161, 75, 160, 255, 255, 74, 214, 145, 95, 1, 64, 70, 177, 212, 63, 239, 158, 65, 64, 145, 166, 179, 159, 255, 255, 161, 217, 127, 186, 19, 64, 70, 177, 212, 63, 248, 1, 52, 64, 143, 171, 91, 159, 255, 255, 216, 220, 54, 169, 36, 64, 70, 177, 212, 63, 54, 169, 36, 64, 95, 176, 62, 159, 255, 255, 255, 223, 248, 1, 52, 64, 70, 177, 212, 63, 127, 186, 19, 64, 19, 181, 91, 159, 255, 255, 37, 227, 239, 158, 65, 64, 70, 177, 212, 63, 145, 95, 1, 64, 184, 185, 179, 159, 255, 255, 92, 230, 139, 94, 77, 64, 70, 177, 212, 63, 91, 139, 219, 63, 93, 190, 75, 160, 255, 255, 180, 233, 211, 35, 87, 64, 70, 177, 212, 63, 79, 58, 178, 63, 15, 195, 38, 161, 255, 255, 64, 237, 180, 214, 94, 64, 70, 177, 212, 63, 218, 49, 135, 63, 226, 199, 77, 162, 255, 255, 25, 241, 47, 100, 100, 64, 70, 177, 212, 63, 46, 184, 53, 63, 229, 204, 205, 163, 255, 255, 96, 245, 151, 190, 103, 64, 70, 177, 212, 63, 70, 153, 182, 62, 47, 210, 182, 165, 255, 255, 66, 250, 165, 221, 104, 64, 70, 177, 212, 63, 212, 110, 128, 37, 222, 215, 32, 168, 255, 255, 255, 255, 151, 190, 103, 64, 70, 177, 212, 63, 70, 153, 182, 190, 71, 218, 206, 173, 0, 0, 66, 250, 47, 100, 100, 64, 70, 177, 212, 63, 46, 184, 53, 191, 48, 220, 25, 179, 0, 0, 96, 245, 180, 214, 94, 64, 70, 177, 212, 63, 218, 49, 135, 191, 176, 221, 28, 184, 0, 0, 25, 241, 211, 35, 87, 64, 70, 177, 212, 63, 79, 58, 178, 191, 216, 222, 237, 188, 0, 0, 64, 237, 139, 94, 77, 64, 70, 177, 212, 63, 91, 139, 219, 191, 179, 223, 161, 193, 0, 0, 180, 233, 239, 158, 65, 64, 70, 177, 212, 63, 145, 95, 1, 192, 74, 224, 69, 198, 0, 0, 92, 230, 248, 1, 52, 64, 70, 177, 212, 63, 127, 186, 19, 192, 163, 224, 234, 202, 0, 0, 37, 227, 54, 169, 36, 64, 70, 177, 212, 63, 54, 169, 36, 192, 192, 224, 158, 207, 0, 0, 255, 223, 127, 186, 19, 64, 70, 177, 212, 63, 248, 1, 52, 192, 163, 224, 111, 212, 0, 0, 216, 220, 145, 95, 1, 64, 70, 177, 212, 63, 239, 158, 65, 192, 74, 224, 109, 217, 0, 0, 161, 217, 91, 139, 219, 63, 70, 177, 212, 63, 139, 94, 77, 192, 179, 223, 169, 222, 0, 0, 74, 214, 79, 58, 178, 63, 70, 177, 212, 63, 211, 35, 87, 192, 216, 222, 55, 228, 0, 0, 189, 210, 218, 49, 135, 63, 70, 177, 212, 63, 180, 214, 94, 192, 176, 221, 48, 234, 0, 0, 228, 206, 46, 184, 53, 63, 70, 177, 212, 63, 47, 100, 100, 192, 48, 220, 179, 240, 0, 0, 157, 202, 70, 153, 182, 62, 70, 177, 212, 63, 151, 190, 103, 192, 71, 218, 230, 247, 0, 0, 188, 197, 212, 110, 0, 38, 70, 177, 212, 63, 165, 221, 104, 192, 222, 215, 255, 255, 0, 0, 255, 191, 70, 153, 182, 190, 70, 177, 212, 63, 151, 190, 103, 192, 183, 37, 230, 247, 120, 11, 255, 191, 46, 184, 53, 191, 70, 177, 212, 63, 47, 100, 100, 192, 206, 35, 179, 240, 59, 21, 255, 191, 218, 49, 135, 191, 70, 177, 212, 63, 180, 214, 94, 192, 77, 34, 48, 234, 201, 29, 255, 191, 79, 58, 178, 191, 70, 177, 212, 63, 211, 35, 87, 192, 37, 33, 55, 228, 125, 37, 255, 191, 91, 139, 219, 191, 70, 177, 212, 63, 139, 94, 77, 192, 74, 32, 169, 222, 149, 44, 255, 191, 145, 95, 1, 192, 70, 177, 212, 63, 239, 158, 65, 192, 180, 31, 109, 217, 68, 51, 255, 191, 127, 186, 19, 192, 70, 177, 212, 63, 248, 1, 52, 192, 91, 31, 111, 212, 178, 57, 255, 191, 54, 169, 36, 192, 70, 177, 212, 63, 54, 169, 36, 192, 61, 31, 158, 207, 255, 63, 255, 191, 248, 1, 52, 192, 70, 177, 212, 63, 127, 186, 19, 192, 91, 31, 234, 202, 77, 70, 255, 191, 239, 158, 65, 192, 70, 177, 212, 63, 145, 95, 1, 192, 180, 31, 69, 198, 185, 76, 255, 191, 139, 94, 77, 192, 70, 177, 212, 63, 91, 139, 219, 191, 74, 32, 161, 193, 104, 83, 255, 191, 211, 35, 87, 192, 70, 177, 212, 63, 79, 58, 178, 191, 37, 33, 237, 188, 130, 90, 255, 191, 180, 214, 94, 192, 70, 177, 212, 63, 218, 49, 135, 191, 77, 34, 28, 184, 53, 98, 255, 191, 47, 100, 100, 192, 70, 177, 212, 63, 46, 184, 53, 191, 206, 35, 25, 179, 195, 106, 255, 191, 151, 190, 103, 192, 70, 177, 212, 63, 70, 153, 182, 190, 183, 37, 206, 173, 133, 116, 255, 191, 165, 221, 104, 192, 70, 177, 212, 63, 61, 166, 64, 166, 31, 40, 32, 168, 255, 127, 255, 191, 151, 190, 103, 192, 70, 177, 212, 63, 70, 153, 182, 62, 206, 45, 182, 165, 121, 139, 255, 191, 47, 100, 100, 192, 70, 177, 212, 63, 46, 184, 53, 63, 25, 51, 205, 163, 59, 149, 255, 191, 180, 214, 94, 192, 70, 177, 212, 63, 218, 49, 135, 63, 28, 56, 77, 162, 201, 157, 255, 191, 211, 35, 87, 192, 70, 177, 212, 63, 79, 58, 178, 63, 238, 60, 38, 161, 124, 165, 255, 191, 139, 94, 77, 192, 70, 177, 212, 63, 91, 139, 219, 63, 160, 65, 75, 160, 149, 172, 255, 191, 239, 158, 65, 192, 70, 177, 212, 63, 145, 95, 1, 64, 70, 70, 179, 159, 68, 179, 255, 191, 248, 1, 52, 192, 70, 177, 212, 63, 127, 186, 19, 64, 235, 74, 91, 159, 177, 185, 255, 191, 54, 169, 36, 192, 70, 177, 212, 63, 54, 169, 36, 64, 159, 79, 62, 159, 255, 191, 255, 191, 127, 186, 19, 192, 70, 177, 212, 63, 248, 1, 52, 64, 111, 84, 91, 159, 76, 198, 255, 191, 145, 95, 1, 192, 70, 177, 212, 63, 239, 158, 65, 64, 109, 89, 179, 159, 186, 204, 255, 191, 91, 139, 219, 191, 70, 177, 212, 63, 139, 94, 77, 64, 169, 94, 75, 160, 105, 211, 255, 191, 79, 58, 178, 191, 70, 177, 212, 63, 211, 35, 87, 64, 55, 100, 38, 161, 129, 218, 255, 191, 218, 49, 135, 191, 70, 177, 212, 63, 180, 214, 94, 64, 49, 106, 77, 162, 52, 226, 255, 191, 46, 184, 53, 191, 70, 177, 212, 63, 47, 100, 100, 64, 179, 112, 205, 163, 194, 234, 255, 191, 70, 153, 182, 190, 70, 177, 212, 63, 151, 190, 103, 64, 231, 119, 182, 165, 132, 244, 255, 191, 212, 110, 128, 166, 70, 177, 212, 63, 165, 221, 104, 64, 255, 127, 32, 168, 255, 255, 255, 191, 0, 0, 0, 0, 115, 117, 167, 63, 147, 235, 113, 64, 255, 127, 232, 160, 255, 255, 255, 191, 217, 178, 189, 62, 115, 117, 167, 63, 91, 193, 112, 64, 182, 136, 198, 158, 255, 255, 188, 197, 1, 201, 60, 63, 115, 117, 167, 63, 147, 69, 109, 64, 103, 144, 26, 157, 255, 255, 157, 202, 147, 115, 140, 63, 115, 117, 167, 63, 211, 128, 103, 64, 81, 151, 205, 155, 255, 255, 228, 206, 96, 40, 185, 63, 115, 117, 167, 63, 80, 129, 95, 64, 162, 157, 205, 154, 255, 255, 189, 210, 175, 20, 228, 63, 115, 117, 167, 63, 198, 90, 85, 64, 128, 163, 16, 154, 255, 255, 74, 214, 87, 103, 6, 64, 115, 117, 167, 63, 57, 38, 73, 64, 7, 169, 143, 153, 255, 255, 161, 217, 249, 120, 25, 64, 115, 117, 167, 63, 193, 1, 59, 64, 78, 174, 67, 153, 255, 255, 216, 220, 60, 16, 43, 64, 115, 117, 167, 63, 60, 16, 43, 64, 105, 179, 42, 153, 255, 255, 255, 223, 193, 1, 59, 64, 115, 117, 167, 63, 249, 120, 25, 64, 108, 184, 67, 153, 255, 255, 37, 227, 57, 38, 73, 64, 115, 117, 167, 63, 87, 103, 6, 64, 103, 189, 143, 153, 255, 255, 92, 230, 198, 90, 85, 64, 115, 117, 167, 63, 175, 20, 228, 63, 108, 194, 16, 154, 255, 255, 180, 233, 80, 129, 95, 64, 115, 117, 167, 63, 96, 40, 185, 63, 141, 199, 205, 154, 255, 255, 64, 237, 211, 128, 103, 64, 115, 117, 167, 63, 147, 115, 140, 63, 222, 204, 205, 155, 255, 255, 25, 241, 147, 69, 109, 64, 115, 117, 167, 63, 1, 201, 60, 63, 123, 210, 26, 157, 255, 255, 96, 245, 91, 193, 112, 64, 115, 117, 167, 63, 217, 178, 189, 62, 128, 216, 198, 158, 255, 255, 66, 250, 147, 235, 113, 64, 115, 117, 167, 63, 61, 109, 133, 37, 21, 223, 232, 160, 255, 255, 255, 255, 91, 193, 112, 64, 115, 117, 167, 63, 217, 178, 189, 190, 55, 225, 125, 167, 0, 0, 66, 250, 147, 69, 109, 64, 115, 117, 167, 63, 1, 201, 60, 191, 227, 226, 131, 173, 0, 0, 96, 245, 211, 128, 103, 64, 115, 117, 167, 63, 147, 115, 140, 191, 49, 228, 30, 179, 0, 0, 25, 241, 80, 129, 95, 64, 115, 117, 167, 63, 96, 40, 185, 191, 48, 229, 113, 184, 0, 0, 64, 237, 198, 90, 85, 64, 115, 117, 167, 63, 175, 20, 228, 191, 237, 229, 146, 189, 0, 0, 180, 233, 57, 38, 73, 64, 115, 117, 167, 63, 87, 103, 6, 192, 111, 230, 150, 194, 0, 0, 92, 230, 193, 1, 59, 64, 115, 117, 167, 63, 249, 120, 25, 192, 187, 230, 145, 199, 0, 0, 37, 227, 60, 16, 43, 64, 115, 117, 167, 63, 60, 16, 43, 192, 212, 230, 148, 204, 0, 0, 255, 223, 249, 120, 25, 64, 115, 117, 167, 63, 193, 1, 59, 192, 187, 230, 176, 209, 0, 0, 216, 220, 87, 103, 6, 64, 115, 117, 167, 63, 57, 38, 73, 192, 111, 230, 247, 214, 0, 0, 161, 217, 175, 20, 228, 63, 115, 117, 167, 63, 198, 90, 85, 192, 237, 229, 125, 220, 0, 0, 74, 214, 96, 40, 185, 63, 115, 117, 167, 63, 80, 129, 95, 192, 48, 229, 91, 226, 0, 0, 189, 210, 147, 115, 140, 63, 115, 117, 167, 63, 211, 128, 103, 192, 49, 228, 173, 232, 0, 0, 228, 206, 1, 201, 60, 63, 115, 117, 167, 63, 147, 69, 109, 192, 227, 226, 150, 239, 0, 0, 157, 202, 217, 178, 189, 62, 115, 117, 167, 63, 91, 193, 112, 192, 55, 225, 71, 247, 0, 0, 188, 197, 61, 109, 5, 38, 115, 117, 167, 63, 147, 235, 113, 192, 21, 223, 255, 255, 0, 0, 255, 191, 217, 178, 189, 190, 115, 117, 167, 63, 91, 193, 112, 192, 199, 30, 71, 247, 120, 11, 255, 191, 1, 201, 60, 191, 115, 117, 167, 63, 147, 69, 109, 192, 26, 29, 150, 239, 59, 21, 255, 191, 147, 115, 140, 191, 115, 117, 167, 63, 211, 128, 103, 192, 205, 27, 173, 232, 201, 29, 255, 191, 96, 40, 185, 191, 115, 117, 167, 63, 80, 129, 95, 192, 206, 26, 91, 226, 125, 37, 255, 191, 175, 20, 228, 191, 115, 117, 167, 63, 198, 90, 85, 192, 16, 26, 125, 220, 149, 44, 255, 191, 87, 103, 6, 192, 115, 117, 167, 63, 57, 38, 73, 192, 143, 25, 247, 214, 68, 51, 255, 191, 249, 120, 25, 192, 115, 117, 167, 63, 193, 1, 59, 192, 66, 25, 176, 209, 178, 57, 255, 191, 60, 16, 43, 192, 115, 117, 167, 63, 60, 16, 43, 192, 41, 25, 148, 204, 255, 63, 255, 191, 193, 1, 59, 192, 115, 117, 167, 63, 249, 120, 25, 192, 66, 25, 145, 199, 77, 70, 255, 191, 57, 38, 73, 192, 115, 117, 167, 63, 87, 103, 6, 192, 143, 25, 150, 194, 185, 76, 255, 191, 198, 90, 85, 192, 115, 117, 167, 63, 175, 20, 228, 191, 16, 26, 146, 189, 104, 83, 255, 191, 80, 129, 95, 192, 115, 117, 167, 63, 96, 40, 185, 191, 206, 26, 113, 184, 130, 90, 255, 191, 211, 128, 103, 192, 115, 117, 167, 63, 147, 115, 140, 191, 205, 27, 31, 179, 53, 98, 255, 191, 147, 69, 109, 192, 115, 117, 167, 63, 1, 201, 60, 191, 26, 29, 131, 173, 195, 106, 255, 191, 91, 193, 112, 192, 115, 117, 167, 63, 217, 178, 189, 190, 199, 30, 126, 167, 133, 116, 255, 191, 147, 235, 113, 192, 115, 117, 167, 63, 219, 35, 72, 166, 233, 32, 232, 160, 255, 127, 255, 191, 91, 193, 112, 192, 115, 117, 167, 63, 217, 178, 189, 62, 126, 39, 198, 158, 121, 139, 255, 191, 147, 69, 109, 192, 115, 117, 167, 63, 1, 201, 60, 63, 131, 45, 26, 157, 59, 149, 255, 191, 211, 128, 103, 192, 115, 117, 167, 63, 147, 115, 140, 63, 31, 51, 205, 155, 201, 157, 255, 191, 80, 129, 95, 192, 115, 117, 167, 63, 96, 40, 185, 63, 113, 56, 205, 154, 124, 165, 255, 191, 198, 90, 85, 192, 115, 117, 167, 63, 175, 20, 228, 63, 146, 61, 16, 154, 149, 172, 255, 191, 57, 38, 73, 192, 115, 117, 167, 63, 87, 103, 6, 64, 150, 66, 143, 153, 68, 179, 255, 191, 193, 1, 59, 192, 115, 117, 167, 63, 249, 120, 25, 64, 146, 71, 67, 153, 177, 185, 255, 191, 60, 16, 43, 192, 115, 117, 167, 63, 60, 16, 43, 64, 149, 76, 42, 153, 255, 191, 255, 191, 249, 120, 25, 192, 115, 117, 167, 63, 193, 1, 59, 64, 175, 81, 67, 153, 76, 198, 255, 191, 87, 103, 6, 192, 115, 117, 167, 63, 57, 38, 73, 64, 247, 86, 143, 153, 186, 204, 255, 191, 175, 20, 228, 191, 115, 117, 167, 63, 198, 90, 85, 64, 126, 92, 16, 154, 105, 211, 255, 191, 96, 40, 185, 191, 115, 117, 167, 63, 80, 129, 95, 64, 92, 98, 205, 154, 129, 218, 255, 191, 147, 115, 140, 191, 115, 117, 167, 63, 211, 128, 103, 64, 173, 104, 205, 155, 52, 226, 255, 191, 1, 201, 60, 191, 115, 117, 167, 63, 147, 69, 109, 64, 151, 111, 26, 157, 194, 234, 255, 191, 217, 178, 189, 190, 115, 117, 167, 63, 91, 193, 112, 64, 72, 119, 198, 158, 132, 244, 255, 191, 61, 109, 133, 166, 115, 117, 167, 63, 147, 235, 113, 64, 255, 127, 232, 160, 255, 255, 255, 191, 0, 0, 0, 0, 200, 106, 113, 63, 165, 200, 120, 64, 255, 127, 252, 152, 255, 255, 255, 191, 162, 20, 195, 62, 200, 106, 113, 63, 247, 149, 119, 64, 99, 137, 62, 151, 255, 255, 188, 197, 39, 36, 66, 63, 200, 106, 113, 63, 226, 0, 116, 64, 154, 145, 227, 149, 255, 255, 157, 202, 172, 111, 144, 63, 200, 106, 113, 63, 60, 18, 110, 64, 240, 152, 215, 148, 255, 255, 228, 206, 45, 105, 190, 63, 200, 106, 113, 63, 162, 216, 101, 64, 157, 159, 10, 148, 255, 255, 189, 210, 61, 141, 234, 63, 200, 106, 113, 63, 95, 104, 91, 64, 206, 165, 116, 147, 255, 255, 74, 214, 132, 55, 10, 64, 200, 106, 113, 63, 44, 219, 78, 64, 162, 171, 13, 147, 255, 255, 161, 217, 166, 211, 29, 64, 200, 106, 113, 63, 253, 79, 64, 64, 53, 177, 209, 146, 255, 255, 216, 220, 172, 234, 47, 64, 200, 106, 113, 63, 172, 234, 47, 64, 160, 182, 189, 146, 255, 255, 255, 223, 253, 79, 64, 64, 200, 106, 113, 63, 166, 211, 29, 64, 246, 187, 209, 146, 255, 255, 37, 227, 44, 219, 78, 64, 200, 106, 113, 63, 132, 55, 10, 64, 78, 193, 13, 147, 255, 255, 92, 230, 95, 104, 91, 64, 200, 106, 113, 63, 61, 141, 234, 63, 187, 198, 116, 147, 255, 255, 180, 233, 162, 216, 101, 64, 200, 106, 113, 63, 45, 105, 190, 63, 85, 204, 10, 148, 255, 255, 64, 237, 60, 18, 110, 64, 200, 106, 113, 63, 172, 111, 144, 63, 54, 210, 215, 148, 255, 255, 25, 241, 226, 0, 116, 64, 200, 106, 113, 63, 39, 36, 66, 63, 128, 216, 227, 149, 255, 255, 96, 245, 247, 149, 119, 64, 200, 106, 113, 63, 162, 20, 195, 62, 91, 223, 62, 151, 255, 255, 66, 250, 165, 200, 120, 64, 200, 106, 113, 63, 82, 54, 137, 37, 0, 231, 252, 152, 255, 255, 255, 255, 247, 149, 119, 64, 200, 106, 113, 63, 162, 20, 195, 190, 192, 232, 162, 160, 0, 0, 66, 250, 226, 0, 116, 64, 200, 106, 113, 63, 39, 36, 66, 191, 26, 234, 126, 167, 0, 0, 96, 245, 60, 18, 110, 64, 200, 106, 113, 63, 172, 111, 144, 191, 39, 235, 199, 173, 0, 0, 25, 241, 162, 216, 101, 64, 200, 106, 113, 63, 45, 105, 190, 191, 243, 235, 169, 179, 0, 0, 64, 237, 95, 104, 91, 64, 200, 106, 113, 63, 61, 141, 234, 191, 137, 236, 67, 185, 0, 0, 180, 233, 44, 219, 78, 64, 200, 106, 113, 63, 132, 55, 10, 192, 241, 236, 176, 190, 0, 0, 92, 230, 253, 79, 64, 64, 200, 106, 113, 63, 166, 211, 29, 192, 45, 237, 7, 196, 0, 0, 37, 227, 172, 234, 47, 64, 200, 106, 113, 63, 172, 234, 47, 192, 65, 237, 94, 201, 0, 0, 255, 223, 166, 211, 29, 64, 200, 106, 113, 63, 253, 79, 64, 192, 45, 237, 200, 206, 0, 0, 216, 220, 132, 55, 10, 64, 200, 106, 113, 63, 44, 219, 78, 192, 241, 236, 92, 212, 0, 0, 161, 217, 61, 141, 234, 63, 200, 106, 113, 63, 95, 104, 91, 192, 137, 236, 48, 218, 0, 0, 74, 214, 45, 105, 190, 63, 200, 106, 113, 63, 162, 216, 101, 192, 243, 235, 96, 224, 0, 0, 189, 210, 172, 111, 144, 63, 200, 106, 113, 63, 60, 18, 110, 192, 39, 235, 14, 231, 0, 0, 228, 206, 39, 36, 66, 63, 200, 106, 113, 63, 226, 0, 116, 192, 26, 234, 100, 238, 0, 0, 157, 202, 162, 20, 195, 62, 200, 106, 113, 63, 247, 149, 119, 192, 192, 232, 154, 246, 0, 0, 188, 197, 82, 54, 9, 38, 200, 106, 113, 63, 165, 200, 120, 192, 1, 231, 255, 255, 0, 0, 255, 191, 162, 20, 195, 190, 200, 106, 113, 63, 247, 149, 119, 192, 61, 23, 154, 246, 120, 11, 255, 191, 39, 36, 66, 191, 200, 106, 113, 63, 226, 0, 116, 192, 228, 21, 100, 238, 59, 21, 255, 191, 172, 111, 144, 191, 200, 106, 113, 63, 60, 18, 110, 192, 215, 20, 14, 231, 201, 29, 255, 191, 45, 105, 190, 191, 200, 106, 113, 63, 162, 216, 101, 192, 11, 20, 96, 224, 125, 37, 255, 191, 61, 141, 234, 191, 200, 106, 113, 63, 95, 104, 91, 192, 117, 19, 48, 218, 149, 44, 255, 191, 132, 55, 10, 192, 200, 106, 113, 63, 44, 219, 78, 192, 13, 19, 92, 212, 68, 51, 255, 191, 166, 211, 29, 192, 200, 106, 113, 63, 253, 79, 64, 192, 209, 18, 200, 206, 178, 57, 255, 191, 172, 234, 47, 192, 200, 106, 113, 63, 172, 234, 47, 192, 189, 18, 94, 201, 255, 63, 255, 191, 253, 79, 64, 192, 200, 106, 113, 63, 166, 211, 29, 192, 209, 18, 7, 196, 77, 70, 255, 191, 44, 219, 78, 192, 200, 106, 113, 63, 132, 55, 10, 192, 13, 19, 176, 190, 185, 76, 255, 191, 95, 104, 91, 192, 200, 106, 113, 63, 61, 141, 234, 191, 117, 19, 67, 185, 104, 83, 255, 191, 162, 216, 101, 192, 200, 106, 113, 63, 45, 105, 190, 191, 11, 20, 169, 179, 130, 90, 255, 191, 60, 18, 110, 192, 200, 106, 113, 63, 172, 111, 144, 191, 215, 20, 199, 173, 53, 98, 255, 191, 226, 0, 116, 192, 200, 106, 113, 63, 39, 36, 66, 191, 228, 21, 126, 167, 195, 106, 255, 191, 247, 149, 119, 192, 200, 106, 113, 63, 162, 20, 195, 190, 61, 23, 161, 160, 133, 116, 255, 191, 165, 200, 120, 192, 200, 106, 113, 63, 122, 209, 77, 166, 253, 24, 252, 152, 255, 127, 255, 191, 247, 149, 119, 192, 200, 106, 113, 63, 162, 20, 195, 62, 163, 32, 62, 151, 121, 139, 255, 191, 226, 0, 116, 192, 200, 106, 113, 63, 39, 36, 66, 63, 126, 39, 227, 149, 59, 149, 255, 191, 60, 18, 110, 192, 200, 106, 113, 63, 172, 111, 144, 63, 200, 45, 215, 148, 201, 157, 255, 191, 162, 216, 101, 192, 200, 106, 113, 63, 45, 105, 190, 63, 169, 51, 10, 148, 124, 165, 255, 191, 95, 104, 91, 192, 200, 106, 113, 63, 61, 141, 234, 63, 66, 57, 116, 147, 149, 172, 255, 191, 44, 219, 78, 192, 200, 106, 113, 63, 132, 55, 10, 64, 176, 62, 13, 147, 68, 179, 255, 191, 253, 79, 64, 192, 200, 106, 113, 63, 166, 211, 29, 64, 8, 68, 209, 146, 177, 185, 255, 191, 172, 234, 47, 192, 200, 106, 113, 63, 172, 234, 47, 64, 94, 73, 189, 146, 255, 191, 255, 191, 166, 211, 29, 192, 200, 106, 113, 63, 253, 79, 64, 64, 201, 78, 209, 146, 76, 198, 255, 191, 132, 55, 10, 192, 200, 106, 113, 63, 44, 219, 78, 64, 92, 84, 13, 147, 186, 204, 255, 191, 61, 141, 234, 191, 200, 106, 113, 63, 95, 104, 91, 64, 48, 90, 116, 147, 105, 211, 255, 191, 45, 105, 190, 191, 200, 106, 113, 63, 162, 216, 101, 64, 97, 96, 10, 148, 129, 218, 255, 191, 172, 111, 144, 191, 200, 106, 113, 63, 60, 18, 110, 64, 14, 103, 215, 148, 52, 226, 255, 191, 39, 36, 66, 191, 200, 106, 113, 63, 226, 0, 116, 64, 100, 110, 227, 149, 194, 234, 255, 191, 162, 20, 195, 190, 200, 106, 113, 63, 247, 149, 119, 64, 155, 118, 62, 151, 132, 244, 255, 191, 82, 54, 137, 166, 200, 106, 113, 63, 165, 200, 120, 64, 255, 127, 252, 152, 255, 255, 255, 191, 0, 0, 0, 0, 248, 186, 17, 63, 240, 100, 125, 64, 255, 127, 22, 144, 255, 255, 255, 191, 36, 178, 198, 62, 248, 186, 17, 63, 147, 44, 124, 64, 35, 138, 224, 142, 255, 255, 188, 197, 53, 189, 69, 63, 248, 186, 17, 63, 127, 134, 120, 64, 235, 146, 241, 141, 255, 255, 157, 202, 234, 28, 147, 63, 248, 186, 17, 63, 180, 123, 114, 64, 181, 154, 58, 141, 255, 255, 228, 206, 137, 240, 193, 63, 248, 186, 17, 63, 21, 27, 106, 64, 197, 161, 175, 140, 255, 255, 189, 210, 3, 230, 238, 63, 248, 186, 17, 63, 76, 121, 95, 64, 77, 168, 74, 140, 255, 255, 74, 214, 64, 199, 12, 64, 248, 186, 17, 63, 141, 176, 82, 64, 115, 174, 5, 140, 255, 255, 161, 217, 107, 192, 32, 64, 248, 186, 17, 63, 94, 224, 67, 64, 88, 180, 220, 139, 255, 255, 216, 220, 68, 45, 51, 64, 248, 186, 17, 63, 68, 45, 51, 64, 23, 186, 207, 139, 255, 255, 255, 223, 94, 224, 67, 64, 248, 186, 17, 63, 107, 192, 32, 64, 200, 191, 220, 139, 255, 255, 37, 227, 141, 176, 82, 64, 248, 186, 17, 63, 64, 199, 12, 64, 133, 197, 5, 140, 255, 255, 92, 230, 76, 121, 95, 64, 248, 186, 17, 63, 3, 230, 238, 63, 102, 203, 74, 140, 255, 255, 180, 233, 21, 27, 106, 64, 248, 186, 17, 63, 137, 240, 193, 63, 136, 209, 175, 140, 255, 255, 64, 237, 180, 123, 114, 64, 248, 186, 17, 63, 234, 28, 147, 63, 13, 216, 58, 141, 255, 255, 25, 241, 127, 134, 120, 64, 248, 186, 17, 63, 53, 189, 69, 63, 31, 223, 241, 141, 255, 255, 96, 245, 147, 44, 124, 64, 248, 186, 17, 63, 36, 178, 198, 62, 249, 230, 224, 142, 255, 255, 66, 250, 240, 100, 125, 64, 248, 186, 17, 63, 74, 193, 139, 37, 231, 239, 22, 144, 255, 255, 255, 255, 147, 44, 124, 64, 248, 186, 17, 63, 36, 178, 198, 190, 30, 241, 4, 153, 0, 0, 66, 250, 127, 134, 120, 64, 248, 186, 17, 63, 53, 189, 69, 191, 12, 242, 221, 160, 0, 0, 96, 245, 180, 123, 114, 64, 248, 186, 17, 63, 234, 28, 147, 191, 196, 242, 240, 167, 0, 0, 25, 241, 21, 27, 106, 64, 248, 186, 17, 63, 137, 240, 193, 191, 78, 243, 117, 174, 0, 0, 64, 237, 76, 121, 95, 64, 248, 186, 17, 63, 3, 230, 238, 191, 180, 243, 152, 180, 0, 0, 180, 233, 141, 176, 82, 64, 248, 186, 17, 63, 64, 199, 12, 192, 249, 243, 121, 186, 0, 0, 92, 230, 94, 224, 67, 64, 248, 186, 17, 63, 107, 192, 32, 192, 33, 244, 53, 192, 0, 0, 37, 227, 68, 45, 51, 64, 248, 186, 17, 63, 68, 45, 51, 192, 47, 244, 231, 197, 0, 0, 255, 223, 107, 192, 32, 64, 248, 186, 17, 63, 94, 224, 67, 192, 33, 244, 165, 203, 0, 0, 216, 220, 64, 199, 12, 64, 248, 186, 17, 63, 141, 176, 82, 192, 249, 243, 138, 209, 0, 0, 161, 217, 3, 230, 238, 63, 248, 186, 17, 63, 76, 121, 95, 192, 180, 243, 177, 215, 0, 0, 74, 214, 137, 240, 193, 63, 248, 186, 17, 63, 21, 27, 106, 192, 78, 243, 57, 222, 0, 0, 189, 210, 234, 28, 147, 63, 248, 186, 17, 63, 180, 123, 114, 192, 196, 242, 72, 229, 0, 0, 228, 206, 53, 189, 69, 63, 248, 186, 17, 63, 127, 134, 120, 192, 12, 242, 18, 237, 0, 0, 157, 202, 36, 178, 198, 62, 248, 186, 17, 63, 147, 44, 124, 192, 30, 241, 218, 245, 0, 0, 188, 197, 74, 193, 11, 38, 248, 186, 17, 63, 240, 100, 125, 192, 231, 239, 255, 255, 0, 0, 255, 191, 36, 178, 198, 190, 248, 186, 17, 63, 147, 44, 124, 192, 224, 14, 218, 245, 120, 11, 255, 191, 53, 189, 69, 191, 248, 186, 17, 63, 127, 134, 120, 192, 242, 13, 18, 237, 59, 21, 255, 191, 234, 28, 147, 191, 248, 186, 17, 63, 180, 123, 114, 192, 57, 13, 72, 229, 201, 29, 255, 191, 137, 240, 193, 191, 248, 186, 17, 63, 21, 27, 106, 192, 175, 12, 57, 222, 125, 37, 255, 191, 3, 230, 238, 191, 248, 186, 17, 63, 76, 121, 95, 192, 74, 12, 177, 215, 149, 44, 255, 191, 64, 199, 12, 192, 248, 186, 17, 63, 141, 176, 82, 192, 5, 12, 138, 209, 68, 51, 255, 191, 107, 192, 32, 192, 248, 186, 17, 63, 94, 224, 67, 192, 221, 11, 165, 203, 178, 57, 255, 191, 68, 45, 51, 192, 248, 186, 17, 63, 68, 45, 51, 192, 207, 11, 231, 197, 255, 63, 255, 191, 94, 224, 67, 192, 248, 186, 17, 63, 107, 192, 32, 192, 221, 11, 53, 192, 77, 70, 255, 191, 141, 176, 82, 192, 248, 186, 17, 63, 64, 199, 12, 192, 5, 12, 121, 186, 185, 76, 255, 191, 76, 121, 95, 192, 248, 186, 17, 63, 3, 230, 238, 191, 74, 12, 152, 180, 104, 83, 255, 191, 21, 27, 106, 192, 248, 186, 17, 63, 137, 240, 193, 191, 175, 12, 117, 174, 130, 90, 255, 191, 180, 123, 114, 192, 248, 186, 17, 63, 234, 28, 147, 191, 57, 13, 240, 167, 53, 98, 255, 191, 127, 134, 120, 192, 248, 186, 17, 63, 53, 189, 69, 191, 242, 13, 221, 160, 195, 106, 255, 191, 147, 44, 124, 192, 248, 186, 17, 63, 36, 178, 198, 190, 224, 14, 3, 153, 133, 116, 255, 191, 240, 100, 125, 192, 248, 186, 17, 63, 238, 161, 81, 166, 22, 16, 22, 144, 255, 127, 255, 191, 147, 44, 124, 192, 248, 186, 17, 63, 36, 178, 198, 62, 5, 25, 224, 142, 121, 139, 255, 191, 127, 134, 120, 192, 248, 186, 17, 63, 53, 189, 69, 63, 222, 32, 241, 141, 59, 149, 255, 191, 180, 123, 114, 192, 248, 186, 17, 63, 234, 28, 147, 63, 241, 39, 58, 141, 201, 157, 255, 191, 21, 27, 106, 192, 248, 186, 17, 63, 137, 240, 193, 63, 117, 46, 175, 140, 124, 165, 255, 191, 76, 121, 95, 192, 248, 186, 17, 63, 3, 230, 238, 63, 152, 52, 74, 140, 149, 172, 255, 191, 141, 176, 82, 192, 248, 186, 17, 63, 64, 199, 12, 64, 121, 58, 5, 140, 68, 179, 255, 191, 94, 224, 67, 192, 248, 186, 17, 63, 107, 192, 32, 64, 54, 64, 220, 139, 177, 185, 255, 191, 68, 45, 51, 192, 248, 186, 17, 63, 68, 45, 51, 64, 231, 69, 207, 139, 255, 191, 255, 191, 107, 192, 32, 192, 248, 186, 17, 63, 94, 224, 67, 64, 166, 75, 220, 139, 76, 198, 255, 191, 64, 199, 12, 192, 248, 186, 17, 63, 141, 176, 82, 64, 139, 81, 5, 140, 186, 204, 255, 191, 3, 230, 238, 191, 248, 186, 17, 63, 76, 121, 95, 64, 177, 87, 74, 140, 105, 211, 255, 191, 137, 240, 193, 191, 248, 186, 17, 63, 21, 27, 106, 64, 57, 94, 175, 140, 129, 218, 255, 191, 234, 28, 147, 191, 248, 186, 17, 63, 180, 123, 114, 64, 73, 101, 58, 141, 52, 226, 255, 191, 53, 189, 69, 191, 248, 186, 17, 63, 127, 134, 120, 64, 19, 109, 241, 141, 194, 234, 255, 191, 36, 178, 198, 190, 248, 186, 17, 63, 147, 44, 124, 64, 219, 117, 224, 142, 132, 244, 255, 191, 74, 193, 139, 166, 248, 186, 17, 63, 240, 100, 125, 64, 255, 127, 22, 144, 255, 255, 255, 191, 0, 0, 0, 0, 53, 229, 66, 62, 197, 181, 127, 64, 255, 127, 209, 133, 255, 255, 255, 191, 1, 131, 200, 62, 53, 229, 66, 62, 142, 122, 126, 64, 254, 138, 87, 133, 255, 255, 188, 197, 213, 139, 71, 63, 53, 229, 66, 62, 240, 203, 122, 64, 104, 148, 251, 132, 255, 255, 157, 202, 24, 117, 148, 63, 53, 229, 66, 62, 2, 179, 116, 64, 177, 156, 180, 132, 255, 255, 228, 206, 69, 182, 195, 63, 53, 229, 66, 62, 202, 62, 108, 64, 43, 164, 128, 132, 255, 255, 189, 210, 238, 20, 241, 63, 53, 229, 66, 62, 33, 132, 97, 64, 17, 171, 89, 132, 255, 255, 74, 214, 156, 16, 14, 64, 53, 229, 66, 62, 121, 157, 84, 64, 144, 177, 63, 132, 255, 255, 161, 217, 130, 56, 34, 64, 53, 229, 66, 62, 161, 170, 69, 64, 206, 183, 48, 132, 255, 255, 216, 220, 118, 208, 52, 64, 53, 229, 66, 62, 118, 208, 52, 64, 233, 189, 43, 132, 255, 255, 255, 223, 161, 170, 69, 64, 53, 229, 66, 62, 130, 56, 34, 64, 255, 195, 48, 132, 255, 255, 37, 227, 121, 157, 84, 64, 53, 229, 66, 62, 156, 16, 14, 64, 45, 202, 63, 132, 255, 255, 92, 230, 33, 132, 97, 64, 53, 229, 66, 62, 238, 20, 241, 63, 147, 208, 89, 132, 255, 255, 180, 233, 202, 62, 108, 64, 53, 229, 66, 62, 69, 182, 195, 63, 82, 215, 128, 132, 255, 255, 64, 237, 2, 179, 116, 64, 53, 229, 66, 62, 24, 117, 148, 63, 151, 222, 180, 132, 255, 255, 25, 241, 240, 203, 122, 64, 53, 229, 66, 62, 213, 139, 71, 63, 154, 230, 251, 132, 255, 255, 96, 245, 142, 122, 126, 64, 53, 229, 66, 62, 1, 131, 200, 62, 167, 239, 87, 133, 255, 255, 66, 250, 197, 181, 127, 64, 53, 229, 66, 62, 65, 8, 141, 37, 45, 250, 209, 133, 255, 255, 255, 255, 142, 122, 126, 64, 53, 229, 66, 62, 1, 131, 200, 190, 166, 250, 86, 144, 0, 0, 66, 250, 240, 203, 122, 64, 53, 229, 66, 62, 213, 139, 71, 191, 3, 251, 100, 153, 0, 0, 96, 245, 2, 179, 116, 64, 53, 229, 66, 62, 24, 117, 148, 191, 73, 251, 102, 161, 0, 0, 25, 241, 202, 62, 108, 64, 53, 229, 66, 62, 69, 182, 195, 191, 126, 251, 171, 168, 0, 0, 64, 237, 33, 132, 97, 64, 53, 229, 66, 62, 238, 20, 241, 191, 164, 251, 107, 175, 0, 0, 180, 233, 121, 157, 84, 64, 53, 229, 66, 62, 156, 16, 14, 192, 191, 251, 208, 181, 0, 0, 92, 230, 161, 170, 69, 64, 53, 229, 66, 62, 130, 56, 34, 192, 206, 251, 254, 187, 0, 0, 37, 227, 118, 208, 52, 64, 53, 229, 66, 62, 118, 208, 52, 192, 211, 251, 21, 194, 0, 0, 255, 223, 130, 56, 34, 64, 53, 229, 66, 62, 161, 170, 69, 192, 206, 251, 48, 200, 0, 0, 216, 220, 156, 16, 14, 64, 53, 229, 66, 62, 121, 157, 84, 192, 191, 251, 109, 206, 0, 0, 161, 217, 238, 20, 241, 63, 53, 229, 66, 62, 33, 132, 97, 192, 164, 251, 237, 212, 0, 0, 74, 214, 69, 182, 195, 63, 53, 229, 66, 62, 202, 62, 108, 192, 126, 251, 211, 219, 0, 0, 189, 210, 24, 117, 148, 63, 53, 229, 66, 62, 2, 179, 116, 192, 73, 251, 77, 227, 0, 0, 228, 206, 213, 139, 71, 63, 53, 229, 66, 62, 240, 203, 122, 192, 3, 251, 150, 235, 0, 0, 157, 202, 1, 131, 200, 62, 53, 229, 66, 62, 142, 122, 126, 192, 166, 250, 255, 244, 0, 0, 188, 197, 65, 8, 13, 38, 53, 229, 66, 62, 197, 181, 127, 192, 45, 250, 255, 255, 0, 0, 255, 191, 1, 131, 200, 190, 53, 229, 66, 62, 142, 122, 126, 192, 88, 5, 255, 244, 120, 11, 255, 191, 213, 139, 71, 191, 53, 229, 66, 62, 240, 203, 122, 192, 251, 4, 150, 235, 59, 21, 255, 191, 24, 117, 148, 191, 53, 229, 66, 62, 2, 179, 116, 192, 180, 4, 77, 227, 201, 29, 255, 191, 69, 182, 195, 191, 53, 229, 66, 62, 202, 62, 108, 192, 128, 4, 211, 219, 125, 37, 255, 191, 238, 20, 241, 191, 53, 229, 66, 62, 33, 132, 97, 192, 90, 4, 237, 212, 149, 44, 255, 191, 156, 16, 14, 192, 53, 229, 66, 62, 121, 157, 84, 192, 62, 4, 109, 206, 68, 51, 255, 191, 130, 56, 34, 192, 53, 229, 66, 62, 161, 170, 69, 192, 47, 4, 48, 200, 178, 57, 255, 191, 118, 208, 52, 192, 53, 229, 66, 62, 118, 208, 52, 192, 42, 4, 21, 194, 255, 63, 255, 191, 161, 170, 69, 192, 53, 229, 66, 62, 130, 56, 34, 192, 47, 4, 254, 187, 77, 70, 255, 191, 121, 157, 84, 192, 53, 229, 66, 62, 156, 16, 14, 192, 62, 4, 208, 181, 185, 76, 255, 191, 33, 132, 97, 192, 53, 229, 66, 62, 238, 20, 241, 191, 90, 4, 107, 175, 104, 83, 255, 191, 202, 62, 108, 192, 53, 229, 66, 62, 69, 182, 195, 191, 128, 4, 171, 168, 130, 90, 255, 191, 2, 179, 116, 192, 53, 229, 66, 62, 24, 117, 148, 191, 180, 4, 102, 161, 53, 98, 255, 191, 240, 203, 122, 192, 53, 229, 66, 62, 213, 139, 71, 191, 251, 4, 100, 153, 195, 106, 255, 191, 142, 122, 126, 192, 53, 229, 66, 62, 1, 131, 200, 190, 88, 5, 86, 144, 133, 116, 255, 191, 197, 181, 127, 192, 53, 229, 66, 62, 97, 140, 83, 166, 209, 5, 209, 133, 255, 127, 255, 191, 142, 122, 126, 192, 53, 229, 66, 62, 1, 131, 200, 62, 86, 16, 87, 133, 121, 139, 255, 191, 240, 203, 122, 192, 53, 229, 66, 62, 213, 139, 71, 63, 100, 25, 251, 132, 59, 149, 255, 191, 2, 179, 116, 192, 53, 229, 66, 62, 24, 117, 148, 63, 103, 33, 180, 132, 201, 157, 255, 191, 202, 62, 108, 192, 53, 229, 66, 62, 69, 182, 195, 63, 172, 40, 128, 132, 124, 165, 255, 191, 33, 132, 97, 192, 53, 229, 66, 62, 238, 20, 241, 63, 107, 47, 89, 132, 149, 172, 255, 191, 121, 157, 84, 192, 53, 229, 66, 62, 156, 16, 14, 64, 209, 53, 63, 132, 68, 179, 255, 191, 161, 170, 69, 192, 53, 229, 66, 62, 130, 56, 34, 64, 255, 59, 48, 132, 177, 185, 255, 191, 118, 208, 52, 192, 53, 229, 66, 62, 118, 208, 52, 64, 21, 66, 43, 132, 255, 191, 255, 191, 130, 56, 34, 192, 53, 229, 66, 62, 161, 170, 69, 64, 48, 72, 48, 132, 76, 198, 255, 191, 156, 16, 14, 192, 53, 229, 66, 62, 121, 157, 84, 64, 110, 78, 63, 132, 186, 204, 255, 191, 238, 20, 241, 191, 53, 229, 66, 62, 33, 132, 97, 64, 237, 84, 89, 132, 105, 211, 255, 191, 69, 182, 195, 191, 53, 229, 66, 62, 202, 62, 108, 64, 211, 91, 128, 132, 129, 218, 255, 191, 24, 117, 148, 191, 53, 229, 66, 62, 2, 179, 116, 64, 77, 99, 180, 132, 52, 226, 255, 191, 213, 139, 71, 191, 53, 229, 66, 62, 240, 203, 122, 64, 150, 107, 251, 132, 194, 234, 255, 191, 1, 131, 200, 190, 53, 229, 66, 62, 142, 122, 126, 64, 0, 117, 87, 133, 132, 244, 255, 191, 65, 8, 141, 166, 53, 229, 66, 62, 197, 181, 127, 64, 255, 127, 209, 133, 255, 255, 255, 191, 0, 0, 0, 0, 53, 229, 66, 190, 197, 181, 127, 64, 255, 127, 45, 122, 255, 255, 255, 191, 1, 131, 200, 62, 53, 229, 66, 190, 142, 122, 126, 64, 254, 138, 167, 122, 255, 255, 188, 197, 213, 139, 71, 63, 53, 229, 66, 190, 240, 203, 122, 64, 104, 148, 3, 123, 255, 255, 157, 202, 24, 117, 148, 63, 53, 229, 66, 190, 2, 179, 116, 64, 177, 156, 74, 123, 255, 255, 228, 206, 69, 182, 195, 63, 53, 229, 66, 190, 202, 62, 108, 64, 43, 164, 126, 123, 255, 255, 189, 210, 238, 20, 241, 63, 53, 229, 66, 190, 33, 132, 97, 64, 17, 171, 165, 123, 255, 255, 74, 214, 156, 16, 14, 64, 53, 229, 66, 190, 121, 157, 84, 64, 144, 177, 191, 123, 255, 255, 161, 217, 130, 56, 34, 64, 53, 229, 66, 190, 161, 170, 69, 64, 206, 183, 206, 123, 255, 255, 216, 220, 118, 208, 52, 64, 53, 229, 66, 190, 118, 208, 52, 64, 233, 189, 211, 123, 255, 255, 255, 223, 161, 170, 69, 64, 53, 229, 66, 190, 130, 56, 34, 64, 255, 195, 206, 123, 255, 255, 37, 227, 121, 157, 84, 64, 53, 229, 66, 190, 156, 16, 14, 64, 45, 202, 191, 123, 255, 255, 92, 230, 33, 132, 97, 64, 53, 229, 66, 190, 238, 20, 241, 63, 147, 208, 165, 123, 255, 255, 180, 233, 202, 62, 108, 64, 53, 229, 66, 190, 69, 182, 195, 63, 82, 215, 126, 123, 255, 255, 64, 237, 2, 179, 116, 64, 53, 229, 66, 190, 24, 117, 148, 63, 151, 222, 74, 123, 255, 255, 25, 241, 240, 203, 122, 64, 53, 229, 66, 190, 213, 139, 71, 63, 154, 230, 3, 123, 255, 255, 96, 245, 142, 122, 126, 64, 53, 229, 66, 190, 1, 131, 200, 62, 167, 239, 167, 122, 255, 255, 66, 250, 197, 181, 127, 64, 53, 229, 66, 190, 65, 8, 141, 37, 45, 250, 44, 122, 255, 255, 255, 255, 142, 122, 126, 64, 53, 229, 66, 190, 1, 131, 200, 190, 166, 250, 168, 111, 0, 0, 66, 250, 240, 203, 122, 64, 53, 229, 66, 190, 213, 139, 71, 191, 3, 251, 154, 102, 0, 0, 96, 245, 2, 179, 116, 64, 53, 229, 66, 190, 24, 117, 148, 191, 73, 251, 151, 94, 0, 0, 25, 241, 202, 62, 108, 64, 53, 229, 66, 190, 69, 182, 195, 191, 126, 251, 83, 87, 0, 0, 64, 237, 33, 132, 97, 64, 53, 229, 66, 190, 238, 20, 241, 191, 164, 251, 147, 80, 0, 0, 180, 233, 121, 157, 84, 64, 53, 229, 66, 190, 156, 16, 14, 192, 191, 251, 46, 74, 0, 0, 92, 230, 161, 170, 69, 64, 53, 229, 66, 190, 130, 56, 34, 192, 206, 251, 0, 68, 0, 0, 37, 227, 118, 208, 52, 64, 53, 229, 66, 190, 118, 208, 52, 192, 211, 251, 233, 61, 0, 0, 255, 223, 130, 56, 34, 64, 53, 229, 66, 190, 161, 170, 69, 192, 206, 251, 206, 55, 0, 0, 216, 220, 156, 16, 14, 64, 53, 229, 66, 190, 121, 157, 84, 192, 191, 251, 145, 49, 0, 0, 161, 217, 238, 20, 241, 63, 53, 229, 66, 190, 33, 132, 97, 192, 164, 251, 17, 43, 0, 0, 74, 214, 69, 182, 195, 63, 53, 229, 66, 190, 202, 62, 108, 192, 126, 251, 42, 36, 0, 0, 189, 210, 24, 117, 148, 63, 53, 229, 66, 190, 2, 179, 116, 192, 73, 251, 177, 28, 0, 0, 228, 206, 213, 139, 71, 63, 53, 229, 66, 190, 240, 203, 122, 192, 3, 251, 104, 20, 0, 0, 157, 202, 1, 131, 200, 62, 53, 229, 66, 190, 142, 122, 126, 192, 166, 250, 255, 10, 0, 0, 188, 197, 65, 8, 13, 38, 53, 229, 66, 190, 197, 181, 127, 192, 45, 250, 0, 0, 0, 0, 255, 191, 1, 131, 200, 190, 53, 229, 66, 190, 142, 122, 126, 192, 88, 5, 255, 10, 120, 11, 255, 191, 213, 139, 71, 191, 53, 229, 66, 190, 240, 203, 122, 192, 251, 4, 104, 20, 59, 21, 255, 191, 24, 117, 148, 191, 53, 229, 66, 190, 2, 179, 116, 192, 180, 4, 177, 28, 201, 29, 255, 191, 69, 182, 195, 191, 53, 229, 66, 190, 202, 62, 108, 192, 128, 4, 42, 36, 125, 37, 255, 191, 238, 20, 241, 191, 53, 229, 66, 190, 33, 132, 97, 192, 90, 4, 17, 43, 149, 44, 255, 191, 156, 16, 14, 192, 53, 229, 66, 190, 121, 157, 84, 192, 62, 4, 145, 49, 68, 51, 255, 191, 130, 56, 34, 192, 53, 229, 66, 190, 161, 170, 69, 192, 47, 4, 206, 55, 178, 57, 255, 191, 118, 208, 52, 192, 53, 229, 66, 190, 118, 208, 52, 192, 42, 4, 233, 61, 255, 63, 255, 191, 161, 170, 69, 192, 53, 229, 66, 190, 130, 56, 34, 192, 47, 4, 0, 68, 77, 70, 255, 191, 121, 157, 84, 192, 53, 229, 66, 190, 156, 16, 14, 192, 62, 4, 46, 74, 185, 76, 255, 191, 33, 132, 97, 192, 53, 229, 66, 190, 238, 20, 241, 191, 90, 4, 147, 80, 104, 83, 255, 191, 202, 62, 108, 192, 53, 229, 66, 190, 69, 182, 195, 191, 128, 4, 83, 87, 130, 90, 255, 191, 2, 179, 116, 192, 53, 229, 66, 190, 24, 117, 148, 191, 180, 4, 151, 94, 53, 98, 255, 191, 240, 203, 122, 192, 53, 229, 66, 190, 213, 139, 71, 191, 251, 4, 153, 102, 195, 106, 255, 191, 142, 122, 126, 192, 53, 229, 66, 190, 1, 131, 200, 190, 88, 5, 168, 111, 133, 116, 255, 191, 197, 181, 127, 192, 53, 229, 66, 190, 97, 140, 83, 166, 209, 5, 44, 122, 255, 127, 255, 191, 142, 122, 126, 192, 53, 229, 66, 190, 1, 131, 200, 62, 87, 16, 167, 122, 121, 139, 255, 191, 240, 203, 122, 192, 53, 229, 66, 190, 213, 139, 71, 63, 100, 25, 3, 123, 59, 149, 255, 191, 2, 179, 116, 192, 53, 229, 66, 190, 24, 117, 148, 63, 102, 33, 74, 123, 201, 157, 255, 191, 202, 62, 108, 192, 53, 229, 66, 190, 69, 182, 195, 63, 171, 40, 126, 123, 124, 165, 255, 191, 33, 132, 97, 192, 53, 229, 66, 190, 238, 20, 241, 63, 107, 47, 165, 123, 149, 172, 255, 191, 121, 157, 84, 192, 53, 229, 66, 190, 156, 16, 14, 64, 209, 53, 191, 123, 68, 179, 255, 191, 161, 170, 69, 192, 53, 229, 66, 190, 130, 56, 34, 64, 255, 59, 206, 123, 177, 185, 255, 191, 118, 208, 52, 192, 53, 229, 66, 190, 118, 208, 52, 64, 21, 66, 211, 123, 255, 191, 255, 191, 130, 56, 34, 192, 53, 229, 66, 190, 161, 170, 69, 64, 48, 72, 206, 123, 76, 198, 255, 191, 156, 16, 14, 192, 53, 229, 66, 190, 121, 157, 84, 64, 110, 78, 191, 123, 186, 204, 255, 191, 238, 20, 241, 191, 53, 229, 66, 190, 33, 132, 97, 64, 237, 84, 165, 123, 105, 211, 255, 191, 69, 182, 195, 191, 53, 229, 66, 190, 202, 62, 108, 64, 211, 91, 126, 123, 129, 218, 255, 191, 24, 117, 148, 191, 53, 229, 66, 190, 2, 179, 116, 64, 77, 99, 74, 123, 52, 226, 255, 191, 213, 139, 71, 191, 53, 229, 66, 190, 240, 203, 122, 64, 150, 107, 3, 123, 194, 234, 255, 191, 1, 131, 200, 190, 53, 229, 66, 190, 142, 122, 126, 64, 0, 117, 167, 122, 132, 244, 255, 191, 65, 8, 141, 166, 53, 229, 66, 190, 197, 181, 127, 64, 255, 127, 45, 122, 255, 255, 255, 191, 0, 0, 0, 0, 255, 186, 17, 191, 240, 100, 125, 64, 255, 127, 232, 111, 255, 255, 255, 191, 36, 178, 198, 62, 255, 186, 17, 191, 147, 44, 124, 64, 35, 138, 30, 113, 255, 255, 188, 197, 53, 189, 69, 63, 255, 186, 17, 191, 127, 134, 120, 64, 235, 146, 13, 114, 255, 255, 157, 202, 234, 28, 147, 63, 255, 186, 17, 191, 180, 123, 114, 64, 181, 154, 196, 114, 255, 255, 228, 206, 137, 240, 193, 63, 255, 186, 17, 191, 21, 27, 106, 64, 197, 161, 79, 115, 255, 255, 189, 210, 3, 230, 238, 63, 255, 186, 17, 191, 76, 121, 95, 64, 77, 168, 180, 115, 255, 255, 74, 214, 64, 199, 12, 64, 255, 186, 17, 191, 141, 176, 82, 64, 115, 174, 249, 115, 255, 255, 161, 217, 107, 192, 32, 64, 255, 186, 17, 191, 94, 224, 67, 64, 88, 180, 34, 116, 255, 255, 216, 220, 68, 45, 51, 64, 255, 186, 17, 191, 68, 45, 51, 64, 23, 186, 47, 116, 255, 255, 255, 223, 94, 224, 67, 64, 255, 186, 17, 191, 107, 192, 32, 64, 200, 191, 34, 116, 255, 255, 37, 227, 141, 176, 82, 64, 255, 186, 17, 191, 64, 199, 12, 64, 133, 197, 249, 115, 255, 255, 92, 230, 76, 121, 95, 64, 255, 186, 17, 191, 3, 230, 238, 63, 102, 203, 180, 115, 255, 255, 180, 233, 21, 27, 106, 64, 255, 186, 17, 191, 137, 240, 193, 63, 136, 209, 79, 115, 255, 255, 64, 237, 180, 123, 114, 64, 255, 186, 17, 191, 234, 28, 147, 63, 13, 216, 196, 114, 255, 255, 25, 241, 127, 134, 120, 64, 255, 186, 17, 191, 53, 189, 69, 63, 32, 223, 13, 114, 255, 255, 96, 245, 147, 44, 124, 64, 255, 186, 17, 191, 36, 178, 198, 62, 249, 230, 30, 113, 255, 255, 66, 250, 240, 100, 125, 64, 255, 186, 17, 191, 74, 193, 139, 37, 231, 239, 232, 111, 255, 255, 255, 255, 147, 44, 124, 64, 255, 186, 17, 191, 36, 178, 198, 190, 30, 241, 250, 102, 0, 0, 66, 250, 127, 134, 120, 64, 255, 186, 17, 191, 53, 189, 69, 191, 12, 242, 33, 95, 0, 0, 96, 245, 180, 123, 114, 64, 255, 186, 17, 191, 234, 28, 147, 191, 196, 242, 14, 88, 0, 0, 25, 241, 21, 27, 106, 64, 255, 186, 17, 191, 137, 240, 193, 191, 78, 243, 137, 81, 0, 0, 64, 237, 76, 121, 95, 64, 255, 186, 17, 191, 3, 230, 238, 191, 180, 243, 101, 75, 0, 0, 180, 233, 141, 176, 82, 64, 255, 186, 17, 191, 64, 199, 12, 192, 249, 243, 132, 69, 0, 0, 92, 230, 94, 224, 67, 64, 255, 186, 17, 191, 107, 192, 32, 192, 33, 244, 201, 63, 0, 0, 37, 227, 68, 45, 51, 64, 255, 186, 17, 191, 68, 45, 51, 192, 47, 244, 23, 58, 0, 0, 255, 223, 107, 192, 32, 64, 255, 186, 17, 191, 94, 224, 67, 192, 33, 244, 88, 52, 0, 0, 216, 220, 64, 199, 12, 64, 255, 186, 17, 191, 141, 176, 82, 192, 249, 243, 115, 46, 0, 0, 161, 217, 3, 230, 238, 63, 255, 186, 17, 191, 76, 121, 95, 192, 180, 243, 76, 40, 0, 0, 74, 214, 137, 240, 193, 63, 255, 186, 17, 191, 21, 27, 106, 192, 78, 243, 197, 33, 0, 0, 189, 210, 234, 28, 147, 63, 255, 186, 17, 191, 180, 123, 114, 192, 196, 242, 182, 26, 0, 0, 228, 206, 53, 189, 69, 63, 255, 186, 17, 191, 127, 134, 120, 192, 12, 242, 236, 18, 0, 0, 157, 202, 36, 178, 198, 62, 255, 186, 17, 191, 147, 44, 124, 192, 30, 241, 35, 10, 0, 0, 188, 197, 74, 193, 11, 38, 255, 186, 17, 191, 240, 100, 125, 192, 231, 239, 0, 0, 0, 0, 255, 191, 36, 178, 198, 190, 255, 186, 17, 191, 147, 44, 124, 192, 224, 14, 35, 10, 120, 11, 255, 191, 53, 189, 69, 191, 255, 186, 17, 191, 127, 134, 120, 192, 242, 13, 236, 18, 59, 21, 255, 191, 234, 28, 147, 191, 255, 186, 17, 191, 180, 123, 114, 192, 57, 13, 182, 26, 201, 29, 255, 191, 137, 240, 193, 191, 255, 186, 17, 191, 21, 27, 106, 192, 175, 12, 197, 33, 125, 37, 255, 191, 3, 230, 238, 191, 255, 186, 17, 191, 76, 121, 95, 192, 74, 12, 76, 40, 149, 44, 255, 191, 64, 199, 12, 192, 255, 186, 17, 191, 141, 176, 82, 192, 5, 12, 116, 46, 68, 51, 255, 191, 107, 192, 32, 192, 255, 186, 17, 191, 94, 224, 67, 192, 221, 11, 88, 52, 178, 57, 255, 191, 68, 45, 51, 192, 255, 186, 17, 191, 68, 45, 51, 192, 207, 11, 23, 58, 255, 63, 255, 191, 94, 224, 67, 192, 255, 186, 17, 191, 107, 192, 32, 192, 221, 11, 201, 63, 77, 70, 255, 191, 141, 176, 82, 192, 255, 186, 17, 191, 64, 199, 12, 192, 5, 12, 133, 69, 185, 76, 255, 191, 76, 121, 95, 192, 255, 186, 17, 191, 3, 230, 238, 191, 74, 12, 102, 75, 104, 83, 255, 191, 21, 27, 106, 192, 255, 186, 17, 191, 137, 240, 193, 191, 175, 12, 137, 81, 130, 90, 255, 191, 180, 123, 114, 192, 255, 186, 17, 191, 234, 28, 147, 191, 57, 13, 14, 88, 53, 98, 255, 191, 127, 134, 120, 192, 255, 186, 17, 191, 53, 189, 69, 191, 242, 13, 32, 95, 195, 106, 255, 191, 147, 44, 124, 192, 255, 186, 17, 191, 36, 178, 198, 190, 224, 14, 249, 102, 133, 116, 255, 191, 240, 100, 125, 192, 255, 186, 17, 191, 238, 161, 81, 166, 22, 16, 232, 111, 255, 127, 255, 191, 147, 44, 124, 192, 255, 186, 17, 191, 36, 178, 198, 62, 4, 25, 30, 113, 121, 139, 255, 191, 127, 134, 120, 192, 255, 186, 17, 191, 53, 189, 69, 63, 222, 32, 13, 114, 59, 149, 255, 191, 180, 123, 114, 192, 255, 186, 17, 191, 234, 28, 147, 63, 240, 39, 196, 114, 201, 157, 255, 191, 21, 27, 106, 192, 255, 186, 17, 191, 137, 240, 193, 63, 118, 46, 79, 115, 124, 165, 255, 191, 76, 121, 95, 192, 255, 186, 17, 191, 3, 230, 238, 63, 152, 52, 180, 115, 149, 172, 255, 191, 141, 176, 82, 192, 255, 186, 17, 191, 64, 199, 12, 64, 120, 58, 249, 115, 68, 179, 255, 191, 94, 224, 67, 192, 255, 186, 17, 191, 107, 192, 32, 64, 54, 64, 34, 116, 177, 185, 255, 191, 68, 45, 51, 192, 255, 186, 17, 191, 68, 45, 51, 64, 231, 69, 47, 116, 255, 191, 255, 191, 107, 192, 32, 192, 255, 186, 17, 191, 94, 224, 67, 64, 166, 75, 34, 116, 76, 198, 255, 191, 64, 199, 12, 192, 255, 186, 17, 191, 141, 176, 82, 64, 139, 81, 249, 115, 186, 204, 255, 191, 3, 230, 238, 191, 255, 186, 17, 191, 76, 121, 95, 64, 177, 87, 180, 115, 105, 211, 255, 191, 137, 240, 193, 191, 255, 186, 17, 191, 21, 27, 106, 64, 57, 94, 79, 115, 129, 218, 255, 191, 234, 28, 147, 191, 255, 186, 17, 191, 180, 123, 114, 64, 73, 101, 196, 114, 52, 226, 255, 191, 53, 189, 69, 191, 255, 186, 17, 191, 127, 134, 120, 64, 19, 109, 13, 114, 194, 234, 255, 191, 36, 178, 198, 190, 255, 186, 17, 191, 147, 44, 124, 64, 219, 117, 30, 113, 132, 244, 255, 191, 74, 193, 139, 166, 255, 186, 17, 191, 240, 100, 125, 64, 255, 127, 232, 111, 255, 255, 255, 191, 0, 0, 0, 0, 200, 106, 113, 191, 165, 200, 120, 64, 255, 127, 2, 103, 255, 255, 255, 191, 162, 20, 195, 62, 200, 106, 113, 191, 247, 149, 119, 64, 99, 137, 192, 104, 255, 255, 188, 197, 39, 36, 66, 63, 200, 106, 113, 191, 226, 0, 116, 64, 154, 145, 27, 106, 255, 255, 157, 202, 172, 111, 144, 63, 200, 106, 113, 191, 60, 18, 110, 64, 240, 152, 39, 107, 255, 255, 228, 206, 45, 105, 190, 63, 200, 106, 113, 191, 162, 216, 101, 64, 157, 159, 244, 107, 255, 255, 189, 210, 61, 141, 234, 63, 200, 106, 113, 191, 95, 104, 91, 64, 206, 165, 138, 108, 255, 255, 74, 214, 132, 55, 10, 64, 200, 106, 113, 191, 44, 219, 78, 64, 162, 171, 241, 108, 255, 255, 161, 217, 166, 211, 29, 64, 200, 106, 113, 191, 253, 79, 64, 64, 53, 177, 45, 109, 255, 255, 216, 220, 172, 234, 47, 64, 200, 106, 113, 191, 172, 234, 47, 64, 160, 182, 65, 109, 255, 255, 255, 223, 253, 79, 64, 64, 200, 106, 113, 191, 166, 211, 29, 64, 246, 187, 45, 109, 255, 255, 37, 227, 44, 219, 78, 64, 200, 106, 113, 191, 132, 55, 10, 64, 78, 193, 241, 108, 255, 255, 92, 230, 95, 104, 91, 64, 200, 106, 113, 191, 61, 141, 234, 63, 187, 198, 138, 108, 255, 255, 180, 233, 162, 216, 101, 64, 200, 106, 113, 191, 45, 105, 190, 63, 85, 204, 244, 107, 255, 255, 64, 237, 60, 18, 110, 64, 200, 106, 113, 191, 172, 111, 144, 63, 54, 210, 39, 107, 255, 255, 25, 241, 226, 0, 116, 64, 200, 106, 113, 191, 39, 36, 66, 63, 127, 216, 27, 106, 255, 255, 96, 245, 247, 149, 119, 64, 200, 106, 113, 191, 162, 20, 195, 62, 91, 223, 192, 104, 255, 255, 66, 250, 165, 200, 120, 64, 200, 106, 113, 191, 82, 54, 137, 37, 1, 231, 2, 103, 255, 255, 255, 255, 247, 149, 119, 64, 200, 106, 113, 191, 162, 20, 195, 190, 192, 232, 92, 95, 0, 0, 66, 250, 226, 0, 116, 64, 200, 106, 113, 191, 39, 36, 66, 191, 26, 234, 128, 88, 0, 0, 96, 245, 60, 18, 110, 64, 200, 106, 113, 191, 172, 111, 144, 191, 39, 235, 55, 82, 0, 0, 25, 241, 162, 216, 101, 64, 200, 106, 113, 191, 45, 105, 190, 191, 243, 235, 85, 76, 0, 0, 64, 237, 95, 104, 91, 64, 200, 106, 113, 191, 61, 141, 234, 191, 137, 236, 187, 70, 0, 0, 180, 233, 44, 219, 78, 64, 200, 106, 113, 191, 132, 55, 10, 192, 241, 236, 78, 65, 0, 0, 92, 230, 253, 79, 64, 64, 200, 106, 113, 191, 166, 211, 29, 192, 45, 237, 247, 59, 0, 0, 37, 227, 172, 234, 47, 64, 200, 106, 113, 191, 172, 234, 47, 192, 65, 237, 160, 54, 0, 0, 255, 223, 166, 211, 29, 64, 200, 106, 113, 191, 253, 79, 64, 192, 45, 237, 53, 49, 0, 0, 216, 220, 132, 55, 10, 64, 200, 106, 113, 191, 44, 219, 78, 192, 241, 236, 162, 43, 0, 0, 161, 217, 61, 141, 234, 63, 200, 106, 113, 191, 95, 104, 91, 192, 137, 236, 206, 37, 0, 0, 74, 214, 45, 105, 190, 63, 200, 106, 113, 191, 162, 216, 101, 192, 243, 235, 157, 31, 0, 0, 189, 210, 172, 111, 144, 63, 200, 106, 113, 191, 60, 18, 110, 192, 39, 235, 240, 24, 0, 0, 228, 206, 39, 36, 66, 63, 200, 106, 113, 191, 226, 0, 116, 192, 26, 234, 153, 17, 0, 0, 157, 202, 162, 20, 195, 62, 200, 106, 113, 191, 247, 149, 119, 192, 192, 232, 100, 9, 0, 0, 188, 197, 82, 54, 9, 38, 200, 106, 113, 191, 165, 200, 120, 192, 1, 231, 0, 0, 0, 0, 255, 191, 162, 20, 195, 190, 200, 106, 113, 191, 247, 149, 119, 192, 61, 23, 100, 9, 120, 11, 255, 191, 39, 36, 66, 191, 200, 106, 113, 191, 226, 0, 116, 192, 228, 21, 153, 17, 59, 21, 255, 191, 172, 111, 144, 191, 200, 106, 113, 191, 60, 18, 110, 192, 215, 20, 240, 24, 201, 29, 255, 191, 45, 105, 190, 191, 200, 106, 113, 191, 162, 216, 101, 192, 11, 20, 157, 31, 125, 37, 255, 191, 61, 141, 234, 191, 200, 106, 113, 191, 95, 104, 91, 192, 117, 19, 206, 37, 149, 44, 255, 191, 132, 55, 10, 192, 200, 106, 113, 191, 44, 219, 78, 192, 13, 19, 162, 43, 68, 51, 255, 191, 166, 211, 29, 192, 200, 106, 113, 191, 253, 79, 64, 192, 209, 18, 53, 49, 178, 57, 255, 191, 172, 234, 47, 192, 200, 106, 113, 191, 172, 234, 47, 192, 189, 18, 160, 54, 255, 63, 255, 191, 253, 79, 64, 192, 200, 106, 113, 191, 166, 211, 29, 192, 209, 18, 247, 59, 77, 70, 255, 191, 44, 219, 78, 192, 200, 106, 113, 191, 132, 55, 10, 192, 13, 19, 78, 65, 185, 76, 255, 191, 95, 104, 91, 192, 200, 106, 113, 191, 61, 141, 234, 191, 117, 19, 187, 70, 104, 83, 255, 191, 162, 216, 101, 192, 200, 106, 113, 191, 45, 105, 190, 191, 11, 20, 84, 76, 130, 90, 255, 191, 60, 18, 110, 192, 200, 106, 113, 191, 172, 111, 144, 191, 215, 20, 55, 82, 53, 98, 255, 191, 226, 0, 116, 192, 200, 106, 113, 191, 39, 36, 66, 191, 228, 21, 127, 88, 195, 106, 255, 191, 247, 149, 119, 192, 200, 106, 113, 191, 162, 20, 195, 190, 61, 23, 92, 95, 133, 116, 255, 191, 165, 200, 120, 192, 200, 106, 113, 191, 122, 209, 77, 166, 253, 24, 2, 103, 255, 127, 255, 191, 247, 149, 119, 192, 200, 106, 113, 191, 162, 20, 195, 62, 162, 32, 192, 104, 121, 139, 255, 191, 226, 0, 116, 192, 200, 106, 113, 191, 39, 36, 66, 63, 125, 39, 27, 106, 59, 149, 255, 191, 60, 18, 110, 192, 200, 106, 113, 191, 172, 111, 144, 63, 200, 45, 39, 107, 201, 157, 255, 191, 162, 216, 101, 192, 200, 106, 113, 191, 45, 105, 190, 63, 168, 51, 244, 107, 124, 165, 255, 191, 95, 104, 91, 192, 200, 106, 113, 191, 61, 141, 234, 63, 66, 57, 138, 108, 149, 172, 255, 191, 44, 219, 78, 192, 200, 106, 113, 191, 132, 55, 10, 64, 176, 62, 241, 108, 68, 179, 255, 191, 253, 79, 64, 192, 200, 106, 113, 191, 166, 211, 29, 64, 8, 68, 45, 109, 177, 185, 255, 191, 172, 234, 47, 192, 200, 106, 113, 191, 172, 234, 47, 64, 94, 73, 65, 109, 255, 191, 255, 191, 166, 211, 29, 192, 200, 106, 113, 191, 253, 79, 64, 64, 201, 78, 45, 109, 76, 198, 255, 191, 132, 55, 10, 192, 200, 106, 113, 191, 44, 219, 78, 64, 91, 84, 241, 108, 186, 204, 255, 191, 61, 141, 234, 191, 200, 106, 113, 191, 95, 104, 91, 64, 48, 90, 138, 108, 105, 211, 255, 191, 45, 105, 190, 191, 200, 106, 113, 191, 162, 216, 101, 64, 97, 96, 244, 107, 129, 218, 255, 191, 172, 111, 144, 191, 200, 106, 113, 191, 60, 18, 110, 64, 14, 103, 39, 107, 52, 226, 255, 191, 39, 36, 66, 191, 200, 106, 113, 191, 226, 0, 116, 64, 100, 110, 27, 106, 194, 234, 255, 191, 162, 20, 195, 190, 200, 106, 113, 191, 247, 149, 119, 64, 155, 118, 192, 104, 132, 244, 255, 191, 82, 54, 137, 166, 200, 106, 113, 191, 165, 200, 120, 64, 255, 127, 2, 103, 255, 255, 255, 191, 0, 0, 0, 0, 118, 117, 167, 191, 147, 235, 113, 64, 255, 127, 22, 95, 255, 255, 255, 191, 217, 178, 189, 62, 118, 117, 167, 191, 91, 193, 112, 64, 182, 136, 56, 97, 255, 255, 188, 197, 1, 201, 60, 63, 118, 117, 167, 191, 147, 69, 109, 64, 103, 144, 228, 98, 255, 255, 157, 202, 147, 115, 140, 63, 118, 117, 167, 191, 211, 128, 103, 64, 81, 151, 49, 100, 255, 255, 228, 206, 96, 40, 185, 63, 118, 117, 167, 191, 80, 129, 95, 64, 162, 157, 49, 101, 255, 255, 189, 210, 175, 20, 228, 63, 118, 117, 167, 191, 198, 90, 85, 64, 128, 163, 238, 101, 255, 255, 74, 214, 87, 103, 6, 64, 118, 117, 167, 191, 57, 38, 73, 64, 7, 169, 111, 102, 255, 255, 161, 217, 249, 120, 25, 64, 118, 117, 167, 191, 193, 1, 59, 64, 78, 174, 187, 102, 255, 255, 216, 220, 60, 16, 43, 64, 118, 117, 167, 191, 60, 16, 43, 64, 105, 179, 212, 102, 255, 255, 255, 223, 193, 1, 59, 64, 118, 117, 167, 191, 249, 120, 25, 64, 108, 184, 187, 102, 255, 255, 37, 227, 57, 38, 73, 64, 118, 117, 167, 191, 87, 103, 6, 64, 103, 189, 111, 102, 255, 255, 92, 230, 198, 90, 85, 64, 118, 117, 167, 191, 175, 20, 228, 63, 108, 194, 238, 101, 255, 255, 180, 233, 80, 129, 95, 64, 118, 117, 167, 191, 96, 40, 185, 63, 141, 199, 49, 101, 255, 255, 64, 237, 211, 128, 103, 64, 118, 117, 167, 191, 147, 115, 140, 63, 222, 204, 49, 100, 255, 255, 25, 241, 147, 69, 109, 64, 118, 117, 167, 191, 1, 201, 60, 63, 123, 210, 228, 98, 255, 255, 96, 245, 91, 193, 112, 64, 118, 117, 167, 191, 217, 178, 189, 62, 128, 216, 56, 97, 255, 255, 66, 250, 147, 235, 113, 64, 118, 117, 167, 191, 61, 109, 133, 37, 21, 223, 22, 95, 255, 255, 255, 255, 91, 193, 112, 64, 118, 117, 167, 191, 217, 178, 189, 190, 55, 225, 128, 88, 0, 0, 66, 250, 147, 69, 109, 64, 118, 117, 167, 191, 1, 201, 60, 191, 227, 226, 123, 82, 0, 0, 96, 245, 211, 128, 103, 64, 118, 117, 167, 191, 147, 115, 140, 191, 49, 228, 223, 76, 0, 0, 25, 241, 80, 129, 95, 64, 118, 117, 167, 191, 96, 40, 185, 191, 48, 229, 141, 71, 0, 0, 64, 237, 198, 90, 85, 64, 118, 117, 167, 191, 175, 20, 228, 191, 237, 229, 108, 66, 0, 0, 180, 233, 57, 38, 73, 64, 118, 117, 167, 191, 87, 103, 6, 192, 111, 230, 104, 61, 0, 0, 92, 230, 193, 1, 59, 64, 118, 117, 167, 191, 249, 120, 25, 192, 187, 230, 109, 56, 0, 0, 37, 227, 60, 16, 43, 64, 118, 117, 167, 191, 60, 16, 43, 192, 212, 230, 106, 51, 0, 0, 255, 223, 249, 120, 25, 64, 118, 117, 167, 191, 193, 1, 59, 192, 187, 230, 77, 46, 0, 0, 216, 220, 87, 103, 6, 64, 118, 117, 167, 191, 57, 38, 73, 192, 111, 230, 7, 41, 0, 0, 161, 217, 175, 20, 228, 63, 118, 117, 167, 191, 198, 90, 85, 192, 237, 229, 129, 35, 0, 0, 74, 214, 96, 40, 185, 63, 118, 117, 167, 191, 80, 129, 95, 192, 48, 229, 162, 29, 0, 0, 189, 210, 147, 115, 140, 63, 118, 117, 167, 191, 211, 128, 103, 192, 49, 228, 81, 23, 0, 0, 228, 206, 1, 201, 60, 63, 118, 117, 167, 191, 147, 69, 109, 192, 227, 226, 104, 16, 0, 0, 157, 202, 217, 178, 189, 62, 118, 117, 167, 191, 91, 193, 112, 192, 55, 225, 182, 8, 0, 0, 188, 197, 61, 109, 5, 38, 118, 117, 167, 191, 147, 235, 113, 192, 21, 223, 0, 0, 0, 0, 255, 191, 217, 178, 189, 190, 118, 117, 167, 191, 91, 193, 112, 192, 199, 30, 182, 8, 120, 11, 255, 191, 1, 201, 60, 191, 118, 117, 167, 191, 147, 69, 109, 192, 26, 29, 104, 16, 59, 21, 255, 191, 147, 115, 140, 191, 118, 117, 167, 191, 211, 128, 103, 192, 205, 27, 81, 23, 201, 29, 255, 191, 96, 40, 185, 191, 118, 117, 167, 191, 80, 129, 95, 192, 206, 26, 162, 29, 125, 37, 255, 191, 175, 20, 228, 191, 118, 117, 167, 191, 198, 90, 85, 192, 16, 26, 129, 35, 149, 44, 255, 191, 87, 103, 6, 192, 118, 117, 167, 191, 57, 38, 73, 192, 143, 25, 7, 41, 68, 51, 255, 191, 249, 120, 25, 192, 118, 117, 167, 191, 193, 1, 59, 192, 66, 25, 77, 46, 178, 57, 255, 191, 60, 16, 43, 192, 118, 117, 167, 191, 60, 16, 43, 192, 41, 25, 106, 51, 255, 63, 255, 191, 193, 1, 59, 192, 118, 117, 167, 191, 249, 120, 25, 192, 66, 25, 109, 56, 77, 70, 255, 191, 57, 38, 73, 192, 118, 117, 167, 191, 87, 103, 6, 192, 143, 25, 104, 61, 185, 76, 255, 191, 198, 90, 85, 192, 118, 117, 167, 191, 175, 20, 228, 191, 16, 26, 108, 66, 104, 83, 255, 191, 80, 129, 95, 192, 118, 117, 167, 191, 96, 40, 185, 191, 206, 26, 140, 71, 130, 90, 255, 191, 211, 128, 103, 192, 118, 117, 167, 191, 147, 115, 140, 191, 205, 27, 223, 76, 53, 98, 255, 191, 147, 69, 109, 192, 118, 117, 167, 191, 1, 201, 60, 191, 26, 29, 123, 82, 195, 106, 255, 191, 91, 193, 112, 192, 118, 117, 167, 191, 217, 178, 189, 190, 199, 30, 128, 88, 133, 116, 255, 191, 147, 235, 113, 192, 118, 117, 167, 191, 219, 35, 72, 166, 233, 32, 22, 95, 255, 127, 255, 191, 91, 193, 112, 192, 118, 117, 167, 191, 217, 178, 189, 62, 125, 39, 56, 97, 121, 139, 255, 191, 147, 69, 109, 192, 118, 117, 167, 191, 1, 201, 60, 63, 131, 45, 228, 98, 59, 149, 255, 191, 211, 128, 103, 192, 118, 117, 167, 191, 147, 115, 140, 63, 31, 51, 49, 100, 201, 157, 255, 191, 80, 129, 95, 192, 118, 117, 167, 191, 96, 40, 185, 63, 113, 56, 49, 101, 124, 165, 255, 191, 198, 90, 85, 192, 118, 117, 167, 191, 175, 20, 228, 63, 146, 61, 238, 101, 149, 172, 255, 191, 57, 38, 73, 192, 118, 117, 167, 191, 87, 103, 6, 64, 150, 66, 111, 102, 68, 179, 255, 191, 193, 1, 59, 192, 118, 117, 167, 191, 249, 120, 25, 64, 146, 71, 187, 102, 177, 185, 255, 191, 60, 16, 43, 192, 118, 117, 167, 191, 60, 16, 43, 64, 149, 76, 212, 102, 255, 191, 255, 191, 249, 120, 25, 192, 118, 117, 167, 191, 193, 1, 59, 64, 176, 81, 187, 102, 76, 198, 255, 191, 87, 103, 6, 192, 118, 117, 167, 191, 57, 38, 73, 64, 247, 86, 111, 102, 186, 204, 255, 191, 175, 20, 228, 191, 118, 117, 167, 191, 198, 90, 85, 64, 126, 92, 238, 101, 105, 211, 255, 191, 96, 40, 185, 191, 118, 117, 167, 191, 80, 129, 95, 64, 92, 98, 49, 101, 129, 218, 255, 191, 147, 115, 140, 191, 118, 117, 167, 191, 211, 128, 103, 64, 173, 104, 49, 100, 52, 226, 255, 191, 1, 201, 60, 191, 118, 117, 167, 191, 147, 69, 109, 64, 151, 111, 228, 98, 194, 234, 255, 191, 217, 178, 189, 190, 118, 117, 167, 191, 91, 193, 112, 64, 72, 119, 56, 97, 132, 244, 255, 191, 61, 109, 133, 166, 118, 117, 167, 191, 147, 235, 113, 64, 255, 127, 22, 95, 255, 255, 255, 191, 0, 0, 0, 0, 70, 177, 212, 191, 165, 221, 104, 64, 255, 127, 222, 87, 255, 255, 255, 191, 70, 153, 182, 62, 70, 177, 212, 191, 151, 190, 103, 64, 23, 136, 72, 90, 255, 255, 188, 197, 46, 184, 53, 63, 70, 177, 212, 191, 47, 100, 100, 64, 75, 143, 49, 92, 255, 255, 157, 202, 218, 49, 135, 63, 70, 177, 212, 191, 180, 214, 94, 64, 205, 149, 177, 93, 255, 255, 228, 206, 79, 58, 178, 63, 70, 177, 212, 191, 211, 35, 87, 64, 199, 155, 216, 94, 255, 255, 189, 210, 91, 139, 219, 63, 70, 177, 212, 191, 139, 94, 77, 64, 85, 161, 179, 95, 255, 255, 74, 214, 145, 95, 1, 64, 70, 177, 212, 191, 239, 158, 65, 64, 145, 166, 75, 96, 255, 255, 161, 217, 127, 186, 19, 64, 70, 177, 212, 191, 248, 1, 52, 64, 143, 171, 163, 96, 255, 255, 216, 220, 54, 169, 36, 64, 70, 177, 212, 191, 54, 169, 36, 64, 95, 176, 192, 96, 255, 255, 255, 223, 248, 1, 52, 64, 70, 177, 212, 191, 127, 186, 19, 64, 19, 181, 163, 96, 255, 255, 37, 227, 239, 158, 65, 64, 70, 177, 212, 191, 145, 95, 1, 64, 184, 185, 75, 96, 255, 255, 92, 230, 139, 94, 77, 64, 70, 177, 212, 191, 91, 139, 219, 63, 93, 190, 179, 95, 255, 255, 180, 233, 211, 35, 87, 64, 70, 177, 212, 191, 79, 58, 178, 63, 16, 195, 216, 94, 255, 255, 64, 237, 180, 214, 94, 64, 70, 177, 212, 191, 218, 49, 135, 63, 226, 199, 177, 93, 255, 255, 25, 241, 47, 100, 100, 64, 70, 177, 212, 191, 46, 184, 53, 63, 228, 204, 49, 92, 255, 255, 96, 245, 151, 190, 103, 64, 70, 177, 212, 191, 70, 153, 182, 62, 47, 210, 72, 90, 255, 255, 66, 250, 165, 221, 104, 64, 70, 177, 212, 191, 212, 110, 128, 37, 222, 215, 222, 87, 255, 255, 255, 255, 151, 190, 103, 64, 70, 177, 212, 191, 70, 153, 182, 190, 71, 218, 48, 82, 0, 0, 66, 250, 47, 100, 100, 64, 70, 177, 212, 191, 46, 184, 53, 191, 48, 220, 229, 76, 0, 0, 96, 245, 180, 214, 94, 64, 70, 177, 212, 191, 218, 49, 135, 191, 176, 221, 226, 71, 0, 0, 25, 241, 211, 35, 87, 64, 70, 177, 212, 191, 79, 58, 178, 191, 216, 222, 16, 67, 0, 0, 64, 237, 139, 94, 77, 64, 70, 177, 212, 191, 91, 139, 219, 191, 179, 223, 92, 62, 0, 0, 180, 233, 239, 158, 65, 64, 70, 177, 212, 191, 145, 95, 1, 192, 74, 224, 185, 57, 0, 0, 92, 230, 248, 1, 52, 64, 70, 177, 212, 191, 127, 186, 19, 192, 163, 224, 20, 53, 0, 0, 37, 227, 54, 169, 36, 64, 70, 177, 212, 191, 54, 169, 36, 192, 192, 224, 96, 48, 0, 0, 255, 223, 127, 186, 19, 64, 70, 177, 212, 191, 248, 1, 52, 192, 163, 224, 143, 43, 0, 0, 216, 220, 145, 95, 1, 64, 70, 177, 212, 191, 239, 158, 65, 192, 74, 224, 145, 38, 0, 0, 161, 217, 91, 139, 219, 63, 70, 177, 212, 191, 139, 94, 77, 192, 179, 223, 84, 33, 0, 0, 74, 214, 79, 58, 178, 63, 70, 177, 212, 191, 211, 35, 87, 192, 216, 222, 199, 27, 0, 0, 189, 210, 218, 49, 135, 63, 70, 177, 212, 191, 180, 214, 94, 192, 176, 221, 206, 21, 0, 0, 228, 206, 46, 184, 53, 63, 70, 177, 212, 191, 47, 100, 100, 192, 48, 220, 75, 15, 0, 0, 157, 202, 70, 153, 182, 62, 70, 177, 212, 191, 151, 190, 103, 192, 71, 218, 23, 8, 0, 0, 188, 197, 212, 110, 0, 38, 70, 177, 212, 191, 165, 221, 104, 192, 222, 215, 0, 0, 0, 0, 255, 191, 70, 153, 182, 190, 70, 177, 212, 191, 151, 190, 103, 192, 183, 37, 23, 8, 120, 11, 255, 191, 46, 184, 53, 191, 70, 177, 212, 191, 47, 100, 100, 192, 206, 35, 75, 15, 59, 21, 255, 191, 218, 49, 135, 191, 70, 177, 212, 191, 180, 214, 94, 192, 77, 34, 206, 21, 201, 29, 255, 191, 79, 58, 178, 191, 70, 177, 212, 191, 211, 35, 87, 192, 37, 33, 199, 27, 125, 37, 255, 191, 91, 139, 219, 191, 70, 177, 212, 191, 139, 94, 77, 192, 74, 32, 84, 33, 149, 44, 255, 191, 145, 95, 1, 192, 70, 177, 212, 191, 239, 158, 65, 192, 180, 31, 144, 38, 68, 51, 255, 191, 127, 186, 19, 192, 70, 177, 212, 191, 248, 1, 52, 192, 91, 31, 143, 43, 178, 57, 255, 191, 54, 169, 36, 192, 70, 177, 212, 191, 54, 169, 36, 192, 61, 31, 96, 48, 255, 63, 255, 191, 248, 1, 52, 192, 70, 177, 212, 191, 127, 186, 19, 192, 91, 31, 20, 53, 77, 70, 255, 191, 239, 158, 65, 192, 70, 177, 212, 191, 145, 95, 1, 192, 180, 31, 185, 57, 185, 76, 255, 191, 139, 94, 77, 192, 70, 177, 212, 191, 91, 139, 219, 191, 74, 32, 92, 62, 104, 83, 255, 191, 211, 35, 87, 192, 70, 177, 212, 191, 79, 58, 178, 191, 37, 33, 17, 67, 130, 90, 255, 191, 180, 214, 94, 192, 70, 177, 212, 191, 218, 49, 135, 191, 77, 34, 226, 71, 53, 98, 255, 191, 47, 100, 100, 192, 70, 177, 212, 191, 46, 184, 53, 191, 206, 35, 229, 76, 195, 106, 255, 191, 151, 190, 103, 192, 70, 177, 212, 191, 70, 153, 182, 190, 183, 37, 48, 82, 133, 116, 255, 191, 165, 221, 104, 192, 70, 177, 212, 191, 61, 166, 64, 166, 31, 40, 222, 87, 255, 127, 255, 191, 151, 190, 103, 192, 70, 177, 212, 191, 70, 153, 182, 62, 207, 45, 72, 90, 121, 139, 255, 191, 47, 100, 100, 192, 70, 177, 212, 191, 46, 184, 53, 63, 25, 51, 49, 92, 59, 149, 255, 191, 180, 214, 94, 192, 70, 177, 212, 191, 218, 49, 135, 63, 28, 56, 177, 93, 201, 157, 255, 191, 211, 35, 87, 192, 70, 177, 212, 191, 79, 58, 178, 63, 238, 60, 216, 94, 124, 165, 255, 191, 139, 94, 77, 192, 70, 177, 212, 191, 91, 139, 219, 63, 161, 65, 179, 95, 149, 172, 255, 191, 239, 158, 65, 192, 70, 177, 212, 191, 145, 95, 1, 64, 70, 70, 75, 96, 68, 179, 255, 191, 248, 1, 52, 192, 70, 177, 212, 191, 127, 186, 19, 64, 235, 74, 163, 96, 177, 185, 255, 191, 54, 169, 36, 192, 70, 177, 212, 191, 54, 169, 36, 64, 159, 79, 192, 96, 255, 191, 255, 191, 127, 186, 19, 192, 70, 177, 212, 191, 248, 1, 52, 64, 111, 84, 163, 96, 76, 198, 255, 191, 145, 95, 1, 192, 70, 177, 212, 191, 239, 158, 65, 64, 108, 89, 75, 96, 186, 204, 255, 191, 91, 139, 219, 191, 70, 177, 212, 191, 139, 94, 77, 64, 169, 94, 179, 95, 105, 211, 255, 191, 79, 58, 178, 191, 70, 177, 212, 191, 211, 35, 87, 64, 55, 100, 216, 94, 129, 218, 255, 191, 218, 49, 135, 191, 70, 177, 212, 191, 180, 214, 94, 64, 49, 106, 177, 93, 52, 226, 255, 191, 46, 184, 53, 191, 70, 177, 212, 191, 47, 100, 100, 64, 179, 112, 49, 92, 194, 234, 255, 191, 70, 153, 182, 190, 70, 177, 212, 191, 151, 190, 103, 64, 231, 119, 71, 90, 132, 244, 255, 191, 212, 110, 128, 166, 70, 177, 212, 191, 165, 221, 104, 64, 255, 127, 222, 87, 255, 255, 255, 191, 0, 0, 0, 0, 1, 0, 0, 192, 215, 179, 93, 64, 255, 127, 37, 81, 255, 255, 255, 191, 93, 216, 173, 62, 1, 0, 0, 192, 139, 162, 92, 64, 130, 135, 194, 83, 255, 255, 188, 197, 16, 2, 45, 63, 1, 0, 0, 192, 74, 113, 89, 64, 61, 142, 216, 85, 255, 255, 157, 202, 179, 182, 128, 63, 1, 0, 0, 192, 244, 39, 84, 64, 92, 148, 126, 87, 255, 255, 228, 206, 10, 175, 169, 63, 1, 0, 0, 192, 143, 211, 76, 64, 255, 153, 197, 88, 255, 255, 189, 210, 9, 5, 209, 63, 1, 0, 0, 192, 47, 134, 67, 64, 64, 159, 184, 89, 255, 255, 74, 214, 182, 87, 246, 63, 1, 0, 0, 192, 193, 86, 56, 64, 50, 164, 96, 90, 255, 255, 161, 217, 134, 165, 12, 64, 1, 0, 0, 192, 219, 96, 43, 64, 233, 168, 195, 90, 255, 255, 216, 220, 112, 196, 28, 64, 1, 0, 0, 192, 112, 196, 28, 64, 113, 173, 228, 90, 255, 255, 255, 223, 219, 96, 43, 64, 1, 0, 0, 192, 134, 165, 12, 64, 217, 177, 195, 90, 255, 255, 37, 227, 193, 86, 56, 64, 1, 0, 0, 192, 182, 87, 246, 63, 45, 182, 96, 90, 255, 255, 92, 230, 47, 134, 67, 64, 1, 0, 0, 192, 9, 5, 209, 63, 119, 186, 184, 89, 255, 255, 180, 233, 143, 211, 76, 64, 1, 0, 0, 192, 10, 175, 169, 63, 196, 190, 197, 88, 255, 255, 64, 237, 244, 39, 84, 64, 1, 0, 0, 192, 179, 182, 128, 63, 32, 195, 126, 87, 255, 255, 25, 241, 74, 113, 89, 64, 1, 0, 0, 192, 16, 2, 45, 63, 154, 199, 216, 85, 255, 255, 96, 245, 139, 162, 92, 64, 1, 0, 0, 192, 93, 216, 173, 62, 63, 204, 194, 83, 255, 255, 66, 250, 215, 179, 93, 64, 1, 0, 0, 192, 80, 141, 116, 37, 37, 209, 37, 81, 255, 255, 255, 255, 139, 162, 92, 64, 1, 0, 0, 192, 93, 216, 173, 190, 194, 211, 64, 76, 0, 0, 66, 250, 74, 113, 89, 64, 1, 0, 0, 192, 16, 2, 45, 191, 216, 213, 153, 71, 0, 0, 96, 245, 244, 39, 84, 64, 1, 0, 0, 192, 179, 182, 128, 191, 126, 215, 33, 67, 0, 0, 25, 241, 143, 211, 76, 64, 1, 0, 0, 192, 10, 175, 169, 191, 196, 216, 197, 62, 0, 0, 64, 237, 47, 134, 67, 64, 1, 0, 0, 192, 9, 5, 209, 191, 184, 217, 120, 58, 0, 0, 180, 233, 193, 86, 56, 64, 1, 0, 0, 192, 182, 87, 246, 191, 96, 218, 44, 54, 0, 0, 92, 230, 219, 96, 43, 64, 1, 0, 0, 192, 134, 165, 12, 192, 195, 218, 218, 49, 0, 0, 37, 227, 112, 196, 28, 64, 1, 0, 0, 192, 112, 196, 28, 192, 227, 218, 114, 45, 0, 0, 255, 223, 134, 165, 12, 64, 1, 0, 0, 192, 219, 96, 43, 192, 195, 218, 233, 40, 0, 0, 216, 220, 182, 87, 246, 63, 1, 0, 0, 192, 193, 86, 56, 192, 96, 218, 50, 36, 0, 0, 161, 217, 9, 5, 209, 63, 1, 0, 0, 192, 47, 134, 67, 192, 184, 217, 63, 31, 0, 0, 74, 214, 10, 175, 169, 63, 1, 0, 0, 192, 143, 211, 76, 192, 196, 216, 0, 26, 0, 0, 189, 210, 179, 182, 128, 63, 1, 0, 0, 192, 244, 39, 84, 192, 126, 215, 93, 20, 0, 0, 228, 206, 16, 2, 45, 63, 1, 0, 0, 192, 74, 113, 89, 192, 216, 213, 61, 14, 0, 0, 157, 202, 93, 216, 173, 62, 1, 0, 0, 192, 139, 162, 92, 192, 194, 211, 130, 7, 0, 0, 188, 197, 80, 141, 244, 37, 1, 0, 0, 192, 215, 179, 93, 192, 37, 209, 0, 0, 0, 0, 255, 191, 93, 216, 173, 190, 1, 0, 0, 192, 139, 162, 92, 192, 59, 44, 130, 7, 120, 11, 255, 191, 16, 2, 45, 191, 1, 0, 0, 192, 74, 113, 89, 192, 37, 42, 61, 14, 59, 21, 255, 191, 179, 182, 128, 191, 1, 0, 0, 192, 244, 39, 84, 192, 127, 40, 93, 20, 201, 29, 255, 191, 10, 175, 169, 191, 1, 0, 0, 192, 143, 211, 76, 192, 57, 39, 0, 26, 125, 37, 255, 191, 9, 5, 209, 191, 1, 0, 0, 192, 47, 134, 67, 192, 69, 38, 63, 31, 149, 44, 255, 191, 182, 87, 246, 191, 1, 0, 0, 192, 193, 86, 56, 192, 158, 37, 50, 36, 68, 51, 255, 191, 134, 165, 12, 192, 1, 0, 0, 192, 219, 96, 43, 192, 58, 37, 233, 40, 178, 57, 255, 191, 112, 196, 28, 192, 1, 0, 0, 192, 112, 196, 28, 192, 27, 37, 114, 45, 255, 63, 255, 191, 219, 96, 43, 192, 1, 0, 0, 192, 134, 165, 12, 192, 58, 37, 218, 49, 77, 70, 255, 191, 193, 86, 56, 192, 1, 0, 0, 192, 182, 87, 246, 191, 158, 37, 44, 54, 185, 76, 255, 191, 47, 134, 67, 192, 1, 0, 0, 192, 9, 5, 209, 191, 69, 38, 120, 58, 104, 83, 255, 191, 143, 211, 76, 192, 1, 0, 0, 192, 10, 175, 169, 191, 57, 39, 197, 62, 130, 90, 255, 191, 244, 39, 84, 192, 1, 0, 0, 192, 179, 182, 128, 191, 128, 40, 33, 67, 53, 98, 255, 191, 74, 113, 89, 192, 1, 0, 0, 192, 16, 2, 45, 191, 37, 42, 154, 71, 195, 106, 255, 191, 139, 162, 92, 192, 1, 0, 0, 192, 93, 216, 173, 190, 59, 44, 64, 76, 133, 116, 255, 191, 215, 179, 93, 192, 1, 0, 0, 192, 251, 105, 55, 166, 217, 46, 37, 81, 255, 127, 255, 191, 139, 162, 92, 192, 1, 0, 0, 192, 93, 216, 173, 62, 191, 51, 194, 83, 121, 139, 255, 191, 74, 113, 89, 192, 1, 0, 0, 192, 16, 2, 45, 63, 100, 56, 216, 85, 59, 149, 255, 191, 244, 39, 84, 192, 1, 0, 0, 192, 179, 182, 128, 63, 221, 60, 126, 87, 201, 157, 255, 191, 143, 211, 76, 192, 1, 0, 0, 192, 10, 175, 169, 63, 58, 65, 197, 88, 124, 165, 255, 191, 47, 134, 67, 192, 1, 0, 0, 192, 9, 5, 209, 63, 135, 69, 184, 89, 149, 172, 255, 191, 193, 86, 56, 192, 1, 0, 0, 192, 182, 87, 246, 63, 209, 73, 95, 90, 68, 179, 255, 191, 219, 96, 43, 192, 1, 0, 0, 192, 134, 165, 12, 64, 37, 78, 195, 90, 177, 185, 255, 191, 112, 196, 28, 192, 1, 0, 0, 192, 112, 196, 28, 64, 141, 82, 228, 90, 255, 191, 255, 191, 134, 165, 12, 192, 1, 0, 0, 192, 219, 96, 43, 64, 21, 87, 195, 90, 76, 198, 255, 191, 182, 87, 246, 191, 1, 0, 0, 192, 193, 86, 56, 64, 204, 91, 96, 90, 186, 204, 255, 191, 9, 5, 209, 191, 1, 0, 0, 192, 47, 134, 67, 64, 190, 96, 184, 89, 105, 211, 255, 191, 10, 175, 169, 191, 1, 0, 0, 192, 143, 211, 76, 64, 255, 101, 197, 88, 129, 218, 255, 191, 179, 182, 128, 191, 1, 0, 0, 192, 244, 39, 84, 64, 162, 107, 126, 87, 52, 226, 255, 191, 16, 2, 45, 191, 1, 0, 0, 192, 74, 113, 89, 64, 193, 113, 216, 85, 194, 234, 255, 191, 93, 216, 173, 190, 1, 0, 0, 192, 139, 162, 92, 64, 124, 120, 194, 83, 132, 244, 255, 191, 80, 141, 116, 166, 1, 0, 0, 192, 215, 179, 93, 64, 255, 127, 37, 81, 255, 255, 255, 191, 0, 0, 0, 0, 156, 126, 20, 192, 13, 136, 80, 64, 255, 127, 194, 74, 255, 255, 255, 191, 107, 132, 163, 62, 156, 126, 20, 192, 254, 134, 79, 64, 242, 134, 129, 77, 255, 255, 188, 197, 217, 186, 34, 63, 156, 126, 20, 192, 74, 134, 76, 64, 57, 141, 184, 79, 255, 255, 157, 202, 73, 34, 114, 63, 156, 126, 20, 192, 90, 141, 71, 64, 246, 146, 121, 81, 255, 255, 228, 206, 98, 154, 159, 63, 156, 126, 20, 192, 110, 168, 64, 64, 67, 152, 216, 82, 255, 255, 189, 210, 35, 154, 196, 63, 156, 126, 20, 192, 136, 232, 55, 64, 54, 157, 222, 83, 255, 255, 74, 214, 46, 181, 231, 63, 156, 126, 20, 192, 55, 99, 45, 64, 223, 161, 147, 84, 255, 255, 161, 217, 124, 74, 4, 64, 156, 126, 20, 192, 110, 50, 33, 64, 79, 166, 254, 84, 255, 255, 216, 220, 57, 116, 19, 64, 156, 126, 20, 192, 57, 116, 19, 64, 144, 170, 33, 85, 255, 255, 255, 223, 110, 50, 33, 64, 156, 126, 20, 192, 124, 74, 4, 64, 174, 174, 254, 84, 255, 255, 37, 227, 55, 99, 45, 64, 156, 126, 20, 192, 46, 181, 231, 63, 178, 178, 147, 84, 255, 255, 92, 230, 136, 232, 55, 64, 156, 126, 20, 192, 35, 154, 196, 63, 167, 182, 222, 83, 255, 255, 180, 233, 110, 168, 64, 64, 156, 126, 20, 192, 98, 154, 159, 63, 148, 186, 216, 82, 255, 255, 64, 237, 90, 141, 71, 64, 156, 126, 20, 192, 73, 34, 114, 63, 131, 190, 122, 81, 255, 255, 25, 241, 74, 134, 76, 64, 156, 126, 20, 192, 217, 186, 34, 63, 125, 194, 184, 79, 255, 255, 96, 245, 254, 134, 79, 64, 156, 126, 20, 192, 107, 132, 163, 62, 141, 198, 130, 77, 255, 255, 66, 250, 13, 136, 80, 64, 156, 126, 20, 192, 4, 6, 102, 37, 194, 202, 193, 74, 255, 255, 255, 255, 254, 134, 79, 64, 156, 126, 20, 192, 107, 132, 163, 190, 129, 205, 143, 70, 0, 0, 66, 250, 74, 134, 76, 64, 156, 126, 20, 192, 217, 186, 34, 191, 183, 207, 126, 66, 0, 0, 96, 245, 90, 141, 71, 64, 156, 126, 20, 192, 73, 34, 114, 191, 121, 209, 131, 62, 0, 0, 25, 241, 110, 168, 64, 64, 156, 126, 20, 192, 98, 154, 159, 191, 216, 210, 148, 58, 0, 0, 64, 237, 136, 232, 55, 64, 156, 126, 20, 192, 35, 154, 196, 191, 221, 211, 167, 54, 0, 0, 180, 233, 55, 99, 45, 64, 156, 126, 20, 192, 46, 181, 231, 191, 147, 212, 179, 50, 0, 0, 92, 230, 110, 50, 33, 64, 156, 126, 20, 192, 124, 74, 4, 192, 253, 212, 174, 46, 0, 0, 37, 227, 57, 116, 19, 64, 156, 126, 20, 192, 57, 116, 19, 192, 33, 213, 143, 42, 0, 0, 255, 223, 124, 74, 4, 64, 156, 126, 20, 192, 110, 50, 33, 192, 253, 212, 78, 38, 0, 0, 216, 220, 46, 181, 231, 63, 156, 126, 20, 192, 55, 99, 45, 192, 147, 212, 224, 33, 0, 0, 161, 217, 35, 154, 196, 63, 156, 126, 20, 192, 136, 232, 55, 192, 221, 211, 53, 29, 0, 0, 74, 214, 98, 154, 159, 63, 156, 126, 20, 192, 110, 168, 64, 192, 216, 210, 66, 24, 0, 0, 189, 210, 73, 34, 114, 63, 156, 126, 20, 192, 90, 141, 71, 192, 121, 209, 246, 18, 0, 0, 228, 206, 217, 186, 34, 63, 156, 126, 20, 192, 74, 134, 76, 192, 183, 207, 56, 13, 0, 0, 157, 202, 107, 132, 163, 62, 156, 126, 20, 192, 254, 134, 79, 192, 129, 205, 243, 6, 0, 0, 188, 197, 4, 6, 230, 37, 156, 126, 20, 192, 13, 136, 80, 192, 194, 202, 0, 0, 0, 0, 255, 191, 107, 132, 163, 190, 156, 126, 20, 192, 254, 134, 79, 192, 124, 50, 243, 6, 120, 11, 255, 191, 217, 186, 34, 191, 156, 126, 20, 192, 74, 134, 76, 192, 70, 48, 56, 13, 59, 21, 255, 191, 73, 34, 114, 191, 156, 126, 20, 192, 90, 141, 71, 192, 133, 46, 246, 18, 201, 29, 255, 191, 98, 154, 159, 191, 156, 126, 20, 192, 110, 168, 64, 192, 37, 45, 66, 24, 125, 37, 255, 191, 35, 154, 196, 191, 156, 126, 20, 192, 136, 232, 55, 192, 32, 44, 53, 29, 149, 44, 255, 191, 46, 181, 231, 191, 156, 126, 20, 192, 55, 99, 45, 192, 107, 43, 224, 33, 68, 51, 255, 191, 124, 74, 4, 192, 156, 126, 20, 192, 110, 50, 33, 192, 1, 43, 78, 38, 178, 57, 255, 191, 57, 116, 19, 192, 156, 126, 20, 192, 57, 116, 19, 192, 221, 42, 144, 42, 255, 63, 255, 191, 110, 50, 33, 192, 156, 126, 20, 192, 124, 74, 4, 192, 1, 43, 174, 46, 77, 70, 255, 191, 55, 99, 45, 192, 156, 126, 20, 192, 46, 181, 231, 191, 106, 43, 179, 50, 185, 76, 255, 191, 136, 232, 55, 192, 156, 126, 20, 192, 35, 154, 196, 191, 32, 44, 167, 54, 104, 83, 255, 191, 110, 168, 64, 192, 156, 126, 20, 192, 98, 154, 159, 191, 37, 45, 147, 58, 130, 90, 255, 191, 90, 141, 71, 192, 156, 126, 20, 192, 73, 34, 114, 191, 133, 46, 131, 62, 53, 98, 255, 191, 74, 134, 76, 192, 156, 126, 20, 192, 217, 186, 34, 191, 70, 48, 126, 66, 195, 106, 255, 191, 254, 134, 79, 192, 156, 126, 20, 192, 107, 132, 163, 190, 125, 50, 143, 70, 133, 116, 255, 191, 13, 136, 80, 192, 156, 126, 20, 192, 130, 132, 44, 166, 59, 53, 194, 74, 255, 127, 255, 191, 254, 134, 79, 192, 156, 126, 20, 192, 107, 132, 163, 62, 112, 57, 129, 77, 121, 139, 255, 191, 74, 134, 76, 192, 156, 126, 20, 192, 217, 186, 34, 63, 129, 61, 184, 79, 59, 149, 255, 191, 90, 141, 71, 192, 156, 126, 20, 192, 73, 34, 114, 63, 123, 65, 122, 81, 201, 157, 255, 191, 110, 168, 64, 192, 156, 126, 20, 192, 98, 154, 159, 63, 106, 69, 216, 82, 124, 165, 255, 191, 136, 232, 55, 192, 156, 126, 20, 192, 35, 154, 196, 63, 87, 73, 222, 83, 149, 172, 255, 191, 55, 99, 45, 192, 156, 126, 20, 192, 46, 181, 231, 63, 75, 77, 147, 84, 68, 179, 255, 191, 110, 50, 33, 192, 156, 126, 20, 192, 124, 74, 4, 64, 80, 81, 254, 84, 177, 185, 255, 191, 57, 116, 19, 192, 156, 126, 20, 192, 57, 116, 19, 64, 110, 85, 33, 85, 255, 191, 255, 191, 124, 74, 4, 192, 156, 126, 20, 192, 110, 50, 33, 64, 175, 89, 254, 84, 76, 198, 255, 191, 46, 181, 231, 191, 156, 126, 20, 192, 55, 99, 45, 64, 31, 94, 147, 84, 186, 204, 255, 191, 35, 154, 196, 191, 156, 126, 20, 192, 136, 232, 55, 64, 200, 98, 222, 83, 105, 211, 255, 191, 98, 154, 159, 191, 156, 126, 20, 192, 110, 168, 64, 64, 187, 103, 216, 82, 129, 218, 255, 191, 73, 34, 114, 191, 156, 126, 20, 192, 90, 141, 71, 64, 8, 109, 122, 81, 52, 226, 255, 191, 217, 186, 34, 191, 156, 126, 20, 192, 74, 134, 76, 64, 197, 114, 184, 79, 194, 234, 255, 191, 107, 132, 163, 190, 156, 126, 20, 192, 254, 134, 79, 64, 12, 121, 129, 77, 132, 244, 255, 191, 4, 6, 102, 166, 156, 126, 20, 192, 13, 136, 80, 64, 255, 127, 194, 74, 255, 255, 255, 191, 0, 0, 0, 0, 245, 164, 39, 192, 205, 120, 65, 64, 255, 127, 147, 68, 255, 255, 255, 191, 95, 181, 151, 62, 245, 164, 39, 192, 78, 138, 64, 64, 102, 134, 102, 71, 255, 255, 188, 197, 92, 250, 22, 63, 245, 164, 39, 192, 30, 193, 61, 64, 57, 140, 177, 73, 255, 255, 157, 202, 206, 165, 96, 63, 245, 164, 39, 192, 28, 36, 57, 64, 147, 145, 133, 75, 255, 255, 228, 206, 180, 19, 148, 63, 245, 164, 39, 192, 165, 190, 50, 64, 137, 150, 245, 76, 255, 255, 189, 210, 110, 103, 182, 63, 245, 164, 39, 192, 129, 160, 42, 64, 45, 155, 8, 78, 255, 255, 74, 214, 117, 249, 214, 63, 245, 164, 39, 192, 177, 221, 32, 64, 141, 159, 200, 78, 255, 255, 161, 217, 122, 121, 245, 63, 245, 164, 39, 192, 72, 142, 21, 64, 181, 163, 56, 79, 255, 255, 216, 220, 38, 206, 8, 64, 245, 164, 39, 192, 38, 206, 8, 64, 174, 167, 94, 79, 255, 255, 255, 223, 72, 142, 21, 64, 245, 164, 39, 192, 122, 121, 245, 63, 130, 171, 56, 79, 255, 255, 37, 227, 177, 221, 32, 64, 245, 164, 39, 192, 117, 249, 214, 63, 57, 175, 200, 78, 255, 255, 92, 230, 129, 160, 42, 64, 245, 164, 39, 192, 110, 103, 182, 63, 217, 178, 8, 78, 255, 255, 180, 233, 165, 190, 50, 64, 245, 164, 39, 192, 180, 19, 148, 63, 106, 182, 245, 76, 255, 255, 64, 237, 28, 36, 57, 64, 245, 164, 39, 192, 206, 165, 96, 63, 242, 185, 133, 75, 255, 255, 25, 241, 30, 193, 61, 64, 245, 164, 39, 192, 92, 250, 22, 63, 119, 189, 177, 73, 255, 255, 96, 245, 78, 138, 64, 64, 245, 164, 39, 192, 95, 181, 151, 62, 255, 192, 102, 71, 255, 255, 66, 250, 205, 120, 65, 64, 245, 164, 39, 192, 110, 105, 85, 37, 147, 196, 147, 68, 255, 255, 255, 255, 78, 138, 64, 64, 245, 164, 39, 192, 95, 181, 151, 190, 102, 199, 0, 65, 0, 0, 66, 250, 30, 193, 61, 64, 245, 164, 39, 192, 92, 250, 22, 191, 176, 201, 119, 61, 0, 0, 96, 245, 28, 36, 57, 64, 245, 164, 39, 192, 206, 165, 96, 191, 134, 203, 242, 57, 0, 0, 25, 241, 165, 190, 50, 64, 245, 164, 39, 192, 180, 19, 148, 191, 245, 204, 107, 54, 0, 0, 64, 237, 129, 160, 42, 64, 245, 164, 39, 192, 110, 103, 182, 191, 8, 206, 218, 50, 0, 0, 180, 233, 177, 221, 32, 64, 245, 164, 39, 192, 117, 249, 214, 191, 199, 206, 56, 47, 0, 0, 92, 230, 72, 142, 21, 64, 245, 164, 39, 192, 122, 121, 245, 191, 56, 207, 131, 43, 0, 0, 37, 227, 38, 206, 8, 64, 245, 164, 39, 192, 38, 206, 8, 192, 93, 207, 175, 39, 0, 0, 255, 223, 122, 121, 245, 63, 245, 164, 39, 192, 72, 142, 21, 192, 56, 207, 181, 35, 0, 0, 216, 220, 117, 249, 214, 63, 245, 164, 39, 192, 177, 221, 32, 192, 199, 206, 142, 31, 0, 0, 161, 217, 110, 103, 182, 63, 245, 164, 39, 192, 129, 160, 42, 192, 8, 206, 45, 27, 0, 0, 74, 214, 180, 19, 148, 63, 245, 164, 39, 192, 165, 190, 50, 192, 245, 204, 138, 22, 0, 0, 189, 210, 206, 165, 96, 63, 245, 164, 39, 192, 28, 36, 57, 192, 134, 203, 147, 17, 0, 0, 228, 206, 92, 250, 22, 63, 245, 164, 39, 192, 30, 193, 61, 192, 176, 201, 56, 12, 0, 0, 157, 202, 95, 181, 151, 62, 245, 164, 39, 192, 78, 138, 64, 192, 102, 199, 102, 6, 0, 0, 188, 197, 110, 105, 213, 37, 245, 164, 39, 192, 205, 120, 65, 192, 147, 196, 0, 0, 0, 0, 255, 191, 95, 181, 151, 190, 245, 164, 39, 192, 78, 138, 64, 192, 151, 56, 102, 6, 120, 11, 255, 191, 92, 250, 22, 191, 245, 164, 39, 192, 30, 193, 61, 192, 77, 54, 56, 12, 59, 21, 255, 191, 206, 165, 96, 191, 245, 164, 39, 192, 28, 36, 57, 192, 120, 52, 147, 17, 201, 29, 255, 191, 180, 19, 148, 191, 245, 164, 39, 192, 165, 190, 50, 192, 9, 51, 138, 22, 125, 37, 255, 191, 110, 103, 182, 191, 245, 164, 39, 192, 129, 160, 42, 192, 246, 49, 45, 27, 149, 44, 255, 191, 117, 249, 214, 191, 245, 164, 39, 192, 177, 221, 32, 192, 54, 49, 142, 31, 68, 51, 255, 191, 122, 121, 245, 191, 245, 164, 39, 192, 72, 142, 21, 192, 198, 48, 181, 35, 178, 57, 255, 191, 38, 206, 8, 192, 245, 164, 39, 192, 38, 206, 8, 192, 161, 48, 175, 39, 255, 63, 255, 191, 72, 142, 21, 192, 245, 164, 39, 192, 122, 121, 245, 191, 198, 48, 131, 43, 77, 70, 255, 191, 177, 221, 32, 192, 245, 164, 39, 192, 117, 249, 214, 191, 54, 49, 56, 47, 185, 76, 255, 191, 129, 160, 42, 192, 245, 164, 39, 192, 110, 103, 182, 191, 246, 49, 218, 50, 104, 83, 255, 191, 165, 190, 50, 192, 245, 164, 39, 192, 180, 19, 148, 191, 9, 51, 107, 54, 130, 90, 255, 191, 28, 36, 57, 192, 245, 164, 39, 192, 206, 165, 96, 191, 120, 52, 242, 57, 53, 98, 255, 191, 30, 193, 61, 192, 245, 164, 39, 192, 92, 250, 22, 191, 77, 54, 119, 61, 195, 106, 255, 191, 78, 138, 64, 192, 245, 164, 39, 192, 95, 181, 151, 190, 151, 56, 0, 65, 133, 116, 255, 191, 205, 120, 65, 192, 245, 164, 39, 192, 17, 15, 32, 166, 106, 59, 147, 68, 255, 127, 255, 191, 78, 138, 64, 192, 245, 164, 39, 192, 95, 181, 151, 62, 255, 62, 103, 71, 121, 139, 255, 191, 30, 193, 61, 192, 245, 164, 39, 192, 92, 250, 22, 63, 136, 66, 177, 73, 59, 149, 255, 191, 28, 36, 57, 192, 245, 164, 39, 192, 206, 165, 96, 63, 12, 70, 134, 75, 201, 157, 255, 191, 165, 190, 50, 192, 245, 164, 39, 192, 180, 19, 148, 63, 148, 73, 245, 76, 124, 165, 255, 191, 129, 160, 42, 192, 245, 164, 39, 192, 110, 103, 182, 63, 37, 77, 8, 78, 149, 172, 255, 191, 177, 221, 32, 192, 245, 164, 39, 192, 117, 249, 214, 63, 197, 80, 200, 78, 68, 179, 255, 191, 72, 142, 21, 192, 245, 164, 39, 192, 122, 121, 245, 63, 124, 84, 56, 79, 177, 185, 255, 191, 38, 206, 8, 192, 245, 164, 39, 192, 38, 206, 8, 64, 80, 88, 94, 79, 255, 191, 255, 191, 122, 121, 245, 191, 245, 164, 39, 192, 72, 142, 21, 64, 73, 92, 56, 79, 76, 198, 255, 191, 117, 249, 214, 191, 245, 164, 39, 192, 177, 221, 32, 64, 113, 96, 200, 78, 186, 204, 255, 191, 110, 103, 182, 191, 245, 164, 39, 192, 129, 160, 42, 64, 209, 100, 8, 78, 105, 211, 255, 191, 180, 19, 148, 191, 245, 164, 39, 192, 165, 190, 50, 64, 117, 105, 245, 76, 129, 218, 255, 191, 206, 165, 96, 191, 245, 164, 39, 192, 28, 36, 57, 64, 107, 110, 134, 75, 52, 226, 255, 191, 92, 250, 22, 191, 245, 164, 39, 192, 30, 193, 61, 64, 197, 115, 176, 73, 194, 234, 255, 191, 95, 181, 151, 190, 245, 164, 39, 192, 78, 138, 64, 64, 152, 121, 102, 71, 132, 244, 255, 191, 110, 105, 85, 166, 245, 164, 39, 192, 205, 120, 65, 64, 255, 127, 147, 68, 255, 255, 255, 191, 0, 0, 0, 0, 162, 70, 57, 192, 5, 169, 48, 64, 255, 127, 121, 62, 255, 255, 255, 191, 158, 134, 138, 62, 162, 70, 57, 192, 64, 207, 47, 64, 218, 133, 82, 65, 255, 255, 188, 197, 219, 219, 9, 63, 162, 70, 57, 192, 8, 68, 45, 64, 57, 139, 167, 67, 255, 255, 157, 202, 133, 32, 77, 63, 162, 70, 57, 192, 165, 13, 41, 64, 46, 144, 135, 69, 255, 255, 228, 206, 187, 53, 135, 63, 162, 70, 57, 192, 120, 54, 35, 64, 203, 148, 0, 71, 255, 255, 189, 210, 219, 141, 166, 63, 162, 70, 57, 192, 232, 204, 27, 64, 29, 153, 28, 72, 255, 255, 74, 214, 90, 75, 196, 63, 162, 70, 57, 192, 59, 227, 18, 64, 49, 157, 227, 72, 255, 255, 161, 217, 230, 36, 224, 63, 162, 70, 57, 192, 105, 143, 8, 64, 14, 161, 87, 73, 255, 255, 216, 220, 214, 213, 249, 63, 162, 70, 57, 192, 214, 213, 249, 63, 190, 164, 126, 73, 255, 255, 255, 223, 105, 143, 8, 64, 162, 70, 57, 192, 230, 36, 224, 63, 72, 168, 86, 73, 255, 255, 37, 227, 59, 227, 18, 64, 162, 70, 57, 192, 90, 75, 196, 63, 176, 171, 227, 72, 255, 255, 92, 230, 232, 204, 27, 64, 162, 70, 57, 192, 219, 141, 166, 63, 254, 174, 28, 72, 255, 255, 180, 233, 120, 54, 35, 64, 162, 70, 57, 192, 187, 53, 135, 63, 52, 178, 0, 71, 255, 255, 64, 237, 165, 13, 41, 64, 162, 70, 57, 192, 133, 32, 77, 63, 88, 181, 135, 69, 255, 255, 25, 241, 8, 68, 45, 64, 162, 70, 57, 192, 219, 219, 9, 63, 109, 184, 167, 67, 255, 255, 96, 245, 64, 207, 47, 64, 162, 70, 57, 192, 158, 134, 138, 62, 119, 187, 82, 65, 255, 255, 66, 250, 5, 169, 48, 64, 162, 70, 57, 192, 21, 222, 66, 37, 121, 190, 121, 62, 255, 255, 255, 255, 64, 207, 47, 64, 162, 70, 57, 192, 158, 134, 138, 190, 83, 193, 120, 59, 0, 0, 66, 250, 8, 68, 45, 64, 162, 70, 57, 192, 219, 219, 9, 191, 167, 195, 110, 56, 0, 0, 96, 245, 165, 13, 41, 64, 162, 70, 57, 192, 133, 32, 77, 191, 135, 197, 88, 53, 0, 0, 25, 241, 120, 54, 35, 64, 162, 70, 57, 192, 187, 53, 135, 191, 0, 199, 52, 50, 0, 0, 64, 237, 232, 204, 27, 64, 162, 70, 57, 192, 219, 141, 166, 191, 28, 200, 254, 46, 0, 0, 180, 233, 59, 227, 18, 64, 162, 70, 57, 192, 90, 75, 196, 191, 226, 200, 177, 43, 0, 0, 92, 230, 105, 143, 8, 64, 162, 70, 57, 192, 230, 36, 224, 191, 87, 201, 71, 40, 0, 0, 37, 227, 214, 213, 249, 63, 162, 70, 57, 192, 214, 213, 249, 191, 126, 201, 191, 36, 0, 0, 255, 223, 230, 36, 224, 63, 162, 70, 57, 192, 105, 143, 8, 192, 87, 201, 15, 33, 0, 0, 216, 220, 90, 75, 196, 63, 162, 70, 57, 192, 59, 227, 18, 192, 226, 200, 48, 29, 0, 0, 161, 217, 219, 141, 166, 63, 162, 70, 57, 192, 232, 204, 27, 192, 28, 200, 29, 25, 0, 0, 74, 214, 187, 53, 135, 63, 162, 70, 57, 192, 120, 54, 35, 192, 0, 199, 203, 20, 0, 0, 189, 210, 133, 32, 77, 63, 162, 70, 57, 192, 165, 13, 41, 192, 135, 197, 45, 16, 0, 0, 228, 206, 219, 219, 9, 63, 162, 70, 57, 192, 8, 68, 45, 192, 167, 195, 56, 11, 0, 0, 157, 202, 158, 134, 138, 62, 162, 70, 57, 192, 64, 207, 47, 192, 83, 193, 219, 5, 0, 0, 188, 197, 21, 222, 194, 37, 162, 70, 57, 192, 5, 169, 48, 192, 121, 190, 0, 0, 0, 0, 255, 191, 158, 134, 138, 190, 162, 70, 57, 192, 64, 207, 47, 192, 171, 62, 219, 5, 120, 11, 255, 191, 219, 219, 9, 191, 162, 70, 57, 192, 8, 68, 45, 192, 86, 60, 56, 11, 59, 21, 255, 191, 133, 32, 77, 191, 162, 70, 57, 192, 165, 13, 41, 192, 119, 58, 45, 16, 201, 29, 255, 191, 187, 53, 135, 191, 162, 70, 57, 192, 120, 54, 35, 192, 254, 56, 203, 20, 125, 37, 255, 191, 219, 141, 166, 191, 162, 70, 57, 192, 232, 204, 27, 192, 226, 55, 29, 25, 149, 44, 255, 191, 90, 75, 196, 191, 162, 70, 57, 192, 59, 227, 18, 192, 28, 55, 48, 29, 68, 51, 255, 191, 230, 36, 224, 191, 162, 70, 57, 192, 105, 143, 8, 192, 167, 54, 15, 33, 178, 57, 255, 191, 214, 213, 249, 191, 162, 70, 57, 192, 214, 213, 249, 191, 128, 54, 191, 36, 255, 63, 255, 191, 105, 143, 8, 192, 162, 70, 57, 192, 230, 36, 224, 191, 167, 54, 71, 40, 77, 70, 255, 191, 59, 227, 18, 192, 162, 70, 57, 192, 90, 75, 196, 191, 28, 55, 177, 43, 185, 76, 255, 191, 232, 204, 27, 192, 162, 70, 57, 192, 219, 141, 166, 191, 226, 55, 254, 46, 104, 83, 255, 191, 120, 54, 35, 192, 162, 70, 57, 192, 187, 53, 135, 191, 254, 56, 52, 50, 130, 90, 255, 191, 165, 13, 41, 192, 162, 70, 57, 192, 133, 32, 77, 191, 119, 58, 88, 53, 53, 98, 255, 191, 8, 68, 45, 192, 162, 70, 57, 192, 219, 219, 9, 191, 86, 60, 109, 56, 195, 106, 255, 191, 64, 207, 47, 192, 162, 70, 57, 192, 158, 134, 138, 190, 171, 62, 119, 59, 133, 116, 255, 191, 5, 169, 48, 192, 162, 70, 57, 192, 143, 38, 18, 166, 133, 65, 121, 62, 255, 127, 255, 191, 64, 207, 47, 192, 162, 70, 57, 192, 158, 134, 138, 62, 134, 68, 82, 65, 121, 139, 255, 191, 8, 68, 45, 192, 162, 70, 57, 192, 219, 219, 9, 63, 145, 71, 167, 67, 59, 149, 255, 191, 165, 13, 41, 192, 162, 70, 57, 192, 133, 32, 77, 63, 166, 74, 135, 69, 201, 157, 255, 191, 120, 54, 35, 192, 162, 70, 57, 192, 187, 53, 135, 63, 202, 77, 0, 71, 124, 165, 255, 191, 232, 204, 27, 192, 162, 70, 57, 192, 219, 141, 166, 63, 0, 81, 28, 72, 149, 172, 255, 191, 59, 227, 18, 192, 162, 70, 57, 192, 90, 75, 196, 63, 78, 84, 227, 72, 68, 179, 255, 191, 105, 143, 8, 192, 162, 70, 57, 192, 230, 36, 224, 63, 182, 87, 86, 73, 177, 185, 255, 191, 214, 213, 249, 191, 162, 70, 57, 192, 214, 213, 249, 63, 64, 91, 126, 73, 255, 191, 255, 191, 230, 36, 224, 191, 162, 70, 57, 192, 105, 143, 8, 64, 240, 94, 87, 73, 76, 198, 255, 191, 90, 75, 196, 191, 162, 70, 57, 192, 59, 227, 18, 64, 205, 98, 227, 72, 186, 204, 255, 191, 219, 141, 166, 191, 162, 70, 57, 192, 232, 204, 27, 64, 225, 102, 28, 72, 105, 211, 255, 191, 187, 53, 135, 191, 162, 70, 57, 192, 120, 54, 35, 64, 51, 107, 0, 71, 129, 218, 255, 191, 133, 32, 77, 191, 162, 70, 57, 192, 165, 13, 41, 64, 208, 111, 134, 69, 52, 226, 255, 191, 219, 219, 9, 191, 162, 70, 57, 192, 8, 68, 45, 64, 197, 116, 166, 67, 194, 234, 255, 191, 158, 134, 138, 190, 162, 70, 57, 192, 64, 207, 47, 64, 36, 122, 82, 65, 132, 244, 255, 191, 21, 222, 66, 166, 162, 70, 57, 192, 5, 169, 48, 64, 255, 127, 121, 62, 255, 255, 255, 191, 0, 0, 0, 0, 199, 58, 73, 192, 170, 63, 30, 64, 255, 127, 87, 56, 255, 255, 255, 191, 102, 45, 120, 62, 199, 58, 73, 192, 151, 124, 29, 64, 77, 133, 42, 59, 255, 255, 188, 197, 120, 251, 246, 62, 199, 58, 73, 192, 62, 53, 27, 64, 51, 138, 126, 61, 255, 255, 157, 202, 169, 191, 55, 63, 199, 58, 73, 192, 63, 111, 23, 64, 191, 142, 97, 63, 255, 255, 228, 206, 146, 60, 114, 63, 199, 58, 73, 192, 229, 51, 18, 64, 255, 146, 221, 64, 255, 255, 189, 210, 34, 50, 149, 63, 199, 58, 73, 192, 25, 144, 11, 64, 252, 150, 253, 65, 255, 255, 74, 214, 38, 214, 175, 63, 199, 58, 73, 192, 56, 148, 3, 64, 190, 154, 199, 66, 255, 255, 161, 217, 168, 200, 200, 63, 199, 58, 73, 192, 225, 167, 244, 63, 78, 158, 62, 67, 255, 255, 216, 220, 37, 204, 223, 63, 199, 58, 73, 192, 37, 204, 223, 63, 178, 161, 101, 67, 255, 255, 255, 223, 225, 167, 244, 63, 199, 58, 73, 192, 168, 200, 200, 63, 238, 164, 62, 67, 255, 255, 37, 227, 56, 148, 3, 64, 199, 58, 73, 192, 38, 214, 175, 63, 7, 168, 199, 66, 255, 255, 92, 230, 25, 144, 11, 64, 199, 58, 73, 192, 34, 50, 149, 63, 0, 171, 253, 65, 255, 255, 180, 233, 229, 51, 18, 64, 199, 58, 73, 192, 146, 60, 114, 63, 221, 173, 221, 64, 255, 255, 64, 237, 63, 111, 23, 64, 199, 58, 73, 192, 169, 191, 55, 63, 160, 176, 97, 63, 255, 255, 25, 241, 62, 53, 27, 64, 199, 58, 73, 192, 120, 251, 246, 62, 74, 179, 126, 61, 255, 255, 96, 245, 151, 124, 29, 64, 199, 58, 73, 192, 102, 45, 120, 62, 221, 181, 42, 59, 255, 255, 66, 250, 170, 63, 30, 64, 199, 58, 73, 192, 243, 142, 46, 37, 88, 184, 87, 56, 255, 255, 255, 255, 151, 124, 29, 64, 199, 58, 73, 192, 102, 45, 120, 190, 43, 187, 221, 53, 0, 0, 66, 250, 62, 53, 27, 64, 199, 58, 73, 192, 120, 251, 246, 190, 126, 189, 74, 51, 0, 0, 96, 245, 63, 111, 23, 64, 199, 58, 73, 192, 169, 191, 55, 191, 96, 191, 160, 48, 0, 0, 25, 241, 229, 51, 18, 64, 199, 58, 73, 192, 146, 60, 114, 191, 221, 192, 222, 45, 0, 0, 64, 237, 25, 144, 11, 64, 199, 58, 73, 192, 34, 50, 149, 191, 253, 193, 1, 43, 0, 0, 180, 233, 56, 148, 3, 64, 199, 58, 73, 192, 38, 214, 175, 191, 198, 194, 7, 40, 0, 0, 92, 230, 225, 167, 244, 63, 199, 58, 73, 192, 168, 200, 200, 191, 61, 195, 238, 36, 0, 0, 37, 227, 37, 204, 223, 63, 199, 58, 73, 192, 37, 204, 223, 191, 101, 195, 178, 33, 0, 0, 255, 223, 168, 200, 200, 63, 199, 58, 73, 192, 225, 167, 244, 191, 61, 195, 78, 30, 0, 0, 216, 220, 38, 214, 175, 63, 199, 58, 73, 192, 56, 148, 3, 192, 198, 194, 191, 26, 0, 0, 161, 217, 34, 50, 149, 63, 199, 58, 73, 192, 25, 144, 11, 192, 253, 193, 252, 22, 0, 0, 74, 214, 146, 60, 114, 63, 199, 58, 73, 192, 229, 51, 18, 192, 221, 192, 255, 18, 0, 0, 189, 210, 169, 191, 55, 63, 199, 58, 73, 192, 63, 111, 23, 192, 96, 191, 192, 14, 0, 0, 228, 206, 120, 251, 246, 62, 199, 58, 73, 192, 62, 53, 27, 192, 126, 189, 50, 10, 0, 0, 157, 202, 102, 45, 120, 62, 199, 58, 73, 192, 151, 124, 29, 192, 43, 187, 78, 5, 0, 0, 188, 197, 243, 142, 174, 37, 199, 58, 73, 192, 170, 63, 30, 192, 88, 184, 0, 0, 0, 0, 255, 191, 102, 45, 120, 190, 199, 58, 73, 192, 151, 124, 29, 192, 211, 68, 78, 5, 120, 11, 255, 191, 120, 251, 246, 190, 199, 58, 73, 192, 62, 53, 27, 192, 128, 66, 50, 10, 59, 21, 255, 191, 169, 191, 55, 191, 199, 58, 73, 192, 63, 111, 23, 192, 158, 64, 192, 14, 201, 29, 255, 191, 146, 60, 114, 191, 199, 58, 73, 192, 229, 51, 18, 192, 32, 63, 255, 18, 125, 37, 255, 191, 34, 50, 149, 191, 199, 58, 73, 192, 25, 144, 11, 192, 1, 62, 252, 22, 149, 44, 255, 191, 38, 214, 175, 191, 199, 58, 73, 192, 56, 148, 3, 192, 55, 61, 191, 26, 68, 51, 255, 191, 168, 200, 200, 191, 199, 58, 73, 192, 225, 167, 244, 191, 193, 60, 78, 30, 178, 57, 255, 191, 37, 204, 223, 191, 199, 58, 73, 192, 37, 204, 223, 191, 153, 60, 178, 33, 255, 63, 255, 191, 225, 167, 244, 191, 199, 58, 73, 192, 168, 200, 200, 191, 193, 60, 238, 36, 77, 70, 255, 191, 56, 148, 3, 192, 199, 58, 73, 192, 38, 214, 175, 191, 55, 61, 7, 40, 185, 76, 255, 191, 25, 144, 11, 192, 199, 58, 73, 192, 34, 50, 149, 191, 1, 62, 1, 43, 104, 83, 255, 191, 229, 51, 18, 192, 199, 58, 73, 192, 146, 60, 114, 191, 32, 63, 222, 45, 130, 90, 255, 191, 63, 111, 23, 192, 199, 58, 73, 192, 169, 191, 55, 191, 158, 64, 160, 48, 53, 98, 255, 191, 62, 53, 27, 192, 199, 58, 73, 192, 120, 251, 246, 190, 128, 66, 74, 51, 195, 106, 255, 191, 151, 124, 29, 192, 199, 58, 73, 192, 102, 45, 120, 190, 211, 68, 221, 53, 133, 116, 255, 191, 170, 63, 30, 192, 199, 58, 73, 192, 54, 235, 2, 166, 166, 71, 87, 56, 255, 127, 255, 191, 151, 124, 29, 192, 199, 58, 73, 192, 102, 45, 120, 62, 33, 74, 42, 59, 121, 139, 255, 191, 62, 53, 27, 192, 199, 58, 73, 192, 120, 251, 246, 62, 180, 76, 126, 61, 59, 149, 255, 191, 63, 111, 23, 192, 199, 58, 73, 192, 169, 191, 55, 63, 94, 79, 97, 63, 201, 157, 255, 191, 229, 51, 18, 192, 199, 58, 73, 192, 146, 60, 114, 63, 33, 82, 221, 64, 124, 165, 255, 191, 25, 144, 11, 192, 199, 58, 73, 192, 34, 50, 149, 63, 254, 84, 253, 65, 149, 172, 255, 191, 56, 148, 3, 192, 199, 58, 73, 192, 38, 214, 175, 63, 247, 87, 199, 66, 68, 179, 255, 191, 225, 167, 244, 191, 199, 58, 73, 192, 168, 200, 200, 63, 16, 91, 62, 67, 177, 185, 255, 191, 37, 204, 223, 191, 199, 58, 73, 192, 37, 204, 223, 63, 76, 94, 101, 67, 255, 191, 255, 191, 168, 200, 200, 191, 199, 58, 73, 192, 225, 167, 244, 63, 176, 97, 62, 67, 76, 198, 255, 191, 38, 214, 175, 191, 199, 58, 73, 192, 56, 148, 3, 64, 64, 101, 199, 66, 186, 204, 255, 191, 34, 50, 149, 191, 199, 58, 73, 192, 25, 144, 11, 64, 2, 105, 253, 65, 105, 211, 255, 191, 146, 60, 114, 191, 199, 58, 73, 192, 229, 51, 18, 64, 255, 108, 221, 64, 129, 218, 255, 191, 169, 191, 55, 191, 199, 58, 73, 192, 63, 111, 23, 64, 63, 113, 97, 63, 52, 226, 255, 191, 120, 251, 246, 190, 199, 58, 73, 192, 62, 53, 27, 64, 203, 117, 126, 61, 194, 234, 255, 191, 102, 45, 120, 190, 199, 58, 73, 192, 151, 124, 29, 64, 177, 122, 42, 59, 132, 244, 255, 191, 243, 142, 46, 166, 199, 58, 73, 192, 170, 63, 30, 64, 255, 127, 87, 56, 255, 255, 255, 191, 0, 0, 0, 0, 100, 92, 87, 192, 112, 103, 10, 64, 255, 127, 19, 50, 255, 255, 255, 191, 54, 14, 89, 62, 100, 92, 87, 192, 211, 188, 9, 64, 187, 132, 209, 52, 255, 255, 188, 197, 165, 2, 216, 62, 100, 92, 87, 192, 162, 190, 7, 64, 35, 137, 23, 55, 255, 255, 157, 202, 208, 180, 32, 63, 100, 92, 87, 192, 198, 113, 4, 64, 64, 141, 242, 56, 255, 255, 228, 206, 24, 220, 83, 63, 100, 92, 87, 192, 194, 188, 255, 63, 27, 145, 107, 58, 255, 255, 189, 210, 135, 124, 130, 63, 100, 92, 87, 192, 122, 31, 244, 63, 188, 148, 138, 59, 255, 255, 74, 214, 78, 201, 153, 63, 100, 92, 87, 192, 83, 40, 230, 63, 41, 152, 81, 60, 255, 255, 161, 217, 238, 154, 175, 63, 100, 92, 87, 192, 190, 249, 213, 63, 102, 155, 202, 60, 255, 255, 216, 220, 158, 187, 195, 63, 100, 92, 87, 192, 158, 187, 195, 63, 120, 158, 241, 60, 255, 255, 255, 223, 190, 249, 213, 63, 100, 92, 87, 192, 238, 154, 175, 63, 98, 161, 202, 60, 255, 255, 37, 227, 83, 40, 230, 63, 100, 92, 87, 192, 78, 201, 153, 63, 40, 164, 81, 60, 255, 255, 92, 230, 122, 31, 244, 63, 100, 92, 87, 192, 135, 124, 130, 63, 204, 166, 138, 59, 255, 255, 180, 233, 194, 188, 255, 63, 100, 92, 87, 192, 24, 220, 83, 63, 78, 169, 107, 58, 255, 255, 64, 237, 198, 113, 4, 64, 100, 92, 87, 192, 208, 180, 32, 63, 177, 171, 242, 56, 255, 255, 25, 241, 162, 190, 7, 64, 100, 92, 87, 192, 165, 2, 216, 62, 243, 173, 23, 55, 255, 255, 96, 245, 211, 188, 9, 64, 100, 92, 87, 192, 54, 14, 89, 62, 20, 176, 209, 52, 255, 255, 66, 250, 112, 103, 10, 64, 100, 92, 87, 192, 35, 171, 24, 37, 19, 178, 19, 50, 255, 255, 255, 255, 211, 188, 9, 64, 100, 92, 87, 192, 54, 14, 89, 190, 208, 180, 21, 48, 0, 0, 66, 250, 162, 190, 7, 64, 100, 92, 87, 192, 165, 2, 216, 190, 23, 183, 243, 45, 0, 0, 96, 245, 198, 113, 4, 64, 100, 92, 87, 192, 208, 180, 32, 191, 242, 184, 177, 43, 0, 0, 25, 241, 194, 188, 255, 63, 100, 92, 87, 192, 24, 220, 83, 191, 107, 186, 78, 41, 0, 0, 64, 237, 122, 31, 244, 63, 100, 92, 87, 192, 135, 124, 130, 191, 137, 187, 204, 38, 0, 0, 180, 233, 83, 40, 230, 63, 100, 92, 87, 192, 78, 201, 153, 191, 82, 188, 40, 36, 0, 0, 92, 230, 190, 249, 213, 63, 100, 92, 87, 192, 238, 154, 175, 191, 201, 188, 99, 33, 0, 0, 37, 227, 158, 187, 195, 63, 100, 92, 87, 192, 158, 187, 195, 191, 240, 188, 120, 30, 0, 0, 255, 223, 238, 154, 175, 63, 100, 92, 87, 192, 190, 249, 213, 191, 200, 188, 102, 27, 0, 0, 216, 220, 78, 201, 153, 63, 100, 92, 87, 192, 83, 40, 230, 191, 82, 188, 40, 24, 0, 0, 161, 217, 135, 124, 130, 63, 100, 92, 87, 192, 122, 31, 244, 191, 137, 187, 189, 20, 0, 0, 74, 214, 24, 220, 83, 63, 100, 92, 87, 192, 194, 188, 255, 191, 107, 186, 27, 17, 0, 0, 189, 210, 208, 180, 32, 63, 100, 92, 87, 192, 198, 113, 4, 192, 241, 184, 64, 13, 0, 0, 228, 206, 165, 2, 216, 62, 100, 92, 87, 192, 162, 190, 7, 192, 23, 183, 34, 9, 0, 0, 157, 202, 54, 14, 89, 62, 100, 92, 87, 192, 211, 188, 9, 192, 208, 180, 188, 4, 0, 0, 188, 197, 35, 171, 152, 37, 100, 92, 87, 192, 112, 103, 10, 192, 19, 178, 0, 0, 0, 0, 255, 191, 54, 14, 89, 190, 100, 92, 87, 192, 211, 188, 9, 192, 46, 75, 188, 4, 120, 11, 255, 191, 165, 2, 216, 190, 100, 92, 87, 192, 162, 190, 7, 192, 231, 72, 34, 9, 59, 21, 255, 191, 208, 180, 32, 191, 100, 92, 87, 192, 198, 113, 4, 192, 12, 71, 64, 13, 201, 29, 255, 191, 24, 220, 83, 191, 100, 92, 87, 192, 194, 188, 255, 191, 147, 69, 27, 17, 125, 37, 255, 191, 135, 124, 130, 191, 100, 92, 87, 192, 122, 31, 244, 191, 117, 68, 189, 20, 149, 44, 255, 191, 78, 201, 153, 191, 100, 92, 87, 192, 83, 40, 230, 191, 172, 67, 40, 24, 68, 51, 255, 191, 238, 154, 175, 191, 100, 92, 87, 192, 190, 249, 213, 191, 52, 67, 102, 27, 178, 57, 255, 191, 158, 187, 195, 191, 100, 92, 87, 192, 158, 187, 195, 191, 14, 67, 120, 30, 255, 63, 255, 191, 190, 249, 213, 191, 100, 92, 87, 192, 238, 154, 175, 191, 53, 67, 99, 33, 77, 70, 255, 191, 83, 40, 230, 191, 100, 92, 87, 192, 78, 201, 153, 191, 172, 67, 40, 36, 185, 76, 255, 191, 122, 31, 244, 191, 100, 92, 87, 192, 135, 124, 130, 191, 117, 68, 204, 38, 104, 83, 255, 191, 194, 188, 255, 191, 100, 92, 87, 192, 24, 220, 83, 191, 147, 69, 78, 41, 130, 90, 255, 191, 198, 113, 4, 192, 100, 92, 87, 192, 208, 180, 32, 191, 12, 71, 177, 43, 53, 98, 255, 191, 162, 190, 7, 192, 100, 92, 87, 192, 165, 2, 216, 190, 231, 72, 243, 45, 195, 106, 255, 191, 211, 188, 9, 192, 100, 92, 87, 192, 54, 14, 89, 190, 46, 75, 21, 48, 133, 116, 255, 191, 112, 103, 10, 192, 100, 92, 87, 192, 179, 0, 229, 165, 235, 77, 19, 50, 255, 127, 255, 191, 211, 188, 9, 192, 100, 92, 87, 192, 54, 14, 89, 62, 234, 79, 209, 52, 121, 139, 255, 191, 162, 190, 7, 192, 100, 92, 87, 192, 165, 2, 216, 62, 11, 82, 23, 55, 59, 149, 255, 191, 198, 113, 4, 192, 100, 92, 87, 192, 208, 180, 32, 63, 77, 84, 242, 56, 201, 157, 255, 191, 194, 188, 255, 191, 100, 92, 87, 192, 24, 220, 83, 63, 176, 86, 107, 58, 124, 165, 255, 191, 122, 31, 244, 191, 100, 92, 87, 192, 135, 124, 130, 63, 50, 89, 138, 59, 149, 172, 255, 191, 83, 40, 230, 191, 100, 92, 87, 192, 78, 201, 153, 63, 214, 91, 81, 60, 68, 179, 255, 191, 190, 249, 213, 191, 100, 92, 87, 192, 238, 154, 175, 63, 156, 94, 202, 60, 177, 185, 255, 191, 158, 187, 195, 191, 100, 92, 87, 192, 158, 187, 195, 63, 134, 97, 241, 60, 255, 191, 255, 191, 238, 154, 175, 191, 100, 92, 87, 192, 190, 249, 213, 63, 152, 100, 202, 60, 76, 198, 255, 191, 78, 201, 153, 191, 100, 92, 87, 192, 83, 40, 230, 63, 213, 103, 81, 60, 186, 204, 255, 191, 135, 124, 130, 191, 100, 92, 87, 192, 122, 31, 244, 63, 66, 107, 138, 59, 105, 211, 255, 191, 24, 220, 83, 191, 100, 92, 87, 192, 194, 188, 255, 63, 227, 110, 107, 58, 129, 218, 255, 191, 208, 180, 32, 191, 100, 92, 87, 192, 198, 113, 4, 64, 190, 114, 242, 56, 52, 226, 255, 191, 165, 2, 216, 190, 100, 92, 87, 192, 162, 190, 7, 64, 219, 118, 23, 55, 194, 234, 255, 191, 54, 14, 89, 190, 100, 92, 87, 192, 211, 188, 9, 64, 67, 123, 209, 52, 132, 244, 255, 191, 35, 171, 24, 166, 100, 92, 87, 192, 112, 103, 10, 64, 255, 127, 19, 50, 255, 255, 255, 191, 0, 0, 0, 0, 185, 138, 99, 192, 168, 156, 234, 63, 255, 127, 138, 43, 255, 255, 255, 191, 202, 247, 55, 62, 185, 138, 99, 192, 115, 123, 233, 63, 34, 132, 33, 46, 255, 255, 188, 197, 3, 21, 183, 62, 185, 138, 99, 192, 155, 26, 230, 63, 3, 136, 77, 48, 255, 255, 157, 202, 96, 53, 8, 63, 185, 138, 99, 192, 119, 130, 224, 63, 168, 139, 23, 50, 255, 255, 228, 206, 111, 144, 51, 63, 185, 138, 99, 192, 207, 192, 216, 63, 22, 143, 132, 51, 255, 255, 189, 210, 204, 48, 93, 63, 185, 138, 99, 192, 198, 232, 206, 63, 82, 146, 154, 52, 255, 255, 74, 214, 234, 87, 130, 63, 185, 138, 99, 192, 156, 18, 195, 63, 95, 149, 92, 53, 255, 255, 161, 217, 20, 214, 148, 63, 185, 138, 99, 192, 132, 91, 181, 63, 66, 152, 210, 53, 255, 255, 216, 220, 76, 229, 165, 63, 185, 138, 99, 192, 76, 229, 165, 63, 251, 154, 248, 53, 255, 255, 255, 223, 132, 91, 181, 63, 185, 138, 99, 192, 20, 214, 148, 63, 143, 157, 210, 53, 255, 255, 37, 227, 156, 18, 195, 63, 185, 138, 99, 192, 234, 87, 130, 63, 253, 159, 92, 53, 255, 255, 92, 230, 198, 232, 206, 63, 185, 138, 99, 192, 204, 48, 93, 63, 71, 162, 154, 52, 255, 255, 180, 233, 207, 192, 216, 63, 185, 138, 99, 192, 111, 144, 51, 63, 108, 164, 132, 51, 255, 255, 64, 237, 119, 130, 224, 63, 185, 138, 99, 192, 96, 53, 8, 63, 110, 166, 23, 50, 255, 255, 25, 241, 155, 26, 230, 63, 185, 138, 99, 192, 3, 21, 183, 62, 74, 168, 77, 48, 255, 255, 96, 245, 115, 123, 233, 63, 185, 138, 99, 192, 202, 247, 55, 62, 255, 169, 33, 46, 255, 255, 66, 250, 168, 156, 234, 63, 185, 138, 99, 192, 94, 101, 1, 37, 137, 171, 138, 43, 255, 255, 255, 255, 115, 123, 233, 63, 185, 138, 99, 192, 202, 247, 55, 190, 34, 174, 255, 41, 0, 0, 66, 250, 155, 26, 230, 63, 185, 138, 99, 192, 3, 21, 183, 190, 78, 176, 74, 40, 0, 0, 96, 245, 119, 130, 224, 63, 185, 138, 99, 192, 96, 53, 8, 191, 23, 178, 111, 38, 0, 0, 25, 241, 207, 192, 216, 63, 185, 138, 99, 192, 111, 144, 51, 191, 131, 179, 109, 36, 0, 0, 64, 237, 198, 232, 206, 63, 185, 138, 99, 192, 204, 48, 93, 191, 153, 180, 70, 34, 0, 0, 180, 233, 156, 18, 195, 63, 185, 138, 99, 192, 234, 87, 130, 191, 93, 181, 253, 31, 0, 0, 92, 230, 132, 91, 181, 63, 185, 138, 99, 192, 20, 214, 148, 191, 209, 181, 143, 29, 0, 0, 37, 227, 76, 229, 165, 63, 185, 138, 99, 192, 76, 229, 165, 191, 248, 181, 252, 26, 0, 0, 255, 223, 20, 214, 148, 63, 185, 138, 99, 192, 132, 91, 181, 191, 209, 181, 65, 24, 0, 0, 216, 220, 234, 87, 130, 63, 185, 138, 99, 192, 156, 18, 195, 191, 93, 181, 96, 21, 0, 0, 161, 217, 204, 48, 93, 63, 185, 138, 99, 192, 198, 232, 206, 191, 153, 180, 82, 18, 0, 0, 74, 214, 111, 144, 51, 63, 185, 138, 99, 192, 207, 192, 216, 191, 131, 179, 21, 15, 0, 0, 189, 210, 96, 53, 8, 63, 185, 138, 99, 192, 119, 130, 224, 191, 23, 178, 167, 11, 0, 0, 228, 206, 3, 21, 183, 62, 185, 138, 99, 192, 155, 26, 230, 191, 78, 176, 3, 8, 0, 0, 157, 202, 202, 247, 55, 62, 185, 138, 99, 192, 115, 123, 233, 191, 34, 174, 33, 4, 0, 0, 188, 197, 94, 101, 129, 37, 185, 138, 99, 192, 168, 156, 234, 191, 137, 171, 0, 0, 0, 0, 255, 191, 202, 247, 55, 190, 185, 138, 99, 192, 115, 123, 233, 191, 220, 81, 33, 4, 120, 11, 255, 191, 3, 21, 183, 190, 185, 138, 99, 192, 155, 26, 230, 191, 176, 79, 3, 8, 59, 21, 255, 191, 96, 53, 8, 191, 185, 138, 99, 192, 119, 130, 224, 191, 231, 77, 167, 11, 201, 29, 255, 191, 111, 144, 51, 191, 185, 138, 99, 192, 207, 192, 216, 191, 123, 76, 21, 15, 125, 37, 255, 191, 204, 48, 93, 191, 185, 138, 99, 192, 198, 232, 206, 191, 101, 75, 82, 18, 149, 44, 255, 191, 234, 87, 130, 191, 185, 138, 99, 192, 156, 18, 195, 191, 161, 74, 96, 21, 68, 51, 255, 191, 20, 214, 148, 191, 185, 138, 99, 192, 132, 91, 181, 191, 44, 74, 65, 24, 178, 57, 255, 191, 76, 229, 165, 191, 185, 138, 99, 192, 76, 229, 165, 191, 6, 74, 252, 26, 255, 63, 255, 191, 132, 91, 181, 191, 185, 138, 99, 192, 20, 214, 148, 191, 45, 74, 143, 29, 77, 70, 255, 191, 156, 18, 195, 191, 185, 138, 99, 192, 234, 87, 130, 191, 161, 74, 253, 31, 185, 76, 255, 191, 198, 232, 206, 191, 185, 138, 99, 192, 204, 48, 93, 191, 100, 75, 70, 34, 104, 83, 255, 191, 207, 192, 216, 191, 185, 138, 99, 192, 111, 144, 51, 191, 123, 76, 109, 36, 130, 90, 255, 191, 119, 130, 224, 191, 185, 138, 99, 192, 96, 53, 8, 191, 231, 77, 111, 38, 53, 98, 255, 191, 155, 26, 230, 191, 185, 138, 99, 192, 3, 21, 183, 190, 176, 79, 74, 40, 195, 106, 255, 191, 115, 123, 233, 191, 185, 138, 99, 192, 202, 247, 55, 190, 220, 81, 255, 41, 133, 116, 255, 191, 168, 156, 234, 191, 185, 138, 99, 192, 13, 24, 194, 165, 117, 84, 138, 43, 255, 127, 255, 191, 115, 123, 233, 191, 185, 138, 99, 192, 202, 247, 55, 62, 255, 85, 33, 46, 121, 139, 255, 191, 155, 26, 230, 191, 185, 138, 99, 192, 3, 21, 183, 62, 180, 87, 77, 48, 59, 149, 255, 191, 119, 130, 224, 191, 185, 138, 99, 192, 96, 53, 8, 63, 144, 89, 23, 50, 201, 157, 255, 191, 207, 192, 216, 191, 185, 138, 99, 192, 111, 144, 51, 63, 145, 91, 132, 51, 124, 165, 255, 191, 198, 232, 206, 191, 185, 138, 99, 192, 204, 48, 93, 63, 183, 93, 154, 52, 149, 172, 255, 191, 156, 18, 195, 191, 185, 138, 99, 192, 234, 87, 130, 63, 1, 96, 93, 53, 68, 179, 255, 191, 132, 91, 181, 191, 185, 138, 99, 192, 20, 214, 148, 63, 111, 98, 210, 53, 177, 185, 255, 191, 76, 229, 165, 191, 185, 138, 99, 192, 76, 229, 165, 63, 3, 101, 248, 53, 255, 191, 255, 191, 20, 214, 148, 191, 185, 138, 99, 192, 132, 91, 181, 63, 188, 103, 210, 53, 76, 198, 255, 191, 234, 87, 130, 191, 185, 138, 99, 192, 156, 18, 195, 63, 159, 106, 92, 53, 186, 204, 255, 191, 204, 48, 93, 191, 185, 138, 99, 192, 198, 232, 206, 63, 172, 109, 153, 52, 105, 211, 255, 191, 111, 144, 51, 191, 185, 138, 99, 192, 207, 192, 216, 63, 232, 112, 132, 51, 129, 218, 255, 191, 96, 53, 8, 191, 185, 138, 99, 192, 119, 130, 224, 63, 86, 116, 23, 50, 52, 226, 255, 191, 3, 21, 183, 190, 185, 138, 99, 192, 155, 26, 230, 63, 251, 119, 77, 48, 194, 234, 255, 191, 202, 247, 55, 190, 185, 138, 99, 192, 115, 123, 233, 63, 220, 123, 33, 46, 132, 244, 255, 191, 94, 101, 1, 166, 185, 138, 99, 192, 168, 156, 234, 63, 255, 127, 138, 43, 255, 255, 255, 191, 0, 0, 0, 0, 133, 169, 109, 192, 139, 74, 190, 63, 255, 127, 151, 36, 255, 255, 255, 191, 226, 54, 21, 62, 133, 169, 109, 192, 248, 95, 189, 63, 125, 131, 247, 38, 255, 255, 188, 197, 242, 126, 148, 62, 133, 169, 109, 192, 129, 162, 186, 63, 203, 134, 248, 40, 255, 255, 157, 202, 87, 244, 220, 62, 133, 169, 109, 192, 233, 24, 182, 63, 235, 137, 160, 42, 255, 255, 228, 206, 127, 164, 17, 63, 133, 169, 109, 192, 94, 206, 175, 63, 223, 140, 245, 43, 255, 255, 189, 210, 193, 103, 51, 63, 133, 169, 109, 192, 101, 210, 167, 63, 170, 143, 250, 44, 255, 255, 74, 214, 179, 112, 83, 63, 133, 169, 109, 192, 169, 56, 158, 63, 77, 146, 178, 45, 255, 255, 161, 217, 91, 112, 113, 63, 133, 169, 109, 192, 218, 24, 147, 63, 202, 148, 32, 46, 255, 255, 216, 220, 98, 142, 134, 63, 133, 169, 109, 192, 98, 142, 134, 63, 34, 151, 68, 46, 255, 255, 255, 223, 218, 24, 147, 63, 133, 169, 109, 192, 91, 112, 113, 63, 85, 153, 32, 46, 255, 255, 37, 227, 169, 56, 158, 63, 133, 169, 109, 192, 179, 112, 83, 63, 100, 155, 178, 45, 255, 255, 92, 230, 101, 210, 167, 63, 133, 169, 109, 192, 193, 103, 51, 63, 79, 157, 250, 44, 255, 255, 180, 233, 94, 206, 175, 63, 133, 169, 109, 192, 127, 164, 17, 63, 20, 159, 244, 43, 255, 255, 64, 237, 233, 24, 182, 63, 133, 169, 109, 192, 87, 244, 220, 62, 180, 160, 160, 42, 255, 255, 25, 241, 129, 162, 186, 63, 133, 169, 109, 192, 242, 126, 148, 62, 43, 162, 248, 40, 255, 255, 96, 245, 248, 95, 189, 63, 133, 169, 109, 192, 226, 54, 21, 62, 120, 163, 247, 38, 255, 255, 66, 250, 139, 74, 190, 63, 133, 169, 109, 192, 64, 231, 209, 36, 151, 164, 151, 36, 255, 255, 255, 255, 248, 95, 189, 63, 133, 169, 109, 192, 226, 54, 21, 190, 246, 166, 120, 35, 0, 0, 66, 250, 129, 162, 186, 63, 133, 169, 109, 192, 242, 126, 148, 190, 247, 168, 42, 34, 0, 0, 96, 245, 233, 24, 182, 63, 133, 169, 109, 192, 87, 244, 220, 190, 160, 170, 180, 32, 0, 0, 25, 241, 94, 206, 175, 63, 133, 169, 109, 192, 127, 164, 17, 191, 244, 171, 20, 31, 0, 0, 64, 237, 101, 210, 167, 63, 133, 169, 109, 192, 193, 103, 51, 191, 250, 172, 78, 29, 0, 0, 180, 233, 169, 56, 158, 63, 133, 169, 109, 192, 179, 112, 83, 191, 178, 173, 101, 27, 0, 0, 92, 230, 218, 24, 147, 63, 133, 169, 109, 192, 91, 112, 113, 191, 32, 174, 85, 25, 0, 0, 37, 227, 98, 142, 134, 63, 133, 169, 109, 192, 98, 142, 134, 191, 68, 174, 33, 23, 0, 0, 255, 223, 91, 112, 113, 63, 133, 169, 109, 192, 218, 24, 147, 191, 32, 174, 202, 20, 0, 0, 216, 220, 179, 112, 83, 63, 133, 169, 109, 192, 169, 56, 158, 191, 178, 173, 76, 18, 0, 0, 161, 217, 193, 103, 51, 63, 133, 169, 109, 192, 101, 210, 167, 191, 250, 172, 169, 15, 0, 0, 74, 214, 127, 164, 17, 63, 133, 169, 109, 192, 94, 206, 175, 191, 244, 171, 224, 12, 0, 0, 189, 210, 87, 244, 220, 62, 133, 169, 109, 192, 233, 24, 182, 191, 159, 170, 235, 9, 0, 0, 228, 206, 242, 126, 148, 62, 133, 169, 109, 192, 129, 162, 186, 191, 247, 168, 204, 6, 0, 0, 157, 202, 226, 54, 21, 62, 133, 169, 109, 192, 248, 95, 189, 191, 245, 166, 126, 3, 0, 0, 188, 197, 64, 231, 81, 37, 133, 169, 109, 192, 139, 74, 190, 191, 150, 164, 0, 0, 0, 0, 255, 191, 226, 54, 21, 190, 133, 169, 109, 192, 248, 95, 189, 191, 8, 89, 126, 3, 120, 11, 255, 191, 242, 126, 148, 190, 133, 169, 109, 192, 129, 162, 186, 191, 7, 87, 204, 6, 59, 21, 255, 191, 87, 244, 220, 190, 133, 169, 109, 192, 233, 24, 182, 191, 95, 85, 235, 9, 201, 29, 255, 191, 127, 164, 17, 191, 133, 169, 109, 192, 94, 206, 175, 191, 10, 84, 224, 12, 125, 37, 255, 191, 193, 103, 51, 191, 133, 169, 109, 192, 101, 210, 167, 191, 4, 83, 169, 15, 149, 44, 255, 191, 179, 112, 83, 191, 133, 169, 109, 192, 169, 56, 158, 191, 76, 82, 76, 18, 68, 51, 255, 191, 91, 112, 113, 191, 133, 169, 109, 192, 218, 24, 147, 191, 222, 81, 202, 20, 178, 57, 255, 191, 98, 142, 134, 191, 133, 169, 109, 192, 98, 142, 134, 191, 186, 81, 33, 23, 255, 63, 255, 191, 218, 24, 147, 191, 133, 169, 109, 192, 91, 112, 113, 191, 222, 81, 85, 25, 77, 70, 255, 191, 169, 56, 158, 191, 133, 169, 109, 192, 179, 112, 83, 191, 76, 82, 101, 27, 185, 76, 255, 191, 101, 210, 167, 191, 133, 169, 109, 192, 193, 103, 51, 191, 4, 83, 78, 29, 104, 83, 255, 191, 94, 206, 175, 191, 133, 169, 109, 192, 127, 164, 17, 191, 10, 84, 20, 31, 130, 90, 255, 191, 233, 24, 182, 191, 133, 169, 109, 192, 87, 244, 220, 190, 94, 85, 180, 32, 53, 98, 255, 191, 129, 162, 186, 191, 133, 169, 109, 192, 242, 126, 148, 190, 7, 87, 42, 34, 195, 106, 255, 191, 248, 95, 189, 191, 133, 169, 109, 192, 226, 54, 21, 190, 8, 89, 120, 35, 133, 116, 255, 191, 139, 74, 190, 191, 133, 169, 109, 192, 111, 109, 157, 165, 103, 91, 151, 36, 255, 127, 255, 191, 248, 95, 189, 191, 133, 169, 109, 192, 226, 54, 21, 62, 134, 92, 247, 38, 121, 139, 255, 191, 129, 162, 186, 191, 133, 169, 109, 192, 242, 126, 148, 62, 211, 93, 248, 40, 59, 149, 255, 191, 233, 24, 182, 191, 133, 169, 109, 192, 87, 244, 220, 62, 74, 95, 160, 42, 201, 157, 255, 191, 94, 206, 175, 191, 133, 169, 109, 192, 127, 164, 17, 63, 234, 96, 245, 43, 124, 165, 255, 191, 101, 210, 167, 191, 133, 169, 109, 192, 193, 103, 51, 63, 175, 98, 249, 44, 149, 172, 255, 191, 169, 56, 158, 191, 133, 169, 109, 192, 179, 112, 83, 63, 154, 100, 179, 45, 68, 179, 255, 191, 218, 24, 147, 191, 133, 169, 109, 192, 91, 112, 113, 63, 169, 102, 31, 46, 177, 185, 255, 191, 98, 142, 134, 191, 133, 169, 109, 192, 98, 142, 134, 63, 220, 104, 68, 46, 255, 191, 255, 191, 91, 112, 113, 191, 133, 169, 109, 192, 218, 24, 147, 63, 52, 107, 31, 46, 76, 198, 255, 191, 179, 112, 83, 191, 133, 169, 109, 192, 169, 56, 158, 63, 177, 109, 179, 45, 186, 204, 255, 191, 193, 103, 51, 191, 133, 169, 109, 192, 101, 210, 167, 63, 84, 112, 250, 44, 105, 211, 255, 191, 127, 164, 17, 191, 133, 169, 109, 192, 94, 206, 175, 63, 31, 115, 245, 43, 129, 218, 255, 191, 87, 244, 220, 190, 133, 169, 109, 192, 233, 24, 182, 63, 19, 118, 160, 42, 52, 226, 255, 191, 242, 126, 148, 190, 133, 169, 109, 192, 129, 162, 186, 63, 51, 121, 248, 40, 194, 234, 255, 191, 226, 54, 21, 190, 133, 169, 109, 192, 248, 95, 189, 63, 129, 124, 247, 38, 132, 244, 255, 191, 64, 231, 209, 165, 133, 169, 109, 192, 139, 74, 190, 63, 255, 127, 151, 36, 255, 255, 255, 191, 0, 0, 0, 0, 85, 161, 117, 192, 61, 63, 144, 63, 255, 127, 13, 29, 255, 255, 255, 191, 10, 56, 226, 61, 85, 161, 117, 192, 108, 141, 143, 63, 201, 130, 25, 31, 255, 255, 188, 197, 45, 33, 97, 62, 85, 161, 117, 192, 177, 121, 141, 63, 114, 133, 216, 32, 255, 255, 157, 202, 165, 125, 167, 62, 85, 161, 117, 192, 42, 9, 138, 63, 251, 135, 79, 34, 255, 255, 228, 206, 197, 205, 220, 62, 85, 161, 117, 192, 82, 68, 133, 63, 100, 138, 125, 35, 255, 255, 189, 210, 195, 254, 7, 63, 85, 161, 117, 192, 214, 109, 126, 63, 173, 140, 102, 36, 255, 255, 74, 214, 90, 71, 32, 63, 85, 161, 117, 192, 192, 223, 111, 63, 213, 142, 11, 37, 255, 255, 161, 217, 201, 4, 55, 63, 85, 161, 117, 192, 72, 2, 95, 63, 222, 144, 108, 37, 255, 255, 216, 220, 0, 255, 75, 63, 85, 161, 117, 192, 0, 255, 75, 63, 198, 146, 141, 37, 255, 255, 255, 223, 72, 2, 95, 63, 85, 161, 117, 192, 201, 4, 55, 63, 142, 148, 109, 37, 255, 255, 37, 227, 192, 223, 111, 63, 85, 161, 117, 192, 90, 71, 32, 63, 52, 150, 11, 37, 255, 255, 92, 230, 214, 109, 126, 63, 85, 161, 117, 192, 195, 254, 7, 63, 183, 151, 102, 36, 255, 255, 180, 233, 82, 68, 133, 63, 85, 161, 117, 192, 197, 205, 220, 62, 23, 153, 125, 35, 255, 255, 64, 237, 42, 9, 138, 63, 85, 161, 117, 192, 165, 125, 167, 62, 82, 154, 78, 34, 255, 255, 25, 241, 177, 121, 141, 63, 85, 161, 117, 192, 45, 33, 97, 62, 102, 155, 217, 32, 255, 255, 96, 245, 108, 141, 143, 63, 85, 161, 117, 192, 10, 56, 226, 61, 79, 156, 25, 31, 255, 255, 66, 250, 61, 63, 144, 63, 85, 161, 117, 192, 26, 29, 159, 36, 13, 157, 13, 29, 255, 255, 255, 255, 108, 141, 143, 63, 85, 161, 117, 192, 10, 56, 226, 189, 25, 159, 80, 28, 0, 0, 66, 250, 177, 121, 141, 63, 85, 161, 117, 192, 45, 33, 97, 190, 217, 160, 102, 27, 0, 0, 96, 245, 42, 9, 138, 63, 85, 161, 117, 192, 165, 125, 167, 190, 78, 162, 83, 26, 0, 0, 25, 241, 82, 68, 133, 63, 85, 161, 117, 192, 197, 205, 220, 190, 124, 163, 23, 25, 0, 0, 64, 237, 214, 109, 126, 63, 85, 161, 117, 192, 195, 254, 7, 191, 101, 164, 184, 23, 0, 0, 180, 233, 192, 223, 111, 63, 85, 161, 117, 192, 90, 71, 32, 191, 10, 165, 51, 22, 0, 0, 92, 230, 72, 2, 95, 63, 85, 161, 117, 192, 201, 4, 55, 191, 109, 165, 142, 20, 0, 0, 37, 227, 0, 255, 75, 63, 85, 161, 117, 192, 0, 255, 75, 191, 141, 165, 199, 18, 0, 0, 255, 223, 201, 4, 55, 63, 85, 161, 117, 192, 72, 2, 95, 191, 109, 165, 222, 16, 0, 0, 216, 220, 90, 71, 32, 63, 85, 161, 117, 192, 192, 223, 111, 191, 10, 165, 214, 14, 0, 0, 161, 217, 195, 254, 7, 63, 85, 161, 117, 192, 214, 109, 126, 191, 101, 164, 172, 12, 0, 0, 74, 214, 197, 205, 220, 62, 85, 161, 117, 192, 82, 68, 133, 191, 123, 163, 101, 10, 0, 0, 189, 210, 165, 125, 167, 62, 85, 161, 117, 192, 42, 9, 138, 191, 78, 162, 252, 7, 0, 0, 228, 206, 45, 33, 97, 62, 85, 161, 117, 192, 177, 121, 141, 191, 217, 160, 115, 5, 0, 0, 157, 202, 10, 56, 226, 61, 85, 161, 117, 192, 108, 141, 143, 191, 25, 159, 201, 2, 0, 0, 188, 197, 26, 29, 31, 37, 85, 161, 117, 192, 61, 63, 144, 191, 13, 157, 0, 0, 0, 0, 255, 191, 10, 56, 226, 189, 85, 161, 117, 192, 108, 141, 143, 191, 229, 96, 201, 2, 120, 11, 255, 191, 45, 33, 97, 190, 85, 161, 117, 192, 177, 121, 141, 191, 36, 95, 115, 5, 59, 21, 255, 191, 165, 125, 167, 190, 85, 161, 117, 192, 42, 9, 138, 191, 176, 93, 252, 7, 201, 29, 255, 191, 197, 205, 220, 190, 85, 161, 117, 192, 82, 68, 133, 191, 130, 92, 101, 10, 125, 37, 255, 191, 195, 254, 7, 191, 85, 161, 117, 192, 214, 109, 126, 191, 153, 91, 172, 12, 149, 44, 255, 191, 90, 71, 32, 191, 85, 161, 117, 192, 192, 223, 111, 191, 244, 90, 214, 14, 68, 51, 255, 191, 201, 4, 55, 191, 85, 161, 117, 192, 72, 2, 95, 191, 145, 90, 222, 16, 178, 57, 255, 191, 0, 255, 75, 191, 85, 161, 117, 192, 0, 255, 75, 191, 112, 90, 199, 18, 255, 63, 255, 191, 72, 2, 95, 191, 85, 161, 117, 192, 201, 4, 55, 191, 145, 90, 142, 20, 77, 70, 255, 191, 192, 223, 111, 191, 85, 161, 117, 192, 90, 71, 32, 191, 244, 90, 51, 22, 185, 76, 255, 191, 214, 109, 126, 191, 85, 161, 117, 192, 195, 254, 7, 191, 152, 91, 184, 23, 104, 83, 255, 191, 82, 68, 133, 191, 85, 161, 117, 192, 197, 205, 220, 190, 129, 92, 23, 25, 130, 90, 255, 191, 42, 9, 138, 191, 85, 161, 117, 192, 165, 125, 167, 190, 176, 93, 83, 26, 53, 98, 255, 191, 177, 121, 141, 191, 85, 161, 117, 192, 45, 33, 97, 190, 37, 95, 102, 27, 195, 106, 255, 191, 108, 141, 143, 191, 85, 161, 117, 192, 10, 56, 226, 189, 229, 96, 80, 28, 133, 116, 255, 191, 61, 63, 144, 191, 85, 161, 117, 192, 165, 171, 110, 165, 241, 98, 13, 29, 255, 127, 255, 191, 108, 141, 143, 191, 85, 161, 117, 192, 10, 56, 226, 61, 175, 99, 25, 31, 121, 139, 255, 191, 177, 121, 141, 191, 85, 161, 117, 192, 45, 33, 97, 62, 152, 100, 217, 32, 59, 149, 255, 191, 42, 9, 138, 191, 85, 161, 117, 192, 165, 125, 167, 62, 172, 101, 78, 34, 201, 157, 255, 191, 82, 68, 133, 191, 85, 161, 117, 192, 197, 205, 220, 62, 231, 102, 124, 35, 124, 165, 255, 191, 214, 109, 126, 191, 85, 161, 117, 192, 195, 254, 7, 63, 71, 104, 102, 36, 149, 172, 255, 191, 192, 223, 111, 191, 85, 161, 117, 192, 90, 71, 32, 63, 202, 105, 11, 37, 68, 179, 255, 191, 72, 2, 95, 191, 85, 161, 117, 192, 201, 4, 55, 63, 112, 107, 109, 37, 177, 185, 255, 191, 0, 255, 75, 191, 85, 161, 117, 192, 0, 255, 75, 63, 56, 109, 142, 37, 255, 191, 255, 191, 201, 4, 55, 191, 85, 161, 117, 192, 72, 2, 95, 63, 32, 111, 109, 37, 76, 198, 255, 191, 90, 71, 32, 191, 85, 161, 117, 192, 192, 223, 111, 63, 41, 113, 11, 37, 186, 204, 255, 191, 195, 254, 7, 191, 85, 161, 117, 192, 214, 109, 126, 63, 81, 115, 102, 36, 105, 211, 255, 191, 197, 205, 220, 190, 85, 161, 117, 192, 82, 68, 133, 63, 154, 117, 125, 35, 129, 218, 255, 191, 165, 125, 167, 190, 85, 161, 117, 192, 42, 9, 138, 63, 3, 120, 78, 34, 52, 226, 255, 191, 45, 33, 97, 190, 85, 161, 117, 192, 177, 121, 141, 63, 140, 122, 217, 32, 194, 234, 255, 191, 10, 56, 226, 189, 85, 161, 117, 192, 108, 141, 143, 63, 53, 125, 26, 31, 132, 244, 255, 191, 26, 29, 159, 165, 85, 161, 117, 192, 61, 63, 144, 63, 255, 127, 13, 29, 255, 255, 255, 191, 0, 0, 0, 0, 174, 95, 123, 192, 20, 203, 65, 63, 255, 127, 174, 20, 255, 255, 255, 191, 227, 245, 151, 61, 174, 95, 123, 192, 48, 220, 64, 63, 254, 129, 70, 22, 255, 255, 188, 197, 145, 58, 23, 62, 174, 95, 123, 192, 208, 17, 62, 63, 235, 131, 166, 23, 255, 255, 157, 202, 87, 5, 97, 62, 174, 95, 123, 192, 216, 114, 57, 63, 197, 133, 205, 24, 255, 255, 228, 206, 173, 82, 148, 62, 174, 95, 123, 192, 169, 10, 51, 63, 138, 135, 190, 25, 255, 255, 189, 210, 0, 181, 182, 62, 174, 95, 123, 192, 17, 233, 42, 63, 56, 137, 122, 26, 255, 255, 74, 214, 225, 84, 215, 62, 174, 95, 123, 192, 26, 34, 33, 63, 208, 138, 255, 26, 255, 255, 161, 217, 222, 225, 245, 62, 174, 95, 123, 192, 226, 205, 21, 63, 79, 140, 78, 27, 255, 255, 216, 220, 84, 8, 9, 63, 174, 95, 123, 192, 84, 8, 9, 63, 180, 141, 105, 27, 255, 255, 255, 223, 226, 205, 21, 63, 174, 95, 123, 192, 222, 225, 245, 62, 255, 142, 78, 27, 255, 255, 37, 227, 26, 34, 33, 63, 174, 95, 123, 192, 225, 84, 215, 62, 46, 144, 255, 26, 255, 255, 92, 230, 17, 233, 42, 63, 174, 95, 123, 192, 0, 181, 182, 62, 64, 145, 122, 26, 255, 255, 180, 233, 169, 10, 51, 63, 174, 95, 123, 192, 173, 82, 148, 62, 52, 146, 191, 25, 255, 255, 64, 237, 216, 114, 57, 63, 174, 95, 123, 192, 87, 5, 97, 62, 7, 147, 206, 24, 255, 255, 25, 241, 208, 17, 62, 63, 174, 95, 123, 192, 145, 58, 23, 62, 185, 147, 165, 23, 255, 255, 96, 245, 48, 220, 64, 63, 174, 95, 123, 192, 227, 245, 151, 61, 70, 148, 70, 22, 255, 255, 66, 250, 20, 203, 65, 63, 174, 95, 123, 192, 47, 196, 85, 36, 174, 148, 173, 20, 255, 255, 255, 255, 48, 220, 64, 63, 174, 95, 123, 192, 227, 245, 151, 189, 70, 150, 70, 20, 0, 0, 66, 250, 208, 17, 62, 63, 174, 95, 123, 192, 145, 58, 23, 190, 165, 151, 185, 19, 0, 0, 96, 245, 216, 114, 57, 63, 174, 95, 123, 192, 87, 5, 97, 190, 205, 152, 8, 19, 0, 0, 25, 241, 169, 10, 51, 63, 174, 95, 123, 192, 173, 82, 148, 190, 191, 153, 51, 18, 0, 0, 64, 237, 17, 233, 42, 63, 174, 95, 123, 192, 0, 181, 182, 190, 122, 154, 64, 17, 0, 0, 180, 233, 26, 34, 33, 63, 174, 95, 123, 192, 225, 84, 215, 190, 255, 154, 46, 16, 0, 0, 92, 230, 226, 205, 21, 63, 174, 95, 123, 192, 222, 225, 245, 190, 79, 155, 0, 15, 0, 0, 37, 227, 84, 8, 9, 63, 174, 95, 123, 192, 84, 8, 9, 191, 105, 155, 180, 13, 0, 0, 255, 223, 222, 225, 245, 62, 174, 95, 123, 192, 226, 205, 21, 191, 79, 155, 79, 12, 0, 0, 216, 220, 225, 84, 215, 62, 174, 95, 123, 192, 26, 34, 33, 191, 255, 154, 208, 10, 0, 0, 161, 217, 0, 181, 182, 62, 174, 95, 123, 192, 17, 233, 42, 191, 122, 154, 56, 9, 0, 0, 74, 214, 173, 82, 148, 62, 174, 95, 123, 192, 169, 10, 51, 191, 191, 153, 137, 7, 0, 0, 189, 210, 87, 5, 97, 62, 174, 95, 123, 192, 216, 114, 57, 191, 205, 152, 197, 5, 0, 0, 228, 206, 145, 58, 23, 62, 174, 95, 123, 192, 208, 17, 62, 191, 165, 151, 236, 3, 0, 0, 157, 202, 227, 245, 151, 61, 174, 95, 123, 192, 48, 220, 64, 191, 70, 150, 255, 1, 0, 0, 188, 197, 47, 196, 213, 36, 174, 95, 123, 192, 20, 203, 65, 191, 174, 148, 0, 0, 0, 0, 255, 191, 227, 245, 151, 189, 174, 95, 123, 192, 48, 220, 64, 191, 184, 105, 255, 1, 120, 11, 255, 191, 145, 58, 23, 190, 174, 95, 123, 192, 208, 17, 62, 191, 88, 104, 236, 3, 59, 21, 255, 191, 87, 5, 97, 190, 174, 95, 123, 192, 216, 114, 57, 191, 49, 103, 197, 5, 201, 29, 255, 191, 173, 82, 148, 190, 174, 95, 123, 192, 169, 10, 51, 191, 63, 102, 137, 7, 125, 37, 255, 191, 0, 181, 182, 190, 174, 95, 123, 192, 17, 233, 42, 191, 132, 101, 56, 9, 149, 44, 255, 191, 225, 84, 215, 190, 174, 95, 123, 192, 26, 34, 33, 191, 254, 100, 208, 10, 68, 51, 255, 191, 222, 225, 245, 190, 174, 95, 123, 192, 226, 205, 21, 191, 175, 100, 79, 12, 178, 57, 255, 191, 84, 8, 9, 191, 174, 95, 123, 192, 84, 8, 9, 191, 149, 100, 180, 13, 255, 63, 255, 191, 226, 205, 21, 191, 174, 95, 123, 192, 222, 225, 245, 190, 174, 100, 0, 15, 77, 70, 255, 191, 26, 34, 33, 191, 174, 95, 123, 192, 225, 84, 215, 190, 255, 100, 46, 16, 185, 76, 255, 191, 17, 233, 42, 191, 174, 95, 123, 192, 0, 181, 182, 190, 131, 101, 64, 17, 104, 83, 255, 191, 169, 10, 51, 191, 174, 95, 123, 192, 173, 82, 148, 190, 63, 102, 51, 18, 130, 90, 255, 191, 216, 114, 57, 191, 174, 95, 123, 192, 87, 5, 97, 190, 49, 103, 8, 19, 53, 98, 255, 191, 208, 17, 62, 191, 174, 95, 123, 192, 145, 58, 23, 190, 89, 104, 185, 19, 195, 106, 255, 191, 48, 220, 64, 191, 174, 95, 123, 192, 227, 245, 151, 189, 183, 105, 70, 20, 133, 116, 255, 191, 20, 203, 65, 191, 174, 95, 123, 192, 35, 83, 32, 165, 79, 107, 173, 20, 255, 127, 255, 191, 48, 220, 64, 191, 174, 95, 123, 192, 227, 245, 151, 61, 184, 107, 69, 22, 121, 139, 255, 191, 208, 17, 62, 191, 174, 95, 123, 192, 145, 58, 23, 62, 69, 108, 165, 23, 59, 149, 255, 191, 216, 114, 57, 191, 174, 95, 123, 192, 87, 5, 97, 62, 247, 108, 206, 24, 201, 157, 255, 191, 169, 10, 51, 191, 174, 95, 123, 192, 173, 82, 148, 62, 202, 109, 191, 25, 124, 165, 255, 191, 17, 233, 42, 191, 174, 95, 123, 192, 0, 181, 182, 62, 190, 110, 122, 26, 149, 172, 255, 191, 26, 34, 33, 191, 174, 95, 123, 192, 225, 84, 215, 62, 208, 111, 254, 26, 68, 179, 255, 191, 226, 205, 21, 191, 174, 95, 123, 192, 222, 225, 245, 62, 255, 112, 78, 27, 177, 185, 255, 191, 84, 8, 9, 191, 174, 95, 123, 192, 84, 8, 9, 63, 74, 114, 106, 27, 255, 191, 255, 191, 222, 225, 245, 190, 174, 95, 123, 192, 226, 205, 21, 63, 175, 115, 78, 27, 76, 198, 255, 191, 225, 84, 215, 190, 174, 95, 123, 192, 26, 34, 33, 63, 46, 117, 255, 26, 186, 204, 255, 191, 0, 181, 182, 190, 174, 95, 123, 192, 17, 233, 42, 63, 198, 118, 122, 26, 105, 211, 255, 191, 173, 82, 148, 190, 174, 95, 123, 192, 169, 10, 51, 63, 116, 120, 191, 25, 129, 218, 255, 191, 87, 5, 97, 190, 174, 95, 123, 192, 216, 114, 57, 63, 57, 122, 206, 24, 52, 226, 255, 191, 145, 58, 23, 190, 174, 95, 123, 192, 208, 17, 62, 63, 19, 124, 165, 23, 194, 234, 255, 191, 227, 245, 151, 189, 174, 95, 123, 192, 48, 220, 64, 63, 0, 126, 69, 22, 132, 244, 255, 191, 47, 196, 85, 165, 174, 95, 123, 192, 20, 203, 65, 63, 255, 127, 174, 20, 255, 255, 255, 191, 0, 0, 0, 0, 64, 215, 126, 192, 178, 172, 194, 62, 255, 127, 40, 11, 255, 255, 255, 191, 206, 166, 24, 61, 64, 215, 126, 192, 184, 188, 193, 62, 21, 129, 24, 12, 255, 255, 188, 197, 161, 234, 151, 61, 64, 215, 126, 192, 25, 239, 190, 62, 36, 130, 235, 12, 255, 255, 157, 202, 80, 11, 226, 61, 64, 215, 126, 192, 191, 74, 186, 62, 43, 131, 158, 13, 255, 255, 228, 206, 91, 255, 20, 62, 64, 215, 126, 192, 26, 219, 179, 62, 40, 132, 49, 14, 255, 255, 189, 210, 182, 137, 55, 62, 64, 215, 126, 192, 11, 176, 171, 62, 25, 133, 164, 14, 255, 255, 74, 214, 146, 79, 88, 62, 64, 215, 126, 192, 178, 221, 161, 62, 254, 133, 248, 14, 255, 255, 161, 217, 33, 0, 119, 62, 64, 215, 126, 192, 73, 124, 150, 62, 213, 134, 40, 15, 255, 255, 216, 220, 221, 167, 137, 62, 64, 215, 126, 192, 221, 167, 137, 62, 156, 135, 57, 15, 255, 255, 255, 223, 73, 124, 150, 62, 64, 215, 126, 192, 33, 0, 119, 62, 83, 136, 40, 15, 255, 255, 37, 227, 178, 221, 161, 62, 64, 215, 126, 192, 146, 79, 88, 62, 248, 136, 248, 14, 255, 255, 92, 230, 11, 176, 171, 62, 64, 215, 126, 192, 182, 137, 55, 62, 139, 137, 164, 14, 255, 255, 180, 233, 26, 219, 179, 62, 64, 215, 126, 192, 91, 255, 20, 62, 9, 138, 49, 14, 255, 255, 64, 237, 191, 74, 186, 62, 64, 215, 126, 192, 80, 11, 226, 61, 115, 138, 158, 13, 255, 255, 25, 241, 25, 239, 190, 62, 64, 215, 126, 192, 161, 234, 151, 61, 198, 138, 235, 12, 255, 255, 96, 245, 184, 188, 193, 62, 64, 215, 126, 192, 206, 166, 24, 61, 3, 139, 24, 12, 255, 255, 66, 250, 178, 172, 194, 62, 64, 215, 126, 192, 14, 189, 214, 35, 39, 139, 40, 11, 255, 255, 255, 255, 184, 188, 193, 62, 64, 215, 126, 192, 206, 166, 24, 189, 24, 140, 3, 11, 0, 0, 66, 250, 25, 239, 190, 62, 64, 215, 126, 192, 161, 234, 151, 189, 235, 140, 199, 10, 0, 0, 96, 245, 191, 74, 186, 62, 64, 215, 126, 192, 80, 11, 226, 189, 158, 141, 115, 10, 0, 0, 25, 241, 26, 219, 179, 62, 64, 215, 126, 192, 91, 255, 20, 190, 50, 142, 9, 10, 0, 0, 64, 237, 11, 176, 171, 62, 64, 215, 126, 192, 182, 137, 55, 190, 165, 142, 138, 9, 0, 0, 180, 233, 178, 221, 161, 62, 64, 215, 126, 192, 146, 79, 88, 190, 247, 142, 249, 8, 0, 0, 92, 230, 73, 124, 150, 62, 64, 215, 126, 192, 33, 0, 119, 190, 40, 143, 84, 8, 0, 0, 37, 227, 221, 167, 137, 62, 64, 215, 126, 192, 221, 167, 137, 190, 57, 143, 156, 7, 0, 0, 255, 223, 33, 0, 119, 62, 64, 215, 126, 192, 73, 124, 150, 190, 40, 143, 213, 6, 0, 0, 216, 220, 146, 79, 88, 62, 64, 215, 126, 192, 178, 221, 161, 190, 246, 142, 255, 5, 0, 0, 161, 217, 182, 137, 55, 62, 64, 215, 126, 192, 11, 176, 171, 190, 165, 142, 25, 5, 0, 0, 74, 214, 91, 255, 20, 62, 64, 215, 126, 192, 26, 219, 179, 190, 50, 142, 39, 4, 0, 0, 189, 210, 80, 11, 226, 61, 64, 215, 126, 192, 191, 74, 186, 190, 158, 141, 42, 3, 0, 0, 228, 206, 161, 234, 151, 61, 64, 215, 126, 192, 25, 239, 190, 190, 234, 140, 35, 2, 0, 0, 157, 202, 206, 166, 24, 61, 64, 215, 126, 192, 184, 188, 193, 190, 24, 140, 20, 1, 0, 0, 188, 197, 14, 189, 86, 36, 64, 215, 126, 192, 178, 172, 194, 190, 39, 139, 0, 0, 0, 0, 255, 191, 206, 166, 24, 189, 64, 215, 126, 192, 184, 188, 193, 190, 230, 115, 20, 1, 120, 11, 255, 191, 161, 234, 151, 189, 64, 215, 126, 192, 25, 239, 190, 190, 18, 115, 35, 2, 59, 21, 255, 191, 80, 11, 226, 189, 64, 215, 126, 192, 191, 74, 186, 190, 95, 114, 42, 3, 201, 29, 255, 191, 91, 255, 20, 190, 64, 215, 126, 192, 26, 219, 179, 190, 204, 113, 39, 4, 125, 37, 255, 191, 182, 137, 55, 190, 64, 215, 126, 192, 11, 176, 171, 190, 89, 113, 25, 5, 149, 44, 255, 191, 146, 79, 88, 190, 64, 215, 126, 192, 178, 221, 161, 190, 7, 113, 255, 5, 68, 51, 255, 191, 33, 0, 119, 190, 64, 215, 126, 192, 73, 124, 150, 190, 213, 112, 213, 6, 178, 57, 255, 191, 221, 167, 137, 190, 64, 215, 126, 192, 221, 167, 137, 190, 196, 112, 156, 7, 255, 63, 255, 191, 73, 124, 150, 190, 64, 215, 126, 192, 33, 0, 119, 190, 212, 112, 84, 8, 77, 70, 255, 191, 178, 221, 161, 190, 64, 215, 126, 192, 146, 79, 88, 190, 7, 113, 249, 8, 185, 76, 255, 191, 11, 176, 171, 190, 64, 215, 126, 192, 182, 137, 55, 190, 89, 113, 138, 9, 104, 83, 255, 191, 26, 219, 179, 190, 64, 215, 126, 192, 91, 255, 20, 190, 204, 113, 9, 10, 130, 90, 255, 191, 191, 74, 186, 190, 64, 215, 126, 192, 80, 11, 226, 189, 96, 114, 115, 10, 53, 98, 255, 191, 25, 239, 190, 190, 64, 215, 126, 192, 161, 234, 151, 189, 19, 115, 199, 10, 195, 106, 255, 191, 184, 188, 193, 190, 64, 215, 126, 192, 206, 166, 24, 189, 229, 115, 3, 11, 133, 116, 255, 191, 178, 172, 194, 190, 64, 215, 126, 192, 202, 13, 161, 164, 214, 116, 39, 11, 255, 127, 255, 191, 184, 188, 193, 190, 64, 215, 126, 192, 206, 166, 24, 61, 251, 116, 24, 12, 121, 139, 255, 191, 25, 239, 190, 190, 64, 215, 126, 192, 161, 234, 151, 61, 56, 117, 234, 12, 59, 149, 255, 191, 191, 74, 186, 190, 64, 215, 126, 192, 80, 11, 226, 61, 139, 117, 158, 13, 201, 157, 255, 191, 26, 219, 179, 190, 64, 215, 126, 192, 91, 255, 20, 62, 245, 117, 49, 14, 124, 165, 255, 191, 11, 176, 171, 190, 64, 215, 126, 192, 182, 137, 55, 62, 115, 118, 165, 14, 149, 172, 255, 191, 178, 221, 161, 190, 64, 215, 126, 192, 146, 79, 88, 62, 6, 119, 248, 14, 68, 179, 255, 191, 73, 124, 150, 190, 64, 215, 126, 192, 33, 0, 119, 62, 171, 119, 40, 15, 177, 185, 255, 191, 221, 167, 137, 190, 64, 215, 126, 192, 221, 167, 137, 62, 98, 120, 57, 15, 255, 191, 255, 191, 33, 0, 119, 190, 64, 215, 126, 192, 73, 124, 150, 62, 41, 121, 41, 15, 76, 198, 255, 191, 146, 79, 88, 190, 64, 215, 126, 192, 178, 221, 161, 62, 0, 122, 248, 14, 186, 204, 255, 191, 182, 137, 55, 190, 64, 215, 126, 192, 11, 176, 171, 62, 229, 122, 165, 14, 105, 211, 255, 191, 91, 255, 20, 190, 64, 215, 126, 192, 26, 219, 179, 62, 214, 123, 49, 14, 129, 218, 255, 191, 80, 11, 226, 189, 64, 215, 126, 192, 191, 74, 186, 62, 211, 124, 158, 13, 52, 226, 255, 191, 161, 234, 151, 189, 64, 215, 126, 192, 25, 239, 190, 62, 218, 125, 234, 12, 194, 234, 255, 191, 206, 166, 24, 189, 64, 215, 126, 192, 184, 188, 193, 62, 233, 126, 24, 12, 132, 244, 255, 191, 14, 189, 214, 164, 64, 215, 126, 192, 178, 172, 194, 62, 255, 127, 40, 11, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 192, 50, 49, 13, 38, 0, 128, 0, 0, 255, 255, 255, 191, 148, 109, 93, 36, 0, 0, 128, 192, 37, 131, 12, 38, 0, 128, 0, 0, 255, 255, 188, 197, 159, 92, 220, 36, 0, 0, 128, 192, 173, 122, 10, 38, 0, 128, 0, 0, 255, 255, 157, 202, 149, 241, 35, 37, 0, 0, 128, 192, 204, 28, 7, 38, 0, 128, 0, 0, 255, 255, 228, 206, 171, 32, 88, 37, 0, 0, 128, 192, 206, 113, 2, 38, 0, 128, 0, 0, 255, 255, 189, 210, 116, 29, 133, 37, 0, 0, 128, 192, 111, 10, 249, 37, 0, 128, 0, 0, 255, 255, 74, 214, 100, 226, 156, 37, 0, 0, 128, 192, 67, 203, 234, 37, 0, 128, 0, 0, 255, 255, 161, 217, 138, 36, 179, 37, 0, 0, 128, 192, 58, 73, 218, 37, 0, 128, 0, 0, 255, 255, 216, 220, 6, 173, 199, 37, 0, 0, 128, 192, 6, 173, 199, 37, 0, 128, 0, 0, 255, 255, 255, 223, 58, 73, 218, 37, 0, 0, 128, 192, 138, 36, 179, 37, 0, 128, 0, 0, 255, 255, 37, 227, 67, 203, 234, 37, 0, 0, 128, 192, 100, 226, 156, 37, 0, 128, 0, 0, 255, 255, 92, 230, 111, 10, 249, 37, 0, 0, 128, 192, 116, 29, 133, 37, 0, 128, 0, 0, 255, 255, 180, 233, 206, 113, 2, 38, 0, 0, 128, 192, 171, 32, 88, 37, 0, 128, 0, 0, 255, 255, 64, 237, 204, 28, 7, 38, 0, 0, 128, 192, 149, 241, 35, 37, 0, 128, 0, 0, 255, 255, 25, 241, 173, 122, 10, 38, 0, 0, 128, 192, 159, 92, 220, 36, 0, 128, 0, 0, 255, 255, 96, 245, 37, 131, 12, 38, 0, 0, 128, 192, 148, 109, 93, 36, 0, 128, 0, 0, 255, 255, 66, 250, 50, 49, 13, 38, 0, 0, 128, 192, 117, 190, 27, 11, 0, 128, 0, 0, 255, 255, 255, 255, 37, 131, 12, 38, 0, 0, 128, 192, 148, 109, 93, 164, 0, 128, 0, 0, 0, 0, 66, 250, 173, 122, 10, 38, 0, 0, 128, 192, 159, 92, 220, 164, 0, 128, 0, 0, 0, 0, 96, 245, 204, 28, 7, 38, 0, 0, 128, 192, 149, 241, 35, 165, 0, 128, 0, 0, 0, 0, 25, 241, 206, 113, 2, 38, 0, 0, 128, 192, 171, 32, 88, 165, 0, 128, 0, 0, 0, 0, 64, 237, 111, 10, 249, 37, 0, 0, 128, 192, 116, 29, 133, 165, 0, 128, 0, 0, 0, 0, 180, 233, 67, 203, 234, 37, 0, 0, 128, 192, 100, 226, 156, 165, 0, 128, 0, 0, 0, 0, 92, 230, 58, 73, 218, 37, 0, 0, 128, 192, 138, 36, 179, 165, 0, 128, 0, 0, 0, 0, 37, 227, 6, 173, 199, 37, 0, 0, 128, 192, 6, 173, 199, 165, 0, 128, 0, 0, 0, 0, 255, 223, 138, 36, 179, 37, 0, 0, 128, 192, 58, 73, 218, 165, 0, 128, 0, 0, 0, 0, 216, 220, 100, 226, 156, 37, 0, 0, 128, 192, 67, 203, 234, 165, 0, 128, 0, 0, 0, 0, 161, 217, 116, 29, 133, 37, 0, 0, 128, 192, 111, 10, 249, 165, 0, 128, 0, 0, 0, 0, 74, 214, 171, 32, 88, 37, 0, 0, 128, 192, 206, 113, 2, 166, 0, 128, 0, 0, 0, 0, 189, 210, 149, 241, 35, 37, 0, 0, 128, 192, 204, 28, 7, 166, 0, 128, 0, 0, 0, 0, 228, 206, 159, 92, 220, 36, 0, 0, 128, 192, 173, 122, 10, 166, 0, 128, 0, 0, 0, 0, 157, 202, 148, 109, 93, 36, 0, 0, 128, 192, 37, 131, 12, 166, 0, 128, 0, 0, 0, 0, 188, 197, 117, 190, 155, 11, 0, 0, 128, 192, 50, 49, 13, 166, 0, 128, 0, 0, 0, 0, 255, 191, 148, 109, 93, 164, 0, 0, 128, 192, 37, 131, 12, 166, 0, 128, 0, 0, 120, 11, 255, 191, 159, 92, 220, 164, 0, 0, 128, 192, 173, 122, 10, 166, 0, 128, 0, 0, 59, 21, 255, 191, 149, 241, 35, 165, 0, 0, 128, 192, 204, 28, 7, 166, 0, 128, 0, 0, 201, 29, 255, 191, 171, 32, 88, 165, 0, 0, 128, 192, 206, 113, 2, 166, 0, 128, 0, 0, 125, 37, 255, 191, 116, 29, 133, 165, 0, 0, 128, 192, 111, 10, 249, 165, 0, 128, 0, 0, 149, 44, 255, 191, 100, 226, 156, 165, 0, 0, 128, 192, 67, 203, 234, 165, 0, 128, 0, 0, 68, 51, 255, 191, 138, 36, 179, 165, 0, 0, 128, 192, 58, 73, 218, 165, 0, 128, 0, 0, 178, 57, 255, 191, 6, 173, 199, 165, 0, 0, 128, 192, 6, 173, 199, 165, 0, 128, 0, 0, 255, 63, 255, 191, 58, 73, 218, 165, 0, 0, 128, 192, 138, 36, 179, 165, 0, 128, 0, 0, 77, 70, 255, 191, 67, 203, 234, 165, 0, 0, 128, 192, 100, 226, 156, 165, 0, 128, 0, 0, 185, 76, 255, 191, 111, 10, 249, 165, 0, 0, 128, 192, 116, 29, 133, 165, 0, 128, 0, 0, 104, 83, 255, 191, 206, 113, 2, 166, 0, 0, 128, 192, 171, 32, 88, 165, 0, 128, 0, 0, 130, 90, 255, 191, 204, 28, 7, 166, 0, 0, 128, 192, 149, 241, 35, 165, 0, 128, 0, 0, 53, 98, 255, 191, 173, 122, 10, 166, 0, 0, 128, 192, 159, 92, 220, 164, 0, 128, 0, 0, 195, 106, 255, 191, 37, 131, 12, 166, 0, 0, 128, 192, 148, 109, 93, 164, 0, 128, 0, 0, 133, 116, 255, 191, 50, 49, 13, 166, 0, 0, 128, 192, 174, 157, 233, 139, 0, 128, 0, 0, 255, 127, 255, 191, 37, 131, 12, 166, 0, 0, 128, 192, 148, 109, 93, 36, 0, 128, 0, 0, 121, 139, 255, 191, 173, 122, 10, 166, 0, 0, 128, 192, 159, 92, 220, 36, 0, 128, 0, 0, 59, 149, 255, 191, 204, 28, 7, 166, 0, 0, 128, 192, 149, 241, 35, 37, 0, 128, 0, 0, 201, 157, 255, 191, 206, 113, 2, 166, 0, 0, 128, 192, 171, 32, 88, 37, 0, 128, 0, 0, 124, 165, 255, 191, 111, 10, 249, 165, 0, 0, 128, 192, 116, 29, 133, 37, 0, 128, 0, 0, 149, 172, 255, 191, 67, 203, 234, 165, 0, 0, 128, 192, 100, 226, 156, 37, 0, 128, 0, 0, 68, 179, 255, 191, 58, 73, 218, 165, 0, 0, 128, 192, 138, 36, 179, 37, 0, 128, 0, 0, 177, 185, 255, 191, 6, 173, 199, 165, 0, 0, 128, 192, 6, 173, 199, 37, 0, 128, 0, 0, 255, 191, 255, 191, 138, 36, 179, 165, 0, 0, 128, 192, 58, 73, 218, 37, 0, 128, 0, 0, 76, 198, 255, 191, 100, 226, 156, 165, 0, 0, 128, 192, 67, 203, 234, 37, 0, 128, 0, 0, 186, 204, 255, 191, 116, 29, 133, 165, 0, 0, 128, 192, 111, 10, 249, 37, 0, 128, 0, 0, 105, 211, 255, 191, 171, 32, 88, 165, 0, 0, 128, 192, 206, 113, 2, 38, 0, 128, 0, 0, 129, 218, 255, 191, 149, 241, 35, 165, 0, 0, 128, 192, 204, 28, 7, 38, 0, 128, 0, 0, 52, 226, 255, 191, 159, 92, 220, 164, 0, 0, 128, 192, 173, 122, 10, 38, 0, 128, 0, 0, 194, 234, 255, 191, 148, 109, 93, 164, 0, 0, 128, 192, 37, 131, 12, 38, 0, 128, 0, 0, 132, 244, 255, 191, 117, 190, 27, 140, 0, 0, 128, 192, 50, 49, 13, 38, 0, 128, 0, 0, 255, 255, 255, 191) +}] +script = ExtResource("2_7rgpm") +segments = 64 +rings = 32 +radius = 4.0 +material = SubResource("StandardMaterial3D_gyt54") + +[sub_resource type="Gradient" id="Gradient_yy78k"] +colors = PackedColorArray(1, 0.882667, 0.36, 1, 0.81, 0, 0, 1) + +[sub_resource type="GradientTexture1D" id="GradientTexture1D_2haui"] +gradient = SubResource("Gradient_yy78k") + +[sub_resource type="Curve" id="Curve_jkehe"] +_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -3.03157, 0.0, 0, 0] +point_count = 2 + +[sub_resource type="CurveTexture" id="CurveTexture_0kndu"] +curve = SubResource("Curve_jkehe") + +[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_la0c6"] +emission_shape = 2 +emission_sphere_radius = 0.5 +direction = Vector3(0, 0, 0) +spread = 180.0 +gravity = Vector3(0, 0, 0) +radial_accel_min = 8.0 +radial_accel_max = 16.0 +scale_min = 0.05 +scale_max = 0.1 +scale_curve = SubResource("CurveTexture_0kndu") +color_ramp = SubResource("GradientTexture1D_2haui") +turbulence_noise_strength = 0.2 +attractor_interaction_enabled = false + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y5edj"] +blend_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +vertex_color_use_as_albedo = true +billboard_keep_scale = true + +[sub_resource type="SphereMesh" id="SphereMesh_74i8l"] +material = SubResource("StandardMaterial3D_y5edj") +radial_segments = 8 +rings = 4 + +[sub_resource type="SphereShape3D" id="SphereShape3D_1qng7"] +radius = 4.0 + +[sub_resource type="Gradient" id="Gradient_dvsrp"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0, 0.9, 0.95, 1) +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1, 0.5, 0.5, 0.5, 1, 0.0705882, 0.0705882, 0.0705882, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_qncv1"] +gradient = SubResource("Gradient_dvsrp") +width = 128 +height = 128 +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="Animation" id="Animation_km8h3"] +resource_name = "birth" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [1.0, 0.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} + +[sub_resource type="Animation" id="Animation_psafd"] +resource_name = "death" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [true, false] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_g1rid"] +_data = { +"birth": SubResource("Animation_km8h3"), +"death": SubResource("Animation_psafd") +} + +[node name="Repulse Effect" type="Node3D" node_paths=PackedStringArray("area")] +script = ExtResource("1_47iru") +area = NodePath("Area3D") +strength = 16.0 +duration = 10.0 + +[node name="Aura" type="MeshInstance3D" parent="."] +transform = Transform3D(0.005, 0, 0, 0, 0.005, 0, 0, 0, 0.005, 0, 0.25, 0) +transparency = 1.0 +mesh = SubResource("ArrayMesh_c08x4") +skeleton = NodePath("../..") + +[node name="GPUParticles3D" type="GPUParticles3D" parent="."] +emitting = false +amount = 128 +lifetime = 0.5 +local_coords = true +process_material = SubResource("ParticleProcessMaterial_la0c6") +draw_pass_1 = SubResource("SphereMesh_74i8l") + +[node name="Area3D" type="Area3D" parent="."] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Area3D"] +shape = SubResource("SphereShape3D_1qng7") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +autoplay = true +script = ExtResource("3_pwfeh") +sounds = Array[AudioStream]([ExtResource("4_rqncr"), ExtResource("5_4vybw"), ExtResource("6_6gndw")]) + +[node name="Decal" type="Decal" parent="."] +transform = Transform3D(0.005, 0, 0, 0, 0.005, 0, 0, 0, 0.005, 0, -1.875, 0) +size = Vector3(8, 4, 8) +texture_emission = SubResource("GradientTexture2D_qncv1") +emission_energy = 0.5 +modulate = Color(1, 0.4, 0, 1) +lower_fade = 1.0 + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "birth" +libraries = { +"": SubResource("AnimationLibrary_g1rid") +} diff --git a/examples/forest-brawl/scenes/effects/speed-effect.tscn b/examples/forest-brawl/scenes/effects/speed-effect.tscn new file mode 100644 index 0000000..89e5c49 --- /dev/null +++ b/examples/forest-brawl/scenes/effects/speed-effect.tscn @@ -0,0 +1,228 @@ +[gd_scene load_steps=20 format=3 uid="uid://bd38peoq8b5ae"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/effects/speed-effect.gd" id="1_r0k2e"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/aura-sphere-mesh.gd" id="2_ot0pi"] +[ext_resource type="AudioStream" uid="uid://baytcuptor78h" path="res://examples/forest-brawl/sounds/blipwave.wav" id="3_hmarj"] + +[sub_resource type="Gradient" id="Gradient_k0qrh"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0.484163, 1) +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_lut6u"] +gradient = SubResource("Gradient_k0qrh") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gyt54"] +blend_mode = 1 +cull_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +albedo_color = Color(0, 0.733333, 1, 1) +albedo_texture = SubResource("GradientTexture2D_lut6u") +disable_receive_shadows = true +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true +proximity_fade_distance = 0.13 + +[sub_resource type="ArrayMesh" id="ArrayMesh_a8hvh"] +_surfaces = [{ +"aabb": AABB(-0.984808, -1, -0.984808, 1.96962, 2.00001, 1.96962), +"attribute_data": PackedByteArray(0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 81, 199, 43, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 94, 113, 168, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 0, 0, 0, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 222, 70, 82, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 138, 228, 54, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 0, 0, 0, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 236, 217, 110, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 160, 48, 137, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 0, 0, 0, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 46, 14, 126, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 0, 233, 248, 59, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 0, 0, 0, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 46, 14, 126, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 0, 233, 248, 59, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 0, 0, 0, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 236, 217, 110, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 164, 48, 137, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 0, 0, 0, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 221, 70, 82, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 140, 228, 54, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 0, 0, 0, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 81, 199, 43, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 94, 113, 168, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0), +"format": 4119, +"index_count": 864, +"index_data": PackedByteArray(0, 0, 1, 0, 17, 0, 1, 0, 18, 0, 17, 0, 1, 0, 2, 0, 18, 0, 2, 0, 19, 0, 18, 0, 2, 0, 3, 0, 19, 0, 3, 0, 20, 0, 19, 0, 3, 0, 4, 0, 20, 0, 4, 0, 21, 0, 20, 0, 4, 0, 5, 0, 21, 0, 5, 0, 22, 0, 21, 0, 5, 0, 6, 0, 22, 0, 6, 0, 23, 0, 22, 0, 6, 0, 7, 0, 23, 0, 7, 0, 24, 0, 23, 0, 7, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 8, 0, 9, 0, 25, 0, 9, 0, 26, 0, 25, 0, 9, 0, 10, 0, 26, 0, 10, 0, 27, 0, 26, 0, 10, 0, 11, 0, 27, 0, 11, 0, 28, 0, 27, 0, 11, 0, 12, 0, 28, 0, 12, 0, 29, 0, 28, 0, 12, 0, 13, 0, 29, 0, 13, 0, 30, 0, 29, 0, 13, 0, 14, 0, 30, 0, 14, 0, 31, 0, 30, 0, 14, 0, 15, 0, 31, 0, 15, 0, 32, 0, 31, 0, 15, 0, 16, 0, 32, 0, 16, 0, 33, 0, 32, 0, 17, 0, 18, 0, 34, 0, 18, 0, 35, 0, 34, 0, 18, 0, 19, 0, 35, 0, 19, 0, 36, 0, 35, 0, 19, 0, 20, 0, 36, 0, 20, 0, 37, 0, 36, 0, 20, 0, 21, 0, 37, 0, 21, 0, 38, 0, 37, 0, 21, 0, 22, 0, 38, 0, 22, 0, 39, 0, 38, 0, 22, 0, 23, 0, 39, 0, 23, 0, 40, 0, 39, 0, 23, 0, 24, 0, 40, 0, 24, 0, 41, 0, 40, 0, 24, 0, 25, 0, 41, 0, 25, 0, 42, 0, 41, 0, 25, 0, 26, 0, 42, 0, 26, 0, 43, 0, 42, 0, 26, 0, 27, 0, 43, 0, 27, 0, 44, 0, 43, 0, 27, 0, 28, 0, 44, 0, 28, 0, 45, 0, 44, 0, 28, 0, 29, 0, 45, 0, 29, 0, 46, 0, 45, 0, 29, 0, 30, 0, 46, 0, 30, 0, 47, 0, 46, 0, 30, 0, 31, 0, 47, 0, 31, 0, 48, 0, 47, 0, 31, 0, 32, 0, 48, 0, 32, 0, 49, 0, 48, 0, 32, 0, 33, 0, 49, 0, 33, 0, 50, 0, 49, 0, 34, 0, 35, 0, 51, 0, 35, 0, 52, 0, 51, 0, 35, 0, 36, 0, 52, 0, 36, 0, 53, 0, 52, 0, 36, 0, 37, 0, 53, 0, 37, 0, 54, 0, 53, 0, 37, 0, 38, 0, 54, 0, 38, 0, 55, 0, 54, 0, 38, 0, 39, 0, 55, 0, 39, 0, 56, 0, 55, 0, 39, 0, 40, 0, 56, 0, 40, 0, 57, 0, 56, 0, 40, 0, 41, 0, 57, 0, 41, 0, 58, 0, 57, 0, 41, 0, 42, 0, 58, 0, 42, 0, 59, 0, 58, 0, 42, 0, 43, 0, 59, 0, 43, 0, 60, 0, 59, 0, 43, 0, 44, 0, 60, 0, 44, 0, 61, 0, 60, 0, 44, 0, 45, 0, 61, 0, 45, 0, 62, 0, 61, 0, 45, 0, 46, 0, 62, 0, 46, 0, 63, 0, 62, 0, 46, 0, 47, 0, 63, 0, 47, 0, 64, 0, 63, 0, 47, 0, 48, 0, 64, 0, 48, 0, 65, 0, 64, 0, 48, 0, 49, 0, 65, 0, 49, 0, 66, 0, 65, 0, 49, 0, 50, 0, 66, 0, 50, 0, 67, 0, 66, 0, 51, 0, 52, 0, 68, 0, 52, 0, 69, 0, 68, 0, 52, 0, 53, 0, 69, 0, 53, 0, 70, 0, 69, 0, 53, 0, 54, 0, 70, 0, 54, 0, 71, 0, 70, 0, 54, 0, 55, 0, 71, 0, 55, 0, 72, 0, 71, 0, 55, 0, 56, 0, 72, 0, 56, 0, 73, 0, 72, 0, 56, 0, 57, 0, 73, 0, 57, 0, 74, 0, 73, 0, 57, 0, 58, 0, 74, 0, 58, 0, 75, 0, 74, 0, 58, 0, 59, 0, 75, 0, 59, 0, 76, 0, 75, 0, 59, 0, 60, 0, 76, 0, 60, 0, 77, 0, 76, 0, 60, 0, 61, 0, 77, 0, 61, 0, 78, 0, 77, 0, 61, 0, 62, 0, 78, 0, 62, 0, 79, 0, 78, 0, 62, 0, 63, 0, 79, 0, 63, 0, 80, 0, 79, 0, 63, 0, 64, 0, 80, 0, 64, 0, 81, 0, 80, 0, 64, 0, 65, 0, 81, 0, 65, 0, 82, 0, 81, 0, 65, 0, 66, 0, 82, 0, 66, 0, 83, 0, 82, 0, 66, 0, 67, 0, 83, 0, 67, 0, 84, 0, 83, 0, 68, 0, 69, 0, 85, 0, 69, 0, 86, 0, 85, 0, 69, 0, 70, 0, 86, 0, 70, 0, 87, 0, 86, 0, 70, 0, 71, 0, 87, 0, 71, 0, 88, 0, 87, 0, 71, 0, 72, 0, 88, 0, 72, 0, 89, 0, 88, 0, 72, 0, 73, 0, 89, 0, 73, 0, 90, 0, 89, 0, 73, 0, 74, 0, 90, 0, 74, 0, 91, 0, 90, 0, 74, 0, 75, 0, 91, 0, 75, 0, 92, 0, 91, 0, 75, 0, 76, 0, 92, 0, 76, 0, 93, 0, 92, 0, 76, 0, 77, 0, 93, 0, 77, 0, 94, 0, 93, 0, 77, 0, 78, 0, 94, 0, 78, 0, 95, 0, 94, 0, 78, 0, 79, 0, 95, 0, 79, 0, 96, 0, 95, 0, 79, 0, 80, 0, 96, 0, 80, 0, 97, 0, 96, 0, 80, 0, 81, 0, 97, 0, 81, 0, 98, 0, 97, 0, 81, 0, 82, 0, 98, 0, 82, 0, 99, 0, 98, 0, 82, 0, 83, 0, 99, 0, 83, 0, 100, 0, 99, 0, 83, 0, 84, 0, 100, 0, 84, 0, 101, 0, 100, 0, 85, 0, 86, 0, 102, 0, 86, 0, 103, 0, 102, 0, 86, 0, 87, 0, 103, 0, 87, 0, 104, 0, 103, 0, 87, 0, 88, 0, 104, 0, 88, 0, 105, 0, 104, 0, 88, 0, 89, 0, 105, 0, 89, 0, 106, 0, 105, 0, 89, 0, 90, 0, 106, 0, 90, 0, 107, 0, 106, 0, 90, 0, 91, 0, 107, 0, 91, 0, 108, 0, 107, 0, 91, 0, 92, 0, 108, 0, 92, 0, 109, 0, 108, 0, 92, 0, 93, 0, 109, 0, 93, 0, 110, 0, 109, 0, 93, 0, 94, 0, 110, 0, 94, 0, 111, 0, 110, 0, 94, 0, 95, 0, 111, 0, 95, 0, 112, 0, 111, 0, 95, 0, 96, 0, 112, 0, 96, 0, 113, 0, 112, 0, 96, 0, 97, 0, 113, 0, 97, 0, 114, 0, 113, 0, 97, 0, 98, 0, 114, 0, 98, 0, 115, 0, 114, 0, 98, 0, 99, 0, 115, 0, 99, 0, 116, 0, 115, 0, 99, 0, 100, 0, 116, 0, 100, 0, 117, 0, 116, 0, 100, 0, 101, 0, 117, 0, 101, 0, 118, 0, 117, 0, 102, 0, 103, 0, 119, 0, 103, 0, 120, 0, 119, 0, 103, 0, 104, 0, 120, 0, 104, 0, 121, 0, 120, 0, 104, 0, 105, 0, 121, 0, 105, 0, 122, 0, 121, 0, 105, 0, 106, 0, 122, 0, 106, 0, 123, 0, 122, 0, 106, 0, 107, 0, 123, 0, 107, 0, 124, 0, 123, 0, 107, 0, 108, 0, 124, 0, 108, 0, 125, 0, 124, 0, 108, 0, 109, 0, 125, 0, 109, 0, 126, 0, 125, 0, 109, 0, 110, 0, 126, 0, 110, 0, 127, 0, 126, 0, 110, 0, 111, 0, 127, 0, 111, 0, 128, 0, 127, 0, 111, 0, 112, 0, 128, 0, 112, 0, 129, 0, 128, 0, 112, 0, 113, 0, 129, 0, 113, 0, 130, 0, 129, 0, 113, 0, 114, 0, 130, 0, 114, 0, 131, 0, 130, 0, 114, 0, 115, 0, 131, 0, 115, 0, 132, 0, 131, 0, 115, 0, 116, 0, 132, 0, 116, 0, 133, 0, 132, 0, 116, 0, 117, 0, 133, 0, 117, 0, 134, 0, 133, 0, 117, 0, 118, 0, 134, 0, 118, 0, 135, 0, 134, 0, 119, 0, 120, 0, 136, 0, 120, 0, 137, 0, 136, 0, 120, 0, 121, 0, 137, 0, 121, 0, 138, 0, 137, 0, 121, 0, 122, 0, 138, 0, 122, 0, 139, 0, 138, 0, 122, 0, 123, 0, 139, 0, 123, 0, 140, 0, 139, 0, 123, 0, 124, 0, 140, 0, 124, 0, 141, 0, 140, 0, 124, 0, 125, 0, 141, 0, 125, 0, 142, 0, 141, 0, 125, 0, 126, 0, 142, 0, 126, 0, 143, 0, 142, 0, 126, 0, 127, 0, 143, 0, 127, 0, 144, 0, 143, 0, 127, 0, 128, 0, 144, 0, 128, 0, 145, 0, 144, 0, 128, 0, 129, 0, 145, 0, 129, 0, 146, 0, 145, 0, 129, 0, 130, 0, 146, 0, 130, 0, 147, 0, 146, 0, 130, 0, 131, 0, 147, 0, 131, 0, 148, 0, 147, 0, 131, 0, 132, 0, 148, 0, 132, 0, 149, 0, 148, 0, 132, 0, 133, 0, 149, 0, 133, 0, 150, 0, 149, 0, 133, 0, 134, 0, 150, 0, 134, 0, 151, 0, 150, 0, 134, 0, 135, 0, 151, 0, 135, 0, 152, 0, 151, 0, 136, 0, 137, 0, 153, 0, 137, 0, 154, 0, 153, 0, 137, 0, 138, 0, 154, 0, 138, 0, 155, 0, 154, 0, 138, 0, 139, 0, 155, 0, 139, 0, 156, 0, 155, 0, 139, 0, 140, 0, 156, 0, 140, 0, 157, 0, 156, 0, 140, 0, 141, 0, 157, 0, 141, 0, 158, 0, 157, 0, 141, 0, 142, 0, 158, 0, 142, 0, 159, 0, 158, 0, 142, 0, 143, 0, 159, 0, 143, 0, 160, 0, 159, 0, 143, 0, 144, 0, 160, 0, 144, 0, 161, 0, 160, 0, 144, 0, 145, 0, 161, 0, 145, 0, 162, 0, 161, 0, 145, 0, 146, 0, 162, 0, 146, 0, 163, 0, 162, 0, 146, 0, 147, 0, 163, 0, 147, 0, 164, 0, 163, 0, 147, 0, 148, 0, 164, 0, 148, 0, 165, 0, 164, 0, 148, 0, 149, 0, 165, 0, 149, 0, 166, 0, 165, 0, 149, 0, 150, 0, 166, 0, 150, 0, 167, 0, 166, 0, 150, 0, 151, 0, 167, 0, 151, 0, 168, 0, 167, 0, 151, 0, 152, 0, 168, 0, 152, 0, 169, 0, 168, 0), +"material": SubResource("StandardMaterial3D_gyt54"), +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 63, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 130, 90, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 127, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 124, 165, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 191, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 129, 218, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 62, 20, 140, 190, 214, 255, 255, 189, 210, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 62, 190, 149, 128, 212, 255, 255, 255, 223, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 62, 42, 157, 190, 214, 255, 255, 64, 237, 68, 29, 175, 62, 178, 143, 112, 63, 139, 41, 193, 35, 39, 162, 215, 221, 255, 255, 255, 255, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 190, 64, 169, 211, 226, 0, 0, 64, 237, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 190, 125, 171, 63, 234, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 190, 64, 169, 233, 243, 0, 0, 189, 210, 139, 41, 65, 36, 178, 143, 112, 63, 68, 29, 175, 190, 39, 162, 255, 255, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 190, 190, 86, 233, 243, 125, 37, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 190, 128, 84, 63, 234, 255, 63, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 190, 190, 86, 211, 226, 130, 90, 255, 191, 68, 29, 175, 190, 178, 143, 112, 63, 39, 223, 144, 164, 215, 93, 215, 221, 255, 127, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 62, 212, 98, 190, 214, 124, 165, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 62, 64, 106, 128, 212, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 62, 234, 115, 190, 214, 129, 218, 255, 191, 139, 41, 193, 164, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 0, 0, 0, 0, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 63, 154, 147, 14, 189, 255, 255, 189, 210, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 62, 186, 162, 136, 186, 255, 255, 255, 223, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 62, 84, 175, 14, 189, 255, 255, 64, 237, 187, 141, 36, 63, 125, 27, 68, 63, 95, 131, 53, 36, 101, 186, 152, 197, 255, 255, 255, 255, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 190, 240, 194, 169, 208, 0, 0, 64, 237, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 190, 117, 197, 67, 221, 0, 0, 255, 223, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 191, 240, 194, 99, 236, 0, 0, 189, 210, 95, 131, 181, 36, 125, 27, 68, 63, 187, 141, 36, 191, 101, 186, 255, 255, 0, 0, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 191, 14, 61, 99, 236, 125, 37, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 190, 137, 58, 67, 221, 255, 63, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 190, 14, 61, 169, 208, 130, 90, 255, 191, 187, 141, 36, 191, 125, 27, 68, 63, 134, 34, 8, 165, 153, 69, 152, 197, 255, 127, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 62, 170, 80, 14, 189, 124, 165, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 62, 68, 93, 136, 186, 255, 191, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 63, 100, 108, 14, 189, 129, 218, 255, 191, 95, 131, 53, 165, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 0, 0, 0, 0, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 63, 255, 153, 57, 167, 255, 255, 189, 210, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 63, 113, 173, 26, 165, 255, 255, 255, 223, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 62, 196, 190, 57, 167, 255, 255, 64, 237, 216, 179, 93, 63, 255, 255, 255, 62, 81, 141, 116, 36, 36, 209, 217, 174, 255, 255, 255, 255, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 190, 196, 216, 57, 193, 0, 0, 64, 237, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 191, 227, 218, 140, 210, 0, 0, 255, 223, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 191, 196, 216, 254, 229, 0, 0, 189, 210, 81, 141, 244, 36, 255, 255, 255, 62, 216, 179, 93, 191, 37, 209, 255, 255, 0, 0, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 191, 57, 39, 254, 229, 125, 37, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 191, 27, 37, 140, 210, 255, 63, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 190, 57, 39, 57, 193, 130, 90, 255, 191, 216, 179, 93, 191, 255, 255, 255, 62, 252, 105, 55, 165, 217, 46, 217, 174, 255, 127, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 62, 58, 65, 57, 167, 124, 165, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 63, 141, 82, 26, 165, 255, 191, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 63, 255, 101, 57, 167, 129, 218, 255, 191, 81, 141, 116, 165, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 63, 7, 161, 55, 143, 255, 255, 189, 210, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 63, 230, 184, 48, 142, 255, 255, 255, 223, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 62, 190, 207, 55, 143, 255, 255, 64, 237, 92, 28, 124, 63, 211, 208, 49, 62, 17, 12, 139, 36, 207, 236, 47, 147, 255, 255, 255, 255, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 190, 198, 240, 63, 176, 0, 0, 64, 237, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 191, 206, 241, 23, 199, 0, 0, 255, 223, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 191, 198, 240, 246, 222, 0, 0, 189, 210, 17, 12, 11, 37, 211, 208, 49, 62, 92, 28, 124, 191, 207, 236, 255, 255, 0, 0, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 191, 55, 15, 246, 222, 125, 37, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 191, 47, 14, 23, 199, 255, 63, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 190, 55, 15, 63, 176, 130, 90, 255, 191, 92, 28, 124, 191, 211, 208, 49, 62, 25, 146, 80, 165, 46, 19, 46, 147, 255, 127, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 62, 63, 48, 55, 143, 124, 165, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 63, 24, 71, 48, 142, 255, 191, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 63, 247, 94, 55, 143, 129, 218, 255, 191, 17, 12, 139, 165, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 0, 0, 0, 0, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 63, 7, 161, 199, 112, 255, 255, 189, 210, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 63, 230, 184, 206, 113, 255, 255, 255, 223, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 62, 190, 207, 199, 112, 255, 255, 64, 237, 92, 28, 124, 63, 217, 208, 49, 190, 17, 12, 139, 36, 207, 236, 207, 108, 255, 255, 255, 255, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 190, 198, 240, 191, 79, 0, 0, 64, 237, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 191, 206, 241, 231, 56, 0, 0, 255, 223, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 191, 198, 240, 8, 33, 0, 0, 189, 210, 17, 12, 11, 37, 217, 208, 49, 190, 92, 28, 124, 191, 207, 236, 0, 0, 0, 0, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 191, 55, 15, 8, 33, 125, 37, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 191, 47, 14, 231, 56, 255, 63, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 190, 55, 15, 191, 79, 130, 90, 255, 191, 92, 28, 124, 191, 217, 208, 49, 190, 25, 146, 80, 165, 46, 19, 207, 108, 255, 127, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 62, 63, 48, 199, 112, 124, 165, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 63, 24, 71, 206, 113, 255, 191, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 63, 247, 94, 199, 112, 129, 218, 255, 191, 17, 12, 139, 165, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 0, 0, 0, 0, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 63, 255, 153, 197, 88, 255, 255, 189, 210, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 63, 113, 173, 228, 90, 255, 255, 255, 223, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 62, 196, 190, 197, 88, 255, 255, 64, 237, 215, 179, 93, 63, 1, 0, 0, 191, 80, 141, 116, 36, 37, 209, 37, 81, 255, 255, 255, 255, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 190, 196, 216, 197, 62, 0, 0, 64, 237, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 191, 227, 218, 114, 45, 0, 0, 255, 223, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 191, 196, 216, 0, 26, 0, 0, 189, 210, 80, 141, 244, 36, 1, 0, 0, 191, 215, 179, 93, 191, 37, 209, 0, 0, 0, 0, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 191, 57, 39, 0, 26, 125, 37, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 191, 27, 37, 114, 45, 255, 63, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 190, 57, 39, 197, 62, 130, 90, 255, 191, 215, 179, 93, 191, 1, 0, 0, 191, 251, 105, 55, 165, 217, 46, 37, 81, 255, 127, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 62, 58, 65, 197, 88, 124, 165, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 63, 141, 82, 228, 90, 255, 191, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 63, 255, 101, 197, 88, 129, 218, 255, 191, 80, 141, 116, 165, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 0, 0, 0, 0, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 63, 154, 147, 240, 66, 255, 255, 189, 210, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 62, 186, 162, 118, 69, 255, 255, 255, 223, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 62, 84, 175, 240, 66, 255, 255, 64, 237, 186, 141, 36, 63, 126, 27, 68, 191, 93, 131, 53, 36, 101, 186, 101, 58, 255, 255, 255, 255, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 190, 240, 194, 84, 47, 0, 0, 64, 237, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 190, 117, 197, 187, 34, 0, 0, 255, 223, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 191, 240, 194, 154, 19, 0, 0, 189, 210, 93, 131, 181, 36, 126, 27, 68, 191, 186, 141, 36, 191, 101, 186, 0, 0, 0, 0, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 191, 14, 61, 154, 19, 125, 37, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 190, 137, 58, 187, 34, 255, 63, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 190, 14, 61, 84, 47, 130, 90, 255, 191, 186, 141, 36, 191, 126, 27, 68, 191, 133, 34, 8, 165, 153, 69, 102, 58, 255, 127, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 62, 170, 80, 240, 66, 124, 165, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 62, 68, 93, 118, 69, 255, 191, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 63, 100, 108, 240, 66, 129, 218, 255, 191, 93, 131, 53, 165, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 62, 20, 140, 63, 41, 255, 255, 189, 210, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 62, 190, 149, 126, 43, 255, 255, 255, 223, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 62, 42, 157, 63, 41, 255, 255, 64, 237, 67, 29, 175, 62, 178, 143, 112, 191, 137, 41, 193, 35, 39, 162, 38, 34, 255, 255, 255, 255, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 190, 64, 169, 42, 29, 0, 0, 64, 237, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 190, 126, 171, 191, 21, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 190, 64, 169, 20, 12, 0, 0, 189, 210, 137, 41, 65, 36, 178, 143, 112, 191, 67, 29, 175, 190, 39, 162, 0, 0, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 190, 189, 86, 20, 12, 125, 37, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 190, 128, 84, 191, 21, 255, 63, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 190, 190, 86, 42, 29, 130, 90, 255, 191, 67, 29, 175, 190, 178, 143, 112, 191, 38, 223, 144, 164, 215, 93, 38, 34, 255, 127, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 62, 212, 98, 63, 41, 124, 165, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 62, 64, 106, 126, 43, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 62, 234, 115, 63, 41, 129, 218, 255, 191, 137, 41, 193, 164, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 255, 255, 189, 210, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 255, 255, 223, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 255, 255, 64, 237, 50, 49, 13, 37, 0, 0, 128, 191, 117, 190, 27, 10, 0, 128, 0, 0, 255, 255, 255, 255, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 0, 0, 64, 237, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 0, 0, 255, 223, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 0, 0, 189, 210, 117, 190, 155, 10, 0, 0, 128, 191, 50, 49, 13, 165, 0, 128, 0, 0, 0, 0, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 125, 37, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 255, 63, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 130, 90, 255, 191, 50, 49, 13, 165, 0, 0, 128, 191, 174, 157, 233, 138, 0, 128, 0, 0, 255, 127, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 124, 165, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 191, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 129, 218, 255, 191, 117, 190, 27, 139, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191) +}] +script = ExtResource("2_ot0pi") +segments = 16 +rings = 8 +radius = 1.0 +material = SubResource("StandardMaterial3D_gyt54") + +[sub_resource type="Gradient" id="Gradient_yy78k"] +colors = PackedColorArray(0.36, 0.946667, 1, 1, 0.0539999, 0, 0.81, 1) + +[sub_resource type="GradientTexture1D" id="GradientTexture1D_2haui"] +gradient = SubResource("Gradient_yy78k") + +[sub_resource type="Curve" id="Curve_jkehe"] +_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -3.03157, 0.0, 0, 0] +point_count = 2 + +[sub_resource type="CurveTexture" id="CurveTexture_0kndu"] +curve = SubResource("Curve_jkehe") + +[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_la0c6"] +emission_shape = 1 +emission_sphere_radius = 1.0 +direction = Vector3(0, 0, 0) +spread = 180.0 +gravity = Vector3(0, 0, 0) +initial_velocity_min = 2.0 +initial_velocity_max = 4.0 +scale_min = 0.05 +scale_max = 0.1 +scale_curve = SubResource("CurveTexture_0kndu") +color_ramp = SubResource("GradientTexture1D_2haui") +turbulence_enabled = true +turbulence_noise_strength = 4.0 +turbulence_noise_scale = 1.0 +turbulence_influence_min = 0.8 +turbulence_influence_max = 1.0 +attractor_interaction_enabled = false + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y5edj"] +blend_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +vertex_color_use_as_albedo = true +billboard_keep_scale = true + +[sub_resource type="SphereMesh" id="SphereMesh_74i8l"] +material = SubResource("StandardMaterial3D_y5edj") +radial_segments = 8 +rings = 4 + +[sub_resource type="Gradient" id="Gradient_w2g4m"] +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_moiwh"] +gradient = SubResource("Gradient_w2g4m") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) +metadata/_snap_enabled = true + +[sub_resource type="Animation" id="Animation_km8h3"] +resource_name = "birth" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [1.0, 0.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 0.005, 0.005, 0.005, 0.25, 1, 1, 1, 1) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} + +[sub_resource type="Animation" id="Animation_psafd"] +resource_name = "death" +length = 0.25 +step = 0.0416667 +tracks/0/type = "scale_3d" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Aura") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Aura:transparency") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.25), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/2/type = "scale_3d" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Decal") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = PackedFloat32Array(0, 1, 1, 1, 1, 0.25, 1, 0.005, 0.005, 0.005) +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("GPUParticles3D:emitting") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0, 0.0416667), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [true, false] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_g1rid"] +_data = { +"birth": SubResource("Animation_km8h3"), +"death": SubResource("Animation_psafd") +} + +[node name="Speed Effect" type="Node3D"] +script = ExtResource("1_r0k2e") +bonus = 0.5 +duration = 10.0 + +[node name="Aura" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.25, 0) +mesh = SubResource("ArrayMesh_a8hvh") +skeleton = NodePath("../..") + +[node name="GPUParticles3D" type="GPUParticles3D" parent="."] +amount = 128 +lifetime = 0.13 +local_coords = true +process_material = SubResource("ParticleProcessMaterial_la0c6") +draw_pass_1 = SubResource("SphereMesh_74i8l") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +stream = ExtResource("3_hmarj") +autoplay = true + +[node name="Decal" type="Decal" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.375, 0) +size = Vector3(2, 1, 2) +texture_emission = SubResource("GradientTexture2D_moiwh") +emission_energy = 0.5 +modulate = Color(0, 0.733333, 1, 1) +cull_mask = 1048573 + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "birth" +libraries = { +"": SubResource("AnimationLibrary_g1rid") +} diff --git a/examples/forest-brawl/scenes/explosion.tscn b/examples/forest-brawl/scenes/explosion.tscn new file mode 100644 index 0000000..9329c0c --- /dev/null +++ b/examples/forest-brawl/scenes/explosion.tscn @@ -0,0 +1,98 @@ +[gd_scene load_steps=17 format=3 uid="uid://6212jkmbikjq"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/displacer.gd" id="1_acukw"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/explosion.gd" id="2_g53bu"] +[ext_resource type="AudioStream" uid="uid://cuu7355mjw0qm" path="res://examples/forest-brawl/sounds/boom1.wav" id="3_kw7x7"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/play-random-3d.gd" id="4_vsx6y"] +[ext_resource type="AudioStream" uid="uid://dk44nxlwr3m1o" path="res://examples/forest-brawl/sounds/boom2.wav" id="5_yr2wj"] +[ext_resource type="AudioStream" uid="uid://yyc2x2137nqa" path="res://examples/forest-brawl/sounds/boom3.wav" id="6_fihgd"] + +[sub_resource type="SphereShape3D" id="SphereShape3D_0scc6"] +radius = 2.0 + +[sub_resource type="Gradient" id="Gradient_32qlm"] +interpolation_mode = 2 +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_nqkbc"] +gradient = SubResource("Gradient_32qlm") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) +metadata/_snap_enabled = true + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_kb3qh"] +transparency = 1 +blend_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +vertex_color_use_as_albedo = true +vertex_color_is_srgb = true +albedo_texture = SubResource("GradientTexture2D_nqkbc") +uv1_scale = Vector3(2, 1, 1) +uv1_offset = Vector3(0.5, 0, 0) +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true +proximity_fade_distance = 0.25 + +[sub_resource type="SphereMesh" id="SphereMesh_5d23i"] +material = SubResource("StandardMaterial3D_kb3qh") +radial_segments = 16 +rings = 8 + +[sub_resource type="Curve" id="Curve_t4jmr"] +_data = [Vector2(0, 0), 0.0, 14.9413, 0, 0, Vector2(0.0942029, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -3.0072, 0.0, 0, 0] +point_count = 3 + +[sub_resource type="Gradient" id="Gradient_6w0nn"] +interpolation_mode = 2 +offsets = PackedFloat32Array(0, 0.57561, 1) +colors = PackedColorArray(1, 0.7, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0) + +[sub_resource type="SphereShape3D" id="SphereShape3D_ddj8d"] +radius = 2.0 + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6rsal"] +transparency = 1 +albedo_color = Color(1, 0, 0, 0.25098) + +[sub_resource type="SphereMesh" id="SphereMesh_k5smf"] +material = SubResource("StandardMaterial3D_6rsal") +radius = 2.0 +height = 4.0 + +[node name="Explosion" type="Area3D"] +gravity = 0.0 +script = ExtResource("1_acukw") +duration = 1.0 +strength = 64.0 +shape = SubResource("SphereShape3D_0scc6") + +[node name="Explosion Particles" type="CPUParticles3D" parent="."] +amount = 32 +explosiveness = 0.8 +local_coords = true +mesh = SubResource("SphereMesh_5d23i") +emission_shape = 1 +emission_sphere_radius = 0.5 +particle_flag_align_y = true +particle_flag_rotate_y = true +gravity = Vector3(0, 0, 0) +scale_amount_min = 0.5 +scale_amount_max = 2.0 +scale_amount_curve = SubResource("Curve_t4jmr") +color_ramp = SubResource("Gradient_6w0nn") +script = ExtResource("2_g53bu") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("SphereShape3D_ddj8d") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +visible = false +mesh = SubResource("SphereMesh_k5smf") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."] +autoplay = true +script = ExtResource("4_vsx6y") +sounds = Array[AudioStream]([ExtResource("3_kw7x7"), ExtResource("5_yr2wj"), ExtResource("6_fihgd")]) diff --git a/examples/forest-brawl/scenes/moving-platform.tscn b/examples/forest-brawl/scenes/moving-platform.tscn new file mode 100644 index 0000000..86b436e --- /dev/null +++ b/examples/forest-brawl/scenes/moving-platform.tscn @@ -0,0 +1,27 @@ +[gd_scene load_steps=5 format=3 uid="uid://cjavt41cokqv5"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/moving-platform.gd" id="1_q5d25"] +[ext_resource type="PackedScene" uid="uid://bnyoffewc4b" path="res://examples/forest-brawl/models/kenney-platformer-kit/blockHexagon.glb" id="2_h7k7v"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_b65sx"] + +[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_y7a63"] +points = PackedVector3Array(-0.557, 0.890101, -0.299866, 0.648933, 0.781605, 0.229175, 0.62806, 0.823296, 0.270961, -0.0369031, 0.0136385, 0.556084, 0.0421915, 0.0163715, -0.552961, -0.163975, 0.823296, 0.646129, -0.5, 0.00740408, 0.281541, 0.0426543, 0.989841, -0.559451, 0.48164, 0.0113339, -0.2993, -0.495398, 0.988618, 0.298944, 0.523822, 0.76081, -0.45848, -0.5, 0.00740408, -0.281541, 0.48164, 0.0113339, 0.2993, 0.499254, 0.986877, 0.297878, -0.143102, 0.76081, -0.667022, 0.148614, 0.76081, 0.667022, -0.643422, 0.781605, 0.249937, 0.499253, 0.986876, -0.297878, -0.0372869, 0.991605, 0.561466, -0.518184, 0.76081, 0.45848, 0.148614, 0.802501, -0.667022, 0.648933, 0.781605, -0.229175, -0.643422, 0.781605, -0.249937, 0.523822, 0.76081, 0.45848, -0.518184, 0.76081, -0.45848, -0.495399, 0.988619, -0.298944, -0.0368981, 0.0136993, -0.556015, 0.0421962, 0.016314, 0.553027, -0.143102, 0.76081, 0.667022, -0.163975, 0.823296, -0.646129, 0.148614, 0.802501, 0.667022, -0.037283, 0.991557, -0.561412) + +[node name="Moving Platform" type="AnimatableBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -6) +sync_to_physics = false +script = ExtResource("1_q5d25") +speed = 1.0 + +[node name="blockHexagon" parent="." instance=ExtResource("2_h7k7v")] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("ConvexPolygonShape3D_y7a63") + +[node name="Target" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -4) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_b65sx") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/forest-brawl/scenes/powerup.tscn b/examples/forest-brawl/scenes/powerup.tscn new file mode 100644 index 0000000..986a567 --- /dev/null +++ b/examples/forest-brawl/scenes/powerup.tscn @@ -0,0 +1,143 @@ +[gd_scene load_steps=16 format=3 uid="uid://ijqx6kjl3qf4"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/powerup.gd" id="1_6q3ei"] +[ext_resource type="PackedScene" uid="uid://ch61st8ietkte" path="res://examples/forest-brawl/models/kenney-platformer-kit/crateItem.glb" id="1_gldsg"] +[ext_resource type="PackedScene" uid="uid://bd38peoq8b5ae" path="res://examples/forest-brawl/scenes/effects/speed-effect.tscn" id="2_bissc"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_8vkt5"] +[ext_resource type="PackedScene" uid="uid://jskoprs7vkq0" path="res://examples/forest-brawl/scenes/effects/repulse-effect.tscn" id="3_lmj2s"] +[ext_resource type="PackedScene" uid="uid://5cts743r7q3v" path="res://examples/forest-brawl/scenes/effects/mass-effect.tscn" id="4_6ftmp"] +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/aura-sphere-mesh.gd" id="6_neg5p"] + +[sub_resource type="Gradient" id="Gradient_7fwde"] +interpolation_mode = 2 +colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_6ftng"] +gradient = SubResource("Gradient_7fwde") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jauig"] +blend_mode = 1 +cull_mode = 1 +depth_draw_mode = 2 +shading_mode = 0 +albedo_color = Color(1, 0.733333, 0, 1) +albedo_texture = SubResource("GradientTexture2D_6ftng") +disable_receive_shadows = true +billboard_mode = 1 +billboard_keep_scale = true +proximity_fade_enabled = true +proximity_fade_distance = 0.5 + +[sub_resource type="ArrayMesh" id="ArrayMesh_0hct2"] +_surfaces = [{ +"aabb": AABB(-0.984808, -1, -0.984808, 1.96962, 2.00001, 1.96962), +"attribute_data": PackedByteArray(0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 81, 199, 43, 63, 217, 71, 120, 63, 54, 114, 40, 63, 217, 71, 120, 63, 197, 244, 30, 63, 217, 71, 120, 63, 219, 192, 16, 63, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 94, 113, 168, 62, 217, 71, 120, 63, 148, 27, 175, 62, 217, 71, 120, 63, 118, 22, 194, 62, 217, 71, 120, 63, 75, 126, 222, 62, 217, 71, 120, 63, 0, 0, 0, 63, 217, 71, 120, 63, 0, 0, 0, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 222, 70, 82, 63, 190, 13, 98, 63, 140, 3, 76, 63, 190, 13, 98, 63, 178, 45, 58, 63, 190, 13, 98, 63, 105, 124, 31, 63, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 138, 228, 54, 62, 190, 13, 98, 63, 206, 241, 79, 62, 190, 13, 98, 63, 156, 164, 139, 62, 190, 13, 98, 63, 46, 7, 193, 62, 190, 13, 98, 63, 0, 0, 0, 63, 190, 13, 98, 63, 0, 0, 0, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 236, 217, 110, 63, 0, 0, 64, 63, 200, 105, 102, 63, 0, 0, 64, 63, 56, 98, 78, 63, 0, 0, 64, 63, 195, 107, 42, 63, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 160, 48, 137, 61, 0, 0, 64, 63, 192, 177, 204, 61, 0, 0, 64, 63, 30, 119, 70, 62, 0, 0, 64, 63, 122, 40, 171, 62, 0, 0, 64, 63, 0, 0, 0, 63, 0, 0, 64, 63, 0, 0, 0, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 46, 14, 126, 63, 26, 58, 22, 63, 194, 117, 116, 63, 26, 58, 22, 63, 118, 34, 89, 63, 26, 58, 22, 63, 67, 61, 48, 63, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 0, 233, 248, 59, 26, 58, 22, 63, 224, 163, 56, 61, 26, 58, 22, 63, 38, 118, 27, 62, 26, 58, 22, 63, 122, 133, 159, 62, 26, 58, 22, 63, 0, 0, 0, 63, 26, 58, 22, 63, 0, 0, 0, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 46, 14, 126, 63, 202, 139, 211, 62, 194, 117, 116, 63, 202, 139, 211, 62, 118, 34, 89, 63, 202, 139, 211, 62, 67, 61, 48, 63, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 0, 233, 248, 59, 202, 139, 211, 62, 224, 163, 56, 61, 202, 139, 211, 62, 38, 118, 27, 62, 202, 139, 211, 62, 122, 133, 159, 62, 202, 139, 211, 62, 0, 0, 0, 63, 202, 139, 211, 62, 0, 0, 0, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 236, 217, 110, 63, 254, 255, 127, 62, 200, 105, 102, 63, 254, 255, 127, 62, 56, 98, 78, 63, 254, 255, 127, 62, 194, 107, 42, 63, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 164, 48, 137, 61, 254, 255, 127, 62, 196, 177, 204, 61, 254, 255, 127, 62, 32, 119, 70, 62, 254, 255, 127, 62, 123, 40, 171, 62, 254, 255, 127, 62, 0, 0, 0, 63, 254, 255, 127, 62, 0, 0, 0, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 221, 70, 82, 63, 8, 146, 239, 61, 140, 3, 76, 63, 8, 146, 239, 61, 178, 45, 58, 63, 8, 146, 239, 61, 105, 124, 31, 63, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 140, 228, 54, 62, 8, 146, 239, 61, 208, 241, 79, 62, 8, 146, 239, 61, 157, 164, 139, 62, 8, 146, 239, 61, 47, 7, 193, 62, 8, 146, 239, 61, 0, 0, 0, 63, 8, 146, 239, 61, 0, 0, 0, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 81, 199, 43, 63, 224, 4, 247, 60, 54, 114, 40, 63, 224, 4, 247, 60, 197, 244, 30, 63, 224, 4, 247, 60, 219, 192, 16, 63, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 94, 113, 168, 62, 224, 4, 247, 60, 149, 27, 175, 62, 224, 4, 247, 60, 118, 22, 194, 62, 224, 4, 247, 60, 75, 126, 222, 62, 224, 4, 247, 60, 0, 0, 0, 63, 224, 4, 247, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0), +"format": 4119, +"index_count": 864, +"index_data": PackedByteArray(0, 0, 1, 0, 17, 0, 1, 0, 18, 0, 17, 0, 1, 0, 2, 0, 18, 0, 2, 0, 19, 0, 18, 0, 2, 0, 3, 0, 19, 0, 3, 0, 20, 0, 19, 0, 3, 0, 4, 0, 20, 0, 4, 0, 21, 0, 20, 0, 4, 0, 5, 0, 21, 0, 5, 0, 22, 0, 21, 0, 5, 0, 6, 0, 22, 0, 6, 0, 23, 0, 22, 0, 6, 0, 7, 0, 23, 0, 7, 0, 24, 0, 23, 0, 7, 0, 8, 0, 24, 0, 8, 0, 25, 0, 24, 0, 8, 0, 9, 0, 25, 0, 9, 0, 26, 0, 25, 0, 9, 0, 10, 0, 26, 0, 10, 0, 27, 0, 26, 0, 10, 0, 11, 0, 27, 0, 11, 0, 28, 0, 27, 0, 11, 0, 12, 0, 28, 0, 12, 0, 29, 0, 28, 0, 12, 0, 13, 0, 29, 0, 13, 0, 30, 0, 29, 0, 13, 0, 14, 0, 30, 0, 14, 0, 31, 0, 30, 0, 14, 0, 15, 0, 31, 0, 15, 0, 32, 0, 31, 0, 15, 0, 16, 0, 32, 0, 16, 0, 33, 0, 32, 0, 17, 0, 18, 0, 34, 0, 18, 0, 35, 0, 34, 0, 18, 0, 19, 0, 35, 0, 19, 0, 36, 0, 35, 0, 19, 0, 20, 0, 36, 0, 20, 0, 37, 0, 36, 0, 20, 0, 21, 0, 37, 0, 21, 0, 38, 0, 37, 0, 21, 0, 22, 0, 38, 0, 22, 0, 39, 0, 38, 0, 22, 0, 23, 0, 39, 0, 23, 0, 40, 0, 39, 0, 23, 0, 24, 0, 40, 0, 24, 0, 41, 0, 40, 0, 24, 0, 25, 0, 41, 0, 25, 0, 42, 0, 41, 0, 25, 0, 26, 0, 42, 0, 26, 0, 43, 0, 42, 0, 26, 0, 27, 0, 43, 0, 27, 0, 44, 0, 43, 0, 27, 0, 28, 0, 44, 0, 28, 0, 45, 0, 44, 0, 28, 0, 29, 0, 45, 0, 29, 0, 46, 0, 45, 0, 29, 0, 30, 0, 46, 0, 30, 0, 47, 0, 46, 0, 30, 0, 31, 0, 47, 0, 31, 0, 48, 0, 47, 0, 31, 0, 32, 0, 48, 0, 32, 0, 49, 0, 48, 0, 32, 0, 33, 0, 49, 0, 33, 0, 50, 0, 49, 0, 34, 0, 35, 0, 51, 0, 35, 0, 52, 0, 51, 0, 35, 0, 36, 0, 52, 0, 36, 0, 53, 0, 52, 0, 36, 0, 37, 0, 53, 0, 37, 0, 54, 0, 53, 0, 37, 0, 38, 0, 54, 0, 38, 0, 55, 0, 54, 0, 38, 0, 39, 0, 55, 0, 39, 0, 56, 0, 55, 0, 39, 0, 40, 0, 56, 0, 40, 0, 57, 0, 56, 0, 40, 0, 41, 0, 57, 0, 41, 0, 58, 0, 57, 0, 41, 0, 42, 0, 58, 0, 42, 0, 59, 0, 58, 0, 42, 0, 43, 0, 59, 0, 43, 0, 60, 0, 59, 0, 43, 0, 44, 0, 60, 0, 44, 0, 61, 0, 60, 0, 44, 0, 45, 0, 61, 0, 45, 0, 62, 0, 61, 0, 45, 0, 46, 0, 62, 0, 46, 0, 63, 0, 62, 0, 46, 0, 47, 0, 63, 0, 47, 0, 64, 0, 63, 0, 47, 0, 48, 0, 64, 0, 48, 0, 65, 0, 64, 0, 48, 0, 49, 0, 65, 0, 49, 0, 66, 0, 65, 0, 49, 0, 50, 0, 66, 0, 50, 0, 67, 0, 66, 0, 51, 0, 52, 0, 68, 0, 52, 0, 69, 0, 68, 0, 52, 0, 53, 0, 69, 0, 53, 0, 70, 0, 69, 0, 53, 0, 54, 0, 70, 0, 54, 0, 71, 0, 70, 0, 54, 0, 55, 0, 71, 0, 55, 0, 72, 0, 71, 0, 55, 0, 56, 0, 72, 0, 56, 0, 73, 0, 72, 0, 56, 0, 57, 0, 73, 0, 57, 0, 74, 0, 73, 0, 57, 0, 58, 0, 74, 0, 58, 0, 75, 0, 74, 0, 58, 0, 59, 0, 75, 0, 59, 0, 76, 0, 75, 0, 59, 0, 60, 0, 76, 0, 60, 0, 77, 0, 76, 0, 60, 0, 61, 0, 77, 0, 61, 0, 78, 0, 77, 0, 61, 0, 62, 0, 78, 0, 62, 0, 79, 0, 78, 0, 62, 0, 63, 0, 79, 0, 63, 0, 80, 0, 79, 0, 63, 0, 64, 0, 80, 0, 64, 0, 81, 0, 80, 0, 64, 0, 65, 0, 81, 0, 65, 0, 82, 0, 81, 0, 65, 0, 66, 0, 82, 0, 66, 0, 83, 0, 82, 0, 66, 0, 67, 0, 83, 0, 67, 0, 84, 0, 83, 0, 68, 0, 69, 0, 85, 0, 69, 0, 86, 0, 85, 0, 69, 0, 70, 0, 86, 0, 70, 0, 87, 0, 86, 0, 70, 0, 71, 0, 87, 0, 71, 0, 88, 0, 87, 0, 71, 0, 72, 0, 88, 0, 72, 0, 89, 0, 88, 0, 72, 0, 73, 0, 89, 0, 73, 0, 90, 0, 89, 0, 73, 0, 74, 0, 90, 0, 74, 0, 91, 0, 90, 0, 74, 0, 75, 0, 91, 0, 75, 0, 92, 0, 91, 0, 75, 0, 76, 0, 92, 0, 76, 0, 93, 0, 92, 0, 76, 0, 77, 0, 93, 0, 77, 0, 94, 0, 93, 0, 77, 0, 78, 0, 94, 0, 78, 0, 95, 0, 94, 0, 78, 0, 79, 0, 95, 0, 79, 0, 96, 0, 95, 0, 79, 0, 80, 0, 96, 0, 80, 0, 97, 0, 96, 0, 80, 0, 81, 0, 97, 0, 81, 0, 98, 0, 97, 0, 81, 0, 82, 0, 98, 0, 82, 0, 99, 0, 98, 0, 82, 0, 83, 0, 99, 0, 83, 0, 100, 0, 99, 0, 83, 0, 84, 0, 100, 0, 84, 0, 101, 0, 100, 0, 85, 0, 86, 0, 102, 0, 86, 0, 103, 0, 102, 0, 86, 0, 87, 0, 103, 0, 87, 0, 104, 0, 103, 0, 87, 0, 88, 0, 104, 0, 88, 0, 105, 0, 104, 0, 88, 0, 89, 0, 105, 0, 89, 0, 106, 0, 105, 0, 89, 0, 90, 0, 106, 0, 90, 0, 107, 0, 106, 0, 90, 0, 91, 0, 107, 0, 91, 0, 108, 0, 107, 0, 91, 0, 92, 0, 108, 0, 92, 0, 109, 0, 108, 0, 92, 0, 93, 0, 109, 0, 93, 0, 110, 0, 109, 0, 93, 0, 94, 0, 110, 0, 94, 0, 111, 0, 110, 0, 94, 0, 95, 0, 111, 0, 95, 0, 112, 0, 111, 0, 95, 0, 96, 0, 112, 0, 96, 0, 113, 0, 112, 0, 96, 0, 97, 0, 113, 0, 97, 0, 114, 0, 113, 0, 97, 0, 98, 0, 114, 0, 98, 0, 115, 0, 114, 0, 98, 0, 99, 0, 115, 0, 99, 0, 116, 0, 115, 0, 99, 0, 100, 0, 116, 0, 100, 0, 117, 0, 116, 0, 100, 0, 101, 0, 117, 0, 101, 0, 118, 0, 117, 0, 102, 0, 103, 0, 119, 0, 103, 0, 120, 0, 119, 0, 103, 0, 104, 0, 120, 0, 104, 0, 121, 0, 120, 0, 104, 0, 105, 0, 121, 0, 105, 0, 122, 0, 121, 0, 105, 0, 106, 0, 122, 0, 106, 0, 123, 0, 122, 0, 106, 0, 107, 0, 123, 0, 107, 0, 124, 0, 123, 0, 107, 0, 108, 0, 124, 0, 108, 0, 125, 0, 124, 0, 108, 0, 109, 0, 125, 0, 109, 0, 126, 0, 125, 0, 109, 0, 110, 0, 126, 0, 110, 0, 127, 0, 126, 0, 110, 0, 111, 0, 127, 0, 111, 0, 128, 0, 127, 0, 111, 0, 112, 0, 128, 0, 112, 0, 129, 0, 128, 0, 112, 0, 113, 0, 129, 0, 113, 0, 130, 0, 129, 0, 113, 0, 114, 0, 130, 0, 114, 0, 131, 0, 130, 0, 114, 0, 115, 0, 131, 0, 115, 0, 132, 0, 131, 0, 115, 0, 116, 0, 132, 0, 116, 0, 133, 0, 132, 0, 116, 0, 117, 0, 133, 0, 117, 0, 134, 0, 133, 0, 117, 0, 118, 0, 134, 0, 118, 0, 135, 0, 134, 0, 119, 0, 120, 0, 136, 0, 120, 0, 137, 0, 136, 0, 120, 0, 121, 0, 137, 0, 121, 0, 138, 0, 137, 0, 121, 0, 122, 0, 138, 0, 122, 0, 139, 0, 138, 0, 122, 0, 123, 0, 139, 0, 123, 0, 140, 0, 139, 0, 123, 0, 124, 0, 140, 0, 124, 0, 141, 0, 140, 0, 124, 0, 125, 0, 141, 0, 125, 0, 142, 0, 141, 0, 125, 0, 126, 0, 142, 0, 126, 0, 143, 0, 142, 0, 126, 0, 127, 0, 143, 0, 127, 0, 144, 0, 143, 0, 127, 0, 128, 0, 144, 0, 128, 0, 145, 0, 144, 0, 128, 0, 129, 0, 145, 0, 129, 0, 146, 0, 145, 0, 129, 0, 130, 0, 146, 0, 130, 0, 147, 0, 146, 0, 130, 0, 131, 0, 147, 0, 131, 0, 148, 0, 147, 0, 131, 0, 132, 0, 148, 0, 132, 0, 149, 0, 148, 0, 132, 0, 133, 0, 149, 0, 133, 0, 150, 0, 149, 0, 133, 0, 134, 0, 150, 0, 134, 0, 151, 0, 150, 0, 134, 0, 135, 0, 151, 0, 135, 0, 152, 0, 151, 0, 136, 0, 137, 0, 153, 0, 137, 0, 154, 0, 153, 0, 137, 0, 138, 0, 154, 0, 138, 0, 155, 0, 154, 0, 138, 0, 139, 0, 155, 0, 139, 0, 156, 0, 155, 0, 139, 0, 140, 0, 156, 0, 140, 0, 157, 0, 156, 0, 140, 0, 141, 0, 157, 0, 141, 0, 158, 0, 157, 0, 141, 0, 142, 0, 158, 0, 142, 0, 159, 0, 158, 0, 142, 0, 143, 0, 159, 0, 143, 0, 160, 0, 159, 0, 143, 0, 144, 0, 160, 0, 144, 0, 161, 0, 160, 0, 144, 0, 145, 0, 161, 0, 145, 0, 162, 0, 161, 0, 145, 0, 146, 0, 162, 0, 146, 0, 163, 0, 162, 0, 146, 0, 147, 0, 163, 0, 147, 0, 164, 0, 163, 0, 147, 0, 148, 0, 164, 0, 148, 0, 165, 0, 164, 0, 148, 0, 149, 0, 165, 0, 149, 0, 166, 0, 165, 0, 149, 0, 150, 0, 166, 0, 150, 0, 167, 0, 166, 0, 150, 0, 151, 0, 167, 0, 151, 0, 168, 0, 167, 0, 151, 0, 152, 0, 168, 0, 152, 0, 169, 0, 168, 0), +"material": SubResource("StandardMaterial3D_jauig"), +"primitive": 3, +"vertex_count": 170, +"vertex_data": PackedByteArray(0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 64, 237, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 223, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 0, 0, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 63, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 130, 90, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 128, 0, 128, 255, 255, 255, 127, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 124, 165, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 191, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 129, 218, 255, 191, 0, 0, 0, 128, 0, 0, 128, 63, 0, 0, 0, 0, 0, 128, 255, 255, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 62, 20, 140, 190, 214, 255, 255, 189, 210, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 62, 190, 149, 128, 212, 255, 255, 255, 223, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 62, 42, 157, 190, 214, 255, 255, 64, 237, 68, 29, 175, 62, 178, 143, 112, 63, 139, 41, 193, 35, 39, 162, 215, 221, 255, 255, 255, 255, 215, 200, 161, 62, 178, 143, 112, 63, 213, 6, 6, 190, 64, 169, 211, 226, 0, 0, 64, 237, 40, 166, 119, 62, 178, 143, 112, 63, 40, 166, 119, 190, 125, 171, 63, 234, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 63, 215, 200, 161, 190, 64, 169, 233, 243, 0, 0, 189, 210, 139, 41, 65, 36, 178, 143, 112, 63, 68, 29, 175, 190, 39, 162, 255, 255, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 190, 190, 86, 233, 243, 125, 37, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 190, 128, 84, 63, 234, 255, 63, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 190, 190, 86, 211, 226, 130, 90, 255, 191, 68, 29, 175, 190, 178, 143, 112, 63, 39, 223, 144, 164, 215, 93, 215, 221, 255, 127, 255, 191, 215, 200, 161, 190, 178, 143, 112, 63, 213, 6, 6, 62, 212, 98, 190, 214, 124, 165, 255, 191, 40, 166, 119, 190, 178, 143, 112, 63, 40, 166, 119, 62, 64, 106, 128, 212, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 63, 215, 200, 161, 62, 234, 115, 190, 214, 129, 218, 255, 191, 139, 41, 193, 164, 178, 143, 112, 63, 68, 29, 175, 62, 255, 127, 215, 221, 255, 255, 255, 191, 0, 0, 0, 0, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 63, 154, 147, 14, 189, 255, 255, 189, 210, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 62, 186, 162, 136, 186, 255, 255, 255, 223, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 62, 84, 175, 14, 189, 255, 255, 64, 237, 187, 141, 36, 63, 125, 27, 68, 63, 95, 131, 53, 36, 101, 186, 152, 197, 255, 255, 255, 255, 25, 7, 24, 63, 125, 27, 68, 63, 71, 227, 123, 190, 240, 194, 169, 208, 0, 0, 64, 237, 199, 182, 232, 62, 125, 27, 68, 63, 199, 182, 232, 190, 117, 197, 67, 221, 0, 0, 255, 223, 71, 227, 123, 62, 125, 27, 68, 63, 25, 7, 24, 191, 240, 194, 99, 236, 0, 0, 189, 210, 95, 131, 181, 36, 125, 27, 68, 63, 187, 141, 36, 191, 101, 186, 255, 255, 0, 0, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 191, 14, 61, 99, 236, 125, 37, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 190, 137, 58, 67, 221, 255, 63, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 190, 14, 61, 169, 208, 130, 90, 255, 191, 187, 141, 36, 191, 125, 27, 68, 63, 134, 34, 8, 165, 153, 69, 152, 197, 255, 127, 255, 191, 25, 7, 24, 191, 125, 27, 68, 63, 71, 227, 123, 62, 170, 80, 14, 189, 124, 165, 255, 191, 199, 182, 232, 190, 125, 27, 68, 63, 199, 182, 232, 62, 68, 93, 136, 186, 255, 191, 255, 191, 71, 227, 123, 190, 125, 27, 68, 63, 25, 7, 24, 63, 100, 108, 14, 189, 129, 218, 255, 191, 95, 131, 53, 165, 125, 27, 68, 63, 187, 141, 36, 63, 255, 127, 152, 197, 255, 255, 255, 191, 0, 0, 0, 0, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 63, 255, 153, 57, 167, 255, 255, 189, 210, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 63, 113, 173, 26, 165, 255, 255, 255, 223, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 62, 196, 190, 57, 167, 255, 255, 64, 237, 216, 179, 93, 63, 255, 255, 255, 62, 81, 141, 116, 36, 36, 209, 217, 174, 255, 255, 255, 255, 144, 211, 76, 63, 255, 255, 255, 62, 11, 175, 169, 190, 196, 216, 57, 193, 0, 0, 64, 237, 113, 196, 28, 63, 255, 255, 255, 62, 113, 196, 28, 191, 227, 218, 140, 210, 0, 0, 255, 223, 11, 175, 169, 62, 255, 255, 255, 62, 144, 211, 76, 191, 196, 216, 254, 229, 0, 0, 189, 210, 81, 141, 244, 36, 255, 255, 255, 62, 216, 179, 93, 191, 37, 209, 255, 255, 0, 0, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 191, 57, 39, 254, 229, 125, 37, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 191, 27, 37, 140, 210, 255, 63, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 190, 57, 39, 57, 193, 130, 90, 255, 191, 216, 179, 93, 191, 255, 255, 255, 62, 252, 105, 55, 165, 217, 46, 217, 174, 255, 127, 255, 191, 144, 211, 76, 191, 255, 255, 255, 62, 11, 175, 169, 62, 58, 65, 57, 167, 124, 165, 255, 191, 113, 196, 28, 191, 255, 255, 255, 62, 113, 196, 28, 63, 141, 82, 26, 165, 255, 191, 255, 191, 11, 175, 169, 190, 255, 255, 255, 62, 144, 211, 76, 63, 255, 101, 57, 167, 129, 218, 255, 191, 81, 141, 116, 165, 255, 255, 255, 62, 216, 179, 93, 63, 255, 127, 217, 174, 255, 255, 255, 191, 0, 0, 0, 0, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 63, 7, 161, 55, 143, 255, 255, 189, 210, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 63, 230, 184, 48, 142, 255, 255, 255, 223, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 62, 190, 207, 55, 143, 255, 255, 64, 237, 92, 28, 124, 63, 211, 208, 49, 62, 17, 12, 139, 36, 207, 236, 47, 147, 255, 255, 255, 255, 132, 235, 104, 63, 211, 208, 49, 62, 13, 245, 192, 190, 198, 240, 63, 176, 0, 0, 64, 237, 237, 68, 50, 63, 211, 208, 49, 62, 237, 68, 50, 191, 206, 241, 23, 199, 0, 0, 255, 223, 13, 245, 192, 62, 211, 208, 49, 62, 132, 235, 104, 191, 198, 240, 246, 222, 0, 0, 189, 210, 17, 12, 11, 37, 211, 208, 49, 62, 92, 28, 124, 191, 207, 236, 255, 255, 0, 0, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 191, 55, 15, 246, 222, 125, 37, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 191, 47, 14, 23, 199, 255, 63, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 190, 55, 15, 63, 176, 130, 90, 255, 191, 92, 28, 124, 191, 211, 208, 49, 62, 25, 146, 80, 165, 46, 19, 46, 147, 255, 127, 255, 191, 132, 235, 104, 191, 211, 208, 49, 62, 13, 245, 192, 62, 63, 48, 55, 143, 124, 165, 255, 191, 237, 68, 50, 191, 211, 208, 49, 62, 237, 68, 50, 63, 24, 71, 48, 142, 255, 191, 255, 191, 13, 245, 192, 190, 211, 208, 49, 62, 132, 235, 104, 63, 247, 94, 55, 143, 129, 218, 255, 191, 17, 12, 139, 165, 211, 208, 49, 62, 92, 28, 124, 63, 255, 127, 47, 147, 255, 255, 255, 191, 0, 0, 0, 0, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 63, 7, 161, 199, 112, 255, 255, 189, 210, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 63, 230, 184, 206, 113, 255, 255, 255, 223, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 62, 190, 207, 199, 112, 255, 255, 64, 237, 92, 28, 124, 63, 217, 208, 49, 190, 17, 12, 139, 36, 207, 236, 207, 108, 255, 255, 255, 255, 132, 235, 104, 63, 217, 208, 49, 190, 13, 245, 192, 190, 198, 240, 191, 79, 0, 0, 64, 237, 237, 68, 50, 63, 217, 208, 49, 190, 237, 68, 50, 191, 206, 241, 231, 56, 0, 0, 255, 223, 13, 245, 192, 62, 217, 208, 49, 190, 132, 235, 104, 191, 198, 240, 8, 33, 0, 0, 189, 210, 17, 12, 11, 37, 217, 208, 49, 190, 92, 28, 124, 191, 207, 236, 0, 0, 0, 0, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 191, 55, 15, 8, 33, 125, 37, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 191, 47, 14, 231, 56, 255, 63, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 190, 55, 15, 191, 79, 130, 90, 255, 191, 92, 28, 124, 191, 217, 208, 49, 190, 25, 146, 80, 165, 46, 19, 207, 108, 255, 127, 255, 191, 132, 235, 104, 191, 217, 208, 49, 190, 13, 245, 192, 62, 63, 48, 199, 112, 124, 165, 255, 191, 237, 68, 50, 191, 217, 208, 49, 190, 237, 68, 50, 63, 24, 71, 206, 113, 255, 191, 255, 191, 13, 245, 192, 190, 217, 208, 49, 190, 132, 235, 104, 63, 247, 94, 199, 112, 129, 218, 255, 191, 17, 12, 139, 165, 217, 208, 49, 190, 92, 28, 124, 63, 255, 127, 207, 108, 255, 255, 255, 191, 0, 0, 0, 0, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 63, 255, 153, 197, 88, 255, 255, 189, 210, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 63, 113, 173, 228, 90, 255, 255, 255, 223, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 62, 196, 190, 197, 88, 255, 255, 64, 237, 215, 179, 93, 63, 1, 0, 0, 191, 80, 141, 116, 36, 37, 209, 37, 81, 255, 255, 255, 255, 143, 211, 76, 63, 1, 0, 0, 191, 10, 175, 169, 190, 196, 216, 197, 62, 0, 0, 64, 237, 112, 196, 28, 63, 1, 0, 0, 191, 112, 196, 28, 191, 227, 218, 114, 45, 0, 0, 255, 223, 10, 175, 169, 62, 1, 0, 0, 191, 143, 211, 76, 191, 196, 216, 0, 26, 0, 0, 189, 210, 80, 141, 244, 36, 1, 0, 0, 191, 215, 179, 93, 191, 37, 209, 0, 0, 0, 0, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 191, 57, 39, 0, 26, 125, 37, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 191, 27, 37, 114, 45, 255, 63, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 190, 57, 39, 197, 62, 130, 90, 255, 191, 215, 179, 93, 191, 1, 0, 0, 191, 251, 105, 55, 165, 217, 46, 37, 81, 255, 127, 255, 191, 143, 211, 76, 191, 1, 0, 0, 191, 10, 175, 169, 62, 58, 65, 197, 88, 124, 165, 255, 191, 112, 196, 28, 191, 1, 0, 0, 191, 112, 196, 28, 63, 141, 82, 228, 90, 255, 191, 255, 191, 10, 175, 169, 190, 1, 0, 0, 191, 143, 211, 76, 63, 255, 101, 197, 88, 129, 218, 255, 191, 80, 141, 116, 165, 1, 0, 0, 191, 215, 179, 93, 63, 255, 127, 37, 81, 255, 255, 255, 191, 0, 0, 0, 0, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 63, 154, 147, 240, 66, 255, 255, 189, 210, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 62, 186, 162, 118, 69, 255, 255, 255, 223, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 62, 84, 175, 240, 66, 255, 255, 64, 237, 186, 141, 36, 63, 126, 27, 68, 191, 93, 131, 53, 36, 101, 186, 101, 58, 255, 255, 255, 255, 24, 7, 24, 63, 126, 27, 68, 191, 69, 227, 123, 190, 240, 194, 84, 47, 0, 0, 64, 237, 198, 182, 232, 62, 126, 27, 68, 191, 198, 182, 232, 190, 117, 197, 187, 34, 0, 0, 255, 223, 69, 227, 123, 62, 126, 27, 68, 191, 24, 7, 24, 191, 240, 194, 154, 19, 0, 0, 189, 210, 93, 131, 181, 36, 126, 27, 68, 191, 186, 141, 36, 191, 101, 186, 0, 0, 0, 0, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 191, 14, 61, 154, 19, 125, 37, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 190, 137, 58, 187, 34, 255, 63, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 190, 14, 61, 84, 47, 130, 90, 255, 191, 186, 141, 36, 191, 126, 27, 68, 191, 133, 34, 8, 165, 153, 69, 102, 58, 255, 127, 255, 191, 24, 7, 24, 191, 126, 27, 68, 191, 69, 227, 123, 62, 170, 80, 240, 66, 124, 165, 255, 191, 198, 182, 232, 190, 126, 27, 68, 191, 198, 182, 232, 62, 68, 93, 118, 69, 255, 191, 255, 191, 69, 227, 123, 190, 126, 27, 68, 191, 24, 7, 24, 63, 100, 108, 240, 66, 129, 218, 255, 191, 93, 131, 53, 165, 126, 27, 68, 191, 186, 141, 36, 63, 255, 127, 102, 58, 255, 255, 255, 191, 0, 0, 0, 0, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 62, 20, 140, 63, 41, 255, 255, 189, 210, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 62, 190, 149, 126, 43, 255, 255, 255, 223, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 62, 42, 157, 63, 41, 255, 255, 64, 237, 67, 29, 175, 62, 178, 143, 112, 191, 137, 41, 193, 35, 39, 162, 38, 34, 255, 255, 255, 255, 214, 200, 161, 62, 178, 143, 112, 191, 213, 6, 6, 190, 64, 169, 42, 29, 0, 0, 64, 237, 38, 166, 119, 62, 178, 143, 112, 191, 38, 166, 119, 190, 126, 171, 191, 21, 0, 0, 255, 223, 213, 6, 6, 62, 178, 143, 112, 191, 214, 200, 161, 190, 64, 169, 20, 12, 0, 0, 189, 210, 137, 41, 65, 36, 178, 143, 112, 191, 67, 29, 175, 190, 39, 162, 0, 0, 0, 0, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 190, 189, 86, 20, 12, 125, 37, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 190, 128, 84, 191, 21, 255, 63, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 190, 190, 86, 42, 29, 130, 90, 255, 191, 67, 29, 175, 190, 178, 143, 112, 191, 38, 223, 144, 164, 215, 93, 38, 34, 255, 127, 255, 191, 214, 200, 161, 190, 178, 143, 112, 191, 213, 6, 6, 62, 212, 98, 63, 41, 124, 165, 255, 191, 38, 166, 119, 190, 178, 143, 112, 191, 38, 166, 119, 62, 64, 106, 126, 43, 255, 191, 255, 191, 213, 6, 6, 190, 178, 143, 112, 191, 214, 200, 161, 62, 234, 115, 63, 41, 129, 218, 255, 191, 137, 41, 193, 164, 178, 143, 112, 191, 67, 29, 175, 62, 255, 127, 38, 34, 255, 255, 255, 191, 0, 0, 0, 0, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 255, 255, 189, 210, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 255, 255, 223, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 255, 255, 64, 237, 50, 49, 13, 37, 0, 0, 128, 191, 117, 190, 27, 10, 0, 128, 0, 0, 255, 255, 255, 255, 206, 113, 2, 37, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 0, 0, 64, 237, 6, 173, 199, 36, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 0, 0, 255, 223, 171, 32, 88, 36, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 0, 0, 189, 210, 117, 190, 155, 10, 0, 0, 128, 191, 50, 49, 13, 165, 0, 128, 0, 0, 0, 0, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 165, 0, 128, 0, 0, 125, 37, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 164, 0, 128, 0, 0, 255, 63, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 164, 0, 128, 0, 0, 130, 90, 255, 191, 50, 49, 13, 165, 0, 0, 128, 191, 174, 157, 233, 138, 0, 128, 0, 0, 255, 127, 255, 191, 206, 113, 2, 165, 0, 0, 128, 191, 171, 32, 88, 36, 0, 128, 0, 0, 124, 165, 255, 191, 6, 173, 199, 164, 0, 0, 128, 191, 6, 173, 199, 36, 0, 128, 0, 0, 255, 191, 255, 191, 171, 32, 88, 164, 0, 0, 128, 191, 206, 113, 2, 37, 0, 128, 0, 0, 129, 218, 255, 191, 117, 190, 27, 139, 0, 0, 128, 191, 50, 49, 13, 37, 0, 128, 0, 0, 255, 255, 255, 191) +}] +script = ExtResource("6_neg5p") +segments = 16 +rings = 8 +radius = 1.0 +material = SubResource("StandardMaterial3D_jauig") + +[sub_resource type="Animation" id="Animation_07ouu"] +resource_name = "powerup-float" +length = 8.0 +loop_mode = 1 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("crateItem:rotation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 8), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Vector3(0, 1.74846e-07, 0), Vector3(0, 6.28319, 0)] +} +tracks/1/type = "bezier" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("crateItem:position:x") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"handle_modes": PackedInt32Array(), +"points": PackedFloat32Array(), +"times": PackedFloat32Array() +} +tracks/2/type = "bezier" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("crateItem:position:y") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"handle_modes": PackedInt32Array(0, 0, 0), +"points": PackedFloat32Array(-0.5, -1, 0, 1, 0, 0, -1, 0, 1, 0, -0.5, -1, 0, 1, 0), +"times": PackedFloat32Array(0, 4, 8) +} +tracks/3/type = "bezier" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("crateItem:position:z") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"handle_modes": PackedInt32Array(), +"points": PackedFloat32Array(), +"times": PackedFloat32Array() +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_ad1vt"] +_data = { +"powerup-float": SubResource("Animation_07ouu") +} + +[sub_resource type="SphereShape3D" id="SphereShape3D_3na7t"] +radius = 1.0 + +[sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_dkwet"] +properties/0/path = NodePath(".:is_active") +properties/0/spawn = true +properties/0/sync = true +properties/0/watch = false + +[node name="Powerup" type="Area3D"] +script = ExtResource("1_6q3ei") +effects = Array[PackedScene]([ExtResource("2_bissc"), ExtResource("3_lmj2s"), ExtResource("4_6ftmp")]) + +[node name="crateItem" parent="." instance=ExtResource("1_gldsg")] +transform = Transform3D(-0.285903, 0, 0.958259, 0, 1, 0, -0.958259, 0, -0.285903, 0, -0.188843, 0) + +[node name="Aura" type="MeshInstance3D" parent="crateItem"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.25, 0) +mesh = SubResource("ArrayMesh_0hct2") +skeleton = NodePath("../..") + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "powerup-float" +libraries = { +"": SubResource("AnimationLibrary_ad1vt") +} + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("SphereShape3D_3na7t") + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_8vkt5") +root = NodePath("..") +properties = Array[String]([":scale"]) + +[node name="MultiplayerSynchronizer" type="MultiplayerSynchronizer" parent="."] +replication_config = SubResource("SceneReplicationConfig_dkwet") diff --git a/examples/forest-brawl/scenes/score_screen.tscn b/examples/forest-brawl/scenes/score_screen.tscn new file mode 100644 index 0000000..50febc5 --- /dev/null +++ b/examples/forest-brawl/scenes/score_screen.tscn @@ -0,0 +1,71 @@ +[gd_scene load_steps=4 format=3 uid="uid://ojh5xofoserg"] + +[ext_resource type="Script" path="res://examples/forest-brawl/scripts/score-screen.gd" id="1_q3k84"] + +[sub_resource type="LabelSettings" id="LabelSettings_qjv80"] +font_size = 32 + +[sub_resource type="LabelSettings" id="LabelSettings_g3rp6"] +font_size = 24 + +[node name="Score Screen" type="Control" node_paths=PackedStringArray("message_label", "names_column", "scores_column")] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_q3k84") +messages = PackedStringArray("You\'ve joined the gravitationally challenged!", "Nom nom nom, those bombs must have been tasty!", "If you can\'t dodge \'em, collect \'em!", "Those aren\'t pokeballs, nobody\'s gotta catch \'em all!", "Next time you can try WASD to move", "Try falling, but like, up") +message_label = NodePath("VBoxContainer/Message Label") +names_column = NodePath("VBoxContainer/Scoreboard/Names VBox") +scores_column = NodePath("VBoxContainer/Scoreboard/Scores VBox") +fade_time = 1.0 + +[node name="ColorRect" type="ColorRect" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0, 0, 0, 1) + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +layout_mode = 1 +anchors_preset = 14 +anchor_top = 0.5 +anchor_right = 1.0 +anchor_bottom = 0.5 +offset_top = -96.0 +offset_bottom = 96.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Message Label" type="Label" parent="VBoxContainer"] +layout_mode = 2 +text = "You've joined the gravitationally challenged" +label_settings = SubResource("LabelSettings_qjv80") +horizontal_alignment = 1 +vertical_alignment = 1 +autowrap_mode = 2 + +[node name="Scores Label" type="Label" parent="VBoxContainer"] +layout_mode = 2 +text = "Scores:" +label_settings = SubResource("LabelSettings_g3rp6") +horizontal_alignment = 1 +vertical_alignment = 1 +autowrap_mode = 2 + +[node name="Scoreboard" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Names VBox" type="VBoxContainer" parent="VBoxContainer/Scoreboard"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Scores VBox" type="VBoxContainer" parent="VBoxContainer/Scoreboard"] +layout_mode = 2 +size_flags_horizontal = 3 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/REQUESTED b/examples/forest-brawl/screenshots/.gdignore similarity index 100% rename from server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/REQUESTED rename to examples/forest-brawl/screenshots/.gdignore diff --git a/examples/forest-brawl/screenshots/game.png b/examples/forest-brawl/screenshots/game.png new file mode 100644 index 0000000..8aac424 Binary files /dev/null and b/examples/forest-brawl/screenshots/game.png differ diff --git a/examples/forest-brawl/screenshots/lan.png b/examples/forest-brawl/screenshots/lan.png new file mode 100644 index 0000000..870a38f Binary files /dev/null and b/examples/forest-brawl/screenshots/lan.png differ diff --git a/examples/forest-brawl/screenshots/noray.png b/examples/forest-brawl/screenshots/noray.png new file mode 100644 index 0000000..dc47c0c Binary files /dev/null and b/examples/forest-brawl/screenshots/noray.png differ diff --git a/examples/forest-brawl/screenshots/settings.png b/examples/forest-brawl/screenshots/settings.png new file mode 100644 index 0000000..419006e Binary files /dev/null and b/examples/forest-brawl/screenshots/settings.png differ diff --git a/examples/forest-brawl/scripts/aura-sphere-mesh.gd b/examples/forest-brawl/scripts/aura-sphere-mesh.gd new file mode 100644 index 0000000..4e8b727 --- /dev/null +++ b/examples/forest-brawl/scripts/aura-sphere-mesh.gd @@ -0,0 +1,49 @@ +@tool +extends ArrayMesh +class_name AuraSphereMesh + +@export var segments: int = 64: + set(v): + segments = v + regenerate() + +@export var rings: int = 32: + set(v): + rings = v + regenerate() + +@export var radius: float = 1.0: + set(v): + radius = v + regenerate() + +@export var material: Material: + set(v): + material = v + surface_set_material(0, material) + +func _init(): + regenerate() + +func regenerate(): + clear_surfaces() + var sphere = SphereMesh.new() + sphere.radial_segments = segments + sphere.rings = rings + sphere.radius = radius + sphere.height = 2 * radius + sphere.is_hemisphere = false + + var arrays = sphere.get_mesh_arrays() + var positions: PackedVector3Array = arrays[Mesh.ARRAY_VERTEX] + var uvs: PackedVector2Array = arrays[Mesh.ARRAY_TEX_UV] + + for i in range(uvs.size()): + var uv = positions[i] + uv = Vector2(uv.x, uv.y) / radius + uv = (Vector2.ONE + uv) / 2.0 + + uvs.set(i, uv) + + add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) + surface_set_material(0, material) diff --git a/examples/forest-brawl/scripts/aura-sphere-mesh.gd.uid b/examples/forest-brawl/scripts/aura-sphere-mesh.gd.uid new file mode 100644 index 0000000..5edf54e --- /dev/null +++ b/examples/forest-brawl/scripts/aura-sphere-mesh.gd.uid @@ -0,0 +1 @@ +uid://b4kr6im1bxf3t diff --git a/examples/forest-brawl/scripts/bomb-projectile.gd b/examples/forest-brawl/scripts/bomb-projectile.gd new file mode 100644 index 0000000..b014573 --- /dev/null +++ b/examples/forest-brawl/scripts/bomb-projectile.gd @@ -0,0 +1,59 @@ +extends ShapeCast3D +class_name BombProjectile + +@export var speed: float = 12.0 +@export var strength: float = 2.0 +@export var effect: PackedScene +@export var distance: float = 128.0 + +var distance_left: float +var fired_by: Node +var is_first_tick: bool = true + +func _ready(): + NetworkTime.on_tick.connect(_tick) + distance_left = distance + +func _tick(delta, _t): + var dst = speed * delta + var motion = transform.basis.z * dst + target_position = Vector3.FORWARD * dst + distance_left -= dst + + if distance_left < 0: + queue_free() + + # Check if we've hit anyone + force_shapecast_update() + + # Find the closest point of contact + var space := get_world_3d().direct_space_state + var query := PhysicsShapeQueryParameters3D.new() + query.motion = motion + query.shape = shape + query.transform = global_transform + + var hit_interval := space.cast_motion(query) + if hit_interval[0] != 1.0 or hit_interval[1] != 1.0 and not is_first_tick: + # Move to collision + position += motion * hit_interval[1] + _explode() + else: + position += motion + + # Skip collisions for a single tick, no more + is_first_tick = false + +func _explode(): + queue_free() + NetworkTime.on_tick.disconnect(_tick) + + if effect: + var spawn = effect.instantiate() as Node3D + get_tree().root.add_child(spawn) + spawn.global_position = global_position + spawn.fired_by = fired_by + spawn.set_multiplayer_authority(get_multiplayer_authority()) + + if spawn is CPUParticles3D: + (spawn as CPUParticles3D).emitting = true diff --git a/examples/forest-brawl/scripts/bomb-projectile.gd.uid b/examples/forest-brawl/scripts/bomb-projectile.gd.uid new file mode 100644 index 0000000..feb8cbf --- /dev/null +++ b/examples/forest-brawl/scripts/bomb-projectile.gd.uid @@ -0,0 +1 @@ +uid://jouclb3iqnku diff --git a/examples/forest-brawl/scripts/brawler-controller.gd b/examples/forest-brawl/scripts/brawler-controller.gd new file mode 100644 index 0000000..dbffaf9 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-controller.gd @@ -0,0 +1,181 @@ +extends CharacterBody3D +class_name BrawlerController + +# Stats +@export var speed: float = 5.0 +@export var jump_velocity: float = 4.5 +@export var mass: float = 4.0 + +# Spawn +@export var spawn_point: Vector3 = Vector3(0, 4, 0) +@export var death_depth: float = 4.0 +@export var respawn_time: float = 4.0 + +# Dependencies +@onready var input := $Input as BrawlerInput +@onready var rollback_synchronizer := $RollbackSynchronizer as RollbackSynchronizer +@onready var animation_tree := $AnimationTree as AnimationTree +@onready var weapon := $Weapon as BrawlerWeapon +@onready var mesh := $"bomber-guy/rig/Skeleton3D/Cube_008" as MeshInstance3D +@onready var nametag := $Nametag as Label3D +@onready var fall_sound := $"Fall Sound" as PlayRandomStream3D + +var player_name: String = "": + set(p_name): + if p_name.length() > 24: + p_name = p_name.substr(0, 21) + "..." + player_name = p_name + nametag.text = p_name + +var player_id: int = -1 +var last_hit_player: BrawlerController +var last_hit_tick: int = -1 +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") +var respawn_tick: int = -1 +var respawn_count: int = 0 + +func register_hit(from: BrawlerController): + if from == self: + push_error("Player %s (#%s) trying to register hit on themselves!" % [player_name, player_id]) + return + + last_hit_player = from + last_hit_tick = NetworkRollback.tick if NetworkRollback.is_rollback() else NetworkTime.tick + +func shove(motion: Vector3): + move_and_collide(motion / mass) + +func _ready(): + if not input: + input = $Input + + _snap_to_spawn() + + GameEvents.on_brawler_spawn.emit(self) + NetworkTime.on_tick.connect(_tick) + + if not player_name: + player_name = "Nameless Brawler #%s" % [player_id] + + # Set player color + var color = Color.from_hsv((hash(player_id) % 256) / 256.0, 1.0, 1.0) + var material: StandardMaterial3D = mesh.get_active_material(0) + material = material.duplicate() + material.albedo_color = color + mesh.set_surface_override_material(0, material) + + rollback_synchronizer.set_schema({ + ":transform": NetworkSchemas.transform3f32(), + ":velocity": NetworkSchemas.vec3f32(), + ":speed": NetworkSchemas.float32(), + ":mass": NetworkSchemas.float32(), + + "Input:movement": NetworkSchemas.vec3f32(), + "Input:aim": NetworkSchemas.vec3f32() + }) + +func _process(delta): + # Update animation + # Running + var movement = Vector3(velocity.x, 0, velocity.z) * speed + var relative_velocity = quaternion.inverse() * movement + relative_velocity.y = 0 + relative_velocity /= speed + relative_velocity = Vector2(relative_velocity.x, relative_velocity.z) + var animated_velocity = animation_tree.get("parameters/Move/blend_position") as Vector2 + + animation_tree.set("parameters/Move/blend_position", animated_velocity.move_toward(relative_velocity, delta / 0.2)) + + # Float + _force_update_is_on_floor() + var animated_float = animation_tree.get("parameters/Float/blend_amount") as float + var actual_float = 1.0 if not is_on_floor() else 0.0 + animation_tree.set("parameters/Float/blend_amount", move_toward(animated_float, actual_float, delta / 0.2)) + + # Speed + animation_tree.set("parameters/MoveScale/scale", speed / 3.75) + animation_tree.set("parameters/ThrowScale/scale", min(weapon.fire_cooldown / (10. / 24.), 1.0)) + +func _tick(_delta, tick): + # Run throw animation if firing + if weapon.last_fire == tick: + animation_tree.set("parameters/Throw/request", AnimationNodeOneShot.ONE_SHOT_REQUEST_FIRE) + +func _rollback_tick(delta, tick, is_fresh): + # Respawn + if tick == respawn_tick: + _snap_to_spawn() + velocity = Vector3.ZERO + last_hit_tick = -1 + + if is_fresh: + GameEvents.on_brawler_respawn.emit(self) + + # Skip predictions + if rollback_synchronizer.is_predicting(): + rollback_synchronizer.ignore_prediction(self) + return + + # Apply gravity + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * delta + + # Stick to moving platforms + var platform_velocity := Vector3.ZERO + var collision_result := KinematicCollision3D.new() + if test_move(global_transform, Vector3.DOWN * delta, collision_result): + var collider := collision_result.get_collider() + if collider is MovingPlatform: + var platform := collider as MovingPlatform + platform_velocity = platform.get_velocity() + + # Jump + if input.movement.y > 0 and is_on_floor(): + velocity.y = jump_velocity * input.movement.y + + # Movement + var direction = Vector3(input.movement.x, 0, input.movement.z).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + # Aim + if input.aim: + transform = transform.looking_at(position + Vector3(input.aim.x, 0, input.aim.z), Vector3.UP, true).scaled_local(scale) + + # Apply movement + velocity += platform_velocity + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + velocity -= platform_velocity + + # Death + if position.y < -death_depth and tick > respawn_tick and is_fresh: + var respawn_cooldown = respawn_time * NetworkTime.tickrate + respawn_tick = tick + respawn_cooldown + respawn_count += 1 + + fall_sound.play_random() + + GameEvents.on_brawler_fall.emit(self) + +func _exit_tree(): + GameEvents.on_brawler_despawn.emit(self) + +func _snap_to_spawn(): + var spawns = get_tree().get_nodes_in_group("Spawn Points") + var idx = hash(player_id + respawn_count * 39) % spawns.size() + var spawn = spawns[idx] as Node3D + + global_transform = spawn.global_transform + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity *= 0 + move_and_slide() + velocity = old_velocity diff --git a/examples/forest-brawl/scripts/brawler-controller.gd.uid b/examples/forest-brawl/scripts/brawler-controller.gd.uid new file mode 100644 index 0000000..8f48042 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-controller.gd.uid @@ -0,0 +1 @@ +uid://8iahb2i2wylj diff --git a/examples/forest-brawl/scripts/brawler-crown.gd b/examples/forest-brawl/scripts/brawler-crown.gd new file mode 100644 index 0000000..d036184 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-crown.gd @@ -0,0 +1,50 @@ +extends Node3D + +@export var offset: Vector3 = Vector3(0, 2.5, 0) +@export var tween_time: float = 0.2 + +var is_enabled: bool = true +var target: BrawlerController + +func _ready(): + # Start as hidden + scale = Vector3.ZERO + is_enabled = false + + # Start animation + $"brawler-crown/AnimationPlayer".play("crown_rotate") + + GameEvents.on_scores_updated.connect(_handle_scores) + +func _process(delta): + if not target: + is_enabled = false + else: + var target_pos = target.global_position + offset + var dst = global_position.distance_squared_to(target_pos) + global_position = global_position.move_toward(target_pos, dst / tween_time * delta) + + scale = scale.move_toward(Vector3.ONE if is_enabled else Vector3.ZERO, delta / tween_time) + visible = scale.length_squared() > 0.05 + +func _handle_scores(scores: Dictionary): + is_enabled = false + + # No crown in single player + if scores.size() == 1: + return + + var max_score = scores.values().max() + var max_players = scores.keys().filter(func(p): return scores[p] == max_score) + + # Multiple players share the crown + if max_players.size() > 1: + return + + var player_id = max_players[0] + var player = get_tree().get_nodes_in_group("Brawlers")\ + .filter(func(it): return it.player_id == player_id)\ + .pop_back() + + target = player + is_enabled = true diff --git a/examples/forest-brawl/scripts/brawler-crown.gd.uid b/examples/forest-brawl/scripts/brawler-crown.gd.uid new file mode 100644 index 0000000..c244866 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-crown.gd.uid @@ -0,0 +1 @@ +uid://bb7o1olebaly8 diff --git a/examples/forest-brawl/scripts/brawler-input.gd b/examples/forest-brawl/scripts/brawler-input.gd new file mode 100644 index 0000000..84079e5 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-input.gd @@ -0,0 +1,91 @@ +extends BaseNetInput +class_name BrawlerInput + +@export var switch_time: float = 1.0 +var camera: Camera3D + +@onready var _player: Node3D = get_parent() +@onready var _confine_mouse: bool = DisplayServer.mouse_get_mode() == DisplayServer.MOUSE_MODE_CONFINED + +var movement: Vector3 = Vector3.ZERO +var aim: Vector3 = Vector3.ZERO +var is_firing: bool = false + +var _last_mouse_input: float = 0.0 +var _aim_target: Vector3 +var _projected_target: Vector3 +var _has_aim: bool = false + +func _input(event): + if event is InputEventMouse: + _last_mouse_input = NetworkTime.local_time + +func _gather(): + # Movement + movement = Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) + + # Aim + aim = Vector3( + Input.get_axis("aim_west", "aim_east"), + 0.0, + Input.get_axis("aim_north", "aim_south") + ) + + if aim.length(): + # Prefer gamepad + # Reset timeout for mouse motion + _last_mouse_input = NetworkTime.local_time - switch_time + elif NetworkTime.local_time - _last_mouse_input > switch_time: + # Use movement if no mouse motion recently + aim = movement + elif _has_aim: + # Use mouse raycast + aim = (_aim_target - _player.global_position).normalized() + else: + # Fall back to mouse projected to player height + aim = (_projected_target - _player.global_position).normalized() + + # Always aim horizontally, never up or down + aim.y = 0 + aim = aim.normalized() + + # Hide mouse if inactive + if NetworkTime.local_time - _last_mouse_input >= switch_time: + DisplayServer.mouse_set_mode( + DisplayServer.MOUSE_MODE_CONFINED_HIDDEN if _confine_mouse else DisplayServer.MOUSE_MODE_HIDDEN + ) + else: + DisplayServer.mouse_set_mode( + DisplayServer.MOUSE_MODE_CONFINED if _confine_mouse else DisplayServer.MOUSE_MODE_VISIBLE + ) + + is_firing = Input.is_action_pressed("weapon_fire") + +func _physics_process(_delta): + if not camera: + camera = get_viewport().get_camera_3d() + + # Aim + var mouse_pos = get_viewport().get_mouse_position() + var ray_origin = camera.project_ray_origin(mouse_pos) + var ray_normal = camera.project_ray_normal(mouse_pos) + var ray_length = 128 + + var space = camera.get_world_3d().direct_space_state + var hit = space.intersect_ray(PhysicsRayQueryParameters3D.create( + ray_origin, ray_origin + ray_normal * ray_length + )) + + if not hit.is_empty(): + # Aim at raycast hit + _aim_target = hit.position + _has_aim = true + else: + # Project to player's height + var height_diff = _player.global_position.y - ray_origin.y + _projected_target = ray_origin + ray_normal * (height_diff / ray_normal.y) + _has_aim = false diff --git a/examples/forest-brawl/scripts/brawler-input.gd.uid b/examples/forest-brawl/scripts/brawler-input.gd.uid new file mode 100644 index 0000000..fe0eed1 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-input.gd.uid @@ -0,0 +1 @@ +uid://bb3yqyxdf56jx diff --git a/examples/forest-brawl/scripts/brawler-spawner.gd b/examples/forest-brawl/scripts/brawler-spawner.gd new file mode 100644 index 0000000..37f3716 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-spawner.gd @@ -0,0 +1,96 @@ +extends Node +class_name BrawlerSpawner + +@export var player_scene: PackedScene +@export var spawn_root: Node +@export var camera: FollowingCamera +@export var joining_screen: Control +@export var name_input: LineEdit + +var spawn_host_avatar: bool = true +var avatars: Dictionary = {} + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + if joining_screen: + joining_screen.visible = true + + # Spawn an avatar for us + _spawn(id) + + if joining_screen: + await NetworkTime.after_sync + joining_screen.visible = false + +func _handle_host(): + if spawn_host_avatar: + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + var avatar = _spawn(id) + + # Hide avatar until player syncs time + avatar.visible = false + while not NetworkTime.is_client_synced(id): + await NetworkTime.after_client_sync + avatar.visible = true + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int) -> BrawlerController: + var avatar = player_scene.instantiate() as BrawlerController + avatars[id] = avatar + avatar.name += " #%d" % id + avatar.player_id = id + spawn_root.add_child(avatar) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) + + if id == multiplayer.get_unique_id(): + # If avatar is own, assign it as camera follow target and emit event + camera.target = avatar + GameEvents.on_own_brawler_spawn.emit(avatar) + + # Submit name + var player_name = name_input.text + print("Submitting player name " + player_name) + _submit_name.rpc(player_name) + + return avatar + +@rpc("any_peer", "reliable", "call_local") +func _submit_name(player_name: String): + var pid = multiplayer.get_remote_sender_id() + var avatar = avatars[pid] + avatar.player_name = player_name + print("Setting player name for #%s to %s" % [pid, player_name]) diff --git a/examples/forest-brawl/scripts/brawler-spawner.gd.uid b/examples/forest-brawl/scripts/brawler-spawner.gd.uid new file mode 100644 index 0000000..e97d4b6 --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-spawner.gd.uid @@ -0,0 +1 @@ +uid://uqw0ew8y4tqf diff --git a/examples/forest-brawl/scripts/brawler-weapon.gd b/examples/forest-brawl/scripts/brawler-weapon.gd new file mode 100644 index 0000000..d88551d --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-weapon.gd @@ -0,0 +1,44 @@ +extends NetworkWeapon3D +class_name BrawlerWeapon + +@export var projectile: PackedScene +@export var fire_cooldown: float = 0.15 + +@onready var input: BrawlerInput = $"../Input" +@onready var sound: AudioStreamPlayer3D = $AudioStreamPlayer3D + +var last_fire: int = -1 + +static var _logger := NetfoxLogger.new("fb", "BrawlerWeapon") + +func _ready(): + NetworkTime.on_tick.connect(_tick) + +func _can_fire() -> bool: + return NetworkTime.seconds_between(last_fire, NetworkTime.tick) >= fire_cooldown + +func _can_peer_use(peer_id: int) -> bool: + return peer_id == input.get_multiplayer_authority() + +func _after_fire(projectile: Node3D): + var bomb := projectile as BombProjectile + last_fire = get_fired_tick() + sound.play() + + _logger.trace("[%s] Ticking new bomb %d -> %d", [bomb.name, get_fired_tick(), NetworkTime.tick]) + for t in range(get_fired_tick(), NetworkTime.tick): + if bomb.is_queued_for_deletion(): + break + bomb._tick(NetworkTime.ticktime, t) + +func _spawn() -> Node3D: + var bomb_projectile: BombProjectile = projectile.instantiate() as BombProjectile + get_tree().root.add_child(bomb_projectile, true) + bomb_projectile.global_transform = global_transform + bomb_projectile.fired_by = get_parent() + + return bomb_projectile + +func _tick(_delta: float, _t: int): + if input.is_firing: + fire() diff --git a/examples/forest-brawl/scripts/brawler-weapon.gd.uid b/examples/forest-brawl/scripts/brawler-weapon.gd.uid new file mode 100644 index 0000000..b366f4c --- /dev/null +++ b/examples/forest-brawl/scripts/brawler-weapon.gd.uid @@ -0,0 +1 @@ +uid://b08u2o8edupqh diff --git a/examples/forest-brawl/scripts/cloud-area3d.gd b/examples/forest-brawl/scripts/cloud-area3d.gd new file mode 100644 index 0000000..f4501bc --- /dev/null +++ b/examples/forest-brawl/scripts/cloud-area3d.gd @@ -0,0 +1,65 @@ +extends Area3D + +@export var clouds: Array[PackedScene] = [] +@export var count: int = 16 + +@export var float_direction: Vector3 = Vector3.RIGHT +@export var float_speed_min: float = 4.0 +@export var float_speed_max: float = 8.0 + +var _clouds: Array[Node3D] = [] +var _speeds: Array[float] = [] +var _aabb: AABB + +func _ready(): + _aabb = _find_aabb() + if not _aabb.has_volume(): + push_error("CloudArea required a box shape!") + queue_free() + return + + for i in range(count): + var cloud = _spawn_cloud() + cloud.position = _aabb.position + _aabb.size * Vector3(randf(), randf(), randf()) + + _clouds.push_back(cloud) + _speeds.push_back(randf_range(float_speed_min, float_speed_max)) + +func _process(delta): + for i in range(count): + var cloud = _clouds[i] + var speed = _speeds[i] + + cloud.position += float_direction * speed * delta + + if not _aabb.has_point(cloud.position): + cloud.queue_free() + + cloud = _spawn_cloud() + cloud.position = _aabb.position + _aabb.size * \ + Vector3(randf(), randf(), randf()) * \ + (Vector3.ONE * 0.5 - float_direction * 0.5) + + _clouds[i] = cloud + _speeds[i] = randf_range(float_speed_min, float_speed_max) + +func _spawn_cloud() -> Node3D: + var cloud_template = clouds.pick_random() as PackedScene + var cloud = cloud_template.instantiate() as Node3D + add_child(cloud) + cloud.owner = self + + return cloud + +func _find_aabb() -> AABB: + var shape_owners = get_shape_owners() + for shape_owner in shape_owners: + for i in range(shape_owner_get_shape_count(shape_owner)): + var shape = shape_owner_get_shape(shape_owner, i) + + if shape is BoxShape3D: + var pos = shape_owner_get_transform(shape_owner).origin + var size = shape.size + return AABB(pos - size / 2, size) + + return AABB(Vector3.ZERO, Vector3.ZERO) diff --git a/examples/forest-brawl/scripts/cloud-area3d.gd.uid b/examples/forest-brawl/scripts/cloud-area3d.gd.uid new file mode 100644 index 0000000..f96d674 --- /dev/null +++ b/examples/forest-brawl/scripts/cloud-area3d.gd.uid @@ -0,0 +1 @@ +uid://bgsb1gf87lh85 diff --git a/examples/forest-brawl/scripts/displacer.gd b/examples/forest-brawl/scripts/displacer.gd new file mode 100644 index 0000000..ce8eb9f --- /dev/null +++ b/examples/forest-brawl/scripts/displacer.gd @@ -0,0 +1,74 @@ +extends Node3D + +@export var duration: float = 0.5 +@export var strength: float = 1.0 +@export var shape: Shape3D = SphereShape3D.new() + +var birth_tick: int +var death_tick: int +var despawn_tick: int +var fired_by: Node + +var _logger := NetfoxLogger.new("fb", "Displacer") + +func _ready(): + birth_tick = NetworkTime.tick + death_tick = birth_tick + NetworkTime.seconds_to_ticks(duration) + despawn_tick = death_tick + NetworkRollback.history_limit + + NetworkRollback.on_process_tick.connect(_rollback_tick) + NetworkTime.on_tick.connect(_tick) + + # Run from birth tick on next loop + NetworkRollback.notify_resimulation_start(birth_tick) + + (func(): + _logger.debug("Created explosion at %s@%d", [global_position, birth_tick]) + ).call_deferred() + +func _rollback_tick(tick: int): + if tick < birth_tick or tick > death_tick: + # Tick outside of range + return + + var strength_factor := inverse_lerp(death_tick, birth_tick, tick) + strength_factor = clampf(strength_factor, 0., 1.) + strength_factor = pow(strength_factor, 2) + + for brawler in _get_overlapping_brawlers(): + var diff := brawler.global_position - global_position + var f := clampf(1.0 / (1.0 + diff.length_squared()), 0.0, 1.0) + + var offset := Vector3(diff.x, max(0, diff.y), diff.z).normalized() + offset *= strength_factor * strength * f * NetworkTime.ticktime + + brawler.shove(offset) + NetworkRollback.mutate(brawler) + + if brawler != fired_by: + brawler.register_hit(fired_by) + +func _tick(_delta, tick): + if tick >= death_tick: + visible = false + + if tick > despawn_tick: + queue_free() + +func _get_overlapping_brawlers() -> Array[BrawlerController]: + var result: Array[BrawlerController] = [] + + var state := get_world_3d().direct_space_state + var query := PhysicsShapeQueryParameters3D.new() + query.shape = shape + query.transform = global_transform + + # TODO: Move map geo and brawlers to separate layers, so map doesn't clog up + # the 32 max_results - this would enable bigger collision shapes + var hits := state.intersect_shape(query) + for hit in hits: + var hit_object = hit["collider"] + if hit_object is BrawlerController: + result.push_back(hit_object) + + return result diff --git a/examples/forest-brawl/scripts/displacer.gd.uid b/examples/forest-brawl/scripts/displacer.gd.uid new file mode 100644 index 0000000..d2edff2 --- /dev/null +++ b/examples/forest-brawl/scripts/displacer.gd.uid @@ -0,0 +1 @@ +uid://cxnxh3ffpwn2s diff --git a/examples/forest-brawl/scripts/effects/effect.gd b/examples/forest-brawl/scripts/effects/effect.gd new file mode 100644 index 0000000..e090683 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/effect.gd @@ -0,0 +1,55 @@ +extends Node3D +class_name Effect + +@export var duration: float = 8.0 +@export var winddown_time: float = 2.0 + +@onready var animation_player: AnimationPlayer = $AnimationPlayer as AnimationPlayer + +var _apply_tick: int = 0 +var _cease_tick: int = 0 +var _destroy_tick: int = 0 + +func _ready(): + if not get_parent() is BrawlerController: + push_error("Powerup effect added to non-player!") + queue_free() + return + + _apply_tick = NetworkTime.tick + 1 + _cease_tick = _apply_tick + NetworkTime.seconds_to_ticks(duration) + _destroy_tick = max( + _cease_tick + NetworkTime.seconds_to_ticks(winddown_time), + _cease_tick + NetworkRollback.history_limit + ) + + # Resim from apply tick on the next loop + NetworkRollback.before_loop.connect(func(): NetworkRollback.notify_resimulation_start(_apply_tick), CONNECT_ONE_SHOT) + + NetworkRollback.on_process_tick.connect(_rollback_tick) + NetworkTime.on_tick.connect(_tick) + +func _rollback_tick(tick): + if tick == _apply_tick: + _apply() + if tick == _cease_tick: + _cease() + +func _tick(_delta, tick): + if tick == _cease_tick: + animation_player.play("death") + if tick >= _destroy_tick: + queue_free() + +func _apply(): + pass + +func _cease(): + pass + +func get_target() -> BrawlerController: + return get_parent_node_3d() as BrawlerController + +func is_active() -> bool: + var tick = NetworkRollback.tick if NetworkRollback.is_rollback() else NetworkTime.tick + return tick >= _apply_tick and tick < _cease_tick diff --git a/examples/forest-brawl/scripts/effects/effect.gd.uid b/examples/forest-brawl/scripts/effects/effect.gd.uid new file mode 100644 index 0000000..7a81455 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/effect.gd.uid @@ -0,0 +1 @@ +uid://rbj18ues4b75 diff --git a/examples/forest-brawl/scripts/effects/mass-effect.gd b/examples/forest-brawl/scripts/effects/mass-effect.gd new file mode 100644 index 0000000..ed74e1e --- /dev/null +++ b/examples/forest-brawl/scripts/effects/mass-effect.gd @@ -0,0 +1,11 @@ +extends Effect + +@export var bonus_mass: float = 1.0 + +func _apply(): + get_target().mass += bonus_mass + NetworkRollback.mutate(get_target()) + +func _cease(): + get_target().mass -= bonus_mass + NetworkRollback.mutate(get_target()) diff --git a/examples/forest-brawl/scripts/effects/mass-effect.gd.uid b/examples/forest-brawl/scripts/effects/mass-effect.gd.uid new file mode 100644 index 0000000..96255e4 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/mass-effect.gd.uid @@ -0,0 +1 @@ +uid://ku0h0bido33i diff --git a/examples/forest-brawl/scripts/effects/repulse-effect.gd b/examples/forest-brawl/scripts/effects/repulse-effect.gd new file mode 100644 index 0000000..08e9067 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/repulse-effect.gd @@ -0,0 +1,25 @@ +extends Effect + +@export var area: Area3D +@export var strength: float = 4.0 + +func _rollback_tick(tick): + super._rollback_tick(tick) + + if not is_active(): + return + + for body in area.get_overlapping_bodies(): + if not body is BrawlerController or body == get_parent_node_3d(): + continue + + var brawler := body as BrawlerController + var diff: Vector3 = brawler.global_position - global_position + var f = clampf(1.0 / (1.0 + diff.length_squared()), 0.0, 1.0) + f = clampf(1. - diff.length_squared() / 16., 0., 1.) + diff.y = max(0, diff.y) + var motion = diff.normalized() * strength * f * NetworkTime.ticktime + brawler.shove(motion) + + brawler.register_hit(get_parent_node_3d()) + NetworkRollback.mutate(brawler) diff --git a/examples/forest-brawl/scripts/effects/repulse-effect.gd.uid b/examples/forest-brawl/scripts/effects/repulse-effect.gd.uid new file mode 100644 index 0000000..1c2dc43 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/repulse-effect.gd.uid @@ -0,0 +1 @@ +uid://bbyjqcch0uq2b diff --git a/examples/forest-brawl/scripts/effects/speed-effect.gd b/examples/forest-brawl/scripts/effects/speed-effect.gd new file mode 100644 index 0000000..1938649 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/speed-effect.gd @@ -0,0 +1,11 @@ +extends Effect + +@export var bonus: float = 0.2 + +func _apply(): + get_target().speed *= 1 + bonus + NetworkRollback.mutate(get_target()) + +func _cease(): + get_target().speed /= 1 + bonus + NetworkRollback.mutate(get_target()) diff --git a/examples/forest-brawl/scripts/effects/speed-effect.gd.uid b/examples/forest-brawl/scripts/effects/speed-effect.gd.uid new file mode 100644 index 0000000..56fe1e6 --- /dev/null +++ b/examples/forest-brawl/scripts/effects/speed-effect.gd.uid @@ -0,0 +1 @@ +uid://byyjui57c0qjx diff --git a/examples/forest-brawl/scripts/explosion.gd b/examples/forest-brawl/scripts/explosion.gd new file mode 100644 index 0000000..ecec0f5 --- /dev/null +++ b/examples/forest-brawl/scripts/explosion.gd @@ -0,0 +1,8 @@ +extends CPUParticles3D + +func _ready(): + one_shot = true + +func _process(_delta): + if not emitting: + queue_free() diff --git a/examples/forest-brawl/scripts/explosion.gd.uid b/examples/forest-brawl/scripts/explosion.gd.uid new file mode 100644 index 0000000..8c13e86 --- /dev/null +++ b/examples/forest-brawl/scripts/explosion.gd.uid @@ -0,0 +1 @@ +uid://clfqawybja64i diff --git a/examples/forest-brawl/scripts/following-camera.gd b/examples/forest-brawl/scripts/following-camera.gd new file mode 100644 index 0000000..874f161 --- /dev/null +++ b/examples/forest-brawl/scripts/following-camera.gd @@ -0,0 +1,22 @@ +extends Camera3D +class_name FollowingCamera + +@export var distance: float = 4.0 +@export var approach_time: float = 0.125 +@export var target: Node3D + +func _ready(): + NetworkTime.on_tick.connect(_tick) + +func _tick(delta: float, _t: int): + if not target: + return + + var desired_pos = target.global_position + desired_pos += transform.basis.z * distance + + var diff = desired_pos - global_position + var dst = diff.length() + diff = diff.normalized() + + global_position += diff * minf(dst / approach_time * delta, dst) diff --git a/examples/forest-brawl/scripts/following-camera.gd.uid b/examples/forest-brawl/scripts/following-camera.gd.uid new file mode 100644 index 0000000..0b86c76 --- /dev/null +++ b/examples/forest-brawl/scripts/following-camera.gd.uid @@ -0,0 +1 @@ +uid://bqrt0ucoqar5v diff --git a/examples/forest-brawl/scripts/game-events.gd b/examples/forest-brawl/scripts/game-events.gd new file mode 100644 index 0000000..874859f --- /dev/null +++ b/examples/forest-brawl/scripts/game-events.gd @@ -0,0 +1,10 @@ +extends Node +# Only used for Forest Brawl example + +signal on_brawler_spawn(brawler: BrawlerController) +signal on_own_brawler_spawn(brawler: BrawlerController) +signal on_brawler_fall(brawler: BrawlerController) +signal on_brawler_respawn(brawler: BrawlerController) +signal on_brawler_despawn(brawler: BrawlerController) + +signal on_scores_updated(scores: Dictionary) diff --git a/examples/forest-brawl/scripts/game-events.gd.uid b/examples/forest-brawl/scripts/game-events.gd.uid new file mode 100644 index 0000000..d04cf4e --- /dev/null +++ b/examples/forest-brawl/scripts/game-events.gd.uid @@ -0,0 +1 @@ +uid://wpjf12noxvp5 diff --git a/examples/forest-brawl/scripts/moving-platform.gd b/examples/forest-brawl/scripts/moving-platform.gd new file mode 100644 index 0000000..d527985 --- /dev/null +++ b/examples/forest-brawl/scripts/moving-platform.gd @@ -0,0 +1,27 @@ +extends AnimatableBody3D +class_name MovingPlatform + +@export var speed: float = 2. +@onready var _origin: Vector3 = global_position +@onready var _target: Vector3 = $Target.global_position +@onready var _distance: float = _origin.distance_to(_target) +var _velocity: Vector3 = Vector3.ZERO + +func get_velocity() -> Vector3: + return _velocity + +func _ready(): + NetworkRollback.on_prepare_tick.connect(_apply_tick) + +func _apply_tick(tick: int): + var previous_position = _get_position_for_tick(tick - 1) + global_position = _get_position_for_tick(tick) + + _velocity = (global_position - previous_position) / NetworkTime.ticktime + +func _get_position_for_tick(tick: int): + var distance_moved = NetworkTime.ticks_to_seconds(tick) * speed + var progress = distance_moved / _distance + progress = pingpong(progress, 1) + + return _origin.lerp(_target, progress) diff --git a/examples/forest-brawl/scripts/moving-platform.gd.uid b/examples/forest-brawl/scripts/moving-platform.gd.uid new file mode 100644 index 0000000..af66a8b --- /dev/null +++ b/examples/forest-brawl/scripts/moving-platform.gd.uid @@ -0,0 +1 @@ +uid://4ynvkeku823s diff --git a/examples/forest-brawl/scripts/name-provider.gd b/examples/forest-brawl/scripts/name-provider.gd new file mode 100644 index 0000000..17f28eb --- /dev/null +++ b/examples/forest-brawl/scripts/name-provider.gd @@ -0,0 +1,336 @@ +extends Object +class_name NameProvider + +static var _adjectives: PackedStringArray +static var _animals: PackedStringArray + +static func _pick_random(from: PackedStringArray) -> String: + return from[randi_range(0, from.size()-1)] + +static func name(): + return ("%s %s" % [ + NameProvider._pick_random(NameProvider._adjectives), + NameProvider._pick_random(NameProvider._animals) + ]).capitalize() + +static func _static_init(): + # Source for adjectives: https://gist.github.com/hugsy/8910dc78d208e40de42deb29e62df913 + # Source for animals: https://gist.github.com/atduskgreg/3cf8ef48cb0d29cf151bedad81553a54 + + _adjectives = PackedStringArray([ + "abandoned", "able", "absolute", "adorable", "adventurous", "academic", + "acceptable", "acclaimed", "accomplished", "accurate", "aching", "acidic", + "acrobatic", "active", "actual", "adept", "admirable", "admired", + "adolescent", "adorable", "adored", "advanced", "afraid", "affectionate", + "aged", "aggravating", "aggressive", "agile", "agitated", "agonizing", + "agreeable", "ajar", "alarmed", "alarming", "alert", "alienated", + "alive", "all", "altruistic", "amazing", "ambitious", "ample", + "amused", "amusing", "anchored", "ancient", "angelic", "angry", + "anguished", "animated", "annual", "another", "antique", "anxious", + "any", "apprehensive", "appropriate", "apt", "arctic", "arid", + "aromatic", "artistic", "ashamed", "assured", "astonishing", "athletic", + "attached", "attentive", "attractive", "austere", "authentic", "authorized", + "automatic", "avaricious", "average", "aware", "awesome", "awful", + "awkward", "babyish", "bad", "back", "baggy", "bare", + "barren", "basic", "beautiful", "belated", "beloved", "beneficial", + "better", "best", "bewitched", "big", "big-hearted", "biodegradable", + "bite-sized", "bitter", "black", "black-and-white", "bland", "blank", + "blaring", "bleak", "blind", "blissful", "blond", "blue", + "blushing", "bogus", "boiling", "bold", "bony", "boring", + "bossy", "both", "bouncy", "bountiful", "bowed", "brave", + "breakable", "brief", "bright", "brilliant", "brisk", "broken", + "bronze", "brown", "bruised", "bubbly", "bulky", "bumpy", + "buoyant", "burdensome", "burly", "bustling", "busy", "buttery", + "buzzing", "calculating", "calm", "candid", "canine", "capital", + "carefree", "careful", "careless", "caring", "cautious", "cavernous", + "celebrated", "charming", "cheap", "cheerful", "cheery", "chief", + "chilly", "chubby", "circular", "classic", "clean", "clear", + "clear-cut", "clever", "close", "closed", "cloudy", "clueless", + "clumsy", "cluttered", "coarse", "cold", "colorful", "colorless", + "colossal", "comfortable", "common", "compassionate", "competent", "complete", + "complex", "complicated", "composed", "concerned", "concrete", "confused", + "conscious", "considerate", "constant", "content", "conventional", "cooked", + "cool", "cooperative", "coordinated", "corny", "corrupt", "costly", + "courageous", "courteous", "crafty", "crazy", "creamy", "creative", + "creepy", "criminal", "crisp", "critical", "crooked", "crowded", + "cruel", "crushing", "cuddly", "cultivated", "cultured", "cumbersome", + "curly", "curvy", "cute", "cylindrical", "damaged", "damp", + "dangerous", "dapper", "daring", "darling", "dark", "dazzling", + "dead", "deadly", "deafening", "dear", "dearest", "decent", + "decimal", "decisive", "deep", "defenseless", "defensive", "defiant", + "deficient", "definite", "definitive", "delayed", "delectable", "delicious", + "delightful", "delirious", "demanding", "dense", "dental", "dependable", + "dependent", "descriptive", "deserted", "detailed", "determined", "devoted", + "different", "difficult", "digital", "diligent", "dim", "dimpled", + "dimwitted", "direct", "disastrous", "discrete", "disfigured", "disgusting", + "disloyal", "dismal", "distant", "downright", "dreary", "dirty", + "disguised", "dishonest", "dismal", "distant", "distinct", "distorted", + "dizzy", "dopey", "doting", "double", "downright", "drab", + "drafty", "dramatic", "dreary", "droopy", "dry", "dual", + "dull", "dutiful", "each", "eager", "earnest", "early", + "easy", "easy-going", "ecstatic", "edible", "educated", "elaborate", + "elastic", "elated", "elderly", "electric", "elegant", "elementary", + "elliptical", "embarrassed", "embellished", "eminent", "emotional", "empty", + "enchanted", "enchanting", "energetic", "enlightened", "enormous", "enraged", + "entire", "envious", "equal", "equatorial", "essential", "esteemed", + "ethical", "euphoric", "even", "evergreen", "everlasting", "every", + "evil", "exalted", "excellent", "exemplary", "exhausted", "excitable", + "excited", "exciting", "exotic", "expensive", "experienced", "expert", + "extraneous", "extroverted", "extra-large", "extra-small", "fabulous", "failing", + "faint", "fair", "faithful", "fake", "false", "familiar", + "famous", "fancy", "fantastic", "far", "faraway", "far-flung", + "far-off", "fast", "fat", "fatal", "fatherly", "favorable", + "favorite", "fearful", "fearless", "feisty", "feline", "female", + "feminine", "few", "fickle", "filthy", "fine", "finished", + "firm", "first", "firsthand", "fitting", "fixed", "flaky", + "flamboyant", "flashy", "flat", "flawed", "flawless", "flickering", + "flimsy", "flippant", "flowery", "fluffy", "fluid", "flustered", + "focused", "fond", "foolhardy", "foolish", "forceful", "forked", + "formal", "forsaken", "forthright", "fortunate", "fragrant", "frail", + "frank", "frayed", "free", "French", "fresh", "frequent", + "friendly", "frightened", "frightening", "frigid", "frilly", "frizzy", + "frivolous", "front", "frosty", "frozen", "frugal", "fruitful", + "full", "fumbling", "functional", "funny", "fussy", "fuzzy", + "gargantuan", "gaseous", "general", "generous", "gentle", "genuine", + "giant", "giddy", "gigantic", "gifted", "giving", "glamorous", + "glaring", "glass", "gleaming", "gleeful", "glistening", "glittering", + "gloomy", "glorious", "glossy", "glum", "golden", "good", + "good-natured", "gorgeous", "graceful", "gracious", "grand", "grandiose", + "granular", "grateful", "grave", "gray", "great", "greedy", + "green", "gregarious", "grim", "grimy", "gripping", "grizzled", + "gross", "grotesque", "grouchy", "grounded", "growing", "growling", + "grown", "grubby", "gruesome", "grumpy", "guilty", "gullible", + "gummy", "hairy", "half", "handmade", "handsome", "handy", + "happy", "happy-go-lucky", "hard", "hard-to-find", "harmful", "harmless", + "harmonious", "harsh", "hasty", "hateful", "haunting", "healthy", + "heartfelt", "hearty", "heavenly", "heavy", "hefty", "helpful", + "helpless", "hidden", "hideous", "high", "high-level", "hilarious", + "hoarse", "hollow", "homely", "honest", "honorable", "honored", + "hopeful", "horrible", "hospitable", "hot", "huge", "humble", + "humiliating", "humming", "humongous", "hungry", "hurtful", "husky", + "icky", "icy", "ideal", "idealistic", "identical", "idle", + "idiotic", "idolized", "ignorant", "ill", "illegal", "ill-fated", + "ill-informed", "illiterate", "illustrious", "imaginary", "imaginative", "immaculate", + "immaterial", "immediate", "immense", "impassioned", "impeccable", "impartial", + "imperfect", "imperturbable", "impish", "impolite", "important", "impossible", + "impractical", "impressionable", "impressive", "improbable", "impure", "inborn", + "incomparable", "incompatible", "incomplete", "inconsequential", "incredible", "indelible", + "inexperienced", "indolent", "infamous", "infantile", "infatuated", "inferior", + "infinite", "informal", "innocent", "insecure", "insidious", "insignificant", + "insistent", "instructive", "insubstantial", "intelligent", "intent", "intentional", + "interesting", "internal", "international", "intrepid", "ironclad", "irresponsible", + "irritating", "itchy", "jaded", "jagged", "jam-packed", "jaunty", + "jealous", "jittery", "joint", "jolly", "jovial", "joyful", + "joyous", "jubilant", "judicious", "juicy", "jumbo", "junior", + "jumpy", "juvenile", "kaleidoscopic", "keen", "key", "kind", + "kindhearted", "kindly", "klutzy", "knobby", "knotty", "knowledgeable", + "knowing", "known", "kooky", "kosher", "lame", "lanky", + "large", "last", "lasting", "late", "lavish", "lawful", + "lazy", "leading", "lean", "leafy", "left", "legal", + "legitimate", "light", "lighthearted", "likable", "likely", "limited", + "limp", "limping", "linear", "lined", "liquid", "little", + "live", "lively", "livid", "loathsome", "lone", "lonely", + "long", "long-term", "loose", "lopsided", "lost", "loud", + "lovable", "lovely", "loving", "low", "loyal", "lucky", + "lumbering", "luminous", "lumpy", "lustrous", "luxurious", "mad", + "made-up", "magnificent", "majestic", "major", "male", "mammoth", + "married", "marvelous", "masculine", "massive", "mature", "meager", + "mealy", "mean", "measly", "meaty", "medical", "mediocre", + "medium", "meek", "mellow", "melodic", "memorable", "menacing", + "merry", "messy", "metallic", "mild", "milky", "mindless", + "miniature", "minor", "minty", "miserable", "miserly", "misguided", + "misty", "mixed", "modern", "modest", "moist", "monstrous", + "monthly", "monumental", "moral", "mortified", "motherly", "motionless", + "mountainous", "muddy", "muffled", "multicolored", "mundane", "murky", + "mushy", "musty", "muted", "mysterious", "naive", "narrow", + "nasty", "natural", "naughty", "nautical", "near", "neat", + "necessary", "needy", "negative", "neglected", "negligible", "neighboring", + "nervous", "new", "next", "nice", "nifty", "nimble", + "nippy", "nocturnal", "noisy", "nonstop", "normal", "notable", + "noted", "noteworthy", "novel", "noxious", "numb", "nutritious", + "nutty", "obedient", "obese", "oblong", "oily", "oblong", + "obvious", "occasional", "odd", "oddball", "offbeat", "offensive", + "official", "old", "old-fashioned", "only", "open", "optimal", + "optimistic", "opulent", "orange", "orderly", "organic", "ornate", + "ornery", "ordinary", "original", "other", "our", "outlying", + "outgoing", "outlandish", "outrageous", "outstanding", "oval", "overcooked", + "overdue", "overjoyed", "overlooked", "palatable", "pale", "paltry", + "parallel", "parched", "partial", "passionate", "past", "pastel", + "peaceful", "peppery", "perfect", "perfumed", "periodic", "perky", + "personal", "pertinent", "pesky", "pessimistic", "petty", "phony", + "physical", "piercing", "pink", "pitiful", "plain", "plaintive", + "plastic", "playful", "pleasant", "pleased", "pleasing", "plump", + "plush", "polished", "polite", "political", "pointed", "pointless", + "poised", "poor", "popular", "portly", "posh", "positive", + "possible", "potable", "powerful", "powerless", "practical", "precious", + "present", "prestigious", "pretty", "precious", "previous", "pricey", + "prickly", "primary", "prime", "pristine", "private", "prize", + "probable", "productive", "profitable", "profuse", "proper", "proud", + "prudent", "punctual", "pungent", "puny", "pure", "purple", + "pushy", "putrid", "puzzled", "puzzling", "quaint", "qualified", + "quarrelsome", "quarterly", "queasy", "querulous", "questionable", "quick", + "quick-witted", "quiet", "quintessential", "quirky", "quixotic", "quizzical", + "radiant", "ragged", "rapid", "rare", "rash", "raw", + "recent", "reckless", "rectangular", "ready", "real", "realistic", + "reasonable", "red", "reflecting", "regal", "regular", "reliable", + "relieved", "remarkable", "remorseful", "remote", "repentant", "required", + "respectful", "responsible", "repulsive", "revolving", "rewarding", "rich", + "rigid", "right", "ringed", "ripe", "roasted", "robust", + "rosy", "rotating", "rotten", "rough", "round", "rowdy", + "royal", "rubbery", "rundown", "ruddy", "rude", "runny", + "rural", "rusty", "sad", "safe", "salty", "same", + "sandy", "sane", "sarcastic", "sardonic", "satisfied", "scaly", + "scarce", "scared", "scary", "scented", "scholarly", "scientific", + "scornful", "scratchy", "scrawny", "second", "secondary", "second-hand", + "secret", "self-assured", "self-reliant", "selfish", "sentimental", "separate", + "serene", "serious", "serpentine", "several", "severe", "shabby", + "shadowy", "shady", "shallow", "shameful", "shameless", "sharp", + "shimmering", "shiny", "shocked", "shocking", "shoddy", "short", + "short-term", "showy", "shrill", "shy", "sick", "silent", + "silky", "silly", "silver", "similar", "simple", "simplistic", + "sinful", "single", "sizzling", "skeletal", "skinny", "sleepy", + "slight", "slim", "slimy", "slippery", "slow", "slushy", + "small", "smart", "smoggy", "smooth", "smug", "snappy", + "snarling", "sneaky", "sniveling", "snoopy", "sociable", "soft", + "soggy", "solid", "somber", "some", "spherical", "sophisticated", + "sore", "sorrowful", "soulful", "soupy", "sour", "Spanish", + "sparkling", "sparse", "specific", "spectacular", "speedy", "spicy", + "spiffy", "spirited", "spiteful", "splendid", "spotless", "spotted", + "spry", "square", "squeaky", "squiggly", "stable", "staid", + "stained", "stale", "standard", "starchy", "stark", "starry", + "steep", "sticky", "stiff", "stimulating", "stingy", "stormy", + "straight", "strange", "steel", "strict", "strident", "striking", + "striped", "strong", "studious", "stunning", "stupendous", "stupid", + "sturdy", "stylish", "subdued", "submissive", "substantial", "subtle", + "suburban", "sudden", "sugary", "sunny", "super", "superb", + "superficial", "superior", "supportive", "sure-footed", "surprised", "suspicious", + "svelte", "sweaty", "sweet", "sweltering", "swift", "sympathetic", + "tall", "talkative", "tame", "tan", "tangible", "tart", + "tasty", "tattered", "taut", "tedious", "teeming", "tempting", + "tender", "tense", "tepid", "terrible", "terrific", "testy", + "thankful", "that", "these", "thick", "thin", "third", + "thirsty", "this", "thorough", "thorny", "those", "thoughtful", + "threadbare", "thrifty", "thunderous", "tidy", "tight", "timely", + "tinted", "tiny", "tired", "torn", "total", "tough", + "traumatic", "treasured", "tremendous", "tragic", "trained", "tremendous", + "triangular", "tricky", "trifling", "trim", "trivial", "troubled", + "true", "trusting", "trustworthy", "trusty", "truthful", "tubby", + "turbulent", "twin", "ugly", "ultimate", "unacceptable", "unaware", + "uncomfortable", "uncommon", "unconscious", "understated", "unequaled", "uneven", + "unfinished", "unfit", "unfolded", "unfortunate", "unhappy", "unhealthy", + "uniform", "unimportant", "unique", "united", "unkempt", "unknown", + "unlawful", "unlined", "unlucky", "unnatural", "unpleasant", "unrealistic", + "unripe", "unruly", "unselfish", "unsightly", "unsteady", "unsung", + "untidy", "untimely", "untried", "untrue", "unused", "unusual", + "unwelcome", "unwieldy", "unwilling", "unwitting", "unwritten", "upbeat", + "upright", "upset", "urban", "usable", "used", "useful", + "useless", "utilized", "utter", "vacant", "vague", "vain", + "valid", "valuable", "vapid", "variable", "vast", "velvety", + "venerated", "vengeful", "verifiable", "vibrant", "vicious", "victorious", + "vigilant", "vigorous", "villainous", "violet", "violent", "virtual", + "virtuous", "visible", "vital", "vivacious", "vivid", "voluminous", + "wan", "warlike", "warm", "warmhearted", "warped", "wary", + "wasteful", "watchful", "waterlogged", "watery", "wavy", "wealthy", + "weak", "weary", "webbed", "wee", "weekly", "weepy", + "weighty", "weird", "welcome", "well-documented", "well-groomed", "well-informed", + "well-lit", "well-made", "well-off", "well-to-do", "well-worn", "wet", + "which", "whimsical", "whirlwind", "whispered", "white", "whole", + "whopping", "wicked", "wide", "wide-eyed", "wiggly", "wild", + "willing", "wilted", "winding", "windy", "winged", "wiry", + "wise", "witty", "wobbly", "woeful", "wonderful", "wooden", + "woozy", "wordy", "worldly", "worn", "worried", "worrisome", + "worse", "worst", "worthless", "worthwhile", "worthy", "wrathful", + "wretched", "writhing", "wrong", "wry", "yawning", "yearly", + "yellow", "yellowish", "young", "youthful", "yummy", "zany", + "zealous", "zesty", "zigzag", + ]) + + _animals = PackedStringArray([ + "canidae", "felidae", "cat", "cattle", "dog", "donkey", + "goat", "guinea pig", "horse", "pig", "rabbit", "fancy rat varieties", + "laboratory rat strains", "sheep breeds", "water buffalo breeds", "chicken breeds", "duck breeds", "goose breeds", + "pigeon breeds", "turkey breeds", "aardvark", "aardwolf", "african buffalo", "african elephant", + "african leopard", "albatross", "alligator", "alpaca", "american buffalo (bison)", "american robin", + "amphibian", "list", "anaconda", "angelfish", "anglerfish", "ant", + "anteater", "antelope", "antlion", "ape", "aphid", "arabian leopard", + "arctic fox", "arctic wolf", "armadillo", "arrow crab", "asp", "ass (donkey)", + "baboon", "badger", "bald eagle", "bandicoot", "barnacle", "barracuda", + "basilisk", "bass", "bat", "beaked whale", "bear", "list", + "beaver", "bedbug", "bee", "beetle", "bird", "list", + "bison", "blackbird", "black panther", "black widow spider", "blue bird", "blue jay", + "blue whale", "boa", "boar", "bobcat", "bobolink", "bonobo", + "booby", "box jellyfish", "bovid", "buffalo, african", "buffalo, american (bison)", "bug", + "butterfly", "buzzard", "camel", "canid", "cape buffalo", "capybara", + "cardinal", "caribou", "carp", "cat", "list", "catshark", + "caterpillar", "catfish", "cattle", "list", "centipede", "cephalopod", + "chameleon", "cheetah", "chickadee", "chicken", "list", "chimpanzee", + "chinchilla", "chipmunk", "clam", "clownfish", "cobra", "cockroach", + "cod", "condor", "constrictor", "coral", "cougar", "cow", + "coyote", "crab", "crane", "crane fly", "crawdad", "crayfish", + "cricket", "crocodile", "crow", "cuckoo", "cicada", "damselfly", + "deer", "dingo", "dinosaur", "list", "dog", "list", + "dolphin", "donkey", "list", "dormouse", "dove", "dragonfly", + "dragon", "duck", "list", "dung beetle", "eagle", "earthworm", + "earwig", "echidna", "eel", "egret", "elephant", "elephant seal", + "elk", "emu", "english pointer", "ermine", "falcon", "ferret", + "finch", "firefly", "fish", "flamingo", "flea", "fly", + "flyingfish", "fowl", "fox", "frog", "fruit bat", "gamefowl", + "list", "galliform", "list", "gazelle", "gecko", "gerbil", + "giant panda", "giant squid", "gibbon", "gila monster", "giraffe", "goat", + "list", "goldfish", "goose", "list", "gopher", "gorilla", + "grasshopper", "great blue heron", "great white shark", "grizzly bear", "ground shark", "ground sloth", + "grouse", "guan", "list", "guanaco", "guineafowl", "list", + "guinea pig", "list", "gull", "guppy", "haddock", "halibut", + "hammerhead shark", "hamster", "hare", "harrier", "hawk", "hedgehog", + "hermit crab", "heron", "herring", "hippopotamus", "hookworm", "hornet", + "horse", "list", "hoverfly", "hummingbird", "humpback whale", "hyena", + "iguana", "impala", "irukandji jellyfish", "jackal", "jaguar", "jay", + "jellyfish", "junglefowl", "kangaroo", "kangaroo mouse", "kangaroo rat", "kingfisher", + "kite", "kiwi", "koala", "koi", "komodo dragon", "krill", + "ladybug", "lamprey", "landfowl", "land snail", "lark", "leech", + "lemming", "lemur", "leopard", "leopon", "limpet", "lion", + "lizard", "llama", "lobster", "locust", "loon", "louse", + "lungfish", "lynx", "macaw", "mackerel", "magpie", "mammal", + "manatee", "mandrill", "manta ray", "marlin", "marmoset", "marmot", + "marsupial", "marten", "mastodon", "meadowlark", "meerkat", "mink", + "minnow", "mite", "mockingbird", "mole", "mollusk", "mongoose", + "monitor lizard", "monkey", "moose", "mosquito", "moth", "mountain goat", + "mouse", "mule", "muskox", "narwhal", "newt", "new world quail", + "nightingale", "ocelot", "octopus", "old world quail", "opossum", "orangutan", + "orca", "ostrich", "otter", "owl", "ox", "panda", + "panther", "panthera hybrid", "parakeet", "parrot", "parrotfish", "partridge", + "peacock", "peafowl", "pelican", "penguin", "perch", "peregrine falcon", + "pheasant", "pig", "pigeon", "list", "pike", "pilot whale", + "pinniped", "piranha", "planarian", "platypus", "polar bear", "pony", + "porcupine", "porpoise", "portuguese man o' war", "possum", "prairie dog", "prawn", + "praying mantis", "primate", "ptarmigan", "puffin", "puma", "python", + "quail", "quelea", "quokka", "rabbit", "list", "raccoon", + "rainbow trout", "rat", "rattlesnake", "raven", "ray (batoidea)", "ray (rajiformes)", + "red panda", "reindeer", "reptile", "rhinoceros", "right whale", "roadrunner", + "rodent", "rook", "rooster", "roundworm", "saber-toothed cat", "sailfish", + "salamander", "salmon", "sawfish", "scale insect", "scallop", "scorpion", + "seahorse", "sea lion", "sea slug", "sea snail", "shark", "list", + "sheep", "list", "shrew", "shrimp", "silkworm", "silverfish", + "skink", "skunk", "sloth", "slug", "smelt", "snail", + "snake", "list", "snipe", "snow leopard", "sockeye salmon", "sole", + "sparrow", "sperm whale", "spider", "spider monkey", "spoonbill", "squid", + "squirrel", "starfish", "star-nosed mole", "steelhead trout", "stingray", "stoat", + "stork", "sturgeon", "sugar glider", "swallow", "swan", "swift", + "swordfish", "swordtail", "tahr", "takin", "tapir", "tarantula", + "tarsier", "tasmanian devil", "termite", "tern", "thrush", "tick", + "tiger", "tiger shark", "tiglon", "toad", "tortoise", "toucan", + "trapdoor spider", "tree frog", "trout", "tuna", "turkey", "list", + "turtle", "tyrannosaurus", "urial", "vampire bat", "vampire squid", "vicuna", + "viper", "vole", "vulture", "wallaby", "walrus", "wasp", + "warbler", "water boa", "water buffalo", "weasel", "whale", "whippet", + "whitefish", "whooping crane", "wildcat", "wildebeest", "wildfowl", "wolf", + "wolverine", "wombat", "woodpecker", "worm", "wren", "xerinae", + "x-ray fish", "yak", "yellow perch", "zebra", "zebra finch", "animals by number of neurons", + "animals by size", "common household pests", "common names of poisonous animals", "alpaca", "bali cattle", "cat", + "cattle", "chicken", "dog", "domestic bactrian camel", "domestic canary", "domestic dromedary camel", + "domestic duck", "domestic goat", "domestic goose", "domestic guineafowl", "domestic hedgehog", "domestic pig", + "domestic pigeon", "domestic rabbit", "domestic silkmoth", "domestic silver fox", "domestic turkey", "donkey", + "fancy mouse", "fancy rat", "lab rat", "ferret", "gayal", "goldfish", + "guinea pig", "guppy", "horse", "koi", "llama", "ringneck dove", + "sheep", "siamese fighting fish", "society finch", "yak", "water buffalo" + ]) diff --git a/examples/forest-brawl/scripts/name-provider.gd.uid b/examples/forest-brawl/scripts/name-provider.gd.uid new file mode 100644 index 0000000..810a71e --- /dev/null +++ b/examples/forest-brawl/scripts/name-provider.gd.uid @@ -0,0 +1 @@ +uid://b4n5txktpn8ow diff --git a/examples/forest-brawl/scripts/play-random-3d.gd b/examples/forest-brawl/scripts/play-random-3d.gd new file mode 100644 index 0000000..78ecfa7 --- /dev/null +++ b/examples/forest-brawl/scripts/play-random-3d.gd @@ -0,0 +1,14 @@ +extends AudioStreamPlayer3D +class_name PlayRandomStream3D + +@export var sounds: Array[AudioStream] = [] + +static var idx = 0 + +func _ready(): + if autoplay: + play_random() + +func play_random(): + stream = sounds.pick_random() + play() diff --git a/examples/forest-brawl/scripts/play-random-3d.gd.uid b/examples/forest-brawl/scripts/play-random-3d.gd.uid new file mode 100644 index 0000000..c360971 --- /dev/null +++ b/examples/forest-brawl/scripts/play-random-3d.gd.uid @@ -0,0 +1 @@ +uid://b5g6tmcwyaell diff --git a/examples/forest-brawl/scripts/player-stats-display.gd b/examples/forest-brawl/scripts/player-stats-display.gd new file mode 100644 index 0000000..4662e99 --- /dev/null +++ b/examples/forest-brawl/scripts/player-stats-display.gd @@ -0,0 +1,16 @@ +extends Control + +@export var score_label: Label +@export var effect_label: Label +@export var score_manager: ScoreManager +var brawler: BrawlerController + +func _ready(): + GameEvents.on_own_brawler_spawn.connect(func(b): brawler = b) + +func _process(_delta): + if not brawler: + visible = false + else: + visible = true + score_label.text = str(score_manager.get_score(brawler.player_id)) diff --git a/examples/forest-brawl/scripts/player-stats-display.gd.uid b/examples/forest-brawl/scripts/player-stats-display.gd.uid new file mode 100644 index 0000000..e3f1aca --- /dev/null +++ b/examples/forest-brawl/scripts/player-stats-display.gd.uid @@ -0,0 +1 @@ +uid://iyihxxg5xrrr diff --git a/examples/forest-brawl/scripts/powerup.gd b/examples/forest-brawl/scripts/powerup.gd new file mode 100644 index 0000000..5e5a9fd --- /dev/null +++ b/examples/forest-brawl/scripts/powerup.gd @@ -0,0 +1,51 @@ +extends Area3D + +@export var effects: Array[PackedScene] = [] +@export var cooldown: float = 30.0 + +var is_active: bool = true +var fade_speed: float = 8.0 + +var respawn_tick: int = 0 + +func _ready(): + NetworkTime.after_tick.connect(_tick) + set_multiplayer_authority(1) + +func _tick(delta, tick): + if is_active: + scale = scale.lerp(Vector3.ONE, fade_speed * delta) + for body in get_overlapping_bodies(): + if body.is_in_group("Brawlers") and not _has_powerup(body): + _take() # Predict + if is_multiplayer_authority(): + _spawn_effect.rpc(randi_range(0, effects.size() - 1), body.get_path()) + _take.rpc() + else: + scale = scale.lerp(Vector3.ONE * 0.0005, fade_speed * delta) + if tick == respawn_tick: + _respawn() # Predict + if is_multiplayer_authority(): + _respawn.rpc() + +func _has_powerup(target: Node) -> bool: + return target.get_children()\ + .filter(func(child): return child is Effect)\ + .any(func(effect: Effect): return effect.is_active()) + +@rpc("authority", "reliable", "call_local") +func _spawn_effect(effect_idx: int, target_path: NodePath): + var effect = effects[effect_idx] + var target = get_tree().get_root().get_node(target_path) + + var spawn = effect.instantiate() + target.add_child(spawn) + +@rpc("authority", "reliable") +func _take(): + respawn_tick = NetworkTime.tick + NetworkTime.seconds_to_ticks(cooldown) + is_active = false + +@rpc("authority", "reliable") +func _respawn(): + is_active = true diff --git a/examples/forest-brawl/scripts/powerup.gd.uid b/examples/forest-brawl/scripts/powerup.gd.uid new file mode 100644 index 0000000..c97972a --- /dev/null +++ b/examples/forest-brawl/scripts/powerup.gd.uid @@ -0,0 +1 @@ +uid://bv78115x5p0r2 diff --git a/examples/forest-brawl/scripts/random-name-input.gd b/examples/forest-brawl/scripts/random-name-input.gd new file mode 100644 index 0000000..11504f6 --- /dev/null +++ b/examples/forest-brawl/scripts/random-name-input.gd @@ -0,0 +1,4 @@ +extends LineEdit + +func _ready(): + text = NameProvider.name() diff --git a/examples/forest-brawl/scripts/random-name-input.gd.uid b/examples/forest-brawl/scripts/random-name-input.gd.uid new file mode 100644 index 0000000..8302ca2 --- /dev/null +++ b/examples/forest-brawl/scripts/random-name-input.gd.uid @@ -0,0 +1 @@ +uid://bt0i7f3f8t5n2 diff --git a/examples/forest-brawl/scripts/score-manager.gd b/examples/forest-brawl/scripts/score-manager.gd new file mode 100644 index 0000000..1b09f16 --- /dev/null +++ b/examples/forest-brawl/scripts/score-manager.gd @@ -0,0 +1,69 @@ +extends Node +class_name ScoreManager + +@export var scorescreen: ScoreScreen +@export var hit_threshold_time: float = 8.0 +var _scores = {} +var _brawlers = {} + +func get_score(player: int) -> int: + return _scores.get(player, 0) + +func _ready(): + GameEvents.on_brawler_spawn.connect(_handle_spawn) + GameEvents.on_brawler_fall.connect(_handle_fall) + GameEvents.on_brawler_respawn.connect(_handle_respawn) + GameEvents.on_brawler_despawn.connect(_handle_despawn) + set_multiplayer_authority(1) + +func _handle_spawn(brawler: BrawlerController): + var id = brawler.player_id + _scores[id] = _scores.get(id, 0) + _brawlers[id] = brawler + +func _handle_fall(brawler: BrawlerController): + var id = brawler.player_id + + # Update scores + if is_multiplayer_authority(): + if NetworkTime.seconds_between(brawler.last_hit_tick, NetworkTime.tick) < hit_threshold_time \ + and brawler.last_hit_player: + var hit_id = brawler.last_hit_player.player_id + _scores[hit_id] = _scores.get(hit_id, 0) + 1 + else: + _scores[id] = _scores.get(id, 0) - 1 + + GameEvents.on_scores_updated.emit(_scores) + _submit_scores.rpc(_scores) + + # Display scoreboard + if id == multiplayer.get_unique_id(): + scorescreen.render(_render_scores()) + scorescreen.active = true + +func _handle_respawn(brawler: BrawlerController): + # Hide scoreboard + if brawler.player_id == multiplayer.get_unique_id(): + scorescreen.active = false + +func _handle_despawn(brawler: BrawlerController): + _scores.erase(brawler.player_id) + _brawlers.erase(brawler.player_id) + +@rpc("authority", "reliable", "call_remote") +func _submit_scores(scores: Dictionary): + print("Received new scores, updating %s -> %s" % [_scores, scores]) + _scores = scores + GameEvents.on_scores_updated.emit(_scores) + + # Re-render scoreboard if visible + if scorescreen.active: + scorescreen.render(_render_scores()) + +func _render_scores() -> Dictionary: + var render_scores = {} + for pid in _scores: + var brawler = _brawlers[pid] + var score = _scores[pid] + render_scores[brawler.player_name] = score + return render_scores diff --git a/examples/forest-brawl/scripts/score-manager.gd.uid b/examples/forest-brawl/scripts/score-manager.gd.uid new file mode 100644 index 0000000..7d70bff --- /dev/null +++ b/examples/forest-brawl/scripts/score-manager.gd.uid @@ -0,0 +1 @@ +uid://cfe08o3gvubst diff --git a/examples/forest-brawl/scripts/score-screen.gd b/examples/forest-brawl/scripts/score-screen.gd new file mode 100644 index 0000000..32a1759 --- /dev/null +++ b/examples/forest-brawl/scripts/score-screen.gd @@ -0,0 +1,56 @@ +extends Control +class_name ScoreScreen + +@export var messages: PackedStringArray +@export var message_label: Label +@export var names_column: Control +@export var scores_column: Control +@export var fade_time: float = 0.2 + +var active: bool = false + +func render(scores: Dictionary): + clear() + + if not visible: + message_label.text = messages[randi() % messages.size()] + + for player_name in _sort_scores(scores): + var points = scores[player_name] + names_column.add_child(_make_label(str(player_name))) + scores_column.add_child(_make_label(str(points))) + +func clear(): + for child in names_column.get_children() + scores_column.get_children(): + child.queue_free() + +func _ready(): + modulate.a = 0 + visible = false + +func _process(delta): + var current = modulate.a + var target = 1.0 if active else 0.0 + modulate.a = move_toward(current, target, delta / fade_time) + + visible = false if modulate.a < 0.05 else true + +func _make_label(text: String) -> Label: + var label = Label.new() + label.text = text + label.size_flags_horizontal = SIZE_FILL + label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + return label + +func _sort_scores(scores: Dictionary) -> Array[String]: + var result: Array[String] = [] + var points = scores.values() + points.sort() + points.reverse() + + for score in points: + for player_name in scores: + if not result.has(player_name) and scores[player_name] == score: + result.push_back(player_name) + + return result diff --git a/examples/forest-brawl/scripts/score-screen.gd.uid b/examples/forest-brawl/scripts/score-screen.gd.uid new file mode 100644 index 0000000..6e9de7e --- /dev/null +++ b/examples/forest-brawl/scripts/score-screen.gd.uid @@ -0,0 +1 @@ +uid://baylk3qu5fh2t diff --git a/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd b/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd new file mode 100644 index 0000000..cf9c24b --- /dev/null +++ b/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd @@ -0,0 +1,7 @@ +extends CheckButton + +func _toggled(toggle): + if toggle: + DisplayServer.mouse_set_mode(DisplayServer.MOUSE_MODE_CONFINED) + else: + DisplayServer.mouse_set_mode(DisplayServer.MOUSE_MODE_VISIBLE) diff --git a/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd.uid b/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd.uid new file mode 100644 index 0000000..d969b2f --- /dev/null +++ b/examples/forest-brawl/scripts/settings/confine-mouse-checkbutton.gd.uid @@ -0,0 +1 @@ +uid://nvr3jr0bviin diff --git a/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd b/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd new file mode 100644 index 0000000..dc3e588 --- /dev/null +++ b/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd @@ -0,0 +1,7 @@ +extends CheckButton + +func _toggled(toggle): + if toggle: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN) + else: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) diff --git a/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd.uid b/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd.uid new file mode 100644 index 0000000..13209d2 --- /dev/null +++ b/examples/forest-brawl/scripts/settings/fullscreen-checkbutton.gd.uid @@ -0,0 +1 @@ +uid://doidsx4hyb4gd diff --git a/examples/forest-brawl/scripts/settings/volume-slider.gd b/examples/forest-brawl/scripts/settings/volume-slider.gd new file mode 100644 index 0000000..4731d25 --- /dev/null +++ b/examples/forest-brawl/scripts/settings/volume-slider.gd @@ -0,0 +1,9 @@ +extends HSlider + +func _value_changed(new_value): + var f = new_value / 100.0 + var volume = lerp(-60, 0, f) + var mute = f < 0.01 + + AudioServer.set_bus_volume_db(0, volume) + AudioServer.set_bus_mute(0, mute) diff --git a/examples/forest-brawl/scripts/settings/volume-slider.gd.uid b/examples/forest-brawl/scripts/settings/volume-slider.gd.uid new file mode 100644 index 0000000..b3cd929 --- /dev/null +++ b/examples/forest-brawl/scripts/settings/volume-slider.gd.uid @@ -0,0 +1 @@ +uid://ghfyw0kak8vn diff --git a/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd b/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd new file mode 100644 index 0000000..ded0023 --- /dev/null +++ b/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd @@ -0,0 +1,7 @@ +extends CheckButton + +func _toggled(toggle): + if toggle: + DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_ADAPTIVE) + else: + DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED) diff --git a/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd.uid b/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd.uid new file mode 100644 index 0000000..fc4f7ef --- /dev/null +++ b/examples/forest-brawl/scripts/settings/vsync-checkbutton.gd.uid @@ -0,0 +1 @@ +uid://gyiplrcda6mg diff --git a/examples/forest-brawl/sounds/attribution.md b/examples/forest-brawl/sounds/attribution.md new file mode 100644 index 0000000..30a0121 --- /dev/null +++ b/examples/forest-brawl/sounds/attribution.md @@ -0,0 +1,124 @@ +# Attributions + +This document outlines the sources of the sound effects used. Thank you all for +the freely usable sound effects! + +## Boom + +[Source](https://freesound.org/people/studiomandragore/sounds/401630/) + +Played whenever a bomb hits something. + +Files: + +* boom1.wav +* boom2.wav +* boom3.wav + +All taken from *"Booms.wav"* by [studiomandragore], under the [Creative Commons +0] license. + +## Whoosh + +[Source](https://freesound.org/people/qubodup/sounds/60013/) + +Played whenever a bomb is thrown. + +Files: + +* whoosh.wav + +*"Whoosh"* by [qubodup], under the [Creative Commons 0] license. + +## Blip Wave + +[Source](https://freesound.org/people/Breviceps/sounds/452998/) + +Played whenever a player picks up the Speed Powerup. + +Files: + +* blipwave.wav + +*"Blip Wave"* by [Breviceps], under the [Creative Commons 0] license. + +## Glitch SFX + +[Source](https://freesound.org/people/Dymewiz/sounds/109026/) + +Played whenever a player picks up the Mass Powerup. + +Files: + +* glitch1.wav +* glitch2.wav + +All taken from *"glitch SFX_065.wav"* by [Dymewiz], under the [Attribution 3.0] +license. A fade-out effect was applied on the sound bits. + +## Bomb fall + +[Source](https://freesound.org/people/Johnnyfarmer/sounds/209768/) + +Played whenever a player picks up the Repulse Powerup. + +Files: + +* repulse1.wav +* repulse2.wav +* repulse3.wav + +All taken from *"Bomb Fall"* by [Johnnyfarmer], under the [Creative Commons 0] +license. + +## Falling + +[Source](https://freesound.org/people/oganesson/sounds/555015/) + +Played whenever a player falls down into the abyss. + +Files: + +* fall1.wav + +*"Falling"* by [oganesson], under the [Creative Commons 0] license. + +## fall.ogg + +[Source](https://freesound.org/people/silversatyr/sounds/113365/) + +Played whenever a player falls down into the abyss. + +Files: + +* fall2.wav + +*"fall.ogg"* by [silversatyr], under the [Attribution 3.0] license. The file was +trimmed on both ends. + +## Slide Whistle, Descending, A.wav + +[Source](https://freesound.org/people/InspectorJ/sounds/402581/) + +Played whenever a player falls down into the abyss. + +Files: + +* fall3.wav + +*"Slide Whistle, Descending, A.wav"* by [InspectorJ], under the [Attribution +4.0] license. No changes were made to the original sound effect. + +[studiomandragore]: https://freesound.org/people/studiomandragore/ +[qubodup]: https://freesound.org/people/qubodup/ +[Breviceps]: https://freesound.org/people/Breviceps/sounds/452998/ +[Dymewiz]: https://freesound.org/people/Dymewiz/ +[Johnnyfarmer]: https://freesound.org/people/Johnnyfarmer/ +[oganesson]: https://freesound.org/people/oganesson/ +[silversatyr]: https://freesound.org/people/silversatyr/ +[InspectorJ]: https://freesound.org/people/InspectorJ/ + + +[Creative Commons 0]: https://creativecommons.org/publicdomain/zero/1.0/ +[Attribution 3.0]: https://creativecommons.org/licenses/by/3.0/ +[Attribution 4.0]: https://creativecommons.org/licenses/by/4.0/ diff --git a/examples/forest-brawl/sounds/blipwave.wav b/examples/forest-brawl/sounds/blipwave.wav new file mode 100644 index 0000000..60a739c Binary files /dev/null and b/examples/forest-brawl/sounds/blipwave.wav differ diff --git a/examples/forest-brawl/sounds/blipwave.wav.import b/examples/forest-brawl/sounds/blipwave.wav.import new file mode 100644 index 0000000..1c680a3 --- /dev/null +++ b/examples/forest-brawl/sounds/blipwave.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://baytcuptor78h" +path="res://.godot/imported/blipwave.wav-7331cd1cf02dab8cb660d37457999844.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/blipwave.wav" +dest_files=["res://.godot/imported/blipwave.wav-7331cd1cf02dab8cb660d37457999844.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/boom1.wav b/examples/forest-brawl/sounds/boom1.wav new file mode 100644 index 0000000..cb4f43c Binary files /dev/null and b/examples/forest-brawl/sounds/boom1.wav differ diff --git a/examples/forest-brawl/sounds/boom1.wav.import b/examples/forest-brawl/sounds/boom1.wav.import new file mode 100644 index 0000000..d42aa27 --- /dev/null +++ b/examples/forest-brawl/sounds/boom1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cuu7355mjw0qm" +path="res://.godot/imported/boom1.wav-886e472233df263b1e62a5dac289a7ec.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/boom1.wav" +dest_files=["res://.godot/imported/boom1.wav-886e472233df263b1e62a5dac289a7ec.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/boom2.wav b/examples/forest-brawl/sounds/boom2.wav new file mode 100644 index 0000000..d03b966 Binary files /dev/null and b/examples/forest-brawl/sounds/boom2.wav differ diff --git a/examples/forest-brawl/sounds/boom2.wav.import b/examples/forest-brawl/sounds/boom2.wav.import new file mode 100644 index 0000000..06a5c83 --- /dev/null +++ b/examples/forest-brawl/sounds/boom2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dk44nxlwr3m1o" +path="res://.godot/imported/boom2.wav-f4886bb413d32ec6cab7d78b5e1799f7.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/boom2.wav" +dest_files=["res://.godot/imported/boom2.wav-f4886bb413d32ec6cab7d78b5e1799f7.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/boom3.wav b/examples/forest-brawl/sounds/boom3.wav new file mode 100644 index 0000000..ed8b6c8 Binary files /dev/null and b/examples/forest-brawl/sounds/boom3.wav differ diff --git a/examples/forest-brawl/sounds/boom3.wav.import b/examples/forest-brawl/sounds/boom3.wav.import new file mode 100644 index 0000000..8d17dec --- /dev/null +++ b/examples/forest-brawl/sounds/boom3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://yyc2x2137nqa" +path="res://.godot/imported/boom3.wav-c542669b336823d494104a7760de97c3.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/boom3.wav" +dest_files=["res://.godot/imported/boom3.wav-c542669b336823d494104a7760de97c3.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/fall1.wav b/examples/forest-brawl/sounds/fall1.wav new file mode 100644 index 0000000..13232ef Binary files /dev/null and b/examples/forest-brawl/sounds/fall1.wav differ diff --git a/examples/forest-brawl/sounds/fall1.wav.import b/examples/forest-brawl/sounds/fall1.wav.import new file mode 100644 index 0000000..84960eb --- /dev/null +++ b/examples/forest-brawl/sounds/fall1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cih2i8xa2v2is" +path="res://.godot/imported/fall1.wav-a84df2ff99962b221cc891051e583770.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/fall1.wav" +dest_files=["res://.godot/imported/fall1.wav-a84df2ff99962b221cc891051e583770.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/fall2.wav b/examples/forest-brawl/sounds/fall2.wav new file mode 100644 index 0000000..3bef160 Binary files /dev/null and b/examples/forest-brawl/sounds/fall2.wav differ diff --git a/examples/forest-brawl/sounds/fall2.wav.import b/examples/forest-brawl/sounds/fall2.wav.import new file mode 100644 index 0000000..cffb5f1 --- /dev/null +++ b/examples/forest-brawl/sounds/fall2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://4oilc8k83mmt" +path="res://.godot/imported/fall2.wav-6e44e1350c453f00bd461235a3ed3e18.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/fall2.wav" +dest_files=["res://.godot/imported/fall2.wav-6e44e1350c453f00bd461235a3ed3e18.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/fall3.wav b/examples/forest-brawl/sounds/fall3.wav new file mode 100644 index 0000000..7a86386 Binary files /dev/null and b/examples/forest-brawl/sounds/fall3.wav differ diff --git a/examples/forest-brawl/sounds/fall3.wav.import b/examples/forest-brawl/sounds/fall3.wav.import new file mode 100644 index 0000000..7add7d4 --- /dev/null +++ b/examples/forest-brawl/sounds/fall3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cegpnj82f4gio" +path="res://.godot/imported/fall3.wav-a35d8b2580f14fe0787cbec6cfdcffb0.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/fall3.wav" +dest_files=["res://.godot/imported/fall3.wav-a35d8b2580f14fe0787cbec6cfdcffb0.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/glitch1.wav b/examples/forest-brawl/sounds/glitch1.wav new file mode 100644 index 0000000..bc9fd85 Binary files /dev/null and b/examples/forest-brawl/sounds/glitch1.wav differ diff --git a/examples/forest-brawl/sounds/glitch1.wav.import b/examples/forest-brawl/sounds/glitch1.wav.import new file mode 100644 index 0000000..03104d3 --- /dev/null +++ b/examples/forest-brawl/sounds/glitch1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cajfyvodmjy8i" +path="res://.godot/imported/glitch1.wav-71da56b8a051a21c5295fb69f825bd79.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/glitch1.wav" +dest_files=["res://.godot/imported/glitch1.wav-71da56b8a051a21c5295fb69f825bd79.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/glitch2.wav b/examples/forest-brawl/sounds/glitch2.wav new file mode 100644 index 0000000..efec3f3 Binary files /dev/null and b/examples/forest-brawl/sounds/glitch2.wav differ diff --git a/examples/forest-brawl/sounds/glitch2.wav.import b/examples/forest-brawl/sounds/glitch2.wav.import new file mode 100644 index 0000000..9ba9d37 --- /dev/null +++ b/examples/forest-brawl/sounds/glitch2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://c708geohjw7ci" +path="res://.godot/imported/glitch2.wav-e560c80e451b78e9422d8ffdfa300fdf.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/glitch2.wav" +dest_files=["res://.godot/imported/glitch2.wav-e560c80e451b78e9422d8ffdfa300fdf.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/repulse1.wav b/examples/forest-brawl/sounds/repulse1.wav new file mode 100644 index 0000000..6b5acdb Binary files /dev/null and b/examples/forest-brawl/sounds/repulse1.wav differ diff --git a/examples/forest-brawl/sounds/repulse1.wav.import b/examples/forest-brawl/sounds/repulse1.wav.import new file mode 100644 index 0000000..3ea13d2 --- /dev/null +++ b/examples/forest-brawl/sounds/repulse1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cpqwch1ruf417" +path="res://.godot/imported/repulse1.wav-1f4570394e40625c236284a70d57ee3d.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/repulse1.wav" +dest_files=["res://.godot/imported/repulse1.wav-1f4570394e40625c236284a70d57ee3d.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/repulse2.wav b/examples/forest-brawl/sounds/repulse2.wav new file mode 100644 index 0000000..d481b18 Binary files /dev/null and b/examples/forest-brawl/sounds/repulse2.wav differ diff --git a/examples/forest-brawl/sounds/repulse2.wav.import b/examples/forest-brawl/sounds/repulse2.wav.import new file mode 100644 index 0000000..1e09340 --- /dev/null +++ b/examples/forest-brawl/sounds/repulse2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://djx8bf0n5hpjd" +path="res://.godot/imported/repulse2.wav-0830b46c83a2ec05429b91e2d0459525.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/repulse2.wav" +dest_files=["res://.godot/imported/repulse2.wav-0830b46c83a2ec05429b91e2d0459525.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/repulse3.wav b/examples/forest-brawl/sounds/repulse3.wav new file mode 100644 index 0000000..2bb885e Binary files /dev/null and b/examples/forest-brawl/sounds/repulse3.wav differ diff --git a/examples/forest-brawl/sounds/repulse3.wav.import b/examples/forest-brawl/sounds/repulse3.wav.import new file mode 100644 index 0000000..554a9cf --- /dev/null +++ b/examples/forest-brawl/sounds/repulse3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b1l44piqung8p" +path="res://.godot/imported/repulse3.wav-8b9477174a1bc5d15fa6f9cc2ddc3942.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/repulse3.wav" +dest_files=["res://.godot/imported/repulse3.wav-8b9477174a1bc5d15fa6f9cc2ddc3942.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/sounds/whoosh.wav b/examples/forest-brawl/sounds/whoosh.wav new file mode 100644 index 0000000..21487f3 Binary files /dev/null and b/examples/forest-brawl/sounds/whoosh.wav differ diff --git a/examples/forest-brawl/sounds/whoosh.wav.import b/examples/forest-brawl/sounds/whoosh.wav.import new file mode 100644 index 0000000..177b2c6 --- /dev/null +++ b/examples/forest-brawl/sounds/whoosh.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b03phi3tfl21k" +path="res://.godot/imported/whoosh.wav-3534f545bbb039cf26666f26e50899a0.sample" + +[deps] + +source_file="res://examples/forest-brawl/sounds/whoosh.wav" +dest_files=["res://.godot/imported/whoosh.wav-3534f545bbb039cf26666f26e50899a0.sample"] + +[params] + +force/8_bit=false +force/mono=true +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/forest-brawl/ui-settings/player-stat-label.tres b/examples/forest-brawl/ui-settings/player-stat-label.tres new file mode 100644 index 0000000..15c7fdc --- /dev/null +++ b/examples/forest-brawl/ui-settings/player-stat-label.tres @@ -0,0 +1,4 @@ +[gd_resource type="LabelSettings" format=3 uid="uid://b4u1aluftkajy"] + +[resource] +font_size = 24 diff --git a/examples/input-gathering/README.md b/examples/input-gathering/README.md new file mode 100644 index 0000000..f541716 --- /dev/null +++ b/examples/input-gathering/README.md @@ -0,0 +1,5 @@ +# Input gathering example + +An example game demonstrating advanced input gathering techniques, including +continuous and one-off inputs. + diff --git a/examples/input-gathering/characters/player.tscn b/examples/input-gathering/characters/player.tscn new file mode 100644 index 0000000..8d8dc4c --- /dev/null +++ b/examples/input-gathering/characters/player.tscn @@ -0,0 +1,33 @@ +[gd_scene load_steps=7 format=3 uid="uid://b5qybas0mp0nd"] + +[ext_resource type="Script" path="res://examples/input-gathering/scripts/player.gd" id="1_rea48"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="2_axq31"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_hhcvm"] +[ext_resource type="Script" path="res://examples/input-gathering/scripts/player-input.gd" id="4_kgt2r"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_t2650"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_vogks"] + +[node name="Player" type="CharacterBody3D"] +script = ExtResource("1_rea48") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_t2650") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_vogks") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_axq31") +root = NodePath("..") +state_properties = Array[String]([":position", ":velocity"]) +input_properties = Array[String](["Input:movement", "Input:is_jumping"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_hhcvm") +root = NodePath("..") +properties = Array[String]([":position"]) + +[node name="Input" type="Node" parent="."] +script = ExtResource("4_kgt2r") diff --git a/examples/input-gathering/input-gathering.tscn b/examples/input-gathering/input-gathering.tscn new file mode 100644 index 0000000..d3014ff --- /dev/null +++ b/examples/input-gathering/input-gathering.tscn @@ -0,0 +1,93 @@ +[gd_scene load_steps=8 format=3 uid="uid://dnmh4ma4lv6uw"] + +[ext_resource type="Script" path="res://examples/input-gathering/scripts/player-spawner.gd" id="1_cgsom"] +[ext_resource type="PackedScene" uid="uid://b5qybas0mp0nd" path="res://examples/input-gathering/characters/player.tscn" id="2_5t3uo"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_yeduu"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="4_6lk7v"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_rrbfu"] + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_rrbfu") + +[sub_resource type="Environment" id="Environment_ef1wp"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") + +[node name="Game Scene" type="Node3D"] + +[node name="Map" type="Node" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true + +[node name="CSGFloor" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGCorner" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) +current = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_ef1wp") + +[node name="Network" type="Node" parent="."] + +[node name="Player Spawner" type="Node" parent="Network" node_paths=PackedStringArray("spawn_root")] +script = ExtResource("1_cgsom") +player_scene = ExtResource("2_5t3uo") +spawn_root = NodePath("../../Players") + +[node name="Players" type="Node" parent="."] + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("3_yeduu")] +layout_mode = 1 + +[node name="Time Display" type="Label" parent="UI"] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 23.0 +script = ExtResource("4_6lk7v") diff --git a/examples/input-gathering/scripts/input-gathering.gd b/examples/input-gathering/scripts/input-gathering.gd new file mode 100644 index 0000000..9078a0a --- /dev/null +++ b/examples/input-gathering/scripts/input-gathering.gd @@ -0,0 +1,5 @@ +extends Object +class_name ExampleInputGathering + +const Player := preload("res://examples/input-gathering/scripts/player.gd") +const PlayerInput := preload("res://examples/input-gathering/scripts/player-input.gd") diff --git a/examples/input-gathering/scripts/input-gathering.gd.uid b/examples/input-gathering/scripts/input-gathering.gd.uid new file mode 100644 index 0000000..7f75404 --- /dev/null +++ b/examples/input-gathering/scripts/input-gathering.gd.uid @@ -0,0 +1 @@ +uid://clxsr5e8urv2w diff --git a/examples/input-gathering/scripts/player-input.gd b/examples/input-gathering/scripts/player-input.gd new file mode 100644 index 0000000..07ffea9 --- /dev/null +++ b/examples/input-gathering/scripts/player-input.gd @@ -0,0 +1,40 @@ +extends BaseNetInput + +var movement: Vector3 = Vector3.ZERO +var is_jumping: bool = false + +var _movement_buffer: Vector3 = Vector3.ZERO +var _movement_samples: int = 0 + +var _is_jumping_buffer: bool = false + +func _ready(): + super() + NetworkTime.after_tick.connect(func(_dt, _t): _gather_always()) + +func _process(_dt: float) -> void: + _movement_buffer += Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) + _movement_samples += 1 + + if Input.is_action_just_pressed("move_jump"): + _is_jumping_buffer = true + +func _gather() -> void: + # Average movement samples + if _movement_samples > 0: + movement = _movement_buffer / _movement_samples + else: + movement = Vector3.ZERO + + # Reset buffer + _movement_buffer = Vector3.ZERO + _movement_samples = 0 + +func _gather_always(): + # Jumping + is_jumping = _is_jumping_buffer + _is_jumping_buffer = false diff --git a/examples/input-gathering/scripts/player-input.gd.uid b/examples/input-gathering/scripts/player-input.gd.uid new file mode 100644 index 0000000..c3f7ce5 --- /dev/null +++ b/examples/input-gathering/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://bdc2cjgbgh4iw diff --git a/examples/input-gathering/scripts/player-spawner.gd b/examples/input-gathering/scripts/player-spawner.gd new file mode 100644 index 0000000..22f15e8 --- /dev/null +++ b/examples/input-gathering/scripts/player-spawner.gd @@ -0,0 +1,57 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_root: Node + +var avatars: Dictionary = {} + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + # Spawn an avatar for us + _spawn(id) + +func _handle_host(): + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + spawn_root.add_child(avatar) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) diff --git a/examples/input-gathering/scripts/player-spawner.gd.uid b/examples/input-gathering/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..0c1712c --- /dev/null +++ b/examples/input-gathering/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://bvtisxluxnf7h diff --git a/examples/input-gathering/scripts/player.gd b/examples/input-gathering/scripts/player.gd new file mode 100644 index 0000000..4a5516c --- /dev/null +++ b/examples/input-gathering/scripts/player.gd @@ -0,0 +1,47 @@ +extends CharacterBody3D + +@export var speed = 5.0 +@export var jump_velocity: float = 4.5 +@export var input: ExampleInputGathering.PlayerInput + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _ready(): + position = Vector3(0, 4, 0) + + if input == null: + input = $Input + +func _rollback_tick(delta, _tick, _is_fresh): + _force_update_is_on_floor() + + # Add gravity + if not is_on_floor(): + velocity.y -= gravity * delta + + # Movement + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + # Jump + if input.is_jumping and is_on_floor(): + velocity.y = jump_velocity + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity *= 0 + move_and_slide() + velocity = old_velocity diff --git a/examples/input-gathering/scripts/player.gd.uid b/examples/input-gathering/scripts/player.gd.uid new file mode 100644 index 0000000..1e02ab8 --- /dev/null +++ b/examples/input-gathering/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://clnh0o1qcycge diff --git a/examples/input-prediction/README.md b/examples/input-prediction/README.md new file mode 100644 index 0000000..5d19e17 --- /dev/null +++ b/examples/input-prediction/README.md @@ -0,0 +1,13 @@ +# Input prediction example + +A simple demo game, using netfox's `RollbackSynchronizer` to demonstrate input +prediction. + +Players control marbles, that behave somewhat similar to cars - they can change +direction, but gradually, and never on the spot. They can also speed up or slow +down, but only gradually. + +This lends them well to input decay - when there's no input available, the game +assumes that the player is slowly letting go of the gas. This is a more +accurate prediction than assuming that the marble stops immediately, thus +resulting in less noticeable glitches with bad network conditions. diff --git a/examples/input-prediction/checkers.png b/examples/input-prediction/checkers.png new file mode 100644 index 0000000..333bc6b Binary files /dev/null and b/examples/input-prediction/checkers.png differ diff --git a/examples/input-prediction/checkers.png.import b/examples/input-prediction/checkers.png.import new file mode 100644 index 0000000..0e1eac9 --- /dev/null +++ b/examples/input-prediction/checkers.png.import @@ -0,0 +1,42 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfwpt4r3mwe3" +path.bptc="res://.godot/imported/checkers.png-ea9f80e24aa34475dd7ca3c890e8736d.bptc.ctex" +path.astc="res://.godot/imported/checkers.png-ea9f80e24aa34475dd7ca3c890e8736d.astc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc", "etc2_astc"], +"vram_texture": true +} + +[deps] + +source_file="res://examples/input-prediction/checkers.png" +dest_files=["res://.godot/imported/checkers.png-ea9f80e24aa34475dd7ca3c890e8736d.bptc.ctex", "res://.godot/imported/checkers.png-ea9f80e24aa34475dd7ca3c890e8736d.astc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=1 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/examples/input-prediction/input-prediction.tscn b/examples/input-prediction/input-prediction.tscn new file mode 100644 index 0000000..3050d86 --- /dev/null +++ b/examples/input-prediction/input-prediction.tscn @@ -0,0 +1,129 @@ +[gd_scene load_steps=8 format=3 uid="uid://dr1ms7r5gpwq6"] + +[ext_resource type="Script" path="res://examples/shared/scripts/player-spawner.gd" id="1_3a652"] +[ext_resource type="PackedScene" uid="uid://ryvnj6wy1gij" path="res://examples/input-prediction/marble.tscn" id="2_8u0ft"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_hlgiv"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="4_klbcc"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_wp6ir"] + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_wp6ir") + +[sub_resource type="Environment" id="Environment_d1pdb"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") + +[node name="input-prediction" type="Node3D"] + +[node name="Map" type="Node" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true + +[node name="CSGBox3D" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.5, 0) +size = Vector3(34, 9, 26) + +[node name="CSGBox3D2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0) +operation = 2 +size = Vector3(24, 10, 16) + +[node name="CSGBox3D3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11, 0) +operation = 2 +size = Vector3(32, 10, 24) + +[node name="CSGCylinder3D" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0, 5, 8) +operation = 2 +radius = 4.0 +height = 24.0 +sides = 32 + +[node name="CSGCylinder3D4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(-4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0, 1, 0, 5, -8) +operation = 2 +radius = 4.0 +height = 24.0 +sides = 32 + +[node name="CSGCylinder3D2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1.91069e-15, 4.37114e-08, -1, 1, -4.37114e-08, 0, -4.37114e-08, -1, -4.37114e-08, 12, 5, 0) +operation = 2 +radius = 4.0 +height = 16.0 +sides = 32 + +[node name="CSGCylinder3D3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1.91069e-15, 4.37114e-08, -1, 1, -4.37114e-08, 0, -4.37114e-08, -1, -4.37114e-08, -12, 5, 0) +operation = 2 +radius = 4.0 +height = 16.0 +sides = 32 + +[node name="CSGSphere3D" type="CSGSphere3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 5, -8) +operation = 2 +radius = 4.0 +radial_segments = 32 +rings = 16 + +[node name="CSGSphere3D2" type="CSGSphere3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 5, -8) +operation = 2 +radius = 4.0 +radial_segments = 32 +rings = 16 + +[node name="CSGSphere3D3" type="CSGSphere3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 5, 8) +operation = 2 +radius = 4.0 +radial_segments = 32 +rings = 16 + +[node name="CSGSphere3D4" type="CSGSphere3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 5, 8) +operation = 2 +radius = 4.0 +radial_segments = 32 +rings = 16 + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) +current = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_d1pdb") + +[node name="Player Spawner" type="Node" parent="." node_paths=PackedStringArray("spawn_root")] +script = ExtResource("1_3a652") +player_scene = ExtResource("2_8u0ft") +spawn_root = NodePath("../Players") + +[node name="Players" type="Node" parent="."] + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("3_hlgiv")] +layout_mode = 1 + +[node name="Time Display" type="Label" parent="UI"] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 23.0 +script = ExtResource("4_klbcc") diff --git a/examples/input-prediction/input.gd b/examples/input-prediction/input.gd new file mode 100644 index 0000000..d43ec27 --- /dev/null +++ b/examples/input-prediction/input.gd @@ -0,0 +1,39 @@ +extends BaseNetInput + +var movement: Vector3 +var confidence: float = 1. + +@onready var _rollback_synchronizer := $"../RollbackSynchronizer" as RollbackSynchronizer + +func _ready(): + super() + NetworkRollback.after_prepare_tick.connect(_predict) + +func _gather(): + movement = Vector3( + Input.get_axis("move_east", "move_west"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_south", "move_north") + ) + +func _predict(_t): + if not _rollback_synchronizer.is_predicting(): + # Not predicting, nothing to do + confidence = 1. + return + + if not _rollback_synchronizer.has_input(): + confidence = 0. + return + + # Decay input over a short time + var decay_time := NetworkTime.seconds_to_ticks(.05) + var input_age := _rollback_synchronizer.get_input_age() + + # **ALWAYS** cast either side to float, otherwise the integer-integer + # division yields either 1 or 0 confidence + confidence = input_age / float(decay_time) + confidence = clampf(1. - confidence, 0., 1.) + + # Modulate input based on confidence + movement *= confidence diff --git a/examples/input-prediction/input.gd.uid b/examples/input-prediction/input.gd.uid new file mode 100644 index 0000000..9ecc88f --- /dev/null +++ b/examples/input-prediction/input.gd.uid @@ -0,0 +1 @@ +uid://by2wt0fmiqel8 diff --git a/examples/input-prediction/marble.gd b/examples/input-prediction/marble.gd new file mode 100644 index 0000000..9b529a5 --- /dev/null +++ b/examples/input-prediction/marble.gd @@ -0,0 +1,90 @@ +extends CharacterBody3D + +@export var max_speed: float = 16. +@export var acceleration: float = 16. +@export var turn_degrees: float = 360. +@export var jump_strength: float = 8. + +var is_reversing := false + +@onready var _rollback_synchronizer := $RollbackSynchronizer as RollbackSynchronizer +@onready var input := $Input as Node + +var gravity: float = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _ready(): + position = Vector3(0, 4, 0) + + var player_id := input.get_multiplayer_authority() + var mesh := $MeshInstance3D as MeshInstance3D + var material := mesh.get_active_material(0).duplicate() as StandardMaterial3D + material.albedo_color = Color.from_hsv((player_id % 256) / 256.0, 1.0, 1.0) + mesh.set_surface_override_material(0, material) + +func _rollback_tick(dt, _t, _if): + if is_zero_approx(input.confidence): + # Can't predict, not enough confidence in input + _rollback_synchronizer.ignore_prediction(self) + return + + _force_update() + + if is_on_floor(): + velocity.y = input.movement.y * jump_strength + else: + velocity.y -= gravity * dt + + var movement := input.movement as Vector3 + movement.y = 0. + + var reverse_factor = 1. + + if is_on_floor(): + var accel := 0. + var steer := 0. + var brake := 0. + + var speed := velocity.length() + + if movement.is_zero_approx(): + # Brake + brake = acceleration * 1. * dt + else: + if is_zero_approx(speed) and not is_zero_approx(movement.z): + is_reversing = not is_reversing + + if is_reversing: + movement.z *= -1. + + if movement.z > 0: + accel = abs(movement.z) * acceleration * dt + else: + brake = abs(movement.z) * 2. * acceleration * dt + + steer = movement.x * turn_degrees + steer *= pow(clampf(speed / max_speed, 0., 1.), .5) + + if is_reversing: + reverse_factor = -1. + + brake = minf(brake, speed) + velocity += accel * reverse_factor * transform.basis.z - velocity.normalized() * brake + velocity = velocity.rotated(transform.basis.y, deg_to_rad(steer) * dt) + + if velocity.length() > max_speed: + velocity = velocity.normalized() * max_speed + + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + + # Face velocity + var look = velocity.normalized() * reverse_factor + if not look.is_zero_approx() and abs(look.y) < .95: + look_at_from_position(position, position + look, transform.basis.y, true) + +func _force_update(): + var old_velocity = velocity + velocity *= 0 + move_and_slide() + velocity = old_velocity diff --git a/examples/input-prediction/marble.gd.uid b/examples/input-prediction/marble.gd.uid new file mode 100644 index 0000000..994278c --- /dev/null +++ b/examples/input-prediction/marble.gd.uid @@ -0,0 +1 @@ +uid://yfh2t6mpfynn diff --git a/examples/input-prediction/marble.tscn b/examples/input-prediction/marble.tscn new file mode 100644 index 0000000..8e3a2e9 --- /dev/null +++ b/examples/input-prediction/marble.tscn @@ -0,0 +1,46 @@ +[gd_scene load_steps=9 format=3 uid="uid://ryvnj6wy1gij"] + +[ext_resource type="Texture2D" uid="uid://dfwpt4r3mwe3" path="res://examples/input-prediction/checkers.png" id="1_64oxq"] +[ext_resource type="Script" path="res://examples/input-prediction/marble.gd" id="1_n25ns"] +[ext_resource type="Script" path="res://examples/input-prediction/input.gd" id="2_7f8dy"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="2_nlyyn"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="5_ruljv"] + +[sub_resource type="SphereShape3D" id="SphereShape3D_bpiah"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_fyc8n"] +albedo_texture = ExtResource("1_64oxq") +metallic = 0.8 +roughness = 0.1 +texture_filter = 0 + +[sub_resource type="SphereMesh" id="SphereMesh_y7mm6"] +material = SubResource("StandardMaterial3D_fyc8n") +radial_segments = 32 +rings = 16 + +[node name="marble" type="CharacterBody3D"] +collision_layer = 2 +script = ExtResource("1_n25ns") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("SphereShape3D_bpiah") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("SphereMesh_y7mm6") + +[node name="Input" type="Node" parent="."] +script = ExtResource("2_7f8dy") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_nlyyn") +root = NodePath("..") +enable_prediction = true +state_properties = Array[String]([":transform", ":velocity", ":is_reversing"]) +input_properties = Array[String](["Input:movement"]) +enable_input_broadcast = false + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("5_ruljv") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/multiplayer-fps/README.md b/examples/multiplayer-fps/README.md new file mode 100644 index 0000000..babe59a --- /dev/null +++ b/examples/multiplayer-fps/README.md @@ -0,0 +1,8 @@ +# Multiplayer fps example + +A simple demo fps game, using netfox's `RollbackSynchronizer` and +`NetworkWeaponHitscan3D` to implement a server-authorative model, while also +compensating for latency with client-side prediction. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. diff --git a/examples/multiplayer-fps/attribution.md b/examples/multiplayer-fps/attribution.md new file mode 100644 index 0000000..623df27 --- /dev/null +++ b/examples/multiplayer-fps/attribution.md @@ -0,0 +1,50 @@ +# Attributions + +This document outlines the sources of the sound effects and textures used. +Thank you all for the freely usable resources! + +## Bullethole + +[Source](https://opengameart.org/content/bullet-decal-bullethole0png) + +Appears when a bullet hits a wall. + +Files: + +* `textures/bullet_hole.png` + +*"Bullet Decal Bullethole"* by [musdasch], under the [Creative Commons 0] +license. + +## Crosshair + +Created by krazyjakee (PR author). + +Files: + +* `textures/crosshair.png` + +*"Crosshair"* by [krazyjakee], under the [Creative Commons 0] license. + +## Sound Effects + +[Source](https://sonniss.com/category/sound-libraries) + +Weapons and damage sound effects + +Files: + +* `sounds/death.wav` +* `sounds/fire.mp3` +* `sounds/hit.wav` + +*"GameAudioGDC Bundle"* by [sonniss](https://sonniss.com/), under the +[Unlimited User License] license. + + +[musdasch]: https://opengameart.org/users/musdasch +[krazyjakee]: https://github.com/krazyjakee +[sonniss]: https://sonniss.com/ + +[Creative Commons 0]: https://creativecommons.org/publicdomain/zero/1.0/ +[Unlimited User License]: https://sonniss.com/gdc-bundle-license diff --git a/examples/multiplayer-fps/characters/player.tscn b/examples/multiplayer-fps/characters/player.tscn new file mode 100644 index 0000000..0e65814 --- /dev/null +++ b/examples/multiplayer-fps/characters/player.tscn @@ -0,0 +1,190 @@ +[gd_scene load_steps=29 format=3 uid="uid://vrso6qncj1nm"] + +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="1_g0p7o"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/player.gd" id="1_mk8qw"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="2_3rc26"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/weapon_manager.gd" id="3_4j0gy"] +[ext_resource type="AudioStream" uid="uid://cope814m1d7p6" path="res://examples/multiplayer-fps/sounds/fire.mp3" id="5_14ltm"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/bullethole.gd" id="6_f1qm8"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/projection3d.gd" id="6_sv41w"] +[ext_resource type="Texture2D" uid="uid://b8r41bt6ft8jt" path="res://examples/multiplayer-fps/textures/bullet_hole.png" id="7_sxhbg"] +[ext_resource type="Script" path="res://addons/netfox/rewindable-action.gd" id="9_ra1gd"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/player-input.gd" id="10_50d5g"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/window-size-connector.gd" id="13_mlcnx"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/crosshair.gd" id="14_npl66"] +[ext_resource type="Texture2D" uid="uid://b66gbhylc33yy" path="res://examples/multiplayer-fps/textures/crosshair.png" id="14_qqmle"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/health-progress-bar.gd" id="17_ghjct"] +[ext_resource type="AudioStream" uid="uid://q7ql86p7flj" path="res://examples/multiplayer-fps/sounds/hit.wav" id="20_e2bcn"] +[ext_resource type="AudioStream" uid="uid://15pyqe2uw4s3" path="res://examples/multiplayer-fps/sounds/death.wav" id="21_ogjhm"] + +[sub_resource type="BoxMesh" id="BoxMesh_qmeb2"] +size = Vector3(0.4, 0.25, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_faajq"] +transparency = 1 +albedo_texture = ExtResource("7_sxhbg") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xx8rr"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="BoxMesh" id="BoxMesh_0vqha"] +material = SubResource("StandardMaterial3D_xx8rr") +size = Vector3(0.2, 0.2, 1) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_khk4l"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="BoxMesh" id="BoxMesh_wqpqp"] +material = SubResource("StandardMaterial3D_khk4l") +size = Vector3(0.2, 0.2, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6sg7v"] +bg_color = Color(0, 0, 0, 0) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kndy7"] +bg_color = Color(0.811765, 0.0823529, 0, 1) + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_6kydi"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2gc5u"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_xnks4"] +material = SubResource("StandardMaterial3D_2gc5u") + +[sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_70css"] +properties/0/path = NodePath(".:respawn_position") +properties/0/spawn = true +properties/0/sync = false +properties/0/watch = true + +[node name="player" type="CharacterBody3D"] +script = ExtResource("1_mk8qw") + +[node name="Head" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.705698, 0) + +[node name="Camera3D" type="Camera3D" parent="Head"] + +[node name="Nose" type="MeshInstance3D" parent="Head"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.25) +mesh = SubResource("BoxMesh_qmeb2") + +[node name="WeaponManager" type="Node3D" parent="Head"] +script = ExtResource("3_4j0gy") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Head/WeaponManager"] +stream = ExtResource("5_14ltm") + +[node name="Fire Action" type="Node" parent="Head/WeaponManager"] +script = ExtResource("9_ra1gd") + +[node name="BulletHole" type="Node3D" parent="Head/WeaponManager"] +script = ExtResource("6_f1qm8") +material = SubResource("StandardMaterial3D_faajq") + +[node name="TinyGun" type="MeshInstance3D" parent="Head/WeaponManager"] +transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0.09, -0.18, -0.3) +mesh = SubResource("BoxMesh_0vqha") + +[node name="BigGun" type="MeshInstance3D" parent="Head"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.439686, -0.406913, -0.200588) +mesh = SubResource("BoxMesh_wqpqp") + +[node name="DisplayNameLabel3D" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.30427, 0) +pixel_size = 0.002 +billboard = 1 +fixed_size = true +font_size = 16 + +[node name="Projection3D" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.11014, 0) +script = ExtResource("6_sv41w") +projection_size = Vector2(1, 0.1) + +[node name="ProgressBar" type="ProgressBar" parent="Projection3D" node_paths=PackedStringArray("player")] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +theme_override_styles/background = SubResource("StyleBoxFlat_6sg7v") +theme_override_styles/fill = SubResource("StyleBoxFlat_kndy7") +step = 1.0 +value = 100.0 +show_percentage = false +script = ExtResource("17_ghjct") +player = NodePath("../..") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_6kydi") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_xnks4") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +unique_name_in_owner = true +script = ExtResource("1_g0p7o") +root = NodePath("..") +state_properties = Array[String]([":transform", ":velocity", ":did_respawn", ":health", ":death_tick", ":deaths", ":last_damage_attacker_id", ":last_damage_weapon_id", ":last_damage_tick", ":armor", ":has_defuse_kit", "Head:transform", "Head/WeaponManager:inventory", "Head/WeaponManager:active_slot", "Head/WeaponManager:ammo", "Head/WeaponManager:reserve", "Head/WeaponManager:reload_start_tick", "Head/WeaponManager:last_fire_by_slot", "Head/WeaponManager:recoil_accumulator", "Head/WeaponManager:grenade_counts", "Head/WeaponManager:active_grenade_type"]) +input_properties = Array[String](["Input:movement", "Input:jump", "Input:look_angle", "Input:fire_held", "Input:fire_pressed", "Input:reload_pressed", "Input:next_weapon", "Input:prev_weapon", "Input:slot_1", "Input:slot_2", "Input:slot_3", "Input:slot_4", "Input:use_held"]) + +[node name="MultiplayerSynchronizer" type="MultiplayerSynchronizer" parent="."] +replication_config = SubResource("SceneReplicationConfig_70css") + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_3rc26") +root = NodePath("..") +properties = Array[String]([":transform", "Head:transform"]) + +[node name="Input" type="Node" parent="." node_paths=PackedStringArray("big_gun", "hud")] +script = ExtResource("10_50d5g") +mouse_sensitivity = 0.005 +big_gun = NodePath("../Head/BigGun") +hud = NodePath("../HUD") + +[node name="HUD" type="CanvasGroup" parent="."] + +[node name="WindowSizeConnector" type="Node" parent="HUD" node_paths=PackedStringArray("target_nodes")] +script = ExtResource("13_mlcnx") +target_nodes = [NodePath("../MarginContainer")] + +[node name="CrossHair" type="Node2D" parent="HUD"] +script = ExtResource("14_npl66") +crosshair_sprite = ExtResource("14_qqmle") + +[node name="MarginContainer" type="MarginContainer" parent="HUD"] +offset_right = 540.0 +offset_bottom = 540.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 + +[node name="VBoxContainer" type="VBoxContainer" parent="HUD/MarginContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="HUD/MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 6 + +[node name="ProgressBar" type="ProgressBar" parent="HUD/MarginContainer/VBoxContainer" node_paths=PackedStringArray("player")] +custom_minimum_size = Vector2(30, 100) +layout_mode = 2 +size_flags_horizontal = 0 +step = 1.0 +value = 100.0 +fill_mode = 3 +script = ExtResource("17_ghjct") +player = NodePath("../../../..") + +[node name="HitSFX" type="AudioStreamPlayer3D" parent="."] +stream = ExtResource("20_e2bcn") +volume_db = -6.919 +max_distance = 10.0 + +[node name="DieSFX" type="AudioStreamPlayer3D" parent="."] +stream = ExtResource("21_ogjhm") diff --git a/examples/multiplayer-fps/models/CombatKnife_psified.png b/examples/multiplayer-fps/models/CombatKnife_psified.png new file mode 100644 index 0000000..5d75284 Binary files /dev/null and b/examples/multiplayer-fps/models/CombatKnife_psified.png differ diff --git a/examples/multiplayer-fps/models/CombatKnife_psified.png.import b/examples/multiplayer-fps/models/CombatKnife_psified.png.import new file mode 100644 index 0000000..45a8115 --- /dev/null +++ b/examples/multiplayer-fps/models/CombatKnife_psified.png.import @@ -0,0 +1,42 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpqpuoe5t3wsr" +path.s3tc="res://.godot/imported/CombatKnife_psified.png-14426e3d369e00d57e0db264c9f0af5e.s3tc.ctex" +path.etc2="res://.godot/imported/CombatKnife_psified.png-14426e3d369e00d57e0db264c9f0af5e.etc2.ctex" +metadata={ +"imported_formats": ["s3tc_bptc", "etc2_astc"], +"vram_texture": true +} + +[deps] + +source_file="res://examples/multiplayer-fps/models/CombatKnife_psified.png" +dest_files=["res://.godot/imported/CombatKnife_psified.png-14426e3d369e00d57e0db264c9f0af5e.s3tc.ctex", "res://.godot/imported/CombatKnife_psified.png-14426e3d369e00d57e0db264c9f0af5e.etc2.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/examples/multiplayer-fps/models/grenade.glb b/examples/multiplayer-fps/models/grenade.glb new file mode 100644 index 0000000..cb5d68c Binary files /dev/null and b/examples/multiplayer-fps/models/grenade.glb differ diff --git a/examples/multiplayer-fps/models/grenade.glb.import b/examples/multiplayer-fps/models/grenade.glb.import new file mode 100644 index 0000000..c52f5c3 --- /dev/null +++ b/examples/multiplayer-fps/models/grenade.glb.import @@ -0,0 +1,45 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://o3cvash88wwl" +path="res://.godot/imported/grenade.glb-ba44f095053886606fbfbffac7baa568.scn" + +[deps] + +source_file="res://examples/multiplayer-fps/models/grenade.glb" +dest_files=["res://.godot/imported/grenade.glb-ba44f095053886606fbfbffac7baa568.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 +gltf/texture_map_mode=0 diff --git a/examples/multiplayer-fps/models/grenade_LowTexture.png b/examples/multiplayer-fps/models/grenade_LowTexture.png new file mode 100644 index 0000000..34730e6 Binary files /dev/null and b/examples/multiplayer-fps/models/grenade_LowTexture.png differ diff --git a/examples/multiplayer-fps/models/grenade_LowTexture.png.import b/examples/multiplayer-fps/models/grenade_LowTexture.png.import new file mode 100644 index 0000000..c852605 --- /dev/null +++ b/examples/multiplayer-fps/models/grenade_LowTexture.png.import @@ -0,0 +1,45 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2jr4mg1yxyke" +path.s3tc="res://.godot/imported/grenade_LowTexture.png-a06aa0d5988a65acb6485115747d9f5b.s3tc.ctex" +path.etc2="res://.godot/imported/grenade_LowTexture.png-a06aa0d5988a65acb6485115747d9f5b.etc2.ctex" +metadata={ +"imported_formats": ["s3tc_bptc", "etc2_astc"], +"vram_texture": true +} +generator_parameters={ +"md5": "e655568272781f2ce648170e004b036c" +} + +[deps] + +source_file="res://examples/multiplayer-fps/models/grenade_LowTexture.png" +dest_files=["res://.godot/imported/grenade_LowTexture.png-a06aa0d5988a65acb6485115747d9f5b.s3tc.ctex", "res://.godot/imported/grenade_LowTexture.png-a06aa0d5988a65acb6485115747d9f5b.etc2.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/examples/multiplayer-fps/models/grenade_texture.png b/examples/multiplayer-fps/models/grenade_texture.png new file mode 100644 index 0000000..772a5dd Binary files /dev/null and b/examples/multiplayer-fps/models/grenade_texture.png differ diff --git a/examples/multiplayer-fps/models/grenade_texture.png.import b/examples/multiplayer-fps/models/grenade_texture.png.import new file mode 100644 index 0000000..4ffaf3b --- /dev/null +++ b/examples/multiplayer-fps/models/grenade_texture.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnt6txc6ory1l" +path="res://.godot/imported/grenade_texture.png-2cd325eba4fb7d50b757939b34d5e1fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://examples/multiplayer-fps/models/grenade_texture.png" +dest_files=["res://.godot/imported/grenade_texture.png-2cd325eba4fb7d50b757939b34d5e1fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/examples/multiplayer-fps/models/knife.fbx b/examples/multiplayer-fps/models/knife.fbx new file mode 100644 index 0000000..46e23bc Binary files /dev/null and b/examples/multiplayer-fps/models/knife.fbx differ diff --git a/examples/multiplayer-fps/models/knife.fbx.import b/examples/multiplayer-fps/models/knife.fbx.import new file mode 100644 index 0000000..7559275 --- /dev/null +++ b/examples/multiplayer-fps/models/knife.fbx.import @@ -0,0 +1,46 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c454i6qwcwucj" +path="res://.godot/imported/knife.fbx-14c1b74d0c4e6852d01d946d051ce2f8.scn" + +[deps] + +source_file="res://examples/multiplayer-fps/models/knife.fbx" +dest_files=["res://.godot/imported/knife.fbx-14c1b74d0c4e6852d01d946d051ce2f8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +mesh_library/use_node_names_as_mesh_names=false +array_mesh/deduplicate_surfaces=true +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=true +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +fbx/importer=0 +fbx/allow_geometry_helper_nodes=false +fbx/embedded_image_handling=1 +fbx/naming_version=2 diff --git a/examples/multiplayer-fps/models/knife_texture.png b/examples/multiplayer-fps/models/knife_texture.png new file mode 100644 index 0000000..5d75284 Binary files /dev/null and b/examples/multiplayer-fps/models/knife_texture.png differ diff --git a/examples/multiplayer-fps/models/knife_texture.png.import b/examples/multiplayer-fps/models/knife_texture.png.import new file mode 100644 index 0000000..848399a --- /dev/null +++ b/examples/multiplayer-fps/models/knife_texture.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtba24wbrfqbs" +path="res://.godot/imported/knife_texture.png-4421b86124d748f88fcd78b050f515b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://examples/multiplayer-fps/models/knife_texture.png" +dest_files=["res://.godot/imported/knife_texture.png-4421b86124d748f88fcd78b050f515b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/examples/multiplayer-fps/multiplayer-fps.tscn b/examples/multiplayer-fps/multiplayer-fps.tscn new file mode 100644 index 0000000..cd6cc5e --- /dev/null +++ b/examples/multiplayer-fps/multiplayer-fps.tscn @@ -0,0 +1,197 @@ +[gd_scene format=4 uid="uid://bfshwoko470di"] + +[ext_resource type="PackedScene" uid="uid://vrso6qncj1nm" path="res://examples/multiplayer-fps/characters/player.tscn" id="2_p13fk"] +[ext_resource type="Script" uid="uid://ciyrjr3yhnqxf" path="res://examples/multiplayer-fps/scripts/team-manager.gd" id="3_573tb"] +[ext_resource type="Script" uid="uid://b7dcdxh4qdxwv" path="res://examples/multiplayer-fps/scripts/player-spawner.gd" id="3_c7rxg"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_pf45j"] +[ext_resource type="Script" uid="uid://c3eokqjyc0bee" path="res://examples/shared/scripts/simple-time-display.gd" id="4_c2ddp"] +[ext_resource type="Script" uid="uid://c8adu0soolfyq" path="res://examples/multiplayer-fps/scripts/round-manager.gd" id="4_t3cki"] +[ext_resource type="Script" uid="uid://1wur66am5ly8" path="res://examples/multiplayer-fps/scripts/ui/round-hud.gd" id="7_7swc0"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/economy_manager.gd" id="8_econ"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/buy_menu.gd" id="9_buym"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/bomb.gd" id="10_bomb"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/bombsite.gd" id="11_bsite"] +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/ui/bomb_hud.gd" id="12_bhud"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_m76yx"] + +[sub_resource type="Sky" id="Sky_e76ss"] +sky_material = SubResource("ProceduralSkyMaterial_m76yx") + +[sub_resource type="Environment" id="Environment_xhc6u"] +background_mode = 2 +sky = SubResource("Sky_e76ss") + +[sub_resource type="ArrayMesh" id="ArrayMesh_jat7u"] +_surfaces = [{ +"aabb": AABB(-21.5, -0.5, -21.5, 43, 3.5, 43), +"attribute_data": PackedByteArray("AAAAAM/zfD8AAAAAAACAPwAAgD8AAIA/AAAAAAAAAD8AAAAAMQxDPAAAAAAAAAAAAACAPwAAAADV/kY+CEZJPnzRVD9hYFc/WBVIPlgVSD6StgM+krYDPkAMQzxADEM89q7pPWY87D170VQ/e9FUPwXxeT/P83w/0PN8P9DzfD/d6Vo/3elaP97pWj/Ki10/7HlDPnUfTT4NwzA/oOc5P8z+Rj4ARkk+ftFUP2NgVz8Yr+k9iTzsPUAMQzxADEM8W6/aPVGG3j2etdc9hMfhPd7pWj8+hmA/BvF5P9HzfD/f6Vo/zItdP33RVD+d8Fo/MQxDPM/zfD9kFM49PQQXP/zQdD4UbzM/71osPl77+D4K5/Y9pVkaP5IfNj7E5QM/6HmePqDnOT8Sciw+qOn4PgjRdD6Onw4/aNtAPnaU/z6THzY+xeUDP0SZhj4UbzM/R5mGPnhAHT++A8A92rL7PbjIuT3PQQE+CdF0PvjRoz6OVNw9QwwRPq+ROj4o5VY+7HlDPngfTT4WaBY++dU1PuGZhj6C0qM+obXXPYrH4T1ADEM8QAxDPM1OyT0jivE94ZmGPoLSoz7NTsk9IorxPUAMQzxADEM8vwPAPdyy+z0TaBY+9dU1PgaapT5DkQ0/yD7RPomYJD8PGNo+QmcgP1pzrj7/Xwk/RpmGPnhAHT/teZ4+AABAP4TRVD+p/3E/fdFUPy4IXj8OwzA/BABAP2oPnz7QHWI/jL+oPnA6Zz/NmLE+JwljP/epqz7A518/4+laP6j/cT/e6Vo/2BtjP2w1ej4aM1A/aQ+fPtAdYj9c9IU+ygFMP/ipqz7A518/3elaP5V/Wj/Q83w/0PN8P9zpWj/neFo/e9FUP0tMVD8A48E8AAxDPHzRVD8rVFQ/z/N8P2nqfD940VQ/LFRUP2DfwTxADEM8fdFUP33RVD/c6Vo/3OlaP9rpWj+Vf1o/YgxDPGIMQzwkAUs+IeNEPn22Az59tgM+hEFKP1KkPj4MwzA/vjCMPnriUD/M4VY+Fg09P+vRoz4YI2M/Q4YDPmT/VD++4kQ+EzJjP9NWCz5fE2k/z5/cPc/zfD8ADEM8zwdpPxyQ0D3D7WI/TJbPPdrbTj+UcC4+GCNjP0SGAz7PB2k/HZDQPc/zfD8ADEM8p95oPzrDpT1k/1Q/vuJEPhYNPT+1Ksc+1UpjP/o3GD57JUM/+dGjPmeTYz9V+T0+z/N8P2nqfD8Jq2k/Lz09PnomaT+vgPA9EzJjP9JWCz55Jmk/s4DwPV8TaT/Nn9w91EpjP/w3GD55JUM/DWvkPiq73z7HQK49CuPBPEIMQzxdJtQ+L1MpPhR4OT/LQQE+8nbrPnF6uz2Qjd8+WkgyPoRBSj9RpD4+7JQ9PzmG3j2dn2I/NYR8PcLtYj9Nls89p95oPzjDpT1Kt2g/2JZ5PVwm1D4vUyk+fIXOPr1FUT7ieZ4+vjCMPkZB2j6T4lc+j43fPlpIMj6a0VQ/IBZUP/h6nj6WYpg+e9FUP0xMVD/c6Vo/endaP8/zfD9p6nw/9ulaP4hJWj8XDT0/uirHPgfDMD+EYZg+dCVDP8eq7T54JUM/DGvkPhINPT8eZNE+l9FUP8nDTj9DDT0/PW8zP5nRVD8fFlQ/9elaP4dJWj/06Vo/GMZVP/h6nj6WYpg+Ew09PyBk0T5FRiI/3sqzPl+6Dj9dxeU+YocTPyZI7T5HEyc/oE27PpTRVD/+5Uk/nCVDPzRvMz/x6Vo/gKVRP4/RVD+sPEE/dCVDP8aq7T7o6Vo/oDxBP/LpWj+ApVE/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/QAxDPAAAAAAAAAA/AAAAAM/zfD8AAAAAAACAPwAAAAAAAAAAz/N8PwAAAAAAAIA/AACAPwAAgD8AAAAAoP//PgAAAAAwDEM8AACAPwAAgD8AAAAAAAAAAAAAAAAwDEM8AACAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAz/N8PwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAPwAAgD8yDEM8AACAPwAAAAAAAIA/AACAPwAAAACrqqo+q6qqPgAAAAAAAAAAq6qqPgAAAD8AAAAAAAAAP6qqqj4AAAAAqqqqPqqqKj6oqqo+qKqqPgAAAAAAAAAAAAAAAAAAgD8AAAA/z/N8PwAAAD8AAIA/z/N8P8/zfD/0BX0/9AV9PwAAgD8AAIA/AACAP8/zfD8AAIA/QAxDPDR1fj/O83w/AACAP2MGfT9+fn4/KQZ9PwAAgD8AAIA/AAAAP0AMQzwAAAA/AAAAAM7zfD/O83w/8wV9P/MFfT8AAAAAq6qqPgAAAAAAAIA/AACAPwAAgD8AAAAAAAAAAAAAgD+qqqo+AACAPwAAAACsqqo+q6oqPwAAAAAAAAA/q6qqPgAAgD8AAAAAAACAP66qqj4AAAA/qqqqPqqqKj8AAAA/0PN8PwAAAD8AAAA/AAAAAAAAAACj9/w+o/d8PwAAAD8AAIA/AAAAP9DzfD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAgD8YDxY+udJ9PwAAAD8AAIA/o/f8PqP3fD8AAAAAAAAAABgPFj650n0/AAAAPwAAgD8AAAAAAAAAAAAAAD8AAAA/A/YVPmnrCTwAAAA/IAxDPAAAgD4gDMM7z/N8P8/zfD9ADEM8QAxDPM/zfD8AAIA/MQxDPAAAgD9ADEM8AAAAADcMQzw3DEM8z/N8P8/zfD/P83w/AAAAAEAMQzwAAAAA2/N8P3XqfD+sqqo+q6oqPwAAAAAAAAA/q6qqPgAAgD8AAAAAAACAP66qqj4AAAA/qqqqPqqqKj999v8+0PN8PwAAAAAxDEM8AAAAAM/zfD8AAAA/AACAPwAAgD8AAIA/AAAAAFRnPjwKgz48CoM+PAAAAAAAAAAAQAxDPEAMQzwAAIA/AAAAAAAAAD9ADEM8AAAAPwAAAAAyDEM8MgxDPA2DPjwNgz480PN8P9DzfD/AC0M8wAtDPHXqfD+J9n8/0PN8P9DzfD916nw/ifZ/P9vzfD+m9n8/OgxDPOP/fz916nw/ifZ/P0AJQzzAYkU8QAxDPAAAAABMZz48AAAAAAAAAAAAAAAAQAxDPAAAAAAwDEM8MAxDPM/zfD/P83w/z/N8PwAAAADb83w/dep8P6mqqj6pqqo+AAAAAAAAAACpqqo+CQAAPwAAAAAAAAA/qqqqPgAAAACqqqo+qqoqPqSqqj6kqio+oaqqPqGqqj4AAIA/AACAP/7//z7+//8+f4JaP1HYfT8AAAA/z/N8PwAAQD/oeX4/AAAAPysMQzwKAAA/CgAAPwAAgD8AAIA/LoQBP0AXQjwAAAA/AAAAAAAAAD8rDEM8AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAOnxaP8BRCzwAAIA/AAAAAAAAAD8AAAAAOnxaP8BRCzwuhAE/PRdCPAAAgD8AAIA/OnxaP8BRCzwAAAA/AAAAAAAAAACrqio/AAAAAAAAgD8AAIA/AACAPwAAAAAAAAAAAACAP6qqKj8AAIA/AAAAAKuqqj4AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAIA/qqqqPgAAAAAAAIA/AAAAAAAAAAAAAAA/AAAAAAAAgD8xDEM8AAAAPwAAAAAAAAAAMQxDPAAAgD/P83w/AACAP8/zfD/P83w/9AV9P/QFfT9jBn0/AACAPwAAgD8AAIA/AACAPwAAAD8AAIA/AAAAAM/zfD8AAAA/rqqqPq6qqj4AAAAAAAAAAKmqKj6pqqo+rKoqPqyqqj4AAAAAq6qqPgAAAD+kqqo+AAAAPwAAAACmqqo+pqqqPgAAAAAwDEM8AAAAAM/zfD/P83w/z/N8P0AMQzxADEM8QcBHPPkFQzwAAIA/6fB5PwAAgD8ADEM8QcBHPPkFQzwAAIA/z/N8PwAAgD/p8Hk/z/N8P8/zfD8AAIA/z/N8P0HARzz5BUM8AAAAAAAAgD8AAIA/AACAP1HrCTxbglo/MQxDPAAAAD85DMM7/v8/PwAAAD8AAAA/SNN9P36EWj/oeX4/AABAP8/zfD8AAAA/q6qqPquqKj8AAAA/AACAPwAAAD+qqio/AAAAAKuqKj8AAAAAAACAP3XqfD/c83w/AAAAADEMQzwAAAAAz/N8PwAAAAAxDEM8AAAAAD1nPjwAAAAAq7JAPEAMQzxADEM8AAAAADEMQzx16nw/3PN8PwAAAAAAAAAAK8BHPPkFQzwAAIA/BPF5PwAAgD9ADEM8K8BHPPkFQzwAAIA/z/N8PwAAgD8E8Xk/AACAP8/zfD8rwEc8+QVDPAn0fD/P83w/AAAAAAAAAD8AAAAAAACAPzEMQzwAAAA/AAAAAAAAAAAAAIA/AACAPwCDPjwAgz48gMBAPIDAQDxADEM8QAxDPICyQDwAkBQ5QGc+PAAAAADBwEA8wcBAPEAMQzwAaJY5LwxDPC8MQzwMgz48DIM+PAAAgD8AAAA/AACAPwAAAADQ83w/AQAAP8/zfD+p82c2qqoqP6qqqj4AAAA/AAAAAAAAAD+rqqo+AACAP6qqqj4AAIA/AAAAAKuqqj4AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAIA/qqqqPgAAAAAAAIA/AAAAABgMwzvg/38+AAAAAAAAAAAAAAAAAAAAPwAAAAAAAAA/MAxDPAAAAD8YDMM74P9/PgQAAD8EAAA/AAAAAAAAAAB1xQg8itoVPjAMwzsAAIA+MAxDPAAAAD91xQg8itoVPnXFCDyK2hU+AAAAAAAAAAAwDMM7AACAPud5fj8JAIA+zvN8PyAAAD8AAIA/AAAAPwAAgD8AAAAAAACAPwAAAAAAAAAAAAAAAFLYfT849hU+zvN8PyAAAD/neX4//v9/PgAAgD8AAAAAUth9Pzj2FT7O83w/IAAAPwMAAD8DAAA/CQAAP76qKj8AAAA/AACAPwAAgD8AAIA/vqoqP76qKj+/qio/v6oqP1ZVVT+sqio/VVVVP6qqKj8AAIA/qqoqPwAAAAAAAAAAAAAAPgAAAAAAAAA+AACAPwAAAAAAAIA/eoJaPwAAAAAAAIA/AAAAAAAAAD8AAAA//FY8P62qKj56glo/AAAAAAAAgD8AAAAAdiseP8Kqqj4AAAA/AAAAPwAAgD4AAAAAAACAPgAAgD////8+AAAAAHYrHj/Aqqo+AAAAPwAAAD////8+AAAAAANXPD+Aqio+eoJaPwAAAAAa9hU+AAAAAHzVIDsAAAAAGvYVPgAAAAAAAAA/AAAAPwAAAAAAAAAA+v8/PzT2FT54glo/AAAAAAAAAD8AAAAAAAAAPwAAAD/2/z8/TfYVPgAAAD8AAAA/AACAPwAAAAB4glo/AAAAAPz/Pz809hU+eoJaPwAAAAAAAIA/AAAAAAAAAD8AAAA/9/8/P032FT4AAAA/AAAAP////z4AAAAAeoJaPwAAAAAJAIA+NPYVPhj2FT4AAAAAAAAAAAAAAAAAAAA/AAAAPxIAgD5N9hU+AAAAPwAAAD8AAAA/AAAAABj2FT4AAAAAAABAPwAAAAAAAGA/AAAAAAAAYD8AAIA/AABAPwAAgD94glo/AAAAAHUrHj/Cqqo+eIJaPwAAAAAAAAA/AAAAAAAAAD8AAAA/AABgPwAAAAAAAAAAAAAAAAAAAAAAAIA/AABgPwAAgD8AAIA/AAAAAHYrHj/Aqqo+AAAAPwAAAD8AAIA/AAAAAAAAgD8AAAAAeIJaPwAAAAB2Kx4/wKqqPgoAgD409hU+GvYVPgAAAAD///8+AAAAAAAAAD8AAAA/BwCAPi32FT4AAAA/AAAAPwAAAAAAAAAAGvYVPgAAAAAAAAA/AAAAAAAAID8AAAAAAAAgPwAAgD8AAAA/AACAPxj2FT4AAAAAAAAAAAAAAAAAAAA/AAAAPwhShz6tqio+GPYVPgAAAAAAAAAAAAAAABSpwz7Cqqo+AAAAAAAAAAAAAAA/AAAAPxSpwz7Cqqo+AABAPwAAAAAAAEA/AACAPwAAAD8AAAAAGPYVPgAAAAAAAAA/AAAAP+aowz6Aqqo+AAAAPwAAAD8AAAA/AAAAAPlRhz6Aqio+GPYVPgAAAAB4glo/AAAAAAAAAD8AAAAAAAAAPwAAAD8qX38/AAAAAHiCWj8AAAAAAAAAPwAAAD8AAIA/AAAAAPz/Pz809hU+eoJaPwAAAAAAAIA/AAAAAAAAAD8AAAA/9/8/P032FT4AAAA/AAAAP////z4AAAAAeoJaPwAAAAAAAIA+AAAAAAAAwD4AAAAAAADAPgAAgD8AAIA+AACAPxr2FT4AAAAAFKnDPsKqqj4a9hU+AAAAAP///z4AAAAAAAAAPwAAAD8AAAA/AAAAAAAAAD8AAIA/AAAAAAAAAAAa9hU+AAAAAAAAAD8AAAA/FKnDPsCqqj4AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAa9hU+AAAAABSpwz7Aqqo+GACAPmD2FT4Y9hU+AAAAAAAAAAAAAAAAAAAAPwAAAD8dAIA+bfYVPgAAAD8AAAA/AAAAPwAAAAAY9hU+AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD+EQcE+AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP6bFRT8AAIA/AAAAAAAAAAAAAAAAAACAPwAAgD8AAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/KDBEPwAAgD8AAAAAAACAP3ybUT8AAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP+SRqT4AAIA/AAAAAAAAgD8w2cE+AACAP+SRqT4AAAAAAAAAAAAAgD8w2cE+AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/jKbRPgAAgD8AAAAAAACAP/gd8j4AAAAAAAAAAAAAgD80xAs/AACAP/gd8j4AAIA/YDIZPwAAgD80xAs/AACAP0TEGz8AAIA/YDIZPwAAAAAAAAAAAAAAAAAAAAAAAIA/nO0bPwAAgD9ExBs/AACAP6QKHT8AAIA/nO0bPwAAAAAAAAAAAACAP9T6OD8AAIA/pAodPwAAgD8wh1I/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD+gTKw+AACAPwAAAAAAAAAAAAAAAAAAgD/Aotc+AACAP6BMrD4AAIA/WIMDPwAAAAAAAAAAAACAPxh1BD8AAIA/WIMDPwAAgD+snwQ/AACAPxh1BD8AAAAAAAAAAAAAgD+gzQY/AACAP6yfFD8AAIA/lEIkPwAAgD+snxQ/AAAAAAAAAAAAAIA/+NMxPwAAgD+UQiQ/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/9E1jPgAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8dM10/AACAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/HTNdPwAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/nap/PwAAgD8AAAAAAAAAAAAAAAAAAIA/AACAPwAAgD+dqn8/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/zFwePgAAgD8AAAAAAAAAAAAAAAAAAIA/AACAPwAAgD/MXB4+AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP3WdxT4AAIA/AAAAAAAAgD/zyVA/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAABah1I/AACAPwAAgD8AAIA/AAAAAAAAAAAYmUE/AACAP1qHUj8AAIA/AAAAAAAAAACh1Qo/AACAPxiZQT8AAIA/AAAAAAAAAAAAAAAAAACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP2L4oz0AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/oJF0PgAAgD9i+KM9AAAAAAAAAAAAAIA/AACAPwAAgD+gkXQ+AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/gOtBPgAAAABgh/E+AAAAACDZaD8AAAAAAACAPwAAgD8AAIA/AAAAACDZaD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP7bxkD4AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP0DjPD8AAIA/AAAAAAAAAAAAAAAAAACAP0DjPD8AAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/HGaYPgAAgD8AAAAAAACAP55izD4AAIA/8uzrPgAAgD9W7i0/AAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/DV0lPgAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAgD9dEKk+AACAPw1dJT4AAIA/ZGfBPgAAgD9dEKk+AACAP7CF6T4AAIA/AACAPwAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAP7Zypz4AAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AACAPwAAgD8AAIA/3DAxPwAAgD8AAAAAAAAAAAAAAAAAAIA/AACAPwAAAAAAAAAAAAAAAAAAgD8AAIA/AACAPwAAgD8AAIA/AACAPwAAAAAAAAAAAAAAAA=="), +"format": 34359742487, +"index_count": 1740, +"index_data": PackedByteArray("AAABAAIAAwAAAAIAAgAEAAMAAgAFAAQAAgAGAAUABwAIAAkACgALAAwACAANAAkADgAPABAAEQAOABAAEgATABQAEwAVABQAFgAXABgAGAAXABkAGgAbABwAFQATAB0ACwAeAB8AHgAgAB8AIQALAB8AHwAgACIAIgAgACMAHgAkACAAJQALACEAJgALACcACwAlACcAJwAgACYAKAAgACcAIAAkACkAKQAkACoAKwALACwALAAtAC4ACwAmACwAJgAtACwALwATADAAMQAyAC8AMgATAC8AMwA0ADUALgAtADYANwA4ADkALgA2ADoAMgAkADsAJAATADwAOwAkADwAPAATAD0AEwAyAD4AMgA7AD4APgA9ABMAMgA/ACQAJAAeAEAAHgAbAEEAQgBDAEEARAAeAEUAHgBBAEUAQQBDAEUARQBDAEYARgBDAEcAQQAbAEgASAAbAEkAHQATAEMASQAbABoAHQBDAEIAQAAeAEoASgAeAEsAQwBAAEwAQABKAEwATQBDAEwATgBPAFAAUQBSAFMATwBUAFAAVQBWAFcAWAAPAFkAVgBaAFsACQBXAFsAWwBaAFwAVwBWAFsAXQBeAF8AXgBgAF8AYQBiAGMAZABlAGYAYgBgAGMAXwBgAGIAZwBoAGkAagBrAGwAaABtAGkAYABeAG4AbwBwAHEAcAByAHEAcgBrAHMAcQByAHMAcwBrAHQAdQBgAHAAdgBrAHcAdQBwAHgAeQByAHAAegB7AHwAfQB7AHoAXgB9AH4AfQB6AH4AfgB/AF4AfQBeAIAAawB7AIEAewB9AIEAggBoAIMAawCBAIIAgQBoAIIAhABrAIUAawCCAIUAhgB7AIcAewCIAIcAiABeAIkAhwCIAIkAigCJAF4AiwCMAI0AjgCPAJAAjAB7AI0AiAB7AIwAkQBeAJIAkwByAJQAkQCSAJUAlgCXAJgAmQByAJoAlwCbAJgAnACSAJcAkgCbAJ0AmwCXAJ4AnQCbAJ4AngCXAJ8AlwCSAKAAkgCdAKAAoACfAJcAoQCiAJYAmgByAKMAogCXAJYApACiAKEApQCiAKQAcgClAKYApQCkAKYApgCnAHIAqACpAKoAqwCoAKoAqgCsAKsArQCsAKoAqgCuAK0ArwCwALEAsgCvALEAsQCzALIAtAC1ALYAsQC3ALgAuQC6ALsAuwC8ALkAvQC+AL8AvwDAAL0AwQDAAL8AvwDCAMEAvgDDAL8AxADFAMYAxQDHAMYAyADFAMkAyQDFAMoAywDMAM0AzQDMAM4AzwDLAM0A0ADPAM0AzQDRANAA0gDTANQA1QDSANYA1gDXANUA0gDUANYA0wDYANQA2QDLANgA1ADYANoA1gDUANsA2wDXANYA1ADaANsA2ADLANoA3ADdAN4A3gDfANwA4ADhAN8A3wDeAOAA4gDjAOQA4wDlAOQA5gDjAOcA6ADpAOoA6wDsAO0A7QDuAOsA7wDwAPEA8ADyAPEA8wD0APUA9QD2APMA9wD4APkA+AD6APkA+wD3APkA+QD6APsA/AD9AP4A/QD/AP4AAAEBAQIBAwEEAQUBBgEHAQgBBwEJAQgBCgEHAQsBDAENAQ4BDwEQAQwBEAENAQwBEQENARIBEgETAREBDQEUARIBDQEQARQBEAEVARYBFgEVARcBGAEQARYBGQEYARYBGgEbARwBHQEeAR8BIAEhASIBIwEkASUBJgEnASgBKQEmASoBKwEsAS0BLAEuAS0BLwEsATABMQEsATIBMwE0ATUBNAE2ATUBNwEzATUBNQE2ATcBOAE5AToBOwE8AT0BPQE+ATsBPwFAAUEBQgFDAUQBRQFGAUcBRwFIAUUBSQFKAUsBSwFMAUkBTQFOAUwBTAFLAU0BTwFQAVEBUQFSAU8BUwFRAVABUAFUAVMBVQFWAVcBVwFYAVUBVwFZAVoBVwFWAVkBWwFYAVcBWwFXAVoBXAFbAV0BXQFeAVwBWwFaAV0BXwFgAWEBYQFeAV8BYAFYAWEBXAFeAWEBYQFbAVwBYQFYAVsBYgFjAWQBZQFjAWYBZwFoAWMBZwFjAWkBagFrAWwBagFsAW0BbgFvAXABcQFyAXMBdAF1AXYBdwF4AXkBeAF6AXkBewF3AXkBeQF6AXsBegF4AXwBfAF4AX0BfgF/AX0BfQF4AX4BfwF8AX0BgAGBAYIBgwGEAYEBgwGBAYABhQGGAYcBiAGJAYoBiwGMAY0BjgGKAYgBjgGJAYoBjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmgGbAZgBmQGcAZoBnQGbAZoBngGdAZoBnwGeAZoBmgGcAZ8BoAGhAaIBowGgAaQBpAGcAaMBoAGiAaQBoQGlAaIBoQGbAaUBpgGnAagBqAGcAaYBqQGjAagBqAGnAakBowGcAagBqgGrAawBrQGuAasBrQGrAaoBrwGwAbEBsQGyAa8BswGxAbABsAG0AbMBtQG2AbcBuAG5AboBuwG8Ab0BvgG/AcABwQHCAcMBvwG7AcABxAHFAcYBxgHHAcQByAHJAcoByQHLAcoBzAHNAc4BzgHPAcwBzwG8AdAB0QHSAdMB0QHTAdQB1QHTAdYB1wHTAdgB2QHaAdsB2wHcAdkB3QHeAd8B4AHhAeIB4gHjAeAB4gHkAeMB2gHlAeYB5gHbAdoB5wHdAd8B6AHpAeoB6wHoAeoB6gHsAesB7QHnAd8B7gHvAfAB8AHxAe4B8gHzAfQB9AH1AfIB9gH3AfgB+AH5AfYB+gH7AfwB/AH9AfoB/gH/AQACAAIBAv4BAgIDAgQCBAIFAgICBgIHAggCCAIJAgYCCgILAgwCDAINAgoCDgIIAgcCDwIQAhECEQISAg8CEwIUAhUCFQIWAhMCFwIOAgcCGAIZAhoCGwIcAh0CHgIfAiACIAIhAh4CIgIjAiQCJAIlAiICJgInAigCKAIpAiYCKgIrAiwCLQIuAi8CLwIwAi0CMQIyAjMCJwI0AjUCNQIoAicCNgI3AjgCOQI6AjsCPAI5AjsCOwI9AjwCPgI/AkACQQJCAkMCQwJEAkECRQJGAkcCRwJIAkUCSQJKAksCSwJMAkkCTQJOAk8CTwJQAk0CUQJLAkoCUgJTAlQCVAJVAlICTgJWAlcCVwJPAk4CWAJZAloCWwJcAl0CXgJfAmACYQJiAmMCYwJkAmECZQJmAmcCZwJoAmUCaQJqAmsCawJsAmkCbQJuAm8CbwJwAm0CcQJyAnMCcwJ0AnECdQJ2AncCdwJ4AnUCeQJ6AnsCfAJ9An4CfwKAAoECgQKCAn8CgwKEAoUChQKGAoMChwKIAokCiQKKAocCiwKMAo0CjQKOAosCjwKQApECkQKSAo8CkwKUApUClgKXApMCkwKVApYCmAKZApoCmgKbApgCnAKdAp4CngKfApwCoAKhAqICowKkAqUCpQKmAqMCpwKoAqkCqgKrAqwCrQKuAq8CsAKxAq0CrQKyArACrQKvArICswK0ArUCtQK2ArMCtwK4ArkCuQK6ArcCuwK8Ar0CvgK/ArsCwALBAsICuwK9AsMCxALFAsYCxgLHAsQCyALJAsoCywLMAsgCyALNAssCzgLPAtACyALRAtIC0wLUAtUC1gLXAtgC2QLaAtsC3ALdAsgC3gLcAsgCyALKAt4C3wLgAuEC4QLiAt8C4wLkAuUC5QLmAuMC5wLoAukC6gLrAuwC5wLtAu4C5wLvAu0C8ALxAvIC8wL0AvUC9QL2AvMC9wL2AvUC+AL5AvoC+wL8AucC5wLpAvsC/QL+Av8C/wIAA/0CAQMCAwMDBAMFAwEDAQMDAwQDBgMHAwgDCAMJAwYDCgMLAwwDDAMNAwoDDgMPAxADEQMSAxMDFAMVAxYDFwMYAxkDGgMbAxcDHAMdAx4DHgMfAxwDIAMhAyIDIgMjAyADJAMlAyYDJgMnAyQDKAMpAyoDKwMsAy0DLgMvAzADMQMyAzMDNAM1AzYDNgM3AzQDOAM5AzoDOgM7AzgDPAM9Az4DPwNAA0EDQgNDA0QDRQNGA0cDSANJA0oDSgNLA0gDTANNA04DTwNQA0wDUQNSA1MDVANVA1YDVgNXA1QDWANZA1oDWwNcA10DXgNfA2ADYQNiA14DYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA2wDbANxA28DbANuA3EDcgNzA3QDdAN1A3IDdgN3A3gDeQN6A3sDfAN9A34DfgN/A3wDdwOAA3gDgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAONA48DkQOQA48DjwOSA5EDkwOUA5UDlgOXA5gDmQOaA5YDlgOYA5kDmwOcA50DnQOeA5sDnwOgA6EDogOjA6QDpQOmA6cDqAOpA6oDpQOnA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7IDsgO3A7UDuAO3A7IDuQO4A7IDsgO0A7kDugO7A7wDvAO9A7oDvgO/A8ADwQPCA8MDxAPFA8YDxwPIA8kDygPLA8wDyQPNA84DzwPNA8kDyQPQA88D0QPSA9MD0wPUA9ED1QPWA9cD2APZA9UD1QPXA9gD2gPbA9wD3APdA9oD3gPfA+AD4APhA94D4gPjA+QD5QPmA+cD5wPoA+UD6QPqA+sD7APtA+4D"), +"primitive": 3, +"uv_scale": Vector4(0, 0, 0, 0), +"vertex_count": 1007, +"vertex_data": PackedByteArray("AACoQQAAAAAAAKTBAACoQQAAAAAAAKjBAACoQQAAAL8AAKjBAACoQQAAAAAAAAAAAACoQQAAAAAAAKRBAACoQQAAAAAAAKhBAACoQQAAAL8AAKhBEepLQQAAAADOaE1B9VxlwQAAAADepV7BA7JMQQAAAAAIskxBN5B5QQAAAAA6kHlBAgCkQQAAAAAEAKRBGj6BQQAAAABRqYFB4aVewQAAAADipV7B/v+jwQAAAABVDKDBAQCkwQAAAAAAAKTB4qVuwQAAAADkpW7B7o51wQAAAADkpW7BXmNJQQAAAAABuE9BAgAYwQAAAAABAADBEepLQQAAAADOaE1B9VxlwQAAAADepV7BGj6BQQAAAABRqYFBAgCkQQAAAAAEAKRB+H2DQQAAAAA8H4RBRPWCQQAAAAA2nIRBXWB9wQAAAADipW7B/v+jwQAAAABVDKDB7o51wQAAAADkpW7BlrduwQAAAADjpV7BAACkwQAAAAD8/6NBsKxxwAAAAACmMIZBkAMHwQAAAADUVi9BgGETPwAAAABQ5F5BsFaKwAAAAAAs/H5BALIjvwAAAABEe1hBAQAYwQAAAAAAAABBkNUUPwAAAAAg1V5BQIsZwAAAAADVVi9BQCoNPQAAAAAEcFFBALIjvwAAAABEe1hBkgMHwQAAAADUVh9BcJKZwAAAAADVVh9BVml9QQAAAABmf4hB0yx7QQAAAAAWhYlB3vjxQAAAAADWVi9B+M9wQQAAAAAk2oNB2vtCQQAAAADQklVBXmNJQQAAAAABuE9B+qtYQQAAAAAkTG1B3PjxQAAAAADYVh9BRPWCQQAAAAA2nIRBAgCkQQAAAAAEAKRBd1+AQQAAAAA4+YZB3PjxQAAAAADYVh9Bd1+AQQAAAAA4+YZBAgCkQQAAAAAEAKRBVml9QQAAAABmf4hB+qtYQQAAAAAkTG1B/HMOwAAAAABhTO1AfiDAwAAAAAASd3VAwB2qwAAAAAB2AkdA+NzEvwAAAAATEtZAcJKZwAAAAADVVh9BAgAowQAAAAACAABBi5+VwQAAAADipV7BcNV2wQAAAADmpV7BAAAowQAAAAAAAADBH8eAwQAAAACGd/5AsnyHwQAAAAAyCeVAA/yBwQAAAADkzs1AVMB7wQAAAADUYd1Aip+VwQAAAADipW7BhxSCwQAAAADipW7BJoZSwQAAAAAGzStBH8eAwQAAAACGd/5AxoRHwQAAAADgLyBBVMB7wQAAAADUYd1A6I5twQAAAADkpW7BAQCkwQAAAAAAAKTBYH1twQAAAADkpW7BRkhdwQAAAADkpV7BBQCkQQAAAAA0DKBB9FxdwQAAAADnpV7Bq/OjwQAAAAABAKTB9FxdwQAAAADnpV7BBQCkQQAAAAA0DKBB4aVewQAAAADipV7B4qVuwQAAAADkpW7B6I5twQAAAADkpW7BAgCkQQAAAAAEAKRB/MpOQQAAAAAkx0pBN5B5QQAAAAA6kHlBJ+RSQQAAAAD560LBAgAYQQAAAAD8///A3PtCQQAAAACOUlTB4PjxQAAAAABaQiDBwK95QQAAAAACHoLB/MpOQQAAAAA+Hl/BAY90QQAAAAC4MYLBxs2DQQAAAABr6YnBAACkQQAAAAD+/6PBTsiFQQAAAAA12onBV/GFQQAAAAAO2IHBHYZdQQAAAAAaAU/BwK95QQAAAAACHoLBTsiFQQAAAAA12onBAACkQQAAAAD+/6PB+M2MQQAAAAA6pInB/MpOQQAAAAA+Hl/B3C+VQAAAAABaQiDBRhtsQQAAAAA1UoLB3PjxQAAAAABbQjDBPlRTQQAAAABysYLBq/OjwQAAAAABAKTBLs9TQQAAAACGsIrB5YqAQQAAAAB+AorBAY90QQAAAAC4MYLB5YqAQQAAAAB+AorBxs2DQQAAAABr6YnBRhtsQQAAAAA1UoLB6M0QQAAAAABcQjDBZGmLQQAAAACgaSlABQCkQQAAAAA0DKBBauFgQQAAAACoNmZA0ix7QQAAAAA22xbB7j2JQQAAAACQn9c/hQBbQQAAAADgWCpAJ+RSQQAAAAD560LB932DQQAAAADhpiHBJ0mTQQAAAAB7cYHBV/GFQQAAAAAO2IHB+M2MQQAAAAA6pInBoIaTQQAAAACOcInBauFgQQAAAACoNmZAPKpGQQAAAACQ4YFAAAAYQQAAAAAAAABBT1NCQQAAAAA4KUZAhQBbQQAAAADgWCpAwrlcwQAAAADopV7BAAAIQQAAAAD4//9ARkhdwQAAAADkpV7BonltwQAAAADkpW7Bq/OjwQAAAAABAKTBwgBtwQAAAADopW7B3C+VQAAAAABaQiDBAgAIQQAAAAD8///A0H7APwAAAABbQjDB6M0QQAAAAABcQjDBYLJ0QAAAAABbQiDBqsFOwQAAAADkpV7BkAMHwQAAAABaQiDBwrlcwQAAAADopV7BwgBtwQAAAADopW7BxCdhwQAAAADkpW7BAAAIQQAAAAD4//9AYLJ0QAAAAABbQiDBDAzIQAAAAABi8LPAvrYJQAAAAAAUohrALJDEPwAAAADaCk3AuFS0QAAAAADGJM3AfPtBwQAAAADipV7BkQMHwQAAAABbQjDBPVJWwQAAAADipW7BFD8rwQAAAADjpV7B0H7APwAAAABbQjDBFD8rwQAAAADjpW7BPVJWwQAAAADipW7BAACoQQAAAAAAAKhBAACoQQAAAL8AAKhBAACowQAAAL8AAKhBAACkQQAAADMAAKhBAAAANgAAAAAAAKhBAACkwQAAAAAAAKhBAACowQAAAAAAAKhB//+nwQAAAAAAAKRBAACowQAAAAAAAKhBAACowQAAAL8AAKhB//+nwQAAAAAAALC4//+nwQAAAAD//6PBAACowQAAAL8AAKhBAACowQAAgLMAAKjB//+nwQAAAAD//6PBAACowQAAAL8AAKjBAACowQAAgLMAAKjBAACowQAAAL8AAKhBAACoQQAAAL8AAKhBAACoQQAAAL8AAKjBAACowQAAAL8AAKjBAACkwQAAgDIAAKjBAACowQAAgLMAAKjBAACoQQAAAL8AAKjBAAAANgAAAAAAAKjBAACkQQAAAAAAAKjBAACoQQAAAAAAAKjBAACowQAAAL8AAKjBAACoQQAAAEBVValBAACoQQAAQEAAAKxBAACoQQAAAEAAAKhBAACoQQAAQEAAAKhBAACoQQAAAEAAAKxBAACoQQAAAECrqqpBAACoQQAAAEBVValBAACoQQAAQEAAAKxBAACowQAAQEAAAKxBAACkwQAAQEAAAKhBAACowQAAQEAAAKhBAACkwQAAQEBiGKRB0BekwQAAQEDQF6RBAACowQAAQEAAAKRBAACkwQAAQEAAAKRBAACkQQAAQEAAAKRBAACkwQAAQEBWDKRBYhikwQAAQEAAAKRBGBikwQAAQEAMDKRBAACowQAAQEAAAKRBAACkQQAAQEAAAKhBAACoQQAAQEAAAKhBAACkwQAAQEBiGKRB0BekwQAAQEDQF6RBAACoQQAAAEAAAKxBAACoQQAAAAAAAKxBAACowQAAAAAAAKxBAACoQQAAQEAAAKxBAACowQAAAEAAAKxBAACowQAAQEAAAKxBAACowQAAAEBVValBAACowQAAQEAAAKhBAACowQAAAEAAAKxBAACowQAAQEAAAKxBAACowQAAAEAAAKhBAACowQAAAEBVValBAACkQQAAADMAAKhBAAAANgAAAAAAAKhBAACowQAAAAAAAKxBBgWkQQAAgCohDKhBAACoQQAAAAAAAKhBAACkQQAAADMAAKhBAACowQAAAAAAAKxBAACowQAAAAAAAKxBAACoQQAAAAAAAKxB7CulQQAAAAAU1KpBAACoQQAAAAAAAKhBBgWkQQAAgCohDKhBAACowQAAAAAAAKxB7CulQQAAAAAU1KpBAACoQQAAAAAAAKhBAACowQAAAAAAAKxBAAAANgAAAAAAAKhB7CulwQAAAAAU1KpBAACkwQAAAAAAAKhBAACmwQAAAAAAAKpB/v+jwdy2PUAAAKRBAACkQYBJEj0AAKRBAACkwQAAQEAAAKRBAACkQQAAQEAAAKRBAgCkQQAAAAAEAKRBAACkQYBJEj0AAKRB/v+jwdy2PUAAAKRBAACkwQAAAAD8/6NBAgCkQQAAAAAEAKRB/v+jwdy2PUAAAKRBAACoQQAAAEBVVanBAACoQQAAQEAAAKjBAACoQQAAAEAAAKzBAACoQQAAQEAAAKzBAACoQQAAAEAAAKjBAACoQQAAAEBVVanBAACkwQAAQEAAAKjBAACkQQAAQEAAAKTBAACkwQAAQEAAAKTBAACowQAAQEAAAKjBAACowQAAQEAAAKzBYhikQQAAQEAAAKTB0BekQQAAQEDRF6TBAACoQQAAQEAAAKTBAACkQQAAQEBiGKTBAACoQQAAQEAAAKzBAACkQQAAQED//6fBAACoQQAAQEAAAKjBAACkQQAAQEBiGKTB0BekQQAAQEDRF6TBAACkwUlJEj3//6PBAACkQdu2PUAAAKTBq/OjwQAAAAABAKTBAACkwUlJEj3//6PBq/OjwQAAAAABAKTBAQCkwQAAAAAAAKTBAACkQQAAAAD+/6PBq/OjwQAAAAABAKTBAACkQdu2PUAAAKTBAACkQQAAQEAAAKTBYhikQQAAQEAAAKTBAACoQQAAQEAAAKTBAACkQQAAQEAAAKTBAACkQdu2PUAAAKTBAACkwUlJEj3//6PBAACkwQAAQEAAAKTBAACkwUlJEj3//6PB//+nwQAAAEBWVanBAACowQAAQEAAAKzB//+nwQAAAEAAAKjBAACowQAAQEAAAKjBAACowQAAAEAAAKzBAACowQAAAECrqqrBAACowQAAAECrqqrB//+nwQAAAEBWVanBAACoQQAAAAAAAKzBAAAANgAAAAAAAKjB7CulQQAAAAAU1KrBAACkQQAAAAAAAKjBAACmQQAAAAAAAKrBAACkwQAAgDIAAKjBAAAANgAAAAAAAKjBAACoQQAAAAAAAKzBBgWkwQD3/LIhDKjBAACowQAAgLMAAKjBAACkwQAAgDIAAKjBAACoQQAAAAAAAKzBAACoQQAAAAAAAKzBAACowQAAAAAAAKzB7CulwQD2FbIU1KrBAACowQAAAAAAAKzBAACowQAAgLMAAKjB7CulwQD2FbIU1KrBBgWkwQD3/LIhDKjBAACoQQAAAAAAAKzB7CulwQD2FbIU1KrBAACowQAAgLMAAKjBAACoQQAAAEAAAKzBAACoQQAAQEAAAKzBAACowQAAQEAAAKzBAACoQQAAAAAAAKzBAACowQAAAEAAAKzBAACowQAAAAAAAKzBAACsQQAAAEAAAKjBAACsQQAAAAAAAKjBAACsQQAAQEAAAKhBAACsQQAAQEAAAKjBAACsQQAAAEAAAKhBAACsQQAAAAAAAKhBAACoQQAAQEAAAKhBAACkQQAAQEAAAKhBAACoQQAAQEAAAKRBAACsQQAAQEAAAKhBAACkQQAAQEAAAKRBAACkQQAAQEAAAKTBYhikQQAAQEAAAKTB0BekQQAAQEDRF6TBAACkQQAAQEBiGKTBAACkQQAAQED//6fBAACoQQAAQEAAAKjBAACsQQAAQEAAAKjBAACoQQAAQEAAAKTBVVWpQf3//z8AAKhBAACsQQAAQEAAAKhBq6qqQf///z8AAKhBq6qqQf///z8AAKhBAACsQQAAAEAAAKhBAACoQQAAAEAAAKhBAACoQQAAQEAAAKhBVVWpQf3//z8AAKhBAACkQQAAQEAAAKTBAACkQQAAQEAAAKRBAACkQYBJEj0AAKRBAACkQdu2PUAAAKTBAACkQdu2PUAAAKTBBQCkQQAAAAA0DKBBAACkQQAAAAD+/6PBAACkQdu2PUAAAKTBAgCkQQAAAAAEAKRBBQCkQQAAAAA0DKBBAACkQYBJEj0AAKRBAgCkQQAAAAAEAKRBAACkQdu2PUAAAKTBAACsQQAAAAAAAKhBAACsQQAAAAAAAKjBE9SqQQAAAADuK6VBAACoQQAAAAAAAKRBAACqQQAAAAAAAKZBAACoQQAAAAAAAAAAFNSqQQAAAADsK6XBAACqQQAAAAAAAKbBAACoQQAAAAAAAKTBVVWpQf///z8AAKjBAACoQQAAQEAAAKjBAACoQQAAAEAAAKjBAACsQQAAAEAAAKjBAACsQQAAQEAAAKjBAACkwUlJEj3//6PBAACkwQAAQEAAAKRBAACkwQAAQEAAAKTBAACkwQAAQEAAAKRBAACkwQAAQEBiGKRBAACkwQAAQEBWDKRB/v+jwdy2PUAAAKRBAACkwQAAQEAAAKRBAACkwUlJEj3//6PBAACkwQAAQEAAAKhB/v+jwdy2PUAAAKRB/v+jwQAAAABVDKDBAACkwQAAAAD8/6NB/v+jwdy2PUAAAKRBAQCkwQAAAAAAAKTB/v+jwQAAAABVDKDBAQCkwQAAAAAAAKTB/v+jwdy2PUAAAKRBAACkwUlJEj3//6PBAACowQAAQEAAAKhBAACswQAAQEAAAKhBAACowQAAQEAAAKRBAACkwQAAQEAAAKhBAACswQAAQEAAAKjB0BekwQAAQEDQF6RBGBikwQAAQEAMDKRBYhikwQAAQEAAAKRBAACkwQAAQEBWDKRBAACkwQAAQEBiGKRBGBikwQAAQEAMDKRBAACkwQAAQEAAAKRBYhikwQAAQEAAAKRB0BekwQAAQEDQF6RBAACowQAAQEAAAKjBAACkwQAAQEAAAKjBAACowQAAQEAAAKTBAACkwQAAQEAAAKTBVVWpwf///z8AAKhBAACowQAAQEAAAKhBAACowQAAAEAAAKhBAACswQAAAEAAAKhBAACswQAAQEAAAKhBAACswQAAAEAAAKhBAACswQAAMDQAAKhBAACswQAAQEAAAKjBAACswQAAQEAAAKhBAACswQAAAEAAAKjBAACswQAAAAAAAKjBAACqwQAAAAAAAKZBAACswQAAMDQAAKhBAACowQAAAAAAAKhBAACowQAAAAAAAKhB//+nwQAAAAAAAKRBAACqwQAAAAAAAKZB//+nwQAAAAAAALC4AACswQAAMDQAAKhBFNSqwQAAAADsK6VBAACqwQAAAAAAAKZB//+nwQAAAAAAAKRBFNSqwQAAAADsK6VBFNSqwQAAAADsK6VBAACswQAAMDQAAKhBAACqwQAAAAAAAKZBAACqwQAAICkAAKbB//+nwQAAAAD//6PBAACowQAAgLMAAKjBAACswQAAAAAAAKjBAACswQAAAAAAAKjBAACswQAAMDQAAKhBFNSqwQAAAADuK6XB//+nwQAAAAD//6PBAACqwQAAICkAAKbBAACswQAAAAAAAKjBFNSqwQAAAADuK6XB//+nwQAAAAD//6PB//+nwQAAAAAAALC4//+nwQAAAEAAAKjBAACowQAAQEAAAKjBAACswQAAQEAAAKjBVVWpwQAAAEAAAKjBVVWpwQAAAEAAAKjBqqqqwQIAAEAAAKjBqqqqwQIAAEAAAKjBAACswQAAAEAAAKjBAACsQQAAAAAAAKhBFNSqQQAAAAAU1KpBFNSqQQAAAEAU1KpBAACsQQAAAEAAAKhBFNSqQQAAAAAU1KpBAACsQQAAAAAAAKhBAACoQQAAAAAAAKhBq6qqQf///z8AAKhBAACsQQAAAEAAAKhBFNSqQQAAAEAU1KpBVVWpQf3//z8AAKhBAACoQQAAAEAAAKhBAACoQQAAAAAAAKxBAACoQQAAAEAAAKxBAACoQQAAAAAAAKxBAACoQQAAAEBVValBAACoQQAAAEAAAKhBFNSqQQAAAEAU1KpBAACoQQAAAECrqqpBAACoQQAAAEAAAKxB7CulQQAAAAAU1KpBBgWkQQAAgCohDKhB7CulQQAAAAAU1KpBAACoQQAAAAAAAKhBAACkQQAAADMAAKhBAACqQQAAAAAAAKZBE9SqQQAAAADuK6VBAACoQQAAAAAAAKRBAACoQQAAAAAAAKhBAACqQQAAAAAAAKZBAACoQQAAAAAAAKhBAACsQQAAAAAAAKhBE9SqQQAAAADuK6VBAACqQQAAAAAAAKbBFNSqQQAAAADsK6XBAACsQQAAAAAAAKjBAACoQQAAAAAAAKjBAACqQQAAAAAAAKbBAACoQQAAAAAAAKjBAACoQQAAAAAAAKTBFNSqQQAAAADsK6XBAACmQQAAAAAAAKrB7CulQQAAAAAU1KrBAACkQQAAAAAAAKjBAACoQQAAAAAAAKjBAACmQQAAAAAAAKrBAACoQQAAAAAAAKjBAACoQQAAAAAAAKzB7CulQQAAAAAU1KrBAACoQQAAAAAAAKzBFNSqQQAAAAAU1KrBFNSqQQAAAEAU1KrBAACoQQAAAEAAAKzBFNSqQQAAAAAU1KrBAACoQQAAAEBVVanBAACoQQAAAEAAAKzBFNSqQQAAAEAU1KrBAACoQQAAAEAAAKjBFNSqQQAAAAAU1KrBAACsQQAAAAAAAKjBAACsQQAAAEAAAKjBFNSqQQAAAEAU1KrBAACsQQAAAAAAAKjBVVWpQf///z8AAKjBAACoQQAAAEAAAKjBFNSqQQAAAEAU1KrBFNSqQQAAAEAU1KrBAACsQQAAAEAAAKjBVVWpQf///z8AAKjBAACqwQAAICkAAKbBFNSqwQAAAADuK6XB//+nwQAAAAD//6PBAACowQAAgLMAAKjBAACqwQAAICkAAKbBAACowQAAgLMAAKjBAACswQAAAAAAAKjBFNSqwQAAAADuK6XBAACswQAAAAAAAKjBFNSqwQAAAAAU1KrBFNSqwQAAAEAU1KrBAACswQAAAEAAAKjBFNSqwQAAAAAU1KrBAACswQAAAAAAAKjBAACowQAAgLMAAKjBqqqqwQIAAEAAAKjBAACswQAAAEAAAKjBFNSqwQAAAEAU1KrBVVWpwQAAAEAAAKjBFNSqwQAAAEAU1KrB//+nwQAAAEAAAKjBVVWpwQAAAEAAAKjBAACowQAAAAAAAKzBAACowQAAAEAAAKzBAACowQAAAAAAAKzBFNSqwQAAAAAU1KrBAACowQAAgLMAAKjB//+nwQAAAEBWVanB//+nwQAAAEAAAKjBFNSqwQAAAEAU1KrBAACowQAAAECrqqrBAACowQAAAEAAAKzB7CulwQD2FbIU1KrBAACowQAAAAAAAKzBAACowQAAgLMAAKjBBgWkwQD3/LIhDKjB7CulwQD2FbIU1KrBAACowQAAgLMAAKjBAACkwQAAgDIAAKjBAACmwQAAAAAAAKpB7CulwQAAAAAU1KpBAACkwQAAAAAAAKhBAACowQAAAAAAAKhBAACmwQAAAAAAAKpBAACowQAAAAAAAKhBAACowQAAAAAAAKxB7CulwQAAAAAU1KpBAACowQAAAAAAAKxBFNSqwQAAAAAU1KpBFNSqwQAAAEAU1KpBAACowQAAAEAAAKxBFNSqwQAAAAAU1KpBAACowQAAAEBVValBAACowQAAAEAAAKxBFNSqwQAAAEAU1KpBAACowQAAAEAAAKhBAACswQAAMDQAAKhBAACswQAAAEAAAKhBAACswQAAMDQAAKhBFNSqwQAAAAAU1KpBAACowQAAAAAAAKhBVVWpwf///z8AAKhBAACowQAAAEAAAKhBFNSqwQAAAEAU1KpBFNSqwQAAAEAU1KpBAACswQAAAEAAAKhBVVWpwf///z8AAKhBAACqwQAAAAAAAKZBFNSqwQAAAADsK6VBAACswQAAMDQAAKhBAACowQAAAAAAAKhBAACqwQAAAAAAAKZBAACowQAAAAAAAKhB//+nwQAAAAAAAKRBFNSqwQAAAADsK6VBAAAYwQAAQEAAAABBAAAYwQAAQEAAAADBAgAYwQAAAAABAADBAQAYwQAAAAAAAABBAAAYwQAAQEAAAABBAAAowQAAQEAAAABBAAAowQAAQEAAAADBAAAYwQAAQEAAAADBAAAYwQAAQEAAAABBAQAYwQAAAAAAAABBAgAowQAAAAACAABBAAAowQAAQEAAAABBAAAowQAAQEAAAADBAAAowQAAQEAAAABBAgAowQAAAAACAABBAAAowQAAAAAAAADBAgAYwQAAAAABAADBAAAYwQAAQEAAAADBAAAowQAAQEAAAADBAAAowQAAQEAAAADBAAAowQAAAAAAAADBAgAYwQAAAAABAADBAAAYQQAAQEAAAABBAAAYQQAAQEAAAADBAgAYQQAAAAD8///AAAAYQQAAAAAAAABBAAAYQQAAQEAAAABBAAAIQQAAQEAAAABBAAAIQQAAQEAAAADBAAAYQQAAQEAAAADBAAAYQQAAQEAAAABBAAAYQQAAAAAAAABBAAAIQQAAAAD4//9AAAAIQQAAQEAAAABBAAAIQQAAQEAAAADBAAAIQQAAQEAAAABBAAAIQQAAAAD4//9AAgAIQQAAAAD8///AAgAYQQAAAAD8///AAAAYQQAAQEAAAADBAAAIQQAAQEAAAADBAgAIQQAAAAD8///AkQMHwQAAQEDWVi9B3vjxQAAAQEDWVi9B3vjxQAAAAADWVi9BQIsZwAAAAADVVi9BkAMHwQAAAADUVi9BkQMHwQAAQEDWVi9BkQMHwQAAQEDWVh9B3fjxQAAAQEDWVh9B3vjxQAAAQEDWVi9BkQMHwQAAQEDWVi9BkAMHwQAAAADUVi9BkgMHwQAAAADUVh9BkQMHwQAAQEDWVh9B3fjxQAAAQEDWVh9BkQMHwQAAQEDWVh9BkgMHwQAAAADUVh9BcJKZwAAAAADVVh9B3PjxQAAAAADYVh9B3fjxQAAAQEDWVh9BkgMHwQAAAADUVh9B3vjxQAAAAADWVi9B3vjxQAAAQEDWVi9B3fjxQAAAQEDWVh9B3fjxQAAAQEDWVh9B3PjxQAAAAADYVh9B3vjxQAAAAADWVi9BkQMHwQAAQEBbQiDB3vjxQAAAQEBbQiDB4PjxQAAAAABaQiDBYLJ0QAAAAABbQiDBkAMHwQAAAABaQiDB3C+VQAAAAABaQiDBkQMHwQAAQEBbQiDBkQMHwQAAQEBbQjDB3fjxQAAAQEBbQjDB3vjxQAAAQEBbQiDBkQMHwQAAQEBbQiDBkAMHwQAAAABaQiDBkQMHwQAAAABbQjDBkQMHwQAAQEBbQjDB3fjxQAAAQEBbQjDBkQMHwQAAQEBbQjDBkQMHwQAAAABbQjDB6M0QQAAAAABcQjDB3PjxQAAAAABbQjDB0H7APwAAAABbQjDB6M0QQAAAAABcQjDB3fjxQAAAQEBbQjDB0H7APwAAAABbQjDB4PjxQAAAAABaQiDB3vjxQAAAQEBbQiDB3fjxQAAAQEBbQjDB3PjxQAAAAABbQjDBip+VwQAAQEDjpV7BFD8rwQAAQEDjpV7BFD8rwQAAAADjpV7BcNV2wQAAAADmpV7Bi5+VwQAAAADipV7BlrduwQAAAADjpV7Bip+VwQAAQEDjpV7B9VxlwQAAAADepV7BlrduwQAAAADjpV7B4aVewQAAAADipV7B9VxlwQAAAADepV7B9FxdwQAAAADnpV7B4aVewQAAAADipV7Bip+VwQAAQEDjpV7Bip+VwQAAQEDjpV7BRkhdwQAAAADkpV7B9FxdwQAAAADnpV7BwrlcwQAAAADopV7BRkhdwQAAAADkpV7Bip+VwQAAQEDjpV7BqsFOwQAAAADkpV7BwrlcwQAAAADopV7BfPtBwQAAAADipV7Bip+VwQAAQEDjpV7Bip+VwQAAQEDjpW7BFD8rwQAAQEDjpW7BFD8rwQAAQEDjpV7Bip+VwQAAQEDjpV7Bi5+VwQAAAADipV7Bip+VwQAAAADipW7Bip+VwQAAQEDjpW7BFD8rwQAAQEDjpW7Bip+VwQAAQEDjpW7Bip+VwQAAAADipW7BPVJWwQAAAADipW7BFD8rwQAAAADjpW7BFD8rwQAAQEDjpW7BxCdhwQAAAADkpW7BPVJWwQAAAADipW7BwgBtwQAAAADopW7BFD8rwQAAQEDjpW7BonltwQAAAADkpW7BwgBtwQAAAADopW7B6I5twQAAAADkpW7BonltwQAAAADkpW7BFD8rwQAAQEDjpW7B4qVuwQAAAADkpW7B7o51wQAAAADkpW7BXWB9wQAAAADipW7B7o51wQAAAADkpW7BFD8rwQAAQEDjpW7BhxSCwQAAAADipW7BXWB9wQAAAADipW7BFD8rwQAAAADjpV7BFD8rwQAAQEDjpV7BFD8rwQAAQEDjpW7BFD8rwQAAAADjpW7BsnyHwQAAQEAzCeVAJIZSwQAAQEAFzStBJoZSwQAAAAAGzStBH8eAwQAAAACGd/5AsnyHwQAAAAAyCeVAsnyHwQAAQEAzCeVAAvyBwQAAQEDmzs1AxIRHwQAAQEDfLyBBJIZSwQAAQEAFzStBsnyHwQAAQEAzCeVAsnyHwQAAAAAyCeVAA/yBwQAAAADkzs1AAvyBwQAAQEDmzs1AxIRHwQAAQEDfLyBBAvyBwQAAQEDmzs1AA/yBwQAAAADkzs1AVMB7wQAAAADUYd1AxIRHwQAAAADfLyBBxIRHwQAAQEDfLyBBxIRHwQAAQEDfLyBBA/yBwQAAAADkzs1AVMB7wQAAAADUYd1AJoZSwQAAAAAGzStBJIZSwQAAQEAFzStBxYRHwQAAQEDgLyBBxIRHwQAAQEDfLyBBxIRHwQAAAADfLyBBfiDAwAAAQEAUd3VA+HMOwAAAQEBiTO1A/HMOwAAAAABhTO1AfiDAwAAAAAASd3VAfiDAwAAAQEAUd3VAvx2qwAAAQEB5AkdA+tzEvwAAQEAUEtZA+HMOwAAAQEBiTO1AfiDAwAAAQEAUd3VAfiDAwAAAAAASd3VAwB2qwAAAAAB2AkdAvx2qwAAAQEB5AkdA+tzEvwAAQEAUEtZAvx2qwAAAQEB5AkdAwB2qwAAAAAB2AkdAwB2qwAAAAAB2AkdA+NzEvwAAAAATEtZA+tzEvwAAQEAUEtZA/HMOwAAAAABhTO1A+HMOwAAAQEBiTO1A+tzEvwAAQEAUEtZA+tzEvwAAQEAUEtZA+NzEvwAAAAATEtZA/HMOwAAAAABhTO1AvbYJQAAAQEASohrADAzIQAAAQEBi8LPADAzIQAAAAABi8LPAvrYJQAAAAAAUohrAvbYJQAAAQEASohrAKpDEPwAAQEDZCk3AuFS0QAAAQEDFJM3ADAzIQAAAQEBi8LPAvbYJQAAAQEASohrAvrYJQAAAAAAUohrALJDEPwAAAADaCk3ALJDEPwAAAADaCk3AKpDEPwAAQEDZCk3AvbYJQAAAQEASohrAuFS0QAAAQEDFJM3AKpDEPwAAQEDZCk3ALJDEPwAAAADaCk3ALJDEPwAAAADaCk3AuFS0QAAAAADGJM3AuFS0QAAAQEDFJM3ADAzIQAAAAABi8LPADAzIQAAAQEBi8LPAuFS0QAAAQEDFJM3AuFS0QAAAAADGJM3Aq6xxwAAAQEClMIZBnNUUPwAAQEAh1V5BkNUUPwAAAAAg1V5BgGETPwAAAABQ5F5BsKxxwAAAAACmMIZBq6xxwAAAQEClMIZBkNUUPwAAAAAg1V5BgGETPwAAAABQ5F5Bq6xxwAAAQEClMIZBtFaKwAAAQEAt/H5BACoNPQAAQEAEcFFBnNUUPwAAQEAh1V5Bq6xxwAAAQEClMIZBsKxxwAAAAACmMIZBsFaKwAAAAAAs/H5BsFaKwAAAAAAs/H5BtFaKwAAAQEAt/H5Bq6xxwAAAQEClMIZBACoNPQAAQEAEcFFBtFaKwAAAQEAt/H5BsFaKwAAAAAAs/H5BALIjvwAAAABEe1hBQCoNPQAAAAAEcFFBACoNPQAAQEAEcFFBsFaKwAAAAAAs/H5BALIjvwAAAABEe1hBkNUUPwAAAAAg1V5BnNUUPwAAQEAh1V5BACoNPQAAQEAEcFFBACoNPQAAQEAEcFFBQCoNPQAAAAAEcFFBkNUUPwAAAAAg1V5B3PtCQQAAQEDRklVB0ix7QQAAQEAWhYlB0yx7QQAAAAAWhYlB+qtYQQAAAAAkTG1B2vtCQQAAAADQklVB+M9wQQAAAAAk2oNB3PtCQQAAQEDRklVB+8pOQQAAQEAjx0pB+X2DQQAAQEA+H4RB0ix7QQAAQEAWhYlBA7JMQQAAAAAIskxB/MpOQQAAAAAkx0pB3PtCQQAAQEDRklVBEepLQQAAAADOaE1BA7JMQQAAAAAIskxB3PtCQQAAQEDRklVBXmNJQQAAAAABuE9BEepLQQAAAADOaE1B3PtCQQAAQEDRklVB2vtCQQAAAADQklVB+8pOQQAAQEAjx0pB+X2DQQAAQEA+H4RB+8pOQQAAQEAjx0pB/MpOQQAAAAAkx0pBGj6BQQAAAABRqYFB+H2DQQAAAAA8H4RB+X2DQQAAQEA+H4RB+X2DQQAAQEA+H4RBN5B5QQAAAAA6kHlBGj6BQQAAAABRqYFB+X2DQQAAQEA+H4RB/MpOQQAAAAAkx0pBN5B5QQAAAAA6kHlB0yx7QQAAAAAWhYlB0ix7QQAAQEAWhYlB+X2DQQAAQEA+H4RBVml9QQAAAABmf4hBd1+AQQAAAAA4+YZBRPWCQQAAAAA2nIRB+X2DQQAAQEA+H4RB+H2DQQAAAAA8H4RBRPWCQQAAAAA2nIRB3PtCQQAAQECPUlTB0ix7QQAAQEA22xbB0ix7QQAAAAA22xbBJ+RSQQAAAAD560LB3PtCQQAAAACOUlTB3PtCQQAAQECPUlTB+8pOQQAAQEA9Hl/B+X2DQQAAQEDjpiHB0ix7QQAAQEA22xbB3PtCQQAAQECPUlTB3PtCQQAAAACOUlTB/MpOQQAAAAA+Hl/B/MpOQQAAAAA+Hl/B+8pOQQAAQEA9Hl/B3PtCQQAAQECPUlTB+X2DQQAAQEDjpiHB+8pOQQAAQEA9Hl/B/MpOQQAAAAA+Hl/BHYZdQQAAAAAaAU/B932DQQAAAADhpiHB+X2DQQAAQEDjpiHBHYZdQQAAAAAaAU/B0ix7QQAAAAA22xbB0ix7QQAAQEA22xbB+X2DQQAAQEDjpiHB+X2DQQAAQEDjpiHB932DQQAAAADhpiHB0ix7QQAAAAA22xbBPVRTQQAAQEBxsYLBJ0mTQQAAQEB8cYHBJ0mTQQAAAAB7cYHBRhtsQQAAAAA1UoLBPlRTQQAAAABysYLBAY90QQAAAAC4MYLBwK95QQAAAAACHoLBV/GFQQAAAAAO2IHBPVRTQQAAQEBxsYLBLs9TQQAAQECEsIrBoIaTQQAAQECPcInBJ0mTQQAAQEB8cYHBPVRTQQAAQEBxsYLBPlRTQQAAAABysYLBLs9TQQAAAACGsIrBLs9TQQAAAACGsIrBLs9TQQAAQECEsIrBPVRTQQAAQEBxsYLBoIaTQQAAQECPcInBLs9TQQAAQECEsIrBLs9TQQAAAACGsIrB+M2MQQAAAAA6pInBoIaTQQAAAACOcInBoIaTQQAAQECPcInBoIaTQQAAQECPcInBTsiFQQAAAAA12onB+M2MQQAAAAA6pInBxs2DQQAAAABr6YnBTsiFQQAAAAA12onB5YqAQQAAAAB+AorBLs9TQQAAAACGsIrBJ0mTQQAAAAB7cYHBJ0mTQQAAQEB8cYHBoIaTQQAAQECPcInBoIaTQQAAAACOcInBPKpGQQAAQECO4YFAZWmLQQAAQECmaSlAZGmLQQAAAACgaSlAauFgQQAAAACoNmZAPKpGQQAAAACQ4YFAPKpGQQAAQECO4YFATlNCQQAAQEA8KUZA7j2JQQAAQECKn9c/ZWmLQQAAQECmaSlAPKpGQQAAQECO4YFAPKpGQQAAAACQ4YFAT1NCQQAAAAA4KUZATlNCQQAAQEA8KUZA7j2JQQAAQECKn9c/TlNCQQAAQEA8KUZAT1NCQQAAAAA4KUZAhQBbQQAAAADgWCpA7j2JQQAAAACQn9c/7j2JQQAAQECKn9c/T1NCQQAAAAA4KUZAZGmLQQAAAACgaSlAZWmLQQAAQECmaSlA7j2JQQAAQECKn9c/7j2JQQAAQECKn9c/7j2JQQAAAACQn9c/ZGmLQQAAAACgaSlA//8AgP9/AYD//wCA/38BgP//AID/fwGA//8AgP9/AYD//wCA/38BgP//AID/fwGA//8AgP9/AYAAgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP/////4/wCA//////7/AID/////+/8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID//////v8AgP///////wCA////////AID///////8AgP/////9/wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID//////v8AgP///////wCA//////j/AID//wAA9P8AgP/////t/wCA//////z/AID//wAA/v8AgP//AAD+/wCA//8AAP7/AID//////f8AgP/////9/wCA//////3/AID//////f8AgP/////9/wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP//AAD1/wCA////////AID//wAA/f8AgP//AAD5/wCA//8AAP3/AID/////+f8AgP//AAD+/wCA//////n/AID//wAA+f8AgP//AAD+/wCA////////AID//wAA/v8AgP///////wCA////////AID///////8AgP///////wCA//////7/AID///////8AgP///////wCA//8AAPv/AID///////8AgP/////+/wCA//////7/AID//////v8AgP/////+/wCA//////7/AID//////v8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA//8AAP7/AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP//AAD9/wCA////////AID///////8AgP/////b/wCA/////+P/AID/////2/8AgP/////b/wCA/////9v/AID/////2/8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA/////////3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAAACA+n8BgAAAAID6fwGACQAJgPV/BYAJAAmA9X8FgAkACYD1fwWAAAAAgP9/AYAAAACA/38BgACAAAD/////AIAAAP////8AgAAA/////wCAAAD//////////wAAAMD/////AAAAwP////8AAADA/////wAAAMD/////AAAAwP////8AAADA/////wAAAMD//wCA/38BgP//AID/fwGA//8AgP9/AYD//wCA/38BgP//AID/fwGA//8AgP9/AYD//wCA/38BgACA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID/////+P8AgP///////wCA//////3/AID/////9P8AgP/////9/wCA//////3/AID///////8AgP///////wCA////////AID//wAA+v//f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAgAAA///9/wCAAAD///3/AIAAAP///f8AgAAAAAD6/wCAAAAAAPr/AIAAAAAA+v8AgAAAAAD6/wCAAAD//3j+AIAAAP//nP8AgAAA///r/gCAAAD/////AIAAAAAAWf8AgAAAAABZ/wCAAAAAAFn/AIAAAAAAWf8AgAAA/////wCAAAD/////AIAAAP////8AgAAA/////wCAAAD//////////wAAAMD/////AAAAwP////8AAADA/////wAAAMD5/wAAAAAAwPn/AAAAAADA+f8AAAAAAMD+//7/AAAAwP7//v8AAADA/v/+/wAAAMD//wCA/38BgP//AID/fwGA//8AgP9/AYD//wCA/38BgP//AID/fwGA//8AgP9/AYAAgP///////wCA////////AID///////8AgP///////wCA////////AID//wAA/v8AgP///////wCA//8AAP7/AID///////8AgP///////wCA////////AID///////8AgP///////wCA/////////3/8fxsADsD/f/x/GwAOwP9//H8bAA7ACYD9fyYADsAJgP1/JgAOwAmA/X8mAA7A/3//fwAAAMD/f/9/AAAAwP9//38AAADA/////////7//////////v/////////+//3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwAAAAID/fwGAAAAAgP9/AYAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAgAAA/////wCAAAD/////AIAAAP////8AgAAA/////wCAAAD/////AIAAAP///v8AgAAA///+/wCAAAD///7/AIAAAAAA/f8AgAAAAAD9/wCAAAAAAP3/AIAAAAAA/f8AgAAA//94/gCAAAD//3j+AIAAAP//eP4AgAAA/v///wCAAAD+////AIAAAP7///8AgAAAAABZ/wCAAAAAAFn/AIAAAAAAWf8AgAAAAABZ//////8AAADA/////wAAAMD/////AAAAwP////8AAADA/////wAAAMD/////AAAAwP//AID/fwGA//8AgP9/AYD//wCA/38BgP//AID/fwGA//8AgP9/AYD//wCA/38BgACA////////AID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID//wAA/v8AgP///////wCA////////AID///////8AgP///////wCA/////////3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwAAAAIAAgAGAAAAAgP9/AYAAAACA/38BgAAAAIAAgAGAAAAAgP5/AYAAAACA/n8BgAAAAID+fwGABAD5fwiAA4AEAPl/CIADgAQA+X8IgAOAAgD7fwOABYACAPt/A4AFgAIA+38DgAWAAIAAAP////8AgAAA///+/wCAAAD/////AIAAAP////8AgAAA/////wCAAAD/////AIAAAP////8AgAAA///9/wCAAAD//////////wAAAMD/////AAAAwP////8AAADA/////wAAAMD/////AAAAwP//AID/fwGA//8AgP9/AYD//wCA/38BgP////////+//////////7//////////v/v/A4ADgAKA+/8DgAOAAoD7/wOAA4ACgP////////+//v//f/9/AYD+//9//38BgP7//3//fwGA+f8FgASABID5/wWABIAEgPn/BYAEgASA/f/9f/x/AYD9//1//H8BgP3//X/8fwGAAID///////8AgP///////wCA////////AID///////8AgP///////wCA////////AID//wAA/f8AgP//AAD+/wCA/////67+AID/////df8AgP/////F/wCA/////zP/AID/////vv8AgP///////wCA////////AID///////8AgP///////wCA/////////3//fwAAAMD/f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwAAAAID/fwGAAAAAgP9/AYAAAACA/38BgAAAAID/fwGAAAAAgP9/AYAAAACA/38BgACAAAD+/wGAAIAAAP7/AYAAgAAA/v8BgACAAAD/////AIAAAP////8AgAAA/////wCAAAD/////AIAAAP////8AgAAA/////wCAAAD///f/AIAAAP///v8AgAAA///7/wCAAAD+/wiAAIAAAP7/CIAAgAAA/v8IgACAAAD+/wGAAIAAAP7/AYAAgAAA/v8BgACAAAD+/wGAAIAAAAAA/f8AgAAAAAD9/wCAAAAAAP3/AIAAAAAA/f8AgAAA/////wCAAAD/////AIAAAP////8AgAAA/////wCAAAD//////////wAAAMD/////AAAAwP////8AAADA/////wAAAMD/////AAAAwP////8AAADA/////wAAAMD/////AAAAwIHa/3+CWv+/Kbf/fyg3/7/UyP9/1Uj/v4Ha/3+CWv+/AIAAAP///98AgAAA//9A7QCAAAD//73S/3/+/4Ja/7//f/7/glr/v/9//v+CWv+//3/+/4Ja/7//f/7/glr/v3yl/399Jf+/fKX/f30l/78AgAAA////vwCA//99Jf+/AID//30l/78AgP//fSX/vwCA//99Jf+/AID//30l/78AgAAAgdr/vwCAAAB8pf+/AIAAAHyl/78AgAAAfKX/vwCAAAB8pf+/AIAAAIHaAMAAgAAAgdoAwACAAACB2gDAAIAAAIHaAMAAgAAAfKUAwACAAAB8pQDAAIAAAHylAMAAgAAAfaUAwACAAAD//0DtAIAAAP//QO0AgAAA//9A7QCAAAD//0DtAIAAAP//vdIAgAAA//+90gCAAAD//73SAIAAAP//vdIAgAAA//9B7QCAAAD//0HtAIAAAP//Qe0AgAAA//9B7QCAAAD//77SAIAAAIHaAMAAgAAA/v8AwACAAAD//77S//+B2oHa/7///ym3Kbf/v///1cjUyP+///+B2oHa/78AgAAA/78AwACA//8AAL7SAID//wAAvtIAgP//AAC+0gCA//8AAL7S//8ptwAAa+T//3ylAABB7f//fKUAAEHt///VyAAAldsAgAAAfKUAwP9//v8AAEHt/3/+/wAAQe3/f/7/AABB7f9//v8AAD/t/3/+/wAAP+3/f/7/AAA/7QCAAACB2v+/AIAAAIHa/78AgAAAgdr/vwCAAACB2v+/AIAAAHyl/78AgAAAfKX/vwCAAAB8pf+/AIAAAHyl/78AAHyl//9A7QAA1cj//5TbAAApt///auQAAHyl//9A7QCAAAD//0HtAIAAAP//Qe0AgAAA//9B7f9//v+CWgDA/3/+/4JaAMD/f/7/gloAwP9//v+CWgDAAID//4FaAMAAgP//gVoAwACA//+BWgDAAACB2v//vdIAAIHa//+90gCAAAD//77SAIAAAP//vtIAgAAA//++0gCA//99JQDAAID//30lAMAAgP//fSUAwACA//99JQDAAID//30lAMAAgAAAgdoAwACAAACB2gDAAIAAAIHaAMAAgAAAfKUAwACAAAB8pQDAAIAAAHylAMAAgAAAfKUAwACAAAD//0DtAIAAAP//QO0AgAAA//9A7QCAAAD//0DtAIAAAP//vdIAgAAA/v//vwCAAAD+//+/AIAAAP//vdKCWv9/AAC90ig3/38AAGrk1Uj/fwAAlNuCWv9/AAC90gCAAACB2v+/AID//wAAvdIAgP//AAC90gCA//8AAL3SAID//wAAvdJ9Jf9/AABA7X0l/38AAEDtAIAAAHyl/78AgAAAfKX/vwCAAAB8pf+//3/+/wAAQO3/f/7/AABA7f9//v8AAEDt/3/+/wAAQO3/f/7/AABA7f9//v8AAEDtAIAAAP7/vpIAgAAA/v++kgCAAAD+/76SAIAAAP7/vpIAgAAA//++0gCAAAD//77SAIAAAP//vtIAgAAA//++0v7//3//fwGA/v//f/9/AYD+//9//38BgP7//3//fwGAAID///////8AgP///////wCA////////AID/////////f/9/AAAAwP9//38AAADA/3//fwAAAMD/f/9/AAAAwAAAAID/fwGAAAAAgP9/AYAAAACA/38BgAAAAID/fwGA/v///wAAAMD+////AAAAwP7///8AAADAAAD+/wAAAMAAAP7/AAAAwAAA/v8AAADA/v//f/9/AYD+//9//38BgP7//3//fwGA/v//f/9/AYAAgP///////wCA////////AID///////8AgP////////9//38AAADA/3//fwAAAMD/f/9/AAAAwP9//38AAADAAAAAgP9/AYAAAACA/38BgAAAAID/fwGAAAAAgP9/AYD+/wAAAAAAwP7/AAAAAADA/v8AAAAAAMD+/wAAAAAAwP9//3//fwGA/3//f/9/AYD/f/9//38BgP9//3//fwGA/3//f/9/AYAAgP////8AwACA/////wDAAID/////AMAAgP////8AwAAAAID/////AAAAgP////8AAACA/////wAAAID//////v////9/AYD+/////38BgP7/////fwGA/v8AAP9/AYD+/wAA/38BgP7/AAD/fwGA/v8AAP9/AYD//wCA////////AID///////8AgP/////+//9///////7//3///////v//f///////f/9//38BgP9//3//fwGA/3//f/9/AYD/f/9//38BgP9//3//fwGA/3//f/9/AYAAgP////8AwACA/////wDAAID/////AMAAgP////8AwAAAAID/////AAAAgP////8AAACA/////wAAAID///////////9/AYD//////38BgP//////fwGA//////9/AYD//////38BgAAA/v/+fwGAAAD+//5/AYAAAP7//n8BgP//////fwGA/v//f//////+//9///////7//3///////v//f///////f/9//38BgP9//3//fwGA/3//f/9/AYD/f/9//38BgP9//3//fwGA/3//f/9/AYD/f/9//n8BgP9//3/+fwGA/3//f/5/AYD/f/9//38BgP9//3//fwGAAYACgAKAA4ABgAKAAoADgAGAAoACgAOA7H/hf8x/CoDsf+F/zH8KgOx/4X/MfwqAA4AFgP9/A4ADgAWA/38DgAOABYD/fwOA/3//f/9/AYD/f/9//38BgP9//3//fwGAAID/////AMAAgP////8AwACA/////wDAAID/////AMAAAACA/////wAAAID/////AAAAgP////8AAACA//////7/AAD/fwGA/v8AAP9/AYD+/wAA/38BgAAA/v//fwGAAAD+//9/AYAAAP7//38BgP7/AAD/fwGA/v8AAP9/AYD+/wAA/38BgAQA+v/5fwGABAD6//l/AYAEAPr/+X8BgP7////4fwOA/v///95/EYD+/////38BgP7///8AgAGA/v///wCAAYAAAP7//n8BgAAA/v/+fwGAAAD+//5/AYD+/wAA/38BgP7/AAD/fwGA//8AgP///////wCA////////AID///////8AgP////+4Qf9//38BgLhB/3//fwGAuEH/f/9/AYC4Qf9//38BgLhB/3//fwGAAID//7jBAMAAgP//uMEAwACA//+4wQDAAID//7jBAMAAAEa+///c4AAARr7//9zgAABGvv//3OAAAEa+///c4P7/RT7/fwGA/v9FPv9/AYD+/0U+/38BgP//uMH/fwGA//+4wf9/AYD//7jB/38BgP7/uMH/fwGA/v+4wf9/AYD+/7jB/38BgLfB/3///9zgt8H/f///3OC3wf9////c4LfB/3///9zgt8H/f///3OC4Qf9//38BgLhB/3//fwGAuEH/f/9/AYC4Qf9//38BgACA//+4wQDAAID//7jBAMAAgP//uMEAwACA//+4wQDAAABGvv//3OAAAEa+///c4AAARr7//9zgAABGvv//3OD//7jB/38BgP//uMH/fwGA//+4wf9/AYD+/7jB/38BgP7/uMH/fwGA/v+4wf9/AYC4wf9////c4LjB/3///9zguMH/f///3OC4wf9////b4LjB/3///9vguMH/f///2+AtuP9//38BgC24/3//fwGALbj/f/9/AYAtuP9//38BgACA/////xfcAID/////F9wAgP////8X3ACA/////xfcLDj/fwAA6eMsOP9/AADp4yw4/38AAOnjLDj/fwAA5+MsOP9/AADn4yw4/38AAOfjAADSx/9/AYAAANLH/38BgAAA0sf/fwGAAADRx/9/AYAAANHH/38BgAAA0cf/fwGA//8tuAAA6eP//y24AADp4///LbgAAOnj//8tuAAA6eOTsv9//38BgJOy/3//fwGAk7L/f/9/AYCTsv9//38BgJOy/3//fwGAj7L5fwmAAYCPsvl/CYABgI+y+X8JgAGAAID/////StkAgP////9K2QCA/////0rZAID/////StmTMv9/AAC05pMy/38AALTmkzL/fwAAtOaTMv9/AAC25pMy/38AALbmkzL/fwAAtuYAAGzN/38BgAAAbM3/fwGAAABszf9/AYAAAGzN/38BgAAAbM3/fwGAAABrzf9/AYAAAGvN/38BgAAAa83/fwGA//+TsgAAtub//5OyAAC25v//k7IAALbm//+TsgAAtub//5OyAAC25v//k7IAALbmID3/f/9/AYAgPf9//38BgCA9/3//fwGAID3/f/9/AYAgPf9//38BgCA9/3//fwGAAID//yC9AMAAgP//IL0AwACA//8gvQDAAID//yC9AMAAAN7C//+P3gAA3sL//4/eAADewv//j94AAN7C//+P3gAA3sL//4/eAADewv//j94AAN3C//+P3gAA3cL//4/eAADdwv//j94AAN3C//+P3gAA3sL//4/e//8gvf9/AYD//yC9/38BgP//IL3/fwGA/v8gvf9/AYD+/yC9/38BgP7/IL3/fwGA/v/eQv9/AYD+/95C/38BgP7/3kL/fwGA//8hvf5/AYD//yG9/n8BgP//Ib3+fwGAIL3/f///j94gvf9///+P3iC9/3///4/eIL3/f///j94gvf9///+P3iC9/3///4/eIb3/f///kN4hvf9///+Q3iG9/3///5DeID3/f/9/AYAgPf9//38BgCA9/3//fwGAID3/f/9/AYAgPf9//38BgACA//8gvQDAAID//yC9AMAAgP//IL0AwACA//8gvQDAAADewv//j94AAN7C//+P3gAA3sL//4/eAADdwv//j94AAN3C//+P3gAA3cL//4/e/v8gvf9/AYD+/yC9/38BgP7/IL3/fwGA/v/eQv9/AYD+/95C/38BgP7/3kL/fwGA/v8gvf9/AYAgvf9///+P3iC9/3///4/eIL3/f///j94gvf9///+P3iC9/3///4/eIL3/f///j95EfP9//38BgER8/3//fwGARHz/f/9/AYBEfP9//38BgER8/3//fwGARHz/f/9/AYBEfP9//38BgER8/3//fwGAAID//0P8AMAAgP//Q/wAwACA//9D/ADAAID//0P8AMAAALuD//8i/gAAu4P//yL+AAC7g///Iv4AALqD//8i/gAAuoP//yL+AAC6g///Iv7+/0P8/38BgP7/Q/z/fwGA/v9D/P9/AYD+/7oD/38BgP7/ugP/fwGA/v+6A/9/AYD//0T8/38BgP//RPz/fwGA//9E/P9/AYD+/7oD/38BgP7/ugP/fwGA/v+6A/9/AYD+/7oD/38BgEP8/3///yL+Q/z/f///Iv5D/P9///8i/kP8/3///yL+I5z/f/9/AYAjnP9//38BgCOc/3//fwGAI5z/f/9/AYAjnP9//38BgACA/////xLOAID/////Es4AgP////8SzgCA/////xLOIhz/fwAA7vEiHP9/AADu8SIc/38AAO7xIhz/fwAA7vEAANvj/38BgAAA2+P/fwGAAADb4/9/AYAAANzj/38BgAAA3OP/fwGAAADc4/9/AYAAANzj/38BgP7/22MAAO7x/v/bYwAA7vH+/9tjAADu8f//JJwAAO7x//8knAAA7vH//yScAADu8Q==") +}] + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_vsbjj"] +data = PackedVector3Array(21, 0, -20.5, 21, 0, -21, 21, -0.5, -21, 21, 0, 0, 21, 0, -20.5, 21, -0.5, -21, 21, -0.5, -21, 21, 0, 20.5, 21, 0, 0, 21, -0.5, -21, 21, 0, 21, 21, 0, 20.5, 21, -0.5, -21, 21, -0.5, 21, 21, 0, 21, 12.7446, 0, 12.8381, -14.3352, 0, -13.9155, 12.7935, 0, 12.7935, 15.5977, 0, 15.5977, 20.5, 0, 20.5, 16.1553, 0, 16.2077, -14.3352, 0, -13.9155, -13.9155, 0, -13.9155, 12.7935, 0, 12.7935, -20.5, 0, -20.006, -20.5, 0, -20.5, -14.9155, 0, -14.9155, -15.3474, 0, -14.9155, -20.5, 0, -20.006, -14.9155, 0, -14.9155, 12.5868, 0, 12.9824, -9.5, 0, -8, 12.7446, 0, 12.8381, -9.5, 0, -8, -14.3352, 0, -13.9155, 12.7446, 0, 12.8381, 16.1553, 0, 16.2077, 20.5, 0, 20.5, 16.4365, 0, 16.5153, 16.4365, 0, 16.5153, 20.5, 0, 20.5, 16.3698, 0, 16.5763, -15.836, 0, -14.9155, -20.5, 0, -20.006, -15.3474, 0, -14.9155, -14.3352, 0, -13.9155, -9.5, 0, -8, -14.9198, 0, -13.9155, 20.5, 0, 20.5, -20.5, 0, 20.5, -3.7762, 0, 16.7738, -20.5, 0, 20.5, -8.4384, 0, 10.9587, -3.7762, 0, 16.7738, 0.5757, 0, 13.9307, 20.5, 0, 20.5, -3.7762, 0, 16.7738, -3.7762, 0, 16.7738, -8.4384, 0, 10.9587, -4.3231, 0, 15.9366, -4.3231, 0, 15.9366, -8.4384, 0, 10.9587, -0.6394, 0, 13.5301, -20.5, 0, 20.5, -9.5, 0, 8, -8.4384, 0, 10.9587, 0.5814, 0, 13.927, 20.5, 0, 20.5, 0.5757, 0, 13.9307, -2.3991, 0, 10.9587, 20.5, 0, 20.5, 0.0345, 0, 13.0898, 20.5, 0, 20.5, 0.5814, 0, 13.927, 0.0345, 0, 13.0898, 0.0345, 0, 13.0898, -8.4384, 0, 10.9587, -2.3991, 0, 10.9587, -0.6394, 0, 13.5301, -8.4384, 0, 10.9587, 0.0345, 0, 13.0898, -8.4384, 0, 10.9587, -9.5, 0, 8, -8.4384, 0, 9.9587, -8.4384, 0, 9.9587, -9.5, 0, 8, -4.7991, 0, 9.9587, 15.8382, 0, 17.0622, 20.5, 0, 20.5, 15.6984, 0, 17.19, 15.6984, 0, 17.19, 7.5616, 0, 10.9587, 15.0508, 0, 16.4815, 20.5, 0, 20.5, -2.3991, 0, 10.9587, 15.6984, 0, 17.19, -2.3991, 0, 10.9587, 7.5616, 0, 10.9587, 15.6984, 0, 17.19, 12.1865, 0, 13.3483, -9.5, 0, -8, 12.5868, 0, 12.9824, 13.542, 0, 14.8311, 7.5616, 0, 9.9587, 12.1865, 0, 13.3483, 7.5616, 0, 9.9587, -9.5, 0, -8, 12.1865, 0, 13.3483, 16.3698, 0, 16.5763, 20.5, 0, 20.5, 16.0466, 0, 16.8717, 15.0508, 0, 16.4815, 7.5616, 0, 10.9587, 7.5616, 0, 9.9587, 16.0466, 0, 16.8717, 20.5, 0, 20.5, 15.8382, 0, 17.0622, 15.0508, 0, 16.4815, 7.5616, 0, 9.9587, 13.542, 0, 14.8311, 7.5616, 0, 9.9587, -9.5, 0, 8, -2.2258, 0, 7.4156, -9.5, 0, 8, -9.5, 0, -8, -6.004, 0, 3.8354, -2.2258, 0, 7.4156, -9.5, 0, 8, -6.004, 0, 3.8354, -6.004, 0, 3.8354, -9.5, 0, -8, -5.3161, 0, 3.1095, -9.5, 0, -8, 7.5616, 0, 9.9587, -1.538, 0, 6.6897, 7.5616, 0, 9.9587, -2.2258, 0, 7.4156, -1.538, 0, 6.6897, -1.538, 0, 6.6897, -5.3161, 0, 3.1095, -9.5, 0, -8, 7.5616, 0, 9.9587, -4.7991, 0, 9.9587, -9.5, 0, 8, -9.5, 0, 8, -20.5, 0, 20.5, -10.5, 0, 8, -20.5, 0, 20.5, -20.5, 0, -20.006, -18.7029, 0, -13.9155, -15.4271, 0, -13.9155, -10.5, 0, -8, -18.7029, 0, -13.9155, -16.0972, 0, 7.9521, -20.5, 0, 20.5, -16.9359, 0, 7.1574, -20.5, 0, 20.5, -18.7029, 0, -13.9155, -16.9359, 0, 7.1574, -18.7029, 0, -13.9155, -10.5, 0, -8, -16.9359, 0, 7.1574, -16.9359, 0, 7.1574, -10.5, 0, -8, -16.2481, 0, 6.4315, -16.2481, 0, 6.4315, -10.5, 0, -8, -15.7345, 0, 6.9182, -18.7029, 0, -13.9155, -20.5, 0, -20.006, -18.7029, 0, -14.9155, -18.7029, 0, -14.9155, -20.5, 0, -20.006, -16.26, 0, -14.9155, -14.9198, 0, -13.9155, -9.5, 0, -8, -10.5, 0, -8, -16.26, 0, -14.9155, -20.5, 0, -20.006, -15.836, 0, -14.9155, -14.9198, 0, -13.9155, -10.5, 0, -8, -15.4271, 0, -13.9155, -10.5, 0, 8, -20.5, 0, 20.5, -13.1578, 0, 10.7376, -13.1578, 0, 10.7376, -20.5, 0, 20.5, -16.0972, 0, 7.9521, -10.5, 0, -8, -10.5, 0, 8, -12.4699, 0, 10.0117, -10.5, 0, 8, -13.1578, 0, 10.7376, -12.4699, 0, 10.0117, -15.7345, 0, 6.9182, -10.5, 0, -8, -12.4699, 0, 10.0117, -14.8474, 0, -14.9155, -20.5, 0, -20.5, -14.8431, 0, -14.9155, -13.8301, 0, -13.9155, 20.5, 0, 20.006, -13.8352, 0, -13.9155, -20.5, 0, -20.5, -20.494, 0, -20.5, -14.8431, 0, -14.9155, -13.8352, 0, -13.9155, 20.5, 0, 20.006, -13.9155, 0, -13.9155, -14.9155, 0, -14.9155, -20.5, 0, -20.5, -14.8474, 0, -14.9155, 20.5, 0, 20.006, 20.5, 0, 20.5, 12.9246, 0, 12.6736, 12.7935, 0, 12.7935, -13.9155, 0, -13.9155, 12.9246, 0, 12.6736, 12.9246, 0, 12.6736, 20.5, 0, 20.5, 15.5977, 0, 15.5977, -13.9155, 0, -13.9155, 20.5, 0, 20.006, 12.9246, 0, 12.6736, 13.1807, 0, -12.1826, 9.5, 0, -8, 12.1865, 0, -13.2702, 9.5, 0, -8, 7.5616, 0, -10.0162, 12.1865, 0, -13.2702, 15.6054, 0, -16.2647, 12.9246, 0, -13.9449, 15.2849, 0, -16.2743, 16.4755, 0, -17.239, 20.5, 0, -20.5, 16.7228, 0, -17.2315, 12.9246, 0, -13.9449, 7.5616, 0, -10.0162, 15.2849, 0, -16.2743, 12.1865, 0, -13.2702, 7.5616, 0, -10.0162, 12.9246, 0, -13.9449, 16.7428, 0, -16.2305, 13.8452, 0, -12.9378, 15.6054, 0, -16.2647, 16.7228, 0, -17.2315, 20.5, 0, -20.5, 17.6006, 0, -17.2052, 13.8452, 0, -12.9378, 12.9246, 0, -13.9449, 15.6054, 0, -16.2647, 7.5616, 0, -10.0162, 9.5, 0, -8, 4.6621, 0, -10.0162, 14.7567, 0, -16.2901, 7.5616, 0, -11.0162, 13.2081, 0, -16.3366, 7.5616, 0, -11.0162, -20.494, 0, -20.5, 13.2081, 0, -16.3366, -20.494, 0, -20.5, 20.5, 0, -20.5, 13.2381, 0, -17.3362, 13.2081, 0, -16.3366, -20.494, 0, -20.5, 13.2381, 0, -17.3362, 13.2381, 0, -17.3362, 20.5, 0, -20.5, 16.0678, 0, -17.2512, 15.2849, 0, -16.2743, 7.5616, 0, -10.0162, 7.5616, 0, -11.0162, 16.0678, 0, -17.2512, 20.5, 0, -20.5, 16.4755, 0, -17.239, 15.2849, 0, -16.2743, 7.5616, 0, -11.0162, 14.7567, 0, -16.2901, 2.2626, 0, -11.0162, -20.494, 0, -20.5, 7.5616, 0, -11.0162, 17.4265, 0, 2.6471, 20.5, 0, 20.006, 14.055, 0, 3.5971, 15.6984, 0, -9.4285, 20.5, 0, 20.006, 17.4265, 0, 2.6471, 9.5, 0, -8, 15.6984, 0, -9.4285, 17.1552, 0, 1.6846, 15.6984, 0, -9.4285, 17.4265, 0, 2.6471, 17.1552, 0, 1.6846, 17.1552, 0, 1.6846, 13.6876, 0, 2.6617, 9.5, 0, -8, 15.6984, 0, -9.4285, 9.5, 0, -8, 13.1807, 0, -12.1826, 20.5, 0, -20.5, 20.5, 0, 20.006, 16.4365, 0, -10.1032, 20.5, 0, 20.006, 15.6984, 0, -9.4285, 16.4365, 0, -10.1032, 18.4107, 0, -16.1804, 13.8452, 0, -12.9378, 16.7428, 0, -16.2305, 20.5, 0, -20.5, 16.4365, 0, -10.1032, 18.4107, 0, -16.1804, 16.4365, 0, -10.1032, 13.8452, 0, -12.9378, 18.4107, 0, -16.1804, 17.6006, 0, -17.2052, 20.5, 0, -20.5, 18.4407, 0, -17.18, 20.5, 0, -20.5, 18.4107, 0, -16.1804, 18.4407, 0, -17.18, 14.055, 0, 3.5971, 20.5, 0, 20.006, 12.4166, 0, 4.0588, 20.5, 0, 20.006, 9.5, 0, 8, 12.4166, 0, 4.0588, 9.5, 0, 8, 9.5, 0, -8, 12.1453, 0, 3.0963, 12.4166, 0, 4.0588, 9.5, 0, 8, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 12.1453, 0, 3.0963, 9.5, 0, -8, -13.7954, 0, -13.9155, 8.5, 0, 8, -13.8301, 0, -13.9155, -14.8422, 0, -14.9155, -20.494, 0, -20.5, -14.8127, 0, -14.9155, 8.5, 0, 8, 20.5, 0, 20.006, -13.8301, 0, -13.9155, 9.5, 0, 8, 20.5, 0, 20.006, 8.5, 0, 8, 4.6621, 0, -10.0162, 9.5, 0, -8, 8.5, 0, -8, 1.5039, 0, -11.0162, -20.494, 0, -20.5, 2.2626, 0, -11.0162, 4.6621, 0, -10.0162, 8.5, 0, -8, 3.8234, 0, -10.0162, -12.9223, 0, -13.9155, -8.4384, 0, -10.0162, -13.7954, 0, -13.9155, -14.8127, 0, -14.9155, -20.494, 0, -20.5, -14.0722, 0, -14.9155, -8.4384, 0, -10.0162, 8.5, 0, 8, -13.7954, 0, -13.9155, 3.8234, 0, -10.0162, 8.5, 0, -8, -8.4384, 0, -10.0162, 8.5, 0, -8, 8.5, 0, 8, 6.2515, 0, -5.6231, 8.5, 0, 8, -8.4384, 0, -10.0162, 2.1518, 0, -2.4161, 6.2515, 0, -5.6231, 8.5, 0, 8, 2.1518, 0, -2.4161, 2.1518, 0, -2.4161, -8.4384, 0, -10.0162, 1.5356, 0, -3.2038, -8.4384, 0, -10.0162, 8.5, 0, -8, 5.6353, 0, -6.4107, 8.5, 0, -8, 6.2515, 0, -5.6231, 5.6353, 0, -6.4107, 5.6353, 0, -6.4107, 1.5356, 0, -3.2038, -8.4384, 0, -10.0162, -12.1239, 0, -13.9155, -8.4384, 0, -11.0162, -12.9223, 0, -13.9155, -14.0722, 0, -14.9155, -20.494, 0, -20.5, -13.3951, 0, -14.9155, -8.4384, 0, -11.0162, -8.4384, 0, -10.0162, -12.9223, 0, -13.9155, -10.7029, 0, -13.9155, -8.4384, 0, -11.0162, -12.1239, 0, -13.9155, 1.5039, 0, -11.0162, -8.4384, 0, -11.0162, -10.7029, 0, -13.9155, -20.494, 0, -20.5, 1.5039, 0, -11.0162, -10.7029, 0, -14.9155, 1.5039, 0, -11.0162, -10.7029, 0, -13.9155, -10.7029, 0, -14.9155, -10.7029, 0, -14.9155, -13.3951, 0, -14.9155, -20.494, 0, -20.5, 21, 0, 21, 21, -0.5, 21, -21, -0.5, 21, 20.5, 0, 21, 21, 0, 21, -21, -0.5, 21, -21, -0.5, 21, 0, 0, 21, 20.5, 0, 21, -20.5, 0, 21, 0, 0, 21, -21, -0.5, 21, -21, -0.5, 21, -21, 0, 21, -20.5, 0, 21, -21, 0, 20.5, -21, 0, 21, -21, -0.5, 21, -21, 0, -0.0001, -21, 0, 20.5, -21, -0.5, 21, -21, -0.5, 21, -21, 0, -20.5, -21, 0, -0.0001, -21, -0.5, 21, -21, 0, -21, -21, 0, -20.5, -21, -0.5, 21, -21, -0.5, -21, -21, 0, -21, -21, -0.5, 21, 21, -0.5, 21, 21, -0.5, -21, 21, -0.5, -21, -21, -0.5, -21, -21, -0.5, 21, -20.5, 0, -21, -21, 0, -21, 21, -0.5, -21, 21, -0.5, -21, 0, 0, -21, -20.5, 0, -21, 20.5, 0, -21, 0, 0, -21, 21, -0.5, -21, 21, -0.5, -21, 21, 0, -21, 20.5, 0, -21, -21, 0, -21, -21, -0.5, -21, 21, -0.5, -21, 21, 2, 21.1667, 21, 3, 21.5, 21, 2, 21, 21, 3, 21.5, 21, 3, 21, 21, 2, 21, 21, 2, 21.5, 21, 3, 21.5, 21, 2, 21.3333, 21, 2, 21.3333, 21, 3, 21.5, 21, 2, 21.1667, 21, 3, 21.5, -21, 3, 21.5, -20.5, 3, 21, -20.5, 3, 21, -21, 3, 21.5, -21, 3, 21, -20.5, 3, 20.5119, 21, 3, 21.5, -20.5, 3, 21, -20.5116, 3, 20.5116, -20.5, 3, 20.5119, -20.5, 3, 21, -20.5, 3, 21, -21, 3, 20.5, -20.5116, 3, 20.5116, -20.5, 3, 20.5, 20.5, 3, 20.5, -20.5, 3, 20.506, -20.5119, 3, 20.5, -20.5, 3, 20.5, -20.5118, 3, 20.5059, -20.5118, 3, 20.5059, -21, 3, 20.5, -20.5119, 3, 20.5, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5118, 3, 20.5059, 20.5, 3, 20.5, 20.5, 3, 21, -20.5, 3, 20.506, 21, 3, 21, 21, 3, 21.5, 20.5, 3, 21, -20.5, 3, 20.506, 20.5, 3, 21, -20.5, 3, 20.5119, -20.5118, 3, 20.5059, -20.5, 3, 20.506, -20.5116, 3, 20.5116, -20.5116, 3, 20.5116, -21, 3, 20.5, -20.5118, 3, 20.5059, -20.5, 3, 20.506, -20.5, 3, 20.5119, -20.5116, 3, 20.5116, 20.5, 3, 21, 21, 3, 21.5, -20.5, 3, 20.5119, 21, 2, 21.5, 21, 0, 21.5, -21, 0, 21.5, -21, 0, 21.5, 21, 3, 21.5, 21, 2, 21.5, -21, 2, 21.5, -21, 3, 21.5, 21, 3, 21.5, 21, 3, 21.5, -21, 0, 21.5, -21, 2, 21.5, -21, 2, 21.1667, -21, 3, 21, -21, 2, 21.5, -21, 3, 21, -21, 3, 21.5, -21, 2, 21.5, -21, 2, 21, -21, 3, 21, -21, 2, 21.1667, 20.5, 0, 21, 0, 0, 21, -21, 0, 21.5, 20.5025, 0, 21.0059, 21, 0, 21, 20.5, 0, 21, 20.5, 0, 21, -21, 0, 21.5, 20.5025, 0, 21.0059, -21, 0, 21.5, 21, 0, 21.5, 20.6464, 0, 21.3536, 21, 0, 21.5, 21, 0, 21, 20.6464, 0, 21.3536, 20.5025, 0, 21.0059, -21, 0, 21.5, 20.6464, 0, 21.3536, 20.6464, 0, 21.3536, 21, 0, 21, 20.5025, 0, 21.0059, -21, 0, 21.5, 0, 0, 21, -20.6464, 0, 21.3536, 0, 0, 21, -20.5, 0, 21, -20.6464, 0, 21.3536, -20.75, 0, 21.25, -21, 0, 21.5, -20.6464, 0, 21.3536, -20.6464, 0, 21.3536, -20.5, 0, 21, -20.75, 0, 21.25, -20.5, 2.9643, 20.5, 20.5, 0.0357, 20.5, -20.5, 3, 20.5, 20.5, 0.0357, 20.5, 20.5, 3, 20.5, -20.5, 3, 20.5, 20.5, 0, 20.5, 20.5, 0.0357, 20.5, -20.5, 2.9643, 20.5, -20.5, 0, 20.5, 20.5, 0, 20.5, -20.5, 2.9643, 20.5, 21, 2, -21.1667, 21, 3, -21, 21, 2, -21.5, 21, 3, -21, 21, 3, -21.5, 21, 2, -21.5, 21, 2, -21, 21, 3, -21, 21, 2, -21.1667, -20.5, 3, -21, 20.5, 3, -20.5, -20.5, 3, -20.5, -21, 3, -21, -21, 3, -21.5, -20.5, 3, -21, -21, 3, -21.5, 20.5, 3, -20.5, -20.5, 3, -21, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5116, 3, -20.5116, 20.5116, 3, -20.5116, 21, 3, -20.5, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5, 3, -20.5119, 20.5116, 3, -20.5116, 20.5, 3, -20.5, -21, 3, -21.5, 20.5, 3, -20.5119, -21, 3, -21.5, 21, 3, -21.5, 20.5, 3, -21, 20.5, 3, -21, 21, 3, -21.5, 21, 3, -21, 20.5, 3, -20.5119, -21, 3, -21.5, 20.5, 3, -21, 20.5116, 3, -20.5116, 20.5, 3, -20.5119, 20.5, 3, -21, -20.5, 0.0357, -20.5, 20.5, 2.9643, -20.5, -20.494, 0, -20.5, -20.5, 0.0357, -20.5, -20.494, 0, -20.5, -20.5, 0, -20.5, 20.5, 0, -20.5, -20.494, 0, -20.5, 20.5, 2.9643, -20.5, 20.5, 3, -20.5, 20.5119, 3, -20.5, 21, 3, -20.5, 20.5, 3, -20.5, 20.5, 2.9643, -20.5, -20.5, 0.0357, -20.5, -20.5, 3, -20.5, 20.5, 3, -20.5, -20.5, 0.0357, -20.5, -21, 2, -21.1667, -21, 3, -21.5, -21, 2, -21, -21, 3, -21.5, -21, 3, -21, -21, 2, -21, -21, 2, -21.5, -21, 3, -21.5, -21, 2, -21.3333, -21, 2, -21.3333, -21, 3, -21.5, -21, 2, -21.1667, 21, 0, -21.5, 0, 0, -21, 20.6464, 0, -21.3536, 0, 0, -21, 20.5, 0, -21, 20.6464, 0, -21.3536, 20.75, 0, -21.25, 21, 0, -21.5, 20.6464, 0, -21.3536, 20.6464, 0, -21.3536, 20.5, 0, -21, 20.75, 0, -21.25, -20.5, 0, -21, 0, 0, -21, 21, 0, -21.5, -20.5025, 0, -21.0059, -21, 0, -21, -20.5, 0, -21, -20.5, 0, -21, 21, 0, -21.5, -20.5025, 0, -21.0059, 21, 0, -21.5, -21, 0, -21.5, -20.6464, 0, -21.3536, -21, 0, -21.5, -21, 0, -21, -20.6464, 0, -21.3536, -20.5025, 0, -21.0059, 21, 0, -21.5, -20.6464, 0, -21.3536, -20.6464, 0, -21.3536, -21, 0, -21, -20.5025, 0, -21.0059, 21, 2, -21.5, 21, 3, -21.5, -21, 3, -21.5, -21, 3, -21.5, 21, 0, -21.5, 21, 2, -21.5, -21, 2, -21.5, -21, 0, -21.5, 21, 0, -21.5, 21, 0, -21.5, -21, 3, -21.5, -21, 2, -21.5, 21.5, 2, -21, 21.5, 0, -21, 21.5, 3, 21, 21.5, 3, 21, 21.5, 3, -21, 21.5, 2, -21, 21.5, 2, 21, 21.5, 3, 21, 21.5, 0, -21, 21.5, 0, -21, 21.5, 0, 21, 21.5, 2, 21, 21, 3, 21, 20.5, 3, 21, 21, 3, 20.5, 21, 3, 20.5, 21.5, 3, 21, 21, 3, 21, 21, 3, 20.5, 20.5, 3, 20.5, 20.5, 3, -20.5, 21, 3, 20.5, 20.5, 3, 21, 20.5, 3, 20.5, 20.5119, 3, -20.5, 21.5, 3, 21, 21, 3, 20.5, 20.5119, 3, -20.5, 21, 3, 20.5, 20.5, 3, -20.5, 20.5116, 3, -20.5116, 20.5119, 3, -20.5, 20.5, 3, -20.5119, 20.5, 3, -20.5119, 20.5, 3, -21, 20.5116, 3, -20.5116, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5, 3, -20.5119, 21, 3, -21, 21.5, 3, -21, 21, 3, -20.5, 21, 3, -20.5, 20.5, 3, -21, 21, 3, -21, 21.5, 3, -21, 21.5, 3, 21, 21, 3, -20.5, 20.5116, 3, -20.5116, 20.5, 3, -21, 21, 3, -20.5, 21, 3, -20.5, 20.5119, 3, -20.5, 20.5116, 3, -20.5116, 21, 3, -20.5, 21.5, 3, 21, 20.5119, 3, -20.5, 21.1667, 2, 21, 21.5, 3, 21, 21.3333, 2, 21, 21.3333, 2, 21, 21.5, 3, 21, 21.5, 2, 21, 21, 2, 21, 21, 3, 21, 21.5, 3, 21, 21, 2, 21, 21.5, 3, 21, 21.1667, 2, 21, 20.5, 3, -20.5, 20.5, 3, 20.5, 20.5, 0.0357, 20.5, 20.5, 3, -20.5, 20.5, 0.0357, 20.5, 20.5, 2.9643, -20.5, 20.5, 2.9643, -20.5, 20.5, 0, 20.006, 20.5, 0, -20.5, 20.5, 2.9643, -20.5, 20.5, 0, 20.5, 20.5, 0, 20.006, 20.5, 0.0357, 20.5, 20.5, 0, 20.5, 20.5, 2.9643, -20.5, 21.5, 0, 21, 21.5, 0, -21, 21.3536, 0, 20.6465, 21.5, 0, -21, 21, 0, 20.5, 21.3536, 0, 20.6465, 21.25, 0, 20.75, 21.5, 0, 21, 21.3536, 0, 20.6465, 21.3536, 0, 20.6465, 21, 0, 20.5, 21.25, 0, 20.75, 21, 0, 20.5, 21.5, 0, -21, 21, 0, 0, 21, 0, 0, 21.5, 0, -21, 21.3536, 0, -20.6464, 21.25, 0, -20.75, 21, 0, -20.5, 21.3536, 0, -20.6464, 21.3536, 0, -20.6464, 21.5, 0, -21, 21.25, 0, -20.75, 21, 0, -20.5, 21, 0, 0, 21.3536, 0, -20.6464, 21.1667, 2, -21, 21, 3, -21, 21, 2, -21, 21.5, 2, -21, 21.5, 3, -21, 21, 3, -21, 21.5, 2, -21, 21, 3, -21, 21.1667, 2, -21, -20.5, 0.0357, -20.5, -20.5, 3, 20.5, -20.5, 3, -20.5, -20.5, 3, 20.5, -20.5, 3, 20.5119, -20.5, 3, 20.506, -20.5, 2.9643, 20.5, -20.5, 3, 20.5, -20.5, 0.0357, -20.5, -20.5, 3, 21, -20.5, 3, 20.506, -20.5, 3, 20.5, -20.5, 3, 21, -20.5, 3, 20.5119, -20.5, 3, 20.506, -20.5, 2.9643, 20.5, -20.5, 0, -20.006, -20.5, 0, 20.5, -20.5, 2.9643, 20.5, -20.5, 0, -20.5, -20.5, 0, -20.006, -20.5, 0, -20.5, -20.5, 2.9643, 20.5, -20.5, 0.0357, -20.5, -21, 3, 21, -21.5, 3, 21, -21, 3, 20.5, -21, 3, 20.5, -20.5, 3, 21, -21, 3, 21, -21.5, 3, 21, -21.5, 3, -21, -21, 3, 20.5, -20.5116, 3, 20.5116, -20.5, 3, 21, -21, 3, 20.5, -20.5118, 3, 20.5059, -20.5116, 3, 20.5116, -21, 3, 20.5, -20.5119, 3, 20.5, -20.5118, 3, 20.5059, -21, 3, 20.5, -21, 3, 20.5, -21.5, 3, -21, -20.5119, 3, 20.5, -20.5, 3, 20.506, -20.5, 3, 20.5119, -20.5118, 3, 20.5059, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5119, 3, 20.5, -20.5119, 3, 20.5, -21.5, 3, -21, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5118, 3, 20.5059, -20.5119, 3, 20.5, -20.5, 3, 20.5119, -20.5116, 3, 20.5116, -20.5118, 3, 20.5059, -20.5, 3, 20.5119, -20.5, 3, 21, -20.5116, 3, 20.5116, -21, 3, -21, -20.5, 3, -21, -21, 3, -20.5, -21, 3, -20.5, -21.5, 3, -21, -21, 3, -21, -20.5, 3, -20.5, -20.5, 3, 20.5, -21, 3, -20.5, -21, 3, -20.5, -20.5, 3, -21, -20.5, 3, -20.5, -20.5, 3, 20.5, -21.5, 3, -21, -21, 3, -20.5, -21.1667, 2, 21, -21, 3, 21, -21, 2, 21, -21.5, 2, 21, -21.5, 3, 21, -21, 3, 21, -21.5, 2, 21, -21, 3, 21, -21.1667, 2, 21, -21.5, 2, 21, -21.5, 0, 21, -21.5, 3, -21, -21.5, 3, -21, -21.5, 3, 21, -21.5, 2, 21, -21.5, 2, -21, -21.5, 3, -21, -21.5, 0, 21, -21.5, 0, 21, -21.5, 0, -21, -21.5, 2, -21, -21.25, 0, 20.75, -21.5, 0, 21, -21, 0, 21, -21, 0, 21, -21, 0, 20.5, -21.25, 0, 20.75, -21, 0, -0.0001, -21.5, 0, 21, -21.3536, 0, 20.6464, -21.25, 0, 20.75, -21, 0, 20.5, -21.3536, 0, 20.6464, -21.3536, 0, 20.6464, -21.5, 0, 21, -21.25, 0, 20.75, -21, 0, 20.5, -21, 0, -0.0001, -21.3536, 0, 20.6464, -21.25, 0, -20.75, -21, 0, -20.5, -21, 0, -21, -21, 0, -21, -21.5, 0, -21, -21.25, 0, -20.75, -21.5, 0, -21, -21.5, 0, 21, -21.3536, 0, -20.6465, -21.5, 0, 21, -21, 0, -20.5, -21.3536, 0, -20.6465, -21.25, 0, -20.75, -21.5, 0, -21, -21.3536, 0, -20.6465, -21.3536, 0, -20.6465, -21, 0, -20.5, -21.25, 0, -20.75, -21, 0, -20.5, -21.5, 0, 21, -21, 0, -0.0001, -21, 2, -21, -21, 3, -21, -21.5, 3, -21, -21, 2, -21, -21.5, 3, -21, -21.1667, 2, -21, -21.1667, 2, -21, -21.5, 3, -21, -21.3333, 2, -21, -21.3333, 2, -21, -21.5, 3, -21, -21.5, 2, -21, 21.5, 0, 21, 21.3536, 0, 21.3536, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21.5, 2, 21, 21.5, 0, 21, 21.3536, 0, 21.3536, 21.5, 0, 21, 21, 0, 21, 21.3333, 2, 21, 21.5, 2, 21, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21.1667, 2, 21, 21.3333, 2, 21, 21.3536, 2, 21.3536, 21, 2, 21, 21.1667, 2, 21, 21.3536, 0, 21.3536, 21, 0, 21.5, 21, 2, 21.5, 21, 2, 21.5, 21.3536, 2, 21.3536, 21.3536, 0, 21.3536, 21, 0, 21.5, 21.3536, 0, 21.3536, 21, 0, 21, 21, 2, 21.1667, 21, 2, 21, 21.3536, 2, 21.3536, 21, 2, 21.3333, 21, 2, 21.1667, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21, 2, 21.5, 21, 2, 21.3333, 20.6464, 0, 21.3536, 21, 0, 21.5, 21, 0, 21, 20.5025, 0, 21.0059, 20.6464, 0, 21.3536, 21, 0, 21, 21, 0, 21, 20.5, 0, 21, 20.5025, 0, 21.0059, 21.25, 0, 20.75, 21.3536, 0, 20.6465, 21, 0, 20.5, 21, 0, 20.5, 21, 0, 21, 21.25, 0, 20.75, 21.25, 0, 20.75, 21, 0, 21, 21.5, 0, 21, 21.5, 0, 21, 21.3536, 0, 20.6465, 21.25, 0, 20.75, 21.25, 0, -20.75, 21.3536, 0, -20.6464, 21.5, 0, -21, 21.5, 0, -21, 21, 0, -21, 21.25, 0, -20.75, 21.25, 0, -20.75, 21, 0, -21, 21, 0, -20.5, 21, 0, -20.5, 21.3536, 0, -20.6464, 21.25, 0, -20.75, 20.75, 0, -21.25, 20.6464, 0, -21.3536, 20.5, 0, -21, 20.5, 0, -21, 21, 0, -21, 20.75, 0, -21.25, 20.75, 0, -21.25, 21, 0, -21, 21, 0, -21.5, 21, 0, -21.5, 20.6464, 0, -21.3536, 20.75, 0, -21.25, 21, 0, -21.5, 21.3536, 0, -21.3536, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21, 2, -21.5, 21, 0, -21.5, 21.3536, 0, -21.3536, 21, 0, -21.5, 21, 0, -21, 21, 2, -21.1667, 21, 2, -21.5, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21, 2, -21, 21, 2, -21.1667, 21.3536, 0, -21.3536, 21.5, 0, -21, 21.5, 2, -21, 21.5, 2, -21, 21.3536, 2, -21.3536, 21.3536, 0, -21.3536, 21.5, 0, -21, 21.3536, 0, -21.3536, 21, 0, -21, 21.1667, 2, -21, 21, 2, -21, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21.5, 2, -21, 21.1667, 2, -21, -21.25, 0, -20.75, -21.3536, 0, -20.6465, -21, 0, -20.5, -21, 0, -20.5, -21, 0, -21, -21.25, 0, -20.75, -21.25, 0, -20.75, -21, 0, -21, -21.5, 0, -21, -21.5, 0, -21, -21.3536, 0, -20.6465, -21.25, 0, -20.75, -21.5, 0, -21, -21.3536, 0, -21.3536, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21.5, 2, -21, -21.5, 0, -21, -21.3536, 0, -21.3536, -21.5, 0, -21, -21, 0, -21, -21.3333, 2, -21, -21.5, 2, -21, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21.1667, 2, -21, -21.3333, 2, -21, -21.3536, 2, -21.3536, -21, 2, -21, -21.1667, 2, -21, -21.3536, 0, -21.3536, -21, 0, -21.5, -21, 2, -21.5, -21, 2, -21.5, -21.3536, 2, -21.3536, -21.3536, 0, -21.3536, -21, 0, -21.5, -21.3536, 0, -21.3536, -21, 0, -21, -21, 2, -21.1667, -21, 2, -21, -21.3536, 2, -21.3536, -21, 2, -21.3333, -21, 2, -21.1667, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21, 2, -21.5, -21, 2, -21.3333, -20.6464, 0, -21.3536, -21, 0, -21.5, -21, 0, -21, -20.5025, 0, -21.0059, -20.6464, 0, -21.3536, -21, 0, -21, -21, 0, -21, -20.5, 0, -21, -20.5025, 0, -21.0059, -20.75, 0, 21.25, -20.6464, 0, 21.3536, -20.5, 0, 21, -20.5, 0, 21, -21, 0, 21, -20.75, 0, 21.25, -20.75, 0, 21.25, -21, 0, 21, -21, 0, 21.5, -21, 0, 21.5, -20.6464, 0, 21.3536, -20.75, 0, 21.25, -21, 0, 21.5, -21.3536, 0, 21.3536, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21, 2, 21.5, -21, 0, 21.5, -21.3536, 0, 21.3536, -21, 0, 21.5, -21, 0, 21, -21, 2, 21.1667, -21, 2, 21.5, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21, 2, 21, -21, 2, 21.1667, -21.3536, 0, 21.3536, -21.5, 0, 21, -21.5, 2, 21, -21.5, 2, 21, -21.3536, 2, 21.3536, -21.3536, 0, 21.3536, -21.5, 0, 21, -21.3536, 0, 21.3536, -21, 0, 21, -21.1667, 2, 21, -21, 2, 21, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21.5, 2, 21, -21.1667, 2, 21, -21.25, 0, 20.75, -21.3536, 0, 20.6464, -21.5, 0, 21, -21.5, 0, 21, -21, 0, 21, -21.25, 0, 20.75, -21.25, 0, 20.75, -21, 0, 21, -21, 0, 20.5, -21, 0, 20.5, -21.3536, 0, 20.6464, -21.25, 0, 20.75, -9.5, 3, 8, -9.5, 3, -8, -9.5, 0, -8, -9.5, 0, -8, -9.5, 0, 8, -9.5, 3, 8, -9.5, 3, 8, -10.5, 3, 8, -10.5, 3, -8, -10.5, 3, -8, -9.5, 3, -8, -9.5, 3, 8, -9.5, 3, 8, -9.5, 0, 8, -10.5, 0, 8, -10.5, 0, 8, -10.5, 3, 8, -9.5, 3, 8, -10.5, 3, -8, -10.5, 3, 8, -10.5, 0, 8, -10.5, 0, 8, -10.5, 0, -8, -10.5, 3, -8, -9.5, 0, -8, -9.5, 3, -8, -10.5, 3, -8, -10.5, 3, -8, -10.5, 0, -8, -9.5, 0, -8, 9.5, 3, 8, 9.5, 3, -8, 9.5, 0, -8, 9.5, 0, -8, 9.5, 0, 8, 9.5, 3, 8, 9.5, 3, 8, 8.5, 3, 8, 8.5, 3, -8, 8.5, 3, -8, 9.5, 3, -8, 9.5, 3, 8, 9.5, 3, 8, 9.5, 0, 8, 8.5, 0, 8, 8.5, 0, 8, 8.5, 3, 8, 9.5, 3, 8, 8.5, 3, -8, 8.5, 3, 8, 8.5, 0, 8, 8.5, 0, 8, 8.5, 0, -8, 8.5, 3, -8, 9.5, 0, -8, 9.5, 3, -8, 8.5, 3, -8, 8.5, 3, -8, 8.5, 0, -8, 9.5, 0, -8, -8.4384, 3, 10.9587, 7.5616, 3, 10.9587, 7.5616, 0, 10.9587, -2.3991, 0, 10.9587, -8.4384, 0, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 10.9587, 7.5616, 0, 10.9587, -2.3991, 0, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 10.9587, -8.4384, 0, 10.9587, -8.4384, 0, 9.9587, -8.4384, 0, 9.9587, -8.4384, 3, 9.9587, -8.4384, 3, 10.9587, 7.5616, 3, 9.9587, -8.4384, 3, 9.9587, -8.4384, 0, 9.9587, -4.7991, 0, 9.9587, 7.5616, 0, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, -8.4384, 0, 9.9587, -4.7991, 0, 9.9587, 7.5616, 0, 10.9587, 7.5616, 3, 10.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 0, 9.9587, 7.5616, 0, 10.9587, -8.4384, 3, -10.0162, 7.5616, 3, -10.0162, 7.5616, 0, -10.0162, 3.8234, 0, -10.0162, -8.4384, 0, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -10.0162, 4.6621, 0, -10.0162, 3.8234, 0, -10.0162, -8.4384, 3, -10.0162, 7.5616, 0, -10.0162, 4.6621, 0, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -10.0162, -8.4384, 0, -10.0162, -8.4384, 0, -11.0162, -8.4384, 0, -11.0162, -8.4384, 3, -11.0162, -8.4384, 3, -10.0162, 7.5616, 3, -11.0162, -8.4384, 3, -11.0162, -8.4384, 0, -11.0162, 2.2626, 0, -11.0162, 7.5616, 0, -11.0162, 7.5616, 3, -11.0162, 1.5039, 0, -11.0162, 2.2626, 0, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, -8.4384, 0, -11.0162, 1.5039, 0, -11.0162, 7.5616, 0, -10.0162, 7.5616, 3, -10.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 0, -11.0162, 7.5616, 0, -10.0162, -18.7029, 3, -13.9155, -10.7029, 3, -13.9155, -10.7029, 0, -13.9155, -15.4271, 0, -13.9155, -18.7029, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -14.9198, 0, -13.9155, -15.4271, 0, -13.9155, -18.7029, 3, -13.9155, -14.3352, 0, -13.9155, -14.9198, 0, -13.9155, -18.7029, 3, -13.9155, -13.9155, 0, -13.9155, -14.3352, 0, -13.9155, -13.8352, 0, -13.9155, -13.9155, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -13.8301, 0, -13.9155, -13.8352, 0, -13.9155, -13.7954, 0, -13.9155, -13.8301, 0, -13.9155, -18.7029, 3, -13.9155, -12.9223, 0, -13.9155, -13.7954, 0, -13.9155, -18.7029, 3, -13.9155, -12.1239, 0, -13.9155, -12.9223, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -10.7029, 0, -13.9155, -12.1239, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -18.7029, 0, -13.9155, -18.7029, 0, -14.9155, -18.7029, 0, -14.9155, -18.7029, 3, -14.9155, -18.7029, 3, -13.9155, -10.7029, 3, -14.9155, -18.7029, 3, -14.9155, -18.7029, 0, -14.9155, -13.3951, 0, -14.9155, -10.7029, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -14.0722, 0, -14.9155, -13.3951, 0, -14.9155, -10.7029, 3, -14.9155, -14.8127, 0, -14.9155, -14.0722, 0, -14.9155, -10.7029, 3, -14.9155, -14.8422, 0, -14.9155, -14.8127, 0, -14.9155, -14.8474, 0, -14.9155, -14.8422, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -14.9155, 0, -14.9155, -14.8474, 0, -14.9155, -15.3474, 0, -14.9155, -14.9155, 0, -14.9155, -10.7029, 3, -14.9155, -15.836, 0, -14.9155, -15.3474, 0, -14.9155, -10.7029, 3, -14.9155, -16.26, 0, -14.9155, -15.836, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -18.7029, 0, -14.9155, -16.26, 0, -14.9155, -10.7029, 0, -13.9155, -10.7029, 3, -13.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 0, -14.9155, -10.7029, 0, -13.9155, -16.9359, 3, 7.1574, -13.1577, 3, 10.7376, -13.1578, 0, 10.7376, -16.0972, 0, 7.9521, -16.9359, 0, 7.1574, -16.9359, 3, 7.1574, -16.9359, 3, 7.1574, -13.1578, 0, 10.7376, -16.0972, 0, 7.9521, -16.9359, 3, 7.1574, -16.2481, 3, 6.4315, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -13.1577, 3, 10.7376, -16.9359, 3, 7.1574, -16.9359, 3, 7.1574, -16.9359, 0, 7.1574, -16.2481, 0, 6.4315, -16.2481, 0, 6.4315, -16.2481, 3, 6.4315, -16.9359, 3, 7.1574, -12.4699, 3, 10.0117, -16.2481, 3, 6.4315, -16.2481, 0, 6.4315, -15.7345, 0, 6.9182, -12.4699, 0, 10.0117, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -16.2481, 0, 6.4315, -15.7345, 0, 6.9182, -13.1578, 0, 10.7376, -13.1577, 3, 10.7376, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -12.4699, 0, 10.0117, -13.1578, 0, 10.7376, -6.004, 3, 3.8354, -2.2258, 3, 7.4156, -2.2258, 0, 7.4156, -2.2258, 0, 7.4156, -6.004, 0, 3.8354, -6.004, 3, 3.8354, -6.004, 3, 3.8354, -5.3161, 3, 3.1095, -1.538, 3, 6.6897, -1.538, 3, 6.6897, -2.2258, 3, 7.4156, -6.004, 3, 3.8354, -6.004, 3, 3.8354, -6.004, 0, 3.8354, -5.3161, 0, 3.1095, -5.3161, 0, 3.1095, -5.3161, 3, 3.1095, -6.004, 3, 3.8354, -1.538, 3, 6.6897, -5.3161, 3, 3.1095, -5.3161, 0, 3.1095, -5.3161, 0, 3.1095, -1.538, 0, 6.6897, -1.538, 3, 6.6897, -2.2258, 0, 7.4156, -2.2258, 3, 7.4156, -1.538, 3, 6.6897, -1.538, 3, 6.6897, -1.538, 0, 6.6897, -2.2258, 0, 7.4156, 2.1518, 3, -2.4161, 6.2515, 3, -5.6231, 6.2515, 0, -5.6231, 6.2515, 0, -5.6231, 2.1518, 0, -2.4161, 2.1518, 3, -2.4161, 2.1518, 3, -2.4161, 1.5356, 3, -3.2038, 5.6353, 3, -6.4107, 5.6353, 3, -6.4107, 6.2515, 3, -5.6231, 2.1518, 3, -2.4161, 2.1518, 3, -2.4161, 2.1518, 0, -2.4161, 1.5356, 0, -3.2038, 1.5356, 0, -3.2038, 1.5356, 3, -3.2038, 2.1518, 3, -2.4161, 5.6353, 3, -6.4107, 1.5356, 3, -3.2038, 1.5356, 0, -3.2038, 1.5356, 0, -3.2038, 5.6353, 0, -6.4107, 5.6353, 3, -6.4107, 6.2515, 0, -5.6231, 6.2515, 3, -5.6231, 5.6353, 3, -6.4107, 5.6353, 3, -6.4107, 5.6353, 0, -6.4107, 6.2515, 0, -5.6231, -3.7762, 3, 16.7738, 0.5814, 3, 13.927, 0.5814, 0, 13.927, 0.5757, 0, 13.9307, -3.7762, 0, 16.7738, -3.7762, 3, 16.7738, -3.7762, 3, 16.7738, 0.5814, 0, 13.927, 0.5757, 0, 13.9307, -3.7762, 3, 16.7738, -4.3231, 3, 15.9366, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, 0.5814, 3, 13.927, -3.7762, 3, 16.7738, -3.7762, 3, 16.7738, -3.7762, 0, 16.7738, -4.3231, 0, 15.9366, -4.3231, 0, 15.9366, -4.3231, 3, 15.9366, -3.7762, 3, 16.7738, 0.0345, 3, 13.0898, -4.3231, 3, 15.9366, -4.3231, 0, 15.9366, -0.6394, 0, 13.5301, 0.0345, 0, 13.0898, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, -4.3231, 0, 15.9366, -0.6394, 0, 13.5301, 0.5814, 0, 13.927, 0.5814, 3, 13.927, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, 0.0345, 0, 13.0898, 0.5814, 0, 13.927, 12.1865, 3, 13.3483, 15.6984, 3, 17.19, 15.6984, 0, 17.19, 13.542, 0, 14.8311, 12.1865, 0, 13.3483, 12.1865, 3, 13.3483, 12.1865, 3, 13.3483, 15.0508, 0, 16.4815, 13.542, 0, 14.8311, 12.1865, 3, 13.3483, 15.6984, 0, 17.19, 15.0508, 0, 16.4815, 12.1865, 3, 13.3483, 12.9246, 3, 12.6736, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 15.6984, 3, 17.19, 12.1865, 3, 13.3483, 12.7935, 0, 12.7935, 12.9246, 0, 12.6736, 12.1865, 3, 13.3483, 12.7446, 0, 12.8381, 12.7935, 0, 12.7935, 12.1865, 3, 13.3483, 12.5868, 0, 12.9824, 12.7446, 0, 12.8381, 12.1865, 3, 13.3483, 12.1865, 3, 13.3483, 12.1865, 0, 13.3483, 12.5868, 0, 12.9824, 12.9246, 0, 12.6736, 12.9246, 3, 12.6736, 12.1865, 3, 13.3483, 16.4365, 3, 16.5153, 12.9246, 3, 12.6736, 12.9246, 0, 12.6736, 16.1553, 0, 16.2077, 16.4365, 0, 16.5153, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 15.5977, 0, 15.5977, 16.1553, 0, 16.2077, 16.4365, 3, 16.5153, 12.9246, 0, 12.6736, 15.5977, 0, 15.5977, 15.6984, 0, 17.19, 15.6984, 3, 17.19, 16.4365, 3, 16.5153, 15.8382, 0, 17.0622, 15.6984, 0, 17.19, 16.4365, 3, 16.5153, 16.0466, 0, 16.8717, 15.8382, 0, 17.0622, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 16.3698, 0, 16.5763, 16.0466, 0, 16.8717, 16.4365, 3, 16.5153, 16.4365, 0, 16.5153, 16.3698, 0, 16.5763, 12.1865, 3, -13.2702, 15.6984, 3, -9.4285, 15.6984, 0, -9.4285, 13.1807, 0, -12.1826, 12.1865, 0, -13.2702, 12.1865, 3, -13.2702, 12.1865, 3, -13.2702, 15.6984, 0, -9.4285, 13.1807, 0, -12.1826, 12.1865, 3, -13.2702, 12.9246, 3, -13.9449, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 15.6984, 3, -9.4285, 12.1865, 3, -13.2702, 12.1865, 3, -13.2702, 12.1865, 0, -13.2702, 12.9246, 0, -13.9449, 12.9246, 0, -13.9449, 12.9246, 3, -13.9449, 12.1865, 3, -13.2702, 16.4365, 3, -10.1032, 12.9246, 3, -13.9449, 12.9246, 0, -13.9449, 13.8452, 0, -12.9378, 16.4365, 0, -10.1032, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 12.9246, 0, -13.9449, 13.8452, 0, -12.9378, 15.6984, 0, -9.4285, 15.6984, 3, -9.4285, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 16.4365, 0, -10.1032, 15.6984, 0, -9.4285, 13.2081, 3, -16.3366, 18.4107, 3, -16.1804, 18.4107, 0, -16.1804, 14.7567, 0, -16.2901, 13.2081, 0, -16.3366, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 15.2849, 0, -16.2743, 14.7567, 0, -16.2901, 15.6054, 0, -16.2647, 15.2849, 0, -16.2743, 13.2081, 3, -16.3366, 16.7428, 0, -16.2305, 15.6054, 0, -16.2647, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 18.4107, 0, -16.1804, 16.7428, 0, -16.2305, 13.2081, 3, -16.3366, 13.2381, 3, -17.3362, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 18.4107, 3, -16.1804, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 13.2081, 0, -16.3366, 13.2381, 0, -17.3362, 13.2381, 0, -17.3362, 13.2381, 3, -17.3362, 13.2081, 3, -16.3366, 18.4407, 3, -17.18, 13.2381, 3, -17.3362, 13.2381, 0, -17.3362, 17.6006, 0, -17.2052, 18.4407, 0, -17.18, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 16.7228, 0, -17.2315, 17.6006, 0, -17.2052, 18.4407, 3, -17.18, 16.4755, 0, -17.239, 16.7228, 0, -17.2315, 16.0678, 0, -17.2512, 16.4755, 0, -17.239, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 13.2381, 0, -17.3362, 16.0678, 0, -17.2512, 18.4107, 0, -16.1804, 18.4107, 3, -16.1804, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 18.4407, 0, -17.18, 18.4107, 0, -16.1804, 12.4166, 3, 4.0588, 17.4265, 3, 2.6471, 17.4265, 0, 2.6471, 14.055, 0, 3.5971, 12.4166, 0, 4.0588, 12.4166, 3, 4.0588, 12.4166, 3, 4.0588, 17.4265, 0, 2.6471, 14.055, 0, 3.5971, 12.4166, 3, 4.0588, 12.1453, 3, 3.0963, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 17.4265, 3, 2.6471, 12.4166, 3, 4.0588, 12.4166, 3, 4.0588, 12.4166, 0, 4.0588, 12.1453, 0, 3.0963, 12.1453, 0, 3.0963, 12.1453, 3, 3.0963, 12.4166, 3, 4.0588, 17.1552, 3, 1.6846, 12.1453, 3, 3.0963, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 17.1552, 0, 1.6846, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 17.4265, 0, 2.6471, 17.4265, 3, 2.6471, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 17.1552, 0, 1.6846, 17.4265, 0, 2.6471) + +[node name="multiplayer-fps" type="Node" unique_id=1265920896] + +[node name="Environment" type="Node" parent="." unique_id=161256425] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment" unique_id=1002862017] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment" unique_id=1114681690] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) +current = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment" unique_id=1609349339] +environment = SubResource("Environment_xhc6u") + +[node name="Network" type="Node" parent="." unique_id=2044097883] + +[node name="Player Spawner" type="Node" parent="Network" unique_id=739504623] +script = ExtResource("3_c7rxg") +player_scene = ExtResource("2_p13fk") + +[node name="TeamManager" type="Node" parent="Network" unique_id=1716994827] +script = ExtResource("3_573tb") + +[node name="RoundManager" type="Node" parent="Network" unique_id=2022146235] +script = ExtResource("4_t3cki") + +[node name="EconomyManager" type="Node" parent="Network"] +script = ExtResource("8_econ") + +[node name="Bomb" type="Node" parent="Network"] +script = ExtResource("10_bomb") + +[node name="Players" type="Node" parent="." unique_id=1152473522] + +[node name="UI" type="Control" parent="." unique_id=1383441270] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" type="TabContainer" parent="UI" unique_id=1486564083 instance=ExtResource("3_pf45j")] +custom_minimum_size = Vector2(360, 240) +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -125.5 +offset_top = -48.5 +offset_right = 125.5 +offset_bottom = 48.5 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +current_tab = 0 + +[node name="Time Display" type="Label" parent="UI" unique_id=24369918] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 23.0 +script = ExtResource("4_c2ddp") + +[node name="RoundHUD" type="Control" parent="UI" unique_id=512649112] +anchors_preset = 0 +script = ExtResource("7_7swc0") + +[node name="TimerLabel" type="Label" parent="UI/RoundHUD" unique_id=1295051644] +layout_mode = 0 +text = "0:00" +horizontal_alignment = 1 + +[node name="ScoreLabel" type="Label" parent="UI/RoundHUD" unique_id=1398746202] +layout_mode = 0 +text = "T 0 : 0 CT" +horizontal_alignment = 1 + +[node name="StateLabel" type="Label" parent="UI/RoundHUD" unique_id=379522492] +visible = false +layout_mode = 0 +horizontal_alignment = 1 + +[node name="ScoreboardPanel" type="PanelContainer" parent="UI/RoundHUD" unique_id=42097147] +visible = false +layout_mode = 0 + +[node name="Label" type="Label" parent="UI/RoundHUD/ScoreboardPanel" unique_id=435714799] +layout_mode = 2 + +[node name="BuyMenu" type="Control" parent="UI"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +script = ExtResource("9_buym") + +[node name="BombHUD" type="Control" parent="UI"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +script = ExtResource("12_bhud") + +[node name="Map" type="Node" parent="." unique_id=439361680] + +[node name="StaticBody3D" type="StaticBody3D" parent="Map" unique_id=442986938] + +[node name="MeshCSGCombiner3D" type="MeshInstance3D" parent="Map/StaticBody3D" unique_id=822561026] +mesh = SubResource("ArrayMesh_jat7u") +skeleton = NodePath("../..") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Map/StaticBody3D" unique_id=939590682] +shape = SubResource("ConcavePolygonShape3D_vsbjj") + +[node name="T Spawns" type="Node" parent="." unique_id=265035546] + +[node name="Marker3D" type="Marker3D" parent="T Spawns" unique_id=278778913] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 1, 0) + +[node name="Marker3D2" type="Marker3D" parent="T Spawns" unique_id=1106767585] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11, 1, 2) + +[node name="Marker3D3" type="Marker3D" parent="T Spawns" unique_id=444741820] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11, 1, -2) + +[node name="CT Spawns" type="Node" parent="." unique_id=259146610] + +[node name="Marker3D" type="Marker3D" parent="CT Spawns" unique_id=1929744802] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 1, 0) + +[node name="Marker3D2" type="Marker3D" parent="CT Spawns" unique_id=2091899433] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 1, 2) + +[node name="Marker3D3" type="Marker3D" parent="CT Spawns" unique_id=181942226] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11, 1, -2) + +[node name="Bombsite A" type="Area3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, 5) +script = ExtResource("11_bsite") +site_name = "A" + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Bombsite A"] + +[node name="Bombsite B" type="Area3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, -5) +script = ExtResource("11_bsite") +site_name = "B" + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Bombsite B"] diff --git a/examples/multiplayer-fps/scripts/bomb.gd b/examples/multiplayer-fps/scripts/bomb.gd new file mode 100644 index 0000000..8ed2380 --- /dev/null +++ b/examples/multiplayer-fps/scripts/bomb.gd @@ -0,0 +1,300 @@ +extends Node +class_name Bomb + +enum BombState { IDLE, CARRIED, PLANTING, DROPPED, PLANTED, DEFUSING, EXPLODED, DEFUSED } + +signal bomb_planted(site_name: String) +signal bomb_exploded() +signal bomb_defused() +signal bomb_dropped(position: Vector3) +signal bomb_picked_up(carrier_id: int) + +@export var plant_time: float = 3.0 +@export var defuse_time: float = 10.0 +@export var defuse_kit_time: float = 5.0 +@export var bomb_timer: float = 40.0 + +var state: BombState = BombState.IDLE +var carrier_id: int = -1 +var position: Vector3 = Vector3.ZERO +var planted_site: String = "" +var planted_tick: int = -1 + +# Progress tracking (tick-based) +var _plant_start_tick: int = -1 +var _defuse_start_tick: int = -1 +var _defuser_id: int = -1 + +var team_manager: TeamManager +var round_manager: RoundManager + +func _ready(): + team_manager = get_tree().current_scene.get_node_or_null("Network/TeamManager") + round_manager = get_tree().current_scene.get_node_or_null("Network/RoundManager") + + if multiplayer.is_server(): + NetworkTime.on_tick.connect(_server_tick) + NetworkEvents.on_peer_leave.connect(_handle_peer_leave) + + if round_manager: + round_manager.round_started.connect(_on_round_started) + +func reset(): + state = BombState.IDLE + carrier_id = -1 + position = Vector3.ZERO + planted_site = "" + planted_tick = -1 + _plant_start_tick = -1 + _defuse_start_tick = -1 + _defuser_id = -1 + +func assign_to_player(peer_id: int): + if not multiplayer.is_server(): + return + carrier_id = peer_id + state = BombState.CARRIED + _broadcast_state() + bomb_picked_up.emit(carrier_id) + +func drop_at(pos: Vector3): + if not multiplayer.is_server(): + return + if state != BombState.CARRIED and state != BombState.PLANTING: + return + state = BombState.DROPPED + carrier_id = -1 + position = pos + _plant_start_tick = -1 + _broadcast_state() + bomb_dropped.emit(pos) + +func try_start_plant(peer_id: int, bombsite_name: String) -> bool: + if not multiplayer.is_server(): + return false + if state != BombState.CARRIED: + return false + if carrier_id != peer_id: + return false + if team_manager.get_team(peer_id) != TeamManager.Team.T: + return false + if round_manager.state != RoundManager.RoundState.ACTIVE: + return false + + state = BombState.PLANTING + planted_site = bombsite_name + _plant_start_tick = NetworkTime.tick + _broadcast_state() + return true + +func cancel_plant(): + if not multiplayer.is_server(): + return + if state != BombState.PLANTING: + return + state = BombState.CARRIED + _plant_start_tick = -1 + _broadcast_state() + +func try_start_defuse(peer_id: int) -> bool: + if not multiplayer.is_server(): + return false + if state != BombState.PLANTED: + return false + if team_manager.get_team(peer_id) != TeamManager.Team.CT: + return false + if round_manager.state != RoundManager.RoundState.ACTIVE: + return false + + state = BombState.DEFUSING + _defuser_id = peer_id + _defuse_start_tick = NetworkTime.tick + _broadcast_state() + return true + +func cancel_defuse(): + if not multiplayer.is_server(): + return + if state != BombState.DEFUSING: + return + state = BombState.PLANTED + _defuser_id = -1 + _defuse_start_tick = -1 + _broadcast_state() + +func try_pickup(peer_id: int) -> bool: + if not multiplayer.is_server(): + return false + if state != BombState.DROPPED: + return false + if team_manager.get_team(peer_id) != TeamManager.Team.T: + return false + carrier_id = peer_id + state = BombState.CARRIED + _broadcast_state() + bomb_picked_up.emit(carrier_id) + return true + +func get_plant_progress() -> float: + if state != BombState.PLANTING or _plant_start_tick < 0: + return 0.0 + return NetworkTime.seconds_between(_plant_start_tick, NetworkTime.tick) / plant_time + +func get_defuse_progress() -> float: + if state != BombState.DEFUSING or _defuse_start_tick < 0: + return 0.0 + var time_needed := _get_defuse_time() + return NetworkTime.seconds_between(_defuse_start_tick, NetworkTime.tick) / time_needed + +func get_bomb_time_remaining() -> float: + if state != BombState.PLANTED and state != BombState.DEFUSING: + return bomb_timer + if planted_tick < 0: + return bomb_timer + var elapsed := NetworkTime.seconds_between(planted_tick, NetworkTime.tick) + return maxf(0.0, bomb_timer - elapsed) + +func _get_defuse_time() -> float: + var spawner := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + if spawner and _defuser_id >= 0: + var avatar: CharacterBody3D = spawner.avatars.get(_defuser_id) as CharacterBody3D + if avatar and avatar.has_defuse_kit: + return defuse_kit_time + return defuse_time + +func _server_tick(_delta: float, tick: int): + if not multiplayer.is_server(): + return + + var spawner := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + + # --- Phase 1: Validate + Cancel (before any completion) --- + + # Validate ongoing plant + if state == BombState.PLANTING and carrier_id >= 0: + if spawner: + var avatar: CharacterBody3D = spawner.avatars.get(carrier_id) as CharacterBody3D + if avatar == null or avatar.is_dead: + drop_at(position) + return + position = avatar.global_position + # Check use_held from carrier's input + var input_node = avatar.get_node_or_null("Input") as PlayerInputFPS + if input_node and not input_node.use_held: + cancel_plant() + return + # Check still on bombsite + var on_site := false + for site in get_tree().get_nodes_in_group("bombsite"): + if site is Bombsite and site.is_player_inside(avatar): + on_site = true + break + if not on_site: + cancel_plant() + return + + # Track carrier position (non-planting) + if state == BombState.CARRIED and carrier_id >= 0: + if spawner: + var avatar: CharacterBody3D = spawner.avatars.get(carrier_id) as CharacterBody3D + if avatar and not avatar.is_dead: + position = avatar.global_position + else: + drop_at(position) + return + + # Validate ongoing defuse + if state == BombState.DEFUSING and _defuser_id >= 0: + if spawner: + var avatar: CharacterBody3D = spawner.avatars.get(_defuser_id) as CharacterBody3D + if avatar == null or avatar.is_dead: + cancel_defuse() + return + if avatar.global_position.distance_to(position) > 2.5: + cancel_defuse() + return + # Check use_held from defuser's input + var input_node = avatar.get_node_or_null("Input") as PlayerInputFPS + if input_node and not input_node.use_held: + cancel_defuse() + return + else: + cancel_defuse() + return + + # --- Phase 2: Completion (only if validation passed) --- + + match state: + BombState.PLANTING: + if _plant_start_tick >= 0 and NetworkTime.seconds_between(_plant_start_tick, tick) >= plant_time: + _complete_plant(tick) + BombState.PLANTED, BombState.DEFUSING: + # Bomb timer (ticks during both planted and defusing) + if planted_tick >= 0 and NetworkTime.seconds_between(planted_tick, tick) >= bomb_timer: + _explode() + + # Defuse completion (after bomb timer, so explosion takes priority) + if state == BombState.DEFUSING and _defuse_start_tick >= 0: + if NetworkTime.seconds_between(_defuse_start_tick, tick) >= _get_defuse_time(): + _complete_defuse() + +func _complete_plant(tick: int): + state = BombState.PLANTED + planted_tick = tick + position = _get_carrier_position() + carrier_id = -1 + _plant_start_tick = -1 + _broadcast_state() + bomb_planted.emit(planted_site) + +func _complete_defuse(): + state = BombState.DEFUSED + _defuse_start_tick = -1 + _defuser_id = -1 + _broadcast_state() + bomb_defused.emit() + if round_manager: + round_manager.end_round(TeamManager.Team.CT) + +func _explode(): + state = BombState.EXPLODED + _broadcast_state() + bomb_exploded.emit() + if round_manager: + round_manager.end_round(TeamManager.Team.T) + +func _get_carrier_position() -> Vector3: + var spawner := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + if spawner and carrier_id >= 0: + var avatar: CharacterBody3D = spawner.avatars.get(carrier_id) as CharacterBody3D + if avatar: + return avatar.global_position + return position + +func _on_round_started(_round_number: int): + reset() + +func _handle_peer_leave(peer_id: int): + if not multiplayer.is_server(): + return + if carrier_id == peer_id and (state == BombState.CARRIED or state == BombState.PLANTING): + drop_at(position) + if _defuser_id == peer_id and state == BombState.DEFUSING: + cancel_defuse() + +func sync_to_peer(peer_id: int): + _sync_state.rpc_id(peer_id, state, carrier_id, position, planted_site, planted_tick, _plant_start_tick, _defuse_start_tick, _defuser_id) + +func _broadcast_state(): + _sync_state.rpc(state, carrier_id, position, planted_site, planted_tick, _plant_start_tick, _defuse_start_tick, _defuser_id) + +@rpc("authority", "call_local", "reliable") +func _sync_state(new_state: int, new_carrier: int, new_pos: Vector3, site: String, p_tick: int, plant_start: int, defuse_start: int, defuser: int) -> void: + state = new_state as BombState + carrier_id = new_carrier + position = new_pos + planted_site = site + planted_tick = p_tick + _plant_start_tick = plant_start + _defuse_start_tick = defuse_start + _defuser_id = defuser diff --git a/examples/multiplayer-fps/scripts/bomb.gd.uid b/examples/multiplayer-fps/scripts/bomb.gd.uid new file mode 100644 index 0000000..1a54301 --- /dev/null +++ b/examples/multiplayer-fps/scripts/bomb.gd.uid @@ -0,0 +1 @@ +uid://bom5rgyo67c5j diff --git a/examples/multiplayer-fps/scripts/bombsite.gd b/examples/multiplayer-fps/scripts/bombsite.gd new file mode 100644 index 0000000..5bdf13c --- /dev/null +++ b/examples/multiplayer-fps/scripts/bombsite.gd @@ -0,0 +1,26 @@ +extends Area3D +class_name Bombsite + +@export var site_name: String = "A" + +func _ready(): + monitoring = true + monitorable = true + add_to_group("bombsite") + + # Create default collision shape if none assigned + var has_shape := false + for child in get_children(): + if child is CollisionShape3D and child.shape != null: + has_shape = true + break + if not has_shape: + var shape := BoxShape3D.new() + shape.size = Vector3(8, 4, 8) + var col := CollisionShape3D.new() + col.shape = shape + add_child(col) + +func is_player_inside(player: CharacterBody3D) -> bool: + var overlapping := get_overlapping_bodies() + return player in overlapping diff --git a/examples/multiplayer-fps/scripts/bombsite.gd.uid b/examples/multiplayer-fps/scripts/bombsite.gd.uid new file mode 100644 index 0000000..085503e --- /dev/null +++ b/examples/multiplayer-fps/scripts/bombsite.gd.uid @@ -0,0 +1 @@ +uid://75nbj6o8h0i diff --git a/examples/multiplayer-fps/scripts/bullethole.gd b/examples/multiplayer-fps/scripts/bullethole.gd new file mode 100644 index 0000000..839b52c --- /dev/null +++ b/examples/multiplayer-fps/scripts/bullethole.gd @@ -0,0 +1,66 @@ +extends Node3D +class_name BulletHole + +## Spawns a bullethole + +## A StandardMaterial3D to use as the bullethole decal. +@export var material: StandardMaterial3D +## Maximum number of bullet holes +@export var instance_limit: int = 20 +## The minimum size of the hole +@export var hole_minimum_size: float = 0.15 +## The maximum size of the hole +@export var hole_maximum_size: float = 0.2 + +@export_flags_3d_render var decal_mask := 1 +@export_flags_3d_render var decal_layer := 1 + +var pool := NodePool.new() + +func _ready(): + pool.pool_limit = instance_limit + pool.spawn_root = get_tree().root.get_node("multiplayer-fps/Map/StaticBody3D") + + var decal_node: Decal = Decal.new() + decal_node.cull_mask = decal_mask + decal_node.layers = decal_layer + + pool.target_node = decal_node + +## Creates a bullethole decal, applies the texture and rotation/position calculations and removes the bullethole after the pool is full +func action(result: Dictionary) -> void: + var decal_node: Decal = pool.next() + create_bullethole.call_deferred(decal_node, result) + +func create_bullethole(decal_node: Decal, result: Dictionary): + decal_node.texture_albedo = material.albedo_texture + decal_node.texture_emission = material.emission_texture + decal_node.texture_normal = material.normal_texture + decal_node.size = Vector3( + randf_range(hole_minimum_size, hole_maximum_size), + 0.02, + randf_range(hole_minimum_size, hole_maximum_size) + ) + + # Extract position and normal from the result dictionary + var collision_point: Vector3 = result.position + var collision_normal: Vector3 = result.normal.normalized() + + # Construct a basis where the z-axis aligns with the collision normal + var z_axis = collision_normal + var x_axis = z_axis.cross(Vector3.UP).normalized() + if x_axis.length() == 0: + x_axis = z_axis.cross(Vector3.RIGHT).normalized() + var y_axis = z_axis.cross(x_axis).normalized() + var collision_basis = Basis(x_axis, y_axis, z_axis) + + # Rotate the decal 90 degrees around the x-axis + var rotation_basis = Basis().rotated(Vector3(1, 0, 0), deg_to_rad(90)) + var transform = Transform3D(rotation_basis, Vector3()) + + # Combine the collision basis and the rotation + decal_node.global_transform = Transform3D(collision_basis, collision_point) * transform + + # Apply random rotation around the normal + var random_rotation = Basis(collision_normal, randf_range(0, 2 * PI)) + decal_node.global_transform.basis = random_rotation * decal_node.global_transform.basis diff --git a/examples/multiplayer-fps/scripts/bullethole.gd.uid b/examples/multiplayer-fps/scripts/bullethole.gd.uid new file mode 100644 index 0000000..5ae920e --- /dev/null +++ b/examples/multiplayer-fps/scripts/bullethole.gd.uid @@ -0,0 +1 @@ +uid://bvmqldrouk2ox diff --git a/examples/multiplayer-fps/scripts/data/weapon_data.gd b/examples/multiplayer-fps/scripts/data/weapon_data.gd new file mode 100644 index 0000000..28214a8 --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapon_data.gd @@ -0,0 +1,22 @@ +extends Resource +class_name WeaponData + +enum FireMode { SEMI, AUTO, MELEE } + +@export var weapon_id: int = 0 +@export var weapon_name: String = "" +@export var slot: int = 0 +@export var damage: int = 0 +@export var fire_rate: float = 0.0 +@export var fire_mode: FireMode = FireMode.SEMI +@export var magazine_size: int = 0 +@export var reserve_size: int = 0 +@export var move_speed: float = 5.0 +@export var recoil_per_shot: float = 0.0 +@export var recoil_recovery: float = 10.0 +@export var kill_reward: int = 300 +@export var armor_penetration: float = 0.0 +@export var price: int = 0 +@export var team: int = -1 # -1=all, 0=T, 1=CT +@export var max_distance: float = 1000.0 +@export var reload_time: float = 2.0 diff --git a/examples/multiplayer-fps/scripts/data/weapon_data.gd.uid b/examples/multiplayer-fps/scripts/data/weapon_data.gd.uid new file mode 100644 index 0000000..342a453 --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapon_data.gd.uid @@ -0,0 +1 @@ +uid://dhcvlxssmwofr diff --git a/examples/multiplayer-fps/scripts/data/weapon_registry.gd b/examples/multiplayer-fps/scripts/data/weapon_registry.gd new file mode 100644 index 0000000..5646db7 --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapon_registry.gd @@ -0,0 +1,24 @@ +extends Node + +const NONE := 0 +const KNIFE := 1 +const GLOCK := 2 +const USP := 3 +const AK47 := 4 +const M4A1 := 5 +const AWP := 6 + +const WEAPONS := { + 1: preload("res://examples/multiplayer-fps/scripts/data/weapons/knife.tres"), + 2: preload("res://examples/multiplayer-fps/scripts/data/weapons/glock.tres"), + 3: preload("res://examples/multiplayer-fps/scripts/data/weapons/usp.tres"), + 4: preload("res://examples/multiplayer-fps/scripts/data/weapons/ak47.tres"), + 5: preload("res://examples/multiplayer-fps/scripts/data/weapons/m4a1.tres"), + 6: preload("res://examples/multiplayer-fps/scripts/data/weapons/awp.tres"), +} + +static func get_weapon(id: int) -> WeaponData: + return WEAPONS.get(id, null) + +static func get_default_pistol(team: int) -> int: + return GLOCK if team == 0 else USP diff --git a/examples/multiplayer-fps/scripts/data/weapon_registry.gd.uid b/examples/multiplayer-fps/scripts/data/weapon_registry.gd.uid new file mode 100644 index 0000000..63843cf --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapon_registry.gd.uid @@ -0,0 +1 @@ +uid://4eps7xgx8wxh diff --git a/examples/multiplayer-fps/scripts/data/weapons/ak47.tres b/examples/multiplayer-fps/scripts/data/weapons/ak47.tres new file mode 100644 index 0000000..763d8dd --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/ak47.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 4 +weapon_name = "AK-47" +slot = 2 +damage = 36 +fire_rate = 0.1 +fire_mode = 1 +magazine_size = 30 +reserve_size = 90 +move_speed = 4.5 +recoil_per_shot = 2.5 +recoil_recovery = 10.0 +kill_reward = 300 +armor_penetration = 0.77 +price = 2500 +team = 0 +max_distance = 1000.0 +reload_time = 2.5 diff --git a/examples/multiplayer-fps/scripts/data/weapons/awp.tres b/examples/multiplayer-fps/scripts/data/weapons/awp.tres new file mode 100644 index 0000000..263f83b --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/awp.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 6 +weapon_name = "AWP" +slot = 2 +damage = 110 +fire_rate = 1.5 +fire_mode = 0 +magazine_size = 10 +reserve_size = 30 +move_speed = 4.0 +recoil_per_shot = 0.0 +recoil_recovery = 0.0 +kill_reward = 50 +armor_penetration = 0.97 +price = 4750 +team = -1 +max_distance = 1000.0 +reload_time = 3.7 diff --git a/examples/multiplayer-fps/scripts/data/weapons/glock.tres b/examples/multiplayer-fps/scripts/data/weapons/glock.tres new file mode 100644 index 0000000..f0c32cb --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/glock.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 2 +weapon_name = "Glock" +slot = 1 +damage = 25 +fire_rate = 0.15 +fire_mode = 0 +magazine_size = 20 +reserve_size = 120 +move_speed = 5.5 +recoil_per_shot = 1.5 +recoil_recovery = 10.0 +kill_reward = 300 +armor_penetration = 0.47 +price = 400 +team = 0 +max_distance = 1000.0 +reload_time = 2.2 diff --git a/examples/multiplayer-fps/scripts/data/weapons/knife.tres b/examples/multiplayer-fps/scripts/data/weapons/knife.tres new file mode 100644 index 0000000..a9d5538 --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/knife.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 1 +weapon_name = "Knife" +slot = 0 +damage = 50 +fire_rate = 0.4 +fire_mode = 2 +magazine_size = 0 +reserve_size = 0 +move_speed = 6.0 +recoil_per_shot = 0.0 +recoil_recovery = 0.0 +kill_reward = 1500 +armor_penetration = 1.0 +price = 0 +team = -1 +max_distance = 2.0 +reload_time = 0.0 diff --git a/examples/multiplayer-fps/scripts/data/weapons/m4a1.tres b/examples/multiplayer-fps/scripts/data/weapons/m4a1.tres new file mode 100644 index 0000000..70579f5 --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/m4a1.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 5 +weapon_name = "M4A1" +slot = 2 +damage = 33 +fire_rate = 0.09 +fire_mode = 1 +magazine_size = 30 +reserve_size = 90 +move_speed = 4.7 +recoil_per_shot = 2.0 +recoil_recovery = 10.0 +kill_reward = 300 +armor_penetration = 0.7 +price = 3100 +team = 1 +max_distance = 1000.0 +reload_time = 3.1 diff --git a/examples/multiplayer-fps/scripts/data/weapons/usp.tres b/examples/multiplayer-fps/scripts/data/weapons/usp.tres new file mode 100644 index 0000000..241f8ab --- /dev/null +++ b/examples/multiplayer-fps/scripts/data/weapons/usp.tres @@ -0,0 +1,23 @@ +[gd_resource type="Resource" script_class="WeaponData" load_steps=2 format=3] + +[ext_resource type="Script" path="res://examples/multiplayer-fps/scripts/data/weapon_data.gd" id="1"] + +[resource] +script = ExtResource("1") +weapon_id = 3 +weapon_name = "USP" +slot = 1 +damage = 34 +fire_rate = 0.17 +fire_mode = 0 +magazine_size = 12 +reserve_size = 48 +move_speed = 5.5 +recoil_per_shot = 1.2 +recoil_recovery = 10.0 +kill_reward = 300 +armor_penetration = 0.5 +price = 500 +team = 1 +max_distance = 1000.0 +reload_time = 2.7 diff --git a/examples/multiplayer-fps/scripts/economy_manager.gd b/examples/multiplayer-fps/scripts/economy_manager.gd new file mode 100644 index 0000000..7c3d015 --- /dev/null +++ b/examples/multiplayer-fps/scripts/economy_manager.gd @@ -0,0 +1,298 @@ +extends Node +class_name EconomyManager + +const START_MONEY := 800 +const MAX_MONEY := 16000 +const WIN_REWARD := 3250 +const LOSS_BASE := 1400 +const LOSS_INCREMENT := 500 +const LOSS_MAX := 3400 +const PLANT_BONUS := 300 +const KEVLAR_PRICE := 650 +const DEFUSE_KIT_PRICE := 400 +const FLASH_PRICE := 200 +const FLASH_MAX := 2 +const SMOKE_PRICE := 300 +const SMOKE_MAX := 1 + +# peer_id -> money (server-authoritative) +var _money: Dictionary = {} +# peer_id -> loss streak count +var _loss_streak: Dictionary = {} + +var team_manager: TeamManager +var round_manager: RoundManager + +func _ready(): + team_manager = $"../TeamManager" + round_manager = $"../RoundManager" + + if round_manager: + round_manager.player_killed.connect(_on_player_killed) + round_manager.round_ended.connect(_on_round_ended) + + var bomb_node := get_tree().current_scene.get_node_or_null("Network/Bomb") as Bomb + if bomb_node: + bomb_node.bomb_planted.connect(_on_bomb_planted.bind(bomb_node)) + +func init_player(peer_id: int): + _money[peer_id] = START_MONEY + _loss_streak[peer_id] = 0 + if multiplayer.is_server(): + _sync_money.rpc_id(peer_id, START_MONEY) + +func get_money(peer_id: int) -> int: + return _money.get(peer_id, 0) + +func add_money(peer_id: int, amount: int): + if not multiplayer.is_server(): + return + _money[peer_id] = clampi(_money.get(peer_id, 0) + amount, 0, MAX_MONEY) + _sync_money.rpc_id(peer_id, _money[peer_id]) + +func try_buy_weapon(peer_id: int, weapon_id: int, avatar: CharacterBody3D) -> bool: + if not multiplayer.is_server(): + return false + + var weapon := WeaponRegistry.get_weapon(weapon_id) + if weapon == null: + return false + + # Must be alive + if avatar.is_dead: + return false + + # Must be in freeze time + if round_manager.state != RoundManager.RoundState.FREEZE_TIME: + return false + if NetworkTime.tick >= round_manager.freeze_end_tick: + return false + + # Team restriction + if weapon.team >= 0: + var player_team := team_manager.get_team(peer_id) + if player_team != weapon.team: + return false + + # Price check + var money := get_money(peer_id) + if money < weapon.price: + return false + + # Already have same weapon = denied + var wm: WeaponManager = avatar.weapon_manager + if wm.inventory[weapon.slot] == weapon_id: + return false + + # Buy: deduct money, give weapon + add_money(peer_id, -weapon.price) + wm.give_weapon(weapon_id) + return true + +func try_buy_kevlar(peer_id: int, avatar: CharacterBody3D) -> bool: + if not multiplayer.is_server(): + return false + + if avatar.is_dead: + return false + + if round_manager.state != RoundManager.RoundState.FREEZE_TIME: + return false + if NetworkTime.tick >= round_manager.freeze_end_tick: + return false + + if avatar.armor >= 100: + return false + + var money := get_money(peer_id) + if money < KEVLAR_PRICE: + return false + + add_money(peer_id, -KEVLAR_PRICE) + avatar.armor = 100 + return true + +func try_buy_defuse_kit(peer_id: int, avatar: CharacterBody3D) -> bool: + if not multiplayer.is_server(): + return false + + if avatar.is_dead: + return false + + if round_manager.state != RoundManager.RoundState.FREEZE_TIME: + return false + if NetworkTime.tick >= round_manager.freeze_end_tick: + return false + + # Only CTs + if team_manager.get_team(peer_id) != TeamManager.Team.CT: + return false + + if avatar.has_defuse_kit: + return false + + var money := get_money(peer_id) + if money < DEFUSE_KIT_PRICE: + return false + + add_money(peer_id, -DEFUSE_KIT_PRICE) + avatar.has_defuse_kit = true + return true + +func try_buy_grenade(peer_id: int, grenade_type: int, avatar: CharacterBody3D) -> bool: + ## grenade_type: 0=flash, 1=smoke + if not multiplayer.is_server(): + return false + + if avatar.is_dead: + return false + + if round_manager.state != RoundManager.RoundState.FREEZE_TIME: + return false + if NetworkTime.tick >= round_manager.freeze_end_tick: + return false + + var price := FLASH_PRICE if grenade_type == 0 else SMOKE_PRICE + var money := get_money(peer_id) + if money < price: + return false + + var wm: WeaponManager = avatar.weapon_manager + if not wm.add_grenade(grenade_type): + return false # at max + + add_money(peer_id, -price) + return true + +func _on_bomb_planted(_site_name: String, bomb_node: Bomb): + if not multiplayer.is_server(): + return + # Plant bonus: all Ts get $300 + for peer_id in team_manager.get_team_members(TeamManager.Team.T): + add_money(peer_id, PLANT_BONUS) + +func _on_player_killed(victim_id: int, killer_id: int, weapon_id: int, _kill_tick: int): + if not multiplayer.is_server(): + return + if killer_id < 0: + return + var weapon := WeaponRegistry.get_weapon(weapon_id) + var reward := weapon.kill_reward if weapon else 300 + add_money(killer_id, reward) + +func _on_round_ended(winner: TeamManager.Team): + if not multiplayer.is_server(): + return + + for peer_id in team_manager.assignments: + var team := team_manager.get_team(peer_id) + if team == TeamManager.Team.NONE: + continue + + if team == winner: + add_money(peer_id, WIN_REWARD) + _loss_streak[peer_id] = 0 + else: + var streak: int = _loss_streak.get(peer_id, 0) + var loss_reward: int = mini(LOSS_BASE + streak * LOSS_INCREMENT, LOSS_MAX) + add_money(peer_id, loss_reward) + _loss_streak[peer_id] = streak + 1 + +func sync_to_peer(peer_id: int): + if not multiplayer.is_server(): + return + var money: int = _money.get(peer_id, START_MONEY) + _sync_money.rpc_id(peer_id, money) + +func remove_player(peer_id: int): + _money.erase(peer_id) + _loss_streak.erase(peer_id) + +@rpc("authority", "reliable") +func _sync_money(amount: int) -> void: + var local_id := multiplayer.get_unique_id() + _money[local_id] = amount + +# --- Public buy API (handles host-direct-call vs client-RPC) --- + +func request_buy_weapon(weapon_id: int): + var peer_id := multiplayer.get_unique_id() + if multiplayer.is_server(): + _do_buy_weapon(peer_id, weapon_id) + else: + _rpc_buy_weapon.rpc_id(get_multiplayer_authority(), weapon_id) + +func request_buy_kevlar(): + var peer_id := multiplayer.get_unique_id() + if multiplayer.is_server(): + _do_buy_kevlar(peer_id) + else: + _rpc_buy_kevlar.rpc_id(get_multiplayer_authority()) + +func request_buy_grenade(grenade_type: int): + var peer_id := multiplayer.get_unique_id() + if multiplayer.is_server(): + _do_buy_grenade(peer_id, grenade_type) + else: + _rpc_buy_grenade.rpc_id(get_multiplayer_authority(), grenade_type) + +func request_buy_defuse_kit(): + var peer_id := multiplayer.get_unique_id() + if multiplayer.is_server(): + _do_buy_defuse_kit(peer_id) + else: + _rpc_buy_defuse_kit.rpc_id(get_multiplayer_authority()) + +# --- Internal: resolve peer_id to avatar and execute --- + +func _get_avatar(peer_id: int) -> CharacterBody3D: + var spawner := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + if spawner == null: + return null + return spawner.avatars.get(peer_id) as CharacterBody3D + +func _do_buy_weapon(peer_id: int, weapon_id: int): + var avatar := _get_avatar(peer_id) + if avatar: + try_buy_weapon(peer_id, weapon_id, avatar) + +func _do_buy_kevlar(peer_id: int): + var avatar := _get_avatar(peer_id) + if avatar: + try_buy_kevlar(peer_id, avatar) + +func _do_buy_grenade(peer_id: int, grenade_type: int): + var avatar := _get_avatar(peer_id) + if avatar: + try_buy_grenade(peer_id, grenade_type, avatar) + +func _do_buy_defuse_kit(peer_id: int): + var avatar := _get_avatar(peer_id) + if avatar: + try_buy_defuse_kit(peer_id, avatar) + +# --- RPCs: client → server --- + +@rpc("any_peer", "reliable") +func _rpc_buy_weapon(weapon_id: int) -> void: + if not multiplayer.is_server(): + return + _do_buy_weapon(multiplayer.get_remote_sender_id(), weapon_id) + +@rpc("any_peer", "reliable") +func _rpc_buy_kevlar() -> void: + if not multiplayer.is_server(): + return + _do_buy_kevlar(multiplayer.get_remote_sender_id()) + +@rpc("any_peer", "reliable") +func _rpc_buy_grenade(grenade_type: int) -> void: + if not multiplayer.is_server(): + return + _do_buy_grenade(multiplayer.get_remote_sender_id(), grenade_type) + +@rpc("any_peer", "reliable") +func _rpc_buy_defuse_kit() -> void: + if not multiplayer.is_server(): + return + _do_buy_defuse_kit(multiplayer.get_remote_sender_id()) diff --git a/examples/multiplayer-fps/scripts/economy_manager.gd.uid b/examples/multiplayer-fps/scripts/economy_manager.gd.uid new file mode 100644 index 0000000..7afa870 --- /dev/null +++ b/examples/multiplayer-fps/scripts/economy_manager.gd.uid @@ -0,0 +1 @@ +uid://6oqdm8uv2u4r diff --git a/examples/multiplayer-fps/scripts/grenade.gd b/examples/multiplayer-fps/scripts/grenade.gd new file mode 100644 index 0000000..d5c7f8f --- /dev/null +++ b/examples/multiplayer-fps/scripts/grenade.gd @@ -0,0 +1,160 @@ +extends Node3D +class_name Grenade + +enum GrenadeType { FLASH, SMOKE } + +@export var grenade_type: GrenadeType = GrenadeType.FLASH +@export var fuse_time: float = 1.5 +@export var throw_force: float = 20.0 +@export var gravity: float = 15.0 +@export var bounce_factor: float = 0.4 + +var velocity: Vector3 = Vector3.ZERO +var _fuse_timer: float = 0.0 +var _detonated := false +var _owner_id: int = -1 + +func setup(origin: Vector3, direction: Vector3, owner_id: int, type: GrenadeType): + global_position = origin + grenade_type = type + _owner_id = owner_id + velocity = direction * throw_force + Vector3.UP * 5.0 + + if type == GrenadeType.FLASH: + fuse_time = 1.5 + else: + fuse_time = 2.0 + +func _physics_process(delta: float): + if _detonated: + return + + # Simple physics + velocity.y -= gravity * delta + var new_pos := global_position + velocity * delta + + # Basic bounce off floor + if new_pos.y < 0.1: + new_pos.y = 0.1 + velocity.y = -velocity.y * bounce_factor + velocity.x *= bounce_factor + velocity.z *= bounce_factor + + global_position = new_pos + + # Fuse countdown + _fuse_timer += delta + if _fuse_timer >= fuse_time: + _detonate() + +func _detonate(): + if _detonated: + return + _detonated = true + + if not multiplayer.is_server(): + return + + match grenade_type: + GrenadeType.FLASH: + _flash_effect() + GrenadeType.SMOKE: + _smoke_effect() + +func _flash_effect(): + var space := get_world_3d().direct_space_state + var flash_pos := global_position + + # Check all players for flash + var spawner := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + if spawner == null: + queue_free() + return + + for peer_id in spawner.avatars: + var avatar = spawner.avatars[peer_id] as CharacterBody3D + if avatar == null or avatar.is_dead: + continue + + var head_pos: Vector3 = avatar.global_position + Vector3.UP * 0.7 + var distance := flash_pos.distance_to(head_pos) + if distance > 30.0: + continue + + # LOS check + var query := PhysicsRayQueryParameters3D.create(flash_pos, head_pos) + query.exclude = [avatar.get_rid()] + var result := space.intersect_ray(query) + + if result.is_empty(): + # Direct line of sight — calculate flash duration + var duration := _calculate_flash_duration(distance, avatar, head_pos, flash_pos) + if duration > 0.0: + _apply_flash.rpc_id(peer_id, duration) + + # Cleanup + call_deferred("queue_free") + +func _calculate_flash_duration(distance: float, avatar: CharacterBody3D, head_pos: Vector3, flash_pos: Vector3) -> float: + # Base duration: closer = longer flash + var base := lerpf(3.5, 0.5, clampf(distance / 25.0, 0.0, 1.0)) + + # Facing check: looking at flash = full duration, away = reduced + var head := avatar.get_node_or_null("Head") as Node3D + if head: + var to_flash := (flash_pos - head_pos).normalized() + var facing := -head.global_transform.basis.z + var dot := facing.dot(to_flash) + if dot < 0.0: + base *= 0.3 # Looking away + else: + base *= lerpf(0.5, 1.0, dot) + + return base + +func _smoke_effect(): + # Spawn smoke zone at detonation position + _spawn_smoke.rpc(global_position) + # Smoke grenade stays alive for smoke duration, then frees itself + set_physics_process(false) + var smoke_duration := 18.0 + get_tree().create_timer(smoke_duration).timeout.connect(queue_free) + +@rpc("authority", "call_local", "reliable") +func _apply_flash(duration: float) -> void: + # Client-side: white screen effect + var canvas := CanvasLayer.new() + canvas.layer = 100 + var rect := ColorRect.new() + rect.color = Color(1, 1, 1, 1) + rect.set_anchors_preset(Control.PRESET_FULL_RECT) + canvas.add_child(rect) + get_tree().current_scene.add_child(canvas) + + # Fade out + var tween := get_tree().create_tween() + tween.tween_property(rect, "color:a", 0.0, duration) + tween.tween_callback(canvas.queue_free) + +@rpc("authority", "call_local", "reliable") +func _spawn_smoke(pos: Vector3) -> void: + # Client-side: visual smoke particles + var smoke_node := Node3D.new() + smoke_node.name = "SmokeCloud" + smoke_node.global_position = pos + get_tree().current_scene.add_child(smoke_node) + + # Simple visual: grey sphere mesh as placeholder + var mesh_inst := MeshInstance3D.new() + var sphere := SphereMesh.new() + sphere.radius = 3.0 + sphere.height = 4.0 + var mat := StandardMaterial3D.new() + mat.albedo_color = Color(0.6, 0.6, 0.6, 0.5) + mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + mat.cull_mode = BaseMaterial3D.CULL_DISABLED + sphere.material = mat + mesh_inst.mesh = sphere + smoke_node.add_child(mesh_inst) + + get_tree().create_timer(18.0).timeout.connect(smoke_node.queue_free) diff --git a/examples/multiplayer-fps/scripts/grenade.gd.uid b/examples/multiplayer-fps/scripts/grenade.gd.uid new file mode 100644 index 0000000..5b8f4c2 --- /dev/null +++ b/examples/multiplayer-fps/scripts/grenade.gd.uid @@ -0,0 +1 @@ +uid://dxwydsaf3nb6c diff --git a/examples/multiplayer-fps/scripts/node-pool.gd b/examples/multiplayer-fps/scripts/node-pool.gd new file mode 100644 index 0000000..29328de --- /dev/null +++ b/examples/multiplayer-fps/scripts/node-pool.gd @@ -0,0 +1,38 @@ +extends Node +class_name NodePool + +## The maximum objects in the pool +@export var pool_limit: int = 10 +## The node to duplicate +@export var target_node: Node: set = _set_target_node +## The flag number to duplicate with +@export var duplicate_flag: int = 15 +## Where to spawn additional nodes +@export var spawn_root: Node + +var pool: Array[Node] = [] + +func _set_target_node(new_node: Node) -> void: + target_node = new_node + clear() + _add_node_to_tree(target_node) + pool = [target_node] + +func _add_node_to_tree(node: Node) -> void: + if !node.is_inside_tree(): + if is_instance_valid(spawn_root): + spawn_root.add_child.call_deferred(node) + else: + add_child(node) + +func next() -> Node: + var node: Node = pool.pop_front() if pool.size() >= pool_limit else pool[0].duplicate(duplicate_flag) + pool.append(node) + _add_node_to_tree(node) + return node + +func clear(): + for node in pool: + if node.is_instance_valid(): + node.queue_free() + pool = [] diff --git a/examples/multiplayer-fps/scripts/node-pool.gd.uid b/examples/multiplayer-fps/scripts/node-pool.gd.uid new file mode 100644 index 0000000..58112b4 --- /dev/null +++ b/examples/multiplayer-fps/scripts/node-pool.gd.uid @@ -0,0 +1 @@ +uid://b7nq6fh5eegbw diff --git a/examples/multiplayer-fps/scripts/player-input.gd b/examples/multiplayer-fps/scripts/player-input.gd new file mode 100644 index 0000000..0cc1cb8 --- /dev/null +++ b/examples/multiplayer-fps/scripts/player-input.gd @@ -0,0 +1,129 @@ +extends BaseNetInput +class_name PlayerInputFPS + +@export var mouse_sensitivity: float = 1.0 +@export var big_gun: MeshInstance3D +@export var hud: CanvasGroup + +@onready var camera: Camera3D = $"../Head/Camera3D" + +# Config variables +var is_setup: bool = false +var override_mouse: bool = false + +# Input latches (set in _input, consumed in _gather) +var _fire_pressed_latch := false +var _reload_pressed_latch := false +var _next_weapon_latch := false +var _prev_weapon_latch := false +var _slot_1_latch := false +var _slot_2_latch := false +var _slot_3_latch := false +var _slot_4_latch := false + +# Input variables (frame-rate mouse accumulator) +var mouse_rotation: Vector2 = Vector2.ZERO + +# Rollback input properties (set in _gather) +var look_angle: Vector2 = Vector2.ZERO +var movement: Vector3 = Vector3.ZERO +var jump: bool = false +var fire_held: bool = false +var fire_pressed: bool = false +var reload_pressed: bool = false +var next_weapon: bool = false +var prev_weapon: bool = false +var slot_1: bool = false +var slot_2: bool = false +var slot_3: bool = false +var slot_4: bool = false +var use_held: bool = false + +func _notification(what): + if what == NOTIFICATION_WM_WINDOW_FOCUS_IN: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + override_mouse = false + +func _input(event: InputEvent) -> void: + if !is_multiplayer_authority(): return + + if event is InputEventMouseMotion: + mouse_rotation.y += event.relative.x * mouse_sensitivity + mouse_rotation.x += event.relative.y * mouse_sensitivity + + if event.is_action_pressed("escape"): + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + override_mouse = true + + # Latched inputs — captured on press, consumed once in _gather + if event.is_action_pressed("mouse_weapon_fire"): + _fire_pressed_latch = true + if event.is_action_pressed("weapon_reload"): + _reload_pressed_latch = true + if event.is_action_pressed("weapon_next"): + _next_weapon_latch = true + if event.is_action_pressed("weapon_prev"): + _prev_weapon_latch = true + if event.is_action_pressed("weapon_slot_1"): + _slot_1_latch = true + if event.is_action_pressed("weapon_slot_2"): + _slot_2_latch = true + if event.is_action_pressed("weapon_slot_3"): + _slot_3_latch = true + if event.is_action_pressed("weapon_slot_4"): + _slot_4_latch = true + +func _gather(): + if !is_setup: + setup() + + # Movement (continuous) + var mx = Input.get_axis("move_west", "move_east") + var mz = Input.get_axis("move_north", "move_south") + movement = Vector3(mx, 0, mz) + + jump = Input.is_action_pressed("move_jump") + + # Fire: held state + one-shot pressed latch + fire_held = Input.is_action_pressed("mouse_weapon_fire") + fire_pressed = _fire_pressed_latch + _fire_pressed_latch = false + + # Weapon inputs (latched) + reload_pressed = _reload_pressed_latch + _reload_pressed_latch = false + + next_weapon = _next_weapon_latch + _next_weapon_latch = false + + prev_weapon = _prev_weapon_latch + _prev_weapon_latch = false + + slot_1 = _slot_1_latch + _slot_1_latch = false + + slot_2 = _slot_2_latch + _slot_2_latch = false + + slot_3 = _slot_3_latch + _slot_3_latch = false + + slot_4 = _slot_4_latch + _slot_4_latch = false + + use_held = Input.is_action_pressed("use_action") + + # Mouse look + if override_mouse: + look_angle = Vector2.ZERO + mouse_rotation = Vector2.ZERO + else: + look_angle = Vector2(-mouse_rotation.y, -mouse_rotation.x) + mouse_rotation = Vector2.ZERO + +func setup(): + is_setup = true + camera.current = true + big_gun.hide() + hud.show() + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) diff --git a/examples/multiplayer-fps/scripts/player-input.gd.uid b/examples/multiplayer-fps/scripts/player-input.gd.uid new file mode 100644 index 0000000..5e4d265 --- /dev/null +++ b/examples/multiplayer-fps/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://bnyn3dyybrwkj diff --git a/examples/multiplayer-fps/scripts/player-spawner.gd b/examples/multiplayer-fps/scripts/player-spawner.gd new file mode 100644 index 0000000..a50d19d --- /dev/null +++ b/examples/multiplayer-fps/scripts/player-spawner.gd @@ -0,0 +1,159 @@ +extends Node + +@export var player_scene: PackedScene + +var t_spawn_points: Array[Marker3D] = [] +var ct_spawn_points: Array[Marker3D] = [] +var team_manager: TeamManager +var round_manager: RoundManager +var economy_manager: EconomyManager +var bomb: Bomb +var avatars: Dictionary = {} + +func _ready(): + team_manager = $"../TeamManager" + round_manager = $"../RoundManager" + economy_manager = $"../EconomyManager" + bomb = get_tree().current_scene.get_node_or_null("Network/Bomb") + + # Discover spawn points from scene containers + var scene_root := get_tree().current_scene + var t_container := scene_root.get_node_or_null("T Spawns") + if t_container: + for child in t_container.get_children(): + if child is Marker3D: + t_spawn_points.append(child) + var ct_container := scene_root.get_node_or_null("CT Spawns") + if ct_container: + for child in ct_container.get_children(): + if child is Marker3D: + ct_spawn_points.append(child) + + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + + if round_manager: + round_manager.round_started.connect(_handle_round_start) + +func _handle_connected(id: int): + _spawn(id) + +func _handle_host(): + _spawn(1) + # Auto-start match + if round_manager: + round_manager.start_match() + +func _handle_new_peer(id: int): + _spawn(id) + if multiplayer.is_server(): + team_manager.sync_to_peer(id) + if economy_manager: + economy_manager.sync_to_peer(id) + if bomb: + bomb.sync_to_peer(id) + if avatars.size() <= 2: + # First opponent joined — restart round so both spawn alive + round_manager.start_round() + else: + # 3+ players: sync state, spectate until next round + round_manager.sync_to_peer(id) + var avatar = avatars.get(id) + if avatar and avatar.has_method("set_spectator"): + avatar.call_deferred("set_spectator") + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + if economy_manager: + economy_manager.remove_player(id) + +func _handle_stop(): + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _handle_round_start(_round_number: int): + if not multiplayer.is_server(): + return + # Respawn all players at their team spawn points + for peer_id in avatars: + var avatar = avatars[peer_id] as CharacterBody3D + if avatar == null: + continue + # Fresh spawns (_has_played_round=false) always get default loadout + var survived: bool = not avatar.is_dead and avatar._has_played_round + var spawn_pos := get_team_spawn_point(peer_id) + avatar.round_respawn(spawn_pos, survived) + + # Assign bomb to a random T player + if bomb: + var t_members := team_manager.get_team_members(TeamManager.Team.T) + if not t_members.is_empty(): + var idx := hash(_round_number * 31) % t_members.size() + bomb.assign_to_player(t_members[idx]) + +func _spawn(id: int): + # Auto-assign team on server + if multiplayer.is_server(): + team_manager.auto_assign(id) + + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + add_child(avatar) + avatar.global_position = get_team_spawn_point(id) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + # Pass references + if avatar.has_method("setup_references"): + avatar.setup_references(team_manager, round_manager) + + # Init economy + if multiplayer.is_server() and economy_manager: + economy_manager.init_player(id) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) + + # Notify RollbackSynchronizer about ownership changes + var rollback_sync = avatar.find_child("RollbackSynchronizer") + if rollback_sync and rollback_sync.has_method("process_settings"): + rollback_sync.process_settings() + +func get_team_spawn_point(peer_id: int, spawn_idx: int = 0) -> Vector3: + var team := team_manager.get_team(peer_id) + var points: Array[Marker3D] + + match team: + TeamManager.Team.T: + points = t_spawn_points + TeamManager.Team.CT: + points = ct_spawn_points + _: + # Fallback: use T spawns + points = t_spawn_points + + if points.is_empty(): + return Vector3.ZERO + + var idx := hash(peer_id * 37 + spawn_idx * 19) % points.size() + return points[idx].global_position + +func get_next_spawn_point(peer_id: int, spawn_idx: int = 0) -> Vector3: + return get_team_spawn_point(peer_id, spawn_idx) diff --git a/examples/multiplayer-fps/scripts/player-spawner.gd.uid b/examples/multiplayer-fps/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..980bc2c --- /dev/null +++ b/examples/multiplayer-fps/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://b7dcdxh4qdxwv diff --git a/examples/multiplayer-fps/scripts/player-weapon.gd.uid b/examples/multiplayer-fps/scripts/player-weapon.gd.uid new file mode 100644 index 0000000..7983ee3 --- /dev/null +++ b/examples/multiplayer-fps/scripts/player-weapon.gd.uid @@ -0,0 +1 @@ +uid://b0jw6glwukfdf diff --git a/examples/multiplayer-fps/scripts/player.gd b/examples/multiplayer-fps/scripts/player.gd new file mode 100644 index 0000000..41dfb92 --- /dev/null +++ b/examples/multiplayer-fps/scripts/player.gd @@ -0,0 +1,381 @@ +extends CharacterBody3D + +@export var jump_strength = 5.0 + +@onready var display_name := $DisplayNameLabel3D as Label3D +@onready var input := $Input as PlayerInputFPS +@onready var tick_interpolator := $TickInterpolator as TickInterpolator +@onready var head := $Head as Node3D +@onready var hud := $HUD as CanvasGroup +@onready var camera: Camera3D = $Head/Camera3D +@onready var weapon_manager: WeaponManager = $Head/WeaponManager + +static var _logger := NetfoxLogger.new("game", "Player") + +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") +var health: int = 100 +var death_tick: int = -1 +var respawn_position: Vector3 +var did_respawn := false +var respawn_tick: int = -1 +var deaths := 0 +var is_dead := false + +# Kill attribution (rollback state) +var last_damage_attacker_id: int = -1 +var last_damage_weapon_id: int = 0 +var last_damage_tick: int = -1 + +# Armor and equipment +var armor: int = 0 +var has_defuse_kit: bool = false + +# Track deaths across tick loops to detect state changes +var _ackd_deaths := 0 +var _was_hit := false +var _needs_teleport := false +var _has_played_round := false + +# Frame-rate local camera +var _is_local := false +var _sim_transform: Transform3D +var _sim_head_transform: Transform3D +var _sim_yaw: float +var _sim_pitch: float +var _lerp_from_pos: Vector3 +var _lerp_to_pos: Vector3 + +var team_manager: TeamManager +var round_manager: RoundManager + +func _ready(): + display_name.text = name + hud.hide() + + NetworkTime.before_tick_loop.connect(_before_tick_loop) + NetworkTime.after_tick_loop.connect(_after_tick_loop) + NetworkTime.on_tick.connect(_bomb_tick) + +func setup_references(tm: TeamManager, rm: RoundManager): + team_manager = tm + round_manager = rm + +func _setup_local_camera(): + _is_local = true + tick_interpolator._disconnect_signals() + tick_interpolator.enabled = false + _sim_transform = global_transform + _sim_head_transform = head.transform + _sim_yaw = rotation.y + _sim_pitch = head.rotation.x + _lerp_from_pos = global_position + _lerp_to_pos = global_position + +func _before_tick_loop(): + _ackd_deaths = deaths + _needs_teleport = false + if _is_local: + global_transform = _sim_transform + head.transform = _sim_head_transform + +func _after_tick_loop(): + if _is_local: + _sim_transform = global_transform + _sim_head_transform = head.transform + _sim_yaw = rotation.y + _sim_pitch = head.rotation.x + _lerp_from_pos = _lerp_to_pos + _lerp_to_pos = global_position + + if _needs_teleport: + if _is_local: + _lerp_from_pos = global_position + _lerp_to_pos = global_position + else: + tick_interpolator.teleport() + + # Death detected during rollback loop + if deaths > _ackd_deaths: + if _is_local: + _lerp_from_pos = global_position + _lerp_to_pos = global_position + else: + tick_interpolator.teleport() + is_dead = true + $DieSFX.play() + _hide_player() + # Server: report kill with attribution, drop bomb + if is_multiplayer_authority(): + _logger.warning("%s died at tick %s", [name, death_tick]) + # Drop bomb if carrier + var bomb_node := get_tree().current_scene.get_node_or_null("Network/Bomb") as Bomb + if bomb_node and bomb_node.carrier_id == get_player_id(): + bomb_node.drop_at(global_position) + if round_manager: + round_manager.report_kill(get_player_id(), last_damage_attacker_id, last_damage_weapon_id, death_tick) + _sync_death.rpc(death_tick) + _ackd_deaths = deaths + + if _was_hit: + $HitSFX.play() + _was_hit = false + +func _process(_delta: float): + if not _is_local: + if input.is_multiplayer_authority(): + _setup_local_camera() + else: + return + + # Smooth position interpolation between ticks + var f := NetworkTime.tick_factor + global_position = _lerp_from_pos.lerp(_lerp_to_pos, f) + + # Frame-rate mouse look (recoil only affects raycast, not camera) + rotation.y = _sim_yaw + (-input.mouse_rotation.y) + head.rotation.x = clamp(_sim_pitch + (-input.mouse_rotation.x), -1.57, 1.57) + head.rotation.y = 0 + head.rotation.z = 0 + +func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: + # Handle round respawn teleport inside rollback + if respawn_tick >= 0 and tick == respawn_tick: + global_position = respawn_position + velocity = Vector3.ZERO + did_respawn = true + _needs_teleport = true + else: + did_respawn = false + + # Dead check + if death_tick >= 0 and tick >= death_tick: + return + + # Death detection inside rollback + if health <= 0: + death_tick = tick + deaths += 1 + return + + # Freeze detection + var is_frozen := round_manager != null and round_manager.freeze_end_tick >= 0 and tick < round_manager.freeze_end_tick + + # Handle look (always allowed) + rotate_object_local(Vector3(0, 1, 0), input.look_angle.x) + head.rotate_object_local(Vector3(1, 0, 0), input.look_angle.y) + head.rotation.x = clamp(head.rotation.x, -1.57, 1.57) + head.rotation.z = 0 + head.rotation.y = 0 + + # Gravity + Jump + _force_update_is_on_floor() + if is_on_floor(): + if input.jump: + velocity.y = jump_strength + else: + velocity.y -= gravity * delta + + # Movement speed from active weapon + var speed := weapon_manager.get_move_speed() if weapon_manager else 5.0 + + if is_frozen: + velocity.x = 0.0 + velocity.z = 0.0 + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + return + + # Apply movement + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity + +func damage(amount: int, weapon_id: int = 0, attacker_id: int = -1, is_new_hit: bool = true): + # Friendly fire check + if team_manager and attacker_id >= 0 and attacker_id != get_player_id(): + if team_manager.get_team(attacker_id) == team_manager.get_team(get_player_id()): + return + + # Armor absorption (Phase 3 — armor starts at 0) + var armor_pen := 1.0 + var weapon := WeaponRegistry.get_weapon(weapon_id) + if weapon: + armor_pen = weapon.armor_penetration + + var effective := amount + if armor > 0 and armor_pen < 1.0: + var max_absorb := int(amount * (1.0 - armor_pen)) + var actual_absorb := mini(max_absorb, armor) + effective = amount - actual_absorb + armor -= actual_absorb + + health -= effective + + # Kill attribution + if attacker_id >= 0: + last_damage_attacker_id = attacker_id + last_damage_weapon_id = weapon_id + last_damage_tick = NetworkRollback.tick + + if is_new_hit: + _was_hit = true + _logger.warning("%s HP now at %s", [name, health]) + +func can_act(tick: int = -1) -> bool: + if death_tick >= 0: + return false + var t := tick if tick >= 0 else NetworkRollback.tick + if round_manager: + if round_manager.freeze_end_tick >= 0 and t < round_manager.freeze_end_tick: + return false + if round_manager.round_end_tick >= 0 and t >= round_manager.round_end_tick: + return false + return true + +func set_spectator(): + is_dead = true + death_tick = NetworkTime.tick + _hide_player() + _sync_spectator.rpc(death_tick) + +func round_respawn(spawn_pos: Vector3, survived: bool = false): + is_dead = false + health = 100 + deaths = 0 + death_tick = -1 + last_damage_attacker_id = -1 + last_damage_weapon_id = 0 + last_damage_tick = -1 + respawn_position = spawn_pos + respawn_tick = NetworkTime.tick + global_position = spawn_pos + velocity = Vector3.ZERO + did_respawn = true + _has_played_round = true + _show_player() + + if not survived: + armor = 0 + has_defuse_kit = false + var team := team_manager.get_team(get_player_id()) if team_manager else TeamManager.Team.T + weapon_manager.set_default_loadout(team) + else: + # Keep weapons + armor, just cancel reload + weapon_manager.reload_start_tick = -1 + weapon_manager.recoil_accumulator = 0.0 + + _sync_round_respawn.rpc(spawn_pos, respawn_tick) + +func _hide_player(): + $MeshInstance3D.hide() + $Head/Nose.hide() + $Head/BigGun.hide() + weapon_manager.hide_weapons() + $CollisionShape3D.disabled = true + $DisplayNameLabel3D.hide() + $Projection3D.hide() + +func _show_player(): + $MeshInstance3D.show() + $Head/Nose.show() + $Head/BigGun.show() + weapon_manager.show_weapons() + $CollisionShape3D.disabled = false + $DisplayNameLabel3D.show() + $Projection3D.show() + +func _bomb_tick(_delta: float, _tick: int): + if not multiplayer.is_server(): + return + if not is_multiplayer_authority(): + return + if is_dead: + return + + var bomb_node := get_tree().current_scene.get_node_or_null("Network/Bomb") as Bomb + if bomb_node == null: + return + + var pid := get_player_id() + var team := team_manager.get_team(pid) if team_manager else TeamManager.Team.NONE + + # T player: start plant or pickup (cancel/validation handled by bomb._server_tick) + if team == TeamManager.Team.T: + if bomb_node.state == Bomb.BombState.CARRIED and bomb_node.carrier_id == pid: + if input.use_held: + var bombsites := get_tree().get_nodes_in_group("bombsite") + for site in bombsites: + if site is Bombsite and site.is_player_inside(self): + bomb_node.try_start_plant(pid, site.site_name) + break + elif bomb_node.state == Bomb.BombState.DROPPED: + if global_position.distance_to(bomb_node.position) < 2.0: + bomb_node.try_pickup(pid) + + # CT player: start defuse (cancel/validation handled by bomb._server_tick) + elif team == TeamManager.Team.CT: + if bomb_node.state == Bomb.BombState.PLANTED: + if input.use_held and global_position.distance_to(bomb_node.position) < 2.0: + bomb_node.try_start_defuse(pid) + +func get_player_id() -> int: + return input.get_multiplayer_authority() + +# --- RPCs --- +@rpc("authority", "call_local", "reliable") +func _sync_death(server_death_tick: int) -> void: + is_dead = true + death_tick = server_death_tick + _hide_player() + if _is_local: + _lerp_from_pos = global_position + _lerp_to_pos = global_position + +@rpc("authority", "call_local", "reliable") +func _sync_spectator(server_death_tick: int) -> void: + is_dead = true + death_tick = server_death_tick + _hide_player() + if _is_local: + _lerp_from_pos = global_position + _lerp_to_pos = global_position + +@rpc("authority", "call_local", "reliable") +func _sync_round_respawn(spawn_pos: Vector3, _respawn_tick: int) -> void: + is_dead = false + health = 100 + deaths = 0 + death_tick = -1 + last_damage_attacker_id = -1 + last_damage_weapon_id = 0 + last_damage_tick = -1 + respawn_position = spawn_pos + respawn_tick = _respawn_tick + global_position = spawn_pos + velocity = Vector3.ZERO + did_respawn = true + _ackd_deaths = 0 + _show_player() + if _is_local: + _sim_transform = global_transform + _sim_head_transform = head.transform + _sim_yaw = rotation.y + _sim_pitch = head.rotation.x + _lerp_from_pos = spawn_pos + _lerp_to_pos = spawn_pos diff --git a/examples/multiplayer-fps/scripts/player.gd.uid b/examples/multiplayer-fps/scripts/player.gd.uid new file mode 100644 index 0000000..51542e6 --- /dev/null +++ b/examples/multiplayer-fps/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://q46d8xjl1rpk diff --git a/examples/multiplayer-fps/scripts/round-manager.gd b/examples/multiplayer-fps/scripts/round-manager.gd new file mode 100644 index 0000000..58c6013 --- /dev/null +++ b/examples/multiplayer-fps/scripts/round-manager.gd @@ -0,0 +1,201 @@ +extends Node +class_name RoundManager + +enum RoundState { WARMUP, FREEZE_TIME, ACTIVE, ROUND_END } + +signal round_state_changed(new_state: RoundState) +signal round_started(round_number: int) +signal round_ended(winner: TeamManager.Team) +signal player_killed(victim_id: int, killer_id: int, weapon_id: int, kill_tick: int) + +@export var freeze_time: float = 5.0 +@export var round_time: float = 115.0 +@export var round_end_time: float = 5.0 +@export var max_rounds: int = 24 +@export var rounds_to_win: int = 13 + +var state: RoundState = RoundState.WARMUP +var timer: float = 0.0 +var round_number: int = 0 +var score: Dictionary = { TeamManager.Team.T: 0, TeamManager.Team.CT: 0 } +var freeze_end_tick: int = -1 +var active_end_tick: int = -1 +var round_end_tick: int = -1 + +# Tracking alive players per round (synced to clients via RPC) +var _alive_players: Dictionary = {} # peer_id -> bool +var _last_winner: TeamManager.Team = TeamManager.Team.NONE + +var team_manager: TeamManager +var bomb: Bomb + +func _ready(): + team_manager = $"../TeamManager" + bomb = get_tree().current_scene.get_node_or_null("Network/Bomb") + set_process(false) + NetworkEvents.on_peer_leave.connect(_handle_peer_leave) + +func start_match(): + if not multiplayer.is_server(): + return + round_number = 0 + score = { TeamManager.Team.T: 0, TeamManager.Team.CT: 0 } + _sync_score.rpc(score[TeamManager.Team.T], score[TeamManager.Team.CT]) + start_round() + +func start_round(): + if not multiplayer.is_server(): + return + + round_number += 1 + freeze_end_tick = NetworkTime.tick + int(freeze_time * float(NetworkTime.tickrate)) + active_end_tick = freeze_end_tick + int(round_time * float(NetworkTime.tickrate)) + round_end_tick = -1 + _mark_all_alive() + _change_state(RoundState.FREEZE_TIME, freeze_time) + _sync_round_start.rpc(round_number, freeze_end_tick, active_end_tick) + +func _process(delta: float): + # Local timer countdown for HUD display only + if timer > 0: + timer -= delta + + # Only server handles state transitions + if not multiplayer.is_server(): + return + + var current_tick := NetworkTime.tick + + # Tick-based transitions for gameplay-critical boundaries + if state == RoundState.FREEZE_TIME and current_tick >= freeze_end_tick: + _change_state(RoundState.ACTIVE, round_time) + elif state == RoundState.ACTIVE and current_tick >= active_end_tick: + # Time ran out — CTs win (only if bomb not planted) + if bomb and (bomb.state == Bomb.BombState.PLANTED or bomb.state == Bomb.BombState.DEFUSING): + pass # Round continues — bomb is ticking + else: + end_round(TeamManager.Team.CT) + elif state == RoundState.ROUND_END and timer <= 0: + if _check_match_over(): + return + start_round() + +func report_kill(victim_id: int, killer_id: int, weapon_id: int, kill_tick: int = -1): + if not multiplayer.is_server(): + return + var check_tick := kill_tick if kill_tick >= 0 else NetworkTime.tick + if round_end_tick >= 0 and check_tick > round_end_tick: + return + if check_tick < freeze_end_tick: + return + if check_tick >= active_end_tick: + return + + _alive_players[victim_id] = false + _sync_player_alive.rpc(victim_id, false) + + # Emit kill event for economy, stats, kill-feed + player_killed.emit(victim_id, killer_id, weapon_id, check_tick) + + # Check if a whole team is eliminated + var t_alive := _count_alive(TeamManager.Team.T) + var ct_alive := _count_alive(TeamManager.Team.CT) + + var bomb_planted := bomb and (bomb.state == Bomb.BombState.PLANTED or bomb.state == Bomb.BombState.DEFUSING) + + if ct_alive == 0: + end_round(TeamManager.Team.T) + elif t_alive == 0 and not bomb_planted: + # All Ts dead + bomb NOT planted → CT win + end_round(TeamManager.Team.CT) + elif t_alive == 0 and bomb_planted: + pass # Round continues — bomb is planted + +func end_round(winner: TeamManager.Team): + if not multiplayer.is_server(): + return + if round_end_tick >= 0: + return + + round_end_tick = NetworkTime.tick + _last_winner = winner + score[winner] += 1 + _sync_score.rpc(score[TeamManager.Team.T], score[TeamManager.Team.CT]) + _sync_round_end.rpc(winner, round_end_tick) + _change_state(RoundState.ROUND_END, round_end_time) + round_ended.emit(winner) + +func is_player_alive(peer_id: int) -> bool: + return _alive_players.get(peer_id, false) + +func sync_to_peer(peer_id: int): + _sync_state.rpc_id(peer_id, state, timer) + _sync_score.rpc_id(peer_id, score[TeamManager.Team.T], score[TeamManager.Team.CT]) + _sync_round_start.rpc_id(peer_id, round_number, freeze_end_tick, active_end_tick) + for pid in _alive_players: + _sync_player_alive.rpc_id(peer_id, pid, _alive_players[pid]) + if state == RoundState.ROUND_END and _last_winner != TeamManager.Team.NONE: + _sync_round_end.rpc_id(peer_id, _last_winner, round_end_tick) + +func _count_alive(team: TeamManager.Team) -> int: + var count := 0 + for peer_id in team_manager.get_team_members(team): + if _alive_players.get(peer_id, false): + count += 1 + return count + +func _mark_all_alive(): + _alive_players.clear() + for peer_id in team_manager.assignments: + if team_manager.get_team(peer_id) != TeamManager.Team.NONE: + _alive_players[peer_id] = true + for pid in _alive_players: + _sync_player_alive.rpc(pid, _alive_players[pid]) + +func _change_state(new_state: RoundState, duration: float): + state = new_state + timer = duration + set_process(true) + _sync_state.rpc(new_state, duration) + round_state_changed.emit(new_state) + +func _handle_peer_leave(peer_id: int) -> void: + _alive_players.erase(peer_id) + +func _check_match_over() -> bool: + if score[TeamManager.Team.T] >= rounds_to_win or score[TeamManager.Team.CT] >= rounds_to_win: + return true + if round_number >= max_rounds: + return true + return false + +# --- RPCs: Server -> All Clients --- + +@rpc("authority", "call_local", "reliable") +func _sync_state(new_state: int, duration: float) -> void: + state = new_state as RoundState + timer = duration + set_process(true) + round_state_changed.emit(state) + +@rpc("authority", "call_local", "reliable") +func _sync_score(t_score: int, ct_score: int) -> void: + score[TeamManager.Team.T] = t_score + score[TeamManager.Team.CT] = ct_score + +@rpc("authority", "call_local", "reliable") +func _sync_round_start(round_num: int, _freeze_end: int, _active_end: int) -> void: + round_number = round_num + freeze_end_tick = _freeze_end + active_end_tick = _active_end + round_end_tick = -1 + round_started.emit(round_number) + +@rpc("authority", "call_local", "reliable") +func _sync_round_end(winner: int, _round_end_tick: int) -> void: + round_end_tick = _round_end_tick + round_ended.emit(winner as TeamManager.Team) + +@rpc("authority", "call_local", "reliable") +func _sync_player_alive(peer_id: int, alive: bool) -> void: + _alive_players[peer_id] = alive diff --git a/examples/multiplayer-fps/scripts/round-manager.gd.uid b/examples/multiplayer-fps/scripts/round-manager.gd.uid new file mode 100644 index 0000000..b002b5f --- /dev/null +++ b/examples/multiplayer-fps/scripts/round-manager.gd.uid @@ -0,0 +1 @@ +uid://c8adu0soolfyq diff --git a/examples/multiplayer-fps/scripts/team-manager.gd b/examples/multiplayer-fps/scripts/team-manager.gd new file mode 100644 index 0000000..7f5fbd0 --- /dev/null +++ b/examples/multiplayer-fps/scripts/team-manager.gd @@ -0,0 +1,56 @@ +extends Node +class_name TeamManager + +enum Team { NONE = -1, T = 0, CT = 1 } + +signal team_changed(peer_id: int, team: Team) + +# peer_id -> Team +var assignments: Dictionary = {} + +func _ready(): + NetworkEvents.on_peer_leave.connect(_handle_peer_leave) + +func get_team(peer_id: int) -> Team: + return assignments.get(peer_id, Team.NONE) as Team + +func get_team_members(team: Team) -> Array[int]: + var members: Array[int] = [] + for peer_id in assignments: + if assignments[peer_id] == team: + members.append(peer_id) + return members + +func get_team_name(team: Team) -> String: + match team: + Team.T: return "Terrorists" + Team.CT: return "Counter-Terrorists" + _: return "Unassigned" + +func auto_assign(peer_id: int) -> Team: + var t_count := get_team_members(Team.T).size() + var ct_count := get_team_members(Team.CT).size() + var team := Team.T if t_count <= ct_count else Team.CT + assign_team(peer_id, team) + return team + +func assign_team(peer_id: int, team: Team) -> void: + if not multiplayer.is_server(): + return + + assignments[peer_id] = team + _sync_assignment.rpc(peer_id, team) + team_changed.emit(peer_id, team) + +@rpc("authority", "call_local", "reliable") +func _sync_assignment(peer_id: int, team: int) -> void: + assignments[peer_id] = team as Team + team_changed.emit(peer_id, team as Team) + +func sync_to_peer(peer_id: int) -> void: + ## Send all current team assignments to a late-joining peer. + for pid in assignments: + _sync_assignment.rpc_id(peer_id, pid, assignments[pid]) + +func _handle_peer_leave(peer_id: int) -> void: + assignments.erase(peer_id) diff --git a/examples/multiplayer-fps/scripts/team-manager.gd.uid b/examples/multiplayer-fps/scripts/team-manager.gd.uid new file mode 100644 index 0000000..35c309a --- /dev/null +++ b/examples/multiplayer-fps/scripts/team-manager.gd.uid @@ -0,0 +1 @@ +uid://ciyrjr3yhnqxf diff --git a/examples/multiplayer-fps/scripts/ui/bomb_hud.gd b/examples/multiplayer-fps/scripts/ui/bomb_hud.gd new file mode 100644 index 0000000..f8ba332 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/bomb_hud.gd @@ -0,0 +1,113 @@ +extends Control +class_name BombHUD + +var bomb: Bomb +var _progress_bar: ProgressBar +var _timer_label: Label +var _status_label: Label + +const COLOR_T := Color("#FFCC00") +const COLOR_CT := Color("#99CCFF") +const COLOR_DANGER := Color("#FF4444") + +func _ready(): + var scene_root := get_tree().current_scene + bomb = scene_root.get_node_or_null("Network/Bomb") + mouse_filter = MOUSE_FILTER_IGNORE + _build_ui() + +func _build_ui(): + # Progress bar for plant/defuse + _progress_bar = ProgressBar.new() + _progress_bar.name = "BombProgress" + _progress_bar.min_value = 0.0 + _progress_bar.max_value = 1.0 + _progress_bar.step = 0.01 + _progress_bar.show_percentage = false + _progress_bar.mouse_filter = MOUSE_FILTER_IGNORE + + var bg_style := StyleBoxFlat.new() + bg_style.bg_color = Color(0.1, 0.1, 0.1, 0.7) + _progress_bar.add_theme_stylebox_override("background", bg_style) + + var fill_style := StyleBoxFlat.new() + fill_style.bg_color = COLOR_T + _progress_bar.add_theme_stylebox_override("fill", fill_style) + + add_child(_progress_bar) + _progress_bar.hide() + + # Bomb timer label + _timer_label = Label.new() + _timer_label.name = "BombTimer" + _timer_label.add_theme_font_size_override("font_size", 24) + _timer_label.add_theme_color_override("font_color", COLOR_DANGER) + _timer_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + _timer_label.mouse_filter = MOUSE_FILTER_IGNORE + add_child(_timer_label) + _timer_label.hide() + + # Status label (BOMB PLANTED, DEFUSING, etc.) + _status_label = Label.new() + _status_label.name = "BombStatus" + _status_label.add_theme_font_size_override("font_size", 16) + _status_label.add_theme_color_override("font_color", COLOR_DANGER) + _status_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + _status_label.mouse_filter = MOUSE_FILTER_IGNORE + add_child(_status_label) + _status_label.hide() + +func _process(_delta: float): + if bomb == null: + return + + var vp := get_viewport_rect().size + + match bomb.state: + Bomb.BombState.PLANTING: + _progress_bar.value = bomb.get_plant_progress() + _progress_bar.size = Vector2(200, 12) + _progress_bar.position = Vector2(vp.x / 2.0 - 100, vp.y * 0.65) + _progress_bar.show() + _status_label.text = "PLANTING..." + _status_label.add_theme_color_override("font_color", COLOR_T) + _status_label.size = Vector2(200, 24) + _status_label.position = Vector2(vp.x / 2.0 - 100, vp.y * 0.65 - 28) + _status_label.show() + _timer_label.hide() + + Bomb.BombState.PLANTED: + _progress_bar.hide() + var remaining := bomb.get_bomb_time_remaining() + _timer_label.text = "%.1f" % remaining + _timer_label.add_theme_color_override("font_color", COLOR_DANGER if remaining < 10.0 else COLOR_T) + _timer_label.size = Vector2(100, 32) + _timer_label.position = Vector2(vp.x / 2.0 - 50, vp.y * 0.35) + _timer_label.show() + _status_label.text = "BOMB PLANTED" + _status_label.add_theme_color_override("font_color", COLOR_DANGER) + _status_label.size = Vector2(200, 24) + _status_label.position = Vector2(vp.x / 2.0 - 100, vp.y * 0.35 - 28) + _status_label.show() + + Bomb.BombState.DEFUSING: + _progress_bar.value = bomb.get_defuse_progress() + _progress_bar.size = Vector2(200, 12) + _progress_bar.position = Vector2(vp.x / 2.0 - 100, vp.y * 0.65) + _progress_bar.show() + var remaining := bomb.get_bomb_time_remaining() + _timer_label.text = "%.1f" % remaining + _timer_label.add_theme_color_override("font_color", COLOR_DANGER if remaining < 10.0 else COLOR_T) + _timer_label.size = Vector2(100, 32) + _timer_label.position = Vector2(vp.x / 2.0 - 50, vp.y * 0.35) + _timer_label.show() + _status_label.text = "DEFUSING..." + _status_label.add_theme_color_override("font_color", COLOR_CT) + _status_label.size = Vector2(200, 24) + _status_label.position = Vector2(vp.x / 2.0 - 100, vp.y * 0.65 - 28) + _status_label.show() + + _: + _progress_bar.hide() + _timer_label.hide() + _status_label.hide() diff --git a/examples/multiplayer-fps/scripts/ui/bomb_hud.gd.uid b/examples/multiplayer-fps/scripts/ui/bomb_hud.gd.uid new file mode 100644 index 0000000..c334edf --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/bomb_hud.gd.uid @@ -0,0 +1 @@ +uid://ct2uyvqjqfe5n diff --git a/examples/multiplayer-fps/scripts/ui/buy_menu.gd b/examples/multiplayer-fps/scripts/ui/buy_menu.gd new file mode 100644 index 0000000..6fe8cd4 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/buy_menu.gd @@ -0,0 +1,229 @@ +extends Control +class_name BuyMenu + +var economy_manager: EconomyManager +var team_manager: TeamManager +var round_manager: RoundManager +var _panel: PanelContainer +var _vbox: VBoxContainer +var _is_open := false + +func _ready(): + var scene_root := get_tree().current_scene + economy_manager = scene_root.get_node_or_null("Network/EconomyManager") + team_manager = scene_root.get_node_or_null("Network/TeamManager") + round_manager = scene_root.get_node_or_null("Network/RoundManager") + + mouse_filter = MOUSE_FILTER_IGNORE + _build_panel() + hide() + +func _build_panel(): + _panel = PanelContainer.new() + _panel.name = "BuyPanel" + + var style := StyleBoxFlat.new() + style.bg_color = Color(0.05, 0.08, 0.12, 0.92) + style.border_color = Color(0.4, 0.4, 0.4, 0.6) + style.set_border_width_all(1) + style.set_content_margin_all(16) + _panel.add_theme_stylebox_override("panel", style) + + _vbox = VBoxContainer.new() + _vbox.name = "BuyVBox" + _panel.add_child(_vbox) + add_child(_panel) + +func _input(event: InputEvent) -> void: + if event.is_action_pressed("buy_menu"): + if _is_open: + _close() + elif _can_buy(): + _open() + + if _is_open and event.is_action_pressed("escape"): + _close() + + # Number keys for quick buy + if _is_open and event is InputEventKey and event.pressed: + _handle_buy_key(event) + +func _process(_delta: float): + if not _is_open: + return + + # Close if no longer in freeze time + if not _can_buy(): + _close() + return + + # Position panel + var vp := get_viewport_rect().size + _panel.size = Vector2(340, 400) + _panel.position = Vector2(vp.x / 2.0 - 170, vp.y / 2.0 - 200) + +func _can_buy() -> bool: + if round_manager == null: + return false + # Tick-based check only — deterministic, no state-transition race + if round_manager.freeze_end_tick < 0: + return false + if NetworkTime.tick >= round_manager.freeze_end_tick: + return false + # Must be alive (spectators/dead can't buy) + var local_id := multiplayer.get_unique_id() + if not round_manager.is_player_alive(local_id): + return false + return true + +func _open(): + _is_open = true + _rebuild_menu() + show() + +func _close(): + _is_open = false + hide() + +func _rebuild_menu(): + for child in _vbox.get_children(): + child.queue_free() + + var local_id := multiplayer.get_unique_id() + var money := economy_manager.get_money(local_id) if economy_manager else 0 + var team := team_manager.get_team(local_id) if team_manager else TeamManager.Team.T + + # Title + var title := Label.new() + title.text = "BUY MENU - $%d" % money + title.add_theme_font_size_override("font_size", 18) + title.add_theme_color_override("font_color", Color("#FFDD44")) + title.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + _vbox.add_child(title) + + var sep := HSeparator.new() + _vbox.add_child(sep) + + # Pistols + _add_section("PISTOLS") + if team == TeamManager.Team.T: + _add_weapon_row("1", WeaponRegistry.GLOCK, money) + else: + _add_weapon_row("1", WeaponRegistry.USP, money) + + # Rifles + _add_section("RIFLES") + if team == TeamManager.Team.T: + _add_weapon_row("2", WeaponRegistry.AK47, money) + else: + _add_weapon_row("2", WeaponRegistry.M4A1, money) + _add_weapon_row("3", WeaponRegistry.AWP, money) + + # Grenades + _add_section("GRENADES") + _add_equipment_row("4", "Flashbang", EconomyManager.FLASH_PRICE, money) + _add_equipment_row("5", "Smoke", EconomyManager.SMOKE_PRICE, money) + + # Equipment + _add_section("EQUIPMENT") + _add_equipment_row("6", "Kevlar", EconomyManager.KEVLAR_PRICE, money) + if team == TeamManager.Team.CT: + _add_equipment_row("7", "Defuse Kit", EconomyManager.DEFUSE_KIT_PRICE, money) + +func _add_section(text: String): + var spacer := Control.new() + spacer.custom_minimum_size.y = 8 + _vbox.add_child(spacer) + + var lbl := Label.new() + lbl.text = text + lbl.add_theme_font_size_override("font_size", 12) + lbl.add_theme_color_override("font_color", Color("#AAAAAA")) + _vbox.add_child(lbl) + +func _add_weapon_row(key: String, weapon_id: int, money: int): + var weapon := WeaponRegistry.get_weapon(weapon_id) + if weapon == null: + return + + var hbox := HBoxContainer.new() + var can_afford := money >= weapon.price + + var key_lbl := Label.new() + key_lbl.text = "[%s]" % key + key_lbl.add_theme_font_size_override("font_size", 14) + key_lbl.add_theme_color_override("font_color", Color.YELLOW if can_afford else Color.DARK_GRAY) + key_lbl.custom_minimum_size.x = 40 + hbox.add_child(key_lbl) + + var name_lbl := Label.new() + name_lbl.text = weapon.weapon_name + name_lbl.add_theme_font_size_override("font_size", 14) + name_lbl.add_theme_color_override("font_color", Color.WHITE if can_afford else Color.DARK_GRAY) + name_lbl.size_flags_horizontal = Control.SIZE_EXPAND_FILL + hbox.add_child(name_lbl) + + var price_lbl := Label.new() + price_lbl.text = "$%d" % weapon.price + price_lbl.add_theme_font_size_override("font_size", 14) + price_lbl.add_theme_color_override("font_color", Color("#00FF00") if can_afford else Color.DARK_RED) + price_lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_RIGHT + hbox.add_child(price_lbl) + + _vbox.add_child(hbox) + +func _add_equipment_row(key: String, item_name: String, price: int, money: int): + var hbox := HBoxContainer.new() + var can_afford := money >= price + + var key_lbl := Label.new() + key_lbl.text = "[%s]" % key + key_lbl.add_theme_font_size_override("font_size", 14) + key_lbl.add_theme_color_override("font_color", Color.YELLOW if can_afford else Color.DARK_GRAY) + key_lbl.custom_minimum_size.x = 40 + hbox.add_child(key_lbl) + + var name_lbl := Label.new() + name_lbl.text = item_name + name_lbl.add_theme_font_size_override("font_size", 14) + name_lbl.add_theme_color_override("font_color", Color.WHITE if can_afford else Color.DARK_GRAY) + name_lbl.size_flags_horizontal = Control.SIZE_EXPAND_FILL + hbox.add_child(name_lbl) + + var price_lbl := Label.new() + price_lbl.text = "$%d" % price + price_lbl.add_theme_font_size_override("font_size", 14) + price_lbl.add_theme_color_override("font_color", Color("#00FF00") if can_afford else Color.DARK_RED) + price_lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_RIGHT + hbox.add_child(price_lbl) + + _vbox.add_child(hbox) + +func _handle_buy_key(event: InputEventKey): + if economy_manager == null: + return + + var local_id := multiplayer.get_unique_id() + var team := team_manager.get_team(local_id) if team_manager else TeamManager.Team.T + + match event.physical_keycode: + KEY_1: + var pistol_id := WeaponRegistry.GLOCK if team == TeamManager.Team.T else WeaponRegistry.USP + economy_manager.request_buy_weapon(pistol_id) + KEY_2: + var rifle_id := WeaponRegistry.AK47 if team == TeamManager.Team.T else WeaponRegistry.M4A1 + economy_manager.request_buy_weapon(rifle_id) + KEY_3: + economy_manager.request_buy_weapon(WeaponRegistry.AWP) + KEY_4: + economy_manager.request_buy_grenade(0) # Flash + KEY_5: + economy_manager.request_buy_grenade(1) # Smoke + KEY_6: + economy_manager.request_buy_kevlar() + KEY_7: + if team == TeamManager.Team.CT: + economy_manager.request_buy_defuse_kit() + + # Rebuild to update money display + call_deferred("_rebuild_menu") diff --git a/examples/multiplayer-fps/scripts/ui/buy_menu.gd.uid b/examples/multiplayer-fps/scripts/ui/buy_menu.gd.uid new file mode 100644 index 0000000..c522a2a --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/buy_menu.gd.uid @@ -0,0 +1 @@ +uid://bui6lde7owfhl diff --git a/examples/multiplayer-fps/scripts/ui/crosshair.gd b/examples/multiplayer-fps/scripts/ui/crosshair.gd new file mode 100644 index 0000000..94b9ea5 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/crosshair.gd @@ -0,0 +1,31 @@ +@tool +class_name CrossHair extends Node2D + +## Places a crosshair in the center of the screen + +@export var crosshair_sprite: Texture2D +@export var crosshair_scale: Vector2 = Vector2(1, 1) + +var sprite2d: Sprite2D = Sprite2D.new() + +func _ready() -> void: + if Engine.is_editor_hint(): + return + + get_tree().get_root().size_changed.connect(func(): _on_window_resized(DisplayServer.window_get_size())) + _on_window_resized(DisplayServer.window_get_size()) + +func _enter_tree() -> void: + if has_node("Sprite2D"): return + + sprite2d.name = "Sprite2D" + sprite2d.set_texture(crosshair_sprite) + sprite2d.scale = crosshair_scale; + add_child(sprite2d) + +func _on_window_resized(new_size: Vector2) -> void: + if Engine.is_editor_hint(): + return + + sprite2d.position = new_size / 2 + sprite2d.scale = crosshair_scale diff --git a/examples/multiplayer-fps/scripts/ui/crosshair.gd.uid b/examples/multiplayer-fps/scripts/ui/crosshair.gd.uid new file mode 100644 index 0000000..1689e9c --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/crosshair.gd.uid @@ -0,0 +1 @@ +uid://68ntxlb14fan diff --git a/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd b/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd new file mode 100644 index 0000000..21c809b --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd @@ -0,0 +1,6 @@ +extends ProgressBar + +@export var player: CharacterBody3D + +func _process(delta: float): + value = player.health diff --git a/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd.uid b/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd.uid new file mode 100644 index 0000000..6ef61f7 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/health-progress-bar.gd.uid @@ -0,0 +1 @@ +uid://cf2qoxmc6v72y diff --git a/examples/multiplayer-fps/scripts/ui/projection3d.gd b/examples/multiplayer-fps/scripts/ui/projection3d.gd new file mode 100644 index 0000000..c981d98 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/projection3d.gd @@ -0,0 +1,71 @@ +@tool +class_name Projection3D extends Node3D + +## Whatever 2D nodes are added to Projection3D are projected onto a plane + +## Width of the projection +@export var projection_size: Vector2 = Vector2(1.0, 0.66) +## Resolution of the projection +@export var resolution_size: Vector2 = Vector2(640, 480) +## Billboard mode (always face the player) +@export var billboard: bool = true +## Render in front of everything else +@export var always_on_top: bool = false +## No lighting or shading +@export var disable_shading: bool = true + +## Emitted when the Node is fully constructed +signal on_constructed + +var plane_mesh = PlaneMesh.new() +var viewport = SubViewport.new() +var original_children: Array[Node] = [] + +## Set the size of the projection and resolution +func set_size(new_projection_size: Vector2, new_resolution_size: Vector2): + plane_mesh.size = new_projection_size + viewport.size = new_resolution_size + +func _ready(): + if Engine.is_editor_hint(): + return + + var children = get_children() + original_children = children + + var mesh = MeshInstance3D.new() + plane_mesh.size = projection_size + plane_mesh.orientation = PlaneMesh.FACE_Z + mesh.gi_mode = GeometryInstance3D.GI_MODE_DISABLED + mesh.cast_shadow = false + mesh.mesh = plane_mesh + add_child(mesh) + + var viewport_container = SubViewportContainer.new() + viewport_container.clip_children = CanvasItem.CLIP_CHILDREN_ONLY + viewport_container.mouse_filter = Control.MOUSE_FILTER_IGNORE + viewport.size = resolution_size + # TODO: Figure out why the progressbar is slightly transparent. + # It may not be a material issue but a rendering one (cleared one frame but drawn the next) + viewport.transparent_bg = true + viewport.disable_3d = true + viewport.handle_input_locally = false + viewport_container.add_child(viewport) + add_child(viewport_container) + + for child in children: + child.reparent(viewport) + + var material = StandardMaterial3D.new() + material.albedo_texture = viewport.get_texture() + material.transparency = BaseMaterial3D.TRANSPARENCY_MAX + if billboard: + material.billboard_mode = BaseMaterial3D.BILLBOARD_FIXED_Y + material.billboard_keep_scale = true + if disable_shading: + material.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED + material.disable_ambient_light = true + material.no_depth_test = always_on_top + plane_mesh.material = material + + on_constructed.emit() diff --git a/examples/multiplayer-fps/scripts/ui/projection3d.gd.uid b/examples/multiplayer-fps/scripts/ui/projection3d.gd.uid new file mode 100644 index 0000000..d5d2410 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/projection3d.gd.uid @@ -0,0 +1 @@ +uid://dbrlsg5lrpgjb diff --git a/examples/multiplayer-fps/scripts/ui/round-hud.gd b/examples/multiplayer-fps/scripts/ui/round-hud.gd new file mode 100644 index 0000000..7597c0a --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/round-hud.gd @@ -0,0 +1,312 @@ +extends Control +class_name RoundHUD + +var round_manager: RoundManager +var team_manager: TeamManager + +@onready var timer_label := $TimerLabel as Label +@onready var score_label := $ScoreLabel as Label +@onready var state_label := $StateLabel as Label +@onready var scoreboard_panel := $ScoreboardPanel as PanelContainer + +var scoreboard_vbox: VBoxContainer +var _scoreboard_rebuild_timer := 0.0 + +# Ammo and money display +var ammo_label: Label +var money_label: Label + +const COLOR_T := Color("#FFCC00") +const COLOR_CT := Color("#99CCFF") +const COLOR_DEAD := Color("#884444") +const COLOR_GREEN := Color("#00FF00") +const COLOR_HEADER := Color("#AAAAAA") +const COLOR_AMMO := Color("#FFDD44") + +func _ready(): + var scene_root := get_tree().current_scene + round_manager = scene_root.get_node_or_null("Network/RoundManager") + team_manager = scene_root.get_node_or_null("Network/TeamManager") + + _setup_styles() + scoreboard_panel.hide() + state_label.hide() + + if round_manager: + round_manager.round_state_changed.connect(_on_state_changed) + round_manager.round_ended.connect(_on_round_ended) + +func _setup_styles(): + mouse_filter = MOUSE_FILTER_IGNORE + + # Timer + timer_label.add_theme_font_size_override("font_size", 20) + timer_label.add_theme_color_override("font_color", COLOR_GREEN) + timer_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + timer_label.mouse_filter = MOUSE_FILTER_IGNORE + + # Score + score_label.add_theme_font_size_override("font_size", 16) + score_label.add_theme_color_override("font_color", Color.WHITE) + score_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + score_label.mouse_filter = MOUSE_FILTER_IGNORE + + # State + state_label.add_theme_font_size_override("font_size", 36) + state_label.add_theme_color_override("font_color", Color.YELLOW) + state_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + state_label.vertical_alignment = VERTICAL_ALIGNMENT_CENTER + state_label.mouse_filter = MOUSE_FILTER_IGNORE + + # Scoreboard panel + var panel_style := StyleBoxFlat.new() + panel_style.bg_color = Color(0.05, 0.05, 0.1, 0.88) + panel_style.border_color = Color(0.4, 0.4, 0.4, 0.6) + panel_style.set_border_width_all(1) + panel_style.set_corner_radius_all(0) + panel_style.set_content_margin_all(12) + scoreboard_panel.add_theme_stylebox_override("panel", panel_style) + + var old_label := scoreboard_panel.get_node_or_null("Label") + if old_label: + old_label.queue_free() + + scoreboard_vbox = VBoxContainer.new() + scoreboard_vbox.name = "ScoreboardVBox" + scoreboard_vbox.mouse_filter = MOUSE_FILTER_IGNORE + scoreboard_panel.add_child(scoreboard_vbox) + + # Ammo label + ammo_label = Label.new() + ammo_label.name = "AmmoLabel" + ammo_label.add_theme_font_size_override("font_size", 22) + ammo_label.add_theme_color_override("font_color", COLOR_AMMO) + ammo_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_RIGHT + ammo_label.mouse_filter = MOUSE_FILTER_IGNORE + add_child(ammo_label) + + # Money label + money_label = Label.new() + money_label.name = "MoneyLabel" + money_label.add_theme_font_size_override("font_size", 18) + money_label.add_theme_color_override("font_color", Color("#00FF00")) + money_label.horizontal_alignment = HORIZONTAL_ALIGNMENT_LEFT + money_label.mouse_filter = MOUSE_FILTER_IGNORE + add_child(money_label) + +func _process(_delta: float): + if round_manager == null: + return + + var vp := get_viewport_rect().size + + # Position elements + timer_label.size = Vector2(100, 28) + timer_label.position = Vector2(vp.x / 2.0 - 50, vp.y - 34) + + score_label.size = Vector2(200, 24) + score_label.position = Vector2(vp.x / 2.0 - 100, 6) + + state_label.size = Vector2(500, 60) + state_label.position = Vector2(vp.x / 2.0 - 250, vp.y / 2.0 - 30) + + scoreboard_panel.size = Vector2(560, 420) + scoreboard_panel.position = Vector2(vp.x / 2.0 - 280, vp.y / 2.0 - 210) + + # Ammo label — bottom right + ammo_label.size = Vector2(200, 30) + ammo_label.position = Vector2(vp.x - 220, vp.y - 40) + + # Money label — bottom left + money_label.size = Vector2(200, 28) + money_label.position = Vector2(20, vp.y - 40) + + # Timer content + var time_left: float = maxf(0.0, round_manager.timer) + var minutes := int(time_left) / 60 + var seconds := int(time_left) % 60 + timer_label.text = "%d:%02d" % [minutes, seconds] + + if round_manager.state == RoundManager.RoundState.ACTIVE and time_left <= 10.0: + timer_label.add_theme_color_override("font_color", Color.RED) + else: + timer_label.add_theme_color_override("font_color", COLOR_GREEN) + + # Score content + var t_score := int(round_manager.score.get(TeamManager.Team.T, 0)) + var ct_score := int(round_manager.score.get(TeamManager.Team.CT, 0)) + score_label.text = "T %d : %d CT" % [t_score, ct_score] + + # Ammo + money display + _update_ammo_display() + _update_money_display() + + # Scoreboard (Tab) + if Input.is_action_pressed("scoreboard"): + _scoreboard_rebuild_timer -= _delta + if _scoreboard_rebuild_timer <= 0: + _rebuild_scoreboard() + _scoreboard_rebuild_timer = 0.5 + scoreboard_panel.show() + else: + scoreboard_panel.hide() + _scoreboard_rebuild_timer = 0.0 + +func _update_ammo_display(): + var local_player: CharacterBody3D = _find_local_player() + if local_player == null or local_player.weapon_manager == null: + ammo_label.text = "" + return + + var wm: WeaponManager = local_player.weapon_manager + var weapon := wm.get_active_weapon() + if weapon == null: + ammo_label.text = "" + return + + if weapon.fire_mode == WeaponData.FireMode.MELEE: + ammo_label.text = weapon.weapon_name + else: + ammo_label.text = "%s %d / %d" % [weapon.weapon_name, wm.ammo[wm.active_slot], wm.reserve[wm.active_slot]] + +func _update_money_display(): + var economy := get_tree().current_scene.get_node_or_null("Network/EconomyManager") as EconomyManager + if economy == null: + money_label.text = "" + return + var local_id := multiplayer.get_unique_id() + var money := economy.get_money(local_id) + money_label.text = "$%d" % money + +func _find_local_player() -> CharacterBody3D: + var players_container := get_tree().current_scene.get_node_or_null("Network/Player Spawner") + if players_container == null: + return null + for child in players_container.get_children(): + if child is CharacterBody3D: + var input_node := child.get_node_or_null("Input") + if input_node and input_node.is_multiplayer_authority(): + return child + return null + +func _on_state_changed(new_state: RoundManager.RoundState): + match new_state: + RoundManager.RoundState.FREEZE_TIME: + state_label.text = "FREEZE TIME" + state_label.add_theme_color_override("font_color", Color.YELLOW) + state_label.show() + RoundManager.RoundState.ACTIVE: + state_label.hide() + RoundManager.RoundState.ROUND_END: + pass + +func _on_round_ended(winner: TeamManager.Team): + var winner_name := "ROUND OVER" + var color := Color.YELLOW + if team_manager: + winner_name = team_manager.get_team_name(winner).to_upper() + " WIN" + color = COLOR_T if winner == TeamManager.Team.T else COLOR_CT + state_label.text = winner_name + state_label.add_theme_color_override("font_color", color) + state_label.show() + +# --- Scoreboard building --- + +func _rebuild_scoreboard(): + if team_manager == null or scoreboard_vbox == null: + return + + for child in scoreboard_vbox.get_children(): + child.queue_free() + + var t_members := team_manager.get_team_members(TeamManager.Team.T) + var ct_members := team_manager.get_team_members(TeamManager.Team.CT) + var t_score := int(round_manager.score.get(TeamManager.Team.T, 0)) + var ct_score := int(round_manager.score.get(TeamManager.Team.CT, 0)) + + _add_label_centered("Counter-Strike", Color.WHITE, 20) + _add_label_centered("Round %d" % round_manager.round_number, Color.GRAY, 12) + _add_spacer(8) + + _add_row(["Name", "Score", "Deaths", "Latency"], COLOR_HEADER, 13) + _add_separator() + + _add_team_header("Terrorists", t_members.size(), t_score, COLOR_T) + for peer_id in t_members: + var alive := round_manager.is_player_alive(peer_id) + var c := COLOR_T if alive else COLOR_DEAD + var status := "ALIVE" if alive else "DEAD" + _add_row([" Player #%d" % peer_id, "0", "0", status], c, 13) + + _add_spacer(4) + _add_separator() + + _add_team_header("Counter-Terrorists", ct_members.size(), ct_score, COLOR_CT) + for peer_id in ct_members: + var alive := round_manager.is_player_alive(peer_id) + var c := COLOR_CT if alive else COLOR_DEAD + var status := "ALIVE" if alive else "DEAD" + _add_row([" Player #%d" % peer_id, "0", "0", status], c, 13) + +func _add_label_centered(text: String, color: Color, font_size: int): + var lbl := Label.new() + lbl.text = text + lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + lbl.add_theme_color_override("font_color", color) + lbl.add_theme_font_size_override("font_size", font_size) + lbl.mouse_filter = MOUSE_FILTER_IGNORE + scoreboard_vbox.add_child(lbl) + +func _add_team_header(team_name: String, player_count: int, team_score: int, color: Color): + var hbox := HBoxContainer.new() + hbox.mouse_filter = MOUSE_FILTER_IGNORE + + var name_lbl := Label.new() + name_lbl.text = "%s - %d players" % [team_name, player_count] + name_lbl.add_theme_color_override("font_color", color) + name_lbl.add_theme_font_size_override("font_size", 14) + name_lbl.size_flags_horizontal = Control.SIZE_EXPAND_FILL + name_lbl.mouse_filter = MOUSE_FILTER_IGNORE + hbox.add_child(name_lbl) + + var score_lbl := Label.new() + score_lbl.text = str(team_score) + score_lbl.add_theme_color_override("font_color", Color.WHITE) + score_lbl.add_theme_font_size_override("font_size", 14) + score_lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_RIGHT + score_lbl.mouse_filter = MOUSE_FILTER_IGNORE + hbox.add_child(score_lbl) + + scoreboard_vbox.add_child(hbox) + +func _add_row(columns: Array, color: Color, font_size: int): + var hbox := HBoxContainer.new() + hbox.mouse_filter = MOUSE_FILTER_IGNORE + + var ratios := [5, 2, 2, 2] + + for i in columns.size(): + var lbl := Label.new() + lbl.text = columns[i] + lbl.add_theme_color_override("font_color", color) + lbl.add_theme_font_size_override("font_size", font_size) + lbl.size_flags_horizontal = Control.SIZE_EXPAND_FILL + lbl.size_flags_stretch_ratio = ratios[i] if i < ratios.size() else 1 + lbl.mouse_filter = MOUSE_FILTER_IGNORE + if i > 0: + lbl.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + hbox.add_child(lbl) + + scoreboard_vbox.add_child(hbox) + +func _add_separator(): + var sep := HSeparator.new() + sep.mouse_filter = MOUSE_FILTER_IGNORE + sep.add_theme_color_override("separator", Color(0.4, 0.4, 0.4)) + scoreboard_vbox.add_child(sep) + +func _add_spacer(height: int): + var spacer := Control.new() + spacer.custom_minimum_size.y = height + spacer.mouse_filter = MOUSE_FILTER_IGNORE + scoreboard_vbox.add_child(spacer) diff --git a/examples/multiplayer-fps/scripts/ui/round-hud.gd.uid b/examples/multiplayer-fps/scripts/ui/round-hud.gd.uid new file mode 100644 index 0000000..5e7423a --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/round-hud.gd.uid @@ -0,0 +1 @@ +uid://1wur66am5ly8 diff --git a/examples/multiplayer-fps/scripts/ui/window-size-connector.gd b/examples/multiplayer-fps/scripts/ui/window-size-connector.gd new file mode 100644 index 0000000..52fdc73 --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/window-size-connector.gd @@ -0,0 +1,34 @@ +@tool +class_name WindowSizeConnector extends Node + +## Allows you to update node size to the window size + +## The nodes to apply the new size to +@export var target_nodes: Array[Node] = []: set = _target_nodes_changed +## The percentage of the window size to fill (1.0 for full size) +@export var size_multiplier: float = 1.0 + +signal window_size_updated(new_size: Vector2) + +func _ready() -> void: + if Engine.is_editor_hint(): + return + + get_tree().get_root().size_changed.connect(func(): _on_window_resized(DisplayServer.window_get_size())) + _on_window_resized(DisplayServer.window_get_size()) + +func _on_window_resized(new_size: Vector2) -> void: + for node in target_nodes: + if node and "size" in node: + node.set_deferred("size", new_size * size_multiplier) + window_size_updated.emit(new_size) + +func _target_nodes_changed(new_value: Array[Node]): + target_nodes = new_value + if Engine.is_editor_hint(): + return + + _on_window_resized(Vector2( + ProjectSettings.get_setting(&"display/window/size/viewport_width"), + ProjectSettings.get_setting(&"display/window/size/viewport_height") + )) diff --git a/examples/multiplayer-fps/scripts/ui/window-size-connector.gd.uid b/examples/multiplayer-fps/scripts/ui/window-size-connector.gd.uid new file mode 100644 index 0000000..f73f21f --- /dev/null +++ b/examples/multiplayer-fps/scripts/ui/window-size-connector.gd.uid @@ -0,0 +1 @@ +uid://bpp3g8xk4qngo diff --git a/examples/multiplayer-fps/scripts/weapon_manager.gd b/examples/multiplayer-fps/scripts/weapon_manager.gd new file mode 100644 index 0000000..ce556d9 --- /dev/null +++ b/examples/multiplayer-fps/scripts/weapon_manager.gd @@ -0,0 +1,394 @@ +extends Node3D +class_name WeaponManager + +@onready var input: PlayerInputFPS = $"../../Input" +@onready var player: CharacterBody3D = $"../.." +@onready var sound: AudioStreamPlayer3D = $AudioStreamPlayer3D +@onready var bullethole: BulletHole = $BulletHole +@onready var fire_action := $"Fire Action" as RewindableAction +@onready var rollback_synchronizer := %RollbackSynchronizer as RollbackSynchronizer + +# Rollback state +var inventory: PackedInt32Array = PackedInt32Array([0, 0, 0, 0]) +var active_slot: int = 0 +var ammo: PackedInt32Array = PackedInt32Array([0, 0, 0, 0]) +var reserve: PackedInt32Array = PackedInt32Array([0, 0, 0, 0]) +var reload_start_tick: int = -1 +var last_fire_by_slot: PackedInt32Array = PackedInt32Array([-1, -1, -1, -1]) +var recoil_accumulator: float = 0.0 + +# Grenade inventory (Phase 5) +var grenade_counts: PackedInt32Array = PackedInt32Array([0, 0]) # [flash, smoke] +var active_grenade_type: int = 0 # 0=Flash, 1=Smoke (only when slot 3 active) + +var _pending_hit_result: Dictionary = {} +var _pending_grenades: Array[Dictionary] = [] # Buffered throws, consumed in _after_loop + +# Weapon models (loaded at runtime) +var _knife_model: Node3D +var _gun_model: MeshInstance3D +var _grenade_model: Node3D +var _current_visible_slot: int = -1 +var _knife_sound: AudioStreamPlayer3D + +func _ready(): + fire_action.mutate(self) + fire_action.mutate($"../../") + NetworkTime.before_tick_loop.connect(_before_loop) + NetworkTime.after_tick_loop.connect(_after_loop) + _gun_model = $TinyGun + _load_weapon_models() + +func _load_weapon_models(): + # Knife model + var knife_scene := load("res://examples/multiplayer-fps/models/knife.fbx") as PackedScene + if knife_scene: + _knife_model = knife_scene.instantiate() + _knife_model.scale = Vector3(0.003, 0.003, 0.003) + _knife_model.position = Vector3(0.15, -0.22, -0.35) + _knife_model.rotation_degrees = Vector3(-90, 180, 0) + add_child(_knife_model) + _knife_model.hide() + + # Grenade model + var grenade_scene := load("res://examples/multiplayer-fps/models/grenade.glb") as PackedScene + if grenade_scene: + _grenade_model = grenade_scene.instantiate() + _grenade_model.scale = Vector3(0.08, 0.08, 0.08) + _grenade_model.position = Vector3(0.1, -0.18, -0.25) + add_child(_grenade_model) + _grenade_model.hide() + + # Knife sound + var slash_stream := load("res://examples/multiplayer-fps/sounds/knife/knife_slash1.wav") + if slash_stream: + _knife_sound = AudioStreamPlayer3D.new() + _knife_sound.stream = slash_stream + _knife_sound.max_distance = 10.0 + add_child(_knife_sound) + +func _process(_delta: float): + # Update weapon model visibility + if active_slot != _current_visible_slot: + _current_visible_slot = active_slot + if _knife_model: + _knife_model.visible = (active_slot == 0) + if _gun_model: + _gun_model.visible = (active_slot == 1 or active_slot == 2) + if _grenade_model: + _grenade_model.visible = (active_slot == 3) + +func hide_weapons(): + if _knife_model: + _knife_model.hide() + if _gun_model: + _gun_model.hide() + if _grenade_model: + _grenade_model.hide() + _current_visible_slot = -1 + +func show_weapons(): + _current_visible_slot = -1 # Force refresh on next _process + +func get_active_weapon() -> WeaponData: + var wid := inventory[active_slot] + if wid == 0: + return null + return WeaponRegistry.get_weapon(wid) + +func get_move_speed() -> float: + var weapon := get_active_weapon() + if weapon: + return weapon.move_speed + return 5.0 + +func set_default_loadout(team: int): + inventory = PackedInt32Array([WeaponRegistry.KNIFE, WeaponRegistry.get_default_pistol(team), 0, 0]) + active_slot = 0 + reload_start_tick = -1 + recoil_accumulator = 0.0 + last_fire_by_slot = PackedInt32Array([-1, -1, -1, -1]) + grenade_counts = PackedInt32Array([0, 0]) + active_grenade_type = 0 + for i in 4: + var weapon := WeaponRegistry.get_weapon(inventory[i]) + if weapon: + ammo[i] = weapon.magazine_size + reserve[i] = weapon.reserve_size + else: + ammo[i] = 0 + reserve[i] = 0 + NetworkRollback.mutate(self) + +func strip_weapons(): + inventory = PackedInt32Array([0, 0, 0, 0]) + active_slot = 0 + ammo = PackedInt32Array([0, 0, 0, 0]) + reserve = PackedInt32Array([0, 0, 0, 0]) + reload_start_tick = -1 + last_fire_by_slot = PackedInt32Array([-1, -1, -1, -1]) + recoil_accumulator = 0.0 + grenade_counts = PackedInt32Array([0, 0]) + active_grenade_type = 0 + NetworkRollback.mutate(self) + +func give_weapon(weapon_id: int): + var weapon := WeaponRegistry.get_weapon(weapon_id) + if weapon == null: + return + inventory[weapon.slot] = weapon_id + ammo[weapon.slot] = weapon.magazine_size + reserve[weapon.slot] = weapon.reserve_size + last_fire_by_slot[weapon.slot] = -1 + active_slot = weapon.slot + NetworkRollback.mutate(self) + +func _rollback_tick(delta: float, tick: int, _is_fresh: bool): + if rollback_synchronizer.is_predicting(): + return + + # Skip if player dead + if player.death_tick >= 0 and tick >= player.death_tick: + return + + # Recoil recovery (always, even during freeze) + var weapon := get_active_weapon() + if weapon and recoil_accumulator > 0.0: + recoil_accumulator = move_toward(recoil_accumulator, 0.0, weapon.recoil_recovery * delta) + + # Can't act checks (pass tick for correct rollback evaluation) + if not player.can_act(tick): + return + + # Handle weapon switching + _handle_weapon_switch() + + # Handle reload + _handle_reload(tick) + + # Handle firing + _handle_fire(tick) + +func _handle_weapon_switch(): + var new_slot := -1 + + if input.slot_1 and inventory[0] != 0: + new_slot = 0 + elif input.slot_2 and inventory[1] != 0: + new_slot = 1 + elif input.slot_3 and inventory[2] != 0: + new_slot = 2 + elif input.slot_4 and _has_grenades(): + new_slot = 3 + elif input.next_weapon: + new_slot = _find_next_occupied_slot(1) + elif input.prev_weapon: + new_slot = _find_next_occupied_slot(-1) + + if new_slot >= 0 and new_slot != active_slot: + active_slot = new_slot + reload_start_tick = -1 # cancel reload on switch + recoil_accumulator = 0.0 + elif new_slot == 3 and active_slot == 3: + # Re-pressing slot 4 while on grenade slot: cycle grenade type + _cycle_grenade_type() + +func _has_grenades() -> bool: + return grenade_counts[0] > 0 or grenade_counts[1] > 0 + +func _is_slot_occupied(slot: int) -> bool: + if slot == 3: + return _has_grenades() + return inventory[slot] != 0 + +func _find_next_occupied_slot(direction: int) -> int: + for i in range(1, 5): + var slot := (active_slot + direction * i) % 4 + if slot < 0: + slot += 4 + if _is_slot_occupied(slot): + return slot + return active_slot + +func add_grenade(type: int) -> bool: + ## type: 0=flash, 1=smoke. Returns true if added. + var max_count := 2 if type == 0 else 1 + if grenade_counts[type] >= max_count: + return false + grenade_counts[type] += 1 + NetworkRollback.mutate(self) + return true + +func _handle_reload(tick: int): + var weapon := get_active_weapon() + if weapon == null or weapon.fire_mode == WeaponData.FireMode.MELEE: + reload_start_tick = -1 + return + + # Start reload if requested + if input.reload_pressed and reload_start_tick < 0: + if ammo[active_slot] < weapon.magazine_size and reserve[active_slot] > 0: + reload_start_tick = tick + + # Complete reload + if reload_start_tick >= 0: + if NetworkTime.seconds_between(reload_start_tick, tick) >= weapon.reload_time: + var needed := weapon.magazine_size - ammo[active_slot] + var available := mini(needed, reserve[active_slot]) + ammo[active_slot] += available + reserve[active_slot] -= available + reload_start_tick = -1 + +func _handle_fire(tick: int): + # Grenade throw (slot 3) — server-authoritative, no rollback + if active_slot == 3 and _has_grenades(): + if input.fire_pressed: + _throw_grenade() + fire_action.set_active(false) + return + + var weapon := get_active_weapon() + if weapon == null: + fire_action.set_active(false) + return + + # Determine if we should fire + var want_fire := false + if weapon.fire_mode == WeaponData.FireMode.AUTO: + want_fire = input.fire_held + else: # SEMI or MELEE + want_fire = input.fire_pressed + + var can_fire := want_fire and _can_fire_weapon(weapon, tick) + + fire_action.set_active(can_fire) + match fire_action.get_status(): + RewindableAction.CONFIRMING, RewindableAction.ACTIVE: + _fire(weapon, tick) + RewindableAction.CANCELLING: + _unfire() + +func _can_fire_weapon(weapon: WeaponData, tick: int) -> bool: + # Check cooldown (per-slot) + if last_fire_by_slot[active_slot] >= 0: + if NetworkTime.seconds_between(last_fire_by_slot[active_slot], tick) < weapon.fire_rate: + return false + # Check ammo (melee has no ammo) + if weapon.fire_mode != WeaponData.FireMode.MELEE: + if ammo[active_slot] <= 0: + return false + # Check reload + if reload_start_tick >= 0: + return false + return true + +func _fire(weapon: WeaponData, tick: int): + last_fire_by_slot[active_slot] = tick + + # Consume ammo + if weapon.fire_mode != WeaponData.FireMode.MELEE: + ammo[active_slot] -= 1 + + # Recoil + recoil_accumulator += weapon.recoil_per_shot + + # Raycast + var hit := _raycast(weapon) + if hit.is_empty(): + return + + _on_hit(hit, weapon) + +func _unfire(): + fire_action.erase_context() + +func _raycast(weapon: WeaponData) -> Dictionary: + var space := get_world_3d().direct_space_state + var origin := global_transform.origin + var direction := -global_transform.basis.z + + # Apply recoil to direction + if recoil_accumulator > 0.0: + var recoil_rad := deg_to_rad(recoil_accumulator) + direction = direction.rotated(global_transform.basis.x, recoil_rad) + + var query := PhysicsRayQueryParameters3D.create( + origin, + origin + direction * weapon.max_distance + ) + + return space.intersect_ray(query) + +func _on_hit(result: Dictionary, weapon: WeaponData): + var is_new_hit := false + if not fire_action.has_context(): + fire_action.set_context(true) + is_new_hit = true + + if is_new_hit: + _pending_hit_result = result + + if result.collider.has_method("damage"): + var attacker_id: int = player.get_player_id() + result.collider.damage(weapon.damage, weapon.weapon_id, attacker_id, is_new_hit) + NetworkRollback.mutate(result.collider) + +func _cycle_grenade_type(): + # Cycle through available grenade types + for i in range(1, 3): + var next := (active_grenade_type + i) % 2 + if grenade_counts[next] > 0: + active_grenade_type = next + return + +func _throw_grenade(): + if not _has_grenades(): + return + # Ensure we have the selected type, otherwise cycle + if grenade_counts[active_grenade_type] <= 0: + _cycle_grenade_type() + if grenade_counts[active_grenade_type] <= 0: + return + + grenade_counts[active_grenade_type] -= 1 + + # Buffer the throw — actual RPC fires in _after_loop (rollback-safe) + _pending_grenades.append({ + "origin": global_transform.origin, + "direction": -global_transform.basis.z, + "owner_id": player.get_player_id(), + "type": active_grenade_type + }) + + # Auto-switch if no grenades left + if not _has_grenades(): + active_slot = 0 + +func _before_loop(): + _pending_grenades.clear() + +func _after_loop(): + # Grenade spawns (deferred from rollback — fires once per throw) + for pg in _pending_grenades: + _spawn_grenade.rpc(pg["origin"], pg["direction"], pg["owner_id"], pg["type"]) + _pending_grenades.clear() + + if fire_action.has_confirmed(): + # Play weapon-appropriate sound + if active_slot == 0 and _knife_sound: + _knife_sound.play() + else: + sound.play() + if not _pending_hit_result.is_empty(): + # No bullet holes for knife + if active_slot != 0: + bullethole.action(_pending_hit_result) + _pending_hit_result = {} + +@rpc("authority", "call_local", "reliable") +func _spawn_grenade(origin: Vector3, direction: Vector3, owner_id: int, type_idx: int) -> void: + var grenade := Grenade.new() + grenade.name = "Grenade_%d_%d" % [owner_id, NetworkTime.tick] + get_tree().current_scene.add_child(grenade) + var gtype: Grenade.GrenadeType = Grenade.GrenadeType.FLASH if type_idx == 0 else Grenade.GrenadeType.SMOKE + grenade.setup(origin, direction, owner_id, gtype) diff --git a/examples/multiplayer-fps/scripts/weapon_manager.gd.uid b/examples/multiplayer-fps/scripts/weapon_manager.gd.uid new file mode 100644 index 0000000..5ec5bf7 --- /dev/null +++ b/examples/multiplayer-fps/scripts/weapon_manager.gd.uid @@ -0,0 +1 @@ +uid://bchdq0gvwhyxj diff --git a/examples/multiplayer-fps/sounds/death.wav b/examples/multiplayer-fps/sounds/death.wav new file mode 100644 index 0000000..55b76ac Binary files /dev/null and b/examples/multiplayer-fps/sounds/death.wav differ diff --git a/examples/multiplayer-fps/sounds/death.wav.import b/examples/multiplayer-fps/sounds/death.wav.import new file mode 100644 index 0000000..cb333db --- /dev/null +++ b/examples/multiplayer-fps/sounds/death.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://15pyqe2uw4s3" +path="res://.godot/imported/death.wav-2718505909c2446eed226621b93f5107.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/death.wav" +dest_files=["res://.godot/imported/death.wav-2718505909c2446eed226621b93f5107.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=1 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/multiplayer-fps/sounds/fire.mp3 b/examples/multiplayer-fps/sounds/fire.mp3 new file mode 100644 index 0000000..8736e8d Binary files /dev/null and b/examples/multiplayer-fps/sounds/fire.mp3 differ diff --git a/examples/multiplayer-fps/sounds/fire.mp3.import b/examples/multiplayer-fps/sounds/fire.mp3.import new file mode 100644 index 0000000..0758580 --- /dev/null +++ b/examples/multiplayer-fps/sounds/fire.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://cope814m1d7p6" +path="res://.godot/imported/fire.mp3-6f3f5339955f5471dc51615a4f7ae82f.mp3str" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/fire.mp3" +dest_files=["res://.godot/imported/fire.mp3-6f3f5339955f5471dc51615a4f7ae82f.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/examples/multiplayer-fps/sounds/hit.wav b/examples/multiplayer-fps/sounds/hit.wav new file mode 100644 index 0000000..5b3e4d7 Binary files /dev/null and b/examples/multiplayer-fps/sounds/hit.wav differ diff --git a/examples/multiplayer-fps/sounds/hit.wav.import b/examples/multiplayer-fps/sounds/hit.wav.import new file mode 100644 index 0000000..d5a5bc6 --- /dev/null +++ b/examples/multiplayer-fps/sounds/hit.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://q7ql86p7flj" +path="res://.godot/imported/hit.wav-740583ba0fe6642c7f54b66e21706235.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/hit.wav" +dest_files=["res://.godot/imported/hit.wav-740583ba0fe6642c7f54b66e21706235.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=1 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav b/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav new file mode 100644 index 0000000..a7d5cc2 Binary files /dev/null and b/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav differ diff --git a/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav.import b/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav.import new file mode 100644 index 0000000..849bf6c --- /dev/null +++ b/examples/multiplayer-fps/sounds/knife/knife_deploy1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://eg6u35ksw3he" +path="res://.godot/imported/knife_deploy1.wav-4bcee27664283e67e57fa55797862d63.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/knife/knife_deploy1.wav" +dest_files=["res://.godot/imported/knife_deploy1.wav-4bcee27664283e67e57fa55797862d63.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=2 diff --git a/examples/multiplayer-fps/sounds/knife/knife_hit1.wav b/examples/multiplayer-fps/sounds/knife/knife_hit1.wav new file mode 100644 index 0000000..f305a2a Binary files /dev/null and b/examples/multiplayer-fps/sounds/knife/knife_hit1.wav differ diff --git a/examples/multiplayer-fps/sounds/knife/knife_hit1.wav.import b/examples/multiplayer-fps/sounds/knife/knife_hit1.wav.import new file mode 100644 index 0000000..82ec49d --- /dev/null +++ b/examples/multiplayer-fps/sounds/knife/knife_hit1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cretfqn2f3pnx" +path="res://.godot/imported/knife_hit1.wav-edf14370a8f11b34e571d398e68d826e.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/knife/knife_hit1.wav" +dest_files=["res://.godot/imported/knife_hit1.wav-edf14370a8f11b34e571d398e68d826e.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=2 diff --git a/examples/multiplayer-fps/sounds/knife/knife_slash1.wav b/examples/multiplayer-fps/sounds/knife/knife_slash1.wav new file mode 100644 index 0000000..92d8787 Binary files /dev/null and b/examples/multiplayer-fps/sounds/knife/knife_slash1.wav differ diff --git a/examples/multiplayer-fps/sounds/knife/knife_slash1.wav.import b/examples/multiplayer-fps/sounds/knife/knife_slash1.wav.import new file mode 100644 index 0000000..df40299 --- /dev/null +++ b/examples/multiplayer-fps/sounds/knife/knife_slash1.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dm0uu372vaskp" +path="res://.godot/imported/knife_slash1.wav-36a747d2dc3136a66c23a17cc2cabfe7.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/knife/knife_slash1.wav" +dest_files=["res://.godot/imported/knife_slash1.wav-36a747d2dc3136a66c23a17cc2cabfe7.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=2 diff --git a/examples/multiplayer-fps/sounds/knife/knife_slash2.wav b/examples/multiplayer-fps/sounds/knife/knife_slash2.wav new file mode 100644 index 0000000..0aa774a Binary files /dev/null and b/examples/multiplayer-fps/sounds/knife/knife_slash2.wav differ diff --git a/examples/multiplayer-fps/sounds/knife/knife_slash2.wav.import b/examples/multiplayer-fps/sounds/knife/knife_slash2.wav.import new file mode 100644 index 0000000..9397421 --- /dev/null +++ b/examples/multiplayer-fps/sounds/knife/knife_slash2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://d1n6maj4h33pc" +path="res://.godot/imported/knife_slash2.wav-c77bd795308bc30f510e63895666749c.sample" + +[deps] + +source_file="res://examples/multiplayer-fps/sounds/knife/knife_slash2.wav" +dest_files=["res://.godot/imported/knife_slash2.wav-c77bd795308bc30f510e63895666749c.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=2 diff --git a/examples/multiplayer-fps/textures/bullet_hole.png b/examples/multiplayer-fps/textures/bullet_hole.png new file mode 100644 index 0000000..e0f384f Binary files /dev/null and b/examples/multiplayer-fps/textures/bullet_hole.png differ diff --git a/examples/multiplayer-fps/textures/bullet_hole.png.import b/examples/multiplayer-fps/textures/bullet_hole.png.import new file mode 100644 index 0000000..1e703a7 --- /dev/null +++ b/examples/multiplayer-fps/textures/bullet_hole.png.import @@ -0,0 +1,42 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8r41bt6ft8jt" +path.s3tc="res://.godot/imported/bullet_hole.png-5089f7f5125aff59952396399670dd8a.s3tc.ctex" +path.etc2="res://.godot/imported/bullet_hole.png-5089f7f5125aff59952396399670dd8a.etc2.ctex" +metadata={ +"imported_formats": ["s3tc_bptc", "etc2_astc"], +"vram_texture": true +} + +[deps] + +source_file="res://examples/multiplayer-fps/textures/bullet_hole.png" +dest_files=["res://.godot/imported/bullet_hole.png-5089f7f5125aff59952396399670dd8a.s3tc.ctex", "res://.godot/imported/bullet_hole.png-5089f7f5125aff59952396399670dd8a.etc2.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/examples/multiplayer-fps/textures/crosshair.png b/examples/multiplayer-fps/textures/crosshair.png new file mode 100644 index 0000000..e789349 Binary files /dev/null and b/examples/multiplayer-fps/textures/crosshair.png differ diff --git a/examples/multiplayer-fps/textures/crosshair.png.import b/examples/multiplayer-fps/textures/crosshair.png.import new file mode 100644 index 0000000..503a79d --- /dev/null +++ b/examples/multiplayer-fps/textures/crosshair.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b66gbhylc33yy" +path="res://.godot/imported/crosshair.png-508eebd670070254ade16bff9855a108.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://examples/multiplayer-fps/textures/crosshair.png" +dest_files=["res://.godot/imported/crosshair.png-508eebd670070254ade16bff9855a108.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/examples/multiplayer-netfox/README.md b/examples/multiplayer-netfox/README.md new file mode 100644 index 0000000..c1099ae --- /dev/null +++ b/examples/multiplayer-netfox/README.md @@ -0,0 +1,14 @@ +# Multiplayer netfox example + +A simple demo game, using [netfox]'s `RollbackSynchronizer` to implement a +server-authorative model, while also compensating for latency with client-side +prediction. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + +Compare it with: +* [Single player example](../single-player) +* [Simple example](../multiplayer-simple) + +[netfox]: addons/netfox diff --git a/examples/multiplayer-netfox/characters/player.tscn b/examples/multiplayer-netfox/characters/player.tscn new file mode 100644 index 0000000..4098f0c --- /dev/null +++ b/examples/multiplayer-netfox/characters/player.tscn @@ -0,0 +1,33 @@ +[gd_scene load_steps=7 format=3 uid="uid://k3y73rql2u6e"] + +[ext_resource type="Script" path="res://examples/multiplayer-netfox/scripts/player.gd" id="1_tksy4"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="2_qf1b4"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_dkpv5"] +[ext_resource type="Script" path="res://examples/multiplayer-netfox/scripts/player-input.gd" id="3_g8e4n"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_t2650"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_vogks"] + +[node name="Player" type="CharacterBody3D"] +script = ExtResource("1_tksy4") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_t2650") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_vogks") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_qf1b4") +root = NodePath("..") +state_properties = Array[String]([":position"]) +input_properties = Array[String](["Input:movement"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_dkpv5") +root = NodePath("..") +properties = Array[String]([":position"]) + +[node name="Input" type="Node" parent="."] +script = ExtResource("3_g8e4n") diff --git a/examples/multiplayer-netfox/multiplayer-netfox.tscn b/examples/multiplayer-netfox/multiplayer-netfox.tscn new file mode 100644 index 0000000..6960e22 --- /dev/null +++ b/examples/multiplayer-netfox/multiplayer-netfox.tscn @@ -0,0 +1,110 @@ +[gd_scene load_steps=9 format=3 uid="uid://b2nbnsert06me"] + +[ext_resource type="Script" path="res://examples/multiplayer-netfox/scripts/player-spawner.gd" id="1_ngijx"] +[ext_resource type="PackedScene" uid="uid://k3y73rql2u6e" path="res://examples/multiplayer-netfox/characters/player.tscn" id="2_xjsod"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="4_lq3lq"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="4_n66wk"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_rrbfu"] + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_rrbfu") + +[sub_resource type="Environment" id="Environment_ef1wp"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") + +[sub_resource type="GDScript" id="GDScript_s4com"] +script/source = "extends Label + +func _process(_dt): + if multiplayer.is_server(): + text = \"Server\" + else: + text = \"Client\" +" + +[node name="Game Scene" type="Node3D"] + +[node name="Map" type="Node" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true + +[node name="CSGFloor" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGCorner" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) +current = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_ef1wp") + +[node name="Network" type="Node" parent="."] + +[node name="Player Spawner" type="Node" parent="Network" node_paths=PackedStringArray("spawn_root")] +script = ExtResource("1_ngijx") +player_scene = ExtResource("2_xjsod") +spawn_root = NodePath("../../Players") + +[node name="Players" type="Node" parent="."] + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("4_lq3lq")] +layout_mode = 1 + +[node name="VBoxContainer" type="VBoxContainer" parent="UI"] +layout_mode = 1 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="Time Display" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = ExtResource("4_n66wk") + +[node name="Label" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = SubResource("GDScript_s4com") diff --git a/examples/multiplayer-netfox/scripts/player-input.gd b/examples/multiplayer-netfox/scripts/player-input.gd new file mode 100644 index 0000000..3cd2c6e --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player-input.gd @@ -0,0 +1,17 @@ +extends Node +class_name PlayerInput + +var movement: Vector3 = Vector3.ZERO + +func _ready(): + NetworkTime.before_tick_loop.connect(_gather) + +func _gather(): + if not is_multiplayer_authority(): + return + + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var mx = Input.get_axis("ui_left", "ui_right") + var mz = Input.get_axis("ui_up", "ui_down") + movement = Vector3(mx, 0, mz) diff --git a/examples/multiplayer-netfox/scripts/player-input.gd.uid b/examples/multiplayer-netfox/scripts/player-input.gd.uid new file mode 100644 index 0000000..56ed33e --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://dr0wqty80sjn7 diff --git a/examples/multiplayer-netfox/scripts/player-spawner.gd b/examples/multiplayer-netfox/scripts/player-spawner.gd new file mode 100644 index 0000000..22f15e8 --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player-spawner.gd @@ -0,0 +1,57 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_root: Node + +var avatars: Dictionary = {} + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + # Spawn an avatar for us + _spawn(id) + +func _handle_host(): + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + spawn_root.add_child(avatar) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) diff --git a/examples/multiplayer-netfox/scripts/player-spawner.gd.uid b/examples/multiplayer-netfox/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..aac2ab9 --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://dfc6sptiy8y3p diff --git a/examples/multiplayer-netfox/scripts/player.gd b/examples/multiplayer-netfox/scripts/player.gd new file mode 100644 index 0000000..76834b3 --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player.gd @@ -0,0 +1,29 @@ +extends CharacterBody3D + +@export var speed := 5.0 +@export var input: PlayerInput + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _ready(): + position = Vector3(0, 4, 0) + + if input == null: + input = $Input + +func _rollback_tick(delta, _tick, _is_fresh): + # Add the gravity. + if not is_on_floor(): + velocity.y -= gravity * delta + + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + velocity.x = direction.x * speed + velocity.z = direction.z * speed + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor diff --git a/examples/multiplayer-netfox/scripts/player.gd.uid b/examples/multiplayer-netfox/scripts/player.gd.uid new file mode 100644 index 0000000..7254bb9 --- /dev/null +++ b/examples/multiplayer-netfox/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://lgmqlkuewowp diff --git a/examples/multiplayer-simple/README.md b/examples/multiplayer-simple/README.md new file mode 100644 index 0000000..4bd0107 --- /dev/null +++ b/examples/multiplayer-simple/README.md @@ -0,0 +1,13 @@ +# Simple multiplayer example + +A simple demo game, using only a `[MultiplayerSynchronizer]` to replicate state across players. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + +Compare it with: +* [Single player example](../single-player) +* [Example with netfox](../multiplayer-netfox) + +[MultiplayerSynchronizer]: https://docs.godotengine.org/en/stable/classes/class_multiplayersynchronizer.html + diff --git a/examples/multiplayer-simple/characters/player.tscn b/examples/multiplayer-simple/characters/player.tscn new file mode 100644 index 0000000..ea93a79 --- /dev/null +++ b/examples/multiplayer-simple/characters/player.tscn @@ -0,0 +1,26 @@ +[gd_scene load_steps=5 format=3 uid="uid://duljyj8cj1vb6"] + +[ext_resource type="Script" path="res://examples/multiplayer-simple/scripts/player.gd" id="1_52uoj"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_t2650"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_vogks"] + +[sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_n7ria"] +properties/0/path = NodePath(".:position") +properties/0/spawn = true +properties/0/sync = true +properties/0/watch = false + +[node name="Player" type="CharacterBody3D"] +collision_mask = 2 +script = ExtResource("1_52uoj") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_t2650") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_vogks") + +[node name="MultiplayerSynchronizer" type="MultiplayerSynchronizer" parent="."] +replication_config = SubResource("SceneReplicationConfig_n7ria") diff --git a/examples/multiplayer-simple/multiplayer-simple.tscn b/examples/multiplayer-simple/multiplayer-simple.tscn new file mode 100644 index 0000000..7231a53 --- /dev/null +++ b/examples/multiplayer-simple/multiplayer-simple.tscn @@ -0,0 +1,78 @@ +[gd_scene load_steps=7 format=3 uid="uid://f41lldd1a1xg"] + +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="1_0btv1"] +[ext_resource type="Script" path="res://examples/multiplayer-simple/scripts/player-spawner.gd" id="1_cru4a"] +[ext_resource type="PackedScene" uid="uid://duljyj8cj1vb6" path="res://examples/multiplayer-simple/characters/player.tscn" id="2_jb473"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_rrbfu"] + +[sub_resource type="Sky" id="Sky_g0uhm"] +sky_material = SubResource("ProceduralSkyMaterial_rrbfu") + +[sub_resource type="Environment" id="Environment_ef1wp"] +background_mode = 2 +sky = SubResource("Sky_g0uhm") + +[node name="Game Scene" type="Node3D"] + +[node name="Map" type="Node" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true +collision_layer = 2 + +[node name="CSGFloor" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGCorner" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_ef1wp") + +[node name="Network" type="Node" parent="."] + +[node name="Player Spawner" type="Node" parent="Network" node_paths=PackedStringArray("spawn_root")] +script = ExtResource("1_cru4a") +player_scene = ExtResource("2_jb473") +spawn_root = NodePath("../../Players") +spawn_point = Vector3(0, 1, 0) + +[node name="Network Popup" parent="Network" instance=ExtResource("1_0btv1")] + +[node name="Players" type="Node" parent="."] diff --git a/examples/multiplayer-simple/scripts/player-spawner.gd b/examples/multiplayer-simple/scripts/player-spawner.gd new file mode 100644 index 0000000..2dbe26b --- /dev/null +++ b/examples/multiplayer-simple/scripts/player-spawner.gd @@ -0,0 +1,35 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_root: Node +@export var spawn_point: Vector3 = Vector3.ZERO + +var spawned_for_host: bool = false + +func _ready(): + multiplayer.peer_connected.connect(_handle_new_peer) + multiplayer.connected_to_server.connect(_handle_connected) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + + if not spawned_for_host and multiplayer.is_server(): + # Spawn own avatar on host machine + # This is a bit cumbersome, as there's no "server started" + # event, only "connected to server" on the client side + _spawn(1) + spawned_for_host = true + +func _handle_connected(): + # Spawn an avatar for us + _spawn(multiplayer.get_unique_id()) + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node3D + avatar.name += " #%d" % id + avatar.position = spawn_point + spawn_root.add_child(avatar) + avatar.set_multiplayer_authority(id) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) diff --git a/examples/multiplayer-simple/scripts/player-spawner.gd.uid b/examples/multiplayer-simple/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..7be8ad5 --- /dev/null +++ b/examples/multiplayer-simple/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://dsgvf4g1u43ed diff --git a/examples/multiplayer-simple/scripts/player.gd b/examples/multiplayer-simple/scripts/player.gd new file mode 100644 index 0000000..69d0b9c --- /dev/null +++ b/examples/multiplayer-simple/scripts/player.gd @@ -0,0 +1,29 @@ +extends CharacterBody3D + +@export var speed = 5.0 + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _physics_process(delta): + if not is_multiplayer_authority(): + # If the player is not ours, do nothing + # The MultiplayerSynchronizer will sync data + return + + # Add the gravity. + if not is_on_floor(): + velocity.y -= gravity * delta + + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var input_dir = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down") + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.y)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + move_and_slide() diff --git a/examples/multiplayer-simple/scripts/player.gd.uid b/examples/multiplayer-simple/scripts/player.gd.uid new file mode 100644 index 0000000..b474c51 --- /dev/null +++ b/examples/multiplayer-simple/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://ducb7il6sbpsp diff --git a/examples/multiplayer-state-machine/README.md b/examples/multiplayer-state-machine/README.md new file mode 100644 index 0000000..4edbaf8 --- /dev/null +++ b/examples/multiplayer-state-machine/README.md @@ -0,0 +1,15 @@ +# Multiplayer state machine example + +A simple demo game, using [netfox]'s `RollbackSynchronizer` and +`NetworkedStateMachine` to implement a server-authorative model, while also +compensating for latency with client-side prediction. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + +Compare it with: +* [Example with netfox](../multiplayer-netfox) +* [Simple multiplayer example](../multiplayer-simple) +* [Single player example](../single-player) + +[netfox]: addons/netfox diff --git a/examples/multiplayer-state-machine/characters/player.tscn b/examples/multiplayer-state-machine/characters/player.tscn new file mode 100644 index 0000000..4c077c7 --- /dev/null +++ b/examples/multiplayer-state-machine/characters/player.tscn @@ -0,0 +1,65 @@ +[gd_scene load_steps=12 format=3 uid="uid://d4avkbkq3m4ra"] + +[ext_resource type="Script" path="res://examples/multiplayer-state-machine/scripts/player.gd" id="1_rmsnx"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="2_qf1b4"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_dkpv5"] +[ext_resource type="Script" path="res://examples/multiplayer-state-machine/scripts/player-input.gd" id="4_1uirt"] +[ext_resource type="Script" path="res://addons/netfox.extras/state-machine/rewindable-state-machine.gd" id="5_o4thu"] +[ext_resource type="Script" path="res://examples/multiplayer-state-machine/scripts/character-states/Idle.gd" id="6_plr4e"] +[ext_resource type="Script" path="res://examples/multiplayer-state-machine/scripts/character-states/Move.gd" id="7_xl1vh"] +[ext_resource type="Script" path="res://examples/multiplayer-state-machine/scripts/character-states/Jump.gd" id="8_prifk"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_2l8pk"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2gc5u"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_tnl3b"] +material = SubResource("StandardMaterial3D_2gc5u") + +[node name="player" type="CharacterBody3D" node_paths=PackedStringArray("state_machine")] +script = ExtResource("1_rmsnx") +state_machine = NodePath("RewindableStateMachine") + +[node name="StateNameLabel3D" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.24079, 0) +pixel_size = 0.002 +fixed_size = true +text = "Idle" + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_2l8pk") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_tnl3b") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_qf1b4") +root = NodePath("..") +state_properties = Array[String]([":position", ":velocity", "RewindableStateMachine:state"]) +input_properties = Array[String](["Input:movement", "Input:jump"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_dkpv5") +root = NodePath("..") +properties = Array[String]([":position"]) + +[node name="Input" type="Node" parent="."] +script = ExtResource("4_1uirt") + +[node name="RewindableStateMachine" type="Node" parent="."] +script = ExtResource("5_o4thu") + +[node name="Jump" type="Node" parent="RewindableStateMachine" node_paths=PackedStringArray("character", "input")] +script = ExtResource("8_prifk") +character = NodePath("../..") +input = NodePath("../../Input") + +[node name="Idle" type="Node" parent="RewindableStateMachine" node_paths=PackedStringArray("character", "input")] +script = ExtResource("6_plr4e") +character = NodePath("../..") +input = NodePath("../../Input") + +[node name="Move" type="Node" parent="RewindableStateMachine" node_paths=PackedStringArray("character", "input")] +script = ExtResource("7_xl1vh") +character = NodePath("../..") +input = NodePath("../../Input") diff --git a/examples/multiplayer-state-machine/multiplayer-state-machine.tscn b/examples/multiplayer-state-machine/multiplayer-state-machine.tscn new file mode 100644 index 0000000..b262ef5 --- /dev/null +++ b/examples/multiplayer-state-machine/multiplayer-state-machine.tscn @@ -0,0 +1,13 @@ +[gd_scene load_steps=3 format=3 uid="uid://ccrn3tkucslv1"] + +[ext_resource type="PackedScene" uid="uid://b2nbnsert06me" path="res://examples/multiplayer-netfox/multiplayer-netfox.tscn" id="1_bfe2b"] +[ext_resource type="PackedScene" uid="uid://d4avkbkq3m4ra" path="res://examples/multiplayer-state-machine/characters/player.tscn" id="2_fawao"] + +[node name="multiplayer-state-machine" type="Node"] + +[node name="Game Scene" parent="." instance=ExtResource("1_bfe2b")] + +[node name="Player Spawner" parent="Game Scene/Network" index="0"] +player_scene = ExtResource("2_fawao") + +[editable path="Game Scene"] diff --git a/examples/multiplayer-state-machine/scripts/character-states/Idle.gd b/examples/multiplayer-state-machine/scripts/character-states/Idle.gd new file mode 100644 index 0000000..631b558 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Idle.gd @@ -0,0 +1,17 @@ +extends RewindableState + +@export var character: CharacterBody3D +@export var input: PlayerInputStateMachine + +func display_enter(_previous, _t): + character.color = Color.WHITE + +func tick(delta, tick, is_fresh): + character.velocity *= NetworkTime.physics_factor + character.move_and_slide() + character.velocity /= NetworkTime.physics_factor + + if input.movement != Vector3.ZERO: + state_machine.transition(&"Move") + elif input.jump: + state_machine.transition(&"Jump") diff --git a/examples/multiplayer-state-machine/scripts/character-states/Idle.gd.uid b/examples/multiplayer-state-machine/scripts/character-states/Idle.gd.uid new file mode 100644 index 0000000..6a93254 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Idle.gd.uid @@ -0,0 +1 @@ +uid://bsmb3oeexcu7b diff --git a/examples/multiplayer-state-machine/scripts/character-states/Jump.gd b/examples/multiplayer-state-machine/scripts/character-states/Jump.gd new file mode 100644 index 0000000..76d2724 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Jump.gd @@ -0,0 +1,35 @@ +extends RewindableState + +@export var character: CharacterBody3D +@export var input: PlayerInputStateMachine +@export var speed = 5.0 +@export var jump_strength = 5.0 + +# Only enter if the character is on the floor +func can_enter(_previous_state): + return input.jump and character.is_on_floor() + +func display_enter(_previous, _t): + character.color = Color.BLUE + +func enter(_previous_state, _tick): + character.velocity.y = jump_strength + +func tick(delta, tick, is_fresh): + var input_dir = input.movement + var direction = (character.transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + character.velocity.x = direction.x * speed + character.velocity.z = direction.z * speed + else: + character.velocity.x = move_toward(character.velocity.x, 0, speed) + character.velocity.z = move_toward(character.velocity.z, 0, speed) + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + character.velocity *= NetworkTime.physics_factor + character.move_and_slide() + character.velocity /= NetworkTime.physics_factor + + if character.is_on_floor(): + state_machine.transition(&"Idle") diff --git a/examples/multiplayer-state-machine/scripts/character-states/Jump.gd.uid b/examples/multiplayer-state-machine/scripts/character-states/Jump.gd.uid new file mode 100644 index 0000000..de4c41e --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Jump.gd.uid @@ -0,0 +1 @@ +uid://dhdmqnfrvkwht diff --git a/examples/multiplayer-state-machine/scripts/character-states/Move.gd b/examples/multiplayer-state-machine/scripts/character-states/Move.gd new file mode 100644 index 0000000..d19dcc6 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Move.gd @@ -0,0 +1,29 @@ +extends RewindableState + +@export var character: CharacterBody3D +@export var input: PlayerInputStateMachine +@export var speed = 5.0 + +func display_enter(_previous, _t): + character.color = Color.RED + +func tick(delta, tick, is_fresh): + var input_dir = input.movement + var direction = (character.transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + character.velocity.x = direction.x * speed + character.velocity.z = direction.z * speed + else: + character.velocity.x = move_toward(character.velocity.x, 0, speed) + character.velocity.z = move_toward(character.velocity.z, 0, speed) + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + character.velocity *= NetworkTime.physics_factor + character.move_and_slide() + character.velocity /= NetworkTime.physics_factor + + if input.jump: + state_machine.transition(&"Jump") + elif input_dir == Vector3.ZERO: + state_machine.transition(&"Idle") diff --git a/examples/multiplayer-state-machine/scripts/character-states/Move.gd.uid b/examples/multiplayer-state-machine/scripts/character-states/Move.gd.uid new file mode 100644 index 0000000..15d5220 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/character-states/Move.gd.uid @@ -0,0 +1 @@ +uid://fkgq18vmq5u6 diff --git a/examples/multiplayer-state-machine/scripts/player-input.gd b/examples/multiplayer-state-machine/scripts/player-input.gd new file mode 100644 index 0000000..e710a73 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player-input.gd @@ -0,0 +1,20 @@ +extends Node +class_name PlayerInputStateMachine + +var movement: Vector3 = Vector3.ZERO +var jump: bool = false + +func _ready(): + NetworkTime.before_tick_loop.connect(_gather) + +func _gather(): + if not is_multiplayer_authority(): + return + + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var mx = Input.get_axis("ui_left", "ui_right") + var mz = Input.get_axis("ui_up", "ui_down") + movement = Vector3(mx, 0, mz) + + jump = Input.is_action_pressed("move_jump") diff --git a/examples/multiplayer-state-machine/scripts/player-input.gd.uid b/examples/multiplayer-state-machine/scripts/player-input.gd.uid new file mode 100644 index 0000000..27b84d9 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://i471rfvj7q8u diff --git a/examples/multiplayer-state-machine/scripts/player-spawner.gd b/examples/multiplayer-state-machine/scripts/player-spawner.gd new file mode 100644 index 0000000..22f15e8 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player-spawner.gd @@ -0,0 +1,57 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_root: Node + +var avatars: Dictionary = {} + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + # Spawn an avatar for us + _spawn(id) + +func _handle_host(): + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + spawn_root.add_child(avatar) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) diff --git a/examples/multiplayer-state-machine/scripts/player-spawner.gd.uid b/examples/multiplayer-state-machine/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..a5c9af4 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://bho3vav2cl6h7 diff --git a/examples/multiplayer-state-machine/scripts/player.gd b/examples/multiplayer-state-machine/scripts/player.gd new file mode 100644 index 0000000..b418e05 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player.gd @@ -0,0 +1,48 @@ +extends CharacterBody3D + +@export var state_machine: RewindableStateMachine + +@onready var mesh_instance: MeshInstance3D = $MeshInstance3D +@onready var current_state_label: Label3D = $StateNameLabel3D + +var color: Color: + get: return _color + set(v): set_color(v) + +var _color: Color = Color.WHITE +var _material: StandardMaterial3D = StandardMaterial3D.new() + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _ready(): + # Set spawn position + position = Vector3(0, 4, 0) + + # Set starting state + state_machine.state = &"Idle" + state_machine.on_display_state_changed.connect(func(_old_state, _new_state): + current_state_label.text = state_machine.state + ) + + # Ensure material is unique + mesh_instance.material_override = _material + +# Callback during rollback tick +func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * delta + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity + +func set_color(color: Color): + if color == _color: + return + + _material.albedo_color = color + _color = color diff --git a/examples/multiplayer-state-machine/scripts/player.gd.uid b/examples/multiplayer-state-machine/scripts/player.gd.uid new file mode 100644 index 0000000..6327a10 --- /dev/null +++ b/examples/multiplayer-state-machine/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://bxu8pertdjmek diff --git a/examples/property-configuration/scripts/base-subject.gd b/examples/property-configuration/scripts/base-subject.gd new file mode 100644 index 0000000..4264943 --- /dev/null +++ b/examples/property-configuration/scripts/base-subject.gd @@ -0,0 +1,4 @@ +extends CharacterBody3D + +func _get_synchronized_state_properties() -> Array[String]: + return ["name"] diff --git a/examples/property-configuration/scripts/base-subject.gd.uid b/examples/property-configuration/scripts/base-subject.gd.uid new file mode 100644 index 0000000..39c4bc5 --- /dev/null +++ b/examples/property-configuration/scripts/base-subject.gd.uid @@ -0,0 +1 @@ +uid://dclxr4851sia3 diff --git a/examples/property-configuration/scripts/input.gd b/examples/property-configuration/scripts/input.gd new file mode 100644 index 0000000..fad2613 --- /dev/null +++ b/examples/property-configuration/scripts/input.gd @@ -0,0 +1,16 @@ +@tool +extends Node + +var movement := Vector2.ZERO +var is_jumping := false + +# These properties will be picked up by RollbackSynchronizer as input +func _get_rollback_input_properties() -> Array: + return ["movement", "is_jumping"] + +# These properties will be picked up by StateSynchronizer as state +# NOTE that node paths are considered relative to this node, not the root! +func _get_rollback_state_properties() -> Array: + return [ + ["../MeshInstance3D", "transform"] + ] diff --git a/examples/property-configuration/scripts/input.gd.uid b/examples/property-configuration/scripts/input.gd.uid new file mode 100644 index 0000000..5459875 --- /dev/null +++ b/examples/property-configuration/scripts/input.gd.uid @@ -0,0 +1 @@ +uid://x20b1aik3xek diff --git a/examples/property-configuration/scripts/subject.gd b/examples/property-configuration/scripts/subject.gd new file mode 100644 index 0000000..a30cfdc --- /dev/null +++ b/examples/property-configuration/scripts/subject.gd @@ -0,0 +1,18 @@ +@tool +extends "res://examples/property-configuration/scripts/base-subject.gd" + +var health := 100 +var movement := Vector2.ZERO + +# These properties will be picked up by StateSynchronizer +func _get_synchronized_state_properties() -> Array: + # Inheritance is also possible this way + return super() + ["health"] + +# These properties will be picked up by TickInterpolator +func _get_interpolated_properties() -> Array: + return ["transform"] + +# These properties will be picked up by RollbackSyncrhonizer as state +func _get_rollback_state_properties() -> Array: + return ["transform"] diff --git a/examples/property-configuration/scripts/subject.gd.uid b/examples/property-configuration/scripts/subject.gd.uid new file mode 100644 index 0000000..4bb97ab --- /dev/null +++ b/examples/property-configuration/scripts/subject.gd.uid @@ -0,0 +1 @@ +uid://dy8c2dv33xf3u diff --git a/examples/property-configuration/subject.tscn b/examples/property-configuration/subject.tscn new file mode 100644 index 0000000..0edc207 --- /dev/null +++ b/examples/property-configuration/subject.tscn @@ -0,0 +1,44 @@ +[gd_scene load_steps=5 format=3 uid="uid://bf3cwd7tq7lf"] + +[ext_resource type="Script" path="res://examples/property-configuration/scripts/subject.gd" id="1_wpisv"] +[ext_resource type="Script" path="res://examples/property-configuration/scripts/input.gd" id="2_ay2fd"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_0gr3k"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_8yfbu"] + +[node name="Subject" type="CharacterBody3D"] +script = ExtResource("1_wpisv") + +[node name="Input" type="Node" parent="."] +script = ExtResource("2_ay2fd") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_0gr3k") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_8yfbu") + +[node name="Control" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="RichTextLabel" type="RichTextLabel" parent="Control"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +bbcode_enabled = true +text = "[center][b]Property configuration example[/b][/center] + +[p]This is a non-playable example. Head back to the editor, and add a [i]TickInterpolator[/i], [i]StateSynchronizer[/i], or [i]RollbackSynchronizer[/i] node.[/p] + +[p]Upon adding the nodes, they will automatically pick up the configuration specified in the [i]Subject[/i] and [i]Input[/i] nodes.[/p] + +[p]Feel free to experiment with different method implementations! To update, save the scene, and select any of the nodes again to update the inspector UI.[/p]" diff --git a/examples/rollback-debugger/README.md b/examples/rollback-debugger/README.md new file mode 100644 index 0000000..4f4457c --- /dev/null +++ b/examples/rollback-debugger/README.md @@ -0,0 +1,18 @@ +# Rollback Debugger + +A small tool to help visualize and debug what happens during rollback, signal +by signal. + +![Screenshot](assets/screenshot.png) + +## Usage + +Open `rollback-debugger.tscn`. + +Replace the *Subject* node with the rollback-enabled node you want to debug. + +Optionally, edit `rollback-debugger.gd` and set the State and Input history +fields' values to the initial states after the first `_render_data()` call, to +avoid having to paste the same values on each run. + +Editable fields are taken into consideration and applied before every signal. diff --git a/examples/rollback-debugger/assets/.gdignore b/examples/rollback-debugger/assets/.gdignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/examples/rollback-debugger/assets/.gdignore @@ -0,0 +1 @@ +* diff --git a/examples/rollback-debugger/assets/screenshot.png b/examples/rollback-debugger/assets/screenshot.png new file mode 100644 index 0000000..b8ae502 Binary files /dev/null and b/examples/rollback-debugger/assets/screenshot.png differ diff --git a/examples/rollback-debugger/rollback-debugger.tscn b/examples/rollback-debugger/rollback-debugger.tscn new file mode 100644 index 0000000..2129797 --- /dev/null +++ b/examples/rollback-debugger/rollback-debugger.tscn @@ -0,0 +1,245 @@ +[gd_scene load_steps=6 format=3 uid="uid://c3q2g36patykx"] + +[ext_resource type="Script" path="res://examples/rollback-debugger/scripts/rollback-debugger.gd" id="1_2emun"] +[ext_resource type="Texture2D" uid="uid://csg26ysqqb4xe" path="res://addons/netfox/icons/rollback-synchronizer.svg" id="2_hjcrm"] +[ext_resource type="Script" path="res://examples/rollback-debugger/scripts/subject.gd" id="3_5kvxc"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="3_0135o"] +[ext_resource type="Script" path="res://examples/rollback-debugger/scripts/input.gd" id="4_p1byq"] + +[node name="Control" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Rollback Debugger" type="Node" parent="."] +script = ExtResource("1_2emun") + +[node name="HBoxContainer" type="HBoxContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="History" type="VBoxContainer" parent="HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="State History Label" type="Label" parent="HBoxContainer/History"] +layout_mode = 2 +text = "State history" + +[node name="ScrollContainer" type="ScrollContainer" parent="HBoxContainer/History"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Container" type="PanelContainer" parent="HBoxContainer/History/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="State History Data" type="TextEdit" parent="HBoxContainer/History/ScrollContainer/Container"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Input History Label" type="Label" parent="HBoxContainer/History"] +layout_mode = 2 +text = "Input history" + +[node name="ScrollContainer2" type="ScrollContainer" parent="HBoxContainer/History"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Container" type="PanelContainer" parent="HBoxContainer/History/ScrollContainer2"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Input History Data" type="TextEdit" parent="HBoxContainer/History/ScrollContainer2/Container"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Data" type="VBoxContainer" parent="HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 0.5 + +[node name="Has Input" type="HBoxContainer" parent="HBoxContainer/Data"] +layout_mode = 2 + +[node name="Has Input Label" type="Label" parent="HBoxContainer/Data/Has Input"] +layout_mode = 2 +text = "Has input:" + +[node name="Has Input Data" type="Label" parent="HBoxContainer/Data/Has Input"] +unique_name_in_owner = true +layout_mode = 2 +text = "true" + +[node name="Input Age" type="HBoxContainer" parent="HBoxContainer/Data"] +layout_mode = 2 + +[node name="Input Age Label" type="Label" parent="HBoxContainer/Data/Input Age"] +layout_mode = 2 +text = "Input age:" + +[node name="Input Age Data" type="Label" parent="HBoxContainer/Data/Input Age"] +unique_name_in_owner = true +layout_mode = 2 +text = "2 ticks" + +[node name="Simset Label" type="Label" parent="HBoxContainer/Data"] +layout_mode = 2 +text = "Simset:" + +[node name="Simset List" type="ItemList" parent="HBoxContainer/Data"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Skipset Label" type="Label" parent="HBoxContainer/Data"] +layout_mode = 2 +text = "Skipset:" + +[node name="Skipset List" type="ItemList" parent="HBoxContainer/Data"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Transmit State Label" type="Label" parent="HBoxContainer/Data"] +layout_mode = 2 +text = "Transmit state:" + +[node name="PanelContainer" type="PanelContainer" parent="HBoxContainer/Data"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Transmit State Data" type="Label" parent="HBoxContainer/Data/PanelContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Tools" type="VBoxContainer" parent="HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 8 + +[node name="Tick Container" type="HBoxContainer" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="Network Tick Label" type="Label" parent="HBoxContainer/Tools/Tick Container"] +layout_mode = 2 +text = "Network Tick: " + +[node name="Network Tick Data" type="LineEdit" parent="HBoxContainer/Tools/Tick Container"] +unique_name_in_owner = true +layout_mode = 2 +text = "0" + +[node name="Rollback Tick Label" type="Label" parent="HBoxContainer/Tools/Tick Container"] +layout_mode = 2 +text = "Rollback Tick: " + +[node name="Rollback Tick Data" type="LineEdit" parent="HBoxContainer/Tools/Tick Container"] +unique_name_in_owner = true +layout_mode = 2 +text = "0" + +[node name="NT Before Loop Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkTime.before_tick_loop" + +[node name="HSeparator5" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NT Before Tick Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkTime.before_tick" + +[node name="NT On Tick Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkTime.on_tick" + +[node name="HSeparator6" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NR Before Loop Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkRollback.before_loop" + +[node name="HSeparator2" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NR Prepare Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkRollback.on_prepare_tick" + +[node name="NR Process Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkRollback.on_process_tick" + +[node name="NR Record Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkRollback.on_record_tick" + +[node name="HSeparator3" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NR After Loop" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkRollback.after_loop" + +[node name="HSeparator7" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NT After Tick Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkTime.after_tick" + +[node name="HSeparator8" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="NT After Tick Loop Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "NetworkTime.after_tick_loop" + +[node name="HSeparator4" type="HSeparator" parent="HBoxContainer/Tools"] +layout_mode = 2 + +[node name="Run NR Tick Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "Run Rollback tick" + +[node name="Advance Button" type="Button" parent="HBoxContainer/Tools"] +unique_name_in_owner = true +layout_mode = 2 +text = "Advance tick" + +[node name="Subject" type="Sprite2D" parent="."] +z_index = -1 +position = Vector2(270, 270) +texture = ExtResource("2_hjcrm") +script = ExtResource("3_5kvxc") + +[node name="Input" type="Node" parent="Subject"] +script = ExtResource("4_p1byq") + +[node name="RollbackSynchronizer" type="Node" parent="Subject" node_paths=PackedStringArray("root")] +script = ExtResource("3_0135o") +root = NodePath("..") +state_properties = Array[String]([":position"]) +input_properties = Array[String](["Input:movement"]) diff --git a/examples/rollback-debugger/scripts/input.gd b/examples/rollback-debugger/scripts/input.gd new file mode 100644 index 0000000..620979c --- /dev/null +++ b/examples/rollback-debugger/scripts/input.gd @@ -0,0 +1,3 @@ +extends Node + +var movement := Vector2.ZERO diff --git a/examples/rollback-debugger/scripts/input.gd.uid b/examples/rollback-debugger/scripts/input.gd.uid new file mode 100644 index 0000000..495496d --- /dev/null +++ b/examples/rollback-debugger/scripts/input.gd.uid @@ -0,0 +1 @@ +uid://bmke0hwo4yufm diff --git a/examples/rollback-debugger/scripts/rollback-debugger.gd b/examples/rollback-debugger/scripts/rollback-debugger.gd new file mode 100644 index 0000000..c79a27e --- /dev/null +++ b/examples/rollback-debugger/scripts/rollback-debugger.gd @@ -0,0 +1,174 @@ +extends Node + +# Data fields +@onready var state_history_data := %"State History Data" as TextEdit +@onready var input_history_data := %"Input History Data" as TextEdit +@onready var network_tick_data := %"Network Tick Data" as LineEdit +@onready var rollback_tick_data := %"Rollback Tick Data" as LineEdit +@onready var has_input_data := %"Has Input Data" as Label +@onready var input_age_data := %"Input Age Data" as Label +@onready var simset_list := %"Simset List" as ItemList +@onready var skipset_list := %"Skipset List" as ItemList +@onready var transmit_state_data := %"Transmit State Data" as Label + +# Tool buttons +@onready var nt_before_loop_button := %"NT Before Loop Button" as Button +@onready var nt_before_tick_button := %"NT Before Tick Button" as Button +@onready var nt_on_tick_button := %"NT On Tick Button" as Button +@onready var nr_before_loop_button := %"NR Before Loop Button" as Button +@onready var nr_prepare_button := %"NR Prepare Button" as Button +@onready var nr_process_button := %"NR Process Button" as Button +@onready var nr_record_button := %"NR Record Button" as Button +@onready var nr_after_loop_button := %"NR After Loop" as Button +@onready var nt_after_tick_button := %"NT After Tick Button" as Button +@onready var nt_after_tick_loop_button := %"NT After Tick Loop Button" as Button + +@onready var run_nr_tick_button := %"Run NR Tick Button" as Button +@onready var advance_button := %"Advance Button" as Button + +@onready var rollback_synchronizer := self.get_tree().root\ + .find_children("*", "RollbackSynchronizer", true, false)\ + .pop_front() as RollbackSynchronizer + +func _ready(): + if not rollback_synchronizer: + OS.alert("No RollbackSynchronizer found! Add one to the scene and run again!") + get_tree().quit() + + # Render initial data + _render_data() + + # Set defaults + input_history_data.text = """{ + 0: { "Input:movement": Vector2(1, 0) }, + 1: { "Input:movement": Vector2(1, 1) }, + 2: { "Input:movement": Vector2(1, 1) }, + 3: { "Input:movement": Vector2(0, 1) }, + }""" + + # Start NetworkTime but make sure it doesn't tick on its own + NetworkTime.start() + NetworkTime.set_process(false) + + # Connect signals + rollback_synchronizer._on_transmit_state.connect(func(state, tick): + transmit_state_data.text = "@%d: %s" % [tick, var_to_str(state)] + ) + + nt_before_loop_button.pressed.connect(func(): + NetworkTime.before_tick_loop.emit() + ) + + nt_before_tick_button.pressed.connect(func(): + NetworkTime.before_tick.emit(NetworkTime.ticktime, NetworkTime.tick) + ) + + nt_on_tick_button.pressed.connect(func(): + NetworkTime.on_tick.emit(NetworkTime.ticktime, NetworkTime.tick) + ) + + nr_before_loop_button.pressed.connect(func(): + NetworkRollback.before_loop.emit() + ) + + nr_prepare_button.pressed.connect(func(): + NetworkRollback.on_prepare_tick.emit(NetworkRollback.tick) + NetworkRollback.after_prepare_tick.emit(NetworkRollback.tick) + ) + + nr_process_button.pressed.connect(func(): + NetworkRollback.on_process_tick.emit(NetworkRollback.tick) + NetworkRollback._tick += 1 + ) + + nr_record_button.pressed.connect(func(): + NetworkRollback.on_record_tick.emit(NetworkRollback.tick) + ) + + nr_after_loop_button.pressed.connect(func(): + NetworkRollback.after_loop.emit() + ) + + nt_after_tick_button.pressed.connect(func(): + NetworkTime.after_tick.emit(NetworkTime.ticktime, NetworkTime.tick) + ) + + nt_after_tick_loop_button.pressed.connect(func(): + NetworkTime.after_tick_loop.emit() + NetworkTime._tick += 1 + ) + + run_nr_tick_button.pressed.connect(func(): + NetworkRollback.before_loop.emit() + + NetworkRollback.on_prepare_tick.emit(NetworkRollback.tick) + NetworkRollback.after_prepare_tick.emit(NetworkRollback.tick) + NetworkRollback.on_process_tick.emit(NetworkRollback.tick) + NetworkRollback._tick += 1 + NetworkRollback.on_record_tick.emit(NetworkRollback.tick) + + NetworkRollback.after_loop.emit() + ) + + advance_button.pressed.connect(func(): + NetworkRollback._tick += 1 + ) + + # Update UI after any button press + var buttons = get_parent().find_children("*", "Button") + for button in buttons: + (button as Button).button_down.connect(_read_data) + (button as Button).button_up.connect(_render_data) + +func _render_data(): + network_tick_data.text = str(NetworkTime.tick) + rollback_tick_data.text = str(NetworkRollback.tick) + + state_history_data.text = _serialize_history(rollback_synchronizer._states) + input_history_data.text = _serialize_history(rollback_synchronizer._inputs) + + if rollback_synchronizer.has_input(): + has_input_data.text = "true" + input_age_data.text = str(rollback_synchronizer.get_input_age()) + else: + has_input_data.text = "false" + input_age_data.text = "?" + + simset_list.clear() + for sim_entry in rollback_synchronizer._simset.values(): + simset_list.add_item(str(sim_entry), null, false) + + skipset_list.clear() + for skip_entry in rollback_synchronizer._skipset.values(): + skipset_list.add_item(str(skip_entry), null, false) + +func _read_data(): + if network_tick_data.text.is_valid_int(): + NetworkTime._tick = network_tick_data.text.to_int() + + if rollback_tick_data.text.is_valid_int(): + NetworkRollback._tick = rollback_tick_data.text.to_int() + + rollback_synchronizer._states = _parse_history(state_history_data.text) + rollback_synchronizer._inputs = _parse_history(input_history_data.text) + +func _serialize_history(history: _PropertyHistoryBuffer) -> String: + var result = PackedStringArray() + + for tick in history.ticks(): + var snapshot := history.get_snapshot(tick) + result.append("\t%d: %s" % [tick, var_to_str(snapshot.as_dictionary()).replace("\n", "")]) + + return "{\n%s\n}" % [",\n".join(result)] + +func _parse_history(history_string: String) -> _PropertyHistoryBuffer: + var result_data = str_to_var(history_string) + if not result_data is Dictionary: + return _PropertyHistoryBuffer.new() + + var result := _PropertyHistoryBuffer.new() + for tick in result_data.keys(): + var snapshot := _PropertySnapshot.from_dictionary(result_data[tick]) + result.set_snapshot(tick, snapshot) + + return result diff --git a/examples/rollback-debugger/scripts/rollback-debugger.gd.uid b/examples/rollback-debugger/scripts/rollback-debugger.gd.uid new file mode 100644 index 0000000..b26e679 --- /dev/null +++ b/examples/rollback-debugger/scripts/rollback-debugger.gd.uid @@ -0,0 +1 @@ +uid://bbyunye70km5j diff --git a/examples/rollback-debugger/scripts/subject.gd b/examples/rollback-debugger/scripts/subject.gd new file mode 100644 index 0000000..63b5c33 --- /dev/null +++ b/examples/rollback-debugger/scripts/subject.gd @@ -0,0 +1,13 @@ +extends Sprite2D + +@export var move_speed := 16. + +@onready var input := $Input +@onready var rollback_synchronizer := $RollbackSynchronizer as RollbackSynchronizer + +func _rollback_tick(_dt, _t, _if): + if not rollback_synchronizer.has_input() or rollback_synchronizer.get_input_age() > 0: + rollback_synchronizer.ignore_prediction(self) + return + + position += input.movement.normalized() * move_speed diff --git a/examples/rollback-debugger/scripts/subject.gd.uid b/examples/rollback-debugger/scripts/subject.gd.uid new file mode 100644 index 0000000..db15b31 --- /dev/null +++ b/examples/rollback-debugger/scripts/subject.gd.uid @@ -0,0 +1 @@ +uid://dmqopdmgukewq diff --git a/examples/rollback-fps/README.md b/examples/rollback-fps/README.md new file mode 100644 index 0000000..c0a6bef --- /dev/null +++ b/examples/rollback-fps/README.md @@ -0,0 +1,13 @@ +# Rollback FPS example + +A demo FPS game, based on netfox's `RollbackSynchronizer` and +`RewindableAction`, to demonstrate how to create a server-authoritative +shooter. + +Player stats and firing are handled from inside the [rollback tick loop], +taking advantage of the latency compensation provided by rollback. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + +[rollback tick loop]: https://foxssake.github.io/netfox/latest/netfox/guides/network-rollback/ diff --git a/examples/rollback-fps/characters/player.tscn b/examples/rollback-fps/characters/player.tscn new file mode 100644 index 0000000..b591a36 --- /dev/null +++ b/examples/rollback-fps/characters/player.tscn @@ -0,0 +1,97 @@ +[gd_scene load_steps=17 format=3 uid="uid://dw3xd5a7xnse7"] + +[ext_resource type="Script" path="res://examples/rollback-fps/scripts/player.gd" id="1_bww6v"] +[ext_resource type="Script" path="res://examples/rollback-fps/scripts/player-weapon.gd" id="2_qyetr"] +[ext_resource type="AudioStream" uid="uid://cope814m1d7p6" path="res://examples/multiplayer-fps/sounds/fire.mp3" id="3_kq0j8"] +[ext_resource type="Script" path="res://addons/netfox/rewindable-action.gd" id="6_pks3d"] +[ext_resource type="Script" path="res://examples/rollback-fps/scripts/player-input.gd" id="7_2i3bi"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="9_vik3r"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="10_4mqhe"] +[ext_resource type="AudioStream" uid="uid://q7ql86p7flj" path="res://examples/multiplayer-fps/sounds/hit.wav" id="15_1n4tg"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_6kydi"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_2gc5u"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_xnks4"] +material = SubResource("StandardMaterial3D_2gc5u") + +[sub_resource type="BoxMesh" id="BoxMesh_qmeb2"] +size = Vector3(0.4, 0.25, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xx8rr"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="BoxMesh" id="BoxMesh_0vqha"] +material = SubResource("StandardMaterial3D_xx8rr") +size = Vector3(0.2, 0.2, 1) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_khk4l"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="BoxMesh" id="BoxMesh_wqpqp"] +material = SubResource("StandardMaterial3D_khk4l") +size = Vector3(0.2, 0.2, 1) + +[node name="player" type="CharacterBody3D"] +script = ExtResource("1_bww6v") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_6kydi") + +[node name="Body" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_xnks4") + +[node name="Head" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.705698, 0) + +[node name="Camera3D" type="Camera3D" parent="Head"] + +[node name="Nose" type="MeshInstance3D" parent="Head"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.25) +mesh = SubResource("BoxMesh_qmeb2") + +[node name="PlayerFPSWeapon" type="Node3D" parent="Head"] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0) +script = ExtResource("2_qyetr") + +[node name="TinyGun" type="MeshInstance3D" parent="Head/PlayerFPSWeapon"] +transform = Transform3D(0.15, 0, 0, 0, 0.15, 0, 0, 0, 0.15, 0.09, -0.18, -0.3) +mesh = SubResource("BoxMesh_0vqha") + +[node name="Fire Action" type="Node" parent="Head/PlayerFPSWeapon"] +script = ExtResource("6_pks3d") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Head/PlayerFPSWeapon"] +transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 0, -0.705698, 0) +stream = ExtResource("3_kq0j8") + +[node name="BigGun" type="MeshInstance3D" parent="Head"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.439686, -0.406913, -0.200588) +mesh = SubResource("BoxMesh_wqpqp") + +[node name="DisplayNameLabel3D" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.30427, 0) +pixel_size = 0.002 +billboard = 1 +fixed_size = true +font_size = 16 + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +unique_name_in_owner = true +script = ExtResource("9_vik3r") +root = NodePath("..") +state_properties = Array[String]([":transform", ":velocity", ":health", ":deaths", "Head:transform", "Head/PlayerFPSWeapon:last_fire"]) +input_properties = Array[String](["Input:movement", "Input:jump", "Input:fire", "Input:look_angle"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("10_4mqhe") +root = NodePath("..") +properties = Array[String]([":transform", "Head:transform"]) + +[node name="Input" type="Node" parent="."] +script = ExtResource("7_2i3bi") +mouse_sensitivity = 0.005 + +[node name="Hit SFX" type="AudioStreamPlayer3D" parent="."] +stream = ExtResource("15_1n4tg") diff --git a/examples/rollback-fps/rollback-fps.tscn b/examples/rollback-fps/rollback-fps.tscn new file mode 100644 index 0000000..4ec293b --- /dev/null +++ b/examples/rollback-fps/rollback-fps.tscn @@ -0,0 +1,104 @@ +[gd_scene load_steps=11 format=3 uid="uid://dc73d71dasnjj"] + +[ext_resource type="Script" path="res://examples/rollback-fps/scripts/player-spawner.gd" id="1_ayh10"] +[ext_resource type="PackedScene" uid="uid://dw3xd5a7xnse7" path="res://examples/rollback-fps/characters/player.tscn" id="2_a4siq"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_1bl75"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="4_ivl41"] +[ext_resource type="PackedScene" uid="uid://cdue87s0gmc4d" path="res://examples/rollback-fps/ui/fps-hud.tscn" id="5_wh0vl"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_m76yx"] + +[sub_resource type="Sky" id="Sky_e76ss"] +sky_material = SubResource("ProceduralSkyMaterial_m76yx") + +[sub_resource type="Environment" id="Environment_xhc6u"] +background_mode = 2 +sky = SubResource("Sky_e76ss") + +[sub_resource type="ArrayMesh" id="ArrayMesh_jat7u"] +_surfaces = [{ +"aabb": AABB(-21.5, -0.5, -21.5, 43, 3.5, 43), +"attribute_data": PackedByteArray(0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 49, 12, 67, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 213, 254, 70, 62, 8, 70, 73, 62, 124, 209, 84, 63, 97, 96, 87, 63, 88, 21, 72, 62, 88, 21, 72, 62, 146, 182, 3, 62, 146, 182, 3, 62, 64, 12, 67, 60, 64, 12, 67, 60, 246, 174, 233, 61, 102, 60, 236, 61, 123, 209, 84, 63, 123, 209, 84, 63, 5, 241, 121, 63, 207, 243, 124, 63, 208, 243, 124, 63, 208, 243, 124, 63, 221, 233, 90, 63, 221, 233, 90, 63, 222, 233, 90, 63, 202, 139, 93, 63, 236, 121, 67, 62, 117, 31, 77, 62, 13, 195, 48, 63, 160, 231, 57, 63, 204, 254, 70, 62, 0, 70, 73, 62, 126, 209, 84, 63, 99, 96, 87, 63, 24, 175, 233, 61, 137, 60, 236, 61, 64, 12, 67, 60, 64, 12, 67, 60, 91, 175, 218, 61, 81, 134, 222, 61, 158, 181, 215, 61, 132, 199, 225, 61, 222, 233, 90, 63, 62, 134, 96, 63, 6, 241, 121, 63, 209, 243, 124, 63, 223, 233, 90, 63, 204, 139, 93, 63, 125, 209, 84, 63, 157, 240, 90, 63, 49, 12, 67, 60, 207, 243, 124, 63, 100, 20, 206, 61, 61, 4, 23, 63, 252, 208, 116, 62, 20, 111, 51, 63, 239, 90, 44, 62, 94, 251, 248, 62, 10, 231, 246, 61, 165, 89, 26, 63, 146, 31, 54, 62, 196, 229, 3, 63, 232, 121, 158, 62, 160, 231, 57, 63, 18, 114, 44, 62, 168, 233, 248, 62, 8, 209, 116, 62, 142, 159, 14, 63, 104, 219, 64, 62, 118, 148, 255, 62, 147, 31, 54, 62, 197, 229, 3, 63, 68, 153, 134, 62, 20, 111, 51, 63, 71, 153, 134, 62, 120, 64, 29, 63, 190, 3, 192, 61, 218, 178, 251, 61, 184, 200, 185, 61, 207, 65, 1, 62, 9, 209, 116, 62, 248, 209, 163, 62, 142, 84, 220, 61, 67, 12, 17, 62, 175, 145, 58, 62, 40, 229, 86, 62, 236, 121, 67, 62, 120, 31, 77, 62, 22, 104, 22, 62, 249, 213, 53, 62, 225, 153, 134, 62, 130, 210, 163, 62, 161, 181, 215, 61, 138, 199, 225, 61, 64, 12, 67, 60, 64, 12, 67, 60, 205, 78, 201, 61, 35, 138, 241, 61, 225, 153, 134, 62, 130, 210, 163, 62, 205, 78, 201, 61, 34, 138, 241, 61, 64, 12, 67, 60, 64, 12, 67, 60, 191, 3, 192, 61, 220, 178, 251, 61, 19, 104, 22, 62, 245, 213, 53, 62, 6, 154, 165, 62, 67, 145, 13, 63, 200, 62, 209, 62, 137, 152, 36, 63, 15, 24, 218, 62, 66, 103, 32, 63, 90, 115, 174, 62, 255, 95, 9, 63, 70, 153, 134, 62, 120, 64, 29, 63, 237, 121, 158, 62, 0, 0, 64, 63, 132, 209, 84, 63, 169, 255, 113, 63, 125, 209, 84, 63, 46, 8, 94, 63, 14, 195, 48, 63, 4, 0, 64, 63, 106, 15, 159, 62, 208, 29, 98, 63, 140, 191, 168, 62, 112, 58, 103, 63, 205, 152, 177, 62, 39, 9, 99, 63, 247, 169, 171, 62, 192, 231, 95, 63, 227, 233, 90, 63, 168, 255, 113, 63, 222, 233, 90, 63, 216, 27, 99, 63, 108, 53, 122, 62, 26, 51, 80, 63, 105, 15, 159, 62, 208, 29, 98, 63, 92, 244, 133, 62, 202, 1, 76, 63, 248, 169, 171, 62, 192, 231, 95, 63, 221, 233, 90, 63, 149, 127, 90, 63, 208, 243, 124, 63, 208, 243, 124, 63, 220, 233, 90, 63, 231, 120, 90, 63, 123, 209, 84, 63, 75, 76, 84, 63, 0, 227, 193, 60, 0, 12, 67, 60, 124, 209, 84, 63, 43, 84, 84, 63, 207, 243, 124, 63, 105, 234, 124, 63, 120, 209, 84, 63, 44, 84, 84, 63, 96, 223, 193, 60, 64, 12, 67, 60, 125, 209, 84, 63, 125, 209, 84, 63, 220, 233, 90, 63, 220, 233, 90, 63, 218, 233, 90, 63, 149, 127, 90, 63, 98, 12, 67, 60, 98, 12, 67, 60, 36, 1, 75, 62, 33, 227, 68, 62, 125, 182, 3, 62, 125, 182, 3, 62, 132, 65, 74, 63, 82, 164, 62, 62, 12, 195, 48, 63, 190, 48, 140, 62, 122, 226, 80, 63, 204, 225, 86, 62, 22, 13, 61, 63, 235, 209, 163, 62, 24, 35, 99, 63, 67, 134, 3, 62, 100, 255, 84, 63, 190, 226, 68, 62, 19, 50, 99, 63, 211, 86, 11, 62, 95, 19, 105, 63, 207, 159, 220, 61, 207, 243, 124, 63, 0, 12, 67, 60, 207, 7, 105, 63, 28, 144, 208, 61, 195, 237, 98, 63, 76, 150, 207, 61, 218, 219, 78, 63, 148, 112, 46, 62, 24, 35, 99, 63, 68, 134, 3, 62, 207, 7, 105, 63, 29, 144, 208, 61, 207, 243, 124, 63, 0, 12, 67, 60, 167, 222, 104, 63, 58, 195, 165, 61, 100, 255, 84, 63, 190, 226, 68, 62, 22, 13, 61, 63, 181, 42, 199, 62, 213, 74, 99, 63, 250, 55, 24, 62, 123, 37, 67, 63, 249, 209, 163, 62, 103, 147, 99, 63, 85, 249, 61, 62, 207, 243, 124, 63, 105, 234, 124, 63, 9, 171, 105, 63, 47, 61, 61, 62, 122, 38, 105, 63, 175, 128, 240, 61, 19, 50, 99, 63, 210, 86, 11, 62, 121, 38, 105, 63, 179, 128, 240, 61, 95, 19, 105, 63, 205, 159, 220, 61, 212, 74, 99, 63, 252, 55, 24, 62, 121, 37, 67, 63, 13, 107, 228, 62, 42, 187, 223, 62, 199, 64, 174, 61, 10, 227, 193, 60, 66, 12, 67, 60, 93, 38, 212, 62, 47, 83, 41, 62, 20, 120, 57, 63, 203, 65, 1, 62, 242, 118, 235, 62, 113, 122, 187, 61, 144, 141, 223, 62, 90, 72, 50, 62, 132, 65, 74, 63, 81, 164, 62, 62, 236, 148, 61, 63, 57, 134, 222, 61, 157, 159, 98, 63, 53, 132, 124, 61, 194, 237, 98, 63, 77, 150, 207, 61, 167, 222, 104, 63, 56, 195, 165, 61, 74, 183, 104, 63, 216, 150, 121, 61, 92, 38, 212, 62, 47, 83, 41, 62, 124, 133, 206, 62, 189, 69, 81, 62, 226, 121, 158, 62, 190, 48, 140, 62, 70, 65, 218, 62, 147, 226, 87, 62, 143, 141, 223, 62, 90, 72, 50, 62, 154, 209, 84, 63, 32, 22, 84, 63, 248, 122, 158, 62, 150, 98, 152, 62, 123, 209, 84, 63, 76, 76, 84, 63, 220, 233, 90, 63, 122, 119, 90, 63, 207, 243, 124, 63, 105, 234, 124, 63, 246, 233, 90, 63, 136, 73, 90, 63, 23, 13, 61, 63, 186, 42, 199, 62, 7, 195, 48, 63, 132, 97, 152, 62, 116, 37, 67, 63, 199, 170, 237, 62, 120, 37, 67, 63, 12, 107, 228, 62, 18, 13, 61, 63, 30, 100, 209, 62, 151, 209, 84, 63, 201, 195, 78, 63, 67, 13, 61, 63, 61, 111, 51, 63, 153, 209, 84, 63, 31, 22, 84, 63, 245, 233, 90, 63, 135, 73, 90, 63, 244, 233, 90, 63, 24, 198, 85, 63, 248, 122, 158, 62, 150, 98, 152, 62, 19, 13, 61, 63, 32, 100, 209, 62, 69, 70, 34, 63, 222, 202, 179, 62, 95, 186, 14, 63, 93, 197, 229, 62, 98, 135, 19, 63, 38, 72, 237, 62, 71, 19, 39, 63, 160, 77, 187, 62, 148, 209, 84, 63, 254, 229, 73, 63, 156, 37, 67, 63, 52, 111, 51, 63, 241, 233, 90, 63, 128, 165, 81, 63, 143, 209, 84, 63, 172, 60, 65, 63, 116, 37, 67, 63, 198, 170, 237, 62, 232, 233, 90, 63, 160, 60, 65, 63, 242, 233, 90, 63, 128, 165, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 64, 12, 67, 60, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 160, 255, 255, 62, 0, 0, 0, 0, 48, 12, 67, 60, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 12, 67, 60, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 50, 12, 67, 60, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 171, 170, 170, 62, 171, 170, 170, 62, 0, 0, 0, 0, 0, 0, 0, 0, 171, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 170, 170, 170, 62, 0, 0, 0, 0, 170, 170, 170, 62, 170, 170, 42, 62, 168, 170, 170, 62, 168, 170, 170, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 63, 207, 243, 124, 63, 0, 0, 0, 63, 0, 0, 128, 63, 207, 243, 124, 63, 207, 243, 124, 63, 244, 5, 125, 63, 244, 5, 125, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 207, 243, 124, 63, 0, 0, 128, 63, 64, 12, 67, 60, 52, 117, 126, 63, 206, 243, 124, 63, 0, 0, 128, 63, 99, 6, 125, 63, 126, 126, 126, 63, 41, 6, 125, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 63, 64, 12, 67, 60, 0, 0, 0, 63, 0, 0, 0, 0, 206, 243, 124, 63, 206, 243, 124, 63, 243, 5, 125, 63, 243, 5, 125, 63, 0, 0, 0, 0, 171, 170, 170, 62, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 170, 170, 170, 62, 0, 0, 128, 63, 0, 0, 0, 0, 172, 170, 170, 62, 171, 170, 42, 63, 0, 0, 0, 0, 0, 0, 0, 63, 171, 170, 170, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 174, 170, 170, 62, 0, 0, 0, 63, 170, 170, 170, 62, 170, 170, 42, 63, 0, 0, 0, 63, 208, 243, 124, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 163, 247, 252, 62, 163, 247, 124, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 208, 243, 124, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 24, 15, 22, 62, 185, 210, 125, 63, 0, 0, 0, 63, 0, 0, 128, 63, 163, 247, 252, 62, 163, 247, 124, 63, 0, 0, 0, 0, 0, 0, 0, 0, 24, 15, 22, 62, 185, 210, 125, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 3, 246, 21, 62, 105, 235, 9, 60, 0, 0, 0, 63, 32, 12, 67, 60, 0, 0, 128, 62, 32, 12, 195, 59, 207, 243, 124, 63, 207, 243, 124, 63, 64, 12, 67, 60, 64, 12, 67, 60, 207, 243, 124, 63, 0, 0, 128, 63, 49, 12, 67, 60, 0, 0, 128, 63, 64, 12, 67, 60, 0, 0, 0, 0, 55, 12, 67, 60, 55, 12, 67, 60, 207, 243, 124, 63, 207, 243, 124, 63, 207, 243, 124, 63, 0, 0, 0, 0, 64, 12, 67, 60, 0, 0, 0, 0, 219, 243, 124, 63, 117, 234, 124, 63, 172, 170, 170, 62, 171, 170, 42, 63, 0, 0, 0, 0, 0, 0, 0, 63, 171, 170, 170, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 174, 170, 170, 62, 0, 0, 0, 63, 170, 170, 170, 62, 170, 170, 42, 63, 125, 246, 255, 62, 208, 243, 124, 63, 0, 0, 0, 0, 49, 12, 67, 60, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 84, 103, 62, 60, 10, 131, 62, 60, 10, 131, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 64, 12, 67, 60, 64, 12, 67, 60, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 64, 12, 67, 60, 0, 0, 0, 63, 0, 0, 0, 0, 50, 12, 67, 60, 50, 12, 67, 60, 13, 131, 62, 60, 13, 131, 62, 60, 208, 243, 124, 63, 208, 243, 124, 63, 192, 11, 67, 60, 192, 11, 67, 60, 117, 234, 124, 63, 137, 246, 127, 63, 208, 243, 124, 63, 208, 243, 124, 63, 117, 234, 124, 63, 137, 246, 127, 63, 219, 243, 124, 63, 166, 246, 127, 63, 58, 12, 67, 60, 227, 255, 127, 63, 117, 234, 124, 63, 137, 246, 127, 63, 64, 9, 67, 60, 192, 98, 69, 60, 64, 12, 67, 60, 0, 0, 0, 0, 76, 103, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 12, 67, 60, 0, 0, 0, 0, 48, 12, 67, 60, 48, 12, 67, 60, 207, 243, 124, 63, 207, 243, 124, 63, 207, 243, 124, 63, 0, 0, 0, 0, 219, 243, 124, 63, 117, 234, 124, 63, 169, 170, 170, 62, 169, 170, 170, 62, 0, 0, 0, 0, 0, 0, 0, 0, 169, 170, 170, 62, 9, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 170, 170, 170, 62, 0, 0, 0, 0, 170, 170, 170, 62, 170, 170, 42, 62, 164, 170, 170, 62, 164, 170, 42, 62, 161, 170, 170, 62, 161, 170, 170, 62, 0, 0, 128, 63, 0, 0, 128, 63, 254, 255, 255, 62, 254, 255, 255, 62, 127, 130, 90, 63, 81, 216, 125, 63, 0, 0, 0, 63, 207, 243, 124, 63, 0, 0, 64, 63, 232, 121, 126, 63, 0, 0, 0, 63, 43, 12, 67, 60, 10, 0, 0, 63, 10, 0, 0, 63, 0, 0, 128, 63, 0, 0, 128, 63, 46, 132, 1, 63, 64, 23, 66, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 43, 12, 67, 60, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 58, 124, 90, 63, 192, 81, 11, 60, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 58, 124, 90, 63, 192, 81, 11, 60, 46, 132, 1, 63, 61, 23, 66, 60, 0, 0, 128, 63, 0, 0, 128, 63, 58, 124, 90, 63, 192, 81, 11, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 171, 170, 42, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 170, 170, 42, 63, 0, 0, 128, 63, 0, 0, 0, 0, 171, 170, 170, 62, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 170, 170, 170, 62, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 128, 63, 49, 12, 67, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 49, 12, 67, 60, 0, 0, 128, 63, 207, 243, 124, 63, 0, 0, 128, 63, 207, 243, 124, 63, 207, 243, 124, 63, 244, 5, 125, 63, 244, 5, 125, 63, 99, 6, 125, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 63, 174, 170, 170, 62, 174, 170, 170, 62, 0, 0, 0, 0, 0, 0, 0, 0, 169, 170, 42, 62, 169, 170, 170, 62, 172, 170, 42, 62, 172, 170, 170, 62, 0, 0, 0, 0, 171, 170, 170, 62, 0, 0, 0, 63, 164, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 0, 166, 170, 170, 62, 166, 170, 170, 62, 0, 0, 0, 0, 48, 12, 67, 60, 0, 0, 0, 0, 207, 243, 124, 63, 207, 243, 124, 63, 207, 243, 124, 63, 64, 12, 67, 60, 64, 12, 67, 60, 65, 192, 71, 60, 249, 5, 67, 60, 0, 0, 128, 63, 233, 240, 121, 63, 0, 0, 128, 63, 0, 12, 67, 60, 65, 192, 71, 60, 249, 5, 67, 60, 0, 0, 128, 63, 207, 243, 124, 63, 0, 0, 128, 63, 233, 240, 121, 63, 207, 243, 124, 63, 207, 243, 124, 63, 0, 0, 128, 63, 207, 243, 124, 63, 65, 192, 71, 60, 249, 5, 67, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 81, 235, 9, 60, 91, 130, 90, 63, 49, 12, 67, 60, 0, 0, 0, 63, 57, 12, 195, 59, 254, 255, 63, 63, 0, 0, 0, 63, 0, 0, 0, 63, 72, 211, 125, 63, 126, 132, 90, 63, 232, 121, 126, 63, 0, 0, 64, 63, 207, 243, 124, 63, 0, 0, 0, 63, 171, 170, 170, 62, 171, 170, 42, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 170, 170, 42, 63, 0, 0, 0, 0, 171, 170, 42, 63, 0, 0, 0, 0, 0, 0, 128, 63, 117, 234, 124, 63, 220, 243, 124, 63, 0, 0, 0, 0, 49, 12, 67, 60, 0, 0, 0, 0, 207, 243, 124, 63, 0, 0, 0, 0, 49, 12, 67, 60, 0, 0, 0, 0, 61, 103, 62, 60, 0, 0, 0, 0, 171, 178, 64, 60, 64, 12, 67, 60, 64, 12, 67, 60, 0, 0, 0, 0, 49, 12, 67, 60, 117, 234, 124, 63, 220, 243, 124, 63, 0, 0, 0, 0, 0, 0, 0, 0, 43, 192, 71, 60, 249, 5, 67, 60, 0, 0, 128, 63, 4, 241, 121, 63, 0, 0, 128, 63, 64, 12, 67, 60, 43, 192, 71, 60, 249, 5, 67, 60, 0, 0, 128, 63, 207, 243, 124, 63, 0, 0, 128, 63, 4, 241, 121, 63, 0, 0, 128, 63, 207, 243, 124, 63, 43, 192, 71, 60, 249, 5, 67, 60, 9, 244, 124, 63, 207, 243, 124, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 128, 63, 49, 12, 67, 60, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 131, 62, 60, 0, 131, 62, 60, 128, 192, 64, 60, 128, 192, 64, 60, 64, 12, 67, 60, 64, 12, 67, 60, 128, 178, 64, 60, 0, 144, 20, 57, 64, 103, 62, 60, 0, 0, 0, 0, 193, 192, 64, 60, 193, 192, 64, 60, 64, 12, 67, 60, 0, 104, 150, 57, 47, 12, 67, 60, 47, 12, 67, 60, 12, 131, 62, 60, 12, 131, 62, 60, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 208, 243, 124, 63, 1, 0, 0, 63, 207, 243, 124, 63, 169, 243, 103, 54, 170, 170, 42, 63, 170, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 171, 170, 170, 62, 0, 0, 128, 63, 170, 170, 170, 62, 0, 0, 128, 63, 0, 0, 0, 0, 171, 170, 170, 62, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 170, 170, 170, 62, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 24, 12, 195, 59, 224, 255, 127, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 48, 12, 67, 60, 0, 0, 0, 63, 24, 12, 195, 59, 224, 255, 127, 62, 4, 0, 0, 63, 4, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 117, 197, 8, 60, 138, 218, 21, 62, 48, 12, 195, 59, 0, 0, 128, 62, 48, 12, 67, 60, 0, 0, 0, 63, 117, 197, 8, 60, 138, 218, 21, 62, 117, 197, 8, 60, 138, 218, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 48, 12, 195, 59, 0, 0, 128, 62, 231, 121, 126, 63, 9, 0, 128, 62, 206, 243, 124, 63, 32, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 216, 125, 63, 56, 246, 21, 62, 206, 243, 124, 63, 32, 0, 0, 63, 231, 121, 126, 63, 254, 255, 127, 62, 0, 0, 128, 63, 0, 0, 0, 0, 82, 216, 125, 63, 56, 246, 21, 62, 206, 243, 124, 63, 32, 0, 0, 63, 3, 0, 0, 63, 3, 0, 0, 63, 9, 0, 0, 63, 190, 170, 42, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 190, 170, 42, 63, 190, 170, 42, 63, 191, 170, 42, 63, 191, 170, 42, 63, 86, 85, 85, 63, 172, 170, 42, 63, 85, 85, 85, 63, 170, 170, 42, 63, 0, 0, 128, 63, 170, 170, 42, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 122, 130, 90, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 252, 86, 60, 63, 173, 170, 42, 62, 122, 130, 90, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 118, 43, 30, 63, 194, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 128, 63, 255, 255, 255, 62, 0, 0, 0, 0, 118, 43, 30, 63, 192, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 62, 0, 0, 0, 0, 3, 87, 60, 63, 128, 170, 42, 62, 122, 130, 90, 63, 0, 0, 0, 0, 26, 246, 21, 62, 0, 0, 0, 0, 124, 213, 32, 59, 0, 0, 0, 0, 26, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 250, 255, 63, 63, 52, 246, 21, 62, 120, 130, 90, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 246, 255, 63, 63, 77, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 120, 130, 90, 63, 0, 0, 0, 0, 252, 255, 63, 63, 52, 246, 21, 62, 122, 130, 90, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 247, 255, 63, 63, 77, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 62, 0, 0, 0, 0, 122, 130, 90, 63, 0, 0, 0, 0, 9, 0, 128, 62, 52, 246, 21, 62, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 18, 0, 128, 62, 77, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 64, 63, 0, 0, 0, 0, 0, 0, 96, 63, 0, 0, 0, 0, 0, 0, 96, 63, 0, 0, 128, 63, 0, 0, 64, 63, 0, 0, 128, 63, 120, 130, 90, 63, 0, 0, 0, 0, 117, 43, 30, 63, 194, 170, 170, 62, 120, 130, 90, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 96, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 96, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 118, 43, 30, 63, 192, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 120, 130, 90, 63, 0, 0, 0, 0, 118, 43, 30, 63, 192, 170, 170, 62, 10, 0, 128, 62, 52, 246, 21, 62, 26, 246, 21, 62, 0, 0, 0, 0, 255, 255, 255, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 7, 0, 128, 62, 45, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 26, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 32, 63, 0, 0, 0, 0, 0, 0, 32, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 128, 63, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 8, 82, 135, 62, 173, 170, 42, 62, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 169, 195, 62, 194, 170, 170, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 20, 169, 195, 62, 194, 170, 170, 62, 0, 0, 64, 63, 0, 0, 0, 0, 0, 0, 64, 63, 0, 0, 128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 230, 168, 195, 62, 128, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 249, 81, 135, 62, 128, 170, 42, 62, 24, 246, 21, 62, 0, 0, 0, 0, 120, 130, 90, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 42, 95, 127, 63, 0, 0, 0, 0, 120, 130, 90, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 252, 255, 63, 63, 52, 246, 21, 62, 122, 130, 90, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 247, 255, 63, 63, 77, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 255, 255, 255, 62, 0, 0, 0, 0, 122, 130, 90, 63, 0, 0, 0, 0, 0, 0, 128, 62, 0, 0, 0, 0, 0, 0, 192, 62, 0, 0, 0, 0, 0, 0, 192, 62, 0, 0, 128, 63, 0, 0, 128, 62, 0, 0, 128, 63, 26, 246, 21, 62, 0, 0, 0, 0, 20, 169, 195, 62, 194, 170, 170, 62, 26, 246, 21, 62, 0, 0, 0, 0, 255, 255, 255, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 26, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 20, 169, 195, 62, 192, 170, 170, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 246, 21, 62, 0, 0, 0, 0, 20, 169, 195, 62, 192, 170, 170, 62, 24, 0, 128, 62, 96, 246, 21, 62, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 29, 0, 128, 62, 109, 246, 21, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 0, 24, 246, 21, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 132, 65, 193, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 166, 197, 69, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 40, 48, 68, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 124, 155, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 228, 145, 169, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 48, 217, 193, 62, 0, 0, 128, 63, 228, 145, 169, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 48, 217, 193, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 140, 166, 209, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 248, 29, 242, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 52, 196, 11, 63, 0, 0, 128, 63, 248, 29, 242, 62, 0, 0, 128, 63, 96, 50, 25, 63, 0, 0, 128, 63, 52, 196, 11, 63, 0, 0, 128, 63, 68, 196, 27, 63, 0, 0, 128, 63, 96, 50, 25, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 156, 237, 27, 63, 0, 0, 128, 63, 68, 196, 27, 63, 0, 0, 128, 63, 164, 10, 29, 63, 0, 0, 128, 63, 156, 237, 27, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 212, 250, 56, 63, 0, 0, 128, 63, 164, 10, 29, 63, 0, 0, 128, 63, 48, 135, 82, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 160, 76, 172, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 192, 162, 215, 62, 0, 0, 128, 63, 160, 76, 172, 62, 0, 0, 128, 63, 88, 131, 3, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 24, 117, 4, 63, 0, 0, 128, 63, 88, 131, 3, 63, 0, 0, 128, 63, 172, 159, 4, 63, 0, 0, 128, 63, 24, 117, 4, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 160, 205, 6, 63, 0, 0, 128, 63, 172, 159, 20, 63, 0, 0, 128, 63, 148, 66, 36, 63, 0, 0, 128, 63, 172, 159, 20, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 248, 211, 49, 63, 0, 0, 128, 63, 148, 66, 36, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 244, 77, 99, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 29, 51, 93, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 29, 51, 93, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 157, 170, 127, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 157, 170, 127, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 204, 92, 30, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 204, 92, 30, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 117, 157, 197, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 243, 201, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 90, 135, 82, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 24, 153, 65, 63, 0, 0, 128, 63, 90, 135, 82, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 161, 213, 10, 63, 0, 0, 128, 63, 24, 153, 65, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 98, 248, 163, 61, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 160, 145, 116, 62, 0, 0, 128, 63, 98, 248, 163, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 160, 145, 116, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 128, 235, 65, 62, 0, 0, 0, 0, 96, 135, 241, 62, 0, 0, 0, 0, 32, 217, 104, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 32, 217, 104, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 182, 241, 144, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 64, 227, 60, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 64, 227, 60, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 28, 102, 152, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 158, 98, 204, 62, 0, 0, 128, 63, 242, 236, 235, 62, 0, 0, 128, 63, 86, 238, 45, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 13, 93, 37, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 93, 16, 169, 62, 0, 0, 128, 63, 13, 93, 37, 62, 0, 0, 128, 63, 100, 103, 193, 62, 0, 0, 128, 63, 93, 16, 169, 62, 0, 0, 128, 63, 176, 133, 233, 62, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 182, 114, 167, 62, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 220, 48, 49, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), +"format": 4119, +"index_count": 1740, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 3, 0, 0, 0, 2, 0, 2, 0, 4, 0, 3, 0, 2, 0, 5, 0, 4, 0, 2, 0, 6, 0, 5, 0, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 8, 0, 13, 0, 9, 0, 14, 0, 15, 0, 16, 0, 17, 0, 14, 0, 16, 0, 18, 0, 19, 0, 20, 0, 19, 0, 21, 0, 20, 0, 22, 0, 23, 0, 24, 0, 24, 0, 23, 0, 25, 0, 26, 0, 27, 0, 28, 0, 21, 0, 19, 0, 29, 0, 11, 0, 30, 0, 31, 0, 30, 0, 32, 0, 31, 0, 33, 0, 11, 0, 31, 0, 31, 0, 32, 0, 34, 0, 34, 0, 32, 0, 35, 0, 30, 0, 36, 0, 32, 0, 37, 0, 11, 0, 33, 0, 38, 0, 11, 0, 39, 0, 11, 0, 37, 0, 39, 0, 39, 0, 32, 0, 38, 0, 40, 0, 32, 0, 39, 0, 32, 0, 36, 0, 41, 0, 41, 0, 36, 0, 42, 0, 43, 0, 11, 0, 44, 0, 44, 0, 45, 0, 46, 0, 11, 0, 38, 0, 44, 0, 38, 0, 45, 0, 44, 0, 47, 0, 19, 0, 48, 0, 49, 0, 50, 0, 47, 0, 50, 0, 19, 0, 47, 0, 51, 0, 52, 0, 53, 0, 46, 0, 45, 0, 54, 0, 55, 0, 56, 0, 57, 0, 46, 0, 54, 0, 58, 0, 50, 0, 36, 0, 59, 0, 36, 0, 19, 0, 60, 0, 59, 0, 36, 0, 60, 0, 60, 0, 19, 0, 61, 0, 19, 0, 50, 0, 62, 0, 50, 0, 59, 0, 62, 0, 62, 0, 61, 0, 19, 0, 50, 0, 63, 0, 36, 0, 36, 0, 30, 0, 64, 0, 30, 0, 27, 0, 65, 0, 66, 0, 67, 0, 65, 0, 68, 0, 30, 0, 69, 0, 30, 0, 65, 0, 69, 0, 65, 0, 67, 0, 69, 0, 69, 0, 67, 0, 70, 0, 70, 0, 67, 0, 71, 0, 65, 0, 27, 0, 72, 0, 72, 0, 27, 0, 73, 0, 29, 0, 19, 0, 67, 0, 73, 0, 27, 0, 26, 0, 29, 0, 67, 0, 66, 0, 64, 0, 30, 0, 74, 0, 74, 0, 30, 0, 75, 0, 67, 0, 64, 0, 76, 0, 64, 0, 74, 0, 76, 0, 77, 0, 67, 0, 76, 0, 78, 0, 79, 0, 80, 0, 81, 0, 82, 0, 83, 0, 79, 0, 84, 0, 80, 0, 85, 0, 86, 0, 87, 0, 88, 0, 15, 0, 89, 0, 86, 0, 90, 0, 91, 0, 9, 0, 87, 0, 91, 0, 91, 0, 90, 0, 92, 0, 87, 0, 86, 0, 91, 0, 93, 0, 94, 0, 95, 0, 94, 0, 96, 0, 95, 0, 97, 0, 98, 0, 99, 0, 100, 0, 101, 0, 102, 0, 98, 0, 96, 0, 99, 0, 95, 0, 96, 0, 98, 0, 103, 0, 104, 0, 105, 0, 106, 0, 107, 0, 108, 0, 104, 0, 109, 0, 105, 0, 96, 0, 94, 0, 110, 0, 111, 0, 112, 0, 113, 0, 112, 0, 114, 0, 113, 0, 114, 0, 107, 0, 115, 0, 113, 0, 114, 0, 115, 0, 115, 0, 107, 0, 116, 0, 117, 0, 96, 0, 112, 0, 118, 0, 107, 0, 119, 0, 117, 0, 112, 0, 120, 0, 121, 0, 114, 0, 112, 0, 122, 0, 123, 0, 124, 0, 125, 0, 123, 0, 122, 0, 94, 0, 125, 0, 126, 0, 125, 0, 122, 0, 126, 0, 126, 0, 127, 0, 94, 0, 125, 0, 94, 0, 128, 0, 107, 0, 123, 0, 129, 0, 123, 0, 125, 0, 129, 0, 130, 0, 104, 0, 131, 0, 107, 0, 129, 0, 130, 0, 129, 0, 104, 0, 130, 0, 132, 0, 107, 0, 133, 0, 107, 0, 130, 0, 133, 0, 134, 0, 123, 0, 135, 0, 123, 0, 136, 0, 135, 0, 136, 0, 94, 0, 137, 0, 135, 0, 136, 0, 137, 0, 138, 0, 137, 0, 94, 0, 139, 0, 140, 0, 141, 0, 142, 0, 143, 0, 144, 0, 140, 0, 123, 0, 141, 0, 136, 0, 123, 0, 140, 0, 145, 0, 94, 0, 146, 0, 147, 0, 114, 0, 148, 0, 145, 0, 146, 0, 149, 0, 150, 0, 151, 0, 152, 0, 153, 0, 114, 0, 154, 0, 151, 0, 155, 0, 152, 0, 156, 0, 146, 0, 151, 0, 146, 0, 155, 0, 157, 0, 155, 0, 151, 0, 158, 0, 157, 0, 155, 0, 158, 0, 158, 0, 151, 0, 159, 0, 151, 0, 146, 0, 160, 0, 146, 0, 157, 0, 160, 0, 160, 0, 159, 0, 151, 0, 161, 0, 162, 0, 150, 0, 154, 0, 114, 0, 163, 0, 162, 0, 151, 0, 150, 0, 164, 0, 162, 0, 161, 0, 165, 0, 162, 0, 164, 0, 114, 0, 165, 0, 166, 0, 165, 0, 164, 0, 166, 0, 166, 0, 167, 0, 114, 0, 168, 0, 169, 0, 170, 0, 171, 0, 168, 0, 170, 0, 170, 0, 172, 0, 171, 0, 173, 0, 172, 0, 170, 0, 170, 0, 174, 0, 173, 0, 175, 0, 176, 0, 177, 0, 178, 0, 175, 0, 177, 0, 177, 0, 179, 0, 178, 0, 180, 0, 181, 0, 182, 0, 177, 0, 183, 0, 184, 0, 185, 0, 186, 0, 187, 0, 187, 0, 188, 0, 185, 0, 189, 0, 190, 0, 191, 0, 191, 0, 192, 0, 189, 0, 193, 0, 192, 0, 191, 0, 191, 0, 194, 0, 193, 0, 190, 0, 195, 0, 191, 0, 196, 0, 197, 0, 198, 0, 197, 0, 199, 0, 198, 0, 200, 0, 197, 0, 201, 0, 201, 0, 197, 0, 202, 0, 203, 0, 204, 0, 205, 0, 205, 0, 204, 0, 206, 0, 207, 0, 203, 0, 205, 0, 208, 0, 207, 0, 205, 0, 205, 0, 209, 0, 208, 0, 210, 0, 211, 0, 212, 0, 213, 0, 210, 0, 214, 0, 214, 0, 215, 0, 213, 0, 210, 0, 212, 0, 214, 0, 211, 0, 216, 0, 212, 0, 217, 0, 203, 0, 216, 0, 212, 0, 216, 0, 218, 0, 214, 0, 212, 0, 219, 0, 219, 0, 215, 0, 214, 0, 212, 0, 218, 0, 219, 0, 216, 0, 203, 0, 218, 0, 220, 0, 221, 0, 222, 0, 222, 0, 223, 0, 220, 0, 224, 0, 225, 0, 223, 0, 223, 0, 222, 0, 224, 0, 226, 0, 227, 0, 228, 0, 227, 0, 229, 0, 228, 0, 230, 0, 227, 0, 231, 0, 232, 0, 233, 0, 234, 0, 235, 0, 236, 0, 237, 0, 237, 0, 238, 0, 235, 0, 239, 0, 240, 0, 241, 0, 240, 0, 242, 0, 241, 0, 243, 0, 244, 0, 245, 0, 245, 0, 246, 0, 243, 0, 247, 0, 248, 0, 249, 0, 248, 0, 250, 0, 249, 0, 251, 0, 247, 0, 249, 0, 249, 0, 250, 0, 251, 0, 252, 0, 253, 0, 254, 0, 253, 0, 255, 0, 254, 0, 0, 1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 1, 7, 1, 9, 1, 8, 1, 10, 1, 7, 1, 11, 1, 12, 1, 13, 1, 14, 1, 15, 1, 16, 1, 12, 1, 16, 1, 13, 1, 12, 1, 17, 1, 13, 1, 18, 1, 18, 1, 19, 1, 17, 1, 13, 1, 20, 1, 18, 1, 13, 1, 16, 1, 20, 1, 16, 1, 21, 1, 22, 1, 22, 1, 21, 1, 23, 1, 24, 1, 16, 1, 22, 1, 25, 1, 24, 1, 22, 1, 26, 1, 27, 1, 28, 1, 29, 1, 30, 1, 31, 1, 32, 1, 33, 1, 34, 1, 35, 1, 36, 1, 37, 1, 38, 1, 39, 1, 40, 1, 41, 1, 38, 1, 42, 1, 43, 1, 44, 1, 45, 1, 44, 1, 46, 1, 45, 1, 47, 1, 44, 1, 48, 1, 49, 1, 44, 1, 50, 1, 51, 1, 52, 1, 53, 1, 52, 1, 54, 1, 53, 1, 55, 1, 51, 1, 53, 1, 53, 1, 54, 1, 55, 1, 56, 1, 57, 1, 58, 1, 59, 1, 60, 1, 61, 1, 61, 1, 62, 1, 59, 1, 63, 1, 64, 1, 65, 1, 66, 1, 67, 1, 68, 1, 69, 1, 70, 1, 71, 1, 71, 1, 72, 1, 69, 1, 73, 1, 74, 1, 75, 1, 75, 1, 76, 1, 73, 1, 77, 1, 78, 1, 76, 1, 76, 1, 75, 1, 77, 1, 79, 1, 80, 1, 81, 1, 81, 1, 82, 1, 79, 1, 83, 1, 81, 1, 80, 1, 80, 1, 84, 1, 83, 1, 85, 1, 86, 1, 87, 1, 87, 1, 88, 1, 85, 1, 87, 1, 89, 1, 90, 1, 87, 1, 86, 1, 89, 1, 91, 1, 88, 1, 87, 1, 91, 1, 87, 1, 90, 1, 92, 1, 91, 1, 93, 1, 93, 1, 94, 1, 92, 1, 91, 1, 90, 1, 93, 1, 95, 1, 96, 1, 97, 1, 97, 1, 94, 1, 95, 1, 96, 1, 88, 1, 97, 1, 92, 1, 94, 1, 97, 1, 97, 1, 91, 1, 92, 1, 97, 1, 88, 1, 91, 1, 98, 1, 99, 1, 100, 1, 101, 1, 99, 1, 102, 1, 103, 1, 104, 1, 99, 1, 103, 1, 99, 1, 105, 1, 106, 1, 107, 1, 108, 1, 106, 1, 108, 1, 109, 1, 110, 1, 111, 1, 112, 1, 113, 1, 114, 1, 115, 1, 116, 1, 117, 1, 118, 1, 119, 1, 120, 1, 121, 1, 120, 1, 122, 1, 121, 1, 123, 1, 119, 1, 121, 1, 121, 1, 122, 1, 123, 1, 122, 1, 120, 1, 124, 1, 124, 1, 120, 1, 125, 1, 126, 1, 127, 1, 125, 1, 125, 1, 120, 1, 126, 1, 127, 1, 124, 1, 125, 1, 128, 1, 129, 1, 130, 1, 131, 1, 132, 1, 129, 1, 131, 1, 129, 1, 128, 1, 133, 1, 134, 1, 135, 1, 136, 1, 137, 1, 138, 1, 139, 1, 140, 1, 141, 1, 142, 1, 138, 1, 136, 1, 142, 1, 137, 1, 138, 1, 143, 1, 144, 1, 145, 1, 146, 1, 147, 1, 148, 1, 149, 1, 150, 1, 151, 1, 152, 1, 153, 1, 154, 1, 154, 1, 155, 1, 152, 1, 153, 1, 156, 1, 154, 1, 157, 1, 155, 1, 154, 1, 158, 1, 157, 1, 154, 1, 159, 1, 158, 1, 154, 1, 154, 1, 156, 1, 159, 1, 160, 1, 161, 1, 162, 1, 163, 1, 160, 1, 164, 1, 164, 1, 156, 1, 163, 1, 160, 1, 162, 1, 164, 1, 161, 1, 165, 1, 162, 1, 161, 1, 155, 1, 165, 1, 166, 1, 167, 1, 168, 1, 168, 1, 156, 1, 166, 1, 169, 1, 163, 1, 168, 1, 168, 1, 167, 1, 169, 1, 163, 1, 156, 1, 168, 1, 170, 1, 171, 1, 172, 1, 173, 1, 174, 1, 171, 1, 173, 1, 171, 1, 170, 1, 175, 1, 176, 1, 177, 1, 177, 1, 178, 1, 175, 1, 179, 1, 177, 1, 176, 1, 176, 1, 180, 1, 179, 1, 181, 1, 182, 1, 183, 1, 184, 1, 185, 1, 186, 1, 187, 1, 188, 1, 189, 1, 190, 1, 191, 1, 192, 1, 193, 1, 194, 1, 195, 1, 191, 1, 187, 1, 192, 1, 196, 1, 197, 1, 198, 1, 198, 1, 199, 1, 196, 1, 200, 1, 201, 1, 202, 1, 201, 1, 203, 1, 202, 1, 204, 1, 205, 1, 206, 1, 206, 1, 207, 1, 204, 1, 207, 1, 188, 1, 208, 1, 209, 1, 210, 1, 211, 1, 209, 1, 211, 1, 212, 1, 213, 1, 211, 1, 214, 1, 215, 1, 211, 1, 216, 1, 217, 1, 218, 1, 219, 1, 219, 1, 220, 1, 217, 1, 221, 1, 222, 1, 223, 1, 224, 1, 225, 1, 226, 1, 226, 1, 227, 1, 224, 1, 226, 1, 228, 1, 227, 1, 218, 1, 229, 1, 230, 1, 230, 1, 219, 1, 218, 1, 231, 1, 221, 1, 223, 1, 232, 1, 233, 1, 234, 1, 235, 1, 232, 1, 234, 1, 234, 1, 236, 1, 235, 1, 237, 1, 231, 1, 223, 1, 238, 1, 239, 1, 240, 1, 240, 1, 241, 1, 238, 1, 242, 1, 243, 1, 244, 1, 244, 1, 245, 1, 242, 1, 246, 1, 247, 1, 248, 1, 248, 1, 249, 1, 246, 1, 250, 1, 251, 1, 252, 1, 252, 1, 253, 1, 250, 1, 254, 1, 255, 1, 0, 2, 0, 2, 1, 2, 254, 1, 2, 2, 3, 2, 4, 2, 4, 2, 5, 2, 2, 2, 6, 2, 7, 2, 8, 2, 8, 2, 9, 2, 6, 2, 10, 2, 11, 2, 12, 2, 12, 2, 13, 2, 10, 2, 14, 2, 8, 2, 7, 2, 15, 2, 16, 2, 17, 2, 17, 2, 18, 2, 15, 2, 19, 2, 20, 2, 21, 2, 21, 2, 22, 2, 19, 2, 23, 2, 14, 2, 7, 2, 24, 2, 25, 2, 26, 2, 27, 2, 28, 2, 29, 2, 30, 2, 31, 2, 32, 2, 32, 2, 33, 2, 30, 2, 34, 2, 35, 2, 36, 2, 36, 2, 37, 2, 34, 2, 38, 2, 39, 2, 40, 2, 40, 2, 41, 2, 38, 2, 42, 2, 43, 2, 44, 2, 45, 2, 46, 2, 47, 2, 47, 2, 48, 2, 45, 2, 49, 2, 50, 2, 51, 2, 39, 2, 52, 2, 53, 2, 53, 2, 40, 2, 39, 2, 54, 2, 55, 2, 56, 2, 57, 2, 58, 2, 59, 2, 60, 2, 57, 2, 59, 2, 59, 2, 61, 2, 60, 2, 62, 2, 63, 2, 64, 2, 65, 2, 66, 2, 67, 2, 67, 2, 68, 2, 65, 2, 69, 2, 70, 2, 71, 2, 71, 2, 72, 2, 69, 2, 73, 2, 74, 2, 75, 2, 75, 2, 76, 2, 73, 2, 77, 2, 78, 2, 79, 2, 79, 2, 80, 2, 77, 2, 81, 2, 75, 2, 74, 2, 82, 2, 83, 2, 84, 2, 84, 2, 85, 2, 82, 2, 78, 2, 86, 2, 87, 2, 87, 2, 79, 2, 78, 2, 88, 2, 89, 2, 90, 2, 91, 2, 92, 2, 93, 2, 94, 2, 95, 2, 96, 2, 97, 2, 98, 2, 99, 2, 99, 2, 100, 2, 97, 2, 101, 2, 102, 2, 103, 2, 103, 2, 104, 2, 101, 2, 105, 2, 106, 2, 107, 2, 107, 2, 108, 2, 105, 2, 109, 2, 110, 2, 111, 2, 111, 2, 112, 2, 109, 2, 113, 2, 114, 2, 115, 2, 115, 2, 116, 2, 113, 2, 117, 2, 118, 2, 119, 2, 119, 2, 120, 2, 117, 2, 121, 2, 122, 2, 123, 2, 124, 2, 125, 2, 126, 2, 127, 2, 128, 2, 129, 2, 129, 2, 130, 2, 127, 2, 131, 2, 132, 2, 133, 2, 133, 2, 134, 2, 131, 2, 135, 2, 136, 2, 137, 2, 137, 2, 138, 2, 135, 2, 139, 2, 140, 2, 141, 2, 141, 2, 142, 2, 139, 2, 143, 2, 144, 2, 145, 2, 145, 2, 146, 2, 143, 2, 147, 2, 148, 2, 149, 2, 150, 2, 151, 2, 147, 2, 147, 2, 149, 2, 150, 2, 152, 2, 153, 2, 154, 2, 154, 2, 155, 2, 152, 2, 156, 2, 157, 2, 158, 2, 158, 2, 159, 2, 156, 2, 160, 2, 161, 2, 162, 2, 163, 2, 164, 2, 165, 2, 165, 2, 166, 2, 163, 2, 167, 2, 168, 2, 169, 2, 170, 2, 171, 2, 172, 2, 173, 2, 174, 2, 175, 2, 176, 2, 177, 2, 173, 2, 173, 2, 178, 2, 176, 2, 173, 2, 175, 2, 178, 2, 179, 2, 180, 2, 181, 2, 181, 2, 182, 2, 179, 2, 183, 2, 184, 2, 185, 2, 185, 2, 186, 2, 183, 2, 187, 2, 188, 2, 189, 2, 190, 2, 191, 2, 187, 2, 192, 2, 193, 2, 194, 2, 187, 2, 189, 2, 195, 2, 196, 2, 197, 2, 198, 2, 198, 2, 199, 2, 196, 2, 200, 2, 201, 2, 202, 2, 203, 2, 204, 2, 200, 2, 200, 2, 205, 2, 203, 2, 206, 2, 207, 2, 208, 2, 200, 2, 209, 2, 210, 2, 211, 2, 212, 2, 213, 2, 214, 2, 215, 2, 216, 2, 217, 2, 218, 2, 219, 2, 220, 2, 221, 2, 200, 2, 222, 2, 220, 2, 200, 2, 200, 2, 202, 2, 222, 2, 223, 2, 224, 2, 225, 2, 225, 2, 226, 2, 223, 2, 227, 2, 228, 2, 229, 2, 229, 2, 230, 2, 227, 2, 231, 2, 232, 2, 233, 2, 234, 2, 235, 2, 236, 2, 231, 2, 237, 2, 238, 2, 231, 2, 239, 2, 237, 2, 240, 2, 241, 2, 242, 2, 243, 2, 244, 2, 245, 2, 245, 2, 246, 2, 243, 2, 247, 2, 246, 2, 245, 2, 248, 2, 249, 2, 250, 2, 251, 2, 252, 2, 231, 2, 231, 2, 233, 2, 251, 2, 253, 2, 254, 2, 255, 2, 255, 2, 0, 3, 253, 2, 1, 3, 2, 3, 3, 3, 4, 3, 5, 3, 1, 3, 1, 3, 3, 3, 4, 3, 6, 3, 7, 3, 8, 3, 8, 3, 9, 3, 6, 3, 10, 3, 11, 3, 12, 3, 12, 3, 13, 3, 10, 3, 14, 3, 15, 3, 16, 3, 17, 3, 18, 3, 19, 3, 20, 3, 21, 3, 22, 3, 23, 3, 24, 3, 25, 3, 26, 3, 27, 3, 23, 3, 28, 3, 29, 3, 30, 3, 30, 3, 31, 3, 28, 3, 32, 3, 33, 3, 34, 3, 34, 3, 35, 3, 32, 3, 36, 3, 37, 3, 38, 3, 38, 3, 39, 3, 36, 3, 40, 3, 41, 3, 42, 3, 43, 3, 44, 3, 45, 3, 46, 3, 47, 3, 48, 3, 49, 3, 50, 3, 51, 3, 52, 3, 53, 3, 54, 3, 54, 3, 55, 3, 52, 3, 56, 3, 57, 3, 58, 3, 58, 3, 59, 3, 56, 3, 60, 3, 61, 3, 62, 3, 63, 3, 64, 3, 65, 3, 66, 3, 67, 3, 68, 3, 69, 3, 70, 3, 71, 3, 72, 3, 73, 3, 74, 3, 74, 3, 75, 3, 72, 3, 76, 3, 77, 3, 78, 3, 79, 3, 80, 3, 76, 3, 81, 3, 82, 3, 83, 3, 84, 3, 85, 3, 86, 3, 86, 3, 87, 3, 84, 3, 88, 3, 89, 3, 90, 3, 91, 3, 92, 3, 93, 3, 94, 3, 95, 3, 96, 3, 97, 3, 98, 3, 94, 3, 99, 3, 100, 3, 101, 3, 102, 3, 103, 3, 104, 3, 105, 3, 106, 3, 107, 3, 108, 3, 109, 3, 110, 3, 111, 3, 112, 3, 108, 3, 108, 3, 113, 3, 111, 3, 108, 3, 110, 3, 113, 3, 114, 3, 115, 3, 116, 3, 116, 3, 117, 3, 114, 3, 118, 3, 119, 3, 120, 3, 121, 3, 122, 3, 123, 3, 124, 3, 125, 3, 126, 3, 126, 3, 127, 3, 124, 3, 119, 3, 128, 3, 120, 3, 129, 3, 130, 3, 131, 3, 132, 3, 133, 3, 134, 3, 135, 3, 136, 3, 137, 3, 138, 3, 139, 3, 140, 3, 141, 3, 142, 3, 143, 3, 144, 3, 141, 3, 143, 3, 145, 3, 144, 3, 143, 3, 143, 3, 146, 3, 145, 3, 147, 3, 148, 3, 149, 3, 150, 3, 151, 3, 152, 3, 153, 3, 154, 3, 150, 3, 150, 3, 152, 3, 153, 3, 155, 3, 156, 3, 157, 3, 157, 3, 158, 3, 155, 3, 159, 3, 160, 3, 161, 3, 162, 3, 163, 3, 164, 3, 165, 3, 166, 3, 167, 3, 168, 3, 169, 3, 170, 3, 165, 3, 167, 3, 171, 3, 172, 3, 173, 3, 174, 3, 175, 3, 176, 3, 177, 3, 178, 3, 179, 3, 180, 3, 181, 3, 182, 3, 178, 3, 178, 3, 183, 3, 181, 3, 184, 3, 183, 3, 178, 3, 185, 3, 184, 3, 178, 3, 178, 3, 180, 3, 185, 3, 186, 3, 187, 3, 188, 3, 188, 3, 189, 3, 186, 3, 190, 3, 191, 3, 192, 3, 193, 3, 194, 3, 195, 3, 196, 3, 197, 3, 198, 3, 199, 3, 200, 3, 201, 3, 202, 3, 203, 3, 204, 3, 201, 3, 205, 3, 206, 3, 207, 3, 205, 3, 201, 3, 201, 3, 208, 3, 207, 3, 209, 3, 210, 3, 211, 3, 211, 3, 212, 3, 209, 3, 213, 3, 214, 3, 215, 3, 216, 3, 217, 3, 213, 3, 213, 3, 215, 3, 216, 3, 218, 3, 219, 3, 220, 3, 220, 3, 221, 3, 218, 3, 222, 3, 223, 3, 224, 3, 224, 3, 225, 3, 222, 3, 226, 3, 227, 3, 228, 3, 229, 3, 230, 3, 231, 3, 231, 3, 232, 3, 229, 3, 233, 3, 234, 3, 235, 3, 236, 3, 237, 3, 238, 3), +"primitive": 3, +"vertex_count": 1007, +"vertex_data": PackedByteArray(0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 17, 234, 75, 65, 0, 0, 0, 0, 206, 104, 77, 65, 0, 128, 255, 255, 255, 255, 255, 255, 245, 92, 101, 193, 0, 0, 0, 0, 222, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 3, 178, 76, 65, 0, 0, 0, 0, 8, 178, 76, 65, 0, 128, 255, 255, 255, 255, 255, 255, 55, 144, 121, 65, 0, 0, 0, 0, 58, 144, 121, 65, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 26, 62, 129, 65, 0, 0, 0, 0, 81, 169, 129, 65, 0, 128, 255, 255, 255, 255, 255, 255, 225, 165, 94, 193, 0, 0, 0, 0, 226, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 254, 255, 163, 193, 0, 0, 0, 0, 85, 12, 160, 193, 0, 128, 255, 255, 255, 255, 255, 255, 1, 0, 164, 193, 0, 0, 0, 0, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 226, 165, 110, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 238, 142, 117, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 94, 99, 73, 65, 0, 0, 0, 0, 1, 184, 79, 65, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 24, 193, 0, 0, 0, 0, 1, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 17, 234, 75, 65, 0, 0, 0, 0, 206, 104, 77, 65, 0, 128, 255, 255, 255, 255, 255, 255, 245, 92, 101, 193, 0, 0, 0, 0, 222, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 26, 62, 129, 65, 0, 0, 0, 0, 81, 169, 129, 65, 0, 128, 255, 255, 255, 255, 248, 255, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 0, 128, 255, 255, 255, 255, 254, 255, 248, 125, 131, 65, 0, 0, 0, 0, 60, 31, 132, 65, 0, 128, 255, 255, 255, 255, 251, 255, 68, 245, 130, 65, 0, 0, 0, 0, 54, 156, 132, 65, 0, 128, 255, 255, 255, 255, 255, 255, 93, 96, 125, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 254, 255, 163, 193, 0, 0, 0, 0, 85, 12, 160, 193, 0, 128, 255, 255, 255, 255, 255, 255, 238, 142, 117, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 150, 183, 110, 193, 0, 0, 0, 0, 227, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 0, 0, 252, 255, 163, 65, 0, 128, 255, 255, 255, 255, 255, 255, 176, 172, 113, 192, 0, 0, 0, 0, 166, 48, 134, 65, 0, 128, 255, 255, 255, 255, 255, 255, 144, 3, 7, 193, 0, 0, 0, 0, 212, 86, 47, 65, 0, 128, 255, 255, 255, 255, 255, 255, 128, 97, 19, 63, 0, 0, 0, 0, 80, 228, 94, 65, 0, 128, 255, 255, 255, 255, 254, 255, 176, 86, 138, 192, 0, 0, 0, 0, 44, 252, 126, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 178, 35, 191, 0, 0, 0, 0, 68, 123, 88, 65, 0, 128, 255, 255, 255, 255, 255, 255, 1, 0, 24, 193, 0, 0, 0, 0, 0, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 144, 213, 20, 63, 0, 0, 0, 0, 32, 213, 94, 65, 0, 128, 255, 255, 255, 255, 253, 255, 64, 139, 25, 192, 0, 0, 0, 0, 213, 86, 47, 65, 0, 128, 255, 255, 255, 255, 255, 255, 64, 42, 13, 61, 0, 0, 0, 0, 4, 112, 81, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 178, 35, 191, 0, 0, 0, 0, 68, 123, 88, 65, 0, 128, 255, 255, 255, 255, 255, 255, 146, 3, 7, 193, 0, 0, 0, 0, 212, 86, 31, 65, 0, 128, 255, 255, 255, 255, 255, 255, 112, 146, 153, 192, 0, 0, 0, 0, 213, 86, 31, 65, 0, 128, 255, 255, 255, 255, 255, 255, 86, 105, 125, 65, 0, 0, 0, 0, 102, 127, 136, 65, 0, 128, 255, 255, 255, 255, 255, 255, 211, 44, 123, 65, 0, 0, 0, 0, 22, 133, 137, 65, 0, 128, 255, 255, 255, 255, 255, 255, 222, 248, 241, 64, 0, 0, 0, 0, 214, 86, 47, 65, 0, 128, 255, 255, 255, 255, 254, 255, 248, 207, 112, 65, 0, 0, 0, 0, 36, 218, 131, 65, 0, 128, 255, 255, 255, 255, 255, 255, 218, 251, 66, 65, 0, 0, 0, 0, 208, 146, 85, 65, 0, 128, 255, 255, 255, 255, 248, 255, 94, 99, 73, 65, 0, 0, 0, 0, 1, 184, 79, 65, 0, 128, 255, 255, 0, 0, 244, 255, 250, 171, 88, 65, 0, 0, 0, 0, 36, 76, 109, 65, 0, 128, 255, 255, 255, 255, 237, 255, 220, 248, 241, 64, 0, 0, 0, 0, 216, 86, 31, 65, 0, 128, 255, 255, 255, 255, 252, 255, 68, 245, 130, 65, 0, 0, 0, 0, 54, 156, 132, 65, 0, 128, 255, 255, 0, 0, 254, 255, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 0, 128, 255, 255, 0, 0, 254, 255, 119, 95, 128, 65, 0, 0, 0, 0, 56, 249, 134, 65, 0, 128, 255, 255, 0, 0, 254, 255, 220, 248, 241, 64, 0, 0, 0, 0, 216, 86, 31, 65, 0, 128, 255, 255, 255, 255, 253, 255, 119, 95, 128, 65, 0, 0, 0, 0, 56, 249, 134, 65, 0, 128, 255, 255, 255, 255, 253, 255, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 0, 128, 255, 255, 255, 255, 253, 255, 86, 105, 125, 65, 0, 0, 0, 0, 102, 127, 136, 65, 0, 128, 255, 255, 255, 255, 253, 255, 250, 171, 88, 65, 0, 0, 0, 0, 36, 76, 109, 65, 0, 128, 255, 255, 255, 255, 253, 255, 252, 115, 14, 192, 0, 0, 0, 0, 97, 76, 237, 64, 0, 128, 255, 255, 255, 255, 255, 255, 126, 32, 192, 192, 0, 0, 0, 0, 18, 119, 117, 64, 0, 128, 255, 255, 255, 255, 255, 255, 192, 29, 170, 192, 0, 0, 0, 0, 118, 2, 71, 64, 0, 128, 255, 255, 255, 255, 255, 255, 248, 220, 196, 191, 0, 0, 0, 0, 19, 18, 214, 64, 0, 128, 255, 255, 255, 255, 255, 255, 112, 146, 153, 192, 0, 0, 0, 0, 213, 86, 31, 65, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 40, 193, 0, 0, 0, 0, 2, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 139, 159, 149, 193, 0, 0, 0, 0, 226, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 112, 213, 118, 193, 0, 0, 0, 0, 230, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 40, 193, 0, 0, 0, 0, 0, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 31, 199, 128, 193, 0, 0, 0, 0, 134, 119, 254, 64, 0, 128, 255, 255, 255, 255, 255, 255, 178, 124, 135, 193, 0, 0, 0, 0, 50, 9, 229, 64, 0, 128, 255, 255, 255, 255, 255, 255, 3, 252, 129, 193, 0, 0, 0, 0, 228, 206, 205, 64, 0, 128, 255, 255, 255, 255, 255, 255, 84, 192, 123, 193, 0, 0, 0, 0, 212, 97, 221, 64, 0, 128, 255, 255, 255, 255, 255, 255, 138, 159, 149, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 135, 20, 130, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 38, 134, 82, 193, 0, 0, 0, 0, 6, 205, 43, 65, 0, 128, 255, 255, 255, 255, 255, 255, 31, 199, 128, 193, 0, 0, 0, 0, 134, 119, 254, 64, 0, 128, 255, 255, 255, 255, 255, 255, 198, 132, 71, 193, 0, 0, 0, 0, 224, 47, 32, 65, 0, 128, 255, 255, 0, 0, 245, 255, 84, 192, 123, 193, 0, 0, 0, 0, 212, 97, 221, 64, 0, 128, 255, 255, 255, 255, 255, 255, 232, 142, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 0, 0, 253, 255, 1, 0, 164, 193, 0, 0, 0, 0, 0, 0, 164, 193, 0, 128, 255, 255, 0, 0, 249, 255, 96, 125, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 0, 0, 253, 255, 70, 72, 93, 193, 0, 0, 0, 0, 228, 165, 94, 193, 0, 128, 255, 255, 255, 255, 249, 255, 5, 0, 164, 65, 0, 0, 0, 0, 52, 12, 160, 65, 0, 128, 255, 255, 0, 0, 254, 255, 244, 92, 93, 193, 0, 0, 0, 0, 231, 165, 94, 193, 0, 128, 255, 255, 255, 255, 249, 255, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 0, 128, 255, 255, 0, 0, 249, 255, 244, 92, 93, 193, 0, 0, 0, 0, 231, 165, 94, 193, 0, 128, 255, 255, 0, 0, 254, 255, 5, 0, 164, 65, 0, 0, 0, 0, 52, 12, 160, 65, 0, 128, 255, 255, 255, 255, 255, 255, 225, 165, 94, 193, 0, 0, 0, 0, 226, 165, 94, 193, 0, 128, 255, 255, 0, 0, 254, 255, 226, 165, 110, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 232, 142, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 252, 202, 78, 65, 0, 0, 0, 0, 36, 199, 74, 65, 0, 128, 255, 255, 255, 255, 255, 255, 55, 144, 121, 65, 0, 0, 0, 0, 58, 144, 121, 65, 0, 128, 255, 255, 255, 255, 254, 255, 39, 228, 82, 65, 0, 0, 0, 0, 249, 235, 66, 193, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 24, 65, 0, 0, 0, 0, 252, 255, 255, 192, 0, 128, 255, 255, 255, 255, 255, 255, 220, 251, 66, 65, 0, 0, 0, 0, 142, 82, 84, 193, 0, 128, 255, 255, 0, 0, 251, 255, 224, 248, 241, 64, 0, 0, 0, 0, 90, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 192, 175, 121, 65, 0, 0, 0, 0, 2, 30, 130, 193, 0, 128, 255, 255, 255, 255, 254, 255, 252, 202, 78, 65, 0, 0, 0, 0, 62, 30, 95, 193, 0, 128, 255, 255, 255, 255, 254, 255, 1, 143, 116, 65, 0, 0, 0, 0, 184, 49, 130, 193, 0, 128, 255, 255, 255, 255, 254, 255, 198, 205, 131, 65, 0, 0, 0, 0, 107, 233, 137, 193, 0, 128, 255, 255, 255, 255, 254, 255, 0, 0, 164, 65, 0, 0, 0, 0, 254, 255, 163, 193, 0, 128, 255, 255, 255, 255, 254, 255, 78, 200, 133, 65, 0, 0, 0, 0, 53, 218, 137, 193, 0, 128, 255, 255, 255, 255, 254, 255, 87, 241, 133, 65, 0, 0, 0, 0, 14, 216, 129, 193, 0, 128, 255, 255, 255, 255, 255, 255, 29, 134, 93, 65, 0, 0, 0, 0, 26, 1, 79, 193, 0, 128, 255, 255, 255, 255, 255, 255, 192, 175, 121, 65, 0, 0, 0, 0, 2, 30, 130, 193, 0, 128, 255, 255, 255, 255, 255, 255, 78, 200, 133, 65, 0, 0, 0, 0, 53, 218, 137, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 0, 0, 254, 255, 163, 193, 0, 128, 255, 255, 255, 255, 255, 255, 248, 205, 140, 65, 0, 0, 0, 0, 58, 164, 137, 193, 0, 128, 255, 255, 255, 255, 255, 255, 252, 202, 78, 65, 0, 0, 0, 0, 62, 30, 95, 193, 0, 128, 255, 255, 255, 255, 255, 255, 220, 47, 149, 64, 0, 0, 0, 0, 90, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 70, 27, 108, 65, 0, 0, 0, 0, 53, 82, 130, 193, 0, 128, 255, 255, 255, 255, 255, 255, 220, 248, 241, 64, 0, 0, 0, 0, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 62, 84, 83, 65, 0, 0, 0, 0, 114, 177, 130, 193, 0, 128, 255, 255, 255, 255, 255, 255, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 46, 207, 83, 65, 0, 0, 0, 0, 134, 176, 138, 193, 0, 128, 255, 255, 255, 255, 255, 255, 229, 138, 128, 65, 0, 0, 0, 0, 126, 2, 138, 193, 0, 128, 255, 255, 0, 0, 254, 255, 1, 143, 116, 65, 0, 0, 0, 0, 184, 49, 130, 193, 0, 128, 255, 255, 255, 255, 255, 255, 229, 138, 128, 65, 0, 0, 0, 0, 126, 2, 138, 193, 0, 128, 255, 255, 255, 255, 255, 255, 198, 205, 131, 65, 0, 0, 0, 0, 107, 233, 137, 193, 0, 128, 255, 255, 255, 255, 255, 255, 70, 27, 108, 65, 0, 0, 0, 0, 53, 82, 130, 193, 0, 128, 255, 255, 255, 255, 255, 255, 232, 205, 16, 64, 0, 0, 0, 0, 92, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 100, 105, 139, 65, 0, 0, 0, 0, 160, 105, 41, 64, 0, 128, 255, 255, 255, 255, 255, 255, 5, 0, 164, 65, 0, 0, 0, 0, 52, 12, 160, 65, 0, 128, 255, 255, 255, 255, 255, 255, 106, 225, 96, 65, 0, 0, 0, 0, 168, 54, 102, 64, 0, 128, 255, 255, 255, 255, 255, 255, 210, 44, 123, 65, 0, 0, 0, 0, 54, 219, 22, 193, 0, 128, 255, 255, 255, 255, 255, 255, 238, 61, 137, 65, 0, 0, 0, 0, 144, 159, 215, 63, 0, 128, 255, 255, 255, 255, 255, 255, 133, 0, 91, 65, 0, 0, 0, 0, 224, 88, 42, 64, 0, 128, 255, 255, 255, 255, 255, 255, 39, 228, 82, 65, 0, 0, 0, 0, 249, 235, 66, 193, 0, 128, 255, 255, 255, 255, 255, 255, 247, 125, 131, 65, 0, 0, 0, 0, 225, 166, 33, 193, 0, 128, 255, 255, 255, 255, 255, 255, 39, 73, 147, 65, 0, 0, 0, 0, 123, 113, 129, 193, 0, 128, 255, 255, 255, 255, 255, 255, 87, 241, 133, 65, 0, 0, 0, 0, 14, 216, 129, 193, 0, 128, 255, 255, 255, 255, 255, 255, 248, 205, 140, 65, 0, 0, 0, 0, 58, 164, 137, 193, 0, 128, 255, 255, 255, 255, 255, 255, 160, 134, 147, 65, 0, 0, 0, 0, 142, 112, 137, 193, 0, 128, 255, 255, 255, 255, 255, 255, 106, 225, 96, 65, 0, 0, 0, 0, 168, 54, 102, 64, 0, 128, 255, 255, 255, 255, 255, 255, 60, 170, 70, 65, 0, 0, 0, 0, 144, 225, 129, 64, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 24, 65, 0, 0, 0, 0, 0, 0, 0, 65, 0, 128, 255, 255, 0, 0, 253, 255, 79, 83, 66, 65, 0, 0, 0, 0, 56, 41, 70, 64, 0, 128, 255, 255, 255, 255, 255, 255, 133, 0, 91, 65, 0, 0, 0, 0, 224, 88, 42, 64, 0, 128, 255, 255, 255, 255, 255, 255, 194, 185, 92, 193, 0, 0, 0, 0, 232, 165, 94, 193, 0, 128, 255, 255, 255, 255, 219, 255, 0, 0, 8, 65, 0, 0, 0, 0, 248, 255, 255, 64, 0, 128, 255, 255, 255, 255, 227, 255, 70, 72, 93, 193, 0, 0, 0, 0, 228, 165, 94, 193, 0, 128, 255, 255, 255, 255, 219, 255, 162, 121, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 219, 255, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 0, 128, 255, 255, 255, 255, 219, 255, 194, 0, 109, 193, 0, 0, 0, 0, 232, 165, 110, 193, 0, 128, 255, 255, 255, 255, 219, 255, 220, 47, 149, 64, 0, 0, 0, 0, 90, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 2, 0, 8, 65, 0, 0, 0, 0, 252, 255, 255, 192, 0, 128, 255, 255, 255, 255, 255, 255, 208, 126, 192, 63, 0, 0, 0, 0, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 232, 205, 16, 64, 0, 0, 0, 0, 92, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 96, 178, 116, 64, 0, 0, 0, 0, 91, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 170, 193, 78, 193, 0, 0, 0, 0, 228, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 144, 3, 7, 193, 0, 0, 0, 0, 90, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 194, 185, 92, 193, 0, 0, 0, 0, 232, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 194, 0, 109, 193, 0, 0, 0, 0, 232, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 196, 39, 97, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 8, 65, 0, 0, 0, 0, 248, 255, 255, 64, 0, 128, 255, 255, 255, 255, 255, 255, 96, 178, 116, 64, 0, 0, 0, 0, 91, 66, 32, 193, 0, 128, 255, 255, 255, 255, 255, 255, 12, 12, 200, 64, 0, 0, 0, 0, 98, 240, 179, 192, 0, 128, 255, 255, 255, 255, 255, 255, 190, 182, 9, 64, 0, 0, 0, 0, 20, 162, 26, 192, 0, 128, 255, 255, 255, 255, 255, 255, 44, 144, 196, 63, 0, 0, 0, 0, 218, 10, 77, 192, 0, 128, 255, 255, 255, 255, 255, 255, 184, 84, 180, 64, 0, 0, 0, 0, 198, 36, 205, 192, 0, 128, 255, 255, 255, 255, 255, 255, 124, 251, 65, 193, 0, 0, 0, 0, 226, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 145, 3, 7, 193, 0, 0, 0, 0, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 61, 82, 86, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 94, 193, 0, 128, 255, 255, 255, 255, 255, 255, 208, 126, 192, 63, 0, 0, 0, 0, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 61, 82, 86, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 65, 0, 0, 0, 51, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 193, 0, 0, 0, 0, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 164, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 176, 184, 0, 0, 0, 128, 250, 127, 1, 128, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 0, 0, 0, 128, 250, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 65, 9, 0, 9, 128, 245, 127, 5, 128, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 9, 0, 9, 128, 245, 127, 5, 128, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 9, 0, 9, 128, 245, 127, 5, 128, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 128, 50, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 191, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 164, 65, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 191, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 171, 170, 170, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 98, 24, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 208, 23, 164, 193, 0, 0, 64, 64, 208, 23, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 248, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 86, 12, 164, 65, 0, 128, 255, 255, 255, 255, 253, 255, 98, 24, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 244, 255, 24, 24, 164, 193, 0, 0, 64, 64, 12, 12, 164, 65, 0, 128, 255, 255, 255, 255, 253, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 253, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 98, 24, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 208, 23, 164, 193, 0, 0, 64, 64, 208, 23, 164, 65, 0, 128, 255, 255, 0, 0, 250, 255, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 85, 85, 169, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 85, 85, 169, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 164, 65, 0, 0, 0, 51, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 253, 255, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 253, 255, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 255, 255, 253, 255, 6, 5, 164, 65, 0, 0, 128, 42, 33, 12, 168, 65, 0, 128, 0, 0, 0, 0, 250, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 0, 0, 250, 255, 0, 0, 164, 65, 0, 0, 0, 51, 0, 0, 168, 65, 0, 128, 0, 0, 0, 0, 250, 255, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 0, 0, 250, 255, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 255, 255, 120, 254, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 255, 255, 156, 255, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 255, 255, 235, 254, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 6, 5, 164, 65, 0, 0, 128, 42, 33, 12, 168, 65, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 0, 0, 89, 255, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 236, 43, 165, 193, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 166, 193, 0, 0, 0, 0, 0, 0, 170, 65, 0, 128, 0, 0, 255, 255, 255, 255, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 164, 65, 128, 73, 18, 61, 0, 0, 164, 65, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 65, 255, 255, 255, 255, 0, 0, 0, 192, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 249, 255, 0, 0, 0, 0, 0, 192, 0, 0, 164, 65, 128, 73, 18, 61, 0, 0, 164, 65, 249, 255, 0, 0, 0, 0, 0, 192, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 249, 255, 0, 0, 0, 0, 0, 192, 0, 0, 164, 193, 0, 0, 0, 0, 252, 255, 163, 65, 254, 255, 254, 255, 0, 0, 0, 192, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 254, 255, 254, 255, 0, 0, 0, 192, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 254, 255, 254, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 193, 0, 128, 255, 255, 255, 255, 255, 255, 98, 24, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 0, 0, 254, 255, 208, 23, 164, 65, 0, 0, 64, 64, 209, 23, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 0, 0, 254, 255, 0, 0, 164, 65, 0, 0, 64, 64, 98, 24, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 255, 255, 167, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 98, 24, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 208, 23, 164, 65, 0, 0, 64, 64, 209, 23, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 255, 127, 252, 127, 27, 0, 14, 192, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 255, 127, 252, 127, 27, 0, 14, 192, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 255, 127, 252, 127, 27, 0, 14, 192, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 9, 128, 253, 127, 38, 0, 14, 192, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 9, 128, 253, 127, 38, 0, 14, 192, 1, 0, 164, 193, 0, 0, 0, 0, 0, 0, 164, 193, 9, 128, 253, 127, 38, 0, 14, 192, 0, 0, 164, 65, 0, 0, 0, 0, 254, 255, 163, 193, 255, 127, 255, 127, 0, 0, 0, 192, 171, 243, 163, 193, 0, 0, 0, 0, 1, 0, 164, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 255, 255, 255, 255, 255, 255, 255, 191, 98, 24, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 255, 255, 255, 255, 255, 255, 255, 191, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 164, 193, 255, 255, 255, 255, 255, 255, 255, 191, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 193, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 255, 127, 255, 127, 0, 0, 0, 192, 255, 255, 167, 193, 0, 0, 0, 64, 86, 85, 169, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 193, 0, 0, 0, 128, 255, 127, 1, 128, 255, 255, 167, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 171, 170, 170, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 193, 0, 0, 0, 64, 171, 170, 170, 193, 0, 0, 0, 128, 255, 127, 1, 128, 255, 255, 167, 193, 0, 0, 0, 64, 86, 85, 169, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 255, 255, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 166, 65, 0, 0, 0, 0, 0, 0, 170, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 128, 50, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 254, 255, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 254, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 255, 255, 254, 255, 6, 5, 164, 193, 0, 247, 252, 178, 33, 12, 168, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 164, 193, 0, 0, 128, 50, 0, 0, 168, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 255, 255, 120, 254, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 255, 255, 120, 254, 236, 43, 165, 193, 0, 246, 21, 178, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 120, 254, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 254, 255, 255, 255, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 254, 255, 255, 255, 236, 43, 165, 193, 0, 246, 21, 178, 20, 212, 170, 193, 0, 128, 0, 0, 254, 255, 255, 255, 6, 5, 164, 193, 0, 247, 252, 178, 33, 12, 168, 193, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 0, 0, 89, 255, 236, 43, 165, 193, 0, 246, 21, 178, 20, 212, 170, 193, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 0, 0, 89, 255, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 98, 24, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 208, 23, 164, 65, 0, 0, 64, 64, 209, 23, 164, 193, 0, 128, 255, 255, 0, 0, 254, 255, 0, 0, 164, 65, 0, 0, 64, 64, 98, 24, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 65, 0, 0, 64, 64, 255, 255, 167, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 85, 85, 169, 65, 253, 255, 255, 63, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 171, 170, 170, 65, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 171, 170, 170, 65, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 85, 85, 169, 65, 253, 255, 255, 63, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 193, 0, 0, 0, 128, 0, 128, 1, 128, 0, 0, 164, 65, 0, 0, 64, 64, 0, 0, 164, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 164, 65, 128, 73, 18, 61, 0, 0, 164, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 0, 0, 0, 128, 0, 128, 1, 128, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 0, 0, 0, 128, 254, 127, 1, 128, 5, 0, 164, 65, 0, 0, 0, 0, 52, 12, 160, 65, 0, 0, 0, 128, 254, 127, 1, 128, 0, 0, 164, 65, 0, 0, 0, 0, 254, 255, 163, 193, 0, 0, 0, 128, 254, 127, 1, 128, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 4, 0, 249, 127, 8, 128, 3, 128, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 4, 0, 249, 127, 8, 128, 3, 128, 5, 0, 164, 65, 0, 0, 0, 0, 52, 12, 160, 65, 4, 0, 249, 127, 8, 128, 3, 128, 0, 0, 164, 65, 128, 73, 18, 61, 0, 0, 164, 65, 2, 0, 251, 127, 3, 128, 5, 128, 2, 0, 164, 65, 0, 0, 0, 0, 4, 0, 164, 65, 2, 0, 251, 127, 3, 128, 5, 128, 0, 0, 164, 65, 219, 182, 61, 64, 0, 0, 164, 193, 2, 0, 251, 127, 3, 128, 5, 128, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 254, 255, 19, 212, 170, 65, 0, 0, 0, 0, 238, 43, 165, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 255, 255, 255, 255, 20, 212, 170, 65, 0, 0, 0, 0, 236, 43, 165, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 193, 0, 128, 0, 0, 255, 255, 253, 255, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 193, 0, 128, 0, 0, 255, 255, 255, 255, 85, 85, 169, 65, 255, 255, 255, 63, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 193, 255, 255, 0, 128, 255, 127, 1, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 255, 255, 255, 255, 255, 255, 255, 191, 0, 0, 164, 193, 0, 0, 64, 64, 98, 24, 164, 65, 255, 255, 255, 255, 255, 255, 255, 191, 0, 0, 164, 193, 0, 0, 64, 64, 86, 12, 164, 65, 255, 255, 255, 255, 255, 255, 255, 191, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 251, 255, 3, 128, 3, 128, 2, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 251, 255, 3, 128, 3, 128, 2, 128, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 251, 255, 3, 128, 3, 128, 2, 128, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 168, 65, 255, 255, 255, 255, 255, 255, 255, 191, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 254, 255, 255, 127, 255, 127, 1, 128, 254, 255, 163, 193, 0, 0, 0, 0, 85, 12, 160, 193, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 164, 193, 0, 0, 0, 0, 252, 255, 163, 65, 254, 255, 255, 127, 255, 127, 1, 128, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 249, 255, 5, 128, 4, 128, 4, 128, 1, 0, 164, 193, 0, 0, 0, 0, 0, 0, 164, 193, 249, 255, 5, 128, 4, 128, 4, 128, 254, 255, 163, 193, 0, 0, 0, 0, 85, 12, 160, 193, 249, 255, 5, 128, 4, 128, 4, 128, 1, 0, 164, 193, 0, 0, 0, 0, 0, 0, 164, 193, 253, 255, 253, 127, 252, 127, 1, 128, 254, 255, 163, 193, 220, 182, 61, 64, 0, 0, 164, 65, 253, 255, 253, 127, 252, 127, 1, 128, 0, 0, 164, 193, 73, 73, 18, 61, 255, 255, 163, 193, 253, 255, 253, 127, 252, 127, 1, 128, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 208, 23, 164, 193, 0, 0, 64, 64, 208, 23, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 24, 24, 164, 193, 0, 0, 64, 64, 12, 12, 164, 65, 0, 128, 255, 255, 0, 0, 253, 255, 98, 24, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 0, 0, 254, 255, 0, 0, 164, 193, 0, 0, 64, 64, 86, 12, 164, 65, 0, 128, 255, 255, 255, 255, 174, 254, 0, 0, 164, 193, 0, 0, 64, 64, 98, 24, 164, 65, 0, 128, 255, 255, 255, 255, 117, 255, 24, 24, 164, 193, 0, 0, 64, 64, 12, 12, 164, 65, 0, 128, 255, 255, 255, 255, 197, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 51, 255, 98, 24, 164, 193, 0, 0, 64, 64, 0, 0, 164, 65, 0, 128, 255, 255, 255, 255, 190, 255, 208, 23, 164, 193, 0, 0, 64, 64, 208, 23, 164, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 164, 193, 0, 0, 64, 64, 0, 0, 164, 193, 0, 128, 255, 255, 255, 255, 255, 255, 85, 85, 169, 193, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 164, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 255, 255, 255, 255, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 176, 184, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 255, 255, 20, 212, 170, 193, 0, 0, 0, 0, 236, 43, 165, 65, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 255, 255, 247, 255, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 164, 65, 0, 128, 0, 0, 255, 255, 254, 255, 20, 212, 170, 193, 0, 0, 0, 0, 236, 43, 165, 65, 0, 128, 0, 0, 255, 255, 251, 255, 20, 212, 170, 193, 0, 0, 0, 0, 236, 43, 165, 65, 0, 128, 0, 0, 254, 255, 8, 128, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 8, 128, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 254, 255, 8, 128, 0, 0, 170, 193, 0, 0, 32, 41, 0, 0, 166, 193, 0, 128, 0, 0, 254, 255, 1, 128, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 254, 255, 1, 128, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 0, 0, 253, 255, 20, 212, 170, 193, 0, 0, 0, 0, 238, 43, 165, 193, 0, 128, 0, 0, 0, 0, 253, 255, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 0, 128, 0, 0, 0, 0, 253, 255, 0, 0, 170, 193, 0, 0, 32, 41, 0, 0, 166, 193, 0, 128, 0, 0, 255, 255, 255, 255, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 255, 255, 20, 212, 170, 193, 0, 0, 0, 0, 238, 43, 165, 193, 0, 128, 0, 0, 255, 255, 255, 255, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 0, 128, 0, 0, 255, 255, 255, 255, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 176, 184, 0, 128, 0, 0, 255, 255, 255, 255, 255, 255, 167, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 168, 193, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 193, 0, 0, 64, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 85, 85, 169, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 85, 85, 169, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 170, 170, 170, 193, 2, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 170, 170, 170, 193, 2, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 255, 255, 0, 0, 0, 192, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 65, 129, 218, 255, 127, 130, 90, 255, 191, 20, 212, 170, 65, 0, 0, 0, 0, 20, 212, 170, 65, 41, 183, 255, 127, 40, 55, 255, 191, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 65, 212, 200, 255, 127, 213, 72, 255, 191, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 65, 129, 218, 255, 127, 130, 90, 255, 191, 20, 212, 170, 65, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 255, 255, 255, 223, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 189, 210, 171, 170, 170, 65, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 254, 255, 130, 90, 255, 191, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 254, 255, 130, 90, 255, 191, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 65, 255, 127, 254, 255, 130, 90, 255, 191, 85, 85, 169, 65, 253, 255, 255, 63, 0, 0, 168, 65, 255, 127, 254, 255, 130, 90, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 254, 255, 130, 90, 255, 191, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 65, 124, 165, 255, 127, 125, 37, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 65, 124, 165, 255, 127, 125, 37, 255, 191, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 255, 255, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 65, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 65, 0, 128, 255, 255, 125, 37, 255, 191, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 65, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 171, 170, 170, 65, 0, 128, 255, 255, 125, 37, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 65, 0, 128, 255, 255, 125, 37, 255, 191, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 129, 218, 255, 191, 6, 5, 164, 65, 0, 0, 128, 42, 33, 12, 168, 65, 0, 128, 0, 0, 124, 165, 255, 191, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 164, 65, 0, 0, 0, 51, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 129, 218, 0, 192, 19, 212, 170, 65, 0, 0, 0, 0, 238, 43, 165, 65, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 65, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 124, 165, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 0, 192, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 0, 192, 19, 212, 170, 65, 0, 0, 0, 0, 238, 43, 165, 65, 0, 128, 0, 0, 125, 165, 0, 192, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 193, 0, 128, 0, 0, 255, 255, 64, 237, 20, 212, 170, 65, 0, 0, 0, 0, 236, 43, 165, 193, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 170, 65, 0, 0, 0, 0, 0, 0, 166, 193, 0, 128, 0, 0, 255, 255, 189, 210, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 189, 210, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 164, 193, 0, 128, 0, 0, 255, 255, 189, 210, 20, 212, 170, 65, 0, 0, 0, 0, 236, 43, 165, 193, 0, 128, 0, 0, 255, 255, 189, 210, 0, 0, 166, 65, 0, 0, 0, 0, 0, 0, 170, 193, 0, 128, 0, 0, 255, 255, 65, 237, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 65, 237, 0, 0, 164, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 65, 237, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 65, 237, 0, 0, 166, 65, 0, 0, 0, 0, 0, 0, 170, 193, 0, 128, 0, 0, 255, 255, 190, 210, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 254, 255, 0, 192, 236, 43, 165, 65, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 190, 210, 0, 0, 168, 65, 0, 0, 0, 0, 0, 0, 172, 193, 255, 255, 129, 218, 129, 218, 255, 191, 20, 212, 170, 65, 0, 0, 0, 0, 20, 212, 170, 193, 255, 255, 41, 183, 41, 183, 255, 191, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 193, 255, 255, 213, 200, 212, 200, 255, 191, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 193, 255, 255, 129, 218, 129, 218, 255, 191, 20, 212, 170, 65, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 191, 0, 192, 0, 0, 168, 65, 0, 0, 0, 64, 85, 85, 169, 193, 0, 128, 255, 255, 0, 0, 190, 210, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 172, 193, 0, 128, 255, 255, 0, 0, 190, 210, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 193, 0, 128, 255, 255, 0, 0, 190, 210, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 193, 0, 128, 255, 255, 0, 0, 190, 210, 20, 212, 170, 65, 0, 0, 0, 0, 20, 212, 170, 193, 255, 255, 41, 183, 0, 0, 107, 228, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 193, 255, 255, 124, 165, 0, 0, 65, 237, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 255, 124, 165, 0, 0, 65, 237, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 193, 255, 255, 213, 200, 0, 0, 149, 219, 0, 0, 172, 65, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 124, 165, 0, 192, 85, 85, 169, 65, 255, 255, 255, 63, 0, 0, 168, 193, 255, 127, 254, 255, 0, 0, 65, 237, 0, 0, 168, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 127, 254, 255, 0, 0, 65, 237, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 193, 255, 127, 254, 255, 0, 0, 65, 237, 20, 212, 170, 65, 0, 0, 0, 64, 20, 212, 170, 193, 255, 127, 254, 255, 0, 0, 63, 237, 0, 0, 172, 65, 0, 0, 0, 64, 0, 0, 168, 193, 255, 127, 254, 255, 0, 0, 63, 237, 85, 85, 169, 65, 255, 255, 255, 63, 0, 0, 168, 193, 255, 127, 254, 255, 0, 0, 63, 237, 0, 0, 170, 193, 0, 0, 32, 41, 0, 0, 166, 193, 0, 128, 0, 0, 129, 218, 255, 191, 20, 212, 170, 193, 0, 0, 0, 0, 238, 43, 165, 193, 0, 128, 0, 0, 129, 218, 255, 191, 255, 255, 167, 193, 0, 0, 0, 0, 255, 255, 163, 193, 0, 128, 0, 0, 129, 218, 255, 191, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 129, 218, 255, 191, 0, 0, 170, 193, 0, 0, 32, 41, 0, 0, 166, 193, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 124, 165, 255, 191, 20, 212, 170, 193, 0, 0, 0, 0, 238, 43, 165, 193, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 0, 124, 165, 255, 255, 64, 237, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 193, 0, 0, 213, 200, 255, 255, 148, 219, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 193, 0, 0, 41, 183, 255, 255, 106, 228, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 0, 124, 165, 255, 255, 64, 237, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 65, 237, 0, 0, 172, 193, 0, 0, 0, 0, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 65, 237, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 65, 237, 170, 170, 170, 193, 2, 0, 0, 64, 0, 0, 168, 193, 255, 127, 254, 255, 130, 90, 0, 192, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 127, 254, 255, 130, 90, 0, 192, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 193, 255, 127, 254, 255, 130, 90, 0, 192, 85, 85, 169, 193, 0, 0, 0, 64, 0, 0, 168, 193, 255, 127, 254, 255, 130, 90, 0, 192, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 193, 0, 128, 255, 255, 129, 90, 0, 192, 255, 255, 167, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 128, 255, 255, 129, 90, 0, 192, 85, 85, 169, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 128, 255, 255, 129, 90, 0, 192, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 0, 0, 129, 218, 255, 255, 189, 210, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 193, 0, 0, 129, 218, 255, 255, 189, 210, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 255, 255, 190, 210, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 193, 0, 128, 0, 0, 255, 255, 190, 210, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 255, 255, 190, 210, 255, 255, 167, 193, 0, 0, 0, 64, 86, 85, 169, 193, 0, 128, 255, 255, 125, 37, 0, 192, 255, 255, 167, 193, 0, 0, 0, 64, 0, 0, 168, 193, 0, 128, 255, 255, 125, 37, 0, 192, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 193, 0, 128, 255, 255, 125, 37, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 171, 170, 170, 193, 0, 128, 255, 255, 125, 37, 0, 192, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 193, 0, 128, 255, 255, 125, 37, 0, 192, 236, 43, 165, 193, 0, 246, 21, 178, 20, 212, 170, 193, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 193, 0, 128, 0, 0, 129, 218, 0, 192, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 129, 218, 0, 192, 6, 5, 164, 193, 0, 247, 252, 178, 33, 12, 168, 193, 0, 128, 0, 0, 124, 165, 0, 192, 236, 43, 165, 193, 0, 246, 21, 178, 20, 212, 170, 193, 0, 128, 0, 0, 124, 165, 0, 192, 0, 0, 168, 193, 0, 0, 128, 179, 0, 0, 168, 193, 0, 128, 0, 0, 124, 165, 0, 192, 0, 0, 164, 193, 0, 0, 128, 50, 0, 0, 168, 193, 0, 128, 0, 0, 124, 165, 0, 192, 0, 0, 166, 193, 0, 0, 0, 0, 0, 0, 170, 65, 0, 128, 0, 0, 255, 255, 64, 237, 236, 43, 165, 193, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 164, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 64, 237, 0, 0, 166, 193, 0, 0, 0, 0, 0, 0, 170, 65, 0, 128, 0, 0, 255, 255, 189, 210, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 255, 191, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 0, 128, 0, 0, 254, 255, 255, 191, 236, 43, 165, 193, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 255, 255, 189, 210, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 172, 65, 130, 90, 255, 127, 0, 0, 189, 210, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 65, 40, 55, 255, 127, 0, 0, 106, 228, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 65, 213, 72, 255, 127, 0, 0, 148, 219, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 65, 130, 90, 255, 127, 0, 0, 189, 210, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 129, 218, 255, 191, 0, 0, 168, 193, 0, 0, 0, 64, 85, 85, 169, 65, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 172, 65, 0, 128, 255, 255, 0, 0, 189, 210, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 65, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 168, 65, 0, 128, 255, 255, 0, 0, 189, 210, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 125, 37, 255, 127, 0, 0, 64, 237, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 65, 125, 37, 255, 127, 0, 0, 64, 237, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 255, 191, 20, 212, 170, 193, 0, 0, 0, 0, 20, 212, 170, 65, 0, 128, 0, 0, 124, 165, 255, 191, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 124, 165, 255, 191, 85, 85, 169, 193, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 254, 255, 0, 0, 64, 237, 0, 0, 168, 193, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 254, 255, 0, 0, 64, 237, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 65, 255, 127, 254, 255, 0, 0, 64, 237, 20, 212, 170, 193, 0, 0, 0, 64, 20, 212, 170, 65, 255, 127, 254, 255, 0, 0, 64, 237, 0, 0, 172, 193, 0, 0, 0, 64, 0, 0, 168, 65, 255, 127, 254, 255, 0, 0, 64, 237, 85, 85, 169, 193, 255, 255, 255, 63, 0, 0, 168, 65, 255, 127, 254, 255, 0, 0, 64, 237, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 254, 255, 190, 146, 20, 212, 170, 193, 0, 0, 0, 0, 236, 43, 165, 65, 0, 128, 0, 0, 254, 255, 190, 146, 0, 0, 172, 193, 0, 0, 48, 52, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 190, 146, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 254, 255, 190, 146, 0, 0, 170, 193, 0, 0, 0, 0, 0, 0, 166, 65, 0, 128, 0, 0, 255, 255, 190, 210, 0, 0, 168, 193, 0, 0, 0, 0, 0, 0, 168, 65, 0, 128, 0, 0, 255, 255, 190, 210, 255, 255, 167, 193, 0, 0, 0, 0, 0, 0, 164, 65, 0, 128, 0, 0, 255, 255, 190, 210, 20, 212, 170, 193, 0, 0, 0, 0, 236, 43, 165, 65, 0, 128, 0, 0, 255, 255, 190, 210, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 65, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 255, 127, 255, 127, 1, 128, 2, 0, 24, 193, 0, 0, 0, 0, 1, 0, 0, 193, 254, 255, 255, 127, 255, 127, 1, 128, 1, 0, 24, 193, 0, 0, 0, 0, 0, 0, 0, 65, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 1, 0, 24, 193, 0, 0, 0, 0, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 2, 0, 40, 193, 0, 0, 0, 0, 2, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 65, 0, 0, 0, 128, 255, 127, 1, 128, 2, 0, 40, 193, 0, 0, 0, 0, 2, 0, 0, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 40, 193, 0, 0, 0, 0, 0, 0, 0, 193, 0, 0, 0, 128, 255, 127, 1, 128, 2, 0, 24, 193, 0, 0, 0, 0, 1, 0, 0, 193, 254, 255, 255, 255, 0, 0, 0, 192, 0, 0, 24, 193, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 255, 255, 0, 0, 0, 192, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 255, 255, 0, 0, 0, 192, 0, 0, 40, 193, 0, 0, 64, 64, 0, 0, 0, 193, 0, 0, 254, 255, 0, 0, 0, 192, 0, 0, 40, 193, 0, 0, 0, 0, 0, 0, 0, 193, 0, 0, 254, 255, 0, 0, 0, 192, 2, 0, 24, 193, 0, 0, 0, 0, 1, 0, 0, 193, 0, 0, 254, 255, 0, 0, 0, 192, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 65, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 255, 127, 255, 127, 1, 128, 2, 0, 24, 65, 0, 0, 0, 0, 252, 255, 255, 192, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 24, 65, 0, 0, 0, 0, 0, 0, 0, 65, 254, 255, 255, 127, 255, 127, 1, 128, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 65, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 193, 0, 128, 255, 255, 255, 255, 255, 255, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 24, 65, 0, 0, 0, 0, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 8, 65, 0, 0, 0, 0, 248, 255, 255, 64, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 65, 255, 127, 255, 127, 0, 0, 0, 192, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 193, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 65, 0, 0, 0, 128, 255, 127, 1, 128, 0, 0, 8, 65, 0, 0, 0, 0, 248, 255, 255, 64, 0, 0, 0, 128, 255, 127, 1, 128, 2, 0, 8, 65, 0, 0, 0, 0, 252, 255, 255, 192, 0, 0, 0, 128, 255, 127, 1, 128, 2, 0, 24, 65, 0, 0, 0, 0, 252, 255, 255, 192, 254, 255, 0, 0, 0, 0, 0, 192, 0, 0, 24, 65, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 0, 0, 0, 0, 0, 192, 0, 0, 8, 65, 0, 0, 64, 64, 0, 0, 0, 193, 254, 255, 0, 0, 0, 0, 0, 192, 2, 0, 8, 65, 0, 0, 0, 0, 252, 255, 255, 192, 254, 255, 0, 0, 0, 0, 0, 192, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 47, 65, 255, 127, 255, 127, 255, 127, 1, 128, 222, 248, 241, 64, 0, 0, 64, 64, 214, 86, 47, 65, 255, 127, 255, 127, 255, 127, 1, 128, 222, 248, 241, 64, 0, 0, 0, 0, 214, 86, 47, 65, 255, 127, 255, 127, 255, 127, 1, 128, 64, 139, 25, 192, 0, 0, 0, 0, 213, 86, 47, 65, 255, 127, 255, 127, 255, 127, 1, 128, 144, 3, 7, 193, 0, 0, 0, 0, 212, 86, 47, 65, 255, 127, 255, 127, 255, 127, 1, 128, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 47, 65, 0, 128, 255, 255, 255, 255, 0, 192, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 31, 65, 0, 128, 255, 255, 255, 255, 0, 192, 221, 248, 241, 64, 0, 0, 64, 64, 214, 86, 31, 65, 0, 128, 255, 255, 255, 255, 0, 192, 222, 248, 241, 64, 0, 0, 64, 64, 214, 86, 47, 65, 0, 128, 255, 255, 255, 255, 0, 192, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 47, 65, 0, 0, 0, 128, 255, 255, 255, 255, 144, 3, 7, 193, 0, 0, 0, 0, 212, 86, 47, 65, 0, 0, 0, 128, 255, 255, 255, 255, 146, 3, 7, 193, 0, 0, 0, 0, 212, 86, 31, 65, 0, 0, 0, 128, 255, 255, 255, 255, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 31, 65, 0, 0, 0, 128, 255, 255, 255, 255, 221, 248, 241, 64, 0, 0, 64, 64, 214, 86, 31, 65, 254, 255, 255, 255, 255, 127, 1, 128, 145, 3, 7, 193, 0, 0, 64, 64, 214, 86, 31, 65, 254, 255, 255, 255, 255, 127, 1, 128, 146, 3, 7, 193, 0, 0, 0, 0, 212, 86, 31, 65, 254, 255, 255, 255, 255, 127, 1, 128, 112, 146, 153, 192, 0, 0, 0, 0, 213, 86, 31, 65, 254, 255, 0, 0, 255, 127, 1, 128, 220, 248, 241, 64, 0, 0, 0, 0, 216, 86, 31, 65, 254, 255, 0, 0, 255, 127, 1, 128, 221, 248, 241, 64, 0, 0, 64, 64, 214, 86, 31, 65, 254, 255, 0, 0, 255, 127, 1, 128, 146, 3, 7, 193, 0, 0, 0, 0, 212, 86, 31, 65, 254, 255, 0, 0, 255, 127, 1, 128, 222, 248, 241, 64, 0, 0, 0, 0, 214, 86, 47, 65, 255, 255, 0, 128, 255, 255, 255, 255, 222, 248, 241, 64, 0, 0, 64, 64, 214, 86, 47, 65, 255, 255, 0, 128, 255, 255, 255, 255, 221, 248, 241, 64, 0, 0, 64, 64, 214, 86, 31, 65, 255, 255, 0, 128, 255, 255, 255, 255, 221, 248, 241, 64, 0, 0, 64, 64, 214, 86, 31, 65, 254, 255, 255, 127, 255, 255, 255, 255, 220, 248, 241, 64, 0, 0, 0, 0, 216, 86, 31, 65, 254, 255, 255, 127, 255, 255, 255, 255, 222, 248, 241, 64, 0, 0, 0, 0, 214, 86, 47, 65, 254, 255, 255, 127, 255, 255, 255, 255, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 222, 248, 241, 64, 0, 0, 64, 64, 91, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 224, 248, 241, 64, 0, 0, 0, 0, 90, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 96, 178, 116, 64, 0, 0, 0, 0, 91, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 144, 3, 7, 193, 0, 0, 0, 0, 90, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 220, 47, 149, 64, 0, 0, 0, 0, 90, 66, 32, 193, 255, 127, 255, 127, 255, 127, 1, 128, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 32, 193, 0, 128, 255, 255, 255, 255, 0, 192, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 0, 192, 221, 248, 241, 64, 0, 0, 64, 64, 91, 66, 48, 193, 0, 128, 255, 255, 255, 255, 0, 192, 222, 248, 241, 64, 0, 0, 64, 64, 91, 66, 32, 193, 0, 128, 255, 255, 255, 255, 0, 192, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 32, 193, 0, 0, 0, 128, 255, 255, 255, 255, 144, 3, 7, 193, 0, 0, 0, 0, 90, 66, 32, 193, 0, 0, 0, 128, 255, 255, 255, 255, 145, 3, 7, 193, 0, 0, 0, 0, 91, 66, 48, 193, 0, 0, 0, 128, 255, 255, 255, 255, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 48, 193, 0, 0, 0, 128, 255, 255, 255, 255, 221, 248, 241, 64, 0, 0, 64, 64, 91, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 145, 3, 7, 193, 0, 0, 64, 64, 91, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 145, 3, 7, 193, 0, 0, 0, 0, 91, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 232, 205, 16, 64, 0, 0, 0, 0, 92, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 220, 248, 241, 64, 0, 0, 0, 0, 91, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 208, 126, 192, 63, 0, 0, 0, 0, 91, 66, 48, 193, 0, 0, 254, 255, 254, 127, 1, 128, 232, 205, 16, 64, 0, 0, 0, 0, 92, 66, 48, 193, 0, 0, 254, 255, 254, 127, 1, 128, 221, 248, 241, 64, 0, 0, 64, 64, 91, 66, 48, 193, 0, 0, 254, 255, 254, 127, 1, 128, 208, 126, 192, 63, 0, 0, 0, 0, 91, 66, 48, 193, 255, 255, 255, 255, 255, 127, 1, 128, 224, 248, 241, 64, 0, 0, 0, 0, 90, 66, 32, 193, 254, 255, 255, 127, 255, 255, 255, 255, 222, 248, 241, 64, 0, 0, 64, 64, 91, 66, 32, 193, 254, 255, 255, 127, 255, 255, 255, 255, 221, 248, 241, 64, 0, 0, 64, 64, 91, 66, 48, 193, 254, 255, 255, 127, 255, 255, 255, 255, 220, 248, 241, 64, 0, 0, 0, 0, 91, 66, 48, 193, 254, 255, 255, 127, 255, 255, 255, 255, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 112, 213, 118, 193, 0, 0, 0, 0, 230, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 139, 159, 149, 193, 0, 0, 0, 0, 226, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 150, 183, 110, 193, 0, 0, 0, 0, 227, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 255, 127, 255, 127, 254, 127, 1, 128, 245, 92, 101, 193, 0, 0, 0, 0, 222, 165, 94, 193, 255, 127, 255, 127, 254, 127, 1, 128, 150, 183, 110, 193, 0, 0, 0, 0, 227, 165, 94, 193, 255, 127, 255, 127, 254, 127, 1, 128, 225, 165, 94, 193, 0, 0, 0, 0, 226, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 245, 92, 101, 193, 0, 0, 0, 0, 222, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 244, 92, 93, 193, 0, 0, 0, 0, 231, 165, 94, 193, 1, 128, 2, 128, 2, 128, 3, 128, 225, 165, 94, 193, 0, 0, 0, 0, 226, 165, 94, 193, 1, 128, 2, 128, 2, 128, 3, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 1, 128, 2, 128, 2, 128, 3, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 236, 127, 225, 127, 204, 127, 10, 128, 70, 72, 93, 193, 0, 0, 0, 0, 228, 165, 94, 193, 236, 127, 225, 127, 204, 127, 10, 128, 244, 92, 93, 193, 0, 0, 0, 0, 231, 165, 94, 193, 236, 127, 225, 127, 204, 127, 10, 128, 194, 185, 92, 193, 0, 0, 0, 0, 232, 165, 94, 193, 3, 128, 5, 128, 255, 127, 3, 128, 70, 72, 93, 193, 0, 0, 0, 0, 228, 165, 94, 193, 3, 128, 5, 128, 255, 127, 3, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 3, 128, 5, 128, 255, 127, 3, 128, 170, 193, 78, 193, 0, 0, 0, 0, 228, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 194, 185, 92, 193, 0, 0, 0, 0, 232, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 124, 251, 65, 193, 0, 0, 0, 0, 226, 165, 94, 193, 255, 127, 255, 127, 255, 127, 1, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 0, 128, 255, 255, 255, 255, 0, 192, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 110, 193, 0, 128, 255, 255, 255, 255, 0, 192, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 0, 128, 255, 255, 255, 255, 0, 192, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 94, 193, 0, 128, 255, 255, 255, 255, 0, 192, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 94, 193, 0, 0, 0, 128, 255, 255, 255, 255, 139, 159, 149, 193, 0, 0, 0, 0, 226, 165, 94, 193, 0, 0, 0, 128, 255, 255, 255, 255, 138, 159, 149, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 0, 0, 128, 255, 255, 255, 255, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 110, 193, 0, 0, 0, 128, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 138, 159, 149, 193, 0, 0, 64, 64, 227, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 138, 159, 149, 193, 0, 0, 0, 0, 226, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 61, 82, 86, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 0, 254, 255, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 110, 193, 0, 0, 254, 255, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 0, 0, 254, 255, 255, 127, 1, 128, 196, 39, 97, 193, 0, 0, 0, 0, 228, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 61, 82, 86, 193, 0, 0, 0, 0, 226, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 194, 0, 109, 193, 0, 0, 0, 0, 232, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 4, 0, 250, 255, 249, 127, 1, 128, 162, 121, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 4, 0, 250, 255, 249, 127, 1, 128, 194, 0, 109, 193, 0, 0, 0, 0, 232, 165, 110, 193, 4, 0, 250, 255, 249, 127, 1, 128, 232, 142, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 254, 255, 255, 255, 248, 127, 3, 128, 162, 121, 109, 193, 0, 0, 0, 0, 228, 165, 110, 193, 254, 255, 255, 255, 222, 127, 17, 128, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 254, 255, 255, 255, 255, 127, 1, 128, 226, 165, 110, 193, 0, 0, 0, 0, 228, 165, 110, 193, 254, 255, 255, 255, 0, 128, 1, 128, 238, 142, 117, 193, 0, 0, 0, 0, 228, 165, 110, 193, 254, 255, 255, 255, 0, 128, 1, 128, 93, 96, 125, 193, 0, 0, 0, 0, 226, 165, 110, 193, 0, 0, 254, 255, 254, 127, 1, 128, 238, 142, 117, 193, 0, 0, 0, 0, 228, 165, 110, 193, 0, 0, 254, 255, 254, 127, 1, 128, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 0, 0, 254, 255, 254, 127, 1, 128, 135, 20, 130, 193, 0, 0, 0, 0, 226, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 93, 96, 125, 193, 0, 0, 0, 0, 226, 165, 110, 193, 254, 255, 0, 0, 255, 127, 1, 128, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 94, 193, 255, 255, 0, 128, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 94, 193, 255, 255, 0, 128, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 64, 64, 227, 165, 110, 193, 255, 255, 0, 128, 255, 255, 255, 255, 20, 63, 43, 193, 0, 0, 0, 0, 227, 165, 110, 193, 255, 255, 0, 128, 255, 255, 255, 255, 178, 124, 135, 193, 0, 0, 64, 64, 51, 9, 229, 64, 184, 65, 255, 127, 255, 127, 1, 128, 36, 134, 82, 193, 0, 0, 64, 64, 5, 205, 43, 65, 184, 65, 255, 127, 255, 127, 1, 128, 38, 134, 82, 193, 0, 0, 0, 0, 6, 205, 43, 65, 184, 65, 255, 127, 255, 127, 1, 128, 31, 199, 128, 193, 0, 0, 0, 0, 134, 119, 254, 64, 184, 65, 255, 127, 255, 127, 1, 128, 178, 124, 135, 193, 0, 0, 0, 0, 50, 9, 229, 64, 184, 65, 255, 127, 255, 127, 1, 128, 178, 124, 135, 193, 0, 0, 64, 64, 51, 9, 229, 64, 0, 128, 255, 255, 184, 193, 0, 192, 2, 252, 129, 193, 0, 0, 64, 64, 230, 206, 205, 64, 0, 128, 255, 255, 184, 193, 0, 192, 196, 132, 71, 193, 0, 0, 64, 64, 223, 47, 32, 65, 0, 128, 255, 255, 184, 193, 0, 192, 36, 134, 82, 193, 0, 0, 64, 64, 5, 205, 43, 65, 0, 128, 255, 255, 184, 193, 0, 192, 178, 124, 135, 193, 0, 0, 64, 64, 51, 9, 229, 64, 0, 0, 70, 190, 255, 255, 220, 224, 178, 124, 135, 193, 0, 0, 0, 0, 50, 9, 229, 64, 0, 0, 70, 190, 255, 255, 220, 224, 3, 252, 129, 193, 0, 0, 0, 0, 228, 206, 205, 64, 0, 0, 70, 190, 255, 255, 220, 224, 2, 252, 129, 193, 0, 0, 64, 64, 230, 206, 205, 64, 0, 0, 70, 190, 255, 255, 220, 224, 196, 132, 71, 193, 0, 0, 64, 64, 223, 47, 32, 65, 254, 255, 69, 62, 255, 127, 1, 128, 2, 252, 129, 193, 0, 0, 64, 64, 230, 206, 205, 64, 254, 255, 69, 62, 255, 127, 1, 128, 3, 252, 129, 193, 0, 0, 0, 0, 228, 206, 205, 64, 254, 255, 69, 62, 255, 127, 1, 128, 84, 192, 123, 193, 0, 0, 0, 0, 212, 97, 221, 64, 255, 255, 184, 193, 255, 127, 1, 128, 196, 132, 71, 193, 0, 0, 0, 0, 223, 47, 32, 65, 255, 255, 184, 193, 255, 127, 1, 128, 196, 132, 71, 193, 0, 0, 64, 64, 223, 47, 32, 65, 255, 255, 184, 193, 255, 127, 1, 128, 196, 132, 71, 193, 0, 0, 64, 64, 223, 47, 32, 65, 254, 255, 184, 193, 255, 127, 1, 128, 3, 252, 129, 193, 0, 0, 0, 0, 228, 206, 205, 64, 254, 255, 184, 193, 255, 127, 1, 128, 84, 192, 123, 193, 0, 0, 0, 0, 212, 97, 221, 64, 254, 255, 184, 193, 255, 127, 1, 128, 38, 134, 82, 193, 0, 0, 0, 0, 6, 205, 43, 65, 183, 193, 255, 127, 255, 255, 220, 224, 36, 134, 82, 193, 0, 0, 64, 64, 5, 205, 43, 65, 183, 193, 255, 127, 255, 255, 220, 224, 197, 132, 71, 193, 0, 0, 64, 64, 224, 47, 32, 65, 183, 193, 255, 127, 255, 255, 220, 224, 196, 132, 71, 193, 0, 0, 64, 64, 223, 47, 32, 65, 183, 193, 255, 127, 255, 255, 220, 224, 196, 132, 71, 193, 0, 0, 0, 0, 223, 47, 32, 65, 183, 193, 255, 127, 255, 255, 220, 224, 126, 32, 192, 192, 0, 0, 64, 64, 20, 119, 117, 64, 184, 65, 255, 127, 255, 127, 1, 128, 248, 115, 14, 192, 0, 0, 64, 64, 98, 76, 237, 64, 184, 65, 255, 127, 255, 127, 1, 128, 252, 115, 14, 192, 0, 0, 0, 0, 97, 76, 237, 64, 184, 65, 255, 127, 255, 127, 1, 128, 126, 32, 192, 192, 0, 0, 0, 0, 18, 119, 117, 64, 184, 65, 255, 127, 255, 127, 1, 128, 126, 32, 192, 192, 0, 0, 64, 64, 20, 119, 117, 64, 0, 128, 255, 255, 184, 193, 0, 192, 191, 29, 170, 192, 0, 0, 64, 64, 121, 2, 71, 64, 0, 128, 255, 255, 184, 193, 0, 192, 250, 220, 196, 191, 0, 0, 64, 64, 20, 18, 214, 64, 0, 128, 255, 255, 184, 193, 0, 192, 248, 115, 14, 192, 0, 0, 64, 64, 98, 76, 237, 64, 0, 128, 255, 255, 184, 193, 0, 192, 126, 32, 192, 192, 0, 0, 64, 64, 20, 119, 117, 64, 0, 0, 70, 190, 255, 255, 220, 224, 126, 32, 192, 192, 0, 0, 0, 0, 18, 119, 117, 64, 0, 0, 70, 190, 255, 255, 220, 224, 192, 29, 170, 192, 0, 0, 0, 0, 118, 2, 71, 64, 0, 0, 70, 190, 255, 255, 220, 224, 191, 29, 170, 192, 0, 0, 64, 64, 121, 2, 71, 64, 0, 0, 70, 190, 255, 255, 220, 224, 250, 220, 196, 191, 0, 0, 64, 64, 20, 18, 214, 64, 255, 255, 184, 193, 255, 127, 1, 128, 191, 29, 170, 192, 0, 0, 64, 64, 121, 2, 71, 64, 255, 255, 184, 193, 255, 127, 1, 128, 192, 29, 170, 192, 0, 0, 0, 0, 118, 2, 71, 64, 255, 255, 184, 193, 255, 127, 1, 128, 192, 29, 170, 192, 0, 0, 0, 0, 118, 2, 71, 64, 254, 255, 184, 193, 255, 127, 1, 128, 248, 220, 196, 191, 0, 0, 0, 0, 19, 18, 214, 64, 254, 255, 184, 193, 255, 127, 1, 128, 250, 220, 196, 191, 0, 0, 64, 64, 20, 18, 214, 64, 254, 255, 184, 193, 255, 127, 1, 128, 252, 115, 14, 192, 0, 0, 0, 0, 97, 76, 237, 64, 184, 193, 255, 127, 255, 255, 220, 224, 248, 115, 14, 192, 0, 0, 64, 64, 98, 76, 237, 64, 184, 193, 255, 127, 255, 255, 220, 224, 250, 220, 196, 191, 0, 0, 64, 64, 20, 18, 214, 64, 184, 193, 255, 127, 255, 255, 220, 224, 250, 220, 196, 191, 0, 0, 64, 64, 20, 18, 214, 64, 184, 193, 255, 127, 255, 255, 219, 224, 248, 220, 196, 191, 0, 0, 0, 0, 19, 18, 214, 64, 184, 193, 255, 127, 255, 255, 219, 224, 252, 115, 14, 192, 0, 0, 0, 0, 97, 76, 237, 64, 184, 193, 255, 127, 255, 255, 219, 224, 189, 182, 9, 64, 0, 0, 64, 64, 18, 162, 26, 192, 45, 184, 255, 127, 255, 127, 1, 128, 12, 12, 200, 64, 0, 0, 64, 64, 98, 240, 179, 192, 45, 184, 255, 127, 255, 127, 1, 128, 12, 12, 200, 64, 0, 0, 0, 0, 98, 240, 179, 192, 45, 184, 255, 127, 255, 127, 1, 128, 190, 182, 9, 64, 0, 0, 0, 0, 20, 162, 26, 192, 45, 184, 255, 127, 255, 127, 1, 128, 189, 182, 9, 64, 0, 0, 64, 64, 18, 162, 26, 192, 0, 128, 255, 255, 255, 255, 23, 220, 42, 144, 196, 63, 0, 0, 64, 64, 217, 10, 77, 192, 0, 128, 255, 255, 255, 255, 23, 220, 184, 84, 180, 64, 0, 0, 64, 64, 197, 36, 205, 192, 0, 128, 255, 255, 255, 255, 23, 220, 12, 12, 200, 64, 0, 0, 64, 64, 98, 240, 179, 192, 0, 128, 255, 255, 255, 255, 23, 220, 189, 182, 9, 64, 0, 0, 64, 64, 18, 162, 26, 192, 44, 56, 255, 127, 0, 0, 233, 227, 190, 182, 9, 64, 0, 0, 0, 0, 20, 162, 26, 192, 44, 56, 255, 127, 0, 0, 233, 227, 44, 144, 196, 63, 0, 0, 0, 0, 218, 10, 77, 192, 44, 56, 255, 127, 0, 0, 233, 227, 44, 144, 196, 63, 0, 0, 0, 0, 218, 10, 77, 192, 44, 56, 255, 127, 0, 0, 231, 227, 42, 144, 196, 63, 0, 0, 64, 64, 217, 10, 77, 192, 44, 56, 255, 127, 0, 0, 231, 227, 189, 182, 9, 64, 0, 0, 64, 64, 18, 162, 26, 192, 44, 56, 255, 127, 0, 0, 231, 227, 184, 84, 180, 64, 0, 0, 64, 64, 197, 36, 205, 192, 0, 0, 210, 199, 255, 127, 1, 128, 42, 144, 196, 63, 0, 0, 64, 64, 217, 10, 77, 192, 0, 0, 210, 199, 255, 127, 1, 128, 44, 144, 196, 63, 0, 0, 0, 0, 218, 10, 77, 192, 0, 0, 210, 199, 255, 127, 1, 128, 44, 144, 196, 63, 0, 0, 0, 0, 218, 10, 77, 192, 0, 0, 209, 199, 255, 127, 1, 128, 184, 84, 180, 64, 0, 0, 0, 0, 198, 36, 205, 192, 0, 0, 209, 199, 255, 127, 1, 128, 184, 84, 180, 64, 0, 0, 64, 64, 197, 36, 205, 192, 0, 0, 209, 199, 255, 127, 1, 128, 12, 12, 200, 64, 0, 0, 0, 0, 98, 240, 179, 192, 255, 255, 45, 184, 0, 0, 233, 227, 12, 12, 200, 64, 0, 0, 64, 64, 98, 240, 179, 192, 255, 255, 45, 184, 0, 0, 233, 227, 184, 84, 180, 64, 0, 0, 64, 64, 197, 36, 205, 192, 255, 255, 45, 184, 0, 0, 233, 227, 184, 84, 180, 64, 0, 0, 0, 0, 198, 36, 205, 192, 255, 255, 45, 184, 0, 0, 233, 227, 171, 172, 113, 192, 0, 0, 64, 64, 165, 48, 134, 65, 147, 178, 255, 127, 255, 127, 1, 128, 156, 213, 20, 63, 0, 0, 64, 64, 33, 213, 94, 65, 147, 178, 255, 127, 255, 127, 1, 128, 144, 213, 20, 63, 0, 0, 0, 0, 32, 213, 94, 65, 147, 178, 255, 127, 255, 127, 1, 128, 128, 97, 19, 63, 0, 0, 0, 0, 80, 228, 94, 65, 147, 178, 255, 127, 255, 127, 1, 128, 176, 172, 113, 192, 0, 0, 0, 0, 166, 48, 134, 65, 147, 178, 255, 127, 255, 127, 1, 128, 171, 172, 113, 192, 0, 0, 64, 64, 165, 48, 134, 65, 143, 178, 249, 127, 9, 128, 1, 128, 144, 213, 20, 63, 0, 0, 0, 0, 32, 213, 94, 65, 143, 178, 249, 127, 9, 128, 1, 128, 128, 97, 19, 63, 0, 0, 0, 0, 80, 228, 94, 65, 143, 178, 249, 127, 9, 128, 1, 128, 171, 172, 113, 192, 0, 0, 64, 64, 165, 48, 134, 65, 0, 128, 255, 255, 255, 255, 74, 217, 180, 86, 138, 192, 0, 0, 64, 64, 45, 252, 126, 65, 0, 128, 255, 255, 255, 255, 74, 217, 0, 42, 13, 61, 0, 0, 64, 64, 4, 112, 81, 65, 0, 128, 255, 255, 255, 255, 74, 217, 156, 213, 20, 63, 0, 0, 64, 64, 33, 213, 94, 65, 0, 128, 255, 255, 255, 255, 74, 217, 171, 172, 113, 192, 0, 0, 64, 64, 165, 48, 134, 65, 147, 50, 255, 127, 0, 0, 180, 230, 176, 172, 113, 192, 0, 0, 0, 0, 166, 48, 134, 65, 147, 50, 255, 127, 0, 0, 180, 230, 176, 86, 138, 192, 0, 0, 0, 0, 44, 252, 126, 65, 147, 50, 255, 127, 0, 0, 180, 230, 176, 86, 138, 192, 0, 0, 0, 0, 44, 252, 126, 65, 147, 50, 255, 127, 0, 0, 182, 230, 180, 86, 138, 192, 0, 0, 64, 64, 45, 252, 126, 65, 147, 50, 255, 127, 0, 0, 182, 230, 171, 172, 113, 192, 0, 0, 64, 64, 165, 48, 134, 65, 147, 50, 255, 127, 0, 0, 182, 230, 0, 42, 13, 61, 0, 0, 64, 64, 4, 112, 81, 65, 0, 0, 108, 205, 255, 127, 1, 128, 180, 86, 138, 192, 0, 0, 64, 64, 45, 252, 126, 65, 0, 0, 108, 205, 255, 127, 1, 128, 176, 86, 138, 192, 0, 0, 0, 0, 44, 252, 126, 65, 0, 0, 108, 205, 255, 127, 1, 128, 0, 178, 35, 191, 0, 0, 0, 0, 68, 123, 88, 65, 0, 0, 108, 205, 255, 127, 1, 128, 64, 42, 13, 61, 0, 0, 0, 0, 4, 112, 81, 65, 0, 0, 108, 205, 255, 127, 1, 128, 0, 42, 13, 61, 0, 0, 64, 64, 4, 112, 81, 65, 0, 0, 107, 205, 255, 127, 1, 128, 176, 86, 138, 192, 0, 0, 0, 0, 44, 252, 126, 65, 0, 0, 107, 205, 255, 127, 1, 128, 0, 178, 35, 191, 0, 0, 0, 0, 68, 123, 88, 65, 0, 0, 107, 205, 255, 127, 1, 128, 144, 213, 20, 63, 0, 0, 0, 0, 32, 213, 94, 65, 255, 255, 147, 178, 0, 0, 182, 230, 156, 213, 20, 63, 0, 0, 64, 64, 33, 213, 94, 65, 255, 255, 147, 178, 0, 0, 182, 230, 0, 42, 13, 61, 0, 0, 64, 64, 4, 112, 81, 65, 255, 255, 147, 178, 0, 0, 182, 230, 0, 42, 13, 61, 0, 0, 64, 64, 4, 112, 81, 65, 255, 255, 147, 178, 0, 0, 182, 230, 64, 42, 13, 61, 0, 0, 0, 0, 4, 112, 81, 65, 255, 255, 147, 178, 0, 0, 182, 230, 144, 213, 20, 63, 0, 0, 0, 0, 32, 213, 94, 65, 255, 255, 147, 178, 0, 0, 182, 230, 220, 251, 66, 65, 0, 0, 64, 64, 209, 146, 85, 65, 32, 61, 255, 127, 255, 127, 1, 128, 210, 44, 123, 65, 0, 0, 64, 64, 22, 133, 137, 65, 32, 61, 255, 127, 255, 127, 1, 128, 211, 44, 123, 65, 0, 0, 0, 0, 22, 133, 137, 65, 32, 61, 255, 127, 255, 127, 1, 128, 250, 171, 88, 65, 0, 0, 0, 0, 36, 76, 109, 65, 32, 61, 255, 127, 255, 127, 1, 128, 218, 251, 66, 65, 0, 0, 0, 0, 208, 146, 85, 65, 32, 61, 255, 127, 255, 127, 1, 128, 248, 207, 112, 65, 0, 0, 0, 0, 36, 218, 131, 65, 32, 61, 255, 127, 255, 127, 1, 128, 220, 251, 66, 65, 0, 0, 64, 64, 209, 146, 85, 65, 0, 128, 255, 255, 32, 189, 0, 192, 251, 202, 78, 65, 0, 0, 64, 64, 35, 199, 74, 65, 0, 128, 255, 255, 32, 189, 0, 192, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 0, 128, 255, 255, 32, 189, 0, 192, 210, 44, 123, 65, 0, 0, 64, 64, 22, 133, 137, 65, 0, 128, 255, 255, 32, 189, 0, 192, 3, 178, 76, 65, 0, 0, 0, 0, 8, 178, 76, 65, 0, 0, 222, 194, 255, 255, 143, 222, 252, 202, 78, 65, 0, 0, 0, 0, 36, 199, 74, 65, 0, 0, 222, 194, 255, 255, 143, 222, 220, 251, 66, 65, 0, 0, 64, 64, 209, 146, 85, 65, 0, 0, 222, 194, 255, 255, 143, 222, 17, 234, 75, 65, 0, 0, 0, 0, 206, 104, 77, 65, 0, 0, 222, 194, 255, 255, 143, 222, 3, 178, 76, 65, 0, 0, 0, 0, 8, 178, 76, 65, 0, 0, 222, 194, 255, 255, 143, 222, 220, 251, 66, 65, 0, 0, 64, 64, 209, 146, 85, 65, 0, 0, 222, 194, 255, 255, 143, 222, 94, 99, 73, 65, 0, 0, 0, 0, 1, 184, 79, 65, 0, 0, 221, 194, 255, 255, 143, 222, 17, 234, 75, 65, 0, 0, 0, 0, 206, 104, 77, 65, 0, 0, 221, 194, 255, 255, 143, 222, 220, 251, 66, 65, 0, 0, 64, 64, 209, 146, 85, 65, 0, 0, 221, 194, 255, 255, 143, 222, 218, 251, 66, 65, 0, 0, 0, 0, 208, 146, 85, 65, 0, 0, 221, 194, 255, 255, 143, 222, 251, 202, 78, 65, 0, 0, 64, 64, 35, 199, 74, 65, 0, 0, 222, 194, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 255, 255, 32, 189, 255, 127, 1, 128, 251, 202, 78, 65, 0, 0, 64, 64, 35, 199, 74, 65, 255, 255, 32, 189, 255, 127, 1, 128, 252, 202, 78, 65, 0, 0, 0, 0, 36, 199, 74, 65, 255, 255, 32, 189, 255, 127, 1, 128, 26, 62, 129, 65, 0, 0, 0, 0, 81, 169, 129, 65, 254, 255, 32, 189, 255, 127, 1, 128, 248, 125, 131, 65, 0, 0, 0, 0, 60, 31, 132, 65, 254, 255, 32, 189, 255, 127, 1, 128, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 254, 255, 32, 189, 255, 127, 1, 128, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 254, 255, 222, 66, 255, 127, 1, 128, 55, 144, 121, 65, 0, 0, 0, 0, 58, 144, 121, 65, 254, 255, 222, 66, 255, 127, 1, 128, 26, 62, 129, 65, 0, 0, 0, 0, 81, 169, 129, 65, 254, 255, 222, 66, 255, 127, 1, 128, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 255, 255, 33, 189, 254, 127, 1, 128, 252, 202, 78, 65, 0, 0, 0, 0, 36, 199, 74, 65, 255, 255, 33, 189, 254, 127, 1, 128, 55, 144, 121, 65, 0, 0, 0, 0, 58, 144, 121, 65, 255, 255, 33, 189, 254, 127, 1, 128, 211, 44, 123, 65, 0, 0, 0, 0, 22, 133, 137, 65, 32, 189, 255, 127, 255, 255, 143, 222, 210, 44, 123, 65, 0, 0, 64, 64, 22, 133, 137, 65, 32, 189, 255, 127, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 32, 189, 255, 127, 255, 255, 143, 222, 86, 105, 125, 65, 0, 0, 0, 0, 102, 127, 136, 65, 32, 189, 255, 127, 255, 255, 143, 222, 119, 95, 128, 65, 0, 0, 0, 0, 56, 249, 134, 65, 32, 189, 255, 127, 255, 255, 143, 222, 68, 245, 130, 65, 0, 0, 0, 0, 54, 156, 132, 65, 32, 189, 255, 127, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 62, 31, 132, 65, 33, 189, 255, 127, 255, 255, 144, 222, 248, 125, 131, 65, 0, 0, 0, 0, 60, 31, 132, 65, 33, 189, 255, 127, 255, 255, 144, 222, 68, 245, 130, 65, 0, 0, 0, 0, 54, 156, 132, 65, 33, 189, 255, 127, 255, 255, 144, 222, 220, 251, 66, 65, 0, 0, 64, 64, 143, 82, 84, 193, 32, 61, 255, 127, 255, 127, 1, 128, 210, 44, 123, 65, 0, 0, 64, 64, 54, 219, 22, 193, 32, 61, 255, 127, 255, 127, 1, 128, 210, 44, 123, 65, 0, 0, 0, 0, 54, 219, 22, 193, 32, 61, 255, 127, 255, 127, 1, 128, 39, 228, 82, 65, 0, 0, 0, 0, 249, 235, 66, 193, 32, 61, 255, 127, 255, 127, 1, 128, 220, 251, 66, 65, 0, 0, 0, 0, 142, 82, 84, 193, 32, 61, 255, 127, 255, 127, 1, 128, 220, 251, 66, 65, 0, 0, 64, 64, 143, 82, 84, 193, 0, 128, 255, 255, 32, 189, 0, 192, 251, 202, 78, 65, 0, 0, 64, 64, 61, 30, 95, 193, 0, 128, 255, 255, 32, 189, 0, 192, 249, 125, 131, 65, 0, 0, 64, 64, 227, 166, 33, 193, 0, 128, 255, 255, 32, 189, 0, 192, 210, 44, 123, 65, 0, 0, 64, 64, 54, 219, 22, 193, 0, 128, 255, 255, 32, 189, 0, 192, 220, 251, 66, 65, 0, 0, 64, 64, 143, 82, 84, 193, 0, 0, 222, 194, 255, 255, 143, 222, 220, 251, 66, 65, 0, 0, 0, 0, 142, 82, 84, 193, 0, 0, 222, 194, 255, 255, 143, 222, 252, 202, 78, 65, 0, 0, 0, 0, 62, 30, 95, 193, 0, 0, 222, 194, 255, 255, 143, 222, 252, 202, 78, 65, 0, 0, 0, 0, 62, 30, 95, 193, 0, 0, 221, 194, 255, 255, 143, 222, 251, 202, 78, 65, 0, 0, 64, 64, 61, 30, 95, 193, 0, 0, 221, 194, 255, 255, 143, 222, 220, 251, 66, 65, 0, 0, 64, 64, 143, 82, 84, 193, 0, 0, 221, 194, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 227, 166, 33, 193, 254, 255, 32, 189, 255, 127, 1, 128, 251, 202, 78, 65, 0, 0, 64, 64, 61, 30, 95, 193, 254, 255, 32, 189, 255, 127, 1, 128, 252, 202, 78, 65, 0, 0, 0, 0, 62, 30, 95, 193, 254, 255, 32, 189, 255, 127, 1, 128, 29, 134, 93, 65, 0, 0, 0, 0, 26, 1, 79, 193, 254, 255, 222, 66, 255, 127, 1, 128, 247, 125, 131, 65, 0, 0, 0, 0, 225, 166, 33, 193, 254, 255, 222, 66, 255, 127, 1, 128, 249, 125, 131, 65, 0, 0, 64, 64, 227, 166, 33, 193, 254, 255, 222, 66, 255, 127, 1, 128, 29, 134, 93, 65, 0, 0, 0, 0, 26, 1, 79, 193, 254, 255, 32, 189, 255, 127, 1, 128, 210, 44, 123, 65, 0, 0, 0, 0, 54, 219, 22, 193, 32, 189, 255, 127, 255, 255, 143, 222, 210, 44, 123, 65, 0, 0, 64, 64, 54, 219, 22, 193, 32, 189, 255, 127, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 227, 166, 33, 193, 32, 189, 255, 127, 255, 255, 143, 222, 249, 125, 131, 65, 0, 0, 64, 64, 227, 166, 33, 193, 32, 189, 255, 127, 255, 255, 143, 222, 247, 125, 131, 65, 0, 0, 0, 0, 225, 166, 33, 193, 32, 189, 255, 127, 255, 255, 143, 222, 210, 44, 123, 65, 0, 0, 0, 0, 54, 219, 22, 193, 32, 189, 255, 127, 255, 255, 143, 222, 61, 84, 83, 65, 0, 0, 64, 64, 113, 177, 130, 193, 68, 124, 255, 127, 255, 127, 1, 128, 39, 73, 147, 65, 0, 0, 64, 64, 124, 113, 129, 193, 68, 124, 255, 127, 255, 127, 1, 128, 39, 73, 147, 65, 0, 0, 0, 0, 123, 113, 129, 193, 68, 124, 255, 127, 255, 127, 1, 128, 70, 27, 108, 65, 0, 0, 0, 0, 53, 82, 130, 193, 68, 124, 255, 127, 255, 127, 1, 128, 62, 84, 83, 65, 0, 0, 0, 0, 114, 177, 130, 193, 68, 124, 255, 127, 255, 127, 1, 128, 1, 143, 116, 65, 0, 0, 0, 0, 184, 49, 130, 193, 68, 124, 255, 127, 255, 127, 1, 128, 192, 175, 121, 65, 0, 0, 0, 0, 2, 30, 130, 193, 68, 124, 255, 127, 255, 127, 1, 128, 87, 241, 133, 65, 0, 0, 0, 0, 14, 216, 129, 193, 68, 124, 255, 127, 255, 127, 1, 128, 61, 84, 83, 65, 0, 0, 64, 64, 113, 177, 130, 193, 0, 128, 255, 255, 67, 252, 0, 192, 46, 207, 83, 65, 0, 0, 64, 64, 132, 176, 138, 193, 0, 128, 255, 255, 67, 252, 0, 192, 160, 134, 147, 65, 0, 0, 64, 64, 143, 112, 137, 193, 0, 128, 255, 255, 67, 252, 0, 192, 39, 73, 147, 65, 0, 0, 64, 64, 124, 113, 129, 193, 0, 128, 255, 255, 67, 252, 0, 192, 61, 84, 83, 65, 0, 0, 64, 64, 113, 177, 130, 193, 0, 0, 187, 131, 255, 255, 34, 254, 62, 84, 83, 65, 0, 0, 0, 0, 114, 177, 130, 193, 0, 0, 187, 131, 255, 255, 34, 254, 46, 207, 83, 65, 0, 0, 0, 0, 134, 176, 138, 193, 0, 0, 187, 131, 255, 255, 34, 254, 46, 207, 83, 65, 0, 0, 0, 0, 134, 176, 138, 193, 0, 0, 186, 131, 255, 255, 34, 254, 46, 207, 83, 65, 0, 0, 64, 64, 132, 176, 138, 193, 0, 0, 186, 131, 255, 255, 34, 254, 61, 84, 83, 65, 0, 0, 64, 64, 113, 177, 130, 193, 0, 0, 186, 131, 255, 255, 34, 254, 160, 134, 147, 65, 0, 0, 64, 64, 143, 112, 137, 193, 254, 255, 67, 252, 255, 127, 1, 128, 46, 207, 83, 65, 0, 0, 64, 64, 132, 176, 138, 193, 254, 255, 67, 252, 255, 127, 1, 128, 46, 207, 83, 65, 0, 0, 0, 0, 134, 176, 138, 193, 254, 255, 67, 252, 255, 127, 1, 128, 248, 205, 140, 65, 0, 0, 0, 0, 58, 164, 137, 193, 254, 255, 186, 3, 255, 127, 1, 128, 160, 134, 147, 65, 0, 0, 0, 0, 142, 112, 137, 193, 254, 255, 186, 3, 255, 127, 1, 128, 160, 134, 147, 65, 0, 0, 64, 64, 143, 112, 137, 193, 254, 255, 186, 3, 255, 127, 1, 128, 160, 134, 147, 65, 0, 0, 64, 64, 143, 112, 137, 193, 255, 255, 68, 252, 255, 127, 1, 128, 78, 200, 133, 65, 0, 0, 0, 0, 53, 218, 137, 193, 255, 255, 68, 252, 255, 127, 1, 128, 248, 205, 140, 65, 0, 0, 0, 0, 58, 164, 137, 193, 255, 255, 68, 252, 255, 127, 1, 128, 198, 205, 131, 65, 0, 0, 0, 0, 107, 233, 137, 193, 254, 255, 186, 3, 255, 127, 1, 128, 78, 200, 133, 65, 0, 0, 0, 0, 53, 218, 137, 193, 254, 255, 186, 3, 255, 127, 1, 128, 229, 138, 128, 65, 0, 0, 0, 0, 126, 2, 138, 193, 254, 255, 186, 3, 255, 127, 1, 128, 46, 207, 83, 65, 0, 0, 0, 0, 134, 176, 138, 193, 254, 255, 186, 3, 255, 127, 1, 128, 39, 73, 147, 65, 0, 0, 0, 0, 123, 113, 129, 193, 67, 252, 255, 127, 255, 255, 34, 254, 39, 73, 147, 65, 0, 0, 64, 64, 124, 113, 129, 193, 67, 252, 255, 127, 255, 255, 34, 254, 160, 134, 147, 65, 0, 0, 64, 64, 143, 112, 137, 193, 67, 252, 255, 127, 255, 255, 34, 254, 160, 134, 147, 65, 0, 0, 0, 0, 142, 112, 137, 193, 67, 252, 255, 127, 255, 255, 34, 254, 60, 170, 70, 65, 0, 0, 64, 64, 142, 225, 129, 64, 35, 156, 255, 127, 255, 127, 1, 128, 101, 105, 139, 65, 0, 0, 64, 64, 166, 105, 41, 64, 35, 156, 255, 127, 255, 127, 1, 128, 100, 105, 139, 65, 0, 0, 0, 0, 160, 105, 41, 64, 35, 156, 255, 127, 255, 127, 1, 128, 106, 225, 96, 65, 0, 0, 0, 0, 168, 54, 102, 64, 35, 156, 255, 127, 255, 127, 1, 128, 60, 170, 70, 65, 0, 0, 0, 0, 144, 225, 129, 64, 35, 156, 255, 127, 255, 127, 1, 128, 60, 170, 70, 65, 0, 0, 64, 64, 142, 225, 129, 64, 0, 128, 255, 255, 255, 255, 18, 206, 78, 83, 66, 65, 0, 0, 64, 64, 60, 41, 70, 64, 0, 128, 255, 255, 255, 255, 18, 206, 238, 61, 137, 65, 0, 0, 64, 64, 138, 159, 215, 63, 0, 128, 255, 255, 255, 255, 18, 206, 101, 105, 139, 65, 0, 0, 64, 64, 166, 105, 41, 64, 0, 128, 255, 255, 255, 255, 18, 206, 60, 170, 70, 65, 0, 0, 64, 64, 142, 225, 129, 64, 34, 28, 255, 127, 0, 0, 238, 241, 60, 170, 70, 65, 0, 0, 0, 0, 144, 225, 129, 64, 34, 28, 255, 127, 0, 0, 238, 241, 79, 83, 66, 65, 0, 0, 0, 0, 56, 41, 70, 64, 34, 28, 255, 127, 0, 0, 238, 241, 78, 83, 66, 65, 0, 0, 64, 64, 60, 41, 70, 64, 34, 28, 255, 127, 0, 0, 238, 241, 238, 61, 137, 65, 0, 0, 64, 64, 138, 159, 215, 63, 0, 0, 219, 227, 255, 127, 1, 128, 78, 83, 66, 65, 0, 0, 64, 64, 60, 41, 70, 64, 0, 0, 219, 227, 255, 127, 1, 128, 79, 83, 66, 65, 0, 0, 0, 0, 56, 41, 70, 64, 0, 0, 219, 227, 255, 127, 1, 128, 133, 0, 91, 65, 0, 0, 0, 0, 224, 88, 42, 64, 0, 0, 220, 227, 255, 127, 1, 128, 238, 61, 137, 65, 0, 0, 0, 0, 144, 159, 215, 63, 0, 0, 220, 227, 255, 127, 1, 128, 238, 61, 137, 65, 0, 0, 64, 64, 138, 159, 215, 63, 0, 0, 220, 227, 255, 127, 1, 128, 79, 83, 66, 65, 0, 0, 0, 0, 56, 41, 70, 64, 0, 0, 220, 227, 255, 127, 1, 128, 100, 105, 139, 65, 0, 0, 0, 0, 160, 105, 41, 64, 254, 255, 219, 99, 0, 0, 238, 241, 101, 105, 139, 65, 0, 0, 64, 64, 166, 105, 41, 64, 254, 255, 219, 99, 0, 0, 238, 241, 238, 61, 137, 65, 0, 0, 64, 64, 138, 159, 215, 63, 254, 255, 219, 99, 0, 0, 238, 241, 238, 61, 137, 65, 0, 0, 64, 64, 138, 159, 215, 63, 255, 255, 36, 156, 0, 0, 238, 241, 238, 61, 137, 65, 0, 0, 0, 0, 144, 159, 215, 63, 255, 255, 36, 156, 0, 0, 238, 241, 100, 105, 139, 65, 0, 0, 0, 0, 160, 105, 41, 64, 255, 255, 36, 156, 0, 0, 238, 241) +}] + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_vsbjj"] +data = PackedVector3Array(21, 0, -20.5, 21, 0, -21, 21, -0.5, -21, 21, 0, 0, 21, 0, -20.5, 21, -0.5, -21, 21, -0.5, -21, 21, 0, 20.5, 21, 0, 0, 21, -0.5, -21, 21, 0, 21, 21, 0, 20.5, 21, -0.5, -21, 21, -0.5, 21, 21, 0, 21, 12.7446, 0, 12.8381, -14.3352, 0, -13.9155, 12.7935, 0, 12.7935, 15.5977, 0, 15.5977, 20.5, 0, 20.5, 16.1553, 0, 16.2077, -14.3352, 0, -13.9155, -13.9155, 0, -13.9155, 12.7935, 0, 12.7935, -20.5, 0, -20.006, -20.5, 0, -20.5, -14.9155, 0, -14.9155, -15.3474, 0, -14.9155, -20.5, 0, -20.006, -14.9155, 0, -14.9155, 12.5868, 0, 12.9824, -9.5, 0, -8, 12.7446, 0, 12.8381, -9.5, 0, -8, -14.3352, 0, -13.9155, 12.7446, 0, 12.8381, 16.1553, 0, 16.2077, 20.5, 0, 20.5, 16.4365, 0, 16.5153, 16.4365, 0, 16.5153, 20.5, 0, 20.5, 16.3698, 0, 16.5763, -15.836, 0, -14.9155, -20.5, 0, -20.006, -15.3474, 0, -14.9155, -14.3352, 0, -13.9155, -9.5, 0, -8, -14.9198, 0, -13.9155, 20.5, 0, 20.5, -20.5, 0, 20.5, -3.7762, 0, 16.7738, -20.5, 0, 20.5, -8.4384, 0, 10.9587, -3.7762, 0, 16.7738, 0.5757, 0, 13.9307, 20.5, 0, 20.5, -3.7762, 0, 16.7738, -3.7762, 0, 16.7738, -8.4384, 0, 10.9587, -4.3231, 0, 15.9366, -4.3231, 0, 15.9366, -8.4384, 0, 10.9587, -0.6394, 0, 13.5301, -20.5, 0, 20.5, -9.5, 0, 8, -8.4384, 0, 10.9587, 0.5814, 0, 13.927, 20.5, 0, 20.5, 0.5757, 0, 13.9307, -2.3991, 0, 10.9587, 20.5, 0, 20.5, 0.0345, 0, 13.0898, 20.5, 0, 20.5, 0.5814, 0, 13.927, 0.0345, 0, 13.0898, 0.0345, 0, 13.0898, -8.4384, 0, 10.9587, -2.3991, 0, 10.9587, -0.6394, 0, 13.5301, -8.4384, 0, 10.9587, 0.0345, 0, 13.0898, -8.4384, 0, 10.9587, -9.5, 0, 8, -8.4384, 0, 9.9587, -8.4384, 0, 9.9587, -9.5, 0, 8, -4.7991, 0, 9.9587, 15.8382, 0, 17.0622, 20.5, 0, 20.5, 15.6984, 0, 17.19, 15.6984, 0, 17.19, 7.5616, 0, 10.9587, 15.0508, 0, 16.4815, 20.5, 0, 20.5, -2.3991, 0, 10.9587, 15.6984, 0, 17.19, -2.3991, 0, 10.9587, 7.5616, 0, 10.9587, 15.6984, 0, 17.19, 12.1865, 0, 13.3483, -9.5, 0, -8, 12.5868, 0, 12.9824, 13.542, 0, 14.8311, 7.5616, 0, 9.9587, 12.1865, 0, 13.3483, 7.5616, 0, 9.9587, -9.5, 0, -8, 12.1865, 0, 13.3483, 16.3698, 0, 16.5763, 20.5, 0, 20.5, 16.0466, 0, 16.8717, 15.0508, 0, 16.4815, 7.5616, 0, 10.9587, 7.5616, 0, 9.9587, 16.0466, 0, 16.8717, 20.5, 0, 20.5, 15.8382, 0, 17.0622, 15.0508, 0, 16.4815, 7.5616, 0, 9.9587, 13.542, 0, 14.8311, 7.5616, 0, 9.9587, -9.5, 0, 8, -2.2258, 0, 7.4156, -9.5, 0, 8, -9.5, 0, -8, -6.004, 0, 3.8354, -2.2258, 0, 7.4156, -9.5, 0, 8, -6.004, 0, 3.8354, -6.004, 0, 3.8354, -9.5, 0, -8, -5.3161, 0, 3.1095, -9.5, 0, -8, 7.5616, 0, 9.9587, -1.538, 0, 6.6897, 7.5616, 0, 9.9587, -2.2258, 0, 7.4156, -1.538, 0, 6.6897, -1.538, 0, 6.6897, -5.3161, 0, 3.1095, -9.5, 0, -8, 7.5616, 0, 9.9587, -4.7991, 0, 9.9587, -9.5, 0, 8, -9.5, 0, 8, -20.5, 0, 20.5, -10.5, 0, 8, -20.5, 0, 20.5, -20.5, 0, -20.006, -18.7029, 0, -13.9155, -15.4271, 0, -13.9155, -10.5, 0, -8, -18.7029, 0, -13.9155, -16.0972, 0, 7.9521, -20.5, 0, 20.5, -16.9359, 0, 7.1574, -20.5, 0, 20.5, -18.7029, 0, -13.9155, -16.9359, 0, 7.1574, -18.7029, 0, -13.9155, -10.5, 0, -8, -16.9359, 0, 7.1574, -16.9359, 0, 7.1574, -10.5, 0, -8, -16.2481, 0, 6.4315, -16.2481, 0, 6.4315, -10.5, 0, -8, -15.7345, 0, 6.9182, -18.7029, 0, -13.9155, -20.5, 0, -20.006, -18.7029, 0, -14.9155, -18.7029, 0, -14.9155, -20.5, 0, -20.006, -16.26, 0, -14.9155, -14.9198, 0, -13.9155, -9.5, 0, -8, -10.5, 0, -8, -16.26, 0, -14.9155, -20.5, 0, -20.006, -15.836, 0, -14.9155, -14.9198, 0, -13.9155, -10.5, 0, -8, -15.4271, 0, -13.9155, -10.5, 0, 8, -20.5, 0, 20.5, -13.1578, 0, 10.7376, -13.1578, 0, 10.7376, -20.5, 0, 20.5, -16.0972, 0, 7.9521, -10.5, 0, -8, -10.5, 0, 8, -12.4699, 0, 10.0117, -10.5, 0, 8, -13.1578, 0, 10.7376, -12.4699, 0, 10.0117, -15.7345, 0, 6.9182, -10.5, 0, -8, -12.4699, 0, 10.0117, -14.8474, 0, -14.9155, -20.5, 0, -20.5, -14.8431, 0, -14.9155, -13.8301, 0, -13.9155, 20.5, 0, 20.006, -13.8352, 0, -13.9155, -20.5, 0, -20.5, -20.494, 0, -20.5, -14.8431, 0, -14.9155, -13.8352, 0, -13.9155, 20.5, 0, 20.006, -13.9155, 0, -13.9155, -14.9155, 0, -14.9155, -20.5, 0, -20.5, -14.8474, 0, -14.9155, 20.5, 0, 20.006, 20.5, 0, 20.5, 12.9246, 0, 12.6736, 12.7935, 0, 12.7935, -13.9155, 0, -13.9155, 12.9246, 0, 12.6736, 12.9246, 0, 12.6736, 20.5, 0, 20.5, 15.5977, 0, 15.5977, -13.9155, 0, -13.9155, 20.5, 0, 20.006, 12.9246, 0, 12.6736, 13.1807, 0, -12.1826, 9.5, 0, -8, 12.1865, 0, -13.2702, 9.5, 0, -8, 7.5616, 0, -10.0162, 12.1865, 0, -13.2702, 15.6054, 0, -16.2647, 12.9246, 0, -13.9449, 15.2849, 0, -16.2743, 16.4755, 0, -17.239, 20.5, 0, -20.5, 16.7228, 0, -17.2315, 12.9246, 0, -13.9449, 7.5616, 0, -10.0162, 15.2849, 0, -16.2743, 12.1865, 0, -13.2702, 7.5616, 0, -10.0162, 12.9246, 0, -13.9449, 16.7428, 0, -16.2305, 13.8452, 0, -12.9378, 15.6054, 0, -16.2647, 16.7228, 0, -17.2315, 20.5, 0, -20.5, 17.6006, 0, -17.2052, 13.8452, 0, -12.9378, 12.9246, 0, -13.9449, 15.6054, 0, -16.2647, 7.5616, 0, -10.0162, 9.5, 0, -8, 4.6621, 0, -10.0162, 14.7567, 0, -16.2901, 7.5616, 0, -11.0162, 13.2081, 0, -16.3366, 7.5616, 0, -11.0162, -20.494, 0, -20.5, 13.2081, 0, -16.3366, -20.494, 0, -20.5, 20.5, 0, -20.5, 13.2381, 0, -17.3362, 13.2081, 0, -16.3366, -20.494, 0, -20.5, 13.2381, 0, -17.3362, 13.2381, 0, -17.3362, 20.5, 0, -20.5, 16.0678, 0, -17.2512, 15.2849, 0, -16.2743, 7.5616, 0, -10.0162, 7.5616, 0, -11.0162, 16.0678, 0, -17.2512, 20.5, 0, -20.5, 16.4755, 0, -17.239, 15.2849, 0, -16.2743, 7.5616, 0, -11.0162, 14.7567, 0, -16.2901, 2.2626, 0, -11.0162, -20.494, 0, -20.5, 7.5616, 0, -11.0162, 17.4265, 0, 2.6471, 20.5, 0, 20.006, 14.055, 0, 3.5971, 15.6984, 0, -9.4285, 20.5, 0, 20.006, 17.4265, 0, 2.6471, 9.5, 0, -8, 15.6984, 0, -9.4285, 17.1552, 0, 1.6846, 15.6984, 0, -9.4285, 17.4265, 0, 2.6471, 17.1552, 0, 1.6846, 17.1552, 0, 1.6846, 13.6876, 0, 2.6617, 9.5, 0, -8, 15.6984, 0, -9.4285, 9.5, 0, -8, 13.1807, 0, -12.1826, 20.5, 0, -20.5, 20.5, 0, 20.006, 16.4365, 0, -10.1032, 20.5, 0, 20.006, 15.6984, 0, -9.4285, 16.4365, 0, -10.1032, 18.4107, 0, -16.1804, 13.8452, 0, -12.9378, 16.7428, 0, -16.2305, 20.5, 0, -20.5, 16.4365, 0, -10.1032, 18.4107, 0, -16.1804, 16.4365, 0, -10.1032, 13.8452, 0, -12.9378, 18.4107, 0, -16.1804, 17.6006, 0, -17.2052, 20.5, 0, -20.5, 18.4407, 0, -17.18, 20.5, 0, -20.5, 18.4107, 0, -16.1804, 18.4407, 0, -17.18, 14.055, 0, 3.5971, 20.5, 0, 20.006, 12.4166, 0, 4.0588, 20.5, 0, 20.006, 9.5, 0, 8, 12.4166, 0, 4.0588, 9.5, 0, 8, 9.5, 0, -8, 12.1453, 0, 3.0963, 12.4166, 0, 4.0588, 9.5, 0, 8, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 12.1453, 0, 3.0963, 9.5, 0, -8, -13.7954, 0, -13.9155, 8.5, 0, 8, -13.8301, 0, -13.9155, -14.8422, 0, -14.9155, -20.494, 0, -20.5, -14.8127, 0, -14.9155, 8.5, 0, 8, 20.5, 0, 20.006, -13.8301, 0, -13.9155, 9.5, 0, 8, 20.5, 0, 20.006, 8.5, 0, 8, 4.6621, 0, -10.0162, 9.5, 0, -8, 8.5, 0, -8, 1.5039, 0, -11.0162, -20.494, 0, -20.5, 2.2626, 0, -11.0162, 4.6621, 0, -10.0162, 8.5, 0, -8, 3.8234, 0, -10.0162, -12.9223, 0, -13.9155, -8.4384, 0, -10.0162, -13.7954, 0, -13.9155, -14.8127, 0, -14.9155, -20.494, 0, -20.5, -14.0722, 0, -14.9155, -8.4384, 0, -10.0162, 8.5, 0, 8, -13.7954, 0, -13.9155, 3.8234, 0, -10.0162, 8.5, 0, -8, -8.4384, 0, -10.0162, 8.5, 0, -8, 8.5, 0, 8, 6.2515, 0, -5.6231, 8.5, 0, 8, -8.4384, 0, -10.0162, 2.1518, 0, -2.4161, 6.2515, 0, -5.6231, 8.5, 0, 8, 2.1518, 0, -2.4161, 2.1518, 0, -2.4161, -8.4384, 0, -10.0162, 1.5356, 0, -3.2038, -8.4384, 0, -10.0162, 8.5, 0, -8, 5.6353, 0, -6.4107, 8.5, 0, -8, 6.2515, 0, -5.6231, 5.6353, 0, -6.4107, 5.6353, 0, -6.4107, 1.5356, 0, -3.2038, -8.4384, 0, -10.0162, -12.1239, 0, -13.9155, -8.4384, 0, -11.0162, -12.9223, 0, -13.9155, -14.0722, 0, -14.9155, -20.494, 0, -20.5, -13.3951, 0, -14.9155, -8.4384, 0, -11.0162, -8.4384, 0, -10.0162, -12.9223, 0, -13.9155, -10.7029, 0, -13.9155, -8.4384, 0, -11.0162, -12.1239, 0, -13.9155, 1.5039, 0, -11.0162, -8.4384, 0, -11.0162, -10.7029, 0, -13.9155, -20.494, 0, -20.5, 1.5039, 0, -11.0162, -10.7029, 0, -14.9155, 1.5039, 0, -11.0162, -10.7029, 0, -13.9155, -10.7029, 0, -14.9155, -10.7029, 0, -14.9155, -13.3951, 0, -14.9155, -20.494, 0, -20.5, 21, 0, 21, 21, -0.5, 21, -21, -0.5, 21, 20.5, 0, 21, 21, 0, 21, -21, -0.5, 21, -21, -0.5, 21, 0, 0, 21, 20.5, 0, 21, -20.5, 0, 21, 0, 0, 21, -21, -0.5, 21, -21, -0.5, 21, -21, 0, 21, -20.5, 0, 21, -21, 0, 20.5, -21, 0, 21, -21, -0.5, 21, -21, 0, -0.0001, -21, 0, 20.5, -21, -0.5, 21, -21, -0.5, 21, -21, 0, -20.5, -21, 0, -0.0001, -21, -0.5, 21, -21, 0, -21, -21, 0, -20.5, -21, -0.5, 21, -21, -0.5, -21, -21, 0, -21, -21, -0.5, 21, 21, -0.5, 21, 21, -0.5, -21, 21, -0.5, -21, -21, -0.5, -21, -21, -0.5, 21, -20.5, 0, -21, -21, 0, -21, 21, -0.5, -21, 21, -0.5, -21, 0, 0, -21, -20.5, 0, -21, 20.5, 0, -21, 0, 0, -21, 21, -0.5, -21, 21, -0.5, -21, 21, 0, -21, 20.5, 0, -21, -21, 0, -21, -21, -0.5, -21, 21, -0.5, -21, 21, 2, 21.1667, 21, 3, 21.5, 21, 2, 21, 21, 3, 21.5, 21, 3, 21, 21, 2, 21, 21, 2, 21.5, 21, 3, 21.5, 21, 2, 21.3333, 21, 2, 21.3333, 21, 3, 21.5, 21, 2, 21.1667, 21, 3, 21.5, -21, 3, 21.5, -20.5, 3, 21, -20.5, 3, 21, -21, 3, 21.5, -21, 3, 21, -20.5, 3, 20.5119, 21, 3, 21.5, -20.5, 3, 21, -20.5116, 3, 20.5116, -20.5, 3, 20.5119, -20.5, 3, 21, -20.5, 3, 21, -21, 3, 20.5, -20.5116, 3, 20.5116, -20.5, 3, 20.5, 20.5, 3, 20.5, -20.5, 3, 20.506, -20.5119, 3, 20.5, -20.5, 3, 20.5, -20.5118, 3, 20.5059, -20.5118, 3, 20.5059, -21, 3, 20.5, -20.5119, 3, 20.5, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5118, 3, 20.5059, 20.5, 3, 20.5, 20.5, 3, 21, -20.5, 3, 20.506, 21, 3, 21, 21, 3, 21.5, 20.5, 3, 21, -20.5, 3, 20.506, 20.5, 3, 21, -20.5, 3, 20.5119, -20.5118, 3, 20.5059, -20.5, 3, 20.506, -20.5116, 3, 20.5116, -20.5116, 3, 20.5116, -21, 3, 20.5, -20.5118, 3, 20.5059, -20.5, 3, 20.506, -20.5, 3, 20.5119, -20.5116, 3, 20.5116, 20.5, 3, 21, 21, 3, 21.5, -20.5, 3, 20.5119, 21, 2, 21.5, 21, 0, 21.5, -21, 0, 21.5, -21, 0, 21.5, 21, 3, 21.5, 21, 2, 21.5, -21, 2, 21.5, -21, 3, 21.5, 21, 3, 21.5, 21, 3, 21.5, -21, 0, 21.5, -21, 2, 21.5, -21, 2, 21.1667, -21, 3, 21, -21, 2, 21.5, -21, 3, 21, -21, 3, 21.5, -21, 2, 21.5, -21, 2, 21, -21, 3, 21, -21, 2, 21.1667, 20.5, 0, 21, 0, 0, 21, -21, 0, 21.5, 20.5025, 0, 21.0059, 21, 0, 21, 20.5, 0, 21, 20.5, 0, 21, -21, 0, 21.5, 20.5025, 0, 21.0059, -21, 0, 21.5, 21, 0, 21.5, 20.6464, 0, 21.3536, 21, 0, 21.5, 21, 0, 21, 20.6464, 0, 21.3536, 20.5025, 0, 21.0059, -21, 0, 21.5, 20.6464, 0, 21.3536, 20.6464, 0, 21.3536, 21, 0, 21, 20.5025, 0, 21.0059, -21, 0, 21.5, 0, 0, 21, -20.6464, 0, 21.3536, 0, 0, 21, -20.5, 0, 21, -20.6464, 0, 21.3536, -20.75, 0, 21.25, -21, 0, 21.5, -20.6464, 0, 21.3536, -20.6464, 0, 21.3536, -20.5, 0, 21, -20.75, 0, 21.25, -20.5, 2.9643, 20.5, 20.5, 0.0357, 20.5, -20.5, 3, 20.5, 20.5, 0.0357, 20.5, 20.5, 3, 20.5, -20.5, 3, 20.5, 20.5, 0, 20.5, 20.5, 0.0357, 20.5, -20.5, 2.9643, 20.5, -20.5, 0, 20.5, 20.5, 0, 20.5, -20.5, 2.9643, 20.5, 21, 2, -21.1667, 21, 3, -21, 21, 2, -21.5, 21, 3, -21, 21, 3, -21.5, 21, 2, -21.5, 21, 2, -21, 21, 3, -21, 21, 2, -21.1667, -20.5, 3, -21, 20.5, 3, -20.5, -20.5, 3, -20.5, -21, 3, -21, -21, 3, -21.5, -20.5, 3, -21, -21, 3, -21.5, 20.5, 3, -20.5, -20.5, 3, -21, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5116, 3, -20.5116, 20.5116, 3, -20.5116, 21, 3, -20.5, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5, 3, -20.5119, 20.5116, 3, -20.5116, 20.5, 3, -20.5, -21, 3, -21.5, 20.5, 3, -20.5119, -21, 3, -21.5, 21, 3, -21.5, 20.5, 3, -21, 20.5, 3, -21, 21, 3, -21.5, 21, 3, -21, 20.5, 3, -20.5119, -21, 3, -21.5, 20.5, 3, -21, 20.5116, 3, -20.5116, 20.5, 3, -20.5119, 20.5, 3, -21, -20.5, 0.0357, -20.5, 20.5, 2.9643, -20.5, -20.494, 0, -20.5, -20.5, 0.0357, -20.5, -20.494, 0, -20.5, -20.5, 0, -20.5, 20.5, 0, -20.5, -20.494, 0, -20.5, 20.5, 2.9643, -20.5, 20.5, 3, -20.5, 20.5119, 3, -20.5, 21, 3, -20.5, 20.5, 3, -20.5, 20.5, 2.9643, -20.5, -20.5, 0.0357, -20.5, -20.5, 3, -20.5, 20.5, 3, -20.5, -20.5, 0.0357, -20.5, -21, 2, -21.1667, -21, 3, -21.5, -21, 2, -21, -21, 3, -21.5, -21, 3, -21, -21, 2, -21, -21, 2, -21.5, -21, 3, -21.5, -21, 2, -21.3333, -21, 2, -21.3333, -21, 3, -21.5, -21, 2, -21.1667, 21, 0, -21.5, 0, 0, -21, 20.6464, 0, -21.3536, 0, 0, -21, 20.5, 0, -21, 20.6464, 0, -21.3536, 20.75, 0, -21.25, 21, 0, -21.5, 20.6464, 0, -21.3536, 20.6464, 0, -21.3536, 20.5, 0, -21, 20.75, 0, -21.25, -20.5, 0, -21, 0, 0, -21, 21, 0, -21.5, -20.5025, 0, -21.0059, -21, 0, -21, -20.5, 0, -21, -20.5, 0, -21, 21, 0, -21.5, -20.5025, 0, -21.0059, 21, 0, -21.5, -21, 0, -21.5, -20.6464, 0, -21.3536, -21, 0, -21.5, -21, 0, -21, -20.6464, 0, -21.3536, -20.5025, 0, -21.0059, 21, 0, -21.5, -20.6464, 0, -21.3536, -20.6464, 0, -21.3536, -21, 0, -21, -20.5025, 0, -21.0059, 21, 2, -21.5, 21, 3, -21.5, -21, 3, -21.5, -21, 3, -21.5, 21, 0, -21.5, 21, 2, -21.5, -21, 2, -21.5, -21, 0, -21.5, 21, 0, -21.5, 21, 0, -21.5, -21, 3, -21.5, -21, 2, -21.5, 21.5, 2, -21, 21.5, 0, -21, 21.5, 3, 21, 21.5, 3, 21, 21.5, 3, -21, 21.5, 2, -21, 21.5, 2, 21, 21.5, 3, 21, 21.5, 0, -21, 21.5, 0, -21, 21.5, 0, 21, 21.5, 2, 21, 21, 3, 21, 20.5, 3, 21, 21, 3, 20.5, 21, 3, 20.5, 21.5, 3, 21, 21, 3, 21, 21, 3, 20.5, 20.5, 3, 20.5, 20.5, 3, -20.5, 21, 3, 20.5, 20.5, 3, 21, 20.5, 3, 20.5, 20.5119, 3, -20.5, 21.5, 3, 21, 21, 3, 20.5, 20.5119, 3, -20.5, 21, 3, 20.5, 20.5, 3, -20.5, 20.5116, 3, -20.5116, 20.5119, 3, -20.5, 20.5, 3, -20.5119, 20.5, 3, -20.5119, 20.5, 3, -21, 20.5116, 3, -20.5116, 20.5119, 3, -20.5, 20.5, 3, -20.5, 20.5, 3, -20.5119, 21, 3, -21, 21.5, 3, -21, 21, 3, -20.5, 21, 3, -20.5, 20.5, 3, -21, 21, 3, -21, 21.5, 3, -21, 21.5, 3, 21, 21, 3, -20.5, 20.5116, 3, -20.5116, 20.5, 3, -21, 21, 3, -20.5, 21, 3, -20.5, 20.5119, 3, -20.5, 20.5116, 3, -20.5116, 21, 3, -20.5, 21.5, 3, 21, 20.5119, 3, -20.5, 21.1667, 2, 21, 21.5, 3, 21, 21.3333, 2, 21, 21.3333, 2, 21, 21.5, 3, 21, 21.5, 2, 21, 21, 2, 21, 21, 3, 21, 21.5, 3, 21, 21, 2, 21, 21.5, 3, 21, 21.1667, 2, 21, 20.5, 3, -20.5, 20.5, 3, 20.5, 20.5, 0.0357, 20.5, 20.5, 3, -20.5, 20.5, 0.0357, 20.5, 20.5, 2.9643, -20.5, 20.5, 2.9643, -20.5, 20.5, 0, 20.006, 20.5, 0, -20.5, 20.5, 2.9643, -20.5, 20.5, 0, 20.5, 20.5, 0, 20.006, 20.5, 0.0357, 20.5, 20.5, 0, 20.5, 20.5, 2.9643, -20.5, 21.5, 0, 21, 21.5, 0, -21, 21.3536, 0, 20.6465, 21.5, 0, -21, 21, 0, 20.5, 21.3536, 0, 20.6465, 21.25, 0, 20.75, 21.5, 0, 21, 21.3536, 0, 20.6465, 21.3536, 0, 20.6465, 21, 0, 20.5, 21.25, 0, 20.75, 21, 0, 20.5, 21.5, 0, -21, 21, 0, 0, 21, 0, 0, 21.5, 0, -21, 21.3536, 0, -20.6464, 21.25, 0, -20.75, 21, 0, -20.5, 21.3536, 0, -20.6464, 21.3536, 0, -20.6464, 21.5, 0, -21, 21.25, 0, -20.75, 21, 0, -20.5, 21, 0, 0, 21.3536, 0, -20.6464, 21.1667, 2, -21, 21, 3, -21, 21, 2, -21, 21.5, 2, -21, 21.5, 3, -21, 21, 3, -21, 21.5, 2, -21, 21, 3, -21, 21.1667, 2, -21, -20.5, 0.0357, -20.5, -20.5, 3, 20.5, -20.5, 3, -20.5, -20.5, 3, 20.5, -20.5, 3, 20.5119, -20.5, 3, 20.506, -20.5, 2.9643, 20.5, -20.5, 3, 20.5, -20.5, 0.0357, -20.5, -20.5, 3, 21, -20.5, 3, 20.506, -20.5, 3, 20.5, -20.5, 3, 21, -20.5, 3, 20.5119, -20.5, 3, 20.506, -20.5, 2.9643, 20.5, -20.5, 0, -20.006, -20.5, 0, 20.5, -20.5, 2.9643, 20.5, -20.5, 0, -20.5, -20.5, 0, -20.006, -20.5, 0, -20.5, -20.5, 2.9643, 20.5, -20.5, 0.0357, -20.5, -21, 3, 21, -21.5, 3, 21, -21, 3, 20.5, -21, 3, 20.5, -20.5, 3, 21, -21, 3, 21, -21.5, 3, 21, -21.5, 3, -21, -21, 3, 20.5, -20.5116, 3, 20.5116, -20.5, 3, 21, -21, 3, 20.5, -20.5118, 3, 20.5059, -20.5116, 3, 20.5116, -21, 3, 20.5, -20.5119, 3, 20.5, -20.5118, 3, 20.5059, -21, 3, 20.5, -21, 3, 20.5, -21.5, 3, -21, -20.5119, 3, 20.5, -20.5, 3, 20.506, -20.5, 3, 20.5119, -20.5118, 3, 20.5059, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5119, 3, 20.5, -20.5119, 3, 20.5, -21.5, 3, -21, -20.5, 3, 20.5, -20.5, 3, 20.506, -20.5118, 3, 20.5059, -20.5119, 3, 20.5, -20.5, 3, 20.5119, -20.5116, 3, 20.5116, -20.5118, 3, 20.5059, -20.5, 3, 20.5119, -20.5, 3, 21, -20.5116, 3, 20.5116, -21, 3, -21, -20.5, 3, -21, -21, 3, -20.5, -21, 3, -20.5, -21.5, 3, -21, -21, 3, -21, -20.5, 3, -20.5, -20.5, 3, 20.5, -21, 3, -20.5, -21, 3, -20.5, -20.5, 3, -21, -20.5, 3, -20.5, -20.5, 3, 20.5, -21.5, 3, -21, -21, 3, -20.5, -21.1667, 2, 21, -21, 3, 21, -21, 2, 21, -21.5, 2, 21, -21.5, 3, 21, -21, 3, 21, -21.5, 2, 21, -21, 3, 21, -21.1667, 2, 21, -21.5, 2, 21, -21.5, 0, 21, -21.5, 3, -21, -21.5, 3, -21, -21.5, 3, 21, -21.5, 2, 21, -21.5, 2, -21, -21.5, 3, -21, -21.5, 0, 21, -21.5, 0, 21, -21.5, 0, -21, -21.5, 2, -21, -21.25, 0, 20.75, -21.5, 0, 21, -21, 0, 21, -21, 0, 21, -21, 0, 20.5, -21.25, 0, 20.75, -21, 0, -0.0001, -21.5, 0, 21, -21.3536, 0, 20.6464, -21.25, 0, 20.75, -21, 0, 20.5, -21.3536, 0, 20.6464, -21.3536, 0, 20.6464, -21.5, 0, 21, -21.25, 0, 20.75, -21, 0, 20.5, -21, 0, -0.0001, -21.3536, 0, 20.6464, -21.25, 0, -20.75, -21, 0, -20.5, -21, 0, -21, -21, 0, -21, -21.5, 0, -21, -21.25, 0, -20.75, -21.5, 0, -21, -21.5, 0, 21, -21.3536, 0, -20.6465, -21.5, 0, 21, -21, 0, -20.5, -21.3536, 0, -20.6465, -21.25, 0, -20.75, -21.5, 0, -21, -21.3536, 0, -20.6465, -21.3536, 0, -20.6465, -21, 0, -20.5, -21.25, 0, -20.75, -21, 0, -20.5, -21.5, 0, 21, -21, 0, -0.0001, -21, 2, -21, -21, 3, -21, -21.5, 3, -21, -21, 2, -21, -21.5, 3, -21, -21.1667, 2, -21, -21.1667, 2, -21, -21.5, 3, -21, -21.3333, 2, -21, -21.3333, 2, -21, -21.5, 3, -21, -21.5, 2, -21, 21.5, 0, 21, 21.3536, 0, 21.3536, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21.5, 2, 21, 21.5, 0, 21, 21.3536, 0, 21.3536, 21.5, 0, 21, 21, 0, 21, 21.3333, 2, 21, 21.5, 2, 21, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21.1667, 2, 21, 21.3333, 2, 21, 21.3536, 2, 21.3536, 21, 2, 21, 21.1667, 2, 21, 21.3536, 0, 21.3536, 21, 0, 21.5, 21, 2, 21.5, 21, 2, 21.5, 21.3536, 2, 21.3536, 21.3536, 0, 21.3536, 21, 0, 21.5, 21.3536, 0, 21.3536, 21, 0, 21, 21, 2, 21.1667, 21, 2, 21, 21.3536, 2, 21.3536, 21, 2, 21.3333, 21, 2, 21.1667, 21.3536, 2, 21.3536, 21.3536, 2, 21.3536, 21, 2, 21.5, 21, 2, 21.3333, 20.6464, 0, 21.3536, 21, 0, 21.5, 21, 0, 21, 20.5025, 0, 21.0059, 20.6464, 0, 21.3536, 21, 0, 21, 21, 0, 21, 20.5, 0, 21, 20.5025, 0, 21.0059, 21.25, 0, 20.75, 21.3536, 0, 20.6465, 21, 0, 20.5, 21, 0, 20.5, 21, 0, 21, 21.25, 0, 20.75, 21.25, 0, 20.75, 21, 0, 21, 21.5, 0, 21, 21.5, 0, 21, 21.3536, 0, 20.6465, 21.25, 0, 20.75, 21.25, 0, -20.75, 21.3536, 0, -20.6464, 21.5, 0, -21, 21.5, 0, -21, 21, 0, -21, 21.25, 0, -20.75, 21.25, 0, -20.75, 21, 0, -21, 21, 0, -20.5, 21, 0, -20.5, 21.3536, 0, -20.6464, 21.25, 0, -20.75, 20.75, 0, -21.25, 20.6464, 0, -21.3536, 20.5, 0, -21, 20.5, 0, -21, 21, 0, -21, 20.75, 0, -21.25, 20.75, 0, -21.25, 21, 0, -21, 21, 0, -21.5, 21, 0, -21.5, 20.6464, 0, -21.3536, 20.75, 0, -21.25, 21, 0, -21.5, 21.3536, 0, -21.3536, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21, 2, -21.5, 21, 0, -21.5, 21.3536, 0, -21.3536, 21, 0, -21.5, 21, 0, -21, 21, 2, -21.1667, 21, 2, -21.5, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21, 2, -21, 21, 2, -21.1667, 21.3536, 0, -21.3536, 21.5, 0, -21, 21.5, 2, -21, 21.5, 2, -21, 21.3536, 2, -21.3536, 21.3536, 0, -21.3536, 21.5, 0, -21, 21.3536, 0, -21.3536, 21, 0, -21, 21.1667, 2, -21, 21, 2, -21, 21.3536, 2, -21.3536, 21.3536, 2, -21.3536, 21.5, 2, -21, 21.1667, 2, -21, -21.25, 0, -20.75, -21.3536, 0, -20.6465, -21, 0, -20.5, -21, 0, -20.5, -21, 0, -21, -21.25, 0, -20.75, -21.25, 0, -20.75, -21, 0, -21, -21.5, 0, -21, -21.5, 0, -21, -21.3536, 0, -20.6465, -21.25, 0, -20.75, -21.5, 0, -21, -21.3536, 0, -21.3536, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21.5, 2, -21, -21.5, 0, -21, -21.3536, 0, -21.3536, -21.5, 0, -21, -21, 0, -21, -21.3333, 2, -21, -21.5, 2, -21, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21.1667, 2, -21, -21.3333, 2, -21, -21.3536, 2, -21.3536, -21, 2, -21, -21.1667, 2, -21, -21.3536, 0, -21.3536, -21, 0, -21.5, -21, 2, -21.5, -21, 2, -21.5, -21.3536, 2, -21.3536, -21.3536, 0, -21.3536, -21, 0, -21.5, -21.3536, 0, -21.3536, -21, 0, -21, -21, 2, -21.1667, -21, 2, -21, -21.3536, 2, -21.3536, -21, 2, -21.3333, -21, 2, -21.1667, -21.3536, 2, -21.3536, -21.3536, 2, -21.3536, -21, 2, -21.5, -21, 2, -21.3333, -20.6464, 0, -21.3536, -21, 0, -21.5, -21, 0, -21, -20.5025, 0, -21.0059, -20.6464, 0, -21.3536, -21, 0, -21, -21, 0, -21, -20.5, 0, -21, -20.5025, 0, -21.0059, -20.75, 0, 21.25, -20.6464, 0, 21.3536, -20.5, 0, 21, -20.5, 0, 21, -21, 0, 21, -20.75, 0, 21.25, -20.75, 0, 21.25, -21, 0, 21, -21, 0, 21.5, -21, 0, 21.5, -20.6464, 0, 21.3536, -20.75, 0, 21.25, -21, 0, 21.5, -21.3536, 0, 21.3536, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21, 2, 21.5, -21, 0, 21.5, -21.3536, 0, 21.3536, -21, 0, 21.5, -21, 0, 21, -21, 2, 21.1667, -21, 2, 21.5, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21, 2, 21, -21, 2, 21.1667, -21.3536, 0, 21.3536, -21.5, 0, 21, -21.5, 2, 21, -21.5, 2, 21, -21.3536, 2, 21.3536, -21.3536, 0, 21.3536, -21.5, 0, 21, -21.3536, 0, 21.3536, -21, 0, 21, -21.1667, 2, 21, -21, 2, 21, -21.3536, 2, 21.3536, -21.3536, 2, 21.3536, -21.5, 2, 21, -21.1667, 2, 21, -21.25, 0, 20.75, -21.3536, 0, 20.6464, -21.5, 0, 21, -21.5, 0, 21, -21, 0, 21, -21.25, 0, 20.75, -21.25, 0, 20.75, -21, 0, 21, -21, 0, 20.5, -21, 0, 20.5, -21.3536, 0, 20.6464, -21.25, 0, 20.75, -9.5, 3, 8, -9.5, 3, -8, -9.5, 0, -8, -9.5, 0, -8, -9.5, 0, 8, -9.5, 3, 8, -9.5, 3, 8, -10.5, 3, 8, -10.5, 3, -8, -10.5, 3, -8, -9.5, 3, -8, -9.5, 3, 8, -9.5, 3, 8, -9.5, 0, 8, -10.5, 0, 8, -10.5, 0, 8, -10.5, 3, 8, -9.5, 3, 8, -10.5, 3, -8, -10.5, 3, 8, -10.5, 0, 8, -10.5, 0, 8, -10.5, 0, -8, -10.5, 3, -8, -9.5, 0, -8, -9.5, 3, -8, -10.5, 3, -8, -10.5, 3, -8, -10.5, 0, -8, -9.5, 0, -8, 9.5, 3, 8, 9.5, 3, -8, 9.5, 0, -8, 9.5, 0, -8, 9.5, 0, 8, 9.5, 3, 8, 9.5, 3, 8, 8.5, 3, 8, 8.5, 3, -8, 8.5, 3, -8, 9.5, 3, -8, 9.5, 3, 8, 9.5, 3, 8, 9.5, 0, 8, 8.5, 0, 8, 8.5, 0, 8, 8.5, 3, 8, 9.5, 3, 8, 8.5, 3, -8, 8.5, 3, 8, 8.5, 0, 8, 8.5, 0, 8, 8.5, 0, -8, 8.5, 3, -8, 9.5, 0, -8, 9.5, 3, -8, 8.5, 3, -8, 8.5, 3, -8, 8.5, 0, -8, 9.5, 0, -8, -8.4384, 3, 10.9587, 7.5616, 3, 10.9587, 7.5616, 0, 10.9587, -2.3991, 0, 10.9587, -8.4384, 0, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 10.9587, 7.5616, 0, 10.9587, -2.3991, 0, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 10.9587, -8.4384, 3, 10.9587, -8.4384, 3, 10.9587, -8.4384, 0, 10.9587, -8.4384, 0, 9.9587, -8.4384, 0, 9.9587, -8.4384, 3, 9.9587, -8.4384, 3, 10.9587, 7.5616, 3, 9.9587, -8.4384, 3, 9.9587, -8.4384, 0, 9.9587, -4.7991, 0, 9.9587, 7.5616, 0, 9.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, -8.4384, 0, 9.9587, -4.7991, 0, 9.9587, 7.5616, 0, 10.9587, 7.5616, 3, 10.9587, 7.5616, 3, 9.9587, 7.5616, 3, 9.9587, 7.5616, 0, 9.9587, 7.5616, 0, 10.9587, -8.4384, 3, -10.0162, 7.5616, 3, -10.0162, 7.5616, 0, -10.0162, 3.8234, 0, -10.0162, -8.4384, 0, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -10.0162, 4.6621, 0, -10.0162, 3.8234, 0, -10.0162, -8.4384, 3, -10.0162, 7.5616, 0, -10.0162, 4.6621, 0, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -10.0162, -8.4384, 3, -10.0162, -8.4384, 3, -10.0162, -8.4384, 0, -10.0162, -8.4384, 0, -11.0162, -8.4384, 0, -11.0162, -8.4384, 3, -11.0162, -8.4384, 3, -10.0162, 7.5616, 3, -11.0162, -8.4384, 3, -11.0162, -8.4384, 0, -11.0162, 2.2626, 0, -11.0162, 7.5616, 0, -11.0162, 7.5616, 3, -11.0162, 1.5039, 0, -11.0162, 2.2626, 0, -11.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, -8.4384, 0, -11.0162, 1.5039, 0, -11.0162, 7.5616, 0, -10.0162, 7.5616, 3, -10.0162, 7.5616, 3, -11.0162, 7.5616, 3, -11.0162, 7.5616, 0, -11.0162, 7.5616, 0, -10.0162, -18.7029, 3, -13.9155, -10.7029, 3, -13.9155, -10.7029, 0, -13.9155, -15.4271, 0, -13.9155, -18.7029, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -14.9198, 0, -13.9155, -15.4271, 0, -13.9155, -18.7029, 3, -13.9155, -14.3352, 0, -13.9155, -14.9198, 0, -13.9155, -18.7029, 3, -13.9155, -13.9155, 0, -13.9155, -14.3352, 0, -13.9155, -13.8352, 0, -13.9155, -13.9155, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -13.8301, 0, -13.9155, -13.8352, 0, -13.9155, -13.7954, 0, -13.9155, -13.8301, 0, -13.9155, -18.7029, 3, -13.9155, -12.9223, 0, -13.9155, -13.7954, 0, -13.9155, -18.7029, 3, -13.9155, -12.1239, 0, -13.9155, -12.9223, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -10.7029, 0, -13.9155, -12.1239, 0, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -13.9155, -18.7029, 3, -13.9155, -18.7029, 3, -13.9155, -18.7029, 0, -13.9155, -18.7029, 0, -14.9155, -18.7029, 0, -14.9155, -18.7029, 3, -14.9155, -18.7029, 3, -13.9155, -10.7029, 3, -14.9155, -18.7029, 3, -14.9155, -18.7029, 0, -14.9155, -13.3951, 0, -14.9155, -10.7029, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -14.0722, 0, -14.9155, -13.3951, 0, -14.9155, -10.7029, 3, -14.9155, -14.8127, 0, -14.9155, -14.0722, 0, -14.9155, -10.7029, 3, -14.9155, -14.8422, 0, -14.9155, -14.8127, 0, -14.9155, -14.8474, 0, -14.9155, -14.8422, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -14.9155, 0, -14.9155, -14.8474, 0, -14.9155, -15.3474, 0, -14.9155, -14.9155, 0, -14.9155, -10.7029, 3, -14.9155, -15.836, 0, -14.9155, -15.3474, 0, -14.9155, -10.7029, 3, -14.9155, -16.26, 0, -14.9155, -15.836, 0, -14.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -18.7029, 0, -14.9155, -16.26, 0, -14.9155, -10.7029, 0, -13.9155, -10.7029, 3, -13.9155, -10.7029, 3, -14.9155, -10.7029, 3, -14.9155, -10.7029, 0, -14.9155, -10.7029, 0, -13.9155, -16.9359, 3, 7.1574, -13.1577, 3, 10.7376, -13.1578, 0, 10.7376, -16.0972, 0, 7.9521, -16.9359, 0, 7.1574, -16.9359, 3, 7.1574, -16.9359, 3, 7.1574, -13.1578, 0, 10.7376, -16.0972, 0, 7.9521, -16.9359, 3, 7.1574, -16.2481, 3, 6.4315, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -13.1577, 3, 10.7376, -16.9359, 3, 7.1574, -16.9359, 3, 7.1574, -16.9359, 0, 7.1574, -16.2481, 0, 6.4315, -16.2481, 0, 6.4315, -16.2481, 3, 6.4315, -16.9359, 3, 7.1574, -12.4699, 3, 10.0117, -16.2481, 3, 6.4315, -16.2481, 0, 6.4315, -15.7345, 0, 6.9182, -12.4699, 0, 10.0117, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -16.2481, 0, 6.4315, -15.7345, 0, 6.9182, -13.1578, 0, 10.7376, -13.1577, 3, 10.7376, -12.4699, 3, 10.0117, -12.4699, 3, 10.0117, -12.4699, 0, 10.0117, -13.1578, 0, 10.7376, -6.004, 3, 3.8354, -2.2258, 3, 7.4156, -2.2258, 0, 7.4156, -2.2258, 0, 7.4156, -6.004, 0, 3.8354, -6.004, 3, 3.8354, -6.004, 3, 3.8354, -5.3161, 3, 3.1095, -1.538, 3, 6.6897, -1.538, 3, 6.6897, -2.2258, 3, 7.4156, -6.004, 3, 3.8354, -6.004, 3, 3.8354, -6.004, 0, 3.8354, -5.3161, 0, 3.1095, -5.3161, 0, 3.1095, -5.3161, 3, 3.1095, -6.004, 3, 3.8354, -1.538, 3, 6.6897, -5.3161, 3, 3.1095, -5.3161, 0, 3.1095, -5.3161, 0, 3.1095, -1.538, 0, 6.6897, -1.538, 3, 6.6897, -2.2258, 0, 7.4156, -2.2258, 3, 7.4156, -1.538, 3, 6.6897, -1.538, 3, 6.6897, -1.538, 0, 6.6897, -2.2258, 0, 7.4156, 2.1518, 3, -2.4161, 6.2515, 3, -5.6231, 6.2515, 0, -5.6231, 6.2515, 0, -5.6231, 2.1518, 0, -2.4161, 2.1518, 3, -2.4161, 2.1518, 3, -2.4161, 1.5356, 3, -3.2038, 5.6353, 3, -6.4107, 5.6353, 3, -6.4107, 6.2515, 3, -5.6231, 2.1518, 3, -2.4161, 2.1518, 3, -2.4161, 2.1518, 0, -2.4161, 1.5356, 0, -3.2038, 1.5356, 0, -3.2038, 1.5356, 3, -3.2038, 2.1518, 3, -2.4161, 5.6353, 3, -6.4107, 1.5356, 3, -3.2038, 1.5356, 0, -3.2038, 1.5356, 0, -3.2038, 5.6353, 0, -6.4107, 5.6353, 3, -6.4107, 6.2515, 0, -5.6231, 6.2515, 3, -5.6231, 5.6353, 3, -6.4107, 5.6353, 3, -6.4107, 5.6353, 0, -6.4107, 6.2515, 0, -5.6231, -3.7762, 3, 16.7738, 0.5814, 3, 13.927, 0.5814, 0, 13.927, 0.5757, 0, 13.9307, -3.7762, 0, 16.7738, -3.7762, 3, 16.7738, -3.7762, 3, 16.7738, 0.5814, 0, 13.927, 0.5757, 0, 13.9307, -3.7762, 3, 16.7738, -4.3231, 3, 15.9366, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, 0.5814, 3, 13.927, -3.7762, 3, 16.7738, -3.7762, 3, 16.7738, -3.7762, 0, 16.7738, -4.3231, 0, 15.9366, -4.3231, 0, 15.9366, -4.3231, 3, 15.9366, -3.7762, 3, 16.7738, 0.0345, 3, 13.0898, -4.3231, 3, 15.9366, -4.3231, 0, 15.9366, -0.6394, 0, 13.5301, 0.0345, 0, 13.0898, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, -4.3231, 0, 15.9366, -0.6394, 0, 13.5301, 0.5814, 0, 13.927, 0.5814, 3, 13.927, 0.0345, 3, 13.0898, 0.0345, 3, 13.0898, 0.0345, 0, 13.0898, 0.5814, 0, 13.927, 12.1865, 3, 13.3483, 15.6984, 3, 17.19, 15.6984, 0, 17.19, 13.542, 0, 14.8311, 12.1865, 0, 13.3483, 12.1865, 3, 13.3483, 12.1865, 3, 13.3483, 15.0508, 0, 16.4815, 13.542, 0, 14.8311, 12.1865, 3, 13.3483, 15.6984, 0, 17.19, 15.0508, 0, 16.4815, 12.1865, 3, 13.3483, 12.9246, 3, 12.6736, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 15.6984, 3, 17.19, 12.1865, 3, 13.3483, 12.7935, 0, 12.7935, 12.9246, 0, 12.6736, 12.1865, 3, 13.3483, 12.7446, 0, 12.8381, 12.7935, 0, 12.7935, 12.1865, 3, 13.3483, 12.5868, 0, 12.9824, 12.7446, 0, 12.8381, 12.1865, 3, 13.3483, 12.1865, 3, 13.3483, 12.1865, 0, 13.3483, 12.5868, 0, 12.9824, 12.9246, 0, 12.6736, 12.9246, 3, 12.6736, 12.1865, 3, 13.3483, 16.4365, 3, 16.5153, 12.9246, 3, 12.6736, 12.9246, 0, 12.6736, 16.1553, 0, 16.2077, 16.4365, 0, 16.5153, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 15.5977, 0, 15.5977, 16.1553, 0, 16.2077, 16.4365, 3, 16.5153, 12.9246, 0, 12.6736, 15.5977, 0, 15.5977, 15.6984, 0, 17.19, 15.6984, 3, 17.19, 16.4365, 3, 16.5153, 15.8382, 0, 17.0622, 15.6984, 0, 17.19, 16.4365, 3, 16.5153, 16.0466, 0, 16.8717, 15.8382, 0, 17.0622, 16.4365, 3, 16.5153, 16.4365, 3, 16.5153, 16.3698, 0, 16.5763, 16.0466, 0, 16.8717, 16.4365, 3, 16.5153, 16.4365, 0, 16.5153, 16.3698, 0, 16.5763, 12.1865, 3, -13.2702, 15.6984, 3, -9.4285, 15.6984, 0, -9.4285, 13.1807, 0, -12.1826, 12.1865, 0, -13.2702, 12.1865, 3, -13.2702, 12.1865, 3, -13.2702, 15.6984, 0, -9.4285, 13.1807, 0, -12.1826, 12.1865, 3, -13.2702, 12.9246, 3, -13.9449, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 15.6984, 3, -9.4285, 12.1865, 3, -13.2702, 12.1865, 3, -13.2702, 12.1865, 0, -13.2702, 12.9246, 0, -13.9449, 12.9246, 0, -13.9449, 12.9246, 3, -13.9449, 12.1865, 3, -13.2702, 16.4365, 3, -10.1032, 12.9246, 3, -13.9449, 12.9246, 0, -13.9449, 13.8452, 0, -12.9378, 16.4365, 0, -10.1032, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 12.9246, 0, -13.9449, 13.8452, 0, -12.9378, 15.6984, 0, -9.4285, 15.6984, 3, -9.4285, 16.4365, 3, -10.1032, 16.4365, 3, -10.1032, 16.4365, 0, -10.1032, 15.6984, 0, -9.4285, 13.2081, 3, -16.3366, 18.4107, 3, -16.1804, 18.4107, 0, -16.1804, 14.7567, 0, -16.2901, 13.2081, 0, -16.3366, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 15.2849, 0, -16.2743, 14.7567, 0, -16.2901, 15.6054, 0, -16.2647, 15.2849, 0, -16.2743, 13.2081, 3, -16.3366, 16.7428, 0, -16.2305, 15.6054, 0, -16.2647, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 18.4107, 0, -16.1804, 16.7428, 0, -16.2305, 13.2081, 3, -16.3366, 13.2381, 3, -17.3362, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 18.4107, 3, -16.1804, 13.2081, 3, -16.3366, 13.2081, 3, -16.3366, 13.2081, 0, -16.3366, 13.2381, 0, -17.3362, 13.2381, 0, -17.3362, 13.2381, 3, -17.3362, 13.2081, 3, -16.3366, 18.4407, 3, -17.18, 13.2381, 3, -17.3362, 13.2381, 0, -17.3362, 17.6006, 0, -17.2052, 18.4407, 0, -17.18, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 16.7228, 0, -17.2315, 17.6006, 0, -17.2052, 18.4407, 3, -17.18, 16.4755, 0, -17.239, 16.7228, 0, -17.2315, 16.0678, 0, -17.2512, 16.4755, 0, -17.239, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 13.2381, 0, -17.3362, 16.0678, 0, -17.2512, 18.4107, 0, -16.1804, 18.4107, 3, -16.1804, 18.4407, 3, -17.18, 18.4407, 3, -17.18, 18.4407, 0, -17.18, 18.4107, 0, -16.1804, 12.4166, 3, 4.0588, 17.4265, 3, 2.6471, 17.4265, 0, 2.6471, 14.055, 0, 3.5971, 12.4166, 0, 4.0588, 12.4166, 3, 4.0588, 12.4166, 3, 4.0588, 17.4265, 0, 2.6471, 14.055, 0, 3.5971, 12.4166, 3, 4.0588, 12.1453, 3, 3.0963, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 17.4265, 3, 2.6471, 12.4166, 3, 4.0588, 12.4166, 3, 4.0588, 12.4166, 0, 4.0588, 12.1453, 0, 3.0963, 12.1453, 0, 3.0963, 12.1453, 3, 3.0963, 12.4166, 3, 4.0588, 17.1552, 3, 1.6846, 12.1453, 3, 3.0963, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 17.1552, 0, 1.6846, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 12.1453, 0, 3.0963, 13.6876, 0, 2.6617, 17.4265, 0, 2.6471, 17.4265, 3, 2.6471, 17.1552, 3, 1.6846, 17.1552, 3, 1.6846, 17.1552, 0, 1.6846, 17.4265, 0, 2.6471) + +[node name="rollback-fps" type="Node"] + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) +current = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_xhc6u") + +[node name="Network" type="Node" parent="."] + +[node name="Player Spawner" type="Node" parent="Network" node_paths=PackedStringArray("spawn_points")] +script = ExtResource("1_ayh10") +player_scene = ExtResource("2_a4siq") +spawn_points = [NodePath("../../Spawn Points/Marker3D"), NodePath("../../Spawn Points/Marker3D2"), NodePath("../../Spawn Points/Marker3D3"), NodePath("../../Spawn Points/Marker3D4"), NodePath("../../Spawn Points/Marker3D5")] + +[node name="Players" type="Node" parent="."] + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="fps-hud" parent="UI" instance=ExtResource("5_wh0vl")] +visible = false +layout_mode = 1 + +[node name="Network Popup" parent="UI" instance=ExtResource("3_1bl75")] +layout_mode = 1 + +[node name="Time Display" type="Label" parent="UI"] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 23.0 +script = ExtResource("4_ivl41") + +[node name="Map" type="Node" parent="."] + +[node name="StaticBody3D" type="StaticBody3D" parent="Map"] + +[node name="MeshCSGCombiner3D" type="MeshInstance3D" parent="Map/StaticBody3D"] +mesh = SubResource("ArrayMesh_jat7u") +skeleton = NodePath("../..") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Map/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_vsbjj") + +[node name="Spawn Points" type="Node" parent="."] + +[node name="Marker3D" type="Marker3D" parent="Spawn Points"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16.1705, 1, 0) + +[node name="Marker3D2" type="Marker3D" parent="Spawn Points"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.8295, 1, 0) + +[node name="Marker3D3" type="Marker3D" parent="Spawn Points"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.82951, 1, 16) + +[node name="Marker3D4" type="Marker3D" parent="Spawn Points"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.17049, 1, -17) + +[node name="Marker3D5" type="Marker3D" parent="Spawn Points"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.17049, 1, 0) diff --git a/examples/rollback-fps/scripts/player-input.gd b/examples/rollback-fps/scripts/player-input.gd new file mode 100644 index 0000000..5d49b6c --- /dev/null +++ b/examples/rollback-fps/scripts/player-input.gd @@ -0,0 +1,48 @@ +extends BaseNetInput + +@export var mouse_sensitivity: float = 1.0 +var override_mouse: bool = false + +# Input variables +var mouse_rotation: Vector2 = Vector2.ZERO +var look_angle: Vector2 = Vector2.ZERO +var movement: Vector3 = Vector3.ZERO +var fire: bool = false +var jump: bool = false + +func _notification(what): + if what == NOTIFICATION_WM_WINDOW_FOCUS_IN: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + override_mouse = false + +func _input(event: InputEvent) -> void: + if !is_multiplayer_authority(): return + + if event is InputEventMouseMotion: + mouse_rotation.y += event.relative.x * mouse_sensitivity + mouse_rotation.x += event.relative.y * mouse_sensitivity + + if event.is_action_pressed("escape"): + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + override_mouse = true + +func _ready(): + super() + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + +func _gather(): + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var mx = Input.get_axis("move_west", "move_east") + var mz = Input.get_axis("move_north", "move_south") + movement = Vector3(mx, 0, mz) + + jump = Input.is_action_pressed("move_jump") + fire = Input.is_action_pressed("mouse_weapon_fire") + + if override_mouse: + look_angle = Vector2.ZERO + mouse_rotation = Vector2.ZERO + else: + look_angle = Vector2(-mouse_rotation.y, -mouse_rotation.x) + mouse_rotation = Vector2.ZERO diff --git a/examples/rollback-fps/scripts/player-input.gd.uid b/examples/rollback-fps/scripts/player-input.gd.uid new file mode 100644 index 0000000..b2009f6 --- /dev/null +++ b/examples/rollback-fps/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://efvmt2o8yu0e diff --git a/examples/rollback-fps/scripts/player-spawner.gd b/examples/rollback-fps/scripts/player-spawner.gd new file mode 100644 index 0000000..a2a7a2f --- /dev/null +++ b/examples/rollback-fps/scripts/player-spawner.gd @@ -0,0 +1,69 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_points: Array[Marker3D] = [] + +var avatars: Dictionary = {} + +static var _logger := NetfoxLogger.new("RollbackFPS", "PlayerSpawner") + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + # Spawn an avatar for us + _spawn(id) + +func _handle_host(): + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + add_child(avatar) + avatar.global_position = get_next_spawn_point(id) + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + _logger.info("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + _logger.info("Set input(%s) ownership to %s" % [input.name, id]) + +func get_next_spawn_point(peer_id: int, spawn_idx: int = 0) -> Vector3: + # The same data is used to calculate the index on all peers + # As a result, spawn points are the same, even without sync + var idx := peer_id * 37 + spawn_idx * 19 + idx = hash(idx) + idx = idx % spawn_points.size() + + return spawn_points[idx].global_position diff --git a/examples/rollback-fps/scripts/player-spawner.gd.uid b/examples/rollback-fps/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..d82332b --- /dev/null +++ b/examples/rollback-fps/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://cr4fhpo4ht4mr diff --git a/examples/rollback-fps/scripts/player-weapon.gd b/examples/rollback-fps/scripts/player-weapon.gd new file mode 100644 index 0000000..532be6e --- /dev/null +++ b/examples/rollback-fps/scripts/player-weapon.gd @@ -0,0 +1,72 @@ +extends Node3D + +@export var fire_cooldown: float = 0.25 +@export var damage: int = 35 + +@onready var input := $"../../Input" as ExampleRollbackFPS.PlayerInput +@onready var sound := $AudioStreamPlayer3D as AudioStreamPlayer3D +@onready var fire_action := $"Fire Action" as RewindableAction +@onready var rollback_synchronizer := %RollbackSynchronizer as RollbackSynchronizer + +var last_fire: int = -1 + +func _ready(): + fire_action.mutate(self) # Mutate self, so firing code can run + fire_action.mutate($"../../") # Mutate player + + NetworkTime.after_tick_loop.connect(_after_loop) + +func _rollback_tick(_dt, tick: int, _if): + if rollback_synchronizer.is_predicting(): + return + + fire_action.set_active(input.fire and _can_fire()) + match fire_action.get_status(): + RewindableAction.CONFIRMING, RewindableAction.ACTIVE: + # Fire if action has just activated or is active + _fire() + RewindableAction.CANCELLING: + # Whoops, turns out we couldn't have fired, undo + _unfire() + +func _after_loop(): + if fire_action.has_confirmed(): + sound.play() + +func _can_fire() -> bool: + return NetworkTime.seconds_between(last_fire, NetworkRollback.tick) >= fire_cooldown + +func _fire(): + last_fire = NetworkRollback.tick + + # See what we've hit + var hit := _raycast() + if hit.is_empty(): + # No hit, nothing to do + return + + _on_hit(hit) + +func _unfire(): + fire_action.erase_context() + +func _raycast() -> Dictionary: + # Detect hit + var space := get_world_3d().direct_space_state + var origin_xform := global_transform + var query := PhysicsRayQueryParameters3D.create( + origin_xform.origin, + origin_xform.origin + origin_xform.basis.z * 1024. + ) + + return space.intersect_ray(query) + +func _on_hit(result: Dictionary): + var is_new_hit := false + if not fire_action.has_context(): + fire_action.set_context(true) + is_new_hit = true + + if result.collider.has_method("damage"): + result.collider.damage(damage, is_new_hit) + NetworkRollback.mutate(result.collider) diff --git a/examples/rollback-fps/scripts/player-weapon.gd.uid b/examples/rollback-fps/scripts/player-weapon.gd.uid new file mode 100644 index 0000000..7e153c1 --- /dev/null +++ b/examples/rollback-fps/scripts/player-weapon.gd.uid @@ -0,0 +1 @@ +uid://da0u0nkxkqnpt diff --git a/examples/rollback-fps/scripts/player.gd b/examples/rollback-fps/scripts/player.gd new file mode 100644 index 0000000..422d1e1 --- /dev/null +++ b/examples/rollback-fps/scripts/player.gd @@ -0,0 +1,117 @@ +extends CharacterBody3D + +@export var speed = 5.0 +@export var jump_strength = 5.0 + +@onready var display_name := $DisplayNameLabel3D as Label3D +@onready var input := $Input as ExampleRollbackFPS.PlayerInput +@onready var tick_interpolator := $TickInterpolator as TickInterpolator +@onready var head := $Head as Node3D +@onready var camera := $Head/Camera3D as Camera3D +@onready var hit_sfx := $"Hit SFX" as AudioStreamPlayer3D +#+# +static var _logger := NetfoxLogger.new("game", "Player") + +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") +var health: int = 100 +var death_tick: int = -1 +var respawn_position: Vector3 +var did_respawn := false +var deaths := 0 + +# Track deaths and *acknowledged* deaths +# Acknowledge the number of deaths on tick loop start +# If the value changes by the end of the loop, that means the player has +# respawned, and needs to `teleport()` +var _ackd_deaths := 0 + +var _was_hit := false + +func _ready(): + display_name.text = name + + NetworkTime.before_tick_loop.connect(_before_tick_loop) + NetworkTime.after_tick_loop.connect(_after_tick_loop) + + # Wait for deps to setup + await get_tree().process_frame + if input.is_multiplayer_authority(): + camera.current = true + ExampleRollbackFPS.HUD.set_player(self) + +func _before_tick_loop(): + _ackd_deaths = deaths + +func _after_tick_loop(): + if _ackd_deaths != deaths: + tick_interpolator.teleport() + _ackd_deaths = deaths + + if _was_hit: + hit_sfx.play() + _was_hit = false + +func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: + # Handle respawn + if tick == death_tick: + global_position = respawn_position + did_respawn = true + else: + did_respawn = false + + # Gravity + _force_update_is_on_floor() + if is_on_floor(): + if input.jump: + velocity.y = jump_strength + else: + velocity.y -= gravity * delta + + # Handle look left and right + rotate_object_local(Vector3(0, 1, 0), input.look_angle.x) + + # Handle look up and down + head.rotate_object_local(Vector3(1, 0, 0), input.look_angle.y) + + head.rotation.x = clamp(head.rotation.x, -1.57, 1.57) + head.rotation.z = 0 + head.rotation.y = 0 + + # Apply movement + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + + # Handle death + if health <= 0: + deaths += 1 + global_position = get_parent().get_next_spawn_point(get_player_id(), deaths) + health = 100 + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity + +func damage(amount: int, is_new_hit: bool = false): + # Queue hit sound + if is_new_hit: + _was_hit = true + + health -= amount + _logger.info("%s HP now at %s", [name, health]) + +func get_player_id() -> int: + return input.get_multiplayer_authority() diff --git a/examples/rollback-fps/scripts/player.gd.uid b/examples/rollback-fps/scripts/player.gd.uid new file mode 100644 index 0000000..1c42e0f --- /dev/null +++ b/examples/rollback-fps/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://16cr653lwxno diff --git a/examples/rollback-fps/scripts/rollback-fps.gd b/examples/rollback-fps/scripts/rollback-fps.gd new file mode 100644 index 0000000..5f1ee38 --- /dev/null +++ b/examples/rollback-fps/scripts/rollback-fps.gd @@ -0,0 +1,7 @@ +extends Object +class_name ExampleRollbackFPS + +const Player := preload("res://examples/rollback-fps/scripts/player.gd") +const PlayerInput := preload("res://examples/rollback-fps/scripts/player-input.gd") +const PlayerWeapon := preload("res://examples/rollback-fps/scripts/player-weapon.gd") +const HUD := preload("res://examples/rollback-fps/ui/fps-hud.gd") diff --git a/examples/rollback-fps/scripts/rollback-fps.gd.uid b/examples/rollback-fps/scripts/rollback-fps.gd.uid new file mode 100644 index 0000000..29a6415 --- /dev/null +++ b/examples/rollback-fps/scripts/rollback-fps.gd.uid @@ -0,0 +1 @@ +uid://b3ixo1b52q06q diff --git a/examples/rollback-fps/ui/fps-hud.gd b/examples/rollback-fps/ui/fps-hud.gd new file mode 100644 index 0000000..7710307 --- /dev/null +++ b/examples/rollback-fps/ui/fps-hud.gd @@ -0,0 +1,26 @@ +extends Control + +@onready var health_bar := $ProgressBar as ProgressBar + +var player: ExampleRollbackFPS.Player + +static var _inst + +static func set_player(p_player: ExampleRollbackFPS.Player) -> void: + if not _inst: return + + _inst.player = p_player + _inst.visible = true + _inst.set_process(true) + +func _ready(): + visible = false + set_process(false) + _inst = self + +func _process(_dt) -> void: + if not is_instance_valid(player): + set_process(false) + return + + health_bar.value = player.health diff --git a/examples/rollback-fps/ui/fps-hud.gd.uid b/examples/rollback-fps/ui/fps-hud.gd.uid new file mode 100644 index 0000000..e9de2f9 --- /dev/null +++ b/examples/rollback-fps/ui/fps-hud.gd.uid @@ -0,0 +1 @@ +uid://cycmne5n6ov65 diff --git a/examples/rollback-fps/ui/fps-hud.tscn b/examples/rollback-fps/ui/fps-hud.tscn new file mode 100644 index 0000000..a31d0ea --- /dev/null +++ b/examples/rollback-fps/ui/fps-hud.tscn @@ -0,0 +1,53 @@ +[gd_scene load_steps=4 format=3 uid="uid://cdue87s0gmc4d"] + +[ext_resource type="Script" path="res://examples/rollback-fps/ui/fps-hud.gd" id="1_gc5cb"] + +[sub_resource type="Gradient" id="Gradient_3rjdk"] +offsets = PackedFloat32Array(0.962667, 1) +colors = PackedColorArray(1, 1, 1, 1, 1, 1, 1, 0) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_dsv61"] +gradient = SubResource("Gradient_3rjdk") +width = 8 +height = 8 +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) +metadata/_snap_enabled = true + +[node name="fps-hud" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_gc5cb") + +[node name="ProgressBar" type="ProgressBar" parent="."] +custom_minimum_size = Vector2(128, 0) +layout_mode = 1 +anchors_preset = 2 +anchor_top = 1.0 +anchor_bottom = 1.0 +offset_top = -27.0 +offset_right = 128.0 +grow_vertical = 0 + +[node name="TextureRect" type="TextureRect" parent="."] +custom_minimum_size = Vector2(8, 8) +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -135.0 +offset_top = -4.0 +offset_right = 135.0 +offset_bottom = 4.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = SubResource("GradientTexture2D_dsv61") +expand_mode = 3 +stretch_mode = 5 diff --git a/examples/rollback-npc/README.md b/examples/rollback-npc/README.md new file mode 100644 index 0000000..955e8fa --- /dev/null +++ b/examples/rollback-npc/README.md @@ -0,0 +1,11 @@ +# Rollback NPC example + +A demo game, demonstrating how to implement server-controlled NPCs that +participate in rollback. + +With `RollbackSynchronizer` supporting no input, NPCs ( and other nodes without +input ) can be built the same way as e.g. player nodes. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + diff --git a/examples/rollback-npc/rollback-npc.tscn b/examples/rollback-npc/rollback-npc.tscn new file mode 100644 index 0000000..0111f84 --- /dev/null +++ b/examples/rollback-npc/rollback-npc.tscn @@ -0,0 +1,37 @@ +[gd_scene load_steps=7 format=3 uid="uid://cg0vfsftxxwv0"] + +[ext_resource type="PackedScene" uid="uid://cngy6hs8ohodj" path="res://examples/shared/scenes/map-square.tscn" id="1_os5l0"] +[ext_resource type="PackedScene" uid="uid://cncdbq72u50j3" path="res://examples/shared/scenes/environment.tscn" id="2_and7e"] +[ext_resource type="Script" path="res://examples/shared/scripts/player-spawner.gd" id="3_1ga2x"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_1tn81"] +[ext_resource type="PackedScene" uid="uid://bl30av5bcvd4d" path="res://examples/rollback-npc/scenes/player.tscn" id="4_pr3ur"] +[ext_resource type="PackedScene" uid="uid://n5t5ahafwaln" path="res://examples/rollback-npc/scenes/npc.tscn" id="6_3tc5x"] + +[node name="rollback-npc" type="Node3D"] + +[node name="Square Map" parent="." instance=ExtResource("1_os5l0")] + +[node name="Environment" parent="." instance=ExtResource("2_and7e")] + +[node name="Player Spawner" type="Node" parent="." node_paths=PackedStringArray("spawn_root")] +script = ExtResource("3_1ga2x") +player_scene = ExtResource("4_pr3ur") +spawn_root = NodePath(".") + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("3_1tn81")] +layout_mode = 1 +offset_left = -180.0 +offset_top = -120.0 +offset_right = 180.0 +offset_bottom = 120.0 + +[node name="NPC" parent="." instance=ExtResource("6_3tc5x")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 1, -6) diff --git a/examples/rollback-npc/scenes/npc.tscn b/examples/rollback-npc/scenes/npc.tscn new file mode 100644 index 0000000..6c80788 --- /dev/null +++ b/examples/rollback-npc/scenes/npc.tscn @@ -0,0 +1,51 @@ +[gd_scene load_steps=7 format=3 uid="uid://n5t5ahafwaln"] + +[ext_resource type="Script" path="res://examples/rollback-npc/scripts/npc.gd" id="1_6wds5"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="2_a8m5g"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_ql8cj"] + +[sub_resource type="SphereMesh" id="SphereMesh_3ov8j"] + +[sub_resource type="CylinderMesh" id="CylinderMesh_tsqs5"] +top_radius = 0.0 +height = 0.5 + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_2yxbx"] +height = 1.5 + +[node name="NPC" type="CharacterBody3D"] +collision_layer = 2 +collision_mask = 3 +script = ExtResource("1_6wds5") + +[node name="Mesh" type="Node3D" parent="."] + +[node name="Body" type="MeshInstance3D" parent="Mesh"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +mesh = SubResource("SphereMesh_3ov8j") +skeleton = NodePath("../..") + +[node name="Hat" type="MeshInstance3D" parent="Mesh"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) +mesh = SubResource("CylinderMesh_tsqs5") +skeleton = NodePath("../..") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_2yxbx") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("2_a8m5g") +root = NodePath("..") +enable_prediction = true +state_properties = Array[String]([":position", ":velocity"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_ql8cj") +root = NodePath("..") +properties = Array[String]([":position"]) + +[node name="Label3D" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +billboard = 1 +text = "NPC" +font_size = 96 diff --git a/examples/rollback-npc/scenes/player.tscn b/examples/rollback-npc/scenes/player.tscn new file mode 100644 index 0000000..539bc50 --- /dev/null +++ b/examples/rollback-npc/scenes/player.tscn @@ -0,0 +1,37 @@ +[gd_scene load_steps=8 format=3 uid="uid://bl30av5bcvd4d"] + +[ext_resource type="Script" path="res://examples/rollback-npc/scripts/player.gd" id="1_d0kje"] +[ext_resource type="Script" path="res://examples/rollback-npc/scripts/player-input.gd" id="2_us2sq"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="3_bf3yl"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="4_4lenk"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_bmc6p"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_t0alo"] +material = SubResource("StandardMaterial3D_bmc6p") + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_1dm6n"] + +[node name="Player" type="CharacterBody3D" groups=["Players"]] +collision_mask = 3 +script = ExtResource("1_d0kje") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_t0alo") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_1dm6n") + +[node name="Input" type="Node" parent="."] +script = ExtResource("2_us2sq") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_bf3yl") +root = NodePath("..") +state_properties = Array[String]([":transform", ":velocity"]) +input_properties = Array[String](["Input:movement"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("4_4lenk") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/rollback-npc/scripts/npc.gd b/examples/rollback-npc/scripts/npc.gd new file mode 100644 index 0000000..2108f2e --- /dev/null +++ b/examples/rollback-npc/scripts/npc.gd @@ -0,0 +1,76 @@ +@tool +extends CharacterBody3D + +@export var speed: float = 2.0 +@export var sensor_radius: float = 4.0 +@export var min_radius: float = 1.5 + +@onready var label := $Label3D as Label3D +@onready var rbs := $RollbackSynchronizer as RollbackSynchronizer + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _get_rollback_state_properties() -> Array: + return [ + "position", + "velocity" + ] + +func _get_interpolated_properties() -> Array: + return [ + "position" + ] + +func _rollback_tick(dt, _tick, _is_fresh: bool): + label.text = "pre" if rbs.is_predicting() else "sim" + + # Add gravity + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * dt + + var target_motion := Vector3.ZERO + var nearby_player := _find_nearby_player() + if nearby_player: + target_motion = nearby_player.global_position - global_position + target_motion.y = 0. + + target_motion = target_motion.normalized() * speed + + velocity.x = move_toward(velocity.x, target_motion.x, speed / 0.35 * dt) + velocity.z = move_toward(velocity.z, target_motion.z, speed / 0.35 * dt) + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _find_nearby_player() -> Node3D: + var players := get_tree().get_nodes_in_group(&"Players") + if players.is_empty(): + return null + + var sensor_radius_squared := pow(sensor_radius, 2.0) + var min_radius_squared := pow(min_radius, 2.0) + + var closest_player: Node3D = null + var closest_distance := INF + for player in players: + var distance := global_position.distance_squared_to(player.global_position) + + if distance >= sensor_radius_squared or distance <= min_radius_squared: + continue + + if distance < closest_distance: + closest_distance = distance + closest_player = player + + return closest_player + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity diff --git a/examples/rollback-npc/scripts/npc.gd.uid b/examples/rollback-npc/scripts/npc.gd.uid new file mode 100644 index 0000000..2bfad08 --- /dev/null +++ b/examples/rollback-npc/scripts/npc.gd.uid @@ -0,0 +1 @@ +uid://7ru5vkblxide diff --git a/examples/rollback-npc/scripts/player-input.gd b/examples/rollback-npc/scripts/player-input.gd new file mode 100644 index 0000000..b458c75 --- /dev/null +++ b/examples/rollback-npc/scripts/player-input.gd @@ -0,0 +1,16 @@ +@tool +extends BaseNetInput + +var movement: Vector3 + +func _get_rollback_input_properties() -> Array: + return [ + "movement" + ] + +func _gather(): + movement = Vector3( + Input.get_axis("move_west", "move_east"), + 0.0, + Input.get_axis("move_north", "move_south") + ) diff --git a/examples/rollback-npc/scripts/player-input.gd.uid b/examples/rollback-npc/scripts/player-input.gd.uid new file mode 100644 index 0000000..554df13 --- /dev/null +++ b/examples/rollback-npc/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://brtfiqnk5alw6 diff --git a/examples/rollback-npc/scripts/player.gd b/examples/rollback-npc/scripts/player.gd new file mode 100644 index 0000000..47fd110 --- /dev/null +++ b/examples/rollback-npc/scripts/player.gd @@ -0,0 +1,65 @@ +@tool +extends CharacterBody3D + +@export var speed = 5.0 +@export var input: Node + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _get_rollback_state_properties() -> Array: + return [ + "transform", + "velocity" + ] + +func _get_interpolated_properties() -> Array: + return [ + "transform" + ] + +func _ready(): + if Engine.is_editor_hint(): return + + if input == null: + input = $Input + + position = Vector3(0, 4, 0) + + # Assign a random color + var player_id := input.get_multiplayer_authority() + var mesh := $MeshInstance3D as MeshInstance3D + + var color := Color.from_hsv((hash(player_id) % 256) / 256.0, 1.0, 1.0) + var material := mesh.get_active_material(0) as StandardMaterial3D + material = material.duplicate() + material.albedo_color = color + mesh.set_surface_override_material(0, material) + +func _rollback_tick(dt, _tick, _is_fresh: bool): + # Add gravity + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * dt + + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity + diff --git a/examples/rollback-npc/scripts/player.gd.uid b/examples/rollback-npc/scripts/player.gd.uid new file mode 100644 index 0000000..d5afad0 --- /dev/null +++ b/examples/rollback-npc/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://cn33wgc64tn4k diff --git a/examples/shared/scenes/environment.tscn b/examples/shared/scenes/environment.tscn new file mode 100644 index 0000000..112070a --- /dev/null +++ b/examples/shared/scenes/environment.tscn @@ -0,0 +1,22 @@ +[gd_scene load_steps=4 format=3 uid="uid://cncdbq72u50j3"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_bioft"] + +[sub_resource type="Sky" id="Sky_n7qj2"] +sky_material = SubResource("ProceduralSkyMaterial_bioft") + +[sub_resource type="Environment" id="Environment_ge6yj"] +background_mode = 2 +sky = SubResource("Sky_n7qj2") + +[node name="Environment" type="Node"] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = SubResource("Environment_ge6yj") diff --git a/examples/shared/scenes/map-square.tscn b/examples/shared/scenes/map-square.tscn new file mode 100644 index 0000000..a89c5d1 --- /dev/null +++ b/examples/shared/scenes/map-square.tscn @@ -0,0 +1,39 @@ +[gd_scene format=3 uid="uid://cngy6hs8ohodj"] + +[node name="Square Map" type="Node3D"] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="."] +use_collision = true +collision_layer = 2 + +[node name="CSGFloor" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGCorner" type="CSGCylinder3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) diff --git a/examples/shared/scripts/async.gd b/examples/shared/scripts/async.gd new file mode 100644 index 0000000..216b553 --- /dev/null +++ b/examples/shared/scripts/async.gd @@ -0,0 +1,9 @@ +extends Node + +func condition(cond: Callable, timeout: float = 10.0) -> Error: + timeout = Time.get_ticks_msec() + timeout * 1000 + while not cond.call(): + await get_tree().process_frame + if Time.get_ticks_msec() > timeout: + return ERR_TIMEOUT + return OK diff --git a/examples/shared/scripts/async.gd.uid b/examples/shared/scripts/async.gd.uid new file mode 100644 index 0000000..fe234ae --- /dev/null +++ b/examples/shared/scripts/async.gd.uid @@ -0,0 +1 @@ +uid://bb1cle7uin2wt diff --git a/examples/shared/scripts/lan-bootstrapper.gd b/examples/shared/scripts/lan-bootstrapper.gd new file mode 100644 index 0000000..8021d12 --- /dev/null +++ b/examples/shared/scripts/lan-bootstrapper.gd @@ -0,0 +1,111 @@ +extends Node + +@export_category("UI") +@export var connect_ui: Control +@export var address_input: LineEdit +@export var port_input: LineEdit + +func host_only(): + var brawler_spawner: BrawlerSpawner = %"Brawler Spawner" + if brawler_spawner != null: + brawler_spawner.spawn_host_avatar = false + host() + +func host(): + var host = _parse_input() + if host.size() == 0: + return ERR_CANT_RESOLVE + + var port = host.port + + # Start host + print("Starting host on port %s" % port) + + var peer = ENetMultiplayerPeer.new() + if peer.create_server(port) != OK: + print("Failed to listen on port %s" % port) + + get_tree().get_multiplayer().multiplayer_peer = peer + print("Listening on port %s" % port) + + # Wait for server to start + await Async.condition( + func(): + return peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTING + ) + + if peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTED: + OS.alert("Failed to start server!") + return + + print("Server started") + get_tree().get_multiplayer().server_relay = true + + connect_ui.hide() + + # Only start manually if NetworkEvents is not handling it (e.g. multiplayer-simple) + if not NetworkEvents.enabled: + NetworkTime.start() + +func join(): + var host = _parse_input() + if host.size() == 0: + return ERR_CANT_RESOLVE + + var address = host.address + var port = host.port + + # Connect + print("Connecting to %s:%s" % [address, port]) + var peer = ENetMultiplayerPeer.new() + var err = peer.create_client(address, port) + if err != OK: + OS.alert("Failed to create client, reason: %s" % error_string(err)) + return err + + get_tree().get_multiplayer().multiplayer_peer = peer + + # Wait for connection process to conclude + await Async.condition( + func(): + return peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTING + ) + + if peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTED: + OS.alert("Failed to connect to %s:%s" % [address, port]) + return + + print("Client started") + connect_ui.hide() + + # Only start manually if NetworkEvents is not handling it (e.g. multiplayer-simple) + if not NetworkEvents.enabled: + NetworkTime.start() + +func _enter_tree(): + # Hide and show UI as appropriate + # These handlers are necessary, since the game could have started via + # autoconnect, or any other method + NetworkEvents.on_client_start.connect(func(__): connect_ui.hide()) + NetworkEvents.on_server_start.connect(func(): connect_ui.hide()) + NetworkEvents.on_client_stop.connect(func(): connect_ui.show()) + NetworkEvents.on_server_stop.connect(func(): connect_ui.show()) + +func _parse_input() -> Dictionary: + # Validate inputs + var address = address_input.text + var port = port_input.text + + if address == "": + OS.alert("No host specified!") + return {} + + if not port.is_valid_int(): + OS.alert("Invalid port!") + return {} + port = port.to_int() + + return { + "address": address, + "port": port + } diff --git a/examples/shared/scripts/lan-bootstrapper.gd.uid b/examples/shared/scripts/lan-bootstrapper.gd.uid new file mode 100644 index 0000000..be2cb1e --- /dev/null +++ b/examples/shared/scripts/lan-bootstrapper.gd.uid @@ -0,0 +1 @@ +uid://c4smm8wlkhagj diff --git a/examples/shared/scripts/noray-bootstrapper.gd b/examples/shared/scripts/noray-bootstrapper.gd new file mode 100644 index 0000000..1d12dc6 --- /dev/null +++ b/examples/shared/scripts/noray-bootstrapper.gd @@ -0,0 +1,178 @@ +extends Node + +enum Role { NONE, HOST, CLIENT } + +@export_category("UI") +@export var connect_ui: Control +@export var noray_address_input: LineEdit +@export var oid_input: LineEdit +@export var host_oid_input: LineEdit +@export var force_relay_check: CheckBox + +var role = Role.NONE + +func _ready(): + Noray.on_oid.connect(func(oid): oid_input.text = oid) + Noray.on_connect_nat.connect(_handle_connect_nat) + Noray.on_connect_relay.connect(_handle_connect_relay) + +func connect_to_noray(): + # Connect to noray + var err = OK + var address = noray_address_input.text + if address.contains(":"): + var parts = address.split(":") + var host = parts[0] + var port = (parts[1] as String).to_int() + err = await Noray.connect_to_host(host, port) + else: + err = await Noray.connect_to_host(address) + + if err != OK: + print("Failed to connect to Noray: %s" % error_string(err)) + return err + + # Get IDs + Noray.register_host() + await Noray.on_pid + + # Register remote address + err = await Noray.register_remote() + if err != OK: + print("Failed to register remote address: %s" % error_string(err)) + return err + + # Our local port is a remote port to Noray, hence the weird naming + print("Registered local port: %d" % Noray.local_port) + return OK + +func disconnect_from_noray(): + Noray.disconnect_from_host() + oid_input.clear() + +func host_only(): + var brawler_spawner: BrawlerSpawner = %"Brawler Spawner" + if brawler_spawner != null: + brawler_spawner.spawn_host_avatar = false + host() + +func host(): + if Noray.local_port <= 0: + return ERR_UNCONFIGURED + + # Start host + var err = OK + var port = Noray.local_port + print("Starting host on port %s" % port) + + var peer = ENetMultiplayerPeer.new() + err = peer.create_server(port) + if err != OK: + print("Failed to listen on port %s: %s" % [port, error_string(err)]) + return err + + get_tree().get_multiplayer().multiplayer_peer = peer + print("Listening on port %s" % port) + + # Wait for server to start + while peer.get_connection_status() == MultiplayerPeer.CONNECTION_CONNECTING: + await get_tree().process_frame + + if peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTED: + OS.alert("Failed to start server!") + return FAILED + + get_tree().get_multiplayer().server_relay = true + + role = Role.HOST + connect_ui.hide() + # Only start manually if NetworkEvents is not handling it (e.g. multiplayer-simple) + if not NetworkEvents.enabled: + NetworkTime.start() + +func join(): + role = Role.CLIENT + + if force_relay_check.button_pressed: + Noray.connect_relay(host_oid_input.text) + else: + Noray.connect_nat(host_oid_input.text) + +func _handle_connect_nat(address: String, port: int) -> Error: + var err = await _handle_connect(address, port) + + # If client failed to connect over NAT, try again over relay + if err != OK and role != Role.HOST: + print("NAT connect failed with reason %s, retrying with relay" % error_string(err)) + Noray.connect_relay(host_oid_input.text) + err = OK + + return err + +func _handle_connect_relay(address: String, port: int) -> Error: + return await _handle_connect(address, port) + +func _handle_connect(address: String, port: int) -> Error: + if not Noray.local_port: + return ERR_UNCONFIGURED + + var err = OK + + if role == Role.NONE: + push_warning("Refusing connection, not running as client nor host") + err = ERR_UNAVAILABLE + + if role == Role.CLIENT: + var udp = PacketPeerUDP.new() + udp.bind(Noray.local_port) + udp.set_dest_address(address, port) + + print("Attempting handshake with %s:%s" % [address, port]) + err = await PacketHandshake.over_packet_peer(udp) + udp.close() + + if err != OK: + if err == ERR_BUSY: + print("Handshake to %s:%s succeeded partially, attempting connection anyway" % [address, port]) + else: + print("Handshake to %s:%s failed: %s" % [address, port, error_string(err)]) + return err + else: + print("Handshake to %s:%s succeeded" % [address, port]) + + # Connect + var peer = ENetMultiplayerPeer.new() + err = peer.create_client(address, port, 0, 0, 0, Noray.local_port) + if err != OK: + print("Failed to create client: %s" % error_string(err)) + return err + + get_tree().get_multiplayer().multiplayer_peer = peer + + # Wait for connection to succeed + await Async.condition( + func(): return peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTING + ) + + if peer.get_connection_status() != MultiplayerPeer.CONNECTION_CONNECTED: + print("Failed to connect to %s:%s with status %s" % [address, port, peer.get_connection_status()]) + get_tree().get_multiplayer().multiplayer_peer = null + return ERR_CANT_CONNECT + + connect_ui.hide() + # Only start manually if NetworkEvents is not handling it (e.g. multiplayer-simple) + if not NetworkEvents.enabled: + NetworkTime.start() + + if role == Role.HOST: + # We should already have the connection configured, only thing to do is a handshake + var peer = get_tree().get_multiplayer().multiplayer_peer as ENetMultiplayerPeer + + err = await PacketHandshake.over_enet_peer(peer, address, port) + + if err != OK: + print("Handshake to %s:%s failed: %s" % [address, port, error_string(err)]) + return err + print("Handshake to %s:%s concluded" % [address, port]) + + return err diff --git a/examples/shared/scripts/noray-bootstrapper.gd.uid b/examples/shared/scripts/noray-bootstrapper.gd.uid new file mode 100644 index 0000000..1c3babd --- /dev/null +++ b/examples/shared/scripts/noray-bootstrapper.gd.uid @@ -0,0 +1 @@ +uid://dbib5njqdsuc2 diff --git a/examples/shared/scripts/player-spawner.gd b/examples/shared/scripts/player-spawner.gd new file mode 100644 index 0000000..bb7832a --- /dev/null +++ b/examples/shared/scripts/player-spawner.gd @@ -0,0 +1,58 @@ +extends Node + +@export var player_scene: PackedScene +@export var spawn_root: Node + +var avatars: Dictionary = {} + +func _ready(): + NetworkEvents.on_client_start.connect(_handle_connected) + NetworkEvents.on_server_start.connect(_handle_host) + NetworkEvents.on_peer_join.connect(_handle_new_peer) + NetworkEvents.on_peer_leave.connect(_handle_leave) + NetworkEvents.on_client_stop.connect(_handle_stop) + NetworkEvents.on_server_stop.connect(_handle_stop) + +func _handle_connected(id: int): + # Spawn an avatar for us + _spawn(id) + +func _handle_host(): + # Spawn own avatar on host machine + _spawn(1) + +func _handle_new_peer(id: int): + # Spawn an avatar for new player + _spawn(id) + +func _handle_leave(id: int): + if not avatars.has(id): + return + + var avatar = avatars[id] as Node + avatar.queue_free() + avatars.erase(id) + +func _handle_stop(): + # Remove all avatars on game end + for avatar in avatars.values(): + avatar.queue_free() + avatars.clear() + +func _spawn(id: int): + var avatar = player_scene.instantiate() as Node + avatars[id] = avatar + avatar.name += " #%d" % id + + # Avatar is always owned by server + avatar.set_multiplayer_authority(1) + + print("Spawned avatar %s at %s" % [avatar.name, multiplayer.get_unique_id()]) + + # Avatar's input object is owned by player + var input = avatar.find_child("Input") + if input != null: + input.set_multiplayer_authority(id) + print("Set input(%s) ownership to %s" % [input.name, id]) + + spawn_root.add_child(avatar) diff --git a/examples/shared/scripts/player-spawner.gd.uid b/examples/shared/scripts/player-spawner.gd.uid new file mode 100644 index 0000000..b12e5eb --- /dev/null +++ b/examples/shared/scripts/player-spawner.gd.uid @@ -0,0 +1 @@ +uid://dpxlg4y45fgd1 diff --git a/examples/shared/scripts/simple-time-display.gd b/examples/shared/scripts/simple-time-display.gd new file mode 100644 index 0000000..816a9e9 --- /dev/null +++ b/examples/shared/scripts/simple-time-display.gd @@ -0,0 +1,21 @@ +extends Label + +func _ready(): + NetworkTime.on_tick.connect(_tick) + +func _tick(_delta: float, _tick: int): + text = "Time: %.2f at tick #%d" % [NetworkTime.time, NetworkTime.tick] + + if not get_tree().get_multiplayer().is_server(): + # Grab latency to server and display + var enet = get_tree().get_multiplayer().multiplayer_peer as ENetMultiplayerPeer + if enet == null: + return + + var server = enet.get_peer(1) + var last_rtt = server.get_statistic(ENetPacketPeer.PEER_LAST_ROUND_TRIP_TIME) + var last_variance = server.get_statistic(ENetPacketPeer.PEER_LAST_ROUND_TRIP_TIME_VARIANCE) + var mean_rtt = server.get_statistic(ENetPacketPeer.PEER_ROUND_TRIP_TIME) + var mean_variance = server.get_statistic(ENetPacketPeer.PEER_ROUND_TRIP_TIME_VARIANCE) + + text += "\nLast RTT: %s +/- %s\nMean RTT: %s +/- %s" % [last_rtt, last_variance, mean_rtt, mean_variance] diff --git a/examples/shared/scripts/simple-time-display.gd.uid b/examples/shared/scripts/simple-time-display.gd.uid new file mode 100644 index 0000000..13c1c34 --- /dev/null +++ b/examples/shared/scripts/simple-time-display.gd.uid @@ -0,0 +1 @@ +uid://c3eokqjyc0bee diff --git a/examples/shared/scripts/time-display.gd b/examples/shared/scripts/time-display.gd new file mode 100644 index 0000000..e3e891f --- /dev/null +++ b/examples/shared/scripts/time-display.gd @@ -0,0 +1,28 @@ +extends Label + +func _process(_delta): + text = "Time: %.2f at tick #%d, clock at %.2f%%" % [NetworkTime.time, NetworkTime.tick, NetworkTime.clock_stretch_factor * 100.] + text += "\nClock offset: %.2fms, Remote offset: %.2fms" % [NetworkTime.clock_offset * 1000., NetworkTime.remote_clock_offset * 1000.] + text += "\nRemote RTT: %.2fms +/- %.2fms" % [NetworkTimeSynchronizer.rtt * 1000., NetworkTimeSynchronizer.rtt_jitter * 1000.] + text += "\nFactor: %.2f" % [NetworkTime.tick_factor] + text += "\nFPS: %s" % [Engine.get_frames_per_second()] + + var has_connection = multiplayer.has_multiplayer_peer() \ + and multiplayer.multiplayer_peer.get_connection_status() == MultiplayerPeer.CONNECTION_CONNECTED + + if has_connection and not multiplayer.is_server(): + # Grab latency to server and display + var enet = get_tree().get_multiplayer().multiplayer_peer as ENetMultiplayerPeer + if enet == null or enet.get_peer(1) == null: + return + + var server = enet.get_peer(1) + if server == null: + return + + var last_rtt = server.get_statistic(ENetPacketPeer.PEER_LAST_ROUND_TRIP_TIME) + var last_variance = server.get_statistic(ENetPacketPeer.PEER_LAST_ROUND_TRIP_TIME_VARIANCE) + var mean_rtt = server.get_statistic(ENetPacketPeer.PEER_ROUND_TRIP_TIME) + var mean_variance = server.get_statistic(ENetPacketPeer.PEER_ROUND_TRIP_TIME_VARIANCE) + + text += "\nLast RTT: %s +/- %s\nMean RTT: %s +/- %s" % [last_rtt, last_variance, mean_rtt, mean_variance] diff --git a/examples/shared/scripts/time-display.gd.uid b/examples/shared/scripts/time-display.gd.uid new file mode 100644 index 0000000..b0f1491 --- /dev/null +++ b/examples/shared/scripts/time-display.gd.uid @@ -0,0 +1 @@ +uid://1jje4t4evf2s diff --git a/examples/shared/ui/network-popup.tscn b/examples/shared/ui/network-popup.tscn new file mode 100644 index 0000000..089ce98 --- /dev/null +++ b/examples/shared/ui/network-popup.tscn @@ -0,0 +1,153 @@ +[gd_scene load_steps=3 format=3 uid="uid://badtpsxn5lago"] + +[ext_resource type="Script" path="res://examples/shared/scripts/lan-bootstrapper.gd" id="1_dy86e"] +[ext_resource type="Script" path="res://examples/shared/scripts/noray-bootstrapper.gd" id="2_fgck5"] + +[node name="Network Popup" type="TabContainer"] +custom_minimum_size = Vector2(360, 240) +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -125.5 +offset_top = -48.5 +offset_right = 125.5 +offset_bottom = 48.5 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="LAN" type="VBoxContainer" parent="."] +layout_mode = 2 + +[node name="Address Row" type="HBoxContainer" parent="LAN"] +layout_mode = 2 +size_flags_vertical = 2 + +[node name="Address Label" type="Label" parent="LAN/Address Row"] +layout_mode = 2 +text = "Address:" + +[node name="Address LineEdit" type="LineEdit" parent="LAN/Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 0 +text = "localhost" + +[node name="Port Label" type="Label" parent="LAN/Address Row"] +layout_mode = 2 +text = "Port:" + +[node name="Port LineEdit" type="LineEdit" parent="LAN/Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 0 +text = "16384" + +[node name="Actions Row" type="HBoxContainer" parent="LAN"] +layout_mode = 2 +size_flags_horizontal = 4 + +[node name="Host Button" type="Button" parent="LAN/Actions Row"] +layout_mode = 2 +size_flags_horizontal = 4 +text = "Host" + +[node name="Join Button" type="Button" parent="LAN/Actions Row"] +layout_mode = 2 +size_flags_horizontal = 4 +text = "Join" + +[node name="Noray" type="VBoxContainer" parent="."] +visible = false +layout_mode = 2 + +[node name="Noray Address Row" type="HBoxContainer" parent="Noray"] +layout_mode = 2 + +[node name="Address Label" type="Label" parent="Noray/Noray Address Row"] +layout_mode = 2 +text = "noray host:" + +[node name="Address LineEdit" type="LineEdit" parent="Noray/Noray Address Row"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "tomfol.io:8890" +placeholder_text = "noray.example.com:8890" + +[node name="OID Row" type="HBoxContainer" parent="Noray"] +layout_mode = 2 + +[node name="OID Label" type="Label" parent="Noray/OID Row"] +layout_mode = 2 +text = "Open ID: " + +[node name="OID Value" type="LineEdit" parent="Noray/OID Row"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "123456789" +editable = false + +[node name="Noray Actions Row" type="HBoxContainer" parent="Noray"] +layout_mode = 2 + +[node name="Connect Button" type="Button" parent="Noray/Noray Actions Row"] +layout_mode = 2 +text = "Connect" + +[node name="Disconnect Button" type="Button" parent="Noray/Noray Actions Row"] +layout_mode = 2 +text = "Disconnect" + +[node name="HSeparator" type="HSeparator" parent="Noray"] +layout_mode = 2 + +[node name="Connect Host Row" type="HBoxContainer" parent="Noray"] +layout_mode = 2 + +[node name="Host Label" type="Label" parent="Noray/Connect Host Row"] +layout_mode = 2 +text = "Target Host: " + +[node name="Host LineEdit" type="LineEdit" parent="Noray/Connect Host Row"] +layout_mode = 2 +size_flags_horizontal = 3 +placeholder_text = "Host OID" + +[node name="Connect Actions Row" type="HBoxContainer" parent="Noray"] +layout_mode = 2 + +[node name="Host Button" type="Button" parent="Noray/Connect Actions Row"] +layout_mode = 2 +text = "Host" + +[node name="Join Button" type="Button" parent="Noray/Connect Actions Row"] +layout_mode = 2 +text = "Join" + +[node name="Force Relay Checkbox" type="CheckBox" parent="Noray/Connect Actions Row"] +layout_mode = 2 +text = "Force Relay" + +[node name="LAN Bootstrapper" type="Node" parent="." node_paths=PackedStringArray("connect_ui", "address_input", "port_input")] +script = ExtResource("1_dy86e") +connect_ui = NodePath("..") +address_input = NodePath("../LAN/Address Row/Address LineEdit") +port_input = NodePath("../LAN/Address Row/Port LineEdit") + +[node name="Noray Bootstrapper" type="Node" parent="." node_paths=PackedStringArray("connect_ui", "noray_address_input", "oid_input", "host_oid_input", "force_relay_check")] +script = ExtResource("2_fgck5") +connect_ui = NodePath("..") +noray_address_input = NodePath("../Noray/Noray Address Row/Address LineEdit") +oid_input = NodePath("../Noray/OID Row/OID Value") +host_oid_input = NodePath("../Noray/Connect Host Row/Host LineEdit") +force_relay_check = NodePath("../Noray/Connect Actions Row/Force Relay Checkbox") + +[connection signal="pressed" from="LAN/Actions Row/Host Button" to="LAN Bootstrapper" method="host"] +[connection signal="pressed" from="LAN/Actions Row/Join Button" to="LAN Bootstrapper" method="join"] +[connection signal="pressed" from="Noray/Noray Actions Row/Connect Button" to="Noray Bootstrapper" method="connect_to_noray"] +[connection signal="pressed" from="Noray/Noray Actions Row/Disconnect Button" to="Noray Bootstrapper" method="disconnect_from_noray"] +[connection signal="pressed" from="Noray/Connect Actions Row/Host Button" to="Noray Bootstrapper" method="host"] +[connection signal="pressed" from="Noray/Connect Actions Row/Join Button" to="Noray Bootstrapper" method="join"] diff --git a/examples/shared/ui/time-display.tscn b/examples/shared/ui/time-display.tscn new file mode 100644 index 0000000..24e3d5a --- /dev/null +++ b/examples/shared/ui/time-display.tscn @@ -0,0 +1,11 @@ +[gd_scene load_steps=2 format=3 uid="uid://bpf1jdr255nr0"] + +[ext_resource type="Script" path="res://examples/shared/scripts/time-display.gd" id="1_0i26b"] + +[node name="Time Display" type="Label"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_0i26b") diff --git a/examples/single-player/README.md b/examples/single-player/README.md new file mode 100644 index 0000000..9a3dacf --- /dev/null +++ b/examples/single-player/README.md @@ -0,0 +1,12 @@ +# Single player example + +A simple demo game, completely lacking multiplayer functionality, to serve as a +baseline for comparisons. + +To edit and/or run, open the Godot project in the repository root, and open the +scene in this directory. + +Compare it with: +* [Simple example](../multiplayer-simple) +* [Example with netfox](../multiplayer-netfox) + diff --git a/examples/single-player/characters/player.tscn b/examples/single-player/characters/player.tscn new file mode 100644 index 0000000..d574c5e --- /dev/null +++ b/examples/single-player/characters/player.tscn @@ -0,0 +1,16 @@ +[gd_scene load_steps=4 format=3 uid="uid://dlj5m010hpg2"] + +[ext_resource type="Script" path="res://examples/single-player/scripts/player.gd" id="1_biuhe"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_t2650"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_vogks"] + +[node name="Player" type="CharacterBody3D"] +script = ExtResource("1_biuhe") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_t2650") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_vogks") diff --git a/examples/single-player/scripts/player.gd b/examples/single-player/scripts/player.gd new file mode 100644 index 0000000..5b335f7 --- /dev/null +++ b/examples/single-player/scripts/player.gd @@ -0,0 +1,24 @@ +extends CharacterBody3D + +@export var speed = 5.0 + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func _physics_process(delta): + # Add the gravity. + if not is_on_floor(): + velocity.y -= gravity * delta + + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var input_dir = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down") + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.y)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + move_and_slide() diff --git a/examples/single-player/scripts/player.gd.uid b/examples/single-player/scripts/player.gd.uid new file mode 100644 index 0000000..932a886 --- /dev/null +++ b/examples/single-player/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://21rp7windgd0 diff --git a/examples/single-player/single-player.tscn b/examples/single-player/single-player.tscn new file mode 100644 index 0000000..adb8247 --- /dev/null +++ b/examples/single-player/single-player.tscn @@ -0,0 +1,68 @@ +[gd_scene load_steps=5 format=3 uid="uid://grxmiwysyb46"] + +[ext_resource type="PackedScene" uid="uid://dlj5m010hpg2" path="res://examples/single-player/characters/player.tscn" id="1_6simv"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_rrbfu"] + +[sub_resource type="Sky" id="Sky_1tr2y"] +sky_material = SubResource("ProceduralSkyMaterial_rrbfu") + +[sub_resource type="Environment" id="Environment_ef1wp"] +background_mode = 2 +sky = SubResource("Sky_1tr2y") + +[node name="Game Scene" type="Node3D"] + +[node name="Map" type="Node" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true + +[node name="CSGFloor" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGCorner" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) + +[node name="Environment" type="Node" parent="."] + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(0.5, 0.612372, -0.612372, 0, 0.707107, 0.707107, 0.866025, -0.353553, 0.353553, -6.7361, 8.77817, 3.88909) +shadow_enabled = true + +[node name="Camera3D" type="Camera3D" parent="Environment"] +transform = Transform3D(1, 0, 0, 0, 0.5, 0.866025, 0, -0.866025, 0.5, 0, 14.3564, 8.86602) + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] +environment = SubResource("Environment_ef1wp") + +[node name="Players" type="Node" parent="."] + +[node name="Player" parent="Players" instance=ExtResource("1_6simv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) diff --git a/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd b/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd new file mode 100644 index 0000000..31be25d --- /dev/null +++ b/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd @@ -0,0 +1,25 @@ +extends BaseNetInput + +var movement: Vector3 = Vector3.ZERO + +var _movement_buffer: Vector3 = Vector3.ZERO +var _movement_samples: int = 0 + +func _process(_dt: float) -> void: + _movement_buffer += Vector3( + Input.get_axis("move_west", "move_east"), + Input.get_action_strength("move_jump"), + Input.get_axis("move_north", "move_south") + ) + _movement_samples += 1 + +func _gather() -> void: + # Average samples + if _movement_samples > 0: + movement = _movement_buffer / _movement_samples + else: + movement = Vector3.ZERO + + # Reset buffer + _movement_buffer = Vector3.ZERO + _movement_samples = 0 diff --git a/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd.uid b/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd.uid new file mode 100644 index 0000000..cde9e9e --- /dev/null +++ b/examples/snippets/input-gathering-tutorial/continuous-sampled-input.gd.uid @@ -0,0 +1 @@ +uid://wbyota8jwim3 diff --git a/examples/snippets/input-gathering-tutorial/one-off-input.gd b/examples/snippets/input-gathering-tutorial/one-off-input.gd new file mode 100644 index 0000000..215f528 --- /dev/null +++ b/examples/snippets/input-gathering-tutorial/one-off-input.gd @@ -0,0 +1,16 @@ +extends BaseNetInput + +var is_jumping: bool = false +var _is_jumping_buffer: bool = false + +func _ready(): + super() + NetworkTime.after_tick.connect(func(_dt, _t): _gather_always()) + +func _process(_dt: float) -> void: + if Input.is_action_just_pressed("move_jump"): + _is_jumping_buffer = true + +func _gather_always(): + is_jumping = _is_jumping_buffer + _is_jumping_buffer = false diff --git a/examples/snippets/input-gathering-tutorial/one-off-input.gd.uid b/examples/snippets/input-gathering-tutorial/one-off-input.gd.uid new file mode 100644 index 0000000..ca98601 --- /dev/null +++ b/examples/snippets/input-gathering-tutorial/one-off-input.gd.uid @@ -0,0 +1 @@ +uid://btckkptwyp8qj diff --git a/examples/snippets/network-schemas/example-node-serializer.gd b/examples/snippets/network-schemas/example-node-serializer.gd new file mode 100644 index 0000000..179e9b1 --- /dev/null +++ b/examples/snippets/network-schemas/example-node-serializer.gd @@ -0,0 +1,13 @@ +extends NetworkSchemaSerializer +class_name ExampleNodeSerializer + +# Needs to be set from the outside +static var scene_tree: SceneTree + +func encode(value: Variant, buffer: StreamPeerBuffer) -> void: + var node := value as Node + buffer.put_utf8_string(node.get_path()) + +func decode(buffer: StreamPeerBuffer) -> Variant: + var path := buffer.get_utf8_string() + return scene_tree.root.get_node(path) diff --git a/examples/snippets/network-schemas/example-node-serializer.gd.uid b/examples/snippets/network-schemas/example-node-serializer.gd.uid new file mode 100644 index 0000000..e0d21bb --- /dev/null +++ b/examples/snippets/network-schemas/example-node-serializer.gd.uid @@ -0,0 +1 @@ +uid://2pi50io58wll diff --git a/examples/state-synchronizer-npc/README.md b/examples/state-synchronizer-npc/README.md new file mode 100644 index 0000000..385e395 --- /dev/null +++ b/examples/state-synchronizer-npc/README.md @@ -0,0 +1,7 @@ +# StateSynchronizer NPC example + +This example demonstrates the usage of StateSynchronizer. All the NPCs are +simulated on the server, in the tick loop ( as opposed to the rollback loop ). + +Each NPC wanders around, taking a periodical break to look around. + diff --git a/examples/state-synchronizer-npc/scenes/wanderer.tscn b/examples/state-synchronizer-npc/scenes/wanderer.tscn new file mode 100644 index 0000000..ad3dca9 --- /dev/null +++ b/examples/state-synchronizer-npc/scenes/wanderer.tscn @@ -0,0 +1,36 @@ +[gd_scene load_steps=7 format=3 uid="uid://ru7kvgw7wjew"] + +[ext_resource type="Script" path="res://addons/netfox/state-synchronizer.gd" id="1_dmbj5"] +[ext_resource type="Script" path="res://examples/state-synchronizer-npc/scripts/wanderer.gd" id="1_pvikn"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="3_nyirf"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_0ixcg"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_b1vv8"] + +[sub_resource type="SphereMesh" id="SphereMesh_lew78"] +radius = 0.25 +height = 0.5 + +[node name="Wanderer" type="CharacterBody3D"] +script = ExtResource("1_pvikn") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_0ixcg") + +[node name="Body" type="MeshInstance3D" parent="."] +mesh = SubResource("CapsuleMesh_b1vv8") + +[node name="Nose" type="MeshInstance3D" parent="Body"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0.5) +mesh = SubResource("SphereMesh_lew78") + +[node name="StateSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("1_dmbj5") +root = NodePath("..") +properties = Array[String]([":position", ":quaternion"]) + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_nyirf") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/state-synchronizer-npc/scripts/wanderer.gd b/examples/state-synchronizer-npc/scripts/wanderer.gd new file mode 100644 index 0000000..9a88247 --- /dev/null +++ b/examples/state-synchronizer-npc/scripts/wanderer.gd @@ -0,0 +1,65 @@ +extends CharacterBody3D + +@export var move_speed: float = 4.0 +@export var acceleration_time: float = 0.15 + +@export var rest_time_min: float = 0.5 +@export var rest_time_max: float = 2.0 + +@export var wander_dst_min: float = 2.0 +@export var wander_dst_max: float = 4.0 +@export var arrival_range: float = 1.0 + +@export var wander_bounds: Rect2 + +var _wander_target: Vector3 +var _wander_timer: float + +func _ready(): + NetworkTime.on_tick.connect(_tick) + _reset_wander() + +func _tick(dt: float, _t) -> void: + if not is_multiplayer_authority(): + return + + var diff := _wander_target - position + var dst := diff.length() + var dir := diff.normalized() + + var target_velocity := velocity + + if dst < arrival_range: + # We're at the target position, wait until rest time is up + target_velocity = Vector3.ZERO + _wander_timer -= dt + + if _wander_timer <= 0: + _reset_wander() + else: + # We have places to be, go + target_velocity = dir * move_speed + + velocity = velocity.move_toward(target_velocity, move_speed / acceleration_time * dt) + if not velocity.is_zero_approx(): + # Look in the direction we're going + look_at(position + velocity, Vector3.UP, true) + + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _reset_wander() -> void: + _wander_target = _generate_target() + _wander_timer = randf_range(rest_time_min, rest_time_max) + +func _generate_target() -> Vector3: + for __ in range(16): + var angle := randf() * TAU + var distance := randf_range(wander_dst_min, wander_dst_max) + var target := position + distance * Vector3(cos(angle), 0, sin(angle)) + + if wander_bounds.has_point(Vector2(target.x, target.z)): + return target + + return position diff --git a/examples/state-synchronizer-npc/scripts/wanderer.gd.uid b/examples/state-synchronizer-npc/scripts/wanderer.gd.uid new file mode 100644 index 0000000..40291f4 --- /dev/null +++ b/examples/state-synchronizer-npc/scripts/wanderer.gd.uid @@ -0,0 +1 @@ +uid://bsg7hdehjm7de diff --git a/examples/state-synchronizer-npc/state-synchronizer-npc.tscn b/examples/state-synchronizer-npc/state-synchronizer-npc.tscn new file mode 100644 index 0000000..fc27163 --- /dev/null +++ b/examples/state-synchronizer-npc/state-synchronizer-npc.tscn @@ -0,0 +1,82 @@ +[gd_scene load_steps=7 format=3 uid="uid://cl3qmgo4c2nfh"] + +[ext_resource type="PackedScene" uid="uid://cngy6hs8ohodj" path="res://examples/shared/scenes/map-square.tscn" id="1_mm3em"] +[ext_resource type="PackedScene" uid="uid://cncdbq72u50j3" path="res://examples/shared/scenes/environment.tscn" id="2_ykbn6"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="3_mhiy8"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="4_4w44e"] +[ext_resource type="PackedScene" uid="uid://ru7kvgw7wjew" path="res://examples/state-synchronizer-npc/scenes/wanderer.tscn" id="4_47wiq"] + +[sub_resource type="GDScript" id="GDScript_hpcpy"] +script/source = "extends Label + +func _process(_dt): + if multiplayer.is_server(): + text = \"Server\" + else: + text = \"Client\" +" + +[node name="state-synchronizer-npc" type="Node3D"] + +[node name="Square Map" parent="." instance=ExtResource("1_mm3em")] + +[node name="Environment" parent="." instance=ExtResource("2_ykbn6")] + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("3_mhiy8")] +layout_mode = 1 +offset_left = -180.0 +offset_top = -120.0 +offset_right = 180.0 +offset_bottom = 120.0 + +[node name="VBoxContainer" type="VBoxContainer" parent="UI"] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="Time Display" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = ExtResource("4_4w44e") + +[node name="Label" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = SubResource("GDScript_hpcpy") + +[node name="NPCs" type="Node" parent="."] + +[node name="Wanderer" parent="NPCs" instance=ExtResource("4_47wiq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.57406, 0.999999, -6.52385) +wander_bounds = Rect2(-7.5, -7.5, 15, 15) + +[node name="Wanderer2" parent="NPCs" instance=ExtResource("4_47wiq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.42594, 0.999999, -6.52385) +acceleration_time = 0.35 +rest_time_min = 2.0 +rest_time_max = 4.0 +wander_dst_min = 4.0 +wander_dst_max = 8.0 +wander_bounds = Rect2(-7.5, -7.5, 15, 15) + +[node name="Wanderer3" parent="NPCs" instance=ExtResource("4_47wiq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.57406, 0.999999, 6.47615) +move_speed = 4.5 +acceleration_time = 0.05 +rest_time_max = 1.0 +wander_dst_min = 3.0 +wander_dst_max = 6.0 +wander_bounds = Rect2(-7.5, -7.5, 15, 15) + +[node name="Wanderer4" parent="NPCs" instance=ExtResource("4_47wiq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.42594, 0.999999, 6.47615) +acceleration_time = 0.2 +rest_time_min = 2.0 +rest_time_max = 3.0 +wander_bounds = Rect2(-7.5, -7.5, 15, 15) diff --git a/examples/visibility-filtering/README.md b/examples/visibility-filtering/README.md new file mode 100644 index 0000000..f521f63 --- /dev/null +++ b/examples/visibility-filtering/README.md @@ -0,0 +1,19 @@ +# Visibility filtering example + +Demonstrates netfox's [visibility filtering] feature. + +The level is split into two rooms, with a door connecting them in the middle. +While the hosting player sees everyone all the time, other players only receive +updates from players that they have *a clear line of sight* to. Players that +are invisible become transparent. + +Note that this example doesn't try to be a full-fledged solution, but a small +demonstration of capability. This example does not provide a production-ready +solution. + +Another limitation is that players might have line of sight to a hidden player +with their last known position, but not with their *actual* one. This means +that a player might fade in, but still not receive updates. + + +[visibility filtering]: https://foxssake.github.io/netfox/latest/netfox/guides/visibility-management/ diff --git a/examples/visibility-filtering/scenes/player.tscn b/examples/visibility-filtering/scenes/player.tscn new file mode 100644 index 0000000..4b1debb --- /dev/null +++ b/examples/visibility-filtering/scenes/player.tscn @@ -0,0 +1,41 @@ +[gd_scene load_steps=8 format=3 uid="uid://bd40plic1m6fb"] + +[ext_resource type="Script" path="res://examples/visibility-filtering/scripts/player.gd" id="1_25yu8"] +[ext_resource type="Script" path="res://examples/visibility-filtering/scripts/player-input.gd" id="2_safub"] +[ext_resource type="Script" path="res://addons/netfox/rollback/rollback-synchronizer.gd" id="3_bp1im"] +[ext_resource type="Script" path="res://addons/netfox/tick-interpolator.gd" id="4_ykfui"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s18dy"] +transparency = 4 + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_t0alo"] +material = SubResource("StandardMaterial3D_s18dy") + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_1dm6n"] + +[node name="Player" type="CharacterBody3D" groups=["Players"]] +collision_mask = 3 +script = ExtResource("1_25yu8") +jump_velocity = 5.0 + +[node name="Body Mesh" type="MeshInstance3D" parent="."] +transparency = 0.5 +mesh = SubResource("CapsuleMesh_t0alo") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_1dm6n") + +[node name="Input" type="Node" parent="."] +script = ExtResource("2_safub") + +[node name="RollbackSynchronizer" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("3_bp1im") +root = NodePath("..") +state_properties = Array[String]([":transform", ":velocity"]) +input_properties = Array[String](["Input:movement", "Input:is_jumping"]) +enable_input_broadcast = false + +[node name="TickInterpolator" type="Node" parent="." node_paths=PackedStringArray("root")] +script = ExtResource("4_ykfui") +root = NodePath("..") +properties = Array[String]([":transform"]) diff --git a/examples/visibility-filtering/scripts/npc.gd.uid b/examples/visibility-filtering/scripts/npc.gd.uid new file mode 100644 index 0000000..2bfad08 --- /dev/null +++ b/examples/visibility-filtering/scripts/npc.gd.uid @@ -0,0 +1 @@ +uid://7ru5vkblxide diff --git a/examples/visibility-filtering/scripts/player-input.gd b/examples/visibility-filtering/scripts/player-input.gd new file mode 100644 index 0000000..b5e3586 --- /dev/null +++ b/examples/visibility-filtering/scripts/player-input.gd @@ -0,0 +1,20 @@ +@tool +extends BaseNetInput + +var movement: Vector3 +var is_jumping: bool + +func _get_rollback_input_properties() -> Array: + return [ + "movement", + "is_jumping" + ] + +func _gather(): + movement = Vector3( + Input.get_axis("move_west", "move_east"), + 0.0, + Input.get_axis("move_north", "move_south") + ) + + is_jumping = Input.is_action_pressed("move_jump") diff --git a/examples/visibility-filtering/scripts/player-input.gd.uid b/examples/visibility-filtering/scripts/player-input.gd.uid new file mode 100644 index 0000000..554df13 --- /dev/null +++ b/examples/visibility-filtering/scripts/player-input.gd.uid @@ -0,0 +1 @@ +uid://brtfiqnk5alw6 diff --git a/examples/visibility-filtering/scripts/player.gd b/examples/visibility-filtering/scripts/player.gd new file mode 100644 index 0000000..f7da6aa --- /dev/null +++ b/examples/visibility-filtering/scripts/player.gd @@ -0,0 +1,105 @@ +@tool +extends CharacterBody3D + +@export var speed := 4.0 +@export var jump_velocity := 8.0 + +@export var input: Node +@export var body_mesh: MeshInstance3D + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting(&"physics/3d/default_gravity") + +func is_local() -> bool: + return input.is_multiplayer_authority() + +func get_local() -> ExampleVisibilityFiltering.Player: + return get_tree().get_first_node_in_group("Local Player") + +func can_see(target: Node3D) -> bool: + var space := get_world_3d().direct_space_state + + var query := PhysicsRayQueryParameters3D.new() + query.collide_with_areas = false + query.collide_with_bodies = true + query.collision_mask = 2 # Only collide with level geometry + query.from = global_position + query.to = target.global_position + + return space.intersect_ray(query).is_empty() + +func _get_rollback_state_properties() -> Array: + return [ + "transform", + "velocity" + ] + +func _get_interpolated_properties() -> Array: + return [ + "transform" + ] + +func _ready(): + if Engine.is_editor_hint(): return + + if not input: input = $Input + if not body_mesh: body_mesh = $"Body Mesh" + + # Set spawn position + position = Vector3(0, 4, 0) + + # Assign a random color + var player_id := input.get_multiplayer_authority() + + var color := Color.from_hsv((hash(player_id) % 256) / 256.0, 1.0, 1.0) + var material := body_mesh.get_active_material(0) as StandardMaterial3D + material = material.duplicate() + material.albedo_color = color + body_mesh.set_surface_override_material(0, material) + + # Save local player + if is_local(): + add_to_group("Local Player") + +func _rollback_tick(dt, _tick, _is_fresh: bool): + # Add gravity + _force_update_is_on_floor() + if not is_on_floor(): + velocity.y -= gravity * dt + + var input_dir = input.movement + var direction = (transform.basis * Vector3(input_dir.x, 0, input_dir.z)).normalized() + if direction: + velocity.x = direction.x * speed + velocity.z = direction.z * speed + else: + velocity.x = move_toward(velocity.x, 0, speed) + velocity.z = move_toward(velocity.z, 0, speed) + + # Jump + if input.is_jumping and is_on_floor(): + velocity.y = jump_velocity + + # move_and_slide assumes physics delta + # multiplying velocity by NetworkTime.physics_factor compensates for it + velocity *= NetworkTime.physics_factor + move_and_slide() + velocity /= NetworkTime.physics_factor + +func _physics_process(dt: float): + if Engine.is_editor_hint(): return + + # Determine visibility + var is_visible := true + if not is_local(): + is_visible = get_local().can_see(self) + + # Quick hack to smoothly fade + body_mesh.transparency = lerpf(body_mesh.transparency, 0.0 if is_visible else 0.5, dt / 0.15) + +func _force_update_is_on_floor(): + var old_velocity = velocity + velocity = Vector3.ZERO + move_and_slide() + velocity = old_velocity + diff --git a/examples/visibility-filtering/scripts/player.gd.uid b/examples/visibility-filtering/scripts/player.gd.uid new file mode 100644 index 0000000..d5afad0 --- /dev/null +++ b/examples/visibility-filtering/scripts/player.gd.uid @@ -0,0 +1 @@ +uid://cn33wgc64tn4k diff --git a/examples/visibility-filtering/scripts/visibility-manager.gd b/examples/visibility-filtering/scripts/visibility-manager.gd new file mode 100644 index 0000000..aa7d7e9 --- /dev/null +++ b/examples/visibility-filtering/scripts/visibility-manager.gd @@ -0,0 +1,33 @@ +extends Node3D + +func _ready() -> void: + NetworkRollback.on_process_tick.connect(_rollback_tick) + +func _rollback_tick(_t: int) -> void: + var player_nodes := {} + var player_synchronizers := {} + + # NOTE: Input broadcast must be turned off for this to work + for player in get_tree().get_nodes_in_group("Players"): + var rbs := player.get_node("RollbackSynchronizer") + var peer := player.get_node("Input").get_multiplayer_authority() + + player_nodes[peer] = player + player_synchronizers[peer] = rbs + + for peer in player_synchronizers: + var node := player_nodes[peer] as ExampleVisibilityFiltering.Player + var rbs := player_synchronizers[peer] as RollbackSynchronizer + + # We don't own state + if not rbs.is_multiplayer_authority(): continue + + # Only transmit data to players who can see us + for other_peer in player_synchronizers: + if other_peer == peer: continue + + var other_node := player_nodes[other_peer] as ExampleVisibilityFiltering.Player + var can_see := node.can_see(other_node) + rbs.visibility_filter.set_visibility_for(other_peer, can_see) + + rbs.visibility_filter.update_visibility() diff --git a/examples/visibility-filtering/scripts/visibility-manager.gd.uid b/examples/visibility-filtering/scripts/visibility-manager.gd.uid new file mode 100644 index 0000000..bd6812a --- /dev/null +++ b/examples/visibility-filtering/scripts/visibility-manager.gd.uid @@ -0,0 +1 @@ +uid://dva6bxsg6rt23 diff --git a/examples/visibility-filtering/visibility-filtering.gd b/examples/visibility-filtering/visibility-filtering.gd new file mode 100644 index 0000000..7f5b5de --- /dev/null +++ b/examples/visibility-filtering/visibility-filtering.gd @@ -0,0 +1,5 @@ +extends Object +class_name ExampleVisibilityFiltering + +const Player := preload("res://examples/visibility-filtering/scripts/player.gd") +const PlayerInput := preload("res://examples/visibility-filtering/scripts/player-input.gd") diff --git a/examples/visibility-filtering/visibility-filtering.gd.uid b/examples/visibility-filtering/visibility-filtering.gd.uid new file mode 100644 index 0000000..48ff8a0 --- /dev/null +++ b/examples/visibility-filtering/visibility-filtering.gd.uid @@ -0,0 +1 @@ +uid://brptvbo6qq8ym diff --git a/examples/visibility-filtering/visibility-filtering.tscn b/examples/visibility-filtering/visibility-filtering.tscn new file mode 100644 index 0000000..5cc9cab --- /dev/null +++ b/examples/visibility-filtering/visibility-filtering.tscn @@ -0,0 +1,111 @@ +[gd_scene load_steps=8 format=3 uid="uid://dliw6lntsr5ce"] + +[ext_resource type="PackedScene" uid="uid://cncdbq72u50j3" path="res://examples/shared/scenes/environment.tscn" id="1_vhod1"] +[ext_resource type="Script" path="res://examples/shared/scripts/player-spawner.gd" id="2_7yqbt"] +[ext_resource type="PackedScene" uid="uid://bd40plic1m6fb" path="res://examples/visibility-filtering/scenes/player.tscn" id="3_ohgyy"] +[ext_resource type="Script" path="res://examples/visibility-filtering/scripts/visibility-manager.gd" id="4_jies5"] +[ext_resource type="PackedScene" uid="uid://badtpsxn5lago" path="res://examples/shared/ui/network-popup.tscn" id="4_ujnwk"] +[ext_resource type="Script" path="res://examples/shared/scripts/simple-time-display.gd" id="6_lqh40"] + +[sub_resource type="GDScript" id="GDScript_fdk23"] +script/source = "extends Label + +func _process(_dt): + if multiplayer.is_server(): + text = \"Server\" + else: + text = \"Client\" +" + +[node name="Visibility Filtering Example" type="Node3D"] + +[node name="Map" type="Node3D" parent="."] + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="Map"] +use_collision = true +collision_layer = 2 +collision_mask = 3 + +[node name="CSGFloor" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) +size = Vector3(16, 0.5, 16) + +[node name="CSGWall" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +size = Vector3(16, 2, 1) + +[node name="CSGWall2" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -8) +size = Vector3(16, 2, 1) + +[node name="CSGWall3" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall4" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 0) +size = Vector3(1, 2, 16) + +[node name="CSGWall5" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -5) +size = Vector3(1, 2, 6) + +[node name="CSGWall6" type="CSGBox3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 5) +size = Vector3(1, 2, 6) + +[node name="CSGCorner" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 8) + +[node name="CSGCorner2" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, -8) + +[node name="CSGCorner3" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, -8) + +[node name="CSGCorner4" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 1, 8) + +[node name="CSGCorner5" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, -2) + +[node name="CSGCorner6" type="CSGCylinder3D" parent="Map/CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 2) + +[node name="Environment" parent="." instance=ExtResource("1_vhod1")] + +[node name="Player Spawner" type="Node" parent="." node_paths=PackedStringArray("spawn_root")] +script = ExtResource("2_7yqbt") +player_scene = ExtResource("3_ohgyy") +spawn_root = NodePath(".") + +[node name="Visibility Manager" type="Node3D" parent="."] +script = ExtResource("4_jies5") + +[node name="UI" type="Control" parent="."] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Network Popup" parent="UI" instance=ExtResource("4_ujnwk")] +layout_mode = 1 +offset_left = -180.0 +offset_top = -120.0 +offset_right = 180.0 +offset_bottom = 120.0 + +[node name="VBoxContainer" type="VBoxContainer" parent="UI"] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 40.0 + +[node name="Time Display" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = ExtResource("6_lqh40") + +[node name="Label" type="Label" parent="UI/VBoxContainer"] +layout_mode = 2 +script = SubResource("GDScript_fdk23") diff --git a/export_presets.cfg b/export_presets.cfg index 3b5eae8..1b0bb13 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -1,4 +1,5 @@ [preset.0] + name="Windows Desktop" platform="Windows Desktop" runnable=true @@ -6,18 +7,26 @@ dedicated_server=false custom_features="" export_filter="all_resources" include_filter="" -exclude_filter="" +exclude_filter="examples/forest-brawl/**, examples/input-gathering/**, examples/input-prediction/**, examples/multiplayer-netfox/**, examples/multiplayer-simple/**, examples/multiplayer-state-machine/**, examples/property-configuration/**, examples/rollback-debugger/**, examples/rollback-fps/**, examples/rollback-npc/**, examples/shared/**, examples/single-player/**, examples/snippets/**, examples/state-synchronizer-npc/**, examples/visibility-filtering/**, addons/vest/**, docs/**, test/**, sh/**, script_templates/**, *.off, .claude/**, CLAUDE.md" export_path="build/tactical-shooter-windows-x86_64/tactical-shooter.exe" patches=PackedStringArray() +patch_delta_encoding=false +patch_delta_compression_level_zstd=19 +patch_delta_min_reduction=0.1 +patch_delta_include_filters="*" +patch_delta_exclude_filters="" encryption_include_filters="" encryption_exclude_filters="" -encrypt_pck=false +seed=0 +encrypt_pck=true encrypt_directory=false -script_encryption_key="" +script_export_mode=2 [preset.0.options] + custom_template/debug="" custom_template/release="" +debug/export_console_wrapper=0 binary_format/embed_pck=true binary_format/architecture="x86_64" texture_format/s3tc_bptc=true @@ -41,6 +50,7 @@ xr_features/hand_tracking=false xr_features/passthrough=false [preset.1] + name="Linux Server" platform="Linux/X11" runnable=true @@ -48,16 +58,23 @@ dedicated_server=true custom_features="" export_filter="all_resources" include_filter="" -exclude_filter="client/**, gdextension.disabled/**, server/server-browser-api/venv/**, **/venv/**" +exclude_filter="examples/forest-brawl/**, examples/input-gathering/**, examples/input-prediction/**, examples/multiplayer-netfox/**, examples/multiplayer-simple/**, examples/multiplayer-state-machine/**, examples/property-configuration/**, examples/rollback-debugger/**, examples/rollback-fps/**, examples/rollback-npc/**, examples/shared/**, examples/single-player/**, examples/snippets/**, examples/state-synchronizer-npc/**, examples/visibility-filtering/**, addons/vest/**, docs/**, test/**, sh/**, script_templates/**, *.off, .claude/**, CLAUDE.md, config/**" export_path="build/tactical-shooter-server.x86_64" patches=PackedStringArray() +patch_delta_encoding=false +patch_delta_compression_level_zstd=19 +patch_delta_min_reduction=0.1 +patch_delta_include_filters="*" +patch_delta_exclude_filters="" encryption_include_filters="" encryption_exclude_filters="" -encrypt_pck=false +seed=0 +encrypt_pck=true encrypt_directory=false -script_encryption_key="" +script_export_mode=2 [preset.1.options] + custom_template/debug="" custom_template/release="" binary_format/embed_pck=true @@ -65,8 +82,6 @@ binary_format/architecture="x86_64" texture_format/s3tc_bptc=true texture_format/etc2_astc=false texture_format/no_bptc_fallbacks=true -dotnet/include_scripts_content=false -dotnet/rollforward_to_latest_prerelease=true codesign/identity="" codesign/timestamp=true codesign/timestamp_server_url="" diff --git a/extension_api.json b/extension_api.json deleted file mode 100644 index 99e6f5b..0000000 --- a/extension_api.json +++ /dev/null @@ -1,361303 +0,0 @@ -{ - "header": { - "version_major": 4, - "version_minor": 7, - "version_patch": 0, - "version_status": "stable", - "version_build": "official", - "version_full_name": "Godot Engine v4.7.stable.official", - "precision": "single" - }, - "builtin_class_sizes": [ - { - "build_configuration": "float_32", - "sizes": [ - { - "name": "Nil", - "size": 0 - }, - { - "name": "bool", - "size": 1 - }, - { - "name": "int", - "size": 8 - }, - { - "name": "float", - "size": 8 - }, - { - "name": "String", - "size": 4 - }, - { - "name": "Vector2", - "size": 8 - }, - { - "name": "Vector2i", - "size": 8 - }, - { - "name": "Rect2", - "size": 16 - }, - { - "name": "Rect2i", - "size": 16 - }, - { - "name": "Vector3", - "size": 12 - }, - { - "name": "Vector3i", - "size": 12 - }, - { - "name": "Transform2D", - "size": 24 - }, - { - "name": "Vector4", - "size": 16 - }, - { - "name": "Vector4i", - "size": 16 - }, - { - "name": "Plane", - "size": 16 - }, - { - "name": "Quaternion", - "size": 16 - }, - { - "name": "AABB", - "size": 24 - }, - { - "name": "Basis", - "size": 36 - }, - { - "name": "Transform3D", - "size": 48 - }, - { - "name": "Projection", - "size": 64 - }, - { - "name": "Color", - "size": 16 - }, - { - "name": "StringName", - "size": 4 - }, - { - "name": "NodePath", - "size": 4 - }, - { - "name": "RID", - "size": 8 - }, - { - "name": "Object", - "size": 4 - }, - { - "name": "Callable", - "size": 16 - }, - { - "name": "Signal", - "size": 16 - }, - { - "name": "Dictionary", - "size": 4 - }, - { - "name": "Array", - "size": 4 - }, - { - "name": "PackedByteArray", - "size": 8 - }, - { - "name": "PackedInt32Array", - "size": 8 - }, - { - "name": "PackedInt64Array", - "size": 8 - }, - { - "name": "PackedFloat32Array", - "size": 8 - }, - { - "name": "PackedFloat64Array", - "size": 8 - }, - { - "name": "PackedStringArray", - "size": 8 - }, - { - "name": "PackedVector2Array", - "size": 8 - }, - { - "name": "PackedVector3Array", - "size": 8 - }, - { - "name": "PackedColorArray", - "size": 8 - }, - { - "name": "PackedVector4Array", - "size": 8 - }, - { - "name": "Variant", - "size": 24 - } - ] - }, - { - "build_configuration": "float_64", - "sizes": [ - { - "name": "Nil", - "size": 0 - }, - { - "name": "bool", - "size": 1 - }, - { - "name": "int", - "size": 8 - }, - { - "name": "float", - "size": 8 - }, - { - "name": "String", - "size": 8 - }, - { - "name": "Vector2", - "size": 8 - }, - { - "name": "Vector2i", - "size": 8 - }, - { - "name": "Rect2", - "size": 16 - }, - { - "name": "Rect2i", - "size": 16 - }, - { - "name": "Vector3", - "size": 12 - }, - { - "name": "Vector3i", - "size": 12 - }, - { - "name": "Transform2D", - "size": 24 - }, - { - "name": "Vector4", - "size": 16 - }, - { - "name": "Vector4i", - "size": 16 - }, - { - "name": "Plane", - "size": 16 - }, - { - "name": "Quaternion", - "size": 16 - }, - { - "name": "AABB", - "size": 24 - }, - { - "name": "Basis", - "size": 36 - }, - { - "name": "Transform3D", - "size": 48 - }, - { - "name": "Projection", - "size": 64 - }, - { - "name": "Color", - "size": 16 - }, - { - "name": "StringName", - "size": 8 - }, - { - "name": "NodePath", - "size": 8 - }, - { - "name": "RID", - "size": 8 - }, - { - "name": "Object", - "size": 8 - }, - { - "name": "Callable", - "size": 16 - }, - { - "name": "Signal", - "size": 16 - }, - { - "name": "Dictionary", - "size": 8 - }, - { - "name": "Array", - "size": 8 - }, - { - "name": "PackedByteArray", - "size": 16 - }, - { - "name": "PackedInt32Array", - "size": 16 - }, - { - "name": "PackedInt64Array", - "size": 16 - }, - { - "name": "PackedFloat32Array", - "size": 16 - }, - { - "name": "PackedFloat64Array", - "size": 16 - }, - { - "name": "PackedStringArray", - "size": 16 - }, - { - "name": "PackedVector2Array", - "size": 16 - }, - { - "name": "PackedVector3Array", - "size": 16 - }, - { - "name": "PackedColorArray", - "size": 16 - }, - { - "name": "PackedVector4Array", - "size": 16 - }, - { - "name": "Variant", - "size": 24 - } - ] - }, - { - "build_configuration": "double_32", - "sizes": [ - { - "name": "Nil", - "size": 0 - }, - { - "name": "bool", - "size": 1 - }, - { - "name": "int", - "size": 8 - }, - { - "name": "float", - "size": 8 - }, - { - "name": "String", - "size": 4 - }, - { - "name": "Vector2", - "size": 16 - }, - { - "name": "Vector2i", - "size": 8 - }, - { - "name": "Rect2", - "size": 32 - }, - { - "name": "Rect2i", - "size": 16 - }, - { - "name": "Vector3", - "size": 24 - }, - { - "name": "Vector3i", - "size": 12 - }, - { - "name": "Transform2D", - "size": 48 - }, - { - "name": "Vector4", - "size": 32 - }, - { - "name": "Vector4i", - "size": 16 - }, - { - "name": "Plane", - "size": 32 - }, - { - "name": "Quaternion", - "size": 32 - }, - { - "name": "AABB", - "size": 48 - }, - { - "name": "Basis", - "size": 72 - }, - { - "name": "Transform3D", - "size": 96 - }, - { - "name": "Projection", - "size": 128 - }, - { - "name": "Color", - "size": 16 - }, - { - "name": "StringName", - "size": 4 - }, - { - "name": "NodePath", - "size": 4 - }, - { - "name": "RID", - "size": 8 - }, - { - "name": "Object", - "size": 4 - }, - { - "name": "Callable", - "size": 16 - }, - { - "name": "Signal", - "size": 16 - }, - { - "name": "Dictionary", - "size": 4 - }, - { - "name": "Array", - "size": 4 - }, - { - "name": "PackedByteArray", - "size": 8 - }, - { - "name": "PackedInt32Array", - "size": 8 - }, - { - "name": "PackedInt64Array", - "size": 8 - }, - { - "name": "PackedFloat32Array", - "size": 8 - }, - { - "name": "PackedFloat64Array", - "size": 8 - }, - { - "name": "PackedStringArray", - "size": 8 - }, - { - "name": "PackedVector2Array", - "size": 8 - }, - { - "name": "PackedVector3Array", - "size": 8 - }, - { - "name": "PackedColorArray", - "size": 8 - }, - { - "name": "PackedVector4Array", - "size": 8 - }, - { - "name": "Variant", - "size": 40 - } - ] - }, - { - "build_configuration": "double_64", - "sizes": [ - { - "name": "Nil", - "size": 0 - }, - { - "name": "bool", - "size": 1 - }, - { - "name": "int", - "size": 8 - }, - { - "name": "float", - "size": 8 - }, - { - "name": "String", - "size": 8 - }, - { - "name": "Vector2", - "size": 16 - }, - { - "name": "Vector2i", - "size": 8 - }, - { - "name": "Rect2", - "size": 32 - }, - { - "name": "Rect2i", - "size": 16 - }, - { - "name": "Vector3", - "size": 24 - }, - { - "name": "Vector3i", - "size": 12 - }, - { - "name": "Transform2D", - "size": 48 - }, - { - "name": "Vector4", - "size": 32 - }, - { - "name": "Vector4i", - "size": 16 - }, - { - "name": "Plane", - "size": 32 - }, - { - "name": "Quaternion", - "size": 32 - }, - { - "name": "AABB", - "size": 48 - }, - { - "name": "Basis", - "size": 72 - }, - { - "name": "Transform3D", - "size": 96 - }, - { - "name": "Projection", - "size": 128 - }, - { - "name": "Color", - "size": 16 - }, - { - "name": "StringName", - "size": 8 - }, - { - "name": "NodePath", - "size": 8 - }, - { - "name": "RID", - "size": 8 - }, - { - "name": "Object", - "size": 8 - }, - { - "name": "Callable", - "size": 16 - }, - { - "name": "Signal", - "size": 16 - }, - { - "name": "Dictionary", - "size": 8 - }, - { - "name": "Array", - "size": 8 - }, - { - "name": "PackedByteArray", - "size": 16 - }, - { - "name": "PackedInt32Array", - "size": 16 - }, - { - "name": "PackedInt64Array", - "size": 16 - }, - { - "name": "PackedFloat32Array", - "size": 16 - }, - { - "name": "PackedFloat64Array", - "size": 16 - }, - { - "name": "PackedStringArray", - "size": 16 - }, - { - "name": "PackedVector2Array", - "size": 16 - }, - { - "name": "PackedVector3Array", - "size": 16 - }, - { - "name": "PackedColorArray", - "size": 16 - }, - { - "name": "PackedVector4Array", - "size": 16 - }, - { - "name": "Variant", - "size": 40 - } - ] - } - ], - "builtin_class_member_offsets": [ - { - "build_configuration": "float_32", - "classes": [ - { - "name": "Vector2", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - } - ] - }, - { - "name": "Vector2i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - } - ] - }, - { - "name": "Rect2", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2" - } - ] - }, - { - "name": "Rect2i", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2i" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2i" - } - ] - }, - { - "name": "Vector3", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - } - ] - }, - { - "name": "Vector3i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - } - ] - }, - { - "name": "Transform2D", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "y", - "offset": 8, - "meta": "Vector2" - }, - { - "member": "origin", - "offset": 16, - "meta": "Vector2" - } - ] - }, - { - "name": "Vector4", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - }, - { - "member": "w", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "Vector4i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - }, - { - "member": "w", - "offset": 12, - "meta": "int32" - } - ] - }, - { - "name": "Plane", - "members": [ - { - "member": "normal", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "d", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "Quaternion", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - }, - { - "member": "w", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "AABB", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "size", - "offset": 12, - "meta": "Vector3" - } - ] - }, - { - "name": "Basis", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "y", - "offset": 12, - "meta": "Vector3" - }, - { - "member": "z", - "offset": 24, - "meta": "Vector3" - } - ] - }, - { - "name": "Transform3D", - "members": [ - { - "member": "basis", - "offset": 0, - "meta": "Basis" - }, - { - "member": "origin", - "offset": 36, - "meta": "Vector3" - } - ] - }, - { - "name": "Projection", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector4" - }, - { - "member": "y", - "offset": 16, - "meta": "Vector4" - }, - { - "member": "z", - "offset": 32, - "meta": "Vector4" - }, - { - "member": "w", - "offset": 48, - "meta": "Vector4" - } - ] - }, - { - "name": "Color", - "members": [ - { - "member": "r", - "offset": 0, - "meta": "float" - }, - { - "member": "g", - "offset": 4, - "meta": "float" - }, - { - "member": "b", - "offset": 8, - "meta": "float" - }, - { - "member": "a", - "offset": 12, - "meta": "float" - } - ] - } - ] - }, - { - "build_configuration": "float_64", - "classes": [ - { - "name": "Vector2", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - } - ] - }, - { - "name": "Vector2i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - } - ] - }, - { - "name": "Rect2", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2" - } - ] - }, - { - "name": "Rect2i", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2i" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2i" - } - ] - }, - { - "name": "Vector3", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - } - ] - }, - { - "name": "Vector3i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - } - ] - }, - { - "name": "Transform2D", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "y", - "offset": 8, - "meta": "Vector2" - }, - { - "member": "origin", - "offset": 16, - "meta": "Vector2" - } - ] - }, - { - "name": "Vector4", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - }, - { - "member": "w", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "Vector4i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - }, - { - "member": "w", - "offset": 12, - "meta": "int32" - } - ] - }, - { - "name": "Plane", - "members": [ - { - "member": "normal", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "d", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "Quaternion", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "float" - }, - { - "member": "y", - "offset": 4, - "meta": "float" - }, - { - "member": "z", - "offset": 8, - "meta": "float" - }, - { - "member": "w", - "offset": 12, - "meta": "float" - } - ] - }, - { - "name": "AABB", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "size", - "offset": 12, - "meta": "Vector3" - } - ] - }, - { - "name": "Basis", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "y", - "offset": 12, - "meta": "Vector3" - }, - { - "member": "z", - "offset": 24, - "meta": "Vector3" - } - ] - }, - { - "name": "Transform3D", - "members": [ - { - "member": "basis", - "offset": 0, - "meta": "Basis" - }, - { - "member": "origin", - "offset": 36, - "meta": "Vector3" - } - ] - }, - { - "name": "Projection", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector4" - }, - { - "member": "y", - "offset": 16, - "meta": "Vector4" - }, - { - "member": "z", - "offset": 32, - "meta": "Vector4" - }, - { - "member": "w", - "offset": 48, - "meta": "Vector4" - } - ] - }, - { - "name": "Color", - "members": [ - { - "member": "r", - "offset": 0, - "meta": "float" - }, - { - "member": "g", - "offset": 4, - "meta": "float" - }, - { - "member": "b", - "offset": 8, - "meta": "float" - }, - { - "member": "a", - "offset": 12, - "meta": "float" - } - ] - } - ] - }, - { - "build_configuration": "double_32", - "classes": [ - { - "name": "Vector2", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - } - ] - }, - { - "name": "Vector2i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - } - ] - }, - { - "name": "Rect2", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "size", - "offset": 16, - "meta": "Vector2" - } - ] - }, - { - "name": "Rect2i", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2i" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2i" - } - ] - }, - { - "name": "Vector3", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - } - ] - }, - { - "name": "Vector3i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - } - ] - }, - { - "name": "Transform2D", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "y", - "offset": 16, - "meta": "Vector2" - }, - { - "member": "origin", - "offset": 32, - "meta": "Vector2" - } - ] - }, - { - "name": "Vector4", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - }, - { - "member": "w", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "Vector4i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - }, - { - "member": "w", - "offset": 12, - "meta": "int32" - } - ] - }, - { - "name": "Plane", - "members": [ - { - "member": "normal", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "d", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "Quaternion", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - }, - { - "member": "w", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "AABB", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "size", - "offset": 24, - "meta": "Vector3" - } - ] - }, - { - "name": "Basis", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "y", - "offset": 24, - "meta": "Vector3" - }, - { - "member": "z", - "offset": 48, - "meta": "Vector3" - } - ] - }, - { - "name": "Transform3D", - "members": [ - { - "member": "basis", - "offset": 0, - "meta": "Basis" - }, - { - "member": "origin", - "offset": 72, - "meta": "Vector3" - } - ] - }, - { - "name": "Projection", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector4" - }, - { - "member": "y", - "offset": 32, - "meta": "Vector4" - }, - { - "member": "z", - "offset": 64, - "meta": "Vector4" - }, - { - "member": "w", - "offset": 96, - "meta": "Vector4" - } - ] - }, - { - "name": "Color", - "members": [ - { - "member": "r", - "offset": 0, - "meta": "float" - }, - { - "member": "g", - "offset": 4, - "meta": "float" - }, - { - "member": "b", - "offset": 8, - "meta": "float" - }, - { - "member": "a", - "offset": 12, - "meta": "float" - } - ] - } - ] - }, - { - "build_configuration": "double_64", - "classes": [ - { - "name": "Vector2", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - } - ] - }, - { - "name": "Vector2i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - } - ] - }, - { - "name": "Rect2", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "size", - "offset": 16, - "meta": "Vector2" - } - ] - }, - { - "name": "Rect2i", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector2i" - }, - { - "member": "size", - "offset": 8, - "meta": "Vector2i" - } - ] - }, - { - "name": "Vector3", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - } - ] - }, - { - "name": "Vector3i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - } - ] - }, - { - "name": "Transform2D", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector2" - }, - { - "member": "y", - "offset": 16, - "meta": "Vector2" - }, - { - "member": "origin", - "offset": 32, - "meta": "Vector2" - } - ] - }, - { - "name": "Vector4", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - }, - { - "member": "w", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "Vector4i", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "int32" - }, - { - "member": "y", - "offset": 4, - "meta": "int32" - }, - { - "member": "z", - "offset": 8, - "meta": "int32" - }, - { - "member": "w", - "offset": 12, - "meta": "int32" - } - ] - }, - { - "name": "Plane", - "members": [ - { - "member": "normal", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "d", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "Quaternion", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "double" - }, - { - "member": "y", - "offset": 8, - "meta": "double" - }, - { - "member": "z", - "offset": 16, - "meta": "double" - }, - { - "member": "w", - "offset": 24, - "meta": "double" - } - ] - }, - { - "name": "AABB", - "members": [ - { - "member": "position", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "size", - "offset": 24, - "meta": "Vector3" - } - ] - }, - { - "name": "Basis", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector3" - }, - { - "member": "y", - "offset": 24, - "meta": "Vector3" - }, - { - "member": "z", - "offset": 48, - "meta": "Vector3" - } - ] - }, - { - "name": "Transform3D", - "members": [ - { - "member": "basis", - "offset": 0, - "meta": "Basis" - }, - { - "member": "origin", - "offset": 72, - "meta": "Vector3" - } - ] - }, - { - "name": "Projection", - "members": [ - { - "member": "x", - "offset": 0, - "meta": "Vector4" - }, - { - "member": "y", - "offset": 32, - "meta": "Vector4" - }, - { - "member": "z", - "offset": 64, - "meta": "Vector4" - }, - { - "member": "w", - "offset": 96, - "meta": "Vector4" - } - ] - }, - { - "name": "Color", - "members": [ - { - "member": "r", - "offset": 0, - "meta": "float" - }, - { - "member": "g", - "offset": 4, - "meta": "float" - }, - { - "member": "b", - "offset": 8, - "meta": "float" - }, - { - "member": "a", - "offset": 12, - "meta": "float" - } - ] - } - ] - } - ], - "global_constants": [ - { - "name": "UINT8_MAX", - "value": 255, - "is_bitfield": false - }, - { - "name": "UINT16_MAX", - "value": 65535, - "is_bitfield": false - }, - { - "name": "UINT32_MAX", - "value": 4294967295, - "is_bitfield": false - }, - { - "name": "INT8_MIN", - "value": -128, - "is_bitfield": false - }, - { - "name": "INT8_MAX", - "value": 127, - "is_bitfield": false - }, - { - "name": "INT16_MIN", - "value": -32768, - "is_bitfield": false - }, - { - "name": "INT16_MAX", - "value": 32767, - "is_bitfield": false - }, - { - "name": "INT32_MIN", - "value": -2147483648, - "is_bitfield": false - }, - { - "name": "INT32_MAX", - "value": 2147483647, - "is_bitfield": false - }, - { - "name": "INT64_MIN", - "value": -9223372036854775808, - "is_bitfield": false - }, - { - "name": "INT64_MAX", - "value": 9223372036854775807, - "is_bitfield": false - } - ], - "global_enums": [ - { - "name": "Side", - "is_bitfield": false, - "values": [ - { - "name": "SIDE_LEFT", - "value": 0 - }, - { - "name": "SIDE_TOP", - "value": 1 - }, - { - "name": "SIDE_RIGHT", - "value": 2 - }, - { - "name": "SIDE_BOTTOM", - "value": 3 - } - ] - }, - { - "name": "Corner", - "is_bitfield": false, - "values": [ - { - "name": "CORNER_TOP_LEFT", - "value": 0 - }, - { - "name": "CORNER_TOP_RIGHT", - "value": 1 - }, - { - "name": "CORNER_BOTTOM_RIGHT", - "value": 2 - }, - { - "name": "CORNER_BOTTOM_LEFT", - "value": 3 - } - ] - }, - { - "name": "Orientation", - "is_bitfield": false, - "values": [ - { - "name": "VERTICAL", - "value": 1 - }, - { - "name": "HORIZONTAL", - "value": 0 - } - ] - }, - { - "name": "ClockDirection", - "is_bitfield": false, - "values": [ - { - "name": "CLOCKWISE", - "value": 0 - }, - { - "name": "COUNTERCLOCKWISE", - "value": 1 - } - ] - }, - { - "name": "HorizontalAlignment", - "is_bitfield": false, - "values": [ - { - "name": "HORIZONTAL_ALIGNMENT_LEFT", - "value": 0 - }, - { - "name": "HORIZONTAL_ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "HORIZONTAL_ALIGNMENT_RIGHT", - "value": 2 - }, - { - "name": "HORIZONTAL_ALIGNMENT_FILL", - "value": 3 - } - ] - }, - { - "name": "VerticalAlignment", - "is_bitfield": false, - "values": [ - { - "name": "VERTICAL_ALIGNMENT_TOP", - "value": 0 - }, - { - "name": "VERTICAL_ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "VERTICAL_ALIGNMENT_BOTTOM", - "value": 2 - }, - { - "name": "VERTICAL_ALIGNMENT_FILL", - "value": 3 - } - ] - }, - { - "name": "InlineAlignment", - "is_bitfield": false, - "values": [ - { - "name": "INLINE_ALIGNMENT_TOP_TO", - "value": 0 - }, - { - "name": "INLINE_ALIGNMENT_CENTER_TO", - "value": 1 - }, - { - "name": "INLINE_ALIGNMENT_BASELINE_TO", - "value": 3 - }, - { - "name": "INLINE_ALIGNMENT_BOTTOM_TO", - "value": 2 - }, - { - "name": "INLINE_ALIGNMENT_TO_TOP", - "value": 0 - }, - { - "name": "INLINE_ALIGNMENT_TO_CENTER", - "value": 4 - }, - { - "name": "INLINE_ALIGNMENT_TO_BASELINE", - "value": 8 - }, - { - "name": "INLINE_ALIGNMENT_TO_BOTTOM", - "value": 12 - }, - { - "name": "INLINE_ALIGNMENT_TOP", - "value": 0 - }, - { - "name": "INLINE_ALIGNMENT_CENTER", - "value": 5 - }, - { - "name": "INLINE_ALIGNMENT_BOTTOM", - "value": 14 - }, - { - "name": "INLINE_ALIGNMENT_IMAGE_MASK", - "value": 3 - }, - { - "name": "INLINE_ALIGNMENT_TEXT_MASK", - "value": 12 - } - ] - }, - { - "name": "EulerOrder", - "is_bitfield": false, - "values": [ - { - "name": "EULER_ORDER_XYZ", - "value": 0 - }, - { - "name": "EULER_ORDER_XZY", - "value": 1 - }, - { - "name": "EULER_ORDER_YXZ", - "value": 2 - }, - { - "name": "EULER_ORDER_YZX", - "value": 3 - }, - { - "name": "EULER_ORDER_ZXY", - "value": 4 - }, - { - "name": "EULER_ORDER_ZYX", - "value": 5 - } - ] - }, - { - "name": "Key", - "is_bitfield": false, - "values": [ - { - "name": "KEY_NONE", - "value": 0 - }, - { - "name": "KEY_SPECIAL", - "value": 4194304 - }, - { - "name": "KEY_ESCAPE", - "value": 4194305 - }, - { - "name": "KEY_TAB", - "value": 4194306 - }, - { - "name": "KEY_BACKTAB", - "value": 4194307 - }, - { - "name": "KEY_BACKSPACE", - "value": 4194308 - }, - { - "name": "KEY_ENTER", - "value": 4194309 - }, - { - "name": "KEY_KP_ENTER", - "value": 4194310 - }, - { - "name": "KEY_INSERT", - "value": 4194311 - }, - { - "name": "KEY_DELETE", - "value": 4194312 - }, - { - "name": "KEY_PAUSE", - "value": 4194313 - }, - { - "name": "KEY_PRINT", - "value": 4194314 - }, - { - "name": "KEY_SYSREQ", - "value": 4194315 - }, - { - "name": "KEY_CLEAR", - "value": 4194316 - }, - { - "name": "KEY_HOME", - "value": 4194317 - }, - { - "name": "KEY_END", - "value": 4194318 - }, - { - "name": "KEY_LEFT", - "value": 4194319 - }, - { - "name": "KEY_UP", - "value": 4194320 - }, - { - "name": "KEY_RIGHT", - "value": 4194321 - }, - { - "name": "KEY_DOWN", - "value": 4194322 - }, - { - "name": "KEY_PAGEUP", - "value": 4194323 - }, - { - "name": "KEY_PAGEDOWN", - "value": 4194324 - }, - { - "name": "KEY_SHIFT", - "value": 4194325 - }, - { - "name": "KEY_CTRL", - "value": 4194326 - }, - { - "name": "KEY_META", - "value": 4194327 - }, - { - "name": "KEY_ALT", - "value": 4194328 - }, - { - "name": "KEY_CAPSLOCK", - "value": 4194329 - }, - { - "name": "KEY_NUMLOCK", - "value": 4194330 - }, - { - "name": "KEY_SCROLLLOCK", - "value": 4194331 - }, - { - "name": "KEY_F1", - "value": 4194332 - }, - { - "name": "KEY_F2", - "value": 4194333 - }, - { - "name": "KEY_F3", - "value": 4194334 - }, - { - "name": "KEY_F4", - "value": 4194335 - }, - { - "name": "KEY_F5", - "value": 4194336 - }, - { - "name": "KEY_F6", - "value": 4194337 - }, - { - "name": "KEY_F7", - "value": 4194338 - }, - { - "name": "KEY_F8", - "value": 4194339 - }, - { - "name": "KEY_F9", - "value": 4194340 - }, - { - "name": "KEY_F10", - "value": 4194341 - }, - { - "name": "KEY_F11", - "value": 4194342 - }, - { - "name": "KEY_F12", - "value": 4194343 - }, - { - "name": "KEY_F13", - "value": 4194344 - }, - { - "name": "KEY_F14", - "value": 4194345 - }, - { - "name": "KEY_F15", - "value": 4194346 - }, - { - "name": "KEY_F16", - "value": 4194347 - }, - { - "name": "KEY_F17", - "value": 4194348 - }, - { - "name": "KEY_F18", - "value": 4194349 - }, - { - "name": "KEY_F19", - "value": 4194350 - }, - { - "name": "KEY_F20", - "value": 4194351 - }, - { - "name": "KEY_F21", - "value": 4194352 - }, - { - "name": "KEY_F22", - "value": 4194353 - }, - { - "name": "KEY_F23", - "value": 4194354 - }, - { - "name": "KEY_F24", - "value": 4194355 - }, - { - "name": "KEY_F25", - "value": 4194356 - }, - { - "name": "KEY_F26", - "value": 4194357 - }, - { - "name": "KEY_F27", - "value": 4194358 - }, - { - "name": "KEY_F28", - "value": 4194359 - }, - { - "name": "KEY_F29", - "value": 4194360 - }, - { - "name": "KEY_F30", - "value": 4194361 - }, - { - "name": "KEY_F31", - "value": 4194362 - }, - { - "name": "KEY_F32", - "value": 4194363 - }, - { - "name": "KEY_F33", - "value": 4194364 - }, - { - "name": "KEY_F34", - "value": 4194365 - }, - { - "name": "KEY_F35", - "value": 4194366 - }, - { - "name": "KEY_KP_MULTIPLY", - "value": 4194433 - }, - { - "name": "KEY_KP_DIVIDE", - "value": 4194434 - }, - { - "name": "KEY_KP_SUBTRACT", - "value": 4194435 - }, - { - "name": "KEY_KP_PERIOD", - "value": 4194436 - }, - { - "name": "KEY_KP_ADD", - "value": 4194437 - }, - { - "name": "KEY_KP_0", - "value": 4194438 - }, - { - "name": "KEY_KP_1", - "value": 4194439 - }, - { - "name": "KEY_KP_2", - "value": 4194440 - }, - { - "name": "KEY_KP_3", - "value": 4194441 - }, - { - "name": "KEY_KP_4", - "value": 4194442 - }, - { - "name": "KEY_KP_5", - "value": 4194443 - }, - { - "name": "KEY_KP_6", - "value": 4194444 - }, - { - "name": "KEY_KP_7", - "value": 4194445 - }, - { - "name": "KEY_KP_8", - "value": 4194446 - }, - { - "name": "KEY_KP_9", - "value": 4194447 - }, - { - "name": "KEY_MENU", - "value": 4194370 - }, - { - "name": "KEY_HYPER", - "value": 4194371 - }, - { - "name": "KEY_HELP", - "value": 4194373 - }, - { - "name": "KEY_BACK", - "value": 4194376 - }, - { - "name": "KEY_FORWARD", - "value": 4194377 - }, - { - "name": "KEY_STOP", - "value": 4194378 - }, - { - "name": "KEY_REFRESH", - "value": 4194379 - }, - { - "name": "KEY_VOLUMEDOWN", - "value": 4194380 - }, - { - "name": "KEY_VOLUMEMUTE", - "value": 4194381 - }, - { - "name": "KEY_VOLUMEUP", - "value": 4194382 - }, - { - "name": "KEY_MEDIAPLAY", - "value": 4194388 - }, - { - "name": "KEY_MEDIASTOP", - "value": 4194389 - }, - { - "name": "KEY_MEDIAPREVIOUS", - "value": 4194390 - }, - { - "name": "KEY_MEDIANEXT", - "value": 4194391 - }, - { - "name": "KEY_MEDIARECORD", - "value": 4194392 - }, - { - "name": "KEY_HOMEPAGE", - "value": 4194393 - }, - { - "name": "KEY_FAVORITES", - "value": 4194394 - }, - { - "name": "KEY_SEARCH", - "value": 4194395 - }, - { - "name": "KEY_STANDBY", - "value": 4194396 - }, - { - "name": "KEY_OPENURL", - "value": 4194397 - }, - { - "name": "KEY_LAUNCHMAIL", - "value": 4194398 - }, - { - "name": "KEY_LAUNCHMEDIA", - "value": 4194399 - }, - { - "name": "KEY_LAUNCH0", - "value": 4194400 - }, - { - "name": "KEY_LAUNCH1", - "value": 4194401 - }, - { - "name": "KEY_LAUNCH2", - "value": 4194402 - }, - { - "name": "KEY_LAUNCH3", - "value": 4194403 - }, - { - "name": "KEY_LAUNCH4", - "value": 4194404 - }, - { - "name": "KEY_LAUNCH5", - "value": 4194405 - }, - { - "name": "KEY_LAUNCH6", - "value": 4194406 - }, - { - "name": "KEY_LAUNCH7", - "value": 4194407 - }, - { - "name": "KEY_LAUNCH8", - "value": 4194408 - }, - { - "name": "KEY_LAUNCH9", - "value": 4194409 - }, - { - "name": "KEY_LAUNCHA", - "value": 4194410 - }, - { - "name": "KEY_LAUNCHB", - "value": 4194411 - }, - { - "name": "KEY_LAUNCHC", - "value": 4194412 - }, - { - "name": "KEY_LAUNCHD", - "value": 4194413 - }, - { - "name": "KEY_LAUNCHE", - "value": 4194414 - }, - { - "name": "KEY_LAUNCHF", - "value": 4194415 - }, - { - "name": "KEY_GLOBE", - "value": 4194416 - }, - { - "name": "KEY_KEYBOARD", - "value": 4194417 - }, - { - "name": "KEY_JIS_EISU", - "value": 4194418 - }, - { - "name": "KEY_JIS_KANA", - "value": 4194419 - }, - { - "name": "KEY_UNKNOWN", - "value": 8388607 - }, - { - "name": "KEY_SPACE", - "value": 32 - }, - { - "name": "KEY_EXCLAM", - "value": 33 - }, - { - "name": "KEY_QUOTEDBL", - "value": 34 - }, - { - "name": "KEY_NUMBERSIGN", - "value": 35 - }, - { - "name": "KEY_DOLLAR", - "value": 36 - }, - { - "name": "KEY_PERCENT", - "value": 37 - }, - { - "name": "KEY_AMPERSAND", - "value": 38 - }, - { - "name": "KEY_APOSTROPHE", - "value": 39 - }, - { - "name": "KEY_PARENLEFT", - "value": 40 - }, - { - "name": "KEY_PARENRIGHT", - "value": 41 - }, - { - "name": "KEY_ASTERISK", - "value": 42 - }, - { - "name": "KEY_PLUS", - "value": 43 - }, - { - "name": "KEY_COMMA", - "value": 44 - }, - { - "name": "KEY_MINUS", - "value": 45 - }, - { - "name": "KEY_PERIOD", - "value": 46 - }, - { - "name": "KEY_SLASH", - "value": 47 - }, - { - "name": "KEY_0", - "value": 48 - }, - { - "name": "KEY_1", - "value": 49 - }, - { - "name": "KEY_2", - "value": 50 - }, - { - "name": "KEY_3", - "value": 51 - }, - { - "name": "KEY_4", - "value": 52 - }, - { - "name": "KEY_5", - "value": 53 - }, - { - "name": "KEY_6", - "value": 54 - }, - { - "name": "KEY_7", - "value": 55 - }, - { - "name": "KEY_8", - "value": 56 - }, - { - "name": "KEY_9", - "value": 57 - }, - { - "name": "KEY_COLON", - "value": 58 - }, - { - "name": "KEY_SEMICOLON", - "value": 59 - }, - { - "name": "KEY_LESS", - "value": 60 - }, - { - "name": "KEY_EQUAL", - "value": 61 - }, - { - "name": "KEY_GREATER", - "value": 62 - }, - { - "name": "KEY_QUESTION", - "value": 63 - }, - { - "name": "KEY_AT", - "value": 64 - }, - { - "name": "KEY_A", - "value": 65 - }, - { - "name": "KEY_B", - "value": 66 - }, - { - "name": "KEY_C", - "value": 67 - }, - { - "name": "KEY_D", - "value": 68 - }, - { - "name": "KEY_E", - "value": 69 - }, - { - "name": "KEY_F", - "value": 70 - }, - { - "name": "KEY_G", - "value": 71 - }, - { - "name": "KEY_H", - "value": 72 - }, - { - "name": "KEY_I", - "value": 73 - }, - { - "name": "KEY_J", - "value": 74 - }, - { - "name": "KEY_K", - "value": 75 - }, - { - "name": "KEY_L", - "value": 76 - }, - { - "name": "KEY_M", - "value": 77 - }, - { - "name": "KEY_N", - "value": 78 - }, - { - "name": "KEY_O", - "value": 79 - }, - { - "name": "KEY_P", - "value": 80 - }, - { - "name": "KEY_Q", - "value": 81 - }, - { - "name": "KEY_R", - "value": 82 - }, - { - "name": "KEY_S", - "value": 83 - }, - { - "name": "KEY_T", - "value": 84 - }, - { - "name": "KEY_U", - "value": 85 - }, - { - "name": "KEY_V", - "value": 86 - }, - { - "name": "KEY_W", - "value": 87 - }, - { - "name": "KEY_X", - "value": 88 - }, - { - "name": "KEY_Y", - "value": 89 - }, - { - "name": "KEY_Z", - "value": 90 - }, - { - "name": "KEY_BRACKETLEFT", - "value": 91 - }, - { - "name": "KEY_BACKSLASH", - "value": 92 - }, - { - "name": "KEY_BRACKETRIGHT", - "value": 93 - }, - { - "name": "KEY_ASCIICIRCUM", - "value": 94 - }, - { - "name": "KEY_UNDERSCORE", - "value": 95 - }, - { - "name": "KEY_QUOTELEFT", - "value": 96 - }, - { - "name": "KEY_BRACELEFT", - "value": 123 - }, - { - "name": "KEY_BAR", - "value": 124 - }, - { - "name": "KEY_BRACERIGHT", - "value": 125 - }, - { - "name": "KEY_ASCIITILDE", - "value": 126 - }, - { - "name": "KEY_YEN", - "value": 165 - }, - { - "name": "KEY_SECTION", - "value": 167 - } - ] - }, - { - "name": "KeyModifierMask", - "is_bitfield": true, - "values": [ - { - "name": "KEY_CODE_MASK", - "value": 8388607 - }, - { - "name": "KEY_MODIFIER_MASK", - "value": 2130706432 - }, - { - "name": "KEY_MASK_CMD_OR_CTRL", - "value": 16777216 - }, - { - "name": "KEY_MASK_SHIFT", - "value": 33554432 - }, - { - "name": "KEY_MASK_ALT", - "value": 67108864 - }, - { - "name": "KEY_MASK_META", - "value": 134217728 - }, - { - "name": "KEY_MASK_CTRL", - "value": 268435456 - }, - { - "name": "KEY_MASK_KPAD", - "value": 536870912 - }, - { - "name": "KEY_MASK_GROUP_SWITCH", - "value": 1073741824 - } - ] - }, - { - "name": "KeyLocation", - "is_bitfield": false, - "values": [ - { - "name": "KEY_LOCATION_UNSPECIFIED", - "value": 0 - }, - { - "name": "KEY_LOCATION_LEFT", - "value": 1 - }, - { - "name": "KEY_LOCATION_RIGHT", - "value": 2 - } - ] - }, - { - "name": "MouseButton", - "is_bitfield": false, - "values": [ - { - "name": "MOUSE_BUTTON_NONE", - "value": 0 - }, - { - "name": "MOUSE_BUTTON_LEFT", - "value": 1 - }, - { - "name": "MOUSE_BUTTON_RIGHT", - "value": 2 - }, - { - "name": "MOUSE_BUTTON_MIDDLE", - "value": 3 - }, - { - "name": "MOUSE_BUTTON_WHEEL_UP", - "value": 4 - }, - { - "name": "MOUSE_BUTTON_WHEEL_DOWN", - "value": 5 - }, - { - "name": "MOUSE_BUTTON_WHEEL_LEFT", - "value": 6 - }, - { - "name": "MOUSE_BUTTON_WHEEL_RIGHT", - "value": 7 - }, - { - "name": "MOUSE_BUTTON_XBUTTON1", - "value": 8 - }, - { - "name": "MOUSE_BUTTON_XBUTTON2", - "value": 9 - } - ] - }, - { - "name": "MouseButtonMask", - "is_bitfield": true, - "values": [ - { - "name": "MOUSE_BUTTON_MASK_LEFT", - "value": 1 - }, - { - "name": "MOUSE_BUTTON_MASK_RIGHT", - "value": 2 - }, - { - "name": "MOUSE_BUTTON_MASK_MIDDLE", - "value": 4 - }, - { - "name": "MOUSE_BUTTON_MASK_MB_XBUTTON1", - "value": 128 - }, - { - "name": "MOUSE_BUTTON_MASK_MB_XBUTTON2", - "value": 256 - } - ] - }, - { - "name": "JoyButton", - "is_bitfield": false, - "values": [ - { - "name": "JOY_BUTTON_INVALID", - "value": -1 - }, - { - "name": "JOY_BUTTON_A", - "value": 0 - }, - { - "name": "JOY_BUTTON_B", - "value": 1 - }, - { - "name": "JOY_BUTTON_X", - "value": 2 - }, - { - "name": "JOY_BUTTON_Y", - "value": 3 - }, - { - "name": "JOY_BUTTON_BACK", - "value": 4 - }, - { - "name": "JOY_BUTTON_GUIDE", - "value": 5 - }, - { - "name": "JOY_BUTTON_START", - "value": 6 - }, - { - "name": "JOY_BUTTON_LEFT_STICK", - "value": 7 - }, - { - "name": "JOY_BUTTON_RIGHT_STICK", - "value": 8 - }, - { - "name": "JOY_BUTTON_LEFT_SHOULDER", - "value": 9 - }, - { - "name": "JOY_BUTTON_RIGHT_SHOULDER", - "value": 10 - }, - { - "name": "JOY_BUTTON_DPAD_UP", - "value": 11 - }, - { - "name": "JOY_BUTTON_DPAD_DOWN", - "value": 12 - }, - { - "name": "JOY_BUTTON_DPAD_LEFT", - "value": 13 - }, - { - "name": "JOY_BUTTON_DPAD_RIGHT", - "value": 14 - }, - { - "name": "JOY_BUTTON_MISC1", - "value": 15 - }, - { - "name": "JOY_BUTTON_PADDLE1", - "value": 16 - }, - { - "name": "JOY_BUTTON_PADDLE2", - "value": 17 - }, - { - "name": "JOY_BUTTON_PADDLE3", - "value": 18 - }, - { - "name": "JOY_BUTTON_PADDLE4", - "value": 19 - }, - { - "name": "JOY_BUTTON_TOUCHPAD", - "value": 20 - }, - { - "name": "JOY_BUTTON_MISC2", - "value": 21 - }, - { - "name": "JOY_BUTTON_MISC3", - "value": 22 - }, - { - "name": "JOY_BUTTON_MISC4", - "value": 23 - }, - { - "name": "JOY_BUTTON_MISC5", - "value": 24 - }, - { - "name": "JOY_BUTTON_MISC6", - "value": 25 - }, - { - "name": "JOY_BUTTON_SDL_MAX", - "value": 26 - }, - { - "name": "JOY_BUTTON_MAX", - "value": 128 - } - ] - }, - { - "name": "JoyAxis", - "is_bitfield": false, - "values": [ - { - "name": "JOY_AXIS_INVALID", - "value": -1 - }, - { - "name": "JOY_AXIS_LEFT_X", - "value": 0 - }, - { - "name": "JOY_AXIS_LEFT_Y", - "value": 1 - }, - { - "name": "JOY_AXIS_RIGHT_X", - "value": 2 - }, - { - "name": "JOY_AXIS_RIGHT_Y", - "value": 3 - }, - { - "name": "JOY_AXIS_TRIGGER_LEFT", - "value": 4 - }, - { - "name": "JOY_AXIS_TRIGGER_RIGHT", - "value": 5 - }, - { - "name": "JOY_AXIS_SDL_MAX", - "value": 6 - }, - { - "name": "JOY_AXIS_MAX", - "value": 10 - } - ] - }, - { - "name": "MIDIMessage", - "is_bitfield": false, - "values": [ - { - "name": "MIDI_MESSAGE_NONE", - "value": 0 - }, - { - "name": "MIDI_MESSAGE_NOTE_OFF", - "value": 8 - }, - { - "name": "MIDI_MESSAGE_NOTE_ON", - "value": 9 - }, - { - "name": "MIDI_MESSAGE_AFTERTOUCH", - "value": 10 - }, - { - "name": "MIDI_MESSAGE_CONTROL_CHANGE", - "value": 11 - }, - { - "name": "MIDI_MESSAGE_PROGRAM_CHANGE", - "value": 12 - }, - { - "name": "MIDI_MESSAGE_CHANNEL_PRESSURE", - "value": 13 - }, - { - "name": "MIDI_MESSAGE_PITCH_BEND", - "value": 14 - }, - { - "name": "MIDI_MESSAGE_SYSTEM_EXCLUSIVE", - "value": 240 - }, - { - "name": "MIDI_MESSAGE_QUARTER_FRAME", - "value": 241 - }, - { - "name": "MIDI_MESSAGE_SONG_POSITION_POINTER", - "value": 242 - }, - { - "name": "MIDI_MESSAGE_SONG_SELECT", - "value": 243 - }, - { - "name": "MIDI_MESSAGE_TUNE_REQUEST", - "value": 246 - }, - { - "name": "MIDI_MESSAGE_TIMING_CLOCK", - "value": 248 - }, - { - "name": "MIDI_MESSAGE_START", - "value": 250 - }, - { - "name": "MIDI_MESSAGE_CONTINUE", - "value": 251 - }, - { - "name": "MIDI_MESSAGE_STOP", - "value": 252 - }, - { - "name": "MIDI_MESSAGE_ACTIVE_SENSING", - "value": 254 - }, - { - "name": "MIDI_MESSAGE_SYSTEM_RESET", - "value": 255 - } - ] - }, - { - "name": "Error", - "is_bitfield": false, - "values": [ - { - "name": "OK", - "value": 0 - }, - { - "name": "FAILED", - "value": 1 - }, - { - "name": "ERR_UNAVAILABLE", - "value": 2 - }, - { - "name": "ERR_UNCONFIGURED", - "value": 3 - }, - { - "name": "ERR_UNAUTHORIZED", - "value": 4 - }, - { - "name": "ERR_PARAMETER_RANGE_ERROR", - "value": 5 - }, - { - "name": "ERR_OUT_OF_MEMORY", - "value": 6 - }, - { - "name": "ERR_FILE_NOT_FOUND", - "value": 7 - }, - { - "name": "ERR_FILE_BAD_DRIVE", - "value": 8 - }, - { - "name": "ERR_FILE_BAD_PATH", - "value": 9 - }, - { - "name": "ERR_FILE_NO_PERMISSION", - "value": 10 - }, - { - "name": "ERR_FILE_ALREADY_IN_USE", - "value": 11 - }, - { - "name": "ERR_FILE_CANT_OPEN", - "value": 12 - }, - { - "name": "ERR_FILE_CANT_WRITE", - "value": 13 - }, - { - "name": "ERR_FILE_CANT_READ", - "value": 14 - }, - { - "name": "ERR_FILE_UNRECOGNIZED", - "value": 15 - }, - { - "name": "ERR_FILE_CORRUPT", - "value": 16 - }, - { - "name": "ERR_FILE_MISSING_DEPENDENCIES", - "value": 17 - }, - { - "name": "ERR_FILE_EOF", - "value": 18 - }, - { - "name": "ERR_CANT_OPEN", - "value": 19 - }, - { - "name": "ERR_CANT_CREATE", - "value": 20 - }, - { - "name": "ERR_QUERY_FAILED", - "value": 21 - }, - { - "name": "ERR_ALREADY_IN_USE", - "value": 22 - }, - { - "name": "ERR_LOCKED", - "value": 23 - }, - { - "name": "ERR_TIMEOUT", - "value": 24 - }, - { - "name": "ERR_CANT_CONNECT", - "value": 25 - }, - { - "name": "ERR_CANT_RESOLVE", - "value": 26 - }, - { - "name": "ERR_CONNECTION_ERROR", - "value": 27 - }, - { - "name": "ERR_CANT_ACQUIRE_RESOURCE", - "value": 28 - }, - { - "name": "ERR_CANT_FORK", - "value": 29 - }, - { - "name": "ERR_INVALID_DATA", - "value": 30 - }, - { - "name": "ERR_INVALID_PARAMETER", - "value": 31 - }, - { - "name": "ERR_ALREADY_EXISTS", - "value": 32 - }, - { - "name": "ERR_DOES_NOT_EXIST", - "value": 33 - }, - { - "name": "ERR_DATABASE_CANT_READ", - "value": 34 - }, - { - "name": "ERR_DATABASE_CANT_WRITE", - "value": 35 - }, - { - "name": "ERR_COMPILATION_FAILED", - "value": 36 - }, - { - "name": "ERR_METHOD_NOT_FOUND", - "value": 37 - }, - { - "name": "ERR_LINK_FAILED", - "value": 38 - }, - { - "name": "ERR_SCRIPT_FAILED", - "value": 39 - }, - { - "name": "ERR_CYCLIC_LINK", - "value": 40 - }, - { - "name": "ERR_INVALID_DECLARATION", - "value": 41 - }, - { - "name": "ERR_DUPLICATE_SYMBOL", - "value": 42 - }, - { - "name": "ERR_PARSE_ERROR", - "value": 43 - }, - { - "name": "ERR_BUSY", - "value": 44 - }, - { - "name": "ERR_SKIP", - "value": 45 - }, - { - "name": "ERR_HELP", - "value": 46 - }, - { - "name": "ERR_BUG", - "value": 47 - }, - { - "name": "ERR_PRINTER_ON_FIRE", - "value": 48 - } - ] - }, - { - "name": "PropertyHint", - "is_bitfield": false, - "values": [ - { - "name": "PROPERTY_HINT_NONE", - "value": 0 - }, - { - "name": "PROPERTY_HINT_RANGE", - "value": 1 - }, - { - "name": "PROPERTY_HINT_ENUM", - "value": 2 - }, - { - "name": "PROPERTY_HINT_ENUM_SUGGESTION", - "value": 3 - }, - { - "name": "PROPERTY_HINT_EXP_EASING", - "value": 4 - }, - { - "name": "PROPERTY_HINT_LINK", - "value": 5 - }, - { - "name": "PROPERTY_HINT_FLAGS", - "value": 6 - }, - { - "name": "PROPERTY_HINT_LAYERS_2D_RENDER", - "value": 7 - }, - { - "name": "PROPERTY_HINT_LAYERS_2D_PHYSICS", - "value": 8 - }, - { - "name": "PROPERTY_HINT_LAYERS_2D_NAVIGATION", - "value": 9 - }, - { - "name": "PROPERTY_HINT_LAYERS_3D_RENDER", - "value": 10 - }, - { - "name": "PROPERTY_HINT_LAYERS_3D_PHYSICS", - "value": 11 - }, - { - "name": "PROPERTY_HINT_LAYERS_3D_NAVIGATION", - "value": 12 - }, - { - "name": "PROPERTY_HINT_LAYERS_AVOIDANCE", - "value": 37 - }, - { - "name": "PROPERTY_HINT_FILE", - "value": 13 - }, - { - "name": "PROPERTY_HINT_DIR", - "value": 14 - }, - { - "name": "PROPERTY_HINT_GLOBAL_FILE", - "value": 15 - }, - { - "name": "PROPERTY_HINT_GLOBAL_DIR", - "value": 16 - }, - { - "name": "PROPERTY_HINT_RESOURCE_TYPE", - "value": 17 - }, - { - "name": "PROPERTY_HINT_MULTILINE_TEXT", - "value": 18 - }, - { - "name": "PROPERTY_HINT_EXPRESSION", - "value": 19 - }, - { - "name": "PROPERTY_HINT_PLACEHOLDER_TEXT", - "value": 20 - }, - { - "name": "PROPERTY_HINT_COLOR_NO_ALPHA", - "value": 21 - }, - { - "name": "PROPERTY_HINT_OBJECT_ID", - "value": 22 - }, - { - "name": "PROPERTY_HINT_TYPE_STRING", - "value": 23 - }, - { - "name": "PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE", - "value": 24 - }, - { - "name": "PROPERTY_HINT_OBJECT_TOO_BIG", - "value": 25 - }, - { - "name": "PROPERTY_HINT_NODE_PATH_VALID_TYPES", - "value": 26 - }, - { - "name": "PROPERTY_HINT_SAVE_FILE", - "value": 27 - }, - { - "name": "PROPERTY_HINT_GLOBAL_SAVE_FILE", - "value": 28 - }, - { - "name": "PROPERTY_HINT_INT_IS_OBJECTID", - "value": 29 - }, - { - "name": "PROPERTY_HINT_INT_IS_POINTER", - "value": 30 - }, - { - "name": "PROPERTY_HINT_ARRAY_TYPE", - "value": 31 - }, - { - "name": "PROPERTY_HINT_DICTIONARY_TYPE", - "value": 38 - }, - { - "name": "PROPERTY_HINT_LOCALE_ID", - "value": 32 - }, - { - "name": "PROPERTY_HINT_LOCALIZABLE_STRING", - "value": 33 - }, - { - "name": "PROPERTY_HINT_NODE_TYPE", - "value": 34 - }, - { - "name": "PROPERTY_HINT_HIDE_QUATERNION_EDIT", - "value": 35 - }, - { - "name": "PROPERTY_HINT_PASSWORD", - "value": 36 - }, - { - "name": "PROPERTY_HINT_TOOL_BUTTON", - "value": 39 - }, - { - "name": "PROPERTY_HINT_ONESHOT", - "value": 40 - }, - { - "name": "PROPERTY_HINT_GROUP_ENABLE", - "value": 42 - }, - { - "name": "PROPERTY_HINT_INPUT_NAME", - "value": 43 - }, - { - "name": "PROPERTY_HINT_FILE_PATH", - "value": 44 - }, - { - "name": "PROPERTY_HINT_MAX", - "value": 45 - } - ] - }, - { - "name": "PropertyUsageFlags", - "is_bitfield": true, - "values": [ - { - "name": "PROPERTY_USAGE_NONE", - "value": 0 - }, - { - "name": "PROPERTY_USAGE_STORAGE", - "value": 2 - }, - { - "name": "PROPERTY_USAGE_EDITOR", - "value": 4 - }, - { - "name": "PROPERTY_USAGE_INTERNAL", - "value": 8 - }, - { - "name": "PROPERTY_USAGE_CHECKABLE", - "value": 16 - }, - { - "name": "PROPERTY_USAGE_CHECKED", - "value": 32 - }, - { - "name": "PROPERTY_USAGE_GROUP", - "value": 64 - }, - { - "name": "PROPERTY_USAGE_CATEGORY", - "value": 128 - }, - { - "name": "PROPERTY_USAGE_SUBGROUP", - "value": 256 - }, - { - "name": "PROPERTY_USAGE_CLASS_IS_BITFIELD", - "value": 512 - }, - { - "name": "PROPERTY_USAGE_NO_INSTANCE_STATE", - "value": 1024 - }, - { - "name": "PROPERTY_USAGE_RESTART_IF_CHANGED", - "value": 2048 - }, - { - "name": "PROPERTY_USAGE_SCRIPT_VARIABLE", - "value": 4096 - }, - { - "name": "PROPERTY_USAGE_STORE_IF_NULL", - "value": 8192 - }, - { - "name": "PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED", - "value": 16384 - }, - { - "name": "PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE", - "value": 32768 - }, - { - "name": "PROPERTY_USAGE_CLASS_IS_ENUM", - "value": 65536 - }, - { - "name": "PROPERTY_USAGE_NIL_IS_VARIANT", - "value": 131072 - }, - { - "name": "PROPERTY_USAGE_ARRAY", - "value": 262144 - }, - { - "name": "PROPERTY_USAGE_ALWAYS_DUPLICATE", - "value": 524288 - }, - { - "name": "PROPERTY_USAGE_NEVER_DUPLICATE", - "value": 1048576 - }, - { - "name": "PROPERTY_USAGE_HIGH_END_GFX", - "value": 2097152 - }, - { - "name": "PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT", - "value": 4194304 - }, - { - "name": "PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT", - "value": 8388608 - }, - { - "name": "PROPERTY_USAGE_KEYING_INCREMENTS", - "value": 16777216 - }, - { - "name": "PROPERTY_USAGE_DEFERRED_SET_RESOURCE", - "value": 33554432 - }, - { - "name": "PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT", - "value": 67108864 - }, - { - "name": "PROPERTY_USAGE_EDITOR_BASIC_SETTING", - "value": 134217728 - }, - { - "name": "PROPERTY_USAGE_READ_ONLY", - "value": 268435456 - }, - { - "name": "PROPERTY_USAGE_SECRET", - "value": 536870912 - }, - { - "name": "PROPERTY_USAGE_DEFAULT", - "value": 6 - }, - { - "name": "PROPERTY_USAGE_NO_EDITOR", - "value": 2 - } - ] - }, - { - "name": "MethodFlags", - "is_bitfield": true, - "values": [ - { - "name": "METHOD_FLAG_NORMAL", - "value": 1 - }, - { - "name": "METHOD_FLAG_EDITOR", - "value": 2 - }, - { - "name": "METHOD_FLAG_CONST", - "value": 4 - }, - { - "name": "METHOD_FLAG_VIRTUAL", - "value": 8 - }, - { - "name": "METHOD_FLAG_VARARG", - "value": 16 - }, - { - "name": "METHOD_FLAG_STATIC", - "value": 32 - }, - { - "name": "METHOD_FLAG_OBJECT_CORE", - "value": 64 - }, - { - "name": "METHOD_FLAG_VIRTUAL_REQUIRED", - "value": 128 - }, - { - "name": "METHOD_FLAGS_DEFAULT", - "value": 1 - } - ] - }, - { - "name": "Variant.Type", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_NIL", - "value": 0 - }, - { - "name": "TYPE_BOOL", - "value": 1 - }, - { - "name": "TYPE_INT", - "value": 2 - }, - { - "name": "TYPE_FLOAT", - "value": 3 - }, - { - "name": "TYPE_STRING", - "value": 4 - }, - { - "name": "TYPE_VECTOR2", - "value": 5 - }, - { - "name": "TYPE_VECTOR2I", - "value": 6 - }, - { - "name": "TYPE_RECT2", - "value": 7 - }, - { - "name": "TYPE_RECT2I", - "value": 8 - }, - { - "name": "TYPE_VECTOR3", - "value": 9 - }, - { - "name": "TYPE_VECTOR3I", - "value": 10 - }, - { - "name": "TYPE_TRANSFORM2D", - "value": 11 - }, - { - "name": "TYPE_VECTOR4", - "value": 12 - }, - { - "name": "TYPE_VECTOR4I", - "value": 13 - }, - { - "name": "TYPE_PLANE", - "value": 14 - }, - { - "name": "TYPE_QUATERNION", - "value": 15 - }, - { - "name": "TYPE_AABB", - "value": 16 - }, - { - "name": "TYPE_BASIS", - "value": 17 - }, - { - "name": "TYPE_TRANSFORM3D", - "value": 18 - }, - { - "name": "TYPE_PROJECTION", - "value": 19 - }, - { - "name": "TYPE_COLOR", - "value": 20 - }, - { - "name": "TYPE_STRING_NAME", - "value": 21 - }, - { - "name": "TYPE_NODE_PATH", - "value": 22 - }, - { - "name": "TYPE_RID", - "value": 23 - }, - { - "name": "TYPE_OBJECT", - "value": 24 - }, - { - "name": "TYPE_CALLABLE", - "value": 25 - }, - { - "name": "TYPE_SIGNAL", - "value": 26 - }, - { - "name": "TYPE_DICTIONARY", - "value": 27 - }, - { - "name": "TYPE_ARRAY", - "value": 28 - }, - { - "name": "TYPE_PACKED_BYTE_ARRAY", - "value": 29 - }, - { - "name": "TYPE_PACKED_INT32_ARRAY", - "value": 30 - }, - { - "name": "TYPE_PACKED_INT64_ARRAY", - "value": 31 - }, - { - "name": "TYPE_PACKED_FLOAT32_ARRAY", - "value": 32 - }, - { - "name": "TYPE_PACKED_FLOAT64_ARRAY", - "value": 33 - }, - { - "name": "TYPE_PACKED_STRING_ARRAY", - "value": 34 - }, - { - "name": "TYPE_PACKED_VECTOR2_ARRAY", - "value": 35 - }, - { - "name": "TYPE_PACKED_VECTOR3_ARRAY", - "value": 36 - }, - { - "name": "TYPE_PACKED_COLOR_ARRAY", - "value": 37 - }, - { - "name": "TYPE_PACKED_VECTOR4_ARRAY", - "value": 38 - }, - { - "name": "TYPE_MAX", - "value": 39 - } - ] - }, - { - "name": "Variant.Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_EQUAL", - "value": 0 - }, - { - "name": "OP_NOT_EQUAL", - "value": 1 - }, - { - "name": "OP_LESS", - "value": 2 - }, - { - "name": "OP_LESS_EQUAL", - "value": 3 - }, - { - "name": "OP_GREATER", - "value": 4 - }, - { - "name": "OP_GREATER_EQUAL", - "value": 5 - }, - { - "name": "OP_ADD", - "value": 6 - }, - { - "name": "OP_SUBTRACT", - "value": 7 - }, - { - "name": "OP_MULTIPLY", - "value": 8 - }, - { - "name": "OP_DIVIDE", - "value": 9 - }, - { - "name": "OP_NEGATE", - "value": 10 - }, - { - "name": "OP_POSITIVE", - "value": 11 - }, - { - "name": "OP_MODULE", - "value": 12 - }, - { - "name": "OP_POWER", - "value": 13 - }, - { - "name": "OP_SHIFT_LEFT", - "value": 14 - }, - { - "name": "OP_SHIFT_RIGHT", - "value": 15 - }, - { - "name": "OP_BIT_AND", - "value": 16 - }, - { - "name": "OP_BIT_OR", - "value": 17 - }, - { - "name": "OP_BIT_XOR", - "value": 18 - }, - { - "name": "OP_BIT_NEGATE", - "value": 19 - }, - { - "name": "OP_AND", - "value": 20 - }, - { - "name": "OP_OR", - "value": 21 - }, - { - "name": "OP_XOR", - "value": 22 - }, - { - "name": "OP_NOT", - "value": 23 - }, - { - "name": "OP_IN", - "value": 24 - }, - { - "name": "OP_MAX", - "value": 25 - } - ] - } - ], - "utility_functions": [ - { - "name": "sin", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "angle_rad", - "type": "float" - } - ] - }, - { - "name": "cos", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "angle_rad", - "type": "float" - } - ] - }, - { - "name": "tan", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "angle_rad", - "type": "float" - } - ] - }, - { - "name": "sinh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "cosh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "tanh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "asin", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "acos", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "atan", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "atan2", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "y", - "type": "float" - }, - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "asinh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "acosh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "atanh", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "sqrt", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "fmod", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - } - ] - }, - { - "name": "fposmod", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - } - ] - }, - { - "name": "posmod", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 3133453818, - "arguments": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - } - ] - }, - { - "name": "floor", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "x", - "type": "Variant" - } - ] - }, - { - "name": "floorf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "floori", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2780425386, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "ceil", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "x", - "type": "Variant" - } - ] - }, - { - "name": "ceilf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "ceili", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2780425386, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "round", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "x", - "type": "Variant" - } - ] - }, - { - "name": "roundf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "roundi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2780425386, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "abs", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "x", - "type": "Variant" - } - ] - }, - { - "name": "absf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "absi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2157319888, - "arguments": [ - { - "name": "x", - "type": "int" - } - ] - }, - { - "name": "sign", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "x", - "type": "Variant" - } - ] - }, - { - "name": "signf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "signi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2157319888, - "arguments": [ - { - "name": "x", - "type": "int" - } - ] - }, - { - "name": "snapped", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 459914704, - "arguments": [ - { - "name": "x", - "type": "Variant" - }, - { - "name": "step", - "type": "Variant" - } - ] - }, - { - "name": "snappedf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "step", - "type": "float" - } - ] - }, - { - "name": "snappedi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 3570758393, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "step", - "type": "int" - } - ] - }, - { - "name": "pow", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "base", - "type": "float" - }, - { - "name": "exp", - "type": "float" - } - ] - }, - { - "name": "log", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "exp", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "is_nan", - "return_type": "bool", - "category": "math", - "is_vararg": false, - "hash": 3569215213, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "is_inf", - "return_type": "bool", - "category": "math", - "is_vararg": false, - "hash": 3569215213, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "category": "math", - "is_vararg": false, - "hash": 1400789633, - "arguments": [ - { - "name": "a", - "type": "float" - }, - { - "name": "b", - "type": "float" - } - ] - }, - { - "name": "is_zero_approx", - "return_type": "bool", - "category": "math", - "is_vararg": false, - "hash": 3569215213, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "category": "math", - "is_vararg": false, - "hash": 3569215213, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "ease", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "curve", - "type": "float" - } - ] - }, - { - "name": "step_decimals", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2780425386, - "arguments": [ - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "lerp", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 3389874542, - "arguments": [ - { - "name": "from", - "type": "Variant" - }, - { - "name": "to", - "type": "Variant" - }, - { - "name": "weight", - "type": "Variant" - } - ] - }, - { - "name": "lerpf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 1090965791, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "pre", - "type": "float" - }, - { - "name": "post", - "type": "float" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_angle", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 1090965791, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "pre", - "type": "float" - }, - { - "name": "post", - "type": "float" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_in_time", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 388121036, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "pre", - "type": "float" - }, - { - "name": "post", - "type": "float" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "to_t", - "type": "float" - }, - { - "name": "pre_t", - "type": "float" - }, - { - "name": "post_t", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_angle_in_time", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 388121036, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "pre", - "type": "float" - }, - { - "name": "post", - "type": "float" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "to_t", - "type": "float" - }, - { - "name": "pre_t", - "type": "float" - }, - { - "name": "post_t", - "type": "float" - } - ] - }, - { - "name": "bezier_interpolate", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 1090965791, - "arguments": [ - { - "name": "start", - "type": "float" - }, - { - "name": "control_1", - "type": "float" - }, - { - "name": "control_2", - "type": "float" - }, - { - "name": "end", - "type": "float" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "bezier_derivative", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 1090965791, - "arguments": [ - { - "name": "start", - "type": "float" - }, - { - "name": "control_1", - "type": "float" - }, - { - "name": "control_2", - "type": "float" - }, - { - "name": "end", - "type": "float" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "angle_difference", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - } - ] - }, - { - "name": "lerp_angle", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "inverse_lerp", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "remap", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 1090965791, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "istart", - "type": "float" - }, - { - "name": "istop", - "type": "float" - }, - { - "name": "ostart", - "type": "float" - }, - { - "name": "ostop", - "type": "float" - } - ] - }, - { - "name": "smoothstep", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "x", - "type": "float" - } - ] - }, - { - "name": "move_toward", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "delta", - "type": "float" - } - ] - }, - { - "name": "rotate_toward", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - }, - { - "name": "delta", - "type": "float" - } - ] - }, - { - "name": "deg_to_rad", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "deg", - "type": "float" - } - ] - }, - { - "name": "rad_to_deg", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "rad", - "type": "float" - } - ] - }, - { - "name": "linear_to_db", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "lin", - "type": "float" - } - ] - }, - { - "name": "db_to_linear", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 2140049587, - "arguments": [ - { - "name": "db", - "type": "float" - } - ] - }, - { - "name": "wrap", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 3389874542, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "min", - "type": "Variant" - }, - { - "name": "max", - "type": "Variant" - } - ] - }, - { - "name": "wrapi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 650295447, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "min", - "type": "int" - }, - { - "name": "max", - "type": "int" - } - ] - }, - { - "name": "wrapf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "min", - "type": "float" - }, - { - "name": "max", - "type": "float" - } - ] - }, - { - "name": "max", - "return_type": "Variant", - "category": "math", - "is_vararg": true, - "hash": 3896050336, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - }, - { - "name": "arg2", - "type": "Variant" - } - ] - }, - { - "name": "maxi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 3133453818, - "arguments": [ - { - "name": "a", - "type": "int" - }, - { - "name": "b", - "type": "int" - } - ] - }, - { - "name": "maxf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "a", - "type": "float" - }, - { - "name": "b", - "type": "float" - } - ] - }, - { - "name": "min", - "return_type": "Variant", - "category": "math", - "is_vararg": true, - "hash": 3896050336, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - }, - { - "name": "arg2", - "type": "Variant" - } - ] - }, - { - "name": "mini", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 3133453818, - "arguments": [ - { - "name": "a", - "type": "int" - }, - { - "name": "b", - "type": "int" - } - ] - }, - { - "name": "minf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "a", - "type": "float" - }, - { - "name": "b", - "type": "float" - } - ] - }, - { - "name": "clamp", - "return_type": "Variant", - "category": "math", - "is_vararg": false, - "hash": 3389874542, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "min", - "type": "Variant" - }, - { - "name": "max", - "type": "Variant" - } - ] - }, - { - "name": "clampi", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 650295447, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "min", - "type": "int" - }, - { - "name": "max", - "type": "int" - } - ] - }, - { - "name": "clampf", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 998901048, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "min", - "type": "float" - }, - { - "name": "max", - "type": "float" - } - ] - }, - { - "name": "nearest_po2", - "return_type": "int", - "category": "math", - "is_vararg": false, - "hash": 2157319888, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "pingpong", - "return_type": "float", - "category": "math", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "length", - "type": "float" - } - ] - }, - { - "name": "randomize", - "category": "random", - "is_vararg": false, - "hash": 1691721052 - }, - { - "name": "randi", - "return_type": "int", - "category": "random", - "is_vararg": false, - "hash": 701202648 - }, - { - "name": "randf", - "return_type": "float", - "category": "random", - "is_vararg": false, - "hash": 2086227845 - }, - { - "name": "randi_range", - "return_type": "int", - "category": "random", - "is_vararg": false, - "hash": 3133453818, - "arguments": [ - { - "name": "from", - "type": "int" - }, - { - "name": "to", - "type": "int" - } - ] - }, - { - "name": "randf_range", - "return_type": "float", - "category": "random", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "from", - "type": "float" - }, - { - "name": "to", - "type": "float" - } - ] - }, - { - "name": "randfn", - "return_type": "float", - "category": "random", - "is_vararg": false, - "hash": 92296394, - "arguments": [ - { - "name": "mean", - "type": "float" - }, - { - "name": "deviation", - "type": "float" - } - ] - }, - { - "name": "seed", - "category": "random", - "is_vararg": false, - "hash": 382931173, - "arguments": [ - { - "name": "base", - "type": "int" - } - ] - }, - { - "name": "rand_from_seed", - "return_type": "PackedInt64Array", - "category": "random", - "is_vararg": false, - "hash": 1391063685, - "arguments": [ - { - "name": "seed", - "type": "int" - } - ] - }, - { - "name": "weakref", - "return_type": "Variant", - "category": "general", - "is_vararg": false, - "hash": 4776452, - "arguments": [ - { - "name": "obj", - "type": "Variant" - } - ] - }, - { - "name": "typeof", - "return_type": "int", - "category": "general", - "is_vararg": false, - "hash": 326422594, - "arguments": [ - { - "name": "variable", - "type": "Variant" - } - ] - }, - { - "name": "type_convert", - "return_type": "Variant", - "category": "general", - "is_vararg": false, - "hash": 2453062746, - "arguments": [ - { - "name": "variant", - "type": "Variant" - }, - { - "name": "type", - "type": "int" - } - ] - }, - { - "name": "str", - "return_type": "String", - "category": "general", - "is_vararg": true, - "hash": 32569176, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "error_string", - "return_type": "String", - "category": "general", - "is_vararg": false, - "hash": 942708242, - "arguments": [ - { - "name": "error", - "type": "int" - } - ] - }, - { - "name": "type_string", - "return_type": "String", - "category": "general", - "is_vararg": false, - "hash": 942708242, - "arguments": [ - { - "name": "type", - "type": "int" - } - ] - }, - { - "name": "print", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "print_rich", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "printerr", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "printt", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "prints", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "printraw", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "print_verbose", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "push_error", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "push_warning", - "category": "general", - "is_vararg": true, - "hash": 2648703342, - "arguments": [ - { - "name": "arg1", - "type": "Variant" - } - ] - }, - { - "name": "var_to_str", - "return_type": "String", - "category": "general", - "is_vararg": false, - "hash": 866625479, - "arguments": [ - { - "name": "variable", - "type": "Variant" - } - ] - }, - { - "name": "str_to_var", - "return_type": "Variant", - "category": "general", - "is_vararg": false, - "hash": 1891498491, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "var_to_bytes", - "return_type": "PackedByteArray", - "category": "general", - "is_vararg": false, - "hash": 2947269930, - "arguments": [ - { - "name": "variable", - "type": "Variant" - } - ] - }, - { - "name": "bytes_to_var", - "return_type": "Variant", - "category": "general", - "is_vararg": false, - "hash": 4249819452, - "arguments": [ - { - "name": "bytes", - "type": "PackedByteArray" - } - ] - }, - { - "name": "var_to_bytes_with_objects", - "return_type": "PackedByteArray", - "category": "general", - "is_vararg": false, - "hash": 2947269930, - "arguments": [ - { - "name": "variable", - "type": "Variant" - } - ] - }, - { - "name": "bytes_to_var_with_objects", - "return_type": "Variant", - "category": "general", - "is_vararg": false, - "hash": 4249819452, - "arguments": [ - { - "name": "bytes", - "type": "PackedByteArray" - } - ] - }, - { - "name": "hash", - "return_type": "int", - "category": "general", - "is_vararg": false, - "hash": 326422594, - "arguments": [ - { - "name": "variable", - "type": "Variant" - } - ] - }, - { - "name": "instance_from_id", - "return_type": "Object", - "category": "general", - "is_vararg": false, - "hash": 1156694636, - "arguments": [ - { - "name": "instance_id", - "type": "int" - } - ] - }, - { - "name": "is_instance_id_valid", - "return_type": "bool", - "category": "general", - "is_vararg": false, - "hash": 2232439758, - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "is_instance_valid", - "return_type": "bool", - "category": "general", - "is_vararg": false, - "hash": 996128841, - "arguments": [ - { - "name": "instance", - "type": "Variant" - } - ] - }, - { - "name": "rid_allocate_id", - "return_type": "int", - "category": "general", - "is_vararg": false, - "hash": 701202648 - }, - { - "name": "rid_from_int64", - "return_type": "RID", - "category": "general", - "is_vararg": false, - "hash": 3426892196, - "arguments": [ - { - "name": "base", - "type": "int" - } - ] - }, - { - "name": "is_same", - "return_type": "bool", - "category": "general", - "is_vararg": false, - "hash": 1409423524, - "arguments": [ - { - "name": "a", - "type": "Variant" - }, - { - "name": "b", - "type": "Variant" - } - ] - } - ], - "builtin_classes": [ - { - "name": "Nil", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Rect2", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Rect2", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Rect2i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Rect2i", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Transform2D", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Transform2D", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Plane", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Plane", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Quaternion", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Quaternion", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "AABB", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "AABB", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Basis", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Basis", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Transform3D", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Transform3D", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Projection", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Projection", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Color", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Color", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "NodePath", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "NodePath", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Callable", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Callable", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Signal", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Signal", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedFloat64Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedFloat64Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector2Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector2Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector3Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector3Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedColorArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedColorArray", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector4Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector4Array", - "return_type": "bool" - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Variant" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "bool", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "bool" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "int" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "from", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "int", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "int" - }, - { - "name": "unary+", - "return_type": "int" - }, - { - "name": "~", - "return_type": "int" - }, - { - "name": "and", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "int", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "int", - "return_type": "int" - }, - { - "name": "-", - "right_type": "int", - "return_type": "int" - }, - { - "name": "*", - "right_type": "int", - "return_type": "int" - }, - { - "name": "/", - "right_type": "int", - "return_type": "int" - }, - { - "name": "%", - "right_type": "int", - "return_type": "int" - }, - { - "name": "**", - "right_type": "int", - "return_type": "int" - }, - { - "name": "<<", - "right_type": "int", - "return_type": "int" - }, - { - "name": ">>", - "right_type": "int", - "return_type": "int" - }, - { - "name": "&", - "right_type": "int", - "return_type": "int" - }, - { - "name": "|", - "right_type": "int", - "return_type": "int" - }, - { - "name": "^", - "right_type": "int", - "return_type": "int" - }, - { - "name": "and", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "float", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "float", - "return_type": "float" - }, - { - "name": "-", - "right_type": "float", - "return_type": "float" - }, - { - "name": "*", - "right_type": "float", - "return_type": "float" - }, - { - "name": "/", - "right_type": "float", - "return_type": "float" - }, - { - "name": "**", - "right_type": "float", - "return_type": "float" - }, - { - "name": "and", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "*", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "*", - "right_type": "Quaternion", - "return_type": "Quaternion" - }, - { - "name": "*", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "and", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedFloat64Array", - "return_type": "bool" - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "int" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "float" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "from", - "type": "bool" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "from", - "type": "String" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "float", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "float" - }, - { - "name": "unary+", - "return_type": "float" - }, - { - "name": "and", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "and", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "bool", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "int", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "int", - "return_type": "float" - }, - { - "name": "-", - "right_type": "int", - "return_type": "float" - }, - { - "name": "*", - "right_type": "int", - "return_type": "float" - }, - { - "name": "/", - "right_type": "int", - "return_type": "float" - }, - { - "name": "**", - "right_type": "int", - "return_type": "float" - }, - { - "name": "and", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "int", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "float", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "float", - "return_type": "float" - }, - { - "name": "-", - "right_type": "float", - "return_type": "float" - }, - { - "name": "*", - "right_type": "float", - "return_type": "float" - }, - { - "name": "/", - "right_type": "float", - "return_type": "float" - }, - { - "name": "**", - "right_type": "float", - "return_type": "float" - }, - { - "name": "and", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "float", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Vector2i", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Vector3i", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "Vector4i", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "Quaternion", - "return_type": "Quaternion" - }, - { - "name": "*", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "and", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "or", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "xor", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedFloat64Array", - "return_type": "bool" - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "float" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "int" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "from", - "type": "bool" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "from", - "type": "String" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "String", - "indexing_return_type": "String", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Variant", - "return_type": "String" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "bool", - "return_type": "String" - }, - { - "name": "%", - "right_type": "int", - "return_type": "String" - }, - { - "name": "%", - "right_type": "float", - "return_type": "String" - }, - { - "name": "==", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "String", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "String", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "String", - "return_type": "String" - }, - { - "name": "%", - "right_type": "String", - "return_type": "String" - }, - { - "name": "in", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Vector2", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector2i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Rect2", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Rect2i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector3", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector3i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Transform2D", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector4", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector4i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Plane", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Quaternion", - "return_type": "String" - }, - { - "name": "%", - "right_type": "AABB", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Basis", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Transform3D", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Projection", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Color", - "return_type": "String" - }, - { - "name": "==", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "StringName", - "return_type": "String" - }, - { - "name": "%", - "right_type": "StringName", - "return_type": "String" - }, - { - "name": "in", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "NodePath", - "return_type": "String" - }, - { - "name": "%", - "right_type": "RID", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Object", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Callable", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Signal", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Dictionary", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Array", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "PackedByteArray", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedInt32Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedInt64Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedFloat32Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedFloat64Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedStringArray", - "return_type": "String" - }, - { - "name": "in", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "PackedVector2Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedVector3Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedColorArray", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedVector4Array", - "return_type": "String" - } - ], - "methods": [ - { - "name": "casecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "nocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "naturalcasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "naturalnocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "filecasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "filenocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "length", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "substr", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "from", - "type": "int" - }, - { - "name": "len", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "get_slice", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3535100402, - "arguments": [ - { - "name": "delimiter", - "type": "String" - }, - { - "name": "slice", - "type": "int" - } - ] - }, - { - "name": "get_slicec", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "delimiter", - "type": "int" - }, - { - "name": "slice", - "type": "int" - } - ] - }, - { - "name": "get_slice_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "delimiter", - "type": "String" - } - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "findn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2343087891, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "countn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2343087891, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "rfindn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "match", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "expr", - "type": "String" - } - ] - }, - { - "name": "matchn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "expr", - "type": "String" - } - ] - }, - { - "name": "begins_with", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "ends_with", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "is_subsequence_of", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "is_subsequence_ofn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "bigrams", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 747180633 - }, - { - "name": "similarity", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2697460964, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "format", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3212199029, - "arguments": [ - { - "name": "values", - "type": "Variant" - }, - { - "name": "placeholder", - "type": "String", - "default_value": "\"{_}\"" - } - ] - }, - { - "name": "replace", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1340436205, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "forwhat", - "type": "String" - } - ] - }, - { - "name": "replacen", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1340436205, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "forwhat", - "type": "String" - } - ] - }, - { - "name": "replace_char", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "key", - "type": "int" - }, - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "replace_chars", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3535100402, - "arguments": [ - { - "name": "keys", - "type": "String" - }, - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "remove_char", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "what", - "type": "int" - } - ] - }, - { - "name": "remove_chars", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "repeat", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "count", - "type": "int" - } - ] - }, - { - "name": "reverse", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "insert", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "position", - "type": "int" - }, - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "erase", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "position", - "type": "int" - }, - { - "name": "chars", - "type": "int", - "default_value": "1" - } - ] - }, - { - "name": "capitalize", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_camel_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_pascal_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_snake_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_kebab_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "split", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1252735785, - "arguments": [ - { - "name": "delimiter", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - }, - { - "name": "maxsplit", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rsplit", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1252735785, - "arguments": [ - { - "name": "delimiter", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - }, - { - "name": "maxsplit", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "split_floats", - "return_type": "PackedFloat64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2092079095, - "arguments": [ - { - "name": "delimiter", - "type": "String" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "join", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3595973238, - "arguments": [ - { - "name": "parts", - "type": "PackedStringArray" - } - ] - }, - { - "name": "to_upper", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_lower", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "left", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "length", - "type": "int" - } - ] - }, - { - "name": "right", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "length", - "type": "int" - } - ] - }, - { - "name": "strip_edges", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 907855311, - "arguments": [ - { - "name": "left", - "type": "bool", - "default_value": "true" - }, - { - "name": "right", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "strip_escapes", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "lstrip", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "rstrip", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "get_extension", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_basename", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "path_join", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "unicode_at", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "at", - "type": "int" - } - ] - }, - { - "name": "indent", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "dedent", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "md5_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "sha1_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "sha256_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "md5_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sha1_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sha256_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "contains", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "containsn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "is_absolute_path", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_relative_path", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "simplify_path", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_base_dir", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_file", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "xml_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3429816538, - "arguments": [ - { - "name": "escape_quotes", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "xml_unescape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_encode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_decode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_file_decode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "c_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "c_unescape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "json_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "validate_node_name", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "validate_filename", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "is_valid_ascii_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_unicode_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_int", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_float", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_hex_number", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 593672999, - "arguments": [ - { - "name": "with_prefix", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_valid_html_color", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_ip_address", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_filename", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_float", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "hex_to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "bin_to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "lpad", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "min_length", - "type": "int" - }, - { - "name": "character", - "type": "String", - "default_value": "\" \"" - } - ] - }, - { - "name": "rpad", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "min_length", - "type": "int" - }, - { - "name": "character", - "type": "String", - "default_value": "\" \"" - } - ] - }, - { - "name": "pad_decimals", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "digits", - "type": "int" - } - ] - }, - { - "name": "pad_zeros", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "digits", - "type": "int" - } - ] - }, - { - "name": "trim_prefix", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "trim_suffix", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "suffix", - "type": "String" - } - ] - }, - { - "name": "to_ascii_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf8_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf16_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf32_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_wchar_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_multibyte_char_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3055765187, - "arguments": [ - { - "name": "encoding", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "hex_decode", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "num_scientific", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2710373411, - "arguments": [ - { - "name": "number", - "type": "float" - } - ] - }, - { - "name": "num", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1555901022, - "arguments": [ - { - "name": "number", - "type": "float" - }, - { - "name": "decimals", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "num_int64", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2111271071, - "arguments": [ - { - "name": "number", - "type": "int" - }, - { - "name": "base", - "type": "int", - "default_value": "10" - }, - { - "name": "capitalize_hex", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "num_uint64", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2111271071, - "arguments": [ - { - "name": "number", - "type": "int" - }, - { - "name": "base", - "type": "int", - "default_value": "10" - }, - { - "name": "capitalize_hex", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "chr", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 897497541, - "arguments": [ - { - "name": "code", - "type": "int" - } - ] - }, - { - "name": "humanize_size", - "return_type": "String", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 897497541, - "arguments": [ - { - "name": "size", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "String" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "StringName" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "from", - "type": "NodePath" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "Vector2", - "indexing_return_type": "float", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector2", - "value": "Vector2(0, 0)" - }, - { - "name": "ONE", - "type": "Vector2", - "value": "Vector2(1, 1)" - }, - { - "name": "INF", - "type": "Vector2", - "value": "Vector2(inf, inf)" - }, - { - "name": "LEFT", - "type": "Vector2", - "value": "Vector2(-1, 0)" - }, - { - "name": "RIGHT", - "type": "Vector2", - "value": "Vector2(1, 0)" - }, - { - "name": "UP", - "type": "Vector2", - "value": "Vector2(0, -1)" - }, - { - "name": "DOWN", - "type": "Vector2", - "value": "Vector2(0, 1)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector2" - }, - { - "name": "unary+", - "return_type": "Vector2" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector2" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector2" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector2" - }, - { - "name": "==", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector2", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "-", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "/", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Transform2D", - "return_type": "Vector2" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedVector2Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "angle", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "angle_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "angle_to_point", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "direction_to", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "limit_length", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "length", - "type": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "normalized", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "is_normalized", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3190634762, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "is_zero_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "posmod", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "mod", - "type": "float" - } - ] - }, - { - "name": "posmodv", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "modv", - "type": "Vector2" - } - ] - }, - { - "name": "project", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "b", - "type": "Vector2" - } - ] - }, - { - "name": "lerp", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4250033116, - "arguments": [ - { - "name": "to", - "type": "Vector2" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "slerp", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4250033116, - "arguments": [ - { - "name": "to", - "type": "Vector2" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 193522989, - "arguments": [ - { - "name": "b", - "type": "Vector2" - }, - { - "name": "pre_a", - "type": "Vector2" - }, - { - "name": "post_b", - "type": "Vector2" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_in_time", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1957055074, - "arguments": [ - { - "name": "b", - "type": "Vector2" - }, - { - "name": "pre_a", - "type": "Vector2" - }, - { - "name": "post_b", - "type": "Vector2" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "b_t", - "type": "float" - }, - { - "name": "pre_a_t", - "type": "float" - }, - { - "name": "post_b_t", - "type": "float" - } - ] - }, - { - "name": "bezier_interpolate", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 193522989, - "arguments": [ - { - "name": "control_1", - "type": "Vector2" - }, - { - "name": "control_2", - "type": "Vector2" - }, - { - "name": "end", - "type": "Vector2" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "bezier_derivative", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 193522989, - "arguments": [ - { - "name": "control_1", - "type": "Vector2" - }, - { - "name": "control_2", - "type": "Vector2" - }, - { - "name": "end", - "type": "Vector2" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "move_toward", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4250033116, - "arguments": [ - { - "name": "to", - "type": "Vector2" - }, - { - "name": "delta", - "type": "float" - } - ] - }, - { - "name": "rotated", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "orthogonal", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "floor", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "ceil", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "round", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "aspect", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "dot", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "with", - "type": "Vector2" - } - ] - }, - { - "name": "slide", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "n", - "type": "Vector2" - } - ] - }, - { - "name": "bounce", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "n", - "type": "Vector2" - } - ] - }, - { - "name": "reflect", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "line", - "type": "Vector2" - } - ] - }, - { - "name": "cross", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3819070308, - "arguments": [ - { - "name": "with", - "type": "Vector2" - } - ] - }, - { - "name": "abs", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "sign", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "clamp", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 318031021, - "arguments": [ - { - "name": "min", - "type": "Vector2" - }, - { - "name": "max", - "type": "Vector2" - } - ] - }, - { - "name": "clampf", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3464402636, - "arguments": [ - { - "name": "min", - "type": "float" - }, - { - "name": "max", - "type": "float" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "step", - "type": "Vector2" - } - ] - }, - { - "name": "snappedf", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "step", - "type": "float" - } - ] - }, - { - "name": "min", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "with", - "type": "Vector2" - } - ] - }, - { - "name": "minf", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - }, - { - "name": "max", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "with", - "type": "Vector2" - } - ] - }, - { - "name": "maxf", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2544004089, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - }, - { - "name": "from_angle", - "return_type": "Vector2", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 889263119, - "arguments": [ - { - "name": "angle", - "type": "float" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector2" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector2i" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Vector2i", - "indexing_return_type": "int", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector2i", - "value": "Vector2i(0, 0)" - }, - { - "name": "ONE", - "type": "Vector2i", - "value": "Vector2i(1, 1)" - }, - { - "name": "MIN", - "type": "Vector2i", - "value": "Vector2i(-2147483648, -2147483648)" - }, - { - "name": "MAX", - "type": "Vector2i", - "value": "Vector2i(2147483647, 2147483647)" - }, - { - "name": "LEFT", - "type": "Vector2i", - "value": "Vector2i(-1, 0)" - }, - { - "name": "RIGHT", - "type": "Vector2i", - "value": "Vector2i(1, 0)" - }, - { - "name": "UP", - "type": "Vector2i", - "value": "Vector2i(0, -1)" - }, - { - "name": "DOWN", - "type": "Vector2i", - "value": "Vector2i(0, 1)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector2i" - }, - { - "name": "unary+", - "return_type": "Vector2i" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector2i" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector2i" - }, - { - "name": "%", - "right_type": "int", - "return_type": "Vector2i" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector2" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector2" - }, - { - "name": "==", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector2i", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "-", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "*", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "/", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "%", - "right_type": "Vector2i", - "return_type": "Vector2i" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "aspect", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 707501214, - "arguments": [ - { - "name": "to", - "type": "Vector2i" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1130029528, - "arguments": [ - { - "name": "to", - "type": "Vector2i" - } - ] - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "sign", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3444277866 - }, - { - "name": "abs", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3444277866 - }, - { - "name": "clamp", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 186568249, - "arguments": [ - { - "name": "min", - "type": "Vector2i" - }, - { - "name": "max", - "type": "Vector2i" - } - ] - }, - { - "name": "clampi", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3686769569, - "arguments": [ - { - "name": "min", - "type": "int" - }, - { - "name": "max", - "type": "int" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1735278196, - "arguments": [ - { - "name": "step", - "type": "Vector2i" - } - ] - }, - { - "name": "snappedi", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2161988953, - "arguments": [ - { - "name": "step", - "type": "int" - } - ] - }, - { - "name": "min", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1735278196, - "arguments": [ - { - "name": "with", - "type": "Vector2i" - } - ] - }, - { - "name": "mini", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2161988953, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "max", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1735278196, - "arguments": [ - { - "name": "with", - "type": "Vector2i" - } - ] - }, - { - "name": "maxi", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2161988953, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector2i" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector2" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Rect2", - "is_keyed": false, - "members": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "end", - "type": "Vector2" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Rect2", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Rect2", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform2D", - "return_type": "Rect2" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "get_center", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "get_area", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "has_area", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "has_point", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3190634762, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1908192260, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "intersects", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 819294880, - "arguments": [ - { - "name": "b", - "type": "Rect2" - }, - { - "name": "include_borders", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "encloses", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1908192260, - "arguments": [ - { - "name": "b", - "type": "Rect2" - } - ] - }, - { - "name": "intersection", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2282977743, - "arguments": [ - { - "name": "b", - "type": "Rect2" - } - ] - }, - { - "name": "merge", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2282977743, - "arguments": [ - { - "name": "b", - "type": "Rect2" - } - ] - }, - { - "name": "expand", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 293272265, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "get_support", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "grow", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 39664498, - "arguments": [ - { - "name": "amount", - "type": "float" - } - ] - }, - { - "name": "grow_side", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4177736158, - "arguments": [ - { - "name": "side", - "type": "int" - }, - { - "name": "amount", - "type": "float" - } - ] - }, - { - "name": "grow_individual", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3203390369, - "arguments": [ - { - "name": "left", - "type": "float" - }, - { - "name": "top", - "type": "float" - }, - { - "name": "right", - "type": "float" - }, - { - "name": "bottom", - "type": "float" - } - ] - }, - { - "name": "abs", - "return_type": "Rect2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3107653634 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Rect2" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Rect2i" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "width", - "type": "float" - }, - { - "name": "height", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Rect2i", - "is_keyed": false, - "members": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "end", - "type": "Vector2i" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Rect2i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Rect2i", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "get_center", - "return_type": "Vector2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3444277866 - }, - { - "name": "get_area", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "has_area", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "has_point", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 328189994, - "arguments": [ - { - "name": "point", - "type": "Vector2i" - } - ] - }, - { - "name": "intersects", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3434691493, - "arguments": [ - { - "name": "b", - "type": "Rect2i" - } - ] - }, - { - "name": "encloses", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3434691493, - "arguments": [ - { - "name": "b", - "type": "Rect2i" - } - ] - }, - { - "name": "intersection", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 717431873, - "arguments": [ - { - "name": "b", - "type": "Rect2i" - } - ] - }, - { - "name": "merge", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 717431873, - "arguments": [ - { - "name": "b", - "type": "Rect2i" - } - ] - }, - { - "name": "expand", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1355196872, - "arguments": [ - { - "name": "to", - "type": "Vector2i" - } - ] - }, - { - "name": "grow", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1578070074, - "arguments": [ - { - "name": "amount", - "type": "int" - } - ] - }, - { - "name": "grow_side", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3191154199, - "arguments": [ - { - "name": "side", - "type": "int" - }, - { - "name": "amount", - "type": "int" - } - ] - }, - { - "name": "grow_individual", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1893743416, - "arguments": [ - { - "name": "left", - "type": "int" - }, - { - "name": "top", - "type": "int" - }, - { - "name": "right", - "type": "int" - }, - { - "name": "bottom", - "type": "int" - } - ] - }, - { - "name": "abs", - "return_type": "Rect2i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1469025700 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Rect2i" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Rect2" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - }, - { - "name": "width", - "type": "int" - }, - { - "name": "height", - "type": "int" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Vector3", - "indexing_return_type": "float", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector3", - "value": "Vector3(0, 0, 0)" - }, - { - "name": "ONE", - "type": "Vector3", - "value": "Vector3(1, 1, 1)" - }, - { - "name": "INF", - "type": "Vector3", - "value": "Vector3(inf, inf, inf)" - }, - { - "name": "LEFT", - "type": "Vector3", - "value": "Vector3(-1, 0, 0)" - }, - { - "name": "RIGHT", - "type": "Vector3", - "value": "Vector3(1, 0, 0)" - }, - { - "name": "UP", - "type": "Vector3", - "value": "Vector3(0, 1, 0)" - }, - { - "name": "DOWN", - "type": "Vector3", - "value": "Vector3(0, -1, 0)" - }, - { - "name": "FORWARD", - "type": "Vector3", - "value": "Vector3(0, 0, -1)" - }, - { - "name": "BACK", - "type": "Vector3", - "value": "Vector3(0, 0, 1)" - }, - { - "name": "MODEL_LEFT", - "type": "Vector3", - "value": "Vector3(1, 0, 0)" - }, - { - "name": "MODEL_RIGHT", - "type": "Vector3", - "value": "Vector3(-1, 0, 0)" - }, - { - "name": "MODEL_TOP", - "type": "Vector3", - "value": "Vector3(0, 1, 0)" - }, - { - "name": "MODEL_BOTTOM", - "type": "Vector3", - "value": "Vector3(0, -1, 0)" - }, - { - "name": "MODEL_FRONT", - "type": "Vector3", - "value": "Vector3(0, 0, 1)" - }, - { - "name": "MODEL_REAR", - "type": "Vector3", - "value": "Vector3(0, 0, -1)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - }, - { - "name": "AXIS_Z", - "value": 2 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector3" - }, - { - "name": "unary+", - "return_type": "Vector3" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector3" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector3" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector3" - }, - { - "name": "==", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector3", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "-", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "/", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Quaternion", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Basis", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Transform3D", - "return_type": "Vector3" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedVector3Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "angle_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "signed_angle_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2781412522, - "arguments": [ - { - "name": "to", - "type": "Vector3" - }, - { - "name": "axis", - "type": "Vector3" - } - ] - }, - { - "name": "direction_to", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "limit_length", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 514930144, - "arguments": [ - { - "name": "length", - "type": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "normalized", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "is_normalized", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1749054343, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "is_zero_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "inverse", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "clamp", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4145107892, - "arguments": [ - { - "name": "min", - "type": "Vector3" - }, - { - "name": "max", - "type": "Vector3" - } - ] - }, - { - "name": "clampf", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2329594628, - "arguments": [ - { - "name": "min", - "type": "float" - }, - { - "name": "max", - "type": "float" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "step", - "type": "Vector3" - } - ] - }, - { - "name": "snappedf", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 514930144, - "arguments": [ - { - "name": "step", - "type": "float" - } - ] - }, - { - "name": "rotated", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682608829, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "lerp", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682608829, - "arguments": [ - { - "name": "to", - "type": "Vector3" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "slerp", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682608829, - "arguments": [ - { - "name": "to", - "type": "Vector3" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2597922253, - "arguments": [ - { - "name": "b", - "type": "Vector3" - }, - { - "name": "pre_a", - "type": "Vector3" - }, - { - "name": "post_b", - "type": "Vector3" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_in_time", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3256682901, - "arguments": [ - { - "name": "b", - "type": "Vector3" - }, - { - "name": "pre_a", - "type": "Vector3" - }, - { - "name": "post_b", - "type": "Vector3" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "b_t", - "type": "float" - }, - { - "name": "pre_a_t", - "type": "float" - }, - { - "name": "post_b_t", - "type": "float" - } - ] - }, - { - "name": "bezier_interpolate", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2597922253, - "arguments": [ - { - "name": "control_1", - "type": "Vector3" - }, - { - "name": "control_2", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "bezier_derivative", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2597922253, - "arguments": [ - { - "name": "control_1", - "type": "Vector3" - }, - { - "name": "control_2", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - }, - { - "name": "t", - "type": "float" - } - ] - }, - { - "name": "move_toward", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682608829, - "arguments": [ - { - "name": "to", - "type": "Vector3" - }, - { - "name": "delta", - "type": "float" - } - ] - }, - { - "name": "dot", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "cross", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "outer", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3934786792, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "abs", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "floor", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "ceil", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "round", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "posmod", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 514930144, - "arguments": [ - { - "name": "mod", - "type": "float" - } - ] - }, - { - "name": "posmodv", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "modv", - "type": "Vector3" - } - ] - }, - { - "name": "project", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "b", - "type": "Vector3" - } - ] - }, - { - "name": "slide", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "n", - "type": "Vector3" - } - ] - }, - { - "name": "bounce", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "n", - "type": "Vector3" - } - ] - }, - { - "name": "reflect", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "n", - "type": "Vector3" - } - ] - }, - { - "name": "sign", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "octahedron_encode", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "min", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "minf", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 514930144, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - }, - { - "name": "max", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "maxf", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 514930144, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - }, - { - "name": "octahedron_decode", - "return_type": "Vector3", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3991820552, - "arguments": [ - { - "name": "uv", - "type": "Vector2" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector3" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector3i" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Vector3i", - "indexing_return_type": "int", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - }, - { - "name": "z", - "type": "int" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector3i", - "value": "Vector3i(0, 0, 0)" - }, - { - "name": "ONE", - "type": "Vector3i", - "value": "Vector3i(1, 1, 1)" - }, - { - "name": "MIN", - "type": "Vector3i", - "value": "Vector3i(-2147483648, -2147483648, -2147483648)" - }, - { - "name": "MAX", - "type": "Vector3i", - "value": "Vector3i(2147483647, 2147483647, 2147483647)" - }, - { - "name": "LEFT", - "type": "Vector3i", - "value": "Vector3i(-1, 0, 0)" - }, - { - "name": "RIGHT", - "type": "Vector3i", - "value": "Vector3i(1, 0, 0)" - }, - { - "name": "UP", - "type": "Vector3i", - "value": "Vector3i(0, 1, 0)" - }, - { - "name": "DOWN", - "type": "Vector3i", - "value": "Vector3i(0, -1, 0)" - }, - { - "name": "FORWARD", - "type": "Vector3i", - "value": "Vector3i(0, 0, -1)" - }, - { - "name": "BACK", - "type": "Vector3i", - "value": "Vector3i(0, 0, 1)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - }, - { - "name": "AXIS_Z", - "value": 2 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector3i" - }, - { - "name": "unary+", - "return_type": "Vector3i" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector3i" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector3i" - }, - { - "name": "%", - "right_type": "int", - "return_type": "Vector3i" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector3" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector3" - }, - { - "name": "==", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector3i", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "-", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "*", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "/", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "%", - "right_type": "Vector3i", - "return_type": "Vector3i" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1975170430, - "arguments": [ - { - "name": "to", - "type": "Vector3i" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2947717320, - "arguments": [ - { - "name": "to", - "type": "Vector3i" - } - ] - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "sign", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3729604559 - }, - { - "name": "abs", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3729604559 - }, - { - "name": "clamp", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1086892323, - "arguments": [ - { - "name": "min", - "type": "Vector3i" - }, - { - "name": "max", - "type": "Vector3i" - } - ] - }, - { - "name": "clampi", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1077216921, - "arguments": [ - { - "name": "min", - "type": "int" - }, - { - "name": "max", - "type": "int" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1989319750, - "arguments": [ - { - "name": "step", - "type": "Vector3i" - } - ] - }, - { - "name": "snappedi", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2377625641, - "arguments": [ - { - "name": "step", - "type": "int" - } - ] - }, - { - "name": "min", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1989319750, - "arguments": [ - { - "name": "with", - "type": "Vector3i" - } - ] - }, - { - "name": "mini", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2377625641, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "max", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1989319750, - "arguments": [ - { - "name": "with", - "type": "Vector3i" - } - ] - }, - { - "name": "maxi", - "return_type": "Vector3i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2377625641, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector3i" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector3" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - }, - { - "name": "z", - "type": "int" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Transform2D", - "indexing_return_type": "Vector2", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "Vector2" - }, - { - "name": "y", - "type": "Vector2" - }, - { - "name": "origin", - "type": "Vector2" - } - ], - "constants": [ - { - "name": "IDENTITY", - "type": "Transform2D", - "value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "FLIP_X", - "type": "Transform2D", - "value": "Transform2D(-1, 0, 0, 1, 0, 0)" - }, - { - "name": "FLIP_Y", - "type": "Transform2D", - "value": "Transform2D(1, 0, 0, -1, 0, 0)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Transform2D" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Transform2D" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Transform2D" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Transform2D" - }, - { - "name": "*", - "right_type": "Vector2", - "return_type": "Vector2" - }, - { - "name": "*", - "right_type": "Rect2", - "return_type": "Rect2" - }, - { - "name": "==", - "right_type": "Transform2D", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Transform2D", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform2D", - "return_type": "Transform2D" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "PackedVector2Array", - "return_type": "PackedVector2Array" - } - ], - "methods": [ - { - "name": "inverse", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1420440541 - }, - { - "name": "affine_inverse", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1420440541 - }, - { - "name": "get_rotation", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_origin", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "get_scale", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "get_skew", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "orthonormalized", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1420440541 - }, - { - "name": "rotated", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 729597514, - "arguments": [ - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "rotated_local", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 729597514, - "arguments": [ - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "scaled", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1446323263, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "scaled_local", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1446323263, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "translated", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1446323263, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "translated_local", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1446323263, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "determinant", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "basis_xform", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "v", - "type": "Vector2" - } - ] - }, - { - "name": "basis_xform_inv", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2026743667, - "arguments": [ - { - "name": "v", - "type": "Vector2" - } - ] - }, - { - "name": "interpolate_with", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 359399686, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "is_conformal", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3837431929, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "looking_at", - "return_type": "Transform2D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1446323263, - "arguments": [ - { - "name": "target", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Transform2D" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "rotation", - "type": "float" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "rotation", - "type": "float" - }, - { - "name": "scale", - "type": "Vector2" - }, - { - "name": "skew", - "type": "float" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "x_axis", - "type": "Vector2" - }, - { - "name": "y_axis", - "type": "Vector2" - }, - { - "name": "origin", - "type": "Vector2" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Vector4", - "indexing_return_type": "float", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - }, - { - "name": "w", - "type": "float" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector4", - "value": "Vector4(0, 0, 0, 0)" - }, - { - "name": "ONE", - "type": "Vector4", - "value": "Vector4(1, 1, 1, 1)" - }, - { - "name": "INF", - "type": "Vector4", - "value": "Vector4(inf, inf, inf, inf)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - }, - { - "name": "AXIS_Z", - "value": 2 - }, - { - "name": "AXIS_W", - "value": 3 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector4" - }, - { - "name": "unary+", - "return_type": "Vector4" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector4" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector4" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector4" - }, - { - "name": "==", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector4", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "-", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "/", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "*", - "right_type": "Projection", - "return_type": "Vector4" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedVector4Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "abs", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "sign", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "floor", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "ceil", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "round", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "lerp", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2329757942, - "arguments": [ - { - "name": "to", - "type": "Vector4" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 726768410, - "arguments": [ - { - "name": "b", - "type": "Vector4" - }, - { - "name": "pre_a", - "type": "Vector4" - }, - { - "name": "post_b", - "type": "Vector4" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "cubic_interpolate_in_time", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 681631873, - "arguments": [ - { - "name": "b", - "type": "Vector4" - }, - { - "name": "pre_a", - "type": "Vector4" - }, - { - "name": "post_b", - "type": "Vector4" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "b_t", - "type": "float" - }, - { - "name": "pre_a_t", - "type": "float" - }, - { - "name": "post_b_t", - "type": "float" - } - ] - }, - { - "name": "posmod", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3129671720, - "arguments": [ - { - "name": "mod", - "type": "float" - } - ] - }, - { - "name": "posmodv", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2031281584, - "arguments": [ - { - "name": "modv", - "type": "Vector4" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2031281584, - "arguments": [ - { - "name": "step", - "type": "Vector4" - } - ] - }, - { - "name": "snappedf", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3129671720, - "arguments": [ - { - "name": "step", - "type": "float" - } - ] - }, - { - "name": "clamp", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 823915692, - "arguments": [ - { - "name": "min", - "type": "Vector4" - }, - { - "name": "max", - "type": "Vector4" - } - ] - }, - { - "name": "clampf", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4072091586, - "arguments": [ - { - "name": "min", - "type": "float" - }, - { - "name": "max", - "type": "float" - } - ] - }, - { - "name": "normalized", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "is_normalized", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "direction_to", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2031281584, - "arguments": [ - { - "name": "to", - "type": "Vector4" - } - ] - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3770801042, - "arguments": [ - { - "name": "to", - "type": "Vector4" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3770801042, - "arguments": [ - { - "name": "to", - "type": "Vector4" - } - ] - }, - { - "name": "dot", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3770801042, - "arguments": [ - { - "name": "with", - "type": "Vector4" - } - ] - }, - { - "name": "inverse", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 80860099 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 88913544, - "arguments": [ - { - "name": "to", - "type": "Vector4" - } - ] - }, - { - "name": "is_zero_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "min", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2031281584, - "arguments": [ - { - "name": "with", - "type": "Vector4" - } - ] - }, - { - "name": "minf", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3129671720, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - }, - { - "name": "max", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2031281584, - "arguments": [ - { - "name": "with", - "type": "Vector4" - } - ] - }, - { - "name": "maxf", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3129671720, - "arguments": [ - { - "name": "with", - "type": "float" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector4" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector4i" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - }, - { - "name": "w", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Vector4i", - "indexing_return_type": "int", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - }, - { - "name": "z", - "type": "int" - }, - { - "name": "w", - "type": "int" - } - ], - "constants": [ - { - "name": "ZERO", - "type": "Vector4i", - "value": "Vector4i(0, 0, 0, 0)" - }, - { - "name": "ONE", - "type": "Vector4i", - "value": "Vector4i(1, 1, 1, 1)" - }, - { - "name": "MIN", - "type": "Vector4i", - "value": "Vector4i(-2147483648, -2147483648, -2147483648, -2147483648)" - }, - { - "name": "MAX", - "type": "Vector4i", - "value": "Vector4i(2147483647, 2147483647, 2147483647, 2147483647)" - } - ], - "enums": [ - { - "name": "Axis", - "values": [ - { - "name": "AXIS_X", - "value": 0 - }, - { - "name": "AXIS_Y", - "value": 1 - }, - { - "name": "AXIS_Z", - "value": 2 - }, - { - "name": "AXIS_W", - "value": 3 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Vector4i" - }, - { - "name": "unary+", - "return_type": "Vector4i" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Vector4i" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Vector4i" - }, - { - "name": "%", - "right_type": "int", - "return_type": "Vector4i" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Vector4" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Vector4" - }, - { - "name": "==", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Vector4i", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "-", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "*", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "/", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "%", - "right_type": "Vector4i", - "return_type": "Vector4i" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "min_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "max_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "sign", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4134919947 - }, - { - "name": "abs", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4134919947 - }, - { - "name": "clamp", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3046490913, - "arguments": [ - { - "name": "min", - "type": "Vector4i" - }, - { - "name": "max", - "type": "Vector4i" - } - ] - }, - { - "name": "clampi", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2994578256, - "arguments": [ - { - "name": "min", - "type": "int" - }, - { - "name": "max", - "type": "int" - } - ] - }, - { - "name": "snapped", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1181693102, - "arguments": [ - { - "name": "step", - "type": "Vector4i" - } - ] - }, - { - "name": "snappedi", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1476494415, - "arguments": [ - { - "name": "step", - "type": "int" - } - ] - }, - { - "name": "min", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1181693102, - "arguments": [ - { - "name": "with", - "type": "Vector4i" - } - ] - }, - { - "name": "mini", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1476494415, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "max", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1181693102, - "arguments": [ - { - "name": "with", - "type": "Vector4i" - } - ] - }, - { - "name": "maxi", - "return_type": "Vector4i", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1476494415, - "arguments": [ - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3446086573, - "arguments": [ - { - "name": "to", - "type": "Vector4i" - } - ] - }, - { - "name": "distance_squared_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 346708794, - "arguments": [ - { - "name": "to", - "type": "Vector4i" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Vector4i" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Vector4" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x", - "type": "int" - }, - { - "name": "y", - "type": "int" - }, - { - "name": "z", - "type": "int" - }, - { - "name": "w", - "type": "int" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Plane", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - }, - { - "name": "d", - "type": "float" - }, - { - "name": "normal", - "type": "Vector3" - } - ], - "constants": [ - { - "name": "PLANE_YZ", - "type": "Plane", - "value": "Plane(1, 0, 0, 0)" - }, - { - "name": "PLANE_XZ", - "type": "Plane", - "value": "Plane(0, 1, 0, 0)" - }, - { - "name": "PLANE_XY", - "type": "Plane", - "value": "Plane(0, 0, 1, 0)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Plane" - }, - { - "name": "unary+", - "return_type": "Plane" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Plane", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Plane", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform3D", - "return_type": "Plane" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "normalized", - "return_type": "Plane", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1051796340 - }, - { - "name": "get_center", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1150170233, - "arguments": [ - { - "name": "to_plane", - "type": "Plane" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_point_over", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1749054343, - "arguments": [ - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "distance_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "has_point", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1258189072, - "arguments": [ - { - "name": "point", - "type": "Vector3" - }, - { - "name": "tolerance", - "type": "float", - "default_value": "1e-05" - } - ] - }, - { - "name": "project", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "intersect_3", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2012052692, - "arguments": [ - { - "name": "b", - "type": "Plane" - }, - { - "name": "c", - "type": "Plane" - } - ] - }, - { - "name": "intersects_ray", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2048133369, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "dir", - "type": "Vector3" - } - ] - }, - { - "name": "intersects_segment", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2048133369, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Plane" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "normal", - "type": "Vector3" - }, - { - "name": "d", - "type": "float" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "normal", - "type": "Vector3" - }, - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "index": 5, - "arguments": [ - { - "name": "point1", - "type": "Vector3" - }, - { - "name": "point2", - "type": "Vector3" - }, - { - "name": "point3", - "type": "Vector3" - } - ] - }, - { - "index": 6, - "arguments": [ - { - "name": "a", - "type": "float" - }, - { - "name": "b", - "type": "float" - }, - { - "name": "c", - "type": "float" - }, - { - "name": "d", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Quaternion", - "indexing_return_type": "float", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - }, - { - "name": "w", - "type": "float" - } - ], - "constants": [ - { - "name": "IDENTITY", - "type": "Quaternion", - "value": "Quaternion(0, 0, 0, 1)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Quaternion" - }, - { - "name": "unary+", - "return_type": "Quaternion" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Quaternion" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Quaternion" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Quaternion" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Quaternion" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "==", - "right_type": "Quaternion", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Quaternion", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Quaternion", - "return_type": "Quaternion" - }, - { - "name": "-", - "right_type": "Quaternion", - "return_type": "Quaternion" - }, - { - "name": "*", - "right_type": "Quaternion", - "return_type": "Quaternion" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "length", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "length_squared", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "normalized", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4274879941 - }, - { - "name": "is_normalized", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682156903, - "arguments": [ - { - "name": "to", - "type": "Quaternion" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "inverse", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4274879941 - }, - { - "name": "log", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4274879941 - }, - { - "name": "exp", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4274879941 - }, - { - "name": "angle_to", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3244682419, - "arguments": [ - { - "name": "to", - "type": "Quaternion" - } - ] - }, - { - "name": "dot", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3244682419, - "arguments": [ - { - "name": "with", - "type": "Quaternion" - } - ] - }, - { - "name": "slerp", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1773590316, - "arguments": [ - { - "name": "to", - "type": "Quaternion" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "slerpni", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1773590316, - "arguments": [ - { - "name": "to", - "type": "Quaternion" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "spherical_cubic_interpolate", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2150967576, - "arguments": [ - { - "name": "b", - "type": "Quaternion" - }, - { - "name": "pre_a", - "type": "Quaternion" - }, - { - "name": "post_b", - "type": "Quaternion" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "spherical_cubic_interpolate_in_time", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1436023539, - "arguments": [ - { - "name": "b", - "type": "Quaternion" - }, - { - "name": "pre_a", - "type": "Quaternion" - }, - { - "name": "post_b", - "type": "Quaternion" - }, - { - "name": "weight", - "type": "float" - }, - { - "name": "b_t", - "type": "float" - }, - { - "name": "pre_a_t", - "type": "float" - }, - { - "name": "post_b_t", - "type": "float" - } - ] - }, - { - "name": "get_euler", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1394941017, - "arguments": [ - { - "name": "order", - "type": "int", - "default_value": "2" - } - ] - }, - { - "name": "from_euler", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 4053467903, - "arguments": [ - { - "name": "euler", - "type": "Vector3" - } - ] - }, - { - "name": "get_axis", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "get_angle", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Quaternion" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Basis" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "arc_from", - "type": "Vector3" - }, - { - "name": "arc_to", - "type": "Vector3" - } - ] - }, - { - "index": 5, - "arguments": [ - { - "name": "x", - "type": "float" - }, - { - "name": "y", - "type": "float" - }, - { - "name": "z", - "type": "float" - }, - { - "name": "w", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "AABB", - "is_keyed": false, - "members": [ - { - "name": "position", - "type": "Vector3" - }, - { - "name": "size", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "AABB", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "AABB", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform3D", - "return_type": "AABB" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "abs", - "return_type": "AABB", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1576868580 - }, - { - "name": "get_center", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "get_volume", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "has_volume", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "has_surface", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "has_point", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1749054343, - "arguments": [ - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 299946684, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "intersects", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 299946684, - "arguments": [ - { - "name": "with", - "type": "AABB" - } - ] - }, - { - "name": "encloses", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 299946684, - "arguments": [ - { - "name": "with", - "type": "AABB" - } - ] - }, - { - "name": "intersects_plane", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1150170233, - "arguments": [ - { - "name": "plane", - "type": "Plane" - } - ] - }, - { - "name": "intersection", - "return_type": "AABB", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1271470306, - "arguments": [ - { - "name": "with", - "type": "AABB" - } - ] - }, - { - "name": "merge", - "return_type": "AABB", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1271470306, - "arguments": [ - { - "name": "with", - "type": "AABB" - } - ] - }, - { - "name": "expand", - "return_type": "AABB", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2851643018, - "arguments": [ - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "grow", - "return_type": "AABB", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 239217291, - "arguments": [ - { - "name": "by", - "type": "float" - } - ] - }, - { - "name": "get_support", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2923479887, - "arguments": [ - { - "name": "direction", - "type": "Vector3" - } - ] - }, - { - "name": "get_longest_axis", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "get_longest_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_longest_axis_size", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_shortest_axis", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "get_shortest_axis_index", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_shortest_axis_size", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_endpoint", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1394941017, - "arguments": [ - { - "name": "idx", - "type": "int" - } - ] - }, - { - "name": "intersects_segment", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2048133369, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "intersects_ray", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2048133369, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "dir", - "type": "Vector3" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "AABB" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "position", - "type": "Vector3" - }, - { - "name": "size", - "type": "Vector3" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Basis", - "indexing_return_type": "Vector3", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "Vector3" - }, - { - "name": "y", - "type": "Vector3" - }, - { - "name": "z", - "type": "Vector3" - } - ], - "constants": [ - { - "name": "IDENTITY", - "type": "Basis", - "value": "Basis(1, 0, 0, 0, 1, 0, 0, 0, 1)" - }, - { - "name": "FLIP_X", - "type": "Basis", - "value": "Basis(-1, 0, 0, 0, 1, 0, 0, 0, 1)" - }, - { - "name": "FLIP_Y", - "type": "Basis", - "value": "Basis(1, 0, 0, 0, -1, 0, 0, 0, 1)" - }, - { - "name": "FLIP_Z", - "type": "Basis", - "value": "Basis(1, 0, 0, 0, 1, 0, 0, 0, -1)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Basis" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Basis" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Basis" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Basis" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "==", - "right_type": "Basis", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Basis", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Basis", - "return_type": "Basis" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "inverse", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 594669093 - }, - { - "name": "transposed", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 594669093 - }, - { - "name": "orthonormalized", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 594669093 - }, - { - "name": "determinant", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "rotated", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1998708965, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "scaled", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3934786792, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "scaled_local", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3934786792, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_scale", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1776574132 - }, - { - "name": "get_euler", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1394941017, - "arguments": [ - { - "name": "order", - "type": "int", - "default_value": "2" - } - ] - }, - { - "name": "tdotx", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "tdoty", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "tdotz", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1047977935, - "arguments": [ - { - "name": "with", - "type": "Vector3" - } - ] - }, - { - "name": "slerp", - "return_type": "Basis", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3118673011, - "arguments": [ - { - "name": "to", - "type": "Basis" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "is_conformal", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3165333982, - "arguments": [ - { - "name": "b", - "type": "Basis" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_orthonormal", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_rotation_quaternion", - "return_type": "Quaternion", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4274879941 - }, - { - "name": "looking_at", - "return_type": "Basis", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3728732505, - "arguments": [ - { - "name": "target", - "type": "Vector3" - }, - { - "name": "up", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - }, - { - "name": "use_model_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "from_scale", - "return_type": "Basis", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3703240166, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "from_euler", - "return_type": "Basis", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2802321791, - "arguments": [ - { - "name": "euler", - "type": "Vector3" - }, - { - "name": "order", - "type": "int", - "default_value": "2" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Basis" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Quaternion" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "x_axis", - "type": "Vector3" - }, - { - "name": "y_axis", - "type": "Vector3" - }, - { - "name": "z_axis", - "type": "Vector3" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Transform3D", - "is_keyed": false, - "members": [ - { - "name": "basis", - "type": "Basis" - }, - { - "name": "origin", - "type": "Vector3" - } - ], - "constants": [ - { - "name": "IDENTITY", - "type": "Transform3D", - "value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "FLIP_X", - "type": "Transform3D", - "value": "Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "FLIP_Y", - "type": "Transform3D", - "value": "Transform3D(1, 0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "FLIP_Z", - "type": "Transform3D", - "value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Transform3D" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Transform3D" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Transform3D" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Transform3D" - }, - { - "name": "*", - "right_type": "Vector3", - "return_type": "Vector3" - }, - { - "name": "*", - "right_type": "Plane", - "return_type": "Plane" - }, - { - "name": "*", - "right_type": "AABB", - "return_type": "AABB" - }, - { - "name": "==", - "right_type": "Transform3D", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Transform3D", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform3D", - "return_type": "Transform3D" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "PackedVector3Array", - "return_type": "PackedVector3Array" - } - ], - "methods": [ - { - "name": "inverse", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3816817146 - }, - { - "name": "affine_inverse", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3816817146 - }, - { - "name": "orthonormalized", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3816817146 - }, - { - "name": "rotated", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1563203923, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "rotated_local", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1563203923, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float" - } - ] - }, - { - "name": "scaled", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1405596198, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "scaled_local", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1405596198, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "translated", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1405596198, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "translated_local", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1405596198, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "looking_at", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 90889270, - "arguments": [ - { - "name": "target", - "type": "Vector3" - }, - { - "name": "up", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - }, - { - "name": "use_model_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "interpolate_with", - "return_type": "Transform3D", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1786453358, - "arguments": [ - { - "name": "xform", - "type": "Transform3D" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 696001652, - "arguments": [ - { - "name": "xform", - "type": "Transform3D" - } - ] - }, - { - "name": "is_finite", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Transform3D" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "basis", - "type": "Basis" - }, - { - "name": "origin", - "type": "Vector3" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x_axis", - "type": "Vector3" - }, - { - "name": "y_axis", - "type": "Vector3" - }, - { - "name": "z_axis", - "type": "Vector3" - }, - { - "name": "origin", - "type": "Vector3" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "from", - "type": "Projection" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Projection", - "indexing_return_type": "Vector4", - "is_keyed": false, - "members": [ - { - "name": "x", - "type": "Vector4" - }, - { - "name": "y", - "type": "Vector4" - }, - { - "name": "z", - "type": "Vector4" - }, - { - "name": "w", - "type": "Vector4" - } - ], - "constants": [ - { - "name": "IDENTITY", - "type": "Projection", - "value": "Projection(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)" - }, - { - "name": "ZERO", - "type": "Projection", - "value": "Projection(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)" - } - ], - "enums": [ - { - "name": "Planes", - "values": [ - { - "name": "PLANE_NEAR", - "value": 0 - }, - { - "name": "PLANE_FAR", - "value": 1 - }, - { - "name": "PLANE_LEFT", - "value": 2 - }, - { - "name": "PLANE_TOP", - "value": 3 - }, - { - "name": "PLANE_RIGHT", - "value": 4 - }, - { - "name": "PLANE_BOTTOM", - "value": 5 - } - ] - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Vector4", - "return_type": "Vector4" - }, - { - "name": "==", - "right_type": "Projection", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Projection", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Projection", - "return_type": "Projection" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "create_depth_correction", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1228516048, - "arguments": [ - { - "name": "flip_y", - "type": "bool" - } - ] - }, - { - "name": "create_light_atlas_rect", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2654950662, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "create_perspective", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 390915442, - "arguments": [ - { - "name": "fovy", - "type": "float" - }, - { - "name": "aspect", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - }, - { - "name": "flip_fov", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_perspective_hmd", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2857674800, - "arguments": [ - { - "name": "fovy", - "type": "float" - }, - { - "name": "aspect", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - }, - { - "name": "flip_fov", - "type": "bool" - }, - { - "name": "eye", - "type": "int" - }, - { - "name": "intraocular_dist", - "type": "float" - }, - { - "name": "convergence_dist", - "type": "float" - } - ] - }, - { - "name": "create_for_hmd", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 4184144994, - "arguments": [ - { - "name": "eye", - "type": "int" - }, - { - "name": "aspect", - "type": "float" - }, - { - "name": "intraocular_dist", - "type": "float" - }, - { - "name": "display_width", - "type": "float" - }, - { - "name": "display_to_lens", - "type": "float" - }, - { - "name": "oversample", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - } - ] - }, - { - "name": "create_orthogonal", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3707929169, - "arguments": [ - { - "name": "left", - "type": "float" - }, - { - "name": "right", - "type": "float" - }, - { - "name": "bottom", - "type": "float" - }, - { - "name": "top", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - } - ] - }, - { - "name": "create_orthogonal_aspect", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 390915442, - "arguments": [ - { - "name": "size", - "type": "float" - }, - { - "name": "aspect", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - }, - { - "name": "flip_fov", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_frustum", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3707929169, - "arguments": [ - { - "name": "left", - "type": "float" - }, - { - "name": "right", - "type": "float" - }, - { - "name": "bottom", - "type": "float" - }, - { - "name": "top", - "type": "float" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - } - ] - }, - { - "name": "create_frustum_aspect", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1535076251, - "arguments": [ - { - "name": "size", - "type": "float" - }, - { - "name": "aspect", - "type": "float" - }, - { - "name": "offset", - "type": "Vector2" - }, - { - "name": "z_near", - "type": "float" - }, - { - "name": "z_far", - "type": "float" - }, - { - "name": "flip_fov", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_fit_aabb", - "return_type": "Projection", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2264694907, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "determinant", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "perspective_znear_adjusted", - "return_type": "Projection", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3584785443, - "arguments": [ - { - "name": "new_znear", - "type": "float" - } - ] - }, - { - "name": "get_projection_plane", - "return_type": "Plane", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1551184160, - "arguments": [ - { - "name": "plane", - "type": "int" - } - ] - }, - { - "name": "flipped_y", - "return_type": "Projection", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4212530932 - }, - { - "name": "jitter_offseted", - "return_type": "Projection", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2448438599, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_fovy", - "return_type": "float", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3514207532, - "arguments": [ - { - "name": "fovx", - "type": "float" - }, - { - "name": "aspect", - "type": "float" - } - ] - }, - { - "name": "get_z_far", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_z_near", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_aspect", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "get_fov", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "is_orthogonal", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_viewport_half_extents", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "get_far_plane_half_extents", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2428350749 - }, - { - "name": "inverse", - "return_type": "Projection", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4212530932 - }, - { - "name": "get_pixels_per_meter", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "for_pixel_width", - "type": "int" - } - ] - }, - { - "name": "get_lod_multiplier", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Projection" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Transform3D" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "x_axis", - "type": "Vector4" - }, - { - "name": "y_axis", - "type": "Vector4" - }, - { - "name": "z_axis", - "type": "Vector4" - }, - { - "name": "w_axis", - "type": "Vector4" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Color", - "indexing_return_type": "float", - "is_keyed": false, - "members": [ - { - "name": "r", - "type": "float" - }, - { - "name": "g", - "type": "float" - }, - { - "name": "b", - "type": "float" - }, - { - "name": "a", - "type": "float" - }, - { - "name": "r8", - "type": "int" - }, - { - "name": "g8", - "type": "int" - }, - { - "name": "b8", - "type": "int" - }, - { - "name": "a8", - "type": "int" - }, - { - "name": "h", - "type": "float" - }, - { - "name": "s", - "type": "float" - }, - { - "name": "v", - "type": "float" - }, - { - "name": "ok_hsl_h", - "type": "float" - }, - { - "name": "ok_hsl_s", - "type": "float" - }, - { - "name": "ok_hsl_l", - "type": "float" - } - ], - "constants": [ - { - "name": "ALICE_BLUE", - "type": "Color", - "value": "Color(0.9411765, 0.972549, 1, 1)" - }, - { - "name": "ANTIQUE_WHITE", - "type": "Color", - "value": "Color(0.98039216, 0.92156863, 0.84313726, 1)" - }, - { - "name": "AQUA", - "type": "Color", - "value": "Color(0, 1, 1, 1)" - }, - { - "name": "AQUAMARINE", - "type": "Color", - "value": "Color(0.49803922, 1, 0.83137256, 1)" - }, - { - "name": "AZURE", - "type": "Color", - "value": "Color(0.9411765, 1, 1, 1)" - }, - { - "name": "BEIGE", - "type": "Color", - "value": "Color(0.9607843, 0.9607843, 0.8627451, 1)" - }, - { - "name": "BISQUE", - "type": "Color", - "value": "Color(1, 0.89411765, 0.76862746, 1)" - }, - { - "name": "BLACK", - "type": "Color", - "value": "Color(0, 0, 0, 1)" - }, - { - "name": "BLANCHED_ALMOND", - "type": "Color", - "value": "Color(1, 0.92156863, 0.8039216, 1)" - }, - { - "name": "BLUE", - "type": "Color", - "value": "Color(0, 0, 1, 1)" - }, - { - "name": "BLUE_VIOLET", - "type": "Color", - "value": "Color(0.5411765, 0.16862746, 0.8862745, 1)" - }, - { - "name": "BROWN", - "type": "Color", - "value": "Color(0.64705884, 0.16470589, 0.16470589, 1)" - }, - { - "name": "BURLYWOOD", - "type": "Color", - "value": "Color(0.87058824, 0.72156864, 0.5294118, 1)" - }, - { - "name": "CADET_BLUE", - "type": "Color", - "value": "Color(0.37254903, 0.61960787, 0.627451, 1)" - }, - { - "name": "CHARTREUSE", - "type": "Color", - "value": "Color(0.49803922, 1, 0, 1)" - }, - { - "name": "CHOCOLATE", - "type": "Color", - "value": "Color(0.8235294, 0.4117647, 0.11764706, 1)" - }, - { - "name": "CORAL", - "type": "Color", - "value": "Color(1, 0.49803922, 0.3137255, 1)" - }, - { - "name": "CORNFLOWER_BLUE", - "type": "Color", - "value": "Color(0.39215687, 0.58431375, 0.92941177, 1)" - }, - { - "name": "CORNSILK", - "type": "Color", - "value": "Color(1, 0.972549, 0.8627451, 1)" - }, - { - "name": "CRIMSON", - "type": "Color", - "value": "Color(0.8627451, 0.078431375, 0.23529412, 1)" - }, - { - "name": "CYAN", - "type": "Color", - "value": "Color(0, 1, 1, 1)" - }, - { - "name": "DARK_BLUE", - "type": "Color", - "value": "Color(0, 0, 0.54509807, 1)" - }, - { - "name": "DARK_CYAN", - "type": "Color", - "value": "Color(0, 0.54509807, 0.54509807, 1)" - }, - { - "name": "DARK_GOLDENROD", - "type": "Color", - "value": "Color(0.72156864, 0.5254902, 0.043137256, 1)" - }, - { - "name": "DARK_GRAY", - "type": "Color", - "value": "Color(0.6627451, 0.6627451, 0.6627451, 1)" - }, - { - "name": "DARK_GREEN", - "type": "Color", - "value": "Color(0, 0.39215687, 0, 1)" - }, - { - "name": "DARK_KHAKI", - "type": "Color", - "value": "Color(0.7411765, 0.7176471, 0.41960785, 1)" - }, - { - "name": "DARK_MAGENTA", - "type": "Color", - "value": "Color(0.54509807, 0, 0.54509807, 1)" - }, - { - "name": "DARK_OLIVE_GREEN", - "type": "Color", - "value": "Color(0.33333334, 0.41960785, 0.18431373, 1)" - }, - { - "name": "DARK_ORANGE", - "type": "Color", - "value": "Color(1, 0.54901963, 0, 1)" - }, - { - "name": "DARK_ORCHID", - "type": "Color", - "value": "Color(0.6, 0.19607843, 0.8, 1)" - }, - { - "name": "DARK_RED", - "type": "Color", - "value": "Color(0.54509807, 0, 0, 1)" - }, - { - "name": "DARK_SALMON", - "type": "Color", - "value": "Color(0.9137255, 0.5882353, 0.47843137, 1)" - }, - { - "name": "DARK_SEA_GREEN", - "type": "Color", - "value": "Color(0.56078434, 0.7372549, 0.56078434, 1)" - }, - { - "name": "DARK_SLATE_BLUE", - "type": "Color", - "value": "Color(0.28235295, 0.23921569, 0.54509807, 1)" - }, - { - "name": "DARK_SLATE_GRAY", - "type": "Color", - "value": "Color(0.18431373, 0.30980393, 0.30980393, 1)" - }, - { - "name": "DARK_TURQUOISE", - "type": "Color", - "value": "Color(0, 0.80784315, 0.81960785, 1)" - }, - { - "name": "DARK_VIOLET", - "type": "Color", - "value": "Color(0.5803922, 0, 0.827451, 1)" - }, - { - "name": "DEEP_PINK", - "type": "Color", - "value": "Color(1, 0.078431375, 0.5764706, 1)" - }, - { - "name": "DEEP_SKY_BLUE", - "type": "Color", - "value": "Color(0, 0.7490196, 1, 1)" - }, - { - "name": "DIM_GRAY", - "type": "Color", - "value": "Color(0.4117647, 0.4117647, 0.4117647, 1)" - }, - { - "name": "DODGER_BLUE", - "type": "Color", - "value": "Color(0.11764706, 0.5647059, 1, 1)" - }, - { - "name": "FIREBRICK", - "type": "Color", - "value": "Color(0.69803923, 0.13333334, 0.13333334, 1)" - }, - { - "name": "FLORAL_WHITE", - "type": "Color", - "value": "Color(1, 0.98039216, 0.9411765, 1)" - }, - { - "name": "FOREST_GREEN", - "type": "Color", - "value": "Color(0.13333334, 0.54509807, 0.13333334, 1)" - }, - { - "name": "FUCHSIA", - "type": "Color", - "value": "Color(1, 0, 1, 1)" - }, - { - "name": "GAINSBORO", - "type": "Color", - "value": "Color(0.8627451, 0.8627451, 0.8627451, 1)" - }, - { - "name": "GHOST_WHITE", - "type": "Color", - "value": "Color(0.972549, 0.972549, 1, 1)" - }, - { - "name": "GOLD", - "type": "Color", - "value": "Color(1, 0.84313726, 0, 1)" - }, - { - "name": "GOLDENROD", - "type": "Color", - "value": "Color(0.85490197, 0.64705884, 0.1254902, 1)" - }, - { - "name": "GRAY", - "type": "Color", - "value": "Color(0.74509805, 0.74509805, 0.74509805, 1)" - }, - { - "name": "GREEN", - "type": "Color", - "value": "Color(0, 1, 0, 1)" - }, - { - "name": "GREEN_YELLOW", - "type": "Color", - "value": "Color(0.6784314, 1, 0.18431373, 1)" - }, - { - "name": "HONEYDEW", - "type": "Color", - "value": "Color(0.9411765, 1, 0.9411765, 1)" - }, - { - "name": "HOT_PINK", - "type": "Color", - "value": "Color(1, 0.4117647, 0.7058824, 1)" - }, - { - "name": "INDIAN_RED", - "type": "Color", - "value": "Color(0.8039216, 0.36078432, 0.36078432, 1)" - }, - { - "name": "INDIGO", - "type": "Color", - "value": "Color(0.29411766, 0, 0.50980395, 1)" - }, - { - "name": "IVORY", - "type": "Color", - "value": "Color(1, 1, 0.9411765, 1)" - }, - { - "name": "KHAKI", - "type": "Color", - "value": "Color(0.9411765, 0.9019608, 0.54901963, 1)" - }, - { - "name": "LAVENDER", - "type": "Color", - "value": "Color(0.9019608, 0.9019608, 0.98039216, 1)" - }, - { - "name": "LAVENDER_BLUSH", - "type": "Color", - "value": "Color(1, 0.9411765, 0.9607843, 1)" - }, - { - "name": "LAWN_GREEN", - "type": "Color", - "value": "Color(0.4862745, 0.9882353, 0, 1)" - }, - { - "name": "LEMON_CHIFFON", - "type": "Color", - "value": "Color(1, 0.98039216, 0.8039216, 1)" - }, - { - "name": "LIGHT_BLUE", - "type": "Color", - "value": "Color(0.6784314, 0.84705883, 0.9019608, 1)" - }, - { - "name": "LIGHT_CORAL", - "type": "Color", - "value": "Color(0.9411765, 0.5019608, 0.5019608, 1)" - }, - { - "name": "LIGHT_CYAN", - "type": "Color", - "value": "Color(0.8784314, 1, 1, 1)" - }, - { - "name": "LIGHT_GOLDENROD", - "type": "Color", - "value": "Color(0.98039216, 0.98039216, 0.8235294, 1)" - }, - { - "name": "LIGHT_GRAY", - "type": "Color", - "value": "Color(0.827451, 0.827451, 0.827451, 1)" - }, - { - "name": "LIGHT_GREEN", - "type": "Color", - "value": "Color(0.5647059, 0.93333334, 0.5647059, 1)" - }, - { - "name": "LIGHT_PINK", - "type": "Color", - "value": "Color(1, 0.7137255, 0.75686276, 1)" - }, - { - "name": "LIGHT_SALMON", - "type": "Color", - "value": "Color(1, 0.627451, 0.47843137, 1)" - }, - { - "name": "LIGHT_SEA_GREEN", - "type": "Color", - "value": "Color(0.1254902, 0.69803923, 0.6666667, 1)" - }, - { - "name": "LIGHT_SKY_BLUE", - "type": "Color", - "value": "Color(0.5294118, 0.80784315, 0.98039216, 1)" - }, - { - "name": "LIGHT_SLATE_GRAY", - "type": "Color", - "value": "Color(0.46666667, 0.53333336, 0.6, 1)" - }, - { - "name": "LIGHT_STEEL_BLUE", - "type": "Color", - "value": "Color(0.6901961, 0.76862746, 0.87058824, 1)" - }, - { - "name": "LIGHT_YELLOW", - "type": "Color", - "value": "Color(1, 1, 0.8784314, 1)" - }, - { - "name": "LIME", - "type": "Color", - "value": "Color(0, 1, 0, 1)" - }, - { - "name": "LIME_GREEN", - "type": "Color", - "value": "Color(0.19607843, 0.8039216, 0.19607843, 1)" - }, - { - "name": "LINEN", - "type": "Color", - "value": "Color(0.98039216, 0.9411765, 0.9019608, 1)" - }, - { - "name": "MAGENTA", - "type": "Color", - "value": "Color(1, 0, 1, 1)" - }, - { - "name": "MAROON", - "type": "Color", - "value": "Color(0.6901961, 0.1882353, 0.3764706, 1)" - }, - { - "name": "MEDIUM_AQUAMARINE", - "type": "Color", - "value": "Color(0.4, 0.8039216, 0.6666667, 1)" - }, - { - "name": "MEDIUM_BLUE", - "type": "Color", - "value": "Color(0, 0, 0.8039216, 1)" - }, - { - "name": "MEDIUM_ORCHID", - "type": "Color", - "value": "Color(0.7294118, 0.33333334, 0.827451, 1)" - }, - { - "name": "MEDIUM_PURPLE", - "type": "Color", - "value": "Color(0.5764706, 0.4392157, 0.85882354, 1)" - }, - { - "name": "MEDIUM_SEA_GREEN", - "type": "Color", - "value": "Color(0.23529412, 0.7019608, 0.44313726, 1)" - }, - { - "name": "MEDIUM_SLATE_BLUE", - "type": "Color", - "value": "Color(0.48235294, 0.40784314, 0.93333334, 1)" - }, - { - "name": "MEDIUM_SPRING_GREEN", - "type": "Color", - "value": "Color(0, 0.98039216, 0.6039216, 1)" - }, - { - "name": "MEDIUM_TURQUOISE", - "type": "Color", - "value": "Color(0.28235295, 0.81960785, 0.8, 1)" - }, - { - "name": "MEDIUM_VIOLET_RED", - "type": "Color", - "value": "Color(0.78039217, 0.08235294, 0.52156866, 1)" - }, - { - "name": "MIDNIGHT_BLUE", - "type": "Color", - "value": "Color(0.09803922, 0.09803922, 0.4392157, 1)" - }, - { - "name": "MINT_CREAM", - "type": "Color", - "value": "Color(0.9607843, 1, 0.98039216, 1)" - }, - { - "name": "MISTY_ROSE", - "type": "Color", - "value": "Color(1, 0.89411765, 0.88235295, 1)" - }, - { - "name": "MOCCASIN", - "type": "Color", - "value": "Color(1, 0.89411765, 0.70980394, 1)" - }, - { - "name": "NAVAJO_WHITE", - "type": "Color", - "value": "Color(1, 0.87058824, 0.6784314, 1)" - }, - { - "name": "NAVY_BLUE", - "type": "Color", - "value": "Color(0, 0, 0.5019608, 1)" - }, - { - "name": "OLD_LACE", - "type": "Color", - "value": "Color(0.99215686, 0.9607843, 0.9019608, 1)" - }, - { - "name": "OLIVE", - "type": "Color", - "value": "Color(0.5019608, 0.5019608, 0, 1)" - }, - { - "name": "OLIVE_DRAB", - "type": "Color", - "value": "Color(0.41960785, 0.5568628, 0.13725491, 1)" - }, - { - "name": "ORANGE", - "type": "Color", - "value": "Color(1, 0.64705884, 0, 1)" - }, - { - "name": "ORANGE_RED", - "type": "Color", - "value": "Color(1, 0.27058825, 0, 1)" - }, - { - "name": "ORCHID", - "type": "Color", - "value": "Color(0.85490197, 0.4392157, 0.8392157, 1)" - }, - { - "name": "PALE_GOLDENROD", - "type": "Color", - "value": "Color(0.93333334, 0.9098039, 0.6666667, 1)" - }, - { - "name": "PALE_GREEN", - "type": "Color", - "value": "Color(0.59607846, 0.9843137, 0.59607846, 1)" - }, - { - "name": "PALE_TURQUOISE", - "type": "Color", - "value": "Color(0.6862745, 0.93333334, 0.93333334, 1)" - }, - { - "name": "PALE_VIOLET_RED", - "type": "Color", - "value": "Color(0.85882354, 0.4392157, 0.5764706, 1)" - }, - { - "name": "PAPAYA_WHIP", - "type": "Color", - "value": "Color(1, 0.9372549, 0.8352941, 1)" - }, - { - "name": "PEACH_PUFF", - "type": "Color", - "value": "Color(1, 0.85490197, 0.7254902, 1)" - }, - { - "name": "PERU", - "type": "Color", - "value": "Color(0.8039216, 0.52156866, 0.24705882, 1)" - }, - { - "name": "PINK", - "type": "Color", - "value": "Color(1, 0.7529412, 0.79607844, 1)" - }, - { - "name": "PLUM", - "type": "Color", - "value": "Color(0.8666667, 0.627451, 0.8666667, 1)" - }, - { - "name": "POWDER_BLUE", - "type": "Color", - "value": "Color(0.6901961, 0.8784314, 0.9019608, 1)" - }, - { - "name": "PURPLE", - "type": "Color", - "value": "Color(0.627451, 0.1254902, 0.9411765, 1)" - }, - { - "name": "REBECCA_PURPLE", - "type": "Color", - "value": "Color(0.4, 0.2, 0.6, 1)" - }, - { - "name": "RED", - "type": "Color", - "value": "Color(1, 0, 0, 1)" - }, - { - "name": "ROSY_BROWN", - "type": "Color", - "value": "Color(0.7372549, 0.56078434, 0.56078434, 1)" - }, - { - "name": "ROYAL_BLUE", - "type": "Color", - "value": "Color(0.25490198, 0.4117647, 0.88235295, 1)" - }, - { - "name": "SADDLE_BROWN", - "type": "Color", - "value": "Color(0.54509807, 0.27058825, 0.07450981, 1)" - }, - { - "name": "SALMON", - "type": "Color", - "value": "Color(0.98039216, 0.5019608, 0.44705883, 1)" - }, - { - "name": "SANDY_BROWN", - "type": "Color", - "value": "Color(0.95686275, 0.6431373, 0.3764706, 1)" - }, - { - "name": "SEA_GREEN", - "type": "Color", - "value": "Color(0.18039216, 0.54509807, 0.34117648, 1)" - }, - { - "name": "SEASHELL", - "type": "Color", - "value": "Color(1, 0.9607843, 0.93333334, 1)" - }, - { - "name": "SIENNA", - "type": "Color", - "value": "Color(0.627451, 0.32156864, 0.1764706, 1)" - }, - { - "name": "SILVER", - "type": "Color", - "value": "Color(0.7529412, 0.7529412, 0.7529412, 1)" - }, - { - "name": "SKY_BLUE", - "type": "Color", - "value": "Color(0.5294118, 0.80784315, 0.92156863, 1)" - }, - { - "name": "SLATE_BLUE", - "type": "Color", - "value": "Color(0.41568628, 0.3529412, 0.8039216, 1)" - }, - { - "name": "SLATE_GRAY", - "type": "Color", - "value": "Color(0.4392157, 0.5019608, 0.5647059, 1)" - }, - { - "name": "SNOW", - "type": "Color", - "value": "Color(1, 0.98039216, 0.98039216, 1)" - }, - { - "name": "SPRING_GREEN", - "type": "Color", - "value": "Color(0, 1, 0.49803922, 1)" - }, - { - "name": "STEEL_BLUE", - "type": "Color", - "value": "Color(0.27450982, 0.50980395, 0.7058824, 1)" - }, - { - "name": "TAN", - "type": "Color", - "value": "Color(0.8235294, 0.7058824, 0.54901963, 1)" - }, - { - "name": "TEAL", - "type": "Color", - "value": "Color(0, 0.5019608, 0.5019608, 1)" - }, - { - "name": "THISTLE", - "type": "Color", - "value": "Color(0.84705883, 0.7490196, 0.84705883, 1)" - }, - { - "name": "TOMATO", - "type": "Color", - "value": "Color(1, 0.3882353, 0.2784314, 1)" - }, - { - "name": "TRANSPARENT", - "type": "Color", - "value": "Color(1, 1, 1, 0)" - }, - { - "name": "TURQUOISE", - "type": "Color", - "value": "Color(0.2509804, 0.8784314, 0.8156863, 1)" - }, - { - "name": "VIOLET", - "type": "Color", - "value": "Color(0.93333334, 0.50980395, 0.93333334, 1)" - }, - { - "name": "WEB_GRAY", - "type": "Color", - "value": "Color(0.5019608, 0.5019608, 0.5019608, 1)" - }, - { - "name": "WEB_GREEN", - "type": "Color", - "value": "Color(0, 0.5019608, 0, 1)" - }, - { - "name": "WEB_MAROON", - "type": "Color", - "value": "Color(0.5019608, 0, 0, 1)" - }, - { - "name": "WEB_PURPLE", - "type": "Color", - "value": "Color(0.5019608, 0, 0.5019608, 1)" - }, - { - "name": "WHEAT", - "type": "Color", - "value": "Color(0.9607843, 0.87058824, 0.7019608, 1)" - }, - { - "name": "WHITE", - "type": "Color", - "value": "Color(1, 1, 1, 1)" - }, - { - "name": "WHITE_SMOKE", - "type": "Color", - "value": "Color(0.9607843, 0.9607843, 0.9607843, 1)" - }, - { - "name": "YELLOW", - "type": "Color", - "value": "Color(1, 1, 0, 1)" - }, - { - "name": "YELLOW_GREEN", - "type": "Color", - "value": "Color(0.6039216, 0.8039216, 0.19607843, 1)" - } - ], - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "unary-", - "return_type": "Color" - }, - { - "name": "unary+", - "return_type": "Color" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "int", - "return_type": "Color" - }, - { - "name": "/", - "right_type": "int", - "return_type": "Color" - }, - { - "name": "*", - "right_type": "float", - "return_type": "Color" - }, - { - "name": "/", - "right_type": "float", - "return_type": "Color" - }, - { - "name": "==", - "right_type": "Color", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Color", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "-", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "*", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "/", - "right_type": "Color", - "return_type": "Color" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "PackedColorArray", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "to_argb32", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_abgr32", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_rgba32", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_argb64", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_abgr64", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_rgba64", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_html", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3429816538, - "arguments": [ - { - "name": "with_alpha", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "clamp", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 105651410, - "arguments": [ - { - "name": "min", - "type": "Color", - "default_value": "Color(0, 0, 0, 0)" - }, - { - "name": "max", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "inverted", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3334027602 - }, - { - "name": "lerp", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 402949615, - "arguments": [ - { - "name": "to", - "type": "Color" - }, - { - "name": "weight", - "type": "float" - } - ] - }, - { - "name": "lightened", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1466039168, - "arguments": [ - { - "name": "amount", - "type": "float" - } - ] - }, - { - "name": "darkened", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1466039168, - "arguments": [ - { - "name": "amount", - "type": "float" - } - ] - }, - { - "name": "blend", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3803690977, - "arguments": [ - { - "name": "over", - "type": "Color" - } - ] - }, - { - "name": "get_luminance", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "srgb_to_linear", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3334027602 - }, - { - "name": "linear_to_srgb", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3334027602 - }, - { - "name": "is_equal_approx", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3167426256, - "arguments": [ - { - "name": "to", - "type": "Color" - } - ] - }, - { - "name": "hex", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 351421375, - "arguments": [ - { - "name": "hex", - "type": "int" - } - ] - }, - { - "name": "hex64", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 351421375, - "arguments": [ - { - "name": "hex", - "type": "int" - } - ] - }, - { - "name": "html", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2500054655, - "arguments": [ - { - "name": "rgba", - "type": "String" - } - ] - }, - { - "name": "html_is_valid", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 2942997125, - "arguments": [ - { - "name": "color", - "type": "String" - } - ] - }, - { - "name": "from_string", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3755044230, - "arguments": [ - { - "name": "str", - "type": "String" - }, - { - "name": "default", - "type": "Color" - } - ] - }, - { - "name": "from_hsv", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1573799446, - "arguments": [ - { - "name": "h", - "type": "float" - }, - { - "name": "s", - "type": "float" - }, - { - "name": "v", - "type": "float" - }, - { - "name": "alpha", - "type": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "from_ok_hsl", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1573799446, - "arguments": [ - { - "name": "h", - "type": "float" - }, - { - "name": "s", - "type": "float" - }, - { - "name": "l", - "type": "float" - }, - { - "name": "alpha", - "type": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "from_rgbe9995", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 351421375, - "arguments": [ - { - "name": "rgbe", - "type": "int" - } - ] - }, - { - "name": "from_rgba8", - "return_type": "Color", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 3072934735, - "arguments": [ - { - "name": "r8", - "type": "int" - }, - { - "name": "g8", - "type": "int" - }, - { - "name": "b8", - "type": "int" - }, - { - "name": "a8", - "type": "int", - "default_value": "255" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Color" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Color" - }, - { - "name": "alpha", - "type": "float" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "r", - "type": "float" - }, - { - "name": "g", - "type": "float" - }, - { - "name": "b", - "type": "float" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "r", - "type": "float" - }, - { - "name": "g", - "type": "float" - }, - { - "name": "b", - "type": "float" - }, - { - "name": "a", - "type": "float" - } - ] - }, - { - "index": 5, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "index": 6, - "arguments": [ - { - "name": "code", - "type": "String" - }, - { - "name": "alpha", - "type": "float" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "StringName", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Variant", - "return_type": "String" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "bool", - "return_type": "String" - }, - { - "name": "%", - "right_type": "int", - "return_type": "String" - }, - { - "name": "%", - "right_type": "float", - "return_type": "String" - }, - { - "name": "==", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "String", - "return_type": "String" - }, - { - "name": "%", - "right_type": "String", - "return_type": "String" - }, - { - "name": "in", - "right_type": "String", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Vector2", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector2i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Rect2", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Rect2i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector3", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector3i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Transform2D", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector4", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Vector4i", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Plane", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Quaternion", - "return_type": "String" - }, - { - "name": "%", - "right_type": "AABB", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Basis", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Transform3D", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Projection", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Color", - "return_type": "String" - }, - { - "name": "==", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "StringName", - "return_type": "String" - }, - { - "name": "%", - "right_type": "StringName", - "return_type": "String" - }, - { - "name": "in", - "right_type": "StringName", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "NodePath", - "return_type": "String" - }, - { - "name": "%", - "right_type": "RID", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Object", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Object", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Callable", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Signal", - "return_type": "String" - }, - { - "name": "%", - "right_type": "Dictionary", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "Array", - "return_type": "String" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "PackedByteArray", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedInt32Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedInt64Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedFloat32Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedFloat64Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedStringArray", - "return_type": "String" - }, - { - "name": "in", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "%", - "right_type": "PackedVector2Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedVector3Array", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedColorArray", - "return_type": "String" - }, - { - "name": "%", - "right_type": "PackedVector4Array", - "return_type": "String" - } - ], - "methods": [ - { - "name": "casecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "nocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "naturalcasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "naturalnocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "filecasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "filenocasecmp_to", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "length", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "substr", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "from", - "type": "int" - }, - { - "name": "len", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "get_slice", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3535100402, - "arguments": [ - { - "name": "delimiter", - "type": "String" - }, - { - "name": "slice", - "type": "int" - } - ] - }, - { - "name": "get_slicec", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "delimiter", - "type": "int" - }, - { - "name": "slice", - "type": "int" - } - ] - }, - { - "name": "get_slice_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "delimiter", - "type": "String" - } - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "findn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2343087891, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "countn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2343087891, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "rfindn", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "match", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "expr", - "type": "String" - } - ] - }, - { - "name": "matchn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "expr", - "type": "String" - } - ] - }, - { - "name": "begins_with", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "ends_with", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "is_subsequence_of", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "is_subsequence_ofn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "bigrams", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 747180633 - }, - { - "name": "similarity", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2697460964, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "format", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3212199029, - "arguments": [ - { - "name": "values", - "type": "Variant" - }, - { - "name": "placeholder", - "type": "String", - "default_value": "\"{_}\"" - } - ] - }, - { - "name": "replace", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1340436205, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "forwhat", - "type": "String" - } - ] - }, - { - "name": "replacen", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1340436205, - "arguments": [ - { - "name": "what", - "type": "String" - }, - { - "name": "forwhat", - "type": "String" - } - ] - }, - { - "name": "replace_char", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "key", - "type": "int" - }, - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "replace_chars", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3535100402, - "arguments": [ - { - "name": "keys", - "type": "String" - }, - { - "name": "with", - "type": "int" - } - ] - }, - { - "name": "remove_char", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "what", - "type": "int" - } - ] - }, - { - "name": "remove_chars", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "repeat", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "count", - "type": "int" - } - ] - }, - { - "name": "reverse", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "insert", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "position", - "type": "int" - }, - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "erase", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 787537301, - "arguments": [ - { - "name": "position", - "type": "int" - }, - { - "name": "chars", - "type": "int", - "default_value": "1" - } - ] - }, - { - "name": "capitalize", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_camel_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_pascal_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_snake_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_kebab_case", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "split", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1252735785, - "arguments": [ - { - "name": "delimiter", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - }, - { - "name": "maxsplit", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rsplit", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1252735785, - "arguments": [ - { - "name": "delimiter", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - }, - { - "name": "maxsplit", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "split_floats", - "return_type": "PackedFloat64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2092079095, - "arguments": [ - { - "name": "delimiter", - "type": "String" - }, - { - "name": "allow_empty", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "join", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3595973238, - "arguments": [ - { - "name": "parts", - "type": "PackedStringArray" - } - ] - }, - { - "name": "to_upper", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "to_lower", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "left", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "length", - "type": "int" - } - ] - }, - { - "name": "right", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "length", - "type": "int" - } - ] - }, - { - "name": "strip_edges", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 907855311, - "arguments": [ - { - "name": "left", - "type": "bool", - "default_value": "true" - }, - { - "name": "right", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "strip_escapes", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "lstrip", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "rstrip", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "chars", - "type": "String" - } - ] - }, - { - "name": "get_extension", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_basename", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "path_join", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "unicode_at", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "at", - "type": "int" - } - ] - }, - { - "name": "indent", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "dedent", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "md5_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "sha1_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "sha256_text", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "md5_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sha1_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sha256_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "contains", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "containsn", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "is_absolute_path", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_relative_path", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "simplify_path", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_base_dir", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_file", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "xml_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3429816538, - "arguments": [ - { - "name": "escape_quotes", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "xml_unescape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_encode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_decode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "uri_file_decode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "c_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "c_unescape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "json_escape", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "validate_node_name", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "validate_filename", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "is_valid_ascii_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_unicode_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_identifier", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_int", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_float", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_hex_number", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 593672999, - "arguments": [ - { - "name": "with_prefix", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_valid_html_color", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_ip_address", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid_filename", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "to_float", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 466405837 - }, - { - "name": "hex_to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "bin_to_int", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "lpad", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "min_length", - "type": "int" - }, - { - "name": "character", - "type": "String", - "default_value": "\" \"" - } - ] - }, - { - "name": "rpad", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 248737229, - "arguments": [ - { - "name": "min_length", - "type": "int" - }, - { - "name": "character", - "type": "String", - "default_value": "\" \"" - } - ] - }, - { - "name": "pad_decimals", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "digits", - "type": "int" - } - ] - }, - { - "name": "pad_zeros", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "digits", - "type": "int" - } - ] - }, - { - "name": "trim_prefix", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "trim_suffix", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "suffix", - "type": "String" - } - ] - }, - { - "name": "to_ascii_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf8_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf16_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_utf32_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_wchar_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "to_multibyte_char_buffer", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3055765187, - "arguments": [ - { - "name": "encoding", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "hex_decode", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "StringName" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "String" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "NodePath", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "NodePath", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "NodePath", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "is_absolute", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_name_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_name", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2948586938, - "arguments": [ - { - "name": "idx", - "type": "int" - } - ] - }, - { - "name": "get_subname_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_subname", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2948586938, - "arguments": [ - { - "name": "idx", - "type": "int" - } - ] - }, - { - "name": "get_concatenated_names", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "get_concatenated_subnames", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "slice", - "return_type": "NodePath", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 421628484, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "get_as_property_path", - "return_type": "NodePath", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1598598043 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "NodePath" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "String" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "RID", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "RID", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "is_valid", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_id", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "RID" - } - ] - } - ], - "has_destructor": false - }, - { - "name": "Callable", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Callable", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Callable", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "create", - "return_type": "Callable", - "is_vararg": false, - "is_const": false, - "is_static": true, - "hash": 1709381114, - "arguments": [ - { - "name": "variant", - "type": "Variant" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "callv", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 413578926, - "arguments": [ - { - "name": "arguments", - "type": "Array" - } - ] - }, - { - "name": "is_null", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_custom", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_standard", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_valid", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_object", - "return_type": "Object", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4008621732 - }, - { - "name": "get_object_id", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_method", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "get_argument_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_bound_arguments_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_bound_arguments", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4144163970 - }, - { - "name": "get_unbound_arguments_count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "bindv", - "return_type": "Callable", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3564560322, - "arguments": [ - { - "name": "arguments", - "type": "Array" - } - ] - }, - { - "name": "unbind", - "return_type": "Callable", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 755001590, - "arguments": [ - { - "name": "argcount", - "type": "int" - } - ] - }, - { - "name": "call", - "return_type": "Variant", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 3643564216 - }, - { - "name": "call_deferred", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 3286317445 - }, - { - "name": "rpc", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 3286317445 - }, - { - "name": "rpc_id", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 2270047679, - "arguments": [ - { - "name": "peer_id", - "type": "int" - } - ] - }, - { - "name": "bind", - "return_type": "Callable", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 3224143119 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Callable" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "method", - "type": "StringName" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "Signal", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Signal", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Signal", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "is_null", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "get_object", - "return_type": "Object", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4008621732 - }, - { - "name": "get_object_id", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_name", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "connect", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 979702392, - "arguments": [ - { - "name": "callable", - "type": "Callable" - }, - { - "name": "flags", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "disconnect", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3470848906, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "is_connected", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4129521963, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "get_connections", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4144163970 - }, - { - "name": "has_connections", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "emit", - "is_vararg": true, - "is_const": true, - "is_static": false, - "hash": 3286317445 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Signal" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "signal", - "type": "StringName" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "Dictionary", - "indexing_return_type": "Variant", - "is_keyed": true, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "assign", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3642266950, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "merge", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2079548978, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - }, - { - "name": "overwrite", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "merged", - "return_type": "Dictionary", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2271165639, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - }, - { - "name": "overwrite", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3680194679, - "arguments": [ - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "has_all", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2988181878, - "arguments": [ - { - "name": "keys", - "type": "Array" - } - ] - }, - { - "name": "find_key", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1988825835, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1776646889, - "arguments": [ - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "keys", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4144163970 - }, - { - "name": "values", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4144163970 - }, - { - "name": "duplicate", - "return_type": "Dictionary", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 830099069, - "arguments": [ - { - "name": "deep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "duplicate_deep", - "return_type": "Dictionary", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2160600714, - "arguments": [ - { - "name": "deep_subresources_mode", - "type": "int", - "default_value": "1" - } - ] - }, - { - "name": "get", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2205440559, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "default", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "get_or_add", - "return_type": "Variant", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1052551076, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "default", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "set", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2175348267, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "is_typed", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_typed_key", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_typed_value", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_same_typed", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3471775634, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "is_same_typed_key", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3471775634, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "is_same_typed_value", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3471775634, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "get_typed_key_builtin", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_typed_value_builtin", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_typed_key_class_name", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "get_typed_value_class_name", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "get_typed_key_script", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "get_typed_value_script", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "make_read_only", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "is_read_only", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "recursive_equal", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1404404751, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - }, - { - "name": "recursion_count", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Dictionary" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "base", - "type": "Dictionary" - }, - { - "name": "key_type", - "type": "int" - }, - { - "name": "key_class_name", - "type": "StringName" - }, - { - "name": "key_script", - "type": "Variant" - }, - { - "name": "value_type", - "type": "int" - }, - { - "name": "value_class_name", - "type": "StringName" - }, - { - "name": "value_script", - "type": "Variant" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "Array", - "indexing_return_type": "Variant", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "<", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "<=", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": ">", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": ">=", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "Array", - "return_type": "Array" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - } - ], - "methods": [ - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "hash", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "assign", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2307260970, - "arguments": [ - { - "name": "array", - "type": "Array" - } - ] - }, - { - "name": "get", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 708700221, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3798478031, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "push_back", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3316032543, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "push_front", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3316032543, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "append", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3316032543, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2307260970, - "arguments": [ - { - "name": "array", - "type": "Array" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "size", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3176316662, - "arguments": [ - { - "name": "position", - "type": "int" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "position", - "type": "int" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3316032543, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "erase", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3316032543, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "front", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "back", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "pick_random", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2336346817, - "arguments": [ - { - "name": "what", - "type": "Variant" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "find_custom", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2145562546, - "arguments": [ - { - "name": "method", - "type": "Callable" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2336346817, - "arguments": [ - { - "name": "what", - "type": "Variant" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "rfind_custom", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2145562546, - "arguments": [ - { - "name": "method", - "type": "Callable" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1481661226, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3680194679, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "pop_back", - "return_type": "Variant", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1321915136 - }, - { - "name": "pop_front", - "return_type": "Variant", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1321915136 - }, - { - "name": "pop_at", - "return_type": "Variant", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3518259424, - "arguments": [ - { - "name": "position", - "type": "int" - } - ] - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "sort_custom", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3470848906, - "arguments": [ - { - "name": "func", - "type": "Callable" - } - ] - }, - { - "name": "shuffle", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3372222236, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "bsearch_custom", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 161317131, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "func", - "type": "Callable" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "duplicate", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 636440122, - "arguments": [ - { - "name": "deep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "duplicate_deep", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1949240801, - "arguments": [ - { - "name": "deep_subresources_mode", - "type": "int", - "default_value": "1" - } - ] - }, - { - "name": "slice", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1393718243, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - }, - { - "name": "step", - "type": "int", - "default_value": "1" - }, - { - "name": "deep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "filter", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4075186556, - "arguments": [ - { - "name": "method", - "type": "Callable" - } - ] - }, - { - "name": "map", - "return_type": "Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4075186556, - "arguments": [ - { - "name": "method", - "type": "Callable" - } - ] - }, - { - "name": "reduce", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4272450342, - "arguments": [ - { - "name": "method", - "type": "Callable" - }, - { - "name": "accum", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "any", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4129521963, - "arguments": [ - { - "name": "method", - "type": "Callable" - } - ] - }, - { - "name": "all", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4129521963, - "arguments": [ - { - "name": "method", - "type": "Callable" - } - ] - }, - { - "name": "max", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "min", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "is_typed", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "is_same_typed", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2988181878, - "arguments": [ - { - "name": "array", - "type": "Array" - } - ] - }, - { - "name": "get_typed_builtin", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "get_typed_class_name", - "return_type": "StringName", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1825232092 - }, - { - "name": "get_typed_script", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1460142086 - }, - { - "name": "make_read_only", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "is_read_only", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "base", - "type": "Array" - }, - { - "name": "type", - "type": "int" - }, - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "script", - "type": "Variant" - } - ] - }, - { - "index": 3, - "arguments": [ - { - "name": "from", - "type": "PackedByteArray" - } - ] - }, - { - "index": 4, - "arguments": [ - { - "name": "from", - "type": "PackedInt32Array" - } - ] - }, - { - "index": 5, - "arguments": [ - { - "name": "from", - "type": "PackedInt64Array" - } - ] - }, - { - "index": 6, - "arguments": [ - { - "name": "from", - "type": "PackedFloat32Array" - } - ] - }, - { - "index": 7, - "arguments": [ - { - "name": "from", - "type": "PackedFloat64Array" - } - ] - }, - { - "index": 8, - "arguments": [ - { - "name": "from", - "type": "PackedStringArray" - } - ] - }, - { - "index": 9, - "arguments": [ - { - "name": "from", - "type": "PackedVector2Array" - } - ] - }, - { - "index": 10, - "arguments": [ - { - "name": "from", - "type": "PackedVector3Array" - } - ] - }, - { - "index": 11, - "arguments": [ - { - "name": "from", - "type": "PackedColorArray" - } - ] - }, - { - "index": 12, - "arguments": [ - { - "name": "from", - "type": "PackedVector4Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedByteArray", - "indexing_return_type": "int", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedByteArray", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedByteArray", - "return_type": "PackedByteArray" - } - ], - "methods": [ - { - "name": "get", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 791097111, - "arguments": [ - { - "name": "array", - "type": "PackedByteArray" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1487112728, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 931488181, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2278869132, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 954237325, - "hash_compatibility": [ - 3380005890 - ], - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236, - "hash_compatibility": [ - 851781288 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "get_string_from_ascii", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_string_from_utf8", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_string_from_utf16", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_string_from_utf32", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_string_from_wchar", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "get_string_from_multibyte_char", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3134094431, - "arguments": [ - { - "name": "encoding", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "hex_encode", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3942272618 - }, - { - "name": "compress", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1845905913, - "arguments": [ - { - "name": "compression_mode", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "decompress", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2278869132, - "arguments": [ - { - "name": "buffer_size", - "type": "int" - }, - { - "name": "compression_mode", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "decompress_dynamic", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2278869132, - "arguments": [ - { - "name": "max_output_size", - "type": "int" - }, - { - "name": "compression_mode", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "decode_u8", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_s8", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_u16", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_s16", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_u32", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_s32", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_u64", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_s64", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_half", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1401583798, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_float", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1401583798, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "decode_double", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1401583798, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - } - ] - }, - { - "name": "has_encoded_var", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2914632957, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "decode_var", - "return_type": "Variant", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1740420038, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "decode_var_size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 954237325, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "to_int32_array", - "return_type": "PackedInt32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3158844420 - }, - { - "name": "to_int64_array", - "return_type": "PackedInt64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1961294120 - }, - { - "name": "to_float32_array", - "return_type": "PackedFloat32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3575107827 - }, - { - "name": "to_float64_array", - "return_type": "PackedFloat64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1627308337 - }, - { - "name": "to_vector2_array", - "return_type": "PackedVector2Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1660374357 - }, - { - "name": "to_vector3_array", - "return_type": "PackedVector3Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4171207452 - }, - { - "name": "to_vector4_array", - "return_type": "PackedVector4Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 146203628 - }, - { - "name": "to_color_array", - "return_type": "PackedColorArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3072026941 - }, - { - "name": "bswap16", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "offset", - "type": "int", - "default_value": "0" - }, - { - "name": "count", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "bswap32", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "offset", - "type": "int", - "default_value": "0" - }, - { - "name": "count", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "bswap64", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "offset", - "type": "int", - "default_value": "0" - }, - { - "name": "count", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "encode_u8", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_s8", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_u16", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_s16", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_u32", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_s32", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_u64", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_s64", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "encode_half", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1113000516, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "encode_float", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1113000516, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "encode_double", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1113000516, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "encode_var", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2604460497, - "arguments": [ - { - "name": "byte_offset", - "type": "int" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedByteArray" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedInt32Array", - "indexing_return_type": "int", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedInt32Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedInt32Array", - "return_type": "PackedInt32Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1087733270, - "arguments": [ - { - "name": "array", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1487112728, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 931488181, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedInt32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1216021098, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 954237325, - "hash_compatibility": [ - 3380005890 - ], - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedInt32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3158844420, - "hash_compatibility": [ - 1997843129 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedInt32Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedInt64Array", - "indexing_return_type": "int", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedInt64Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedInt64Array", - "return_type": "PackedInt64Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3638975848, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2090311302, - "arguments": [ - { - "name": "array", - "type": "PackedInt64Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1487112728, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 931488181, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedInt64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1726550804, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 954237325, - "hash_compatibility": [ - 3380005890 - ], - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedInt64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1961294120, - "hash_compatibility": [ - 2376370016 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2984303840, - "arguments": [ - { - "name": "value", - "type": "int" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4103005248, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 694024632, - "arguments": [ - { - "name": "value", - "type": "int" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedInt64Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedFloat32Array", - "indexing_return_type": "float", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedFloat32Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedFloat32Array", - "return_type": "PackedFloat32Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1401583798, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1113000516, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2981316639, - "arguments": [ - { - "name": "array", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1379903876, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 833936903, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1296369134, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedFloat32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1418229160, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1175118842, - "hash_compatibility": [ - 1188816338 - ], - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedFloat32Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3575107827, - "hash_compatibility": [ - 831114784 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1343150241, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1343150241, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2859915090, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedFloat32Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedFloat64Array", - "indexing_return_type": "float", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedFloat64Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedFloat64Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedFloat64Array", - "return_type": "PackedFloat64Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "float", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1401583798, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1113000516, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 792078629, - "arguments": [ - { - "name": "array", - "type": "PackedFloat64Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1379903876, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 833936903, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1296369134, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedFloat64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2192974324, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1175118842, - "hash_compatibility": [ - 1188816338 - ], - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedFloat64Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1627308337, - "hash_compatibility": [ - 949266573 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1343150241, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1343150241, - "arguments": [ - { - "name": "value", - "type": "float" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2859915090, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4094791666, - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedFloat64Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedStringArray", - "indexing_return_type": "String", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedStringArray", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedStringArray", - "return_type": "PackedStringArray" - } - ], - "methods": [ - { - "name": "get", - "return_type": "String", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2162347432, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 725585539, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 816187996, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 816187996, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1120103966, - "arguments": [ - { - "name": "array", - "type": "PackedStringArray" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2432393153, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3174917410, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2566493496, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2094601407, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1171495151, - "hash_compatibility": [ - 328976671 - ], - "arguments": [ - { - "name": "value", - "type": "String" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedStringArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 747180633, - "hash_compatibility": [ - 2991231410 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "value", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1760645412, - "arguments": [ - { - "name": "value", - "type": "String" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2920860731, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 816187996, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedStringArray" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedVector2Array", - "indexing_return_type": "Vector2", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform2D", - "return_type": "PackedVector2Array" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector2Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector2Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedVector2Array", - "return_type": "PackedVector2Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "Vector2", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2609058838, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 635767250, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4188891560, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4188891560, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3887534835, - "arguments": [ - { - "name": "array", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2225629369, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3790411178, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3190634762, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedVector2Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3864005350, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3341588170, - "hash_compatibility": [ - 3778035805 - ], - "arguments": [ - { - "name": "value", - "type": "Vector2" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedVector2Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1660374357, - "hash_compatibility": [ - 3763646812 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1469606149, - "arguments": [ - { - "name": "value", - "type": "Vector2" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1469606149, - "arguments": [ - { - "name": "value", - "type": "Vector2" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2798848307, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 4188891560, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedVector2Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedVector3Array", - "indexing_return_type": "Vector3", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "*", - "right_type": "Transform3D", - "return_type": "PackedVector3Array" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector3Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector3Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedVector3Array", - "return_type": "PackedVector3Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "Vector3", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1394941017, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3975343409, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3295363524, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3295363524, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 203538016, - "arguments": [ - { - "name": "array", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3892262309, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3726392409, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1749054343, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedVector3Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2086131305, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1259277637, - "hash_compatibility": [ - 219263630 - ], - "arguments": [ - { - "name": "value", - "type": "Vector3" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedVector3Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 4171207452, - "hash_compatibility": [ - 2754175465 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3718155780, - "arguments": [ - { - "name": "value", - "type": "Vector3" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3718155780, - "arguments": [ - { - "name": "value", - "type": "Vector3" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 194580386, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3295363524, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedVector3Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedColorArray", - "indexing_return_type": "Color", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedColorArray", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedColorArray", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedColorArray", - "return_type": "PackedColorArray" - } - ], - "methods": [ - { - "name": "get", - "return_type": "Color", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2972831132, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1444096570, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1007858200, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1007858200, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 798822497, - "arguments": [ - { - "name": "array", - "type": "PackedColorArray" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 785289703, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3730314301, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3167426256, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedColorArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2451797139, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2639732838, - "hash_compatibility": [ - 314143821 - ], - "arguments": [ - { - "name": "value", - "type": "Color" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedColorArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3072026941, - "hash_compatibility": [ - 1011903421 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3156095363, - "arguments": [ - { - "name": "value", - "type": "Color" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3156095363, - "arguments": [ - { - "name": "value", - "type": "Color" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1682108616, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1007858200, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedColorArray" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - }, - { - "name": "PackedVector4Array", - "indexing_return_type": "Vector4", - "is_keyed": false, - "operators": [ - { - "name": "==", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "Variant", - "return_type": "bool" - }, - { - "name": "not", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Dictionary", - "return_type": "bool" - }, - { - "name": "in", - "right_type": "Array", - "return_type": "bool" - }, - { - "name": "==", - "right_type": "PackedVector4Array", - "return_type": "bool" - }, - { - "name": "!=", - "right_type": "PackedVector4Array", - "return_type": "bool" - }, - { - "name": "+", - "right_type": "PackedVector4Array", - "return_type": "PackedVector4Array" - } - ], - "methods": [ - { - "name": "get", - "return_type": "Vector4", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1227817084, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "set", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 1350366223, - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3173160232 - }, - { - "name": "is_empty", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3918633141 - }, - { - "name": "push_back", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3289167688, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "append", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3289167688, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "append_array", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 537428395, - "arguments": [ - { - "name": "array", - "type": "PackedVector4Array" - } - ] - }, - { - "name": "remove_at", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2823966027, - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "insert", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 11085009, - "arguments": [ - { - "name": "at_index", - "type": "int" - }, - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "fill", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3761353134, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "resize", - "return_type": "int", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 848867239, - "arguments": [ - { - "name": "new_size", - "type": "int" - } - ] - }, - { - "name": "clear", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "has", - "return_type": "bool", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 88913544, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "reverse", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "slice", - "return_type": "PackedVector4Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 2942803855, - "arguments": [ - { - "name": "begin", - "type": "int" - }, - { - "name": "end", - "type": "int", - "default_value": "2147483647" - } - ] - }, - { - "name": "to_byte_array", - "return_type": "PackedByteArray", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 247621236 - }, - { - "name": "sort", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3218959716 - }, - { - "name": "bsearch", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 1822067054, - "hash_compatibility": [ - 735671678 - ], - "arguments": [ - { - "name": "value", - "type": "Vector4" - }, - { - "name": "before", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "duplicate", - "return_type": "PackedVector4Array", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 146203628, - "hash_compatibility": [ - 3186305013 - ] - }, - { - "name": "find", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3091171314, - "arguments": [ - { - "name": "value", - "type": "Vector4" - }, - { - "name": "from", - "type": "int", - "default_value": "0" - } - ] - }, - { - "name": "rfind", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3091171314, - "arguments": [ - { - "name": "value", - "type": "Vector4" - }, - { - "name": "from", - "type": "int", - "default_value": "-1" - } - ] - }, - { - "name": "count", - "return_type": "int", - "is_vararg": false, - "is_const": true, - "is_static": false, - "hash": 3956594488, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "erase", - "return_type": "bool", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 3289167688, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - } - ], - "constructors": [ - { - "index": 0 - }, - { - "index": 1, - "arguments": [ - { - "name": "from", - "type": "PackedVector4Array" - } - ] - }, - { - "index": 2, - "arguments": [ - { - "name": "from", - "type": "Array" - } - ] - } - ], - "has_destructor": true - } - ], - "classes": [ - { - "name": "AESContext", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_ECB_ENCRYPT", - "value": 0 - }, - { - "name": "MODE_ECB_DECRYPT", - "value": 1 - }, - { - "name": "MODE_CBC_ENCRYPT", - "value": 2 - }, - { - "name": "MODE_CBC_DECRYPT", - "value": 3 - }, - { - "name": "MODE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3122411423, - "hash_compatibility": [ - 3167574919 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::AESContext.Mode" - }, - { - "name": "key", - "type": "PackedByteArray" - }, - { - "name": "iv", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - } - ] - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 527836100, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "src", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_iv_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "finish", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "AStar2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_filter_neighbor", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "neighbor_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_estimate_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "end_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_compute_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_available_point_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4074201818, - "hash_compatibility": [ - 3370185124 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "position", - "type": "Vector2" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_weight_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_point_weight_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "has_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_point_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2865087369, - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_point_ids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3851388692, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_neighbor_filter_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_neighbor_filter_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_point_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_point_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "connect_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3710494224, - "hash_compatibility": [ - 3785370599 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "disconnect_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3710494224, - "hash_compatibility": [ - 3785370599 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "are_points_connected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2288175859, - "hash_compatibility": [ - 4063588998 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_point_capacity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "reserve_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "num_nodes", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2300324924, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "to_position", - "type": "Vector2" - }, - { - "name": "include_disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_closest_position_in_segment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "to_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3427490392, - "hash_compatibility": [ - 281625055 - ], - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_id_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3136199648, - "hash_compatibility": [ - 3404614526 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "neighbor_filter_enabled", - "setter": "set_neighbor_filter_enabled", - "getter": "is_neighbor_filter_enabled" - } - ] - }, - { - "name": "AStar3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_filter_neighbor", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "neighbor_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_estimate_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "end_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_compute_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_available_point_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1038703438, - "hash_compatibility": [ - 2920922839 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "position", - "type": "Vector3" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_point_weight_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_point_weight_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "has_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_point_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2865087369, - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_point_ids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3851388692, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_point_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_point_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_neighbor_filter_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_neighbor_filter_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "connect_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3710494224, - "hash_compatibility": [ - 3785370599 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "disconnect_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3710494224, - "hash_compatibility": [ - 3785370599 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "are_points_connected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2288175859, - "hash_compatibility": [ - 4063588998 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "bidirectional", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_point_capacity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "reserve_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "num_nodes", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3241074317, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "to_position", - "type": "Vector3" - }, - { - "name": "include_disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_closest_position_in_segment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "to_position", - "type": "Vector3" - } - ] - }, - { - "name": "get_point_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1562654675, - "hash_compatibility": [ - 880819742 - ], - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_id_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3136199648, - "hash_compatibility": [ - 3404614526 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "from_id", - "type": "int", - "meta": "int64" - }, - { - "name": "to_id", - "type": "int", - "meta": "int64" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "neighbor_filter_enabled", - "setter": "set_neighbor_filter_enabled", - "getter": "is_neighbor_filter_enabled" - } - ] - }, - { - "name": "AStarGrid2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Heuristic", - "is_bitfield": false, - "values": [ - { - "name": "HEURISTIC_EUCLIDEAN", - "value": 0 - }, - { - "name": "HEURISTIC_MANHATTAN", - "value": 1 - }, - { - "name": "HEURISTIC_OCTILE", - "value": 2 - }, - { - "name": "HEURISTIC_CHEBYSHEV", - "value": 3 - }, - { - "name": "HEURISTIC_MAX", - "value": 4 - } - ] - }, - { - "name": "DiagonalMode", - "is_bitfield": false, - "values": [ - { - "name": "DIAGONAL_MODE_ALWAYS", - "value": 0 - }, - { - "name": "DIAGONAL_MODE_NEVER", - "value": 1 - }, - { - "name": "DIAGONAL_MODE_AT_LEAST_ONE_WALKABLE", - "value": 2 - }, - { - "name": "DIAGONAL_MODE_ONLY_IF_NO_OBSTACLES", - "value": 3 - }, - { - "name": "DIAGONAL_MODE_MAX", - "value": 4 - } - ] - }, - { - "name": "CellShape", - "is_bitfield": false, - "values": [ - { - "name": "CELL_SHAPE_SQUARE", - "value": 0 - }, - { - "name": "CELL_SHAPE_ISOMETRIC_RIGHT", - "value": 1 - }, - { - "name": "CELL_SHAPE_ISOMETRIC_DOWN", - "value": 2 - }, - { - "name": "CELL_SHAPE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "_estimate_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2153177966, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "Vector2i" - }, - { - "name": "end_id", - "type": "Vector2i" - } - ] - }, - { - "name": "_compute_cost", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2153177966, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_id", - "type": "Vector2i" - }, - { - "name": "to_id", - "type": "Vector2i" - } - ] - }, - { - "name": "set_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763793166, - "arguments": [ - { - "name": "region", - "type": "Rect2i" - } - ] - }, - { - "name": "get_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "cell_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_cell_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4130591146, - "arguments": [ - { - "name": "cell_shape", - "type": "enum::AStarGrid2D.CellShape" - } - ] - }, - { - "name": "get_cell_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3293463634, - "return_value": { - "type": "enum::AStarGrid2D.CellShape" - } - }, - { - "name": "is_in_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_in_boundsv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "Vector2i" - } - ] - }, - { - "name": "is_dirty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_jumping_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_jumping_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_diagonal_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017829798, - "arguments": [ - { - "name": "mode", - "type": "enum::AStarGrid2D.DiagonalMode" - } - ] - }, - { - "name": "get_diagonal_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3129282674, - "return_value": { - "type": "enum::AStarGrid2D.DiagonalMode" - } - }, - { - "name": "set_default_compute_heuristic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1044375519, - "arguments": [ - { - "name": "heuristic", - "type": "enum::AStarGrid2D.Heuristic" - } - ] - }, - { - "name": "get_default_compute_heuristic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074731422, - "return_value": { - "type": "enum::AStarGrid2D.Heuristic" - } - }, - { - "name": "set_default_estimate_heuristic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1044375519, - "arguments": [ - { - "name": "heuristic", - "type": "enum::AStarGrid2D.Heuristic" - } - ] - }, - { - "name": "get_default_estimate_heuristic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074731422, - "return_value": { - "type": "enum::AStarGrid2D.Heuristic" - } - }, - { - "name": "set_point_solid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1765703753, - "hash_compatibility": [ - 2825551965 - ], - "arguments": [ - { - "name": "id", - "type": "Vector2i" - }, - { - "name": "solid", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_point_solid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "Vector2i" - } - ] - }, - { - "name": "set_point_weight_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2262553149, - "arguments": [ - { - "name": "id", - "type": "Vector2i" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_weight_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 719993801, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "id", - "type": "Vector2i" - } - ] - }, - { - "name": "fill_solid_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2261970063, - "hash_compatibility": [ - 1152863744 - ], - "arguments": [ - { - "name": "region", - "type": "Rect2i" - }, - { - "name": "solid", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "fill_weight_scale_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2793244083, - "arguments": [ - { - "name": "region", - "type": "Rect2i" - }, - { - "name": "weight_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 108438297, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "id", - "type": "Vector2i" - } - ] - }, - { - "name": "get_point_data_in_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3893818462, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "region", - "type": "Rect2i" - } - ] - }, - { - "name": "get_point_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1641925693, - "hash_compatibility": [ - 690373547 - ], - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from_id", - "type": "Vector2i" - }, - { - "name": "to_id", - "type": "Vector2i" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_id_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1918132273, - "hash_compatibility": [ - 1989391000 - ], - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "from_id", - "type": "Vector2i" - }, - { - "name": "to_id", - "type": "Vector2i" - }, - { - "name": "allow_partial_path", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "properties": [ - { - "type": "Rect2i", - "name": "region", - "setter": "set_region", - "getter": "get_region" - }, - { - "type": "Vector2i", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "Vector2", - "name": "cell_size", - "setter": "set_cell_size", - "getter": "get_cell_size" - }, - { - "type": "int", - "name": "cell_shape", - "setter": "set_cell_shape", - "getter": "get_cell_shape" - }, - { - "type": "bool", - "name": "jumping_enabled", - "setter": "set_jumping_enabled", - "getter": "is_jumping_enabled" - }, - { - "type": "int", - "name": "default_compute_heuristic", - "setter": "set_default_compute_heuristic", - "getter": "get_default_compute_heuristic" - }, - { - "type": "int", - "name": "default_estimate_heuristic", - "setter": "set_default_estimate_heuristic", - "getter": "get_default_estimate_heuristic" - }, - { - "type": "int", - "name": "diagonal_mode", - "setter": "set_diagonal_mode", - "getter": "get_diagonal_mode" - } - ] - }, - { - "name": "AcceptDialog", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Window", - "api_type": "core", - "methods": [ - { - "name": "get_ok_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1856205918, - "return_value": { - "type": "Button" - } - }, - { - "name": "get_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 566733104, - "return_value": { - "type": "Label" - } - }, - { - "name": "set_hide_on_ok", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_hide_on_ok", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_close_on_escape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_close_on_escape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3328440682, - "hash_compatibility": [ - 4158837846 - ], - "return_value": { - "type": "Button" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "right", - "type": "bool", - "default_value": "false" - }, - { - "name": "action", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "add_cancel_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 242045556, - "return_value": { - "type": "Button" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "remove_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2068354942, - "hash_compatibility": [ - 1496901182 - ], - "arguments": [ - { - "name": "button", - "type": "Button" - } - ] - }, - { - "name": "register_text_enter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3714008017, - "hash_compatibility": [ - 1496901182 - ], - "arguments": [ - { - "name": "line_edit", - "type": "LineEdit" - } - ] - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_autowrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "autowrap", - "type": "bool" - } - ] - }, - { - "name": "has_autowrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ok_button_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_ok_button_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "signals": [ - { - "name": "confirmed" - }, - { - "name": "canceled" - }, - { - "name": "custom_action", - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "ok_button_text", - "setter": "set_ok_button_text", - "getter": "get_ok_button_text" - }, - { - "type": "String", - "name": "dialog_text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "bool", - "name": "dialog_hide_on_ok", - "setter": "set_hide_on_ok", - "getter": "get_hide_on_ok" - }, - { - "type": "bool", - "name": "dialog_close_on_escape", - "setter": "set_close_on_escape", - "getter": "get_close_on_escape" - }, - { - "type": "bool", - "name": "dialog_autowrap", - "setter": "set_autowrap", - "getter": "has_autowrap" - } - ] - }, - { - "name": "AccessibilityServer", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "AccessibilityRole", - "is_bitfield": false, - "values": [ - { - "name": "ROLE_UNKNOWN", - "value": 0 - }, - { - "name": "ROLE_DEFAULT_BUTTON", - "value": 1 - }, - { - "name": "ROLE_AUDIO", - "value": 2 - }, - { - "name": "ROLE_VIDEO", - "value": 3 - }, - { - "name": "ROLE_STATIC_TEXT", - "value": 4 - }, - { - "name": "ROLE_CONTAINER", - "value": 5 - }, - { - "name": "ROLE_PANEL", - "value": 6 - }, - { - "name": "ROLE_BUTTON", - "value": 7 - }, - { - "name": "ROLE_LINK", - "value": 8 - }, - { - "name": "ROLE_CHECK_BOX", - "value": 9 - }, - { - "name": "ROLE_RADIO_BUTTON", - "value": 10 - }, - { - "name": "ROLE_CHECK_BUTTON", - "value": 11 - }, - { - "name": "ROLE_SCROLL_BAR", - "value": 12 - }, - { - "name": "ROLE_SCROLL_VIEW", - "value": 13 - }, - { - "name": "ROLE_SPLITTER", - "value": 14 - }, - { - "name": "ROLE_SLIDER", - "value": 15 - }, - { - "name": "ROLE_SPIN_BUTTON", - "value": 16 - }, - { - "name": "ROLE_PROGRESS_INDICATOR", - "value": 17 - }, - { - "name": "ROLE_TEXT_FIELD", - "value": 18 - }, - { - "name": "ROLE_MULTILINE_TEXT_FIELD", - "value": 19 - }, - { - "name": "ROLE_COLOR_PICKER", - "value": 20 - }, - { - "name": "ROLE_TABLE", - "value": 21 - }, - { - "name": "ROLE_CELL", - "value": 22 - }, - { - "name": "ROLE_ROW", - "value": 23 - }, - { - "name": "ROLE_ROW_GROUP", - "value": 24 - }, - { - "name": "ROLE_ROW_HEADER", - "value": 25 - }, - { - "name": "ROLE_COLUMN_HEADER", - "value": 26 - }, - { - "name": "ROLE_TREE", - "value": 27 - }, - { - "name": "ROLE_TREE_ITEM", - "value": 28 - }, - { - "name": "ROLE_LIST", - "value": 29 - }, - { - "name": "ROLE_LIST_ITEM", - "value": 30 - }, - { - "name": "ROLE_LIST_BOX", - "value": 31 - }, - { - "name": "ROLE_LIST_BOX_OPTION", - "value": 32 - }, - { - "name": "ROLE_TAB_BAR", - "value": 33 - }, - { - "name": "ROLE_TAB", - "value": 34 - }, - { - "name": "ROLE_TAB_PANEL", - "value": 35 - }, - { - "name": "ROLE_MENU_BAR", - "value": 36 - }, - { - "name": "ROLE_MENU", - "value": 37 - }, - { - "name": "ROLE_MENU_ITEM", - "value": 38 - }, - { - "name": "ROLE_MENU_ITEM_CHECK_BOX", - "value": 39 - }, - { - "name": "ROLE_MENU_ITEM_RADIO", - "value": 40 - }, - { - "name": "ROLE_IMAGE", - "value": 41 - }, - { - "name": "ROLE_WINDOW", - "value": 42 - }, - { - "name": "ROLE_TITLE_BAR", - "value": 43 - }, - { - "name": "ROLE_DIALOG", - "value": 44 - }, - { - "name": "ROLE_TOOLTIP", - "value": 45 - }, - { - "name": "ROLE_REGION", - "value": 46 - }, - { - "name": "ROLE_TEXT_RUN", - "value": 47 - } - ] - }, - { - "name": "AccessibilityPopupType", - "is_bitfield": false, - "values": [ - { - "name": "POPUP_MENU", - "value": 0 - }, - { - "name": "POPUP_LIST", - "value": 1 - }, - { - "name": "POPUP_TREE", - "value": 2 - }, - { - "name": "POPUP_DIALOG", - "value": 3 - } - ] - }, - { - "name": "AccessibilityFlags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_HIDDEN", - "value": 0 - }, - { - "name": "FLAG_MULTISELECTABLE", - "value": 1 - }, - { - "name": "FLAG_REQUIRED", - "value": 2 - }, - { - "name": "FLAG_VISITED", - "value": 3 - }, - { - "name": "FLAG_BUSY", - "value": 4 - }, - { - "name": "FLAG_MODAL", - "value": 5 - }, - { - "name": "FLAG_TOUCH_PASSTHROUGH", - "value": 6 - }, - { - "name": "FLAG_READONLY", - "value": 7 - }, - { - "name": "FLAG_DISABLED", - "value": 8 - }, - { - "name": "FLAG_CLIPS_CHILDREN", - "value": 9 - } - ] - }, - { - "name": "AccessibilityAction", - "is_bitfield": false, - "values": [ - { - "name": "ACTION_CLICK", - "value": 0 - }, - { - "name": "ACTION_FOCUS", - "value": 1 - }, - { - "name": "ACTION_BLUR", - "value": 2 - }, - { - "name": "ACTION_COLLAPSE", - "value": 3 - }, - { - "name": "ACTION_EXPAND", - "value": 4 - }, - { - "name": "ACTION_DECREMENT", - "value": 5 - }, - { - "name": "ACTION_INCREMENT", - "value": 6 - }, - { - "name": "ACTION_HIDE_TOOLTIP", - "value": 7 - }, - { - "name": "ACTION_SHOW_TOOLTIP", - "value": 8 - }, - { - "name": "ACTION_SET_TEXT_SELECTION", - "value": 9 - }, - { - "name": "ACTION_REPLACE_SELECTED_TEXT", - "value": 10 - }, - { - "name": "ACTION_SCROLL_BACKWARD", - "value": 11 - }, - { - "name": "ACTION_SCROLL_DOWN", - "value": 12 - }, - { - "name": "ACTION_SCROLL_FORWARD", - "value": 13 - }, - { - "name": "ACTION_SCROLL_LEFT", - "value": 14 - }, - { - "name": "ACTION_SCROLL_RIGHT", - "value": 15 - }, - { - "name": "ACTION_SCROLL_UP", - "value": 16 - }, - { - "name": "ACTION_SCROLL_INTO_VIEW", - "value": 17 - }, - { - "name": "ACTION_SCROLL_TO_POINT", - "value": 18 - }, - { - "name": "ACTION_SET_SCROLL_OFFSET", - "value": 19 - }, - { - "name": "ACTION_SET_VALUE", - "value": 20 - }, - { - "name": "ACTION_SHOW_CONTEXT_MENU", - "value": 21 - }, - { - "name": "ACTION_CUSTOM", - "value": 22 - } - ] - }, - { - "name": "AccessibilityLiveMode", - "is_bitfield": false, - "values": [ - { - "name": "LIVE_OFF", - "value": 0 - }, - { - "name": "LIVE_POLITE", - "value": 1 - }, - { - "name": "LIVE_ASSERTIVE", - "value": 2 - } - ] - }, - { - "name": "AccessibilityScrollUnit", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_UNIT_ITEM", - "value": 0 - }, - { - "name": "SCROLL_UNIT_PAGE", - "value": 1 - } - ] - }, - { - "name": "AccessibilityScrollHint", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_HINT_TOP_LEFT", - "value": 0 - }, - { - "name": "SCROLL_HINT_BOTTOM_RIGHT", - "value": 1 - }, - { - "name": "SCROLL_HINT_TOP_EDGE", - "value": 2 - }, - { - "name": "SCROLL_HINT_BOTTOM_EDGE", - "value": 3 - }, - { - "name": "SCROLL_HINT_LEFT_EDGE", - "value": 4 - }, - { - "name": "SCROLL_HINT_RIGHT_EDGE", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "is_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "create_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3846965249, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "role", - "type": "enum::AccessibilityServer.AccessibilityRole" - } - ] - }, - { - "name": "create_sub_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1151690429, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "parent_rid", - "type": "RID" - }, - { - "name": "role", - "type": "enum::AccessibilityServer.AccessibilityRole" - }, - { - "name": "insert_pos", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "create_sub_text_edit_elements", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2702009895, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "parent_rid", - "type": "RID" - }, - { - "name": "shaped_text", - "type": "RID" - }, - { - "name": "min_height", - "type": "float", - "meta": "float" - }, - { - "name": "insert_pos", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "is_last_line", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "has_element", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "free_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "element_set_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175752987, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "element_get_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "set_window_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2386961724, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "rect_out", - "type": "Rect2" - }, - { - "name": "rect_in", - "type": "Rect2" - } - ] - }, - { - "name": "set_window_focused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "focused", - "type": "bool" - } - ] - }, - { - "name": "update_set_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "get_window_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_role", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3747886520, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "role", - "type": "enum::AccessibilityServer.AccessibilityRole" - } - ] - }, - { - "name": "update_set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "update_set_braille_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "update_set_braille_role_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "update_set_extra_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "update_set_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "update_set_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "update_set_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "update_set_bounds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1378122625, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "update_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "update_add_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "child_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_controls", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_details", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_described_by", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_flow_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_labeled_by", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_add_related_radio_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_active_descendant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_next_on_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_previous_on_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_member_of", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "group_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_in_page_link_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_error_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "update_set_live", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2993365237, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "live", - "type": "enum::AccessibilityServer.AccessibilityLiveMode" - } - ] - }, - { - "name": "update_add_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3960092835, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "action", - "type": "enum::AccessibilityServer.AccessibilityAction" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "update_add_custom_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153150897, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "action_id", - "type": "int", - "meta": "int32" - }, - { - "name": "action_description", - "type": "String" - } - ] - }, - { - "name": "update_set_table_row_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_table_column_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_table_row_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_table_column_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_table_cell_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "row_index", - "type": "int", - "meta": "int32" - }, - { - "name": "column_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_table_cell_span", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "row_span", - "type": "int", - "meta": "int32" - }, - { - "name": "column_span", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_list_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_list_item_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_list_item_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_list_item_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "selected", - "type": "bool" - } - ] - }, - { - "name": "update_set_list_item_expanded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "expanded", - "type": "bool" - } - ] - }, - { - "name": "update_set_popup_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 690307634, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "popup", - "type": "enum::AccessibilityServer.AccessibilityPopupType" - } - ] - }, - { - "name": "update_set_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "checekd", - "type": "bool" - } - ] - }, - { - "name": "update_set_num_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_num_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_num_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "step", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_num_jump", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "jump", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_scroll_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_scroll_x_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_scroll_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_scroll_y_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "update_set_text_decorations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 457503484, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "underline", - "type": "bool" - }, - { - "name": "strikethrough", - "type": "bool" - }, - { - "name": "overline", - "type": "bool" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(0, 0, 0, 1)" - } - ] - }, - { - "name": "update_set_text_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3725995085, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "align", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "update_set_text_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3119144029, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "text_start_id", - "type": "RID" - }, - { - "name": "start_char", - "type": "int", - "meta": "int32" - }, - { - "name": "text_end_id", - "type": "RID" - }, - { - "name": "end_char", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1473043386, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::AccessibilityServer.AccessibilityFlags" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "update_set_classname", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "classname", - "type": "String" - } - ] - }, - { - "name": "update_set_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "placeholder", - "type": "String" - } - ] - }, - { - "name": "update_set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "update_set_text_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "update_set_list_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "update_set_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "shortcut", - "type": "String" - } - ] - }, - { - "name": "update_set_url", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "url", - "type": "String" - } - ] - }, - { - "name": "update_set_role_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "update_set_state_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "update_set_color_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "update_set_background_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "update_set_foreground_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - } - ] - }, - { - "name": "AimModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BoneConstraint3D", - "api_type": "core", - "methods": [ - { - "name": "set_forward_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2496831085, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::SkeletonModifier3D.BoneAxis" - } - ] - }, - { - "name": "get_forward_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3949866735, - "return_value": { - "type": "enum::SkeletonModifier3D.BoneAxis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_euler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_euler", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_primary_rotation_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 776736805, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - } - ] - }, - { - "name": "get_primary_rotation_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4131134770, - "return_value": { - "type": "enum::Vector3.Axis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_secondary_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_secondary_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "AnimatableBody2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "StaticBody2D", - "api_type": "core", - "methods": [ - { - "name": "set_sync_to_physics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_sync_to_physics_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync_to_physics", - "setter": "set_sync_to_physics", - "getter": "is_sync_to_physics_enabled" - } - ] - }, - { - "name": "AnimatableBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "StaticBody3D", - "api_type": "core", - "methods": [ - { - "name": "set_sync_to_physics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_sync_to_physics_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync_to_physics", - "setter": "set_sync_to_physics", - "getter": "is_sync_to_physics_enabled" - } - ] - }, - { - "name": "AnimatedSprite2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_sprite_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 905781144, - "arguments": [ - { - "name": "sprite_frames", - "type": "SpriteFrames" - } - ] - }, - { - "name": "get_sprite_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3804851214, - "return_value": { - "type": "SpriteFrames" - } - }, - { - "name": "set_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_autoplay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3269405555, - "hash_compatibility": [ - 2372066587 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "play_backwards", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3323268493, - "hash_compatibility": [ - 1421762485 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "centered", - "type": "bool" - } - ] - }, - { - "name": "is_centered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_h", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_v", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_frame_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_frame_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_frame_and_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - }, - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_playing_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "sprite_frames_changed" - }, - { - "name": "animation_changed" - }, - { - "name": "frame_changed" - }, - { - "name": "animation_looped" - }, - { - "name": "animation_finished" - } - ], - "properties": [ - { - "type": "SpriteFrames", - "name": "sprite_frames", - "setter": "set_sprite_frames", - "getter": "get_sprite_frames" - }, - { - "type": "StringName", - "name": "animation", - "setter": "set_animation", - "getter": "get_animation" - }, - { - "type": "StringName", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "get_autoplay" - }, - { - "type": "int", - "name": "frame", - "setter": "set_frame", - "getter": "get_frame" - }, - { - "type": "float", - "name": "frame_progress", - "setter": "set_frame_progress", - "getter": "get_frame_progress" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "bool", - "name": "centered", - "setter": "set_centered", - "getter": "is_centered" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "is_flipped_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "is_flipped_v" - } - ] - }, - { - "name": "AnimatedSprite3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SpriteBase3D", - "api_type": "core", - "methods": [ - { - "name": "set_sprite_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 905781144, - "arguments": [ - { - "name": "sprite_frames", - "type": "SpriteFrames" - } - ] - }, - { - "name": "get_sprite_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3804851214, - "return_value": { - "type": "SpriteFrames" - } - }, - { - "name": "set_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_autoplay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3269405555, - "hash_compatibility": [ - 2372066587 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "play_backwards", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3323268493, - "hash_compatibility": [ - 1421762485 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_frame_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_frame_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_frame_and_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - }, - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_playing_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "sprite_frames_changed" - }, - { - "name": "animation_changed" - }, - { - "name": "frame_changed" - }, - { - "name": "animation_looped" - }, - { - "name": "animation_finished" - } - ], - "properties": [ - { - "type": "SpriteFrames", - "name": "sprite_frames", - "setter": "set_sprite_frames", - "getter": "get_sprite_frames" - }, - { - "type": "StringName", - "name": "animation", - "setter": "set_animation", - "getter": "get_animation" - }, - { - "type": "StringName", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "get_autoplay" - }, - { - "type": "int", - "name": "frame", - "setter": "set_frame", - "getter": "get_frame" - }, - { - "type": "float", - "name": "frame_progress", - "setter": "set_frame_progress", - "getter": "get_frame_progress" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - } - ] - }, - { - "name": "AnimatedTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "constants": [ - { - "name": "MAX_FRAMES", - "value": 256 - } - ], - "methods": [ - { - "name": "set_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_current_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pause", - "type": "bool" - } - ] - }, - { - "name": "get_pause", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "one_shot", - "type": "bool" - } - ] - }, - { - "name": "get_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_frame_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_frame_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_frame_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - }, - { - "name": "duration", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_frame_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "frames", - "setter": "set_frames", - "getter": "get_frames" - }, - { - "type": "int", - "name": "current_frame", - "setter": "set_current_frame", - "getter": "get_current_frame" - }, - { - "type": "bool", - "name": "pause", - "setter": "set_pause", - "getter": "get_pause" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "get_one_shot" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - } - ] - }, - { - "name": "Animation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "TrackType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_VALUE", - "value": 0 - }, - { - "name": "TYPE_POSITION_3D", - "value": 1 - }, - { - "name": "TYPE_ROTATION_3D", - "value": 2 - }, - { - "name": "TYPE_SCALE_3D", - "value": 3 - }, - { - "name": "TYPE_BLEND_SHAPE", - "value": 4 - }, - { - "name": "TYPE_METHOD", - "value": 5 - }, - { - "name": "TYPE_BEZIER", - "value": 6 - }, - { - "name": "TYPE_AUDIO", - "value": 7 - }, - { - "name": "TYPE_ANIMATION", - "value": 8 - } - ] - }, - { - "name": "InterpolationType", - "is_bitfield": false, - "values": [ - { - "name": "INTERPOLATION_NEAREST", - "value": 0 - }, - { - "name": "INTERPOLATION_LINEAR", - "value": 1 - }, - { - "name": "INTERPOLATION_CUBIC", - "value": 2 - }, - { - "name": "INTERPOLATION_LINEAR_ANGLE", - "value": 3 - }, - { - "name": "INTERPOLATION_CUBIC_ANGLE", - "value": 4 - } - ] - }, - { - "name": "UpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "UPDATE_CONTINUOUS", - "value": 0 - }, - { - "name": "UPDATE_DISCRETE", - "value": 1 - }, - { - "name": "UPDATE_CAPTURE", - "value": 2 - } - ] - }, - { - "name": "LoopMode", - "is_bitfield": false, - "values": [ - { - "name": "LOOP_NONE", - "value": 0 - }, - { - "name": "LOOP_LINEAR", - "value": 1 - }, - { - "name": "LOOP_PINGPONG", - "value": 2 - } - ] - }, - { - "name": "LoopedFlag", - "is_bitfield": false, - "values": [ - { - "name": "LOOPED_FLAG_NONE", - "value": 0 - }, - { - "name": "LOOPED_FLAG_END", - "value": 1 - }, - { - "name": "LOOPED_FLAG_START", - "value": 2 - } - ] - }, - { - "name": "FindMode", - "is_bitfield": false, - "values": [ - { - "name": "FIND_MODE_NEAREST", - "value": 0 - }, - { - "name": "FIND_MODE_APPROX", - "value": 1 - }, - { - "name": "FIND_MODE_EXACT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_track", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3843682357, - "hash_compatibility": [ - 2393815928 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "type", - "type": "enum::Animation.TrackType" - }, - { - "name": "at_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_track", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_track_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "track_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3445944217, - "return_value": { - "type": "enum::Animation.TrackType" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_set_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "find_track", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 245376003, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "type", - "type": "enum::Animation.TrackType" - } - ] - }, - { - "name": "track_move_up", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_move_down", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_move_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "to_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_swap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "with_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_set_imported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "imported", - "type": "bool" - } - ] - }, - { - "name": "track_is_imported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "track_is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "position_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2540608232, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "rotation_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4165004800, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "rotation", - "type": "Quaternion" - } - ] - }, - { - "name": "scale_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2540608232, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "blend_shape_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1534913637, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "position_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3530011197, - "hash_compatibility": [ - 3285246857 - ], - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "rotation_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915876792, - "hash_compatibility": [ - 1988711975 - ], - "return_value": { - "type": "Quaternion" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "scale_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3530011197, - "hash_compatibility": [ - 3285246857 - ], - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "blend_shape_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2482365182, - "hash_compatibility": [ - 1900462983 - ], - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 808952278, - "hash_compatibility": [ - 1985425300 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "key", - "type": "Variant" - }, - { - "name": "transition", - "type": "float", - "meta": "float", - "default_value": "1" - } - ] - }, - { - "name": "track_remove_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_remove_key_at_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "track_set_key_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2060538656, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "track_set_key_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transition", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "track_set_key_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "track_get_key_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_get_key_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_get_key_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 678354945, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_get_key_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_find_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4230953007, - "hash_compatibility": [ - 3245197284, - 3898229885 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "find_mode", - "type": "enum::Animation.FindMode", - "default_value": "0" - }, - { - "name": "limit", - "type": "bool", - "default_value": "false" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "track_set_interpolation_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4112932513, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "interpolation", - "type": "enum::Animation.InterpolationType" - } - ] - }, - { - "name": "track_get_interpolation_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530756894, - "return_value": { - "type": "enum::Animation.InterpolationType" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_set_interpolation_loop_wrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "interpolation", - "type": "bool" - } - ] - }, - { - "name": "track_get_interpolation_loop_wrap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "track_is_compressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "value_track_set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2854058312, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Animation.UpdateMode" - } - ] - }, - { - "name": "value_track_get_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1440326473, - "return_value": { - "type": "enum::Animation.UpdateMode" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "value_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747269075, - "hash_compatibility": [ - 491147702 - ], - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "backward", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "method_track_get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 351665558, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "method_track_get_params", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2345056839, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "bezier_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3656773645, - "hash_compatibility": [ - 1057544502 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "value", - "type": "float", - "meta": "float" - }, - { - "name": "in_handle", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - }, - { - "name": "out_handle", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "bezier_track_set_key_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "bezier_track_set_key_in_handle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1719223284, - "hash_compatibility": [ - 1028302688 - ], - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "in_handle", - "type": "Vector2" - }, - { - "name": "balanced_value_time_ratio", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "bezier_track_set_key_out_handle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1719223284, - "hash_compatibility": [ - 1028302688 - ], - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "out_handle", - "type": "Vector2" - }, - { - "name": "balanced_value_time_ratio", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "bezier_track_get_key_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "bezier_track_get_key_in_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "bezier_track_get_key_out_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "bezier_track_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1900462983, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "audio_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4021027286, - "hash_compatibility": [ - 3489962123 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "stream", - "type": "Resource" - }, - { - "name": "start_offset", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "end_offset", - "type": "float", - "meta": "float", - "default_value": "0" - } - ] - }, - { - "name": "audio_track_set_key_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3886397084, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "stream", - "type": "Resource" - } - ] - }, - { - "name": "audio_track_set_key_start_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "audio_track_set_key_end_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "audio_track_get_key_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 635277205, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "audio_track_get_key_start_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "audio_track_get_key_end_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "audio_track_set_use_blend", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "audio_track_is_use_blend", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "animation_track_insert_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 158676774, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "animation", - "type": "StringName" - } - ] - }, - { - "name": "animation_track_set_key_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 117615382, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "animation", - "type": "StringName" - } - ] - }, - { - "name": "animation_track_get_key_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 351665558, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_marker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135858297, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "remove_marker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_marker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_marker_at_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4079494655, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_next_marker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4079494655, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_prev_marker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4079494655, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_marker_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2349060816, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_marker_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_marker_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3742943038, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_marker_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4260178595, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_loop_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3155355575, - "arguments": [ - { - "name": "loop_mode", - "type": "enum::Animation.LoopMode" - } - ] - }, - { - "name": "get_loop_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1988889481, - "return_value": { - "type": "enum::Animation.LoopMode" - } - }, - { - "name": "set_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size_sec", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "copy_track", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 148001024, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "to_animation", - "type": "Animation" - } - ] - }, - { - "name": "optimize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3303583852, - "arguments": [ - { - "name": "allowed_velocity_err", - "type": "float", - "meta": "float", - "default_value": "0.01" - }, - { - "name": "allowed_angular_err", - "type": "float", - "meta": "float", - "default_value": "0.01" - }, - { - "name": "precision", - "type": "int", - "meta": "int32", - "default_value": "3" - } - ] - }, - { - "name": "compress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3608408117, - "arguments": [ - { - "name": "page_size", - "type": "int", - "meta": "uint32", - "default_value": "8192" - }, - { - "name": "fps", - "type": "int", - "meta": "uint32", - "default_value": "120" - }, - { - "name": "split_tolerance", - "type": "float", - "meta": "float", - "default_value": "4.0" - } - ] - }, - { - "name": "is_capture_included", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "int", - "name": "loop_mode", - "setter": "set_loop_mode", - "getter": "get_loop_mode" - }, - { - "type": "float", - "name": "step", - "setter": "set_step", - "getter": "get_step" - }, - { - "type": "bool", - "name": "capture_included", - "getter": "is_capture_included" - } - ] - }, - { - "name": "AnimationLibrary", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "add_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1811855551, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "animation", - "type": "Animation" - } - ] - }, - { - "name": "remove_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "rename_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "newname", - "type": "StringName" - } - ] - }, - { - "name": "has_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2933122410, - "return_value": { - "type": "Animation" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "get_animation_list_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "signals": [ - { - "name": "animation_added", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - }, - { - "name": "animation_removed", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - }, - { - "name": "animation_renamed", - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "new_name", - "type": "StringName" - } - ] - }, - { - "name": "animation_changed", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "AnimationMixer", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "AnimationCallbackModeProcess", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_CALLBACK_MODE_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "ANIMATION_CALLBACK_MODE_PROCESS_IDLE", - "value": 1 - }, - { - "name": "ANIMATION_CALLBACK_MODE_PROCESS_MANUAL", - "value": 2 - } - ] - }, - { - "name": "AnimationCallbackModeMethod", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_CALLBACK_MODE_METHOD_DEFERRED", - "value": 0 - }, - { - "name": "ANIMATION_CALLBACK_MODE_METHOD_IMMEDIATE", - "value": 1 - } - ] - }, - { - "name": "AnimationCallbackModeDiscrete", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_CALLBACK_MODE_DISCRETE_DOMINANT", - "value": 0 - }, - { - "name": "ANIMATION_CALLBACK_MODE_DISCRETE_RECESSIVE", - "value": 1 - }, - { - "name": "ANIMATION_CALLBACK_MODE_DISCRETE_FORCE_CONTINUOUS", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_post_process_key_value", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2716908335, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "animation", - "type": "Animation" - }, - { - "name": "track", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "object_id", - "type": "int", - "meta": "uint64" - }, - { - "name": "object_sub_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_animation_library", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 618909818, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "library", - "type": "AnimationLibrary" - } - ] - }, - { - "name": "remove_animation_library", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "rename_animation_library", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "newname", - "type": "StringName" - } - ] - }, - { - "name": "has_animation_library", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation_library", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 147342321, - "return_value": { - "type": "AnimationLibrary" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation_library_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "has_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2933122410, - "return_value": { - "type": "Animation" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deterministic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "deterministic", - "type": "bool" - } - ] - }, - { - "name": "is_deterministic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_root_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_callback_mode_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2153733086, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationMixer.AnimationCallbackModeProcess" - } - ] - }, - { - "name": "get_callback_mode_process", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1394468472, - "return_value": { - "type": "enum::AnimationMixer.AnimationCallbackModeProcess" - } - }, - { - "name": "set_callback_mode_method", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 742218271, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationMixer.AnimationCallbackModeMethod" - } - ] - }, - { - "name": "get_callback_mode_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 489449656, - "return_value": { - "type": "enum::AnimationMixer.AnimationCallbackModeMethod" - } - }, - { - "name": "set_callback_mode_discrete", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1998944670, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationMixer.AnimationCallbackModeDiscrete" - } - ] - }, - { - "name": "get_callback_mode_discrete", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3493168860, - "return_value": { - "type": "enum::AnimationMixer.AnimationCallbackModeDiscrete" - } - }, - { - "name": "set_audio_max_polyphony", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polyphony", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_audio_max_polyphony", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_root_motion_track", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root_motion_track", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_root_motion_local", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_root_motion_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_root_motion_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_root_motion_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - }, - { - "name": "get_root_motion_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_root_motion_position_accumulator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_root_motion_rotation_accumulator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - }, - { - "name": "get_root_motion_scale_accumulator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "clear_caches", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1333632127, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "duration", - "type": "float", - "meta": "double" - }, - { - "name": "trans_type", - "type": "enum::Tween.TransitionType", - "default_value": "0" - }, - { - "name": "ease_type", - "type": "enum::Tween.EaseType", - "default_value": "0" - } - ] - }, - { - "name": "set_reset_on_save_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_reset_on_save_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "find_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1559484580, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "animation", - "type": "Animation" - } - ] - }, - { - "name": "find_animation_library", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1559484580, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "animation", - "type": "Animation" - } - ] - } - ], - "signals": [ - { - "name": "animation_list_changed" - }, - { - "name": "animation_libraries_updated" - }, - { - "name": "animation_finished", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - }, - { - "name": "animation_started", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - }, - { - "name": "caches_cleared" - }, - { - "name": "mixer_applied" - }, - { - "name": "mixer_updated" - } - ], - "properties": [ - { - "type": "bool", - "name": "active", - "setter": "set_active", - "getter": "is_active" - }, - { - "type": "bool", - "name": "deterministic", - "setter": "set_deterministic", - "getter": "is_deterministic" - }, - { - "type": "bool", - "name": "reset_on_save", - "setter": "set_reset_on_save_enabled", - "getter": "is_reset_on_save_enabled" - }, - { - "type": "NodePath", - "name": "root_node", - "setter": "set_root_node", - "getter": "get_root_node" - }, - { - "type": "NodePath", - "name": "root_motion_track", - "setter": "set_root_motion_track", - "getter": "get_root_motion_track" - }, - { - "type": "bool", - "name": "root_motion_local", - "setter": "set_root_motion_local", - "getter": "is_root_motion_local" - }, - { - "type": "int", - "name": "audio_max_polyphony", - "setter": "set_audio_max_polyphony", - "getter": "get_audio_max_polyphony" - }, - { - "type": "int", - "name": "callback_mode_process", - "setter": "set_callback_mode_process", - "getter": "get_callback_mode_process" - }, - { - "type": "int", - "name": "callback_mode_method", - "setter": "set_callback_mode_method", - "getter": "get_callback_mode_method" - }, - { - "type": "int", - "name": "callback_mode_discrete", - "setter": "set_callback_mode_discrete", - "getter": "get_callback_mode_discrete" - } - ] - }, - { - "name": "AnimationNode", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "FilterAction", - "is_bitfield": false, - "values": [ - { - "name": "FILTER_IGNORE", - "value": 0 - }, - { - "name": "FILTER_PASS", - "value": 1 - }, - { - "name": "FILTER_STOP", - "value": 2 - }, - { - "name": "FILTER_BLEND", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "_get_child_nodes", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_get_parameter_list", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "_get_child_by_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 625644256, - "return_value": { - "type": "AnimationNode" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "_get_parameter_default_value", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "_is_parameter_read_only", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2139827523, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "seek", - "type": "bool" - }, - { - "name": "is_external_seeking", - "type": "bool" - }, - { - "name": "test_only", - "type": "bool" - } - ] - }, - { - "name": "_get_caption", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_has_filter", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "remove_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_input_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 215573526, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_input_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_filter_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3868023870, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_path_filtered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 861721659, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "set_filter_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_filter_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_processing_animation_tree_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "is_process_testing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "blend_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1630801826, - "hash_compatibility": [ - 11797022 - ], - "arguments": [ - { - "name": "animation", - "type": "StringName" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "delta", - "type": "float", - "meta": "double" - }, - { - "name": "seeked", - "type": "bool" - }, - { - "name": "is_external_seeking", - "type": "bool" - }, - { - "name": "blend", - "type": "float", - "meta": "float" - }, - { - "name": "looped_flag", - "type": "enum::Animation.LoopedFlag", - "default_value": "0" - } - ] - }, - { - "name": "blend_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1746075988, - "hash_compatibility": [ - 263389446 - ], - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "node", - "type": "AnimationNode" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "seek", - "type": "bool" - }, - { - "name": "is_external_seeking", - "type": "bool" - }, - { - "name": "blend", - "type": "float", - "meta": "float" - }, - { - "name": "filter", - "type": "enum::AnimationNode.FilterAction", - "default_value": "0" - }, - { - "name": "sync", - "type": "bool", - "default_value": "true" - }, - { - "name": "test_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "blend_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1361527350, - "hash_compatibility": [ - 2709059328 - ], - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "input_index", - "type": "int", - "meta": "int32" - }, - { - "name": "time", - "type": "float", - "meta": "double" - }, - { - "name": "seek", - "type": "bool" - }, - { - "name": "is_external_seeking", - "type": "bool" - }, - { - "name": "blend", - "type": "float", - "meta": "float" - }, - { - "name": "filter", - "type": "enum::AnimationNode.FilterAction", - "default_value": "0" - }, - { - "name": "sync", - "type": "bool", - "default_value": "true" - }, - { - "name": "test_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - } - ], - "signals": [ - { - "name": "tree_changed" - }, - { - "name": "node_updated", - "arguments": [ - { - "name": "object_id", - "type": "int" - } - ] - }, - { - "name": "animation_node_renamed", - "arguments": [ - { - "name": "object_id", - "type": "int" - }, - { - "name": "old_name", - "type": "String" - }, - { - "name": "new_name", - "type": "String" - } - ] - }, - { - "name": "animation_node_removed", - "arguments": [ - { - "name": "object_id", - "type": "int" - }, - { - "name": "node_name", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "filter_enabled", - "setter": "set_filter_enabled", - "getter": "is_filter_enabled" - }, - { - "type": "Array", - "name": "filters", - "setter": "_set_filters", - "getter": "_get_filters" - } - ] - }, - { - "name": "AnimationNodeAdd2", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core" - }, - { - "name": "AnimationNodeAdd3", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core" - }, - { - "name": "AnimationNodeAnimation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationRootNode", - "api_type": "core", - "enums": [ - { - "name": "PlayMode", - "is_bitfield": false, - "values": [ - { - "name": "PLAY_MODE_FORWARD", - "value": 0 - }, - { - "name": "PLAY_MODE_BACKWARD", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_play_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3347718873, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeAnimation.PlayMode" - } - ] - }, - { - "name": "get_play_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2061244637, - "return_value": { - "type": "enum::AnimationNodeAnimation.PlayMode" - } - }, - { - "name": "set_advance_on_start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "advance_on_start", - "type": "bool" - } - ] - }, - { - "name": "is_advance_on_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_custom_timeline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_custom_timeline", - "type": "bool" - } - ] - }, - { - "name": "is_using_custom_timeline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_timeline_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "timeline_length", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_timeline_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_stretch_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "stretch_time_scale", - "type": "bool" - } - ] - }, - { - "name": "is_stretching_time_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_start_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "start_offset", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_start_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_loop_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3155355575, - "arguments": [ - { - "name": "loop_mode", - "type": "enum::Animation.LoopMode" - } - ] - }, - { - "name": "get_loop_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1988889481, - "return_value": { - "type": "enum::Animation.LoopMode" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "animation", - "setter": "set_animation", - "getter": "get_animation" - }, - { - "type": "int", - "name": "play_mode", - "setter": "set_play_mode", - "getter": "get_play_mode" - }, - { - "type": "bool", - "name": "advance_on_start", - "setter": "set_advance_on_start", - "getter": "is_advance_on_start" - }, - { - "type": "bool", - "name": "use_custom_timeline", - "setter": "set_use_custom_timeline", - "getter": "is_using_custom_timeline" - }, - { - "type": "float", - "name": "timeline_length", - "setter": "set_timeline_length", - "getter": "get_timeline_length" - }, - { - "type": "bool", - "name": "stretch_time_scale", - "setter": "set_stretch_time_scale", - "getter": "is_stretching_time_scale" - }, - { - "type": "float", - "name": "start_offset", - "setter": "set_start_offset", - "getter": "get_start_offset" - }, - { - "type": "int", - "name": "loop_mode", - "setter": "set_loop_mode", - "getter": "get_loop_mode" - } - ] - }, - { - "name": "AnimationNodeBlend2", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core" - }, - { - "name": "AnimationNodeBlend3", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core" - }, - { - "name": "AnimationNodeBlendSpace1D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationRootNode", - "api_type": "core", - "enums": [ - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_INTERPOLATED", - "value": 0 - }, - { - "name": "BLEND_MODE_DISCRETE", - "value": 1 - }, - { - "name": "BLEND_MODE_DISCRETE_CARRY", - "value": 2 - } - ] - }, - { - "name": "SyncMode", - "is_bitfield": false, - "values": [ - { - "name": "SYNC_MODE_NONE", - "value": 0 - }, - { - "name": "SYNC_MODE_INDEPENDENT", - "value": 1 - }, - { - "name": "SYNC_MODE_CYCLIC_MUTABLE", - "value": 2 - }, - { - "name": "SYNC_MODE_CYCLIC_CONSTANT", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "add_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 398361042, - "hash_compatibility": [ - 285050433, - 4069484420 - ], - "arguments": [ - { - "name": "node", - "type": "AnimationRootNode" - }, - { - "name": "pos", - "type": "float", - "meta": "float" - }, - { - "name": "at_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "set_blend_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "pos", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_blend_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_point_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4240341528, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "node", - "type": "AnimationRootNode" - } - ] - }, - { - "name": "get_blend_point_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 665599029, - "return_value": { - "type": "AnimationRootNode" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_point_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_blend_point_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "find_blend_point_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_blend_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "reorder_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_min_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min_space", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_space", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_snap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "snap", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_value_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_value_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2600869457, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeBlendSpace1D.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1547667849, - "return_value": { - "type": "enum::AnimationNodeBlendSpace1D.BlendMode" - } - }, - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sync_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1065895142, - "arguments": [ - { - "name": "sync_mode", - "type": "enum::AnimationNodeBlendSpace1D.SyncMode" - } - ] - }, - { - "name": "get_sync_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132474921, - "return_value": { - "type": "enum::AnimationNodeBlendSpace1D.SyncMode" - } - }, - { - "name": "set_cyclic_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_cyclic_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - } - ], - "properties": [ - { - "type": "float", - "name": "min_space", - "setter": "set_min_space", - "getter": "get_min_space" - }, - { - "type": "float", - "name": "max_space", - "setter": "set_max_space", - "getter": "get_max_space" - }, - { - "type": "float", - "name": "snap", - "setter": "set_snap", - "getter": "get_snap" - }, - { - "type": "String", - "name": "value_label", - "setter": "set_value_label", - "getter": "get_value_label" - }, - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - }, - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync" - }, - { - "type": "int", - "name": "sync_mode", - "setter": "set_sync_mode", - "getter": "get_sync_mode" - }, - { - "type": "float", - "name": "cyclic_length", - "setter": "set_cyclic_length", - "getter": "get_cyclic_length" - } - ] - }, - { - "name": "AnimationNodeBlendSpace2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationRootNode", - "api_type": "core", - "enums": [ - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_INTERPOLATED", - "value": 0 - }, - { - "name": "BLEND_MODE_DISCRETE", - "value": 1 - }, - { - "name": "BLEND_MODE_DISCRETE_CARRY", - "value": 2 - } - ] - }, - { - "name": "SyncMode", - "is_bitfield": false, - "values": [ - { - "name": "SYNC_MODE_NONE", - "value": 0 - }, - { - "name": "SYNC_MODE_INDEPENDENT", - "value": 1 - }, - { - "name": "SYNC_MODE_CYCLIC_MUTABLE", - "value": 2 - }, - { - "name": "SYNC_MODE_CYCLIC_CONSTANT", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "add_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 768750458, - "hash_compatibility": [ - 402261981, - 1533588937 - ], - "arguments": [ - { - "name": "node", - "type": "AnimationRootNode" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "at_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "set_blend_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "pos", - "type": "Vector2" - } - ] - }, - { - "name": "get_blend_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_point_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4240341528, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "node", - "type": "AnimationRootNode" - } - ] - }, - { - "name": "get_blend_point_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 665599029, - "return_value": { - "type": "AnimationRootNode" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_point_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_blend_point_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "find_blend_point_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_blend_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "reorder_blend_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_triangle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 753017335, - "hash_compatibility": [ - 642454959 - ], - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - }, - { - "name": "z", - "type": "int", - "meta": "int32" - }, - { - "name": "at_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_triangle_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "triangle", - "type": "int", - "meta": "int32" - }, - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_triangle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "triangle", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_triangle_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_min_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "min_space", - "type": "Vector2" - } - ] - }, - { - "name": "get_min_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_max_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "max_space", - "type": "Vector2" - } - ] - }, - { - "name": "get_max_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_snap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "snap", - "type": "Vector2" - } - ] - }, - { - "name": "get_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_x_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_x_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_y_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_y_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_auto_triangles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_auto_triangles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 81193520, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeBlendSpace2D.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1398433632, - "return_value": { - "type": "enum::AnimationNodeBlendSpace2D.BlendMode" - } - }, - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sync_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2615784488, - "arguments": [ - { - "name": "sync_mode", - "type": "enum::AnimationNodeBlendSpace2D.SyncMode" - } - ] - }, - { - "name": "get_sync_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 242032665, - "return_value": { - "type": "enum::AnimationNodeBlendSpace2D.SyncMode" - } - }, - { - "name": "set_cyclic_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_cyclic_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - } - ], - "signals": [ - { - "name": "triangles_updated" - } - ], - "properties": [ - { - "type": "bool", - "name": "auto_triangles", - "setter": "set_auto_triangles", - "getter": "get_auto_triangles" - }, - { - "type": "PackedInt32Array", - "name": "triangles", - "setter": "_set_triangles", - "getter": "_get_triangles" - }, - { - "type": "Vector2", - "name": "min_space", - "setter": "set_min_space", - "getter": "get_min_space" - }, - { - "type": "Vector2", - "name": "max_space", - "setter": "set_max_space", - "getter": "get_max_space" - }, - { - "type": "Vector2", - "name": "snap", - "setter": "set_snap", - "getter": "get_snap" - }, - { - "type": "String", - "name": "x_label", - "setter": "set_x_label", - "getter": "get_x_label" - }, - { - "type": "String", - "name": "y_label", - "setter": "set_y_label", - "getter": "get_y_label" - }, - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - }, - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync" - }, - { - "type": "int", - "name": "sync_mode", - "setter": "set_sync_mode", - "getter": "get_sync_mode" - }, - { - "type": "float", - "name": "cyclic_length", - "setter": "set_cyclic_length", - "getter": "get_cyclic_length" - } - ] - }, - { - "name": "AnimationNodeBlendTree", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationRootNode", - "api_type": "core", - "constants": [ - { - "name": "CONNECTION_OK", - "value": 0 - }, - { - "name": "CONNECTION_ERROR_NO_INPUT", - "value": 1 - }, - { - "name": "CONNECTION_ERROR_NO_INPUT_INDEX", - "value": 2 - }, - { - "name": "CONNECTION_ERROR_NO_OUTPUT", - "value": 3 - }, - { - "name": "CONNECTION_ERROR_SAME_NODE", - "value": 4 - }, - { - "name": "CONNECTION_ERROR_CONNECTION_EXISTS", - "value": 5 - } - ], - "methods": [ - { - "name": "add_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1980270704, - "hash_compatibility": [ - 2055804584 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "node", - "type": "AnimationNode" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "get_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 625644256, - "return_value": { - "type": "AnimationNode" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "rename_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "new_name", - "type": "StringName" - } - ] - }, - { - "name": "has_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "connect_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2168001410, - "arguments": [ - { - "name": "input_node", - "type": "StringName" - }, - { - "name": "input_index", - "type": "int", - "meta": "int32" - }, - { - "name": "output_node", - "type": "StringName" - } - ] - }, - { - "name": "disconnect_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "input_node", - "type": "StringName" - }, - { - "name": "input_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "set_node_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1999414630, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_node_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3100822709, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_graph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_graph_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "signals": [ - { - "name": "node_changed", - "arguments": [ - { - "name": "node_name", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "graph_offset", - "setter": "set_graph_offset", - "getter": "get_graph_offset" - } - ] - }, - { - "name": "AnimationNodeExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "_process_animation_node", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 912931771, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "playback_info", - "type": "PackedFloat64Array" - }, - { - "name": "test_only", - "type": "bool" - } - ] - }, - { - "name": "is_looping", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2035584311, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "node_info", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_remaining_time", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2851904656, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "node_info", - "type": "PackedFloat32Array" - }, - { - "name": "break_loop", - "type": "bool" - } - ] - } - ] - }, - { - "name": "AnimationNodeOneShot", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core", - "enums": [ - { - "name": "OneShotRequest", - "is_bitfield": false, - "values": [ - { - "name": "ONE_SHOT_REQUEST_NONE", - "value": 0 - }, - { - "name": "ONE_SHOT_REQUEST_FIRE", - "value": 1 - }, - { - "name": "ONE_SHOT_REQUEST_ABORT", - "value": 2 - }, - { - "name": "ONE_SHOT_REQUEST_FADE_OUT", - "value": 3 - } - ] - }, - { - "name": "MixMode", - "is_bitfield": false, - "values": [ - { - "name": "MIX_MODE_BLEND", - "value": 0 - }, - { - "name": "MIX_MODE_ADD", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_fadein_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_fadein_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_fadein_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_fadein_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_fadeout_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_fadeout_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_fadeout_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_fadeout_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_break_loop_at_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_loop_broken_at_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_abort_on_reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_aborted_on_reset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_autorestart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "has_autorestart", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_autorestart_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_autorestart_delay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_autorestart_random_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_autorestart_random_delay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_mix_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1018899799, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeOneShot.MixMode" - } - ] - }, - { - "name": "get_mix_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3076550526, - "return_value": { - "type": "enum::AnimationNodeOneShot.MixMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "mix_mode", - "setter": "set_mix_mode", - "getter": "get_mix_mode" - }, - { - "type": "float", - "name": "fadein_time", - "setter": "set_fadein_time", - "getter": "get_fadein_time" - }, - { - "type": "Curve", - "name": "fadein_curve", - "setter": "set_fadein_curve", - "getter": "get_fadein_curve" - }, - { - "type": "float", - "name": "fadeout_time", - "setter": "set_fadeout_time", - "getter": "get_fadeout_time" - }, - { - "type": "Curve", - "name": "fadeout_curve", - "setter": "set_fadeout_curve", - "getter": "get_fadeout_curve" - }, - { - "type": "bool", - "name": "break_loop_at_end", - "setter": "set_break_loop_at_end", - "getter": "is_loop_broken_at_end" - }, - { - "type": "bool", - "name": "abort_on_reset", - "setter": "set_abort_on_reset", - "getter": "is_aborted_on_reset" - }, - { - "type": "bool", - "name": "autorestart", - "setter": "set_autorestart", - "getter": "has_autorestart" - }, - { - "type": "float", - "name": "autorestart_delay", - "setter": "set_autorestart_delay", - "getter": "get_autorestart_delay" - }, - { - "type": "float", - "name": "autorestart_random_delay", - "setter": "set_autorestart_random_delay", - "getter": "get_autorestart_random_delay" - } - ] - }, - { - "name": "AnimationNodeOutput", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core" - }, - { - "name": "AnimationNodeStateMachine", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationRootNode", - "api_type": "core", - "enums": [ - { - "name": "StateMachineType", - "is_bitfield": false, - "values": [ - { - "name": "STATE_MACHINE_TYPE_ROOT", - "value": 0 - }, - { - "name": "STATE_MACHINE_TYPE_NESTED", - "value": 1 - }, - { - "name": "STATE_MACHINE_TYPE_GROUPED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1980270704, - "hash_compatibility": [ - 2055804584 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "node", - "type": "AnimationNode" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "replace_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2559412862, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "node", - "type": "AnimationNode" - } - ] - }, - { - "name": "get_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 625644256, - "return_value": { - "type": "AnimationNode" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "rename_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "new_name", - "type": "StringName" - } - ] - }, - { - "name": "has_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_node_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 739213945, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "node", - "type": "AnimationNode" - } - ] - }, - { - "name": "get_node_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "set_node_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1999414630, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_node_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3100822709, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "StringName" - }, - { - "name": "to", - "type": "StringName" - } - ] - }, - { - "name": "add_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 795486887, - "arguments": [ - { - "name": "from", - "type": "StringName" - }, - { - "name": "to", - "type": "StringName" - }, - { - "name": "transition", - "type": "AnimationNodeStateMachineTransition" - } - ] - }, - { - "name": "get_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4192381260, - "return_value": { - "type": "AnimationNodeStateMachineTransition" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "remove_transition_by_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "from", - "type": "StringName" - }, - { - "name": "to", - "type": "StringName" - } - ] - }, - { - "name": "set_graph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_graph_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_state_machine_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2584759088, - "arguments": [ - { - "name": "state_machine_type", - "type": "enum::AnimationNodeStateMachine.StateMachineType" - } - ] - }, - { - "name": "get_state_machine_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1140726469, - "return_value": { - "type": "enum::AnimationNodeStateMachine.StateMachineType" - } - }, - { - "name": "set_allow_transition_to_self", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_allow_transition_to_self", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_reset_ends", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "are_ends_reset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "state_machine_type", - "setter": "set_state_machine_type", - "getter": "get_state_machine_type" - }, - { - "type": "bool", - "name": "allow_transition_to_self", - "setter": "set_allow_transition_to_self", - "getter": "is_allow_transition_to_self" - }, - { - "type": "bool", - "name": "reset_ends", - "setter": "set_reset_ends", - "getter": "are_ends_reset" - } - ] - }, - { - "name": "AnimationNodeStateMachinePlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "travel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3823612587, - "hash_compatibility": [ - 3683006648 - ], - "arguments": [ - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "reset_on_teleport", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3823612587, - "hash_compatibility": [ - 3683006648 - ], - "arguments": [ - { - "name": "node", - "type": "StringName" - }, - { - "name": "reset", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_current_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_current_play_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_current_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_fading_from_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_fading_from_play_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_fading_from_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_fading_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_fading_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_travel_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - } - ], - "signals": [ - { - "name": "state_started", - "arguments": [ - { - "name": "state", - "type": "StringName" - } - ] - }, - { - "name": "state_finished", - "arguments": [ - { - "name": "state", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "AnimationNodeStateMachineTransition", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "SwitchMode", - "is_bitfield": false, - "values": [ - { - "name": "SWITCH_MODE_IMMEDIATE", - "value": 0 - }, - { - "name": "SWITCH_MODE_SYNC", - "value": 1 - }, - { - "name": "SWITCH_MODE_AT_END", - "value": 2 - } - ] - }, - { - "name": "AdvanceMode", - "is_bitfield": false, - "values": [ - { - "name": "ADVANCE_MODE_DISABLED", - "value": 0 - }, - { - "name": "ADVANCE_MODE_ENABLED", - "value": 1 - }, - { - "name": "ADVANCE_MODE_AUTO", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_switch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074906633, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeStateMachineTransition.SwitchMode" - } - ] - }, - { - "name": "get_switch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138562085, - "return_value": { - "type": "enum::AnimationNodeStateMachineTransition.SwitchMode" - } - }, - { - "name": "set_advance_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1210869868, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationNodeStateMachineTransition.AdvanceMode" - } - ] - }, - { - "name": "get_advance_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 61101689, - "return_value": { - "type": "enum::AnimationNodeStateMachineTransition.AdvanceMode" - } - }, - { - "name": "set_advance_condition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_advance_condition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_xfade_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_xfade_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_xfade_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_xfade_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_break_loop_at_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_loop_broken_at_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "reset", - "type": "bool" - } - ] - }, - { - "name": "is_reset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_advance_expression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_advance_expression", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "signals": [ - { - "name": "advance_condition_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "xfade_time", - "setter": "set_xfade_time", - "getter": "get_xfade_time" - }, - { - "type": "Curve", - "name": "xfade_curve", - "setter": "set_xfade_curve", - "getter": "get_xfade_curve" - }, - { - "type": "bool", - "name": "break_loop_at_end", - "setter": "set_break_loop_at_end", - "getter": "is_loop_broken_at_end" - }, - { - "type": "bool", - "name": "reset", - "setter": "set_reset", - "getter": "is_reset" - }, - { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority" - }, - { - "type": "int", - "name": "switch_mode", - "setter": "set_switch_mode", - "getter": "get_switch_mode" - }, - { - "type": "int", - "name": "advance_mode", - "setter": "set_advance_mode", - "getter": "get_advance_mode" - }, - { - "type": "StringName", - "name": "advance_condition", - "setter": "set_advance_condition", - "getter": "get_advance_condition" - }, - { - "type": "String", - "name": "advance_expression", - "setter": "set_advance_expression", - "getter": "get_advance_expression" - } - ] - }, - { - "name": "AnimationNodeSub2", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core" - }, - { - "name": "AnimationNodeSync", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync" - } - ] - }, - { - "name": "AnimationNodeTimeScale", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core" - }, - { - "name": "AnimationNodeTimeSeek", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_explicit_elapse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_explicit_elapse", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "explicit_elapse", - "setter": "set_explicit_elapse", - "getter": "is_explicit_elapse" - } - ] - }, - { - "name": "AnimationNodeTransition", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNodeSync", - "api_type": "core", - "methods": [ - { - "name": "set_input_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "input_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_input_as_auto_advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_input_set_as_auto_advance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_input_break_loop_at_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_input_loop_broken_at_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_input_reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_input_reset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_xfade_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_xfade_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_xfade_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_xfade_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_allow_transition_to_self", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_allow_transition_to_self", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "xfade_time", - "setter": "set_xfade_time", - "getter": "get_xfade_time" - }, - { - "type": "Curve", - "name": "xfade_curve", - "setter": "set_xfade_curve", - "getter": "get_xfade_curve" - }, - { - "type": "bool", - "name": "allow_transition_to_self", - "setter": "set_allow_transition_to_self", - "getter": "is_allow_transition_to_self" - }, - { - "type": "int", - "name": "input_count", - "setter": "set_input_count", - "getter": "get_input_count" - } - ] - }, - { - "name": "AnimationPlayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "AnimationMixer", - "api_type": "core", - "enums": [ - { - "name": "AnimationProcessCallback", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "ANIMATION_PROCESS_IDLE", - "value": 1 - }, - { - "name": "ANIMATION_PROCESS_MANUAL", - "value": 2 - } - ] - }, - { - "name": "AnimationMethodCallMode", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_METHOD_CALL_DEFERRED", - "value": 0 - }, - { - "name": "ANIMATION_METHOD_CALL_IMMEDIATE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "animation_set_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "animation_from", - "type": "StringName" - }, - { - "name": "animation_to", - "type": "StringName" - } - ] - }, - { - "name": "animation_get_next", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "animation_from", - "type": "StringName" - } - ] - }, - { - "name": "set_blend_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3231131886, - "arguments": [ - { - "name": "animation_from", - "type": "StringName" - }, - { - "name": "animation_to", - "type": "StringName" - }, - { - "name": "sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_blend_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958752504, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "animation_from", - "type": "StringName" - }, - { - "name": "animation_to", - "type": "StringName" - } - ] - }, - { - "name": "set_default_blend_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_default_blend_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_auto_capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "auto_capture", - "type": "bool" - } - ] - }, - { - "name": "is_auto_capture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_capture_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "auto_capture_duration", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_auto_capture_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_auto_capture_transition_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1058637742, - "arguments": [ - { - "name": "auto_capture_transition_type", - "type": "enum::Tween.TransitionType" - } - ] - }, - { - "name": "get_auto_capture_transition_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3842314528, - "return_value": { - "type": "enum::Tween.TransitionType" - } - }, - { - "name": "set_auto_capture_ease_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1208105857, - "arguments": [ - { - "name": "auto_capture_ease_type", - "type": "enum::Tween.EaseType" - } - ] - }, - { - "name": "get_auto_capture_ease_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 631880200, - "return_value": { - "type": "enum::Tween.EaseType" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3118260607, - "hash_compatibility": [ - 3697947785, - 2221377757 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "play_section_with_markers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1421431412, - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "start_marker", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "end_marker", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "play_section", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 284774635, - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "start_time", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "end_time", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "play_backwards", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787282401, - "hash_compatibility": [ - 3890664824 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - } - ] - }, - { - "name": "play_section_with_markers_backwards", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 910195100, - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "start_marker", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "end_marker", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - } - ] - }, - { - "name": "play_section_backwards", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 831955981, - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "start_time", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "end_time", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - } - ] - }, - { - "name": "play_with_capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1572969103, - "hash_compatibility": [ - 3180464118 - ], - "arguments": [ - { - "name": "name", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "duration", - "type": "float", - "meta": "double", - "default_value": "-1.0" - }, - { - "name": "custom_blend", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "custom_speed", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "from_end", - "type": "bool", - "default_value": "false" - }, - { - "name": "trans_type", - "type": "enum::Tween.TransitionType", - "default_value": "0" - }, - { - "name": "ease_type", - "type": "enum::Tween.EaseType", - "default_value": "0" - } - ] - }, - { - "name": "pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "arguments": [ - { - "name": "keep_state", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_animation_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_current_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "animation", - "type": "StringName" - } - ] - }, - { - "name": "get_current_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "hash_compatibility": [ - 201670096 - ], - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_assigned_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "animation", - "type": "StringName" - } - ] - }, - { - "name": "get_assigned_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "hash_compatibility": [ - 201670096 - ], - "return_value": { - "type": "StringName" - } - }, - { - "name": "queue", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_queue", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "hash_compatibility": [ - 2981934095 - ], - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "clear_queue", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_playing_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_autoplay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "hash_compatibility": [ - 201670096 - ], - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_movie_quit_on_finish_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_movie_quit_on_finish_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_current_animation_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_current_animation_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_section_with_markers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 794792241, - "arguments": [ - { - "name": "start_marker", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "end_marker", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "set_section", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3749779719, - "arguments": [ - { - "name": "start_time", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "end_time", - "type": "float", - "meta": "double", - "default_value": "-1" - } - ] - }, - { - "name": "reset_section", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_section_start_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_section_end_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "has_section", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1807872683, - "hash_compatibility": [ - 2087892650 - ], - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "double" - }, - { - "name": "update", - "type": "bool", - "default_value": "false" - }, - { - "name": "update_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_process_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1663839457, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationPlayer.AnimationProcessCallback" - } - ] - }, - { - "name": "get_process_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4207496604, - "return_value": { - "type": "enum::AnimationPlayer.AnimationProcessCallback" - } - }, - { - "name": "set_method_call_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3413514846, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationPlayer.AnimationMethodCallMode" - } - ] - }, - { - "name": "get_method_call_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3583380054, - "return_value": { - "type": "enum::AnimationPlayer.AnimationMethodCallMode" - } - }, - { - "name": "set_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - } - ], - "signals": [ - { - "name": "current_animation_changed", - "arguments": [ - { - "name": "anim_name", - "type": "StringName" - } - ] - }, - { - "name": "animation_changed", - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "new_name", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "StringName", - "name": "current_animation", - "setter": "set_current_animation", - "getter": "get_current_animation" - }, - { - "type": "StringName", - "name": "assigned_animation", - "setter": "set_assigned_animation", - "getter": "get_assigned_animation" - }, - { - "type": "StringName", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "get_autoplay" - }, - { - "type": "float", - "name": "current_animation_length", - "getter": "get_current_animation_length" - }, - { - "type": "float", - "name": "current_animation_position", - "getter": "get_current_animation_position" - }, - { - "type": "bool", - "name": "playback_auto_capture", - "setter": "set_auto_capture", - "getter": "is_auto_capture" - }, - { - "type": "float", - "name": "playback_auto_capture_duration", - "setter": "set_auto_capture_duration", - "getter": "get_auto_capture_duration" - }, - { - "type": "int", - "name": "playback_auto_capture_transition_type", - "setter": "set_auto_capture_transition_type", - "getter": "get_auto_capture_transition_type" - }, - { - "type": "int", - "name": "playback_auto_capture_ease_type", - "setter": "set_auto_capture_ease_type", - "getter": "get_auto_capture_ease_type" - }, - { - "type": "float", - "name": "playback_default_blend_time", - "setter": "set_default_blend_time", - "getter": "get_default_blend_time" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "bool", - "name": "movie_quit_on_finish", - "setter": "set_movie_quit_on_finish_enabled", - "getter": "is_movie_quit_on_finish_enabled" - } - ] - }, - { - "name": "AnimationRootNode", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core" - }, - { - "name": "AnimationTree", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "AnimationMixer", - "api_type": "core", - "enums": [ - { - "name": "AnimationProcessCallback", - "is_bitfield": false, - "values": [ - { - "name": "ANIMATION_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "ANIMATION_PROCESS_IDLE", - "value": 1 - }, - { - "name": "ANIMATION_PROCESS_MANUAL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_tree_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2581683800, - "hash_compatibility": [ - 712869711 - ], - "arguments": [ - { - "name": "animation_node", - "type": "AnimationRootNode" - } - ] - }, - { - "name": "get_tree_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4110384712, - "hash_compatibility": [ - 1462070895 - ], - "return_value": { - "type": "AnimationRootNode" - } - }, - { - "name": "set_advance_expression_base_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_advance_expression_base_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_animation_player", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_animation_player", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_process_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1723352826, - "arguments": [ - { - "name": "mode", - "type": "enum::AnimationTree.AnimationProcessCallback" - } - ] - }, - { - "name": "get_process_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 891317132, - "return_value": { - "type": "enum::AnimationTree.AnimationProcessCallback" - } - } - ], - "signals": [ - { - "name": "animation_player_changed" - } - ], - "properties": [ - { - "type": "AnimationRootNode", - "name": "tree_root", - "setter": "set_tree_root", - "getter": "get_tree_root" - }, - { - "type": "NodePath", - "name": "advance_expression_base_node", - "setter": "set_advance_expression_base_node", - "getter": "get_advance_expression_base_node" - }, - { - "type": "NodePath", - "name": "anim_player", - "setter": "set_animation_player", - "getter": "get_animation_player" - } - ] - }, - { - "name": "Area2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CollisionObject2D", - "api_type": "core", - "enums": [ - { - "name": "SpaceOverride", - "is_bitfield": false, - "values": [ - { - "name": "SPACE_OVERRIDE_DISABLED", - "value": 0 - }, - { - "name": "SPACE_OVERRIDE_COMBINE", - "value": 1 - }, - { - "name": "SPACE_OVERRIDE_COMBINE_REPLACE", - "value": 2 - }, - { - "name": "SPACE_OVERRIDE_REPLACE", - "value": 3 - }, - { - "name": "SPACE_OVERRIDE_REPLACE_COMBINE", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_gravity_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2879900038, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area2D.SpaceOverride" - } - ] - }, - { - "name": "get_gravity_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3990256304, - "return_value": { - "type": "enum::Area2D.SpaceOverride" - } - }, - { - "name": "set_gravity_is_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_gravity_a_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_gravity_point_unit_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity_point_unit_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gravity_point_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "center", - "type": "Vector2" - } - ] - }, - { - "name": "get_gravity_point_center", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_gravity_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "get_gravity_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gravity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2879900038, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area2D.SpaceOverride" - } - ] - }, - { - "name": "get_linear_damp_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3990256304, - "return_value": { - "type": "enum::Area2D.SpaceOverride" - } - }, - { - "name": "set_angular_damp_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2879900038, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area2D.SpaceOverride" - } - ] - }, - { - "name": "get_angular_damp_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3990256304, - "return_value": { - "type": "enum::Area2D.SpaceOverride" - } - }, - { - "name": "set_linear_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_monitoring", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_monitoring", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_monitorable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_monitorable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_overlapping_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node2D" - } - }, - { - "name": "get_overlapping_areas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Area2D" - } - }, - { - "name": "has_overlapping_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_overlapping_areas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "overlaps_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "overlaps_area", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "area", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "set_audio_bus_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_audio_bus_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_audio_bus_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_overriding_audio_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node2D" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node2D" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node2D" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node2D" - } - ] - }, - { - "name": "area_shape_entered", - "arguments": [ - { - "name": "area_rid", - "type": "RID" - }, - { - "name": "area", - "type": "Area2D" - }, - { - "name": "area_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "area_shape_exited", - "arguments": [ - { - "name": "area_rid", - "type": "RID" - }, - { - "name": "area", - "type": "Area2D" - }, - { - "name": "area_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "area_entered", - "arguments": [ - { - "name": "area", - "type": "Area2D" - } - ] - }, - { - "name": "area_exited", - "arguments": [ - { - "name": "area", - "type": "Area2D" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "monitoring", - "setter": "set_monitoring", - "getter": "is_monitoring" - }, - { - "type": "bool", - "name": "monitorable", - "setter": "set_monitorable", - "getter": "is_monitorable" - }, - { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority" - }, - { - "type": "int", - "name": "gravity_space_override", - "setter": "set_gravity_space_override_mode", - "getter": "get_gravity_space_override_mode" - }, - { - "type": "bool", - "name": "gravity_point", - "setter": "set_gravity_is_point", - "getter": "is_gravity_a_point" - }, - { - "type": "float", - "name": "gravity_point_unit_distance", - "setter": "set_gravity_point_unit_distance", - "getter": "get_gravity_point_unit_distance" - }, - { - "type": "Vector2", - "name": "gravity_point_center", - "setter": "set_gravity_point_center", - "getter": "get_gravity_point_center" - }, - { - "type": "Vector2", - "name": "gravity_direction", - "setter": "set_gravity_direction", - "getter": "get_gravity_direction" - }, - { - "type": "float", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - }, - { - "type": "int", - "name": "linear_damp_space_override", - "setter": "set_linear_damp_space_override_mode", - "getter": "get_linear_damp_space_override_mode" - }, - { - "type": "float", - "name": "linear_damp", - "setter": "set_linear_damp", - "getter": "get_linear_damp" - }, - { - "type": "int", - "name": "angular_damp_space_override", - "setter": "set_angular_damp_space_override_mode", - "getter": "get_angular_damp_space_override_mode" - }, - { - "type": "float", - "name": "angular_damp", - "setter": "set_angular_damp", - "getter": "get_angular_damp" - }, - { - "type": "bool", - "name": "audio_bus_override", - "setter": "set_audio_bus_override", - "getter": "is_overriding_audio_bus" - }, - { - "type": "StringName", - "name": "audio_bus_name", - "setter": "set_audio_bus_name", - "getter": "get_audio_bus_name" - } - ] - }, - { - "name": "Area3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CollisionObject3D", - "api_type": "core", - "enums": [ - { - "name": "SpaceOverride", - "is_bitfield": false, - "values": [ - { - "name": "SPACE_OVERRIDE_DISABLED", - "value": 0 - }, - { - "name": "SPACE_OVERRIDE_COMBINE", - "value": 1 - }, - { - "name": "SPACE_OVERRIDE_COMBINE_REPLACE", - "value": 2 - }, - { - "name": "SPACE_OVERRIDE_REPLACE", - "value": 3 - }, - { - "name": "SPACE_OVERRIDE_REPLACE_COMBINE", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_gravity_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311433571, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area3D.SpaceOverride" - } - ] - }, - { - "name": "get_gravity_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 958191869, - "return_value": { - "type": "enum::Area3D.SpaceOverride" - } - }, - { - "name": "set_gravity_is_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_gravity_a_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_gravity_point_unit_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity_point_unit_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gravity_point_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "center", - "type": "Vector3" - } - ] - }, - { - "name": "get_gravity_point_center", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_gravity_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "direction", - "type": "Vector3" - } - ] - }, - { - "name": "get_gravity_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gravity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311433571, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area3D.SpaceOverride" - } - ] - }, - { - "name": "get_linear_damp_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 958191869, - "return_value": { - "type": "enum::Area3D.SpaceOverride" - } - }, - { - "name": "set_angular_damp_space_override_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311433571, - "arguments": [ - { - "name": "space_override_mode", - "type": "enum::Area3D.SpaceOverride" - } - ] - }, - { - "name": "get_angular_damp_space_override_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 958191869, - "return_value": { - "type": "enum::Area3D.SpaceOverride" - } - }, - { - "name": "set_angular_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_wind_force_magnitude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "wind_force_magnitude", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wind_force_magnitude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wind_attenuation_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "wind_attenuation_factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wind_attenuation_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wind_source_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "wind_source_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_wind_source_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_monitorable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_monitorable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_monitoring", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_monitoring", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_overlapping_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node3D" - } - }, - { - "name": "get_overlapping_areas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Area3D" - } - }, - { - "name": "has_overlapping_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_overlapping_areas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "overlaps_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "overlaps_area", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "area", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "set_audio_bus_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_overriding_audio_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_audio_bus_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_audio_bus_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_use_reverb_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_reverb_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_reverb_bus_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_reverb_bus_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_reverb_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_reverb_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_reverb_uniformity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_reverb_uniformity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node3D" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node3D" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node3D" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node3D" - } - ] - }, - { - "name": "area_shape_entered", - "arguments": [ - { - "name": "area_rid", - "type": "RID" - }, - { - "name": "area", - "type": "Area3D" - }, - { - "name": "area_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "area_shape_exited", - "arguments": [ - { - "name": "area_rid", - "type": "RID" - }, - { - "name": "area", - "type": "Area3D" - }, - { - "name": "area_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "area_entered", - "arguments": [ - { - "name": "area", - "type": "Area3D" - } - ] - }, - { - "name": "area_exited", - "arguments": [ - { - "name": "area", - "type": "Area3D" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "monitoring", - "setter": "set_monitoring", - "getter": "is_monitoring" - }, - { - "type": "bool", - "name": "monitorable", - "setter": "set_monitorable", - "getter": "is_monitorable" - }, - { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority" - }, - { - "type": "int", - "name": "gravity_space_override", - "setter": "set_gravity_space_override_mode", - "getter": "get_gravity_space_override_mode" - }, - { - "type": "bool", - "name": "gravity_point", - "setter": "set_gravity_is_point", - "getter": "is_gravity_a_point" - }, - { - "type": "float", - "name": "gravity_point_unit_distance", - "setter": "set_gravity_point_unit_distance", - "getter": "get_gravity_point_unit_distance" - }, - { - "type": "Vector3", - "name": "gravity_point_center", - "setter": "set_gravity_point_center", - "getter": "get_gravity_point_center" - }, - { - "type": "Vector3", - "name": "gravity_direction", - "setter": "set_gravity_direction", - "getter": "get_gravity_direction" - }, - { - "type": "float", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - }, - { - "type": "int", - "name": "linear_damp_space_override", - "setter": "set_linear_damp_space_override_mode", - "getter": "get_linear_damp_space_override_mode" - }, - { - "type": "float", - "name": "linear_damp", - "setter": "set_linear_damp", - "getter": "get_linear_damp" - }, - { - "type": "int", - "name": "angular_damp_space_override", - "setter": "set_angular_damp_space_override_mode", - "getter": "get_angular_damp_space_override_mode" - }, - { - "type": "float", - "name": "angular_damp", - "setter": "set_angular_damp", - "getter": "get_angular_damp" - }, - { - "type": "float", - "name": "wind_force_magnitude", - "setter": "set_wind_force_magnitude", - "getter": "get_wind_force_magnitude" - }, - { - "type": "float", - "name": "wind_attenuation_factor", - "setter": "set_wind_attenuation_factor", - "getter": "get_wind_attenuation_factor" - }, - { - "type": "NodePath", - "name": "wind_source_path", - "setter": "set_wind_source_path", - "getter": "get_wind_source_path" - }, - { - "type": "bool", - "name": "audio_bus_override", - "setter": "set_audio_bus_override", - "getter": "is_overriding_audio_bus" - }, - { - "type": "StringName", - "name": "audio_bus_name", - "setter": "set_audio_bus_name", - "getter": "get_audio_bus_name" - }, - { - "type": "bool", - "name": "reverb_bus_enabled", - "setter": "set_use_reverb_bus", - "getter": "is_using_reverb_bus" - }, - { - "type": "StringName", - "name": "reverb_bus_name", - "setter": "set_reverb_bus_name", - "getter": "get_reverb_bus_name" - }, - { - "type": "float", - "name": "reverb_bus_amount", - "setter": "set_reverb_amount", - "getter": "get_reverb_amount" - }, - { - "type": "float", - "name": "reverb_bus_uniformity", - "setter": "set_reverb_uniformity", - "getter": "get_reverb_uniformity" - } - ] - }, - { - "name": "AreaLight3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light3D", - "api_type": "core", - "methods": [ - { - "name": "set_area_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_area_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_area_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "area_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_area_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_area_normalize_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_area_normalizing_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "area_range", - "setter": "set_param", - "getter": "get_param", - "index": 4 - }, - { - "type": "float", - "name": "area_attenuation", - "setter": "set_param", - "getter": "get_param", - "index": 6 - }, - { - "type": "bool", - "name": "area_normalize_energy", - "setter": "set_area_normalize_energy", - "getter": "is_area_normalizing_energy" - }, - { - "type": "Vector2", - "name": "area_size", - "setter": "set_area_size", - "getter": "get_area_size" - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "area_texture", - "setter": "set_area_texture", - "getter": "get_area_texture" - } - ] - }, - { - "name": "ArrayMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Mesh", - "api_type": "core", - "methods": [ - { - "name": "add_blend_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_blend_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_blend_shape_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_shape_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "clear_blend_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_blend_shape_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 227983991, - "arguments": [ - { - "name": "mode", - "type": "enum::Mesh.BlendShapeMode" - } - ] - }, - { - "name": "get_blend_shape_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 836485024, - "return_value": { - "type": "enum::Mesh.BlendShapeMode" - } - }, - { - "name": "add_surface_from_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796411378, - "hash_compatibility": [ - 172284304 - ], - "arguments": [ - { - "name": "primitive", - "type": "enum::Mesh.PrimitiveType" - }, - { - "name": "arrays", - "type": "Array" - }, - { - "name": "blend_shapes", - "type": "typedarray::Array", - "default_value": "[]" - }, - { - "name": "lods", - "type": "Dictionary", - "default_value": "{}" - }, - { - "name": "flags", - "type": "bitfield::Mesh.ArrayFormat", - "default_value": "0" - } - ] - }, - { - "name": "clear_surfaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "surface_remove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_update_vertex_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3837166854, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "surface_update_attribute_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3837166854, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "surface_update_skin_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3837166854, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "surface_get_array_len", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_get_array_index_len", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3718287884, - "return_value": { - "type": "bitfield::Mesh.ArrayFormat" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_get_primitive_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4141943888, - "return_value": { - "type": "enum::Mesh.PrimitiveType" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_find_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "surface_set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "surface_get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "regen_normal_maps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "lightmap_unwrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1476641071, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "texel_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_shadow_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3377897901, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh" - } - ] - }, - { - "name": "get_shadow_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3206942465, - "return_value": { - "type": "ArrayMesh" - } - } - ], - "properties": [ - { - "type": "int", - "name": "blend_shape_mode", - "setter": "set_blend_shape_mode", - "getter": "get_blend_shape_mode" - }, - { - "type": "AABB", - "name": "custom_aabb", - "setter": "set_custom_aabb", - "getter": "get_custom_aabb" - }, - { - "type": "ArrayMesh", - "name": "shadow_mesh", - "setter": "set_shadow_mesh", - "getter": "get_shadow_mesh" - } - ] - }, - { - "name": "ArrayOccluder3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Occluder3D", - "api_type": "core", - "methods": [ - { - "name": "set_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3233972621, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - }, - { - "name": "indices", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "set_indices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "indices", - "type": "PackedInt32Array" - } - ] - } - ], - "properties": [ - { - "type": "PackedVector3Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "PackedInt32Array", - "name": "indices", - "setter": "set_indices", - "getter": "get_indices" - } - ] - }, - { - "name": "AspectRatioContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "StretchMode", - "is_bitfield": false, - "values": [ - { - "name": "STRETCH_WIDTH_CONTROLS_HEIGHT", - "value": 0 - }, - { - "name": "STRETCH_HEIGHT_CONTROLS_WIDTH", - "value": 1 - }, - { - "name": "STRETCH_FIT", - "value": 2 - }, - { - "name": "STRETCH_COVER", - "value": 3 - } - ] - }, - { - "name": "AlignmentMode", - "is_bitfield": false, - "values": [ - { - "name": "ALIGNMENT_BEGIN", - "value": 0 - }, - { - "name": "ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "ALIGNMENT_END", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1876743467, - "arguments": [ - { - "name": "stretch_mode", - "type": "enum::AspectRatioContainer.StretchMode" - } - ] - }, - { - "name": "get_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3416449033, - "return_value": { - "type": "enum::AspectRatioContainer.StretchMode" - } - }, - { - "name": "set_alignment_horizontal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2147829016, - "arguments": [ - { - "name": "alignment_horizontal", - "type": "enum::AspectRatioContainer.AlignmentMode" - } - ] - }, - { - "name": "get_alignment_horizontal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3838875429, - "return_value": { - "type": "enum::AspectRatioContainer.AlignmentMode" - } - }, - { - "name": "set_alignment_vertical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2147829016, - "arguments": [ - { - "name": "alignment_vertical", - "type": "enum::AspectRatioContainer.AlignmentMode" - } - ] - }, - { - "name": "get_alignment_vertical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3838875429, - "return_value": { - "type": "enum::AspectRatioContainer.AlignmentMode" - } - } - ], - "properties": [ - { - "type": "float", - "name": "ratio", - "setter": "set_ratio", - "getter": "get_ratio" - }, - { - "type": "int", - "name": "stretch_mode", - "setter": "set_stretch_mode", - "getter": "get_stretch_mode" - }, - { - "type": "int", - "name": "alignment_horizontal", - "setter": "set_alignment_horizontal", - "getter": "get_alignment_horizontal" - }, - { - "type": "int", - "name": "alignment_vertical", - "setter": "set_alignment_vertical", - "getter": "get_alignment_vertical" - } - ] - }, - { - "name": "AtlasTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_atlas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "atlas", - "type": "Texture2D" - } - ] - }, - { - "name": "get_atlas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "region", - "type": "Rect2" - } - ] - }, - { - "name": "get_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "margin", - "type": "Rect2" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_filter_clip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_filter_clip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "atlas", - "setter": "set_atlas", - "getter": "get_atlas" - }, - { - "type": "Rect2", - "name": "region", - "setter": "set_region", - "getter": "get_region" - }, - { - "type": "Rect2", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "bool", - "name": "filter_clip", - "setter": "set_filter_clip", - "getter": "has_filter_clip" - } - ] - }, - { - "name": "AudioBusLayout", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core" - }, - { - "name": "AudioEffect", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_instantiate", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1659796816, - "return_value": { - "type": "AudioEffectInstance" - } - } - ] - }, - { - "name": "AudioEffectAmplify", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volume_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_linear", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "volume_db", - "setter": "set_volume_db", - "getter": "get_volume_db" - }, - { - "type": "float", - "name": "volume_linear", - "setter": "set_volume_linear", - "getter": "get_volume_linear" - } - ] - }, - { - "name": "AudioEffectBandLimitFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectBandPassFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectCapture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "can_get_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2649534757, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_buffer_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "buffer_length_seconds", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_buffer_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_frames_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_discarded_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_buffer_length_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_pushed_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - } - ], - "properties": [ - { - "type": "float", - "name": "buffer_length", - "setter": "set_buffer_length", - "getter": "get_buffer_length" - } - ] - }, - { - "name": "AudioEffectChorus", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_voice_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "voices", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_voice_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_voice_delay_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "delay_ms", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_delay_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_voice_rate_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "rate_hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_rate_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_voice_depth_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "depth_ms", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_depth_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_voice_level_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "level_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_level_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_voice_cutoff_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "cutoff_hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_cutoff_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_voice_pan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "pan", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_voice_pan", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_wet", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wet", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dry", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dry", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "voice_count", - "setter": "set_voice_count", - "getter": "get_voice_count" - }, - { - "type": "float", - "name": "dry", - "setter": "set_dry", - "getter": "get_dry" - }, - { - "type": "float", - "name": "wet", - "setter": "set_wet", - "getter": "get_wet" - } - ] - }, - { - "name": "AudioEffectCompressor", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attack_us", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "attack_us", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_attack_us", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_release_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "release_ms", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_release_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mix", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sidechain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "sidechain", - "type": "StringName" - } - ] - }, - { - "name": "get_sidechain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - } - ], - "properties": [ - { - "type": "float", - "name": "threshold", - "setter": "set_threshold", - "getter": "get_threshold" - }, - { - "type": "float", - "name": "ratio", - "setter": "set_ratio", - "getter": "get_ratio" - }, - { - "type": "float", - "name": "gain", - "setter": "set_gain", - "getter": "get_gain" - }, - { - "type": "float", - "name": "attack_us", - "setter": "set_attack_us", - "getter": "get_attack_us" - }, - { - "type": "float", - "name": "release_ms", - "setter": "set_release_ms", - "getter": "get_release_ms" - }, - { - "type": "float", - "name": "mix", - "setter": "set_mix", - "getter": "get_mix" - }, - { - "type": "StringName", - "name": "sidechain", - "setter": "set_sidechain", - "getter": "get_sidechain" - } - ] - }, - { - "name": "AudioEffectDelay", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_dry", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dry", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap1_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "amount", - "type": "bool" - } - ] - }, - { - "name": "is_tap1_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tap1_delay_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap1_delay_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap1_level_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap1_level_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap1_pan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap1_pan", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap2_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "amount", - "type": "bool" - } - ] - }, - { - "name": "is_tap2_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tap2_delay_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap2_delay_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap2_level_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap2_level_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tap2_pan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tap2_pan", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_feedback_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "amount", - "type": "bool" - } - ] - }, - { - "name": "is_feedback_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_feedback_delay_ms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_feedback_delay_ms", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_feedback_level_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_feedback_level_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_feedback_lowpass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_feedback_lowpass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "dry", - "setter": "set_dry", - "getter": "get_dry" - }, - { - "type": "bool", - "name": "tap1_active", - "setter": "set_tap1_active", - "getter": "is_tap1_active" - }, - { - "type": "float", - "name": "tap1_delay_ms", - "setter": "set_tap1_delay_ms", - "getter": "get_tap1_delay_ms" - }, - { - "type": "float", - "name": "tap1_level_db", - "setter": "set_tap1_level_db", - "getter": "get_tap1_level_db" - }, - { - "type": "float", - "name": "tap1_pan", - "setter": "set_tap1_pan", - "getter": "get_tap1_pan" - }, - { - "type": "bool", - "name": "tap2_active", - "setter": "set_tap2_active", - "getter": "is_tap2_active" - }, - { - "type": "float", - "name": "tap2_delay_ms", - "setter": "set_tap2_delay_ms", - "getter": "get_tap2_delay_ms" - }, - { - "type": "float", - "name": "tap2_level_db", - "setter": "set_tap2_level_db", - "getter": "get_tap2_level_db" - }, - { - "type": "float", - "name": "tap2_pan", - "setter": "set_tap2_pan", - "getter": "get_tap2_pan" - }, - { - "type": "bool", - "name": "feedback_active", - "setter": "set_feedback_active", - "getter": "is_feedback_active" - }, - { - "type": "float", - "name": "feedback_delay_ms", - "setter": "set_feedback_delay_ms", - "getter": "get_feedback_delay_ms" - }, - { - "type": "float", - "name": "feedback_level_db", - "setter": "set_feedback_level_db", - "getter": "get_feedback_level_db" - }, - { - "type": "float", - "name": "feedback_lowpass", - "setter": "set_feedback_lowpass", - "getter": "get_feedback_lowpass" - } - ] - }, - { - "name": "AudioEffectDistortion", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_CLIP", - "value": 0 - }, - { - "name": "MODE_ATAN", - "value": 1 - }, - { - "name": "MODE_LOFI", - "value": 2 - }, - { - "name": "MODE_OVERDRIVE", - "value": 3 - }, - { - "name": "MODE_WAVESHAPE", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1314744793, - "arguments": [ - { - "name": "mode", - "type": "enum::AudioEffectDistortion.Mode" - } - ] - }, - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 809118343, - "return_value": { - "type": "enum::AudioEffectDistortion.Mode" - } - }, - { - "name": "set_pre_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pre_gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pre_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_keep_hf_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "keep_hf_hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_keep_hf_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_drive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "drive", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_post_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "post_gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_post_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "mode", - "setter": "set_mode", - "getter": "get_mode" - }, - { - "type": "float", - "name": "pre_gain", - "setter": "set_pre_gain", - "getter": "get_pre_gain" - }, - { - "type": "float", - "name": "keep_hf_hz", - "setter": "set_keep_hf_hz", - "getter": "get_keep_hf_hz" - }, - { - "type": "float", - "name": "drive", - "setter": "set_drive", - "getter": "get_drive" - }, - { - "type": "float", - "name": "post_gain", - "setter": "set_post_gain", - "getter": "get_post_gain" - } - ] - }, - { - "name": "AudioEffectEQ", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_band_gain_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "band_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_band_gain_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "band_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_band_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "AudioEffectEQ10", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectEQ", - "api_type": "core" - }, - { - "name": "AudioEffectEQ21", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectEQ", - "api_type": "core" - }, - { - "name": "AudioEffectEQ6", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectEQ", - "api_type": "core" - }, - { - "name": "AudioEffectFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "enums": [ - { - "name": "FilterDB", - "is_bitfield": false, - "values": [ - { - "name": "FILTER_6DB", - "value": 0 - }, - { - "name": "FILTER_12DB", - "value": 1 - }, - { - "name": "FILTER_18DB", - "value": 2 - }, - { - "name": "FILTER_24DB", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_cutoff", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "freq", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cutoff", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_resonance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_resonance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 771740901, - "arguments": [ - { - "name": "amount", - "type": "enum::AudioEffectFilter.FilterDB" - } - ] - }, - { - "name": "get_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3981721890, - "return_value": { - "type": "enum::AudioEffectFilter.FilterDB" - } - } - ], - "properties": [ - { - "type": "float", - "name": "cutoff_hz", - "setter": "set_cutoff", - "getter": "get_cutoff" - }, - { - "type": "float", - "name": "resonance", - "setter": "set_resonance", - "getter": "get_resonance" - }, - { - "type": "float", - "name": "gain", - "setter": "set_gain", - "getter": "get_gain" - }, - { - "type": "int", - "name": "db", - "setter": "set_db", - "getter": "get_db" - } - ] - }, - { - "name": "AudioEffectHardLimiter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_ceiling_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ceiling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ceiling_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pre_gain_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pre_gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pre_gain_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_release", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "release", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_release", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "pre_gain_db", - "setter": "set_pre_gain_db", - "getter": "get_pre_gain_db" - }, - { - "type": "float", - "name": "ceiling_db", - "setter": "set_ceiling_db", - "getter": "get_ceiling_db" - }, - { - "type": "float", - "name": "release", - "setter": "set_release", - "getter": "get_release" - } - ] - }, - { - "name": "AudioEffectHighPassFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectHighShelfFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectInstance", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_process", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1649997291, - "arguments": [ - { - "name": "src_buffer", - "type": "const void*" - }, - { - "name": "r_dst_buffer", - "type": "AudioFrame*" - }, - { - "name": "frame_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_process_silence", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "AudioEffectLimiter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_ceiling_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ceiling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ceiling_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_threshold_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_threshold_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_soft_clip_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "soft_clip", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_soft_clip_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_soft_clip_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "soft_clip", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_soft_clip_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "ceiling_db", - "setter": "set_ceiling_db", - "getter": "get_ceiling_db" - }, - { - "type": "float", - "name": "threshold_db", - "setter": "set_threshold_db", - "getter": "get_threshold_db" - }, - { - "type": "float", - "name": "soft_clip_db", - "setter": "set_soft_clip_db", - "getter": "get_soft_clip_db" - }, - { - "type": "float", - "name": "soft_clip_ratio", - "setter": "set_soft_clip_ratio", - "getter": "get_soft_clip_ratio" - } - ] - }, - { - "name": "AudioEffectLowPassFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectLowShelfFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectNotchFilter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffectFilter", - "api_type": "core" - }, - { - "name": "AudioEffectPanner", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_pan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cpanume", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pan", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "pan", - "setter": "set_pan", - "getter": "get_pan" - } - ] - }, - { - "name": "AudioEffectPhaser", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_range_min_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_range_min_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_range_max_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_range_max_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rate_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rate_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_feedback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fbk", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_feedback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "range_min_hz", - "setter": "set_range_min_hz", - "getter": "get_range_min_hz" - }, - { - "type": "float", - "name": "range_max_hz", - "setter": "set_range_max_hz", - "getter": "get_range_max_hz" - }, - { - "type": "float", - "name": "rate_hz", - "setter": "set_rate_hz", - "getter": "get_rate_hz" - }, - { - "type": "float", - "name": "feedback", - "setter": "set_feedback", - "getter": "get_feedback" - }, - { - "type": "float", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - } - ] - }, - { - "name": "AudioEffectPitchShift", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "enums": [ - { - "name": "FFTSize", - "is_bitfield": false, - "values": [ - { - "name": "FFT_SIZE_256", - "value": 0 - }, - { - "name": "FFT_SIZE_512", - "value": 1 - }, - { - "name": "FFT_SIZE_1024", - "value": 2 - }, - { - "name": "FFT_SIZE_2048", - "value": 3 - }, - { - "name": "FFT_SIZE_4096", - "value": 4 - }, - { - "name": "FFT_SIZE_MAX", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "set_pitch_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pitch_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fft_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323518741, - "arguments": [ - { - "name": "size", - "type": "enum::AudioEffectPitchShift.FFTSize" - } - ] - }, - { - "name": "get_fft_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2361246789, - "return_value": { - "type": "enum::AudioEffectPitchShift.FFTSize" - } - } - ], - "properties": [ - { - "type": "float", - "name": "pitch_scale", - "setter": "set_pitch_scale", - "getter": "get_pitch_scale" - }, - { - "type": "float", - "name": "oversampling", - "setter": "set_oversampling", - "getter": "get_oversampling" - }, - { - "type": "int", - "name": "fft_size", - "setter": "set_fft_size", - "getter": "get_fft_size" - } - ] - }, - { - "name": "AudioEffectRecord", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_recording_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "record", - "type": "bool" - } - ] - }, - { - "name": "is_recording_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 60648488, - "arguments": [ - { - "name": "format", - "type": "enum::AudioStreamWAV.Format" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3151724922, - "return_value": { - "type": "enum::AudioStreamWAV.Format" - } - }, - { - "name": "get_recording", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2964110865, - "return_value": { - "type": "AudioStreamWAV" - } - } - ], - "properties": [ - { - "type": "int", - "name": "format", - "setter": "set_format", - "getter": "get_format" - } - ] - }, - { - "name": "AudioEffectReverb", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_predelay_msec", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "msec", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_predelay_msec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_predelay_feedback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "feedback", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_predelay_feedback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_room_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_room_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_spread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_spread", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dry", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dry", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wet", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wet", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_hpf", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_hpf", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "predelay_msec", - "setter": "set_predelay_msec", - "getter": "get_predelay_msec" - }, - { - "type": "float", - "name": "predelay_feedback", - "setter": "set_predelay_feedback", - "getter": "get_predelay_feedback" - }, - { - "type": "float", - "name": "room_size", - "setter": "set_room_size", - "getter": "get_room_size" - }, - { - "type": "float", - "name": "damping", - "setter": "set_damping", - "getter": "get_damping" - }, - { - "type": "float", - "name": "spread", - "setter": "set_spread", - "getter": "get_spread" - }, - { - "type": "float", - "name": "hipass", - "setter": "set_hpf", - "getter": "get_hpf" - }, - { - "type": "float", - "name": "dry", - "setter": "set_dry", - "getter": "get_dry" - }, - { - "type": "float", - "name": "wet", - "setter": "set_wet", - "getter": "get_wet" - } - ] - }, - { - "name": "AudioEffectSpectrumAnalyzer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "enums": [ - { - "name": "FFTSize", - "is_bitfield": false, - "values": [ - { - "name": "FFT_SIZE_256", - "value": 0 - }, - { - "name": "FFT_SIZE_512", - "value": 1 - }, - { - "name": "FFT_SIZE_1024", - "value": 2 - }, - { - "name": "FFT_SIZE_2048", - "value": 3 - }, - { - "name": "FFT_SIZE_4096", - "value": 4 - }, - { - "name": "FFT_SIZE_MAX", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "set_buffer_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_buffer_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fft_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1202879215, - "arguments": [ - { - "name": "size", - "type": "enum::AudioEffectSpectrumAnalyzer.FFTSize" - } - ] - }, - { - "name": "get_fft_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3925405343, - "return_value": { - "type": "enum::AudioEffectSpectrumAnalyzer.FFTSize" - } - } - ], - "properties": [ - { - "type": "float", - "name": "buffer_length", - "setter": "set_buffer_length", - "getter": "get_buffer_length" - }, - { - "type": "int", - "name": "fft_size", - "setter": "set_fft_size", - "getter": "get_fft_size" - } - ] - }, - { - "name": "AudioEffectSpectrumAnalyzerInstance", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioEffectInstance", - "api_type": "core", - "enums": [ - { - "name": "MagnitudeMode", - "is_bitfield": false, - "values": [ - { - "name": "MAGNITUDE_AVERAGE", - "value": 0 - }, - { - "name": "MAGNITUDE_MAX", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "get_magnitude_for_frequency_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797993915, - "hash_compatibility": [ - 2693213071 - ], - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "from_hz", - "type": "float", - "meta": "float" - }, - { - "name": "to_hz", - "type": "float", - "meta": "float" - }, - { - "name": "mode", - "type": "enum::AudioEffectSpectrumAnalyzerInstance.MagnitudeMode", - "default_value": "1" - } - ] - } - ] - }, - { - "name": "AudioEffectStereoEnhance", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioEffect", - "api_type": "core", - "methods": [ - { - "name": "set_pan_pullout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pan_pullout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_time_pullout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_time_pullout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_surround", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_surround", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "pan_pullout", - "setter": "set_pan_pullout", - "getter": "get_pan_pullout" - }, - { - "type": "float", - "name": "time_pullout_ms", - "setter": "set_time_pullout", - "getter": "get_time_pullout" - }, - { - "type": "float", - "name": "surround", - "setter": "set_surround", - "getter": "get_surround" - } - ] - }, - { - "name": "AudioListener2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "make_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_current", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "AudioListener3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "DopplerTracking", - "is_bitfield": false, - "values": [ - { - "name": "DOPPLER_TRACKING_DISABLED", - "value": 0 - }, - { - "name": "DOPPLER_TRACKING_IDLE_STEP", - "value": 1 - }, - { - "name": "DOPPLER_TRACKING_PHYSICS_STEP", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "make_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_current", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_listener_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_doppler_tracking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2365921740, - "arguments": [ - { - "name": "mode", - "type": "enum::AudioListener3D.DopplerTracking" - } - ] - }, - { - "name": "get_doppler_tracking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 550229039, - "return_value": { - "type": "enum::AudioListener3D.DopplerTracking" - } - } - ], - "properties": [ - { - "type": "int", - "name": "doppler_tracking", - "setter": "set_doppler_tracking", - "getter": "get_doppler_tracking" - } - ] - }, - { - "name": "AudioSample", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "AudioSamplePlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "AudioServer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "SpeakerMode", - "is_bitfield": false, - "values": [ - { - "name": "SPEAKER_MODE_STEREO", - "value": 0 - }, - { - "name": "SPEAKER_SURROUND_31", - "value": 1 - }, - { - "name": "SPEAKER_SURROUND_51", - "value": 2 - }, - { - "name": "SPEAKER_SURROUND_71", - "value": 3 - } - ] - }, - { - "name": "PlaybackType", - "is_bitfield": false, - "values": [ - { - "name": "PLAYBACK_TYPE_DEFAULT", - "value": 0 - }, - { - "name": "PLAYBACK_TYPE_STREAM", - "value": 1 - }, - { - "name": "PLAYBACK_TYPE_SAMPLE", - "value": 2 - }, - { - "name": "PLAYBACK_TYPE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_bus_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "remove_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "at_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_bus_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bus_name", - "type": "StringName" - } - ] - }, - { - "name": "get_bus_channels", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bus_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_volume_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "volume_linear", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bus_volume_linear", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_send", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "send", - "type": "StringName" - } - ] - }, - { - "name": "get_bus_send", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_solo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_bus_solo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_mute", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_bus_mute", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_bypass_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_bus_bypassing_effects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_bus_effect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4068819785, - "hash_compatibility": [ - 4147765248 - ], - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect", - "type": "AudioEffect" - }, - { - "name": "at_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_bus_effect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_effect_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_effect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 726064442, - "return_value": { - "type": "AudioEffect" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_effect_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1829771234, - "hash_compatibility": [ - 2887144608 - ], - "return_value": { - "type": "AudioEffectInstance" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "channel", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "swap_bus_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1649997291, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "by_effect_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_effect_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_bus_effect_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "effect_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_peak_volume_left_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "channel", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bus_peak_volume_right_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "channel", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_playback_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_playback_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "lock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "unlock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_speaker_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2549190337, - "return_value": { - "type": "enum::AudioServer.SpeakerMode" - } - }, - { - "name": "get_mix_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_input_mix_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_driver_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_output_device_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_output_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_output_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_time_to_next_mix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_time_since_last_mix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_output_latency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_input_device_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_input_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_input_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_input_device_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1413768114, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_input_frames_available", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_input_buffer_length_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_input_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2649534757, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bus_layout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3319058824, - "arguments": [ - { - "name": "bus_layout", - "type": "AudioBusLayout" - } - ] - }, - { - "name": "generate_bus_layout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3769973890, - "return_value": { - "type": "AudioBusLayout" - } - }, - { - "name": "set_enable_tagging_used_audio_streams", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_stream_registered_as_sample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 500225754, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "register_stream_as_sample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2210767741, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - } - ] - } - ], - "signals": [ - { - "name": "bus_layout_changed" - }, - { - "name": "bus_renamed", - "arguments": [ - { - "name": "bus_index", - "type": "int" - }, - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "new_name", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "bus_count", - "setter": "set_bus_count", - "getter": "get_bus_count" - }, - { - "type": "String", - "name": "output_device", - "setter": "set_output_device", - "getter": "get_output_device" - }, - { - "type": "String", - "name": "input_device", - "setter": "set_input_device", - "getter": "get_input_device" - }, - { - "type": "float", - "name": "playback_speed_scale", - "setter": "set_playback_speed_scale", - "getter": "get_playback_speed_scale" - } - ] - }, - { - "name": "AudioStream", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_instantiate_playback", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3093715447, - "return_value": { - "type": "AudioStreamPlayback" - } - }, - { - "name": "_get_stream_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_length", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_is_monophonic", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_bpm", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_get_beat_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_tags", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_get_parameter_list", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_has_loop", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_bar_beats", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "is_monophonic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "instantiate_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 210135309, - "return_value": { - "type": "AudioStreamPlayback" - } - }, - { - "name": "can_be_sampled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "generate_sample", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2646048999, - "return_value": { - "type": "AudioSample" - } - }, - { - "name": "is_meta_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "parameter_list_changed" - } - ] - }, - { - "name": "AudioStreamGenerator", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "enums": [ - { - "name": "AudioStreamGeneratorMixRate", - "is_bitfield": false, - "values": [ - { - "name": "MIX_RATE_OUTPUT", - "value": 0 - }, - { - "name": "MIX_RATE_INPUT", - "value": 1 - }, - { - "name": "MIX_RATE_CUSTOM", - "value": 2 - }, - { - "name": "MIX_RATE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_mix_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "hz", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mix_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mix_rate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3354885803, - "arguments": [ - { - "name": "mode", - "type": "enum::AudioStreamGenerator.AudioStreamGeneratorMixRate" - } - ] - }, - { - "name": "get_mix_rate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3537132591, - "return_value": { - "type": "enum::AudioStreamGenerator.AudioStreamGeneratorMixRate" - } - }, - { - "name": "set_buffer_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_buffer_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "mix_rate_mode", - "setter": "set_mix_rate_mode", - "getter": "get_mix_rate_mode" - }, - { - "type": "float", - "name": "mix_rate", - "setter": "set_mix_rate", - "getter": "get_mix_rate" - }, - { - "type": "float", - "name": "buffer_length", - "setter": "set_buffer_length", - "getter": "get_buffer_length" - } - ] - }, - { - "name": "AudioStreamGeneratorPlayback", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioStreamPlaybackResampled", - "api_type": "core", - "methods": [ - { - "name": "push_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975407249, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "frame", - "type": "Vector2" - } - ] - }, - { - "name": "can_push_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "push_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1361156557, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "frames", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_frames_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_skips", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "AudioStreamInteractive", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "constants": [ - { - "name": "CLIP_ANY", - "value": -1 - } - ], - "enums": [ - { - "name": "TransitionFromTime", - "is_bitfield": false, - "values": [ - { - "name": "TRANSITION_FROM_TIME_IMMEDIATE", - "value": 0 - }, - { - "name": "TRANSITION_FROM_TIME_NEXT_BEAT", - "value": 1 - }, - { - "name": "TRANSITION_FROM_TIME_NEXT_BAR", - "value": 2 - }, - { - "name": "TRANSITION_FROM_TIME_END", - "value": 3 - } - ] - }, - { - "name": "TransitionToTime", - "is_bitfield": false, - "values": [ - { - "name": "TRANSITION_TO_TIME_SAME_POSITION", - "value": 0 - }, - { - "name": "TRANSITION_TO_TIME_START", - "value": 1 - }, - { - "name": "TRANSITION_TO_TIME_PREVIOUS_POSITION", - "value": 2 - } - ] - }, - { - "name": "FadeMode", - "is_bitfield": false, - "values": [ - { - "name": "FADE_DISABLED", - "value": 0 - }, - { - "name": "FADE_IN", - "value": 1 - }, - { - "name": "FADE_OUT", - "value": 2 - }, - { - "name": "FADE_CROSS", - "value": 3 - }, - { - "name": "FADE_AUTOMATIC", - "value": 4 - } - ] - }, - { - "name": "AutoAdvanceMode", - "is_bitfield": false, - "values": [ - { - "name": "AUTO_ADVANCE_DISABLED", - "value": 0 - }, - { - "name": "AUTO_ADVANCE_ENABLED", - "value": 1 - }, - { - "name": "AUTO_ADVANCE_RETURN_TO_HOLD", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_clip_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "clip_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_clip_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_initial_clip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_initial_clip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_clip_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_clip_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_clip_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111075094, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - }, - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_clip_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2739380747, - "return_value": { - "type": "AudioStream" - }, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_clip_auto_advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 57217598, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::AudioStreamInteractive.AutoAdvanceMode" - } - ] - }, - { - "name": "get_clip_auto_advance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1778634807, - "return_value": { - "type": "enum::AudioStreamInteractive.AutoAdvanceMode" - }, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_clip_auto_advance_next_clip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - }, - { - "name": "auto_advance_next_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_clip_auto_advance_next_clip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1630280552, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "from_time", - "type": "enum::AudioStreamInteractive.TransitionFromTime" - }, - { - "name": "to_time", - "type": "enum::AudioStreamInteractive.TransitionToTime" - }, - { - "name": "fade_mode", - "type": "enum::AudioStreamInteractive.FadeMode" - }, - { - "name": "fade_beats", - "type": "float", - "meta": "float" - }, - { - "name": "use_filler_clip", - "type": "bool", - "default_value": "false" - }, - { - "name": "filler_clip", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "hold_previous", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "has_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "erase_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "get_transition_from_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3453338158, - "return_value": { - "type": "enum::AudioStreamInteractive.TransitionFromTime" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_to_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1369651373, - "return_value": { - "type": "enum::AudioStreamInteractive.TransitionToTime" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_fade_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4065396087, - "return_value": { - "type": "enum::AudioStreamInteractive.FadeMode" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_fade_beats", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_transition_using_filler_clip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transition_filler_clip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_transition_holding_previous", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_clip", - "type": "int", - "meta": "int32" - }, - { - "name": "to_clip", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "clip_count", - "setter": "set_clip_count", - "getter": "get_clip_count" - }, - { - "type": "int", - "name": "initial_clip", - "setter": "set_initial_clip", - "getter": "get_initial_clip" - } - ] - }, - { - "name": "AudioStreamMP3", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "methods": [ - { - "name": "load_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1674970313, - "return_value": { - "type": "AudioStreamMP3" - }, - "arguments": [ - { - "name": "stream_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4238362998, - "return_value": { - "type": "AudioStreamMP3" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_loop_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_bpm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bpm", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_bpm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_beat_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_beat_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_bar_beats", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bar_beats", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "data", - "setter": "set_data", - "getter": "get_data" - }, - { - "type": "float", - "name": "bpm", - "setter": "set_bpm", - "getter": "get_bpm" - }, - { - "type": "int", - "name": "beat_count", - "setter": "set_beat_count", - "getter": "get_beat_count" - }, - { - "type": "int", - "name": "bar_beats", - "setter": "set_bar_beats", - "getter": "get_bar_beats" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - }, - { - "type": "float", - "name": "loop_offset", - "setter": "set_loop_offset", - "getter": "get_loop_offset" - } - ] - }, - { - "name": "AudioStreamMicrophone", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core" - }, - { - "name": "AudioStreamOggVorbis", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "methods": [ - { - "name": "load_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 354904730, - "return_value": { - "type": "AudioStreamOggVorbis" - }, - "arguments": [ - { - "name": "stream_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 797568536, - "return_value": { - "type": "AudioStreamOggVorbis" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_packet_sequence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 438882457, - "arguments": [ - { - "name": "packet_sequence", - "type": "OggPacketSequence" - } - ] - }, - { - "name": "get_packet_sequence", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2801636033, - "return_value": { - "type": "OggPacketSequence" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_loop_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_bpm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bpm", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_bpm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_beat_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_beat_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_bar_beats", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bar_beats", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_tags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "tags", - "type": "Dictionary" - } - ] - }, - { - "name": "get_tags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - } - ], - "properties": [ - { - "type": "Object", - "name": "packet_sequence", - "setter": "set_packet_sequence", - "getter": "get_packet_sequence" - }, - { - "type": "float", - "name": "bpm", - "setter": "set_bpm", - "getter": "get_bpm" - }, - { - "type": "int", - "name": "beat_count", - "setter": "set_beat_count", - "getter": "get_beat_count" - }, - { - "type": "int", - "name": "bar_beats", - "setter": "set_bar_beats", - "getter": "get_bar_beats" - }, - { - "type": "Dictionary", - "name": "tags", - "setter": "set_tags", - "getter": "get_tags" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - }, - { - "type": "float", - "name": "loop_offset", - "setter": "set_loop_offset", - "getter": "get_loop_offset" - } - ] - }, - { - "name": "AudioStreamPlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_start", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "from_pos", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_stop", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_is_playing", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_loop_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_playback_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_seek", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_mix", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 925936155, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "buffer", - "type": "AudioFrame*" - }, - { - "name": "rate_scale", - "type": "float", - "meta": "float" - }, - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_tag_used_streams", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_set_parameter", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_get_parameter", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_sample_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3195455091, - "arguments": [ - { - "name": "playback_sample", - "type": "AudioSamplePlayback" - } - ] - }, - { - "name": "get_sample_playback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3482738536, - "return_value": { - "type": "AudioSamplePlayback" - } - }, - { - "name": "mix_audio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341291446, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "rate_scale", - "type": "float", - "meta": "float" - }, - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958160172, - "arguments": [ - { - "name": "from_pos", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958160172, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_loop_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_playback_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "AudioStreamPlaybackInteractive", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioStreamPlayback", - "api_type": "core", - "methods": [ - { - "name": "switch_to_clip_by_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "clip_name", - "type": "StringName" - } - ] - }, - { - "name": "switch_to_clip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "clip_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_clip_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "AudioStreamPlaybackOggVorbis", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStreamPlaybackResampled", - "api_type": "core" - }, - { - "name": "AudioStreamPlaybackPlaylist", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioStreamPlayback", - "api_type": "core" - }, - { - "name": "AudioStreamPlaybackPolyphonic", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioStreamPlayback", - "api_type": "core", - "constants": [ - { - "name": "INVALID_ID", - "value": -1 - } - ], - "methods": [ - { - "name": "play_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1846744803, - "hash_compatibility": [ - 604492179, - 3792189967 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - }, - { - "name": "from_offset", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "volume_db", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "pitch_scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "playback_type", - "type": "enum::AudioServer.PlaybackType", - "default_value": "0" - }, - { - "name": "bus", - "type": "StringName", - "default_value": "&\"Master\"" - } - ] - }, - { - "name": "set_stream_volume", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "stream", - "type": "int", - "meta": "int64" - }, - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_stream_pitch_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "stream", - "type": "int", - "meta": "int64" - }, - { - "name": "pitch_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "is_stream_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "stream", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "stop_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stream", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "AudioStreamPlaybackResampled", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStreamPlayback", - "api_type": "core", - "methods": [ - { - "name": "_mix_resampled", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "dst_buffer", - "type": "AudioFrame*" - }, - { - "name": "frame_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_stream_sampling_rate", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "begin_resample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "AudioStreamPlaybackSynchronized", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "AudioStreamPlayback", - "api_type": "core" - }, - { - "name": "AudioStreamPlayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "MixTarget", - "is_bitfield": false, - "values": [ - { - "name": "MIX_TARGET_STEREO", - "value": 0 - }, - { - "name": "MIX_TARGET_SURROUND", - "value": 1 - }, - { - "name": "MIX_TARGET_CENTER", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2210767741, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 160907539, - "return_value": { - "type": "AudioStream" - } - }, - { - "name": "set_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volume_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_linear", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_linear", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pitch_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pitch_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958160172, - "arguments": [ - { - "name": "from_position", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "to_position", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_playback_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bus", - "type": "StringName" - } - ] - }, - { - "name": "get_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_autoplay_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_mix_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2300306138, - "arguments": [ - { - "name": "mix_target", - "type": "enum::AudioStreamPlayer.MixTarget" - } - ] - }, - { - "name": "get_mix_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 172807476, - "return_value": { - "type": "enum::AudioStreamPlayer.MixTarget" - } - }, - { - "name": "set_playing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_stream_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pause", - "type": "bool" - } - ] - }, - { - "name": "get_stream_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_max_polyphony", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polyphony", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_polyphony", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 210135309, - "return_value": { - "type": "AudioStreamPlayback" - } - }, - { - "name": "set_playback_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 725473817, - "arguments": [ - { - "name": "playback_type", - "type": "enum::AudioServer.PlaybackType" - } - ] - }, - { - "name": "get_playback_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4011264623, - "return_value": { - "type": "enum::AudioServer.PlaybackType" - } - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "AudioStream", - "name": "stream", - "setter": "set_stream", - "getter": "get_stream" - }, - { - "type": "float", - "name": "volume_db", - "setter": "set_volume_db", - "getter": "get_volume_db" - }, - { - "type": "float", - "name": "volume_linear", - "setter": "set_volume_linear", - "getter": "get_volume_linear" - }, - { - "type": "float", - "name": "pitch_scale", - "setter": "set_pitch_scale", - "getter": "get_pitch_scale" - }, - { - "type": "bool", - "name": "playing", - "setter": "set_playing", - "getter": "is_playing" - }, - { - "type": "bool", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "is_autoplay_enabled" - }, - { - "type": "bool", - "name": "stream_paused", - "setter": "set_stream_paused", - "getter": "get_stream_paused" - }, - { - "type": "int", - "name": "mix_target", - "setter": "set_mix_target", - "getter": "get_mix_target" - }, - { - "type": "int", - "name": "max_polyphony", - "setter": "set_max_polyphony", - "getter": "get_max_polyphony" - }, - { - "type": "StringName", - "name": "bus", - "setter": "set_bus", - "getter": "get_bus" - }, - { - "type": "int", - "name": "playback_type", - "setter": "set_playback_type", - "getter": "get_playback_type" - } - ] - }, - { - "name": "AudioStreamPlayer2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2210767741, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 160907539, - "return_value": { - "type": "AudioStream" - } - }, - { - "name": "set_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volume_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_linear", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_linear", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pitch_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pitch_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958160172, - "arguments": [ - { - "name": "from_position", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "to_position", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_playback_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bus", - "type": "StringName" - } - ] - }, - { - "name": "get_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_autoplay_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_playing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixels", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attenuation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_attenuation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_area_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_area_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_stream_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pause", - "type": "bool" - } - ] - }, - { - "name": "get_stream_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_max_polyphony", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polyphony", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_polyphony", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_panning_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "panning_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_panning_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "has_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 210135309, - "return_value": { - "type": "AudioStreamPlayback" - } - }, - { - "name": "set_playback_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 725473817, - "arguments": [ - { - "name": "playback_type", - "type": "enum::AudioServer.PlaybackType" - } - ] - }, - { - "name": "get_playback_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4011264623, - "return_value": { - "type": "enum::AudioServer.PlaybackType" - } - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "AudioStream", - "name": "stream", - "setter": "set_stream", - "getter": "get_stream" - }, - { - "type": "float", - "name": "volume_db", - "setter": "set_volume_db", - "getter": "get_volume_db" - }, - { - "type": "float", - "name": "volume_linear", - "setter": "set_volume_linear", - "getter": "get_volume_linear" - }, - { - "type": "float", - "name": "pitch_scale", - "setter": "set_pitch_scale", - "getter": "get_pitch_scale" - }, - { - "type": "bool", - "name": "playing", - "setter": "set_playing", - "getter": "is_playing" - }, - { - "type": "bool", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "is_autoplay_enabled" - }, - { - "type": "bool", - "name": "stream_paused", - "setter": "set_stream_paused", - "getter": "get_stream_paused" - }, - { - "type": "float", - "name": "max_distance", - "setter": "set_max_distance", - "getter": "get_max_distance" - }, - { - "type": "float", - "name": "attenuation", - "setter": "set_attenuation", - "getter": "get_attenuation" - }, - { - "type": "int", - "name": "max_polyphony", - "setter": "set_max_polyphony", - "getter": "get_max_polyphony" - }, - { - "type": "float", - "name": "panning_strength", - "setter": "set_panning_strength", - "getter": "get_panning_strength" - }, - { - "type": "StringName", - "name": "bus", - "setter": "set_bus", - "getter": "get_bus" - }, - { - "type": "int", - "name": "area_mask", - "setter": "set_area_mask", - "getter": "get_area_mask" - }, - { - "type": "int", - "name": "playback_type", - "setter": "set_playback_type", - "getter": "get_playback_type" - } - ] - }, - { - "name": "AudioStreamPlayer3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "AttenuationModel", - "is_bitfield": false, - "values": [ - { - "name": "ATTENUATION_INVERSE_DISTANCE", - "value": 0 - }, - { - "name": "ATTENUATION_INVERSE_SQUARE_DISTANCE", - "value": 1 - }, - { - "name": "ATTENUATION_LOGARITHMIC", - "value": 2 - }, - { - "name": "ATTENUATION_DISABLED", - "value": 3 - } - ] - }, - { - "name": "DopplerTracking", - "is_bitfield": false, - "values": [ - { - "name": "DOPPLER_TRACKING_DISABLED", - "value": 0 - }, - { - "name": "DOPPLER_TRACKING_IDLE_STEP", - "value": 1 - }, - { - "name": "DOPPLER_TRACKING_PHYSICS_STEP", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2210767741, - "arguments": [ - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 160907539, - "return_value": { - "type": "AudioStream" - } - }, - { - "name": "set_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volume_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume_linear", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_linear", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_unit_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "unit_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_unit_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pitch_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pitch_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958160172, - "arguments": [ - { - "name": "from_position", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "to_position", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_playback_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bus", - "type": "StringName" - } - ] - }, - { - "name": "get_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_autoplay_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_playing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "meters", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_area_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_area_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_emission_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_angle_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_emission_angle_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_emission_angle_filter_attenuation_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_angle_filter_attenuation_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attenuation_filter_cutoff_hz", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_attenuation_filter_cutoff_hz", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attenuation_filter_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_attenuation_filter_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attenuation_model", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2988086229, - "arguments": [ - { - "name": "model", - "type": "enum::AudioStreamPlayer3D.AttenuationModel" - } - ] - }, - { - "name": "get_attenuation_model", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3035106060, - "return_value": { - "type": "enum::AudioStreamPlayer3D.AttenuationModel" - } - }, - { - "name": "set_doppler_tracking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3968161450, - "arguments": [ - { - "name": "mode", - "type": "enum::AudioStreamPlayer3D.DopplerTracking" - } - ] - }, - { - "name": "get_doppler_tracking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1702418664, - "return_value": { - "type": "enum::AudioStreamPlayer3D.DopplerTracking" - } - }, - { - "name": "set_stream_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pause", - "type": "bool" - } - ] - }, - { - "name": "get_stream_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_max_polyphony", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polyphony", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_polyphony", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_panning_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "panning_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_panning_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "has_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_stream_playback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 210135309, - "return_value": { - "type": "AudioStreamPlayback" - } - }, - { - "name": "set_playback_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 725473817, - "arguments": [ - { - "name": "playback_type", - "type": "enum::AudioServer.PlaybackType" - } - ] - }, - { - "name": "get_playback_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4011264623, - "return_value": { - "type": "enum::AudioServer.PlaybackType" - } - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "AudioStream", - "name": "stream", - "setter": "set_stream", - "getter": "get_stream" - }, - { - "type": "int", - "name": "attenuation_model", - "setter": "set_attenuation_model", - "getter": "get_attenuation_model" - }, - { - "type": "float", - "name": "volume_db", - "setter": "set_volume_db", - "getter": "get_volume_db" - }, - { - "type": "float", - "name": "volume_linear", - "setter": "set_volume_linear", - "getter": "get_volume_linear" - }, - { - "type": "float", - "name": "unit_size", - "setter": "set_unit_size", - "getter": "get_unit_size" - }, - { - "type": "float", - "name": "max_db", - "setter": "set_max_db", - "getter": "get_max_db" - }, - { - "type": "float", - "name": "pitch_scale", - "setter": "set_pitch_scale", - "getter": "get_pitch_scale" - }, - { - "type": "bool", - "name": "playing", - "setter": "set_playing", - "getter": "is_playing" - }, - { - "type": "bool", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "is_autoplay_enabled" - }, - { - "type": "bool", - "name": "stream_paused", - "setter": "set_stream_paused", - "getter": "get_stream_paused" - }, - { - "type": "float", - "name": "max_distance", - "setter": "set_max_distance", - "getter": "get_max_distance" - }, - { - "type": "int", - "name": "max_polyphony", - "setter": "set_max_polyphony", - "getter": "get_max_polyphony" - }, - { - "type": "float", - "name": "panning_strength", - "setter": "set_panning_strength", - "getter": "get_panning_strength" - }, - { - "type": "StringName", - "name": "bus", - "setter": "set_bus", - "getter": "get_bus" - }, - { - "type": "int", - "name": "area_mask", - "setter": "set_area_mask", - "getter": "get_area_mask" - }, - { - "type": "int", - "name": "playback_type", - "setter": "set_playback_type", - "getter": "get_playback_type" - }, - { - "type": "bool", - "name": "emission_angle_enabled", - "setter": "set_emission_angle_enabled", - "getter": "is_emission_angle_enabled" - }, - { - "type": "float", - "name": "emission_angle_degrees", - "setter": "set_emission_angle", - "getter": "get_emission_angle" - }, - { - "type": "float", - "name": "emission_angle_filter_attenuation_db", - "setter": "set_emission_angle_filter_attenuation_db", - "getter": "get_emission_angle_filter_attenuation_db" - }, - { - "type": "float", - "name": "attenuation_filter_cutoff_hz", - "setter": "set_attenuation_filter_cutoff_hz", - "getter": "get_attenuation_filter_cutoff_hz" - }, - { - "type": "float", - "name": "attenuation_filter_db", - "setter": "set_attenuation_filter_db", - "getter": "get_attenuation_filter_db" - }, - { - "type": "int", - "name": "doppler_tracking", - "setter": "set_doppler_tracking", - "getter": "get_doppler_tracking" - } - ] - }, - { - "name": "AudioStreamPlaylist", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "constants": [ - { - "name": "MAX_STREAMS", - "value": 64 - } - ], - "methods": [ - { - "name": "set_stream_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stream_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stream_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_bpm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_list_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111075094, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - }, - { - "name": "audio_stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_list_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2739380747, - "return_value": { - "type": "AudioStream" - }, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_shuffle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "shuffle", - "type": "bool" - } - ] - }, - { - "name": "get_shuffle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_fade_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "dec", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fade_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "shuffle", - "setter": "set_shuffle", - "getter": "get_shuffle" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - }, - { - "type": "float", - "name": "fade_time", - "setter": "set_fade_time", - "getter": "get_fade_time" - }, - { - "type": "int", - "name": "stream_count", - "setter": "set_stream_count", - "getter": "get_stream_count" - }, - { - "type": "AudioStream", - "name": "stream_0", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 0 - }, - { - "type": "AudioStream", - "name": "stream_1", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 1 - }, - { - "type": "AudioStream", - "name": "stream_2", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 2 - }, - { - "type": "AudioStream", - "name": "stream_3", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 3 - }, - { - "type": "AudioStream", - "name": "stream_4", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 4 - }, - { - "type": "AudioStream", - "name": "stream_5", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 5 - }, - { - "type": "AudioStream", - "name": "stream_6", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 6 - }, - { - "type": "AudioStream", - "name": "stream_7", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 7 - }, - { - "type": "AudioStream", - "name": "stream_8", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 8 - }, - { - "type": "AudioStream", - "name": "stream_9", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 9 - }, - { - "type": "AudioStream", - "name": "stream_10", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 10 - }, - { - "type": "AudioStream", - "name": "stream_11", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 11 - }, - { - "type": "AudioStream", - "name": "stream_12", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 12 - }, - { - "type": "AudioStream", - "name": "stream_13", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 13 - }, - { - "type": "AudioStream", - "name": "stream_14", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 14 - }, - { - "type": "AudioStream", - "name": "stream_15", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 15 - }, - { - "type": "AudioStream", - "name": "stream_16", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 16 - }, - { - "type": "AudioStream", - "name": "stream_17", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 17 - }, - { - "type": "AudioStream", - "name": "stream_18", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 18 - }, - { - "type": "AudioStream", - "name": "stream_19", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 19 - }, - { - "type": "AudioStream", - "name": "stream_20", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 20 - }, - { - "type": "AudioStream", - "name": "stream_21", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 21 - }, - { - "type": "AudioStream", - "name": "stream_22", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 22 - }, - { - "type": "AudioStream", - "name": "stream_23", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 23 - }, - { - "type": "AudioStream", - "name": "stream_24", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 24 - }, - { - "type": "AudioStream", - "name": "stream_25", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 25 - }, - { - "type": "AudioStream", - "name": "stream_26", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 26 - }, - { - "type": "AudioStream", - "name": "stream_27", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 27 - }, - { - "type": "AudioStream", - "name": "stream_28", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 28 - }, - { - "type": "AudioStream", - "name": "stream_29", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 29 - }, - { - "type": "AudioStream", - "name": "stream_30", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 30 - }, - { - "type": "AudioStream", - "name": "stream_31", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 31 - }, - { - "type": "AudioStream", - "name": "stream_32", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 32 - }, - { - "type": "AudioStream", - "name": "stream_33", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 33 - }, - { - "type": "AudioStream", - "name": "stream_34", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 34 - }, - { - "type": "AudioStream", - "name": "stream_35", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 35 - }, - { - "type": "AudioStream", - "name": "stream_36", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 36 - }, - { - "type": "AudioStream", - "name": "stream_37", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 37 - }, - { - "type": "AudioStream", - "name": "stream_38", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 38 - }, - { - "type": "AudioStream", - "name": "stream_39", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 39 - }, - { - "type": "AudioStream", - "name": "stream_40", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 40 - }, - { - "type": "AudioStream", - "name": "stream_41", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 41 - }, - { - "type": "AudioStream", - "name": "stream_42", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 42 - }, - { - "type": "AudioStream", - "name": "stream_43", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 43 - }, - { - "type": "AudioStream", - "name": "stream_44", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 44 - }, - { - "type": "AudioStream", - "name": "stream_45", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 45 - }, - { - "type": "AudioStream", - "name": "stream_46", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 46 - }, - { - "type": "AudioStream", - "name": "stream_47", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 47 - }, - { - "type": "AudioStream", - "name": "stream_48", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 48 - }, - { - "type": "AudioStream", - "name": "stream_49", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 49 - }, - { - "type": "AudioStream", - "name": "stream_50", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 50 - }, - { - "type": "AudioStream", - "name": "stream_51", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 51 - }, - { - "type": "AudioStream", - "name": "stream_52", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 52 - }, - { - "type": "AudioStream", - "name": "stream_53", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 53 - }, - { - "type": "AudioStream", - "name": "stream_54", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 54 - }, - { - "type": "AudioStream", - "name": "stream_55", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 55 - }, - { - "type": "AudioStream", - "name": "stream_56", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 56 - }, - { - "type": "AudioStream", - "name": "stream_57", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 57 - }, - { - "type": "AudioStream", - "name": "stream_58", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 58 - }, - { - "type": "AudioStream", - "name": "stream_59", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 59 - }, - { - "type": "AudioStream", - "name": "stream_60", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 60 - }, - { - "type": "AudioStream", - "name": "stream_61", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 61 - }, - { - "type": "AudioStream", - "name": "stream_62", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 62 - }, - { - "type": "AudioStream", - "name": "stream_63", - "setter": "set_list_stream", - "getter": "get_list_stream", - "index": 63 - } - ] - }, - { - "name": "AudioStreamPolyphonic", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "methods": [ - { - "name": "set_polyphony", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "voices", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_polyphony", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "polyphony", - "setter": "set_polyphony", - "getter": "get_polyphony" - } - ] - }, - { - "name": "AudioStreamRandomizer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "enums": [ - { - "name": "PlaybackMode", - "is_bitfield": false, - "values": [ - { - "name": "PLAYBACK_RANDOM_NO_REPEATS", - "value": 0 - }, - { - "name": "PLAYBACK_RANDOM", - "value": 1 - }, - { - "name": "PLAYBACK_SEQUENTIAL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892018854, - "hash_compatibility": [ - 3197802065 - ], - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "stream", - "type": "AudioStream" - }, - { - "name": "weight", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "move_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index_from", - "type": "int", - "meta": "int32" - }, - { - "name": "index_to", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111075094, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2739380747, - "return_value": { - "type": "AudioStream" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stream_probability_weight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "weight", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stream_probability_weight", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_streams_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_streams_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_random_pitch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_random_pitch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_random_pitch_semitones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "semitones", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_random_pitch_semitones", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_random_volume_offset_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "db_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_random_volume_offset_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_playback_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3950967023, - "arguments": [ - { - "name": "mode", - "type": "enum::AudioStreamRandomizer.PlaybackMode" - } - ] - }, - { - "name": "get_playback_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3943055077, - "return_value": { - "type": "enum::AudioStreamRandomizer.PlaybackMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "playback_mode", - "setter": "set_playback_mode", - "getter": "get_playback_mode" - }, - { - "type": "float", - "name": "random_pitch", - "setter": "set_random_pitch", - "getter": "get_random_pitch" - }, - { - "type": "float", - "name": "random_pitch_semitones", - "setter": "set_random_pitch_semitones", - "getter": "get_random_pitch_semitones" - }, - { - "type": "float", - "name": "random_volume_offset_db", - "setter": "set_random_volume_offset_db", - "getter": "get_random_volume_offset_db" - }, - { - "type": "int", - "name": "streams_count", - "setter": "set_streams_count", - "getter": "get_streams_count" - } - ] - }, - { - "name": "AudioStreamSynchronized", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "constants": [ - { - "name": "MAX_STREAMS", - "value": 32 - } - ], - "methods": [ - { - "name": "set_stream_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stream_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stream_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sync_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111075094, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - }, - { - "name": "audio_stream", - "type": "AudioStream" - } - ] - }, - { - "name": "get_sync_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2739380747, - "return_value": { - "type": "AudioStream" - }, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_sync_stream_volume", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - }, - { - "name": "volume_db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sync_stream_volume", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "stream_index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "stream_count", - "setter": "set_stream_count", - "getter": "get_stream_count" - } - ] - }, - { - "name": "AudioStreamWAV", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "AudioStream", - "api_type": "core", - "enums": [ - { - "name": "Format", - "is_bitfield": false, - "values": [ - { - "name": "FORMAT_8_BITS", - "value": 0 - }, - { - "name": "FORMAT_16_BITS", - "value": 1 - }, - { - "name": "FORMAT_IMA_ADPCM", - "value": 2 - }, - { - "name": "FORMAT_QOA", - "value": 3 - } - ] - }, - { - "name": "LoopMode", - "is_bitfield": false, - "values": [ - { - "name": "LOOP_DISABLED", - "value": 0 - }, - { - "name": "LOOP_FORWARD", - "value": 1 - }, - { - "name": "LOOP_PINGPONG", - "value": 2 - }, - { - "name": "LOOP_BACKWARD", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "load_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4266838938, - "return_value": { - "type": "AudioStreamWAV" - }, - "arguments": [ - { - "name": "stream_data", - "type": "PackedByteArray" - }, - { - "name": "options", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4015802384, - "return_value": { - "type": "AudioStreamWAV" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "options", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 60648488, - "arguments": [ - { - "name": "format", - "type": "enum::AudioStreamWAV.Format" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3151724922, - "return_value": { - "type": "enum::AudioStreamWAV.Format" - } - }, - { - "name": "set_loop_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2444882972, - "arguments": [ - { - "name": "loop_mode", - "type": "enum::AudioStreamWAV.LoopMode" - } - ] - }, - { - "name": "get_loop_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 393560655, - "return_value": { - "type": "enum::AudioStreamWAV.LoopMode" - } - }, - { - "name": "set_loop_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "loop_begin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_loop_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_loop_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "loop_end", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_loop_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mix_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mix_rate", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_mix_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stereo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "stereo", - "type": "bool" - } - ] - }, - { - "name": "is_stereo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "tags", - "type": "Dictionary" - } - ] - }, - { - "name": "get_tags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "save_to_wav", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "data", - "setter": "set_data", - "getter": "get_data" - }, - { - "type": "int", - "name": "format", - "setter": "set_format", - "getter": "get_format" - }, - { - "type": "int", - "name": "loop_mode", - "setter": "set_loop_mode", - "getter": "get_loop_mode" - }, - { - "type": "int", - "name": "loop_begin", - "setter": "set_loop_begin", - "getter": "get_loop_begin" - }, - { - "type": "int", - "name": "loop_end", - "setter": "set_loop_end", - "getter": "get_loop_end" - }, - { - "type": "int", - "name": "mix_rate", - "setter": "set_mix_rate", - "getter": "get_mix_rate" - }, - { - "type": "bool", - "name": "stereo", - "setter": "set_stereo", - "getter": "is_stereo" - }, - { - "type": "Dictionary", - "name": "tags", - "setter": "set_tags", - "getter": "get_tags" - } - ] - }, - { - "name": "AwaitTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core", - "methods": [ - { - "name": "set_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3123469156, - "return_value": { - "type": "AwaitTweener" - }, - "arguments": [ - { - "name": "timeout", - "type": "float", - "meta": "double" - } - ] - } - ] - }, - { - "name": "BackBufferCopy", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "CopyMode", - "is_bitfield": false, - "values": [ - { - "name": "COPY_MODE_DISABLED", - "value": 0 - }, - { - "name": "COPY_MODE_RECT", - "value": 1 - }, - { - "name": "COPY_MODE_VIEWPORT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_copy_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1713538590, - "arguments": [ - { - "name": "copy_mode", - "type": "enum::BackBufferCopy.CopyMode" - } - ] - }, - { - "name": "get_copy_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3271169440, - "return_value": { - "type": "enum::BackBufferCopy.CopyMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "copy_mode", - "setter": "set_copy_mode", - "getter": "get_copy_mode" - }, - { - "type": "Rect2", - "name": "rect", - "setter": "set_rect", - "getter": "get_rect" - } - ] - }, - { - "name": "BaseButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "DrawMode", - "is_bitfield": false, - "values": [ - { - "name": "DRAW_NORMAL", - "value": 0 - }, - { - "name": "DRAW_PRESSED", - "value": 1 - }, - { - "name": "DRAW_HOVER", - "value": 2 - }, - { - "name": "DRAW_DISABLED", - "value": 3 - }, - { - "name": "DRAW_HOVER_PRESSED", - "value": 4 - } - ] - }, - { - "name": "ActionMode", - "is_bitfield": false, - "values": [ - { - "name": "ACTION_MODE_BUTTON_PRESS", - "value": 0 - }, - { - "name": "ACTION_MODE_BUTTON_RELEASE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_pressed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_toggled", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "toggled_on", - "type": "bool" - } - ] - }, - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pressed_no_signal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_hovered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_toggle_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_toggle_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut_in_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_shortcut_in_tooltip_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_action_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1985162088, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseButton.ActionMode" - } - ] - }, - { - "name": "get_action_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2589712189, - "return_value": { - "type": "enum::BaseButton.ActionMode" - } - }, - { - "name": "set_button_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3950145251, - "arguments": [ - { - "name": "mask", - "type": "bitfield::MouseButtonMask" - } - ] - }, - { - "name": "get_button_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2512161324, - "return_value": { - "type": "bitfield::MouseButtonMask" - } - }, - { - "name": "get_draw_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2492721305, - "return_value": { - "type": "enum::BaseButton.DrawMode" - } - }, - { - "name": "set_keep_pressed_outside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_keep_pressed_outside", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut_feedback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_shortcut_feedback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 857163497, - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - } - ] - }, - { - "name": "get_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3415666916, - "return_value": { - "type": "Shortcut" - } - }, - { - "name": "set_button_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794463739, - "arguments": [ - { - "name": "button_group", - "type": "ButtonGroup" - } - ] - }, - { - "name": "get_button_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 281644053, - "return_value": { - "type": "ButtonGroup" - } - } - ], - "signals": [ - { - "name": "pressed" - }, - { - "name": "button_up" - }, - { - "name": "button_down" - }, - { - "name": "toggled", - "arguments": [ - { - "name": "toggled_on", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "disabled", - "setter": "set_disabled", - "getter": "is_disabled" - }, - { - "type": "bool", - "name": "toggle_mode", - "setter": "set_toggle_mode", - "getter": "is_toggle_mode" - }, - { - "type": "bool", - "name": "button_pressed", - "setter": "set_pressed", - "getter": "is_pressed" - }, - { - "type": "int", - "name": "action_mode", - "setter": "set_action_mode", - "getter": "get_action_mode" - }, - { - "type": "int", - "name": "button_mask", - "setter": "set_button_mask", - "getter": "get_button_mask" - }, - { - "type": "bool", - "name": "keep_pressed_outside", - "setter": "set_keep_pressed_outside", - "getter": "is_keep_pressed_outside" - }, - { - "type": "ButtonGroup", - "name": "button_group", - "setter": "set_button_group", - "getter": "get_button_group" - }, - { - "type": "Shortcut", - "name": "shortcut", - "setter": "set_shortcut", - "getter": "get_shortcut" - }, - { - "type": "bool", - "name": "shortcut_feedback", - "setter": "set_shortcut_feedback", - "getter": "is_shortcut_feedback" - }, - { - "type": "bool", - "name": "shortcut_in_tooltip", - "setter": "set_shortcut_in_tooltip", - "getter": "is_shortcut_in_tooltip_enabled" - } - ] - }, - { - "name": "BaseMaterial3D", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Material", - "api_type": "core", - "enums": [ - { - "name": "TextureParam", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_ALBEDO", - "value": 0 - }, - { - "name": "TEXTURE_METALLIC", - "value": 1 - }, - { - "name": "TEXTURE_ROUGHNESS", - "value": 2 - }, - { - "name": "TEXTURE_EMISSION", - "value": 3 - }, - { - "name": "TEXTURE_NORMAL", - "value": 4 - }, - { - "name": "TEXTURE_BENT_NORMAL", - "value": 18 - }, - { - "name": "TEXTURE_RIM", - "value": 5 - }, - { - "name": "TEXTURE_CLEARCOAT", - "value": 6 - }, - { - "name": "TEXTURE_FLOWMAP", - "value": 7 - }, - { - "name": "TEXTURE_AMBIENT_OCCLUSION", - "value": 8 - }, - { - "name": "TEXTURE_HEIGHTMAP", - "value": 9 - }, - { - "name": "TEXTURE_SUBSURFACE_SCATTERING", - "value": 10 - }, - { - "name": "TEXTURE_SUBSURFACE_TRANSMITTANCE", - "value": 11 - }, - { - "name": "TEXTURE_BACKLIGHT", - "value": 12 - }, - { - "name": "TEXTURE_REFRACTION", - "value": 13 - }, - { - "name": "TEXTURE_DETAIL_MASK", - "value": 14 - }, - { - "name": "TEXTURE_DETAIL_ALBEDO", - "value": 15 - }, - { - "name": "TEXTURE_DETAIL_NORMAL", - "value": 16 - }, - { - "name": "TEXTURE_ORM", - "value": 17 - }, - { - "name": "TEXTURE_MAX", - "value": 19 - } - ] - }, - { - "name": "TextureFilter", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_FILTER_NEAREST", - "value": 0 - }, - { - "name": "TEXTURE_FILTER_LINEAR", - "value": 1 - }, - { - "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", - "value": 2 - }, - { - "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", - "value": 3 - }, - { - "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", - "value": 4 - }, - { - "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", - "value": 5 - }, - { - "name": "TEXTURE_FILTER_MAX", - "value": 6 - } - ] - }, - { - "name": "DetailUV", - "is_bitfield": false, - "values": [ - { - "name": "DETAIL_UV_1", - "value": 0 - }, - { - "name": "DETAIL_UV_2", - "value": 1 - } - ] - }, - { - "name": "Transparency", - "is_bitfield": false, - "values": [ - { - "name": "TRANSPARENCY_DISABLED", - "value": 0 - }, - { - "name": "TRANSPARENCY_ALPHA", - "value": 1 - }, - { - "name": "TRANSPARENCY_ALPHA_SCISSOR", - "value": 2 - }, - { - "name": "TRANSPARENCY_ALPHA_HASH", - "value": 3 - }, - { - "name": "TRANSPARENCY_ALPHA_DEPTH_PRE_PASS", - "value": 4 - }, - { - "name": "TRANSPARENCY_MAX", - "value": 5 - } - ] - }, - { - "name": "ShadingMode", - "is_bitfield": false, - "values": [ - { - "name": "SHADING_MODE_UNSHADED", - "value": 0 - }, - { - "name": "SHADING_MODE_PER_PIXEL", - "value": 1 - }, - { - "name": "SHADING_MODE_PER_VERTEX", - "value": 2 - }, - { - "name": "SHADING_MODE_MAX", - "value": 3 - } - ] - }, - { - "name": "Feature", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_EMISSION", - "value": 0 - }, - { - "name": "FEATURE_NORMAL_MAPPING", - "value": 1 - }, - { - "name": "FEATURE_RIM", - "value": 2 - }, - { - "name": "FEATURE_CLEARCOAT", - "value": 3 - }, - { - "name": "FEATURE_ANISOTROPY", - "value": 4 - }, - { - "name": "FEATURE_AMBIENT_OCCLUSION", - "value": 5 - }, - { - "name": "FEATURE_HEIGHT_MAPPING", - "value": 6 - }, - { - "name": "FEATURE_SUBSURFACE_SCATTERING", - "value": 7 - }, - { - "name": "FEATURE_SUBSURFACE_TRANSMITTANCE", - "value": 8 - }, - { - "name": "FEATURE_BACKLIGHT", - "value": 9 - }, - { - "name": "FEATURE_REFRACTION", - "value": 10 - }, - { - "name": "FEATURE_DETAIL", - "value": 11 - }, - { - "name": "FEATURE_BENT_NORMAL_MAPPING", - "value": 12 - }, - { - "name": "FEATURE_MAX", - "value": 13 - } - ] - }, - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_MIX", - "value": 0 - }, - { - "name": "BLEND_MODE_ADD", - "value": 1 - }, - { - "name": "BLEND_MODE_SUB", - "value": 2 - }, - { - "name": "BLEND_MODE_MUL", - "value": 3 - }, - { - "name": "BLEND_MODE_PREMULT_ALPHA", - "value": 4 - } - ] - }, - { - "name": "AlphaAntiAliasing", - "is_bitfield": false, - "values": [ - { - "name": "ALPHA_ANTIALIASING_OFF", - "value": 0 - }, - { - "name": "ALPHA_ANTIALIASING_ALPHA_TO_COVERAGE", - "value": 1 - }, - { - "name": "ALPHA_ANTIALIASING_ALPHA_TO_COVERAGE_AND_TO_ONE", - "value": 2 - } - ] - }, - { - "name": "DepthDrawMode", - "is_bitfield": false, - "values": [ - { - "name": "DEPTH_DRAW_OPAQUE_ONLY", - "value": 0 - }, - { - "name": "DEPTH_DRAW_ALWAYS", - "value": 1 - }, - { - "name": "DEPTH_DRAW_DISABLED", - "value": 2 - } - ] - }, - { - "name": "DepthTest", - "is_bitfield": false, - "values": [ - { - "name": "DEPTH_TEST_DEFAULT", - "value": 0 - }, - { - "name": "DEPTH_TEST_INVERTED", - "value": 1 - } - ] - }, - { - "name": "CullMode", - "is_bitfield": false, - "values": [ - { - "name": "CULL_BACK", - "value": 0 - }, - { - "name": "CULL_FRONT", - "value": 1 - }, - { - "name": "CULL_DISABLED", - "value": 2 - } - ] - }, - { - "name": "Flags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_DISABLE_DEPTH_TEST", - "value": 0 - }, - { - "name": "FLAG_ALBEDO_FROM_VERTEX_COLOR", - "value": 1 - }, - { - "name": "FLAG_SRGB_VERTEX_COLOR", - "value": 2 - }, - { - "name": "FLAG_USE_POINT_SIZE", - "value": 3 - }, - { - "name": "FLAG_FIXED_SIZE", - "value": 4 - }, - { - "name": "FLAG_BILLBOARD_KEEP_SCALE", - "value": 5 - }, - { - "name": "FLAG_UV1_USE_TRIPLANAR", - "value": 6 - }, - { - "name": "FLAG_UV2_USE_TRIPLANAR", - "value": 7 - }, - { - "name": "FLAG_UV1_USE_WORLD_TRIPLANAR", - "value": 8 - }, - { - "name": "FLAG_UV2_USE_WORLD_TRIPLANAR", - "value": 9 - }, - { - "name": "FLAG_AO_ON_UV2", - "value": 10 - }, - { - "name": "FLAG_EMISSION_ON_UV2", - "value": 11 - }, - { - "name": "FLAG_ALBEDO_TEXTURE_FORCE_SRGB", - "value": 12 - }, - { - "name": "FLAG_DONT_RECEIVE_SHADOWS", - "value": 13 - }, - { - "name": "FLAG_DISABLE_AMBIENT_LIGHT", - "value": 14 - }, - { - "name": "FLAG_USE_SHADOW_TO_OPACITY", - "value": 15 - }, - { - "name": "FLAG_USE_TEXTURE_REPEAT", - "value": 16 - }, - { - "name": "FLAG_INVERT_HEIGHTMAP", - "value": 17 - }, - { - "name": "FLAG_SUBSURFACE_MODE_SKIN", - "value": 18 - }, - { - "name": "FLAG_PARTICLE_TRAILS_MODE", - "value": 19 - }, - { - "name": "FLAG_ALBEDO_TEXTURE_MSDF", - "value": 20 - }, - { - "name": "FLAG_DISABLE_FOG", - "value": 21 - }, - { - "name": "FLAG_DISABLE_SPECULAR_OCCLUSION", - "value": 22 - }, - { - "name": "FLAG_USE_Z_CLIP_SCALE", - "value": 23 - }, - { - "name": "FLAG_USE_FOV_OVERRIDE", - "value": 24 - }, - { - "name": "FLAG_MAX", - "value": 25 - } - ] - }, - { - "name": "DiffuseMode", - "is_bitfield": false, - "values": [ - { - "name": "DIFFUSE_BURLEY", - "value": 0 - }, - { - "name": "DIFFUSE_LAMBERT", - "value": 1 - }, - { - "name": "DIFFUSE_LAMBERT_WRAP", - "value": 2 - }, - { - "name": "DIFFUSE_TOON", - "value": 3 - } - ] - }, - { - "name": "SpecularMode", - "is_bitfield": false, - "values": [ - { - "name": "SPECULAR_SCHLICK_GGX", - "value": 0 - }, - { - "name": "SPECULAR_TOON", - "value": 1 - }, - { - "name": "SPECULAR_DISABLED", - "value": 2 - } - ] - }, - { - "name": "BillboardMode", - "is_bitfield": false, - "values": [ - { - "name": "BILLBOARD_DISABLED", - "value": 0 - }, - { - "name": "BILLBOARD_ENABLED", - "value": 1 - }, - { - "name": "BILLBOARD_FIXED_Y", - "value": 2 - }, - { - "name": "BILLBOARD_PARTICLES", - "value": 3 - } - ] - }, - { - "name": "TextureChannel", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_CHANNEL_RED", - "value": 0 - }, - { - "name": "TEXTURE_CHANNEL_GREEN", - "value": 1 - }, - { - "name": "TEXTURE_CHANNEL_BLUE", - "value": 2 - }, - { - "name": "TEXTURE_CHANNEL_ALPHA", - "value": 3 - }, - { - "name": "TEXTURE_CHANNEL_GRAYSCALE", - "value": 4 - } - ] - }, - { - "name": "EmissionOperator", - "is_bitfield": false, - "values": [ - { - "name": "EMISSION_OP_ADD", - "value": 0 - }, - { - "name": "EMISSION_OP_MULTIPLY", - "value": 1 - } - ] - }, - { - "name": "DistanceFadeMode", - "is_bitfield": false, - "values": [ - { - "name": "DISTANCE_FADE_DISABLED", - "value": 0 - }, - { - "name": "DISTANCE_FADE_PIXEL_ALPHA", - "value": 1 - }, - { - "name": "DISTANCE_FADE_PIXEL_DITHER", - "value": 2 - }, - { - "name": "DISTANCE_FADE_OBJECT_DITHER", - "value": 3 - } - ] - }, - { - "name": "StencilMode", - "is_bitfield": false, - "values": [ - { - "name": "STENCIL_MODE_DISABLED", - "value": 0 - }, - { - "name": "STENCIL_MODE_OUTLINE", - "value": 1 - }, - { - "name": "STENCIL_MODE_XRAY", - "value": 2 - }, - { - "name": "STENCIL_MODE_CUSTOM", - "value": 3 - } - ] - }, - { - "name": "StencilFlags", - "is_bitfield": false, - "values": [ - { - "name": "STENCIL_FLAG_READ", - "value": 1 - }, - { - "name": "STENCIL_FLAG_WRITE", - "value": 2 - }, - { - "name": "STENCIL_FLAG_WRITE_DEPTH_FAIL", - "value": 4 - } - ] - }, - { - "name": "StencilCompare", - "is_bitfield": false, - "values": [ - { - "name": "STENCIL_COMPARE_ALWAYS", - "value": 0 - }, - { - "name": "STENCIL_COMPARE_LESS", - "value": 1 - }, - { - "name": "STENCIL_COMPARE_EQUAL", - "value": 2 - }, - { - "name": "STENCIL_COMPARE_LESS_OR_EQUAL", - "value": 3 - }, - { - "name": "STENCIL_COMPARE_GREATER", - "value": 4 - }, - { - "name": "STENCIL_COMPARE_NOT_EQUAL", - "value": 5 - }, - { - "name": "STENCIL_COMPARE_GREATER_OR_EQUAL", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_albedo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "albedo", - "type": "Color" - } - ] - }, - { - "name": "get_albedo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_transparency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3435651667, - "arguments": [ - { - "name": "transparency", - "type": "enum::BaseMaterial3D.Transparency" - } - ] - }, - { - "name": "get_transparency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990903061, - "return_value": { - "type": "enum::BaseMaterial3D.Transparency" - } - }, - { - "name": "set_alpha_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3212649852, - "arguments": [ - { - "name": "alpha_aa", - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - ] - }, - { - "name": "get_alpha_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2889939400, - "return_value": { - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - }, - { - "name": "set_alpha_antialiasing_edge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_antialiasing_edge", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_shading_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3368750322, - "arguments": [ - { - "name": "shading_mode", - "type": "enum::BaseMaterial3D.ShadingMode" - } - ] - }, - { - "name": "get_shading_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2132070559, - "return_value": { - "type": "enum::BaseMaterial3D.ShadingMode" - } - }, - { - "name": "set_specular", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "specular", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_specular", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_metallic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "metallic", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_metallic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_roughness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "roughness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_roughness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "emission", - "type": "Color" - } - ] - }, - { - "name": "get_emission", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_emission_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "emission_energy_multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "emission_energy_multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_normal_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "normal_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_normal_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rim", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rim", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rim", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rim_tint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rim_tint", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rim_tint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_clearcoat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "clearcoat", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_clearcoat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_clearcoat_roughness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "clearcoat_roughness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_clearcoat_roughness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_anisotropy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "anisotropy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_anisotropy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_heightmap_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "heightmap_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_heightmap_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_subsurface_scattering_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_subsurface_scattering_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transmittance_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_transmittance_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_transmittance_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_transmittance_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transmittance_boost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "boost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_transmittance_boost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_backlight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "backlight", - "type": "Color" - } - ] - }, - { - "name": "get_backlight", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_refraction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "refraction", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_refraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_point_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "point_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_detail_uv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 456801921, - "arguments": [ - { - "name": "detail_uv", - "type": "enum::BaseMaterial3D.DetailUV" - } - ] - }, - { - "name": "get_detail_uv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2306920512, - "return_value": { - "type": "enum::BaseMaterial3D.DetailUV" - } - }, - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2830186259, - "arguments": [ - { - "name": "blend_mode", - "type": "enum::BaseMaterial3D.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4022690962, - "return_value": { - "type": "enum::BaseMaterial3D.BlendMode" - } - }, - { - "name": "set_depth_draw_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1456584748, - "arguments": [ - { - "name": "depth_draw_mode", - "type": "enum::BaseMaterial3D.DepthDrawMode" - } - ] - }, - { - "name": "get_depth_draw_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2578197639, - "return_value": { - "type": "enum::BaseMaterial3D.DepthDrawMode" - } - }, - { - "name": "set_depth_test", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3918692338, - "arguments": [ - { - "name": "depth_test", - "type": "enum::BaseMaterial3D.DepthTest" - } - ] - }, - { - "name": "get_depth_test", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3434785811, - "return_value": { - "type": "enum::BaseMaterial3D.DepthTest" - } - }, - { - "name": "set_cull_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2338909218, - "arguments": [ - { - "name": "cull_mode", - "type": "enum::BaseMaterial3D.CullMode" - } - ] - }, - { - "name": "get_cull_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1941499586, - "return_value": { - "type": "enum::BaseMaterial3D.CullMode" - } - }, - { - "name": "set_diffuse_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1045299638, - "arguments": [ - { - "name": "diffuse_mode", - "type": "enum::BaseMaterial3D.DiffuseMode" - } - ] - }, - { - "name": "get_diffuse_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3973617136, - "return_value": { - "type": "enum::BaseMaterial3D.DiffuseMode" - } - }, - { - "name": "set_specular_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 584737147, - "arguments": [ - { - "name": "specular_mode", - "type": "enum::BaseMaterial3D.SpecularMode" - } - ] - }, - { - "name": "get_specular_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2569953298, - "return_value": { - "type": "enum::BaseMaterial3D.SpecularMode" - } - }, - { - "name": "set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3070159527, - "arguments": [ - { - "name": "flag", - "type": "enum::BaseMaterial3D.Flags" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410065, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::BaseMaterial3D.Flags" - } - ] - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 22904437, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289213076, - "return_value": { - "type": "enum::BaseMaterial3D.TextureFilter" - } - }, - { - "name": "set_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2819288693, - "arguments": [ - { - "name": "feature", - "type": "enum::BaseMaterial3D.Feature" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965241794, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::BaseMaterial3D.Feature" - } - ] - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 464208135, - "arguments": [ - { - "name": "param", - "type": "enum::BaseMaterial3D.TextureParam" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 329605813, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "param", - "type": "enum::BaseMaterial3D.TextureParam" - } - ] - }, - { - "name": "set_detail_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2830186259, - "arguments": [ - { - "name": "detail_blend_mode", - "type": "enum::BaseMaterial3D.BlendMode" - } - ] - }, - { - "name": "get_detail_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4022690962, - "return_value": { - "type": "enum::BaseMaterial3D.BlendMode" - } - }, - { - "name": "set_uv1_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_uv1_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_uv1_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_uv1_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_uv1_triplanar_blend_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_uv1_triplanar_blend_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_uv2_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_uv2_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_uv2_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_uv2_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_uv2_triplanar_blend_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_uv2_triplanar_blend_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_billboard_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4202036497, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.BillboardMode" - } - ] - }, - { - "name": "get_billboard_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1283840139, - "return_value": { - "type": "enum::BaseMaterial3D.BillboardMode" - } - }, - { - "name": "set_particles_anim_h_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_particles_anim_h_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_particles_anim_v_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_particles_anim_v_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_particles_anim_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "get_particles_anim_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_heightmap_deep_parallax", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_heightmap_deep_parallax_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_heightmap_deep_parallax_min_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_heightmap_deep_parallax_min_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_heightmap_deep_parallax_max_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_heightmap_deep_parallax_max_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_heightmap_deep_parallax_flip_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip", - "type": "bool" - } - ] - }, - { - "name": "get_heightmap_deep_parallax_flip_tangent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_heightmap_deep_parallax_flip_binormal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip", - "type": "bool" - } - ] - }, - { - "name": "get_heightmap_deep_parallax_flip_binormal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_grow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_grow", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3825128922, - "arguments": [ - { - "name": "operator", - "type": "enum::BaseMaterial3D.EmissionOperator" - } - ] - }, - { - "name": "get_emission_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974205018, - "return_value": { - "type": "enum::BaseMaterial3D.EmissionOperator" - } - }, - { - "name": "set_ao_light_affect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ao_light_affect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_scissor_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_scissor_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_hash_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_hash_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_grow_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_grow_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_metallic_texture_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 744167988, - "arguments": [ - { - "name": "channel", - "type": "enum::BaseMaterial3D.TextureChannel" - } - ] - }, - { - "name": "get_metallic_texture_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 568133867, - "return_value": { - "type": "enum::BaseMaterial3D.TextureChannel" - } - }, - { - "name": "set_roughness_texture_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 744167988, - "arguments": [ - { - "name": "channel", - "type": "enum::BaseMaterial3D.TextureChannel" - } - ] - }, - { - "name": "get_roughness_texture_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 568133867, - "return_value": { - "type": "enum::BaseMaterial3D.TextureChannel" - } - }, - { - "name": "set_ao_texture_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 744167988, - "arguments": [ - { - "name": "channel", - "type": "enum::BaseMaterial3D.TextureChannel" - } - ] - }, - { - "name": "get_ao_texture_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 568133867, - "return_value": { - "type": "enum::BaseMaterial3D.TextureChannel" - } - }, - { - "name": "set_refraction_texture_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 744167988, - "arguments": [ - { - "name": "channel", - "type": "enum::BaseMaterial3D.TextureChannel" - } - ] - }, - { - "name": "get_refraction_texture_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 568133867, - "return_value": { - "type": "enum::BaseMaterial3D.TextureChannel" - } - }, - { - "name": "set_proximity_fade_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_proximity_fade_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_proximity_fade_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_proximity_fade_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_msdf_pixel_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "range", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_msdf_pixel_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_msdf_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_msdf_outline_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_distance_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1379478617, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.DistanceFadeMode" - } - ] - }, - { - "name": "get_distance_fade", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2694575734, - "return_value": { - "type": "enum::BaseMaterial3D.DistanceFadeMode" - } - }, - { - "name": "set_distance_fade_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_distance_fade_min_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_min_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_z_clip_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_z_clip_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fov_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fov_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_stencil_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2272367200, - "arguments": [ - { - "name": "stencil_mode", - "type": "enum::BaseMaterial3D.StencilMode" - } - ] - }, - { - "name": "get_stencil_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2908443456, - "return_value": { - "type": "enum::BaseMaterial3D.StencilMode" - } - }, - { - "name": "set_stencil_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stencil_flags", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stencil_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stencil_compare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3741726481, - "arguments": [ - { - "name": "stencil_compare", - "type": "enum::BaseMaterial3D.StencilCompare" - } - ] - }, - { - "name": "get_stencil_compare", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2824600492, - "return_value": { - "type": "enum::BaseMaterial3D.StencilCompare" - } - }, - { - "name": "set_stencil_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stencil_reference", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stencil_reference", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stencil_effect_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "stencil_color", - "type": "Color" - } - ] - }, - { - "name": "get_stencil_effect_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_stencil_effect_outline_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "stencil_outline_thickness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stencil_effect_outline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "transparency", - "setter": "set_transparency", - "getter": "get_transparency" - }, - { - "type": "float", - "name": "alpha_scissor_threshold", - "setter": "set_alpha_scissor_threshold", - "getter": "get_alpha_scissor_threshold" - }, - { - "type": "float", - "name": "alpha_hash_scale", - "setter": "set_alpha_hash_scale", - "getter": "get_alpha_hash_scale" - }, - { - "type": "int", - "name": "alpha_antialiasing_mode", - "setter": "set_alpha_antialiasing", - "getter": "get_alpha_antialiasing" - }, - { - "type": "float", - "name": "alpha_antialiasing_edge", - "setter": "set_alpha_antialiasing_edge", - "getter": "get_alpha_antialiasing_edge" - }, - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - }, - { - "type": "int", - "name": "cull_mode", - "setter": "set_cull_mode", - "getter": "get_cull_mode" - }, - { - "type": "int", - "name": "depth_draw_mode", - "setter": "set_depth_draw_mode", - "getter": "get_depth_draw_mode" - }, - { - "type": "bool", - "name": "no_depth_test", - "setter": "set_flag", - "getter": "get_flag", - "index": 0 - }, - { - "type": "int", - "name": "depth_test", - "setter": "set_depth_test", - "getter": "get_depth_test" - }, - { - "type": "int", - "name": "shading_mode", - "setter": "set_shading_mode", - "getter": "get_shading_mode" - }, - { - "type": "int", - "name": "diffuse_mode", - "setter": "set_diffuse_mode", - "getter": "get_diffuse_mode" - }, - { - "type": "int", - "name": "specular_mode", - "setter": "set_specular_mode", - "getter": "get_specular_mode" - }, - { - "type": "bool", - "name": "disable_ambient_light", - "setter": "set_flag", - "getter": "get_flag", - "index": 14 - }, - { - "type": "bool", - "name": "disable_fog", - "setter": "set_flag", - "getter": "get_flag", - "index": 21 - }, - { - "type": "bool", - "name": "disable_specular_occlusion", - "setter": "set_flag", - "getter": "get_flag", - "index": 22 - }, - { - "type": "bool", - "name": "vertex_color_use_as_albedo", - "setter": "set_flag", - "getter": "get_flag", - "index": 1 - }, - { - "type": "bool", - "name": "vertex_color_is_srgb", - "setter": "set_flag", - "getter": "get_flag", - "index": 2 - }, - { - "type": "Color", - "name": "albedo_color", - "setter": "set_albedo", - "getter": "get_albedo" - }, - { - "type": "Texture2D", - "name": "albedo_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 0 - }, - { - "type": "bool", - "name": "albedo_texture_force_srgb", - "setter": "set_flag", - "getter": "get_flag", - "index": 12 - }, - { - "type": "bool", - "name": "albedo_texture_msdf", - "setter": "set_flag", - "getter": "get_flag", - "index": 20 - }, - { - "type": "Texture2D", - "name": "orm_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 17 - }, - { - "type": "float", - "name": "metallic", - "setter": "set_metallic", - "getter": "get_metallic" - }, - { - "type": "float", - "name": "metallic_specular", - "setter": "set_specular", - "getter": "get_specular" - }, - { - "type": "Texture2D", - "name": "metallic_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 1 - }, - { - "type": "int", - "name": "metallic_texture_channel", - "setter": "set_metallic_texture_channel", - "getter": "get_metallic_texture_channel" - }, - { - "type": "float", - "name": "roughness", - "setter": "set_roughness", - "getter": "get_roughness" - }, - { - "type": "Texture2D", - "name": "roughness_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 2 - }, - { - "type": "int", - "name": "roughness_texture_channel", - "setter": "set_roughness_texture_channel", - "getter": "get_roughness_texture_channel" - }, - { - "type": "bool", - "name": "emission_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 0 - }, - { - "type": "Color", - "name": "emission", - "setter": "set_emission", - "getter": "get_emission" - }, - { - "type": "float", - "name": "emission_energy_multiplier", - "setter": "set_emission_energy_multiplier", - "getter": "get_emission_energy_multiplier" - }, - { - "type": "float", - "name": "emission_intensity", - "setter": "set_emission_intensity", - "getter": "get_emission_intensity" - }, - { - "type": "int", - "name": "emission_operator", - "setter": "set_emission_operator", - "getter": "get_emission_operator" - }, - { - "type": "bool", - "name": "emission_on_uv2", - "setter": "set_flag", - "getter": "get_flag", - "index": 11 - }, - { - "type": "Texture2D", - "name": "emission_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 3 - }, - { - "type": "bool", - "name": "normal_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 1 - }, - { - "type": "float", - "name": "normal_scale", - "setter": "set_normal_scale", - "getter": "get_normal_scale" - }, - { - "type": "Texture2D", - "name": "normal_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 4 - }, - { - "type": "bool", - "name": "bent_normal_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 12 - }, - { - "type": "Texture2D", - "name": "bent_normal_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 18 - }, - { - "type": "bool", - "name": "rim_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 2 - }, - { - "type": "float", - "name": "rim", - "setter": "set_rim", - "getter": "get_rim" - }, - { - "type": "float", - "name": "rim_tint", - "setter": "set_rim_tint", - "getter": "get_rim_tint" - }, - { - "type": "Texture2D", - "name": "rim_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 5 - }, - { - "type": "bool", - "name": "clearcoat_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 3 - }, - { - "type": "float", - "name": "clearcoat", - "setter": "set_clearcoat", - "getter": "get_clearcoat" - }, - { - "type": "float", - "name": "clearcoat_roughness", - "setter": "set_clearcoat_roughness", - "getter": "get_clearcoat_roughness" - }, - { - "type": "Texture2D", - "name": "clearcoat_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 6 - }, - { - "type": "bool", - "name": "anisotropy_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 4 - }, - { - "type": "float", - "name": "anisotropy", - "setter": "set_anisotropy", - "getter": "get_anisotropy" - }, - { - "type": "Texture2D", - "name": "anisotropy_flowmap", - "setter": "set_texture", - "getter": "get_texture", - "index": 7 - }, - { - "type": "bool", - "name": "ao_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 5 - }, - { - "type": "float", - "name": "ao_light_affect", - "setter": "set_ao_light_affect", - "getter": "get_ao_light_affect" - }, - { - "type": "Texture2D", - "name": "ao_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 8 - }, - { - "type": "bool", - "name": "ao_on_uv2", - "setter": "set_flag", - "getter": "get_flag", - "index": 10 - }, - { - "type": "int", - "name": "ao_texture_channel", - "setter": "set_ao_texture_channel", - "getter": "get_ao_texture_channel" - }, - { - "type": "bool", - "name": "heightmap_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 6 - }, - { - "type": "float", - "name": "heightmap_scale", - "setter": "set_heightmap_scale", - "getter": "get_heightmap_scale" - }, - { - "type": "bool", - "name": "heightmap_deep_parallax", - "setter": "set_heightmap_deep_parallax", - "getter": "is_heightmap_deep_parallax_enabled" - }, - { - "type": "int", - "name": "heightmap_min_layers", - "setter": "set_heightmap_deep_parallax_min_layers", - "getter": "get_heightmap_deep_parallax_min_layers" - }, - { - "type": "int", - "name": "heightmap_max_layers", - "setter": "set_heightmap_deep_parallax_max_layers", - "getter": "get_heightmap_deep_parallax_max_layers" - }, - { - "type": "bool", - "name": "heightmap_flip_tangent", - "setter": "set_heightmap_deep_parallax_flip_tangent", - "getter": "get_heightmap_deep_parallax_flip_tangent" - }, - { - "type": "bool", - "name": "heightmap_flip_binormal", - "setter": "set_heightmap_deep_parallax_flip_binormal", - "getter": "get_heightmap_deep_parallax_flip_binormal" - }, - { - "type": "Texture2D", - "name": "heightmap_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 9 - }, - { - "type": "bool", - "name": "heightmap_flip_texture", - "setter": "set_flag", - "getter": "get_flag", - "index": 17 - }, - { - "type": "bool", - "name": "subsurf_scatter_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 7 - }, - { - "type": "float", - "name": "subsurf_scatter_strength", - "setter": "set_subsurface_scattering_strength", - "getter": "get_subsurface_scattering_strength" - }, - { - "type": "bool", - "name": "subsurf_scatter_skin_mode", - "setter": "set_flag", - "getter": "get_flag", - "index": 18 - }, - { - "type": "Texture2D", - "name": "subsurf_scatter_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 10 - }, - { - "type": "bool", - "name": "subsurf_scatter_transmittance_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 8 - }, - { - "type": "Color", - "name": "subsurf_scatter_transmittance_color", - "setter": "set_transmittance_color", - "getter": "get_transmittance_color" - }, - { - "type": "Texture2D", - "name": "subsurf_scatter_transmittance_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 11 - }, - { - "type": "float", - "name": "subsurf_scatter_transmittance_depth", - "setter": "set_transmittance_depth", - "getter": "get_transmittance_depth" - }, - { - "type": "float", - "name": "subsurf_scatter_transmittance_boost", - "setter": "set_transmittance_boost", - "getter": "get_transmittance_boost" - }, - { - "type": "bool", - "name": "backlight_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 9 - }, - { - "type": "Color", - "name": "backlight", - "setter": "set_backlight", - "getter": "get_backlight" - }, - { - "type": "Texture2D", - "name": "backlight_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 12 - }, - { - "type": "bool", - "name": "refraction_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 10 - }, - { - "type": "float", - "name": "refraction_scale", - "setter": "set_refraction", - "getter": "get_refraction" - }, - { - "type": "Texture2D", - "name": "refraction_texture", - "setter": "set_texture", - "getter": "get_texture", - "index": 13 - }, - { - "type": "int", - "name": "refraction_texture_channel", - "setter": "set_refraction_texture_channel", - "getter": "get_refraction_texture_channel" - }, - { - "type": "bool", - "name": "detail_enabled", - "setter": "set_feature", - "getter": "get_feature", - "index": 11 - }, - { - "type": "Texture2D", - "name": "detail_mask", - "setter": "set_texture", - "getter": "get_texture", - "index": 14 - }, - { - "type": "int", - "name": "detail_blend_mode", - "setter": "set_detail_blend_mode", - "getter": "get_detail_blend_mode" - }, - { - "type": "int", - "name": "detail_uv_layer", - "setter": "set_detail_uv", - "getter": "get_detail_uv" - }, - { - "type": "Texture2D", - "name": "detail_albedo", - "setter": "set_texture", - "getter": "get_texture", - "index": 15 - }, - { - "type": "Texture2D", - "name": "detail_normal", - "setter": "set_texture", - "getter": "get_texture", - "index": 16 - }, - { - "type": "Vector3", - "name": "uv1_scale", - "setter": "set_uv1_scale", - "getter": "get_uv1_scale" - }, - { - "type": "Vector3", - "name": "uv1_offset", - "setter": "set_uv1_offset", - "getter": "get_uv1_offset" - }, - { - "type": "bool", - "name": "uv1_triplanar", - "setter": "set_flag", - "getter": "get_flag", - "index": 6 - }, - { - "type": "float", - "name": "uv1_triplanar_sharpness", - "setter": "set_uv1_triplanar_blend_sharpness", - "getter": "get_uv1_triplanar_blend_sharpness" - }, - { - "type": "bool", - "name": "uv1_world_triplanar", - "setter": "set_flag", - "getter": "get_flag", - "index": 8 - }, - { - "type": "Vector3", - "name": "uv2_scale", - "setter": "set_uv2_scale", - "getter": "get_uv2_scale" - }, - { - "type": "Vector3", - "name": "uv2_offset", - "setter": "set_uv2_offset", - "getter": "get_uv2_offset" - }, - { - "type": "bool", - "name": "uv2_triplanar", - "setter": "set_flag", - "getter": "get_flag", - "index": 7 - }, - { - "type": "float", - "name": "uv2_triplanar_sharpness", - "setter": "set_uv2_triplanar_blend_sharpness", - "getter": "get_uv2_triplanar_blend_sharpness" - }, - { - "type": "bool", - "name": "uv2_world_triplanar", - "setter": "set_flag", - "getter": "get_flag", - "index": 9 - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "bool", - "name": "texture_repeat", - "setter": "set_flag", - "getter": "get_flag", - "index": 16 - }, - { - "type": "bool", - "name": "disable_receive_shadows", - "setter": "set_flag", - "getter": "get_flag", - "index": 13 - }, - { - "type": "bool", - "name": "shadow_to_opacity", - "setter": "set_flag", - "getter": "get_flag", - "index": 15 - }, - { - "type": "int", - "name": "billboard_mode", - "setter": "set_billboard_mode", - "getter": "get_billboard_mode" - }, - { - "type": "bool", - "name": "billboard_keep_scale", - "setter": "set_flag", - "getter": "get_flag", - "index": 5 - }, - { - "type": "int", - "name": "particles_anim_h_frames", - "setter": "set_particles_anim_h_frames", - "getter": "get_particles_anim_h_frames" - }, - { - "type": "int", - "name": "particles_anim_v_frames", - "setter": "set_particles_anim_v_frames", - "getter": "get_particles_anim_v_frames" - }, - { - "type": "bool", - "name": "particles_anim_loop", - "setter": "set_particles_anim_loop", - "getter": "get_particles_anim_loop" - }, - { - "type": "bool", - "name": "grow", - "setter": "set_grow_enabled", - "getter": "is_grow_enabled" - }, - { - "type": "float", - "name": "grow_amount", - "setter": "set_grow", - "getter": "get_grow" - }, - { - "type": "bool", - "name": "fixed_size", - "setter": "set_flag", - "getter": "get_flag", - "index": 4 - }, - { - "type": "bool", - "name": "use_point_size", - "setter": "set_flag", - "getter": "get_flag", - "index": 3 - }, - { - "type": "float", - "name": "point_size", - "setter": "set_point_size", - "getter": "get_point_size" - }, - { - "type": "bool", - "name": "use_particle_trails", - "setter": "set_flag", - "getter": "get_flag", - "index": 19 - }, - { - "type": "bool", - "name": "use_z_clip_scale", - "setter": "set_flag", - "getter": "get_flag", - "index": 23 - }, - { - "type": "float", - "name": "z_clip_scale", - "setter": "set_z_clip_scale", - "getter": "get_z_clip_scale" - }, - { - "type": "bool", - "name": "use_fov_override", - "setter": "set_flag", - "getter": "get_flag", - "index": 24 - }, - { - "type": "float", - "name": "fov_override", - "setter": "set_fov_override", - "getter": "get_fov_override" - }, - { - "type": "bool", - "name": "proximity_fade_enabled", - "setter": "set_proximity_fade_enabled", - "getter": "is_proximity_fade_enabled" - }, - { - "type": "float", - "name": "proximity_fade_distance", - "setter": "set_proximity_fade_distance", - "getter": "get_proximity_fade_distance" - }, - { - "type": "float", - "name": "msdf_pixel_range", - "setter": "set_msdf_pixel_range", - "getter": "get_msdf_pixel_range" - }, - { - "type": "float", - "name": "msdf_outline_size", - "setter": "set_msdf_outline_size", - "getter": "get_msdf_outline_size" - }, - { - "type": "int", - "name": "distance_fade_mode", - "setter": "set_distance_fade", - "getter": "get_distance_fade" - }, - { - "type": "float", - "name": "distance_fade_min_distance", - "setter": "set_distance_fade_min_distance", - "getter": "get_distance_fade_min_distance" - }, - { - "type": "float", - "name": "distance_fade_max_distance", - "setter": "set_distance_fade_max_distance", - "getter": "get_distance_fade_max_distance" - }, - { - "type": "int", - "name": "stencil_mode", - "setter": "set_stencil_mode", - "getter": "get_stencil_mode" - }, - { - "type": "int", - "name": "stencil_flags", - "setter": "set_stencil_flags", - "getter": "get_stencil_flags" - }, - { - "type": "int", - "name": "stencil_compare", - "setter": "set_stencil_compare", - "getter": "get_stencil_compare" - }, - { - "type": "int", - "name": "stencil_reference", - "setter": "set_stencil_reference", - "getter": "get_stencil_reference" - }, - { - "type": "Color", - "name": "stencil_color", - "setter": "set_stencil_effect_color", - "getter": "get_stencil_effect_color" - }, - { - "type": "float", - "name": "stencil_outline_thickness", - "setter": "set_stencil_effect_outline_thickness", - "getter": "get_stencil_effect_outline_thickness" - } - ] - }, - { - "name": "BitMap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "create_from_image_alpha", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 106271684, - "hash_compatibility": [ - 505265891 - ], - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "threshold", - "type": "float", - "meta": "float", - "default_value": "0.1" - } - ] - }, - { - "name": "set_bitv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153096796, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "bit", - "type": "bool" - } - ] - }, - { - "name": "set_bit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - }, - { - "name": "bit", - "type": "bool" - } - ] - }, - { - "name": "get_bitv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "get_bit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bit_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 472162941, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "bit", - "type": "bool" - } - ] - }, - { - "name": "get_true_bit_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "new_size", - "type": "Vector2i" - } - ] - }, - { - "name": "grow_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3317281434, - "arguments": [ - { - "name": "pixels", - "type": "int", - "meta": "int32" - }, - { - "name": "rect", - "type": "Rect2i" - } - ] - }, - { - "name": "convert_to_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4190603485, - "return_value": { - "type": "Image" - } - }, - { - "name": "opaque_to_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 48478126, - "hash_compatibility": [ - 876132484 - ], - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "epsilon", - "type": "float", - "meta": "float", - "default_value": "2.0" - } - ] - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "data", - "setter": "_set_data", - "getter": "_get_data" - } - ] - }, - { - "name": "BlitMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "enums": [ - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_MIX", - "value": 0 - }, - { - "name": "BLEND_MODE_ADD", - "value": 1 - }, - { - "name": "BLEND_MODE_SUB", - "value": 2 - }, - { - "name": "BLEND_MODE_MUL", - "value": 3 - }, - { - "name": "BLEND_MODE_DISABLED", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 80206916, - "arguments": [ - { - "name": "blend_mode", - "type": "enum::BlitMaterial.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4234246416, - "return_value": { - "type": "enum::BlitMaterial.BlendMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - } - ] - }, - { - "name": "Bone2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_rest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "rest", - "type": "Transform2D" - } - ] - }, - { - "name": "get_rest", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "apply_rest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_skeleton_rest", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_index_in_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_autocalculate_length_and_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "auto_calculate", - "type": "bool" - } - ] - }, - { - "name": "get_autocalculate_length_and_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bone_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Transform2D", - "name": "rest", - "setter": "set_rest", - "getter": "get_rest" - } - ] - }, - { - "name": "BoneAttachment3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1814733083, - "return_value": { - "type": "Skeleton3D" - } - }, - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_bone_idx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_idx", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "on_skeleton_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_override_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "override_pose", - "type": "bool" - } - ] - }, - { - "name": "get_override_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_external_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_external_skeleton", - "type": "bool" - } - ] - }, - { - "name": "get_use_external_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_external_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "external_skeleton", - "type": "NodePath" - } - ] - }, - { - "name": "get_external_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "bone_name", - "setter": "set_bone_name", - "getter": "get_bone_name" - }, - { - "type": "int", - "name": "bone_idx", - "setter": "set_bone_idx", - "getter": "get_bone_idx" - }, - { - "type": "bool", - "name": "override_pose", - "setter": "set_override_pose", - "getter": "get_override_pose" - }, - { - "type": "bool", - "name": "use_external_skeleton", - "setter": "set_use_external_skeleton", - "getter": "get_use_external_skeleton" - }, - { - "type": "NodePath", - "name": "external_skeleton", - "setter": "set_external_skeleton", - "getter": "get_external_skeleton" - } - ] - }, - { - "name": "BoneConstraint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "ReferenceType", - "is_bitfield": false, - "values": [ - { - "name": "REFERENCE_TYPE_BONE", - "value": 0 - }, - { - "name": "REFERENCE_TYPE_NODE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_apply_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_apply_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_apply_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_apply_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1830520418, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "enum::BoneConstraint3D.ReferenceType" - } - ] - }, - { - "name": "get_reference_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3456416152, - "return_value": { - "type": "enum::BoneConstraint3D.ReferenceType" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_reference_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_reference_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_reference_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_setting_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_setting_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "BoneMap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291782652, - "return_value": { - "type": "SkeletonProfile" - } - }, - { - "name": "set_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3870374136, - "arguments": [ - { - "name": "profile", - "type": "SkeletonProfile" - } - ] - }, - { - "name": "get_skeleton_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "profile_bone_name", - "type": "StringName" - } - ] - }, - { - "name": "set_skeleton_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "profile_bone_name", - "type": "StringName" - }, - { - "name": "skeleton_bone_name", - "type": "StringName" - } - ] - }, - { - "name": "find_profile_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "skeleton_bone_name", - "type": "StringName" - } - ] - } - ], - "signals": [ - { - "name": "bone_map_updated" - }, - { - "name": "profile_updated" - } - ], - "properties": [ - { - "type": "SkeletonProfile", - "name": "profile", - "setter": "set_profile", - "getter": "get_profile" - } - ] - }, - { - "name": "BoneTwistDisperser3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "DisperseMode", - "is_bitfield": false, - "values": [ - { - "name": "DISPERSE_MODE_EVEN", - "value": 0 - }, - { - "name": "DISPERSE_MODE_WEIGHTED", - "value": 1 - }, - { - "name": "DISPERSE_MODE_CUSTOM", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_setting_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_setting_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_settings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_mutable_bone_axes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "are_bone_axes_mutable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_root_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_root_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_end_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_end_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_reference_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_reference_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_extend_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_end_bone_extended", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2838484201, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_direction", - "type": "enum::SkeletonModifier3D.BoneDirection" - } - ] - }, - { - "name": "get_end_bone_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1843036459, - "return_value": { - "type": "enum::SkeletonModifier3D.BoneDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_twist_from_rest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_twist_from_rest", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_twist_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2823819782, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "from", - "type": "Quaternion" - } - ] - }, - { - "name": "get_twist_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 476865136, - "return_value": { - "type": "Quaternion" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_disperse_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2954194337, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "disperse_mode", - "type": "enum::BoneTwistDisperser3D.DisperseMode" - } - ] - }, - { - "name": "get_disperse_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1326397005, - "return_value": { - "type": "enum::BoneTwistDisperser3D.DisperseMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_weight_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "weight_position", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_weight_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_damping_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447180063, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_damping_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747537754, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_twist_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_twist_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "twist_amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joint_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "mutable_bone_axes", - "setter": "set_mutable_bone_axes", - "getter": "are_bone_axes_mutable" - }, - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "BoxContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "AlignmentMode", - "is_bitfield": false, - "values": [ - { - "name": "ALIGNMENT_BEGIN", - "value": 0 - }, - { - "name": "ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "ALIGNMENT_END", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_spacer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1326660695, - "return_value": { - "type": "Control" - }, - "arguments": [ - { - "name": "begin", - "type": "bool" - } - ] - }, - { - "name": "set_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2456745134, - "arguments": [ - { - "name": "alignment", - "type": "enum::BoxContainer.AlignmentMode" - } - ] - }, - { - "name": "get_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1915476527, - "return_value": { - "type": "enum::BoxContainer.AlignmentMode" - } - }, - { - "name": "set_vertical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "is_vertical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "alignment", - "setter": "set_alignment", - "getter": "get_alignment" - }, - { - "type": "bool", - "name": "vertical", - "setter": "set_vertical", - "getter": "is_vertical" - } - ] - }, - { - "name": "BoxMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_subdivide_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_subdivide_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "divisions", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_subdivide_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "divisions", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "subdivide_width", - "setter": "set_subdivide_width", - "getter": "get_subdivide_width" - }, - { - "type": "int", - "name": "subdivide_height", - "setter": "set_subdivide_height", - "getter": "get_subdivide_height" - }, - { - "type": "int", - "name": "subdivide_depth", - "setter": "set_subdivide_depth", - "getter": "get_subdivide_depth" - } - ] - }, - { - "name": "BoxOccluder3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Occluder3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "BoxShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "Button", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BaseButton", - "api_type": "core", - "methods": [ - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "set_autowrap_trim_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2809697122, - "arguments": [ - { - "name": "autowrap_trim_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_autowrap_trim_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2340632602, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_button_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_button_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_flat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_flat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_clip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_clip_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_text_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_text_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_icon_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "icon_alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_icon_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_vertical_icon_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796458609, - "arguments": [ - { - "name": "vertical_icon_alignment", - "type": "enum::VerticalAlignment" - } - ] - }, - { - "name": "get_vertical_icon_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274884059, - "return_value": { - "type": "enum::VerticalAlignment" - } - }, - { - "name": "set_expand_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_expand_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "Texture2D", - "name": "icon", - "setter": "set_button_icon", - "getter": "get_button_icon" - }, - { - "type": "bool", - "name": "flat", - "setter": "set_flat", - "getter": "is_flat" - }, - { - "type": "int", - "name": "alignment", - "setter": "set_text_alignment", - "getter": "get_text_alignment" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "int", - "name": "autowrap_trim_flags", - "setter": "set_autowrap_trim_flags", - "getter": "get_autowrap_trim_flags" - }, - { - "type": "bool", - "name": "clip_text", - "setter": "set_clip_text", - "getter": "get_clip_text" - }, - { - "type": "int", - "name": "icon_alignment", - "setter": "set_icon_alignment", - "getter": "get_icon_alignment" - }, - { - "type": "int", - "name": "vertical_icon_alignment", - "setter": "set_vertical_icon_alignment", - "getter": "get_vertical_icon_alignment" - }, - { - "type": "bool", - "name": "expand_icon", - "setter": "set_expand_icon", - "getter": "is_expand_icon" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - } - ] - }, - { - "name": "ButtonGroup", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_pressed_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3886434893, - "return_value": { - "type": "BaseButton" - } - }, - { - "name": "get_buttons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::BaseButton" - } - }, - { - "name": "set_allow_unpress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_allow_unpress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "pressed", - "arguments": [ - { - "name": "button", - "type": "BaseButton" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "allow_unpress", - "setter": "set_allow_unpress", - "getter": "is_allow_unpress" - } - ] - }, - { - "name": "CCDIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "IterateIK3D", - "api_type": "core" - }, - { - "name": "CPUParticles2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "DrawOrder", - "is_bitfield": false, - "values": [ - { - "name": "DRAW_ORDER_INDEX", - "value": 0 - }, - { - "name": "DRAW_ORDER_LIFETIME", - "value": 1 - } - ] - }, - { - "name": "Parameter", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_INITIAL_LINEAR_VELOCITY", - "value": 0 - }, - { - "name": "PARAM_ANGULAR_VELOCITY", - "value": 1 - }, - { - "name": "PARAM_ORBIT_VELOCITY", - "value": 2 - }, - { - "name": "PARAM_LINEAR_ACCEL", - "value": 3 - }, - { - "name": "PARAM_RADIAL_ACCEL", - "value": 4 - }, - { - "name": "PARAM_TANGENTIAL_ACCEL", - "value": 5 - }, - { - "name": "PARAM_DAMPING", - "value": 6 - }, - { - "name": "PARAM_ANGLE", - "value": 7 - }, - { - "name": "PARAM_SCALE", - "value": 8 - }, - { - "name": "PARAM_HUE_VARIATION", - "value": 9 - }, - { - "name": "PARAM_ANIM_SPEED", - "value": 10 - }, - { - "name": "PARAM_ANIM_OFFSET", - "value": 11 - }, - { - "name": "PARAM_MAX", - "value": 12 - } - ] - }, - { - "name": "ParticleFlags", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", - "value": 0 - }, - { - "name": "PARTICLE_FLAG_ROTATE_Y", - "value": 1 - }, - { - "name": "PARTICLE_FLAG_DISABLE_Z", - "value": 2 - }, - { - "name": "PARTICLE_FLAG_MAX", - "value": 3 - } - ] - }, - { - "name": "EmissionShape", - "is_bitfield": false, - "values": [ - { - "name": "EMISSION_SHAPE_POINT", - "value": 0 - }, - { - "name": "EMISSION_SHAPE_SPHERE", - "value": 1 - }, - { - "name": "EMISSION_SHAPE_SPHERE_SURFACE", - "value": 2 - }, - { - "name": "EMISSION_SHAPE_RECTANGLE", - "value": 3 - }, - { - "name": "EMISSION_SHAPE_POINTS", - "value": 4 - }, - { - "name": "EMISSION_SHAPE_DIRECTED_POINTS", - "value": 5 - }, - { - "name": "EMISSION_SHAPE_RING", - "value": 6 - }, - { - "name": "EMISSION_SHAPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "emitting", - "type": "bool" - } - ] - }, - { - "name": "set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_pre_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_randomness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_lifetime_randomness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "random", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_use_local_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_fixed_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fractional_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "request_particles_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 66938510, - "hash_compatibility": [ - 373806689 - ], - "arguments": [ - { - "name": "process_time", - "type": "float", - "meta": "float" - }, - { - "name": "process_time_residual", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "is_emitting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pre_process_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_explosiveness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_randomness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_lifetime_randomness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_use_local_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_fixed_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_fractional_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_use_fixed_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_fixed_seed", - "type": "bool" - } - ] - }, - { - "name": "get_use_fixed_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_draw_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4183193490, - "arguments": [ - { - "name": "order", - "type": "enum::CPUParticles2D.DrawOrder" - } - ] - }, - { - "name": "get_draw_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1668655735, - "return_value": { - "type": "enum::CPUParticles2D.DrawOrder" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "restart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "keep_seed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_spread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "spread", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_spread", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_param_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3320615296, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2038050600, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - } - ] - }, - { - "name": "set_param_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3320615296, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2038050600, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - } - ] - }, - { - "name": "set_param_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2959350143, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_param_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2603158474, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles2D.Parameter" - } - ] - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_color_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "ramp", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_color_initial_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "ramp", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_initial_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_particle_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4178137949, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::CPUParticles2D.ParticleFlags" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_particle_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2829976507, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::CPUParticles2D.ParticleFlags" - } - ] - }, - { - "name": "set_emission_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 393763892, - "arguments": [ - { - "name": "shape", - "type": "enum::CPUParticles2D.EmissionShape" - } - ] - }, - { - "name": "get_emission_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740246024, - "return_value": { - "type": "enum::CPUParticles2D.EmissionShape" - } - }, - { - "name": "set_emission_sphere_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_sphere_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_rect_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "extents", - "type": "Vector2" - } - ] - }, - { - "name": "get_emission_rect_extents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_emission_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "array", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_emission_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_emission_normals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "array", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_emission_normals", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_emission_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "array", - "type": "PackedColorArray" - } - ] - }, - { - "name": "get_emission_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_emission_ring_inner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "inner_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_inner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector2" - } - ] - }, - { - "name": "get_split_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_split_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "split_scale", - "type": "bool" - } - ] - }, - { - "name": "get_scale_curve_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_scale_curve_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "scale_curve", - "type": "Curve" - } - ] - }, - { - "name": "get_scale_curve_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_scale_curve_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "scale_curve", - "type": "Curve" - } - ] - }, - { - "name": "convert_from_particles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "particles", - "type": "Node" - } - ] - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "bool", - "name": "emitting", - "setter": "set_emitting", - "getter": "is_emitting" - }, - { - "type": "int", - "name": "amount", - "setter": "set_amount", - "getter": "get_amount" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "float", - "name": "lifetime", - "setter": "set_lifetime", - "getter": "get_lifetime" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "get_one_shot" - }, - { - "type": "float", - "name": "preprocess", - "setter": "set_pre_process_time", - "getter": "get_pre_process_time" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "float", - "name": "explosiveness", - "setter": "set_explosiveness_ratio", - "getter": "get_explosiveness_ratio" - }, - { - "type": "float", - "name": "randomness", - "setter": "set_randomness_ratio", - "getter": "get_randomness_ratio" - }, - { - "type": "bool", - "name": "use_fixed_seed", - "setter": "set_use_fixed_seed", - "getter": "get_use_fixed_seed" - }, - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "float", - "name": "lifetime_randomness", - "setter": "set_lifetime_randomness", - "getter": "get_lifetime_randomness" - }, - { - "type": "int", - "name": "fixed_fps", - "setter": "set_fixed_fps", - "getter": "get_fixed_fps" - }, - { - "type": "bool", - "name": "fract_delta", - "setter": "set_fractional_delta", - "getter": "get_fractional_delta" - }, - { - "type": "bool", - "name": "local_coords", - "setter": "set_use_local_coordinates", - "getter": "get_use_local_coordinates" - }, - { - "type": "int", - "name": "draw_order", - "setter": "set_draw_order", - "getter": "get_draw_order" - }, - { - "type": "int", - "name": "emission_shape", - "setter": "set_emission_shape", - "getter": "get_emission_shape" - }, - { - "type": "float", - "name": "emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "getter": "get_emission_sphere_radius" - }, - { - "type": "Vector2", - "name": "emission_rect_extents", - "setter": "set_emission_rect_extents", - "getter": "get_emission_rect_extents" - }, - { - "type": "PackedVector2Array", - "name": "emission_points", - "setter": "set_emission_points", - "getter": "get_emission_points" - }, - { - "type": "PackedVector2Array", - "name": "emission_normals", - "setter": "set_emission_normals", - "getter": "get_emission_normals" - }, - { - "type": "PackedColorArray", - "name": "emission_colors", - "setter": "set_emission_colors", - "getter": "get_emission_colors" - }, - { - "type": "float", - "name": "emission_ring_inner_radius", - "setter": "set_emission_ring_inner_radius", - "getter": "get_emission_ring_inner_radius" - }, - { - "type": "float", - "name": "emission_ring_radius", - "setter": "set_emission_ring_radius", - "getter": "get_emission_ring_radius" - }, - { - "type": "bool", - "name": "particle_flag_align_y", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 0 - }, - { - "type": "Vector2", - "name": "direction", - "setter": "set_direction", - "getter": "get_direction" - }, - { - "type": "float", - "name": "spread", - "setter": "set_spread", - "getter": "get_spread" - }, - { - "type": "Vector2", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - }, - { - "type": "float", - "name": "initial_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 0 - }, - { - "type": "float", - "name": "initial_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 0 - }, - { - "type": "float", - "name": "angular_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 1 - }, - { - "type": "float", - "name": "angular_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 1 - }, - { - "type": "Curve", - "name": "angular_velocity_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 1 - }, - { - "type": "float", - "name": "orbit_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 2 - }, - { - "type": "float", - "name": "orbit_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 2 - }, - { - "type": "Curve", - "name": "orbit_velocity_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 2 - }, - { - "type": "float", - "name": "linear_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 3 - }, - { - "type": "float", - "name": "linear_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 3 - }, - { - "type": "Curve", - "name": "linear_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 3 - }, - { - "type": "float", - "name": "radial_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 4 - }, - { - "type": "float", - "name": "radial_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 4 - }, - { - "type": "Curve", - "name": "radial_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 4 - }, - { - "type": "float", - "name": "tangential_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 5 - }, - { - "type": "float", - "name": "tangential_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 5 - }, - { - "type": "Curve", - "name": "tangential_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 5 - }, - { - "type": "float", - "name": "damping_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 6 - }, - { - "type": "float", - "name": "damping_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 6 - }, - { - "type": "Curve", - "name": "damping_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 6 - }, - { - "type": "float", - "name": "angle_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 7 - }, - { - "type": "float", - "name": "angle_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 7 - }, - { - "type": "Curve", - "name": "angle_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 7 - }, - { - "type": "float", - "name": "scale_amount_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 8 - }, - { - "type": "float", - "name": "scale_amount_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 8 - }, - { - "type": "Curve", - "name": "scale_amount_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 8 - }, - { - "type": "bool", - "name": "split_scale", - "setter": "set_split_scale", - "getter": "get_split_scale" - }, - { - "type": "Curve", - "name": "scale_curve_x", - "setter": "set_scale_curve_x", - "getter": "get_scale_curve_x" - }, - { - "type": "Curve", - "name": "scale_curve_y", - "setter": "set_scale_curve_y", - "getter": "get_scale_curve_y" - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "Gradient", - "name": "color_ramp", - "setter": "set_color_ramp", - "getter": "get_color_ramp" - }, - { - "type": "Gradient", - "name": "color_initial_ramp", - "setter": "set_color_initial_ramp", - "getter": "get_color_initial_ramp" - }, - { - "type": "float", - "name": "hue_variation_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 9 - }, - { - "type": "float", - "name": "hue_variation_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 9 - }, - { - "type": "Curve", - "name": "hue_variation_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 9 - }, - { - "type": "float", - "name": "anim_speed_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 10 - }, - { - "type": "float", - "name": "anim_speed_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 10 - }, - { - "type": "Curve", - "name": "anim_speed_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 10 - }, - { - "type": "float", - "name": "anim_offset_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 11 - }, - { - "type": "float", - "name": "anim_offset_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 11 - }, - { - "type": "Curve", - "name": "anim_offset_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 11 - } - ] - }, - { - "name": "CPUParticles3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GeometryInstance3D", - "api_type": "core", - "enums": [ - { - "name": "DrawOrder", - "is_bitfield": false, - "values": [ - { - "name": "DRAW_ORDER_INDEX", - "value": 0 - }, - { - "name": "DRAW_ORDER_LIFETIME", - "value": 1 - }, - { - "name": "DRAW_ORDER_VIEW_DEPTH", - "value": 2 - } - ] - }, - { - "name": "Parameter", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_INITIAL_LINEAR_VELOCITY", - "value": 0 - }, - { - "name": "PARAM_ANGULAR_VELOCITY", - "value": 1 - }, - { - "name": "PARAM_ORBIT_VELOCITY", - "value": 2 - }, - { - "name": "PARAM_LINEAR_ACCEL", - "value": 3 - }, - { - "name": "PARAM_RADIAL_ACCEL", - "value": 4 - }, - { - "name": "PARAM_TANGENTIAL_ACCEL", - "value": 5 - }, - { - "name": "PARAM_DAMPING", - "value": 6 - }, - { - "name": "PARAM_ANGLE", - "value": 7 - }, - { - "name": "PARAM_SCALE", - "value": 8 - }, - { - "name": "PARAM_HUE_VARIATION", - "value": 9 - }, - { - "name": "PARAM_ANIM_SPEED", - "value": 10 - }, - { - "name": "PARAM_ANIM_OFFSET", - "value": 11 - }, - { - "name": "PARAM_MAX", - "value": 12 - } - ] - }, - { - "name": "ParticleFlags", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", - "value": 0 - }, - { - "name": "PARTICLE_FLAG_ROTATE_Y", - "value": 1 - }, - { - "name": "PARTICLE_FLAG_DISABLE_Z", - "value": 2 - }, - { - "name": "PARTICLE_FLAG_MAX", - "value": 3 - } - ] - }, - { - "name": "EmissionShape", - "is_bitfield": false, - "values": [ - { - "name": "EMISSION_SHAPE_POINT", - "value": 0 - }, - { - "name": "EMISSION_SHAPE_SPHERE", - "value": 1 - }, - { - "name": "EMISSION_SHAPE_SPHERE_SURFACE", - "value": 2 - }, - { - "name": "EMISSION_SHAPE_BOX", - "value": 3 - }, - { - "name": "EMISSION_SHAPE_POINTS", - "value": 4 - }, - { - "name": "EMISSION_SHAPE_DIRECTED_POINTS", - "value": 5 - }, - { - "name": "EMISSION_SHAPE_RING", - "value": 6 - }, - { - "name": "EMISSION_SHAPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "emitting", - "type": "bool" - } - ] - }, - { - "name": "set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_pre_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_randomness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_visibility_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "set_lifetime_randomness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "random", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_use_local_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_fixed_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fractional_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "is_emitting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pre_process_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_explosiveness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_randomness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_visibility_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_lifetime_randomness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_use_local_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_fixed_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_fractional_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_draw_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1427401774, - "arguments": [ - { - "name": "order", - "type": "enum::CPUParticles3D.DrawOrder" - } - ] - }, - { - "name": "get_draw_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321900776, - "return_value": { - "type": "enum::CPUParticles3D.DrawOrder" - } - }, - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_use_fixed_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_fixed_seed", - "type": "bool" - } - ] - }, - { - "name": "get_use_fixed_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "restart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "keep_seed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "request_particles_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 66938510, - "hash_compatibility": [ - 373806689 - ], - "arguments": [ - { - "name": "process_time", - "type": "float", - "meta": "float" - }, - { - "name": "process_time_residual", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "capture_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "direction", - "type": "Vector3" - } - ] - }, - { - "name": "get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_spread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_spread", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_flatness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_flatness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_param_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 557936109, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 597646162, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - } - ] - }, - { - "name": "set_param_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 557936109, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 597646162, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - } - ] - }, - { - "name": "set_param_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4044142537, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_param_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4132790277, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "param", - "type": "enum::CPUParticles3D.Parameter" - } - ] - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_color_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "ramp", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_color_initial_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "ramp", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_initial_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_particle_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3515406498, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::CPUParticles3D.ParticleFlags" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_particle_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2845201987, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::CPUParticles3D.ParticleFlags" - } - ] - }, - { - "name": "set_emission_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 491823814, - "arguments": [ - { - "name": "shape", - "type": "enum::CPUParticles3D.EmissionShape" - } - ] - }, - { - "name": "get_emission_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961454842, - "return_value": { - "type": "enum::CPUParticles3D.EmissionShape" - } - }, - { - "name": "set_emission_sphere_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_sphere_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_box_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "extents", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_box_extents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "array", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_emission_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "set_emission_normals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "array", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_emission_normals", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "set_emission_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "array", - "type": "PackedColorArray" - } - ] - }, - { - "name": "get_emission_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_emission_ring_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_ring_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_ring_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_inner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "inner_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_inner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cone_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_cone_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector3" - } - ] - }, - { - "name": "get_split_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_split_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "split_scale", - "type": "bool" - } - ] - }, - { - "name": "get_scale_curve_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_scale_curve_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "scale_curve", - "type": "Curve" - } - ] - }, - { - "name": "get_scale_curve_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_scale_curve_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "scale_curve", - "type": "Curve" - } - ] - }, - { - "name": "get_scale_curve_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_scale_curve_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "scale_curve", - "type": "Curve" - } - ] - }, - { - "name": "convert_from_particles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "particles", - "type": "Node" - } - ] - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "bool", - "name": "emitting", - "setter": "set_emitting", - "getter": "is_emitting" - }, - { - "type": "int", - "name": "amount", - "setter": "set_amount", - "getter": "get_amount" - }, - { - "type": "float", - "name": "lifetime", - "setter": "set_lifetime", - "getter": "get_lifetime" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "get_one_shot" - }, - { - "type": "float", - "name": "preprocess", - "setter": "set_pre_process_time", - "getter": "get_pre_process_time" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "float", - "name": "explosiveness", - "setter": "set_explosiveness_ratio", - "getter": "get_explosiveness_ratio" - }, - { - "type": "float", - "name": "randomness", - "setter": "set_randomness_ratio", - "getter": "get_randomness_ratio" - }, - { - "type": "bool", - "name": "use_fixed_seed", - "setter": "set_use_fixed_seed", - "getter": "get_use_fixed_seed" - }, - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "float", - "name": "lifetime_randomness", - "setter": "set_lifetime_randomness", - "getter": "get_lifetime_randomness" - }, - { - "type": "int", - "name": "fixed_fps", - "setter": "set_fixed_fps", - "getter": "get_fixed_fps" - }, - { - "type": "bool", - "name": "fract_delta", - "setter": "set_fractional_delta", - "getter": "get_fractional_delta" - }, - { - "type": "AABB", - "name": "visibility_aabb", - "setter": "set_visibility_aabb", - "getter": "get_visibility_aabb" - }, - { - "type": "bool", - "name": "local_coords", - "setter": "set_use_local_coordinates", - "getter": "get_use_local_coordinates" - }, - { - "type": "int", - "name": "draw_order", - "setter": "set_draw_order", - "getter": "get_draw_order" - }, - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "int", - "name": "emission_shape", - "setter": "set_emission_shape", - "getter": "get_emission_shape" - }, - { - "type": "float", - "name": "emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "getter": "get_emission_sphere_radius" - }, - { - "type": "Vector3", - "name": "emission_box_extents", - "setter": "set_emission_box_extents", - "getter": "get_emission_box_extents" - }, - { - "type": "PackedVector3Array", - "name": "emission_points", - "setter": "set_emission_points", - "getter": "get_emission_points" - }, - { - "type": "PackedVector3Array", - "name": "emission_normals", - "setter": "set_emission_normals", - "getter": "get_emission_normals" - }, - { - "type": "PackedColorArray", - "name": "emission_colors", - "setter": "set_emission_colors", - "getter": "get_emission_colors" - }, - { - "type": "Vector3", - "name": "emission_ring_axis", - "setter": "set_emission_ring_axis", - "getter": "get_emission_ring_axis" - }, - { - "type": "float", - "name": "emission_ring_height", - "setter": "set_emission_ring_height", - "getter": "get_emission_ring_height" - }, - { - "type": "float", - "name": "emission_ring_radius", - "setter": "set_emission_ring_radius", - "getter": "get_emission_ring_radius" - }, - { - "type": "float", - "name": "emission_ring_inner_radius", - "setter": "set_emission_ring_inner_radius", - "getter": "get_emission_ring_inner_radius" - }, - { - "type": "float", - "name": "emission_ring_cone_angle", - "setter": "set_emission_ring_cone_angle", - "getter": "get_emission_ring_cone_angle" - }, - { - "type": "bool", - "name": "particle_flag_align_y", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 0 - }, - { - "type": "bool", - "name": "particle_flag_rotate_y", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 1 - }, - { - "type": "bool", - "name": "particle_flag_disable_z", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 2 - }, - { - "type": "Vector3", - "name": "direction", - "setter": "set_direction", - "getter": "get_direction" - }, - { - "type": "float", - "name": "spread", - "setter": "set_spread", - "getter": "get_spread" - }, - { - "type": "float", - "name": "flatness", - "setter": "set_flatness", - "getter": "get_flatness" - }, - { - "type": "Vector3", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - }, - { - "type": "float", - "name": "initial_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 0 - }, - { - "type": "float", - "name": "initial_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 0 - }, - { - "type": "float", - "name": "angular_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 1 - }, - { - "type": "float", - "name": "angular_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 1 - }, - { - "type": "Curve", - "name": "angular_velocity_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 1 - }, - { - "type": "float", - "name": "orbit_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 2 - }, - { - "type": "float", - "name": "orbit_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 2 - }, - { - "type": "Curve", - "name": "orbit_velocity_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 2 - }, - { - "type": "float", - "name": "linear_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 3 - }, - { - "type": "float", - "name": "linear_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 3 - }, - { - "type": "Curve", - "name": "linear_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 3 - }, - { - "type": "float", - "name": "radial_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 4 - }, - { - "type": "float", - "name": "radial_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 4 - }, - { - "type": "Curve", - "name": "radial_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 4 - }, - { - "type": "float", - "name": "tangential_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 5 - }, - { - "type": "float", - "name": "tangential_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 5 - }, - { - "type": "Curve", - "name": "tangential_accel_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 5 - }, - { - "type": "float", - "name": "damping_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 6 - }, - { - "type": "float", - "name": "damping_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 6 - }, - { - "type": "Curve", - "name": "damping_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 6 - }, - { - "type": "float", - "name": "angle_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 7 - }, - { - "type": "float", - "name": "angle_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 7 - }, - { - "type": "Curve", - "name": "angle_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 7 - }, - { - "type": "float", - "name": "scale_amount_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 8 - }, - { - "type": "float", - "name": "scale_amount_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 8 - }, - { - "type": "Curve", - "name": "scale_amount_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 8 - }, - { - "type": "bool", - "name": "split_scale", - "setter": "set_split_scale", - "getter": "get_split_scale" - }, - { - "type": "Curve", - "name": "scale_curve_x", - "setter": "set_scale_curve_x", - "getter": "get_scale_curve_x" - }, - { - "type": "Curve", - "name": "scale_curve_y", - "setter": "set_scale_curve_y", - "getter": "get_scale_curve_y" - }, - { - "type": "Curve", - "name": "scale_curve_z", - "setter": "set_scale_curve_z", - "getter": "get_scale_curve_z" - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "Gradient", - "name": "color_ramp", - "setter": "set_color_ramp", - "getter": "get_color_ramp" - }, - { - "type": "Gradient", - "name": "color_initial_ramp", - "setter": "set_color_initial_ramp", - "getter": "get_color_initial_ramp" - }, - { - "type": "float", - "name": "hue_variation_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 9 - }, - { - "type": "float", - "name": "hue_variation_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 9 - }, - { - "type": "Curve", - "name": "hue_variation_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 9 - }, - { - "type": "float", - "name": "anim_speed_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 10 - }, - { - "type": "float", - "name": "anim_speed_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 10 - }, - { - "type": "Curve", - "name": "anim_speed_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 10 - }, - { - "type": "float", - "name": "anim_offset_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 11 - }, - { - "type": "float", - "name": "anim_offset_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 11 - }, - { - "type": "Curve", - "name": "anim_offset_curve", - "setter": "set_param_curve", - "getter": "get_param_curve", - "index": 11 - } - ] - }, - { - "name": "CSGBox3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CSGCombiner3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGShape3D", - "api_type": "core" - }, - { - "name": "CSGCylinder3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_cone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "cone", - "type": "bool" - } - ] - }, - { - "name": "is_cone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_smooth_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool" - } - ] - }, - { - "name": "get_smooth_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "sides", - "setter": "set_sides", - "getter": "get_sides" - }, - { - "type": "bool", - "name": "cone", - "setter": "set_cone", - "getter": "is_cone" - }, - { - "type": "bool", - "name": "smooth_faces", - "setter": "set_smooth_faces", - "getter": "get_smooth_faces" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CSGMesh3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4081188045, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ], - "properties": [ - { - "type": "Mesh,-PlaneMesh,-PointMesh,-QuadMesh,-RibbonTrailMesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CSGPolygon3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_DEPTH", - "value": 0 - }, - { - "name": "MODE_SPIN", - "value": 1 - }, - { - "name": "MODE_PATH", - "value": 2 - } - ] - }, - { - "name": "PathRotation", - "is_bitfield": false, - "values": [ - { - "name": "PATH_ROTATION_POLYGON", - "value": 0 - }, - { - "name": "PATH_ROTATION_PATH", - "value": 1 - }, - { - "name": "PATH_ROTATION_PATH_FOLLOW", - "value": 2 - } - ] - }, - { - "name": "PathIntervalType", - "is_bitfield": false, - "values": [ - { - "name": "PATH_INTERVAL_DISTANCE", - "value": 0 - }, - { - "name": "PATH_INTERVAL_SUBDIVIDE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3158377035, - "arguments": [ - { - "name": "mode", - "type": "enum::CSGPolygon3D.Mode" - } - ] - }, - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1201612222, - "return_value": { - "type": "enum::CSGPolygon3D.Mode" - } - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_spin_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_spin_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_spin_sides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "spin_sides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_spin_sides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_path_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_path_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_path_interval_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744240707, - "arguments": [ - { - "name": "interval_type", - "type": "enum::CSGPolygon3D.PathIntervalType" - } - ] - }, - { - "name": "get_path_interval_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3434618397, - "return_value": { - "type": "enum::CSGPolygon3D.PathIntervalType" - } - }, - { - "name": "set_path_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interval", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_simplify_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_simplify_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1412947288, - "arguments": [ - { - "name": "path_rotation", - "type": "enum::CSGPolygon3D.PathRotation" - } - ] - }, - { - "name": "get_path_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 647219346, - "return_value": { - "type": "enum::CSGPolygon3D.PathRotation" - } - }, - { - "name": "set_path_rotation_accurate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_path_rotation_accurate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_path_local", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_path_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_path_continuous_u", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_path_continuous_u", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_path_u_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_u_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_joined", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_path_joined", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_smooth_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool" - } - ] - }, - { - "name": "get_smooth_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - }, - { - "type": "int", - "name": "mode", - "setter": "set_mode", - "getter": "get_mode" - }, - { - "type": "float", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - }, - { - "type": "float", - "name": "spin_degrees", - "setter": "set_spin_degrees", - "getter": "get_spin_degrees" - }, - { - "type": "int", - "name": "spin_sides", - "setter": "set_spin_sides", - "getter": "get_spin_sides" - }, - { - "type": "NodePath", - "name": "path_node", - "setter": "set_path_node", - "getter": "get_path_node" - }, - { - "type": "int", - "name": "path_interval_type", - "setter": "set_path_interval_type", - "getter": "get_path_interval_type" - }, - { - "type": "float", - "name": "path_interval", - "setter": "set_path_interval", - "getter": "get_path_interval" - }, - { - "type": "float", - "name": "path_simplify_angle", - "setter": "set_path_simplify_angle", - "getter": "get_path_simplify_angle" - }, - { - "type": "int", - "name": "path_rotation", - "setter": "set_path_rotation", - "getter": "get_path_rotation" - }, - { - "type": "bool", - "name": "path_rotation_accurate", - "setter": "set_path_rotation_accurate", - "getter": "get_path_rotation_accurate" - }, - { - "type": "bool", - "name": "path_local", - "setter": "set_path_local", - "getter": "is_path_local" - }, - { - "type": "bool", - "name": "path_continuous_u", - "setter": "set_path_continuous_u", - "getter": "is_path_continuous_u" - }, - { - "type": "float", - "name": "path_u_distance", - "setter": "set_path_u_distance", - "getter": "get_path_u_distance" - }, - { - "type": "bool", - "name": "path_joined", - "setter": "set_path_joined", - "getter": "is_path_joined" - }, - { - "type": "bool", - "name": "smooth_faces", - "setter": "set_smooth_faces", - "getter": "get_smooth_faces" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CSGPrimitive3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "CSGShape3D", - "api_type": "core", - "methods": [ - { - "name": "set_flip_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_faces", - "type": "bool" - } - ] - }, - { - "name": "get_flip_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "flip_faces", - "setter": "set_flip_faces", - "getter": "get_flip_faces" - } - ] - }, - { - "name": "CSGShape3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "GeometryInstance3D", - "api_type": "core", - "enums": [ - { - "name": "Operation", - "is_bitfield": false, - "values": [ - { - "name": "OPERATION_UNION", - "value": 0 - }, - { - "name": "OPERATION_INTERSECTION", - "value": 1 - }, - { - "name": "OPERATION_SUBTRACTION", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "is_root_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_operation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 811425055, - "arguments": [ - { - "name": "operation", - "type": "enum::CSGShape3D.Operation" - } - ] - }, - { - "name": "get_operation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2662425879, - "return_value": { - "type": "enum::CSGShape3D.Operation" - } - }, - { - "name": "set_snap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "snap", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "operation", - "type": "bool" - } - ] - }, - { - "name": "is_using_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "bake_collision_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36102322, - "return_value": { - "type": "ConcavePolygonShape3D" - } - }, - { - "name": "set_calculate_tangents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_calculating_tangents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_meshes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "bake_static_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1605880883, - "return_value": { - "type": "ArrayMesh" - } - }, - { - "name": "set_autosmooth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "autosmooth", - "type": "bool" - } - ] - }, - { - "name": "is_autosmooth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_smoothing_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "smoothing_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_smoothing_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "autosmooth", - "setter": "set_autosmooth", - "getter": "is_autosmooth" - }, - { - "type": "float", - "name": "smoothing_angle", - "setter": "set_smoothing_angle", - "getter": "get_smoothing_angle" - }, - { - "type": "int", - "name": "operation", - "setter": "set_operation", - "getter": "get_operation" - }, - { - "type": "float", - "name": "snap", - "setter": "set_snap", - "getter": "get_snap" - }, - { - "type": "bool", - "name": "calculate_tangents", - "setter": "set_calculate_tangents", - "getter": "is_calculating_tangents" - }, - { - "type": "bool", - "name": "use_collision", - "setter": "set_use_collision", - "getter": "is_using_collision" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "float", - "name": "collision_priority", - "setter": "set_collision_priority", - "getter": "get_collision_priority" - } - ] - }, - { - "name": "CSGSphere3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "radial_segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_radial_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_smooth_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool" - } - ] - }, - { - "name": "get_smooth_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "int", - "name": "radial_segments", - "setter": "set_radial_segments", - "getter": "get_radial_segments" - }, - { - "type": "int", - "name": "rings", - "setter": "set_rings", - "getter": "get_rings" - }, - { - "type": "bool", - "name": "smooth_faces", - "setter": "set_smooth_faces", - "getter": "get_smooth_faces" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CSGTorus3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CSGPrimitive3D", - "api_type": "core", - "methods": [ - { - "name": "set_inner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_inner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_outer_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_outer_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_ring_sides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ring_sides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_smooth_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool" - } - ] - }, - { - "name": "get_smooth_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "inner_radius", - "setter": "set_inner_radius", - "getter": "get_inner_radius" - }, - { - "type": "float", - "name": "outer_radius", - "setter": "set_outer_radius", - "getter": "get_outer_radius" - }, - { - "type": "int", - "name": "sides", - "setter": "set_sides", - "getter": "get_sides" - }, - { - "type": "int", - "name": "ring_sides", - "setter": "set_ring_sides", - "getter": "get_ring_sides" - }, - { - "type": "bool", - "name": "smooth_faces", - "setter": "set_smooth_faces", - "getter": "get_smooth_faces" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "CallbackTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core", - "methods": [ - { - "name": "set_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3008182292, - "return_value": { - "type": "CallbackTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "delay", - "type": "float", - "meta": "double" - } - ] - } - ] - }, - { - "name": "Camera2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "AnchorMode", - "is_bitfield": false, - "values": [ - { - "name": "ANCHOR_MODE_FIXED_TOP_LEFT", - "value": 0 - }, - { - "name": "ANCHOR_MODE_DRAG_CENTER", - "value": 1 - } - ] - }, - { - "name": "Camera2DProcessCallback", - "is_bitfield": false, - "values": [ - { - "name": "CAMERA2D_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "CAMERA2D_PROCESS_IDLE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_anchor_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2050398218, - "arguments": [ - { - "name": "anchor_mode", - "type": "enum::Camera2D.AnchorMode" - } - ] - }, - { - "name": "get_anchor_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 155978067, - "return_value": { - "type": "enum::Camera2D.AnchorMode" - } - }, - { - "name": "set_ignore_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "is_ignoring_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4201947462, - "arguments": [ - { - "name": "mode", - "type": "enum::Camera2D.Camera2DProcessCallback" - } - ] - }, - { - "name": "get_process_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2325344499, - "return_value": { - "type": "enum::Camera2D.Camera2DProcessCallback" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "make_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_current", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "limit_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 437707142, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "limit", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_limit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1983885014, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_limit_smoothing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "limit_smoothing_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_limit_smoothing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_vertical_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_drag_vertical_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_horizontal_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_drag_horizontal_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_vertical_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drag_vertical_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_drag_horizontal_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drag_horizontal_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_drag_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "drag_margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drag_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_screen_center_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_screen_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_zoom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "zoom", - "type": "Vector2" - } - ] - }, - { - "name": "get_zoom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_custom_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "viewport", - "type": "Node" - } - ] - }, - { - "name": "get_custom_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "set_position_smoothing_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "position_smoothing_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_position_smoothing_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_position_smoothing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_position_smoothing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rotation_smoothing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_rotation_smoothing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rotation_smoothing_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rotation_smoothing_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "force_update_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "reset_smoothing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_screen_drawing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "screen_drawing_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_screen_drawing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_drawing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "limit_drawing_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_limit_drawing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_margin_drawing_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "margin_drawing_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_margin_drawing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "int", - "name": "anchor_mode", - "setter": "set_anchor_mode", - "getter": "get_anchor_mode" - }, - { - "type": "bool", - "name": "ignore_rotation", - "setter": "set_ignore_rotation", - "getter": "is_ignoring_rotation" - }, - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "Vector2", - "name": "zoom", - "setter": "set_zoom", - "getter": "get_zoom" - }, - { - "type": "Viewport", - "name": "custom_viewport", - "setter": "set_custom_viewport", - "getter": "get_custom_viewport" - }, - { - "type": "int", - "name": "process_callback", - "setter": "set_process_callback", - "getter": "get_process_callback" - }, - { - "type": "bool", - "name": "limit_enabled", - "setter": "set_limit_enabled", - "getter": "is_limit_enabled" - }, - { - "type": "int", - "name": "limit_left", - "setter": "set_limit", - "getter": "get_limit", - "index": 0 - }, - { - "type": "int", - "name": "limit_top", - "setter": "set_limit", - "getter": "get_limit", - "index": 1 - }, - { - "type": "int", - "name": "limit_right", - "setter": "set_limit", - "getter": "get_limit", - "index": 2 - }, - { - "type": "int", - "name": "limit_bottom", - "setter": "set_limit", - "getter": "get_limit", - "index": 3 - }, - { - "type": "bool", - "name": "limit_smoothed", - "setter": "set_limit_smoothing_enabled", - "getter": "is_limit_smoothing_enabled" - }, - { - "type": "bool", - "name": "position_smoothing_enabled", - "setter": "set_position_smoothing_enabled", - "getter": "is_position_smoothing_enabled" - }, - { - "type": "float", - "name": "position_smoothing_speed", - "setter": "set_position_smoothing_speed", - "getter": "get_position_smoothing_speed" - }, - { - "type": "bool", - "name": "rotation_smoothing_enabled", - "setter": "set_rotation_smoothing_enabled", - "getter": "is_rotation_smoothing_enabled" - }, - { - "type": "float", - "name": "rotation_smoothing_speed", - "setter": "set_rotation_smoothing_speed", - "getter": "get_rotation_smoothing_speed" - }, - { - "type": "bool", - "name": "drag_horizontal_enabled", - "setter": "set_drag_horizontal_enabled", - "getter": "is_drag_horizontal_enabled" - }, - { - "type": "bool", - "name": "drag_vertical_enabled", - "setter": "set_drag_vertical_enabled", - "getter": "is_drag_vertical_enabled" - }, - { - "type": "float", - "name": "drag_horizontal_offset", - "setter": "set_drag_horizontal_offset", - "getter": "get_drag_horizontal_offset" - }, - { - "type": "float", - "name": "drag_vertical_offset", - "setter": "set_drag_vertical_offset", - "getter": "get_drag_vertical_offset" - }, - { - "type": "float", - "name": "drag_left_margin", - "setter": "set_drag_margin", - "getter": "get_drag_margin", - "index": 0 - }, - { - "type": "float", - "name": "drag_top_margin", - "setter": "set_drag_margin", - "getter": "get_drag_margin", - "index": 1 - }, - { - "type": "float", - "name": "drag_right_margin", - "setter": "set_drag_margin", - "getter": "get_drag_margin", - "index": 2 - }, - { - "type": "float", - "name": "drag_bottom_margin", - "setter": "set_drag_margin", - "getter": "get_drag_margin", - "index": 3 - }, - { - "type": "bool", - "name": "editor_draw_screen", - "setter": "set_screen_drawing_enabled", - "getter": "is_screen_drawing_enabled" - }, - { - "type": "bool", - "name": "editor_draw_limits", - "setter": "set_limit_drawing_enabled", - "getter": "is_limit_drawing_enabled" - }, - { - "type": "bool", - "name": "editor_draw_drag_margin", - "setter": "set_margin_drawing_enabled", - "getter": "is_margin_drawing_enabled" - } - ] - }, - { - "name": "Camera3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "ProjectionType", - "is_bitfield": false, - "values": [ - { - "name": "PROJECTION_PERSPECTIVE", - "value": 0 - }, - { - "name": "PROJECTION_ORTHOGONAL", - "value": 1 - }, - { - "name": "PROJECTION_FRUSTUM", - "value": 2 - } - ] - }, - { - "name": "KeepAspect", - "is_bitfield": false, - "values": [ - { - "name": "KEEP_WIDTH", - "value": 0 - }, - { - "name": "KEEP_HEIGHT", - "value": 1 - } - ] - }, - { - "name": "DopplerTracking", - "is_bitfield": false, - "values": [ - { - "name": "DOPPLER_TRACKING_DISABLED", - "value": 0 - }, - { - "name": "DOPPLER_TRACKING_IDLE_STEP", - "value": 1 - }, - { - "name": "DOPPLER_TRACKING_PHYSICS_STEP", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "project_ray_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1718073306, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2" - } - ] - }, - { - "name": "project_local_ray_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1718073306, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2" - } - ] - }, - { - "name": "project_ray_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1718073306, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2" - } - ] - }, - { - "name": "unproject_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3758901831, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "world_point", - "type": "Vector3" - } - ] - }, - { - "name": "is_position_behind", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3108956480, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "world_point", - "type": "Vector3" - } - ] - }, - { - "name": "project_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2171975744, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2" - }, - { - "name": "z_depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_perspective", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2385087082, - "arguments": [ - { - "name": "fov", - "type": "float", - "meta": "float" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_orthogonal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2385087082, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_frustum", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 354890663, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - }, - { - "name": "offset", - "type": "Vector2" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "make_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "enable_next", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_current", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_camera_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_camera_projection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2910717950, - "return_value": { - "type": "Projection" - } - }, - { - "name": "get_fov", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_frustum_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_far", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_near", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fov", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fov", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_frustum_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_far", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_near", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "near", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_projection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2624185235, - "return_value": { - "type": "enum::Camera3D.ProjectionType" - } - }, - { - "name": "set_projection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4218540108, - "arguments": [ - { - "name": "mode", - "type": "enum::Camera3D.ProjectionType" - } - ] - }, - { - "name": "set_h_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_h_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_v_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_v_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4143518816, - "arguments": [ - { - "name": "env", - "type": "Environment" - } - ] - }, - { - "name": "get_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082064660, - "return_value": { - "type": "Environment" - } - }, - { - "name": "set_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817810567, - "arguments": [ - { - "name": "env", - "type": "CameraAttributes" - } - ] - }, - { - "name": "get_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3921283215, - "return_value": { - "type": "CameraAttributes" - } - }, - { - "name": "set_compositor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1586754307, - "arguments": [ - { - "name": "compositor", - "type": "Compositor" - } - ] - }, - { - "name": "get_compositor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3647707413, - "return_value": { - "type": "Compositor" - } - }, - { - "name": "set_keep_aspect_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740651252, - "arguments": [ - { - "name": "mode", - "type": "enum::Camera3D.KeepAspect" - } - ] - }, - { - "name": "get_keep_aspect_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2790278316, - "return_value": { - "type": "enum::Camera3D.KeepAspect" - } - }, - { - "name": "set_doppler_tracking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3109431270, - "arguments": [ - { - "name": "mode", - "type": "enum::Camera3D.DopplerTracking" - } - ] - }, - { - "name": "get_doppler_tracking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1584483649, - "return_value": { - "type": "enum::Camera3D.DopplerTracking" - } - }, - { - "name": "get_frustum", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Plane" - } - }, - { - "name": "is_position_in_frustum", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3108956480, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "world_point", - "type": "Vector3" - } - ] - }, - { - "name": "get_camera_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_pyramid_shape_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_cull_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_cull_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "keep_aspect", - "setter": "set_keep_aspect_mode", - "getter": "get_keep_aspect_mode" - }, - { - "type": "int", - "name": "cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - }, - { - "type": "Environment", - "name": "environment", - "setter": "set_environment", - "getter": "get_environment" - }, - { - "type": "CameraAttributesPractical,CameraAttributesPhysical", - "name": "attributes", - "setter": "set_attributes", - "getter": "get_attributes" - }, - { - "type": "Compositor", - "name": "compositor", - "setter": "set_compositor", - "getter": "get_compositor" - }, - { - "type": "float", - "name": "h_offset", - "setter": "set_h_offset", - "getter": "get_h_offset" - }, - { - "type": "float", - "name": "v_offset", - "setter": "set_v_offset", - "getter": "get_v_offset" - }, - { - "type": "int", - "name": "doppler_tracking", - "setter": "set_doppler_tracking", - "getter": "get_doppler_tracking" - }, - { - "type": "int", - "name": "projection", - "setter": "set_projection", - "getter": "get_projection" - }, - { - "type": "bool", - "name": "current", - "setter": "set_current", - "getter": "is_current" - }, - { - "type": "float", - "name": "fov", - "setter": "set_fov", - "getter": "get_fov" - }, - { - "type": "float", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Vector2", - "name": "frustum_offset", - "setter": "set_frustum_offset", - "getter": "get_frustum_offset" - }, - { - "type": "float", - "name": "near", - "setter": "set_near", - "getter": "get_near" - }, - { - "type": "float", - "name": "far", - "setter": "set_far", - "getter": "get_far" - } - ] - }, - { - "name": "CameraAttributes", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_exposure_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_exposure_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_exposure_sensitivity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sensitivity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_exposure_sensitivity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_auto_exposure_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_exposure_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "exposure_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "exposure_grey", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "exposure_sensitivity", - "setter": "set_exposure_sensitivity", - "getter": "get_exposure_sensitivity" - }, - { - "type": "float", - "name": "exposure_multiplier", - "setter": "set_exposure_multiplier", - "getter": "get_exposure_multiplier" - }, - { - "type": "bool", - "name": "auto_exposure_enabled", - "setter": "set_auto_exposure_enabled", - "getter": "is_auto_exposure_enabled" - }, - { - "type": "float", - "name": "auto_exposure_scale", - "setter": "set_auto_exposure_scale", - "getter": "get_auto_exposure_scale" - }, - { - "type": "float", - "name": "auto_exposure_speed", - "setter": "set_auto_exposure_speed", - "getter": "get_auto_exposure_speed" - } - ] - }, - { - "name": "CameraAttributesPhysical", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "CameraAttributes", - "api_type": "core", - "methods": [ - { - "name": "set_aperture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "aperture", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_aperture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_shutter_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "shutter_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_shutter_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_focal_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "focal_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_focal_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_focus_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "focus_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_focus_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_near", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "near", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_near", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_far", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_far", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_fov", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_max_exposure_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "exposure_value_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_max_exposure_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_min_exposure_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "exposure_value_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_min_exposure_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "frustum_focus_distance", - "setter": "set_focus_distance", - "getter": "get_focus_distance" - }, - { - "type": "float", - "name": "frustum_focal_length", - "setter": "set_focal_length", - "getter": "get_focal_length" - }, - { - "type": "float", - "name": "frustum_near", - "setter": "set_near", - "getter": "get_near" - }, - { - "type": "float", - "name": "frustum_far", - "setter": "set_far", - "getter": "get_far" - }, - { - "type": "float", - "name": "exposure_aperture", - "setter": "set_aperture", - "getter": "get_aperture" - }, - { - "type": "float", - "name": "exposure_shutter_speed", - "setter": "set_shutter_speed", - "getter": "get_shutter_speed" - }, - { - "type": "float", - "name": "auto_exposure_min_exposure_value", - "setter": "set_auto_exposure_min_exposure_value", - "getter": "get_auto_exposure_min_exposure_value" - }, - { - "type": "float", - "name": "auto_exposure_max_exposure_value", - "setter": "set_auto_exposure_max_exposure_value", - "getter": "get_auto_exposure_max_exposure_value" - } - ] - }, - { - "name": "CameraAttributesPractical", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "CameraAttributes", - "api_type": "core", - "methods": [ - { - "name": "set_dof_blur_far_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_dof_blur_far_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_dof_blur_far_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dof_blur_far_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dof_blur_far_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dof_blur_far_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dof_blur_near_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_dof_blur_near_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_dof_blur_near_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dof_blur_near_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dof_blur_near_transition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dof_blur_near_transition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_dof_blur_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dof_blur_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_max_sensitivity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_sensitivity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_max_sensitivity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_auto_exposure_min_sensitivity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min_sensitivity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_auto_exposure_min_sensitivity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "dof_blur_far_enabled", - "setter": "set_dof_blur_far_enabled", - "getter": "is_dof_blur_far_enabled" - }, - { - "type": "float", - "name": "dof_blur_far_distance", - "setter": "set_dof_blur_far_distance", - "getter": "get_dof_blur_far_distance" - }, - { - "type": "float", - "name": "dof_blur_far_transition", - "setter": "set_dof_blur_far_transition", - "getter": "get_dof_blur_far_transition" - }, - { - "type": "bool", - "name": "dof_blur_near_enabled", - "setter": "set_dof_blur_near_enabled", - "getter": "is_dof_blur_near_enabled" - }, - { - "type": "float", - "name": "dof_blur_near_distance", - "setter": "set_dof_blur_near_distance", - "getter": "get_dof_blur_near_distance" - }, - { - "type": "float", - "name": "dof_blur_near_transition", - "setter": "set_dof_blur_near_transition", - "getter": "get_dof_blur_near_transition" - }, - { - "type": "float", - "name": "dof_blur_amount", - "setter": "set_dof_blur_amount", - "getter": "get_dof_blur_amount" - }, - { - "type": "float", - "name": "auto_exposure_min_sensitivity", - "setter": "set_auto_exposure_min_sensitivity", - "getter": "get_auto_exposure_min_sensitivity" - }, - { - "type": "float", - "name": "auto_exposure_max_sensitivity", - "setter": "set_auto_exposure_max_sensitivity", - "getter": "get_auto_exposure_max_sensitivity" - } - ] - }, - { - "name": "CameraFeed", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "FeedDataType", - "is_bitfield": false, - "values": [ - { - "name": "FEED_NOIMAGE", - "value": 0 - }, - { - "name": "FEED_RGB", - "value": 1 - }, - { - "name": "FEED_YCBCR", - "value": 2 - }, - { - "name": "FEED_YCBCR_SEP", - "value": 3 - }, - { - "name": "FEED_EXTERNAL", - "value": 4 - } - ] - }, - { - "name": "FeedPosition", - "is_bitfield": false, - "values": [ - { - "name": "FEED_UNSPECIFIED", - "value": 0 - }, - { - "name": "FEED_FRONT", - "value": 1 - }, - { - "name": "FEED_BACK", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_activate_feed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_deactivate_feed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_set_format", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 31872775, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "parameters", - "type": "Dictionary" - } - ] - }, - { - "name": "_get_formats", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2711679033, - "return_value": { - "type": "enum::CameraFeed.FeedPosition" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 611162623, - "arguments": [ - { - "name": "position", - "type": "enum::CameraFeed.FeedPosition" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "set_rgb_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "rgb_image", - "type": "Image" - } - ] - }, - { - "name": "set_ycbcr_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "ycbcr_image", - "type": "Image" - } - ] - }, - { - "name": "set_ycbcr_images", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1986484629, - "arguments": [ - { - "name": "y_image", - "type": "Image" - }, - { - "name": "cbcr_image", - "type": "Image" - } - ] - }, - { - "name": "set_external", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_texture_tex_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1135699418, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "feed_image_type", - "type": "enum::CameraServer.FeedImage" - } - ] - }, - { - "name": "get_datatype", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477782850, - "return_value": { - "type": "enum::CameraFeed.FeedDataType" - } - }, - { - "name": "get_formats", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 31872775, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "parameters", - "type": "Dictionary" - } - ] - } - ], - "signals": [ - { - "name": "frame_changed" - }, - { - "name": "format_changed" - } - ], - "properties": [ - { - "type": "bool", - "name": "feed_is_active", - "setter": "set_active", - "getter": "is_active" - }, - { - "type": "Transform2D", - "name": "feed_transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "Array", - "name": "formats", - "getter": "get_formats" - } - ] - }, - { - "name": "CameraServer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "FeedImage", - "is_bitfield": false, - "values": [ - { - "name": "FEED_RGBA_IMAGE", - "value": 0 - }, - { - "name": "FEED_YCBCR_IMAGE", - "value": 0 - }, - { - "name": "FEED_Y_IMAGE", - "value": 0 - }, - { - "name": "FEED_CBCR_IMAGE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_monitoring_feeds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_monitoring_feeds", - "type": "bool" - } - ] - }, - { - "name": "is_monitoring_feeds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_feed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 361927068, - "return_value": { - "type": "CameraFeed" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_feed_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "feeds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::CameraFeed" - } - }, - { - "name": "add_feed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3204782488, - "arguments": [ - { - "name": "feed", - "type": "CameraFeed" - } - ] - }, - { - "name": "remove_feed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3204782488, - "arguments": [ - { - "name": "feed", - "type": "CameraFeed" - } - ] - } - ], - "signals": [ - { - "name": "camera_feed_added", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "camera_feed_removed", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "camera_feeds_updated" - } - ], - "properties": [ - { - "type": "bool", - "name": "monitoring_feeds", - "setter": "set_monitoring_feeds", - "getter": "is_monitoring_feeds" - } - ] - }, - { - "name": "CameraTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_camera_feed_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "feed_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_camera_feed_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_which_feed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1595299230, - "arguments": [ - { - "name": "which_feed", - "type": "enum::CameraServer.FeedImage" - } - ] - }, - { - "name": "get_which_feed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 91039457, - "return_value": { - "type": "enum::CameraServer.FeedImage" - } - }, - { - "name": "set_camera_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_camera_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "camera_feed_id", - "setter": "set_camera_feed_id", - "getter": "get_camera_feed_id" - }, - { - "type": "int", - "name": "which_feed", - "setter": "set_which_feed", - "getter": "get_which_feed" - }, - { - "type": "bool", - "name": "camera_is_active", - "setter": "set_camera_active", - "getter": "get_camera_active" - } - ] - }, - { - "name": "CanvasGroup", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_fit_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fit_margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fit_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_clear_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "clear_margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_clear_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_mipmaps", - "type": "bool" - } - ] - }, - { - "name": "is_using_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "fit_margin", - "setter": "set_fit_margin", - "getter": "get_fit_margin" - }, - { - "type": "float", - "name": "clear_margin", - "setter": "set_clear_margin", - "getter": "get_clear_margin" - }, - { - "type": "bool", - "name": "use_mipmaps", - "setter": "set_use_mipmaps", - "getter": "is_using_mipmaps" - } - ] - }, - { - "name": "CanvasItem", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_TRANSFORM_CHANGED", - "value": 2000 - }, - { - "name": "NOTIFICATION_LOCAL_TRANSFORM_CHANGED", - "value": 35 - }, - { - "name": "NOTIFICATION_DRAW", - "value": 30 - }, - { - "name": "NOTIFICATION_VISIBILITY_CHANGED", - "value": 31 - }, - { - "name": "NOTIFICATION_ENTER_CANVAS", - "value": 32 - }, - { - "name": "NOTIFICATION_EXIT_CANVAS", - "value": 33 - }, - { - "name": "NOTIFICATION_WORLD_2D_CHANGED", - "value": 36 - } - ], - "enums": [ - { - "name": "TextureFilter", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_FILTER_PARENT_NODE", - "value": 0 - }, - { - "name": "TEXTURE_FILTER_NEAREST", - "value": 1 - }, - { - "name": "TEXTURE_FILTER_LINEAR", - "value": 2 - }, - { - "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", - "value": 3 - }, - { - "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", - "value": 4 - }, - { - "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", - "value": 5 - }, - { - "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", - "value": 6 - }, - { - "name": "TEXTURE_FILTER_MAX", - "value": 7 - } - ] - }, - { - "name": "TextureRepeat", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_REPEAT_PARENT_NODE", - "value": 0 - }, - { - "name": "TEXTURE_REPEAT_DISABLED", - "value": 1 - }, - { - "name": "TEXTURE_REPEAT_ENABLED", - "value": 2 - }, - { - "name": "TEXTURE_REPEAT_MIRROR", - "value": 3 - }, - { - "name": "TEXTURE_REPEAT_MAX", - "value": 4 - } - ] - }, - { - "name": "ClipChildrenMode", - "is_bitfield": false, - "values": [ - { - "name": "CLIP_CHILDREN_DISABLED", - "value": 0 - }, - { - "name": "CLIP_CHILDREN_ONLY", - "value": 1 - }, - { - "name": "CLIP_CHILDREN_AND_DRAW", - "value": 2 - }, - { - "name": "CLIP_CHILDREN_MAX", - "value": 3 - } - ] - }, - { - "name": "OversamplingWithScale", - "is_bitfield": false, - "values": [ - { - "name": "OVERSAMPLING_WITH_SCALE_PARENT_NODE", - "value": 0 - }, - { - "name": "OVERSAMPLING_WITH_SCALE_DISABLED", - "value": 1 - }, - { - "name": "OVERSAMPLING_WITH_SCALE_ENABLED", - "value": 2 - }, - { - "name": "OVERSAMPLING_WITH_SCALE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "_draw", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "get_canvas_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_visible_in_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "hide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "queue_redraw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "move_to_front", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_as_top_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_set_as_top_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_light_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "light_mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_light_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_self_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "self_modulate", - "type": "Color" - } - ] - }, - { - "name": "get_self_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_z_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "z_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_z_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_z_as_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_z_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_y_sort_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_y_sort_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_behind_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_draw_behind_parent_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "draw_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1562330099, - "hash_compatibility": [ - 2516941890 - ], - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_dashed_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3653831622, - "hash_compatibility": [ - 684651049, - 2175215884 - ], - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "dash", - "type": "float", - "meta": "float", - "default_value": "2.0" - }, - { - "name": "aligned", - "type": "bool", - "default_value": "true" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_polyline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3797364428, - "hash_compatibility": [ - 4175878946 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_polyline_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311979562, - "hash_compatibility": [ - 2239164197 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_ellipse_arc", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 936174114, - "arguments": [ - { - "name": "center", - "type": "Vector2" - }, - { - "name": "major", - "type": "float", - "meta": "float" - }, - { - "name": "minor", - "type": "float", - "meta": "float" - }, - { - "name": "start_angle", - "type": "float", - "meta": "float" - }, - { - "name": "end_angle", - "type": "float", - "meta": "float" - }, - { - "name": "point_count", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_arc", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4140652635, - "hash_compatibility": [ - 3486841771 - ], - "arguments": [ - { - "name": "center", - "type": "Vector2" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "start_angle", - "type": "float", - "meta": "float" - }, - { - "name": "end_angle", - "type": "float", - "meta": "float" - }, - { - "name": "point_count", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_multiline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3797364428, - "hash_compatibility": [ - 2239075205, - 4230657331 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_multiline_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311979562, - "hash_compatibility": [ - 4072951537, - 235933050 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2773573813, - "hash_compatibility": [ - 2417231121, - 84391229 - ], - "arguments": [ - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "filled", - "type": "bool", - "default_value": "true" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_circle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3153026596, - "hash_compatibility": [ - 3063020269 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "filled", - "type": "bool", - "default_value": "true" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_ellipse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3790774806, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "major", - "type": "float", - "meta": "float" - }, - { - "name": "minor", - "type": "float", - "meta": "float" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "filled", - "type": "bool", - "default_value": "true" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 520200117, - "hash_compatibility": [ - 1695860435 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - }, - { - "name": "position", - "type": "Vector2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "draw_texture_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3832805018, - "hash_compatibility": [ - 3204081724 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "tile", - "type": "bool" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3883821411, - "hash_compatibility": [ - 3196597532 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - }, - { - "name": "clip_uv", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "draw_msdf_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4219163252, - "hash_compatibility": [ - 2672026175 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "outline", - "type": "float", - "meta": "double", - "default_value": "0.0" - }, - { - "name": "pixel_range", - "type": "float", - "meta": "double", - "default_value": "4.0" - }, - { - "name": "scale", - "type": "float", - "meta": "double", - "default_value": "1.0" - } - ] - }, - { - "name": "draw_lcd_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3212350954, - "hash_compatibility": [ - 169610548 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "draw_style_box", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 388176283, - "arguments": [ - { - "name": "style_box", - "type": "StyleBox", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "draw_primitive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3288481815, - "hash_compatibility": [ - 2248678295 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "uvs", - "type": "PackedVector2Array" - }, - { - "name": "texture", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "draw_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974537912, - "hash_compatibility": [ - 2683625537 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "uvs", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "texture", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "draw_colored_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 15245644, - "hash_compatibility": [ - 1659099617 - ], - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "uvs", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "texture", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "draw_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 719605945, - "hash_compatibility": [ - 728290553, - 2552080639 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_multiline_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2341488182, - "hash_compatibility": [ - 1927038192, - 4002645436 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "max_lines", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "brk_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_string_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 707403449, - "hash_compatibility": [ - 340562381, - 850005221 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_multiline_string_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050414441, - "hash_compatibility": [ - 1912318525, - 3717870722 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "max_lines", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "brk_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1336210142, - "hash_compatibility": [ - 3339793283, - 2329089032 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "char", - "type": "String" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_char_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1846384149, - "hash_compatibility": [ - 3302344391, - 419453826 - ], - "arguments": [ - { - "name": "font", - "type": "Font", - "meta": "required" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "char", - "type": "String" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 153818295, - "hash_compatibility": [ - 1634855856 - ], - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "meta": "required" - }, - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "transform", - "type": "Transform2D", - "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "draw_multimesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 937992368, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh", - "meta": "required" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "draw_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 288975085, - "hash_compatibility": [ - 3283884939 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "rotation", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "scale", - "type": "Vector2", - "default_value": "Vector2(1, 1)" - } - ] - }, - { - "name": "draw_set_transform_matrix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "draw_animation_slice", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3112831842, - "hash_compatibility": [ - 2295343543 - ], - "arguments": [ - { - "name": "animation_length", - "type": "float", - "meta": "double" - }, - { - "name": "slice_begin", - "type": "float", - "meta": "double" - }, - { - "name": "slice_end", - "type": "float", - "meta": "double" - }, - { - "name": "offset", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_end_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_global_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_global_transform_with_canvas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_viewport_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_viewport_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "get_canvas_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_screen_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_local_mouse_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_global_mouse_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_canvas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_canvas_layer_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2602762519, - "return_value": { - "type": "CanvasLayer" - } - }, - { - "name": "get_world_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339128592, - "return_value": { - "type": "World2D" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_instance_shader_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_instance_shader_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_use_parent_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_use_parent_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_notify_local_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_local_transform_notification_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_notify_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_transform_notification_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "force_update_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "make_canvas_position_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "viewport_point", - "type": "Vector2" - } - ] - }, - { - "name": "make_input_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 811130057, - "return_value": { - "type": "InputEvent", - "meta": "required" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "set_visibility_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_visibility_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_visibility_layer_bit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_visibility_layer_bit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1037999706, - "arguments": [ - { - "name": "mode", - "type": "enum::CanvasItem.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121960042, - "return_value": { - "type": "enum::CanvasItem.TextureFilter" - } - }, - { - "name": "set_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1716472974, - "arguments": [ - { - "name": "mode", - "type": "enum::CanvasItem.TextureRepeat" - } - ] - }, - { - "name": "get_texture_repeat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2667158319, - "return_value": { - "type": "enum::CanvasItem.TextureRepeat" - } - }, - { - "name": "set_clip_children_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1319393776, - "arguments": [ - { - "name": "mode", - "type": "enum::CanvasItem.ClipChildrenMode" - } - ] - }, - { - "name": "get_clip_children_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3581808349, - "return_value": { - "type": "enum::CanvasItem.ClipChildrenMode" - } - }, - { - "name": "set_oversampling_with_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 872218804, - "arguments": [ - { - "name": "enabled", - "type": "enum::CanvasItem.OversamplingWithScale" - } - ] - }, - { - "name": "get_oversampling_with_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2026097197, - "return_value": { - "type": "enum::CanvasItem.OversamplingWithScale" - } - } - ], - "signals": [ - { - "name": "draw" - }, - { - "name": "visibility_changed" - }, - { - "name": "hidden" - }, - { - "name": "item_rect_changed" - } - ], - "properties": [ - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - }, - { - "type": "Color", - "name": "modulate", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "Color", - "name": "self_modulate", - "setter": "set_self_modulate", - "getter": "get_self_modulate" - }, - { - "type": "bool", - "name": "show_behind_parent", - "setter": "set_draw_behind_parent", - "getter": "is_draw_behind_parent_enabled" - }, - { - "type": "bool", - "name": "top_level", - "setter": "set_as_top_level", - "getter": "is_set_as_top_level" - }, - { - "type": "int", - "name": "clip_children", - "setter": "set_clip_children_mode", - "getter": "get_clip_children_mode" - }, - { - "type": "int", - "name": "oversampling_with_scale", - "setter": "set_oversampling_with_scale", - "getter": "get_oversampling_with_scale" - }, - { - "type": "int", - "name": "light_mask", - "setter": "set_light_mask", - "getter": "get_light_mask" - }, - { - "type": "int", - "name": "visibility_layer", - "setter": "set_visibility_layer", - "getter": "get_visibility_layer" - }, - { - "type": "int", - "name": "z_index", - "setter": "set_z_index", - "getter": "get_z_index" - }, - { - "type": "bool", - "name": "z_as_relative", - "setter": "set_z_as_relative", - "getter": "is_z_relative" - }, - { - "type": "bool", - "name": "y_sort_enabled", - "setter": "set_y_sort_enabled", - "getter": "is_y_sort_enabled" - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "int", - "name": "texture_repeat", - "setter": "set_texture_repeat", - "getter": "get_texture_repeat" - }, - { - "type": "CanvasItemMaterial,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - }, - { - "type": "bool", - "name": "use_parent_material", - "setter": "set_use_parent_material", - "getter": "get_use_parent_material" - } - ] - }, - { - "name": "CanvasItemMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "enums": [ - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_MIX", - "value": 0 - }, - { - "name": "BLEND_MODE_ADD", - "value": 1 - }, - { - "name": "BLEND_MODE_SUB", - "value": 2 - }, - { - "name": "BLEND_MODE_MUL", - "value": 3 - }, - { - "name": "BLEND_MODE_PREMULT_ALPHA", - "value": 4 - } - ] - }, - { - "name": "LightMode", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_MODE_NORMAL", - "value": 0 - }, - { - "name": "LIGHT_MODE_UNSHADED", - "value": 1 - }, - { - "name": "LIGHT_MODE_LIGHT_ONLY", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1786054936, - "arguments": [ - { - "name": "blend_mode", - "type": "enum::CanvasItemMaterial.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3318684035, - "return_value": { - "type": "enum::CanvasItemMaterial.BlendMode" - } - }, - { - "name": "set_light_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 628074070, - "arguments": [ - { - "name": "light_mode", - "type": "enum::CanvasItemMaterial.LightMode" - } - ] - }, - { - "name": "get_light_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3863292382, - "return_value": { - "type": "enum::CanvasItemMaterial.LightMode" - } - }, - { - "name": "set_particles_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "particles_anim", - "type": "bool" - } - ] - }, - { - "name": "get_particles_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_particles_anim_h_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_particles_anim_h_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_particles_anim_v_frames", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frames", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_particles_anim_v_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_particles_anim_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "get_particles_anim_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - }, - { - "type": "int", - "name": "light_mode", - "setter": "set_light_mode", - "getter": "get_light_mode" - }, - { - "type": "bool", - "name": "particles_animation", - "setter": "set_particles_animation", - "getter": "get_particles_animation" - }, - { - "type": "int", - "name": "particles_anim_h_frames", - "setter": "set_particles_anim_h_frames", - "getter": "get_particles_anim_h_frames" - }, - { - "type": "int", - "name": "particles_anim_v_frames", - "setter": "set_particles_anim_v_frames", - "getter": "get_particles_anim_v_frames" - }, - { - "type": "bool", - "name": "particles_anim_loop", - "setter": "set_particles_anim_loop", - "getter": "get_particles_anim_loop" - } - ] - }, - { - "name": "CanvasLayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "set_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "hide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_final_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_follow_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_following_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_follow_viewport_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_follow_viewport_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_custom_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "viewport", - "type": "Node" - } - ] - }, - { - "name": "get_custom_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "get_canvas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "signals": [ - { - "name": "visibility_changed" - } - ], - "properties": [ - { - "type": "int", - "name": "layer", - "setter": "set_layer", - "getter": "get_layer" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "float", - "name": "rotation", - "setter": "set_rotation", - "getter": "get_rotation" - }, - { - "type": "Vector2", - "name": "scale", - "setter": "set_scale", - "getter": "get_scale" - }, - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "Viewport", - "name": "custom_viewport", - "setter": "set_custom_viewport", - "getter": "get_custom_viewport" - }, - { - "type": "bool", - "name": "follow_viewport_enabled", - "setter": "set_follow_viewport", - "getter": "is_following_viewport" - }, - { - "type": "float", - "name": "follow_viewport_scale", - "setter": "set_follow_viewport_scale", - "getter": "get_follow_viewport_scale" - } - ] - }, - { - "name": "CanvasModulate", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - } - ] - }, - { - "name": "CanvasTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_diffuse_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_diffuse_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_normal_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_normal_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_specular_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_specular_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_specular_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_specular_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_specular_shininess", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "shininess", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_specular_shininess", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1037999706, - "arguments": [ - { - "name": "filter", - "type": "enum::CanvasItem.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121960042, - "return_value": { - "type": "enum::CanvasItem.TextureFilter" - } - }, - { - "name": "set_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1716472974, - "arguments": [ - { - "name": "repeat", - "type": "enum::CanvasItem.TextureRepeat" - } - ] - }, - { - "name": "get_texture_repeat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2667158319, - "return_value": { - "type": "enum::CanvasItem.TextureRepeat" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "diffuse_texture", - "setter": "set_diffuse_texture", - "getter": "get_diffuse_texture" - }, - { - "type": "Texture2D", - "name": "normal_texture", - "setter": "set_normal_texture", - "getter": "get_normal_texture" - }, - { - "type": "Texture2D", - "name": "specular_texture", - "setter": "set_specular_texture", - "getter": "get_specular_texture" - }, - { - "type": "Color", - "name": "specular_color", - "setter": "set_specular_color", - "getter": "get_specular_color" - }, - { - "type": "float", - "name": "specular_shininess", - "setter": "set_specular_shininess", - "getter": "get_specular_shininess" - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "int", - "name": "texture_repeat", - "setter": "set_texture_repeat", - "getter": "get_texture_repeat" - } - ] - }, - { - "name": "CapsuleMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_radial_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "radial_segments", - "setter": "set_radial_segments", - "getter": "get_radial_segments" - }, - { - "type": "int", - "name": "rings", - "setter": "set_rings", - "getter": "get_rings" - } - ] - }, - { - "name": "CapsuleShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mid_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mid_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mid_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "mid_height", - "setter": "set_mid_height", - "getter": "get_mid_height" - } - ] - }, - { - "name": "CapsuleShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mid_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mid_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mid_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "mid_height", - "setter": "set_mid_height", - "getter": "get_mid_height" - } - ] - }, - { - "name": "CenterContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "methods": [ - { - "name": "set_use_top_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_top_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "use_top_left", - "setter": "set_use_top_left", - "getter": "is_using_top_left" - } - ] - }, - { - "name": "ChainIK3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "IKModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_root_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_root_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_end_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_end_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_extend_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_end_bone_extended", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2838484201, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_direction", - "type": "enum::SkeletonModifier3D.BoneDirection" - } - ] - }, - { - "name": "get_end_bone_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1843036459, - "return_value": { - "type": "enum::SkeletonModifier3D.BoneDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_end_bone_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "CharFXTransform", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3761352769, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2741790807, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "range", - "type": "Vector2i" - } - ] - }, - { - "name": "get_elapsed_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_elapsed_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "is_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_visibility", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visibility", - "type": "bool" - } - ] - }, - { - "name": "is_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "outline", - "type": "bool" - } - ] - }, - { - "name": "get_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200896285, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "environment", - "type": "Dictionary" - } - ] - }, - { - "name": "get_glyph_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_glyph_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "glyph_index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_relative_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_relative_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "relative_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_glyph_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint8" - } - }, - { - "name": "set_glyph_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "glyph_count", - "type": "int", - "meta": "uint8" - } - ] - }, - { - "name": "get_glyph_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint16" - } - }, - { - "name": "set_glyph_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "glyph_flags", - "type": "int", - "meta": "uint16" - } - ] - }, - { - "name": "get_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "font", - "type": "RID" - } - ] - } - ], - "properties": [ - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "Vector2i", - "name": "range", - "setter": "set_range", - "getter": "get_range" - }, - { - "type": "float", - "name": "elapsed_time", - "setter": "set_elapsed_time", - "getter": "get_elapsed_time" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visibility", - "getter": "is_visible" - }, - { - "type": "bool", - "name": "outline", - "setter": "set_outline", - "getter": "is_outline" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "Dictionary", - "name": "env", - "setter": "set_environment", - "getter": "get_environment" - }, - { - "type": "int", - "name": "glyph_index", - "setter": "set_glyph_index", - "getter": "get_glyph_index" - }, - { - "type": "int", - "name": "glyph_count", - "setter": "set_glyph_count", - "getter": "get_glyph_count" - }, - { - "type": "int", - "name": "glyph_flags", - "setter": "set_glyph_flags", - "getter": "get_glyph_flags" - }, - { - "type": "int", - "name": "relative_index", - "setter": "set_relative_index", - "getter": "get_relative_index" - }, - { - "type": "RID", - "name": "font", - "setter": "set_font", - "getter": "get_font" - } - ] - }, - { - "name": "CharacterBody2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody2D", - "api_type": "core", - "enums": [ - { - "name": "MotionMode", - "is_bitfield": false, - "values": [ - { - "name": "MOTION_MODE_GROUNDED", - "value": 0 - }, - { - "name": "MOTION_MODE_FLOATING", - "value": 1 - } - ] - }, - { - "name": "PlatformOnLeave", - "is_bitfield": false, - "values": [ - { - "name": "PLATFORM_ON_LEAVE_ADD_VELOCITY", - "value": 0 - }, - { - "name": "PLATFORM_ON_LEAVE_ADD_UPWARD_VELOCITY", - "value": 1 - }, - { - "name": "PLATFORM_ON_LEAVE_DO_NOTHING", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "move_and_slide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "apply_floor_snap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_safe_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_safe_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "is_floor_stop_on_slope_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_floor_stop_on_slope_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_floor_constant_speed_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_floor_constant_speed_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_floor_block_on_wall_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_floor_block_on_wall_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_slide_on_ceiling_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_slide_on_ceiling_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_platform_floor_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "exclude_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_platform_floor_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_platform_wall_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "exclude_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_platform_wall_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_max_slides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_slides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_slides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_floor_max_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_floor_max_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_floor_snap_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_floor_snap_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "floor_snap_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wall_min_slide_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wall_min_slide_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_up_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_up_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "up_direction", - "type": "Vector2" - } - ] - }, - { - "name": "set_motion_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1224392233, - "arguments": [ - { - "name": "mode", - "type": "enum::CharacterBody2D.MotionMode" - } - ] - }, - { - "name": "get_motion_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1160151236, - "return_value": { - "type": "enum::CharacterBody2D.MotionMode" - } - }, - { - "name": "set_platform_on_leave", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2423324375, - "arguments": [ - { - "name": "on_leave_apply_velocity", - "type": "enum::CharacterBody2D.PlatformOnLeave" - } - ] - }, - { - "name": "get_platform_on_leave", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4054324341, - "return_value": { - "type": "enum::CharacterBody2D.PlatformOnLeave" - } - }, - { - "name": "is_on_floor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_floor_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_ceiling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_ceiling_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_wall", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_wall_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_floor_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_wall_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_last_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_position_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_real_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_floor_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841063350, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "up_direction", - "type": "Vector2", - "default_value": "Vector2(0, -1)" - } - ] - }, - { - "name": "get_platform_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_slide_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_slide_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 860659811, - "return_value": { - "type": "KinematicCollision2D" - }, - "arguments": [ - { - "name": "slide_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_last_slide_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2161834755, - "return_value": { - "type": "KinematicCollision2D" - } - } - ], - "properties": [ - { - "type": "int", - "name": "motion_mode", - "setter": "set_motion_mode", - "getter": "get_motion_mode" - }, - { - "type": "Vector2", - "name": "up_direction", - "setter": "set_up_direction", - "getter": "get_up_direction" - }, - { - "type": "Vector2", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "bool", - "name": "slide_on_ceiling", - "setter": "set_slide_on_ceiling_enabled", - "getter": "is_slide_on_ceiling_enabled" - }, - { - "type": "int", - "name": "max_slides", - "setter": "set_max_slides", - "getter": "get_max_slides" - }, - { - "type": "float", - "name": "wall_min_slide_angle", - "setter": "set_wall_min_slide_angle", - "getter": "get_wall_min_slide_angle" - }, - { - "type": "bool", - "name": "floor_stop_on_slope", - "setter": "set_floor_stop_on_slope_enabled", - "getter": "is_floor_stop_on_slope_enabled" - }, - { - "type": "bool", - "name": "floor_constant_speed", - "setter": "set_floor_constant_speed_enabled", - "getter": "is_floor_constant_speed_enabled" - }, - { - "type": "bool", - "name": "floor_block_on_wall", - "setter": "set_floor_block_on_wall_enabled", - "getter": "is_floor_block_on_wall_enabled" - }, - { - "type": "float", - "name": "floor_max_angle", - "setter": "set_floor_max_angle", - "getter": "get_floor_max_angle" - }, - { - "type": "float", - "name": "floor_snap_length", - "setter": "set_floor_snap_length", - "getter": "get_floor_snap_length" - }, - { - "type": "int", - "name": "platform_on_leave", - "setter": "set_platform_on_leave", - "getter": "get_platform_on_leave" - }, - { - "type": "int", - "name": "platform_floor_layers", - "setter": "set_platform_floor_layers", - "getter": "get_platform_floor_layers" - }, - { - "type": "int", - "name": "platform_wall_layers", - "setter": "set_platform_wall_layers", - "getter": "get_platform_wall_layers" - }, - { - "type": "float", - "name": "safe_margin", - "setter": "set_safe_margin", - "getter": "get_safe_margin" - } - ] - }, - { - "name": "CharacterBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody3D", - "api_type": "core", - "enums": [ - { - "name": "MotionMode", - "is_bitfield": false, - "values": [ - { - "name": "MOTION_MODE_GROUNDED", - "value": 0 - }, - { - "name": "MOTION_MODE_FLOATING", - "value": 1 - } - ] - }, - { - "name": "PlatformOnLeave", - "is_bitfield": false, - "values": [ - { - "name": "PLATFORM_ON_LEAVE_ADD_VELOCITY", - "value": 0 - }, - { - "name": "PLATFORM_ON_LEAVE_ADD_UPWARD_VELOCITY", - "value": 1 - }, - { - "name": "PLATFORM_ON_LEAVE_DO_NOTHING", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "move_and_slide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "apply_floor_snap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_safe_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_safe_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "is_floor_stop_on_slope_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_floor_stop_on_slope_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_floor_constant_speed_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_floor_constant_speed_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_floor_block_on_wall_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_floor_block_on_wall_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_slide_on_ceiling_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_slide_on_ceiling_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_platform_floor_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "exclude_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_platform_floor_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_platform_wall_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "exclude_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_platform_wall_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_max_slides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_slides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_slides", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_floor_max_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_floor_max_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_floor_snap_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_floor_snap_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "floor_snap_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wall_min_slide_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wall_min_slide_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_up_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_up_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "up_direction", - "type": "Vector3" - } - ] - }, - { - "name": "set_motion_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2690739026, - "arguments": [ - { - "name": "mode", - "type": "enum::CharacterBody3D.MotionMode" - } - ] - }, - { - "name": "get_motion_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3529553604, - "return_value": { - "type": "enum::CharacterBody3D.MotionMode" - } - }, - { - "name": "set_platform_on_leave", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1459986142, - "arguments": [ - { - "name": "on_leave_apply_velocity", - "type": "enum::CharacterBody3D.PlatformOnLeave" - } - ] - }, - { - "name": "get_platform_on_leave", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 996491171, - "return_value": { - "type": "enum::CharacterBody3D.PlatformOnLeave" - } - }, - { - "name": "is_on_floor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_floor_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_ceiling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_ceiling_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_wall", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_wall_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_floor_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_wall_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_last_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_position_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_real_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_floor_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2906300789, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "up_direction", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - } - ] - }, - { - "name": "get_platform_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_platform_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_slide_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_slide_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107003663, - "return_value": { - "type": "KinematicCollision3D" - }, - "arguments": [ - { - "name": "slide_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_last_slide_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 186875014, - "return_value": { - "type": "KinematicCollision3D" - } - } - ], - "properties": [ - { - "type": "int", - "name": "motion_mode", - "setter": "set_motion_mode", - "getter": "get_motion_mode" - }, - { - "type": "Vector3", - "name": "up_direction", - "setter": "set_up_direction", - "getter": "get_up_direction" - }, - { - "type": "bool", - "name": "slide_on_ceiling", - "setter": "set_slide_on_ceiling_enabled", - "getter": "is_slide_on_ceiling_enabled" - }, - { - "type": "Vector3", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "int", - "name": "max_slides", - "setter": "set_max_slides", - "getter": "get_max_slides" - }, - { - "type": "float", - "name": "wall_min_slide_angle", - "setter": "set_wall_min_slide_angle", - "getter": "get_wall_min_slide_angle" - }, - { - "type": "bool", - "name": "floor_stop_on_slope", - "setter": "set_floor_stop_on_slope_enabled", - "getter": "is_floor_stop_on_slope_enabled" - }, - { - "type": "bool", - "name": "floor_constant_speed", - "setter": "set_floor_constant_speed_enabled", - "getter": "is_floor_constant_speed_enabled" - }, - { - "type": "bool", - "name": "floor_block_on_wall", - "setter": "set_floor_block_on_wall_enabled", - "getter": "is_floor_block_on_wall_enabled" - }, - { - "type": "float", - "name": "floor_max_angle", - "setter": "set_floor_max_angle", - "getter": "get_floor_max_angle" - }, - { - "type": "float", - "name": "floor_snap_length", - "setter": "set_floor_snap_length", - "getter": "get_floor_snap_length" - }, - { - "type": "int", - "name": "platform_on_leave", - "setter": "set_platform_on_leave", - "getter": "get_platform_on_leave" - }, - { - "type": "int", - "name": "platform_floor_layers", - "setter": "set_platform_floor_layers", - "getter": "get_platform_floor_layers" - }, - { - "type": "int", - "name": "platform_wall_layers", - "setter": "set_platform_wall_layers", - "getter": "get_platform_wall_layers" - }, - { - "type": "float", - "name": "safe_margin", - "setter": "set_safe_margin", - "getter": "get_safe_margin" - } - ] - }, - { - "name": "CheckBox", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Button", - "api_type": "core" - }, - { - "name": "CheckButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Button", - "api_type": "core" - }, - { - "name": "CircleShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "ClassDB", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "APIType", - "is_bitfield": false, - "values": [ - { - "name": "API_CORE", - "value": 0 - }, - { - "name": "API_EDITOR", - "value": 1 - }, - { - "name": "API_EXTENSION", - "value": 2 - }, - { - "name": "API_EDITOR_EXTENSION", - "value": 3 - }, - { - "name": "API_NONE", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "get_class_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_inheriters_from_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1761182771, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "get_parent_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "class_exists", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "is_parent_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "inherits", - "type": "StringName" - } - ] - }, - { - "name": "can_instantiate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "instantiate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "class_get_api_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2475317043, - "return_value": { - "type": "enum::ClassDB.APIType" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "class_has_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "class_get_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3061114238, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "class_get_signal_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3504980660, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_property_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3504980660, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_property_getter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3770832642, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "class_get_property_setter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3770832642, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "class_get_property", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2498641674, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "object", - "type": "Object", - "meta": "required" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "class_set_property", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1690314931, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "object", - "type": "Object", - "meta": "required" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "class_get_property_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2718203076, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "class_has_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3860701026, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_method_argument_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3885694822, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_method_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3504980660, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_call_static", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3344196419, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "class_get_integer_constant_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3031669221, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_has_integer_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "class_get_integer_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2419549490, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "class_has_enum", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3860701026, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_enum_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3031669221, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_enum_constants", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 661528303, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "enum", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "class_get_integer_constant_enum", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2457504236, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_class_enum_bitfield", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3860701026, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - }, - { - "name": "enum", - "type": "StringName" - }, - { - "name": "no_inheritance", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_class_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "CodeEdit", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "TextEdit", - "api_type": "core", - "enums": [ - { - "name": "CodeCompletionKind", - "is_bitfield": false, - "values": [ - { - "name": "KIND_CLASS", - "value": 0 - }, - { - "name": "KIND_FUNCTION", - "value": 1 - }, - { - "name": "KIND_SIGNAL", - "value": 2 - }, - { - "name": "KIND_VARIABLE", - "value": 3 - }, - { - "name": "KIND_MEMBER", - "value": 4 - }, - { - "name": "KIND_ENUM", - "value": 5 - }, - { - "name": "KIND_CONSTANT", - "value": 6 - }, - { - "name": "KIND_NODE_PATH", - "value": 7 - }, - { - "name": "KIND_FILE_PATH", - "value": 8 - }, - { - "name": "KIND_PLAIN_TEXT", - "value": 9 - }, - { - "name": "KIND_KEYWORD", - "value": 10 - } - ] - }, - { - "name": "CodeCompletionLocation", - "is_bitfield": false, - "values": [ - { - "name": "LOCATION_LOCAL", - "value": 0 - }, - { - "name": "LOCATION_PARENT_MASK", - "value": 256 - }, - { - "name": "LOCATION_OTHER_USER_CODE", - "value": 512 - }, - { - "name": "LOCATION_OTHER", - "value": 1024 - } - ] - } - ], - "methods": [ - { - "name": "_confirm_code_completion", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "replace", - "type": "bool" - } - ] - }, - { - "name": "_request_code_completion", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "force", - "type": "bool" - } - ] - }, - { - "name": "_filter_code_completion_candidates", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2560709669, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "candidates", - "type": "typedarray::Dictionary" - } - ] - }, - { - "name": "set_indent_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_indent_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_indent_using_spaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_spaces", - "type": "bool" - } - ] - }, - { - "name": "is_indent_using_spaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_indent_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_auto_indent_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_indent_prefixes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "prefixes", - "type": "typedarray::String" - } - ] - }, - { - "name": "get_auto_indent_prefixes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "do_indent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "indent_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "unindent_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "convert_indent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 423910286, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_auto_brace_completion_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_auto_brace_completion_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_highlight_matching_braces_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_highlight_matching_braces_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_auto_brace_completion_pair", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "start_key", - "type": "String" - }, - { - "name": "end_key", - "type": "String" - } - ] - }, - { - "name": "set_auto_brace_completion_pairs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "pairs", - "type": "Dictionary" - } - ] - }, - { - "name": "get_auto_brace_completion_pairs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "has_auto_brace_completion_open_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "open_key", - "type": "String" - } - ] - }, - { - "name": "has_auto_brace_completion_close_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "close_key", - "type": "String" - } - ] - }, - { - "name": "get_auto_brace_completion_close_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "open_key", - "type": "String" - } - ] - }, - { - "name": "set_draw_breakpoints_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_breakpoints_gutter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_bookmarks_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_bookmarks_gutter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_executing_lines_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_executing_lines_gutter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_line_as_breakpoint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "breakpointed", - "type": "bool" - } - ] - }, - { - "name": "is_line_breakpointed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_breakpointed_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_breakpointed_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_line_as_bookmarked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "bookmarked", - "type": "bool" - } - ] - }, - { - "name": "is_line_bookmarked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_bookmarked_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_bookmarked_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_line_as_executing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "executing", - "type": "bool" - } - ] - }, - { - "name": "is_line_executing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_executing_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_executing_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_draw_line_numbers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_draw_line_numbers_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_line_numbers_zero_padded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_line_numbers_zero_padded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_line_numbers_min_digits", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_numbers_min_digits", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_draw_fold_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_fold_gutter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_line_folding_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_line_folding_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "can_fold_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "fold_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "unfold_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "fold_all_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "unfold_all_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "toggle_foldable_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "toggle_foldable_lines_at_carets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_line_folded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_folded_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "create_code_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_code_region_start_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_code_region_end_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_code_region_tags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 708800718, - "arguments": [ - { - "name": "start", - "type": "String", - "default_value": "\"region\"" - }, - { - "name": "end", - "type": "String", - "default_value": "\"endregion\"" - } - ] - }, - { - "name": "is_line_code_region_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_line_code_region_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_string_delimiter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3146098955, - "arguments": [ - { - "name": "start_key", - "type": "String" - }, - { - "name": "end_key", - "type": "String" - }, - { - "name": "line_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_string_delimiter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "has_string_delimiter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "set_string_delimiters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "string_delimiters", - "type": "typedarray::String" - } - ] - }, - { - "name": "clear_string_delimiters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_string_delimiters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "is_in_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 688195400, - "hash_compatibility": [ - 3294126239 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_comment_delimiter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3146098955, - "arguments": [ - { - "name": "start_key", - "type": "String" - }, - { - "name": "end_key", - "type": "String" - }, - { - "name": "line_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_comment_delimiter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "has_comment_delimiter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "set_comment_delimiters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "comment_delimiters", - "type": "typedarray::String" - } - ] - }, - { - "name": "clear_comment_delimiters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_comment_delimiters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "is_in_comment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 688195400, - "hash_compatibility": [ - 3294126239 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_delimiter_start_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "delimiter_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_delimiter_end_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "delimiter_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_delimiter_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_delimiter_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_code_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "code_hint", - "type": "String" - } - ] - }, - { - "name": "set_code_hint_draw_below", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_below", - "type": "bool" - } - ] - }, - { - "name": "get_text_for_code_completion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "request_code_completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "arguments": [ - { - "name": "force", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_code_completion_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3944379502, - "hash_compatibility": [ - 947964390, - 1629240608 - ], - "arguments": [ - { - "name": "type", - "type": "enum::CodeEdit.CodeCompletionKind" - }, - { - "name": "display_text", - "type": "String" - }, - { - "name": "insert_text", - "type": "String" - }, - { - "name": "text_color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "icon", - "type": "Resource", - "default_value": "null" - }, - { - "name": "value", - "type": "Variant", - "default_value": "null" - }, - { - "name": "location", - "type": "int", - "meta": "int32", - "default_value": "1024" - } - ] - }, - { - "name": "update_code_completion_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force", - "type": "bool" - } - ] - }, - { - "name": "get_code_completion_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_code_completion_option", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_code_completion_selected_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_code_completion_selected_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "confirm_code_completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "arguments": [ - { - "name": "replace", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "cancel_code_completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_code_completion_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_code_completion_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_code_completion_prefixes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "prefixes", - "type": "typedarray::String" - } - ] - }, - { - "name": "get_code_completion_prefixes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "set_line_length_guidelines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "guideline_columns", - "type": "typedarray::int" - } - ] - }, - { - "name": "get_line_length_guidelines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "set_symbol_lookup_on_click_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_symbol_lookup_on_click_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_text_for_symbol_lookup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "hash_compatibility": [ - 2841200299 - ], - "return_value": { - "type": "String" - } - }, - { - "name": "get_text_with_cursor_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_symbol_lookup_word_as_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "valid", - "type": "bool" - } - ] - }, - { - "name": "set_symbol_tooltip_on_hover_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_symbol_tooltip_on_hover_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "move_lines_up", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "move_lines_down", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "delete_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "join_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4063782979, - "arguments": [ - { - "name": "line_ending", - "type": "String", - "default_value": "\" \"" - } - ] - }, - { - "name": "duplicate_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "duplicate_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "breakpoint_toggled", - "arguments": [ - { - "name": "line", - "type": "int" - } - ] - }, - { - "name": "code_completion_requested" - }, - { - "name": "symbol_lookup", - "arguments": [ - { - "name": "symbol", - "type": "String" - }, - { - "name": "line", - "type": "int" - }, - { - "name": "column", - "type": "int" - } - ] - }, - { - "name": "symbol_validate", - "arguments": [ - { - "name": "symbol", - "type": "String" - } - ] - }, - { - "name": "symbol_hovered", - "arguments": [ - { - "name": "symbol", - "type": "String" - }, - { - "name": "line", - "type": "int" - }, - { - "name": "column", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "symbol_lookup_on_click", - "setter": "set_symbol_lookup_on_click_enabled", - "getter": "is_symbol_lookup_on_click_enabled" - }, - { - "type": "bool", - "name": "symbol_tooltip_on_hover", - "setter": "set_symbol_tooltip_on_hover_enabled", - "getter": "is_symbol_tooltip_on_hover_enabled" - }, - { - "type": "bool", - "name": "line_folding", - "setter": "set_line_folding_enabled", - "getter": "is_line_folding_enabled" - }, - { - "type": "PackedInt32Array", - "name": "line_length_guidelines", - "setter": "set_line_length_guidelines", - "getter": "get_line_length_guidelines" - }, - { - "type": "bool", - "name": "gutters_draw_breakpoints_gutter", - "setter": "set_draw_breakpoints_gutter", - "getter": "is_drawing_breakpoints_gutter" - }, - { - "type": "bool", - "name": "gutters_draw_bookmarks", - "setter": "set_draw_bookmarks_gutter", - "getter": "is_drawing_bookmarks_gutter" - }, - { - "type": "bool", - "name": "gutters_draw_executing_lines", - "setter": "set_draw_executing_lines_gutter", - "getter": "is_drawing_executing_lines_gutter" - }, - { - "type": "bool", - "name": "gutters_draw_line_numbers", - "setter": "set_draw_line_numbers", - "getter": "is_draw_line_numbers_enabled" - }, - { - "type": "bool", - "name": "gutters_zero_pad_line_numbers", - "setter": "set_line_numbers_zero_padded", - "getter": "is_line_numbers_zero_padded" - }, - { - "type": "int", - "name": "gutters_line_numbers_min_digits", - "setter": "set_line_numbers_min_digits", - "getter": "get_line_numbers_min_digits" - }, - { - "type": "bool", - "name": "gutters_draw_fold_gutter", - "setter": "set_draw_fold_gutter", - "getter": "is_drawing_fold_gutter" - }, - { - "type": "PackedStringArray", - "name": "delimiter_strings", - "setter": "set_string_delimiters", - "getter": "get_string_delimiters" - }, - { - "type": "PackedStringArray", - "name": "delimiter_comments", - "setter": "set_comment_delimiters", - "getter": "get_comment_delimiters" - }, - { - "type": "bool", - "name": "code_completion_enabled", - "setter": "set_code_completion_enabled", - "getter": "is_code_completion_enabled" - }, - { - "type": "PackedStringArray", - "name": "code_completion_prefixes", - "setter": "set_code_completion_prefixes", - "getter": "get_code_completion_prefixes" - }, - { - "type": "int", - "name": "indent_size", - "setter": "set_indent_size", - "getter": "get_indent_size" - }, - { - "type": "bool", - "name": "indent_use_spaces", - "setter": "set_indent_using_spaces", - "getter": "is_indent_using_spaces" - }, - { - "type": "bool", - "name": "indent_automatic", - "setter": "set_auto_indent_enabled", - "getter": "is_auto_indent_enabled" - }, - { - "type": "PackedStringArray", - "name": "indent_automatic_prefixes", - "setter": "set_auto_indent_prefixes", - "getter": "get_auto_indent_prefixes" - }, - { - "type": "bool", - "name": "auto_brace_completion_enabled", - "setter": "set_auto_brace_completion_enabled", - "getter": "is_auto_brace_completion_enabled" - }, - { - "type": "bool", - "name": "auto_brace_completion_highlight_matching", - "setter": "set_highlight_matching_braces_enabled", - "getter": "is_highlight_matching_braces_enabled" - }, - { - "type": "Dictionary", - "name": "auto_brace_completion_pairs", - "setter": "set_auto_brace_completion_pairs", - "getter": "get_auto_brace_completion_pairs" - } - ] - }, - { - "name": "CodeHighlighter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SyntaxHighlighter", - "api_type": "core", - "methods": [ - { - "name": "add_keyword_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1636512886, - "arguments": [ - { - "name": "keyword", - "type": "String" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "remove_keyword_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "keyword", - "type": "String" - } - ] - }, - { - "name": "has_keyword_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "keyword", - "type": "String" - } - ] - }, - { - "name": "get_keyword_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3855908743, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "keyword", - "type": "String" - } - ] - }, - { - "name": "set_keyword_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "keywords", - "type": "Dictionary" - } - ] - }, - { - "name": "clear_keyword_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_keyword_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "add_member_keyword_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1636512886, - "arguments": [ - { - "name": "member_keyword", - "type": "String" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "remove_member_keyword_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "member_keyword", - "type": "String" - } - ] - }, - { - "name": "has_member_keyword_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "member_keyword", - "type": "String" - } - ] - }, - { - "name": "get_member_keyword_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3855908743, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "member_keyword", - "type": "String" - } - ] - }, - { - "name": "set_member_keyword_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "member_keyword", - "type": "Dictionary" - } - ] - }, - { - "name": "clear_member_keyword_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_member_keyword_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "add_color_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2924977451, - "arguments": [ - { - "name": "start_key", - "type": "String" - }, - { - "name": "end_key", - "type": "String" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "line_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_color_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "has_color_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "start_key", - "type": "String" - } - ] - }, - { - "name": "set_color_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "color_regions", - "type": "Dictionary" - } - ] - }, - { - "name": "clear_color_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_color_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_function_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_function_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_number_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_number_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_symbol_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_symbol_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_member_variable_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_member_variable_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "number_color", - "setter": "set_number_color", - "getter": "get_number_color" - }, - { - "type": "Color", - "name": "symbol_color", - "setter": "set_symbol_color", - "getter": "get_symbol_color" - }, - { - "type": "Color", - "name": "function_color", - "setter": "set_function_color", - "getter": "get_function_color" - }, - { - "type": "Color", - "name": "member_variable_color", - "setter": "set_member_variable_color", - "getter": "get_member_variable_color" - }, - { - "type": "Dictionary", - "name": "keyword_colors", - "setter": "set_keyword_colors", - "getter": "get_keyword_colors" - }, - { - "type": "Dictionary", - "name": "member_keyword_colors", - "setter": "set_member_keyword_colors", - "getter": "get_member_keyword_colors" - }, - { - "type": "Dictionary", - "name": "color_regions", - "setter": "set_color_regions", - "getter": "get_color_regions" - } - ] - }, - { - "name": "CollisionObject2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "DisableMode", - "is_bitfield": false, - "values": [ - { - "name": "DISABLE_MODE_REMOVE", - "value": 0 - }, - { - "name": "DISABLE_MODE_MAKE_STATIC", - "value": 1 - }, - { - "name": "DISABLE_MODE_KEEP_ACTIVE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_input_event", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1847696837, - "arguments": [ - { - "name": "viewport", - "type": "Viewport", - "meta": "required" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_mouse_enter", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_mouse_exit", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_mouse_shape_enter", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_mouse_shape_exit", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_disable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1919204045, - "arguments": [ - { - "name": "mode", - "type": "enum::CollisionObject2D.DisableMode" - } - ] - }, - { - "name": "get_disable_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3172846349, - "return_value": { - "type": "enum::CollisionObject2D.DisableMode" - } - }, - { - "name": "set_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pickable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "create_shape_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3429307534, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "owner", - "type": "Object" - } - ] - }, - { - "name": "remove_shape_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_shape_owners", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "shape_owner_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 30160968, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "shape_owner_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3836996910, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_get_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_shape_owner_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_set_one_way_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_shape_owner_one_way_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_set_one_way_collision_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_shape_owner_one_way_collision_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_shape_owner_one_way_collision_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_set_one_way_collision_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "shape_owner_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2077425081, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape", - "type": "Shape2D", - "meta": "required" - } - ] - }, - { - "name": "shape_owner_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3106725749, - "return_value": { - "type": "Shape2D" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_get_shape_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_find_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "shape_index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "input_event", - "arguments": [ - { - "name": "viewport", - "type": "Node" - }, - { - "name": "event", - "type": "InputEvent" - }, - { - "name": "shape_idx", - "type": "int" - } - ] - }, - { - "name": "mouse_entered" - }, - { - "name": "mouse_exited" - }, - { - "name": "mouse_shape_entered", - "arguments": [ - { - "name": "shape_idx", - "type": "int" - } - ] - }, - { - "name": "mouse_shape_exited", - "arguments": [ - { - "name": "shape_idx", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "disable_mode", - "setter": "set_disable_mode", - "getter": "get_disable_mode" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "float", - "name": "collision_priority", - "setter": "set_collision_priority", - "getter": "get_collision_priority" - }, - { - "type": "bool", - "name": "input_pickable", - "setter": "set_pickable", - "getter": "is_pickable" - } - ] - }, - { - "name": "CollisionObject3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "DisableMode", - "is_bitfield": false, - "values": [ - { - "name": "DISABLE_MODE_REMOVE", - "value": 0 - }, - { - "name": "DISABLE_MODE_MAKE_STATIC", - "value": 1 - }, - { - "name": "DISABLE_MODE_KEEP_ACTIVE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_input_event", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2310605070, - "arguments": [ - { - "name": "camera", - "type": "Camera3D", - "meta": "required" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "event_position", - "type": "Vector3" - }, - { - "name": "normal", - "type": "Vector3" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_mouse_enter", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_mouse_exit", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_disable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1623620376, - "arguments": [ - { - "name": "mode", - "type": "enum::CollisionObject3D.DisableMode" - } - ] - }, - { - "name": "get_disable_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410164780, - "return_value": { - "type": "enum::CollisionObject3D.DisableMode" - } - }, - { - "name": "set_ray_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ray_pickable", - "type": "bool" - } - ] - }, - { - "name": "is_ray_pickable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_capture_input_on_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_capture_input_on_drag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "create_shape_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3429307534, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "owner", - "type": "Object" - } - ] - }, - { - "name": "remove_shape_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_shape_owners", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "shape_owner_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "shape_owner_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_get_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_shape_owner_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2566676345, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape", - "type": "Shape3D", - "meta": "required" - } - ] - }, - { - "name": "shape_owner_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_owner_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015519174, - "return_value": { - "type": "Shape3D" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_get_shape_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - }, - { - "name": "shape_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shape_owner_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shape_find_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "shape_index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "input_event", - "arguments": [ - { - "name": "camera", - "type": "Node" - }, - { - "name": "event", - "type": "InputEvent" - }, - { - "name": "event_position", - "type": "Vector3" - }, - { - "name": "normal", - "type": "Vector3" - }, - { - "name": "shape_idx", - "type": "int" - } - ] - }, - { - "name": "mouse_entered" - }, - { - "name": "mouse_exited" - } - ], - "properties": [ - { - "type": "int", - "name": "disable_mode", - "setter": "set_disable_mode", - "getter": "get_disable_mode" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "float", - "name": "collision_priority", - "setter": "set_collision_priority", - "getter": "get_collision_priority" - }, - { - "type": "bool", - "name": "input_ray_pickable", - "setter": "set_ray_pickable", - "getter": "is_ray_pickable" - }, - { - "type": "bool", - "name": "input_capture_on_drag", - "setter": "set_capture_input_on_drag", - "getter": "get_capture_input_on_drag" - } - ] - }, - { - "name": "CollisionPolygon2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "BuildMode", - "is_bitfield": false, - "values": [ - { - "name": "BUILD_SOLIDS", - "value": 0 - }, - { - "name": "BUILD_SEGMENTS", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_build_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2780803135, - "arguments": [ - { - "name": "build_mode", - "type": "enum::CollisionPolygon2D.BuildMode" - } - ] - }, - { - "name": "get_build_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3044948800, - "return_value": { - "type": "enum::CollisionPolygon2D.BuildMode" - } - }, - { - "name": "set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_one_way_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_one_way_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_one_way_collision_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_one_way_collision_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_one_way_collision_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "get_one_way_collision_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "int", - "name": "build_mode", - "setter": "set_build_mode", - "getter": "get_build_mode" - }, - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - }, - { - "type": "bool", - "name": "disabled", - "setter": "set_disabled", - "getter": "is_disabled" - }, - { - "type": "bool", - "name": "one_way_collision", - "setter": "set_one_way_collision", - "getter": "is_one_way_collision_enabled" - }, - { - "type": "float", - "name": "one_way_collision_margin", - "setter": "set_one_way_collision_margin", - "getter": "get_one_way_collision_margin" - }, - { - "type": "Vector2", - "name": "one_way_collision_direction", - "setter": "set_one_way_collision_direction", - "getter": "get_one_way_collision_direction" - } - ] - }, - { - "name": "CollisionPolygon3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_enable_debug_fill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_enable_debug_fill", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - }, - { - "type": "bool", - "name": "disabled", - "setter": "set_disabled", - "getter": "is_disabled" - }, - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "Color", - "name": "debug_color", - "setter": "set_debug_color", - "getter": "get_debug_color" - }, - { - "type": "bool", - "name": "debug_fill", - "setter": "set_enable_debug_fill", - "getter": "get_enable_debug_fill" - } - ] - }, - { - "name": "CollisionShape2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 771364740, - "arguments": [ - { - "name": "shape", - "type": "Shape2D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 522005891, - "return_value": { - "type": "Shape2D" - } - }, - { - "name": "set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_one_way_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_one_way_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_one_way_collision_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_one_way_collision_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_one_way_collision_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "get_one_way_collision_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_debug_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "Shape2D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "bool", - "name": "disabled", - "setter": "set_disabled", - "getter": "is_disabled" - }, - { - "type": "bool", - "name": "one_way_collision", - "setter": "set_one_way_collision", - "getter": "is_one_way_collision_enabled" - }, - { - "type": "float", - "name": "one_way_collision_margin", - "setter": "set_one_way_collision_margin", - "getter": "get_one_way_collision_margin" - }, - { - "type": "Vector2", - "name": "one_way_collision_direction", - "setter": "set_one_way_collision_direction", - "getter": "get_one_way_collision_direction" - }, - { - "type": "Color", - "name": "debug_color", - "setter": "set_debug_color", - "getter": "get_debug_color" - } - ] - }, - { - "name": "CollisionShape3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "resource_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549710052, - "arguments": [ - { - "name": "shape", - "type": "Shape3D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3214262478, - "return_value": { - "type": "Shape3D" - } - }, - { - "name": "set_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "make_convex_from_siblings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_debug_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_enable_debug_fill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_enable_debug_fill", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Shape3D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "bool", - "name": "disabled", - "setter": "set_disabled", - "getter": "is_disabled" - }, - { - "type": "Color", - "name": "debug_color", - "setter": "set_debug_color", - "getter": "get_debug_color" - }, - { - "type": "bool", - "name": "debug_fill", - "setter": "set_enable_debug_fill", - "getter": "get_enable_debug_fill" - } - ] - }, - { - "name": "ColorPalette", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "colors", - "type": "PackedColorArray" - } - ] - }, - { - "name": "get_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - } - ], - "properties": [ - { - "type": "PackedColorArray", - "name": "colors", - "setter": "set_colors", - "getter": "get_colors" - } - ] - }, - { - "name": "ColorPicker", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VBoxContainer", - "api_type": "core", - "enums": [ - { - "name": "ColorModeType", - "is_bitfield": false, - "values": [ - { - "name": "MODE_RGB", - "value": 0 - }, - { - "name": "MODE_HSV", - "value": 1 - }, - { - "name": "MODE_RAW", - "value": 2 - }, - { - "name": "MODE_LINEAR", - "value": 2 - }, - { - "name": "MODE_OKHSL", - "value": 3 - } - ] - }, - { - "name": "PickerShapeType", - "is_bitfield": false, - "values": [ - { - "name": "SHAPE_HSV_RECTANGLE", - "value": 0 - }, - { - "name": "SHAPE_HSV_WHEEL", - "value": 1 - }, - { - "name": "SHAPE_VHS_CIRCLE", - "value": 2 - }, - { - "name": "SHAPE_OKHSL_CIRCLE", - "value": 3 - }, - { - "name": "SHAPE_NONE", - "value": 4 - }, - { - "name": "SHAPE_OK_HS_RECTANGLE", - "value": 5 - }, - { - "name": "SHAPE_OK_HL_RECTANGLE", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_pick_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_pick_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_deferred_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mode", - "type": "bool" - } - ] - }, - { - "name": "is_deferred_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_color_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1579114136, - "arguments": [ - { - "name": "color_mode", - "type": "enum::ColorPicker.ColorModeType" - } - ] - }, - { - "name": "get_color_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 392907674, - "return_value": { - "type": "enum::ColorPicker.ColorModeType" - } - }, - { - "name": "set_edit_alpha", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "is_editing_alpha", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_edit_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "is_editing_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_can_add_swatches", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "are_swatches_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_presets_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "are_presets_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modes_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "are_modes_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sampler_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_sampler_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sliders_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "are_sliders_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hex_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_hex_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "erase_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_presets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "add_recent_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "erase_recent_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_recent_presets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_picker_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3981373861, - "arguments": [ - { - "name": "shape", - "type": "enum::ColorPicker.PickerShapeType" - } - ] - }, - { - "name": "get_picker_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1143229889, - "return_value": { - "type": "enum::ColorPicker.PickerShapeType" - } - } - ], - "signals": [ - { - "name": "color_changed", - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "preset_added", - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "preset_removed", - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_pick_color", - "getter": "get_pick_color" - }, - { - "type": "bool", - "name": "edit_alpha", - "setter": "set_edit_alpha", - "getter": "is_editing_alpha" - }, - { - "type": "bool", - "name": "edit_intensity", - "setter": "set_edit_intensity", - "getter": "is_editing_intensity" - }, - { - "type": "int", - "name": "color_mode", - "setter": "set_color_mode", - "getter": "get_color_mode" - }, - { - "type": "bool", - "name": "deferred_mode", - "setter": "set_deferred_mode", - "getter": "is_deferred_mode" - }, - { - "type": "int", - "name": "picker_shape", - "setter": "set_picker_shape", - "getter": "get_picker_shape" - }, - { - "type": "bool", - "name": "can_add_swatches", - "setter": "set_can_add_swatches", - "getter": "are_swatches_enabled" - }, - { - "type": "bool", - "name": "sampler_visible", - "setter": "set_sampler_visible", - "getter": "is_sampler_visible" - }, - { - "type": "bool", - "name": "color_modes_visible", - "setter": "set_modes_visible", - "getter": "are_modes_visible" - }, - { - "type": "bool", - "name": "sliders_visible", - "setter": "set_sliders_visible", - "getter": "are_sliders_visible" - }, - { - "type": "bool", - "name": "hex_visible", - "setter": "set_hex_visible", - "getter": "is_hex_visible" - }, - { - "type": "bool", - "name": "presets_visible", - "setter": "set_presets_visible", - "getter": "are_presets_visible" - } - ] - }, - { - "name": "ColorPickerButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Button", - "api_type": "core", - "methods": [ - { - "name": "set_pick_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_pick_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "get_picker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 331835996, - "return_value": { - "type": "ColorPicker" - } - }, - { - "name": "get_popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1322440207, - "return_value": { - "type": "PopupPanel" - } - }, - { - "name": "set_edit_alpha", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "is_editing_alpha", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_edit_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "is_editing_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "color_changed", - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "popup_closed" - }, - { - "name": "picker_created" - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_pick_color", - "getter": "get_pick_color" - }, - { - "type": "bool", - "name": "edit_alpha", - "setter": "set_edit_alpha", - "getter": "is_editing_alpha" - }, - { - "type": "bool", - "name": "edit_intensity", - "setter": "set_edit_intensity", - "getter": "is_editing_intensity" - } - ] - }, - { - "name": "ColorRect", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - } - ] - }, - { - "name": "Compositor", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_compositor_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "compositor_effects", - "type": "typedarray::CompositorEffect" - } - ] - }, - { - "name": "get_compositor_effects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::CompositorEffect" - } - } - ], - "properties": [ - { - "type": "typedarray::24/17:CompositorEffect", - "name": "compositor_effects", - "setter": "set_compositor_effects", - "getter": "get_compositor_effects" - } - ] - }, - { - "name": "CompositorEffect", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "EffectCallbackType", - "is_bitfield": false, - "values": [ - { - "name": "EFFECT_CALLBACK_TYPE_PRE_OPAQUE", - "value": 0 - }, - { - "name": "EFFECT_CALLBACK_TYPE_POST_OPAQUE", - "value": 1 - }, - { - "name": "EFFECT_CALLBACK_TYPE_POST_SKY", - "value": 2 - }, - { - "name": "EFFECT_CALLBACK_TYPE_PRE_TRANSPARENT", - "value": 3 - }, - { - "name": "EFFECT_CALLBACK_TYPE_POST_TRANSPARENT", - "value": 4 - }, - { - "name": "EFFECT_CALLBACK_TYPE_MAX", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "_render_callback", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2153422729, - "arguments": [ - { - "name": "effect_callback_type", - "type": "int", - "meta": "int32" - }, - { - "name": "render_data", - "type": "RenderData" - } - ] - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_effect_callback_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1390728419, - "arguments": [ - { - "name": "effect_callback_type", - "type": "enum::CompositorEffect.EffectCallbackType" - } - ] - }, - { - "name": "get_effect_callback_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1221912590, - "return_value": { - "type": "enum::CompositorEffect.EffectCallbackType" - } - }, - { - "name": "set_access_resolved_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_access_resolved_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_access_resolved_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_access_resolved_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_needs_motion_vectors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_needs_motion_vectors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_needs_normal_roughness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_needs_normal_roughness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_needs_separate_specular", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_needs_separate_specular", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "get_enabled" - }, - { - "type": "int", - "name": "effect_callback_type", - "setter": "set_effect_callback_type", - "getter": "get_effect_callback_type" - }, - { - "type": "bool", - "name": "access_resolved_color", - "setter": "set_access_resolved_color", - "getter": "get_access_resolved_color" - }, - { - "type": "bool", - "name": "access_resolved_depth", - "setter": "set_access_resolved_depth", - "getter": "get_access_resolved_depth" - }, - { - "type": "bool", - "name": "needs_motion_vectors", - "setter": "set_needs_motion_vectors", - "getter": "get_needs_motion_vectors" - }, - { - "type": "bool", - "name": "needs_normal_roughness", - "setter": "set_needs_normal_roughness", - "getter": "get_needs_normal_roughness" - }, - { - "type": "bool", - "name": "needs_separate_specular", - "setter": "set_needs_separate_specular", - "getter": "get_needs_separate_specular" - } - ] - }, - { - "name": "CompressedCubemap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "CompressedTextureLayered", - "api_type": "core" - }, - { - "name": "CompressedCubemapArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "CompressedTextureLayered", - "api_type": "core" - }, - { - "name": "CompressedTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_load_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "load_path", - "setter": "load", - "getter": "get_load_path" - } - ] - }, - { - "name": "CompressedTexture2DArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "CompressedTextureLayered", - "api_type": "core" - }, - { - "name": "CompressedTexture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture3D", - "api_type": "core", - "methods": [ - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_load_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "load_path", - "setter": "load", - "getter": "get_load_path" - } - ] - }, - { - "name": "CompressedTextureLayered", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "TextureLayered", - "api_type": "core", - "methods": [ - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_load_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "load_path", - "setter": "load", - "getter": "get_load_path" - } - ] - }, - { - "name": "ConcavePolygonShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "segments", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "segments", - "setter": "set_segments", - "getter": "get_segments" - } - ] - }, - { - "name": "ConcavePolygonShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "faces", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "set_backface_collision_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_backface_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "PackedVector3Array", - "name": "data", - "setter": "set_faces", - "getter": "get_faces" - }, - { - "type": "bool", - "name": "backface_collision", - "setter": "set_backface_collision_enabled", - "getter": "is_backface_collision_enabled" - } - ] - }, - { - "name": "ConeTwistJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_SWING_SPAN", - "value": 0 - }, - { - "name": "PARAM_TWIST_SPAN", - "value": 1 - }, - { - "name": "PARAM_BIAS", - "value": 2 - }, - { - "name": "PARAM_SOFTNESS", - "value": 3 - }, - { - "name": "PARAM_RELAXATION", - "value": 4 - }, - { - "name": "PARAM_MAX", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1062470226, - "arguments": [ - { - "name": "param", - "type": "enum::ConeTwistJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2928790850, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::ConeTwistJoint3D.Param" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "swing_span", - "setter": "set_param", - "getter": "get_param", - "index": 0 - }, - { - "type": "float", - "name": "twist_span", - "setter": "set_param", - "getter": "get_param", - "index": 1 - }, - { - "type": "float", - "name": "bias", - "setter": "set_param", - "getter": "get_param", - "index": 2 - }, - { - "type": "float", - "name": "softness", - "setter": "set_param", - "getter": "get_param", - "index": 3 - }, - { - "type": "float", - "name": "relaxation", - "setter": "set_param", - "getter": "get_param", - "index": 4 - } - ] - }, - { - "name": "ConfigFile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2504492430, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 89809366, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - }, - { - "name": "default", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "has_section", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "section", - "type": "String" - } - ] - }, - { - "name": "has_section_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 820780508, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - } - ] - }, - { - "name": "get_sections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_section_keys", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "section", - "type": "String" - } - ] - }, - { - "name": "erase_section", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "section", - "type": "String" - } - ] - }, - { - "name": "erase_section_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - } - ] - }, - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "parse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "String" - } - ] - }, - { - "name": "save", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "encode_to_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "load_encrypted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 887037711, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "key", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_encrypted_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "password", - "type": "String" - } - ] - }, - { - "name": "save_encrypted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 887037711, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "key", - "type": "PackedByteArray" - } - ] - }, - { - "name": "save_encrypted_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "password", - "type": "String" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "ConfirmationDialog", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "AcceptDialog", - "api_type": "core", - "methods": [ - { - "name": "get_cancel_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1856205918, - "return_value": { - "type": "Button" - } - }, - { - "name": "set_cancel_button_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_cancel_button_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "cancel_button_text", - "setter": "set_cancel_button_text", - "getter": "get_cancel_button_text" - } - ] - }, - { - "name": "Container", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_PRE_SORT_CHILDREN", - "value": 50 - }, - { - "name": "NOTIFICATION_SORT_CHILDREN", - "value": 51 - } - ], - "methods": [ - { - "name": "_get_allowed_size_flags_horizontal", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "_get_allowed_size_flags_vertical", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "queue_sort", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "fit_child_in_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1993438598, - "arguments": [ - { - "name": "child", - "type": "Control", - "meta": "required" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "set_accessibility_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "region", - "type": "bool" - } - ] - }, - { - "name": "is_accessibility_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "pre_sort_children" - }, - { - "name": "sort_children" - } - ], - "properties": [ - { - "type": "bool", - "name": "accessibility_region", - "setter": "set_accessibility_region", - "getter": "is_accessibility_region" - } - ] - }, - { - "name": "Control", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CanvasItem", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_RESIZED", - "value": 40 - }, - { - "name": "NOTIFICATION_MOUSE_ENTER", - "value": 41 - }, - { - "name": "NOTIFICATION_MOUSE_EXIT", - "value": 42 - }, - { - "name": "NOTIFICATION_MOUSE_ENTER_SELF", - "value": 60 - }, - { - "name": "NOTIFICATION_MOUSE_EXIT_SELF", - "value": 61 - }, - { - "name": "NOTIFICATION_FOCUS_ENTER", - "value": 43 - }, - { - "name": "NOTIFICATION_FOCUS_EXIT", - "value": 44 - }, - { - "name": "NOTIFICATION_THEME_CHANGED", - "value": 45 - }, - { - "name": "NOTIFICATION_SCROLL_BEGIN", - "value": 47 - }, - { - "name": "NOTIFICATION_SCROLL_END", - "value": 48 - }, - { - "name": "NOTIFICATION_LAYOUT_DIRECTION_CHANGED", - "value": 49 - } - ], - "enums": [ - { - "name": "FocusMode", - "is_bitfield": false, - "values": [ - { - "name": "FOCUS_NONE", - "value": 0 - }, - { - "name": "FOCUS_CLICK", - "value": 1 - }, - { - "name": "FOCUS_ALL", - "value": 2 - }, - { - "name": "FOCUS_ACCESSIBILITY", - "value": 3 - } - ] - }, - { - "name": "FocusBehaviorRecursive", - "is_bitfield": false, - "values": [ - { - "name": "FOCUS_BEHAVIOR_INHERITED", - "value": 0 - }, - { - "name": "FOCUS_BEHAVIOR_DISABLED", - "value": 1 - }, - { - "name": "FOCUS_BEHAVIOR_ENABLED", - "value": 2 - } - ] - }, - { - "name": "MouseBehaviorRecursive", - "is_bitfield": false, - "values": [ - { - "name": "MOUSE_BEHAVIOR_INHERITED", - "value": 0 - }, - { - "name": "MOUSE_BEHAVIOR_DISABLED", - "value": 1 - }, - { - "name": "MOUSE_BEHAVIOR_ENABLED", - "value": 2 - } - ] - }, - { - "name": "CursorShape", - "is_bitfield": false, - "values": [ - { - "name": "CURSOR_ARROW", - "value": 0 - }, - { - "name": "CURSOR_IBEAM", - "value": 1 - }, - { - "name": "CURSOR_POINTING_HAND", - "value": 2 - }, - { - "name": "CURSOR_CROSS", - "value": 3 - }, - { - "name": "CURSOR_WAIT", - "value": 4 - }, - { - "name": "CURSOR_BUSY", - "value": 5 - }, - { - "name": "CURSOR_DRAG", - "value": 6 - }, - { - "name": "CURSOR_CAN_DROP", - "value": 7 - }, - { - "name": "CURSOR_FORBIDDEN", - "value": 8 - }, - { - "name": "CURSOR_VSIZE", - "value": 9 - }, - { - "name": "CURSOR_HSIZE", - "value": 10 - }, - { - "name": "CURSOR_BDIAGSIZE", - "value": 11 - }, - { - "name": "CURSOR_FDIAGSIZE", - "value": 12 - }, - { - "name": "CURSOR_MOVE", - "value": 13 - }, - { - "name": "CURSOR_VSPLIT", - "value": 14 - }, - { - "name": "CURSOR_HSPLIT", - "value": 15 - }, - { - "name": "CURSOR_HELP", - "value": 16 - } - ] - }, - { - "name": "LayoutPreset", - "is_bitfield": false, - "values": [ - { - "name": "PRESET_TOP_LEFT", - "value": 0 - }, - { - "name": "PRESET_TOP_RIGHT", - "value": 1 - }, - { - "name": "PRESET_BOTTOM_LEFT", - "value": 2 - }, - { - "name": "PRESET_BOTTOM_RIGHT", - "value": 3 - }, - { - "name": "PRESET_CENTER_LEFT", - "value": 4 - }, - { - "name": "PRESET_CENTER_TOP", - "value": 5 - }, - { - "name": "PRESET_CENTER_RIGHT", - "value": 6 - }, - { - "name": "PRESET_CENTER_BOTTOM", - "value": 7 - }, - { - "name": "PRESET_CENTER", - "value": 8 - }, - { - "name": "PRESET_LEFT_WIDE", - "value": 9 - }, - { - "name": "PRESET_TOP_WIDE", - "value": 10 - }, - { - "name": "PRESET_RIGHT_WIDE", - "value": 11 - }, - { - "name": "PRESET_BOTTOM_WIDE", - "value": 12 - }, - { - "name": "PRESET_VCENTER_WIDE", - "value": 13 - }, - { - "name": "PRESET_HCENTER_WIDE", - "value": 14 - }, - { - "name": "PRESET_FULL_RECT", - "value": 15 - } - ] - }, - { - "name": "LayoutPresetMode", - "is_bitfield": false, - "values": [ - { - "name": "PRESET_MODE_MINSIZE", - "value": 0 - }, - { - "name": "PRESET_MODE_KEEP_WIDTH", - "value": 1 - }, - { - "name": "PRESET_MODE_KEEP_HEIGHT", - "value": 2 - }, - { - "name": "PRESET_MODE_KEEP_SIZE", - "value": 3 - } - ] - }, - { - "name": "SizeFlags", - "is_bitfield": true, - "values": [ - { - "name": "SIZE_SHRINK_BEGIN", - "value": 0 - }, - { - "name": "SIZE_FILL", - "value": 1 - }, - { - "name": "SIZE_EXPAND", - "value": 2 - }, - { - "name": "SIZE_EXPAND_FILL", - "value": 3 - }, - { - "name": "SIZE_SHRINK_CENTER", - "value": 4 - }, - { - "name": "SIZE_SHRINK_END", - "value": 8 - } - ] - }, - { - "name": "MouseFilter", - "is_bitfield": false, - "values": [ - { - "name": "MOUSE_FILTER_STOP", - "value": 0 - }, - { - "name": "MOUSE_FILTER_PASS", - "value": 1 - }, - { - "name": "MOUSE_FILTER_IGNORE", - "value": 2 - } - ] - }, - { - "name": "GrowDirection", - "is_bitfield": false, - "values": [ - { - "name": "GROW_DIRECTION_BEGIN", - "value": 0 - }, - { - "name": "GROW_DIRECTION_END", - "value": 1 - }, - { - "name": "GROW_DIRECTION_BOTH", - "value": 2 - } - ] - }, - { - "name": "Anchor", - "is_bitfield": false, - "values": [ - { - "name": "ANCHOR_BEGIN", - "value": 0 - }, - { - "name": "ANCHOR_END", - "value": 1 - } - ] - }, - { - "name": "LayoutDirection", - "is_bitfield": false, - "values": [ - { - "name": "LAYOUT_DIRECTION_INHERITED", - "value": 0 - }, - { - "name": "LAYOUT_DIRECTION_APPLICATION_LOCALE", - "value": 1 - }, - { - "name": "LAYOUT_DIRECTION_LTR", - "value": 2 - }, - { - "name": "LAYOUT_DIRECTION_RTL", - "value": 3 - }, - { - "name": "LAYOUT_DIRECTION_SYSTEM_LOCALE", - "value": 4 - }, - { - "name": "LAYOUT_DIRECTION_MAX", - "value": 5 - }, - { - "name": "LAYOUT_DIRECTION_LOCALE", - "value": 1 - } - ] - }, - { - "name": "TextDirection", - "is_bitfield": false, - "values": [ - { - "name": "TEXT_DIRECTION_INHERITED", - "value": 3 - }, - { - "name": "TEXT_DIRECTION_AUTO", - "value": 0 - }, - { - "name": "TEXT_DIRECTION_LTR", - "value": 1 - }, - { - "name": "TEXT_DIRECTION_RTL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_has_point", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 556197845, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "_structured_text_parser", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1292548940, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "args", - "type": "Array" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "_get_maximum_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_minimum_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_tooltip", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3674420000, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - } - ] - }, - { - "name": "_get_tooltip_auto_translate_mode_at", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3257223865, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - } - ] - }, - { - "name": "_get_drag_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2233896889, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - } - ] - }, - { - "name": "_can_drop_data", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2603004011, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "_drop_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3699746064, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "_make_custom_tooltip", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1976279298, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "for_text", - "type": "String" - } - ] - }, - { - "name": "_get_cursor_shape", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - } - ] - }, - { - "name": "_accessibility_get_contextual_info", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_accessibility_container_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2174079723, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "_gui_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "accept_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_maximum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_combined_maximum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_combined_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_propagate_maximum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_propagating_maximum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_bound_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_anchors_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 509135270, - "arguments": [ - { - "name": "preset", - "type": "enum::Control.LayoutPreset" - }, - { - "name": "keep_offsets", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_offsets_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3724524307, - "hash_compatibility": [ - 3651818904 - ], - "arguments": [ - { - "name": "preset", - "type": "enum::Control.LayoutPreset" - }, - { - "name": "resize_mode", - "type": "enum::Control.LayoutPresetMode", - "default_value": "0" - }, - { - "name": "margin", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_anchors_and_offsets_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3724524307, - "hash_compatibility": [ - 3651818904 - ], - "arguments": [ - { - "name": "preset", - "type": "enum::Control.LayoutPreset" - }, - { - "name": "resize_mode", - "type": "enum::Control.LayoutPresetMode", - "default_value": "0" - }, - { - "name": "margin", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_anchor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2302782885, - "hash_compatibility": [ - 2589937826 - ], - "arguments": [ - { - "name": "side", - "type": "enum::Side" - }, - { - "name": "anchor", - "type": "float", - "meta": "float" - }, - { - "name": "keep_offset", - "type": "bool", - "default_value": "false" - }, - { - "name": "push_opposite_anchor", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_anchor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - } - ] - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "offset", - "type": "enum::Side" - } - ] - }, - { - "name": "set_anchor_and_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4031722181, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - }, - { - "name": "anchor", - "type": "float", - "meta": "float" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - }, - { - "name": "push_opposite_anchor", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "set_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2436320129, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "keep_offsets", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2436320129, - "arguments": [ - { - "name": "size", - "type": "Vector2" - }, - { - "name": "keep_offsets", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "reset_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_custom_maximum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "set_custom_minimum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "set_global_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2436320129, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "keep_offsets", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_rotation_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "set_pivot_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "pivot_offset", - "type": "Vector2" - } - ] - }, - { - "name": "set_pivot_offset_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "ratio", - "type": "Vector2" - } - ] - }, - { - "name": "get_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_rotation_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_pivot_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_pivot_offset_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_combined_pivot_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_custom_maximum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_custom_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_parent_area_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_global_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_screen_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "get_global_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_focus_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3232914922, - "arguments": [ - { - "name": "mode", - "type": "enum::Control.FocusMode" - } - ] - }, - { - "name": "get_focus_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2132829277, - "return_value": { - "type": "enum::Control.FocusMode" - } - }, - { - "name": "get_focus_mode_with_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2132829277, - "return_value": { - "type": "enum::Control.FocusMode" - } - }, - { - "name": "set_focus_behavior_recursive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4256832521, - "arguments": [ - { - "name": "focus_behavior_recursive", - "type": "enum::Control.FocusBehaviorRecursive" - } - ] - }, - { - "name": "get_focus_behavior_recursive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2435707181, - "return_value": { - "type": "enum::Control.FocusBehaviorRecursive" - } - }, - { - "name": "has_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3302206351, - "hash_compatibility": [ - 36873697 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "ignore_hidden_focus", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "grab_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "hide_focus", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "release_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "find_prev_valid_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "find_next_valid_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "find_valid_focus_neighbor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1543910170, - "return_value": { - "type": "Control" - }, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - } - ] - }, - { - "name": "set_h_size_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 394851643, - "arguments": [ - { - "name": "flags", - "type": "bitfield::Control.SizeFlags" - } - ] - }, - { - "name": "get_h_size_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3781367401, - "return_value": { - "type": "bitfield::Control.SizeFlags" - } - }, - { - "name": "set_stretch_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stretch_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_v_size_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 394851643, - "arguments": [ - { - "name": "flags", - "type": "bitfield::Control.SizeFlags" - } - ] - }, - { - "name": "get_v_size_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3781367401, - "return_value": { - "type": "bitfield::Control.SizeFlags" - } - }, - { - "name": "set_offset_transform_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_offset_transform_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_offset_transform_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset_transform_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset_transform_position_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset_transform_position_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset_transform_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset_transform_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset_transform_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rotation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_offset_transform_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_offset_transform_pivot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "pivot", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset_transform_pivot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset_transform_pivot_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "pivot", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset_transform_pivot_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_offset_transform_visual_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_offset_transform_visual_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_theme", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2326690814, - "arguments": [ - { - "name": "theme", - "type": "Theme" - } - ] - }, - { - "name": "get_theme", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3846893731, - "return_value": { - "type": "Theme" - } - }, - { - "name": "set_theme_type_variation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_theme_type_variation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "begin_bulk_theme_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "end_bulk_theme_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_theme_icon_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1373065600, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "texture", - "type": "Texture2D", - "meta": "required" - } - ] - }, - { - "name": "add_theme_stylebox_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4188838905, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "stylebox", - "type": "StyleBox", - "meta": "required" - } - ] - }, - { - "name": "add_theme_font_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3518018674, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "font", - "type": "Font", - "meta": "required" - } - ] - }, - { - "name": "add_theme_font_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_theme_color_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4260178595, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "add_theme_constant_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "constant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_theme_icon_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_stylebox_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_font_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_font_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_color_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_constant_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_theme_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3163973443, - "hash_compatibility": [ - 2336455395 - ], - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 604739069, - "hash_compatibility": [ - 2759935355 - ], - "return_value": { - "type": "StyleBox" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2826986490, - "hash_compatibility": [ - 387378635 - ], - "return_value": { - "type": "Font" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1327056374, - "hash_compatibility": [ - 229578101 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798751242, - "hash_compatibility": [ - 2377051548 - ], - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1327056374, - "hash_compatibility": [ - 229578101 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_icon_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_stylebox_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_font_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_font_size_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_color_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_constant_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_default_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_theme_default_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "get_theme_default_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_parent_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "set_h_grow_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2022385301, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.GrowDirection" - } - ] - }, - { - "name": "get_h_grow_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635610155, - "return_value": { - "type": "enum::Control.GrowDirection" - } - }, - { - "name": "set_v_grow_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2022385301, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.GrowDirection" - } - ] - }, - { - "name": "get_v_grow_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635610155, - "return_value": { - "type": "enum::Control.GrowDirection" - } - }, - { - "name": "set_tooltip_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 776149714, - "arguments": [ - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "get_tooltip_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2498906432, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - } - }, - { - "name": "set_tooltip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "hint", - "type": "String" - } - ] - }, - { - "name": "get_tooltip_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2895288280, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "set_translation_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "context", - "type": "StringName" - } - ] - }, - { - "name": "get_translation_context", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_default_cursor_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 217062046, - "arguments": [ - { - "name": "shape", - "type": "enum::Control.CursorShape" - } - ] - }, - { - "name": "get_default_cursor_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2359535750, - "return_value": { - "type": "enum::Control.CursorShape" - } - }, - { - "name": "get_cursor_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1395773853, - "return_value": { - "type": "enum::Control.CursorShape" - }, - "arguments": [ - { - "name": "at_position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "set_focus_neighbor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2024461774, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - }, - { - "name": "neighbor", - "type": "NodePath" - } - ] - }, - { - "name": "get_focus_neighbor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757935761, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "side", - "type": "enum::Side" - } - ] - }, - { - "name": "set_focus_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "next", - "type": "NodePath" - } - ] - }, - { - "name": "get_focus_next", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_focus_previous", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "previous", - "type": "NodePath" - } - ] - }, - { - "name": "get_focus_previous", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "force_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3191844692, - "arguments": [ - { - "name": "data", - "type": "Variant" - }, - { - "name": "preview", - "type": "Control" - } - ] - }, - { - "name": "accessibility_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "accessibility_drop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_accessibility_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_accessibility_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_accessibility_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "get_accessibility_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_accessibility_live", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 353443434, - "hash_compatibility": [ - 1720261470 - ], - "arguments": [ - { - "name": "mode", - "type": "enum::AccessibilityServer.AccessibilityLiveMode" - } - ] - }, - { - "name": "get_accessibility_live", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2858591811, - "hash_compatibility": [ - 3311037003 - ], - "return_value": { - "type": "enum::AccessibilityServer.AccessibilityLiveMode" - } - }, - { - "name": "set_accessibility_controls_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "node_path", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "get_accessibility_controls_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "set_accessibility_described_by_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "node_path", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "get_accessibility_described_by_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "set_accessibility_labeled_by_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "node_path", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "get_accessibility_labeled_by_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "set_accessibility_flow_to_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "node_path", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "get_accessibility_flow_to_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "set_mouse_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3891156122, - "arguments": [ - { - "name": "filter", - "type": "enum::Control.MouseFilter" - } - ] - }, - { - "name": "get_mouse_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1572545674, - "return_value": { - "type": "enum::Control.MouseFilter" - } - }, - { - "name": "get_mouse_filter_with_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1572545674, - "return_value": { - "type": "enum::Control.MouseFilter" - } - }, - { - "name": "set_mouse_behavior_recursive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 849284636, - "arguments": [ - { - "name": "mouse_behavior_recursive", - "type": "enum::Control.MouseBehaviorRecursive" - } - ] - }, - { - "name": "get_mouse_behavior_recursive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779367402, - "return_value": { - "type": "enum::Control.MouseBehaviorRecursive" - } - }, - { - "name": "set_force_pass_scroll_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force_pass_scroll_events", - "type": "bool" - } - ] - }, - { - "name": "is_force_pass_scroll_events", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_clip_contents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_clipping_contents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "grab_click_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_drag_forwarding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1076571380, - "arguments": [ - { - "name": "drag_func", - "type": "Callable" - }, - { - "name": "can_drop_func", - "type": "Callable" - }, - { - "name": "drop_func", - "type": "Callable" - } - ] - }, - { - "name": "set_drag_preview", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "is_drag_successful", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "warp_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "set_shortcut_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "get_shortcut_context", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "update_maximum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "update_minimum_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_layout_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3310692370, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.LayoutDirection" - } - ] - }, - { - "name": "get_layout_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1546772008, - "return_value": { - "type": "enum::Control.LayoutDirection" - } - }, - { - "name": "is_layout_rtl", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_auto_translating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_localize_numeral_system", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_localizing_numeral_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "resized" - }, - { - "name": "gui_input", - "arguments": [ - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "mouse_entered" - }, - { - "name": "mouse_exited" - }, - { - "name": "focus_entered" - }, - { - "name": "focus_exited" - }, - { - "name": "size_flags_changed" - }, - { - "name": "maximum_size_changed" - }, - { - "name": "minimum_size_changed" - }, - { - "name": "theme_changed" - } - ], - "properties": [ - { - "type": "Vector2", - "name": "custom_minimum_size", - "setter": "set_custom_minimum_size", - "getter": "get_custom_minimum_size" - }, - { - "type": "Vector2", - "name": "custom_maximum_size", - "setter": "set_custom_maximum_size", - "getter": "get_custom_maximum_size" - }, - { - "type": "bool", - "name": "propagate_maximum_size", - "setter": "set_propagate_maximum_size", - "getter": "is_propagating_maximum_size" - }, - { - "type": "bool", - "name": "clip_contents", - "setter": "set_clip_contents", - "getter": "is_clipping_contents" - }, - { - "type": "int", - "name": "layout_mode", - "setter": "_set_layout_mode", - "getter": "_get_layout_mode" - }, - { - "type": "int", - "name": "anchors_preset", - "setter": "_set_anchors_layout_preset", - "getter": "_get_anchors_layout_preset" - }, - { - "type": "float", - "name": "anchor_left", - "setter": "_set_anchor", - "getter": "get_anchor", - "index": 0 - }, - { - "type": "float", - "name": "anchor_top", - "setter": "_set_anchor", - "getter": "get_anchor", - "index": 1 - }, - { - "type": "float", - "name": "anchor_right", - "setter": "_set_anchor", - "getter": "get_anchor", - "index": 2 - }, - { - "type": "float", - "name": "anchor_bottom", - "setter": "_set_anchor", - "getter": "get_anchor", - "index": 3 - }, - { - "type": "float", - "name": "offset_left", - "setter": "set_offset", - "getter": "get_offset", - "index": 0 - }, - { - "type": "float", - "name": "offset_top", - "setter": "set_offset", - "getter": "get_offset", - "index": 1 - }, - { - "type": "float", - "name": "offset_right", - "setter": "set_offset", - "getter": "get_offset", - "index": 2 - }, - { - "type": "float", - "name": "offset_bottom", - "setter": "set_offset", - "getter": "get_offset", - "index": 3 - }, - { - "type": "int", - "name": "grow_horizontal", - "setter": "set_h_grow_direction", - "getter": "get_h_grow_direction" - }, - { - "type": "int", - "name": "grow_vertical", - "setter": "set_v_grow_direction", - "getter": "get_v_grow_direction" - }, - { - "type": "Vector2", - "name": "size", - "setter": "_set_size", - "getter": "get_size" - }, - { - "type": "Vector2", - "name": "position", - "setter": "_set_position", - "getter": "get_position" - }, - { - "type": "Vector2", - "name": "global_position", - "setter": "_set_global_position", - "getter": "get_global_position" - }, - { - "type": "float", - "name": "rotation", - "setter": "set_rotation", - "getter": "get_rotation" - }, - { - "type": "float", - "name": "rotation_degrees", - "setter": "set_rotation_degrees", - "getter": "get_rotation_degrees" - }, - { - "type": "Vector2", - "name": "scale", - "setter": "set_scale", - "getter": "get_scale" - }, - { - "type": "Vector2", - "name": "pivot_offset", - "setter": "set_pivot_offset", - "getter": "get_pivot_offset" - }, - { - "type": "Vector2", - "name": "pivot_offset_ratio", - "setter": "set_pivot_offset_ratio", - "getter": "get_pivot_offset_ratio" - }, - { - "type": "int", - "name": "size_flags_horizontal", - "setter": "set_h_size_flags", - "getter": "get_h_size_flags" - }, - { - "type": "int", - "name": "size_flags_vertical", - "setter": "set_v_size_flags", - "getter": "get_v_size_flags" - }, - { - "type": "float", - "name": "size_flags_stretch_ratio", - "setter": "set_stretch_ratio", - "getter": "get_stretch_ratio" - }, - { - "type": "bool", - "name": "offset_transform_enabled", - "setter": "set_offset_transform_enabled", - "getter": "is_offset_transform_enabled" - }, - { - "type": "Vector2", - "name": "offset_transform_position", - "setter": "set_offset_transform_position", - "getter": "get_offset_transform_position" - }, - { - "type": "Vector2", - "name": "offset_transform_position_ratio", - "setter": "set_offset_transform_position_ratio", - "getter": "get_offset_transform_position_ratio" - }, - { - "type": "Vector2", - "name": "offset_transform_scale", - "setter": "set_offset_transform_scale", - "getter": "get_offset_transform_scale" - }, - { - "type": "float", - "name": "offset_transform_rotation", - "setter": "set_offset_transform_rotation", - "getter": "get_offset_transform_rotation" - }, - { - "type": "Vector2", - "name": "offset_transform_pivot", - "setter": "set_offset_transform_pivot", - "getter": "get_offset_transform_pivot" - }, - { - "type": "Vector2", - "name": "offset_transform_pivot_ratio", - "setter": "set_offset_transform_pivot_ratio", - "getter": "get_offset_transform_pivot_ratio" - }, - { - "type": "bool", - "name": "offset_transform_visual_only", - "setter": "set_offset_transform_visual_only", - "getter": "is_offset_transform_visual_only" - }, - { - "type": "bool", - "name": "localize_numeral_system", - "setter": "set_localize_numeral_system", - "getter": "is_localizing_numeral_system" - }, - { - "type": "int", - "name": "layout_direction", - "setter": "set_layout_direction", - "getter": "get_layout_direction" - }, - { - "type": "StringName", - "name": "translation_context", - "setter": "set_translation_context", - "getter": "get_translation_context" - }, - { - "type": "bool", - "name": "auto_translate", - "setter": "set_auto_translate", - "getter": "is_auto_translating" - }, - { - "type": "String", - "name": "tooltip_text", - "setter": "set_tooltip_text", - "getter": "get_tooltip_text" - }, - { - "type": "int", - "name": "tooltip_auto_translate_mode", - "setter": "set_tooltip_auto_translate_mode", - "getter": "get_tooltip_auto_translate_mode" - }, - { - "type": "NodePath", - "name": "focus_neighbor_left", - "setter": "set_focus_neighbor", - "getter": "get_focus_neighbor", - "index": 0 - }, - { - "type": "NodePath", - "name": "focus_neighbor_top", - "setter": "set_focus_neighbor", - "getter": "get_focus_neighbor", - "index": 1 - }, - { - "type": "NodePath", - "name": "focus_neighbor_right", - "setter": "set_focus_neighbor", - "getter": "get_focus_neighbor", - "index": 2 - }, - { - "type": "NodePath", - "name": "focus_neighbor_bottom", - "setter": "set_focus_neighbor", - "getter": "get_focus_neighbor", - "index": 3 - }, - { - "type": "NodePath", - "name": "focus_next", - "setter": "set_focus_next", - "getter": "get_focus_next" - }, - { - "type": "NodePath", - "name": "focus_previous", - "setter": "set_focus_previous", - "getter": "get_focus_previous" - }, - { - "type": "int", - "name": "focus_mode", - "setter": "set_focus_mode", - "getter": "get_focus_mode" - }, - { - "type": "int", - "name": "focus_behavior_recursive", - "setter": "set_focus_behavior_recursive", - "getter": "get_focus_behavior_recursive" - }, - { - "type": "int", - "name": "mouse_filter", - "setter": "set_mouse_filter", - "getter": "get_mouse_filter" - }, - { - "type": "int", - "name": "mouse_behavior_recursive", - "setter": "set_mouse_behavior_recursive", - "getter": "get_mouse_behavior_recursive" - }, - { - "type": "bool", - "name": "mouse_force_pass_scroll_events", - "setter": "set_force_pass_scroll_events", - "getter": "is_force_pass_scroll_events" - }, - { - "type": "int", - "name": "mouse_default_cursor_shape", - "setter": "set_default_cursor_shape", - "getter": "get_default_cursor_shape" - }, - { - "type": "Object", - "name": "shortcut_context", - "setter": "set_shortcut_context", - "getter": "get_shortcut_context" - }, - { - "type": "String", - "name": "accessibility_name", - "setter": "set_accessibility_name", - "getter": "get_accessibility_name" - }, - { - "type": "String", - "name": "accessibility_description", - "setter": "set_accessibility_description", - "getter": "get_accessibility_description" - }, - { - "type": "int", - "name": "accessibility_live", - "setter": "set_accessibility_live", - "getter": "get_accessibility_live" - }, - { - "type": "typedarray::NodePath", - "name": "accessibility_controls_nodes", - "setter": "set_accessibility_controls_nodes", - "getter": "get_accessibility_controls_nodes" - }, - { - "type": "typedarray::NodePath", - "name": "accessibility_described_by_nodes", - "setter": "set_accessibility_described_by_nodes", - "getter": "get_accessibility_described_by_nodes" - }, - { - "type": "typedarray::NodePath", - "name": "accessibility_labeled_by_nodes", - "setter": "set_accessibility_labeled_by_nodes", - "getter": "get_accessibility_labeled_by_nodes" - }, - { - "type": "typedarray::NodePath", - "name": "accessibility_flow_to_nodes", - "setter": "set_accessibility_flow_to_nodes", - "getter": "get_accessibility_flow_to_nodes" - }, - { - "type": "Theme", - "name": "theme", - "setter": "set_theme", - "getter": "get_theme" - }, - { - "type": "String", - "name": "theme_type_variation", - "setter": "set_theme_type_variation", - "getter": "get_theme_type_variation" - } - ] - }, - { - "name": "ConvertTransformModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BoneConstraint3D", - "api_type": "core", - "enums": [ - { - "name": "TransformMode", - "is_bitfield": false, - "values": [ - { - "name": "TRANSFORM_MODE_POSITION", - "value": 0 - }, - { - "name": "TRANSFORM_MODE_ROTATION", - "value": 1 - }, - { - "name": "TRANSFORM_MODE_SCALE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_apply_transform_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1386463405, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "transform_mode", - "type": "enum::ConvertTransformModifier3D.TransformMode" - } - ] - }, - { - "name": "get_apply_transform_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3234663511, - "return_value": { - "type": "enum::ConvertTransformModifier3D.TransformMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_apply_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 776736805, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - } - ] - }, - { - "name": "get_apply_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4131134770, - "return_value": { - "type": "enum::Vector3.Axis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_apply_range_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "range_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_apply_range_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_apply_range_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "range_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_apply_range_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_transform_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1386463405, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "transform_mode", - "type": "enum::ConvertTransformModifier3D.TransformMode" - } - ] - }, - { - "name": "get_reference_transform_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3234663511, - "return_value": { - "type": "enum::ConvertTransformModifier3D.TransformMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 776736805, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - } - ] - }, - { - "name": "get_reference_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4131134770, - "return_value": { - "type": "enum::Vector3.Axis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_range_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "range_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_reference_range_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_range_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "range_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_reference_range_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_additive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_additive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "ConvexPolygonShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_point_cloud", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "point_cloud", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "set_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "points", - "setter": "set_points", - "getter": "get_points" - } - ] - }, - { - "name": "ConvexPolygonShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "points", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - } - ], - "properties": [ - { - "type": "Array", - "name": "points", - "setter": "set_points", - "getter": "get_points" - } - ] - }, - { - "name": "CopyTransformModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BoneConstraint3D", - "api_type": "core", - "enums": [ - { - "name": "TransformFlag", - "is_bitfield": true, - "values": [ - { - "name": "TRANSFORM_FLAG_POSITION", - "value": 1 - }, - { - "name": "TRANSFORM_FLAG_ROTATION", - "value": 2 - }, - { - "name": "TRANSFORM_FLAG_SCALE", - "value": 4 - }, - { - "name": "TRANSFORM_FLAG_ALL", - "value": 7 - } - ] - }, - { - "name": "AxisFlag", - "is_bitfield": true, - "values": [ - { - "name": "AXIS_FLAG_X", - "value": 1 - }, - { - "name": "AXIS_FLAG_Y", - "value": 2 - }, - { - "name": "AXIS_FLAG_Z", - "value": 4 - }, - { - "name": "AXIS_FLAG_ALL", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_copy_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2252507859, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "copy_flags", - "type": "bitfield::CopyTransformModifier3D.TransformFlag" - } - ] - }, - { - "name": "get_copy_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1685185931, - "return_value": { - "type": "bitfield::CopyTransformModifier3D.TransformFlag" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2044211897, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis_flags", - "type": "bitfield::CopyTransformModifier3D.AxisFlag" - } - ] - }, - { - "name": "get_axis_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 992162046, - "return_value": { - "type": "bitfield::CopyTransformModifier3D.AxisFlag" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_invert_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2044211897, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis_flags", - "type": "bitfield::CopyTransformModifier3D.AxisFlag" - } - ] - }, - { - "name": "get_invert_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 992162046, - "return_value": { - "type": "bitfield::CopyTransformModifier3D.AxisFlag" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_copy_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_position_copying", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_copy_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_rotation_copying", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_copy_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_scale_copying", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_x_inverted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_x_inverted", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_y_inverted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_y_inverted", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_axis_z_inverted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_axis_z_inverted", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_additive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_additive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "Crypto", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "generate_random_bytes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 47165747, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "generate_rsa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1237515462, - "return_value": { - "type": "CryptoKey" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "generate_self_signed_certificate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 492266173, - "hash_compatibility": [ - 947314696 - ], - "return_value": { - "type": "X509Certificate" - }, - "arguments": [ - { - "name": "key", - "type": "CryptoKey" - }, - { - "name": "issuer_name", - "type": "String", - "default_value": "\"CN=myserver,O=myorganisation,C=IT\"" - }, - { - "name": "not_before", - "type": "String", - "default_value": "\"20140101000000\"" - }, - { - "name": "not_after", - "type": "String", - "default_value": "\"20340101000000\"" - } - ] - }, - { - "name": "sign", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1673662703, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "hash_type", - "type": "enum::HashingContext.HashType" - }, - { - "name": "hash", - "type": "PackedByteArray" - }, - { - "name": "key", - "type": "CryptoKey" - } - ] - }, - { - "name": "verify", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2805902225, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "hash_type", - "type": "enum::HashingContext.HashType" - }, - { - "name": "hash", - "type": "PackedByteArray" - }, - { - "name": "signature", - "type": "PackedByteArray" - }, - { - "name": "key", - "type": "CryptoKey" - } - ] - }, - { - "name": "encrypt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2361793670, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "key", - "type": "CryptoKey" - }, - { - "name": "plaintext", - "type": "PackedByteArray" - } - ] - }, - { - "name": "decrypt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2361793670, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "key", - "type": "CryptoKey" - }, - { - "name": "ciphertext", - "type": "PackedByteArray" - } - ] - }, - { - "name": "hmac_digest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2368951203, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "hash_type", - "type": "enum::HashingContext.HashType" - }, - { - "name": "key", - "type": "PackedByteArray" - }, - { - "name": "msg", - "type": "PackedByteArray" - } - ] - }, - { - "name": "constant_time_compare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1024142237, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "trusted", - "type": "PackedByteArray" - }, - { - "name": "received", - "type": "PackedByteArray" - } - ] - } - ] - }, - { - "name": "CryptoKey", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "save", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 885841341, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "public_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 885841341, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "public_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_public_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "save_to_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 32795936, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "public_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "load_from_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 885841341, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "string_key", - "type": "String" - }, - { - "name": "public_only", - "type": "bool", - "default_value": "false" - } - ] - } - ] - }, - { - "name": "Cubemap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ImageTextureLayered", - "api_type": "core", - "methods": [ - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ] - }, - { - "name": "CubemapArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ImageTextureLayered", - "api_type": "core", - "methods": [ - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ] - }, - { - "name": "Curve", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "TangentMode", - "is_bitfield": false, - "values": [ - { - "name": "TANGENT_FREE", - "value": 0 - }, - { - "name": "TANGENT_LINEAR", - "value": 1 - }, - { - "name": "TANGENT_MODE_COUNT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_point_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 434072736, - "hash_compatibility": [ - 2766148617 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "left_tangent", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "right_tangent", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "left_mode", - "type": "enum::Curve.TangentMode", - "default_value": "0" - }, - { - "name": "right_mode", - "type": "enum::Curve.TangentMode", - "default_value": "0" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_point_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780573764, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "sample", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3919130443, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "sample_baked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3919130443, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_left_tangent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_point_right_tangent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_point_left_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 426950354, - "return_value": { - "type": "enum::Curve.TangentMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_point_right_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 426950354, - "return_value": { - "type": "enum::Curve.TangentMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_left_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "tangent", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_point_right_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "tangent", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_point_left_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217242874, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Curve.TangentMode" - } - ] - }, - { - "name": "set_point_right_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217242874, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Curve.TangentMode" - } - ] - }, - { - "name": "get_min_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_min_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_value_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_min_domain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_min_domain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_domain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_domain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_domain_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "clean_dupes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "bake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_bake_resolution", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_bake_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "resolution", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "range_changed" - }, - { - "name": "domain_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "min_domain", - "setter": "set_min_domain", - "getter": "get_min_domain" - }, - { - "type": "float", - "name": "max_domain", - "setter": "set_max_domain", - "getter": "get_max_domain" - }, - { - "type": "float", - "name": "min_value", - "setter": "set_min_value", - "getter": "get_min_value" - }, - { - "type": "float", - "name": "max_value", - "setter": "set_max_value", - "getter": "get_max_value" - }, - { - "type": "int", - "name": "bake_resolution", - "setter": "set_bake_resolution", - "getter": "get_bake_resolution" - }, - { - "type": "int", - "name": "point_count", - "setter": "set_point_count", - "getter": "get_point_count" - } - ] - }, - { - "name": "Curve2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_point_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4175465202, - "hash_compatibility": [ - 2437345566 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "in", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - }, - { - "name": "out", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_in", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_in", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_out", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_out", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "sample", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 26514310, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "t", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "samplef", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3588506812, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "fofs", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_bake_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bake_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_baked_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "sample_baked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3464257706, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "cubic", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "sample_baked_with_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3296056341, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "cubic", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_baked_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "to_point", - "type": "Vector2" - } - ] - }, - { - "name": "get_closest_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2276447920, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "to_point", - "type": "Vector2" - } - ] - }, - { - "name": "tessellate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 958145977, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "meta": "int32", - "default_value": "5" - }, - { - "name": "tolerance_degrees", - "type": "float", - "meta": "float", - "default_value": "4" - } - ] - }, - { - "name": "tessellate_even_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2319761637, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "meta": "int32", - "default_value": "5" - }, - { - "name": "tolerance_length", - "type": "float", - "meta": "float", - "default_value": "20.0" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "bake_interval", - "setter": "set_bake_interval", - "getter": "get_bake_interval" - }, - { - "type": "int", - "name": "point_count", - "setter": "set_point_count", - "getter": "get_point_count" - } - ] - }, - { - "name": "Curve3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_point_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2931053748, - "hash_compatibility": [ - 3836314258 - ], - "arguments": [ - { - "name": "position", - "type": "Vector3" - }, - { - "name": "in", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - }, - { - "name": "out", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_tilt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tilt", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_tilt", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_in", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_point_in", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_point_out", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_point_out", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "sample", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3285246857, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "t", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "samplef", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2553580215, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "fofs", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_closed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "closed", - "type": "bool" - } - ] - }, - { - "name": "is_closed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_bake_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bake_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_up_vector_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_up_vector_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_baked_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "sample_baked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1350085894, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "cubic", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "sample_baked_with_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1939359131, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "cubic", - "type": "bool", - "default_value": "false" - }, - { - "name": "apply_tilt", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "sample_baked_up_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1362627031, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - }, - { - "name": "apply_tilt", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_baked_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_baked_tilts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "get_baked_up_vectors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "get_closest_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1109078154, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "tessellate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1519759391, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "meta": "int32", - "default_value": "5" - }, - { - "name": "tolerance_degrees", - "type": "float", - "meta": "float", - "default_value": "4" - } - ] - }, - { - "name": "tessellate_even_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 133237049, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "meta": "int32", - "default_value": "5" - }, - { - "name": "tolerance_length", - "type": "float", - "meta": "float", - "default_value": "0.2" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "closed", - "setter": "set_closed", - "getter": "is_closed" - }, - { - "type": "float", - "name": "bake_interval", - "setter": "set_bake_interval", - "getter": "get_bake_interval" - }, - { - "type": "int", - "name": "point_count", - "setter": "set_point_count", - "getter": "get_point_count" - }, - { - "type": "bool", - "name": "up_vector_enabled", - "setter": "set_up_vector_enabled", - "getter": "is_up_vector_enabled" - } - ] - }, - { - "name": "CurveTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "enums": [ - { - "name": "TextureMode", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_MODE_RGB", - "value": 0 - }, - { - "name": "TEXTURE_MODE_RED", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_texture_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321955367, - "arguments": [ - { - "name": "texture_mode", - "type": "enum::CurveTexture.TextureMode" - } - ] - }, - { - "name": "get_texture_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 715756376, - "return_value": { - "type": "enum::CurveTexture.TextureMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "texture_mode", - "setter": "set_texture_mode", - "getter": "get_texture_mode" - }, - { - "type": "Curve", - "name": "curve", - "setter": "set_curve", - "getter": "get_curve" - } - ] - }, - { - "name": "CurveXYZTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_curve_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_curve_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_curve_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - } - ], - "properties": [ - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "Curve", - "name": "curve_x", - "setter": "set_curve_x", - "getter": "get_curve_x" - }, - { - "type": "Curve", - "name": "curve_y", - "setter": "set_curve_y", - "getter": "get_curve_y" - }, - { - "type": "Curve", - "name": "curve_z", - "setter": "set_curve_z", - "getter": "get_curve_z" - } - ] - }, - { - "name": "CylinderMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_top_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_top_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bottom_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bottom_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_radial_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_cap_top", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "cap_top", - "type": "bool" - } - ] - }, - { - "name": "is_cap_top", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cap_bottom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "cap_bottom", - "type": "bool" - } - ] - }, - { - "name": "is_cap_bottom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "top_radius", - "setter": "set_top_radius", - "getter": "get_top_radius" - }, - { - "type": "float", - "name": "bottom_radius", - "setter": "set_bottom_radius", - "getter": "get_bottom_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "radial_segments", - "setter": "set_radial_segments", - "getter": "get_radial_segments" - }, - { - "type": "int", - "name": "rings", - "setter": "set_rings", - "getter": "get_rings" - }, - { - "type": "bool", - "name": "cap_top", - "setter": "set_cap_top", - "getter": "is_cap_top" - }, - { - "type": "bool", - "name": "cap_bottom", - "setter": "set_cap_bottom", - "getter": "is_cap_bottom" - } - ] - }, - { - "name": "CylinderShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "DPITexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "create_from_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 755140520, - "return_value": { - "type": "DPITexture" - }, - "arguments": [ - { - "name": "source", - "type": "String" - }, - { - "name": "scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "saturation", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "color_map", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "set_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "source", - "type": "String" - } - ] - }, - { - "name": "get_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_fix_alpha_border", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "fix_alpha_border", - "type": "bool" - } - ] - }, - { - "name": "get_fix_alpha_border", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_premult_alpha", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "premult_alpha", - "type": "bool" - } - ] - }, - { - "name": "get_premult_alpha", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_base_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "base_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_saturation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "saturation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_saturation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_color_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "color_map", - "type": "Dictionary" - } - ] - }, - { - "name": "get_color_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_scaled_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "fix_alpha_border", - "setter": "set_fix_alpha_border", - "getter": "get_fix_alpha_border" - }, - { - "type": "bool", - "name": "premult_alpha", - "setter": "set_premult_alpha", - "getter": "get_premult_alpha" - }, - { - "type": "float", - "name": "base_scale", - "setter": "set_base_scale", - "getter": "get_base_scale" - }, - { - "type": "float", - "name": "saturation", - "setter": "set_saturation", - "getter": "get_saturation" - }, - { - "type": "typeddictionary::Color;Color", - "name": "color_map", - "setter": "set_color_map", - "getter": "get_color_map" - } - ] - }, - { - "name": "DTLSServer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262296096, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "server_options", - "type": "TLSOptions" - } - ] - }, - { - "name": "take_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3946580474, - "return_value": { - "type": "PacketPeerDTLS" - }, - "arguments": [ - { - "name": "udp_peer", - "type": "PacketPeerUDP" - } - ] - } - ] - }, - { - "name": "DampedSpringJoint2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint2D", - "api_type": "core", - "methods": [ - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rest_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rest_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rest_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "damping", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "float", - "name": "rest_length", - "setter": "set_rest_length", - "getter": "get_rest_length" - }, - { - "type": "float", - "name": "stiffness", - "setter": "set_stiffness", - "getter": "get_stiffness" - }, - { - "type": "float", - "name": "damping", - "setter": "set_damping", - "getter": "get_damping" - } - ] - }, - { - "name": "Decal", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "DecalTexture", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_ALBEDO", - "value": 0 - }, - { - "name": "TEXTURE_NORMAL", - "value": 1 - }, - { - "name": "TEXTURE_ORM", - "value": 2 - }, - { - "name": "TEXTURE_EMISSION", - "value": 3 - }, - { - "name": "TEXTURE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2086764391, - "arguments": [ - { - "name": "type", - "type": "enum::Decal.DecalTexture" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3244119503, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "type", - "type": "enum::Decal.DecalTexture" - } - ] - }, - { - "name": "set_emission_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_albedo_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_albedo_mix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_upper_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fade", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_upper_fade", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_lower_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fade", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lower_fade", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_normal_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fade", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_normal_fade", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_enable_distance_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_distance_fade_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_distance_fade_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_distance_fade_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "texture_albedo", - "setter": "set_texture", - "getter": "get_texture", - "index": 0 - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "texture_normal", - "setter": "set_texture", - "getter": "get_texture", - "index": 1 - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "texture_orm", - "setter": "set_texture", - "getter": "get_texture", - "index": 2 - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "texture_emission", - "setter": "set_texture", - "getter": "get_texture", - "index": 3 - }, - { - "type": "float", - "name": "emission_energy", - "setter": "set_emission_energy", - "getter": "get_emission_energy" - }, - { - "type": "Color", - "name": "modulate", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "float", - "name": "albedo_mix", - "setter": "set_albedo_mix", - "getter": "get_albedo_mix" - }, - { - "type": "float", - "name": "normal_fade", - "setter": "set_normal_fade", - "getter": "get_normal_fade" - }, - { - "type": "float", - "name": "upper_fade", - "setter": "set_upper_fade", - "getter": "get_upper_fade" - }, - { - "type": "float", - "name": "lower_fade", - "setter": "set_lower_fade", - "getter": "get_lower_fade" - }, - { - "type": "bool", - "name": "distance_fade_enabled", - "setter": "set_enable_distance_fade", - "getter": "is_distance_fade_enabled" - }, - { - "type": "float", - "name": "distance_fade_begin", - "setter": "set_distance_fade_begin", - "getter": "get_distance_fade_begin" - }, - { - "type": "float", - "name": "distance_fade_length", - "setter": "set_distance_fade_length", - "getter": "get_distance_fade_length" - }, - { - "type": "int", - "name": "cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - } - ] - }, - { - "name": "DirAccess", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1923528528, - "return_value": { - "type": "DirAccess" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_open_error", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "create_temp", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 812913566, - "return_value": { - "type": "DirAccess" - }, - "arguments": [ - { - "name": "prefix", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "keep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "list_dir_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "hash_compatibility": [ - 2018049411, - 2610976713 - ], - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "current_is_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "list_dir_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_files_at", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_directories", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_directories_at", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_drive_count", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_drive_name", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drive_label", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_drive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "change_dir", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "to_dir", - "type": "String" - } - ] - }, - { - "name": "get_current_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1287308131, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "include_drive", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "make_dir", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "make_dir_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "make_dir_recursive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "make_dir_recursive_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "file_exists", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "dir_exists", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "dir_exists_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_space_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "copy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1063198817, - "hash_compatibility": [ - 198434953 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from", - "type": "String" - }, - { - "name": "to", - "type": "String" - }, - { - "name": "chmod_flags", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "copy_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1063198817, - "hash_compatibility": [ - 198434953 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from", - "type": "String" - }, - { - "name": "to", - "type": "String" - }, - { - "name": "chmod_flags", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "rename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from", - "type": "String" - }, - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "rename_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from", - "type": "String" - }, - { - "name": "to", - "type": "String" - } - ] - }, - { - "name": "remove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "remove_absolute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_link", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "read_link", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "create_link", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "source", - "type": "String" - }, - { - "name": "target", - "type": "String" - } - ] - }, - { - "name": "is_bundle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_include_navigational", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_include_navigational", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_include_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_include_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_filesystem_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_case_sensitive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_equivalent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 820780508, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path_a", - "type": "String" - }, - { - "name": "path_b", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "include_navigational", - "setter": "set_include_navigational", - "getter": "get_include_navigational" - }, - { - "type": "bool", - "name": "include_hidden", - "setter": "set_include_hidden", - "getter": "get_include_hidden" - } - ] - }, - { - "name": "DirectionalLight2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light2D", - "api_type": "core", - "methods": [ - { - "name": "set_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixels", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "max_distance", - "setter": "set_max_distance", - "getter": "get_max_distance" - } - ] - }, - { - "name": "DirectionalLight3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light3D", - "api_type": "core", - "enums": [ - { - "name": "ShadowMode", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_ORTHOGONAL", - "value": 0 - }, - { - "name": "SHADOW_PARALLEL_2_SPLITS", - "value": 1 - }, - { - "name": "SHADOW_PARALLEL_4_SPLITS", - "value": 2 - } - ] - }, - { - "name": "SkyMode", - "is_bitfield": false, - "values": [ - { - "name": "SKY_MODE_LIGHT_AND_SKY", - "value": 0 - }, - { - "name": "SKY_MODE_LIGHT_ONLY", - "value": 1 - }, - { - "name": "SKY_MODE_SKY_ONLY", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_shadow_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1261211726, - "arguments": [ - { - "name": "mode", - "type": "enum::DirectionalLight3D.ShadowMode" - } - ] - }, - { - "name": "get_shadow_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2765228544, - "return_value": { - "type": "enum::DirectionalLight3D.ShadowMode" - } - }, - { - "name": "set_blend_splits", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_blend_splits_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sky_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2691194817, - "arguments": [ - { - "name": "mode", - "type": "enum::DirectionalLight3D.SkyMode" - } - ] - }, - { - "name": "get_sky_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3819982774, - "return_value": { - "type": "enum::DirectionalLight3D.SkyMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "directional_shadow_mode", - "setter": "set_shadow_mode", - "getter": "get_shadow_mode" - }, - { - "type": "float", - "name": "directional_shadow_split_1", - "setter": "set_param", - "getter": "get_param", - "index": 10 - }, - { - "type": "float", - "name": "directional_shadow_split_2", - "setter": "set_param", - "getter": "get_param", - "index": 11 - }, - { - "type": "float", - "name": "directional_shadow_split_3", - "setter": "set_param", - "getter": "get_param", - "index": 12 - }, - { - "type": "bool", - "name": "directional_shadow_blend_splits", - "setter": "set_blend_splits", - "getter": "is_blend_splits_enabled" - }, - { - "type": "float", - "name": "directional_shadow_fade_start", - "setter": "set_param", - "getter": "get_param", - "index": 13 - }, - { - "type": "float", - "name": "directional_shadow_max_distance", - "setter": "set_param", - "getter": "get_param", - "index": 9 - }, - { - "type": "float", - "name": "directional_shadow_pancake_size", - "setter": "set_param", - "getter": "get_param", - "index": 16 - }, - { - "type": "int", - "name": "sky_mode", - "setter": "set_sky_mode", - "getter": "get_sky_mode" - } - ] - }, - { - "name": "DisplayServer", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "INVALID_SCREEN", - "value": -1 - }, - { - "name": "SCREEN_WITH_MOUSE_FOCUS", - "value": -4 - }, - { - "name": "SCREEN_WITH_KEYBOARD_FOCUS", - "value": -3 - }, - { - "name": "SCREEN_PRIMARY", - "value": -2 - }, - { - "name": "SCREEN_OF_MAIN_WINDOW", - "value": -1 - }, - { - "name": "MAIN_WINDOW_ID", - "value": 0 - }, - { - "name": "INVALID_WINDOW_ID", - "value": -1 - }, - { - "name": "INVALID_INDICATOR_ID", - "value": -1 - } - ], - "enums": [ - { - "name": "Feature", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_GLOBAL_MENU", - "value": 0 - }, - { - "name": "FEATURE_SUBWINDOWS", - "value": 1 - }, - { - "name": "FEATURE_TOUCHSCREEN", - "value": 2 - }, - { - "name": "FEATURE_MOUSE", - "value": 3 - }, - { - "name": "FEATURE_MOUSE_WARP", - "value": 4 - }, - { - "name": "FEATURE_CLIPBOARD", - "value": 5 - }, - { - "name": "FEATURE_VIRTUAL_KEYBOARD", - "value": 6 - }, - { - "name": "FEATURE_CURSOR_SHAPE", - "value": 7 - }, - { - "name": "FEATURE_CUSTOM_CURSOR_SHAPE", - "value": 8 - }, - { - "name": "FEATURE_NATIVE_DIALOG", - "value": 9 - }, - { - "name": "FEATURE_IME", - "value": 10 - }, - { - "name": "FEATURE_WINDOW_TRANSPARENCY", - "value": 11 - }, - { - "name": "FEATURE_HIDPI", - "value": 12 - }, - { - "name": "FEATURE_ICON", - "value": 13 - }, - { - "name": "FEATURE_NATIVE_ICON", - "value": 14 - }, - { - "name": "FEATURE_ORIENTATION", - "value": 15 - }, - { - "name": "FEATURE_SWAP_BUFFERS", - "value": 16 - }, - { - "name": "FEATURE_CLIPBOARD_PRIMARY", - "value": 18 - }, - { - "name": "FEATURE_TEXT_TO_SPEECH", - "value": 19 - }, - { - "name": "FEATURE_EXTEND_TO_TITLE", - "value": 20 - }, - { - "name": "FEATURE_SCREEN_CAPTURE", - "value": 21 - }, - { - "name": "FEATURE_STATUS_INDICATOR", - "value": 22 - }, - { - "name": "FEATURE_NATIVE_HELP", - "value": 23 - }, - { - "name": "FEATURE_NATIVE_DIALOG_INPUT", - "value": 24 - }, - { - "name": "FEATURE_NATIVE_DIALOG_FILE", - "value": 25 - }, - { - "name": "FEATURE_NATIVE_DIALOG_FILE_EXTRA", - "value": 26 - }, - { - "name": "FEATURE_WINDOW_DRAG", - "value": 27 - }, - { - "name": "FEATURE_SCREEN_EXCLUDE_FROM_CAPTURE", - "value": 28 - }, - { - "name": "FEATURE_WINDOW_EMBEDDING", - "value": 29 - }, - { - "name": "FEATURE_NATIVE_DIALOG_FILE_MIME", - "value": 30 - }, - { - "name": "FEATURE_EMOJI_AND_SYMBOL_PICKER", - "value": 31 - }, - { - "name": "FEATURE_NATIVE_COLOR_PICKER", - "value": 32 - }, - { - "name": "FEATURE_SELF_FITTING_WINDOWS", - "value": 33 - }, - { - "name": "FEATURE_ACCESSIBILITY_SCREEN_READER", - "value": 34 - }, - { - "name": "FEATURE_HDR_OUTPUT", - "value": 35 - }, - { - "name": "FEATURE_PIP_MODE", - "value": 36 - } - ] - }, - { - "name": "AccessibilityRole", - "is_bitfield": false, - "values": [ - { - "name": "ROLE_UNKNOWN", - "value": 0 - }, - { - "name": "ROLE_DEFAULT_BUTTON", - "value": 1 - }, - { - "name": "ROLE_AUDIO", - "value": 2 - }, - { - "name": "ROLE_VIDEO", - "value": 3 - }, - { - "name": "ROLE_STATIC_TEXT", - "value": 4 - }, - { - "name": "ROLE_CONTAINER", - "value": 5 - }, - { - "name": "ROLE_PANEL", - "value": 6 - }, - { - "name": "ROLE_BUTTON", - "value": 7 - }, - { - "name": "ROLE_LINK", - "value": 8 - }, - { - "name": "ROLE_CHECK_BOX", - "value": 9 - }, - { - "name": "ROLE_RADIO_BUTTON", - "value": 10 - }, - { - "name": "ROLE_CHECK_BUTTON", - "value": 11 - }, - { - "name": "ROLE_SCROLL_BAR", - "value": 12 - }, - { - "name": "ROLE_SCROLL_VIEW", - "value": 13 - }, - { - "name": "ROLE_SPLITTER", - "value": 14 - }, - { - "name": "ROLE_SLIDER", - "value": 15 - }, - { - "name": "ROLE_SPIN_BUTTON", - "value": 16 - }, - { - "name": "ROLE_PROGRESS_INDICATOR", - "value": 17 - }, - { - "name": "ROLE_TEXT_FIELD", - "value": 18 - }, - { - "name": "ROLE_MULTILINE_TEXT_FIELD", - "value": 19 - }, - { - "name": "ROLE_COLOR_PICKER", - "value": 20 - }, - { - "name": "ROLE_TABLE", - "value": 21 - }, - { - "name": "ROLE_CELL", - "value": 22 - }, - { - "name": "ROLE_ROW", - "value": 23 - }, - { - "name": "ROLE_ROW_GROUP", - "value": 24 - }, - { - "name": "ROLE_ROW_HEADER", - "value": 25 - }, - { - "name": "ROLE_COLUMN_HEADER", - "value": 26 - }, - { - "name": "ROLE_TREE", - "value": 27 - }, - { - "name": "ROLE_TREE_ITEM", - "value": 28 - }, - { - "name": "ROLE_LIST", - "value": 29 - }, - { - "name": "ROLE_LIST_ITEM", - "value": 30 - }, - { - "name": "ROLE_LIST_BOX", - "value": 31 - }, - { - "name": "ROLE_LIST_BOX_OPTION", - "value": 32 - }, - { - "name": "ROLE_TAB_BAR", - "value": 33 - }, - { - "name": "ROLE_TAB", - "value": 34 - }, - { - "name": "ROLE_TAB_PANEL", - "value": 35 - }, - { - "name": "ROLE_MENU_BAR", - "value": 36 - }, - { - "name": "ROLE_MENU", - "value": 37 - }, - { - "name": "ROLE_MENU_ITEM", - "value": 38 - }, - { - "name": "ROLE_MENU_ITEM_CHECK_BOX", - "value": 39 - }, - { - "name": "ROLE_MENU_ITEM_RADIO", - "value": 40 - }, - { - "name": "ROLE_IMAGE", - "value": 41 - }, - { - "name": "ROLE_WINDOW", - "value": 42 - }, - { - "name": "ROLE_TITLE_BAR", - "value": 43 - }, - { - "name": "ROLE_DIALOG", - "value": 44 - }, - { - "name": "ROLE_TOOLTIP", - "value": 45 - }, - { - "name": "ROLE_REGION", - "value": 46 - }, - { - "name": "ROLE_TEXT_RUN", - "value": 47 - } - ] - }, - { - "name": "AccessibilityPopupType", - "is_bitfield": false, - "values": [ - { - "name": "POPUP_MENU", - "value": 0 - }, - { - "name": "POPUP_LIST", - "value": 1 - }, - { - "name": "POPUP_TREE", - "value": 2 - }, - { - "name": "POPUP_DIALOG", - "value": 3 - } - ] - }, - { - "name": "AccessibilityFlags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_HIDDEN", - "value": 0 - }, - { - "name": "FLAG_MULTISELECTABLE", - "value": 1 - }, - { - "name": "FLAG_REQUIRED", - "value": 2 - }, - { - "name": "FLAG_VISITED", - "value": 3 - }, - { - "name": "FLAG_BUSY", - "value": 4 - }, - { - "name": "FLAG_MODAL", - "value": 5 - }, - { - "name": "FLAG_TOUCH_PASSTHROUGH", - "value": 6 - }, - { - "name": "FLAG_READONLY", - "value": 7 - }, - { - "name": "FLAG_DISABLED", - "value": 8 - }, - { - "name": "FLAG_CLIPS_CHILDREN", - "value": 9 - } - ] - }, - { - "name": "AccessibilityAction", - "is_bitfield": false, - "values": [ - { - "name": "ACTION_CLICK", - "value": 0 - }, - { - "name": "ACTION_FOCUS", - "value": 1 - }, - { - "name": "ACTION_BLUR", - "value": 2 - }, - { - "name": "ACTION_COLLAPSE", - "value": 3 - }, - { - "name": "ACTION_EXPAND", - "value": 4 - }, - { - "name": "ACTION_DECREMENT", - "value": 5 - }, - { - "name": "ACTION_INCREMENT", - "value": 6 - }, - { - "name": "ACTION_HIDE_TOOLTIP", - "value": 7 - }, - { - "name": "ACTION_SHOW_TOOLTIP", - "value": 8 - }, - { - "name": "ACTION_SET_TEXT_SELECTION", - "value": 9 - }, - { - "name": "ACTION_REPLACE_SELECTED_TEXT", - "value": 10 - }, - { - "name": "ACTION_SCROLL_BACKWARD", - "value": 11 - }, - { - "name": "ACTION_SCROLL_DOWN", - "value": 12 - }, - { - "name": "ACTION_SCROLL_FORWARD", - "value": 13 - }, - { - "name": "ACTION_SCROLL_LEFT", - "value": 14 - }, - { - "name": "ACTION_SCROLL_RIGHT", - "value": 15 - }, - { - "name": "ACTION_SCROLL_UP", - "value": 16 - }, - { - "name": "ACTION_SCROLL_INTO_VIEW", - "value": 17 - }, - { - "name": "ACTION_SCROLL_TO_POINT", - "value": 18 - }, - { - "name": "ACTION_SET_SCROLL_OFFSET", - "value": 19 - }, - { - "name": "ACTION_SET_VALUE", - "value": 20 - }, - { - "name": "ACTION_SHOW_CONTEXT_MENU", - "value": 21 - }, - { - "name": "ACTION_CUSTOM", - "value": 22 - } - ] - }, - { - "name": "AccessibilityLiveMode", - "is_bitfield": false, - "values": [ - { - "name": "LIVE_OFF", - "value": 0 - }, - { - "name": "LIVE_POLITE", - "value": 1 - }, - { - "name": "LIVE_ASSERTIVE", - "value": 2 - } - ] - }, - { - "name": "AccessibilityScrollUnit", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_UNIT_ITEM", - "value": 0 - }, - { - "name": "SCROLL_UNIT_PAGE", - "value": 1 - } - ] - }, - { - "name": "AccessibilityScrollHint", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_HINT_TOP_LEFT", - "value": 0 - }, - { - "name": "SCROLL_HINT_BOTTOM_RIGHT", - "value": 1 - }, - { - "name": "SCROLL_HINT_TOP_EDGE", - "value": 2 - }, - { - "name": "SCROLL_HINT_BOTTOM_EDGE", - "value": 3 - }, - { - "name": "SCROLL_HINT_LEFT_EDGE", - "value": 4 - }, - { - "name": "SCROLL_HINT_RIGHT_EDGE", - "value": 5 - } - ] - }, - { - "name": "MouseMode", - "is_bitfield": false, - "values": [ - { - "name": "MOUSE_MODE_VISIBLE", - "value": 0 - }, - { - "name": "MOUSE_MODE_HIDDEN", - "value": 1 - }, - { - "name": "MOUSE_MODE_CAPTURED", - "value": 2 - }, - { - "name": "MOUSE_MODE_CONFINED", - "value": 3 - }, - { - "name": "MOUSE_MODE_CONFINED_HIDDEN", - "value": 4 - }, - { - "name": "MOUSE_MODE_MAX", - "value": 5 - } - ] - }, - { - "name": "ScreenOrientation", - "is_bitfield": false, - "values": [ - { - "name": "SCREEN_LANDSCAPE", - "value": 0 - }, - { - "name": "SCREEN_PORTRAIT", - "value": 1 - }, - { - "name": "SCREEN_REVERSE_LANDSCAPE", - "value": 2 - }, - { - "name": "SCREEN_REVERSE_PORTRAIT", - "value": 3 - }, - { - "name": "SCREEN_SENSOR_LANDSCAPE", - "value": 4 - }, - { - "name": "SCREEN_SENSOR_PORTRAIT", - "value": 5 - }, - { - "name": "SCREEN_SENSOR", - "value": 6 - } - ] - }, - { - "name": "VirtualKeyboardType", - "is_bitfield": false, - "values": [ - { - "name": "KEYBOARD_TYPE_DEFAULT", - "value": 0 - }, - { - "name": "KEYBOARD_TYPE_MULTILINE", - "value": 1 - }, - { - "name": "KEYBOARD_TYPE_NUMBER", - "value": 2 - }, - { - "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", - "value": 3 - }, - { - "name": "KEYBOARD_TYPE_PHONE", - "value": 4 - }, - { - "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", - "value": 5 - }, - { - "name": "KEYBOARD_TYPE_PASSWORD", - "value": 6 - }, - { - "name": "KEYBOARD_TYPE_URL", - "value": 7 - } - ] - }, - { - "name": "CursorShape", - "is_bitfield": false, - "values": [ - { - "name": "CURSOR_ARROW", - "value": 0 - }, - { - "name": "CURSOR_IBEAM", - "value": 1 - }, - { - "name": "CURSOR_POINTING_HAND", - "value": 2 - }, - { - "name": "CURSOR_CROSS", - "value": 3 - }, - { - "name": "CURSOR_WAIT", - "value": 4 - }, - { - "name": "CURSOR_BUSY", - "value": 5 - }, - { - "name": "CURSOR_DRAG", - "value": 6 - }, - { - "name": "CURSOR_CAN_DROP", - "value": 7 - }, - { - "name": "CURSOR_FORBIDDEN", - "value": 8 - }, - { - "name": "CURSOR_VSIZE", - "value": 9 - }, - { - "name": "CURSOR_HSIZE", - "value": 10 - }, - { - "name": "CURSOR_BDIAGSIZE", - "value": 11 - }, - { - "name": "CURSOR_FDIAGSIZE", - "value": 12 - }, - { - "name": "CURSOR_MOVE", - "value": 13 - }, - { - "name": "CURSOR_VSPLIT", - "value": 14 - }, - { - "name": "CURSOR_HSPLIT", - "value": 15 - }, - { - "name": "CURSOR_HELP", - "value": 16 - }, - { - "name": "CURSOR_MAX", - "value": 17 - } - ] - }, - { - "name": "FileDialogMode", - "is_bitfield": false, - "values": [ - { - "name": "FILE_DIALOG_MODE_OPEN_FILE", - "value": 0 - }, - { - "name": "FILE_DIALOG_MODE_OPEN_FILES", - "value": 1 - }, - { - "name": "FILE_DIALOG_MODE_OPEN_DIR", - "value": 2 - }, - { - "name": "FILE_DIALOG_MODE_OPEN_ANY", - "value": 3 - }, - { - "name": "FILE_DIALOG_MODE_SAVE_FILE", - "value": 4 - } - ] - }, - { - "name": "WindowMode", - "is_bitfield": false, - "values": [ - { - "name": "WINDOW_MODE_WINDOWED", - "value": 0 - }, - { - "name": "WINDOW_MODE_MINIMIZED", - "value": 1 - }, - { - "name": "WINDOW_MODE_MAXIMIZED", - "value": 2 - }, - { - "name": "WINDOW_MODE_FULLSCREEN", - "value": 3 - }, - { - "name": "WINDOW_MODE_EXCLUSIVE_FULLSCREEN", - "value": 4 - } - ] - }, - { - "name": "ProgressState", - "is_bitfield": false, - "values": [ - { - "name": "PROGRESS_STATE_NOPROGRESS", - "value": 0 - }, - { - "name": "PROGRESS_STATE_INDETERMINATE", - "value": 1 - }, - { - "name": "PROGRESS_STATE_NORMAL", - "value": 2 - }, - { - "name": "PROGRESS_STATE_ERROR", - "value": 3 - }, - { - "name": "PROGRESS_STATE_PAUSED", - "value": 4 - } - ] - }, - { - "name": "WindowFlags", - "is_bitfield": false, - "values": [ - { - "name": "WINDOW_FLAG_RESIZE_DISABLED", - "value": 0 - }, - { - "name": "WINDOW_FLAG_BORDERLESS", - "value": 1 - }, - { - "name": "WINDOW_FLAG_ALWAYS_ON_TOP", - "value": 2 - }, - { - "name": "WINDOW_FLAG_TRANSPARENT", - "value": 3 - }, - { - "name": "WINDOW_FLAG_NO_FOCUS", - "value": 4 - }, - { - "name": "WINDOW_FLAG_POPUP", - "value": 5 - }, - { - "name": "WINDOW_FLAG_EXTEND_TO_TITLE", - "value": 6 - }, - { - "name": "WINDOW_FLAG_MOUSE_PASSTHROUGH", - "value": 7 - }, - { - "name": "WINDOW_FLAG_SHARP_CORNERS", - "value": 8 - }, - { - "name": "WINDOW_FLAG_EXCLUDE_FROM_CAPTURE", - "value": 9 - }, - { - "name": "WINDOW_FLAG_POPUP_WM_HINT", - "value": 10 - }, - { - "name": "WINDOW_FLAG_MINIMIZE_DISABLED", - "value": 11 - }, - { - "name": "WINDOW_FLAG_MAXIMIZE_DISABLED", - "value": 12 - }, - { - "name": "WINDOW_FLAG_MAX", - "value": 13 - } - ] - }, - { - "name": "WindowEvent", - "is_bitfield": false, - "values": [ - { - "name": "WINDOW_EVENT_MOUSE_ENTER", - "value": 0 - }, - { - "name": "WINDOW_EVENT_MOUSE_EXIT", - "value": 1 - }, - { - "name": "WINDOW_EVENT_FOCUS_IN", - "value": 2 - }, - { - "name": "WINDOW_EVENT_FOCUS_OUT", - "value": 3 - }, - { - "name": "WINDOW_EVENT_CLOSE_REQUEST", - "value": 4 - }, - { - "name": "WINDOW_EVENT_GO_BACK_REQUEST", - "value": 5 - }, - { - "name": "WINDOW_EVENT_DPI_CHANGE", - "value": 6 - }, - { - "name": "WINDOW_EVENT_TITLEBAR_CHANGE", - "value": 7 - }, - { - "name": "WINDOW_EVENT_FORCE_CLOSE", - "value": 8 - }, - { - "name": "WINDOW_EVENT_OUTPUT_MAX_LINEAR_VALUE_CHANGED", - "value": 9 - } - ] - }, - { - "name": "WindowResizeEdge", - "is_bitfield": false, - "values": [ - { - "name": "WINDOW_EDGE_TOP_LEFT", - "value": 0 - }, - { - "name": "WINDOW_EDGE_TOP", - "value": 1 - }, - { - "name": "WINDOW_EDGE_TOP_RIGHT", - "value": 2 - }, - { - "name": "WINDOW_EDGE_LEFT", - "value": 3 - }, - { - "name": "WINDOW_EDGE_RIGHT", - "value": 4 - }, - { - "name": "WINDOW_EDGE_BOTTOM_LEFT", - "value": 5 - }, - { - "name": "WINDOW_EDGE_BOTTOM", - "value": 6 - }, - { - "name": "WINDOW_EDGE_BOTTOM_RIGHT", - "value": 7 - }, - { - "name": "WINDOW_EDGE_MAX", - "value": 8 - } - ] - }, - { - "name": "VSyncMode", - "is_bitfield": false, - "values": [ - { - "name": "VSYNC_DISABLED", - "value": 0 - }, - { - "name": "VSYNC_ENABLED", - "value": 1 - }, - { - "name": "VSYNC_ADAPTIVE", - "value": 2 - }, - { - "name": "VSYNC_MAILBOX", - "value": 3 - } - ] - }, - { - "name": "HandleType", - "is_bitfield": false, - "values": [ - { - "name": "DISPLAY_HANDLE", - "value": 0 - }, - { - "name": "WINDOW_HANDLE", - "value": 1 - }, - { - "name": "WINDOW_VIEW", - "value": 2 - }, - { - "name": "OPENGL_CONTEXT", - "value": 3 - }, - { - "name": "EGL_DISPLAY", - "value": 4 - }, - { - "name": "EGL_CONFIG", - "value": 5 - }, - { - "name": "GLX_VISUALID", - "value": 6 - }, - { - "name": "GLX_FBCONFIG", - "value": 7 - } - ] - }, - { - "name": "TTSUtteranceEvent", - "is_bitfield": false, - "values": [ - { - "name": "TTS_UTTERANCE_STARTED", - "value": 0 - }, - { - "name": "TTS_UTTERANCE_ENDED", - "value": 1 - }, - { - "name": "TTS_UTTERANCE_CANCELED", - "value": 2 - }, - { - "name": "TTS_UTTERANCE_BOUNDARY", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334065950, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::DisplayServer.Feature" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "help_set_search_callbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1687350599, - "arguments": [ - { - "name": "search_callback", - "type": "Callable" - }, - { - "name": "action_callback", - "type": "Callable" - } - ] - }, - { - "name": "global_menu_set_popup_callbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3893727526, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "open_callback", - "type": "Callable" - }, - { - "name": "close_callback", - "type": "Callable" - } - ] - }, - { - "name": "global_menu_add_submenu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2828985934, - "hash_compatibility": [ - 3806306913 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "submenu", - "type": "String" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616842746, - "hash_compatibility": [ - 3415468211, - 3401266716 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616842746, - "hash_compatibility": [ - 3415468211, - 3401266716 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_icon_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3867083847, - "hash_compatibility": [ - 1700867534, - 4245856523 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_icon_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3867083847, - "hash_compatibility": [ - 1700867534, - 4245856523 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616842746, - "hash_compatibility": [ - 3415468211, - 3401266716 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_icon_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3867083847, - "hash_compatibility": [ - 1700867534, - 4245856523 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_multistate_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3297554655, - "hash_compatibility": [ - 635750054, - 3431222859 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - }, - { - "name": "default_state", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_add_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3214812433, - "hash_compatibility": [ - 1041533178 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "global_menu_get_item_index_from_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878152881, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "global_menu_get_item_index_from_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2941063483, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "tag", - "type": "Variant" - } - ] - }, - { - "name": "global_menu_is_item_checked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511468594, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_is_item_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511468594, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_is_item_radio_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511468594, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 748666903, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_key_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 748666903, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330672633, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 591067909, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_submenu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 591067909, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_accelerator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 936065394, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_is_item_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511468594, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_is_item_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511468594, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 591067909, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3422818498, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_max_states", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3422818498, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3591713183, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_indentation_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3422818498, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_set_item_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "global_menu_set_item_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checkable", - "type": "bool" - } - ] - }, - { - "name": "global_menu_set_item_radio_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checkable", - "type": "bool" - } - ] - }, - { - "name": "global_menu_set_item_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3809915389, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "global_menu_set_item_hover_callbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3809915389, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "global_menu_set_item_key_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3809915389, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_callback", - "type": "Callable" - } - ] - }, - { - "name": "global_menu_set_item_tag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 453659863, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "Variant" - } - ] - }, - { - "name": "global_menu_set_item_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 965966136, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "global_menu_set_item_submenu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 965966136, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "submenu", - "type": "String" - } - ] - }, - { - "name": "global_menu_set_item_accelerator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 566943293, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "global_menu_set_item_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "global_menu_set_item_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "global_menu_set_item_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 965966136, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "global_menu_set_item_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3474840532, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "state", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_set_item_max_states", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3474840532, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_set_item_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201338066, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "global_menu_set_item_indentation_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3474840532, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "menu_root", - "type": "String" - } - ] - }, - { - "name": "global_menu_remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "menu_root", - "type": "String" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_menu_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "menu_root", - "type": "String" - } - ] - }, - { - "name": "global_menu_get_system_menu_roots", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "tts_is_speaking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "tts_is_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "tts_get_voices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "tts_get_voices_for_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "tts_speak", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 903992738, - "hash_compatibility": [ - 3741216677 - ], - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "voice", - "type": "String" - }, - { - "name": "volume", - "type": "int", - "meta": "int32", - "default_value": "50" - }, - { - "name": "pitch", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "rate", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "utterance_id", - "type": "int", - "meta": "int64", - "default_value": "0" - }, - { - "name": "interrupt", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "tts_pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "tts_resume", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "tts_stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "tts_set_utterance_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 109679083, - "arguments": [ - { - "name": "event", - "type": "enum::DisplayServer.TTSUtteranceEvent" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "is_dark_mode_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_dark_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_accent_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "get_base_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_system_theme_change_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "mouse_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 348288463, - "arguments": [ - { - "name": "mouse_mode", - "type": "enum::DisplayServer.MouseMode" - } - ] - }, - { - "name": "mouse_get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1353961651, - "return_value": { - "type": "enum::DisplayServer.MouseMode" - } - }, - { - "name": "warp_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "mouse_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "mouse_get_button_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2512161324, - "return_value": { - "type": "bitfield::MouseButtonMask" - } - }, - { - "name": "clipboard_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "clipboard", - "type": "String" - } - ] - }, - { - "name": "clipboard_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "clipboard_get_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4190603485, - "return_value": { - "type": "Image" - } - }, - { - "name": "clipboard_has", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clipboard_has_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clipboard_set_primary", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "clipboard_primary", - "type": "String" - } - ] - }, - { - "name": "clipboard_get_primary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_display_cutouts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Rect2" - } - }, - { - "name": "get_display_safe_area", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "get_screen_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_primary_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_keyboard_focus_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_screen_from_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741354659, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "screen_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1725937825, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1725937825, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_usable_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2439012528, - "return_value": { - "type": "Rect2i" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_dpi", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 181039630, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 909105437, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "is_touchscreen_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 4162880507, - 3323674545 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "screen_get_max_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "screen_get_refresh_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 909105437, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_pixel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1532707496, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "screen_get_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3813388802, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_image_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2601441065, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - } - ] - }, - { - "name": "screen_set_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2211511631, - "hash_compatibility": [ - 2629526904 - ], - "arguments": [ - { - "name": "orientation", - "type": "enum::DisplayServer.ScreenOrientation" - }, - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_get_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 133818562, - "return_value": { - "type": "enum::DisplayServer.ScreenOrientation" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "screen_set_keep_on", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "screen_is_kept_on", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_window_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "get_window_at_screen_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "window_get_native_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1096425680, - "hash_compatibility": [ - 2709193271 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "handle_type", - "type": "enum::DisplayServer.HandleType" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_active_popup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "window_set_popup_safe_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3317281434, - "arguments": [ - { - "name": "window", - "type": "int", - "meta": "int32" - }, - { - "name": "rect", - "type": "Rect2i" - } - ] - }, - { - "name": "window_get_popup_safe_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2161169500, - "return_value": { - "type": "Rect2i" - }, - "arguments": [ - { - "name": "window", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "window_set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 441246282, - "hash_compatibility": [ - 3043792800 - ], - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_title_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2925301799, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_mouse_passthrough", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1993637420, - "hash_compatibility": [ - 3958815166 - ], - "arguments": [ - { - "name": "region", - "type": "PackedVector2Array" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_current_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_current_screen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230941749, - "hash_compatibility": [ - 3023605688 - ], - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_position_with_decorations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_rect_changed_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091192925, - "hash_compatibility": [ - 3653650673 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_window_event_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091192925, - "hash_compatibility": [ - 3653650673 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_input_event_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091192925, - "hash_compatibility": [ - 3653650673 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_input_text_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091192925, - "hash_compatibility": [ - 3653650673 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_drop_files_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091192925, - "hash_compatibility": [ - 3653650673 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_attached_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_max_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_max_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "max_size", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_min_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_min_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "min_size", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_size_with_decorations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763922886, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2185728461, - "return_value": { - "type": "enum::DisplayServer.WindowMode" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1319965401, - "hash_compatibility": [ - 2942569511 - ], - "arguments": [ - { - "name": "mode", - "type": "enum::DisplayServer.WindowMode" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 254894155, - "hash_compatibility": [ - 3971592565 - ], - "arguments": [ - { - "name": "flag", - "type": "enum::DisplayServer.WindowFlags" - }, - { - "name": "enabled", - "type": "bool" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 802816991, - "hash_compatibility": [ - 2662949986 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::DisplayServer.WindowFlags" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2457502155, - "arguments": [ - { - "name": "icon", - "type": "Image" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_window_buttons_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "offset", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_safe_title_margins", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2295066620, - "return_value": { - "type": "Vector3i" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_request_attention", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_taskbar_progress_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506631519, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_taskbar_progress_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4119882768, - "arguments": [ - { - "name": "state", - "type": "enum::DisplayServer.ProgressState" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_move_to_foreground", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_is_focused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_can_draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_transient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "parent_window_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "window_set_exclusive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "exclusive", - "type": "bool" - } - ] - }, - { - "name": "window_set_ime_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1661950165, - "hash_compatibility": [ - 450484987 - ], - "arguments": [ - { - "name": "active", - "type": "bool" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_ime_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019273902, - "hash_compatibility": [ - 3614040015 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_vsync_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2179333492, - "hash_compatibility": [ - 1708924624 - ], - "arguments": [ - { - "name": "vsync_mode", - "type": "enum::DisplayServer.VSyncMode" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_vsync_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 578873795, - "return_value": { - "type": "enum::DisplayServer.VSyncMode" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_is_hdr_output_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_request_hdr_output", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1661950165, - "arguments": [ - { - "name": "enable", - "type": "bool" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_is_hdr_output_requested", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_is_hdr_output_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_hdr_output_reference_luminance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506631519, - "arguments": [ - { - "name": "reference_luminance", - "type": "float", - "meta": "float" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_hdr_output_reference_luminance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_hdr_output_current_reference_luminance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_hdr_output_max_luminance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506631519, - "arguments": [ - { - "name": "max_luminance", - "type": "float", - "meta": "float" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_hdr_output_max_luminance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_hdr_output_current_max_luminance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_get_output_max_linear_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_is_maximize_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_maximize_on_title_dbl_click", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "window_minimize_on_title_dbl_click", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "window_start_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_start_resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4009722312, - "arguments": [ - { - "name": "edge", - "type": "enum::DisplayServer.WindowResizeEdge" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "window_set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "accessibility_should_increase_contrast", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "accessibility_should_reduce_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "accessibility_should_reduce_transparency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "accessibility_screen_reader_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "accessibility_create_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2968347744, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "role", - "type": "enum::DisplayServer.AccessibilityRole" - } - ] - }, - { - "name": "accessibility_create_sub_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1949948826, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "parent_rid", - "type": "RID" - }, - { - "name": "role", - "type": "enum::DisplayServer.AccessibilityRole" - }, - { - "name": "insert_pos", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "accessibility_create_sub_text_edit_elements", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2702009895, - "hash_compatibility": [ - 3328635351 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "parent_rid", - "type": "RID" - }, - { - "name": "shaped_text", - "type": "RID" - }, - { - "name": "min_height", - "type": "float", - "meta": "float" - }, - { - "name": "insert_pos", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "is_last_line", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "accessibility_has_element", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_free_element", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_element_set_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175752987, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "accessibility_element_get_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_set_window_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2386961724, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "rect_out", - "type": "Rect2" - }, - { - "name": "rect_in", - "type": "Rect2" - } - ] - }, - { - "name": "accessibility_set_window_focused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - }, - { - "name": "focused", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_get_window_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_role", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3352768215, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "role", - "type": "enum::DisplayServer.AccessibilityRole" - } - ] - }, - { - "name": "accessibility_update_set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_extra_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_bounds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1378122625, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "accessibility_update_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "accessibility_update_add_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "child_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_controls", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_details", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_described_by", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_flow_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_labeled_by", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_add_related_radio_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "related_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_active_descendant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_next_on_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_previous_on_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_member_of", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "group_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_in_page_link_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_error_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "other_id", - "type": "RID" - } - ] - }, - { - "name": "accessibility_update_set_live", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2683302212, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "live", - "type": "enum::DisplayServer.AccessibilityLiveMode" - } - ] - }, - { - "name": "accessibility_update_add_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2898696987, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "action", - "type": "enum::DisplayServer.AccessibilityAction" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "accessibility_update_add_custom_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153150897, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "action_id", - "type": "int", - "meta": "int32" - }, - { - "name": "action_description", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_table_row_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_table_column_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_table_row_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_table_column_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_table_cell_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "row_index", - "type": "int", - "meta": "int32" - }, - { - "name": "column_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_table_cell_span", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "row_span", - "type": "int", - "meta": "int32" - }, - { - "name": "column_span", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_list_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_list_item_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_list_item_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_list_item_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "selected", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_list_item_expanded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "expanded", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_popup_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2040885448, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "popup", - "type": "enum::DisplayServer.AccessibilityPopupType" - } - ] - }, - { - "name": "accessibility_update_set_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "checekd", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_num_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_num_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_num_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "step", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_num_jump", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "jump", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_scroll_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_scroll_x_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_scroll_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_scroll_y_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "accessibility_update_set_text_decorations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1672422386, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "underline", - "type": "bool" - }, - { - "name": "strikethrough", - "type": "bool" - }, - { - "name": "overline", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_text_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3725995085, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "align", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "accessibility_update_set_text_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3119144029, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "text_start_id", - "type": "RID" - }, - { - "name": "start_char", - "type": "int", - "meta": "int32" - }, - { - "name": "text_end_id", - "type": "RID" - }, - { - "name": "end_char", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "accessibility_update_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3758675396, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::DisplayServer.AccessibilityFlags" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_classname", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "classname", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "placeholder", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_text_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_list_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "accessibility_update_set_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "shortcut", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_url", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "url", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_role_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_state_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "accessibility_update_set_color_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "accessibility_update_set_background_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "accessibility_update_set_foreground_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "ime_get_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "ime_get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "virtual_keyboard_show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3042891259, - "hash_compatibility": [ - 860410478 - ], - "arguments": [ - { - "name": "existing_text", - "type": "String" - }, - { - "name": "position", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "type", - "type": "enum::DisplayServer.VirtualKeyboardType", - "default_value": "0" - }, - { - "name": "max_length", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "cursor_start", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "cursor_end", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "virtual_keyboard_hide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "virtual_keyboard_get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_hardware_keyboard", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hardware_keyboard_connection_change_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "cursor_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2026291549, - "arguments": [ - { - "name": "shape", - "type": "enum::DisplayServer.CursorShape" - } - ] - }, - { - "name": "cursor_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1087724927, - "return_value": { - "type": "enum::DisplayServer.CursorShape" - } - }, - { - "name": "cursor_set_custom_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1816663697, - "hash_compatibility": [ - 1358907026 - ], - "arguments": [ - { - "name": "cursor", - "type": "Resource" - }, - { - "name": "shape", - "type": "enum::DisplayServer.CursorShape", - "default_value": "0" - }, - { - "name": "hotspot", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "get_swap_cancel_ok", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "enable_for_stealing_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "process_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "dialog_show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4115553226, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "description", - "type": "String" - }, - { - "name": "buttons", - "type": "PackedStringArray" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "dialog_input_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3088703427, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "description", - "type": "String" - }, - { - "name": "existing_text", - "type": "String" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "file_dialog_show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1386825884, - "hash_compatibility": [ - 1531299078 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "current_directory", - "type": "String" - }, - { - "name": "filename", - "type": "String" - }, - { - "name": "show_hidden", - "type": "bool" - }, - { - "name": "mode", - "type": "enum::DisplayServer.FileDialogMode" - }, - { - "name": "filters", - "type": "PackedStringArray" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "parent_window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "file_dialog_with_options_show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1448789813, - "hash_compatibility": [ - 1305318754 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "title", - "type": "String" - }, - { - "name": "current_directory", - "type": "String" - }, - { - "name": "root", - "type": "String" - }, - { - "name": "filename", - "type": "String" - }, - { - "name": "show_hidden", - "type": "bool" - }, - { - "name": "mode", - "type": "enum::DisplayServer.FileDialogMode" - }, - { - "name": "filters", - "type": "PackedStringArray" - }, - { - "name": "options", - "type": "typedarray::Dictionary" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "parent_window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "beep", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051624405 - }, - { - "name": "keyboard_get_layout_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "keyboard_get_current_layout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "keyboard_set_current_layout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "keyboard_get_layout_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "keyboard_get_layout_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "keyboard_get_keycode_from_physical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3447613187, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "keyboard_get_label_from_physical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3447613187, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "show_emoji_and_symbol_picker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051624405 - }, - { - "name": "color_picker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 151643214, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "process_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "force_process_and_drop_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_native_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "create_status_indicator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1904285171, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "tooltip", - "type": "String" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "status_indicator_set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "status_indicator_set_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "status_indicator_set_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "menu_rid", - "type": "RID" - } - ] - }, - { - "name": "status_indicator_set_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 957362965, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "status_indicator_get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3327874267, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "delete_status_indicator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "tablet_get_driver_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "tablet_get_driver_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "tablet_get_current_driver", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "tablet_set_current_driver", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "is_window_transparency_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "register_additional_output", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "unregister_additional_output", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "has_additional_outputs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_in_pip_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1885608816, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "pip_mode_enter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "pip_mode_set_aspect_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3471927553, - "arguments": [ - { - "name": "numerator", - "type": "int", - "meta": "int32" - }, - { - "name": "denominator", - "type": "int", - "meta": "int32" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "pip_mode_set_auto_enter_on_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1661950165, - "arguments": [ - { - "name": "auto_enter_on_background", - "type": "bool" - }, - { - "name": "window_id", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - } - ], - "signals": [ - { - "name": "orientation_changed", - "arguments": [ - { - "name": "orientation", - "type": "int" - } - ] - } - ] - }, - { - "name": "DrawableTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "enums": [ - { - "name": "DrawableFormat", - "is_bitfield": false, - "values": [ - { - "name": "DRAWABLE_FORMAT_RGBA8", - "value": 0 - }, - { - "name": "DRAWABLE_FORMAT_RGBA8_SRGB", - "value": 1 - }, - { - "name": "DRAWABLE_FORMAT_RGBAH", - "value": 2 - }, - { - "name": "DRAWABLE_FORMAT_RGBAF", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2875673594, - "arguments": [ - { - "name": "format", - "type": "enum::DrawableTexture2D.DrawableFormat" - } - ] - }, - { - "name": "set_use_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mipmaps", - "type": "bool" - } - ] - }, - { - "name": "get_use_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 674365339, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "format", - "type": "enum::DrawableTexture2D.DrawableFormat" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "use_mipmaps", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "blit_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 319217173, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "source", - "type": "Texture2D" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "mipmap", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "material", - "type": "Material", - "default_value": "null" - } - ] - }, - { - "name": "blit_rect_multi", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3074783066, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "sources", - "type": "typedarray::Texture2D" - }, - { - "name": "extra_targets", - "type": "typedarray::DrawableTexture2D" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "mipmap", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "material", - "type": "Material", - "default_value": "null" - } - ] - }, - { - "name": "generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "ENetConnection", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "CompressionMode", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESS_NONE", - "value": 0 - }, - { - "name": "COMPRESS_RANGE_CODER", - "value": 1 - }, - { - "name": "COMPRESS_FASTLZ", - "value": 2 - }, - { - "name": "COMPRESS_ZLIB", - "value": 3 - }, - { - "name": "COMPRESS_ZSTD", - "value": 4 - } - ] - }, - { - "name": "EventType", - "is_bitfield": false, - "values": [ - { - "name": "EVENT_ERROR", - "value": -1 - }, - { - "name": "EVENT_NONE", - "value": 0 - }, - { - "name": "EVENT_CONNECT", - "value": 1 - }, - { - "name": "EVENT_DISCONNECT", - "value": 2 - }, - { - "name": "EVENT_RECEIVE", - "value": 3 - } - ] - }, - { - "name": "HostStatistic", - "is_bitfield": false, - "values": [ - { - "name": "HOST_TOTAL_SENT_DATA", - "value": 0 - }, - { - "name": "HOST_TOTAL_SENT_PACKETS", - "value": 1 - }, - { - "name": "HOST_TOTAL_RECEIVED_DATA", - "value": 2 - }, - { - "name": "HOST_TOTAL_RECEIVED_PACKETS", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "create_host_bound", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1515002313, - "hash_compatibility": [ - 866250949 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "bind_address", - "type": "String" - }, - { - "name": "bind_port", - "type": "int", - "meta": "int32" - }, - { - "name": "max_peers", - "type": "int", - "meta": "int32", - "default_value": "32" - }, - { - "name": "max_channels", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "in_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "create_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 117198950, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "max_peers", - "type": "int", - "meta": "int32", - "default_value": "32" - }, - { - "name": "max_channels", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "in_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "destroy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "connect_to_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2171300490, - "hash_compatibility": [ - 385984708 - ], - "return_value": { - "type": "ENetPacketPeer" - }, - "arguments": [ - { - "name": "address", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "channels", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "data", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "service", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2402345344, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "timeout", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "flush", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "bandwidth_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2302169788, - "arguments": [ - { - "name": "in_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "channel_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "limit", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "broadcast", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2772371345, - "arguments": [ - { - "name": "channel", - "type": "int", - "meta": "int32" - }, - { - "name": "packet", - "type": "PackedByteArray" - }, - { - "name": "flags", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "compress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2660215187, - "arguments": [ - { - "name": "mode", - "type": "enum::ENetConnection.CompressionMode" - } - ] - }, - { - "name": "dtls_server_setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262296096, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "server_options", - "type": "TLSOptions" - } - ] - }, - { - "name": "dtls_client_setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1966198364, - "hash_compatibility": [ - 3097527179 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "hostname", - "type": "String" - }, - { - "name": "client_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "refuse_new_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "refuse", - "type": "bool" - } - ] - }, - { - "name": "pop_statistic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2166904170, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "statistic", - "type": "enum::ENetConnection.HostStatistic" - } - ] - }, - { - "name": "get_max_channels", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_peers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::ENetPacketPeer" - } - }, - { - "name": "socket_send", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1100646812, - "arguments": [ - { - "name": "destination_address", - "type": "String" - }, - { - "name": "destination_port", - "type": "int", - "meta": "int32" - }, - { - "name": "packet", - "type": "PackedByteArray" - } - ] - } - ] - }, - { - "name": "ENetMultiplayerPeer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerPeer", - "api_type": "core", - "methods": [ - { - "name": "create_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2917761309, - "hash_compatibility": [ - 1616151701 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "max_clients", - "type": "int", - "meta": "int32", - "default_value": "32" - }, - { - "name": "max_channels", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "in_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "create_client", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2327163476, - "hash_compatibility": [ - 920217784 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "address", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "channel_count", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "in_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "local_port", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "create_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "unique_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_mesh_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1293458335, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "host", - "type": "ENetConnection" - } - ] - }, - { - "name": "set_bind_ip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "ip", - "type": "String" - } - ] - }, - { - "name": "get_host", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4103238886, - "return_value": { - "type": "ENetConnection" - } - }, - { - "name": "get_peer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3793311544, - "return_value": { - "type": "ENetPacketPeer" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "ENetConnection", - "name": "host", - "getter": "get_host" - } - ] - }, - { - "name": "ENetPacketPeer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "PacketPeer", - "api_type": "core", - "constants": [ - { - "name": "PACKET_LOSS_SCALE", - "value": 65536 - }, - { - "name": "PACKET_THROTTLE_SCALE", - "value": 32 - }, - { - "name": "FLAG_RELIABLE", - "value": 1 - }, - { - "name": "FLAG_UNSEQUENCED", - "value": 2 - }, - { - "name": "FLAG_UNRELIABLE_FRAGMENT", - "value": 8 - } - ], - "enums": [ - { - "name": "PeerState", - "is_bitfield": false, - "values": [ - { - "name": "STATE_DISCONNECTED", - "value": 0 - }, - { - "name": "STATE_CONNECTING", - "value": 1 - }, - { - "name": "STATE_ACKNOWLEDGING_CONNECT", - "value": 2 - }, - { - "name": "STATE_CONNECTION_PENDING", - "value": 3 - }, - { - "name": "STATE_CONNECTION_SUCCEEDED", - "value": 4 - }, - { - "name": "STATE_CONNECTED", - "value": 5 - }, - { - "name": "STATE_DISCONNECT_LATER", - "value": 6 - }, - { - "name": "STATE_DISCONNECTING", - "value": 7 - }, - { - "name": "STATE_ACKNOWLEDGING_DISCONNECT", - "value": 8 - }, - { - "name": "STATE_ZOMBIE", - "value": 9 - } - ] - }, - { - "name": "PeerStatistic", - "is_bitfield": false, - "values": [ - { - "name": "PEER_PACKET_LOSS", - "value": 0 - }, - { - "name": "PEER_PACKET_LOSS_VARIANCE", - "value": 1 - }, - { - "name": "PEER_PACKET_LOSS_EPOCH", - "value": 2 - }, - { - "name": "PEER_ROUND_TRIP_TIME", - "value": 3 - }, - { - "name": "PEER_ROUND_TRIP_TIME_VARIANCE", - "value": 4 - }, - { - "name": "PEER_LAST_ROUND_TRIP_TIME", - "value": 5 - }, - { - "name": "PEER_LAST_ROUND_TRIP_TIME_VARIANCE", - "value": 6 - }, - { - "name": "PEER_PACKET_THROTTLE", - "value": 7 - }, - { - "name": "PEER_PACKET_THROTTLE_LIMIT", - "value": 8 - }, - { - "name": "PEER_PACKET_THROTTLE_COUNTER", - "value": 9 - }, - { - "name": "PEER_PACKET_THROTTLE_EPOCH", - "value": 10 - }, - { - "name": "PEER_PACKET_THROTTLE_ACCELERATION", - "value": 11 - }, - { - "name": "PEER_PACKET_THROTTLE_DECELERATION", - "value": 12 - }, - { - "name": "PEER_PACKET_THROTTLE_INTERVAL", - "value": 13 - } - ] - } - ], - "methods": [ - { - "name": "peer_disconnect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "data", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "peer_disconnect_later", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "data", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "peer_disconnect_now", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "data", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "ping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "ping_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "ping_interval", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "send", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 120522849, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "channel", - "type": "int", - "meta": "int32" - }, - { - "name": "packet", - "type": "PackedByteArray" - }, - { - "name": "flags", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "throttle_configure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1649997291, - "arguments": [ - { - "name": "interval", - "type": "int", - "meta": "int32" - }, - { - "name": "acceleration", - "type": "int", - "meta": "int32" - }, - { - "name": "deceleration", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1649997291, - "arguments": [ - { - "name": "timeout", - "type": "int", - "meta": "int32" - }, - { - "name": "timeout_min", - "type": "int", - "meta": "int32" - }, - { - "name": "timeout_max", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_packet_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_remote_address", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_remote_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_statistic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1642578323, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "statistic", - "type": "enum::ENetPacketPeer.PeerStatistic" - } - ] - }, - { - "name": "get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711068532, - "return_value": { - "type": "enum::ENetPacketPeer.PeerState" - } - }, - { - "name": "get_channels", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "EditorCommandPalette", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ConfirmationDialog", - "api_type": "editor", - "methods": [ - { - "name": "add_command", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 864043298, - "hash_compatibility": [ - 3664614892 - ], - "arguments": [ - { - "name": "command_name", - "type": "String" - }, - { - "name": "key_name", - "type": "String" - }, - { - "name": "binded_callable", - "type": "Callable" - }, - { - "name": "shortcut_text", - "type": "String", - "default_value": "\"None\"" - } - ] - }, - { - "name": "remove_command", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "key_name", - "type": "String" - } - ] - } - ] - }, - { - "name": "EditorContextMenuPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "ContextMenuSlot", - "is_bitfield": false, - "values": [ - { - "name": "CONTEXT_SLOT_SCENE_TREE", - "value": 0 - }, - { - "name": "CONTEXT_SLOT_FILESYSTEM", - "value": 1 - }, - { - "name": "CONTEXT_SLOT_SCRIPT_EDITOR", - "value": 2 - }, - { - "name": "CONTEXT_SLOT_FILESYSTEM_CREATE", - "value": 3 - }, - { - "name": "CONTEXT_SLOT_SCRIPT_EDITOR_CODE", - "value": 4 - }, - { - "name": "CONTEXT_SLOT_SCENE_TABS", - "value": 5 - }, - { - "name": "CONTEXT_SLOT_2D_EDITOR", - "value": 6 - }, - { - "name": "CONTEXT_SLOT_INSPECTOR_PROPERTY", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "_popup_menu", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4015028928, - "arguments": [ - { - "name": "paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "add_menu_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 851596305, - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "add_context_menu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2748336951, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "icon", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "add_context_menu_item_from_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3799546916, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "icon", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "add_context_submenu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1994674995, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "menu", - "type": "PopupMenu" - }, - { - "name": "icon", - "type": "Texture2D", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "EditorDebuggerPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_setup_session", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "session_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_has_capture", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "capture", - "type": "String" - } - ] - }, - { - "name": "_capture", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2607901833, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "data", - "type": "Array" - }, - { - "name": "session_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_goto_script_line", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1208513123, - "arguments": [ - { - "name": "script", - "type": "Script" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_breakpoints_cleared_in_tree", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_breakpoint_set_in_tree", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2338735218, - "arguments": [ - { - "name": "script", - "type": "Script" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_session", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3061968499, - "return_value": { - "type": "EditorDebuggerSession" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sessions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "Array" - } - } - ] - }, - { - "name": "EditorDebuggerSession", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "send_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 85656714, - "hash_compatibility": [ - 3780025912 - ], - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "data", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "toggle_profiler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1198443697, - "hash_compatibility": [ - 35674246 - ], - "arguments": [ - { - "name": "profiler", - "type": "String" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "data", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "is_breaked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_debuggable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_session_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "remove_session_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "set_breakpoint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108344793, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - } - ], - "signals": [ - { - "name": "started" - }, - { - "name": "stopped" - }, - { - "name": "breaked", - "arguments": [ - { - "name": "can_debug", - "type": "bool" - } - ] - }, - { - "name": "continued" - } - ] - }, - { - "name": "EditorDock", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "MarginContainer", - "api_type": "editor", - "enums": [ - { - "name": "DockLayout", - "is_bitfield": true, - "values": [ - { - "name": "DOCK_LAYOUT_VERTICAL", - "value": 1 - }, - { - "name": "DOCK_LAYOUT_HORIZONTAL", - "value": 2 - }, - { - "name": "DOCK_LAYOUT_FLOATING", - "value": 4 - }, - { - "name": "DOCK_LAYOUT_ALL", - "value": 7 - } - ] - }, - { - "name": "DockSlot", - "is_bitfield": false, - "values": [ - { - "name": "DOCK_SLOT_NONE", - "value": -1 - }, - { - "name": "DOCK_SLOT_LEFT_UL", - "value": 0 - }, - { - "name": "DOCK_SLOT_LEFT_BL", - "value": 1 - }, - { - "name": "DOCK_SLOT_LEFT_UR", - "value": 2 - }, - { - "name": "DOCK_SLOT_LEFT_BR", - "value": 3 - }, - { - "name": "DOCK_SLOT_RIGHT_UL", - "value": 4 - }, - { - "name": "DOCK_SLOT_RIGHT_BL", - "value": 5 - }, - { - "name": "DOCK_SLOT_RIGHT_UR", - "value": 6 - }, - { - "name": "DOCK_SLOT_RIGHT_BR", - "value": 7 - }, - { - "name": "DOCK_SLOT_BOTTOM", - "value": 8 - }, - { - "name": "DOCK_SLOT_BOTTOM_L", - "value": 9 - }, - { - "name": "DOCK_SLOT_BOTTOM_R", - "value": 10 - }, - { - "name": "DOCK_SLOT_MAX", - "value": 11 - } - ] - } - ], - "methods": [ - { - "name": "_update_layout", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "layout", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_save_layout_to_config", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3076455711, - "arguments": [ - { - "name": "config", - "type": "ConfigFile" - }, - { - "name": "section", - "type": "String" - } - ] - }, - { - "name": "_load_layout_from_config", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2838822993, - "arguments": [ - { - "name": "config", - "type": "ConfigFile" - }, - { - "name": "section", - "type": "String" - } - ] - }, - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "make_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_layout_key", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "layout_key", - "type": "String" - } - ] - }, - { - "name": "get_layout_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_global", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "global", - "type": "bool" - } - ] - }, - { - "name": "is_global", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_transient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "transient", - "type": "bool" - } - ] - }, - { - "name": "is_transient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_closable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "closable", - "type": "bool" - } - ] - }, - { - "name": "is_closable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_icon_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "icon_name", - "type": "StringName" - } - ] - }, - { - "name": "get_icon_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_dock_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_dock_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_force_show_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force", - "type": "bool" - } - ] - }, - { - "name": "get_force_show_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_title_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_title_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_dock_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 857163497, - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - } - ] - }, - { - "name": "get_dock_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3415666916, - "return_value": { - "type": "Shortcut" - } - }, - { - "name": "set_default_slot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4142995464, - "arguments": [ - { - "name": "slot", - "type": "enum::EditorDock.DockSlot" - } - ] - }, - { - "name": "get_default_slot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3298961740, - "return_value": { - "type": "enum::EditorDock.DockSlot" - } - }, - { - "name": "set_available_layouts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3440531249, - "arguments": [ - { - "name": "layouts", - "type": "bitfield::EditorDock.DockLayout" - } - ] - }, - { - "name": "get_available_layouts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495015512, - "return_value": { - "type": "bitfield::EditorDock.DockLayout" - } - } - ], - "signals": [ - { - "name": "opened" - }, - { - "name": "closed" - } - ], - "properties": [ - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "String", - "name": "layout_key", - "setter": "set_layout_key", - "getter": "get_layout_key" - }, - { - "type": "bool", - "name": "global", - "setter": "set_global", - "getter": "is_global" - }, - { - "type": "bool", - "name": "transient", - "setter": "set_transient", - "getter": "is_transient" - }, - { - "type": "bool", - "name": "closable", - "setter": "set_closable", - "getter": "is_closable" - }, - { - "type": "StringName", - "name": "icon_name", - "setter": "set_icon_name", - "getter": "get_icon_name" - }, - { - "type": "Texture2D", - "name": "dock_icon", - "setter": "set_dock_icon", - "getter": "get_dock_icon" - }, - { - "type": "bool", - "name": "force_show_icon", - "setter": "set_force_show_icon", - "getter": "get_force_show_icon" - }, - { - "type": "Color", - "name": "title_color", - "setter": "set_title_color", - "getter": "get_title_color" - }, - { - "type": "Shortcut", - "name": "dock_shortcut", - "setter": "set_dock_shortcut", - "getter": "get_dock_shortcut" - }, - { - "type": "int", - "name": "default_slot", - "setter": "set_default_slot", - "getter": "get_default_slot" - }, - { - "type": "int", - "name": "available_layouts", - "setter": "set_available_layouts", - "getter": "get_available_layouts" - } - ] - }, - { - "name": "EditorExportPlatform", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "ExportMessageType", - "is_bitfield": false, - "values": [ - { - "name": "EXPORT_MESSAGE_NONE", - "value": 0 - }, - { - "name": "EXPORT_MESSAGE_INFO", - "value": 1 - }, - { - "name": "EXPORT_MESSAGE_WARNING", - "value": 2 - }, - { - "name": "EXPORT_MESSAGE_ERROR", - "value": 3 - } - ] - }, - { - "name": "DebugFlags", - "is_bitfield": true, - "values": [ - { - "name": "DEBUG_FLAG_DUMB_CLIENT", - "value": 1 - }, - { - "name": "DEBUG_FLAG_REMOTE_DEBUG", - "value": 2 - }, - { - "name": "DEBUG_FLAG_REMOTE_DEBUG_LOCALHOST", - "value": 4 - }, - { - "name": "DEBUG_FLAG_VIEW_COLLISIONS", - "value": 8 - }, - { - "name": "DEBUG_FLAG_VIEW_NAVIGATION", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "get_os_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "create_preset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2572397818, - "return_value": { - "type": "EditorExportPreset" - } - }, - { - "name": "find_export_template", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2248993622, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "template_file_name", - "type": "String" - } - ] - }, - { - "name": "get_current_presets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "save_pack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3420080977, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "embed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "save_zip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1485052307, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_pack_patch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1485052307, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_zip_patch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1485052307, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "gen_export_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2976483270, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "export_project_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1063735070, - "hash_compatibility": [ - 425454869 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "save_cb", - "type": "Callable" - }, - { - "name": "shared_cb", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "export_project", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1201906210, - "hash_compatibility": [ - 3879521245 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags", - "default_value": "0" - }, - { - "name": "notify", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "export_pack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3879521245, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags", - "default_value": "0" - } - ] - }, - { - "name": "export_zip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3879521245, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags", - "default_value": "0" - } - ] - }, - { - "name": "export_pack_patch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 608021658, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "patches", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags", - "default_value": "0" - } - ] - }, - { - "name": "export_zip_patch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 608021658, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "patches", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags", - "default_value": "0" - } - ] - }, - { - "name": "clear_messages", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 782767225, - "arguments": [ - { - "name": "type", - "type": "enum::EditorExportPlatform.ExportMessageType" - }, - { - "name": "category", - "type": "String" - }, - { - "name": "message", - "type": "String" - } - ] - }, - { - "name": "get_message_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_message_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2667287293, - "return_value": { - "type": "enum::EditorExportPlatform.ExportMessageType" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_message_category", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_message_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_worst_message_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2580557466, - "return_value": { - "type": "enum::EditorExportPlatform.ExportMessageType" - } - }, - { - "name": "ssh_run_on_remote", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3163734797, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "String" - }, - { - "name": "ssh_arg", - "type": "PackedStringArray" - }, - { - "name": "cmd_args", - "type": "String" - }, - { - "name": "output", - "type": "Array", - "default_value": "[]" - }, - { - "name": "port_fwd", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "ssh_run_on_remote_no_wait", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3606362233, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "String" - }, - { - "name": "ssh_args", - "type": "PackedStringArray" - }, - { - "name": "cmd_args", - "type": "String" - }, - { - "name": "port_fwd", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "ssh_push_to_remote", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218756989, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "String" - }, - { - "name": "scp_args", - "type": "PackedStringArray" - }, - { - "name": "src_file", - "type": "String" - }, - { - "name": "dst_file", - "type": "String" - } - ] - }, - { - "name": "get_internal_export_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 89550086, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "get_forced_export_files", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1939331020, - "hash_compatibility": [ - 2981934095 - ], - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "EditorExportPlatformAndroid", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatform", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformAppleEmbedded", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "EditorExportPlatform", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatform", - "api_type": "editor", - "methods": [ - { - "name": "_get_preset_features", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1387456631, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - } - ] - }, - { - "name": "_is_executable", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_export_options", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_should_update_export_options", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_export_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 969350244, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_get_export_option_warning", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 805886795, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "option", - "type": "StringName" - } - ] - }, - { - "name": "_get_os_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_logo", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "_poll_export", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_options_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_options_tooltip", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_option_icon", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3536238170, - "hash_compatibility": [ - 3991065292 - ], - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_option_label", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_option_tooltip", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_device_architecture", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_cleanup", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_run", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1726914928, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "debug_flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_get_run_icon", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "_can_export", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 493961987, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_has_valid_export_configuration", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 493961987, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_has_valid_project_configuration", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3117166915, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - } - ] - }, - { - "name": "_get_binary_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1387456631, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - } - ] - }, - { - "name": "_export_project", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1328957260, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_export_pack", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1328957260, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_export_zip", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1328957260, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_export_pack_patch", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 454765315, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "patches", - "type": "PackedStringArray" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_export_zip_patch", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 454765315, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "preset", - "type": "EditorExportPreset" - }, - { - "name": "debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "patches", - "type": "PackedStringArray" - }, - { - "name": "flags", - "type": "bitfield::EditorExportPlatform.DebugFlags" - } - ] - }, - { - "name": "_get_platform_features", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_debug_protocol", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_initialize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "set_config_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3089850668, - "arguments": [ - { - "name": "error_text", - "type": "String" - } - ] - }, - { - "name": "get_config_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_config_missing_templates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1695273946, - "arguments": [ - { - "name": "missing_templates", - "type": "bool" - } - ] - }, - { - "name": "get_config_missing_templates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "EditorExportPlatformIOS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatformAppleEmbedded", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformLinuxBSD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatformPC", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformMacOS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatform", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformPC", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "EditorExportPlatform", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformVisionOS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatformAppleEmbedded", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformWeb", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatform", - "api_type": "editor" - }, - { - "name": "EditorExportPlatformWindows", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorExportPlatformPC", - "api_type": "editor" - }, - { - "name": "EditorExportPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_export_file", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3533781844, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "type", - "type": "String" - }, - { - "name": "features", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_export_begin", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2765511433, - "arguments": [ - { - "name": "features", - "type": "PackedStringArray" - }, - { - "name": "is_debug", - "type": "bool" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_export_end", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_end_generate_apple_embedded_project", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2678287736, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "will_build_archive", - "type": "bool" - } - ] - }, - { - "name": "_begin_customize_resources", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1312023292, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "features", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_customize_resource", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 307917495, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_begin_customize_scenes", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1312023292, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "features", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_customize_scene", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 498701822, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "scene", - "type": "Node" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_customization_configuration_hash", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "_end_customize_scenes", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_end_customize_resources", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_export_options", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 488349689, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "_get_export_options_overrides", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2837326714, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "_should_update_export_options", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1866233299, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "_get_export_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3537301980, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_get_export_option_warning", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3340251247, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_get_export_features", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1057664154, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_supports_platform", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1866233299, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "_get_android_dependencies", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1057664154, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_android_dependencies_maven_repos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1057664154, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_android_libraries", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1057664154, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_android_manifest_activity_element_contents", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4013372917, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_android_manifest_application_element_contents", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4013372917, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_get_android_manifest_element_contents", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4013372917, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "debug", - "type": "bool" - } - ] - }, - { - "name": "_update_android_prebuilt_manifest", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3304965187, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - }, - { - "name": "manifest_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "add_shared_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3098291045, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "tags", - "type": "PackedStringArray" - }, - { - "name": "target", - "type": "String" - } - ] - }, - { - "name": "add_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 527928637, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "file", - "type": "PackedByteArray" - }, - { - "name": "remap", - "type": "bool" - } - ] - }, - { - "name": "add_apple_embedded_platform_project_static_lib", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_framework", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_embedded_framework", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_plist_content", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "plist_content", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_linker_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "flags", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_bundle_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_apple_embedded_platform_cpp_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "add_ios_project_static_lib", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_ios_framework", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_ios_embedded_framework", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_ios_plist_content", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "plist_content", - "type": "String" - } - ] - }, - { - "name": "add_ios_linker_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "flags", - "type": "String" - } - ] - }, - { - "name": "add_ios_bundle_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_ios_cpp_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "add_macos_plugin_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "skip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_option", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_export_preset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1610607222, - "return_value": { - "type": "EditorExportPreset" - } - }, - { - "name": "get_export_platform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 282254641, - "return_value": { - "type": "EditorExportPlatform" - } - } - ] - }, - { - "name": "EditorExportPreset", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "ExportFilter", - "is_bitfield": false, - "values": [ - { - "name": "EXPORT_ALL_RESOURCES", - "value": 0 - }, - { - "name": "EXPORT_SELECTED_SCENES", - "value": 1 - }, - { - "name": "EXPORT_SELECTED_RESOURCES", - "value": 2 - }, - { - "name": "EXCLUDE_SELECTED_RESOURCES", - "value": 3 - }, - { - "name": "EXPORT_CUSTOMIZED", - "value": 4 - } - ] - }, - { - "name": "FileExportMode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_FILE_NOT_CUSTOMIZED", - "value": 0 - }, - { - "name": "MODE_FILE_STRIP", - "value": 1 - }, - { - "name": "MODE_FILE_KEEP", - "value": 2 - }, - { - "name": "MODE_FILE_REMOVE", - "value": 3 - } - ] - }, - { - "name": "ScriptExportMode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_SCRIPT_TEXT", - "value": 0 - }, - { - "name": "MODE_SCRIPT_BINARY_TOKENS", - "value": 1 - }, - { - "name": "MODE_SCRIPT_BINARY_TOKENS_COMPRESSED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "has", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "get_files_to_export", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_customized_files", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_customized_files_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_export_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_file_export_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407825436, - "return_value": { - "type": "enum::EditorExportPreset.FileExportMode" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "default", - "type": "enum::EditorExportPreset.FileExportMode", - "default_value": "0" - } - ] - }, - { - "name": "get_project_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_preset_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_runnable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "are_advanced_options_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_dedicated_server", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_export_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227045696, - "return_value": { - "type": "enum::EditorExportPreset.ExportFilter" - } - }, - { - "name": "get_include_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_exclude_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_custom_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_patches", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_export_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_encryption_in_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_encryption_ex_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_encrypt_pck", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_encrypt_directory", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_encryption_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_script_export_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2835358398, - "hash_compatibility": [ - 3905245786 - ], - "return_value": { - "type": "enum::EditorExportPreset.ScriptExportMode" - } - }, - { - "name": "get_or_env", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 389838787, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "env_var", - "type": "String" - } - ] - }, - { - "name": "get_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1132184663, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "windows_version", - "type": "bool" - } - ] - } - ] - }, - { - "name": "EditorFeatureProfile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "Feature", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_3D", - "value": 0 - }, - { - "name": "FEATURE_SCRIPT", - "value": 1 - }, - { - "name": "FEATURE_ASSET_LIB", - "value": 2 - }, - { - "name": "FEATURE_SCENE_TREE", - "value": 3 - }, - { - "name": "FEATURE_NODE_DOCK", - "value": 4 - }, - { - "name": "FEATURE_FILESYSTEM_DOCK", - "value": 5 - }, - { - "name": "FEATURE_IMPORT_DOCK", - "value": 6 - }, - { - "name": "FEATURE_HISTORY_DOCK", - "value": 7 - }, - { - "name": "FEATURE_GAME", - "value": 8 - }, - { - "name": "FEATURE_SIGNALS_DOCK", - "value": 9 - }, - { - "name": "FEATURE_GROUPS_DOCK", - "value": 10 - }, - { - "name": "FEATURE_MAX", - "value": 11 - } - ] - } - ], - "methods": [ - { - "name": "set_disable_class", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2524380260, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_class_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - } - ] - }, - { - "name": "set_disable_class_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2524380260, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_class_editor_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - } - ] - }, - { - "name": "set_disable_class_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 865197084, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_class_property_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "set_disable_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1884871044, - "arguments": [ - { - "name": "feature", - "type": "enum::EditorFeatureProfile.Feature" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_feature_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2974403161, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::EditorFeatureProfile.Feature" - } - ] - }, - { - "name": "get_feature_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3401335809, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::EditorFeatureProfile.Feature" - } - ] - }, - { - "name": "save_to_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "EditorFileDialog", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "FileDialog", - "api_type": "editor", - "methods": [ - { - "name": "add_side_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402368861, - "arguments": [ - { - "name": "menu", - "type": "Control" - }, - { - "name": "title", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "set_disable_overwrite_warning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_overwrite_warning_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "disable_overwrite_warning", - "setter": "set_disable_overwrite_warning", - "getter": "is_overwrite_warning_disabled" - } - ] - }, - { - "name": "EditorFileSystem", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "editor", - "methods": [ - { - "name": "get_filesystem", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 842323275, - "return_value": { - "type": "EditorFileSystemDirectory" - } - }, - { - "name": "is_scanning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_importing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_scanning_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "scan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "scan_sources", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "update_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_filesystem_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188521125, - "return_value": { - "type": "EditorFileSystemDirectory" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_file_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "reimport_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "files", - "type": "PackedStringArray" - } - ] - } - ], - "signals": [ - { - "name": "filesystem_changed" - }, - { - "name": "script_classes_updated" - }, - { - "name": "sources_changed", - "arguments": [ - { - "name": "exist", - "type": "bool" - } - ] - }, - { - "name": "resources_reimporting", - "arguments": [ - { - "name": "resources", - "type": "PackedStringArray" - } - ] - }, - { - "name": "resources_reimported", - "arguments": [ - { - "name": "resources", - "type": "PackedStringArray" - } - ] - }, - { - "name": "resources_reload", - "arguments": [ - { - "name": "resources", - "type": "PackedStringArray" - } - ] - } - ] - }, - { - "name": "EditorFileSystemDirectory", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "editor", - "methods": [ - { - "name": "get_subdir_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_subdir", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2330964164, - "return_value": { - "type": "EditorFileSystemDirectory" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_script_class_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_script_class_extends", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_file_import_is_valid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 842323275, - "return_value": { - "type": "EditorFileSystemDirectory" - } - }, - { - "name": "find_file_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "find_dir_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - } - ] - }, - { - "name": "EditorFileSystemImportFormatSupportQuery", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_is_active", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_file_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_query", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "EditorImportPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor", - "methods": [ - { - "name": "_get_importer_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_visible_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_preset_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_preset_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "preset_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_import_options", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 520498173, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "preset_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_save_extension", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_resource_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_priority", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_import_order", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_format_version", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 240466755, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "option_name", - "type": "StringName" - }, - { - "name": "options", - "type": "Dictionary" - } - ] - }, - { - "name": "_import", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4108152118, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "source_file", - "type": "String" - }, - { - "name": "save_path", - "type": "String" - }, - { - "name": "options", - "type": "Dictionary" - }, - { - "name": "platform_variants", - "type": "typedarray::String" - }, - { - "name": "gen_files", - "type": "typedarray::String" - } - ] - }, - { - "name": "_can_import_threaded", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "append_import_external_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 320493106, - "hash_compatibility": [ - 3645925746 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "custom_options", - "type": "Dictionary", - "default_value": "{}" - }, - { - "name": "custom_importer", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "generator_parameters", - "type": "Variant", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "EditorInspector", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ScrollContainer", - "api_type": "editor", - "methods": [ - { - "name": "edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "get_selected_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_edited_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2050059866, - "return_value": { - "type": "Object" - } - }, - { - "name": "collapse_all_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "expand_all_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "expand_revertable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "instantiate_property_editor", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1429914152, - "return_value": { - "type": "EditorProperty" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "type", - "type": "enum::Variant.Type" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "hint", - "type": "enum::PropertyHint" - }, - { - "name": "hint_text", - "type": "String" - }, - { - "name": "usage", - "type": "int", - "meta": "uint32" - }, - { - "name": "wide", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_default_inspector", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2419746798, - "return_value": { - "type": "EditorInspector" - }, - "arguments": [ - { - "name": "filter_line_edit", - "type": "LineEdit", - "default_value": "null" - } - ] - } - ], - "signals": [ - { - "name": "property_selected", - "arguments": [ - { - "name": "property", - "type": "String" - } - ] - }, - { - "name": "property_keyed", - "arguments": [ - { - "name": "property", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "advance", - "type": "bool" - } - ] - }, - { - "name": "property_deleted", - "arguments": [ - { - "name": "property", - "type": "String" - } - ] - }, - { - "name": "resource_selected", - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "object_id_selected", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "property_edited", - "arguments": [ - { - "name": "property", - "type": "String" - } - ] - }, - { - "name": "property_toggled", - "arguments": [ - { - "name": "property", - "type": "String" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "edited_object_changed" - }, - { - "name": "restart_requested" - } - ] - }, - { - "name": "EditorInspectorPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_can_handle", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 397768994, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "_parse_begin", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "_parse_category", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 357144787, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "category", - "type": "String" - } - ] - }, - { - "name": "_parse_group", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 357144787, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "group", - "type": "String" - } - ] - }, - { - "name": "_parse_property", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1087679910, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "type", - "type": "enum::Variant.Type" - }, - { - "name": "name", - "type": "String" - }, - { - "name": "hint_type", - "type": "enum::PropertyHint" - }, - { - "name": "hint_string", - "type": "String" - }, - { - "name": "usage_flags", - "type": "bitfield::PropertyUsageFlags" - }, - { - "name": "wide", - "type": "bool" - } - ] - }, - { - "name": "_parse_end", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "add_custom_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "add_property_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2042698479, - "hash_compatibility": [ - 3406284123 - ], - "arguments": [ - { - "name": "property", - "type": "String" - }, - { - "name": "editor", - "type": "Control" - }, - { - "name": "add_to_end", - "type": "bool", - "default_value": "false" - }, - { - "name": "label", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "add_property_editor_for_multiple_properties", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788598683, - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "properties", - "type": "PackedStringArray" - }, - { - "name": "editor", - "type": "Control" - } - ] - } - ] - }, - { - "name": "EditorInterface", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "editor", - "methods": [ - { - "name": "restart_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "save", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_command_palette", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2471163807, - "return_value": { - "type": "EditorCommandPalette" - } - }, - { - "name": "get_resource_filesystem", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 780151678, - "return_value": { - "type": "EditorFileSystem" - } - }, - { - "name": "get_editor_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1595760068, - "return_value": { - "type": "EditorPaths" - } - }, - { - "name": "get_resource_previewer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 943486957, - "return_value": { - "type": "EditorResourcePreview" - } - }, - { - "name": "get_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2690272531, - "return_value": { - "type": "EditorSelection" - } - }, - { - "name": "get_editor_settings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4086932459, - "return_value": { - "type": "EditorSettings" - } - }, - { - "name": "get_editor_toaster", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3612675797, - "return_value": { - "type": "EditorToaster" - } - }, - { - "name": "get_editor_undo_redo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3819628421, - "return_value": { - "type": "EditorUndoRedoManager" - } - }, - { - "name": "make_mesh_previews", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 878078554, - "return_value": { - "type": "typedarray::Texture2D" - }, - "arguments": [ - { - "name": "meshes", - "type": "typedarray::Mesh" - }, - { - "name": "preview_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_plugin_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "plugin", - "type": "String" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_plugin_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "plugin", - "type": "String" - } - ] - }, - { - "name": "get_editor_theme", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3846893731, - "return_value": { - "type": "Theme" - } - }, - { - "name": "get_base_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "get_editor_main_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706218421, - "return_value": { - "type": "VBoxContainer" - } - }, - { - "name": "get_script_editor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 90868003, - "return_value": { - "type": "ScriptEditor" - } - }, - { - "name": "get_editor_viewport_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3750751911, - "return_value": { - "type": "SubViewport" - } - }, - { - "name": "get_editor_viewport_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1970834490, - "return_value": { - "type": "SubViewport" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_main_screen_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_distraction_free_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enter", - "type": "bool" - } - ] - }, - { - "name": "is_distraction_free_mode_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_multi_window_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_editor_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_editor_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_node_3d_snap_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_node_3d_translate_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_node_3d_rotate_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_node_3d_scale_snap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "popup_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2015770942, - "hash_compatibility": [ - 2478844058 - ], - "arguments": [ - { - "name": "dialog", - "type": "Window" - }, - { - "name": "rect", - "type": "Rect2i", - "default_value": "Rect2i(0, 0, 0, 0)" - } - ] - }, - { - "name": "popup_dialog_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 346557367, - "hash_compatibility": [ - 1723337679 - ], - "arguments": [ - { - "name": "dialog", - "type": "Window" - }, - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - } - ] - }, - { - "name": "popup_dialog_centered_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093669136, - "hash_compatibility": [ - 1310934579 - ], - "arguments": [ - { - "name": "dialog", - "type": "Window" - }, - { - "name": "ratio", - "type": "float", - "meta": "float", - "default_value": "0.8" - } - ] - }, - { - "name": "popup_dialog_centered_clamped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3763385571, - "hash_compatibility": [ - 3433759678 - ], - "arguments": [ - { - "name": "dialog", - "type": "Window" - }, - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - }, - { - "name": "fallback_ratio", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "get_current_feature_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_current_feature_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "profile_name", - "type": "String" - } - ] - }, - { - "name": "popup_node_selector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2444591477, - "hash_compatibility": [ - 2271411043 - ], - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "valid_types", - "type": "typedarray::StringName", - "default_value": "Array[StringName]([])" - }, - { - "name": "current_value", - "type": "Node", - "default_value": "null" - } - ] - }, - { - "name": "popup_property_selector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2955609011, - "hash_compatibility": [ - 261221679 - ], - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "type_filter", - "type": "PackedInt32Array", - "default_value": "PackedInt32Array()" - }, - { - "name": "current_value", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "popup_method_selector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3585505226, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "current_value", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "popup_quick_open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2271411043, - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "base_types", - "type": "typedarray::StringName", - "default_value": "Array[StringName]([])" - } - ] - }, - { - "name": "popup_create_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495277124, - "arguments": [ - { - "name": "callback", - "type": "Callable" - }, - { - "name": "base_type", - "type": "StringName", - "default_value": "\"\"" - }, - { - "name": "current_type", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "dialog_title", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "type_blocklist", - "type": "typedarray::StringName", - "default_value": "Array[StringName]([])" - } - ] - }, - { - "name": "get_file_system_dock", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3751012327, - "return_value": { - "type": "FileSystemDock" - } - }, - { - "name": "select_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_selected_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_current_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_current_directory", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_inspector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3517113938, - "return_value": { - "type": "EditorInspector" - } - }, - { - "name": "inspect_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 127962172, - "hash_compatibility": [ - 2564140749 - ], - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "for_property", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "inspector_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "edit_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "edit_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "edit_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 219829402, - "hash_compatibility": [ - 3664508569 - ], - "arguments": [ - { - "name": "script", - "type": "Script" - }, - { - "name": "line", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "column", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "grab_focus", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "open_scene_from_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1168363258, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "scene_filepath", - "type": "String" - }, - { - "name": "set_inherited", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "reload_scene_from_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "scene_filepath", - "type": "String" - } - ] - }, - { - "name": "set_object_edited", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1462101905, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "edited", - "type": "bool" - } - ] - }, - { - "name": "is_object_edited", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 397768994, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "get_open_scenes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_unsaved_scenes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_open_scene_roots", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node" - } - }, - { - "name": "get_edited_scene_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "add_root_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "save_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "save_scene_as", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3647332257, - "hash_compatibility": [ - 1168363258 - ], - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "with_preview", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "save_all_scenes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "mark_scene_as_unsaved", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "play_main_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "play_current_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "play_custom_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "scene_filepath", - "type": "String" - } - ] - }, - { - "name": "stop_playing_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_playing_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_movie_maker_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_movie_maker_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "distraction_free_mode", - "setter": "set_distraction_free_mode", - "getter": "is_distraction_free_mode_enabled" - }, - { - "type": "bool", - "name": "movie_maker_enabled", - "setter": "set_movie_maker_enabled", - "getter": "is_movie_maker_enabled" - } - ] - }, - { - "name": "EditorNode3DGizmo", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Node3DGizmo", - "api_type": "editor", - "methods": [ - { - "name": "_redraw", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_handle_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1868713439, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_is_handle_highlighted", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 361316320, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_get_handle_value", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2144196525, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_begin_handle_action", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 300928843, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_set_handle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2210262157, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - }, - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "_commit_handle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3655739840, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - }, - { - "name": "restore", - "type": "Variant" - }, - { - "name": "cancel", - "type": "bool" - } - ] - }, - { - "name": "_subgizmos_intersect_ray", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2055005479, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "_subgizmos_intersect_frustum", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1653813165, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "frustum", - "type": "typedarray::Plane" - } - ] - }, - { - "name": "_set_subgizmo_transform", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3616898986, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_get_subgizmo_transform", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_commit_subgizmos", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411059856, - "arguments": [ - { - "name": "ids", - "type": "PackedInt32Array" - }, - { - "name": "restores", - "type": "typedarray::Transform3D" - }, - { - "name": "cancel", - "type": "bool" - } - ] - }, - { - "name": "add_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2910971437, - "hash_compatibility": [ - 302451090 - ], - "arguments": [ - { - "name": "lines", - "type": "PackedVector3Array" - }, - { - "name": "material", - "type": "Material" - }, - { - "name": "billboard", - "type": "bool", - "default_value": "false" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "add_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1579955111, - "hash_compatibility": [ - 1868867708 - ], - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - }, - { - "name": "material", - "type": "Material", - "default_value": "null" - }, - { - "name": "transform", - "type": "Transform3D", - "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "skeleton", - "type": "SkinReference", - "default_value": "null" - } - ] - }, - { - "name": "add_collision_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "segments", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "add_collision_triangles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 54901064, - "arguments": [ - { - "name": "triangles", - "type": "TriangleMesh" - } - ] - }, - { - "name": "add_unscaled_billboard", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 520007164, - "hash_compatibility": [ - 3719733075 - ], - "arguments": [ - { - "name": "material", - "type": "Material" - }, - { - "name": "default_scale", - "type": "float", - "meta": "float", - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "add_handles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2254560097, - "arguments": [ - { - "name": "handles", - "type": "PackedVector3Array" - }, - { - "name": "material", - "type": "Material" - }, - { - "name": "ids", - "type": "PackedInt32Array" - }, - { - "name": "billboard", - "type": "bool", - "default_value": "false" - }, - { - "name": "secondary", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_node_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "get_node_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 151077316, - "return_value": { - "type": "Node3D" - } - }, - { - "name": "get_plugin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4250544552, - "return_value": { - "type": "EditorNode3DGizmoPlugin" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_subgizmo_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subgizmo_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - } - ] - }, - { - "name": "EditorNode3DGizmoPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "editor", - "methods": [ - { - "name": "_has_gizmo", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1905827158, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "for_node_3d", - "type": "Node3D" - } - ] - }, - { - "name": "_create_gizmo", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1418965287, - "return_value": { - "type": "EditorNode3DGizmo" - }, - "arguments": [ - { - "name": "for_node_3d", - "type": "Node3D" - } - ] - }, - { - "name": "_get_gizmo_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_priority", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_can_be_hidden", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_is_selectable_when_hidden", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_can_commit_handle_on_click", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_redraw", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 173330131, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - } - ] - }, - { - "name": "_get_handle_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3888674840, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_is_handle_highlighted", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2665780718, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_get_handle_value", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2887724832, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_begin_handle_action", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3363704593, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - } - ] - }, - { - "name": "_set_handle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1249646868, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - }, - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "screen_pos", - "type": "Vector2" - } - ] - }, - { - "name": "_commit_handle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1939863962, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "handle_id", - "type": "int", - "meta": "int32" - }, - { - "name": "secondary", - "type": "bool" - }, - { - "name": "restore", - "type": "Variant" - }, - { - "name": "cancel", - "type": "bool" - } - ] - }, - { - "name": "_subgizmos_intersect_ray", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1781916302, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "screen_pos", - "type": "Vector2" - } - ] - }, - { - "name": "_subgizmos_intersect_frustum", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3514748524, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "camera", - "type": "Camera3D" - }, - { - "name": "frustum_planes", - "type": "typedarray::Plane" - } - ] - }, - { - "name": "_get_subgizmo_transform", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3700343508, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "subgizmo_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_set_subgizmo_transform", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2435388792, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "subgizmo_id", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_commit_subgizmos", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2282018236, - "arguments": [ - { - "name": "gizmo", - "type": "EditorNode3DGizmo" - }, - { - "name": "ids", - "type": "PackedInt32Array" - }, - { - "name": "restores", - "type": "typedarray::Transform3D" - }, - { - "name": "cancel", - "type": "bool" - } - ] - }, - { - "name": "create_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3486012546, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "billboard", - "type": "bool", - "default_value": "false" - }, - { - "name": "on_top", - "type": "bool", - "default_value": "false" - }, - { - "name": "use_vertex_color", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_icon_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3804976916, - "hash_compatibility": [ - 2976007329 - ], - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "on_top", - "type": "bool", - "default_value": "false" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "create_handle_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2486475223, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "billboard", - "type": "bool", - "default_value": "false" - }, - { - "name": "texture", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "add_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1374068695, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "material", - "type": "StandardMaterial3D" - } - ] - }, - { - "name": "get_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974464017, - "hash_compatibility": [ - 3501703615 - ], - "return_value": { - "type": "StandardMaterial3D" - }, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "gizmo", - "type": "EditorNode3DGizmo", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "EditorPaths", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "editor", - "methods": [ - { - "name": "get_data_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_config_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_cache_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_self_contained", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_self_contained_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_project_settings_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ] - }, - { - "name": "EditorPlugin", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "editor", - "enums": [ - { - "name": "CustomControlContainer", - "is_bitfield": false, - "values": [ - { - "name": "CONTAINER_TOOLBAR", - "value": 0 - }, - { - "name": "CONTAINER_SPATIAL_EDITOR_MENU", - "value": 1 - }, - { - "name": "CONTAINER_SPATIAL_EDITOR_SIDE_LEFT", - "value": 2 - }, - { - "name": "CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT", - "value": 3 - }, - { - "name": "CONTAINER_SPATIAL_EDITOR_BOTTOM", - "value": 4 - }, - { - "name": "CONTAINER_CANVAS_EDITOR_MENU", - "value": 5 - }, - { - "name": "CONTAINER_CANVAS_EDITOR_SIDE_LEFT", - "value": 6 - }, - { - "name": "CONTAINER_CANVAS_EDITOR_SIDE_RIGHT", - "value": 7 - }, - { - "name": "CONTAINER_CANVAS_EDITOR_BOTTOM", - "value": 8 - }, - { - "name": "CONTAINER_INSPECTOR_BOTTOM", - "value": 9 - }, - { - "name": "CONTAINER_PROJECT_SETTING_TAB_LEFT", - "value": 10 - }, - { - "name": "CONTAINER_PROJECT_SETTING_TAB_RIGHT", - "value": 11 - } - ] - }, - { - "name": "DockSlot", - "is_bitfield": false, - "values": [ - { - "name": "DOCK_SLOT_NONE", - "value": -1 - }, - { - "name": "DOCK_SLOT_LEFT_UL", - "value": 0 - }, - { - "name": "DOCK_SLOT_LEFT_BL", - "value": 1 - }, - { - "name": "DOCK_SLOT_LEFT_UR", - "value": 2 - }, - { - "name": "DOCK_SLOT_LEFT_BR", - "value": 3 - }, - { - "name": "DOCK_SLOT_RIGHT_UL", - "value": 4 - }, - { - "name": "DOCK_SLOT_RIGHT_BL", - "value": 5 - }, - { - "name": "DOCK_SLOT_RIGHT_UR", - "value": 6 - }, - { - "name": "DOCK_SLOT_RIGHT_BR", - "value": 7 - }, - { - "name": "DOCK_SLOT_BOTTOM", - "value": 8 - }, - { - "name": "DOCK_SLOT_MAX", - "value": 9 - } - ] - }, - { - "name": "AfterGUIInput", - "is_bitfield": false, - "values": [ - { - "name": "AFTER_GUI_INPUT_PASS", - "value": 0 - }, - { - "name": "AFTER_GUI_INPUT_STOP", - "value": 1 - }, - { - "name": "AFTER_GUI_INPUT_CUSTOM", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_forward_canvas_gui_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1062211774, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "_forward_canvas_draw_over_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1496901182, - "arguments": [ - { - "name": "viewport_control", - "type": "Control" - } - ] - }, - { - "name": "_forward_canvas_force_draw_over_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1496901182, - "arguments": [ - { - "name": "viewport_control", - "type": "Control" - } - ] - }, - { - "name": "_forward_3d_gui_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1018736637, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "viewport_camera", - "type": "Camera3D" - }, - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "_forward_3d_draw_over_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1496901182, - "arguments": [ - { - "name": "viewport_control", - "type": "Control" - } - ] - }, - { - "name": "_forward_3d_force_draw_over_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1496901182, - "arguments": [ - { - "name": "viewport_control", - "type": "Control" - } - ] - }, - { - "name": "_get_plugin_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_plugin_icon", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "_has_main_screen", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_make_visible", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "_edit", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "_handles", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 397768994, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "_get_state", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_set_state", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155329257, - "arguments": [ - { - "name": "state", - "type": "Dictionary" - } - ] - }, - { - "name": "_clear", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_unsaved_status", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "for_scene", - "type": "String" - } - ] - }, - { - "name": "_save_external_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_apply_changes", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_breakpoints", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_set_window_layout", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 853519107, - "arguments": [ - { - "name": "configuration", - "type": "ConfigFile" - } - ] - }, - { - "name": "_get_window_layout", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 853519107, - "arguments": [ - { - "name": "configuration", - "type": "ConfigFile" - } - ] - }, - { - "name": "_build", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_run_scene", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3911848509, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "scene", - "type": "String" - }, - { - "name": "args", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_enable_plugin", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_disable_plugin", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "add_dock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 158651717, - "arguments": [ - { - "name": "dock", - "type": "EditorDock" - } - ] - }, - { - "name": "remove_dock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 158651717, - "arguments": [ - { - "name": "dock", - "type": "EditorDock" - } - ] - }, - { - "name": "add_control_to_container", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3092750152, - "arguments": [ - { - "name": "container", - "type": "enum::EditorPlugin.CustomControlContainer" - }, - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "remove_control_from_container", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3092750152, - "arguments": [ - { - "name": "container", - "type": "enum::EditorPlugin.CustomControlContainer" - }, - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "add_tool_menu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "add_tool_submenu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1019428915, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "submenu", - "type": "PopupMenu" - } - ] - }, - { - "name": "remove_tool_menu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_export_as_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1775878644, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "add_custom_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1986814599, - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "base", - "type": "String" - }, - { - "name": "script", - "type": "Script" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "remove_custom_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "add_control_to_dock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2994930786, - "hash_compatibility": [ - 3354871258 - ], - "arguments": [ - { - "name": "slot", - "type": "enum::EditorPlugin.DockSlot" - }, - { - "name": "control", - "type": "Control" - }, - { - "name": "shortcut", - "type": "Shortcut", - "default_value": "null" - } - ] - }, - { - "name": "remove_control_from_docks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "set_dock_tab_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3450529724, - "arguments": [ - { - "name": "control", - "type": "Control" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "add_control_to_bottom_panel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111032269, - "hash_compatibility": [ - 3526039376 - ], - "return_value": { - "type": "Button" - }, - "arguments": [ - { - "name": "control", - "type": "Control" - }, - { - "name": "title", - "type": "String" - }, - { - "name": "shortcut", - "type": "Shortcut", - "default_value": "null" - } - ] - }, - { - "name": "remove_control_from_bottom_panel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "add_autoload_singleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "remove_autoload_singleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "update_overlays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "make_bottom_panel_item_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "item", - "type": "Control" - } - ] - }, - { - "name": "hide_bottom_panel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_undo_redo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 773492341, - "return_value": { - "type": "EditorUndoRedoManager" - } - }, - { - "name": "add_undo_redo_inspector_hook_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "remove_undo_redo_inspector_hook_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "queue_save_layout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_translation_parser_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3116463128, - "arguments": [ - { - "name": "parser", - "type": "EditorTranslationParserPlugin" - } - ] - }, - { - "name": "remove_translation_parser_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3116463128, - "arguments": [ - { - "name": "parser", - "type": "EditorTranslationParserPlugin" - } - ] - }, - { - "name": "add_import_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3113975762, - "arguments": [ - { - "name": "importer", - "type": "EditorImportPlugin" - }, - { - "name": "first_priority", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_import_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312482773, - "arguments": [ - { - "name": "importer", - "type": "EditorImportPlugin" - } - ] - }, - { - "name": "add_scene_format_importer_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2764104752, - "arguments": [ - { - "name": "scene_format_importer", - "type": "EditorSceneFormatImporter" - }, - { - "name": "first_priority", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_scene_format_importer_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2637776123, - "arguments": [ - { - "name": "scene_format_importer", - "type": "EditorSceneFormatImporter" - } - ] - }, - { - "name": "add_scene_post_import_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3492436322, - "arguments": [ - { - "name": "scene_import_plugin", - "type": "EditorScenePostImportPlugin" - }, - { - "name": "first_priority", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_scene_post_import_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3045178206, - "arguments": [ - { - "name": "scene_import_plugin", - "type": "EditorScenePostImportPlugin" - } - ] - }, - { - "name": "add_export_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4095952207, - "arguments": [ - { - "name": "plugin", - "type": "EditorExportPlugin" - } - ] - }, - { - "name": "remove_export_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4095952207, - "arguments": [ - { - "name": "plugin", - "type": "EditorExportPlugin" - } - ] - }, - { - "name": "add_export_platform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3431312373, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "remove_export_platform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3431312373, - "arguments": [ - { - "name": "platform", - "type": "EditorExportPlatform" - } - ] - }, - { - "name": "add_node_3d_gizmo_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1541015022, - "arguments": [ - { - "name": "plugin", - "type": "EditorNode3DGizmoPlugin" - } - ] - }, - { - "name": "remove_node_3d_gizmo_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1541015022, - "arguments": [ - { - "name": "plugin", - "type": "EditorNode3DGizmoPlugin" - } - ] - }, - { - "name": "add_inspector_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 546395733, - "arguments": [ - { - "name": "plugin", - "type": "EditorInspectorPlugin" - } - ] - }, - { - "name": "remove_inspector_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 546395733, - "arguments": [ - { - "name": "plugin", - "type": "EditorInspectorPlugin" - } - ] - }, - { - "name": "add_resource_conversion_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2124849111, - "arguments": [ - { - "name": "plugin", - "type": "EditorResourceConversionPlugin" - } - ] - }, - { - "name": "remove_resource_conversion_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2124849111, - "arguments": [ - { - "name": "plugin", - "type": "EditorResourceConversionPlugin" - } - ] - }, - { - "name": "set_input_event_forwarding_always_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_force_draw_over_forwarding_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_context_menu_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1904221872, - "arguments": [ - { - "name": "slot", - "type": "enum::EditorContextMenuPlugin.ContextMenuSlot" - }, - { - "name": "plugin", - "type": "EditorContextMenuPlugin" - } - ] - }, - { - "name": "remove_context_menu_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2281511854, - "arguments": [ - { - "name": "plugin", - "type": "EditorContextMenuPlugin" - } - ] - }, - { - "name": "get_editor_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4223731786, - "return_value": { - "type": "EditorInterface" - } - }, - { - "name": "get_script_create_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3121871482, - "return_value": { - "type": "ScriptCreateDialog" - } - }, - { - "name": "add_debugger_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3749880309, - "arguments": [ - { - "name": "script", - "type": "EditorDebuggerPlugin" - } - ] - }, - { - "name": "remove_debugger_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3749880309, - "arguments": [ - { - "name": "script", - "type": "EditorDebuggerPlugin" - } - ] - }, - { - "name": "get_plugin_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "signals": [ - { - "name": "scene_changed", - "arguments": [ - { - "name": "scene_root", - "type": "Node" - } - ] - }, - { - "name": "scene_closed", - "arguments": [ - { - "name": "filepath", - "type": "String" - } - ] - }, - { - "name": "main_screen_changed", - "arguments": [ - { - "name": "screen_name", - "type": "String" - } - ] - }, - { - "name": "resource_saved", - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "scene_saved", - "arguments": [ - { - "name": "filepath", - "type": "String" - } - ] - }, - { - "name": "project_settings_changed" - } - ] - }, - { - "name": "EditorProperty", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "editor", - "methods": [ - { - "name": "_update_property", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_set_read_only", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "read_only", - "type": "bool" - } - ] - }, - { - "name": "set_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_read_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "read_only", - "type": "bool" - } - ] - }, - { - "name": "is_read_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_label", - "type": "bool" - } - ] - }, - { - "name": "is_draw_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_background", - "type": "bool" - } - ] - }, - { - "name": "is_draw_background", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "checkable", - "type": "bool" - } - ] - }, - { - "name": "is_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "is_checked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_warning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_warning", - "type": "bool" - } - ] - }, - { - "name": "is_draw_warning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_keying", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "keying", - "type": "bool" - } - ] - }, - { - "name": "is_keying", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deletable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "deletable", - "type": "bool" - } - ] - }, - { - "name": "is_deletable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_edited_property", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_edited_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2050059866, - "return_value": { - "type": "Object" - } - }, - { - "name": "update_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_focusable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "set_bottom_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "editor", - "type": "Control" - } - ] - }, - { - "name": "set_selectable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "selectable", - "type": "bool" - } - ] - }, - { - "name": "is_selectable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_folding", - "type": "bool" - } - ] - }, - { - "name": "is_using_folding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_name_split_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_name_split_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "focusable", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_object_and_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4157606280, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "set_label_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "emit_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1822500399, - "hash_compatibility": [ - 3069422438 - ], - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "field", - "type": "StringName", - "default_value": "&\"\"" - }, - { - "name": "changing", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "signals": [ - { - "name": "property_changed", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "field", - "type": "StringName" - }, - { - "name": "changing", - "type": "bool" - } - ] - }, - { - "name": "multiple_properties_changed", - "arguments": [ - { - "name": "properties", - "type": "PackedStringArray" - }, - { - "name": "value", - "type": "Array" - } - ] - }, - { - "name": "property_keyed", - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "property_deleted", - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "property_keyed_with_value", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "property_checked", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "property_overridden" - }, - { - "name": "property_favorited", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "favorited", - "type": "bool" - } - ] - }, - { - "name": "property_pinned", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "pinned", - "type": "bool" - } - ] - }, - { - "name": "property_can_revert_changed", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "can_revert", - "type": "bool" - } - ] - }, - { - "name": "resource_selected", - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "object_id_selected", - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "selected", - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "focusable_idx", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "label", - "setter": "set_label", - "getter": "get_label" - }, - { - "type": "bool", - "name": "read_only", - "setter": "set_read_only", - "getter": "is_read_only" - }, - { - "type": "bool", - "name": "draw_label", - "setter": "set_draw_label", - "getter": "is_draw_label" - }, - { - "type": "bool", - "name": "draw_background", - "setter": "set_draw_background", - "getter": "is_draw_background" - }, - { - "type": "bool", - "name": "checkable", - "setter": "set_checkable", - "getter": "is_checkable" - }, - { - "type": "bool", - "name": "checked", - "setter": "set_checked", - "getter": "is_checked" - }, - { - "type": "bool", - "name": "draw_warning", - "setter": "set_draw_warning", - "getter": "is_draw_warning" - }, - { - "type": "bool", - "name": "keying", - "setter": "set_keying", - "getter": "is_keying" - }, - { - "type": "bool", - "name": "deletable", - "setter": "set_deletable", - "getter": "is_deletable" - }, - { - "type": "bool", - "name": "selectable", - "setter": "set_selectable", - "getter": "is_selectable" - }, - { - "type": "bool", - "name": "use_folding", - "setter": "set_use_folding", - "getter": "is_using_folding" - }, - { - "type": "float", - "name": "name_split_ratio", - "setter": "set_name_split_ratio", - "getter": "get_name_split_ratio" - } - ] - }, - { - "name": "EditorResourceConversionPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_converts_to", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_handles", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3190994482, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "_convert", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 325183270, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - } - ] - }, - { - "name": "EditorResourcePicker", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "HBoxContainer", - "api_type": "editor", - "methods": [ - { - "name": "_set_create_options", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3975164845, - "arguments": [ - { - "name": "menu_node", - "type": "Object" - } - ] - }, - { - "name": "_handle_menu_selected", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_base_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "base_type", - "type": "String" - } - ] - }, - { - "name": "get_base_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_allowed_types", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_edited_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "get_edited_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2674603643, - "return_value": { - "type": "Resource" - } - }, - { - "name": "set_toggle_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_toggle_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_toggle_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_editable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "resource_selected", - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "inspect", - "type": "bool" - } - ] - }, - { - "name": "resource_changed", - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "base_type", - "setter": "set_base_type", - "getter": "get_base_type" - }, - { - "type": "Resource", - "name": "edited_resource", - "setter": "set_edited_resource", - "getter": "get_edited_resource" - }, - { - "type": "bool", - "name": "editable", - "setter": "set_editable", - "getter": "is_editable" - }, - { - "type": "bool", - "name": "toggle_mode", - "setter": "set_toggle_mode", - "getter": "is_toggle_mode" - } - ] - }, - { - "name": "EditorResourcePreview", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "editor", - "methods": [ - { - "name": "queue_resource_preview", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 233177534, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "receiver", - "type": "Object" - }, - { - "name": "receiver_func", - "type": "StringName" - }, - { - "name": "userdata", - "type": "Variant" - } - ] - }, - { - "name": "queue_edited_resource_preview", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1608376650, - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "receiver", - "type": "Object" - }, - { - "name": "receiver_func", - "type": "StringName" - }, - { - "name": "userdata", - "type": "Variant" - } - ] - }, - { - "name": "add_preview_generator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 332288124, - "arguments": [ - { - "name": "generator", - "type": "EditorResourcePreviewGenerator" - } - ] - }, - { - "name": "remove_preview_generator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 332288124, - "arguments": [ - { - "name": "generator", - "type": "EditorResourcePreviewGenerator" - } - ] - }, - { - "name": "check_for_invalidation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "preview_invalidated", - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "EditorResourcePreviewGenerator", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_handles", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "_generate", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 255939159, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "metadata", - "type": "Dictionary" - } - ] - }, - { - "name": "_generate_from_path", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1601192835, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "metadata", - "type": "Dictionary" - } - ] - }, - { - "name": "_generate_small_preview_automatically", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_can_generate_small_preview", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "request_draw_and_wait", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 145472570, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - } - ] - }, - { - "name": "EditorResourceTooltipPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_handles", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "_make_tooltip_for_path", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4100114520, - "return_value": { - "type": "Control" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "metadata", - "type": "Dictionary" - }, - { - "name": "base", - "type": "Control" - } - ] - }, - { - "name": "request_thumbnail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3245519720, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "control", - "type": "TextureRect" - } - ] - } - ] - }, - { - "name": "EditorSceneFormatImporter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "ImportFlags", - "is_bitfield": true, - "values": [ - { - "name": "IMPORT_SCENE", - "value": 1 - }, - { - "name": "IMPORT_ANIMATION", - "value": 2 - }, - { - "name": "IMPORT_FAIL_ON_MISSING_DEPENDENCIES", - "value": 4 - }, - { - "name": "IMPORT_GENERATE_TANGENT_ARRAYS", - "value": 8 - }, - { - "name": "IMPORT_USE_NAMED_SKIN_BINDS", - "value": 16 - }, - { - "name": "IMPORT_DISCARD_MESHES_AND_MATERIALS", - "value": 32 - }, - { - "name": "IMPORT_FORCE_DISABLE_MESH_COMPRESSION", - "value": 64 - } - ] - } - ], - "methods": [ - { - "name": "_get_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_import_scene", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3749238728, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - }, - { - "name": "options", - "type": "Dictionary" - } - ] - }, - { - "name": "_get_import_options", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298836892, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "for_animation", - "type": "bool" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "add_import_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_import_option_advanced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674075649, - "arguments": [ - { - "name": "type", - "type": "enum::Variant.Type" - }, - { - "name": "name", - "type": "String" - }, - { - "name": "default_value", - "type": "Variant" - }, - { - "name": "hint", - "type": "enum::PropertyHint", - "default_value": "0" - }, - { - "name": "hint_string", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "usage_flags", - "type": "int", - "meta": "int32", - "default_value": "6" - } - ] - } - ] - }, - { - "name": "EditorSceneFormatImporterBlend", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorSceneFormatImporter", - "api_type": "editor" - }, - { - "name": "EditorSceneFormatImporterFBX2GLTF", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorSceneFormatImporter", - "api_type": "editor" - }, - { - "name": "EditorSceneFormatImporterGLTF", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorSceneFormatImporter", - "api_type": "editor" - }, - { - "name": "EditorSceneFormatImporterUFBX", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorSceneFormatImporter", - "api_type": "editor" - }, - { - "name": "EditorScenePostImport", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_post_import", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 134930648, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "scene", - "type": "Node" - } - ] - }, - { - "name": "get_source_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ] - }, - { - "name": "EditorScenePostImportPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "enums": [ - { - "name": "InternalImportCategory", - "is_bitfield": false, - "values": [ - { - "name": "INTERNAL_IMPORT_CATEGORY_NODE", - "value": 0 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_MESH_3D_NODE", - "value": 1 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_MESH", - "value": 2 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_MATERIAL", - "value": 3 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_ANIMATION", - "value": 4 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_ANIMATION_NODE", - "value": 5 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_SKELETON_3D_NODE", - "value": 6 - }, - { - "name": "INTERNAL_IMPORT_CATEGORY_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "_get_internal_import_options", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "category", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_internal_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3811255416, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "category", - "type": "int", - "meta": "int32" - }, - { - "name": "for_animation", - "type": "bool" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_get_internal_option_update_view_required", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3957349696, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "category", - "type": "int", - "meta": "int32" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_internal_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3641982463, - "arguments": [ - { - "name": "category", - "type": "int", - "meta": "int32" - }, - { - "name": "base_node", - "type": "Node" - }, - { - "name": "node", - "type": "Node" - }, - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "_get_import_options", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_option_visibility", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298836892, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "for_animation", - "type": "bool" - }, - { - "name": "option", - "type": "String" - } - ] - }, - { - "name": "_pre_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1078189570, - "arguments": [ - { - "name": "scene", - "type": "Node" - } - ] - }, - { - "name": "_post_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1078189570, - "arguments": [ - { - "name": "scene", - "type": "Node" - } - ] - }, - { - "name": "get_option_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "add_import_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_import_option_advanced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674075649, - "hash_compatibility": [ - 3774155785 - ], - "arguments": [ - { - "name": "type", - "type": "enum::Variant.Type" - }, - { - "name": "name", - "type": "String" - }, - { - "name": "default_value", - "type": "Variant" - }, - { - "name": "hint", - "type": "enum::PropertyHint", - "default_value": "0" - }, - { - "name": "hint_string", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "usage_flags", - "type": "int", - "meta": "int32", - "default_value": "6" - } - ] - } - ] - }, - { - "name": "EditorScript", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_run", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "add_root_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "get_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "get_editor_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976662476, - "return_value": { - "type": "EditorInterface" - } - } - ] - }, - { - "name": "EditorScriptPicker", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "EditorResourcePicker", - "api_type": "editor", - "methods": [ - { - "name": "set_script_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "owner_node", - "type": "Node" - } - ] - }, - { - "name": "get_script_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - } - ], - "properties": [ - { - "type": "Node", - "name": "script_owner", - "setter": "set_script_owner", - "getter": "get_script_owner" - } - ] - }, - { - "name": "EditorSelection", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "editor", - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "remove_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "get_selected_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Node" - } - }, - { - "name": "get_top_selected_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Node" - } - }, - { - "name": "get_transformable_selected_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Node" - } - } - ], - "signals": [ - { - "name": "selection_changed" - } - ] - }, - { - "name": "EditorSettings", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "editor", - "constants": [ - { - "name": "NOTIFICATION_EDITOR_SETTINGS_CHANGED", - "value": 10000 - } - ], - "methods": [ - { - "name": "has_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1868160156, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "erase", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "property", - "type": "String" - } - ] - }, - { - "name": "set_initial_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1529169264, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "update_current", - "type": "bool" - } - ] - }, - { - "name": "add_property_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "info", - "type": "Dictionary" - } - ] - }, - { - "name": "set_project_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2504492430, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "get_project_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 89809366, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "section", - "type": "String" - }, - { - "name": "key", - "type": "String" - }, - { - "name": "default", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "set_favorites", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "dirs", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_favorites", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_recent_dirs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "dirs", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_recent_dirs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_builtin_action_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1209351045, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "actions_list", - "type": "typedarray::InputEvent" - } - ] - }, - { - "name": "add_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4124020929, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "shortcut", - "type": "Shortcut" - } - ] - }, - { - "name": "remove_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 699917945, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "has_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1149070301, - "return_value": { - "type": "Shortcut" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_shortcut_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "check_changed_settings_in_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "setting_prefix", - "type": "String" - } - ] - }, - { - "name": "get_changed_settings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "mark_setting_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "setting", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "settings_changed" - } - ] - }, - { - "name": "EditorSpinSlider", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Range", - "api_type": "editor", - "enums": [ - { - "name": "ControlState", - "is_bitfield": false, - "values": [ - { - "name": "CONTROL_STATE_DEFAULT", - "value": 0 - }, - { - "name": "CONTROL_STATE_PREFER_SLIDER", - "value": 1 - }, - { - "name": "CONTROL_STATE_HIDE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "label", - "type": "String" - } - ] - }, - { - "name": "get_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_suffix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "suffix", - "type": "String" - } - ] - }, - { - "name": "get_suffix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_read_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "read_only", - "type": "bool" - } - ] - }, - { - "name": "is_read_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flat", - "type": "bool" - } - ] - }, - { - "name": "is_flat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_control_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1324557109, - "arguments": [ - { - "name": "state", - "type": "enum::EditorSpinSlider.ControlState" - } - ] - }, - { - "name": "get_control_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3406006200, - "return_value": { - "type": "enum::EditorSpinSlider.ControlState" - } - }, - { - "name": "set_hide_slider", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hide_slider", - "type": "bool" - } - ] - }, - { - "name": "is_hiding_slider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_editing_integer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "editing_integer", - "type": "bool" - } - ] - }, - { - "name": "is_editing_integer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deferred_drag_mode_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_deferred_drag_mode_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "grabbed" - }, - { - "name": "ungrabbed" - }, - { - "name": "updown_pressed" - }, - { - "name": "value_focus_entered" - }, - { - "name": "value_focus_exited" - } - ], - "properties": [ - { - "type": "String", - "name": "label", - "setter": "set_label", - "getter": "get_label" - }, - { - "type": "String", - "name": "suffix", - "setter": "set_suffix", - "getter": "get_suffix" - }, - { - "type": "bool", - "name": "read_only", - "setter": "set_read_only", - "getter": "is_read_only" - }, - { - "type": "bool", - "name": "flat", - "setter": "set_flat", - "getter": "is_flat" - }, - { - "type": "bool", - "name": "control_state", - "setter": "set_control_state", - "getter": "get_control_state" - }, - { - "type": "bool", - "name": "hide_slider", - "setter": "set_hide_slider", - "getter": "is_hiding_slider" - }, - { - "type": "bool", - "name": "editing_integer", - "setter": "set_editing_integer", - "getter": "is_editing_integer" - }, - { - "type": "bool", - "name": "deferred_drag_mode", - "setter": "set_deferred_drag_mode_enabled", - "getter": "is_deferred_drag_mode_enabled" - } - ] - }, - { - "name": "EditorSyntaxHighlighter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SyntaxHighlighter", - "api_type": "editor", - "methods": [ - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_supported_languages", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_create", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3789807118, - "return_value": { - "type": "EditorSyntaxHighlighter" - } - } - ] - }, - { - "name": "EditorToaster", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "HBoxContainer", - "api_type": "editor", - "enums": [ - { - "name": "Severity", - "is_bitfield": false, - "values": [ - { - "name": "SEVERITY_INFO", - "value": 0 - }, - { - "name": "SEVERITY_WARNING", - "value": 1 - }, - { - "name": "SEVERITY_ERROR", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "push_toast", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1813923476, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "severity", - "type": "enum::EditorToaster.Severity", - "default_value": "0" - }, - { - "name": "tooltip", - "type": "String", - "default_value": "\"\"" - } - ] - } - ] - }, - { - "name": "EditorTranslationParserPlugin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "_parse_file", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1576865988, - "hash_compatibility": [ - 3567846260 - ], - "return_value": { - "type": "typedarray::PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_customize_strings", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2560709669, - "return_value": { - "type": "typedarray::PackedStringArray" - }, - "arguments": [ - { - "name": "strings", - "type": "typedarray::PackedStringArray" - } - ] - } - ] - }, - { - "name": "EditorUndoRedoManager", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "editor", - "enums": [ - { - "name": "SpecialHistory", - "is_bitfield": false, - "values": [ - { - "name": "GLOBAL_HISTORY", - "value": 0 - }, - { - "name": "REMOTE_HISTORY", - "value": -9 - }, - { - "name": "INVALID_HISTORY", - "value": -99 - } - ] - } - ], - "methods": [ - { - "name": "create_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 796197507, - "hash_compatibility": [ - 2107025470, - 3577985681 - ], - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "merge_mode", - "type": "enum::UndoRedo.MergeMode", - "default_value": "0" - }, - { - "name": "custom_context", - "type": "Object", - "default_value": "null" - }, - { - "name": "backward_undo_ops", - "type": "bool", - "default_value": "false" - }, - { - "name": "mark_unsaved", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "commit_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "execute", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_committing_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "force_fixed_history", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_do_method", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 1517810467, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "add_undo_method", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 1517810467, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "add_do_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017172818, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_undo_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017172818, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_do_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "add_undo_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "get_object_history_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1107568780, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "get_history_undo_redo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2417974513, - "return_value": { - "type": "UndoRedo" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_history", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2020603371, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-99" - }, - { - "name": "increase_version", - "type": "bool", - "default_value": "true" - } - ] - } - ], - "signals": [ - { - "name": "history_changed" - }, - { - "name": "version_changed" - } - ] - }, - { - "name": "EditorVCSInterface", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "editor", - "enums": [ - { - "name": "ChangeType", - "is_bitfield": false, - "values": [ - { - "name": "CHANGE_TYPE_NEW", - "value": 0 - }, - { - "name": "CHANGE_TYPE_MODIFIED", - "value": 1 - }, - { - "name": "CHANGE_TYPE_RENAMED", - "value": 2 - }, - { - "name": "CHANGE_TYPE_DELETED", - "value": 3 - }, - { - "name": "CHANGE_TYPE_TYPECHANGE", - "value": 4 - }, - { - "name": "CHANGE_TYPE_UNMERGED", - "value": 5 - } - ] - }, - { - "name": "TreeArea", - "is_bitfield": false, - "values": [ - { - "name": "TREE_AREA_COMMIT", - "value": 0 - }, - { - "name": "TREE_AREA_STAGED", - "value": 1 - }, - { - "name": "TREE_AREA_UNSTAGED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_initialize", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "project_path", - "type": "String" - } - ] - }, - { - "name": "_set_credentials", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1336744649, - "arguments": [ - { - "name": "username", - "type": "String" - }, - { - "name": "password", - "type": "String" - }, - { - "name": "ssh_public_key_path", - "type": "String" - }, - { - "name": "ssh_private_key_path", - "type": "String" - }, - { - "name": "ssh_passphrase", - "type": "String" - } - ] - }, - { - "name": "_get_modified_files_data", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_stage_file", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "file_path", - "type": "String" - } - ] - }, - { - "name": "_unstage_file", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "file_path", - "type": "String" - } - ] - }, - { - "name": "_discard_file", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "file_path", - "type": "String" - } - ] - }, - { - "name": "_commit", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2678287736, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "msg", - "type": "String" - }, - { - "name": "amend", - "type": "bool" - } - ] - }, - { - "name": "_allow_amends", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_diff", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1366379175, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "identifier", - "type": "String" - }, - { - "name": "area", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_shut_down", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_vcs_name", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_previous_commits", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1171824711, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "max_commits", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_branch_list", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2915620761, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "_get_remotes", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2915620761, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "_create_branch", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "branch_name", - "type": "String" - } - ] - }, - { - "name": "_remove_branch", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "branch_name", - "type": "String" - } - ] - }, - { - "name": "_create_remote", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3186203200, - "arguments": [ - { - "name": "remote_name", - "type": "String" - }, - { - "name": "remote_url", - "type": "String" - } - ] - }, - { - "name": "_remove_remote", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "remote_name", - "type": "String" - } - ] - }, - { - "name": "_get_current_branch_name", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "_checkout_branch", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "branch_name", - "type": "String" - } - ] - }, - { - "name": "_pull", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "remote", - "type": "String" - } - ] - }, - { - "name": "_push", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2678287736, - "arguments": [ - { - "name": "remote", - "type": "String" - }, - { - "name": "force", - "type": "bool" - } - ] - }, - { - "name": "_fetch", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "remote", - "type": "String" - } - ] - }, - { - "name": "_get_line_diff", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2796572089, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "file_path", - "type": "String" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "create_diff_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2901184053, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "new_line_no", - "type": "int", - "meta": "int32" - }, - { - "name": "old_line_no", - "type": "int", - "meta": "int32" - }, - { - "name": "content", - "type": "String" - }, - { - "name": "status", - "type": "String" - } - ] - }, - { - "name": "create_diff_hunk", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3784842090, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "old_start", - "type": "int", - "meta": "int32" - }, - { - "name": "new_start", - "type": "int", - "meta": "int32" - }, - { - "name": "old_lines", - "type": "int", - "meta": "int32" - }, - { - "name": "new_lines", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_diff_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2723227684, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "new_file", - "type": "String" - }, - { - "name": "old_file", - "type": "String" - } - ] - }, - { - "name": "create_commit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1075983584, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "msg", - "type": "String" - }, - { - "name": "author", - "type": "String" - }, - { - "name": "id", - "type": "String" - }, - { - "name": "unix_timestamp", - "type": "int", - "meta": "int64" - }, - { - "name": "offset_minutes", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "create_status_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1083471673, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "file_path", - "type": "String" - }, - { - "name": "change_type", - "type": "enum::EditorVCSInterface.ChangeType" - }, - { - "name": "area", - "type": "enum::EditorVCSInterface.TreeArea" - } - ] - }, - { - "name": "add_diff_hunks_into_diff_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015243225, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "diff_file", - "type": "Dictionary" - }, - { - "name": "diff_hunks", - "type": "typedarray::Dictionary" - } - ] - }, - { - "name": "add_line_diffs_into_diff_hunk", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015243225, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "diff_hunk", - "type": "Dictionary" - }, - { - "name": "line_diffs", - "type": "typedarray::Dictionary" - } - ] - }, - { - "name": "popup_error", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "msg", - "type": "String" - } - ] - } - ] - }, - { - "name": "EncodedObjectAsID", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_object_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_object_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - } - ], - "properties": [ - { - "type": "int", - "name": "object_id", - "setter": "set_object_id", - "getter": "get_object_id" - } - ] - }, - { - "name": "Engine", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "set_physics_ticks_per_second", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "physics_ticks_per_second", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_physics_ticks_per_second", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_physics_steps_per_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_physics_steps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_physics_steps_per_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_physics_jitter_fix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "physics_jitter_fix", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_physics_jitter_fix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_physics_interpolation_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_max_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_frames_drawn", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_frames_per_second", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_physics_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_process_frames", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_main_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1016888095, - "return_value": { - "type": "MainLoop" - } - }, - { - "name": "get_version_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_author_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_copyright_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_donor_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_license_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_license_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_architecture_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_in_physics_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_singleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_singleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1371597918, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "register_singleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 965313290, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "instance", - "type": "Object", - "meta": "required" - } - ] - }, - { - "name": "unregister_singleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_singleton_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "register_script_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1850254898, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "language", - "type": "ScriptLanguage", - "meta": "required" - } - ] - }, - { - "name": "unregister_script_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1850254898, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "language", - "type": "ScriptLanguage", - "meta": "required" - } - ] - }, - { - "name": "get_script_language_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_script_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2151255799, - "return_value": { - "type": "ScriptLanguage" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "capture_script_backtraces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 873284517, - "return_value": { - "type": "typedarray::ScriptBacktrace" - }, - "arguments": [ - { - "name": "include_variables", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_editor_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_embedded_in_editor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_write_movie_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_print_to_stdout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_printing_to_stdout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_print_error_messages", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_printing_error_messages", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "print_error_messages", - "setter": "set_print_error_messages", - "getter": "is_printing_error_messages" - }, - { - "type": "bool", - "name": "print_to_stdout", - "setter": "set_print_to_stdout", - "getter": "is_printing_to_stdout" - }, - { - "type": "int", - "name": "physics_ticks_per_second", - "setter": "set_physics_ticks_per_second", - "getter": "get_physics_ticks_per_second" - }, - { - "type": "int", - "name": "max_physics_steps_per_frame", - "setter": "set_max_physics_steps_per_frame", - "getter": "get_max_physics_steps_per_frame" - }, - { - "type": "int", - "name": "max_fps", - "setter": "set_max_fps", - "getter": "get_max_fps" - }, - { - "type": "float", - "name": "time_scale", - "setter": "set_time_scale", - "getter": "get_time_scale" - }, - { - "type": "float", - "name": "physics_jitter_fix", - "setter": "set_physics_jitter_fix", - "getter": "get_physics_jitter_fix" - } - ] - }, - { - "name": "EngineDebugger", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "is_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "register_profiler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3651669560, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "profiler", - "type": "EngineProfiler" - } - ] - }, - { - "name": "unregister_profiler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "is_profiling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2041966384, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_profiler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2041966384, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "profiler_add_frame_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1895267858, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "data", - "type": "Array" - } - ] - }, - { - "name": "profiler_enable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3192561009, - "hash_compatibility": [ - 438160728 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "arguments", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "register_message_capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1874754934, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "unregister_message_capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_capture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2041966384, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "line_poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "send_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1209351045, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "data", - "type": "Array" - } - ] - }, - { - "name": "debug", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2751962654, - "arguments": [ - { - "name": "can_continue", - "type": "bool", - "default_value": "true" - }, - { - "name": "is_error_breakpoint", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "script_debug", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2442343672, - "arguments": [ - { - "name": "language", - "type": "ScriptLanguage" - }, - { - "name": "can_continue", - "type": "bool", - "default_value": "true" - }, - { - "name": "is_error_breakpoint", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_lines_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "lines", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_lines_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_breakpoint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 921227809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "source", - "type": "StringName" - } - ] - }, - { - "name": "is_skipping_breakpoints", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "insert_breakpoint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "source", - "type": "StringName" - } - ] - }, - { - "name": "remove_breakpoint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "source", - "type": "StringName" - } - ] - }, - { - "name": "clear_breakpoints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "EngineProfiler", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_toggle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1157301103, - "arguments": [ - { - "name": "enable", - "type": "bool" - }, - { - "name": "options", - "type": "Array" - } - ] - }, - { - "name": "_add_frame", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 381264803, - "arguments": [ - { - "name": "data", - "type": "Array" - } - ] - }, - { - "name": "_tick", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3948312143, - "arguments": [ - { - "name": "frame_time", - "type": "float", - "meta": "double" - }, - { - "name": "process_time", - "type": "float", - "meta": "double" - }, - { - "name": "physics_time", - "type": "float", - "meta": "double" - }, - { - "name": "physics_frame_time", - "type": "float", - "meta": "double" - } - ] - } - ] - }, - { - "name": "Environment", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "BGMode", - "is_bitfield": false, - "values": [ - { - "name": "BG_CLEAR_COLOR", - "value": 0 - }, - { - "name": "BG_COLOR", - "value": 1 - }, - { - "name": "BG_SKY", - "value": 2 - }, - { - "name": "BG_CANVAS", - "value": 3 - }, - { - "name": "BG_KEEP", - "value": 4 - }, - { - "name": "BG_CAMERA_FEED", - "value": 5 - }, - { - "name": "BG_MAX", - "value": 6 - } - ] - }, - { - "name": "AmbientSource", - "is_bitfield": false, - "values": [ - { - "name": "AMBIENT_SOURCE_BG", - "value": 0 - }, - { - "name": "AMBIENT_SOURCE_DISABLED", - "value": 1 - }, - { - "name": "AMBIENT_SOURCE_COLOR", - "value": 2 - }, - { - "name": "AMBIENT_SOURCE_SKY", - "value": 3 - } - ] - }, - { - "name": "ReflectionSource", - "is_bitfield": false, - "values": [ - { - "name": "REFLECTION_SOURCE_BG", - "value": 0 - }, - { - "name": "REFLECTION_SOURCE_DISABLED", - "value": 1 - }, - { - "name": "REFLECTION_SOURCE_SKY", - "value": 2 - } - ] - }, - { - "name": "ToneMapper", - "is_bitfield": false, - "values": [ - { - "name": "TONE_MAPPER_LINEAR", - "value": 0 - }, - { - "name": "TONE_MAPPER_REINHARDT", - "value": 1 - }, - { - "name": "TONE_MAPPER_FILMIC", - "value": 2 - }, - { - "name": "TONE_MAPPER_ACES", - "value": 3 - }, - { - "name": "TONE_MAPPER_AGX", - "value": 4 - } - ] - }, - { - "name": "GlowBlendMode", - "is_bitfield": false, - "values": [ - { - "name": "GLOW_BLEND_MODE_ADDITIVE", - "value": 0 - }, - { - "name": "GLOW_BLEND_MODE_SCREEN", - "value": 1 - }, - { - "name": "GLOW_BLEND_MODE_SOFTLIGHT", - "value": 2 - }, - { - "name": "GLOW_BLEND_MODE_REPLACE", - "value": 3 - }, - { - "name": "GLOW_BLEND_MODE_MIX", - "value": 4 - } - ] - }, - { - "name": "FogMode", - "is_bitfield": false, - "values": [ - { - "name": "FOG_MODE_EXPONENTIAL", - "value": 0 - }, - { - "name": "FOG_MODE_DEPTH", - "value": 1 - } - ] - }, - { - "name": "SDFGIYScale", - "is_bitfield": false, - "values": [ - { - "name": "SDFGI_Y_SCALE_50_PERCENT", - "value": 0 - }, - { - "name": "SDFGI_Y_SCALE_75_PERCENT", - "value": 1 - }, - { - "name": "SDFGI_Y_SCALE_100_PERCENT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4071623990, - "arguments": [ - { - "name": "mode", - "type": "enum::Environment.BGMode" - } - ] - }, - { - "name": "get_background", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1843210413, - "return_value": { - "type": "enum::Environment.BGMode" - } - }, - { - "name": "set_sky", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3336722921, - "arguments": [ - { - "name": "sky", - "type": "Sky" - } - ] - }, - { - "name": "get_sky", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1177136966, - "return_value": { - "type": "Sky" - } - }, - { - "name": "set_sky_custom_fov", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sky_custom_fov", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sky_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler_radians", - "type": "Vector3" - } - ] - }, - { - "name": "get_sky_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_bg_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_bg_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bg_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bg_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bg_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_canvas_max_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_canvas_max_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_camera_feed_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_camera_feed_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_ambient_light_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_ambient_light_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_ambient_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2607780160, - "arguments": [ - { - "name": "source", - "type": "enum::Environment.AmbientSource" - } - ] - }, - { - "name": "get_ambient_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 67453933, - "return_value": { - "type": "enum::Environment.AmbientSource" - } - }, - { - "name": "set_ambient_light_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ambient_light_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ambient_light_sky_contribution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ambient_light_sky_contribution", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_reflection_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 299673197, - "arguments": [ - { - "name": "source", - "type": "enum::Environment.ReflectionSource" - } - ] - }, - { - "name": "get_reflection_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 777700713, - "return_value": { - "type": "enum::Environment.ReflectionSource" - } - }, - { - "name": "set_tonemapper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509116664, - "arguments": [ - { - "name": "mode", - "type": "enum::Environment.ToneMapper" - } - ] - }, - { - "name": "get_tonemapper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2908408137, - "return_value": { - "type": "enum::Environment.ToneMapper" - } - }, - { - "name": "set_tonemap_exposure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "exposure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tonemap_exposure", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tonemap_white", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "white", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tonemap_white", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tonemap_agx_white", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "white", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tonemap_agx_white", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tonemap_agx_contrast", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "contrast", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tonemap_agx_contrast", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssr_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_ssr_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ssr_max_steps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_steps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ssr_max_steps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_ssr_fade_in", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fade_in", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssr_fade_in", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssr_fade_out", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fade_out", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssr_fade_out", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssr_depth_tolerance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth_tolerance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssr_depth_tolerance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_ssao_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ssao_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_power", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_power", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_detail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "detail", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_detail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_horizon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_horizon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_direct_light_affect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_direct_light_affect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssao_ao_channel_affect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssao_ao_channel_affect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssil_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_ssil_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ssil_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssil_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssil_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssil_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssil_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssil_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ssil_normal_rejection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "normal_rejection", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ssil_normal_rejection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_sdfgi_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sdfgi_cascades", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sdfgi_cascades", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sdfgi_min_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_min_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_cascade0_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_cascade0_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_y_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3608608372, - "arguments": [ - { - "name": "scale", - "type": "enum::Environment.SDFGIYScale" - } - ] - }, - { - "name": "get_sdfgi_y_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2568002245, - "return_value": { - "type": "enum::Environment.SDFGIYScale" - } - }, - { - "name": "set_sdfgi_use_occlusion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_sdfgi_using_occlusion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sdfgi_bounce_feedback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_bounce_feedback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_read_sky_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_sdfgi_reading_sky_light", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sdfgi_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_normal_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_normal_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sdfgi_probe_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sdfgi_probe_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_glow_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_glow_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glow_normalized", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "normalize", - "type": "bool" - } - ] - }, - { - "name": "is_glow_normalized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_glow_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mix", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_mix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_bloom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_bloom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2561587761, - "arguments": [ - { - "name": "mode", - "type": "enum::Environment.GlowBlendMode" - } - ] - }, - { - "name": "get_glow_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1529667332, - "return_value": { - "type": "enum::Environment.GlowBlendMode" - } - }, - { - "name": "set_glow_hdr_bleed_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_hdr_bleed_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_hdr_bleed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_hdr_bleed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_hdr_luminance_cap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_hdr_luminance_cap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_map_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_glow_map_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_glow_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1790811099, - "arguments": [ - { - "name": "mode", - "type": "Texture" - } - ] - }, - { - "name": "get_glow_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4037048985, - "return_value": { - "type": "Texture" - } - }, - { - "name": "set_fog_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_fog_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_fog_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3059806579, - "arguments": [ - { - "name": "mode", - "type": "enum::Environment.FogMode" - } - ] - }, - { - "name": "get_fog_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2456062483, - "return_value": { - "type": "enum::Environment.FogMode" - } - }, - { - "name": "set_fog_light_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "light_color", - "type": "Color" - } - ] - }, - { - "name": "get_fog_light_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_fog_light_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "light_energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_light_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_sun_scatter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sun_scatter", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_sun_scatter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_density", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "density", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_density", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_height_density", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height_density", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_height_density", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_aerial_perspective", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "aerial_perspective", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_aerial_perspective", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_sky_affect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sky_affect", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_sky_affect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_depth_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_depth_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_depth_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "begin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_depth_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fog_depth_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "end", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fog_depth_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_volumetric_fog_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_volumetric_fog_emission", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_volumetric_fog_emission", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_volumetric_fog_albedo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_volumetric_fog_albedo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_volumetric_fog_density", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "density", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_density", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_emission_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "begin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_emission_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_anisotropy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "anisotropy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_anisotropy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_detail_spread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "detail_spread", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_detail_spread", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_gi_inject", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gi_inject", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_gi_inject", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_ambient_inject", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "enabled", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_ambient_inject", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_sky_affect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sky_affect", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_sky_affect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volumetric_fog_temporal_reprojection_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_volumetric_fog_temporal_reprojection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_volumetric_fog_temporal_reprojection_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "temporal_reprojection_amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volumetric_fog_temporal_reprojection_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_adjustment_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_adjustment_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_adjustment_brightness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "brightness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_adjustment_brightness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_adjustment_contrast", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "contrast", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_adjustment_contrast", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_adjustment_saturation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "saturation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_adjustment_saturation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_adjustment_color_correction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1790811099, - "arguments": [ - { - "name": "color_correction", - "type": "Texture" - } - ] - }, - { - "name": "get_adjustment_color_correction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4037048985, - "return_value": { - "type": "Texture" - } - } - ], - "properties": [ - { - "type": "int", - "name": "background_mode", - "setter": "set_background", - "getter": "get_background" - }, - { - "type": "Color", - "name": "background_color", - "setter": "set_bg_color", - "getter": "get_bg_color" - }, - { - "type": "float", - "name": "background_energy_multiplier", - "setter": "set_bg_energy_multiplier", - "getter": "get_bg_energy_multiplier" - }, - { - "type": "float", - "name": "background_intensity", - "setter": "set_bg_intensity", - "getter": "get_bg_intensity" - }, - { - "type": "int", - "name": "background_canvas_max_layer", - "setter": "set_canvas_max_layer", - "getter": "get_canvas_max_layer" - }, - { - "type": "int", - "name": "background_camera_feed_id", - "setter": "set_camera_feed_id", - "getter": "get_camera_feed_id" - }, - { - "type": "Sky", - "name": "sky", - "setter": "set_sky", - "getter": "get_sky" - }, - { - "type": "float", - "name": "sky_custom_fov", - "setter": "set_sky_custom_fov", - "getter": "get_sky_custom_fov" - }, - { - "type": "Vector3", - "name": "sky_rotation", - "setter": "set_sky_rotation", - "getter": "get_sky_rotation" - }, - { - "type": "int", - "name": "ambient_light_source", - "setter": "set_ambient_source", - "getter": "get_ambient_source" - }, - { - "type": "Color", - "name": "ambient_light_color", - "setter": "set_ambient_light_color", - "getter": "get_ambient_light_color" - }, - { - "type": "float", - "name": "ambient_light_sky_contribution", - "setter": "set_ambient_light_sky_contribution", - "getter": "get_ambient_light_sky_contribution" - }, - { - "type": "float", - "name": "ambient_light_energy", - "setter": "set_ambient_light_energy", - "getter": "get_ambient_light_energy" - }, - { - "type": "int", - "name": "reflected_light_source", - "setter": "set_reflection_source", - "getter": "get_reflection_source" - }, - { - "type": "int", - "name": "tonemap_mode", - "setter": "set_tonemapper", - "getter": "get_tonemapper" - }, - { - "type": "float", - "name": "tonemap_exposure", - "setter": "set_tonemap_exposure", - "getter": "get_tonemap_exposure" - }, - { - "type": "float", - "name": "tonemap_white", - "setter": "set_tonemap_white", - "getter": "get_tonemap_white" - }, - { - "type": "float", - "name": "tonemap_agx_white", - "setter": "set_tonemap_agx_white", - "getter": "get_tonemap_agx_white" - }, - { - "type": "float", - "name": "tonemap_agx_contrast", - "setter": "set_tonemap_agx_contrast", - "getter": "get_tonemap_agx_contrast" - }, - { - "type": "bool", - "name": "ssr_enabled", - "setter": "set_ssr_enabled", - "getter": "is_ssr_enabled" - }, - { - "type": "int", - "name": "ssr_max_steps", - "setter": "set_ssr_max_steps", - "getter": "get_ssr_max_steps" - }, - { - "type": "float", - "name": "ssr_fade_in", - "setter": "set_ssr_fade_in", - "getter": "get_ssr_fade_in" - }, - { - "type": "float", - "name": "ssr_fade_out", - "setter": "set_ssr_fade_out", - "getter": "get_ssr_fade_out" - }, - { - "type": "float", - "name": "ssr_depth_tolerance", - "setter": "set_ssr_depth_tolerance", - "getter": "get_ssr_depth_tolerance" - }, - { - "type": "bool", - "name": "ssao_enabled", - "setter": "set_ssao_enabled", - "getter": "is_ssao_enabled" - }, - { - "type": "float", - "name": "ssao_radius", - "setter": "set_ssao_radius", - "getter": "get_ssao_radius" - }, - { - "type": "float", - "name": "ssao_intensity", - "setter": "set_ssao_intensity", - "getter": "get_ssao_intensity" - }, - { - "type": "float", - "name": "ssao_power", - "setter": "set_ssao_power", - "getter": "get_ssao_power" - }, - { - "type": "float", - "name": "ssao_detail", - "setter": "set_ssao_detail", - "getter": "get_ssao_detail" - }, - { - "type": "float", - "name": "ssao_horizon", - "setter": "set_ssao_horizon", - "getter": "get_ssao_horizon" - }, - { - "type": "float", - "name": "ssao_sharpness", - "setter": "set_ssao_sharpness", - "getter": "get_ssao_sharpness" - }, - { - "type": "float", - "name": "ssao_light_affect", - "setter": "set_ssao_direct_light_affect", - "getter": "get_ssao_direct_light_affect" - }, - { - "type": "float", - "name": "ssao_ao_channel_affect", - "setter": "set_ssao_ao_channel_affect", - "getter": "get_ssao_ao_channel_affect" - }, - { - "type": "bool", - "name": "ssil_enabled", - "setter": "set_ssil_enabled", - "getter": "is_ssil_enabled" - }, - { - "type": "float", - "name": "ssil_radius", - "setter": "set_ssil_radius", - "getter": "get_ssil_radius" - }, - { - "type": "float", - "name": "ssil_intensity", - "setter": "set_ssil_intensity", - "getter": "get_ssil_intensity" - }, - { - "type": "float", - "name": "ssil_sharpness", - "setter": "set_ssil_sharpness", - "getter": "get_ssil_sharpness" - }, - { - "type": "float", - "name": "ssil_normal_rejection", - "setter": "set_ssil_normal_rejection", - "getter": "get_ssil_normal_rejection" - }, - { - "type": "bool", - "name": "sdfgi_enabled", - "setter": "set_sdfgi_enabled", - "getter": "is_sdfgi_enabled" - }, - { - "type": "bool", - "name": "sdfgi_use_occlusion", - "setter": "set_sdfgi_use_occlusion", - "getter": "is_sdfgi_using_occlusion" - }, - { - "type": "bool", - "name": "sdfgi_read_sky_light", - "setter": "set_sdfgi_read_sky_light", - "getter": "is_sdfgi_reading_sky_light" - }, - { - "type": "float", - "name": "sdfgi_bounce_feedback", - "setter": "set_sdfgi_bounce_feedback", - "getter": "get_sdfgi_bounce_feedback" - }, - { - "type": "int", - "name": "sdfgi_cascades", - "setter": "set_sdfgi_cascades", - "getter": "get_sdfgi_cascades" - }, - { - "type": "float", - "name": "sdfgi_min_cell_size", - "setter": "set_sdfgi_min_cell_size", - "getter": "get_sdfgi_min_cell_size" - }, - { - "type": "float", - "name": "sdfgi_cascade0_distance", - "setter": "set_sdfgi_cascade0_distance", - "getter": "get_sdfgi_cascade0_distance" - }, - { - "type": "float", - "name": "sdfgi_max_distance", - "setter": "set_sdfgi_max_distance", - "getter": "get_sdfgi_max_distance" - }, - { - "type": "int", - "name": "sdfgi_y_scale", - "setter": "set_sdfgi_y_scale", - "getter": "get_sdfgi_y_scale" - }, - { - "type": "float", - "name": "sdfgi_energy", - "setter": "set_sdfgi_energy", - "getter": "get_sdfgi_energy" - }, - { - "type": "float", - "name": "sdfgi_normal_bias", - "setter": "set_sdfgi_normal_bias", - "getter": "get_sdfgi_normal_bias" - }, - { - "type": "float", - "name": "sdfgi_probe_bias", - "setter": "set_sdfgi_probe_bias", - "getter": "get_sdfgi_probe_bias" - }, - { - "type": "bool", - "name": "glow_enabled", - "setter": "set_glow_enabled", - "getter": "is_glow_enabled" - }, - { - "type": "bool", - "name": "glow_normalized", - "setter": "set_glow_normalized", - "getter": "is_glow_normalized" - }, - { - "type": "float", - "name": "glow_intensity", - "setter": "set_glow_intensity", - "getter": "get_glow_intensity" - }, - { - "type": "float", - "name": "glow_strength", - "setter": "set_glow_strength", - "getter": "get_glow_strength" - }, - { - "type": "float", - "name": "glow_mix", - "setter": "set_glow_mix", - "getter": "get_glow_mix" - }, - { - "type": "float", - "name": "glow_bloom", - "setter": "set_glow_bloom", - "getter": "get_glow_bloom" - }, - { - "type": "int", - "name": "glow_blend_mode", - "setter": "set_glow_blend_mode", - "getter": "get_glow_blend_mode" - }, - { - "type": "float", - "name": "glow_hdr_threshold", - "setter": "set_glow_hdr_bleed_threshold", - "getter": "get_glow_hdr_bleed_threshold" - }, - { - "type": "float", - "name": "glow_hdr_scale", - "setter": "set_glow_hdr_bleed_scale", - "getter": "get_glow_hdr_bleed_scale" - }, - { - "type": "float", - "name": "glow_hdr_luminance_cap", - "setter": "set_glow_hdr_luminance_cap", - "getter": "get_glow_hdr_luminance_cap" - }, - { - "type": "float", - "name": "glow_map_strength", - "setter": "set_glow_map_strength", - "getter": "get_glow_map_strength" - }, - { - "type": "Texture2D", - "name": "glow_map", - "setter": "set_glow_map", - "getter": "get_glow_map" - }, - { - "type": "bool", - "name": "fog_enabled", - "setter": "set_fog_enabled", - "getter": "is_fog_enabled" - }, - { - "type": "int", - "name": "fog_mode", - "setter": "set_fog_mode", - "getter": "get_fog_mode" - }, - { - "type": "Color", - "name": "fog_light_color", - "setter": "set_fog_light_color", - "getter": "get_fog_light_color" - }, - { - "type": "float", - "name": "fog_light_energy", - "setter": "set_fog_light_energy", - "getter": "get_fog_light_energy" - }, - { - "type": "float", - "name": "fog_sun_scatter", - "setter": "set_fog_sun_scatter", - "getter": "get_fog_sun_scatter" - }, - { - "type": "float", - "name": "fog_density", - "setter": "set_fog_density", - "getter": "get_fog_density" - }, - { - "type": "float", - "name": "fog_aerial_perspective", - "setter": "set_fog_aerial_perspective", - "getter": "get_fog_aerial_perspective" - }, - { - "type": "float", - "name": "fog_sky_affect", - "setter": "set_fog_sky_affect", - "getter": "get_fog_sky_affect" - }, - { - "type": "float", - "name": "fog_height", - "setter": "set_fog_height", - "getter": "get_fog_height" - }, - { - "type": "float", - "name": "fog_height_density", - "setter": "set_fog_height_density", - "getter": "get_fog_height_density" - }, - { - "type": "float", - "name": "fog_depth_curve", - "setter": "set_fog_depth_curve", - "getter": "get_fog_depth_curve" - }, - { - "type": "float", - "name": "fog_depth_begin", - "setter": "set_fog_depth_begin", - "getter": "get_fog_depth_begin" - }, - { - "type": "float", - "name": "fog_depth_end", - "setter": "set_fog_depth_end", - "getter": "get_fog_depth_end" - }, - { - "type": "bool", - "name": "volumetric_fog_enabled", - "setter": "set_volumetric_fog_enabled", - "getter": "is_volumetric_fog_enabled" - }, - { - "type": "float", - "name": "volumetric_fog_density", - "setter": "set_volumetric_fog_density", - "getter": "get_volumetric_fog_density" - }, - { - "type": "Color", - "name": "volumetric_fog_albedo", - "setter": "set_volumetric_fog_albedo", - "getter": "get_volumetric_fog_albedo" - }, - { - "type": "Color", - "name": "volumetric_fog_emission", - "setter": "set_volumetric_fog_emission", - "getter": "get_volumetric_fog_emission" - }, - { - "type": "float", - "name": "volumetric_fog_emission_energy", - "setter": "set_volumetric_fog_emission_energy", - "getter": "get_volumetric_fog_emission_energy" - }, - { - "type": "float", - "name": "volumetric_fog_gi_inject", - "setter": "set_volumetric_fog_gi_inject", - "getter": "get_volumetric_fog_gi_inject" - }, - { - "type": "float", - "name": "volumetric_fog_anisotropy", - "setter": "set_volumetric_fog_anisotropy", - "getter": "get_volumetric_fog_anisotropy" - }, - { - "type": "float", - "name": "volumetric_fog_length", - "setter": "set_volumetric_fog_length", - "getter": "get_volumetric_fog_length" - }, - { - "type": "float", - "name": "volumetric_fog_detail_spread", - "setter": "set_volumetric_fog_detail_spread", - "getter": "get_volumetric_fog_detail_spread" - }, - { - "type": "float", - "name": "volumetric_fog_ambient_inject", - "setter": "set_volumetric_fog_ambient_inject", - "getter": "get_volumetric_fog_ambient_inject" - }, - { - "type": "float", - "name": "volumetric_fog_sky_affect", - "setter": "set_volumetric_fog_sky_affect", - "getter": "get_volumetric_fog_sky_affect" - }, - { - "type": "bool", - "name": "volumetric_fog_temporal_reprojection_enabled", - "setter": "set_volumetric_fog_temporal_reprojection_enabled", - "getter": "is_volumetric_fog_temporal_reprojection_enabled" - }, - { - "type": "float", - "name": "volumetric_fog_temporal_reprojection_amount", - "setter": "set_volumetric_fog_temporal_reprojection_amount", - "getter": "get_volumetric_fog_temporal_reprojection_amount" - }, - { - "type": "bool", - "name": "adjustment_enabled", - "setter": "set_adjustment_enabled", - "getter": "is_adjustment_enabled" - }, - { - "type": "float", - "name": "adjustment_brightness", - "setter": "set_adjustment_brightness", - "getter": "get_adjustment_brightness" - }, - { - "type": "float", - "name": "adjustment_contrast", - "setter": "set_adjustment_contrast", - "getter": "get_adjustment_contrast" - }, - { - "type": "float", - "name": "adjustment_saturation", - "setter": "set_adjustment_saturation", - "getter": "get_adjustment_saturation" - }, - { - "type": "Texture2D,Texture3D", - "name": "adjustment_color_correction", - "setter": "set_adjustment_color_correction", - "getter": "get_adjustment_color_correction" - } - ] - }, - { - "name": "Expression", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "parse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3069722906, - "hash_compatibility": [ - 3658149758 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "expression", - "type": "String" - }, - { - "name": "input_names", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - } - ] - }, - { - "name": "execute", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3712471238, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "inputs", - "type": "Array", - "default_value": "[]" - }, - { - "name": "base_instance", - "type": "Object", - "default_value": "null" - }, - { - "name": "show_error", - "type": "bool", - "default_value": "true" - }, - { - "name": "const_calls_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "has_execute_failed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_error_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ] - }, - { - "name": "ExternalTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_external_texture_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_external_buffer_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "external_buffer_id", - "type": "int", - "meta": "uint64" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "FABRIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "IterateIK3D", - "api_type": "core" - }, - { - "name": "FBXDocument", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "GLTFDocument", - "api_type": "core" - }, - { - "name": "FBXState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "GLTFState", - "api_type": "core", - "methods": [ - { - "name": "get_allow_geometry_helper_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_geometry_helper_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "allow_geometry_helper_nodes", - "setter": "set_allow_geometry_helper_nodes", - "getter": "get_allow_geometry_helper_nodes" - } - ] - }, - { - "name": "FastNoiseLite", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Noise", - "api_type": "core", - "enums": [ - { - "name": "NoiseType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_VALUE", - "value": 5 - }, - { - "name": "TYPE_VALUE_CUBIC", - "value": 4 - }, - { - "name": "TYPE_PERLIN", - "value": 3 - }, - { - "name": "TYPE_CELLULAR", - "value": 2 - }, - { - "name": "TYPE_SIMPLEX", - "value": 0 - }, - { - "name": "TYPE_SIMPLEX_SMOOTH", - "value": 1 - } - ] - }, - { - "name": "FractalType", - "is_bitfield": false, - "values": [ - { - "name": "FRACTAL_NONE", - "value": 0 - }, - { - "name": "FRACTAL_FBM", - "value": 1 - }, - { - "name": "FRACTAL_RIDGED", - "value": 2 - }, - { - "name": "FRACTAL_PING_PONG", - "value": 3 - } - ] - }, - { - "name": "CellularDistanceFunction", - "is_bitfield": false, - "values": [ - { - "name": "DISTANCE_EUCLIDEAN", - "value": 0 - }, - { - "name": "DISTANCE_EUCLIDEAN_SQUARED", - "value": 1 - }, - { - "name": "DISTANCE_MANHATTAN", - "value": 2 - }, - { - "name": "DISTANCE_HYBRID", - "value": 3 - } - ] - }, - { - "name": "CellularReturnType", - "is_bitfield": false, - "values": [ - { - "name": "RETURN_CELL_VALUE", - "value": 0 - }, - { - "name": "RETURN_DISTANCE", - "value": 1 - }, - { - "name": "RETURN_DISTANCE2", - "value": 2 - }, - { - "name": "RETURN_DISTANCE2_ADD", - "value": 3 - }, - { - "name": "RETURN_DISTANCE2_SUB", - "value": 4 - }, - { - "name": "RETURN_DISTANCE2_MUL", - "value": 5 - }, - { - "name": "RETURN_DISTANCE2_DIV", - "value": 6 - } - ] - }, - { - "name": "DomainWarpType", - "is_bitfield": false, - "values": [ - { - "name": "DOMAIN_WARP_SIMPLEX", - "value": 0 - }, - { - "name": "DOMAIN_WARP_SIMPLEX_REDUCED", - "value": 1 - }, - { - "name": "DOMAIN_WARP_BASIC_GRID", - "value": 2 - } - ] - }, - { - "name": "DomainWarpFractalType", - "is_bitfield": false, - "values": [ - { - "name": "DOMAIN_WARP_FRACTAL_NONE", - "value": 0 - }, - { - "name": "DOMAIN_WARP_FRACTAL_PROGRESSIVE", - "value": 1 - }, - { - "name": "DOMAIN_WARP_FRACTAL_INDEPENDENT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_noise_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2624461392, - "arguments": [ - { - "name": "type", - "type": "enum::FastNoiseLite.NoiseType" - } - ] - }, - { - "name": "get_noise_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1458108610, - "return_value": { - "type": "enum::FastNoiseLite.NoiseType" - } - }, - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "freq", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_fractal_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4132731174, - "arguments": [ - { - "name": "type", - "type": "enum::FastNoiseLite.FractalType" - } - ] - }, - { - "name": "get_fractal_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1036889279, - "return_value": { - "type": "enum::FastNoiseLite.FractalType" - } - }, - { - "name": "set_fractal_octaves", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "octave_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fractal_octaves", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fractal_lacunarity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "lacunarity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fractal_lacunarity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fractal_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fractal_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fractal_weighted_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "weighted_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fractal_weighted_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fractal_ping_pong_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ping_pong_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fractal_ping_pong_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_cellular_distance_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1006013267, - "arguments": [ - { - "name": "func", - "type": "enum::FastNoiseLite.CellularDistanceFunction" - } - ] - }, - { - "name": "get_cellular_distance_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2021274088, - "return_value": { - "type": "enum::FastNoiseLite.CellularDistanceFunction" - } - }, - { - "name": "set_cellular_jitter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "jitter", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cellular_jitter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_cellular_return_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2654169698, - "arguments": [ - { - "name": "ret", - "type": "enum::FastNoiseLite.CellularReturnType" - } - ] - }, - { - "name": "get_cellular_return_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3699796343, - "return_value": { - "type": "enum::FastNoiseLite.CellularReturnType" - } - }, - { - "name": "set_domain_warp_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "domain_warp_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_domain_warp_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_domain_warp_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3629692980, - "arguments": [ - { - "name": "domain_warp_type", - "type": "enum::FastNoiseLite.DomainWarpType" - } - ] - }, - { - "name": "get_domain_warp_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2980162020, - "return_value": { - "type": "enum::FastNoiseLite.DomainWarpType" - } - }, - { - "name": "set_domain_warp_amplitude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "domain_warp_amplitude", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_domain_warp_amplitude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_domain_warp_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "domain_warp_frequency", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_domain_warp_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_domain_warp_fractal_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3999408287, - "arguments": [ - { - "name": "domain_warp_fractal_type", - "type": "enum::FastNoiseLite.DomainWarpFractalType" - } - ] - }, - { - "name": "get_domain_warp_fractal_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407716934, - "return_value": { - "type": "enum::FastNoiseLite.DomainWarpFractalType" - } - }, - { - "name": "set_domain_warp_fractal_octaves", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "domain_warp_octave_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_domain_warp_fractal_octaves", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_domain_warp_fractal_lacunarity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "domain_warp_lacunarity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_domain_warp_fractal_lacunarity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_domain_warp_fractal_gain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "domain_warp_gain", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_domain_warp_fractal_gain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "noise_type", - "setter": "set_noise_type", - "getter": "get_noise_type" - }, - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "float", - "name": "frequency", - "setter": "set_frequency", - "getter": "get_frequency" - }, - { - "type": "Vector3", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "int", - "name": "fractal_type", - "setter": "set_fractal_type", - "getter": "get_fractal_type" - }, - { - "type": "int", - "name": "fractal_octaves", - "setter": "set_fractal_octaves", - "getter": "get_fractal_octaves" - }, - { - "type": "float", - "name": "fractal_lacunarity", - "setter": "set_fractal_lacunarity", - "getter": "get_fractal_lacunarity" - }, - { - "type": "float", - "name": "fractal_gain", - "setter": "set_fractal_gain", - "getter": "get_fractal_gain" - }, - { - "type": "float", - "name": "fractal_weighted_strength", - "setter": "set_fractal_weighted_strength", - "getter": "get_fractal_weighted_strength" - }, - { - "type": "float", - "name": "fractal_ping_pong_strength", - "setter": "set_fractal_ping_pong_strength", - "getter": "get_fractal_ping_pong_strength" - }, - { - "type": "int", - "name": "cellular_distance_function", - "setter": "set_cellular_distance_function", - "getter": "get_cellular_distance_function" - }, - { - "type": "float", - "name": "cellular_jitter", - "setter": "set_cellular_jitter", - "getter": "get_cellular_jitter" - }, - { - "type": "int", - "name": "cellular_return_type", - "setter": "set_cellular_return_type", - "getter": "get_cellular_return_type" - }, - { - "type": "bool", - "name": "domain_warp_enabled", - "setter": "set_domain_warp_enabled", - "getter": "is_domain_warp_enabled" - }, - { - "type": "int", - "name": "domain_warp_type", - "setter": "set_domain_warp_type", - "getter": "get_domain_warp_type" - }, - { - "type": "float", - "name": "domain_warp_amplitude", - "setter": "set_domain_warp_amplitude", - "getter": "get_domain_warp_amplitude" - }, - { - "type": "float", - "name": "domain_warp_frequency", - "setter": "set_domain_warp_frequency", - "getter": "get_domain_warp_frequency" - }, - { - "type": "int", - "name": "domain_warp_fractal_type", - "setter": "set_domain_warp_fractal_type", - "getter": "get_domain_warp_fractal_type" - }, - { - "type": "int", - "name": "domain_warp_fractal_octaves", - "setter": "set_domain_warp_fractal_octaves", - "getter": "get_domain_warp_fractal_octaves" - }, - { - "type": "float", - "name": "domain_warp_fractal_lacunarity", - "setter": "set_domain_warp_fractal_lacunarity", - "getter": "get_domain_warp_fractal_lacunarity" - }, - { - "type": "float", - "name": "domain_warp_fractal_gain", - "setter": "set_domain_warp_fractal_gain", - "getter": "get_domain_warp_fractal_gain" - } - ] - }, - { - "name": "FileAccess", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ModeFlags", - "is_bitfield": false, - "values": [ - { - "name": "READ", - "value": 1 - }, - { - "name": "WRITE", - "value": 2 - }, - { - "name": "READ_WRITE", - "value": 3 - }, - { - "name": "WRITE_READ", - "value": 7 - } - ] - }, - { - "name": "CompressionMode", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESSION_FASTLZ", - "value": 0 - }, - { - "name": "COMPRESSION_DEFLATE", - "value": 1 - }, - { - "name": "COMPRESSION_ZSTD", - "value": 2 - }, - { - "name": "COMPRESSION_GZIP", - "value": 3 - }, - { - "name": "COMPRESSION_BROTLI", - "value": 4 - } - ] - }, - { - "name": "UnixPermissionFlags", - "is_bitfield": true, - "values": [ - { - "name": "UNIX_READ_OWNER", - "value": 256 - }, - { - "name": "UNIX_WRITE_OWNER", - "value": 128 - }, - { - "name": "UNIX_EXECUTE_OWNER", - "value": 64 - }, - { - "name": "UNIX_READ_GROUP", - "value": 32 - }, - { - "name": "UNIX_WRITE_GROUP", - "value": 16 - }, - { - "name": "UNIX_EXECUTE_GROUP", - "value": 8 - }, - { - "name": "UNIX_READ_OTHER", - "value": 4 - }, - { - "name": "UNIX_WRITE_OTHER", - "value": 2 - }, - { - "name": "UNIX_EXECUTE_OTHER", - "value": 1 - }, - { - "name": "UNIX_SET_USER_ID", - "value": 2048 - }, - { - "name": "UNIX_SET_GROUP_ID", - "value": 1024 - }, - { - "name": "UNIX_RESTRICTED_DELETE", - "value": 512 - } - ] - } - ], - "methods": [ - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1247358404, - "return_value": { - "type": "FileAccess" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "enum::FileAccess.ModeFlags" - } - ] - }, - { - "name": "open_encrypted", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 788003459, - "hash_compatibility": [ - 1482131466 - ], - "return_value": { - "type": "FileAccess" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "mode_flags", - "type": "enum::FileAccess.ModeFlags" - }, - { - "name": "key", - "type": "PackedByteArray" - }, - { - "name": "iv", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - } - ] - }, - { - "name": "open_encrypted_with_pass", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 790283377, - "return_value": { - "type": "FileAccess" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "mode_flags", - "type": "enum::FileAccess.ModeFlags" - }, - { - "name": "pass", - "type": "String" - } - ] - }, - { - "name": "open_compressed", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3686439335, - "hash_compatibility": [ - 2874458257 - ], - "return_value": { - "type": "FileAccess" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "mode_flags", - "type": "enum::FileAccess.ModeFlags" - }, - { - "name": "compression_mode", - "type": "enum::FileAccess.CompressionMode", - "default_value": "0" - } - ] - }, - { - "name": "get_open_error", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "create_temp", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 171914364, - "hash_compatibility": [ - 3075606245 - ], - "return_value": { - "type": "FileAccess" - }, - "arguments": [ - { - "name": "mode_flags", - "type": "enum::FileAccess.ModeFlags" - }, - { - "name": "prefix", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "extension", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "keep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_file_as_bytes", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 659035735, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_file_as_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "flush", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_path_absolute", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_open", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "position", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "seek_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "position", - "type": "int", - "meta": "int64", - "default_value": "0" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "eof_reached", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_8", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint8" - } - }, - { - "name": "get_16", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint16" - } - }, - { - "name": "get_32", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_64", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_half", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_float", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_double", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_real", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4131300905, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_csv_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2358116058, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "delim", - "type": "String", - "default_value": "\",\"" - } - ] - }, - { - "name": "get_as_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "hash_compatibility": [ - 1162154673 - ], - "return_value": { - "type": "String" - } - }, - { - "name": "get_md5", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_sha256", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_big_endian", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_big_endian", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "big_endian", - "type": "bool" - } - ] - }, - { - "name": "get_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3185525595, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_var", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 189129690, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "store_8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "hash_compatibility": [ - 1286410249 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint8" - } - ] - }, - { - "name": "store_16", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "hash_compatibility": [ - 1286410249 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint16" - } - ] - }, - { - "name": "store_32", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "hash_compatibility": [ - 1286410249 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "store_64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "hash_compatibility": [ - 1286410249 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "store_half", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330693286, - "hash_compatibility": [ - 373806689 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "store_float", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330693286, - "hash_compatibility": [ - 373806689 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "store_double", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330693286, - "hash_compatibility": [ - 373806689 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "store_real", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330693286, - "hash_compatibility": [ - 373806689 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "store_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 114037665, - "hash_compatibility": [ - 2971499966 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "store_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "hash_compatibility": [ - 83702148 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "String" - } - ] - }, - { - "name": "store_csv_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611473434, - "hash_compatibility": [ - 2173791505, - 2217842308 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "values", - "type": "PackedStringArray" - }, - { - "name": "delim", - "type": "String", - "default_value": "\",\"" - } - ] - }, - { - "name": "store_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "hash_compatibility": [ - 83702148 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "store_var", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 117357437, - "hash_compatibility": [ - 738511890 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "full_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "store_pascal_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "hash_compatibility": [ - 83702148 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "get_pascal_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "file_exists", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_modified_time", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_access_time", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_size", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_unix_permissions", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 524341837, - "return_value": { - "type": "bitfield::FileAccess.UnixPermissionFlags" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "set_unix_permissions", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 846038644, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "permissions", - "type": "bitfield::FileAccess.UnixPermissionFlags" - } - ] - }, - { - "name": "get_hidden_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "set_hidden_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2892558115, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "set_read_only_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2892558115, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "ro", - "type": "bool" - } - ] - }, - { - "name": "get_read_only_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_extended_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 955893464, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "attribute_name", - "type": "String" - } - ] - }, - { - "name": "get_extended_attribute_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1218461987, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "attribute_name", - "type": "String" - } - ] - }, - { - "name": "set_extended_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2643421469, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "attribute_name", - "type": "String" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "set_extended_attribute_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 699024349, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "attribute_name", - "type": "String" - }, - { - "name": "data", - "type": "String" - } - ] - }, - { - "name": "remove_extended_attribute", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - }, - { - "name": "attribute_name", - "type": "String" - } - ] - }, - { - "name": "get_extended_attributes_list", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "big_endian", - "setter": "set_big_endian", - "getter": "is_big_endian" - } - ] - }, - { - "name": "FileDialog", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ConfirmationDialog", - "api_type": "core", - "enums": [ - { - "name": "FileMode", - "is_bitfield": false, - "values": [ - { - "name": "FILE_MODE_OPEN_FILE", - "value": 0 - }, - { - "name": "FILE_MODE_OPEN_FILES", - "value": 1 - }, - { - "name": "FILE_MODE_OPEN_DIR", - "value": 2 - }, - { - "name": "FILE_MODE_OPEN_ANY", - "value": 3 - }, - { - "name": "FILE_MODE_SAVE_FILE", - "value": 4 - } - ] - }, - { - "name": "Access", - "is_bitfield": false, - "values": [ - { - "name": "ACCESS_RESOURCES", - "value": 0 - }, - { - "name": "ACCESS_USERDATA", - "value": 1 - }, - { - "name": "ACCESS_FILESYSTEM", - "value": 2 - } - ] - }, - { - "name": "DisplayMode", - "is_bitfield": false, - "values": [ - { - "name": "DISPLAY_THUMBNAILS", - "value": 0 - }, - { - "name": "DISPLAY_LIST", - "value": 1 - } - ] - }, - { - "name": "Customization", - "is_bitfield": false, - "values": [ - { - "name": "CUSTOMIZATION_HIDDEN_FILES", - "value": 0 - }, - { - "name": "CUSTOMIZATION_CREATE_FOLDER", - "value": 1 - }, - { - "name": "CUSTOMIZATION_FILE_FILTER", - "value": 2 - }, - { - "name": "CUSTOMIZATION_FILE_SORT", - "value": 3 - }, - { - "name": "CUSTOMIZATION_FAVORITES", - "value": 4 - }, - { - "name": "CUSTOMIZATION_RECENT", - "value": 5 - }, - { - "name": "CUSTOMIZATION_LAYOUT", - "value": 6 - }, - { - "name": "CUSTOMIZATION_OVERWRITE_WARNING", - "value": 7 - }, - { - "name": "CUSTOMIZATION_DELETE", - "value": 8 - } - ] - } - ], - "methods": [ - { - "name": "clear_filters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 914921954, - "hash_compatibility": [ - 3388804757, - 233059325 - ], - "arguments": [ - { - "name": "filter", - "type": "String" - }, - { - "name": "description", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "mime_type", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "set_filters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "filters", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_filters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "clear_filename_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_filename_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "filter", - "type": "String" - } - ] - }, - { - "name": "get_filename_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_option_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_option_values", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 647634434, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_option_default", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_option_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_option_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3353661094, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - }, - { - "name": "values", - "type": "PackedStringArray" - } - ] - }, - { - "name": "set_option_default", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - }, - { - "name": "default_value_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_option_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_option_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 149592325, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "values", - "type": "PackedStringArray" - }, - { - "name": "default_value_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_selected_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_current_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_current_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_current_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_current_dir", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "dir", - "type": "String" - } - ] - }, - { - "name": "set_current_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "set_current_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_mode_overrides_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "override", - "type": "bool" - } - ] - }, - { - "name": "is_mode_overriding_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_file_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3654936397, - "arguments": [ - { - "name": "mode", - "type": "enum::FileDialog.FileMode" - } - ] - }, - { - "name": "get_file_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4074825319, - "return_value": { - "type": "enum::FileDialog.FileMode" - } - }, - { - "name": "set_display_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2692197101, - "arguments": [ - { - "name": "mode", - "type": "enum::FileDialog.DisplayMode" - } - ] - }, - { - "name": "get_display_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1092104624, - "return_value": { - "type": "enum::FileDialog.DisplayMode" - } - }, - { - "name": "get_vbox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 915758477, - "return_value": { - "type": "VBoxContainer" - } - }, - { - "name": "get_line_edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4071694264, - "return_value": { - "type": "LineEdit" - } - }, - { - "name": "set_access", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4104413466, - "arguments": [ - { - "name": "access", - "type": "enum::FileDialog.Access" - } - ] - }, - { - "name": "get_access", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3344081076, - "return_value": { - "type": "enum::FileDialog.Access" - } - }, - { - "name": "set_root_subfolder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "dir", - "type": "String" - } - ] - }, - { - "name": "get_root_subfolder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_show_hidden_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "is_showing_hidden_files", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_native_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "native", - "type": "bool" - } - ] - }, - { - "name": "get_use_native_dialog", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_customization_flag_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3849177100, - "arguments": [ - { - "name": "flag", - "type": "enum::FileDialog.Customization" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_customization_flag_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3722277863, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::FileDialog.Customization" - } - ] - }, - { - "name": "deselect_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_favorite_list", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "favorites", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_favorite_list", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_recent_list", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "recents", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_recent_list", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_get_icon_callback", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "set_get_thumbnail_callback", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "popup_file_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "invalidate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "file_selected", - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "files_selected", - "arguments": [ - { - "name": "paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "dir_selected", - "arguments": [ - { - "name": "dir", - "type": "String" - } - ] - }, - { - "name": "filename_filter_changed", - "arguments": [ - { - "name": "filter", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "mode_overrides_title", - "setter": "set_mode_overrides_title", - "getter": "is_mode_overriding_title" - }, - { - "type": "int", - "name": "file_mode", - "setter": "set_file_mode", - "getter": "get_file_mode" - }, - { - "type": "int", - "name": "display_mode", - "setter": "set_display_mode", - "getter": "get_display_mode" - }, - { - "type": "int", - "name": "access", - "setter": "set_access", - "getter": "get_access" - }, - { - "type": "String", - "name": "root_subfolder", - "setter": "set_root_subfolder", - "getter": "get_root_subfolder" - }, - { - "type": "PackedStringArray", - "name": "filters", - "setter": "set_filters", - "getter": "get_filters" - }, - { - "type": "String", - "name": "filename_filter", - "setter": "set_filename_filter", - "getter": "get_filename_filter" - }, - { - "type": "bool", - "name": "show_hidden_files", - "setter": "set_show_hidden_files", - "getter": "is_showing_hidden_files" - }, - { - "type": "bool", - "name": "use_native_dialog", - "setter": "set_use_native_dialog", - "getter": "get_use_native_dialog" - }, - { - "type": "int", - "name": "option_count", - "setter": "set_option_count", - "getter": "get_option_count" - }, - { - "type": "bool", - "name": "hidden_files_toggle_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 0 - }, - { - "type": "bool", - "name": "file_filter_toggle_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 2 - }, - { - "type": "bool", - "name": "file_sort_options_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 3 - }, - { - "type": "bool", - "name": "folder_creation_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 1 - }, - { - "type": "bool", - "name": "favorites_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 4 - }, - { - "type": "bool", - "name": "recent_list_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 5 - }, - { - "type": "bool", - "name": "layout_toggle_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 6 - }, - { - "type": "bool", - "name": "overwrite_warning_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 7 - }, - { - "type": "bool", - "name": "deleting_enabled", - "setter": "set_customization_flag_enabled", - "getter": "is_customization_flag_enabled", - "index": 8 - }, - { - "type": "String", - "name": "current_dir", - "setter": "set_current_dir", - "getter": "get_current_dir" - }, - { - "type": "String", - "name": "current_file", - "setter": "set_current_file", - "getter": "get_current_file" - }, - { - "type": "String", - "name": "current_path", - "setter": "set_current_path", - "getter": "get_current_path" - } - ] - }, - { - "name": "FileSystemDock", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "EditorDock", - "api_type": "editor", - "methods": [ - { - "name": "navigate_to_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_resource_tooltip_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2258356838, - "arguments": [ - { - "name": "plugin", - "type": "EditorResourceTooltipPlugin" - } - ] - }, - { - "name": "remove_resource_tooltip_plugin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2258356838, - "arguments": [ - { - "name": "plugin", - "type": "EditorResourceTooltipPlugin" - } - ] - } - ], - "signals": [ - { - "name": "inherit", - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "instantiate", - "arguments": [ - { - "name": "files", - "type": "PackedStringArray" - } - ] - }, - { - "name": "resource_removed", - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "file_removed", - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "folder_removed", - "arguments": [ - { - "name": "folder", - "type": "String" - } - ] - }, - { - "name": "files_moved", - "arguments": [ - { - "name": "old_file", - "type": "String" - }, - { - "name": "new_file", - "type": "String" - } - ] - }, - { - "name": "folder_moved", - "arguments": [ - { - "name": "old_folder", - "type": "String" - }, - { - "name": "new_folder", - "type": "String" - } - ] - }, - { - "name": "folder_color_changed" - }, - { - "name": "selection_changed" - }, - { - "name": "display_mode_changed" - } - ] - }, - { - "name": "FlowContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "AlignmentMode", - "is_bitfield": false, - "values": [ - { - "name": "ALIGNMENT_BEGIN", - "value": 0 - }, - { - "name": "ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "ALIGNMENT_END", - "value": 2 - } - ] - }, - { - "name": "LastWrapAlignmentMode", - "is_bitfield": false, - "values": [ - { - "name": "LAST_WRAP_ALIGNMENT_INHERIT", - "value": 0 - }, - { - "name": "LAST_WRAP_ALIGNMENT_BEGIN", - "value": 1 - }, - { - "name": "LAST_WRAP_ALIGNMENT_CENTER", - "value": 2 - }, - { - "name": "LAST_WRAP_ALIGNMENT_END", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 575250951, - "arguments": [ - { - "name": "alignment", - "type": "enum::FlowContainer.AlignmentMode" - } - ] - }, - { - "name": "get_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3749743559, - "return_value": { - "type": "enum::FlowContainer.AlignmentMode" - } - }, - { - "name": "set_last_wrap_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899697495, - "arguments": [ - { - "name": "last_wrap_alignment", - "type": "enum::FlowContainer.LastWrapAlignmentMode" - } - ] - }, - { - "name": "get_last_wrap_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3743456014, - "return_value": { - "type": "enum::FlowContainer.LastWrapAlignmentMode" - } - }, - { - "name": "set_vertical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "is_vertical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_reverse_fill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "reverse_fill", - "type": "bool" - } - ] - }, - { - "name": "is_reverse_fill", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "alignment", - "setter": "set_alignment", - "getter": "get_alignment" - }, - { - "type": "int", - "name": "last_wrap_alignment", - "setter": "set_last_wrap_alignment", - "getter": "get_last_wrap_alignment" - }, - { - "type": "bool", - "name": "vertical", - "setter": "set_vertical", - "getter": "is_vertical" - }, - { - "type": "bool", - "name": "reverse_fill", - "setter": "set_reverse_fill", - "getter": "is_reverse_fill" - } - ] - }, - { - "name": "FogMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "methods": [ - { - "name": "set_density", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "density", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_density", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_albedo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "albedo", - "type": "Color" - } - ] - }, - { - "name": "get_albedo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_emission", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "emission", - "type": "Color" - } - ] - }, - { - "name": "get_emission", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_height_falloff", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height_falloff", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height_falloff", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_edge_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge_fade", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_edge_fade", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_density_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1188404210, - "arguments": [ - { - "name": "density_texture", - "type": "Texture3D" - } - ] - }, - { - "name": "get_density_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373985333, - "return_value": { - "type": "Texture3D" - } - } - ], - "properties": [ - { - "type": "float", - "name": "density", - "setter": "set_density", - "getter": "get_density" - }, - { - "type": "Color", - "name": "albedo", - "setter": "set_albedo", - "getter": "get_albedo" - }, - { - "type": "Color", - "name": "emission", - "setter": "set_emission", - "getter": "get_emission" - }, - { - "type": "float", - "name": "height_falloff", - "setter": "set_height_falloff", - "getter": "get_height_falloff" - }, - { - "type": "float", - "name": "edge_fade", - "setter": "set_edge_fade", - "getter": "get_edge_fade" - }, - { - "type": "Texture3D", - "name": "density_texture", - "setter": "set_density_texture", - "getter": "get_density_texture" - } - ] - }, - { - "name": "FogVolume", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1416323362, - "arguments": [ - { - "name": "shape", - "type": "enum::RenderingServer.FogVolumeShape" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3920334604, - "return_value": { - "type": "enum::RenderingServer.FogVolumeShape" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "FogMaterial,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - } - ] - }, - { - "name": "FoldableContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "TitlePosition", - "is_bitfield": false, - "values": [ - { - "name": "POSITION_TOP", - "value": 0 - }, - { - "name": "POSITION_BOTTOM", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "fold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "expand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_folded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "folded", - "type": "bool" - } - ] - }, - { - "name": "is_folded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_foldable_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3001390597, - "arguments": [ - { - "name": "button_group", - "type": "FoldableGroup" - } - ] - }, - { - "name": "get_foldable_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 66499518, - "return_value": { - "type": "FoldableGroup" - } - }, - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_title_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_title_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_title_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "text_direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_title_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_title_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_title_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_title_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2276829442, - "arguments": [ - { - "name": "title_position", - "type": "enum::FoldableContainer.TitlePosition" - } - ] - }, - { - "name": "get_title_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3028840207, - "return_value": { - "type": "enum::FoldableContainer.TitlePosition" - } - }, - { - "name": "add_title_bar_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "remove_title_bar_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - } - ], - "signals": [ - { - "name": "folding_changed", - "arguments": [ - { - "name": "is_folded", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "folded", - "setter": "set_folded", - "getter": "is_folded" - }, - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "int", - "name": "title_alignment", - "setter": "set_title_alignment", - "getter": "get_title_alignment" - }, - { - "type": "int", - "name": "title_position", - "setter": "set_title_position", - "getter": "get_title_position" - }, - { - "type": "int", - "name": "title_text_overrun_behavior", - "setter": "set_title_text_overrun_behavior", - "getter": "get_title_text_overrun_behavior" - }, - { - "type": "FoldableGroup", - "name": "foldable_group", - "setter": "set_foldable_group", - "getter": "get_foldable_group" - }, - { - "type": "int", - "name": "title_text_direction", - "setter": "set_title_text_direction", - "getter": "get_title_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - } - ] - }, - { - "name": "FoldableGroup", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_expanded_container", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1427441056, - "return_value": { - "type": "FoldableContainer" - } - }, - { - "name": "get_containers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::FoldableContainer" - } - }, - { - "name": "set_allow_folding_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_allow_folding_all", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "expanded", - "arguments": [ - { - "name": "container", - "type": "FoldableContainer" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "allow_folding_all", - "setter": "set_allow_folding_all", - "getter": "is_allow_folding_all" - } - ] - }, - { - "name": "Font", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_fallbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "fallbacks", - "type": "typedarray::Font" - } - ] - }, - { - "name": "get_fallbacks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Font" - } - }, - { - "name": "find_variation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3275867622, - "hash_compatibility": [ - 1851767612, - 3344325384, - 2553855095, - 1222433716, - 1149405976 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "variation_coordinates", - "type": "Dictionary" - }, - { - "name": "face_index", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "strength", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "transform", - "type": "Transform2D", - "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "spacing_top", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "spacing_bottom", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "spacing_space", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "spacing_glyph", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "baseline_offset", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "palette_index", - "type": "int", - "meta": "int64", - "default_value": "0" - }, - { - "name": "custom_colors", - "type": "PackedColorArray", - "default_value": "PackedColorArray()" - } - ] - }, - { - "name": "get_rids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 378113874, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - } - ] - }, - { - "name": "get_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 378113874, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - } - ] - }, - { - "name": "get_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 378113874, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - } - ] - }, - { - "name": "get_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 378113874, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - } - ] - }, - { - "name": "get_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 378113874, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - } - ] - }, - { - "name": "get_font_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_font_style_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_ot_name_strings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_font_style", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2520224254, - "return_value": { - "type": "bitfield::TextServer.FontStyle" - } - }, - { - "name": "get_font_weight", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_font_stretch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_palette_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_palette_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_palette_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2552048864, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1310880908, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "get_opentype_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_cache_capacity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "single_line", - "type": "int", - "meta": "int32" - }, - { - "name": "multi_line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_string_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1868866121, - "hash_compatibility": [ - 3678918099 - ], - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - } - ] - }, - { - "name": "get_multiline_string_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 519636710, - "hash_compatibility": [ - 2427690650 - ], - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "max_lines", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "brk_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - } - ] - }, - { - "name": "draw_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976686372, - "hash_compatibility": [ - 1983721962, - 2565402639 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_multiline_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2686601589, - "hash_compatibility": [ - 1171506176, - 348869189 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "max_lines", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "brk_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_string_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 701417663, - "hash_compatibility": [ - 623754045, - 657875837 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_multiline_string_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4147839237, - "hash_compatibility": [ - 3206388178, - 1649790182 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "0" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, - { - "name": "max_lines", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "brk_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "get_char_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "char", - "type": "int", - "meta": "char32" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "draw_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3500170256, - "hash_compatibility": [ - 3815617597, - 1462476057 - ], - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "char", - "type": "int", - "meta": "char32" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_char_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684114874, - "hash_compatibility": [ - 209525354, - 4161008124 - ], - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "char", - "type": "int", - "meta": "char32" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "has_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "char", - "type": "int", - "meta": "char32" - } - ] - }, - { - "name": "get_supported_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_language_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "is_script_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "get_supported_feature_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_supported_variation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_face_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - } - ], - "properties": [ - { - "type": "typedarray::24/17:Font", - "name": "fallbacks", - "setter": "set_fallbacks", - "getter": "get_fallbacks" - } - ] - }, - { - "name": "FontFile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Font", - "api_type": "core", - "methods": [ - { - "name": "load_bitmap_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load_dynamic_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_font_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_font_style_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_font_style", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 918070724, - "arguments": [ - { - "name": "style", - "type": "bitfield::TextServer.FontStyle" - } - ] - }, - { - "name": "set_font_weight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "weight", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_font_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stretch", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1669900, - "arguments": [ - { - "name": "antialiasing", - "type": "enum::TextServer.FontAntialiasing" - } - ] - }, - { - "name": "get_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4262718649, - "return_value": { - "type": "enum::TextServer.FontAntialiasing" - } - }, - { - "name": "set_disable_embedded_bitmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable_embedded_bitmaps", - "type": "bool" - } - ] - }, - { - "name": "get_disable_embedded_bitmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "generate_mipmaps", - "type": "bool" - } - ] - }, - { - "name": "get_generate_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_multichannel_signed_distance_field", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "msdf", - "type": "bool" - } - ] - }, - { - "name": "is_multichannel_signed_distance_field", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_msdf_pixel_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "msdf_pixel_range", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_msdf_pixel_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_msdf_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "msdf_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_msdf_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fixed_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "fixed_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fixed_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fixed_size_scale_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1660989956, - "arguments": [ - { - "name": "fixed_size_scale_mode", - "type": "enum::TextServer.FixedSizeScaleMode" - } - ] - }, - { - "name": "get_fixed_size_scale_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 753873478, - "return_value": { - "type": "enum::TextServer.FixedSizeScaleMode" - } - }, - { - "name": "set_allow_system_fallback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow_system_fallback", - "type": "bool" - } - ] - }, - { - "name": "is_allow_system_fallback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_force_autohinter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force_autohinter", - "type": "bool" - } - ] - }, - { - "name": "is_force_autohinter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modulate_color_glyphs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "modulate", - "type": "bool" - } - ] - }, - { - "name": "is_modulate_color_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hinting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1827459492, - "arguments": [ - { - "name": "hinting", - "type": "enum::TextServer.Hinting" - } - ] - }, - { - "name": "get_hinting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3683214614, - "return_value": { - "type": "enum::TextServer.Hinting" - } - }, - { - "name": "set_subpixel_positioning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4225742182, - "arguments": [ - { - "name": "subpixel_positioning", - "type": "enum::TextServer.SubpixelPositioning" - } - ] - }, - { - "name": "get_subpixel_positioning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1069238588, - "return_value": { - "type": "enum::TextServer.SubpixelPositioning" - } - }, - { - "name": "set_keep_rounding_remainders", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "keep_rounding_remainders", - "type": "bool" - } - ] - }, - { - "name": "get_keep_rounding_remainders", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_cache_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "remove_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_size_cache_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_size_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_size_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311374912, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "set_variation_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 64545446, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "variation_coordinates", - "type": "Dictionary" - } - ] - }, - { - "name": "get_variation_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_embolden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_embolden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 30160968, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3836996910, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_extra_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 62942285, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_extra_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1924257185, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "set_extra_baseline_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "baseline_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_extra_baseline_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_face_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "face_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_face_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_cache_ascent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "ascent", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cache_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_cache_descent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "descent", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cache_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_cache_underline_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "underline_position", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cache_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_cache_underline_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "underline_thickness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cache_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_cache_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cache_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_texture_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1987661582, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "clear_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311374912, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "remove_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2328951467, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_texture_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4157974066, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int32" - }, - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "get_texture_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3878418953, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_texture_offsets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2849993437, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_texture_offsets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3703444828, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_glyph_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 681709689, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "clear_glyphs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311374912, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "remove_glyph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2328951467, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glyph_advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 947991729, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - }, - { - "name": "advance", - "type": "Vector2" - } - ] - }, - { - "name": "get_glyph_advance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1601573536, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glyph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 921719850, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_glyph_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3205412300, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glyph_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 921719850, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - }, - { - "name": "gl_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_glyph_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3205412300, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glyph_uv_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3821620992, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - }, - { - "name": "uv_rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_glyph_uv_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927917900, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_glyph_texture_idx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 355564111, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - }, - { - "name": "texture_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_glyph_texture_idx", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1629411054, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_kerning_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2345056839, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_kerning_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_kerning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3930204747, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "set_kerning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3182200918, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - }, - { - "name": "kerning", - "type": "Vector2" - } - ] - }, - { - "name": "get_kerning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611912865, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "render_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 355564111, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "start", - "type": "int", - "meta": "char32" - }, - { - "name": "end", - "type": "int", - "meta": "char32" - } - ] - }, - { - "name": "render_glyph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2328951467, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_language_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "language", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "get_language_support_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "remove_language_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language_support_overrides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_script_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "script", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "get_script_support_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "remove_script_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "get_script_support_overrides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_opentype_feature_overrides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "overrides", - "type": "Dictionary" - } - ] - }, - { - "name": "get_opentype_feature_overrides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_glyph_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 864943070, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "char", - "type": "int", - "meta": "char32" - }, - { - "name": "variation_selector", - "type": "int", - "meta": "char32" - } - ] - }, - { - "name": "get_char_from_glyph_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "char32" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "glyph_index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "data", - "setter": "set_data", - "getter": "get_data" - }, - { - "type": "bool", - "name": "generate_mipmaps", - "setter": "set_generate_mipmaps", - "getter": "get_generate_mipmaps" - }, - { - "type": "bool", - "name": "disable_embedded_bitmaps", - "setter": "set_disable_embedded_bitmaps", - "getter": "get_disable_embedded_bitmaps" - }, - { - "type": "int", - "name": "antialiasing", - "setter": "set_antialiasing", - "getter": "get_antialiasing" - }, - { - "type": "String", - "name": "font_name", - "setter": "set_font_name", - "getter": "get_font_name" - }, - { - "type": "String", - "name": "style_name", - "setter": "set_font_style_name", - "getter": "get_font_style_name" - }, - { - "type": "int", - "name": "font_style", - "setter": "set_font_style", - "getter": "get_font_style" - }, - { - "type": "int", - "name": "font_weight", - "setter": "set_font_weight", - "getter": "get_font_weight" - }, - { - "type": "int", - "name": "font_stretch", - "setter": "set_font_stretch", - "getter": "get_font_stretch" - }, - { - "type": "int", - "name": "subpixel_positioning", - "setter": "set_subpixel_positioning", - "getter": "get_subpixel_positioning" - }, - { - "type": "bool", - "name": "keep_rounding_remainders", - "setter": "set_keep_rounding_remainders", - "getter": "get_keep_rounding_remainders" - }, - { - "type": "bool", - "name": "multichannel_signed_distance_field", - "setter": "set_multichannel_signed_distance_field", - "getter": "is_multichannel_signed_distance_field" - }, - { - "type": "int", - "name": "msdf_pixel_range", - "setter": "set_msdf_pixel_range", - "getter": "get_msdf_pixel_range" - }, - { - "type": "int", - "name": "msdf_size", - "setter": "set_msdf_size", - "getter": "get_msdf_size" - }, - { - "type": "bool", - "name": "allow_system_fallback", - "setter": "set_allow_system_fallback", - "getter": "is_allow_system_fallback" - }, - { - "type": "bool", - "name": "force_autohinter", - "setter": "set_force_autohinter", - "getter": "is_force_autohinter" - }, - { - "type": "bool", - "name": "modulate_color_glyphs", - "setter": "set_modulate_color_glyphs", - "getter": "is_modulate_color_glyphs" - }, - { - "type": "int", - "name": "hinting", - "setter": "set_hinting", - "getter": "get_hinting" - }, - { - "type": "int", - "name": "fixed_size", - "setter": "set_fixed_size", - "getter": "get_fixed_size" - }, - { - "type": "int", - "name": "fixed_size_scale_mode", - "setter": "set_fixed_size_scale_mode", - "getter": "get_fixed_size_scale_mode" - }, - { - "type": "Dictionary", - "name": "opentype_feature_overrides", - "setter": "set_opentype_feature_overrides", - "getter": "get_opentype_feature_overrides" - }, - { - "type": "float", - "name": "oversampling", - "setter": "set_oversampling", - "getter": "get_oversampling" - } - ] - }, - { - "name": "FontVariation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Font", - "api_type": "core", - "methods": [ - { - "name": "set_base_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_base_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "set_variation_opentype", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "coords", - "type": "Dictionary" - } - ] - }, - { - "name": "get_variation_opentype", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_variation_embolden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_variation_embolden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_variation_face_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "face_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_variation_face_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_variation_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_variation_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "features", - "type": "Dictionary" - } - ] - }, - { - "name": "set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3122339690, - "arguments": [ - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_baseline_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "baseline_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_baseline_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_palette_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_palette_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "palette_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_palette_custom_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_palette_custom_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "colors", - "type": "PackedColorArray" - } - ] - } - ], - "properties": [ - { - "type": "Font", - "name": "base_font", - "setter": "set_base_font", - "getter": "get_base_font" - }, - { - "type": "Dictionary", - "name": "variation_opentype", - "setter": "set_variation_opentype", - "getter": "get_variation_opentype" - }, - { - "type": "int", - "name": "variation_face_index", - "setter": "set_variation_face_index", - "getter": "get_variation_face_index" - }, - { - "type": "float", - "name": "variation_embolden", - "setter": "set_variation_embolden", - "getter": "get_variation_embolden" - }, - { - "type": "Transform2D", - "name": "variation_transform", - "setter": "set_variation_transform", - "getter": "get_variation_transform" - }, - { - "type": "Dictionary", - "name": "opentype_features", - "setter": "set_opentype_features", - "getter": "get_opentype_features" - }, - { - "type": "int", - "name": "spacing_glyph", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 0 - }, - { - "type": "int", - "name": "spacing_space", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 1 - }, - { - "type": "int", - "name": "spacing_top", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 2 - }, - { - "type": "int", - "name": "spacing_bottom", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 3 - }, - { - "type": "float", - "name": "baseline_offset", - "setter": "set_baseline_offset", - "getter": "get_baseline_offset" - }, - { - "type": "int", - "name": "palette_index", - "setter": "set_palette_index", - "getter": "get_palette_index" - }, - { - "type": "PackedColorArray", - "name": "palette_custom_colors", - "setter": "set_palette_custom_colors", - "getter": "get_palette_custom_colors" - } - ] - }, - { - "name": "FramebufferCacheRD", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_cache_multipass", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3437881813, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "textures", - "type": "typedarray::RID" - }, - { - "name": "passes", - "type": "typedarray::RDFramebufferPass" - }, - { - "name": "views", - "type": "int", - "meta": "uint32" - } - ] - } - ] - }, - { - "name": "GDExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "InitializationLevel", - "is_bitfield": false, - "values": [ - { - "name": "INITIALIZATION_LEVEL_CORE", - "value": 0 - }, - { - "name": "INITIALIZATION_LEVEL_SERVERS", - "value": 1 - }, - { - "name": "INITIALIZATION_LEVEL_SCENE", - "value": 2 - }, - { - "name": "INITIALIZATION_LEVEL_EDITOR", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "is_library_open", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_minimum_library_initialization_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 964858755, - "return_value": { - "type": "enum::GDExtension.InitializationLevel" - } - } - ] - }, - { - "name": "GDExtensionManager", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "LoadStatus", - "is_bitfield": false, - "values": [ - { - "name": "LOAD_STATUS_OK", - "value": 0 - }, - { - "name": "LOAD_STATUS_FAILED", - "value": 1 - }, - { - "name": "LOAD_STATUS_ALREADY_LOADED", - "value": 2 - }, - { - "name": "LOAD_STATUS_NOT_LOADED", - "value": 3 - }, - { - "name": "LOAD_STATUS_NEEDS_RESTART", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "load_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4024158731, - "return_value": { - "type": "enum::GDExtensionManager.LoadStatus" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load_extension_from_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1565094761, - "return_value": { - "type": "enum::GDExtensionManager.LoadStatus" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "init_func", - "type": "const GDExtensionInitializationFunction*" - } - ] - }, - { - "name": "reload_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4024158731, - "return_value": { - "type": "enum::GDExtensionManager.LoadStatus" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "unload_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4024158731, - "return_value": { - "type": "enum::GDExtensionManager.LoadStatus" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_extension_loaded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_loaded_extensions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 49743343, - "return_value": { - "type": "GDExtension" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "extensions_reloaded" - }, - { - "name": "extension_loaded", - "arguments": [ - { - "name": "extension", - "type": "GDExtension" - } - ] - }, - { - "name": "extension_unloading", - "arguments": [ - { - "name": "extension", - "type": "GDExtension" - } - ] - } - ] - }, - { - "name": "GDScript", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Script", - "api_type": "core", - "methods": [ - { - "name": "new", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 1545262638, - "return_value": { - "type": "Variant" - } - } - ] - }, - { - "name": "GDScriptLanguageProtocol", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JSONRPC", - "api_type": "editor", - "methods": [ - { - "name": "get_text_document", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 770545799, - "return_value": { - "type": "GDScriptTextDocument" - } - }, - { - "name": "get_workspace", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969295246, - "return_value": { - "type": "GDScriptWorkspace" - } - }, - { - "name": "is_smart_resolve_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_initialized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "initialize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "initialized", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "on_client_connected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "on_client_disconnected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "client_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "notify_client", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2511212011, - "arguments": [ - { - "name": "method", - "type": "String" - }, - { - "name": "params", - "type": "Variant", - "default_value": "null" - }, - { - "name": "client_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - } - ] - }, - { - "name": "GDScriptSyntaxHighlighter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "EditorSyntaxHighlighter", - "api_type": "editor" - }, - { - "name": "GDScriptTextDocument", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "show_native_symbol_in_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "symbol_id", - "type": "String" - } - ] - }, - { - "name": "didOpen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "didClose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "didChange", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "willSaveWaitUntil", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "didSave", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "nativeSymbol", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "documentSymbol", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "resolve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1333564645, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "rename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1333564645, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "prepareRename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "references", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "foldingRange", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "codeLens", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "documentLink", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "colorPresentation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "definition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3877611628, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "declaration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "signatureHelp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762224011, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - } - ] - }, - { - "name": "GDScriptWorkspace", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "editor", - "methods": [ - { - "name": "apply_new_signal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3682583557, - "arguments": [ - { - "name": "obj", - "type": "Object" - }, - { - "name": "function", - "type": "String" - }, - { - "name": "args", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_file_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "uri", - "type": "String" - } - ] - }, - { - "name": "get_file_uri", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "generate_script_api", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2786125124, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "didDeleteFiles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "params", - "type": "Dictionary" - } - ] - }, - { - "name": "parse_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "content", - "type": "String" - } - ] - }, - { - "name": "parse_local_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "publish_diagnostics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "GLTFAccessor", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "GLTFAccessorType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_SCALAR", - "value": 0 - }, - { - "name": "TYPE_VEC2", - "value": 1 - }, - { - "name": "TYPE_VEC3", - "value": 2 - }, - { - "name": "TYPE_VEC4", - "value": 3 - }, - { - "name": "TYPE_MAT2", - "value": 4 - }, - { - "name": "TYPE_MAT3", - "value": 5 - }, - { - "name": "TYPE_MAT4", - "value": 6 - } - ] - }, - { - "name": "GLTFComponentType", - "is_bitfield": false, - "values": [ - { - "name": "COMPONENT_TYPE_NONE", - "value": 0 - }, - { - "name": "COMPONENT_TYPE_SIGNED_BYTE", - "value": 5120 - }, - { - "name": "COMPONENT_TYPE_UNSIGNED_BYTE", - "value": 5121 - }, - { - "name": "COMPONENT_TYPE_SIGNED_SHORT", - "value": 5122 - }, - { - "name": "COMPONENT_TYPE_UNSIGNED_SHORT", - "value": 5123 - }, - { - "name": "COMPONENT_TYPE_SIGNED_INT", - "value": 5124 - }, - { - "name": "COMPONENT_TYPE_UNSIGNED_INT", - "value": 5125 - }, - { - "name": "COMPONENT_TYPE_SINGLE_FLOAT", - "value": 5126 - }, - { - "name": "COMPONENT_TYPE_DOUBLE_FLOAT", - "value": 5130 - }, - { - "name": "COMPONENT_TYPE_HALF_FLOAT", - "value": 5131 - }, - { - "name": "COMPONENT_TYPE_SIGNED_LONG", - "value": 5134 - }, - { - "name": "COMPONENT_TYPE_UNSIGNED_LONG", - "value": 5135 - } - ] - } - ], - "methods": [ - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3495091019, - "return_value": { - "type": "GLTFAccessor" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_buffer_view", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_buffer_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_view", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_byte_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_byte_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "byte_offset", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_component_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852227802, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "enum::GLTFAccessor.GLTFComponentType" - } - }, - { - "name": "set_component_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1780020221, - "hash_compatibility": [ - 1286410249 - ], - "arguments": [ - { - "name": "component_type", - "type": "enum::GLTFAccessor.GLTFComponentType" - } - ] - }, - { - "name": "get_normalized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_normalized", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "normalized", - "type": "bool" - } - ] - }, - { - "name": "get_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_accessor_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1998183368, - "hash_compatibility": [ - 679305214 - ], - "return_value": { - "type": "enum::GLTFAccessor.GLTFAccessorType" - } - }, - { - "name": "set_accessor_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2347728198, - "arguments": [ - { - "name": "accessor_type", - "type": "enum::GLTFAccessor.GLTFAccessorType" - } - ] - }, - { - "name": "get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 547233126, - "hash_compatibility": [ - 148677866 - ], - "return_value": { - "type": "PackedFloat64Array" - } - }, - { - "name": "set_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2576592201, - "arguments": [ - { - "name": "min", - "type": "PackedFloat64Array" - } - ] - }, - { - "name": "get_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 547233126, - "hash_compatibility": [ - 148677866 - ], - "return_value": { - "type": "PackedFloat64Array" - } - }, - { - "name": "set_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2576592201, - "arguments": [ - { - "name": "max", - "type": "PackedFloat64Array" - } - ] - }, - { - "name": "get_sparse_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_sparse_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sparse_count", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_sparse_indices_buffer_view", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sparse_indices_buffer_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sparse_indices_buffer_view", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sparse_indices_byte_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_sparse_indices_byte_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sparse_indices_byte_offset", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_sparse_indices_component_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852227802, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "enum::GLTFAccessor.GLTFComponentType" - } - }, - { - "name": "set_sparse_indices_component_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1780020221, - "hash_compatibility": [ - 1286410249 - ], - "arguments": [ - { - "name": "sparse_indices_component_type", - "type": "enum::GLTFAccessor.GLTFComponentType" - } - ] - }, - { - "name": "get_sparse_values_buffer_view", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sparse_values_buffer_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sparse_values_buffer_view", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sparse_values_byte_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_sparse_values_byte_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sparse_values_byte_offset", - "type": "int", - "meta": "int64" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "buffer_view", - "setter": "set_buffer_view", - "getter": "get_buffer_view" - }, - { - "type": "int", - "name": "byte_offset", - "setter": "set_byte_offset", - "getter": "get_byte_offset" - }, - { - "type": "int", - "name": "component_type", - "setter": "set_component_type", - "getter": "get_component_type" - }, - { - "type": "bool", - "name": "normalized", - "setter": "set_normalized", - "getter": "get_normalized" - }, - { - "type": "int", - "name": "count", - "setter": "set_count", - "getter": "get_count" - }, - { - "type": "int", - "name": "accessor_type", - "setter": "set_accessor_type", - "getter": "get_accessor_type" - }, - { - "type": "int", - "name": "type", - "setter": "set_type", - "getter": "get_type" - }, - { - "type": "PackedFloat64Array", - "name": "min", - "setter": "set_min", - "getter": "get_min" - }, - { - "type": "PackedFloat64Array", - "name": "max", - "setter": "set_max", - "getter": "get_max" - }, - { - "type": "int", - "name": "sparse_count", - "setter": "set_sparse_count", - "getter": "get_sparse_count" - }, - { - "type": "int", - "name": "sparse_indices_buffer_view", - "setter": "set_sparse_indices_buffer_view", - "getter": "get_sparse_indices_buffer_view" - }, - { - "type": "int", - "name": "sparse_indices_byte_offset", - "setter": "set_sparse_indices_byte_offset", - "getter": "get_sparse_indices_byte_offset" - }, - { - "type": "int", - "name": "sparse_indices_component_type", - "setter": "set_sparse_indices_component_type", - "getter": "get_sparse_indices_component_type" - }, - { - "type": "int", - "name": "sparse_values_buffer_view", - "setter": "set_sparse_values_buffer_view", - "getter": "get_sparse_values_buffer_view" - }, - { - "type": "int", - "name": "sparse_values_byte_offset", - "setter": "set_sparse_values_byte_offset", - "getter": "get_sparse_values_byte_offset" - } - ] - }, - { - "name": "GLTFAnimation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "original_name", - "type": "String" - } - ] - }, - { - "name": "get_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "get_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - } - ] - }, - { - "name": "set_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - }, - { - "name": "additional_data", - "type": "Variant" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "original_name", - "setter": "set_original_name", - "getter": "get_original_name" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "get_loop" - } - ] - }, - { - "name": "GLTFBufferView", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "load_buffer_view_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3945446907, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - }, - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2594413512, - "return_value": { - "type": "GLTFBufferView" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_byte_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_byte_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "byte_offset", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_byte_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_byte_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "byte_length", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_byte_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_byte_stride", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "byte_stride", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_indices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_indices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "indices", - "type": "bool" - } - ] - }, - { - "name": "get_vertex_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_vertex_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_attributes", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "buffer", - "setter": "set_buffer", - "getter": "get_buffer" - }, - { - "type": "int", - "name": "byte_offset", - "setter": "set_byte_offset", - "getter": "get_byte_offset" - }, - { - "type": "int", - "name": "byte_length", - "setter": "set_byte_length", - "getter": "get_byte_length" - }, - { - "type": "int", - "name": "byte_stride", - "setter": "set_byte_stride", - "getter": "get_byte_stride" - }, - { - "type": "bool", - "name": "indices", - "setter": "set_indices", - "getter": "get_indices" - }, - { - "type": "bool", - "name": "vertex_attributes", - "setter": "set_vertex_attributes", - "getter": "get_vertex_attributes" - } - ] - }, - { - "name": "GLTFCamera", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "from_node", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 237784, - "return_value": { - "type": "GLTFCamera" - }, - "arguments": [ - { - "name": "camera_node", - "type": "Camera3D" - } - ] - }, - { - "name": "to_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285090890, - "return_value": { - "type": "Camera3D" - } - }, - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2495512509, - "return_value": { - "type": "GLTFCamera" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_perspective", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_perspective", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "perspective", - "type": "bool" - } - ] - }, - { - "name": "get_fov", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fov", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fov", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_size_mag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_size_mag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size_mag", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_far", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth_far", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zdepth_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_near", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth_near", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zdepth_near", - "type": "float", - "meta": "float" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "perspective", - "setter": "set_perspective", - "getter": "get_perspective" - }, - { - "type": "float", - "name": "fov", - "setter": "set_fov", - "getter": "get_fov" - }, - { - "type": "float", - "name": "size_mag", - "setter": "set_size_mag", - "getter": "get_size_mag" - }, - { - "type": "float", - "name": "depth_far", - "setter": "set_depth_far", - "getter": "get_depth_far" - }, - { - "type": "float", - "name": "depth_near", - "setter": "set_depth_near", - "getter": "get_depth_near" - } - ] - }, - { - "name": "GLTFDocument", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "RootNodeMode", - "is_bitfield": false, - "values": [ - { - "name": "ROOT_NODE_MODE_SINGLE_ROOT", - "value": 0 - }, - { - "name": "ROOT_NODE_MODE_KEEP_ROOT", - "value": 1 - }, - { - "name": "ROOT_NODE_MODE_MULTI_ROOT", - "value": 2 - } - ] - }, - { - "name": "TextureMapMode", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_MAP_MODE_DO_NOT_REMAP", - "value": 0 - }, - { - "name": "TEXTURE_MAP_MODE_REMAP_TO_STANDARD_MATERIAL", - "value": 1 - } - ] - }, - { - "name": "VisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_MODE_INCLUDE_REQUIRED", - "value": 0 - }, - { - "name": "VISIBILITY_MODE_INCLUDE_OPTIONAL", - "value": 1 - }, - { - "name": "VISIBILITY_MODE_EXCLUDE", - "value": 2 - } - ] - }, - { - "name": "ImportFlags", - "is_bitfield": true, - "values": [ - { - "name": "IMPORT_FLAG_GENERATE_TANGENT_ARRAYS", - "value": 8 - }, - { - "name": "IMPORT_FLAG_USE_NAMED_SKIN_BINDS", - "value": 16 - }, - { - "name": "IMPORT_FLAG_DISCARD_MESHES_AND_MATERIALS", - "value": 32 - }, - { - "name": "IMPORT_FLAG_FORCE_DISABLE_MESH_COMPRESSION", - "value": 64 - } - ] - } - ], - "methods": [ - { - "name": "set_image_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "image_format", - "type": "String" - } - ] - }, - { - "name": "get_image_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_lossy_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "lossy_quality", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lossy_quality", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fallback_image_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "fallback_image_format", - "type": "String" - } - ] - }, - { - "name": "get_fallback_image_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_fallback_image_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fallback_image_quality", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fallback_image_quality", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_root_node_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 463633402, - "arguments": [ - { - "name": "root_node_mode", - "type": "enum::GLTFDocument.RootNodeMode" - } - ] - }, - { - "name": "get_root_node_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 948057992, - "return_value": { - "type": "enum::GLTFDocument.RootNodeMode" - } - }, - { - "name": "set_texture_map_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3144426102, - "arguments": [ - { - "name": "texture_map_mode", - "type": "enum::GLTFDocument.TextureMapMode" - } - ] - }, - { - "name": "get_texture_map_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2113256994, - "return_value": { - "type": "enum::GLTFDocument.TextureMapMode" - } - }, - { - "name": "set_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2803579218, - "arguments": [ - { - "name": "visibility_mode", - "type": "enum::GLTFDocument.VisibilityMode" - } - ] - }, - { - "name": "get_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3885445962, - "return_value": { - "type": "enum::GLTFDocument.VisibilityMode" - } - }, - { - "name": "append_from_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866380864, - "hash_compatibility": [ - 1862991421 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "base_path", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "append_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1616081266, - "hash_compatibility": [ - 2818062664 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "bytes", - "type": "PackedByteArray" - }, - { - "name": "base_path", - "type": "String" - }, - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "append_from_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1622574258, - "hash_compatibility": [ - 374125375 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "node", - "type": "Node" - }, - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "generate_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 596118388, - "hash_compatibility": [ - 2770277081 - ], - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "bake_fps", - "type": "float", - "meta": "float", - "default_value": "30" - }, - { - "name": "trimming", - "type": "bool", - "default_value": "false" - }, - { - "name": "remove_immutable_tracks", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "generate_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741783455, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - }, - { - "name": "write_to_filesystem", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784551478, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "import_object_model_property", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1206708632, - "return_value": { - "type": "GLTFObjectModelProperty" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "json_pointer", - "type": "String" - } - ] - }, - { - "name": "export_object_model_property", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 314209806, - "return_value": { - "type": "GLTFObjectModelProperty" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "node_path", - "type": "NodePath" - }, - { - "name": "godot_node", - "type": "Node" - }, - { - "name": "gltf_node_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "register_gltf_document_extension", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3752678331, - "arguments": [ - { - "name": "extension", - "type": "GLTFDocumentExtension" - }, - { - "name": "first_priority", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "unregister_gltf_document_extension", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2684415758, - "arguments": [ - { - "name": "extension", - "type": "GLTFDocumentExtension" - } - ] - }, - { - "name": "get_supported_gltf_extensions", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - } - ], - "properties": [ - { - "type": "String", - "name": "image_format", - "setter": "set_image_format", - "getter": "get_image_format" - }, - { - "type": "float", - "name": "lossy_quality", - "setter": "set_lossy_quality", - "getter": "get_lossy_quality" - }, - { - "type": "String", - "name": "fallback_image_format", - "setter": "set_fallback_image_format", - "getter": "get_fallback_image_format" - }, - { - "type": "float", - "name": "fallback_image_quality", - "setter": "set_fallback_image_quality", - "getter": "get_fallback_image_quality" - }, - { - "type": "int", - "name": "root_node_mode", - "setter": "set_root_node_mode", - "getter": "get_root_node_mode" - }, - { - "type": "int", - "name": "texture_map_mode", - "setter": "set_texture_map_mode", - "getter": "get_texture_map_mode" - }, - { - "type": "int", - "name": "visibility_mode", - "setter": "set_visibility_mode", - "getter": "get_visibility_mode" - } - ] - }, - { - "name": "GLTFDocumentExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_import_preflight", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 412946943, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "extensions", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_get_supported_extensions", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_parse_node_extensions", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2067053794, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "extensions", - "type": "Dictionary" - } - ] - }, - { - "name": "_parse_image_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3201673288, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "image_data", - "type": "PackedByteArray" - }, - { - "name": "mime_type", - "type": "String" - }, - { - "name": "ret_image", - "type": "Image" - } - ] - }, - { - "name": "_get_image_file_extension", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "_parse_texture_json", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1624327185, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "texture_json", - "type": "Dictionary" - }, - { - "name": "ret_gltf_texture", - "type": "GLTFTexture" - } - ] - }, - { - "name": "_import_object_model_property", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1446147484, - "return_value": { - "type": "GLTFObjectModelProperty" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "split_json_pointer", - "type": "PackedStringArray" - }, - { - "name": "partial_paths", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "_import_post_parse", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1704600462, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - }, - { - "name": "_import_pre_generate", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1704600462, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - }, - { - "name": "_generate_scene_node", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3810899026, - "return_value": { - "type": "Node3D" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "scene_parent", - "type": "Node" - } - ] - }, - { - "name": "_import_node", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4064279746, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "json", - "type": "Dictionary" - }, - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "_import_post", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 295478427, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "root", - "type": "Node" - } - ] - }, - { - "name": "_export_get_property_list", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 186716585, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "root_node", - "type": "Node" - } - ] - }, - { - "name": "_export_preflight", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 295478427, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "root", - "type": "Node" - } - ] - }, - { - "name": "_convert_scene_node", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 147612932, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "scene_node", - "type": "Node" - } - ] - }, - { - "name": "_export_post_convert", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 295478427, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "root", - "type": "Node" - } - ] - }, - { - "name": "_export_preserialize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1704600462, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - }, - { - "name": "_export_object_model_property", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4111022730, - "return_value": { - "type": "GLTFObjectModelProperty" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "node_path", - "type": "NodePath" - }, - { - "name": "godot_node", - "type": "Node" - }, - { - "name": "gltf_node_index", - "type": "int", - "meta": "int32" - }, - { - "name": "target_object", - "type": "Object" - }, - { - "name": "target_depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_saveable_image_formats", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_serialize_image_to_bytes", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 276886664, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "image", - "type": "Image" - }, - { - "name": "image_dict", - "type": "Dictionary" - }, - { - "name": "image_format", - "type": "String" - }, - { - "name": "lossy_quality", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_save_image_at_path", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1844337242, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "image", - "type": "Image" - }, - { - "name": "file_path", - "type": "String" - }, - { - "name": "image_format", - "type": "String" - }, - { - "name": "lossy_quality", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_serialize_texture_json", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2565166506, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "texture_json", - "type": "Dictionary" - }, - { - "name": "gltf_texture", - "type": "GLTFTexture" - }, - { - "name": "image_format", - "type": "String" - } - ] - }, - { - "name": "_export_node", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4064279746, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - }, - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "json", - "type": "Dictionary" - }, - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "_export_post", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1704600462, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "state", - "type": "GLTFState" - } - ] - } - ] - }, - { - "name": "GLTFDocumentExtensionConvertImporterMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "GLTFDocumentExtension", - "api_type": "core" - }, - { - "name": "GLTFLight", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "from_node", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3907677874, - "return_value": { - "type": "GLTFLight" - }, - "arguments": [ - { - "name": "light_node", - "type": "Light3D" - } - ] - }, - { - "name": "to_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2040811672, - "return_value": { - "type": "Light3D" - } - }, - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4057087208, - "return_value": { - "type": "GLTFLight" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200896285, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_light_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_light_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "light_type", - "type": "String" - } - ] - }, - { - "name": "get_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "range", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_inner_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_inner_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "inner_cone_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_outer_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_outer_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "outer_cone_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - } - ] - }, - { - "name": "set_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - }, - { - "name": "additional_data", - "type": "Variant" - } - ] - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "float", - "name": "intensity", - "setter": "set_intensity", - "getter": "get_intensity" - }, - { - "type": "String", - "name": "light_type", - "setter": "set_light_type", - "getter": "get_light_type" - }, - { - "type": "float", - "name": "range", - "setter": "set_range", - "getter": "get_range" - }, - { - "type": "float", - "name": "inner_cone_angle", - "setter": "set_inner_cone_angle", - "getter": "get_inner_cone_angle" - }, - { - "type": "float", - "name": "outer_cone_angle", - "setter": "set_outer_cone_angle", - "getter": "get_outer_cone_angle" - } - ] - }, - { - "name": "GLTFMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "original_name", - "type": "String" - } - ] - }, - { - "name": "get_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3754628756, - "return_value": { - "type": "ImporterMesh" - } - }, - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2255166972, - "arguments": [ - { - "name": "mesh", - "type": "ImporterMesh" - } - ] - }, - { - "name": "get_blend_weights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2445143706, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_blend_weights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "blend_weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_instance_materials", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Material" - } - }, - { - "name": "set_instance_materials", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "instance_materials", - "type": "typedarray::Material" - } - ] - }, - { - "name": "get_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - } - ] - }, - { - "name": "set_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - }, - { - "name": "additional_data", - "type": "Variant" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "original_name", - "setter": "set_original_name", - "getter": "get_original_name" - }, - { - "type": "Object", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "PackedFloat32Array", - "name": "blend_weights", - "setter": "set_blend_weights", - "getter": "get_blend_weights" - }, - { - "type": "Array", - "name": "instance_materials", - "setter": "set_instance_materials", - "getter": "get_instance_materials" - } - ] - }, - { - "name": "GLTFNode", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_original_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "original_name", - "type": "String" - } - ] - }, - { - "name": "get_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "parent", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_xform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4183770049, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_xform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "xform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mesh", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_camera", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_camera", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "camera", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "skin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "skeleton", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2916281908, - "return_value": { - "type": "Quaternion" - } - }, - { - "name": "set_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1727505552, - "arguments": [ - { - "name": "rotation", - "type": "Quaternion" - } - ] - }, - { - "name": "get_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_children", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_children", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "children", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "append_child_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "child_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "light", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "get_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - } - ] - }, - { - "name": "set_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - }, - { - "name": "additional_data", - "type": "Variant" - } - ] - }, - { - "name": "get_scene_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 573359477, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "gltf_state", - "type": "GLTFState" - }, - { - "name": "handle_skeletons", - "type": "bool", - "default_value": "true" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "original_name", - "setter": "set_original_name", - "getter": "get_original_name" - }, - { - "type": "int", - "name": "parent", - "setter": "set_parent", - "getter": "get_parent" - }, - { - "type": "int", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "Transform3D", - "name": "xform", - "setter": "set_xform", - "getter": "get_xform" - }, - { - "type": "int", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "int", - "name": "camera", - "setter": "set_camera", - "getter": "get_camera" - }, - { - "type": "int", - "name": "skin", - "setter": "set_skin", - "getter": "get_skin" - }, - { - "type": "int", - "name": "skeleton", - "setter": "set_skeleton", - "getter": "get_skeleton" - }, - { - "type": "Vector3", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "Quaternion", - "name": "rotation", - "setter": "set_rotation", - "getter": "get_rotation" - }, - { - "type": "Vector3", - "name": "scale", - "setter": "set_scale", - "getter": "get_scale" - }, - { - "type": "PackedInt32Array", - "name": "children", - "setter": "set_children", - "getter": "get_children" - }, - { - "type": "int", - "name": "light", - "setter": "set_light", - "getter": "get_light" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "get_visible" - } - ] - }, - { - "name": "GLTFObjectModelProperty", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "GLTFObjectModelType", - "is_bitfield": false, - "values": [ - { - "name": "GLTF_OBJECT_MODEL_TYPE_UNKNOWN", - "value": 0 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_BOOL", - "value": 1 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT", - "value": 2 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT_ARRAY", - "value": 3 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT2", - "value": 4 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT3", - "value": 5 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT4", - "value": 6 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT2X2", - "value": 7 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT3X3", - "value": 8 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_FLOAT4X4", - "value": 9 - }, - { - "name": "GLTF_OBJECT_MODEL_TYPE_INT", - "value": 10 - } - ] - } - ], - "methods": [ - { - "name": "append_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node_path", - "type": "NodePath" - } - ] - }, - { - "name": "append_path_to_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1331931644, - "arguments": [ - { - "name": "node_path", - "type": "NodePath" - }, - { - "name": "prop_name", - "type": "StringName" - } - ] - }, - { - "name": "get_accessor_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1998183368, - "return_value": { - "type": "enum::GLTFAccessor.GLTFAccessorType" - } - }, - { - "name": "get_gltf_to_godot_expression", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240072449, - "return_value": { - "type": "Expression" - } - }, - { - "name": "set_gltf_to_godot_expression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1815845073, - "arguments": [ - { - "name": "gltf_to_godot_expr", - "type": "Expression" - } - ] - }, - { - "name": "get_godot_to_gltf_expression", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240072449, - "return_value": { - "type": "Expression" - } - }, - { - "name": "set_godot_to_gltf_expression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1815845073, - "arguments": [ - { - "name": "godot_to_gltf_expr", - "type": "Expression" - } - ] - }, - { - "name": "get_node_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "has_node_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_node_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "node_paths", - "type": "typedarray::NodePath" - } - ] - }, - { - "name": "get_object_model_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1094778507, - "return_value": { - "type": "enum::GLTFObjectModelProperty.GLTFObjectModelType" - } - }, - { - "name": "set_object_model_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108684086, - "arguments": [ - { - "name": "type", - "type": "enum::GLTFObjectModelProperty.GLTFObjectModelType" - } - ] - }, - { - "name": "get_json_pointers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::PackedStringArray" - } - }, - { - "name": "has_json_pointers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_json_pointers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "json_pointers", - "type": "typedarray::PackedStringArray" - } - ] - }, - { - "name": "get_variant_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3416842102, - "return_value": { - "type": "enum::Variant.Type" - } - }, - { - "name": "set_variant_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2887708385, - "arguments": [ - { - "name": "variant_type", - "type": "enum::Variant.Type" - } - ] - }, - { - "name": "set_types", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150728237, - "arguments": [ - { - "name": "variant_type", - "type": "enum::Variant.Type" - }, - { - "name": "obj_model_type", - "type": "enum::GLTFObjectModelProperty.GLTFObjectModelType" - } - ] - } - ], - "properties": [ - { - "type": "Expression", - "name": "gltf_to_godot_expression", - "setter": "set_gltf_to_godot_expression", - "getter": "get_gltf_to_godot_expression" - }, - { - "type": "Expression", - "name": "godot_to_gltf_expression", - "setter": "set_godot_to_gltf_expression", - "getter": "get_godot_to_gltf_expression" - }, - { - "type": "Array", - "name": "node_paths", - "setter": "set_node_paths", - "getter": "get_node_paths" - }, - { - "type": "int", - "name": "object_model_type", - "setter": "set_object_model_type", - "getter": "get_object_model_type" - }, - { - "type": "PackedStringArray", - "name": "json_pointers", - "setter": "set_json_pointers", - "getter": "get_json_pointers" - }, - { - "type": "int", - "name": "variant_type", - "setter": "set_variant_type", - "getter": "get_variant_type" - } - ] - }, - { - "name": "GLTFPhysicsBody", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "from_node", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 420544174, - "return_value": { - "type": "GLTFPhysicsBody" - }, - "arguments": [ - { - "name": "body_node", - "type": "CollisionObject3D" - } - ] - }, - { - "name": "to_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3224013656, - "return_value": { - "type": "CollisionObject3D" - } - }, - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1177544336, - "return_value": { - "type": "GLTFPhysicsBody" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_body_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_body_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "body_type", - "type": "String" - } - ] - }, - { - "name": "get_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "angular_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_center_of_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_center_of_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "center_of_mass", - "type": "Vector3" - } - ] - }, - { - "name": "get_inertia_diagonal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_inertia_diagonal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "inertia_diagonal", - "type": "Vector3" - } - ] - }, - { - "name": "get_inertia_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - }, - { - "name": "set_inertia_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1727505552, - "arguments": [ - { - "name": "inertia_orientation", - "type": "Quaternion" - } - ] - }, - { - "name": "get_inertia_tensor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "set_inertia_tensor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1055510324, - "arguments": [ - { - "name": "inertia_tensor", - "type": "Basis" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "body_type", - "setter": "set_body_type", - "getter": "get_body_type" - }, - { - "type": "float", - "name": "mass", - "setter": "set_mass", - "getter": "get_mass" - }, - { - "type": "Vector3", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "Vector3", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "Vector3", - "name": "center_of_mass", - "setter": "set_center_of_mass", - "getter": "get_center_of_mass" - }, - { - "type": "Vector3", - "name": "inertia_diagonal", - "setter": "set_inertia_diagonal", - "getter": "get_inertia_diagonal" - }, - { - "type": "Quaternion", - "name": "inertia_orientation", - "setter": "set_inertia_orientation", - "getter": "get_inertia_orientation" - }, - { - "type": "Basis", - "name": "inertia_tensor", - "setter": "set_inertia_tensor", - "getter": "get_inertia_tensor" - } - ] - }, - { - "name": "GLTFPhysicsShape", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "from_node", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3613751275, - "return_value": { - "type": "GLTFPhysicsShape" - }, - "arguments": [ - { - "name": "shape_node", - "type": "CollisionShape3D" - } - ] - }, - { - "name": "to_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 563689933, - "return_value": { - "type": "CollisionShape3D" - }, - "arguments": [ - { - "name": "cache_shapes", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "from_resource", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3845569786, - "return_value": { - "type": "GLTFPhysicsShape" - }, - "arguments": [ - { - "name": "shape_resource", - "type": "Shape3D" - } - ] - }, - { - "name": "to_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1913542110, - "return_value": { - "type": "Shape3D" - }, - "arguments": [ - { - "name": "cache_shapes", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "from_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2390691823, - "return_value": { - "type": "GLTFPhysicsShape" - }, - "arguments": [ - { - "name": "dictionary", - "type": "Dictionary" - } - ] - }, - { - "name": "to_dictionary", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_shape_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_shape_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "shape_type", - "type": "String" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_is_trigger", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_is_trigger", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_trigger", - "type": "bool" - } - ] - }, - { - "name": "get_mesh_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mesh_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mesh_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_importer_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3161779525, - "return_value": { - "type": "ImporterMesh" - } - }, - { - "name": "set_importer_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2255166972, - "arguments": [ - { - "name": "importer_mesh", - "type": "ImporterMesh" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "shape_type", - "setter": "set_shape_type", - "getter": "get_shape_type" - }, - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "bool", - "name": "is_trigger", - "setter": "set_is_trigger", - "getter": "get_is_trigger" - }, - { - "type": "int", - "name": "mesh_index", - "setter": "set_mesh_index", - "getter": "get_mesh_index" - }, - { - "type": "ImporterMesh", - "name": "importer_mesh", - "setter": "set_importer_mesh", - "getter": "get_importer_mesh" - } - ] - }, - { - "name": "GLTFSkeleton", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "joints", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_roots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_roots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "roots", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_godot_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1814733083, - "return_value": { - "type": "Skeleton3D" - } - }, - { - "name": "get_unique_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "set_unique_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "unique_names", - "type": "typedarray::String" - } - ] - }, - { - "name": "get_godot_bone_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_godot_bone_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "godot_bone_node", - "type": "Dictionary" - } - ] - }, - { - "name": "get_bone_attachment_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_bone_attachment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 945440495, - "return_value": { - "type": "BoneAttachment3D" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "PackedInt32Array", - "name": "joints", - "setter": "set_joints", - "getter": "get_joints" - }, - { - "type": "PackedInt32Array", - "name": "roots", - "setter": "set_roots", - "getter": "get_roots" - }, - { - "type": "Array", - "name": "unique_names", - "setter": "set_unique_names", - "getter": "get_unique_names" - }, - { - "type": "Dictionary", - "name": "godot_bone_node", - "setter": "set_godot_bone_node", - "getter": "get_godot_bone_node" - } - ] - }, - { - "name": "GLTFSkin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_skin_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_skin_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "skin_root", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joints_original", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_joints_original", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "joints_original", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_inverse_binds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Transform3D" - } - }, - { - "name": "set_inverse_binds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "inverse_binds", - "type": "typedarray::Transform3D" - } - ] - }, - { - "name": "get_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "joints", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_non_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_non_joints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "non_joints", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_roots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_roots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "roots", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "skeleton", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_i_to_bone_i", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_joint_i_to_bone_i", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "joint_i_to_bone_i", - "type": "Dictionary" - } - ] - }, - { - "name": "get_joint_i_to_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_joint_i_to_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "joint_i_to_name", - "type": "Dictionary" - } - ] - }, - { - "name": "get_godot_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1032037385, - "return_value": { - "type": "Skin" - } - }, - { - "name": "set_godot_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3971435618, - "arguments": [ - { - "name": "godot_skin", - "type": "Skin" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "skin_root", - "setter": "set_skin_root", - "getter": "get_skin_root" - }, - { - "type": "PackedInt32Array", - "name": "joints_original", - "setter": "set_joints_original", - "getter": "get_joints_original" - }, - { - "type": "Array", - "name": "inverse_binds", - "setter": "set_inverse_binds", - "getter": "get_inverse_binds" - }, - { - "type": "PackedInt32Array", - "name": "joints", - "setter": "set_joints", - "getter": "get_joints" - }, - { - "type": "PackedInt32Array", - "name": "non_joints", - "setter": "set_non_joints", - "getter": "get_non_joints" - }, - { - "type": "PackedInt32Array", - "name": "roots", - "setter": "set_roots", - "getter": "get_roots" - }, - { - "type": "int", - "name": "skeleton", - "setter": "set_skeleton", - "getter": "get_skeleton" - }, - { - "type": "Dictionary", - "name": "joint_i_to_bone_i", - "setter": "set_joint_i_to_bone_i", - "getter": "get_joint_i_to_bone_i" - }, - { - "type": "Dictionary", - "name": "joint_i_to_name", - "setter": "set_joint_i_to_name", - "getter": "get_joint_i_to_name" - }, - { - "type": "Skin", - "name": "godot_skin", - "setter": "set_godot_skin", - "getter": "get_godot_skin" - } - ] - }, - { - "name": "GLTFSpecGloss", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_diffuse_img", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 564927088, - "return_value": { - "type": "Image" - } - }, - { - "name": "set_diffuse_img", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "diffuse_img", - "type": "Image" - } - ] - }, - { - "name": "get_diffuse_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200896285, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_diffuse_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "diffuse_factor", - "type": "Color" - } - ] - }, - { - "name": "get_gloss_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gloss_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gloss_factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_specular_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200896285, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_specular_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "specular_factor", - "type": "Color" - } - ] - }, - { - "name": "get_spec_gloss_img", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 564927088, - "return_value": { - "type": "Image" - } - }, - { - "name": "set_spec_gloss_img", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "spec_gloss_img", - "type": "Image" - } - ] - } - ], - "properties": [ - { - "type": "Object", - "name": "diffuse_img", - "setter": "set_diffuse_img", - "getter": "get_diffuse_img" - }, - { - "type": "Color", - "name": "diffuse_factor", - "setter": "set_diffuse_factor", - "getter": "get_diffuse_factor" - }, - { - "type": "float", - "name": "gloss_factor", - "setter": "set_gloss_factor", - "getter": "get_gloss_factor" - }, - { - "type": "Color", - "name": "specular_factor", - "setter": "set_specular_factor", - "getter": "get_specular_factor" - }, - { - "type": "Object", - "name": "spec_gloss_img", - "setter": "set_spec_gloss_img", - "getter": "get_spec_gloss_img" - } - ] - }, - { - "name": "GLTFState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "constants": [ - { - "name": "HANDLE_BINARY_DISCARD_TEXTURES", - "value": 0 - }, - { - "name": "HANDLE_BINARY_EXTRACT_TEXTURES", - "value": 1 - }, - { - "name": "HANDLE_BINARY_EMBED_AS_BASISU", - "value": 2 - }, - { - "name": "HANDLE_BINARY_EMBED_AS_UNCOMPRESSED", - "value": 3 - } - ], - "enums": [ - { - "name": "HandleBinaryImageMode", - "is_bitfield": false, - "values": [ - { - "name": "HANDLE_BINARY_IMAGE_MODE_DISCARD_TEXTURES", - "value": 0 - }, - { - "name": "HANDLE_BINARY_IMAGE_MODE_EXTRACT_TEXTURES", - "value": 1 - }, - { - "name": "HANDLE_BINARY_IMAGE_MODE_EMBED_AS_BASISU", - "value": 2 - }, - { - "name": "HANDLE_BINARY_IMAGE_MODE_EMBED_AS_UNCOMPRESSED", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "add_used_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "extension_name", - "type": "String" - }, - { - "name": "required", - "type": "bool" - } - ] - }, - { - "name": "append_data_to_buffers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1460416665, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - }, - { - "name": "deduplication", - "type": "bool" - } - ] - }, - { - "name": "append_gltf_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3562288551, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "gltf_node", - "type": "GLTFNode" - }, - { - "name": "godot_scene_node", - "type": "Node" - }, - { - "name": "parent_node_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_json", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "hash_compatibility": [ - 2382534195 - ], - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_json", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "json", - "type": "Dictionary" - } - ] - }, - { - "name": "get_major_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_major_version", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "major_version", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_minor_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_minor_version", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "minor_version", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_copyright", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_copyright", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "copyright", - "type": "String" - } - ] - }, - { - "name": "get_glb_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "hash_compatibility": [ - 2115431945 - ], - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_glb_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "glb_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_use_named_skin_binds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_named_skin_binds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_named_skin_binds", - "type": "bool" - } - ] - }, - { - "name": "get_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFNode" - } - }, - { - "name": "set_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "nodes", - "type": "typedarray::GLTFNode" - } - ] - }, - { - "name": "get_buffers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::PackedByteArray" - } - }, - { - "name": "set_buffers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "buffers", - "type": "typedarray::PackedByteArray" - } - ] - }, - { - "name": "get_buffer_views", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFBufferView" - } - }, - { - "name": "set_buffer_views", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "buffer_views", - "type": "typedarray::GLTFBufferView" - } - ] - }, - { - "name": "get_accessors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFAccessor" - } - }, - { - "name": "set_accessors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "accessors", - "type": "typedarray::GLTFAccessor" - } - ] - }, - { - "name": "get_meshes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFMesh" - } - }, - { - "name": "set_meshes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "meshes", - "type": "typedarray::GLTFMesh" - } - ] - }, - { - "name": "get_animation_players_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "hash_compatibility": [ - 3744713108 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "anim_player_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_animation_player", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1550200483, - "hash_compatibility": [ - 925043400 - ], - "return_value": { - "type": "AnimationPlayer" - }, - "arguments": [ - { - "name": "anim_player_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_materials", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::Material" - } - }, - { - "name": "set_materials", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "materials", - "type": "typedarray::Material" - } - ] - }, - { - "name": "get_scene_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "hash_compatibility": [ - 2841200299 - ], - "return_value": { - "type": "String" - } - }, - { - "name": "set_scene_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "scene_name", - "type": "String" - } - ] - }, - { - "name": "get_base_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "hash_compatibility": [ - 2841200299 - ], - "return_value": { - "type": "String" - } - }, - { - "name": "set_base_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "base_path", - "type": "String" - } - ] - }, - { - "name": "get_filename", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_filename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "get_root_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "hash_compatibility": [ - 969006518 - ], - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_root_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "root_nodes", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_textures", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFTexture" - } - }, - { - "name": "set_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "textures", - "type": "typedarray::GLTFTexture" - } - ] - }, - { - "name": "get_texture_samplers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFTextureSampler" - } - }, - { - "name": "set_texture_samplers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "texture_samplers", - "type": "typedarray::GLTFTextureSampler" - } - ] - }, - { - "name": "get_images", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::Texture2D" - } - }, - { - "name": "set_images", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "images", - "type": "typedarray::Texture2D" - } - ] - }, - { - "name": "get_skins", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFSkin" - } - }, - { - "name": "set_skins", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "skins", - "type": "typedarray::GLTFSkin" - } - ] - }, - { - "name": "get_cameras", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFCamera" - } - }, - { - "name": "set_cameras", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "cameras", - "type": "typedarray::GLTFCamera" - } - ] - }, - { - "name": "get_lights", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFLight" - } - }, - { - "name": "set_lights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "lights", - "type": "typedarray::GLTFLight" - } - ] - }, - { - "name": "get_unique_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "set_unique_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "unique_names", - "type": "typedarray::String" - } - ] - }, - { - "name": "get_unique_animation_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::String" - } - }, - { - "name": "set_unique_animation_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "unique_animation_names", - "type": "typedarray::String" - } - ] - }, - { - "name": "get_skeletons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFSkeleton" - } - }, - { - "name": "set_skeletons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "skeletons", - "type": "typedarray::GLTFSkeleton" - } - ] - }, - { - "name": "get_create_animations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_create_animations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "create_animations", - "type": "bool" - } - ] - }, - { - "name": "get_import_as_skeleton_bones", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_import_as_skeleton_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "import_as_skeleton_bones", - "type": "bool" - } - ] - }, - { - "name": "get_animations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "hash_compatibility": [ - 2915620761 - ], - "return_value": { - "type": "typedarray::GLTFAnimation" - } - }, - { - "name": "set_animations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "animations", - "type": "typedarray::GLTFAnimation" - } - ] - }, - { - "name": "get_scene_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 539202265, - "hash_compatibility": [ - 4253421667 - ], - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "gltf_node_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3810805390, - "hash_compatibility": [ - 1205807060 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "scene_node", - "type": "Node" - } - ] - }, - { - "name": "get_additional_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "hash_compatibility": [ - 2138907829 - ], - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - } - ] - }, - { - "name": "set_additional_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "extension_name", - "type": "StringName" - }, - { - "name": "additional_data", - "type": "Variant" - } - ] - }, - { - "name": "get_handle_binary_image_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1363384196, - "return_value": { - "type": "enum::GLTFState.HandleBinaryImageMode" - } - }, - { - "name": "set_handle_binary_image_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 854676334, - "arguments": [ - { - "name": "method", - "type": "enum::GLTFState.HandleBinaryImageMode" - } - ] - }, - { - "name": "set_bake_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_bake_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_handle_binary_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "hash_compatibility": [ - 2455072627 - ], - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_handle_binary_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "method", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "json", - "setter": "set_json", - "getter": "get_json" - }, - { - "type": "int", - "name": "major_version", - "setter": "set_major_version", - "getter": "get_major_version" - }, - { - "type": "int", - "name": "minor_version", - "setter": "set_minor_version", - "getter": "get_minor_version" - }, - { - "type": "String", - "name": "copyright", - "setter": "set_copyright", - "getter": "get_copyright" - }, - { - "type": "PackedByteArray", - "name": "glb_data", - "setter": "set_glb_data", - "getter": "get_glb_data" - }, - { - "type": "bool", - "name": "use_named_skin_binds", - "setter": "set_use_named_skin_binds", - "getter": "get_use_named_skin_binds" - }, - { - "type": "Array", - "name": "nodes", - "setter": "set_nodes", - "getter": "get_nodes" - }, - { - "type": "Array", - "name": "buffers", - "setter": "set_buffers", - "getter": "get_buffers" - }, - { - "type": "Array", - "name": "buffer_views", - "setter": "set_buffer_views", - "getter": "get_buffer_views" - }, - { - "type": "Array", - "name": "accessors", - "setter": "set_accessors", - "getter": "get_accessors" - }, - { - "type": "Array", - "name": "meshes", - "setter": "set_meshes", - "getter": "get_meshes" - }, - { - "type": "Array", - "name": "materials", - "setter": "set_materials", - "getter": "get_materials" - }, - { - "type": "String", - "name": "scene_name", - "setter": "set_scene_name", - "getter": "get_scene_name" - }, - { - "type": "String", - "name": "base_path", - "setter": "set_base_path", - "getter": "get_base_path" - }, - { - "type": "String", - "name": "filename", - "setter": "set_filename", - "getter": "get_filename" - }, - { - "type": "PackedInt32Array", - "name": "root_nodes", - "setter": "set_root_nodes", - "getter": "get_root_nodes" - }, - { - "type": "Array", - "name": "textures", - "setter": "set_textures", - "getter": "get_textures" - }, - { - "type": "Array", - "name": "texture_samplers", - "setter": "set_texture_samplers", - "getter": "get_texture_samplers" - }, - { - "type": "Array", - "name": "images", - "setter": "set_images", - "getter": "get_images" - }, - { - "type": "Array", - "name": "skins", - "setter": "set_skins", - "getter": "get_skins" - }, - { - "type": "Array", - "name": "cameras", - "setter": "set_cameras", - "getter": "get_cameras" - }, - { - "type": "Array", - "name": "lights", - "setter": "set_lights", - "getter": "get_lights" - }, - { - "type": "Array", - "name": "unique_names", - "setter": "set_unique_names", - "getter": "get_unique_names" - }, - { - "type": "Array", - "name": "unique_animation_names", - "setter": "set_unique_animation_names", - "getter": "get_unique_animation_names" - }, - { - "type": "Array", - "name": "skeletons", - "setter": "set_skeletons", - "getter": "get_skeletons" - }, - { - "type": "bool", - "name": "create_animations", - "setter": "set_create_animations", - "getter": "get_create_animations" - }, - { - "type": "bool", - "name": "import_as_skeleton_bones", - "setter": "set_import_as_skeleton_bones", - "getter": "get_import_as_skeleton_bones" - }, - { - "type": "Array", - "name": "animations", - "setter": "set_animations", - "getter": "get_animations" - }, - { - "type": "int", - "name": "handle_binary_image_mode", - "setter": "set_handle_binary_image_mode", - "getter": "get_handle_binary_image_mode" - }, - { - "type": "float", - "name": "bake_fps", - "setter": "set_bake_fps", - "getter": "get_bake_fps" - }, - { - "type": "int", - "name": "handle_binary_image", - "setter": "set_handle_binary_image", - "getter": "get_handle_binary_image" - } - ] - }, - { - "name": "GLTFTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_src_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_src_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "src_image", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sampler", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sampler", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sampler", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "src_image", - "setter": "set_src_image", - "getter": "get_src_image" - }, - { - "type": "int", - "name": "sampler", - "setter": "set_sampler", - "getter": "get_sampler" - } - ] - }, - { - "name": "GLTFTextureSampler", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_mag_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mag_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "filter_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_min_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_min_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "filter_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_wrap_s", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_wrap_s", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "wrap_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_wrap_t", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_wrap_t", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "wrap_mode", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "mag_filter", - "setter": "set_mag_filter", - "getter": "get_mag_filter" - }, - { - "type": "int", - "name": "min_filter", - "setter": "set_min_filter", - "getter": "get_min_filter" - }, - { - "type": "int", - "name": "wrap_s", - "setter": "set_wrap_s", - "getter": "get_wrap_s" - }, - { - "type": "int", - "name": "wrap_t", - "setter": "set_wrap_t", - "getter": "get_wrap_t" - } - ] - }, - { - "name": "GPUParticles2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "DrawOrder", - "is_bitfield": false, - "values": [ - { - "name": "DRAW_ORDER_INDEX", - "value": 0 - }, - { - "name": "DRAW_ORDER_LIFETIME", - "value": 1 - }, - { - "name": "DRAW_ORDER_REVERSE_LIFETIME", - "value": 2 - } - ] - }, - { - "name": "EmitFlags", - "is_bitfield": false, - "values": [ - { - "name": "EMIT_FLAG_POSITION", - "value": 1 - }, - { - "name": "EMIT_FLAG_ROTATION_SCALE", - "value": 2 - }, - { - "name": "EMIT_FLAG_VELOCITY", - "value": 4 - }, - { - "name": "EMIT_FLAG_COLOR", - "value": 8 - }, - { - "name": "EMIT_FLAG_CUSTOM", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "set_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "emitting", - "type": "bool" - } - ] - }, - { - "name": "set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "secs", - "type": "bool" - } - ] - }, - { - "name": "set_pre_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_randomness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_visibility_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "visibility_rect", - "type": "Rect2" - } - ] - }, - { - "name": "set_use_local_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_fixed_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fractional_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_interpolate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_process_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_collision_base_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_interp_to_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "request_particles_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2019720106, - "hash_compatibility": [ - 373806689 - ], - "arguments": [ - { - "name": "process_time", - "type": "float", - "meta": "float" - }, - { - "name": "process_time_residual", - "type": "float", - "meta": "float", - "default_value": "0" - } - ] - }, - { - "name": "is_emitting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pre_process_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_explosiveness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_randomness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_visibility_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "get_use_local_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_fixed_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_fractional_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_process_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_collision_base_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_interp_to_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_draw_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1939677959, - "arguments": [ - { - "name": "order", - "type": "enum::GPUParticles2D.DrawOrder" - } - ] - }, - { - "name": "get_draw_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 941479095, - "return_value": { - "type": "enum::GPUParticles2D.DrawOrder" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "capture_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "restart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "keep_seed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_sub_emitter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_sub_emitter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "emit_particle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2179202058, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - }, - { - "name": "velocity", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "custom", - "type": "Color" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "set_trail_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_trail_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "is_trail_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_trail_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_trail_sections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sections", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_trail_sections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_trail_section_subdivisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "subdivisions", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_trail_section_subdivisions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "convert_from_particles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "particles", - "type": "Node" - } - ] - }, - { - "name": "set_amount_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_amount_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_fixed_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_fixed_seed", - "type": "bool" - } - ] - }, - { - "name": "get_use_fixed_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "bool", - "name": "emitting", - "setter": "set_emitting", - "getter": "is_emitting" - }, - { - "type": "int", - "name": "amount", - "setter": "set_amount", - "getter": "get_amount" - }, - { - "type": "float", - "name": "amount_ratio", - "setter": "set_amount_ratio", - "getter": "get_amount_ratio" - }, - { - "type": "NodePath", - "name": "sub_emitter", - "setter": "set_sub_emitter", - "getter": "get_sub_emitter" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "float", - "name": "lifetime", - "setter": "set_lifetime", - "getter": "get_lifetime" - }, - { - "type": "float", - "name": "interp_to_end", - "setter": "set_interp_to_end", - "getter": "get_interp_to_end" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "get_one_shot" - }, - { - "type": "float", - "name": "preprocess", - "setter": "set_pre_process_time", - "getter": "get_pre_process_time" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "float", - "name": "explosiveness", - "setter": "set_explosiveness_ratio", - "getter": "get_explosiveness_ratio" - }, - { - "type": "float", - "name": "randomness", - "setter": "set_randomness_ratio", - "getter": "get_randomness_ratio" - }, - { - "type": "bool", - "name": "use_fixed_seed", - "setter": "set_use_fixed_seed", - "getter": "get_use_fixed_seed" - }, - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "int", - "name": "fixed_fps", - "setter": "set_fixed_fps", - "getter": "get_fixed_fps" - }, - { - "type": "bool", - "name": "interpolate", - "setter": "set_interpolate", - "getter": "get_interpolate" - }, - { - "type": "bool", - "name": "fract_delta", - "setter": "set_fractional_delta", - "getter": "get_fractional_delta" - }, - { - "type": "float", - "name": "collision_base_size", - "setter": "set_collision_base_size", - "getter": "get_collision_base_size" - }, - { - "type": "Rect2", - "name": "visibility_rect", - "setter": "set_visibility_rect", - "getter": "get_visibility_rect" - }, - { - "type": "bool", - "name": "local_coords", - "setter": "set_use_local_coordinates", - "getter": "get_use_local_coordinates" - }, - { - "type": "int", - "name": "draw_order", - "setter": "set_draw_order", - "getter": "get_draw_order" - }, - { - "type": "bool", - "name": "trail_enabled", - "setter": "set_trail_enabled", - "getter": "is_trail_enabled" - }, - { - "type": "float", - "name": "trail_lifetime", - "setter": "set_trail_lifetime", - "getter": "get_trail_lifetime" - }, - { - "type": "int", - "name": "trail_sections", - "setter": "set_trail_sections", - "getter": "get_trail_sections" - }, - { - "type": "int", - "name": "trail_section_subdivisions", - "setter": "set_trail_section_subdivisions", - "getter": "get_trail_section_subdivisions" - }, - { - "type": "ParticleProcessMaterial,ShaderMaterial", - "name": "process_material", - "setter": "set_process_material", - "getter": "get_process_material" - } - ] - }, - { - "name": "GPUParticles3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GeometryInstance3D", - "api_type": "core", - "constants": [ - { - "name": "MAX_DRAW_PASSES", - "value": 4 - } - ], - "enums": [ - { - "name": "DrawOrder", - "is_bitfield": false, - "values": [ - { - "name": "DRAW_ORDER_INDEX", - "value": 0 - }, - { - "name": "DRAW_ORDER_LIFETIME", - "value": 1 - }, - { - "name": "DRAW_ORDER_REVERSE_LIFETIME", - "value": 2 - }, - { - "name": "DRAW_ORDER_VIEW_DEPTH", - "value": 3 - } - ] - }, - { - "name": "EmitFlags", - "is_bitfield": false, - "values": [ - { - "name": "EMIT_FLAG_POSITION", - "value": 1 - }, - { - "name": "EMIT_FLAG_ROTATION_SCALE", - "value": 2 - }, - { - "name": "EMIT_FLAG_VELOCITY", - "value": 4 - }, - { - "name": "EMIT_FLAG_COLOR", - "value": 8 - }, - { - "name": "EMIT_FLAG_CUSTOM", - "value": 16 - } - ] - }, - { - "name": "TransformAlign", - "is_bitfield": false, - "values": [ - { - "name": "TRANSFORM_ALIGN_DISABLED", - "value": 0 - }, - { - "name": "TRANSFORM_ALIGN_Z_BILLBOARD", - "value": 1 - }, - { - "name": "TRANSFORM_ALIGN_Y_TO_VELOCITY", - "value": 2 - }, - { - "name": "TRANSFORM_ALIGN_Z_BILLBOARD_Y_TO_VELOCITY", - "value": 3 - }, - { - "name": "TRANSFORM_ALIGN_LOCAL_BILLBOARD", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "emitting", - "type": "bool" - } - ] - }, - { - "name": "set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_pre_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_randomness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_visibility_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "set_use_local_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_fixed_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fractional_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_interpolate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_process_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_collision_base_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_interp_to_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "is_emitting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pre_process_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_explosiveness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_randomness_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_visibility_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_use_local_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_fixed_fps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_fractional_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_interpolate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_process_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_collision_base_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_interp_to_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_fixed_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_fixed_seed", - "type": "bool" - } - ] - }, - { - "name": "get_use_fixed_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_seed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_draw_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1208074815, - "arguments": [ - { - "name": "order", - "type": "enum::GPUParticles3D.DrawOrder" - } - ] - }, - { - "name": "get_draw_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3770381780, - "return_value": { - "type": "enum::GPUParticles3D.DrawOrder" - } - }, - { - "name": "set_draw_passes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "passes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_draw_pass_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969122797, - "arguments": [ - { - "name": "pass", - "type": "int", - "meta": "int32" - }, - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_draw_passes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_draw_pass_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1576363275, - "return_value": { - "type": "Mesh" - }, - "arguments": [ - { - "name": "pass", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3971435618, - "arguments": [ - { - "name": "skin", - "type": "Skin" - } - ] - }, - { - "name": "get_skin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074563878, - "return_value": { - "type": "Skin" - } - }, - { - "name": "restart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "keep_seed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "capture_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_sub_emitter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_sub_emitter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "emit_particle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 992173727, - "arguments": [ - { - "name": "xform", - "type": "Transform3D" - }, - { - "name": "velocity", - "type": "Vector3" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "custom", - "type": "Color" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "set_trail_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_trail_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "secs", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "is_trail_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_trail_lifetime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_transform_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3892425954, - "arguments": [ - { - "name": "align", - "type": "enum::GPUParticles3D.TransformAlign" - } - ] - }, - { - "name": "get_transform_align", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2100992166, - "return_value": { - "type": "enum::GPUParticles3D.TransformAlign" - } - }, - { - "name": "set_transform_align_channel_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 540833286, - "arguments": [ - { - "name": "channel_filter", - "type": "enum::RenderingServer.ParticlesTransformAlignCustomSrc" - } - ] - }, - { - "name": "get_transform_align_channel_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1664431231, - "return_value": { - "type": "enum::RenderingServer.ParticlesTransformAlignCustomSrc" - } - }, - { - "name": "set_transform_align_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3781785913, - "arguments": [ - { - "name": "align", - "type": "enum::RenderingServer.ParticlesTransformAlignAxis" - } - ] - }, - { - "name": "get_transform_align_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2427180841, - "return_value": { - "type": "enum::RenderingServer.ParticlesTransformAlignAxis" - } - }, - { - "name": "convert_from_particles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "particles", - "type": "Node" - } - ] - }, - { - "name": "set_amount_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_amount_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "request_particles_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 66938510, - "hash_compatibility": [ - 373806689 - ], - "arguments": [ - { - "name": "process_time", - "type": "float", - "meta": "float" - }, - { - "name": "process_time_residual", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "bool", - "name": "emitting", - "setter": "set_emitting", - "getter": "is_emitting" - }, - { - "type": "int", - "name": "amount", - "setter": "set_amount", - "getter": "get_amount" - }, - { - "type": "float", - "name": "amount_ratio", - "setter": "set_amount_ratio", - "getter": "get_amount_ratio" - }, - { - "type": "NodePath", - "name": "sub_emitter", - "setter": "set_sub_emitter", - "getter": "get_sub_emitter" - }, - { - "type": "float", - "name": "lifetime", - "setter": "set_lifetime", - "getter": "get_lifetime" - }, - { - "type": "float", - "name": "interp_to_end", - "setter": "set_interp_to_end", - "getter": "get_interp_to_end" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "get_one_shot" - }, - { - "type": "float", - "name": "preprocess", - "setter": "set_pre_process_time", - "getter": "get_pre_process_time" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "float", - "name": "explosiveness", - "setter": "set_explosiveness_ratio", - "getter": "get_explosiveness_ratio" - }, - { - "type": "float", - "name": "randomness", - "setter": "set_randomness_ratio", - "getter": "get_randomness_ratio" - }, - { - "type": "bool", - "name": "use_fixed_seed", - "setter": "set_use_fixed_seed", - "getter": "get_use_fixed_seed" - }, - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "int", - "name": "fixed_fps", - "setter": "set_fixed_fps", - "getter": "get_fixed_fps" - }, - { - "type": "bool", - "name": "interpolate", - "setter": "set_interpolate", - "getter": "get_interpolate" - }, - { - "type": "bool", - "name": "fract_delta", - "setter": "set_fractional_delta", - "getter": "get_fractional_delta" - }, - { - "type": "float", - "name": "collision_base_size", - "setter": "set_collision_base_size", - "getter": "get_collision_base_size" - }, - { - "type": "AABB", - "name": "visibility_aabb", - "setter": "set_visibility_aabb", - "getter": "get_visibility_aabb" - }, - { - "type": "bool", - "name": "local_coords", - "setter": "set_use_local_coordinates", - "getter": "get_use_local_coordinates" - }, - { - "type": "int", - "name": "draw_order", - "setter": "set_draw_order", - "getter": "get_draw_order" - }, - { - "type": "int", - "name": "transform_align", - "setter": "set_transform_align", - "getter": "get_transform_align" - }, - { - "type": "int", - "name": "transform_align_axis", - "setter": "set_transform_align_axis", - "getter": "get_transform_align_axis" - }, - { - "type": "int", - "name": "transform_align_channel_filter", - "setter": "set_transform_align_channel_filter", - "getter": "get_transform_align_channel_filter" - }, - { - "type": "bool", - "name": "trail_enabled", - "setter": "set_trail_enabled", - "getter": "is_trail_enabled" - }, - { - "type": "float", - "name": "trail_lifetime", - "setter": "set_trail_lifetime", - "getter": "get_trail_lifetime" - }, - { - "type": "ParticleProcessMaterial,ShaderMaterial", - "name": "process_material", - "setter": "set_process_material", - "getter": "get_process_material" - }, - { - "type": "int", - "name": "draw_passes", - "setter": "set_draw_passes", - "getter": "get_draw_passes" - }, - { - "type": "Mesh", - "name": "draw_pass_1", - "setter": "set_draw_pass_mesh", - "getter": "get_draw_pass_mesh", - "index": 0 - }, - { - "type": "Mesh", - "name": "draw_pass_2", - "setter": "set_draw_pass_mesh", - "getter": "get_draw_pass_mesh", - "index": 1 - }, - { - "type": "Mesh", - "name": "draw_pass_3", - "setter": "set_draw_pass_mesh", - "getter": "get_draw_pass_mesh", - "index": 2 - }, - { - "type": "Mesh", - "name": "draw_pass_4", - "setter": "set_draw_pass_mesh", - "getter": "get_draw_pass_mesh", - "index": 3 - }, - { - "type": "Skin", - "name": "draw_skin", - "setter": "set_skin", - "getter": "get_skin" - } - ] - }, - { - "name": "GPUParticlesAttractor3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_attenuation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "attenuation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_attenuation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_directionality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_directionality", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "strength", - "setter": "set_strength", - "getter": "get_strength" - }, - { - "type": "float", - "name": "attenuation", - "setter": "set_attenuation", - "getter": "get_attenuation" - }, - { - "type": "float", - "name": "directionality", - "setter": "set_directionality", - "getter": "get_directionality" - }, - { - "type": "int", - "name": "cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - } - ] - }, - { - "name": "GPUParticlesAttractorBox3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesAttractor3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "GPUParticlesAttractorSphere3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesAttractor3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "GPUParticlesAttractorVectorField3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesAttractor3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1188404210, - "arguments": [ - { - "name": "texture", - "type": "Texture3D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373985333, - "return_value": { - "type": "Texture3D" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Texture3D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "GPUParticlesCollision3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - } - ] - }, - { - "name": "GPUParticlesCollisionBox3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesCollision3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "GPUParticlesCollisionHeightField3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesCollision3D", - "api_type": "core", - "enums": [ - { - "name": "Resolution", - "is_bitfield": false, - "values": [ - { - "name": "RESOLUTION_256", - "value": 0 - }, - { - "name": "RESOLUTION_512", - "value": 1 - }, - { - "name": "RESOLUTION_1024", - "value": 2 - }, - { - "name": "RESOLUTION_2048", - "value": 3 - }, - { - "name": "RESOLUTION_4096", - "value": 4 - }, - { - "name": "RESOLUTION_8192", - "value": 5 - }, - { - "name": "RESOLUTION_MAX", - "value": 6 - } - ] - }, - { - "name": "UpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "UPDATE_MODE_WHEN_MOVED", - "value": 0 - }, - { - "name": "UPDATE_MODE_ALWAYS", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1009996517, - "arguments": [ - { - "name": "resolution", - "type": "enum::GPUParticlesCollisionHeightField3D.Resolution" - } - ] - }, - { - "name": "get_resolution", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1156065644, - "return_value": { - "type": "enum::GPUParticlesCollisionHeightField3D.Resolution" - } - }, - { - "name": "set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 673680859, - "arguments": [ - { - "name": "update_mode", - "type": "enum::GPUParticlesCollisionHeightField3D.UpdateMode" - } - ] - }, - { - "name": "get_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1998141380, - "return_value": { - "type": "enum::GPUParticlesCollisionHeightField3D.UpdateMode" - } - }, - { - "name": "set_heightfield_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "heightfield_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_heightfield_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_heightfield_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_heightfield_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_follow_camera_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_follow_camera_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "resolution", - "setter": "set_resolution", - "getter": "get_resolution" - }, - { - "type": "int", - "name": "update_mode", - "setter": "set_update_mode", - "getter": "get_update_mode" - }, - { - "type": "bool", - "name": "follow_camera_enabled", - "setter": "set_follow_camera_enabled", - "getter": "is_follow_camera_enabled" - }, - { - "type": "int", - "name": "heightfield_mask", - "setter": "set_heightfield_mask", - "getter": "get_heightfield_mask" - } - ] - }, - { - "name": "GPUParticlesCollisionSDF3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesCollision3D", - "api_type": "core", - "enums": [ - { - "name": "Resolution", - "is_bitfield": false, - "values": [ - { - "name": "RESOLUTION_16", - "value": 0 - }, - { - "name": "RESOLUTION_32", - "value": 1 - }, - { - "name": "RESOLUTION_64", - "value": 2 - }, - { - "name": "RESOLUTION_128", - "value": 3 - }, - { - "name": "RESOLUTION_256", - "value": 4 - }, - { - "name": "RESOLUTION_512", - "value": 5 - }, - { - "name": "RESOLUTION_MAX", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1155629297, - "arguments": [ - { - "name": "resolution", - "type": "enum::GPUParticlesCollisionSDF3D.Resolution" - } - ] - }, - { - "name": "get_resolution", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2919555867, - "return_value": { - "type": "enum::GPUParticlesCollisionSDF3D.Resolution" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1188404210, - "arguments": [ - { - "name": "texture", - "type": "Texture3D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373985333, - "return_value": { - "type": "Texture3D" - } - }, - { - "name": "set_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "thickness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bake_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_bake_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_bake_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_bake_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "resolution", - "setter": "set_resolution", - "getter": "get_resolution" - }, - { - "type": "float", - "name": "thickness", - "setter": "set_thickness", - "getter": "get_thickness" - }, - { - "type": "int", - "name": "bake_mask", - "setter": "set_bake_mask", - "getter": "get_bake_mask" - }, - { - "type": "Texture3D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "GPUParticlesCollisionSphere3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GPUParticlesCollision3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "Generic6DOFJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_LINEAR_LOWER_LIMIT", - "value": 0 - }, - { - "name": "PARAM_LINEAR_UPPER_LIMIT", - "value": 1 - }, - { - "name": "PARAM_LINEAR_LIMIT_SOFTNESS", - "value": 2 - }, - { - "name": "PARAM_LINEAR_RESTITUTION", - "value": 3 - }, - { - "name": "PARAM_LINEAR_DAMPING", - "value": 4 - }, - { - "name": "PARAM_LINEAR_MOTOR_TARGET_VELOCITY", - "value": 5 - }, - { - "name": "PARAM_LINEAR_MOTOR_FORCE_LIMIT", - "value": 6 - }, - { - "name": "PARAM_LINEAR_SPRING_STIFFNESS", - "value": 7 - }, - { - "name": "PARAM_LINEAR_SPRING_DAMPING", - "value": 8 - }, - { - "name": "PARAM_LINEAR_SPRING_EQUILIBRIUM_POINT", - "value": 9 - }, - { - "name": "PARAM_ANGULAR_LOWER_LIMIT", - "value": 10 - }, - { - "name": "PARAM_ANGULAR_UPPER_LIMIT", - "value": 11 - }, - { - "name": "PARAM_ANGULAR_LIMIT_SOFTNESS", - "value": 12 - }, - { - "name": "PARAM_ANGULAR_DAMPING", - "value": 13 - }, - { - "name": "PARAM_ANGULAR_RESTITUTION", - "value": 14 - }, - { - "name": "PARAM_ANGULAR_FORCE_LIMIT", - "value": 15 - }, - { - "name": "PARAM_ANGULAR_ERP", - "value": 16 - }, - { - "name": "PARAM_ANGULAR_MOTOR_TARGET_VELOCITY", - "value": 17 - }, - { - "name": "PARAM_ANGULAR_MOTOR_FORCE_LIMIT", - "value": 18 - }, - { - "name": "PARAM_ANGULAR_SPRING_STIFFNESS", - "value": 19 - }, - { - "name": "PARAM_ANGULAR_SPRING_DAMPING", - "value": 20 - }, - { - "name": "PARAM_ANGULAR_SPRING_EQUILIBRIUM_POINT", - "value": 21 - }, - { - "name": "PARAM_MAX", - "value": 22 - } - ] - }, - { - "name": "Flag", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_ENABLE_LINEAR_LIMIT", - "value": 0 - }, - { - "name": "FLAG_ENABLE_ANGULAR_LIMIT", - "value": 1 - }, - { - "name": "FLAG_ENABLE_LINEAR_SPRING", - "value": 3 - }, - { - "name": "FLAG_ENABLE_ANGULAR_SPRING", - "value": 2 - }, - { - "name": "FLAG_ENABLE_MOTOR", - "value": 4 - }, - { - "name": "FLAG_ENABLE_LINEAR_MOTOR", - "value": 5 - }, - { - "name": "FLAG_MAX", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_param_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2018184242, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2599835054, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_param_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2018184242, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2599835054, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_param_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2018184242, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2599835054, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::Generic6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_flag_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2451594564, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_flag_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2122427807, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - } - ] - }, - { - "name": "set_flag_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2451594564, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_flag_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2122427807, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - } - ] - }, - { - "name": "set_flag_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2451594564, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_flag_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2122427807, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::Generic6DOFJoint3D.Flag" - } - ] - } - ] - }, - { - "name": "Geometry2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "PolyBooleanOperation", - "is_bitfield": false, - "values": [ - { - "name": "OPERATION_UNION", - "value": 0 - }, - { - "name": "OPERATION_DIFFERENCE", - "value": 1 - }, - { - "name": "OPERATION_INTERSECTION", - "value": 2 - }, - { - "name": "OPERATION_XOR", - "value": 3 - } - ] - }, - { - "name": "PolyJoinType", - "is_bitfield": false, - "values": [ - { - "name": "JOIN_SQUARE", - "value": 0 - }, - { - "name": "JOIN_ROUND", - "value": 1 - }, - { - "name": "JOIN_MITER", - "value": 2 - } - ] - }, - { - "name": "PolyEndType", - "is_bitfield": false, - "values": [ - { - "name": "END_POLYGON", - "value": 0 - }, - { - "name": "END_JOINED", - "value": 1 - }, - { - "name": "END_BUTT", - "value": 2 - }, - { - "name": "END_SQUARE", - "value": 3 - }, - { - "name": "END_ROUND", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "is_point_in_circle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2929491703, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "circle_position", - "type": "Vector2" - }, - { - "name": "circle_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "segment_intersects_circle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1356928167, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "segment_from", - "type": "Vector2" - }, - { - "name": "segment_to", - "type": "Vector2" - }, - { - "name": "circle_position", - "type": "Vector2" - }, - { - "name": "circle_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "segment_intersects_segment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2058025344, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "from_a", - "type": "Vector2" - }, - { - "name": "to_a", - "type": "Vector2" - }, - { - "name": "from_b", - "type": "Vector2" - }, - { - "name": "to_b", - "type": "Vector2" - } - ] - }, - { - "name": "line_intersects_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2058025344, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "from_a", - "type": "Vector2" - }, - { - "name": "dir_a", - "type": "Vector2" - }, - { - "name": "from_b", - "type": "Vector2" - }, - { - "name": "dir_b", - "type": "Vector2" - } - ] - }, - { - "name": "get_closest_points_between_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3344690961, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "p1", - "type": "Vector2" - }, - { - "name": "q1", - "type": "Vector2" - }, - { - "name": "p2", - "type": "Vector2" - }, - { - "name": "q2", - "type": "Vector2" - } - ] - }, - { - "name": "get_closest_point_to_segment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4172901909, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "s1", - "type": "Vector2" - }, - { - "name": "s2", - "type": "Vector2" - } - ] - }, - { - "name": "get_closest_point_to_segment_uncapped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4172901909, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "s1", - "type": "Vector2" - }, - { - "name": "s2", - "type": "Vector2" - } - ] - }, - { - "name": "point_is_inside_triangle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025948137, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "a", - "type": "Vector2" - }, - { - "name": "b", - "type": "Vector2" - }, - { - "name": "c", - "type": "Vector2" - } - ] - }, - { - "name": "is_polygon_clockwise", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1361156557, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "is_point_in_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 738277916, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "triangulate_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1389921771, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "triangulate_delaunay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1389921771, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "convex_hull", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2004331998, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "decompose_polygon_in_convex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3982393695, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "merge_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon_a", - "type": "PackedVector2Array" - }, - { - "name": "polygon_b", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "clip_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon_a", - "type": "PackedVector2Array" - }, - { - "name": "polygon_b", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "intersect_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon_a", - "type": "PackedVector2Array" - }, - { - "name": "polygon_b", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "exclude_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon_a", - "type": "PackedVector2Array" - }, - { - "name": "polygon_b", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "clip_polyline_with_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polyline", - "type": "PackedVector2Array" - }, - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "intersect_polyline_with_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3637387053, - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polyline", - "type": "PackedVector2Array" - }, - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "offset_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1275354010, - "hash_compatibility": [ - 3837618924 - ], - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - }, - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "join_type", - "type": "enum::Geometry2D.PolyJoinType", - "default_value": "0" - } - ] - }, - { - "name": "offset_polyline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2328231778, - "hash_compatibility": [ - 328033063 - ], - "return_value": { - "type": "typedarray::PackedVector2Array" - }, - "arguments": [ - { - "name": "polyline", - "type": "PackedVector2Array" - }, - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "join_type", - "type": "enum::Geometry2D.PolyJoinType", - "default_value": "0" - }, - { - "name": "end_type", - "type": "enum::Geometry2D.PolyEndType", - "default_value": "3" - } - ] - }, - { - "name": "make_atlas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1337682371, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "sizes", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "bresenham_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1989391000, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "from", - "type": "Vector2i" - }, - { - "name": "to", - "type": "Vector2i" - } - ] - } - ] - }, - { - "name": "Geometry3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "compute_convex_mesh_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1936902142, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "planes", - "type": "typedarray::Plane" - } - ] - }, - { - "name": "build_box_planes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3622277145, - "return_value": { - "type": "typedarray::Plane" - }, - "arguments": [ - { - "name": "extents", - "type": "Vector3" - } - ] - }, - { - "name": "build_cylinder_planes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 449920067, - "hash_compatibility": [ - 3142160516 - ], - "return_value": { - "type": "typedarray::Plane" - }, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "height", - "type": "float", - "meta": "float" - }, - { - "name": "sides", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis", - "default_value": "2" - } - ] - }, - { - "name": "build_capsule_planes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2113592876, - "hash_compatibility": [ - 410870045 - ], - "return_value": { - "type": "typedarray::Plane" - }, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "height", - "type": "float", - "meta": "float" - }, - { - "name": "sides", - "type": "int", - "meta": "int32" - }, - { - "name": "lats", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis", - "default_value": "2" - } - ] - }, - { - "name": "get_closest_points_between_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1056373962, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "p1", - "type": "Vector3" - }, - { - "name": "p2", - "type": "Vector3" - }, - { - "name": "q1", - "type": "Vector3" - }, - { - "name": "q2", - "type": "Vector3" - } - ] - }, - { - "name": "get_closest_point_to_segment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2168193209, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "point", - "type": "Vector3" - }, - { - "name": "s1", - "type": "Vector3" - }, - { - "name": "s2", - "type": "Vector3" - } - ] - }, - { - "name": "get_closest_point_to_segment_uncapped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2168193209, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "point", - "type": "Vector3" - }, - { - "name": "s1", - "type": "Vector3" - }, - { - "name": "s2", - "type": "Vector3" - } - ] - }, - { - "name": "get_triangle_barycentric_coords", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1362048029, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "point", - "type": "Vector3" - }, - { - "name": "a", - "type": "Vector3" - }, - { - "name": "b", - "type": "Vector3" - }, - { - "name": "c", - "type": "Vector3" - } - ] - }, - { - "name": "ray_intersects_triangle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1718655448, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "dir", - "type": "Vector3" - }, - { - "name": "a", - "type": "Vector3" - }, - { - "name": "b", - "type": "Vector3" - }, - { - "name": "c", - "type": "Vector3" - } - ] - }, - { - "name": "segment_intersects_triangle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1718655448, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "a", - "type": "Vector3" - }, - { - "name": "b", - "type": "Vector3" - }, - { - "name": "c", - "type": "Vector3" - } - ] - }, - { - "name": "segment_intersects_sphere", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4080141172, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "sphere_position", - "type": "Vector3" - }, - { - "name": "sphere_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "segment_intersects_cylinder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2361316491, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "height", - "type": "float", - "meta": "float" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "segment_intersects_convex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 537425332, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "planes", - "type": "typedarray::Plane" - } - ] - }, - { - "name": "clip_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2603188319, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "points", - "type": "PackedVector3Array" - }, - { - "name": "plane", - "type": "Plane" - } - ] - }, - { - "name": "tetrahedralize_delaunay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1230191221, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "points", - "type": "PackedVector3Array" - } - ] - } - ] - }, - { - "name": "GeometryInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "ShadowCastingSetting", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_CASTING_SETTING_OFF", - "value": 0 - }, - { - "name": "SHADOW_CASTING_SETTING_ON", - "value": 1 - }, - { - "name": "SHADOW_CASTING_SETTING_DOUBLE_SIDED", - "value": 2 - }, - { - "name": "SHADOW_CASTING_SETTING_SHADOWS_ONLY", - "value": 3 - } - ] - }, - { - "name": "GIMode", - "is_bitfield": false, - "values": [ - { - "name": "GI_MODE_DISABLED", - "value": 0 - }, - { - "name": "GI_MODE_STATIC", - "value": 1 - }, - { - "name": "GI_MODE_DYNAMIC", - "value": 2 - } - ] - }, - { - "name": "LightmapScale", - "is_bitfield": false, - "values": [ - { - "name": "LIGHTMAP_SCALE_1X", - "value": 0 - }, - { - "name": "LIGHTMAP_SCALE_2X", - "value": 1 - }, - { - "name": "LIGHTMAP_SCALE_4X", - "value": 2 - }, - { - "name": "LIGHTMAP_SCALE_8X", - "value": 3 - }, - { - "name": "LIGHTMAP_SCALE_MAX", - "value": 4 - } - ] - }, - { - "name": "VisibilityRangeFadeMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_RANGE_FADE_DISABLED", - "value": 0 - }, - { - "name": "VISIBILITY_RANGE_FADE_SELF", - "value": 1 - }, - { - "name": "VISIBILITY_RANGE_FADE_DEPENDENCIES", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_material_overlay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material_overlay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_cast_shadows_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 856677339, - "arguments": [ - { - "name": "shadow_casting_setting", - "type": "enum::GeometryInstance3D.ShadowCastingSetting" - } - ] - }, - { - "name": "get_cast_shadows_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383019359, - "return_value": { - "type": "enum::GeometryInstance3D.ShadowCastingSetting" - } - }, - { - "name": "set_lod_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lod_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transparency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "transparency", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_transparency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_end_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_end_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_begin_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_begin_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_fade_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1440117808, - "arguments": [ - { - "name": "mode", - "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" - } - ] - }, - { - "name": "get_visibility_range_fade_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2067221882, - "return_value": { - "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" - } - }, - { - "name": "set_instance_shader_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_instance_shader_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_extra_cull_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_extra_cull_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_lightmap_texel_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lightmap_texel_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_lightmap_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2462696582, - "arguments": [ - { - "name": "scale", - "type": "enum::GeometryInstance3D.LightmapScale" - } - ] - }, - { - "name": "get_lightmap_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 798767852, - "return_value": { - "type": "enum::GeometryInstance3D.LightmapScale" - } - }, - { - "name": "set_gi_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2548557163, - "arguments": [ - { - "name": "mode", - "type": "enum::GeometryInstance3D.GIMode" - } - ] - }, - { - "name": "get_gi_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2188566509, - "return_value": { - "type": "enum::GeometryInstance3D.GIMode" - } - }, - { - "name": "set_ignore_occlusion_culling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore_culling", - "type": "bool" - } - ] - }, - { - "name": "is_ignoring_occlusion_culling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - } - ], - "properties": [ - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material_override", - "setter": "set_material_override", - "getter": "get_material_override" - }, - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material_overlay", - "setter": "set_material_overlay", - "getter": "get_material_overlay" - }, - { - "type": "float", - "name": "transparency", - "setter": "set_transparency", - "getter": "get_transparency" - }, - { - "type": "int", - "name": "cast_shadow", - "setter": "set_cast_shadows_setting", - "getter": "get_cast_shadows_setting" - }, - { - "type": "float", - "name": "extra_cull_margin", - "setter": "set_extra_cull_margin", - "getter": "get_extra_cull_margin" - }, - { - "type": "AABB", - "name": "custom_aabb", - "setter": "set_custom_aabb", - "getter": "get_custom_aabb" - }, - { - "type": "float", - "name": "lod_bias", - "setter": "set_lod_bias", - "getter": "get_lod_bias" - }, - { - "type": "bool", - "name": "ignore_occlusion_culling", - "setter": "set_ignore_occlusion_culling", - "getter": "is_ignoring_occlusion_culling" - }, - { - "type": "int", - "name": "gi_mode", - "setter": "set_gi_mode", - "getter": "get_gi_mode" - }, - { - "type": "float", - "name": "gi_lightmap_texel_scale", - "setter": "set_lightmap_texel_scale", - "getter": "get_lightmap_texel_scale" - }, - { - "type": "int", - "name": "gi_lightmap_scale", - "setter": "set_lightmap_scale", - "getter": "get_lightmap_scale" - }, - { - "type": "float", - "name": "visibility_range_begin", - "setter": "set_visibility_range_begin", - "getter": "get_visibility_range_begin" - }, - { - "type": "float", - "name": "visibility_range_begin_margin", - "setter": "set_visibility_range_begin_margin", - "getter": "get_visibility_range_begin_margin" - }, - { - "type": "float", - "name": "visibility_range_end", - "setter": "set_visibility_range_end", - "getter": "get_visibility_range_end" - }, - { - "type": "float", - "name": "visibility_range_end_margin", - "setter": "set_visibility_range_end_margin", - "getter": "get_visibility_range_end_margin" - }, - { - "type": "int", - "name": "visibility_range_fade_mode", - "setter": "set_visibility_range_fade_mode", - "getter": "get_visibility_range_fade_mode" - } - ] - }, - { - "name": "GodotInstance", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_started", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "iteration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "focus_in", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "focus_out", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "resume", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "Gradient", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "InterpolationMode", - "is_bitfield": false, - "values": [ - { - "name": "GRADIENT_INTERPOLATE_LINEAR", - "value": 0 - }, - { - "name": "GRADIENT_INTERPOLATE_CONSTANT", - "value": 1 - }, - { - "name": "GRADIENT_INTERPOLATE_CUBIC", - "value": 2 - } - ] - }, - { - "name": "ColorSpace", - "is_bitfield": false, - "values": [ - { - "name": "GRADIENT_COLOR_SPACE_SRGB", - "value": 0 - }, - { - "name": "GRADIENT_COLOR_SPACE_LINEAR_SRGB", - "value": 1 - }, - { - "name": "GRADIENT_COLOR_SPACE_OKLAB", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3629403827, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025615559, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reverse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2624840992, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "point", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "sample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1250405064, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_offsets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "offsets", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_offsets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "colors", - "type": "PackedColorArray" - } - ] - }, - { - "name": "get_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_interpolation_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1971444490, - "arguments": [ - { - "name": "interpolation_mode", - "type": "enum::Gradient.InterpolationMode" - } - ] - }, - { - "name": "get_interpolation_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674172981, - "return_value": { - "type": "enum::Gradient.InterpolationMode" - } - }, - { - "name": "set_interpolation_color_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3685995981, - "arguments": [ - { - "name": "interpolation_color_space", - "type": "enum::Gradient.ColorSpace" - } - ] - }, - { - "name": "get_interpolation_color_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1538296000, - "return_value": { - "type": "enum::Gradient.ColorSpace" - } - } - ], - "properties": [ - { - "type": "int", - "name": "interpolation_mode", - "setter": "set_interpolation_mode", - "getter": "get_interpolation_mode" - }, - { - "type": "int", - "name": "interpolation_color_space", - "setter": "set_interpolation_color_space", - "getter": "get_interpolation_color_space" - }, - { - "type": "PackedFloat32Array", - "name": "offsets", - "setter": "set_offsets", - "getter": "get_offsets" - }, - { - "type": "PackedColorArray", - "name": "colors", - "setter": "set_colors", - "getter": "get_colors" - } - ] - }, - { - "name": "GradientTexture1D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_gradient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "gradient", - "type": "Gradient" - } - ] - }, - { - "name": "get_gradient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_hdr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_hdr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Gradient", - "name": "gradient", - "setter": "set_gradient", - "getter": "get_gradient" - }, - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "bool", - "name": "use_hdr", - "setter": "set_use_hdr", - "getter": "is_using_hdr" - } - ] - }, - { - "name": "GradientTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "enums": [ - { - "name": "Fill", - "is_bitfield": false, - "values": [ - { - "name": "FILL_LINEAR", - "value": 0 - }, - { - "name": "FILL_RADIAL", - "value": 1 - }, - { - "name": "FILL_SQUARE", - "value": 2 - }, - { - "name": "FILL_CONIC", - "value": 3 - } - ] - }, - { - "name": "Repeat", - "is_bitfield": false, - "values": [ - { - "name": "REPEAT_NONE", - "value": 0 - }, - { - "name": "REPEAT", - "value": 1 - }, - { - "name": "REPEAT_MIRROR", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_gradient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "gradient", - "type": "Gradient" - } - ] - }, - { - "name": "get_gradient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_hdr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_hdr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_fill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3623927636, - "arguments": [ - { - "name": "fill", - "type": "enum::GradientTexture2D.Fill" - } - ] - }, - { - "name": "get_fill", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1876227217, - "return_value": { - "type": "enum::GradientTexture2D.Fill" - } - }, - { - "name": "set_fill_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "fill_from", - "type": "Vector2" - } - ] - }, - { - "name": "get_fill_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_fill_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "fill_to", - "type": "Vector2" - } - ] - }, - { - "name": "get_fill_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1357597002, - "arguments": [ - { - "name": "repeat", - "type": "enum::GradientTexture2D.Repeat" - } - ] - }, - { - "name": "get_repeat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3351758665, - "return_value": { - "type": "enum::GradientTexture2D.Repeat" - } - } - ], - "properties": [ - { - "type": "Gradient", - "name": "gradient", - "setter": "set_gradient", - "getter": "get_gradient" - }, - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "bool", - "name": "use_hdr", - "setter": "set_use_hdr", - "getter": "is_using_hdr" - }, - { - "type": "int", - "name": "fill", - "setter": "set_fill", - "getter": "get_fill" - }, - { - "type": "Vector2", - "name": "fill_from", - "setter": "set_fill_from", - "getter": "get_fill_from" - }, - { - "type": "Vector2", - "name": "fill_to", - "setter": "set_fill_to", - "getter": "get_fill_to" - }, - { - "type": "int", - "name": "repeat", - "setter": "set_repeat", - "getter": "get_repeat" - } - ] - }, - { - "name": "GraphEdit", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "PanningScheme", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_ZOOMS", - "value": 0 - }, - { - "name": "SCROLL_PANS", - "value": 1 - } - ] - }, - { - "name": "GridPattern", - "is_bitfield": false, - "values": [ - { - "name": "GRID_PATTERN_LINES", - "value": 0 - }, - { - "name": "GRID_PATTERN_DOTS", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_is_in_input_hotzone", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1779768129, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "in_node", - "type": "Object" - }, - { - "name": "in_port", - "type": "int", - "meta": "int32" - }, - { - "name": "mouse_position", - "type": "Vector2" - } - ] - }, - { - "name": "_is_in_output_hotzone", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1779768129, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "in_node", - "type": "Object" - }, - { - "name": "in_port", - "type": "int", - "meta": "int32" - }, - { - "name": "mouse_position", - "type": "Vector2" - } - ] - }, - { - "name": "_get_connection_line", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3932192302, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from_position", - "type": "Vector2" - }, - { - "name": "to_position", - "type": "Vector2" - } - ] - }, - { - "name": "_is_node_hover_valid", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4216241294, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "connect_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1376144231, - "hash_compatibility": [ - 195065850 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - }, - { - "name": "keep_alive", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_node_connected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4216241294, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "disconnect_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1933654315, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_connection_activity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1141899943, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "connections", - "type": "typedarray::Dictionary" - } - ] - }, - { - "name": "get_connection_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_connection_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 861718734, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_closest_connection_at_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 453879819, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "max_distance", - "type": "float", - "meta": "float", - "default_value": "4.0" - } - ] - }, - { - "name": "get_connection_list_from_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3147814860, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "node", - "type": "StringName" - } - ] - }, - { - "name": "get_connections_intersecting_with_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2709748719, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "clear_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "force_connection_drag_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_scroll_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_scroll_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "add_valid_right_disconnect_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_valid_right_disconnect_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_valid_left_disconnect_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_valid_left_disconnect_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_valid_connection_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_type", - "type": "int", - "meta": "int32" - }, - { - "name": "to_type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_valid_connection_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_type", - "type": "int", - "meta": "int32" - }, - { - "name": "to_type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_valid_connection_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from_type", - "type": "int", - "meta": "int32" - }, - { - "name": "to_type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3932192302, - "hash_compatibility": [ - 1562168077 - ], - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from_node", - "type": "Vector2" - }, - { - "name": "to_node", - "type": "Vector2" - } - ] - }, - { - "name": "attach_graph_element_to_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "element", - "type": "StringName" - }, - { - "name": "frame", - "type": "StringName" - } - ] - }, - { - "name": "detach_graph_element_from_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "element", - "type": "StringName" - } - ] - }, - { - "name": "get_element_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 988084372, - "return_value": { - "type": "GraphFrame" - }, - "arguments": [ - { - "name": "element", - "type": "StringName" - } - ] - }, - { - "name": "get_attached_nodes_of_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 689397652, - "return_value": { - "type": "typedarray::StringName" - }, - "arguments": [ - { - "name": "frame", - "type": "StringName" - } - ] - }, - { - "name": "set_panning_scheme", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 18893313, - "arguments": [ - { - "name": "scheme", - "type": "enum::GraphEdit.PanningScheme" - } - ] - }, - { - "name": "get_panning_scheme", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 549924446, - "return_value": { - "type": "enum::GraphEdit.PanningScheme" - } - }, - { - "name": "set_zoom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zoom", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_zoom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_zoom_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zoom_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_zoom_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_zoom_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zoom_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_zoom_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_zoom_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "zoom_step", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_zoom_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_show_grid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_showing_grid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_grid_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1074098205, - "arguments": [ - { - "name": "pattern", - "type": "enum::GraphEdit.GridPattern" - } - ] - }, - { - "name": "get_grid_pattern", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286127528, - "return_value": { - "type": "enum::GraphEdit.GridPattern" - } - }, - { - "name": "set_snapping_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_snapping_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_snapping_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "pixels", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_snapping_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_connection_lines_curvature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curvature", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_connection_lines_curvature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_connection_lines_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixels", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_connection_lines_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_connection_lines_antialiased", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pixels", - "type": "bool" - } - ] - }, - { - "name": "is_connection_lines_antialiased", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_minimap_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_minimap_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_minimap_opacity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "opacity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_minimap_opacity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_minimap_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_minimap_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_showing_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_zoom_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_showing_zoom_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_grid_buttons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_showing_grid_buttons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_zoom_buttons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_showing_zoom_buttons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_minimap_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_showing_minimap_button", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_show_arrange_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_showing_arrange_button", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_right_disconnects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_right_disconnects_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_type_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "type_names", - "type": "Dictionary" - } - ] - }, - { - "name": "get_type_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_menu_hbox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3590609951, - "return_value": { - "type": "HBoxContainer" - } - }, - { - "name": "arrange_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - } - ], - "signals": [ - { - "name": "connection_request", - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int" - } - ] - }, - { - "name": "disconnection_request", - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int" - }, - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int" - } - ] - }, - { - "name": "connection_to_empty", - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int" - }, - { - "name": "release_position", - "type": "Vector2" - } - ] - }, - { - "name": "connection_from_empty", - "arguments": [ - { - "name": "to_node", - "type": "StringName" - }, - { - "name": "to_port", - "type": "int" - }, - { - "name": "release_position", - "type": "Vector2" - } - ] - }, - { - "name": "connection_drag_started", - "arguments": [ - { - "name": "from_node", - "type": "StringName" - }, - { - "name": "from_port", - "type": "int" - }, - { - "name": "is_output", - "type": "bool" - } - ] - }, - { - "name": "connection_drag_ended" - }, - { - "name": "copy_nodes_request" - }, - { - "name": "cut_nodes_request" - }, - { - "name": "paste_nodes_request" - }, - { - "name": "duplicate_nodes_request" - }, - { - "name": "delete_nodes_request", - "arguments": [ - { - "name": "nodes", - "type": "typedarray::StringName" - } - ] - }, - { - "name": "node_selected", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "node_deselected", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "frame_rect_changed", - "arguments": [ - { - "name": "frame", - "type": "GraphFrame" - }, - { - "name": "new_rect", - "type": "Rect2" - } - ] - }, - { - "name": "popup_request", - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - } - ] - }, - { - "name": "begin_node_move" - }, - { - "name": "end_node_move" - }, - { - "name": "graph_elements_linked_to_frame_request", - "arguments": [ - { - "name": "elements", - "type": "Array" - }, - { - "name": "frame", - "type": "StringName" - } - ] - }, - { - "name": "scroll_offset_changed", - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "scroll_offset", - "setter": "set_scroll_offset", - "getter": "get_scroll_offset" - }, - { - "type": "bool", - "name": "show_grid", - "setter": "set_show_grid", - "getter": "is_showing_grid" - }, - { - "type": "int", - "name": "grid_pattern", - "setter": "set_grid_pattern", - "getter": "get_grid_pattern" - }, - { - "type": "bool", - "name": "snapping_enabled", - "setter": "set_snapping_enabled", - "getter": "is_snapping_enabled" - }, - { - "type": "int", - "name": "snapping_distance", - "setter": "set_snapping_distance", - "getter": "get_snapping_distance" - }, - { - "type": "int", - "name": "panning_scheme", - "setter": "set_panning_scheme", - "getter": "get_panning_scheme" - }, - { - "type": "bool", - "name": "right_disconnects", - "setter": "set_right_disconnects", - "getter": "is_right_disconnects_enabled" - }, - { - "type": "typeddictionary::int;String", - "name": "type_names", - "setter": "set_type_names", - "getter": "get_type_names" - }, - { - "type": "float", - "name": "connection_lines_curvature", - "setter": "set_connection_lines_curvature", - "getter": "get_connection_lines_curvature" - }, - { - "type": "float", - "name": "connection_lines_thickness", - "setter": "set_connection_lines_thickness", - "getter": "get_connection_lines_thickness" - }, - { - "type": "bool", - "name": "connection_lines_antialiased", - "setter": "set_connection_lines_antialiased", - "getter": "is_connection_lines_antialiased" - }, - { - "type": "typedarray::27/0:", - "name": "connections", - "setter": "set_connections", - "getter": "get_connection_list" - }, - { - "type": "float", - "name": "zoom", - "setter": "set_zoom", - "getter": "get_zoom" - }, - { - "type": "float", - "name": "zoom_min", - "setter": "set_zoom_min", - "getter": "get_zoom_min" - }, - { - "type": "float", - "name": "zoom_max", - "setter": "set_zoom_max", - "getter": "get_zoom_max" - }, - { - "type": "float", - "name": "zoom_step", - "setter": "set_zoom_step", - "getter": "get_zoom_step" - }, - { - "type": "bool", - "name": "minimap_enabled", - "setter": "set_minimap_enabled", - "getter": "is_minimap_enabled" - }, - { - "type": "Vector2", - "name": "minimap_size", - "setter": "set_minimap_size", - "getter": "get_minimap_size" - }, - { - "type": "float", - "name": "minimap_opacity", - "setter": "set_minimap_opacity", - "getter": "get_minimap_opacity" - }, - { - "type": "bool", - "name": "show_menu", - "setter": "set_show_menu", - "getter": "is_showing_menu" - }, - { - "type": "bool", - "name": "show_zoom_label", - "setter": "set_show_zoom_label", - "getter": "is_showing_zoom_label" - }, - { - "type": "bool", - "name": "show_zoom_buttons", - "setter": "set_show_zoom_buttons", - "getter": "is_showing_zoom_buttons" - }, - { - "type": "bool", - "name": "show_grid_buttons", - "setter": "set_show_grid_buttons", - "getter": "is_showing_grid_buttons" - }, - { - "type": "bool", - "name": "show_minimap_button", - "setter": "set_show_minimap_button", - "getter": "is_showing_minimap_button" - }, - { - "type": "bool", - "name": "show_arrange_button", - "setter": "set_show_arrange_button", - "getter": "is_showing_arrange_button" - } - ] - }, - { - "name": "GraphElement", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "methods": [ - { - "name": "set_resizable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "resizable", - "type": "bool" - } - ] - }, - { - "name": "is_resizable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draggable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draggable", - "type": "bool" - } - ] - }, - { - "name": "is_draggable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_selectable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "selectable", - "type": "bool" - } - ] - }, - { - "name": "is_selectable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "selected", - "type": "bool" - } - ] - }, - { - "name": "is_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scaling_menus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "scaling_menus", - "type": "bool" - } - ] - }, - { - "name": "is_scaling_menus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_position_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_position_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "signals": [ - { - "name": "node_selected" - }, - { - "name": "node_deselected" - }, - { - "name": "raise_request" - }, - { - "name": "delete_request" - }, - { - "name": "resize_request", - "arguments": [ - { - "name": "new_size", - "type": "Vector2" - } - ] - }, - { - "name": "resize_end", - "arguments": [ - { - "name": "new_size", - "type": "Vector2" - } - ] - }, - { - "name": "dragged", - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "position_offset_changed" - } - ], - "properties": [ - { - "type": "Vector2", - "name": "position_offset", - "setter": "set_position_offset", - "getter": "get_position_offset" - }, - { - "type": "bool", - "name": "resizable", - "setter": "set_resizable", - "getter": "is_resizable" - }, - { - "type": "bool", - "name": "draggable", - "setter": "set_draggable", - "getter": "is_draggable" - }, - { - "type": "bool", - "name": "selectable", - "setter": "set_selectable", - "getter": "is_selectable" - }, - { - "type": "bool", - "name": "selected", - "setter": "set_selected", - "getter": "is_selected" - }, - { - "type": "bool", - "name": "scaling_menus", - "setter": "set_scaling_menus", - "getter": "is_scaling_menus" - } - ] - }, - { - "name": "GraphFrame", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GraphElement", - "api_type": "core", - "methods": [ - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_titlebar_hbox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3590609951, - "return_value": { - "type": "HBoxContainer" - } - }, - { - "name": "set_autoshrink_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "shrink", - "type": "bool" - } - ] - }, - { - "name": "is_autoshrink_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_autoshrink_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "autoshrink_margin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_autoshrink_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_drag_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "drag_margin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drag_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_tint_color_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_tint_color_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tint_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_tint_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "signals": [ - { - "name": "autoshrink_changed" - } - ], - "properties": [ - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "bool", - "name": "autoshrink_enabled", - "setter": "set_autoshrink_enabled", - "getter": "is_autoshrink_enabled" - }, - { - "type": "int", - "name": "autoshrink_margin", - "setter": "set_autoshrink_margin", - "getter": "get_autoshrink_margin" - }, - { - "type": "int", - "name": "drag_margin", - "setter": "set_drag_margin", - "getter": "get_drag_margin" - }, - { - "type": "bool", - "name": "tint_color_enabled", - "setter": "set_tint_color_enabled", - "getter": "is_tint_color_enabled" - }, - { - "type": "Color", - "name": "tint_color", - "setter": "set_tint_color", - "getter": "get_tint_color" - } - ] - }, - { - "name": "GraphNode", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GraphElement", - "api_type": "core", - "methods": [ - { - "name": "_draw_port", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 93366828, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "left", - "type": "bool" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_titlebar_hbox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3590609951, - "return_value": { - "type": "HBoxContainer" - } - }, - { - "name": "set_slot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2873310869, - "hash_compatibility": [ - 902131739 - ], - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable_left_port", - "type": "bool" - }, - { - "name": "type_left", - "type": "int", - "meta": "int32" - }, - { - "name": "color_left", - "type": "Color" - }, - { - "name": "enable_right_port", - "type": "bool" - }, - { - "name": "type_right", - "type": "int", - "meta": "int32" - }, - { - "name": "color_right", - "type": "Color" - }, - { - "name": "custom_icon_left", - "type": "Texture2D", - "default_value": "null" - }, - { - "name": "custom_icon_right", - "type": "Texture2D", - "default_value": "null" - }, - { - "name": "draw_stylebox", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "clear_slot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_all_slots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_slot_enabled_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_enabled_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_slot_type_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_slot_type_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_color_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_slot_color_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_custom_icon_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_slot_custom_icon_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_metadata_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_slot_metadata_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_slot_enabled_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_enabled_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_slot_type_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_slot_type_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_color_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_slot_color_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_custom_icon_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_slot_custom_icon_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_metadata_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_slot_metadata_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_slot_draw_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_slot_draw_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "slot_index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_ignore_invalid_connection_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "is_ignoring_valid_connection_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_slots_focus_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3232914922, - "arguments": [ - { - "name": "focus_mode", - "type": "enum::Control.FocusMode" - } - ] - }, - { - "name": "get_slots_focus_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2132829277, - "return_value": { - "type": "enum::Control.FocusMode" - } - }, - { - "name": "get_input_port_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_input_port_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3114997196, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_port_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_port_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2624840992, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_port_slot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_output_port_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3114997196, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2624840992, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_slot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "slot_updated", - "arguments": [ - { - "name": "slot_index", - "type": "int" - } - ] - }, - { - "name": "slot_sizes_changed" - } - ], - "properties": [ - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "bool", - "name": "ignore_invalid_connection_type", - "setter": "set_ignore_invalid_connection_type", - "getter": "is_ignoring_valid_connection_type" - }, - { - "type": "int", - "name": "slots_focus_mode", - "setter": "set_slots_focus_mode", - "getter": "get_slots_focus_mode" - } - ] - }, - { - "name": "GridContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "methods": [ - { - "name": "set_columns", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "columns", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_columns", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "columns", - "setter": "set_columns", - "getter": "get_columns" - } - ] - }, - { - "name": "GridMap", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "constants": [ - { - "name": "INVALID_CELL_ITEM", - "value": -1 - } - ], - "enums": [ - { - "name": "DebugVisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "DEBUG_VISIBILITY_MODE_DEFAULT", - "value": 0 - }, - { - "name": "DEBUG_VISIBILITY_MODE_FORCE_SHOW", - "value": 1 - }, - { - "name": "DEBUG_VISIBILITY_MODE_FORCE_HIDE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_collision_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4160694578, - "arguments": [ - { - "name": "visibility_mode", - "type": "enum::GridMap.DebugVisibilityMode" - } - ] - }, - { - "name": "get_collision_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3729798365, - "return_value": { - "type": "enum::GridMap.DebugVisibilityMode" - } - }, - { - "name": "set_physics_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784508650, - "arguments": [ - { - "name": "material", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2521850424, - "return_value": { - "type": "PhysicsMaterial" - } - }, - { - "name": "set_bake_navigation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "bake_navigation", - "type": "bool" - } - ] - }, - { - "name": "is_baking_navigation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_mesh_library", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1488083439, - "arguments": [ - { - "name": "mesh_library", - "type": "MeshLibrary" - } - ] - }, - { - "name": "get_mesh_library", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3350993772, - "return_value": { - "type": "MeshLibrary" - } - }, - { - "name": "set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_cell_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cell_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_octant_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_octant_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_cell_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3449088946, - "hash_compatibility": [ - 4177201334 - ], - "arguments": [ - { - "name": "position", - "type": "Vector3i" - }, - { - "name": "item", - "type": "int", - "meta": "int32" - }, - { - "name": "orientation", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_cell_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3724960147, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector3i" - } - ] - }, - { - "name": "get_cell_item_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3724960147, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector3i" - } - ] - }, - { - "name": "get_cell_item_basis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3493604918, - "return_value": { - "type": "Basis" - }, - "arguments": [ - { - "name": "position", - "type": "Vector3i" - } - ] - }, - { - "name": "get_basis_with_orthogonal_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2816196998, - "return_value": { - "type": "Basis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_orthogonal_index_from_basis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4210359952, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "basis", - "type": "Basis" - } - ] - }, - { - "name": "local_to_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1257687843, - "return_value": { - "type": "Vector3i" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector3" - } - ] - }, - { - "name": "map_to_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1088329196, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map_position", - "type": "Vector3i" - } - ] - }, - { - "name": "resource_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "set_center_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_center_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_center_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_center_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_center_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_center_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_used_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Vector3i" - } - }, - { - "name": "get_used_cells_by_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "item", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_used_octants", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Vector3i" - } - }, - { - "name": "get_used_octants_by_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "item", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_used_cells_in_octant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658725580, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "octant_coords", - "type": "Vector3i" - } - ] - }, - { - "name": "get_used_cells_in_octant_by_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2384667821, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "octant_coords", - "type": "Vector3i" - }, - { - "name": "item", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_octants_in_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2489849902, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "bounds", - "type": "AABB" - } - ] - }, - { - "name": "get_used_octants_in_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2489849902, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "bounds", - "type": "AABB" - } - ] - }, - { - "name": "get_octant_coords_from_cell_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2075501597, - "return_value": { - "type": "Vector3i" - }, - "arguments": [ - { - "name": "cell_coords", - "type": "Vector3i" - } - ] - }, - { - "name": "get_meshes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_bake_meshes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_bake_mesh_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 937000113, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_baked_meshes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "make_baked_meshes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3609286057, - "arguments": [ - { - "name": "gen_lightmap_uv", - "type": "bool", - "default_value": "false" - }, - { - "name": "lightmap_uv_texel_size", - "type": "float", - "meta": "float", - "default_value": "0.1" - } - ] - } - ], - "signals": [ - { - "name": "cell_size_changed", - "arguments": [ - { - "name": "cell_size", - "type": "Vector3" - } - ] - }, - { - "name": "changed" - } - ], - "properties": [ - { - "type": "MeshLibrary", - "name": "mesh_library", - "setter": "set_mesh_library", - "getter": "get_mesh_library" - }, - { - "type": "PhysicsMaterial", - "name": "physics_material", - "setter": "set_physics_material", - "getter": "get_physics_material" - }, - { - "type": "Vector3", - "name": "cell_size", - "setter": "set_cell_size", - "getter": "get_cell_size" - }, - { - "type": "int", - "name": "cell_octant_size", - "setter": "set_octant_size", - "getter": "get_octant_size" - }, - { - "type": "bool", - "name": "cell_center_x", - "setter": "set_center_x", - "getter": "get_center_x" - }, - { - "type": "bool", - "name": "cell_center_y", - "setter": "set_center_y", - "getter": "get_center_y" - }, - { - "type": "bool", - "name": "cell_center_z", - "setter": "set_center_z", - "getter": "get_center_z" - }, - { - "type": "float", - "name": "cell_scale", - "setter": "set_cell_scale", - "getter": "get_cell_scale" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "float", - "name": "collision_priority", - "setter": "set_collision_priority", - "getter": "get_collision_priority" - }, - { - "type": "int", - "name": "collision_visibility_mode", - "setter": "set_collision_visibility_mode", - "getter": "get_collision_visibility_mode" - }, - { - "type": "bool", - "name": "bake_navigation", - "setter": "set_bake_navigation", - "getter": "is_baking_navigation" - } - ] - }, - { - "name": "GridMapEditorPlugin", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "EditorPlugin", - "api_type": "editor", - "methods": [ - { - "name": "get_current_grid_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1184264483, - "return_value": { - "type": "GridMap" - } - }, - { - "name": "set_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3659408297, - "arguments": [ - { - "name": "begin", - "type": "Vector3i" - }, - { - "name": "end", - "type": "Vector3i" - } - ] - }, - { - "name": "clear_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "has_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_selected_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_selected_palette_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 998575451, - "arguments": [ - { - "name": "item", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_selected_palette_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "GrooveJoint2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint2D", - "api_type": "core", - "methods": [ - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_initial_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_initial_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "float", - "name": "initial_offset", - "setter": "set_initial_offset", - "getter": "get_initial_offset" - } - ] - }, - { - "name": "HBoxContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BoxContainer", - "api_type": "core" - }, - { - "name": "HFlowContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "FlowContainer", - "api_type": "core" - }, - { - "name": "HMACContext", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3537364598, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "hash_type", - "type": "enum::HashingContext.HashType" - }, - { - "name": "key", - "type": "PackedByteArray" - } - ] - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "finish", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - } - ] - }, - { - "name": "HScrollBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ScrollBar", - "api_type": "core" - }, - { - "name": "HSeparator", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Separator", - "api_type": "core" - }, - { - "name": "HSlider", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Slider", - "api_type": "core" - }, - { - "name": "HSplitContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SplitContainer", - "api_type": "core" - }, - { - "name": "HTTPClient", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Method", - "is_bitfield": false, - "values": [ - { - "name": "METHOD_GET", - "value": 0 - }, - { - "name": "METHOD_HEAD", - "value": 1 - }, - { - "name": "METHOD_POST", - "value": 2 - }, - { - "name": "METHOD_PUT", - "value": 3 - }, - { - "name": "METHOD_DELETE", - "value": 4 - }, - { - "name": "METHOD_OPTIONS", - "value": 5 - }, - { - "name": "METHOD_TRACE", - "value": 6 - }, - { - "name": "METHOD_CONNECT", - "value": 7 - }, - { - "name": "METHOD_PATCH", - "value": 8 - }, - { - "name": "METHOD_MAX", - "value": 9 - } - ] - }, - { - "name": "Status", - "is_bitfield": false, - "values": [ - { - "name": "STATUS_DISCONNECTED", - "value": 0 - }, - { - "name": "STATUS_RESOLVING", - "value": 1 - }, - { - "name": "STATUS_CANT_RESOLVE", - "value": 2 - }, - { - "name": "STATUS_CONNECTING", - "value": 3 - }, - { - "name": "STATUS_CANT_CONNECT", - "value": 4 - }, - { - "name": "STATUS_CONNECTED", - "value": 5 - }, - { - "name": "STATUS_REQUESTING", - "value": 6 - }, - { - "name": "STATUS_BODY", - "value": 7 - }, - { - "name": "STATUS_CONNECTION_ERROR", - "value": 8 - }, - { - "name": "STATUS_TLS_HANDSHAKE_ERROR", - "value": 9 - } - ] - }, - { - "name": "ResponseCode", - "is_bitfield": false, - "values": [ - { - "name": "RESPONSE_CONTINUE", - "value": 100 - }, - { - "name": "RESPONSE_SWITCHING_PROTOCOLS", - "value": 101 - }, - { - "name": "RESPONSE_PROCESSING", - "value": 102 - }, - { - "name": "RESPONSE_OK", - "value": 200 - }, - { - "name": "RESPONSE_CREATED", - "value": 201 - }, - { - "name": "RESPONSE_ACCEPTED", - "value": 202 - }, - { - "name": "RESPONSE_NON_AUTHORITATIVE_INFORMATION", - "value": 203 - }, - { - "name": "RESPONSE_NO_CONTENT", - "value": 204 - }, - { - "name": "RESPONSE_RESET_CONTENT", - "value": 205 - }, - { - "name": "RESPONSE_PARTIAL_CONTENT", - "value": 206 - }, - { - "name": "RESPONSE_MULTI_STATUS", - "value": 207 - }, - { - "name": "RESPONSE_ALREADY_REPORTED", - "value": 208 - }, - { - "name": "RESPONSE_IM_USED", - "value": 226 - }, - { - "name": "RESPONSE_MULTIPLE_CHOICES", - "value": 300 - }, - { - "name": "RESPONSE_MOVED_PERMANENTLY", - "value": 301 - }, - { - "name": "RESPONSE_FOUND", - "value": 302 - }, - { - "name": "RESPONSE_SEE_OTHER", - "value": 303 - }, - { - "name": "RESPONSE_NOT_MODIFIED", - "value": 304 - }, - { - "name": "RESPONSE_USE_PROXY", - "value": 305 - }, - { - "name": "RESPONSE_SWITCH_PROXY", - "value": 306 - }, - { - "name": "RESPONSE_TEMPORARY_REDIRECT", - "value": 307 - }, - { - "name": "RESPONSE_PERMANENT_REDIRECT", - "value": 308 - }, - { - "name": "RESPONSE_BAD_REQUEST", - "value": 400 - }, - { - "name": "RESPONSE_UNAUTHORIZED", - "value": 401 - }, - { - "name": "RESPONSE_PAYMENT_REQUIRED", - "value": 402 - }, - { - "name": "RESPONSE_FORBIDDEN", - "value": 403 - }, - { - "name": "RESPONSE_NOT_FOUND", - "value": 404 - }, - { - "name": "RESPONSE_METHOD_NOT_ALLOWED", - "value": 405 - }, - { - "name": "RESPONSE_NOT_ACCEPTABLE", - "value": 406 - }, - { - "name": "RESPONSE_PROXY_AUTHENTICATION_REQUIRED", - "value": 407 - }, - { - "name": "RESPONSE_REQUEST_TIMEOUT", - "value": 408 - }, - { - "name": "RESPONSE_CONFLICT", - "value": 409 - }, - { - "name": "RESPONSE_GONE", - "value": 410 - }, - { - "name": "RESPONSE_LENGTH_REQUIRED", - "value": 411 - }, - { - "name": "RESPONSE_PRECONDITION_FAILED", - "value": 412 - }, - { - "name": "RESPONSE_REQUEST_ENTITY_TOO_LARGE", - "value": 413 - }, - { - "name": "RESPONSE_REQUEST_URI_TOO_LONG", - "value": 414 - }, - { - "name": "RESPONSE_UNSUPPORTED_MEDIA_TYPE", - "value": 415 - }, - { - "name": "RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE", - "value": 416 - }, - { - "name": "RESPONSE_EXPECTATION_FAILED", - "value": 417 - }, - { - "name": "RESPONSE_IM_A_TEAPOT", - "value": 418 - }, - { - "name": "RESPONSE_MISDIRECTED_REQUEST", - "value": 421 - }, - { - "name": "RESPONSE_UNPROCESSABLE_ENTITY", - "value": 422 - }, - { - "name": "RESPONSE_LOCKED", - "value": 423 - }, - { - "name": "RESPONSE_FAILED_DEPENDENCY", - "value": 424 - }, - { - "name": "RESPONSE_UPGRADE_REQUIRED", - "value": 426 - }, - { - "name": "RESPONSE_PRECONDITION_REQUIRED", - "value": 428 - }, - { - "name": "RESPONSE_TOO_MANY_REQUESTS", - "value": 429 - }, - { - "name": "RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE", - "value": 431 - }, - { - "name": "RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS", - "value": 451 - }, - { - "name": "RESPONSE_INTERNAL_SERVER_ERROR", - "value": 500 - }, - { - "name": "RESPONSE_NOT_IMPLEMENTED", - "value": 501 - }, - { - "name": "RESPONSE_BAD_GATEWAY", - "value": 502 - }, - { - "name": "RESPONSE_SERVICE_UNAVAILABLE", - "value": 503 - }, - { - "name": "RESPONSE_GATEWAY_TIMEOUT", - "value": 504 - }, - { - "name": "RESPONSE_HTTP_VERSION_NOT_SUPPORTED", - "value": 505 - }, - { - "name": "RESPONSE_VARIANT_ALSO_NEGOTIATES", - "value": 506 - }, - { - "name": "RESPONSE_INSUFFICIENT_STORAGE", - "value": 507 - }, - { - "name": "RESPONSE_LOOP_DETECTED", - "value": 508 - }, - { - "name": "RESPONSE_NOT_EXTENDED", - "value": 510 - }, - { - "name": "RESPONSE_NETWORK_AUTH_REQUIRED", - "value": 511 - } - ] - } - ], - "methods": [ - { - "name": "connect_to_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 504540374, - "hash_compatibility": [ - 1970282951 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "tls_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "set_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3281897016, - "arguments": [ - { - "name": "connection", - "type": "StreamPeer" - } - ] - }, - { - "name": "get_connection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2741655269, - "return_value": { - "type": "StreamPeer" - } - }, - { - "name": "request_raw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 540161961, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "method", - "type": "enum::HTTPClient.Method" - }, - { - "name": "url", - "type": "String" - }, - { - "name": "headers", - "type": "PackedStringArray" - }, - { - "name": "body", - "type": "PackedByteArray" - } - ] - }, - { - "name": "request", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3778990155, - "hash_compatibility": [ - 3249905507 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "method", - "type": "enum::HTTPClient.Method" - }, - { - "name": "url", - "type": "String" - }, - { - "name": "headers", - "type": "PackedStringArray" - }, - { - "name": "body", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "has_response", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_response_chunked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_response_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_response_headers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_response_headers_as_dictionary", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_response_body_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "read_response_body_chunk", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_read_chunk_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_read_chunk_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_blocking_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_blocking_mode_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1426656811, - "return_value": { - "type": "enum::HTTPClient.Status" - } - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "set_http_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_https_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "query_string_from_dict", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2538086567, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "fields", - "type": "Dictionary" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "blocking_mode_enabled", - "setter": "set_blocking_mode", - "getter": "is_blocking_mode_enabled" - }, - { - "type": "StreamPeer", - "name": "connection", - "setter": "set_connection", - "getter": "get_connection" - }, - { - "type": "int", - "name": "read_chunk_size", - "setter": "set_read_chunk_size", - "getter": "get_read_chunk_size" - } - ] - }, - { - "name": "HTTPRequest", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "Result", - "is_bitfield": false, - "values": [ - { - "name": "RESULT_SUCCESS", - "value": 0 - }, - { - "name": "RESULT_CHUNKED_BODY_SIZE_MISMATCH", - "value": 1 - }, - { - "name": "RESULT_CANT_CONNECT", - "value": 2 - }, - { - "name": "RESULT_CANT_RESOLVE", - "value": 3 - }, - { - "name": "RESULT_CONNECTION_ERROR", - "value": 4 - }, - { - "name": "RESULT_TLS_HANDSHAKE_ERROR", - "value": 5 - }, - { - "name": "RESULT_NO_RESPONSE", - "value": 6 - }, - { - "name": "RESULT_BODY_SIZE_LIMIT_EXCEEDED", - "value": 7 - }, - { - "name": "RESULT_BODY_DECOMPRESS_FAILED", - "value": 8 - }, - { - "name": "RESULT_REQUEST_FAILED", - "value": 9 - }, - { - "name": "RESULT_DOWNLOAD_FILE_CANT_OPEN", - "value": 10 - }, - { - "name": "RESULT_DOWNLOAD_FILE_WRITE_ERROR", - "value": 11 - }, - { - "name": "RESULT_REDIRECT_LIMIT_REACHED", - "value": 12 - }, - { - "name": "RESULT_TIMEOUT", - "value": 13 - } - ] - } - ], - "methods": [ - { - "name": "request", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3215244323, - "hash_compatibility": [ - 2720304520 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "url", - "type": "String" - }, - { - "name": "custom_headers", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - }, - { - "name": "method", - "type": "enum::HTTPClient.Method", - "default_value": "0" - }, - { - "name": "request_data", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "request_raw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2714829993, - "hash_compatibility": [ - 4282724657 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "url", - "type": "String" - }, - { - "name": "custom_headers", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - }, - { - "name": "method", - "type": "enum::HTTPClient.Method", - "default_value": "0" - }, - { - "name": "request_data_raw", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - } - ] - }, - { - "name": "cancel_request", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_tls_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2210231844, - "arguments": [ - { - "name": "client_options", - "type": "TLSOptions" - } - ] - }, - { - "name": "get_http_client_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1426656811, - "return_value": { - "type": "enum::HTTPClient.Status" - } - }, - { - "name": "set_use_threads", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_threads", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_accept_gzip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_accepting_gzip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_body_size_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_body_size_limit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_redirects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_redirects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_download_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_download_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_downloaded_bytes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_body_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "timeout", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_download_chunk_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "chunk_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_download_chunk_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_http_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_https_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "request_completed", - "arguments": [ - { - "name": "result", - "type": "int" - }, - { - "name": "response_code", - "type": "int" - }, - { - "name": "headers", - "type": "PackedStringArray" - }, - { - "name": "body", - "type": "PackedByteArray" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "download_file", - "setter": "set_download_file", - "getter": "get_download_file" - }, - { - "type": "int", - "name": "download_chunk_size", - "setter": "set_download_chunk_size", - "getter": "get_download_chunk_size" - }, - { - "type": "bool", - "name": "use_threads", - "setter": "set_use_threads", - "getter": "is_using_threads" - }, - { - "type": "bool", - "name": "accept_gzip", - "setter": "set_accept_gzip", - "getter": "is_accepting_gzip" - }, - { - "type": "int", - "name": "body_size_limit", - "setter": "set_body_size_limit", - "getter": "get_body_size_limit" - }, - { - "type": "int", - "name": "max_redirects", - "setter": "set_max_redirects", - "getter": "get_max_redirects" - }, - { - "type": "float", - "name": "timeout", - "setter": "set_timeout", - "getter": "get_timeout" - } - ] - }, - { - "name": "HashingContext", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "HashType", - "is_bitfield": false, - "values": [ - { - "name": "HASH_MD5", - "value": 0 - }, - { - "name": "HASH_SHA1", - "value": 1 - }, - { - "name": "HASH_SHA256", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3940338335, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "enum::HashingContext.HashType" - } - ] - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "chunk", - "type": "PackedByteArray" - } - ] - }, - { - "name": "finish", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - } - ] - }, - { - "name": "HeightMapShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_map_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_map_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_map_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_map_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_map_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "data", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_map_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "get_min_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_max_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "update_map_data_from_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2636652979, - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "height_min", - "type": "float", - "meta": "float" - }, - { - "name": "height_max", - "type": "float", - "meta": "float" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "map_width", - "setter": "set_map_width", - "getter": "get_map_width" - }, - { - "type": "int", - "name": "map_depth", - "setter": "set_map_depth", - "getter": "get_map_depth" - }, - { - "type": "PackedFloat32Array", - "name": "map_data", - "setter": "set_map_data", - "getter": "get_map_data" - } - ] - }, - { - "name": "HingeJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_BIAS", - "value": 0 - }, - { - "name": "PARAM_LIMIT_UPPER", - "value": 1 - }, - { - "name": "PARAM_LIMIT_LOWER", - "value": 2 - }, - { - "name": "PARAM_LIMIT_BIAS", - "value": 3 - }, - { - "name": "PARAM_LIMIT_SOFTNESS", - "value": 4 - }, - { - "name": "PARAM_LIMIT_RELAXATION", - "value": 5 - }, - { - "name": "PARAM_MOTOR_TARGET_VELOCITY", - "value": 6 - }, - { - "name": "PARAM_MOTOR_MAX_IMPULSE", - "value": 7 - }, - { - "name": "PARAM_MAX", - "value": 8 - } - ] - }, - { - "name": "Flag", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_USE_LIMIT", - "value": 0 - }, - { - "name": "FLAG_ENABLE_MOTOR", - "value": 1 - }, - { - "name": "FLAG_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082977519, - "arguments": [ - { - "name": "param", - "type": "enum::HingeJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4066002676, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::HingeJoint3D.Param" - } - ] - }, - { - "name": "set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1083494620, - "arguments": [ - { - "name": "flag", - "type": "enum::HingeJoint3D.Flag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841369610, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::HingeJoint3D.Flag" - } - ] - } - ] - }, - { - "name": "IKModifier3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_setting_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_setting_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_settings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_mutable_bone_axes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "are_bone_axes_mutable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "bool", - "name": "mutable_bone_axes", - "setter": "set_mutable_bone_axes", - "getter": "are_bone_axes_mutable" - } - ] - }, - { - "name": "IP", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "RESOLVER_MAX_QUERIES", - "value": 256 - }, - { - "name": "RESOLVER_INVALID_ID", - "value": -1 - } - ], - "enums": [ - { - "name": "ResolverStatus", - "is_bitfield": false, - "values": [ - { - "name": "RESOLVER_STATUS_NONE", - "value": 0 - }, - { - "name": "RESOLVER_STATUS_WAITING", - "value": 1 - }, - { - "name": "RESOLVER_STATUS_DONE", - "value": 2 - }, - { - "name": "RESOLVER_STATUS_ERROR", - "value": 3 - } - ] - }, - { - "name": "Type", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_NONE", - "value": 0 - }, - { - "name": "TYPE_IPV4", - "value": 1 - }, - { - "name": "TYPE_IPV6", - "value": 2 - }, - { - "name": "TYPE_ANY", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "resolve_hostname", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4283295457, - "hash_compatibility": [ - 396864159 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "ip_type", - "type": "enum::IP.Type", - "default_value": "3" - } - ] - }, - { - "name": "resolve_hostname_addresses", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 773767525, - "hash_compatibility": [ - 3462780090 - ], - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "ip_type", - "type": "enum::IP.Type", - "default_value": "3" - } - ] - }, - { - "name": "resolve_hostname_queue_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1749894742, - "hash_compatibility": [ - 3936392508 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "ip_type", - "type": "enum::IP.Type", - "default_value": "3" - } - ] - }, - { - "name": "get_resolve_item_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3812250196, - "return_value": { - "type": "enum::IP.ResolverStatus" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_resolve_item_address", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_resolve_item_addresses", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "erase_resolve_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_local_addresses", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_local_interfaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "clear_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3005725572, - "arguments": [ - { - "name": "hostname", - "type": "String", - "default_value": "\"\"" - } - ] - } - ] - }, - { - "name": "Image", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "constants": [ - { - "name": "MAX_WIDTH", - "value": 16777216 - }, - { - "name": "MAX_HEIGHT", - "value": 16777216 - } - ], - "enums": [ - { - "name": "Format", - "is_bitfield": false, - "values": [ - { - "name": "FORMAT_L8", - "value": 0 - }, - { - "name": "FORMAT_LA8", - "value": 1 - }, - { - "name": "FORMAT_R8", - "value": 2 - }, - { - "name": "FORMAT_RG8", - "value": 3 - }, - { - "name": "FORMAT_RGB8", - "value": 4 - }, - { - "name": "FORMAT_RGBA8", - "value": 5 - }, - { - "name": "FORMAT_RGBA4444", - "value": 6 - }, - { - "name": "FORMAT_RGB565", - "value": 7 - }, - { - "name": "FORMAT_RF", - "value": 8 - }, - { - "name": "FORMAT_RGF", - "value": 9 - }, - { - "name": "FORMAT_RGBF", - "value": 10 - }, - { - "name": "FORMAT_RGBAF", - "value": 11 - }, - { - "name": "FORMAT_RH", - "value": 12 - }, - { - "name": "FORMAT_RGH", - "value": 13 - }, - { - "name": "FORMAT_RGBH", - "value": 14 - }, - { - "name": "FORMAT_RGBAH", - "value": 15 - }, - { - "name": "FORMAT_RGBE9995", - "value": 16 - }, - { - "name": "FORMAT_DXT1", - "value": 17 - }, - { - "name": "FORMAT_DXT3", - "value": 18 - }, - { - "name": "FORMAT_DXT5", - "value": 19 - }, - { - "name": "FORMAT_RGTC_R", - "value": 20 - }, - { - "name": "FORMAT_RGTC_RG", - "value": 21 - }, - { - "name": "FORMAT_BPTC_RGBA", - "value": 22 - }, - { - "name": "FORMAT_BPTC_RGBF", - "value": 23 - }, - { - "name": "FORMAT_BPTC_RGBFU", - "value": 24 - }, - { - "name": "FORMAT_ETC", - "value": 25 - }, - { - "name": "FORMAT_ETC2_R11", - "value": 26 - }, - { - "name": "FORMAT_ETC2_R11S", - "value": 27 - }, - { - "name": "FORMAT_ETC2_RG11", - "value": 28 - }, - { - "name": "FORMAT_ETC2_RG11S", - "value": 29 - }, - { - "name": "FORMAT_ETC2_RGB8", - "value": 30 - }, - { - "name": "FORMAT_ETC2_RGBA8", - "value": 31 - }, - { - "name": "FORMAT_ETC2_RGB8A1", - "value": 32 - }, - { - "name": "FORMAT_ETC2_RA_AS_RG", - "value": 33 - }, - { - "name": "FORMAT_DXT5_RA_AS_RG", - "value": 34 - }, - { - "name": "FORMAT_ASTC_4x4", - "value": 35 - }, - { - "name": "FORMAT_ASTC_4x4_HDR", - "value": 36 - }, - { - "name": "FORMAT_ASTC_8x8", - "value": 37 - }, - { - "name": "FORMAT_ASTC_8x8_HDR", - "value": 38 - }, - { - "name": "FORMAT_R16", - "value": 39 - }, - { - "name": "FORMAT_RG16", - "value": 40 - }, - { - "name": "FORMAT_RGB16", - "value": 41 - }, - { - "name": "FORMAT_RGBA16", - "value": 42 - }, - { - "name": "FORMAT_R16I", - "value": 43 - }, - { - "name": "FORMAT_RG16I", - "value": 44 - }, - { - "name": "FORMAT_RGB16I", - "value": 45 - }, - { - "name": "FORMAT_RGBA16I", - "value": 46 - }, - { - "name": "FORMAT_MAX", - "value": 47 - } - ] - }, - { - "name": "Interpolation", - "is_bitfield": false, - "values": [ - { - "name": "INTERPOLATE_NEAREST", - "value": 0 - }, - { - "name": "INTERPOLATE_BILINEAR", - "value": 1 - }, - { - "name": "INTERPOLATE_CUBIC", - "value": 2 - }, - { - "name": "INTERPOLATE_TRILINEAR", - "value": 3 - }, - { - "name": "INTERPOLATE_LANCZOS", - "value": 4 - } - ] - }, - { - "name": "AlphaMode", - "is_bitfield": false, - "values": [ - { - "name": "ALPHA_NONE", - "value": 0 - }, - { - "name": "ALPHA_BIT", - "value": 1 - }, - { - "name": "ALPHA_BLEND", - "value": 2 - } - ] - }, - { - "name": "CompressMode", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESS_S3TC", - "value": 0 - }, - { - "name": "COMPRESS_ETC", - "value": 1 - }, - { - "name": "COMPRESS_ETC2", - "value": 2 - }, - { - "name": "COMPRESS_BPTC", - "value": 3 - }, - { - "name": "COMPRESS_ASTC", - "value": 4 - }, - { - "name": "COMPRESS_MAX", - "value": 5 - } - ] - }, - { - "name": "UsedChannels", - "is_bitfield": false, - "values": [ - { - "name": "USED_CHANNELS_L", - "value": 0 - }, - { - "name": "USED_CHANNELS_LA", - "value": 1 - }, - { - "name": "USED_CHANNELS_R", - "value": 2 - }, - { - "name": "USED_CHANNELS_RG", - "value": 3 - }, - { - "name": "USED_CHANNELS_RGB", - "value": 4 - }, - { - "name": "USED_CHANNELS_RGBA", - "value": 5 - } - ] - }, - { - "name": "CompressSource", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESS_SOURCE_GENERIC", - "value": 0 - }, - { - "name": "COMPRESS_SOURCE_SRGB", - "value": 1 - }, - { - "name": "COMPRESS_SOURCE_NORMAL", - "value": 2 - } - ] - }, - { - "name": "ASTCFormat", - "is_bitfield": false, - "values": [ - { - "name": "ASTC_FORMAT_4x4", - "value": 0 - }, - { - "name": "ASTC_FORMAT_8x8", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "has_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "get_data_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "convert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2120693146, - "arguments": [ - { - "name": "format", - "type": "enum::Image.Format" - } - ] - }, - { - "name": "get_mipmap_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_mipmap_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "mipmap", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "resize_to_po2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4189212329, - "arguments": [ - { - "name": "square", - "type": "bool", - "default_value": "false" - }, - { - "name": "interpolation", - "type": "enum::Image.Interpolation", - "default_value": "1" - } - ] - }, - { - "name": "resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 994498151, - "hash_compatibility": [ - 2461393748 - ], - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "interpolation", - "type": "enum::Image.Interpolation", - "default_value": "1" - } - ] - }, - { - "name": "shrink_x2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "crop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "flip_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "flip_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1633102583, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "renormalize", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "clear_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 986942177, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "use_mipmaps", - "type": "bool" - }, - { - "name": "format", - "type": "enum::Image.Format" - } - ] - }, - { - "name": "create_empty", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 986942177, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "use_mipmaps", - "type": "bool" - }, - { - "name": "format", - "type": "enum::Image.Format" - } - ] - }, - { - "name": "create_from_data", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 299398494, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "use_mipmaps", - "type": "bool" - }, - { - "name": "format", - "type": "enum::Image.Format" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2740482212, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "use_mipmaps", - "type": "bool" - }, - { - "name": "format", - "type": "enum::Image.Format" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "is_empty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 736337515, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_png", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2113323047, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_png_to_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "save_jpg", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2800019068, - "hash_compatibility": [ - 578836491 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "quality", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "save_jpg_to_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 592235273, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "quality", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "save_exr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2018602448, - "hash_compatibility": [ - 3108122999 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "grayscale", - "type": "bool", - "default_value": "false" - }, - { - "name": "color_image", - "type": "bool", - "default_value": "false" - }, - { - "name": "max_linear_value", - "type": "float", - "meta": "float", - "default_value": "-1.0" - } - ] - }, - { - "name": "save_exr_to_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477518536, - "hash_compatibility": [ - 3178917920 - ], - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "grayscale", - "type": "bool", - "default_value": "false" - }, - { - "name": "color_image", - "type": "bool", - "default_value": "false" - }, - { - "name": "max_linear_value", - "type": "float", - "meta": "float", - "default_value": "-1.0" - } - ] - }, - { - "name": "save_dds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2113323047, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_dds_to_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "save_webp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2781156876, - "hash_compatibility": [ - 3594949219 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "lossy", - "type": "bool", - "default_value": "false" - }, - { - "name": "quality", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "save_webp_to_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214628238, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "lossy", - "type": "bool", - "default_value": "false" - }, - { - "name": "quality", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "detect_alpha", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2030116505, - "return_value": { - "type": "enum::Image.AlphaMode" - } - }, - { - "name": "is_invisible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "detect_used_channels", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2703139984, - "return_value": { - "type": "enum::Image.UsedChannels" - }, - "arguments": [ - { - "name": "source", - "type": "enum::Image.CompressSource", - "default_value": "0" - } - ] - }, - { - "name": "compress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2975424957, - "hash_compatibility": [ - 4094210332 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Image.CompressMode" - }, - { - "name": "source", - "type": "enum::Image.CompressSource", - "default_value": "0" - }, - { - "name": "astc_format", - "type": "enum::Image.ASTCFormat", - "default_value": "0" - } - ] - }, - { - "name": "compress_from_channels", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4212890953, - "hash_compatibility": [ - 279105990 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Image.CompressMode" - }, - { - "name": "channels", - "type": "enum::Image.UsedChannels" - }, - { - "name": "astc_format", - "type": "enum::Image.ASTCFormat", - "default_value": "0" - } - ] - }, - { - "name": "decompress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "is_compressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "rotate_90", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1901204267, - "arguments": [ - { - "name": "direction", - "type": "enum::ClockDirection" - } - ] - }, - { - "name": "rotate_180", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "fix_alpha_edges", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "premultiply_alpha", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "srgb_to_linear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "linear_to_srgb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "normal_map_to_xy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "rgbe_to_srgb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 564927088, - "return_value": { - "type": "Image" - } - }, - { - "name": "bump_map_to_normal_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3423495036, - "arguments": [ - { - "name": "bump_scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "compute_image_metrics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3080961247, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "compared_image", - "type": "Image" - }, - { - "name": "use_luma", - "type": "bool" - } - ] - }, - { - "name": "blit_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2903928755, - "arguments": [ - { - "name": "src", - "type": "Image" - }, - { - "name": "src_rect", - "type": "Rect2i" - }, - { - "name": "dst", - "type": "Vector2i" - } - ] - }, - { - "name": "blit_rect_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383581145, - "arguments": [ - { - "name": "src", - "type": "Image" - }, - { - "name": "mask", - "type": "Image" - }, - { - "name": "src_rect", - "type": "Rect2i" - }, - { - "name": "dst", - "type": "Vector2i" - } - ] - }, - { - "name": "blend_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2903928755, - "arguments": [ - { - "name": "src", - "type": "Image" - }, - { - "name": "src_rect", - "type": "Rect2i" - }, - { - "name": "dst", - "type": "Vector2i" - } - ] - }, - { - "name": "blend_rect_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383581145, - "arguments": [ - { - "name": "src", - "type": "Image" - }, - { - "name": "mask", - "type": "Image" - }, - { - "name": "src_rect", - "type": "Rect2i" - }, - { - "name": "dst", - "type": "Vector2i" - } - ] - }, - { - "name": "fill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "fill_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 514693913, - "arguments": [ - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_used_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "get_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2601441065, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "region", - "type": "Rect2i" - } - ] - }, - { - "name": "copy_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "src", - "type": "Image" - } - ] - }, - { - "name": "get_pixelv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1532707496, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2i" - } - ] - }, - { - "name": "get_pixel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2165839948, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pixelv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 287851464, - "arguments": [ - { - "name": "point", - "type": "Vector2i" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "set_pixel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3733378741, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "adjust_bcs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2385087082, - "arguments": [ - { - "name": "brightness", - "type": "float", - "meta": "float" - }, - { - "name": "contrast", - "type": "float", - "meta": "float" - }, - { - "name": "saturation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "load_png_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_jpg_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_webp_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_tga_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_bmp_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_ktx_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_dds_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_exr_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_svg_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 311853421, - "hash_compatibility": [ - 1822513750 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - }, - { - "name": "scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "load_svg_from_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3254053600, - "hash_compatibility": [ - 1461766635 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "svg_str", - "type": "String" - }, - { - "name": "scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "data", - "setter": "_set_data", - "getter": "_get_data" - } - ] - }, - { - "name": "ImageFormatLoader", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "LoaderFlags", - "is_bitfield": true, - "values": [ - { - "name": "FLAG_NONE", - "value": 0 - }, - { - "name": "FLAG_FORCE_LINEAR", - "value": 1 - }, - { - "name": "FLAG_CONVERT_COLORS", - "value": 2 - } - ] - } - ] - }, - { - "name": "ImageFormatLoaderExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ImageFormatLoader", - "api_type": "core", - "methods": [ - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_load_image", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3760540541, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "fileaccess", - "type": "FileAccess" - }, - { - "name": "flags", - "type": "bitfield::ImageFormatLoader.LoaderFlags" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "add_format_loader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "remove_format_loader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "ImageTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "create_from_image", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2775144163, - "return_value": { - "type": "ImageTexture" - }, - "arguments": [ - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "set_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 532598488, - "arguments": [ - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "set_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - } - ], - "properties": [ - { - "type": "Image", - "name": "image", - "setter": "_set_image", - "getter": "get_image" - } - ] - }, - { - "name": "ImageTexture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture3D", - "api_type": "core", - "methods": [ - { - "name": "create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130379827, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "format", - "type": "enum::Image.Format" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - }, - { - "name": "use_mipmaps", - "type": "bool" - }, - { - "name": "data", - "type": "typedarray::Image" - } - ] - }, - { - "name": "update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "data", - "type": "typedarray::Image" - } - ] - } - ] - }, - { - "name": "ImageTextureLayered", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "TextureLayered", - "api_type": "core", - "methods": [ - { - "name": "create_from_images", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2785773503, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "images", - "type": "typedarray::Image" - } - ] - }, - { - "name": "update_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3331733361, - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "ImmediateMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Mesh", - "api_type": "core", - "methods": [ - { - "name": "surface_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2794442543, - "hash_compatibility": [ - 3716480242 - ], - "arguments": [ - { - "name": "primitive", - "type": "enum::Mesh.PrimitiveType" - }, - { - "name": "material", - "type": "Material", - "default_value": "null" - } - ] - }, - { - "name": "surface_set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "surface_set_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "name": "surface_set_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3505987427, - "arguments": [ - { - "name": "tangent", - "type": "Plane" - } - ] - }, - { - "name": "surface_set_uv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "uv", - "type": "Vector2" - } - ] - }, - { - "name": "surface_set_uv2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "uv2", - "type": "Vector2" - } - ] - }, - { - "name": "surface_add_vertex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "vertex", - "type": "Vector3" - } - ] - }, - { - "name": "surface_add_vertex_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "vertex", - "type": "Vector2" - } - ] - }, - { - "name": "surface_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_surfaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "ImporterMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "merge_importer_meshes", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1030647649, - "return_value": { - "type": "ImporterMesh" - }, - "arguments": [ - { - "name": "importer_meshes", - "type": "typedarray::ImporterMesh" - }, - { - "name": "relative_transforms", - "type": "typedarray::Transform3D" - }, - { - "name": "deduplicate_surfaces", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "add_blend_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_blend_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_blend_shape_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "blend_shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_shape_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 227983991, - "arguments": [ - { - "name": "mode", - "type": "enum::Mesh.BlendShapeMode" - } - ] - }, - { - "name": "get_blend_shape_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 836485024, - "return_value": { - "type": "enum::Mesh.BlendShapeMode" - } - }, - { - "name": "add_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740448849, - "hash_compatibility": [ - 4122361985 - ], - "arguments": [ - { - "name": "primitive", - "type": "enum::Mesh.PrimitiveType" - }, - { - "name": "arrays", - "type": "Array" - }, - { - "name": "blend_shapes", - "type": "typedarray::Array", - "default_value": "Array[Array]([])" - }, - { - "name": "lods", - "type": "Dictionary", - "default_value": "{}" - }, - { - "name": "material", - "type": "Material", - "default_value": "null" - }, - { - "name": "name", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "flags", - "type": "int", - "meta": "uint64", - "default_value": "0" - } - ] - }, - { - "name": "get_surface_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_surface_primitive_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3552571330, - "return_value": { - "type": "enum::Mesh.PrimitiveType" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_blend_shape_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2345056839, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "blend_shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_lod_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_lod_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "lod_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_lod_indices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265128013, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "lod_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897466400, - "return_value": { - "type": "Material" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_surface_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_surface_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3671737478, - "arguments": [ - { - "name": "surface_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "generate_lods", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2491878677, - "arguments": [ - { - "name": "normal_merge_angle", - "type": "float", - "meta": "float" - }, - { - "name": "normal_split_angle", - "type": "float", - "meta": "float" - }, - { - "name": "bone_transform_array", - "type": "Array" - } - ] - }, - { - "name": "get_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1457573577, - "return_value": { - "type": "ArrayMesh" - }, - "arguments": [ - { - "name": "base_mesh", - "type": "ArrayMesh", - "default_value": "null" - } - ] - }, - { - "name": "from_mesh", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 283226343, - "return_value": { - "type": "ImporterMesh" - }, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_lightmap_size_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_lightmap_size_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - } - ] - }, - { - "name": "ImporterMeshInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2255166972, - "arguments": [ - { - "name": "mesh", - "type": "ImporterMesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3161779525, - "return_value": { - "type": "ImporterMesh" - } - }, - { - "name": "set_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3971435618, - "arguments": [ - { - "name": "skin", - "type": "Skin" - } - ] - }, - { - "name": "get_skin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074563878, - "return_value": { - "type": "Skin" - } - }, - { - "name": "set_skeleton_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "skeleton_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_skeleton_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_layer_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_layer_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_cast_shadows_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 856677339, - "arguments": [ - { - "name": "shadow_casting_setting", - "type": "enum::GeometryInstance3D.ShadowCastingSetting" - } - ] - }, - { - "name": "get_cast_shadows_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383019359, - "return_value": { - "type": "enum::GeometryInstance3D.ShadowCastingSetting" - } - }, - { - "name": "set_visibility_range_end_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_end_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_begin_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_begin_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visibility_range_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_visibility_range_fade_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1440117808, - "arguments": [ - { - "name": "mode", - "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" - } - ] - }, - { - "name": "get_visibility_range_fade_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2067221882, - "return_value": { - "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" - } - } - ], - "properties": [ - { - "type": "ImporterMesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "Skin", - "name": "skin", - "setter": "set_skin", - "getter": "get_skin" - }, - { - "type": "NodePath", - "name": "skeleton_path", - "setter": "set_skeleton_path", - "getter": "get_skeleton_path" - }, - { - "type": "int", - "name": "layer_mask", - "setter": "set_layer_mask", - "getter": "get_layer_mask" - }, - { - "type": "int", - "name": "cast_shadow", - "setter": "set_cast_shadows_setting", - "getter": "get_cast_shadows_setting" - }, - { - "type": "float", - "name": "visibility_range_begin", - "setter": "set_visibility_range_begin", - "getter": "get_visibility_range_begin" - }, - { - "type": "float", - "name": "visibility_range_begin_margin", - "setter": "set_visibility_range_begin_margin", - "getter": "get_visibility_range_begin_margin" - }, - { - "type": "float", - "name": "visibility_range_end", - "setter": "set_visibility_range_end", - "getter": "get_visibility_range_end" - }, - { - "type": "float", - "name": "visibility_range_end_margin", - "setter": "set_visibility_range_end_margin", - "getter": "get_visibility_range_end_margin" - }, - { - "type": "int", - "name": "visibility_range_fade_mode", - "setter": "set_visibility_range_fade_mode", - "getter": "get_visibility_range_fade_mode" - } - ] - }, - { - "name": "Input", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "MouseMode", - "is_bitfield": false, - "values": [ - { - "name": "MOUSE_MODE_VISIBLE", - "value": 0 - }, - { - "name": "MOUSE_MODE_HIDDEN", - "value": 1 - }, - { - "name": "MOUSE_MODE_CAPTURED", - "value": 2 - }, - { - "name": "MOUSE_MODE_CONFINED", - "value": 3 - }, - { - "name": "MOUSE_MODE_CONFINED_HIDDEN", - "value": 4 - }, - { - "name": "MOUSE_MODE_MAX", - "value": 5 - } - ] - }, - { - "name": "CursorShape", - "is_bitfield": false, - "values": [ - { - "name": "CURSOR_ARROW", - "value": 0 - }, - { - "name": "CURSOR_IBEAM", - "value": 1 - }, - { - "name": "CURSOR_POINTING_HAND", - "value": 2 - }, - { - "name": "CURSOR_CROSS", - "value": 3 - }, - { - "name": "CURSOR_WAIT", - "value": 4 - }, - { - "name": "CURSOR_BUSY", - "value": 5 - }, - { - "name": "CURSOR_DRAG", - "value": 6 - }, - { - "name": "CURSOR_CAN_DROP", - "value": 7 - }, - { - "name": "CURSOR_FORBIDDEN", - "value": 8 - }, - { - "name": "CURSOR_VSIZE", - "value": 9 - }, - { - "name": "CURSOR_HSIZE", - "value": 10 - }, - { - "name": "CURSOR_BDIAGSIZE", - "value": 11 - }, - { - "name": "CURSOR_FDIAGSIZE", - "value": 12 - }, - { - "name": "CURSOR_MOVE", - "value": 13 - }, - { - "name": "CURSOR_VSPLIT", - "value": 14 - }, - { - "name": "CURSOR_HSPLIT", - "value": 15 - }, - { - "name": "CURSOR_HELP", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "is_anything_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_key_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1938909964, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "is_physical_key_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1938909964, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "is_key_label_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1938909964, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "is_mouse_button_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1821097125, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "button", - "type": "enum::MouseButton" - } - ] - }, - { - "name": "is_joy_button_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 787208542, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "button", - "type": "enum::JoyButton" - } - ] - }, - { - "name": "is_action_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558498928, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_just_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558498928, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_just_released", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558498928, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_just_pressed_by_event", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 551972873, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_just_released_by_event", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 551972873, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_action_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 801543509, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_action_raw_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 801543509, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1958752504, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "negative_action", - "type": "StringName" - }, - { - "name": "positive_action", - "type": "StringName" - } - ] - }, - { - "name": "get_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2479607902, - "hash_compatibility": [ - 1517139831 - ], - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "negative_x", - "type": "StringName" - }, - { - "name": "positive_x", - "type": "StringName" - }, - { - "name": "negative_y", - "type": "StringName" - }, - { - "name": "positive_y", - "type": "StringName" - }, - { - "name": "deadzone", - "type": "float", - "meta": "float", - "default_value": "-1.0" - } - ] - }, - { - "name": "add_joy_mapping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1168363258, - "arguments": [ - { - "name": "mapping", - "type": "String" - }, - { - "name": "update_existing", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_joy_mapping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "guid", - "type": "String" - } - ] - }, - { - "name": "is_joy_known", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4063175957, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::JoyAxis" - } - ] - }, - { - "name": "get_joy_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_guid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "should_ignore_device", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "vendor_id", - "type": "int", - "meta": "int32" - }, - { - "name": "product_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connected_joypads", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "get_joy_vibration_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3114997196, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_vibration_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025615559, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_vibration_remaining_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025615559, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_joy_vibrating", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_joy_vibration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "start_joy_vibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2576575033, - "hash_compatibility": [ - 1890603622 - ], - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "weak_magnitude", - "type": "float", - "meta": "float" - }, - { - "name": "strong_magnitude", - "type": "float", - "meta": "float" - }, - { - "name": "duration", - "type": "float", - "meta": "float", - "default_value": "0" - } - ] - }, - { - "name": "stop_joy_vibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "vibrate_handheld", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 544894297, - "hash_compatibility": [ - 955504365 - ], - "arguments": [ - { - "name": "duration_ms", - "type": "int", - "meta": "int32", - "default_value": "500" - }, - { - "name": "amplitude", - "type": "float", - "meta": "float", - "default_value": "-1.0" - } - ] - }, - { - "name": "set_ignore_joypad_on_unfocused_application", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_ignoring_joypad_on_unfocused_application", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_accelerometer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_magnetometer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_gyroscope", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_joy_accelerometer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_gyroscope", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_motion_sensors_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_joy_motion_sensors_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joy_motion_sensors_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_joy_motion_sensors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "start_joy_motion_sensors_calibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "stop_joy_motion_sensors_calibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_joy_motion_sensors_calibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joy_motion_sensors_calibration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joy_motion_sensors_calibration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 64545446, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "calibration_info", - "type": "Dictionary" - } - ] - }, - { - "name": "is_joy_motion_sensors_calibrated", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_joy_motion_sensors_calibrating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "set_accelerometer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "set_magnetometer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "set_gyroscope", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "set_joy_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "has_joy_light", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_last_mouse_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_last_mouse_screen_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_mouse_button_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2512161324, - "return_value": { - "type": "bitfield::MouseButtonMask" - } - }, - { - "name": "set_mouse_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2228490894, - "arguments": [ - { - "name": "mode", - "type": "enum::Input.MouseMode" - } - ] - }, - { - "name": "get_mouse_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 965286182, - "return_value": { - "type": "enum::Input.MouseMode" - } - }, - { - "name": "warp_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "action_press", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1713091165, - "hash_compatibility": [ - 573731101 - ], - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "strength", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "action_release", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "set_default_cursor_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2124816902, - "arguments": [ - { - "name": "shape", - "type": "enum::Input.CursorShape", - "default_value": "0" - } - ] - }, - { - "name": "get_current_cursor_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3455658929, - "return_value": { - "type": "enum::Input.CursorShape" - } - }, - { - "name": "set_custom_mouse_cursor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 703945977, - "hash_compatibility": [ - 3489634142 - ], - "arguments": [ - { - "name": "image", - "type": "Resource" - }, - { - "name": "shape", - "type": "enum::Input.CursorShape", - "default_value": "0" - }, - { - "name": "hotspot", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "parse_input_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "set_use_accumulated_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_accumulated_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "flush_buffered_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_emulate_mouse_from_touch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_emulating_mouse_from_touch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_emulate_touch_from_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_emulating_touch_from_mouse", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "joy_connection_changed", - "arguments": [ - { - "name": "device", - "type": "int" - }, - { - "name": "connected", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "mouse_mode", - "setter": "set_mouse_mode", - "getter": "get_mouse_mode" - }, - { - "type": "bool", - "name": "use_accumulated_input", - "setter": "set_use_accumulated_input", - "getter": "is_using_accumulated_input" - }, - { - "type": "bool", - "name": "emulate_mouse_from_touch", - "setter": "set_emulate_mouse_from_touch", - "getter": "is_emulating_mouse_from_touch" - }, - { - "type": "bool", - "name": "emulate_touch_from_mouse", - "setter": "set_emulate_touch_from_mouse", - "getter": "is_emulating_touch_from_mouse" - }, - { - "type": "bool", - "name": "ignore_joypad_on_unfocused_application", - "setter": "set_ignore_joypad_on_unfocused_application", - "getter": "is_ignoring_joypad_on_unfocused_application" - } - ] - }, - { - "name": "InputEvent", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "constants": [ - { - "name": "DEVICE_ID_EMULATION", - "value": -1 - }, - { - "name": "DEVICE_ID_KEYBOARD", - "value": 16 - }, - { - "name": "DEVICE_ID_MOUSE", - "value": 32 - } - ], - "methods": [ - { - "name": "set_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "device", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_device", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558498928, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1631499404, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "allow_echo", - "type": "bool", - "default_value": "false" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_action_released", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558498928, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_action_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 801543509, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_canceled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_released", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_echo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "as_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_match", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1754951977, - "hash_compatibility": [ - 3392494811 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_action_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "accumulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1062211774, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "with_event", - "type": "InputEvent" - } - ] - }, - { - "name": "xformed_by", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1282766827, - "hash_compatibility": [ - 2747409789 - ], - "return_value": { - "type": "InputEvent", - "meta": "required" - }, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - }, - { - "name": "local_ofs", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "device", - "setter": "set_device", - "getter": "get_device" - } - ] - }, - { - "name": "InputEventAction", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "set_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_event_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_event_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "action", - "setter": "set_action", - "getter": "get_action" - }, - { - "type": "bool", - "name": "pressed", - "setter": "set_pressed", - "getter": "is_pressed" - }, - { - "type": "float", - "name": "strength", - "setter": "set_strength", - "getter": "get_strength" - }, - { - "type": "int", - "name": "event_index", - "setter": "set_event_index", - "getter": "get_event_index" - } - ] - }, - { - "name": "InputEventFromWindow", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_window_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_window_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - } - ], - "properties": [ - { - "type": "int", - "name": "window_id", - "setter": "set_window_id", - "getter": "get_window_id" - } - ] - }, - { - "name": "InputEventGesture", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "InputEventWithModifiers", - "api_type": "core", - "methods": [ - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - } - ] - }, - { - "name": "InputEventJoypadButton", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_button_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1466368136, - "arguments": [ - { - "name": "button_index", - "type": "enum::JoyButton" - } - ] - }, - { - "name": "get_button_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 595588182, - "return_value": { - "type": "enum::JoyButton" - } - }, - { - "name": "set_pressure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pressure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pressure", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "button_index", - "setter": "set_button_index", - "getter": "get_button_index" - }, - { - "type": "float", - "name": "pressure", - "setter": "set_pressure", - "getter": "get_pressure" - }, - { - "type": "bool", - "name": "pressed", - "setter": "set_pressed", - "getter": "is_pressed" - } - ] - }, - { - "name": "InputEventJoypadMotion", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1332685170, - "arguments": [ - { - "name": "axis", - "type": "enum::JoyAxis" - } - ] - }, - { - "name": "get_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4019121683, - "return_value": { - "type": "enum::JoyAxis" - } - }, - { - "name": "set_axis_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "axis_value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_axis_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "axis", - "setter": "set_axis", - "getter": "get_axis" - }, - { - "type": "float", - "name": "axis_value", - "setter": "set_axis_value", - "getter": "get_axis_value" - } - ] - }, - { - "name": "InputEventKey", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventWithModifiers", - "api_type": "core", - "methods": [ - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "set_keycode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 888074362, - "arguments": [ - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "get_keycode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "set_physical_keycode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 888074362, - "arguments": [ - { - "name": "physical_keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "get_physical_keycode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "set_key_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 888074362, - "arguments": [ - { - "name": "key_label", - "type": "enum::Key" - } - ] - }, - { - "name": "get_key_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "set_unicode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "unicode", - "type": "int", - "meta": "char32" - } - ] - }, - { - "name": "get_unicode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "char32" - } - }, - { - "name": "set_location", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 634453155, - "arguments": [ - { - "name": "location", - "type": "enum::KeyLocation" - } - ] - }, - { - "name": "get_location", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 211810873, - "return_value": { - "type": "enum::KeyLocation" - } - }, - { - "name": "set_echo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "echo", - "type": "bool" - } - ] - }, - { - "name": "get_keycode_with_modifiers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "get_physical_keycode_with_modifiers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "get_key_label_with_modifiers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1585896689, - "return_value": { - "type": "enum::Key" - } - }, - { - "name": "as_text_keycode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "as_text_physical_keycode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "as_text_key_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "as_text_location", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "pressed", - "setter": "set_pressed", - "getter": "is_pressed" - }, - { - "type": "int", - "name": "keycode", - "setter": "set_keycode", - "getter": "get_keycode" - }, - { - "type": "int", - "name": "physical_keycode", - "setter": "set_physical_keycode", - "getter": "get_physical_keycode" - }, - { - "type": "int", - "name": "key_label", - "setter": "set_key_label", - "getter": "get_key_label" - }, - { - "type": "int", - "name": "unicode", - "setter": "set_unicode", - "getter": "get_unicode" - }, - { - "type": "int", - "name": "location", - "setter": "set_location", - "getter": "get_location" - }, - { - "type": "bool", - "name": "echo", - "setter": "set_echo", - "getter": "is_echo" - } - ] - }, - { - "name": "InputEventMIDI", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "channel", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1064271510, - "arguments": [ - { - "name": "message", - "type": "enum::MIDIMessage" - } - ] - }, - { - "name": "get_message", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1936512097, - "return_value": { - "type": "enum::MIDIMessage" - } - }, - { - "name": "set_pitch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "pitch", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_pitch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "velocity", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_instrument", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "instrument", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_instrument", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_pressure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "pressure", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_pressure", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_controller_number", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "controller_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_controller_number", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_controller_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "controller_value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_controller_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "channel", - "setter": "set_channel", - "getter": "get_channel" - }, - { - "type": "int", - "name": "message", - "setter": "set_message", - "getter": "get_message" - }, - { - "type": "int", - "name": "pitch", - "setter": "set_pitch", - "getter": "get_pitch" - }, - { - "type": "int", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "int", - "name": "instrument", - "setter": "set_instrument", - "getter": "get_instrument" - }, - { - "type": "int", - "name": "pressure", - "setter": "set_pressure", - "getter": "get_pressure" - }, - { - "type": "int", - "name": "controller_number", - "setter": "set_controller_number", - "getter": "get_controller_number" - }, - { - "type": "int", - "name": "controller_value", - "setter": "set_controller_value", - "getter": "get_controller_value" - } - ] - }, - { - "name": "InputEventMagnifyGesture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventGesture", - "api_type": "core", - "methods": [ - { - "name": "set_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "factor", - "setter": "set_factor", - "getter": "get_factor" - } - ] - }, - { - "name": "InputEventMouse", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "InputEventWithModifiers", - "api_type": "core", - "methods": [ - { - "name": "set_button_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3950145251, - "arguments": [ - { - "name": "button_mask", - "type": "bitfield::MouseButtonMask" - } - ] - }, - { - "name": "get_button_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2512161324, - "return_value": { - "type": "bitfield::MouseButtonMask" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_global_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "global_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_global_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "int", - "name": "button_mask", - "setter": "set_button_mask", - "getter": "get_button_mask" - }, - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "Vector2", - "name": "global_position", - "setter": "set_global_position", - "getter": "get_global_position" - } - ] - }, - { - "name": "InputEventMouseButton", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventMouse", - "api_type": "core", - "methods": [ - { - "name": "set_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_button_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3624991109, - "arguments": [ - { - "name": "button_index", - "type": "enum::MouseButton" - } - ] - }, - { - "name": "get_button_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1132662608, - "return_value": { - "type": "enum::MouseButton" - } - }, - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "set_canceled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "canceled", - "type": "bool" - } - ] - }, - { - "name": "set_double_click", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "double_click", - "type": "bool" - } - ] - }, - { - "name": "is_double_click", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "factor", - "setter": "set_factor", - "getter": "get_factor" - }, - { - "type": "int", - "name": "button_index", - "setter": "set_button_index", - "getter": "get_button_index" - }, - { - "type": "bool", - "name": "canceled", - "setter": "set_canceled", - "getter": "is_canceled" - }, - { - "type": "bool", - "name": "pressed", - "setter": "set_pressed", - "getter": "is_pressed" - }, - { - "type": "bool", - "name": "double_click", - "setter": "set_double_click", - "getter": "is_double_click" - } - ] - }, - { - "name": "InputEventMouseMotion", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventMouse", - "api_type": "core", - "methods": [ - { - "name": "set_tilt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "tilt", - "type": "Vector2" - } - ] - }, - { - "name": "get_tilt", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_pressure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pressure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pressure", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pen_inverted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pen_inverted", - "type": "bool" - } - ] - }, - { - "name": "get_pen_inverted", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "relative", - "type": "Vector2" - } - ] - }, - { - "name": "get_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_screen_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "relative", - "type": "Vector2" - } - ] - }, - { - "name": "get_screen_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_screen_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_screen_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "tilt", - "setter": "set_tilt", - "getter": "get_tilt" - }, - { - "type": "float", - "name": "pressure", - "setter": "set_pressure", - "getter": "get_pressure" - }, - { - "type": "bool", - "name": "pen_inverted", - "setter": "set_pen_inverted", - "getter": "get_pen_inverted" - }, - { - "type": "Vector2", - "name": "relative", - "setter": "set_relative", - "getter": "get_relative" - }, - { - "type": "Vector2", - "name": "screen_relative", - "setter": "set_screen_relative", - "getter": "get_screen_relative" - }, - { - "type": "Vector2", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "Vector2", - "name": "screen_velocity", - "setter": "set_screen_velocity", - "getter": "get_screen_velocity" - } - ] - }, - { - "name": "InputEventPanGesture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventGesture", - "api_type": "core", - "methods": [ - { - "name": "set_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "delta", - "type": "Vector2" - } - ] - }, - { - "name": "get_delta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "delta", - "setter": "set_delta", - "getter": "get_delta" - } - ] - }, - { - "name": "InputEventScreenDrag", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventFromWindow", - "api_type": "core", - "methods": [ - { - "name": "set_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_tilt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "tilt", - "type": "Vector2" - } - ] - }, - { - "name": "get_tilt", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_pressure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pressure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pressure", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pen_inverted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pen_inverted", - "type": "bool" - } - ] - }, - { - "name": "get_pen_inverted", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "relative", - "type": "Vector2" - } - ] - }, - { - "name": "get_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_screen_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "relative", - "type": "Vector2" - } - ] - }, - { - "name": "get_screen_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_screen_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_screen_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "int", - "name": "index", - "setter": "set_index", - "getter": "get_index" - }, - { - "type": "Vector2", - "name": "tilt", - "setter": "set_tilt", - "getter": "get_tilt" - }, - { - "type": "float", - "name": "pressure", - "setter": "set_pressure", - "getter": "get_pressure" - }, - { - "type": "bool", - "name": "pen_inverted", - "setter": "set_pen_inverted", - "getter": "get_pen_inverted" - }, - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "Vector2", - "name": "relative", - "setter": "set_relative", - "getter": "get_relative" - }, - { - "type": "Vector2", - "name": "screen_relative", - "setter": "set_screen_relative", - "getter": "get_screen_relative" - }, - { - "type": "Vector2", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "Vector2", - "name": "screen_velocity", - "setter": "set_screen_velocity", - "getter": "get_screen_velocity" - } - ] - }, - { - "name": "InputEventScreenTouch", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEventFromWindow", - "api_type": "core", - "methods": [ - { - "name": "set_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "set_canceled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "canceled", - "type": "bool" - } - ] - }, - { - "name": "set_double_tap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "double_tap", - "type": "bool" - } - ] - }, - { - "name": "is_double_tap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "index", - "setter": "set_index", - "getter": "get_index" - }, - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "bool", - "name": "canceled", - "setter": "set_canceled", - "getter": "is_canceled" - }, - { - "type": "bool", - "name": "pressed", - "setter": "set_pressed", - "getter": "is_pressed" - }, - { - "type": "bool", - "name": "double_tap", - "setter": "set_double_tap", - "getter": "is_double_tap" - } - ] - }, - { - "name": "InputEventShortcut", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "InputEvent", - "api_type": "core", - "methods": [ - { - "name": "set_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 857163497, - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - } - ] - }, - { - "name": "get_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3766804753, - "return_value": { - "type": "Shortcut" - } - } - ], - "properties": [ - { - "type": "Shortcut", - "name": "shortcut", - "setter": "set_shortcut", - "getter": "get_shortcut" - } - ] - }, - { - "name": "InputEventWithModifiers", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "InputEventFromWindow", - "api_type": "core", - "methods": [ - { - "name": "set_command_or_control_autoremap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_command_or_control_autoremap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_command_or_control_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_alt_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_alt_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shift_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_shift_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ctrl_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_ctrl_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_meta_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "pressed", - "type": "bool" - } - ] - }, - { - "name": "is_meta_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_modifiers_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1258259499, - "return_value": { - "type": "bitfield::KeyModifierMask" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "command_or_control_autoremap", - "setter": "set_command_or_control_autoremap", - "getter": "is_command_or_control_autoremap" - }, - { - "type": "bool", - "name": "alt_pressed", - "setter": "set_alt_pressed", - "getter": "is_alt_pressed" - }, - { - "type": "bool", - "name": "shift_pressed", - "setter": "set_shift_pressed", - "getter": "is_shift_pressed" - }, - { - "type": "bool", - "name": "ctrl_pressed", - "setter": "set_ctrl_pressed", - "getter": "is_ctrl_pressed" - }, - { - "type": "bool", - "name": "meta_pressed", - "setter": "set_meta_pressed", - "getter": "is_meta_pressed" - } - ] - }, - { - "name": "InputMap", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "has_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_actions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "add_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1195233573, - "hash_compatibility": [ - 4100757082, - 573731101 - ], - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "deadzone", - "type": "float", - "meta": "float", - "default_value": "0.2" - } - ] - }, - { - "name": "erase_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 957595536, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "action_set_deadzone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135858297, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "deadzone", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "action_get_deadzone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391627649, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "action_add_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 518302593, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "action_has_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1185871985, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "action_erase_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 518302593, - "arguments": [ - { - "name": "action", - "type": "StringName" - }, - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "action_erase_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "action_get_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 689397652, - "return_value": { - "type": "typedarray::InputEvent" - }, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "event_is_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3193353650, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "action", - "type": "StringName" - }, - { - "name": "exact_match", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "load_from_project_settings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "project_settings_loaded" - } - ] - }, - { - "name": "InstancePlaceholder", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "get_stored_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230153369, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "with_order", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3794612210, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "replace", - "type": "bool", - "default_value": "false" - }, - { - "name": "custom_scene", - "type": "PackedScene", - "default_value": "null" - } - ] - }, - { - "name": "get_instance_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ] - }, - { - "name": "IntervalTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core" - }, - { - "name": "ItemList", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "IconMode", - "is_bitfield": false, - "values": [ - { - "name": "ICON_MODE_TOP", - "value": 0 - }, - { - "name": "ICON_MODE_LEFT", - "value": 1 - } - ] - }, - { - "name": "SelectMode", - "is_bitfield": false, - "values": [ - { - "name": "SELECT_SINGLE", - "value": 0 - }, - { - "name": "SELECT_MULTI", - "value": 1 - }, - { - "name": "SELECT_TOGGLE", - "value": 2 - } - ] - }, - { - "name": "ScrollHintMode", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_HINT_MODE_DISABLED", - "value": 0 - }, - { - "name": "SCROLL_HINT_MODE_BOTH", - "value": 1 - }, - { - "name": "SCROLL_HINT_MODE_TOP", - "value": 2 - }, - { - "name": "SCROLL_HINT_MODE_BOTTOM", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "add_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 359861678, - "hash_compatibility": [ - 4086250691 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "icon", - "type": "Texture2D", - "default_value": "null" - }, - { - "name": "selectable", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "add_icon_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4256579627, - "hash_compatibility": [ - 3332687421 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "selectable", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_item_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_item_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_item_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1707680378, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_item_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235602388, - "return_value": { - "type": "enum::Control.TextDirection" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_item_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 287402019, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "get_item_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 906302372, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon_transposed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transposed", - "type": "bool" - } - ] - }, - { - "name": "is_item_icon_transposed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1356297692, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_item_icon_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3327874267, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_item_icon_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_selectable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "selectable", - "type": "bool" - } - ] - }, - { - "name": "is_item_selectable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_item_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "get_item_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_custom_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_bg_color", - "type": "Color" - } - ] - }, - { - "name": "get_item_custom_bg_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_custom_fg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_fg_color", - "type": "Color" - } - ] - }, - { - "name": "get_item_custom_fg_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 159227807, - "hash_compatibility": [ - 1501513492 - ], - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "expand", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_item_tooltip_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_item_tooltip_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_item_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "single", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "deselect_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_selected_items", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "move_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "to_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "sort_items_by_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_fixed_column_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fixed_column_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_same_column_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_same_column_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_max_text_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "lines", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_text_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_columns", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_columns", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_select_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 928267388, - "arguments": [ - { - "name": "mode", - "type": "enum::ItemList.SelectMode" - } - ] - }, - { - "name": "get_select_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1191945842, - "return_value": { - "type": "enum::ItemList.SelectMode" - } - }, - { - "name": "set_icon_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2025053633, - "arguments": [ - { - "name": "mode", - "type": "enum::ItemList.IconMode" - } - ] - }, - { - "name": "get_icon_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3353929232, - "return_value": { - "type": "enum::ItemList.IconMode" - } - }, - { - "name": "set_fixed_icon_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_fixed_icon_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_icon_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_icon_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_allow_rmb_select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_rmb_select", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_reselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_reselect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_search", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_search", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_auto_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_auto_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_anything_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_item_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2300324924, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "exact", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "ensure_current_is_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "center_on_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3058350285, - "arguments": [ - { - "name": "center_verically", - "type": "bool", - "default_value": "true" - }, - { - "name": "center_horizontally", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_v_scroll_bar", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2630340773, - "return_value": { - "type": "VScrollBar" - } - }, - { - "name": "get_h_scroll_bar", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4004517983, - "return_value": { - "type": "HScrollBar" - } - }, - { - "name": "set_scroll_hint_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2917787337, - "arguments": [ - { - "name": "scroll_hint_mode", - "type": "enum::ItemList.ScrollHintMode" - } - ] - }, - { - "name": "get_scroll_hint_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522227939, - "return_value": { - "type": "enum::ItemList.ScrollHintMode" - } - }, - { - "name": "set_tile_scroll_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "tile_scroll_hint", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_hint_tiled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_wraparound_items", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_wraparound_items", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "force_update_list_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "item_selected", - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "empty_clicked", - "arguments": [ - { - "name": "at_position", - "type": "Vector2" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "item_clicked", - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "at_position", - "type": "Vector2" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "multi_selected", - "arguments": [ - { - "name": "index", - "type": "int" - }, - { - "name": "selected", - "type": "bool" - } - ] - }, - { - "name": "item_activated", - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "select_mode", - "setter": "set_select_mode", - "getter": "get_select_mode" - }, - { - "type": "bool", - "name": "allow_reselect", - "setter": "set_allow_reselect", - "getter": "get_allow_reselect" - }, - { - "type": "bool", - "name": "allow_rmb_select", - "setter": "set_allow_rmb_select", - "getter": "get_allow_rmb_select" - }, - { - "type": "bool", - "name": "allow_search", - "setter": "set_allow_search", - "getter": "get_allow_search" - }, - { - "type": "int", - "name": "max_text_lines", - "setter": "set_max_text_lines", - "getter": "get_max_text_lines" - }, - { - "type": "bool", - "name": "auto_width", - "setter": "set_auto_width", - "getter": "has_auto_width" - }, - { - "type": "bool", - "name": "auto_height", - "setter": "set_auto_height", - "getter": "has_auto_height" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "bool", - "name": "wraparound_items", - "setter": "set_wraparound_items", - "getter": "has_wraparound_items" - }, - { - "type": "int", - "name": "scroll_hint_mode", - "setter": "set_scroll_hint_mode", - "getter": "get_scroll_hint_mode" - }, - { - "type": "bool", - "name": "tile_scroll_hint", - "setter": "set_tile_scroll_hint", - "getter": "is_scroll_hint_tiled" - }, - { - "type": "int", - "name": "item_count", - "setter": "set_item_count", - "getter": "get_item_count" - }, - { - "type": "int", - "name": "max_columns", - "setter": "set_max_columns", - "getter": "get_max_columns" - }, - { - "type": "bool", - "name": "same_column_width", - "setter": "set_same_column_width", - "getter": "is_same_column_width" - }, - { - "type": "int", - "name": "fixed_column_width", - "setter": "set_fixed_column_width", - "getter": "get_fixed_column_width" - }, - { - "type": "int", - "name": "icon_mode", - "setter": "set_icon_mode", - "getter": "get_icon_mode" - }, - { - "type": "float", - "name": "icon_scale", - "setter": "set_icon_scale", - "getter": "get_icon_scale" - }, - { - "type": "Vector2i", - "name": "fixed_icon_size", - "setter": "set_fixed_icon_size", - "getter": "get_fixed_icon_size" - } - ] - }, - { - "name": "IterateIK3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "ChainIK3D", - "api_type": "core", - "methods": [ - { - "name": "set_max_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_iterations", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_min_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min_distance", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_min_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_delta_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_delta_limit", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_delta_limit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_deterministic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "deterministic", - "type": "bool" - } - ] - }, - { - "name": "is_deterministic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "target_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_rotation_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391134969, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::SkeletonModifier3D.RotationAxis" - } - ] - }, - { - "name": "get_joint_rotation_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3312594080, - "return_value": { - "type": "enum::SkeletonModifier3D.RotationAxis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_rotation_axis_vector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2866752138, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "axis_vector", - "type": "Vector3" - } - ] - }, - { - "name": "get_joint_rotation_axis_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1592972041, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_limitation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1194636955, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "limitation", - "type": "JointLimitation3D" - } - ] - }, - { - "name": "get_joint_limitation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 91665146, - "return_value": { - "type": "JointLimitation3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_limitation_right_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3838967147, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::SkeletonModifier3D.SecondaryDirection" - } - ] - }, - { - "name": "get_joint_limitation_right_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 623936134, - "return_value": { - "type": "enum::SkeletonModifier3D.SecondaryDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_limitation_right_axis_vector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2866752138, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "vector", - "type": "Vector3" - } - ] - }, - { - "name": "get_joint_limitation_right_axis_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1592972041, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_limitation_rotation_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4188936002, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "Quaternion" - } - ] - }, - { - "name": "get_joint_limitation_rotation_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722473700, - "return_value": { - "type": "Quaternion" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "max_iterations", - "setter": "set_max_iterations", - "getter": "get_max_iterations" - }, - { - "type": "float", - "name": "min_distance", - "setter": "set_min_distance", - "getter": "get_min_distance" - }, - { - "type": "float", - "name": "angular_delta_limit", - "setter": "set_angular_delta_limit", - "getter": "get_angular_delta_limit" - }, - { - "type": "bool", - "name": "deterministic", - "setter": "set_deterministic", - "getter": "is_deterministic" - }, - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "JNISingleton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "has_java_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "JSON", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "stringify", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 462733549, - "hash_compatibility": [ - 2656701787 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "data", - "type": "Variant" - }, - { - "name": "indent", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "sort_keys", - "type": "bool", - "default_value": "true" - }, - { - "name": "full_precision", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "parse_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 309047738, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "json_string", - "type": "String" - } - ] - }, - { - "name": "parse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 885841341, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "json_text", - "type": "String" - }, - { - "name": "keep_text", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "get_parsed_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_error_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_error_message", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "from_native", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2963479484, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "variant", - "type": "Variant" - }, - { - "name": "full_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "to_native", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2963479484, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "json", - "type": "Variant" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "properties": [ - { - "type": "Variant", - "name": "data", - "setter": "set_data", - "getter": "get_data" - } - ] - }, - { - "name": "JSONRPC", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "ErrorCode", - "is_bitfield": false, - "values": [ - { - "name": "PARSE_ERROR", - "value": -32700 - }, - { - "name": "INVALID_REQUEST", - "value": -32600 - }, - { - "name": "METHOD_NOT_FOUND", - "value": -32601 - }, - { - "name": "INVALID_PARAMS", - "value": -32602 - }, - { - "name": "INTERNAL_ERROR", - "value": -32603 - } - ] - } - ], - "methods": [ - { - "name": "set_method", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "process_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2963479484, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "action", - "type": "Variant" - }, - { - "name": "recurse", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "process_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "action", - "type": "String" - } - ] - }, - { - "name": "make_request", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3423508980, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "method", - "type": "String" - }, - { - "name": "params", - "type": "Variant" - }, - { - "name": "id", - "type": "Variant" - } - ] - }, - { - "name": "make_response", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5053918, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "result", - "type": "Variant" - }, - { - "name": "id", - "type": "Variant" - } - ] - }, - { - "name": "make_notification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2949127017, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "method", - "type": "String" - }, - { - "name": "params", - "type": "Variant" - } - ] - }, - { - "name": "make_response_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 928596297, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "code", - "type": "int", - "meta": "int32" - }, - { - "name": "message", - "type": "String" - }, - { - "name": "id", - "type": "Variant", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "JacobianIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "IterateIK3D", - "api_type": "core" - }, - { - "name": "JavaClass", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_java_class_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_java_method_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_java_parent_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 541536347, - "return_value": { - "type": "JavaClass" - } - }, - { - "name": "has_java_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "JavaClassWrapper", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "wrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1124367868, - "return_value": { - "type": "JavaClass" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3277089691, - "return_value": { - "type": "JavaObject" - } - }, - { - "name": "create_sam_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2479014754, - "return_value": { - "type": "JavaObject" - }, - "arguments": [ - { - "name": "sam_interface", - "type": "String" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "create_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2694931752, - "return_value": { - "type": "JavaObject" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "interfaces", - "type": "PackedStringArray" - } - ] - } - ] - }, - { - "name": "JavaObject", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_java_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 541536347, - "return_value": { - "type": "JavaClass" - } - }, - { - "name": "has_java_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "JavaScriptBridge", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "eval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218087648, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "code", - "type": "String" - }, - { - "name": "use_global_execution_context", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1355533281, - "return_value": { - "type": "JavaScriptObject" - }, - "arguments": [ - { - "name": "interface", - "type": "String" - } - ] - }, - { - "name": "create_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 422818440, - "return_value": { - "type": "JavaScriptObject" - }, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "is_js_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 821968997, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "javascript_object", - "type": "JavaScriptObject" - } - ] - }, - { - "name": "js_buffer_to_packed_byte_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 64409880, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "javascript_buffer", - "type": "JavaScriptObject" - } - ] - }, - { - "name": "create_object", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3093893586, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "object", - "type": "String" - } - ] - }, - { - "name": "download_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3352272093, - "hash_compatibility": [ - 4123979296 - ], - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - }, - { - "name": "name", - "type": "String" - }, - { - "name": "mime", - "type": "String", - "default_value": "\"application/octet-stream\"" - } - ] - }, - { - "name": "pwa_needs_update", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "pwa_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "force_fs_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "pwa_update_available" - } - ] - }, - { - "name": "JavaScriptObject", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "Joint2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_node_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_node_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_exclude_nodes_from_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_nodes_from_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "node_a", - "setter": "set_node_a", - "getter": "get_node_a" - }, - { - "type": "NodePath", - "name": "node_b", - "setter": "set_node_b", - "getter": "get_node_b" - }, - { - "type": "float", - "name": "bias", - "setter": "set_bias", - "getter": "get_bias" - }, - { - "type": "bool", - "name": "disable_collision", - "setter": "set_exclude_nodes_from_collision", - "getter": "get_exclude_nodes_from_collision" - } - ] - }, - { - "name": "Joint3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_node_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_node_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_solver_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_solver_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_exclude_nodes_from_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_nodes_from_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "node_a", - "setter": "set_node_a", - "getter": "get_node_a" - }, - { - "type": "NodePath", - "name": "node_b", - "setter": "set_node_b", - "getter": "get_node_b" - }, - { - "type": "int", - "name": "solver_priority", - "setter": "set_solver_priority", - "getter": "get_solver_priority" - }, - { - "type": "bool", - "name": "exclude_nodes_from_collision", - "setter": "set_exclude_nodes_from_collision", - "getter": "get_exclude_nodes_from_collision" - } - ] - }, - { - "name": "JointLimitation3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core" - }, - { - "name": "JointLimitationCone3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "JointLimitation3D", - "api_type": "core", - "methods": [ - { - "name": "set_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "angle", - "setter": "set_angle", - "getter": "get_angle" - } - ] - }, - { -<<<<<<< HEAD -======= - "name": "JoltConeTwistJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JoltJoint3D", - "api_type": "extension", - "methods": [ - { - "name": "get_swing_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_swing_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_twist_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_twist_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_swing_limit_span", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_swing_limit_span", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_twist_limit_span", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_twist_limit_span", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_swing_motor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_swing_motor_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_twist_motor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_twist_motor_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_swing_motor_target_velocity_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_swing_motor_target_velocity_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_swing_motor_target_velocity_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_swing_motor_target_velocity_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_twist_motor_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_twist_motor_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_swing_motor_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_swing_motor_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_twist_motor_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_twist_motor_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_applied_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_applied_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "swing_limit_enabled", - "setter": "set_swing_limit_enabled", - "getter": "get_swing_limit_enabled" - }, - { - "type": "float", - "name": "swing_limit_span", - "setter": "set_swing_limit_span", - "getter": "get_swing_limit_span" - }, - { - "type": "bool", - "name": "twist_limit_enabled", - "setter": "set_twist_limit_enabled", - "getter": "get_twist_limit_enabled" - }, - { - "type": "float", - "name": "twist_limit_span", - "setter": "set_twist_limit_span", - "getter": "get_twist_limit_span" - }, - { - "type": "bool", - "name": "swing_motor_enabled", - "setter": "set_swing_motor_enabled", - "getter": "get_swing_motor_enabled" - }, - { - "type": "float", - "name": "swing_motor_target_velocity_y", - "setter": "set_swing_motor_target_velocity_y", - "getter": "get_swing_motor_target_velocity_y" - }, - { - "type": "float", - "name": "swing_motor_target_velocity_z", - "setter": "set_swing_motor_target_velocity_z", - "getter": "get_swing_motor_target_velocity_z" - }, - { - "type": "float", - "name": "swing_motor_max_torque", - "setter": "set_swing_motor_max_torque", - "getter": "get_swing_motor_max_torque" - }, - { - "type": "bool", - "name": "twist_motor_enabled", - "setter": "set_twist_motor_enabled", - "getter": "get_twist_motor_enabled" - }, - { - "type": "float", - "name": "twist_motor_target_velocity", - "setter": "set_twist_motor_target_velocity", - "getter": "get_twist_motor_target_velocity" - }, - { - "type": "float", - "name": "twist_motor_max_torque", - "setter": "set_twist_motor_max_torque", - "getter": "get_twist_motor_max_torque" - } - ] - }, - { - "name": "JoltGeneric6DOFJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JoltJoint3D", - "api_type": "extension", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_LINEAR_LIMIT_UPPER", - "value": 1 - }, - { - "name": "PARAM_LINEAR_LIMIT_LOWER", - "value": 0 - }, - { - "name": "PARAM_LINEAR_LIMIT_SPRING_FREQUENCY", - "value": 101 - }, - { - "name": "PARAM_LINEAR_LIMIT_SPRING_DAMPING", - "value": 102 - }, - { - "name": "PARAM_LINEAR_MOTOR_TARGET_VELOCITY", - "value": 5 - }, - { - "name": "PARAM_LINEAR_MOTOR_MAX_FORCE", - "value": 6 - }, - { - "name": "PARAM_LINEAR_SPRING_FREQUENCY", - "value": 100 - }, - { - "name": "PARAM_LINEAR_SPRING_DAMPING", - "value": 8 - }, - { - "name": "PARAM_LINEAR_SPRING_EQUILIBRIUM_POINT", - "value": 9 - }, - { - "name": "PARAM_LINEAR_SPRING_MAX_FORCE", - "value": 104 - }, - { - "name": "PARAM_ANGULAR_LIMIT_UPPER", - "value": 11 - }, - { - "name": "PARAM_ANGULAR_LIMIT_LOWER", - "value": 10 - }, - { - "name": "PARAM_ANGULAR_MOTOR_TARGET_VELOCITY", - "value": 17 - }, - { - "name": "PARAM_ANGULAR_MOTOR_MAX_TORQUE", - "value": 18 - }, - { - "name": "PARAM_ANGULAR_SPRING_FREQUENCY", - "value": 103 - }, - { - "name": "PARAM_ANGULAR_SPRING_DAMPING", - "value": 20 - }, - { - "name": "PARAM_ANGULAR_SPRING_EQUILIBRIUM_POINT", - "value": 21 - }, - { - "name": "PARAM_ANGULAR_SPRING_MAX_TORQUE", - "value": 105 - } - ] - }, - { - "name": "Flag", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_ENABLE_LINEAR_LIMIT", - "value": 0 - }, - { - "name": "FLAG_ENABLE_LINEAR_LIMIT_SPRING", - "value": 100 - }, - { - "name": "FLAG_ENABLE_LINEAR_MOTOR", - "value": 5 - }, - { - "name": "FLAG_ENABLE_LINEAR_SPRING", - "value": 3 - }, - { - "name": "FLAG_ENABLE_ANGULAR_LIMIT", - "value": 1 - }, - { - "name": "FLAG_ENABLE_ANGULAR_MOTOR", - "value": 4 - }, - { - "name": "FLAG_ENABLE_ANGULAR_SPRING", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_param_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2014322382, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_param_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1399345975, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_param_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2014322382, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_param_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1399345975, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_param_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2014322382, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - } - ] - }, - { - "name": "set_param_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1399345975, - "arguments": [ - { - "name": "param", - "type": "enum::JoltGeneric6DOFJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_flag_x", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 217939920, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - } - ] - }, - { - "name": "set_flag_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897223728, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_flag_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 217939920, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - } - ] - }, - { - "name": "set_flag_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897223728, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_flag_z", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 217939920, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - } - ] - }, - { - "name": "set_flag_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897223728, - "arguments": [ - { - "name": "flag", - "type": "enum::JoltGeneric6DOFJoint3D.Flag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_x_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_x_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_x_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_x_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_y_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_y_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_y_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_y_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_z_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_z_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_z_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_z_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_x_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_x_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_x_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_x_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_y_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_y_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_y_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_y_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_z_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_z_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_spring_z_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_limit_spring_z_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_x_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_x_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_x_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_x_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_y_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_y_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_y_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_y_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_z_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_z_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_motor_z_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_motor_z_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_x_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_x_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_x_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_x_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_x_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_x_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_x_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_x_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_y_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_y_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_y_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_y_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_y_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_y_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_y_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_y_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_z_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_z_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_z_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_z_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_z_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_z_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_spring_z_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_linear_spring_z_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_linear_limit_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_spring_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_spring_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_spring_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_spring_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_limit_spring_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_limit_spring_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_motor_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_motor_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_motor_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_motor_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_motor_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_motor_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_spring_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_spring_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_spring_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_spring_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_linear_spring_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_linear_spring_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_limit_x_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_x_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_x_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_x_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_y_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_y_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_y_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_y_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_z_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_z_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_z_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_limit_z_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_x_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_x_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_x_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_x_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_y_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_y_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_y_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_y_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_z_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_z_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_motor_z_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_motor_z_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_x_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_x_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_x_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_x_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_x_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_x_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_x_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_x_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_y_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_y_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_y_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_y_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_y_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_y_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_y_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_y_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_z_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_z_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_z_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_z_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_z_equilibrium_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_z_equilibrium_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_spring_z_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_angular_spring_z_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_angular_limit_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_limit_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_limit_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_limit_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_limit_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_limit_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_motor_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_motor_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_motor_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_motor_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_motor_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_motor_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_spring_x_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_spring_x_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_spring_y_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_spring_y_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_angular_spring_z_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_spring_z_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_applied_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_applied_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ] - }, - { - "name": "JoltHingeJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JoltJoint3D", - "api_type": "extension", - "methods": [ - { - "name": "get_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_limit_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_spring_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_spring_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_limit_spring_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_spring_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_spring_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_spring_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_motor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_motor_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_motor_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_motor_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_motor_max_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_motor_max_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_applied_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_applied_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "limit_enabled", - "setter": "set_limit_enabled", - "getter": "get_limit_enabled" - }, - { - "type": "float", - "name": "limit_upper", - "setter": "set_limit_upper", - "getter": "get_limit_upper" - }, - { - "type": "float", - "name": "limit_lower", - "setter": "set_limit_lower", - "getter": "get_limit_lower" - }, - { - "type": "bool", - "name": "limit_spring_enabled", - "setter": "set_limit_spring_enabled", - "getter": "get_limit_spring_enabled" - }, - { - "type": "float", - "name": "limit_spring_frequency", - "setter": "set_limit_spring_frequency", - "getter": "get_limit_spring_frequency" - }, - { - "type": "float", - "name": "limit_spring_damping", - "setter": "set_limit_spring_damping", - "getter": "get_limit_spring_damping" - }, - { - "type": "bool", - "name": "motor_enabled", - "setter": "set_motor_enabled", - "getter": "get_motor_enabled" - }, - { - "type": "float", - "name": "motor_target_velocity", - "setter": "set_motor_target_velocity", - "getter": "get_motor_target_velocity" - }, - { - "type": "float", - "name": "motor_max_torque", - "setter": "set_motor_max_torque", - "getter": "get_motor_max_torque" - } - ] - }, - { - "name": "JoltJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "extension", - "methods": [ - { - "name": "get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_node_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_node_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_node_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_exclude_nodes_from_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_exclude_nodes_from_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "excluded", - "type": "bool" - } - ] - }, - { - "name": "get_solver_velocity_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_solver_velocity_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "iterations", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_solver_position_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_solver_position_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "iterations", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "node_a", - "setter": "set_node_a", - "getter": "get_node_a" - }, - { - "type": "NodePath", - "name": "node_b", - "setter": "set_node_b", - "getter": "get_node_b" - }, - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "get_enabled" - }, - { - "type": "bool", - "name": "exclude_nodes_from_collision", - "setter": "set_exclude_nodes_from_collision", - "getter": "get_exclude_nodes_from_collision" - }, - { - "type": "int", - "name": "solver_velocity_iterations", - "setter": "set_solver_velocity_iterations", - "getter": "get_solver_velocity_iterations" - }, - { - "type": "int", - "name": "solver_position_iterations", - "setter": "set_solver_position_iterations", - "getter": "get_solver_position_iterations" - } - ] - }, - { - "name": "JoltPhysicsDirectBodyState3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectBodyState3DExtension", - "api_type": "extension" - }, - { - "name": "JoltPhysicsDirectSpaceState3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectSpaceState3DExtension", - "api_type": "extension" - }, - { - "name": "JoltPhysicsServer3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsServer3DExtension", - "api_type": "extension", - "enums": [ - { - "name": "HingeJointParamJolt", - "is_bitfield": false, - "values": [ - { - "name": "HINGE_JOINT_LIMIT_SPRING_FREQUENCY", - "value": 100 - }, - { - "name": "HINGE_JOINT_LIMIT_SPRING_DAMPING", - "value": 101 - }, - { - "name": "HINGE_JOINT_MOTOR_MAX_TORQUE", - "value": 102 - } - ] - }, - { - "name": "HingeJointFlagJolt", - "is_bitfield": false, - "values": [ - { - "name": "HINGE_JOINT_FLAG_USE_LIMIT_SPRING", - "value": 100 - } - ] - }, - { - "name": "SliderJointParamJolt", - "is_bitfield": false, - "values": [ - { - "name": "SLIDER_JOINT_LIMIT_SPRING_FREQUENCY", - "value": 100 - }, - { - "name": "SLIDER_JOINT_LIMIT_SPRING_DAMPING", - "value": 101 - }, - { - "name": "SLIDER_JOINT_MOTOR_TARGET_VELOCITY", - "value": 102 - }, - { - "name": "SLIDER_JOINT_MOTOR_MAX_FORCE", - "value": 103 - } - ] - }, - { - "name": "SliderJointFlagJolt", - "is_bitfield": false, - "values": [ - { - "name": "SLIDER_JOINT_FLAG_USE_LIMIT", - "value": 100 - }, - { - "name": "SLIDER_JOINT_FLAG_USE_LIMIT_SPRING", - "value": 101 - }, - { - "name": "SLIDER_JOINT_FLAG_ENABLE_MOTOR", - "value": 102 - } - ] - }, - { - "name": "ConeTwistJointParamJolt", - "is_bitfield": false, - "values": [ - { - "name": "CONE_TWIST_JOINT_SWING_MOTOR_TARGET_VELOCITY_Y", - "value": 100 - }, - { - "name": "CONE_TWIST_JOINT_SWING_MOTOR_TARGET_VELOCITY_Z", - "value": 101 - }, - { - "name": "CONE_TWIST_JOINT_TWIST_MOTOR_TARGET_VELOCITY", - "value": 102 - }, - { - "name": "CONE_TWIST_JOINT_SWING_MOTOR_MAX_TORQUE", - "value": 103 - }, - { - "name": "CONE_TWIST_JOINT_TWIST_MOTOR_MAX_TORQUE", - "value": 104 - } - ] - }, - { - "name": "ConeTwistJointFlagJolt", - "is_bitfield": false, - "values": [ - { - "name": "CONE_TWIST_JOINT_FLAG_USE_SWING_LIMIT", - "value": 100 - }, - { - "name": "CONE_TWIST_JOINT_FLAG_USE_TWIST_LIMIT", - "value": 101 - }, - { - "name": "CONE_TWIST_JOINT_FLAG_ENABLE_SWING_MOTOR", - "value": 102 - }, - { - "name": "CONE_TWIST_JOINT_FLAG_ENABLE_TWIST_MOTOR", - "value": 103 - } - ] - }, - { - "name": "G6DOFJointAxisParamJolt", - "is_bitfield": false, - "values": [ - { - "name": "G6DOF_JOINT_LINEAR_SPRING_FREQUENCY", - "value": 100 - }, - { - "name": "G6DOF_JOINT_LINEAR_LIMIT_SPRING_FREQUENCY", - "value": 101 - }, - { - "name": "G6DOF_JOINT_LINEAR_LIMIT_SPRING_DAMPING", - "value": 102 - }, - { - "name": "G6DOF_JOINT_ANGULAR_SPRING_FREQUENCY", - "value": 103 - }, - { - "name": "G6DOF_JOINT_LINEAR_SPRING_MAX_FORCE", - "value": 104 - }, - { - "name": "G6DOF_JOINT_ANGULAR_SPRING_MAX_TORQUE", - "value": 105 - } - ] - }, - { - "name": "G6DOFJointAxisFlagJolt", - "is_bitfield": false, - "values": [ - { - "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT_SPRING", - "value": 100 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_SPRING_FREQUENCY", - "value": 101 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_SPRING_FREQUENCY", - "value": 102 - } - ] - } - ], - "methods": [ - { - "name": "dump_debug_snapshots", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "dir", - "type": "String" - } - ] - }, - { - "name": "space_dump_debug_snapshot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "dir", - "type": "String" - } - ] - }, - { - "name": "joint_get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "joint_get_solver_velocity_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_set_solver_velocity_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "joint_get_solver_position_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_set_solver_position_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "pin_joint_get_applied_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "hinge_joint_get_jolt_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1624944991, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.HingeJointParamJolt" - } - ] - }, - { - "name": "hinge_joint_set_jolt_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 227895938, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.HingeJointParamJolt" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "hinge_joint_get_jolt_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 722420856, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.HingeJointFlagJolt" - } - ] - }, - { - "name": "hinge_joint_set_jolt_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2403630344, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.HingeJointFlagJolt" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "hinge_joint_get_applied_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "hinge_joint_get_applied_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "slider_joint_get_jolt_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3938231607, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.SliderJointParamJolt" - } - ] - }, - { - "name": "slider_joint_set_jolt_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1155075291, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.SliderJointParamJolt" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "slider_joint_get_jolt_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1619680632, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.SliderJointFlagJolt" - } - ] - }, - { - "name": "slider_joint_set_jolt_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2533442803, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.SliderJointFlagJolt" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "slider_joint_get_applied_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "slider_joint_get_applied_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "cone_twist_joint_get_jolt_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4270004726, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.ConeTwistJointParamJolt" - } - ] - }, - { - "name": "cone_twist_joint_set_jolt_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3863046666, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.ConeTwistJointParamJolt" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "cone_twist_joint_get_jolt_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4167634988, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.ConeTwistJointFlagJolt" - } - ] - }, - { - "name": "cone_twist_joint_set_jolt_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2974105169, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.ConeTwistJointFlagJolt" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "cone_twist_joint_get_applied_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "cone_twist_joint_get_applied_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "generic_6dof_joint_get_jolt_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092604291, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.G6DOFJointAxisParamJolt" - } - ] - }, - { - "name": "generic_6dof_joint_set_jolt_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3862862595, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::JoltPhysicsServer3DExtension.G6DOFJointAxisParamJolt" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "generic_6dof_joint_get_jolt_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 488214665, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.G6DOFJointAxisFlagJolt" - } - ] - }, - { - "name": "generic_6dof_joint_set_jolt_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 582637940, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::JoltPhysicsServer3DExtension.G6DOFJointAxisFlagJolt" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "generic_6dof_joint_get_applied_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "generic_6dof_joint_get_applied_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655436525, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - } - ] - }, - { - "name": "JoltPinJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JoltJoint3D", - "api_type": "extension", - "methods": [ - { - "name": "get_applied_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ] - }, - { - "name": "JoltSliderJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "JoltJoint3D", - "api_type": "extension", - "methods": [ - { - "name": "get_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_limit_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_spring_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_limit_spring_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_limit_spring_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_spring_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_limit_spring_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_limit_spring_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_motor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_motor_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_motor_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_motor_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_motor_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_motor_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_applied_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_applied_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "limit_enabled", - "setter": "set_limit_enabled", - "getter": "get_limit_enabled" - }, - { - "type": "float", - "name": "limit_upper", - "setter": "set_limit_upper", - "getter": "get_limit_upper" - }, - { - "type": "float", - "name": "limit_lower", - "setter": "set_limit_lower", - "getter": "get_limit_lower" - }, - { - "type": "bool", - "name": "limit_spring_enabled", - "setter": "set_limit_spring_enabled", - "getter": "get_limit_spring_enabled" - }, - { - "type": "float", - "name": "limit_spring_frequency", - "setter": "set_limit_spring_frequency", - "getter": "get_limit_spring_frequency" - }, - { - "type": "float", - "name": "limit_spring_damping", - "setter": "set_limit_spring_damping", - "getter": "get_limit_spring_damping" - }, - { - "type": "bool", - "name": "motor_enabled", - "setter": "set_motor_enabled", - "getter": "get_motor_enabled" - }, - { - "type": "float", - "name": "motor_target_velocity", - "setter": "set_motor_target_velocity", - "getter": "get_motor_target_velocity" - }, - { - "type": "float", - "name": "motor_max_force", - "setter": "set_motor_max_force", - "getter": "get_motor_max_force" - } - ] - }, - { ->>>>>>> 2021ad7 (Phase 7: netfox + godot-jolt stack upgrade) - "name": "KinematicCollision2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_travel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_remainder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841063350, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "up_direction", - "type": "Vector2", - "default_value": "Vector2(0, -1)" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider_shape_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collider_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ] - }, - { - "name": "KinematicCollision3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_travel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_remainder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1242741860, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "up_direction", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - } - ] - }, - { - "name": "get_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2639523548, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2639523548, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1231817359, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2639523548, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_shape_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - } - ] - }, - { - "name": "Label", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_vertical_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796458609, - "arguments": [ - { - "name": "alignment", - "type": "enum::VerticalAlignment" - } - ] - }, - { - "name": "get_vertical_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274884059, - "return_value": { - "type": "enum::VerticalAlignment" - } - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_label_settings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1030653839, - "arguments": [ - { - "name": "settings", - "type": "LabelSettings" - } - ] - }, - { - "name": "get_label_settings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 826676056, - "return_value": { - "type": "LabelSettings" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_paragraph_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "paragraph_separator", - "type": "String" - } - ] - }, - { - "name": "get_paragraph_separator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "set_autowrap_trim_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2809697122, - "arguments": [ - { - "name": "autowrap_trim_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_autowrap_trim_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2340632602, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - } - }, - { - "name": "set_justification_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_justification_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_clip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_clipping_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_stops", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_tab_stops", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_ellipsis_char", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "char", - "type": "String" - } - ] - }, - { - "name": "get_ellipsis_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_uppercase", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_uppercase", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_line_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 181039630, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_total_character_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_visible_characters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible_characters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_characters_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 258789322, - "return_value": { - "type": "enum::TextServer.VisibleCharactersBehavior" - } - }, - { - "name": "set_visible_characters_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383839701, - "arguments": [ - { - "name": "behavior", - "type": "enum::TextServer.VisibleCharactersBehavior" - } - ] - }, - { - "name": "set_visible_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visible_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_lines_skipped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "lines_skipped", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_lines_skipped", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_lines_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "lines_visible", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_lines_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_character_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3327874267, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "pos", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "LabelSettings", - "name": "label_settings", - "setter": "set_label_settings", - "getter": "get_label_settings" - }, - { - "type": "int", - "name": "horizontal_alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "vertical_alignment", - "setter": "set_vertical_alignment", - "getter": "get_vertical_alignment" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "int", - "name": "autowrap_trim_flags", - "setter": "set_autowrap_trim_flags", - "getter": "get_autowrap_trim_flags" - }, - { - "type": "int", - "name": "justification_flags", - "setter": "set_justification_flags", - "getter": "get_justification_flags" - }, - { - "type": "String", - "name": "paragraph_separator", - "setter": "set_paragraph_separator", - "getter": "get_paragraph_separator" - }, - { - "type": "bool", - "name": "clip_text", - "setter": "set_clip_text", - "getter": "is_clipping_text" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "String", - "name": "ellipsis_char", - "setter": "set_ellipsis_char", - "getter": "get_ellipsis_char" - }, - { - "type": "bool", - "name": "uppercase", - "setter": "set_uppercase", - "getter": "is_uppercase" - }, - { - "type": "PackedFloat32Array", - "name": "tab_stops", - "setter": "set_tab_stops", - "getter": "get_tab_stops" - }, - { - "type": "int", - "name": "lines_skipped", - "setter": "set_lines_skipped", - "getter": "get_lines_skipped" - }, - { - "type": "int", - "name": "max_lines_visible", - "setter": "set_max_lines_visible", - "getter": "get_max_lines_visible" - }, - { - "type": "int", - "name": "visible_characters", - "setter": "set_visible_characters", - "getter": "get_visible_characters" - }, - { - "type": "int", - "name": "visible_characters_behavior", - "setter": "set_visible_characters_behavior", - "getter": "get_visible_characters_behavior" - }, - { - "type": "float", - "name": "visible_ratio", - "setter": "set_visible_ratio", - "getter": "get_visible_ratio" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "Label3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GeometryInstance3D", - "api_type": "core", - "enums": [ - { - "name": "DrawFlags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_SHADED", - "value": 0 - }, - { - "name": "FLAG_DOUBLE_SIDED", - "value": 1 - }, - { - "name": "FLAG_DISABLE_DEPTH_TEST", - "value": 2 - }, - { - "name": "FLAG_FIXED_SIZE", - "value": 3 - }, - { - "name": "FLAG_MAX", - "value": 4 - } - ] - }, - { - "name": "AlphaCutMode", - "is_bitfield": false, - "values": [ - { - "name": "ALPHA_CUT_DISABLED", - "value": 0 - }, - { - "name": "ALPHA_CUT_DISCARD", - "value": 1 - }, - { - "name": "ALPHA_CUT_OPAQUE_PREPASS", - "value": 2 - }, - { - "name": "ALPHA_CUT_HASH", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_vertical_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796458609, - "arguments": [ - { - "name": "alignment", - "type": "enum::VerticalAlignment" - } - ] - }, - { - "name": "get_vertical_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274884059, - "return_value": { - "type": "enum::VerticalAlignment" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_outline_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_outline_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1418190634, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_uppercase", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_uppercase", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_render_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_render_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outline_render_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outline_render_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "set_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "outline_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outline_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_line_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "line_spacing", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_line_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "set_autowrap_trim_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2809697122, - "arguments": [ - { - "name": "autowrap_trim_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_autowrap_trim_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2340632602, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - } - }, - { - "name": "set_justification_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_justification_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pixel_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixel_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pixel_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_draw_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1285833066, - "arguments": [ - { - "name": "flag", - "type": "enum::Label3D.DrawFlags" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_draw_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259226453, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::Label3D.DrawFlags" - } - ] - }, - { - "name": "set_billboard_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4202036497, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.BillboardMode" - } - ] - }, - { - "name": "get_billboard_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1283840139, - "return_value": { - "type": "enum::BaseMaterial3D.BillboardMode" - } - }, - { - "name": "set_alpha_cut_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2549142916, - "arguments": [ - { - "name": "mode", - "type": "enum::Label3D.AlphaCutMode" - } - ] - }, - { - "name": "get_alpha_cut_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 219468601, - "return_value": { - "type": "enum::Label3D.AlphaCutMode" - } - }, - { - "name": "set_alpha_scissor_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_scissor_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_hash_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_hash_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3212649852, - "arguments": [ - { - "name": "alpha_aa", - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - ] - }, - { - "name": "get_alpha_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2889939400, - "return_value": { - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - }, - { - "name": "set_alpha_antialiasing_edge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_antialiasing_edge", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 22904437, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289213076, - "return_value": { - "type": "enum::BaseMaterial3D.TextureFilter" - } - }, - { - "name": "generate_triangle_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3476533166, - "return_value": { - "type": "TriangleMesh" - } - } - ], - "properties": [ - { - "type": "float", - "name": "pixel_size", - "setter": "set_pixel_size", - "getter": "get_pixel_size" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "int", - "name": "billboard", - "setter": "set_billboard_mode", - "getter": "get_billboard_mode" - }, - { - "type": "bool", - "name": "shaded", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 0 - }, - { - "type": "bool", - "name": "double_sided", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 1 - }, - { - "type": "bool", - "name": "no_depth_test", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 2 - }, - { - "type": "bool", - "name": "fixed_size", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 3 - }, - { - "type": "int", - "name": "alpha_cut", - "setter": "set_alpha_cut_mode", - "getter": "get_alpha_cut_mode" - }, - { - "type": "float", - "name": "alpha_scissor_threshold", - "setter": "set_alpha_scissor_threshold", - "getter": "get_alpha_scissor_threshold" - }, - { - "type": "float", - "name": "alpha_hash_scale", - "setter": "set_alpha_hash_scale", - "getter": "get_alpha_hash_scale" - }, - { - "type": "int", - "name": "alpha_antialiasing_mode", - "setter": "set_alpha_antialiasing", - "getter": "get_alpha_antialiasing" - }, - { - "type": "float", - "name": "alpha_antialiasing_edge", - "setter": "set_alpha_antialiasing_edge", - "getter": "get_alpha_antialiasing_edge" - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "int", - "name": "render_priority", - "setter": "set_render_priority", - "getter": "get_render_priority" - }, - { - "type": "int", - "name": "outline_render_priority", - "setter": "set_outline_render_priority", - "getter": "get_outline_render_priority" - }, - { - "type": "Color", - "name": "modulate", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "Color", - "name": "outline_modulate", - "setter": "set_outline_modulate", - "getter": "get_outline_modulate" - }, - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "Font", - "name": "font", - "setter": "set_font", - "getter": "get_font" - }, - { - "type": "int", - "name": "font_size", - "setter": "set_font_size", - "getter": "get_font_size" - }, - { - "type": "int", - "name": "outline_size", - "setter": "set_outline_size", - "getter": "get_outline_size" - }, - { - "type": "int", - "name": "horizontal_alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "vertical_alignment", - "setter": "set_vertical_alignment", - "getter": "get_vertical_alignment" - }, - { - "type": "bool", - "name": "uppercase", - "setter": "set_uppercase", - "getter": "is_uppercase" - }, - { - "type": "float", - "name": "line_spacing", - "setter": "set_line_spacing", - "getter": "get_line_spacing" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "int", - "name": "autowrap_trim_flags", - "setter": "set_autowrap_trim_flags", - "getter": "get_autowrap_trim_flags" - }, - { - "type": "int", - "name": "justification_flags", - "setter": "set_justification_flags", - "getter": "get_justification_flags" - }, - { - "type": "float", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "LabelSettings", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_line_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "spacing", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_line_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_paragraph_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "spacing", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_paragraph_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "set_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_font_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_font_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outline_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outline_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_outline_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_shadow_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_shadow_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_shadow_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_shadow_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_shadow_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_shadow_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_stacked_outline_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stacked_outline_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_stacked_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_stacked_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_stacked_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stacked_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stacked_outline_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stacked_outline_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_stacked_outline_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stacked_shadow_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stacked_shadow_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_stacked_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_stacked_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_stacked_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stacked_shadow_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_stacked_shadow_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stacked_shadow_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_stacked_shadow_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stacked_shadow_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stacked_shadow_outline_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "line_spacing", - "setter": "set_line_spacing", - "getter": "get_line_spacing" - }, - { - "type": "float", - "name": "paragraph_spacing", - "setter": "set_paragraph_spacing", - "getter": "get_paragraph_spacing" - }, - { - "type": "Font", - "name": "font", - "setter": "set_font", - "getter": "get_font" - }, - { - "type": "int", - "name": "font_size", - "setter": "set_font_size", - "getter": "get_font_size" - }, - { - "type": "Color", - "name": "font_color", - "setter": "set_font_color", - "getter": "get_font_color" - }, - { - "type": "int", - "name": "outline_size", - "setter": "set_outline_size", - "getter": "get_outline_size" - }, - { - "type": "Color", - "name": "outline_color", - "setter": "set_outline_color", - "getter": "get_outline_color" - }, - { - "type": "int", - "name": "shadow_size", - "setter": "set_shadow_size", - "getter": "get_shadow_size" - }, - { - "type": "Color", - "name": "shadow_color", - "setter": "set_shadow_color", - "getter": "get_shadow_color" - }, - { - "type": "Vector2", - "name": "shadow_offset", - "setter": "set_shadow_offset", - "getter": "get_shadow_offset" - }, - { - "type": "int", - "name": "stacked_outline_count", - "setter": "set_stacked_outline_count", - "getter": "get_stacked_outline_count" - }, - { - "type": "int", - "name": "stacked_shadow_count", - "setter": "set_stacked_shadow_count", - "getter": "get_stacked_shadow_count" - } - ] - }, - { - "name": "Light2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "ShadowFilter", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_FILTER_NONE", - "value": 0 - }, - { - "name": "SHADOW_FILTER_PCF5", - "value": 1 - }, - { - "name": "SHADOW_FILTER_PCF13", - "value": 2 - } - ] - }, - { - "name": "BlendMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_MODE_ADD", - "value": 0 - }, - { - "name": "BLEND_MODE_SUB", - "value": 1 - }, - { - "name": "BLEND_MODE_MIX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_editor_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "editor_only", - "type": "bool" - } - ] - }, - { - "name": "is_editor_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_z_range_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "z", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_z_range_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_z_range_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "z", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_z_range_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_layer_range_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_layer_range_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_layer_range_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_layer_range_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_item_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "item_cull_mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_item_shadow_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "item_shadow_cull_mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_shadow_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_shadow_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_shadow_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shadow_smooth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "smooth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_shadow_smooth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_shadow_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3209356555, - "arguments": [ - { - "name": "filter", - "type": "enum::Light2D.ShadowFilter" - } - ] - }, - { - "name": "get_shadow_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1973619177, - "return_value": { - "type": "enum::Light2D.ShadowFilter" - } - }, - { - "name": "set_shadow_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "shadow_color", - "type": "Color" - } - ] - }, - { - "name": "get_shadow_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2916638796, - "arguments": [ - { - "name": "mode", - "type": "enum::Light2D.BlendMode" - } - ] - }, - { - "name": "get_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 936255250, - "return_value": { - "type": "enum::Light2D.BlendMode" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "editor_only", - "setter": "set_editor_only", - "getter": "is_editor_only" - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "float", - "name": "energy", - "setter": "set_energy", - "getter": "get_energy" - }, - { - "type": "int", - "name": "blend_mode", - "setter": "set_blend_mode", - "getter": "get_blend_mode" - }, - { - "type": "int", - "name": "range_z_min", - "setter": "set_z_range_min", - "getter": "get_z_range_min" - }, - { - "type": "int", - "name": "range_z_max", - "setter": "set_z_range_max", - "getter": "get_z_range_max" - }, - { - "type": "int", - "name": "range_layer_min", - "setter": "set_layer_range_min", - "getter": "get_layer_range_min" - }, - { - "type": "int", - "name": "range_layer_max", - "setter": "set_layer_range_max", - "getter": "get_layer_range_max" - }, - { - "type": "int", - "name": "range_item_cull_mask", - "setter": "set_item_cull_mask", - "getter": "get_item_cull_mask" - }, - { - "type": "bool", - "name": "shadow_enabled", - "setter": "set_shadow_enabled", - "getter": "is_shadow_enabled" - }, - { - "type": "Color", - "name": "shadow_color", - "setter": "set_shadow_color", - "getter": "get_shadow_color" - }, - { - "type": "int", - "name": "shadow_filter", - "setter": "set_shadow_filter", - "getter": "get_shadow_filter" - }, - { - "type": "float", - "name": "shadow_filter_smooth", - "setter": "set_shadow_smooth", - "getter": "get_shadow_smooth" - }, - { - "type": "int", - "name": "shadow_item_cull_mask", - "setter": "set_item_shadow_cull_mask", - "getter": "get_item_shadow_cull_mask" - } - ] - }, - { - "name": "Light3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_ENERGY", - "value": 0 - }, - { - "name": "PARAM_INDIRECT_ENERGY", - "value": 1 - }, - { - "name": "PARAM_VOLUMETRIC_FOG_ENERGY", - "value": 2 - }, - { - "name": "PARAM_SPECULAR", - "value": 3 - }, - { - "name": "PARAM_RANGE", - "value": 4 - }, - { - "name": "PARAM_SIZE", - "value": 5 - }, - { - "name": "PARAM_ATTENUATION", - "value": 6 - }, - { - "name": "PARAM_SPOT_ANGLE", - "value": 7 - }, - { - "name": "PARAM_SPOT_ATTENUATION", - "value": 8 - }, - { - "name": "PARAM_SHADOW_MAX_DISTANCE", - "value": 9 - }, - { - "name": "PARAM_SHADOW_SPLIT_1_OFFSET", - "value": 10 - }, - { - "name": "PARAM_SHADOW_SPLIT_2_OFFSET", - "value": 11 - }, - { - "name": "PARAM_SHADOW_SPLIT_3_OFFSET", - "value": 12 - }, - { - "name": "PARAM_SHADOW_FADE_START", - "value": 13 - }, - { - "name": "PARAM_SHADOW_NORMAL_BIAS", - "value": 14 - }, - { - "name": "PARAM_SHADOW_BIAS", - "value": 15 - }, - { - "name": "PARAM_SHADOW_PANCAKE_SIZE", - "value": 16 - }, - { - "name": "PARAM_SHADOW_OPACITY", - "value": 17 - }, - { - "name": "PARAM_SHADOW_BLUR", - "value": 18 - }, - { - "name": "PARAM_TRANSMITTANCE_BIAS", - "value": 19 - }, - { - "name": "PARAM_INTENSITY", - "value": 20 - }, - { - "name": "PARAM_MAX", - "value": 21 - } - ] - }, - { - "name": "BakeMode", - "is_bitfield": false, - "values": [ - { - "name": "BAKE_DISABLED", - "value": 0 - }, - { - "name": "BAKE_STATIC", - "value": 1 - }, - { - "name": "BAKE_DYNAMIC", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_editor_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "editor_only", - "type": "bool" - } - ] - }, - { - "name": "is_editor_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1722734213, - "arguments": [ - { - "name": "param", - "type": "enum::Light3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1844084987, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::Light3D.Param" - } - ] - }, - { - "name": "set_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "has_shadow", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_negative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_negative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "cull_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_enable_distance_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_distance_fade_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_distance_fade_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_distance_fade_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_shadow", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_distance_fade_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance_fade_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_shadow_reverse_cull_face", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_shadow_reverse_cull_face", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shadow_caster_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "caster_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_shadow_caster_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_bake_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 37739303, - "arguments": [ - { - "name": "bake_mode", - "type": "enum::Light3D.BakeMode" - } - ] - }, - { - "name": "get_bake_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 371737608, - "return_value": { - "type": "enum::Light3D.BakeMode" - } - }, - { - "name": "set_projector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "projector", - "type": "Texture2D" - } - ] - }, - { - "name": "get_projector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_temperature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "temperature", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_temperature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_correlated_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "float", - "name": "light_intensity_lumens", - "setter": "set_param", - "getter": "get_param", - "index": 20 - }, - { - "type": "float", - "name": "light_intensity_lux", - "setter": "set_param", - "getter": "get_param", - "index": 20 - }, - { - "type": "float", - "name": "light_temperature", - "setter": "set_temperature", - "getter": "get_temperature" - }, - { - "type": "Color", - "name": "light_color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "float", - "name": "light_energy", - "setter": "set_param", - "getter": "get_param", - "index": 0 - }, - { - "type": "float", - "name": "light_indirect_energy", - "setter": "set_param", - "getter": "get_param", - "index": 1 - }, - { - "type": "float", - "name": "light_volumetric_fog_energy", - "setter": "set_param", - "getter": "get_param", - "index": 2 - }, - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "light_projector", - "setter": "set_projector", - "getter": "get_projector" - }, - { - "type": "float", - "name": "light_size", - "setter": "set_param", - "getter": "get_param", - "index": 5 - }, - { - "type": "float", - "name": "light_angular_distance", - "setter": "set_param", - "getter": "get_param", - "index": 5 - }, - { - "type": "bool", - "name": "light_negative", - "setter": "set_negative", - "getter": "is_negative" - }, - { - "type": "float", - "name": "light_specular", - "setter": "set_param", - "getter": "get_param", - "index": 3 - }, - { - "type": "int", - "name": "light_bake_mode", - "setter": "set_bake_mode", - "getter": "get_bake_mode" - }, - { - "type": "int", - "name": "light_cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - }, - { - "type": "bool", - "name": "shadow_enabled", - "setter": "set_shadow", - "getter": "has_shadow" - }, - { - "type": "float", - "name": "shadow_bias", - "setter": "set_param", - "getter": "get_param", - "index": 15 - }, - { - "type": "float", - "name": "shadow_normal_bias", - "setter": "set_param", - "getter": "get_param", - "index": 14 - }, - { - "type": "bool", - "name": "shadow_reverse_cull_face", - "setter": "set_shadow_reverse_cull_face", - "getter": "get_shadow_reverse_cull_face" - }, - { - "type": "float", - "name": "shadow_transmittance_bias", - "setter": "set_param", - "getter": "get_param", - "index": 19 - }, - { - "type": "float", - "name": "shadow_opacity", - "setter": "set_param", - "getter": "get_param", - "index": 17 - }, - { - "type": "float", - "name": "shadow_blur", - "setter": "set_param", - "getter": "get_param", - "index": 18 - }, - { - "type": "int", - "name": "shadow_caster_mask", - "setter": "set_shadow_caster_mask", - "getter": "get_shadow_caster_mask" - }, - { - "type": "bool", - "name": "distance_fade_enabled", - "setter": "set_enable_distance_fade", - "getter": "is_distance_fade_enabled" - }, - { - "type": "float", - "name": "distance_fade_begin", - "setter": "set_distance_fade_begin", - "getter": "get_distance_fade_begin" - }, - { - "type": "float", - "name": "distance_fade_shadow", - "setter": "set_distance_fade_shadow", - "getter": "get_distance_fade_shadow" - }, - { - "type": "float", - "name": "distance_fade_length", - "setter": "set_distance_fade_length", - "getter": "get_distance_fade_length" - }, - { - "type": "bool", - "name": "editor_only", - "setter": "set_editor_only", - "getter": "is_editor_only" - } - ] - }, - { - "name": "LightOccluder2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_occluder_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3258315893, - "arguments": [ - { - "name": "polygon", - "type": "OccluderPolygon2D" - } - ] - }, - { - "name": "get_occluder_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3962317075, - "return_value": { - "type": "OccluderPolygon2D" - } - }, - { - "name": "set_occluder_light_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_occluder_light_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_as_sdf_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_set_as_sdf_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "OccluderPolygon2D", - "name": "occluder", - "setter": "set_occluder_polygon", - "getter": "get_occluder_polygon" - }, - { - "type": "bool", - "name": "sdf_collision", - "setter": "set_as_sdf_collision", - "getter": "is_set_as_sdf_collision" - }, - { - "type": "int", - "name": "occluder_light_mask", - "setter": "set_occluder_light_mask", - "getter": "get_occluder_light_mask" - } - ] - }, - { - "name": "LightmapGI", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "BakeQuality", - "is_bitfield": false, - "values": [ - { - "name": "BAKE_QUALITY_LOW", - "value": 0 - }, - { - "name": "BAKE_QUALITY_MEDIUM", - "value": 1 - }, - { - "name": "BAKE_QUALITY_HIGH", - "value": 2 - }, - { - "name": "BAKE_QUALITY_ULTRA", - "value": 3 - } - ] - }, - { - "name": "GenerateProbes", - "is_bitfield": false, - "values": [ - { - "name": "GENERATE_PROBES_DISABLED", - "value": 0 - }, - { - "name": "GENERATE_PROBES_SUBDIV_4", - "value": 1 - }, - { - "name": "GENERATE_PROBES_SUBDIV_8", - "value": 2 - }, - { - "name": "GENERATE_PROBES_SUBDIV_16", - "value": 3 - }, - { - "name": "GENERATE_PROBES_SUBDIV_32", - "value": 4 - } - ] - }, - { - "name": "BakeError", - "is_bitfield": false, - "values": [ - { - "name": "BAKE_ERROR_OK", - "value": 0 - }, - { - "name": "BAKE_ERROR_NO_SCENE_ROOT", - "value": 1 - }, - { - "name": "BAKE_ERROR_FOREIGN_DATA", - "value": 2 - }, - { - "name": "BAKE_ERROR_NO_LIGHTMAPPER", - "value": 3 - }, - { - "name": "BAKE_ERROR_NO_SAVE_PATH", - "value": 4 - }, - { - "name": "BAKE_ERROR_NO_MESHES", - "value": 5 - }, - { - "name": "BAKE_ERROR_MESHES_INVALID", - "value": 6 - }, - { - "name": "BAKE_ERROR_CANT_CREATE_IMAGE", - "value": 7 - }, - { - "name": "BAKE_ERROR_USER_ABORTED", - "value": 8 - }, - { - "name": "BAKE_ERROR_TEXTURE_SIZE_TOO_SMALL", - "value": 9 - }, - { - "name": "BAKE_ERROR_LIGHTMAP_TOO_SMALL", - "value": 10 - }, - { - "name": "BAKE_ERROR_ATLAS_TOO_SMALL", - "value": 11 - } - ] - }, - { - "name": "EnvironmentMode", - "is_bitfield": false, - "values": [ - { - "name": "ENVIRONMENT_MODE_DISABLED", - "value": 0 - }, - { - "name": "ENVIRONMENT_MODE_SCENE", - "value": 1 - }, - { - "name": "ENVIRONMENT_MODE_CUSTOM_SKY", - "value": 2 - }, - { - "name": "ENVIRONMENT_MODE_CUSTOM_COLOR", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_light_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1790597277, - "arguments": [ - { - "name": "data", - "type": "LightmapGIData" - } - ] - }, - { - "name": "get_light_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 290354153, - "return_value": { - "type": "LightmapGIData" - } - }, - { - "name": "set_bake_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1192215803, - "arguments": [ - { - "name": "bake_quality", - "type": "enum::LightmapGI.BakeQuality" - } - ] - }, - { - "name": "get_bake_quality", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 688832735, - "return_value": { - "type": "enum::LightmapGI.BakeQuality" - } - }, - { - "name": "set_bounces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bounces", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bounces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_bounce_indirect_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bounce_indirect_energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bounce_indirect_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_generate_probes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 549981046, - "arguments": [ - { - "name": "subdivision", - "type": "enum::LightmapGI.GenerateProbes" - } - ] - }, - { - "name": "get_generate_probes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3930596226, - "return_value": { - "type": "enum::LightmapGI.GenerateProbes" - } - }, - { - "name": "set_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_environment_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2282650285, - "arguments": [ - { - "name": "mode", - "type": "enum::LightmapGI.EnvironmentMode" - } - ] - }, - { - "name": "get_environment_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4128646479, - "return_value": { - "type": "enum::LightmapGI.EnvironmentMode" - } - }, - { - "name": "set_environment_custom_sky", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3336722921, - "arguments": [ - { - "name": "sky", - "type": "Sky" - } - ] - }, - { - "name": "get_environment_custom_sky", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1177136966, - "return_value": { - "type": "Sky" - } - }, - { - "name": "set_environment_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_environment_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_environment_custom_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_environment_custom_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texel_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "texel_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texel_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_texture_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_texture_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_texture_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_supersampling_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_supersampling_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_supersampling_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_supersampling_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_denoiser", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_denoiser", - "type": "bool" - } - ] - }, - { - "name": "is_using_denoiser", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_denoiser_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "denoiser_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_denoiser_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_denoiser_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "denoiser_range", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_denoiser_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_interior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_directional", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "directional", - "type": "bool" - } - ] - }, - { - "name": "is_directional", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shadowmask_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3451066572, - "arguments": [ - { - "name": "mode", - "type": "enum::LightmapGIData.ShadowmaskMode" - } - ] - }, - { - "name": "get_shadowmask_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 785478560, - "return_value": { - "type": "enum::LightmapGIData.ShadowmaskMode" - } - }, - { - "name": "set_use_texture_for_bounces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_texture_for_bounces", - "type": "bool" - } - ] - }, - { - "name": "is_using_texture_for_bounces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817810567, - "arguments": [ - { - "name": "camera_attributes", - "type": "CameraAttributes" - } - ] - }, - { - "name": "get_camera_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3921283215, - "return_value": { - "type": "CameraAttributes" - } - } - ], - "properties": [ - { - "type": "int", - "name": "quality", - "setter": "set_bake_quality", - "getter": "get_bake_quality" - }, - { - "type": "bool", - "name": "supersampling", - "setter": "set_supersampling_enabled", - "getter": "is_supersampling_enabled" - }, - { - "type": "float", - "name": "supersampling_factor", - "setter": "set_supersampling_factor", - "getter": "get_supersampling_factor" - }, - { - "type": "int", - "name": "bounces", - "setter": "set_bounces", - "getter": "get_bounces" - }, - { - "type": "float", - "name": "bounce_indirect_energy", - "setter": "set_bounce_indirect_energy", - "getter": "get_bounce_indirect_energy" - }, - { - "type": "bool", - "name": "directional", - "setter": "set_directional", - "getter": "is_directional" - }, - { - "type": "int", - "name": "shadowmask_mode", - "setter": "set_shadowmask_mode", - "getter": "get_shadowmask_mode" - }, - { - "type": "bool", - "name": "use_texture_for_bounces", - "setter": "set_use_texture_for_bounces", - "getter": "is_using_texture_for_bounces" - }, - { - "type": "bool", - "name": "interior", - "setter": "set_interior", - "getter": "is_interior" - }, - { - "type": "bool", - "name": "use_denoiser", - "setter": "set_use_denoiser", - "getter": "is_using_denoiser" - }, - { - "type": "float", - "name": "denoiser_strength", - "setter": "set_denoiser_strength", - "getter": "get_denoiser_strength" - }, - { - "type": "int", - "name": "denoiser_range", - "setter": "set_denoiser_range", - "getter": "get_denoiser_range" - }, - { - "type": "float", - "name": "bias", - "setter": "set_bias", - "getter": "get_bias" - }, - { - "type": "float", - "name": "texel_scale", - "setter": "set_texel_scale", - "getter": "get_texel_scale" - }, - { - "type": "int", - "name": "max_texture_size", - "setter": "set_max_texture_size", - "getter": "get_max_texture_size" - }, - { - "type": "int", - "name": "environment_mode", - "setter": "set_environment_mode", - "getter": "get_environment_mode" - }, - { - "type": "Sky", - "name": "environment_custom_sky", - "setter": "set_environment_custom_sky", - "getter": "get_environment_custom_sky" - }, - { - "type": "Color", - "name": "environment_custom_color", - "setter": "set_environment_custom_color", - "getter": "get_environment_custom_color" - }, - { - "type": "float", - "name": "environment_custom_energy", - "setter": "set_environment_custom_energy", - "getter": "get_environment_custom_energy" - }, - { - "type": "CameraAttributesPractical,CameraAttributesPhysical", - "name": "camera_attributes", - "setter": "set_camera_attributes", - "getter": "get_camera_attributes" - }, - { - "type": "int", - "name": "generate_probes_subdiv", - "setter": "set_generate_probes", - "getter": "get_generate_probes" - }, - { - "type": "LightmapGIData", - "name": "light_data", - "setter": "set_light_data", - "getter": "get_light_data" - } - ] - }, - { - "name": "LightmapGIData", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "ShadowmaskMode", - "is_bitfield": false, - "values": [ - { - "name": "SHADOWMASK_MODE_NONE", - "value": 0 - }, - { - "name": "SHADOWMASK_MODE_REPLACE", - "value": 1 - }, - { - "name": "SHADOWMASK_MODE_OVERLAY", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_lightmap_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "light_textures", - "type": "typedarray::TextureLayered" - } - ] - }, - { - "name": "get_lightmap_textures", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::TextureLayered" - } - }, - { - "name": "set_shadowmask_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "shadowmask_textures", - "type": "typedarray::TextureLayered" - } - ] - }, - { - "name": "get_shadowmask_textures", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::TextureLayered" - } - }, - { - "name": "set_uses_spherical_harmonics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "uses_spherical_harmonics", - "type": "bool" - } - ] - }, - { - "name": "is_using_spherical_harmonics", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_user", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4272570515, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "uv_scale", - "type": "Rect2" - }, - { - "name": "slice_index", - "type": "int", - "meta": "int32" - }, - { - "name": "sub_instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_user_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_user_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "user_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_users", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_light_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1278366092, - "arguments": [ - { - "name": "light_texture", - "type": "TextureLayered" - } - ] - }, - { - "name": "get_light_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3984243839, - "return_value": { - "type": "TextureLayered" - } - } - ], - "properties": [ - { - "type": "typedarray::TextureLayered", - "name": "lightmap_textures", - "setter": "set_lightmap_textures", - "getter": "get_lightmap_textures" - }, - { - "type": "typedarray::TextureLayered", - "name": "shadowmask_textures", - "setter": "set_shadowmask_textures", - "getter": "get_shadowmask_textures" - }, - { - "type": "bool", - "name": "uses_spherical_harmonics", - "setter": "set_uses_spherical_harmonics", - "getter": "is_using_spherical_harmonics" - }, - { - "type": "Array", - "name": "user_data", - "setter": "_set_user_data", - "getter": "_get_user_data" - }, - { - "type": "Dictionary", - "name": "probe_data", - "setter": "_set_probe_data", - "getter": "_get_probe_data" - }, - { - "type": "TextureLayered", - "name": "light_texture", - "setter": "set_light_texture", - "getter": "get_light_texture" - }, - { - "type": "Array", - "name": "light_textures", - "setter": "_set_light_textures_data", - "getter": "_get_light_textures_data" - } - ] - }, - { - "name": "LightmapProbe", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core" - }, - { - "name": "Lightmapper", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "LightmapperRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Lightmapper", - "api_type": "core" - }, - { - "name": "LimitAngularVelocityModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_root_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_root_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_end_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_end_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_chain_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_chain_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_chains", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_max_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_velocity", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_max_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "exclude", - "type": "bool" - } - ] - }, - { - "name": "is_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "float", - "name": "max_angular_velocity", - "setter": "set_max_angular_velocity", - "getter": "get_max_angular_velocity" - }, - { - "type": "bool", - "name": "exclude", - "setter": "set_exclude", - "getter": "is_exclude" - }, - { - "type": "int", - "name": "chain_count", - "setter": "set_chain_count", - "getter": "get_chain_count" - }, - { - "type": "int", - "name": "joint_count", - "getter": "_get_joint_count" - } - ] - }, - { - "name": "Line2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "LineJointMode", - "is_bitfield": false, - "values": [ - { - "name": "LINE_JOINT_SHARP", - "value": 0 - }, - { - "name": "LINE_JOINT_BEVEL", - "value": 1 - }, - { - "name": "LINE_JOINT_ROUND", - "value": 2 - } - ] - }, - { - "name": "LineCapMode", - "is_bitfield": false, - "values": [ - { - "name": "LINE_CAP_NONE", - "value": 0 - }, - { - "name": "LINE_CAP_BOX", - "value": 1 - }, - { - "name": "LINE_CAP_ROUND", - "value": 2 - } - ] - }, - { - "name": "LineTextureMode", - "is_bitfield": false, - "values": [ - { - "name": "LINE_TEXTURE_NONE", - "value": 0 - }, - { - "name": "LINE_TEXTURE_TILE", - "value": 1 - }, - { - "name": "LINE_TEXTURE_STRETCH", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_point_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_point_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2654014372, - "hash_compatibility": [ - 468506575 - ], - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_closed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "closed", - "type": "bool" - } - ] - }, - { - "name": "is_closed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_default_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_default_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_gradient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "color", - "type": "Gradient" - } - ] - }, - { - "name": "get_gradient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1952559516, - "arguments": [ - { - "name": "mode", - "type": "enum::Line2D.LineTextureMode" - } - ] - }, - { - "name": "get_texture_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2341040722, - "return_value": { - "type": "enum::Line2D.LineTextureMode" - } - }, - { - "name": "set_joint_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 604292979, - "arguments": [ - { - "name": "mode", - "type": "enum::Line2D.LineJointMode" - } - ] - }, - { - "name": "get_joint_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546544037, - "return_value": { - "type": "enum::Line2D.LineJointMode" - } - }, - { - "name": "set_begin_cap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1669024546, - "arguments": [ - { - "name": "mode", - "type": "enum::Line2D.LineCapMode" - } - ] - }, - { - "name": "get_begin_cap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1107511441, - "return_value": { - "type": "enum::Line2D.LineCapMode" - } - }, - { - "name": "set_end_cap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1669024546, - "arguments": [ - { - "name": "mode", - "type": "enum::Line2D.LineCapMode" - } - ] - }, - { - "name": "get_end_cap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1107511441, - "return_value": { - "type": "enum::Line2D.LineCapMode" - } - }, - { - "name": "set_sharp_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "limit", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sharp_limit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_round_precision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "precision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_round_precision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_antialiased", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "antialiased", - "type": "bool" - } - ] - }, - { - "name": "get_antialiased", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "points", - "setter": "set_points", - "getter": "get_points" - }, - { - "type": "bool", - "name": "closed", - "setter": "set_closed", - "getter": "is_closed" - }, - { - "type": "float", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "Curve", - "name": "width_curve", - "setter": "set_curve", - "getter": "get_curve" - }, - { - "type": "Color", - "name": "default_color", - "setter": "set_default_color", - "getter": "get_default_color" - }, - { - "type": "Gradient", - "name": "gradient", - "setter": "set_gradient", - "getter": "get_gradient" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "int", - "name": "texture_mode", - "setter": "set_texture_mode", - "getter": "get_texture_mode" - }, - { - "type": "int", - "name": "joint_mode", - "setter": "set_joint_mode", - "getter": "get_joint_mode" - }, - { - "type": "int", - "name": "begin_cap_mode", - "setter": "set_begin_cap_mode", - "getter": "get_begin_cap_mode" - }, - { - "type": "int", - "name": "end_cap_mode", - "setter": "set_end_cap_mode", - "getter": "get_end_cap_mode" - }, - { - "type": "float", - "name": "sharp_limit", - "setter": "set_sharp_limit", - "getter": "get_sharp_limit" - }, - { - "type": "int", - "name": "round_precision", - "setter": "set_round_precision", - "getter": "get_round_precision" - }, - { - "type": "bool", - "name": "antialiased", - "setter": "set_antialiased", - "getter": "get_antialiased" - } - ] - }, - { - "name": "LineEdit", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "MenuItems", - "is_bitfield": false, - "values": [ - { - "name": "MENU_CUT", - "value": 0 - }, - { - "name": "MENU_COPY", - "value": 1 - }, - { - "name": "MENU_PASTE", - "value": 2 - }, - { - "name": "MENU_CLEAR", - "value": 3 - }, - { - "name": "MENU_SELECT_ALL", - "value": 4 - }, - { - "name": "MENU_UNDO", - "value": 5 - }, - { - "name": "MENU_REDO", - "value": 6 - }, - { - "name": "MENU_SUBMENU_TEXT_DIR", - "value": 7 - }, - { - "name": "MENU_DIR_INHERITED", - "value": 8 - }, - { - "name": "MENU_DIR_AUTO", - "value": 9 - }, - { - "name": "MENU_DIR_LTR", - "value": 10 - }, - { - "name": "MENU_DIR_RTL", - "value": 11 - }, - { - "name": "MENU_DISPLAY_UCC", - "value": 12 - }, - { - "name": "MENU_SUBMENU_INSERT_UCC", - "value": 13 - }, - { - "name": "MENU_INSERT_LRM", - "value": 14 - }, - { - "name": "MENU_INSERT_RLM", - "value": 15 - }, - { - "name": "MENU_INSERT_LRE", - "value": 16 - }, - { - "name": "MENU_INSERT_RLE", - "value": 17 - }, - { - "name": "MENU_INSERT_LRO", - "value": 18 - }, - { - "name": "MENU_INSERT_RLO", - "value": 19 - }, - { - "name": "MENU_INSERT_PDF", - "value": 20 - }, - { - "name": "MENU_INSERT_ALM", - "value": 21 - }, - { - "name": "MENU_INSERT_LRI", - "value": 22 - }, - { - "name": "MENU_INSERT_RLI", - "value": 23 - }, - { - "name": "MENU_INSERT_FSI", - "value": 24 - }, - { - "name": "MENU_INSERT_PDI", - "value": 25 - }, - { - "name": "MENU_INSERT_ZWJ", - "value": 26 - }, - { - "name": "MENU_INSERT_ZWNJ", - "value": 27 - }, - { - "name": "MENU_INSERT_WJ", - "value": 28 - }, - { - "name": "MENU_INSERT_SHY", - "value": 29 - }, - { - "name": "MENU_EMOJI_AND_SYMBOL", - "value": 30 - }, - { - "name": "MENU_MAX", - "value": 31 - } - ] - }, - { - "name": "VirtualKeyboardType", - "is_bitfield": false, - "values": [ - { - "name": "KEYBOARD_TYPE_DEFAULT", - "value": 0 - }, - { - "name": "KEYBOARD_TYPE_MULTILINE", - "value": 1 - }, - { - "name": "KEYBOARD_TYPE_NUMBER", - "value": 2 - }, - { - "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", - "value": 3 - }, - { - "name": "KEYBOARD_TYPE_PHONE", - "value": 4 - }, - { - "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", - "value": 5 - }, - { - "name": "KEYBOARD_TYPE_PASSWORD", - "value": 6 - }, - { - "name": "KEYBOARD_TYPE_URL", - "value": 7 - } - ] - }, - { - "name": "ExpandMode", - "is_bitfield": false, - "values": [ - { - "name": "EXPAND_MODE_ORIGINAL_SIZE", - "value": 0 - }, - { - "name": "EXPAND_MODE_FIT_TO_TEXT", - "value": 1 - }, - { - "name": "EXPAND_MODE_FIT_TO_LINE_EDIT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "has_ime_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "cancel_ime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "apply_ime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "hide_focus", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "unedit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_editing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_keep_editing_on_text_submit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_editing_kept_on_text_submit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1328111411, - "arguments": [ - { - "name": "from", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "select_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "has_undo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_redo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_selected_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "get_selection_from_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_selection_to_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_draw_control_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_control_chars", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_caret_column", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_caret_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_next_composite_character_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_previous_composite_character_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_scroll_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_expand_to_text_length_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_expand_to_text_length_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_blink_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_caret_blink_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_mid_grapheme_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_caret_mid_grapheme_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_force_displayed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_caret_force_displayed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_blink_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interval", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_caret_blink_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "chars", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "insert_text_at_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "delete_char_at_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "delete_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_column", - "type": "int", - "meta": "int32" - }, - { - "name": "to_column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_editable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_secret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_secret", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_secret_character", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "character", - "type": "String" - } - ] - }, - { - "name": "get_secret_character", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "menu_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229722558, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "is_menu_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_context_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_context_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_emoji_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_emoji_menu_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_backspace_deletes_composite_character_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_backspace_deletes_composite_character_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_virtual_keyboard_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_virtual_keyboard_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_virtual_keyboard_show_on_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show_on_focus", - "type": "bool" - } - ] - }, - { - "name": "get_virtual_keyboard_show_on_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_virtual_keyboard_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2696893573, - "arguments": [ - { - "name": "type", - "type": "enum::LineEdit.VirtualKeyboardType" - } - ] - }, - { - "name": "get_virtual_keyboard_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1928699316, - "return_value": { - "type": "enum::LineEdit.VirtualKeyboardType" - } - }, - { - "name": "set_clear_button_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_clear_button_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut_keys_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_shortcut_keys_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_middle_mouse_paste_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_middle_mouse_paste_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_selecting_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_selecting_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deselect_on_focus_loss_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_deselect_on_focus_loss_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_and_drop_selection_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drag_and_drop_selection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_right_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_right_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 255860311, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_icon_expand_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3019903192, - "arguments": [ - { - "name": "mode", - "type": "enum::LineEdit.ExpandMode" - } - ] - }, - { - "name": "get_icon_expand_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3273584435, - "return_value": { - "type": "enum::LineEdit.ExpandMode" - } - }, - { - "name": "set_right_icon_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_right_icon_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_flat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_flat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_select_all_on_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_select_all_on_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "text_changed", - "arguments": [ - { - "name": "new_text", - "type": "String" - } - ] - }, - { - "name": "text_change_rejected", - "arguments": [ - { - "name": "rejected_substring", - "type": "String" - } - ] - }, - { - "name": "text_submitted", - "arguments": [ - { - "name": "new_text", - "type": "String" - } - ] - }, - { - "name": "editing_toggled", - "arguments": [ - { - "name": "toggled_on", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "String", - "name": "placeholder_text", - "setter": "set_placeholder", - "getter": "get_placeholder" - }, - { - "type": "int", - "name": "alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "max_length", - "setter": "set_max_length", - "getter": "get_max_length" - }, - { - "type": "bool", - "name": "editable", - "setter": "set_editable", - "getter": "is_editable" - }, - { - "type": "bool", - "name": "keep_editing_on_text_submit", - "setter": "set_keep_editing_on_text_submit", - "getter": "is_editing_kept_on_text_submit" - }, - { - "type": "bool", - "name": "expand_to_text_length", - "setter": "set_expand_to_text_length_enabled", - "getter": "is_expand_to_text_length_enabled" - }, - { - "type": "bool", - "name": "context_menu_enabled", - "setter": "set_context_menu_enabled", - "getter": "is_context_menu_enabled" - }, - { - "type": "bool", - "name": "emoji_menu_enabled", - "setter": "set_emoji_menu_enabled", - "getter": "is_emoji_menu_enabled" - }, - { - "type": "bool", - "name": "backspace_deletes_composite_character_enabled", - "setter": "set_backspace_deletes_composite_character_enabled", - "getter": "is_backspace_deletes_composite_character_enabled" - }, - { - "type": "bool", - "name": "clear_button_enabled", - "setter": "set_clear_button_enabled", - "getter": "is_clear_button_enabled" - }, - { - "type": "bool", - "name": "shortcut_keys_enabled", - "setter": "set_shortcut_keys_enabled", - "getter": "is_shortcut_keys_enabled" - }, - { - "type": "bool", - "name": "middle_mouse_paste_enabled", - "setter": "set_middle_mouse_paste_enabled", - "getter": "is_middle_mouse_paste_enabled" - }, - { - "type": "bool", - "name": "selecting_enabled", - "setter": "set_selecting_enabled", - "getter": "is_selecting_enabled" - }, - { - "type": "bool", - "name": "deselect_on_focus_loss_enabled", - "setter": "set_deselect_on_focus_loss_enabled", - "getter": "is_deselect_on_focus_loss_enabled" - }, - { - "type": "bool", - "name": "drag_and_drop_selection_enabled", - "setter": "set_drag_and_drop_selection_enabled", - "getter": "is_drag_and_drop_selection_enabled" - }, - { - "type": "bool", - "name": "flat", - "setter": "set_flat", - "getter": "is_flat" - }, - { - "type": "bool", - "name": "draw_control_chars", - "setter": "set_draw_control_chars", - "getter": "get_draw_control_chars" - }, - { - "type": "bool", - "name": "select_all_on_focus", - "setter": "set_select_all_on_focus", - "getter": "is_select_all_on_focus" - }, - { - "type": "bool", - "name": "virtual_keyboard_enabled", - "setter": "set_virtual_keyboard_enabled", - "getter": "is_virtual_keyboard_enabled" - }, - { - "type": "bool", - "name": "virtual_keyboard_show_on_focus", - "setter": "set_virtual_keyboard_show_on_focus", - "getter": "get_virtual_keyboard_show_on_focus" - }, - { - "type": "int", - "name": "virtual_keyboard_type", - "setter": "set_virtual_keyboard_type", - "getter": "get_virtual_keyboard_type" - }, - { - "type": "bool", - "name": "caret_blink", - "setter": "set_caret_blink_enabled", - "getter": "is_caret_blink_enabled" - }, - { - "type": "float", - "name": "caret_blink_interval", - "setter": "set_caret_blink_interval", - "getter": "get_caret_blink_interval" - }, - { - "type": "int", - "name": "caret_column", - "setter": "set_caret_column", - "getter": "get_caret_column" - }, - { - "type": "bool", - "name": "caret_force_displayed", - "setter": "set_caret_force_displayed", - "getter": "is_caret_force_displayed" - }, - { - "type": "bool", - "name": "caret_mid_grapheme", - "setter": "set_caret_mid_grapheme_enabled", - "getter": "is_caret_mid_grapheme_enabled" - }, - { - "type": "bool", - "name": "secret", - "setter": "set_secret", - "getter": "is_secret" - }, - { - "type": "String", - "name": "secret_character", - "setter": "set_secret_character", - "getter": "get_secret_character" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - }, - { - "type": "Texture2D", - "name": "right_icon", - "setter": "set_right_icon", - "getter": "get_right_icon" - }, - { - "type": "int", - "name": "icon_expand_mode", - "setter": "set_icon_expand_mode", - "getter": "get_icon_expand_mode" - }, - { - "type": "float", - "name": "right_icon_scale", - "setter": "set_right_icon_scale", - "getter": "get_right_icon_scale" - } - ] - }, - { - "name": "LinkButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BaseButton", - "api_type": "core", - "enums": [ - { - "name": "UnderlineMode", - "is_bitfield": false, - "values": [ - { - "name": "UNDERLINE_MODE_ALWAYS", - "value": 0 - }, - { - "name": "UNDERLINE_MODE_ON_HOVER", - "value": 1 - }, - { - "name": "UNDERLINE_MODE_NEVER", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_ellipsis_char", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "char", - "type": "String" - } - ] - }, - { - "name": "get_ellipsis_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_uri", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "uri", - "type": "String" - } - ] - }, - { - "name": "get_uri", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_underline_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4032947085, - "arguments": [ - { - "name": "underline_mode", - "type": "enum::LinkButton.UnderlineMode" - } - ] - }, - { - "name": "get_underline_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 568343738, - "return_value": { - "type": "enum::LinkButton.UnderlineMode" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "int", - "name": "underline", - "setter": "set_underline_mode", - "getter": "get_underline_mode" - }, - { - "type": "String", - "name": "uri", - "setter": "set_uri", - "getter": "get_uri" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "String", - "name": "ellipsis_char", - "setter": "set_ellipsis_char", - "getter": "get_ellipsis_char" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "Logger", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ErrorType", - "is_bitfield": false, - "values": [ - { - "name": "ERROR_TYPE_ERROR", - "value": 0 - }, - { - "name": "ERROR_TYPE_WARNING", - "value": 1 - }, - { - "name": "ERROR_TYPE_SCRIPT", - "value": 2 - }, - { - "name": "ERROR_TYPE_SHADER", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "_log_error", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 27079556, - "arguments": [ - { - "name": "function", - "type": "String" - }, - { - "name": "file", - "type": "String" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "code", - "type": "String" - }, - { - "name": "rationale", - "type": "String" - }, - { - "name": "editor_notify", - "type": "bool" - }, - { - "name": "error_type", - "type": "int", - "meta": "int32" - }, - { - "name": "script_backtraces", - "type": "typedarray::ScriptBacktrace" - } - ] - }, - { - "name": "_log_message", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2678287736, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "error", - "type": "bool" - } - ] - } - ] - }, - { - "name": "LookAtModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "OriginFrom", - "is_bitfield": false, - "values": [ - { - "name": "ORIGIN_FROM_SELF", - "value": 0 - }, - { - "name": "ORIGIN_FROM_SPECIFIC_BONE", - "value": 1 - }, - { - "name": "ORIGIN_FROM_EXTERNAL_NODE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_forward_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3199955933, - "arguments": [ - { - "name": "forward_axis", - "type": "enum::SkeletonModifier3D.BoneAxis" - } - ] - }, - { - "name": "get_forward_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4076020284, - "return_value": { - "type": "enum::SkeletonModifier3D.BoneAxis" - } - }, - { - "name": "set_primary_rotation_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1144690656, - "arguments": [ - { - "name": "axis", - "type": "enum::Vector3.Axis" - } - ] - }, - { - "name": "get_primary_rotation_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050976882, - "return_value": { - "type": "enum::Vector3.Axis" - } - }, - { - "name": "set_use_secondary_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_secondary_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_relative", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_origin_safe_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_origin_safe_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_origin_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4254695669, - "arguments": [ - { - "name": "origin_from", - "type": "enum::LookAtModifier3D.OriginFrom" - } - ] - }, - { - "name": "get_origin_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4057166297, - "return_value": { - "type": "enum::LookAtModifier3D.OriginFrom" - } - }, - { - "name": "set_origin_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_origin_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_origin_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_origin_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_origin_external_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "external_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_origin_external_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_origin_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_origin_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "duration", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transition_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1058637742, - "arguments": [ - { - "name": "transition_type", - "type": "enum::Tween.TransitionType" - } - ] - }, - { - "name": "get_transition_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3842314528, - "return_value": { - "type": "enum::Tween.TransitionType" - } - }, - { - "name": "set_ease_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1208105857, - "arguments": [ - { - "name": "ease_type", - "type": "enum::Tween.EaseType" - } - ] - }, - { - "name": "get_ease_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 631880200, - "return_value": { - "type": "enum::Tween.EaseType" - } - }, - { - "name": "set_use_angle_limitation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_angle_limitation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_symmetry_limitation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_limitation_symmetry", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_primary_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_primary_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_primary_positive_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_positive_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_primary_positive_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_positive_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_primary_negative_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_negative_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_primary_negative_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_primary_negative_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_positive_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_positive_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_positive_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_positive_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_negative_limit_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_negative_limit_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_secondary_negative_damp_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "power", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_secondary_negative_damp_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_interpolation_remaining", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "is_interpolating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_target_within_limitation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "target_node", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "String", - "name": "bone_name", - "setter": "set_bone_name", - "getter": "get_bone_name" - }, - { - "type": "int", - "name": "bone", - "setter": "set_bone", - "getter": "get_bone" - }, - { - "type": "int", - "name": "forward_axis", - "setter": "set_forward_axis", - "getter": "get_forward_axis" - }, - { - "type": "int", - "name": "primary_rotation_axis", - "setter": "set_primary_rotation_axis", - "getter": "get_primary_rotation_axis" - }, - { - "type": "bool", - "name": "use_secondary_rotation", - "setter": "set_use_secondary_rotation", - "getter": "is_using_secondary_rotation" - }, - { - "type": "bool", - "name": "relative", - "setter": "set_relative", - "getter": "is_relative" - }, - { - "type": "int", - "name": "origin_from", - "setter": "set_origin_from", - "getter": "get_origin_from" - }, - { - "type": "String", - "name": "origin_bone_name", - "setter": "set_origin_bone_name", - "getter": "get_origin_bone_name" - }, - { - "type": "int", - "name": "origin_bone", - "setter": "set_origin_bone", - "getter": "get_origin_bone" - }, - { - "type": "NodePath", - "name": "origin_external_node", - "setter": "set_origin_external_node", - "getter": "get_origin_external_node" - }, - { - "type": "Vector3", - "name": "origin_offset", - "setter": "set_origin_offset", - "getter": "get_origin_offset" - }, - { - "type": "float", - "name": "origin_safe_margin", - "setter": "set_origin_safe_margin", - "getter": "get_origin_safe_margin" - }, - { - "type": "float", - "name": "duration", - "setter": "set_duration", - "getter": "get_duration" - }, - { - "type": "int", - "name": "transition_type", - "setter": "set_transition_type", - "getter": "get_transition_type" - }, - { - "type": "int", - "name": "ease_type", - "setter": "set_ease_type", - "getter": "get_ease_type" - }, - { - "type": "bool", - "name": "use_angle_limitation", - "setter": "set_use_angle_limitation", - "getter": "is_using_angle_limitation" - }, - { - "type": "bool", - "name": "symmetry_limitation", - "setter": "set_symmetry_limitation", - "getter": "is_limitation_symmetry" - }, - { - "type": "float", - "name": "primary_limit_angle", - "setter": "set_primary_limit_angle", - "getter": "get_primary_limit_angle" - }, - { - "type": "float", - "name": "primary_damp_threshold", - "setter": "set_primary_damp_threshold", - "getter": "get_primary_damp_threshold" - }, - { - "type": "float", - "name": "primary_positive_limit_angle", - "setter": "set_primary_positive_limit_angle", - "getter": "get_primary_positive_limit_angle" - }, - { - "type": "float", - "name": "primary_positive_damp_threshold", - "setter": "set_primary_positive_damp_threshold", - "getter": "get_primary_positive_damp_threshold" - }, - { - "type": "float", - "name": "primary_negative_limit_angle", - "setter": "set_primary_negative_limit_angle", - "getter": "get_primary_negative_limit_angle" - }, - { - "type": "float", - "name": "primary_negative_damp_threshold", - "setter": "set_primary_negative_damp_threshold", - "getter": "get_primary_negative_damp_threshold" - }, - { - "type": "float", - "name": "secondary_limit_angle", - "setter": "set_secondary_limit_angle", - "getter": "get_secondary_limit_angle" - }, - { - "type": "float", - "name": "secondary_damp_threshold", - "setter": "set_secondary_damp_threshold", - "getter": "get_secondary_damp_threshold" - }, - { - "type": "float", - "name": "secondary_positive_limit_angle", - "setter": "set_secondary_positive_limit_angle", - "getter": "get_secondary_positive_limit_angle" - }, - { - "type": "float", - "name": "secondary_positive_damp_threshold", - "setter": "set_secondary_positive_damp_threshold", - "getter": "get_secondary_positive_damp_threshold" - }, - { - "type": "float", - "name": "secondary_negative_limit_angle", - "setter": "set_secondary_negative_limit_angle", - "getter": "get_secondary_negative_limit_angle" - }, - { - "type": "float", - "name": "secondary_negative_damp_threshold", - "setter": "set_secondary_negative_damp_threshold", - "getter": "get_secondary_negative_damp_threshold" - } - ] - }, - { - "name": "MainLoop", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_OS_MEMORY_WARNING", - "value": 2009 - }, - { - "name": "NOTIFICATION_TRANSLATION_CHANGED", - "value": 2010 - }, - { - "name": "NOTIFICATION_WM_ABOUT", - "value": 2011 - }, - { - "name": "NOTIFICATION_CRASH", - "value": 2012 - }, - { - "name": "NOTIFICATION_OS_IME_UPDATE", - "value": 2013 - }, - { - "name": "NOTIFICATION_APPLICATION_RESUMED", - "value": 2014 - }, - { - "name": "NOTIFICATION_APPLICATION_PAUSED", - "value": 2015 - }, - { - "name": "NOTIFICATION_APPLICATION_FOCUS_IN", - "value": 2016 - }, - { - "name": "NOTIFICATION_APPLICATION_FOCUS_OUT", - "value": 2017 - }, - { - "name": "NOTIFICATION_TEXT_SERVER_CHANGED", - "value": 2018 - }, - { - "name": "NOTIFICATION_APPLICATION_PIP_MODE_ENTERED", - "value": 2019 - }, - { - "name": "NOTIFICATION_APPLICATION_PIP_MODE_EXITED", - "value": 2020 - } - ], - "methods": [ - { - "name": "_initialize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_physics_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 330693286, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 330693286, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_finalize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "on_request_permissions_result", - "arguments": [ - { - "name": "permission", - "type": "String" - }, - { - "name": "granted", - "type": "bool" - } - ] - } - ] - }, - { - "name": "MarginContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core" - }, - { - "name": "Marker2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_gizmo_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "extents", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gizmo_extents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "gizmo_extents", - "setter": "set_gizmo_extents", - "getter": "get_gizmo_extents" - } - ] - }, - { - "name": "Marker3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_gizmo_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "extents", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gizmo_extents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "gizmo_extents", - "setter": "set_gizmo_extents", - "getter": "get_gizmo_extents" - } - ] - }, - { - "name": "Marshalls", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "variant_to_base64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3876248563, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "variant", - "type": "Variant" - }, - { - "name": "full_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "base64_to_variant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218087648, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "base64_str", - "type": "String" - }, - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "raw_to_base64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3999417757, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "array", - "type": "PackedByteArray" - } - ] - }, - { - "name": "base64_to_raw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659035735, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "base64_str", - "type": "String" - } - ] - }, - { - "name": "utf8_to_base64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "utf8_str", - "type": "String" - } - ] - }, - { - "name": "base64_to_utf8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "base64_str", - "type": "String" - } - ] - } - ] - }, - { - "name": "Material", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "constants": [ - { - "name": "RENDER_PRIORITY_MAX", - "value": 127 - }, - { - "name": "RENDER_PRIORITY_MIN", - "value": -128 - } - ], - "methods": [ - { - "name": "_get_shader_rid", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "_get_shader_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3392948163, - "return_value": { - "type": "enum::Shader.Mode" - } - }, - { - "name": "_can_do_next_pass", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_can_use_render_priority", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_next_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "next_pass", - "type": "Material" - } - ] - }, - { - "name": "get_next_pass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_render_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_render_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "inspect_native_shader_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ], - "properties": [ - { - "type": "int", - "name": "render_priority", - "setter": "set_render_priority", - "getter": "get_render_priority" - }, - { - "type": "Material", - "name": "next_pass", - "setter": "set_next_pass", - "getter": "get_next_pass" - } - ] - }, - { - "name": "MenuBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "set_switch_on_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_switch_on_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disable_shortcuts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_prefer_global_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_prefer_global_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_native_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_menu_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_flat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_flat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_start_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "enabled", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_start_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_menu_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - }, - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_menu_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_menu_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_menu_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_menu_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_menu_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_menu_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_menu_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_menu_popup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2100501353, - "return_value": { - "type": "PopupMenu" - }, - "arguments": [ - { - "name": "menu", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "flat", - "setter": "set_flat", - "getter": "is_flat" - }, - { - "type": "int", - "name": "start_index", - "setter": "set_start_index", - "getter": "get_start_index" - }, - { - "type": "bool", - "name": "switch_on_hover", - "setter": "set_switch_on_hover", - "getter": "is_switch_on_hover" - }, - { - "type": "bool", - "name": "prefer_global_menu", - "setter": "set_prefer_global_menu", - "getter": "is_prefer_global_menu" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - } - ] - }, - { - "name": "MenuButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Button", - "api_type": "core", - "methods": [ - { - "name": "get_popup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229722558, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "show_popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_switch_on_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_switch_on_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disable_shortcuts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "signals": [ - { - "name": "about_to_popup" - } - ], - "properties": [ - { - "type": "bool", - "name": "switch_on_hover", - "setter": "set_switch_on_hover", - "getter": "is_switch_on_hover" - }, - { - "type": "int", - "name": "item_count", - "setter": "set_item_count", - "getter": "get_item_count" - } - ] - }, - { - "name": "Mesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "PrimitiveType", - "is_bitfield": false, - "values": [ - { - "name": "PRIMITIVE_POINTS", - "value": 0 - }, - { - "name": "PRIMITIVE_LINES", - "value": 1 - }, - { - "name": "PRIMITIVE_LINE_STRIP", - "value": 2 - }, - { - "name": "PRIMITIVE_TRIANGLES", - "value": 3 - }, - { - "name": "PRIMITIVE_TRIANGLE_STRIP", - "value": 4 - } - ] - }, - { - "name": "ArrayType", - "is_bitfield": false, - "values": [ - { - "name": "ARRAY_VERTEX", - "value": 0 - }, - { - "name": "ARRAY_NORMAL", - "value": 1 - }, - { - "name": "ARRAY_TANGENT", - "value": 2 - }, - { - "name": "ARRAY_COLOR", - "value": 3 - }, - { - "name": "ARRAY_TEX_UV", - "value": 4 - }, - { - "name": "ARRAY_TEX_UV2", - "value": 5 - }, - { - "name": "ARRAY_CUSTOM0", - "value": 6 - }, - { - "name": "ARRAY_CUSTOM1", - "value": 7 - }, - { - "name": "ARRAY_CUSTOM2", - "value": 8 - }, - { - "name": "ARRAY_CUSTOM3", - "value": 9 - }, - { - "name": "ARRAY_BONES", - "value": 10 - }, - { - "name": "ARRAY_WEIGHTS", - "value": 11 - }, - { - "name": "ARRAY_INDEX", - "value": 12 - }, - { - "name": "ARRAY_MAX", - "value": 13 - } - ] - }, - { - "name": "ArrayCustomFormat", - "is_bitfield": false, - "values": [ - { - "name": "ARRAY_CUSTOM_RGBA8_UNORM", - "value": 0 - }, - { - "name": "ARRAY_CUSTOM_RGBA8_SNORM", - "value": 1 - }, - { - "name": "ARRAY_CUSTOM_RG_HALF", - "value": 2 - }, - { - "name": "ARRAY_CUSTOM_RGBA_HALF", - "value": 3 - }, - { - "name": "ARRAY_CUSTOM_R_FLOAT", - "value": 4 - }, - { - "name": "ARRAY_CUSTOM_RG_FLOAT", - "value": 5 - }, - { - "name": "ARRAY_CUSTOM_RGB_FLOAT", - "value": 6 - }, - { - "name": "ARRAY_CUSTOM_RGBA_FLOAT", - "value": 7 - }, - { - "name": "ARRAY_CUSTOM_MAX", - "value": 8 - } - ] - }, - { - "name": "ArrayFormat", - "is_bitfield": true, - "values": [ - { - "name": "ARRAY_FORMAT_VERTEX", - "value": 1 - }, - { - "name": "ARRAY_FORMAT_NORMAL", - "value": 2 - }, - { - "name": "ARRAY_FORMAT_TANGENT", - "value": 4 - }, - { - "name": "ARRAY_FORMAT_COLOR", - "value": 8 - }, - { - "name": "ARRAY_FORMAT_TEX_UV", - "value": 16 - }, - { - "name": "ARRAY_FORMAT_TEX_UV2", - "value": 32 - }, - { - "name": "ARRAY_FORMAT_CUSTOM0", - "value": 64 - }, - { - "name": "ARRAY_FORMAT_CUSTOM1", - "value": 128 - }, - { - "name": "ARRAY_FORMAT_CUSTOM2", - "value": 256 - }, - { - "name": "ARRAY_FORMAT_CUSTOM3", - "value": 512 - }, - { - "name": "ARRAY_FORMAT_BONES", - "value": 1024 - }, - { - "name": "ARRAY_FORMAT_WEIGHTS", - "value": 2048 - }, - { - "name": "ARRAY_FORMAT_INDEX", - "value": 4096 - }, - { - "name": "ARRAY_FORMAT_BLEND_SHAPE_MASK", - "value": 7 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_BASE", - "value": 13 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_BITS", - "value": 3 - }, - { - "name": "ARRAY_FORMAT_CUSTOM0_SHIFT", - "value": 13 - }, - { - "name": "ARRAY_FORMAT_CUSTOM1_SHIFT", - "value": 16 - }, - { - "name": "ARRAY_FORMAT_CUSTOM2_SHIFT", - "value": 19 - }, - { - "name": "ARRAY_FORMAT_CUSTOM3_SHIFT", - "value": 22 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_MASK", - "value": 7 - }, - { - "name": "ARRAY_COMPRESS_FLAGS_BASE", - "value": 25 - }, - { - "name": "ARRAY_FLAG_USE_2D_VERTICES", - "value": 33554432 - }, - { - "name": "ARRAY_FLAG_USE_DYNAMIC_UPDATE", - "value": 67108864 - }, - { - "name": "ARRAY_FLAG_USE_8_BONE_WEIGHTS", - "value": 134217728 - }, - { - "name": "ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY", - "value": 268435456 - }, - { - "name": "ARRAY_FLAG_COMPRESS_ATTRIBUTES", - "value": 536870912 - } - ] - }, - { - "name": "BlendShapeMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_SHAPE_MODE_NORMALIZED", - "value": 0 - }, - { - "name": "BLEND_SHAPE_MODE_RELATIVE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_get_surface_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_surface_get_array_len", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_array_index_len", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_arrays", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_blend_shape_arrays", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 663333327, - "return_value": { - "type": "typedarray::Array" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_lods", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_format", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_get_primitive_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_surface_set_material", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3671737478, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "_surface_get_material", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2897466400, - "return_value": { - "type": "Material" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_blend_shape_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_blend_shape_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_set_blend_shape_name", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3780747571, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "_get_aabb", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_lightmap_size_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_lightmap_size_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_surface_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "surface_get_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_get_blend_shape_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::Array" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "surface_set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3671737478, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "surface_get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897466400, - "return_value": { - "type": "Material" - }, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - }, - { - "name": "create_trimesh_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4160111210, - "return_value": { - "type": "ConcavePolygonShape3D" - } - }, - { - "name": "create_convex_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2529984628, - "return_value": { - "type": "ConvexPolygonShape3D" - }, - "arguments": [ - { - "name": "clean", - "type": "bool", - "default_value": "true" - }, - { - "name": "simplify", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1208642001, - "return_value": { - "type": "Mesh" - }, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "generate_triangle_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3476533166, - "return_value": { - "type": "TriangleMesh" - } - } - ], - "properties": [ - { - "type": "Vector2i", - "name": "lightmap_size_hint", - "setter": "set_lightmap_size_hint", - "getter": "get_lightmap_size_hint" - } - ] - }, - { - "name": "MeshConvexDecompositionSettings", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "CONVEX_DECOMPOSITION_MODE_VOXEL", - "value": 0 - }, - { - "name": "CONVEX_DECOMPOSITION_MODE_TETRAHEDRON", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_max_concavity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_concavity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_concavity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_symmetry_planes_clipping_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "symmetry_planes_clipping_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_symmetry_planes_clipping_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_revolution_axes_clipping_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "revolution_axes_clipping_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_revolution_axes_clipping_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_min_volume_per_convex_hull", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min_volume_per_convex_hull", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min_volume_per_convex_hull", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "min_volume_per_convex_hull", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_resolution", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_max_num_vertices_per_convex_hull", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_num_vertices_per_convex_hull", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_max_num_vertices_per_convex_hull", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_plane_downsampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "plane_downsampling", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_plane_downsampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_convex_hull_downsampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "convex_hull_downsampling", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_convex_hull_downsampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_normalize_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "normalize_mesh", - "type": "bool" - } - ] - }, - { - "name": "get_normalize_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1668072869, - "arguments": [ - { - "name": "mode", - "type": "enum::MeshConvexDecompositionSettings.Mode" - } - ] - }, - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 23479454, - "return_value": { - "type": "enum::MeshConvexDecompositionSettings.Mode" - } - }, - { - "name": "set_convex_hull_approximation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "convex_hull_approximation", - "type": "bool" - } - ] - }, - { - "name": "get_convex_hull_approximation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_max_convex_hulls", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_convex_hulls", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_max_convex_hulls", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_project_hull_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "project_hull_vertices", - "type": "bool" - } - ] - }, - { - "name": "get_project_hull_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "max_concavity", - "setter": "set_max_concavity", - "getter": "get_max_concavity" - }, - { - "type": "float", - "name": "symmetry_planes_clipping_bias", - "setter": "set_symmetry_planes_clipping_bias", - "getter": "get_symmetry_planes_clipping_bias" - }, - { - "type": "float", - "name": "revolution_axes_clipping_bias", - "setter": "set_revolution_axes_clipping_bias", - "getter": "get_revolution_axes_clipping_bias" - }, - { - "type": "float", - "name": "min_volume_per_convex_hull", - "setter": "set_min_volume_per_convex_hull", - "getter": "get_min_volume_per_convex_hull" - }, - { - "type": "int", - "name": "resolution", - "setter": "set_resolution", - "getter": "get_resolution" - }, - { - "type": "int", - "name": "max_num_vertices_per_convex_hull", - "setter": "set_max_num_vertices_per_convex_hull", - "getter": "get_max_num_vertices_per_convex_hull" - }, - { - "type": "int", - "name": "plane_downsampling", - "setter": "set_plane_downsampling", - "getter": "get_plane_downsampling" - }, - { - "type": "int", - "name": "convex_hull_downsampling", - "setter": "set_convex_hull_downsampling", - "getter": "get_convex_hull_downsampling" - }, - { - "type": "bool", - "name": "normalize_mesh", - "setter": "set_normalize_mesh", - "getter": "get_normalize_mesh" - }, - { - "type": "int", - "name": "mode", - "setter": "set_mode", - "getter": "get_mode" - }, - { - "type": "bool", - "name": "convex_hull_approximation", - "setter": "set_convex_hull_approximation", - "getter": "get_convex_hull_approximation" - }, - { - "type": "int", - "name": "max_convex_hulls", - "setter": "set_max_convex_hulls", - "getter": "get_max_convex_hulls" - }, - { - "type": "bool", - "name": "project_hull_vertices", - "setter": "set_project_hull_vertices", - "getter": "get_project_hull_vertices" - } - ] - }, - { - "name": "MeshDataTool", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_from_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2727020678, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "commit_to_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2021686445, - "hash_compatibility": [ - 3521099812 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh" - }, - { - "name": "compression_flags", - "type": "int", - "meta": "uint64", - "default_value": "0" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_vertex_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_edge_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_face_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_vertex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "vertex", - "type": "Vector3" - } - ] - }, - { - "name": "get_vertex", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "name": "get_vertex_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1104099133, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tangent", - "type": "Plane" - } - ] - }, - { - "name": "get_vertex_tangent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1372055458, - "return_value": { - "type": "Plane" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_uv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "uv", - "type": "Vector2" - } - ] - }, - { - "name": "get_vertex_uv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_uv2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "uv2", - "type": "Vector2" - } - ] - }, - { - "name": "get_vertex_uv2", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_vertex_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3500328261, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bones", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_vertex_bones", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706082319, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_weights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1345852415, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_vertex_weights", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1542882410, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_vertex_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "get_vertex_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_vertex_edges", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706082319, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_vertex_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706082319, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_edge_vertex", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "vertex", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_edge_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706082319, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_edge_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "get_edge_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_face_vertex", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "vertex", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_face_edge", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "edge", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_face_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "get_face_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_face_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ] - }, - { - "name": "MeshInstance2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "signals": [ - { - "name": "texture_changed" - } - ], - "properties": [ - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "MeshInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GeometryInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_skeleton_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "skeleton_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_skeleton_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 277076166, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3971435618, - "arguments": [ - { - "name": "skin", - "type": "Skin" - } - ] - }, - { - "name": "get_skin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074563878, - "return_value": { - "type": "Skin" - } - }, - { - "name": "get_skin_reference", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2060603409, - "return_value": { - "type": "SkinReference" - } - }, - { - "name": "get_surface_override_material_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_surface_override_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3671737478, - "arguments": [ - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_surface_override_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897466400, - "return_value": { - "type": "Material" - }, - "arguments": [ - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_active_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2897466400, - "return_value": { - "type": "Material" - }, - "arguments": [ - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_trimesh_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_convex_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2751962654, - "arguments": [ - { - "name": "clean", - "type": "bool", - "default_value": "true" - }, - { - "name": "simplify", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_multiple_convex_collisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 628789669, - "arguments": [ - { - "name": "settings", - "type": "MeshConvexDecompositionSettings", - "default_value": "null" - } - ] - }, - { - "name": "get_blend_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_blend_shape_by_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150868206, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_blend_shape_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "blend_shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_blend_shape_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "blend_shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "create_debug_tangents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "bake_mesh_from_current_blend_shape_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1457573577, - "return_value": { - "type": "ArrayMesh" - }, - "arguments": [ - { - "name": "existing", - "type": "ArrayMesh", - "default_value": "null" - } - ] - }, - { - "name": "bake_mesh_from_current_skeleton_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1457573577, - "return_value": { - "type": "ArrayMesh" - }, - "arguments": [ - { - "name": "existing", - "type": "ArrayMesh", - "default_value": "null" - } - ] - } - ], - "properties": [ - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "Skin", - "name": "skin", - "setter": "set_skin", - "getter": "get_skin" - }, - { - "type": "NodePath", - "name": "skeleton", - "setter": "set_skeleton_path", - "getter": "get_skeleton_path" - } - ] - }, - { - "name": "MeshLibrary", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "create_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_item_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969122797, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "set_item_mesh_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "mesh_transform", - "type": "Transform3D" - } - ] - }, - { - "name": "set_item_mesh_cast_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3923400443, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "shadow_casting_setting", - "type": "enum::RenderingServer.ShadowCastingSetting" - } - ] - }, - { - "name": "set_item_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3483353960, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "navigation_mesh", - "type": "NavigationMesh" - } - ] - }, - { - "name": "set_item_navigation_mesh_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "navigation_mesh", - "type": "Transform3D" - } - ] - }, - { - "name": "set_item_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "set_item_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 537221740, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "shapes", - "type": "Array" - } - ] - }, - { - "name": "set_item_preview", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_item_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1576363275, - "return_value": { - "type": "Mesh" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_mesh_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_mesh_cast_shadow", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1841766007, - "return_value": { - "type": "enum::RenderingServer.ShadowCastingSetting" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2729647406, - "return_value": { - "type": "NavigationMesh" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_navigation_mesh_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_shapes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_preview", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "find_item_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_item_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_last_unused_item_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "MeshTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_image_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_image_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_base_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_base_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "properties": [ - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "Texture2D", - "name": "base_texture", - "setter": "set_base_texture", - "getter": "get_base_texture" - }, - { - "type": "Vector2", - "name": "image_size", - "setter": "set_image_size", - "getter": "get_image_size" - } - ] - }, - { - "name": "MethodTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core", - "methods": [ - { - "name": "set_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 266477812, - "return_value": { - "type": "MethodTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "delay", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_trans", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740975367, - "return_value": { - "type": "MethodTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "trans", - "type": "enum::Tween.TransitionType" - } - ] - }, - { - "name": "set_ease", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 315540545, - "return_value": { - "type": "MethodTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "ease", - "type": "enum::Tween.EaseType" - } - ] - } - ] - }, - { - "name": "MissingNode", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "set_original_class", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_original_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_original_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_original_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_recording_properties", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_recording_properties", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_recording_signals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_recording_signals", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "String", - "name": "original_class", - "setter": "set_original_class", - "getter": "get_original_class" - }, - { - "type": "String", - "name": "original_scene", - "setter": "set_original_scene", - "getter": "get_original_scene" - }, - { - "type": "bool", - "name": "recording_properties", - "setter": "set_recording_properties", - "getter": "is_recording_properties" - }, - { - "type": "bool", - "name": "recording_signals", - "setter": "set_recording_signals", - "getter": "is_recording_signals" - } - ] - }, - { - "name": "MissingResource", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_original_class", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_original_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_recording_properties", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_recording_properties", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "String", - "name": "original_class", - "setter": "set_original_class", - "getter": "get_original_class" - }, - { - "type": "bool", - "name": "recording_properties", - "setter": "set_recording_properties", - "getter": "is_recording_properties" - } - ] - }, - { - "name": "MobileVRInterface", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRInterface", - "api_type": "core", - "methods": [ - { - "name": "set_eye_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "eye_height", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_eye_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_iod", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "iod", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_iod", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_display_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "display_width", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_display_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_display_to_lens", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "display_to_lens", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_display_to_lens", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_offset_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "offset_rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_offset_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_oversample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "oversample", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_oversample", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_k1", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "k", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_k1", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_k2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "k", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_k2", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_vrs_min_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_min_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vrs_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "eye_height", - "setter": "set_eye_height", - "getter": "get_eye_height" - }, - { - "type": "float", - "name": "iod", - "setter": "set_iod", - "getter": "get_iod" - }, - { - "type": "float", - "name": "display_width", - "setter": "set_display_width", - "getter": "get_display_width" - }, - { - "type": "float", - "name": "display_to_lens", - "setter": "set_display_to_lens", - "getter": "get_display_to_lens" - }, - { - "type": "Rect2", - "name": "offset_rect", - "setter": "set_offset_rect", - "getter": "get_offset_rect" - }, - { - "type": "float", - "name": "oversample", - "setter": "set_oversample", - "getter": "get_oversample" - }, - { - "type": "float", - "name": "k1", - "setter": "set_k1", - "getter": "get_k1" - }, - { - "type": "float", - "name": "k2", - "setter": "set_k2", - "getter": "get_k2" - }, - { - "type": "float", - "name": "vrs_min_radius", - "setter": "set_vrs_min_radius", - "getter": "get_vrs_min_radius" - }, - { - "type": "float", - "name": "vrs_strength", - "setter": "set_vrs_strength", - "getter": "get_vrs_strength" - } - ] - }, - { - "name": "ModifierBoneTarget3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "String", - "name": "bone_name", - "setter": "set_bone_name", - "getter": "get_bone_name" - }, - { - "type": "int", - "name": "bone", - "setter": "set_bone", - "getter": "get_bone" - } - ] - }, - { - "name": "MovieWriter", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "_get_audio_mix_rate", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_audio_speaker_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2549190337, - "return_value": { - "type": "enum::AudioServer.SpeakerMode" - } - }, - { - "name": "_handles_file", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_supported_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_write_begin", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1866453460, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "movie_size", - "type": "Vector2i" - }, - { - "name": "fps", - "type": "int", - "meta": "uint32" - }, - { - "name": "base_path", - "type": "String" - } - ] - }, - { - "name": "_write_frame", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2784607037, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "frame_image", - "type": "Image" - }, - { - "name": "audio_frame_block", - "type": "const void*" - } - ] - }, - { - "name": "_write_end", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "add_writer", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4023702871, - "arguments": [ - { - "name": "writer", - "type": "MovieWriter" - } - ] - } - ] - }, - { - "name": "MultiMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "TransformFormat", - "is_bitfield": false, - "values": [ - { - "name": "TRANSFORM_2D", - "value": 0 - }, - { - "name": "TRANSFORM_3D", - "value": 1 - } - ] - }, - { - "name": "PhysicsInterpolationQuality", - "is_bitfield": false, - "values": [ - { - "name": "INTERP_QUALITY_FAST", - "value": 0 - }, - { - "name": "INTERP_QUALITY_HIGH", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_use_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_custom_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_custom_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_transform_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2404750322, - "arguments": [ - { - "name": "format", - "type": "enum::MultiMesh.TransformFormat" - } - ] - }, - { - "name": "get_transform_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2444156481, - "return_value": { - "type": "enum::MultiMesh.TransformFormat" - } - }, - { - "name": "set_instance_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_instance_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_visible_instance_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible_instance_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_physics_interpolation_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819488408, - "arguments": [ - { - "name": "quality", - "type": "enum::MultiMesh.PhysicsInterpolationQuality" - } - ] - }, - { - "name": "get_physics_interpolation_quality", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1465701882, - "return_value": { - "type": "enum::MultiMesh.PhysicsInterpolationQuality" - } - }, - { - "name": "set_instance_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "set_instance_transform_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 30160968, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_instance_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_instance_transform_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3836996910, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_instance_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_instance_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_instance_custom_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_data", - "type": "Color" - } - ] - }, - { - "name": "get_instance_custom_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reset_instance_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reset_instances_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "buffer", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "set_buffer_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3514430332, - "arguments": [ - { - "name": "buffer_curr", - "type": "PackedFloat32Array" - }, - { - "name": "buffer_prev", - "type": "PackedFloat32Array" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "transform_format", - "setter": "set_transform_format", - "getter": "get_transform_format" - }, - { - "type": "bool", - "name": "use_colors", - "setter": "set_use_colors", - "getter": "is_using_colors" - }, - { - "type": "bool", - "name": "use_custom_data", - "setter": "set_use_custom_data", - "getter": "is_using_custom_data" - }, - { - "type": "AABB", - "name": "custom_aabb", - "setter": "set_custom_aabb", - "getter": "get_custom_aabb" - }, - { - "type": "int", - "name": "instance_count", - "setter": "set_instance_count", - "getter": "get_instance_count" - }, - { - "type": "int", - "name": "visible_instance_count", - "setter": "set_visible_instance_count", - "getter": "get_visible_instance_count" - }, - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "PackedFloat32Array", - "name": "buffer", - "setter": "set_buffer", - "getter": "get_buffer" - }, - { - "type": "PackedVector3Array", - "name": "transform_array", - "setter": "_set_transform_array", - "getter": "_get_transform_array" - }, - { - "type": "PackedVector2Array", - "name": "transform_2d_array", - "setter": "_set_transform_2d_array", - "getter": "_get_transform_2d_array" - }, - { - "type": "PackedColorArray", - "name": "color_array", - "setter": "_set_color_array", - "getter": "_get_color_array" - }, - { - "type": "PackedColorArray", - "name": "custom_data_array", - "setter": "_set_custom_data_array", - "getter": "_get_custom_data_array" - }, - { - "type": "int", - "name": "physics_interpolation_quality", - "setter": "set_physics_interpolation_quality", - "getter": "get_physics_interpolation_quality" - } - ] - }, - { - "name": "MultiMeshInstance2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_multimesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2246127404, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh" - } - ] - }, - { - "name": "get_multimesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1385450523, - "return_value": { - "type": "MultiMesh" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "signals": [ - { - "name": "texture_changed" - } - ], - "properties": [ - { - "type": "MultiMesh", - "name": "multimesh", - "setter": "set_multimesh", - "getter": "get_multimesh" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "MultiMeshInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "GeometryInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_multimesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2246127404, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh" - } - ] - }, - { - "name": "get_multimesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1385450523, - "return_value": { - "type": "MultiMesh" - } - } - ], - "properties": [ - { - "type": "MultiMesh", - "name": "multimesh", - "setter": "set_multimesh", - "getter": "get_multimesh" - } - ] - }, - { - "name": "MultiplayerAPI", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "RPCMode", - "is_bitfield": false, - "values": [ - { - "name": "RPC_MODE_DISABLED", - "value": 0 - }, - { - "name": "RPC_MODE_ANY_PEER", - "value": 1 - }, - { - "name": "RPC_MODE_AUTHORITY", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "has_multiplayer_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_multiplayer_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3223692825, - "return_value": { - "type": "MultiplayerPeer" - } - }, - { - "name": "set_multiplayer_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3694835298, - "arguments": [ - { - "name": "peer", - "type": "MultiplayerPeer" - } - ] - }, - { - "name": "get_unique_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_remote_sender_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "rpc", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2077486355, - "hash_compatibility": [ - 1833408346 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - }, - { - "name": "object", - "type": "Object" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "arguments", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "object_configuration_add", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1171879464, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "configuration", - "type": "Variant" - } - ] - }, - { - "name": "object_configuration_remove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1171879464, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "configuration", - "type": "Variant" - } - ] - }, - { - "name": "get_peers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_default_interface", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "interface_name", - "type": "StringName" - } - ] - }, - { - "name": "get_default_interface", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2737447660, - "return_value": { - "type": "StringName" - } - }, - { - "name": "create_default_interface", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3294156723, - "return_value": { - "type": "MultiplayerAPI" - } - } - ], - "signals": [ - { - "name": "peer_connected", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "peer_disconnected", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "connected_to_server" - }, - { - "name": "connection_failed" - }, - { - "name": "server_disconnected" - } - ], - "properties": [ - { - "type": "MultiplayerPeer", - "name": "multiplayer_peer", - "setter": "set_multiplayer_peer", - "getter": "get_multiplayer_peer" - } - ] - }, - { - "name": "MultiplayerAPIExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerAPI", - "api_type": "core", - "methods": [ - { - "name": "_poll", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "_set_multiplayer_peer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3694835298, - "arguments": [ - { - "name": "multiplayer_peer", - "type": "MultiplayerPeer" - } - ] - }, - { - "name": "_get_multiplayer_peer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3223692825, - "return_value": { - "type": "MultiplayerPeer" - } - }, - { - "name": "_get_unique_id", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_peer_ids", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "_rpc", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3673574758, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - }, - { - "name": "object", - "type": "Object" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "_get_remote_sender_id", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_object_configuration_add", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1171879464, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "configuration", - "type": "Variant" - } - ] - }, - { - "name": "_object_configuration_remove", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1171879464, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "configuration", - "type": "Variant" - } - ] - } - ] - }, - { - "name": "MultiplayerPeer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "PacketPeer", - "api_type": "core", - "constants": [ - { - "name": "TARGET_PEER_BROADCAST", - "value": 0 - }, - { - "name": "TARGET_PEER_SERVER", - "value": 1 - } - ], - "enums": [ - { - "name": "ConnectionStatus", - "is_bitfield": false, - "values": [ - { - "name": "CONNECTION_DISCONNECTED", - "value": 0 - }, - { - "name": "CONNECTION_CONNECTING", - "value": 1 - }, - { - "name": "CONNECTION_CONNECTED", - "value": 2 - } - ] - }, - { - "name": "TransferMode", - "is_bitfield": false, - "values": [ - { - "name": "TRANSFER_MODE_UNRELIABLE", - "value": 0 - }, - { - "name": "TRANSFER_MODE_UNRELIABLE_ORDERED", - "value": 1 - }, - { - "name": "TRANSFER_MODE_RELIABLE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_transfer_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "channel", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_transfer_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_transfer_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 950411049, - "arguments": [ - { - "name": "mode", - "type": "enum::MultiplayerPeer.TransferMode" - } - ] - }, - { - "name": "get_transfer_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3369852622, - "return_value": { - "type": "enum::MultiplayerPeer.TransferMode" - } - }, - { - "name": "set_target_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_packet_peer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_packet_channel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_packet_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3369852622, - "return_value": { - "type": "enum::MultiplayerPeer.TransferMode" - } - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "disconnect_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4023243586, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - }, - { - "name": "force", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_connection_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2147374275, - "return_value": { - "type": "enum::MultiplayerPeer.ConnectionStatus" - } - }, - { - "name": "get_unique_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "generate_unique_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_refuse_new_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_refusing_new_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_server_relay_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "peer_connected", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "peer_disconnected", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "refuse_new_connections", - "setter": "set_refuse_new_connections", - "getter": "is_refusing_new_connections" - }, - { - "type": "int", - "name": "transfer_mode", - "setter": "set_transfer_mode", - "getter": "get_transfer_mode" - }, - { - "type": "int", - "name": "transfer_channel", - "setter": "set_transfer_channel", - "getter": "get_transfer_channel" - } - ] - }, - { - "name": "MultiplayerPeerExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerPeer", - "api_type": "core", - "methods": [ - { - "name": "_get_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "r_buffer", - "type": "const uint8_t **" - }, - { - "name": "r_buffer_size", - "type": "int32_t*" - } - ] - }, - { - "name": "_put_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "const uint8_t*" - }, - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_available_packet_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_max_packet_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_packet_script", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "_put_packet_script", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "_get_packet_channel", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_packet_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3369852622, - "return_value": { - "type": "enum::MultiplayerPeer.TransferMode" - } - }, - { - "name": "_set_transfer_channel", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "channel", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_transfer_channel", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_set_transfer_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 950411049, - "arguments": [ - { - "name": "mode", - "type": "enum::MultiplayerPeer.TransferMode" - } - ] - }, - { - "name": "_get_transfer_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3369852622, - "return_value": { - "type": "enum::MultiplayerPeer.TransferMode" - } - }, - { - "name": "_set_target_peer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_packet_peer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_is_server", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_poll", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_close", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_disconnect_peer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 300928843, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - }, - { - "name": "force", - "type": "bool" - } - ] - }, - { - "name": "_get_unique_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_set_refuse_new_connections", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_is_refusing_new_connections", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_is_server_relay_supported", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_connection_status", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2147374275, - "return_value": { - "type": "enum::MultiplayerPeer.ConnectionStatus" - } - } - ] - }, - { - "name": "MultiplayerSpawner", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "add_spawnable_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_spawnable_scene_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_spawnable_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_spawnable_scenes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "spawn", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1991184589, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "data", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "get_spawn_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_spawn_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_spawn_limit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_spawn_limit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "limit", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_spawn_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1307783378, - "return_value": { - "type": "Callable" - } - }, - { - "name": "set_spawn_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "spawn_function", - "type": "Callable" - } - ] - } - ], - "signals": [ - { - "name": "despawned", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "spawned", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "spawn_path", - "setter": "set_spawn_path", - "getter": "get_spawn_path" - }, - { - "type": "int", - "name": "spawn_limit", - "setter": "set_spawn_limit", - "getter": "get_spawn_limit" - }, - { - "type": "Callable", - "name": "spawn_function", - "setter": "set_spawn_function", - "getter": "get_spawn_function" - } - ] - }, - { - "name": "MultiplayerSynchronizer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "VisibilityUpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_PROCESS_IDLE", - "value": 0 - }, - { - "name": "VISIBILITY_PROCESS_PHYSICS", - "value": 1 - }, - { - "name": "VISIBILITY_PROCESS_NONE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_root_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_replication_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "milliseconds", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_replication_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_delta_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "milliseconds", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_delta_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_replication_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3889206742, - "arguments": [ - { - "name": "config", - "type": "SceneReplicationConfig" - } - ] - }, - { - "name": "get_replication_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200254614, - "return_value": { - "type": "SceneReplicationConfig" - } - }, - { - "name": "set_visibility_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3494860300, - "arguments": [ - { - "name": "mode", - "type": "enum::MultiplayerSynchronizer.VisibilityUpdateMode" - } - ] - }, - { - "name": "get_visibility_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3352241418, - "return_value": { - "type": "enum::MultiplayerSynchronizer.VisibilityUpdateMode" - } - }, - { - "name": "update_visibility", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "for_peer", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_visibility_public", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visibility_public", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_visibility_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "filter", - "type": "Callable" - } - ] - }, - { - "name": "remove_visibility_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "filter", - "type": "Callable" - } - ] - }, - { - "name": "set_visibility_for", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - }, - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "get_visibility_for", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "peer", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "synchronized" - }, - { - "name": "delta_synchronized" - }, - { - "name": "visibility_changed", - "arguments": [ - { - "name": "for_peer", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "root_path", - "setter": "set_root_path", - "getter": "get_root_path" - }, - { - "type": "float", - "name": "replication_interval", - "setter": "set_replication_interval", - "getter": "get_replication_interval" - }, - { - "type": "float", - "name": "delta_interval", - "setter": "set_delta_interval", - "getter": "get_delta_interval" - }, - { - "type": "SceneReplicationConfig", - "name": "replication_config", - "setter": "set_replication_config", - "getter": "get_replication_config" - }, - { - "type": "int", - "name": "visibility_update_mode", - "setter": "set_visibility_update_mode", - "getter": "get_visibility_update_mode" - }, - { - "type": "bool", - "name": "public_visibility", - "setter": "set_visibility_public", - "getter": "is_visibility_public" - } - ] - }, - { - "name": "Mutex", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "lock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "try_lock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "unlock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "NativeMenu", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "Feature", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_GLOBAL_MENU", - "value": 0 - }, - { - "name": "FEATURE_POPUP_MENU", - "value": 1 - }, - { - "name": "FEATURE_OPEN_CLOSE_CALLBACK", - "value": 2 - }, - { - "name": "FEATURE_HOVER_CALLBACK", - "value": 3 - }, - { - "name": "FEATURE_KEY_CALLBACK", - "value": 4 - } - ] - }, - { - "name": "SystemMenus", - "is_bitfield": false, - "values": [ - { - "name": "INVALID_MENU_ID", - "value": 0 - }, - { - "name": "MAIN_MENU_ID", - "value": 1 - }, - { - "name": "APPLICATION_MENU_ID", - "value": 2 - }, - { - "name": "WINDOW_MENU_ID", - "value": 3 - }, - { - "name": "HELP_MENU_ID", - "value": 4 - }, - { - "name": "DOCK_MENU_ID", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1708975490, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::NativeMenu.Feature" - } - ] - }, - { - "name": "has_system_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 718213027, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "menu_id", - "type": "enum::NativeMenu.SystemMenus" - } - ] - }, - { - "name": "get_system_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 469707506, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "menu_id", - "type": "enum::NativeMenu.SystemMenus" - } - ] - }, - { - "name": "get_system_menu_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1281499290, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu_id", - "type": "enum::NativeMenu.SystemMenus" - } - ] - }, - { - "name": "get_system_menu_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1281499290, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "menu_id", - "type": "enum::NativeMenu.SystemMenus" - } - ] - }, - { - "name": "set_system_menu_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3925225603, - "arguments": [ - { - "name": "menu_id", - "type": "enum::NativeMenu.SystemMenus" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "create_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "has_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "free_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2450610377, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "set_interface_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "is_rtl", - "type": "bool" - } - ] - }, - { - "name": "set_popup_open_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "get_popup_open_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3170603026, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_popup_close_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "get_popup_close_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3170603026, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_minimum_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_minimum_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "is_opened", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "add_submenu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1002030223, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "submenu_rid", - "type": "RID" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 980552939, - "hash_compatibility": [ - 2553375659 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 980552939, - "hash_compatibility": [ - 2553375659 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_icon_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1372188274, - "hash_compatibility": [ - 2987595282 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_icon_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1372188274, - "hash_compatibility": [ - 2987595282 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 980552939, - "hash_compatibility": [ - 2553375659 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_icon_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1372188274, - "hash_compatibility": [ - 2987595282 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "icon", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_multistate_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2674635658, - "hash_compatibility": [ - 1558592568 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - }, - { - "name": "default_state", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "key_callback", - "type": "Callable", - "default_value": "Callable()" - }, - { - "name": "tag", - "type": "Variant", - "default_value": "null" - }, - { - "name": "accelerator", - "type": "enum::Key", - "default_value": "0" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 448810126, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "find_item_index_with_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1362438794, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "find_item_index_with_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1260085030, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "tag", - "type": "Variant" - } - ] - }, - { - "name": "find_item_index_with_submenu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 893635918, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "submenu_rid", - "type": "RID" - } - ] - }, - { - "name": "is_item_checked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_radio_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639989698, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_key_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639989698, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_submenu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_accelerator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 316800700, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_max_states", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3391850701, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_indentation_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "set_item_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checkable", - "type": "bool" - } - ] - }, - { - "name": "set_item_radio_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "checkable", - "type": "bool" - } - ] - }, - { - "name": "set_item_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2779810226, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "set_item_hover_callbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2779810226, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "set_item_key_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2779810226, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key_callback", - "type": "Callable" - } - ] - }, - { - "name": "set_item_tag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2706844827, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "Variant" - } - ] - }, - { - "name": "set_item_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153150897, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "set_item_submenu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "submenu_rid", - "type": "RID" - } - ] - }, - { - "name": "set_item_accelerator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 786300043, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "keycode", - "type": "enum::Key" - } - ] - }, - { - "name": "set_item_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_item_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "set_item_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153150897, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "set_item_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "state", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_max_states", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1388763257, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "set_item_indentation_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 23951185, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "target_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "is_system_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "rid", - "type": "RID" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - } - ] - }, - { - "name": "NavigationAgent2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_path_desired_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_desired_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_target_desired_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_target_desired_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_neighbor_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "neighbor_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_neighbor_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_neighbors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_neighbors", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_neighbors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_time_horizon_agents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_time_horizon_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_time_horizon_obstacles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_time_horizon_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pathfinding_algorithm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783519915, - "arguments": [ - { - "name": "pathfinding_algorithm", - "type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm" - } - ] - }, - { - "name": "get_pathfinding_algorithm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3000421146, - "return_value": { - "type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm" - } - }, - { - "name": "set_path_postprocessing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2864409082, - "arguments": [ - { - "name": "path_postprocessing", - "type": "enum::NavigationPathQueryParameters2D.PathPostProcessing" - } - ] - }, - { - "name": "get_path_postprocessing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3798118993, - "return_value": { - "type": "enum::NavigationPathQueryParameters2D.PathPostProcessing" - } - }, - { - "name": "set_path_metadata_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 24274129, - "arguments": [ - { - "name": "flags", - "type": "bitfield::NavigationPathQueryParameters2D.PathMetadataFlags" - } - ] - }, - { - "name": "get_path_metadata_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 488152976, - "return_value": { - "type": "bitfield::NavigationPathQueryParameters2D.PathMetadataFlags" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_simplify_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_simplify_epsilon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_simplify_epsilon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_search_max_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polygons", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_path_search_max_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_path_search_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_search_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_path_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_next_path_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_velocity_forced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "distance_to_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_current_navigation_result", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166799483, - "return_value": { - "type": "NavigationPathQueryResult2D" - } - }, - { - "name": "get_current_navigation_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "get_current_navigation_path_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_target_reached", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_target_reachable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_navigation_finished", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_final_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_avoidance_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "mask_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mask_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_avoidance_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_avoidance_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_debug_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_use_custom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_use_custom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_path_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_path_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_debug_path_custom_point_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "point_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_debug_path_custom_point_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_debug_path_custom_line_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "line_width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_debug_path_custom_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "path_changed" - }, - { - "name": "target_reached" - }, - { - "name": "waypoint_reached", - "arguments": [ - { - "name": "details", - "type": "Dictionary" - } - ] - }, - { - "name": "link_reached", - "arguments": [ - { - "name": "details", - "type": "Dictionary" - } - ] - }, - { - "name": "navigation_finished" - }, - { - "name": "velocity_computed", - "arguments": [ - { - "name": "safe_velocity", - "type": "Vector2" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "float", - "name": "path_desired_distance", - "setter": "set_path_desired_distance", - "getter": "get_path_desired_distance" - }, - { - "type": "float", - "name": "target_desired_distance", - "setter": "set_target_desired_distance", - "getter": "get_target_desired_distance" - }, - { - "type": "float", - "name": "path_max_distance", - "setter": "set_path_max_distance", - "getter": "get_path_max_distance" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "int", - "name": "pathfinding_algorithm", - "setter": "set_pathfinding_algorithm", - "getter": "get_pathfinding_algorithm" - }, - { - "type": "int", - "name": "path_postprocessing", - "setter": "set_path_postprocessing", - "getter": "get_path_postprocessing" - }, - { - "type": "int", - "name": "path_metadata_flags", - "setter": "set_path_metadata_flags", - "getter": "get_path_metadata_flags" - }, - { - "type": "bool", - "name": "simplify_path", - "setter": "set_simplify_path", - "getter": "get_simplify_path" - }, - { - "type": "float", - "name": "simplify_epsilon", - "setter": "set_simplify_epsilon", - "getter": "get_simplify_epsilon" - }, - { - "type": "float", - "name": "path_return_max_length", - "setter": "set_path_return_max_length", - "getter": "get_path_return_max_length" - }, - { - "type": "float", - "name": "path_return_max_radius", - "setter": "set_path_return_max_radius", - "getter": "get_path_return_max_radius" - }, - { - "type": "int", - "name": "path_search_max_polygons", - "setter": "set_path_search_max_polygons", - "getter": "get_path_search_max_polygons" - }, - { - "type": "float", - "name": "path_search_max_distance", - "setter": "set_path_search_max_distance", - "getter": "get_path_search_max_distance" - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled" - }, - { - "type": "Vector2", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "neighbor_distance", - "setter": "set_neighbor_distance", - "getter": "get_neighbor_distance" - }, - { - "type": "int", - "name": "max_neighbors", - "setter": "set_max_neighbors", - "getter": "get_max_neighbors" - }, - { - "type": "float", - "name": "time_horizon_agents", - "setter": "set_time_horizon_agents", - "getter": "get_time_horizon_agents" - }, - { - "type": "float", - "name": "time_horizon_obstacles", - "setter": "set_time_horizon_obstacles", - "getter": "get_time_horizon_obstacles" - }, - { - "type": "float", - "name": "max_speed", - "setter": "set_max_speed", - "getter": "get_max_speed" - }, - { - "type": "int", - "name": "avoidance_layers", - "setter": "set_avoidance_layers", - "getter": "get_avoidance_layers" - }, - { - "type": "int", - "name": "avoidance_mask", - "setter": "set_avoidance_mask", - "getter": "get_avoidance_mask" - }, - { - "type": "float", - "name": "avoidance_priority", - "setter": "set_avoidance_priority", - "getter": "get_avoidance_priority" - }, - { - "type": "bool", - "name": "debug_enabled", - "setter": "set_debug_enabled", - "getter": "get_debug_enabled" - }, - { - "type": "bool", - "name": "debug_use_custom", - "setter": "set_debug_use_custom", - "getter": "get_debug_use_custom" - }, - { - "type": "Color", - "name": "debug_path_custom_color", - "setter": "set_debug_path_custom_color", - "getter": "get_debug_path_custom_color" - }, - { - "type": "float", - "name": "debug_path_custom_point_size", - "setter": "set_debug_path_custom_point_size", - "getter": "get_debug_path_custom_point_size" - }, - { - "type": "float", - "name": "debug_path_custom_line_width", - "setter": "set_debug_path_custom_line_width", - "getter": "get_debug_path_custom_line_width" - } - ] - }, - { - "name": "NavigationAgent3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_path_desired_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_desired_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_target_desired_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_target_desired_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_height_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "path_height_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_height_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_3d_avoidance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_use_3d_avoidance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_keep_y_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_keep_y_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_neighbor_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "neighbor_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_neighbor_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_neighbors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_neighbors", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_neighbors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_time_horizon_agents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_time_horizon_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_time_horizon_obstacles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_time_horizon_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pathfinding_algorithm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 394560454, - "arguments": [ - { - "name": "pathfinding_algorithm", - "type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm" - } - ] - }, - { - "name": "get_pathfinding_algorithm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3398491350, - "return_value": { - "type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm" - } - }, - { - "name": "set_path_postprocessing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2267362344, - "arguments": [ - { - "name": "path_postprocessing", - "type": "enum::NavigationPathQueryParameters3D.PathPostProcessing" - } - ] - }, - { - "name": "get_path_postprocessing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3883858360, - "return_value": { - "type": "enum::NavigationPathQueryParameters3D.PathPostProcessing" - } - }, - { - "name": "set_path_metadata_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2713846708, - "arguments": [ - { - "name": "flags", - "type": "bitfield::NavigationPathQueryParameters3D.PathMetadataFlags" - } - ] - }, - { - "name": "get_path_metadata_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1582332802, - "return_value": { - "type": "bitfield::NavigationPathQueryParameters3D.PathMetadataFlags" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_simplify_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_simplify_epsilon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_simplify_epsilon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_search_max_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polygons", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_path_search_max_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_path_search_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_search_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_path_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_next_path_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_velocity_forced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "distance_to_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_current_navigation_result", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 728825684, - "return_value": { - "type": "NavigationPathQueryResult3D" - } - }, - { - "name": "get_current_navigation_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_current_navigation_path_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_target_reached", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_target_reachable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_navigation_finished", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_final_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_avoidance_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "mask_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mask_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_avoidance_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_avoidance_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_debug_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_use_custom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_use_custom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_path_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_path_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_debug_path_custom_point_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "point_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_debug_path_custom_point_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "path_changed" - }, - { - "name": "target_reached" - }, - { - "name": "waypoint_reached", - "arguments": [ - { - "name": "details", - "type": "Dictionary" - } - ] - }, - { - "name": "link_reached", - "arguments": [ - { - "name": "details", - "type": "Dictionary" - } - ] - }, - { - "name": "navigation_finished" - }, - { - "name": "velocity_computed", - "arguments": [ - { - "name": "safe_velocity", - "type": "Vector3" - } - ] - } - ], - "properties": [ - { - "type": "Vector3", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "float", - "name": "path_desired_distance", - "setter": "set_path_desired_distance", - "getter": "get_path_desired_distance" - }, - { - "type": "float", - "name": "target_desired_distance", - "setter": "set_target_desired_distance", - "getter": "get_target_desired_distance" - }, - { - "type": "float", - "name": "path_height_offset", - "setter": "set_path_height_offset", - "getter": "get_path_height_offset" - }, - { - "type": "float", - "name": "path_max_distance", - "setter": "set_path_max_distance", - "getter": "get_path_max_distance" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "int", - "name": "pathfinding_algorithm", - "setter": "set_pathfinding_algorithm", - "getter": "get_pathfinding_algorithm" - }, - { - "type": "int", - "name": "path_postprocessing", - "setter": "set_path_postprocessing", - "getter": "get_path_postprocessing" - }, - { - "type": "int", - "name": "path_metadata_flags", - "setter": "set_path_metadata_flags", - "getter": "get_path_metadata_flags" - }, - { - "type": "bool", - "name": "simplify_path", - "setter": "set_simplify_path", - "getter": "get_simplify_path" - }, - { - "type": "float", - "name": "simplify_epsilon", - "setter": "set_simplify_epsilon", - "getter": "get_simplify_epsilon" - }, - { - "type": "float", - "name": "path_return_max_length", - "setter": "set_path_return_max_length", - "getter": "get_path_return_max_length" - }, - { - "type": "float", - "name": "path_return_max_radius", - "setter": "set_path_return_max_radius", - "getter": "get_path_return_max_radius" - }, - { - "type": "int", - "name": "path_search_max_polygons", - "setter": "set_path_search_max_polygons", - "getter": "get_path_search_max_polygons" - }, - { - "type": "float", - "name": "path_search_max_distance", - "setter": "set_path_search_max_distance", - "getter": "get_path_search_max_distance" - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled" - }, - { - "type": "Vector3", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "neighbor_distance", - "setter": "set_neighbor_distance", - "getter": "get_neighbor_distance" - }, - { - "type": "int", - "name": "max_neighbors", - "setter": "set_max_neighbors", - "getter": "get_max_neighbors" - }, - { - "type": "float", - "name": "time_horizon_agents", - "setter": "set_time_horizon_agents", - "getter": "get_time_horizon_agents" - }, - { - "type": "float", - "name": "time_horizon_obstacles", - "setter": "set_time_horizon_obstacles", - "getter": "get_time_horizon_obstacles" - }, - { - "type": "float", - "name": "max_speed", - "setter": "set_max_speed", - "getter": "get_max_speed" - }, - { - "type": "bool", - "name": "use_3d_avoidance", - "setter": "set_use_3d_avoidance", - "getter": "get_use_3d_avoidance" - }, - { - "type": "bool", - "name": "keep_y_velocity", - "setter": "set_keep_y_velocity", - "getter": "get_keep_y_velocity" - }, - { - "type": "int", - "name": "avoidance_layers", - "setter": "set_avoidance_layers", - "getter": "get_avoidance_layers" - }, - { - "type": "int", - "name": "avoidance_mask", - "setter": "set_avoidance_mask", - "getter": "get_avoidance_mask" - }, - { - "type": "float", - "name": "avoidance_priority", - "setter": "set_avoidance_priority", - "getter": "get_avoidance_priority" - }, - { - "type": "bool", - "name": "debug_enabled", - "setter": "set_debug_enabled", - "getter": "get_debug_enabled" - }, - { - "type": "bool", - "name": "debug_use_custom", - "setter": "set_debug_use_custom", - "getter": "get_debug_use_custom" - }, - { - "type": "Color", - "name": "debug_path_custom_color", - "setter": "set_debug_path_custom_color", - "getter": "get_debug_path_custom_color" - }, - { - "type": "float", - "name": "debug_path_custom_point_size", - "setter": "set_debug_path_custom_point_size", - "getter": "get_debug_path_custom_point_size" - } - ] - }, - { - "name": "NavigationLink2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_bidirectional", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "bidirectional", - "type": "bool" - } - ] - }, - { - "name": "is_bidirectional", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_global_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_global_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_global_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_global_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "bidirectional", - "setter": "set_bidirectional", - "getter": "is_bidirectional" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "Vector2", - "name": "start_position", - "setter": "set_start_position", - "getter": "get_start_position" - }, - { - "type": "Vector2", - "name": "end_position", - "setter": "set_end_position", - "getter": "get_end_position" - }, - { - "type": "float", - "name": "enter_cost", - "setter": "set_enter_cost", - "getter": "get_enter_cost" - }, - { - "type": "float", - "name": "travel_cost", - "setter": "set_travel_cost", - "getter": "get_travel_cost" - } - ] - }, - { - "name": "NavigationLink3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_bidirectional", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "bidirectional", - "type": "bool" - } - ] - }, - { - "name": "is_bidirectional", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_global_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_global_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_global_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_global_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "bidirectional", - "setter": "set_bidirectional", - "getter": "is_bidirectional" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "Vector3", - "name": "start_position", - "setter": "set_start_position", - "getter": "get_start_position" - }, - { - "type": "Vector3", - "name": "end_position", - "setter": "set_end_position", - "getter": "get_end_position" - }, - { - "type": "float", - "name": "enter_cost", - "setter": "set_enter_cost", - "getter": "get_enter_cost" - }, - { - "type": "float", - "name": "travel_cost", - "setter": "set_travel_cost", - "getter": "get_travel_cost" - } - ] - }, - { - "name": "NavigationMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "SamplePartitionType", - "is_bitfield": false, - "values": [ - { - "name": "SAMPLE_PARTITION_WATERSHED", - "value": 0 - }, - { - "name": "SAMPLE_PARTITION_MONOTONE", - "value": 1 - }, - { - "name": "SAMPLE_PARTITION_LAYERS", - "value": 2 - }, - { - "name": "SAMPLE_PARTITION_MAX", - "value": 3 - } - ] - }, - { - "name": "ParsedGeometryType", - "is_bitfield": false, - "values": [ - { - "name": "PARSED_GEOMETRY_MESH_INSTANCES", - "value": 0 - }, - { - "name": "PARSED_GEOMETRY_STATIC_COLLIDERS", - "value": 1 - }, - { - "name": "PARSED_GEOMETRY_BOTH", - "value": 2 - }, - { - "name": "PARSED_GEOMETRY_MAX", - "value": 3 - } - ] - }, - { - "name": "SourceGeometryMode", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_GEOMETRY_ROOT_NODE_CHILDREN", - "value": 0 - }, - { - "name": "SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN", - "value": 1 - }, - { - "name": "SOURCE_GEOMETRY_GROUPS_EXPLICIT", - "value": 2 - }, - { - "name": "SOURCE_GEOMETRY_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_sample_partition_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2472437533, - "arguments": [ - { - "name": "sample_partition_type", - "type": "enum::NavigationMesh.SamplePartitionType" - } - ] - }, - { - "name": "get_sample_partition_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 833513918, - "return_value": { - "type": "enum::NavigationMesh.SamplePartitionType" - } - }, - { - "name": "set_parsed_geometry_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3064713163, - "arguments": [ - { - "name": "geometry_type", - "type": "enum::NavigationMesh.ParsedGeometryType" - } - ] - }, - { - "name": "get_parsed_geometry_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3928011953, - "return_value": { - "type": "enum::NavigationMesh.ParsedGeometryType" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_source_geometry_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2700825194, - "arguments": [ - { - "name": "mask", - "type": "enum::NavigationMesh.SourceGeometryMode" - } - ] - }, - { - "name": "get_source_geometry_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2770484141, - "return_value": { - "type": "enum::NavigationMesh.SourceGeometryMode" - } - }, - { - "name": "set_source_group_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "mask", - "type": "StringName" - } - ] - }, - { - "name": "get_source_group_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_cell_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cell_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cell_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_border_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "border_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_border_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_agent_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "agent_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_agent_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_agent_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "agent_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_agent_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_agent_max_climb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "agent_max_climb", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_agent_max_climb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_agent_max_slope", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "agent_max_slope", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_agent_max_slope", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_region_min_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "region_min_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_region_min_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_region_merge_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "region_merge_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_region_merge_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_edge_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge_max_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_edge_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_edge_max_error", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge_max_error", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_edge_max_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vertices_per_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "vertices_per_polygon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vertices_per_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_detail_sample_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "detail_sample_dist", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_detail_sample_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_detail_sample_max_error", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "detail_sample_max_error", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_detail_sample_max_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_filter_low_hanging_obstacles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "filter_low_hanging_obstacles", - "type": "bool" - } - ] - }, - { - "name": "get_filter_low_hanging_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_filter_ledge_spans", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "filter_ledge_spans", - "type": "bool" - } - ] - }, - { - "name": "get_filter_ledge_spans", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_filter_walkable_low_height_spans", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "filter_walkable_low_height_spans", - "type": "bool" - } - ] - }, - { - "name": "get_filter_walkable_low_height_spans", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_filter_baking_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "baking_aabb", - "type": "AABB" - } - ] - }, - { - "name": "get_filter_baking_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_filter_baking_aabb_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "baking_aabb_offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_filter_baking_aabb_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "add_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "polygon", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_polygon_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3668444399, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_from_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "PackedVector3Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "Array", - "name": "polygons", - "setter": "_set_polygons", - "getter": "_get_polygons" - }, - { - "type": "int", - "name": "sample_partition_type", - "setter": "set_sample_partition_type", - "getter": "get_sample_partition_type" - }, - { - "type": "int", - "name": "geometry_parsed_geometry_type", - "setter": "set_parsed_geometry_type", - "getter": "get_parsed_geometry_type" - }, - { - "type": "int", - "name": "geometry_collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "int", - "name": "geometry_source_geometry_mode", - "setter": "set_source_geometry_mode", - "getter": "get_source_geometry_mode" - }, - { - "type": "String", - "name": "geometry_source_group_name", - "setter": "set_source_group_name", - "getter": "get_source_group_name" - }, - { - "type": "float", - "name": "cell_size", - "setter": "set_cell_size", - "getter": "get_cell_size" - }, - { - "type": "float", - "name": "cell_height", - "setter": "set_cell_height", - "getter": "get_cell_height" - }, - { - "type": "float", - "name": "border_size", - "setter": "set_border_size", - "getter": "get_border_size" - }, - { - "type": "float", - "name": "agent_height", - "setter": "set_agent_height", - "getter": "get_agent_height" - }, - { - "type": "float", - "name": "agent_radius", - "setter": "set_agent_radius", - "getter": "get_agent_radius" - }, - { - "type": "float", - "name": "agent_max_climb", - "setter": "set_agent_max_climb", - "getter": "get_agent_max_climb" - }, - { - "type": "float", - "name": "agent_max_slope", - "setter": "set_agent_max_slope", - "getter": "get_agent_max_slope" - }, - { - "type": "float", - "name": "region_min_size", - "setter": "set_region_min_size", - "getter": "get_region_min_size" - }, - { - "type": "float", - "name": "region_merge_size", - "setter": "set_region_merge_size", - "getter": "get_region_merge_size" - }, - { - "type": "float", - "name": "edge_max_length", - "setter": "set_edge_max_length", - "getter": "get_edge_max_length" - }, - { - "type": "float", - "name": "edge_max_error", - "setter": "set_edge_max_error", - "getter": "get_edge_max_error" - }, - { - "type": "float", - "name": "vertices_per_polygon", - "setter": "set_vertices_per_polygon", - "getter": "get_vertices_per_polygon" - }, - { - "type": "float", - "name": "detail_sample_distance", - "setter": "set_detail_sample_distance", - "getter": "get_detail_sample_distance" - }, - { - "type": "float", - "name": "detail_sample_max_error", - "setter": "set_detail_sample_max_error", - "getter": "get_detail_sample_max_error" - }, - { - "type": "bool", - "name": "filter_low_hanging_obstacles", - "setter": "set_filter_low_hanging_obstacles", - "getter": "get_filter_low_hanging_obstacles" - }, - { - "type": "bool", - "name": "filter_ledge_spans", - "setter": "set_filter_ledge_spans", - "getter": "get_filter_ledge_spans" - }, - { - "type": "bool", - "name": "filter_walkable_low_height_spans", - "setter": "set_filter_walkable_low_height_spans", - "getter": "get_filter_walkable_low_height_spans" - }, - { - "type": "AABB", - "name": "filter_baking_aabb", - "setter": "set_filter_baking_aabb", - "getter": "get_filter_baking_aabb" - }, - { - "type": "Vector3", - "name": "filter_baking_aabb_offset", - "setter": "set_filter_baking_aabb_offset", - "getter": "get_filter_baking_aabb_offset" - } - ] - }, - { - "name": "NavigationMeshGenerator", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "bake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1401173477, - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "root_node", - "type": "Node" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2923361153, - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - } - ] - }, - { - "name": "parse_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3172802542, - "hash_compatibility": [ - 3703028813, - 685862123 - ], - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData3D" - }, - { - "name": "root_node", - "type": "Node" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "bake_from_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286748856, - "hash_compatibility": [ - 3669016597, - 2469318639 - ], - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData3D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - } - ] - }, - { - "name": "NavigationMeshSourceGeometryData2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "has_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_traversable_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "traversable_outlines", - "type": "typedarray::PackedVector2Array" - } - ] - }, - { - "name": "get_traversable_outlines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::PackedVector2Array" - } - }, - { - "name": "set_obstruction_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "obstruction_outlines", - "type": "typedarray::PackedVector2Array" - } - ] - }, - { - "name": "get_obstruction_outlines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::PackedVector2Array" - } - }, - { - "name": "append_traversable_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "traversable_outlines", - "type": "typedarray::PackedVector2Array" - } - ] - }, - { - "name": "append_obstruction_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "obstruction_outlines", - "type": "typedarray::PackedVector2Array" - } - ] - }, - { - "name": "add_traversable_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "shape_outline", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "add_obstruction_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "shape_outline", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "merge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 742424872, - "arguments": [ - { - "name": "other_geometry", - "type": "NavigationMeshSourceGeometryData2D" - } - ] - }, - { - "name": "add_projected_obstruction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3882407395, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector2Array" - }, - { - "name": "carve", - "type": "bool" - } - ] - }, - { - "name": "clear_projected_obstructions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_projected_obstructions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "projected_obstructions", - "type": "Array" - } - ] - }, - { - "name": "get_projected_obstructions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_bounds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3248174, - "return_value": { - "type": "Rect2" - } - } - ], - "properties": [ - { - "type": "Array", - "name": "traversable_outlines", - "setter": "set_traversable_outlines", - "getter": "get_traversable_outlines" - }, - { - "type": "Array", - "name": "obstruction_outlines", - "setter": "set_obstruction_outlines", - "getter": "get_obstruction_outlines" - }, - { - "type": "Array", - "name": "projected_obstructions", - "setter": "set_projected_obstructions", - "getter": "get_projected_obstructions" - } - ] - }, - { - "name": "NavigationMeshSourceGeometryData3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "vertices", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_indices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "indices", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_indices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "append_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3117535015, - "arguments": [ - { - "name": "vertices", - "type": "PackedFloat32Array" - }, - { - "name": "indices", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "has_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 975462459, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - }, - { - "name": "xform", - "type": "Transform3D" - } - ] - }, - { - "name": "add_mesh_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235710913, - "arguments": [ - { - "name": "mesh_array", - "type": "Array" - }, - { - "name": "xform", - "type": "Transform3D" - } - ] - }, - { - "name": "add_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1440358797, - "arguments": [ - { - "name": "faces", - "type": "PackedVector3Array" - }, - { - "name": "xform", - "type": "Transform3D" - } - ] - }, - { - "name": "merge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 655828145, - "arguments": [ - { - "name": "other_geometry", - "type": "NavigationMeshSourceGeometryData3D" - } - ] - }, - { - "name": "add_projected_obstruction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3351846707, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - }, - { - "name": "elevation", - "type": "float", - "meta": "float" - }, - { - "name": "height", - "type": "float", - "meta": "float" - }, - { - "name": "carve", - "type": "bool" - } - ] - }, - { - "name": "clear_projected_obstructions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_projected_obstructions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "projected_obstructions", - "type": "Array" - } - ] - }, - { - "name": "get_projected_obstructions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_bounds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1021181044, - "return_value": { - "type": "AABB" - } - } - ], - "properties": [ - { - "type": "PackedVector3Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "PackedInt32Array", - "name": "indices", - "setter": "set_indices", - "getter": "get_indices" - }, - { - "type": "Array", - "name": "projected_obstructions", - "setter": "set_projected_obstructions", - "getter": "get_projected_obstructions" - } - ] - }, - { - "name": "NavigationObstacle2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_affect_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_affect_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_carve_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_carve_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "PackedVector2Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "bool", - "name": "affect_navigation_mesh", - "setter": "set_affect_navigation_mesh", - "getter": "get_affect_navigation_mesh" - }, - { - "type": "bool", - "name": "carve_navigation_mesh", - "setter": "set_carve_navigation_mesh", - "getter": "get_carve_navigation_mesh" - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled" - }, - { - "type": "Vector2", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "int", - "name": "avoidance_layers", - "setter": "set_avoidance_layers", - "getter": "get_avoidance_layers" - } - ] - }, - { - "name": "NavigationObstacle3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_avoidance_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_avoidance_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_3d_avoidance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_use_3d_avoidance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_affect_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_affect_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_carve_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_carve_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "PackedVector3Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "bool", - "name": "affect_navigation_mesh", - "setter": "set_affect_navigation_mesh", - "getter": "get_affect_navigation_mesh" - }, - { - "type": "bool", - "name": "carve_navigation_mesh", - "setter": "set_carve_navigation_mesh", - "getter": "get_carve_navigation_mesh" - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled" - }, - { - "type": "Vector3", - "name": "velocity", - "setter": "set_velocity", - "getter": "get_velocity" - }, - { - "type": "int", - "name": "avoidance_layers", - "setter": "set_avoidance_layers", - "getter": "get_avoidance_layers" - }, - { - "type": "bool", - "name": "use_3d_avoidance", - "setter": "set_use_3d_avoidance", - "getter": "get_use_3d_avoidance" - } - ] - }, - { - "name": "NavigationPathQueryParameters2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "PathfindingAlgorithm", - "is_bitfield": false, - "values": [ - { - "name": "PATHFINDING_ALGORITHM_ASTAR", - "value": 0 - } - ] - }, - { - "name": "PathPostProcessing", - "is_bitfield": false, - "values": [ - { - "name": "PATH_POSTPROCESSING_CORRIDORFUNNEL", - "value": 0 - }, - { - "name": "PATH_POSTPROCESSING_EDGECENTERED", - "value": 1 - }, - { - "name": "PATH_POSTPROCESSING_NONE", - "value": 2 - } - ] - }, - { - "name": "PathMetadataFlags", - "is_bitfield": true, - "values": [ - { - "name": "PATH_METADATA_INCLUDE_NONE", - "value": 0 - }, - { - "name": "PATH_METADATA_INCLUDE_TYPES", - "value": 1 - }, - { - "name": "PATH_METADATA_INCLUDE_RIDS", - "value": 2 - }, - { - "name": "PATH_METADATA_INCLUDE_OWNERS", - "value": 4 - }, - { - "name": "PATH_METADATA_INCLUDE_ALL", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_pathfinding_algorithm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783519915, - "arguments": [ - { - "name": "pathfinding_algorithm", - "type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm" - } - ] - }, - { - "name": "get_pathfinding_algorithm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3000421146, - "return_value": { - "type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm" - } - }, - { - "name": "set_path_postprocessing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2864409082, - "arguments": [ - { - "name": "path_postprocessing", - "type": "enum::NavigationPathQueryParameters2D.PathPostProcessing" - } - ] - }, - { - "name": "get_path_postprocessing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3798118993, - "return_value": { - "type": "enum::NavigationPathQueryParameters2D.PathPostProcessing" - } - }, - { - "name": "set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "start_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "target_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_metadata_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 24274129, - "arguments": [ - { - "name": "flags", - "type": "bitfield::NavigationPathQueryParameters2D.PathMetadataFlags" - } - ] - }, - { - "name": "get_metadata_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 488152976, - "return_value": { - "type": "bitfield::NavigationPathQueryParameters2D.PathMetadataFlags" - } - }, - { - "name": "set_simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_simplify_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_simplify_epsilon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_simplify_epsilon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_included_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "regions", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_included_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_excluded_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "regions", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_excluded_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_path_return_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_search_max_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polygons", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_path_search_max_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_path_search_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_search_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "map", - "setter": "set_map", - "getter": "get_map" - }, - { - "type": "Vector2", - "name": "start_position", - "setter": "set_start_position", - "getter": "get_start_position" - }, - { - "type": "Vector2", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "int", - "name": "pathfinding_algorithm", - "setter": "set_pathfinding_algorithm", - "getter": "get_pathfinding_algorithm" - }, - { - "type": "int", - "name": "path_postprocessing", - "setter": "set_path_postprocessing", - "getter": "get_path_postprocessing" - }, - { - "type": "int", - "name": "metadata_flags", - "setter": "set_metadata_flags", - "getter": "get_metadata_flags" - }, - { - "type": "bool", - "name": "simplify_path", - "setter": "set_simplify_path", - "getter": "get_simplify_path" - }, - { - "type": "float", - "name": "simplify_epsilon", - "setter": "set_simplify_epsilon", - "getter": "get_simplify_epsilon" - }, - { - "type": "typedarray::RID", - "name": "excluded_regions", - "setter": "set_excluded_regions", - "getter": "get_excluded_regions" - }, - { - "type": "typedarray::RID", - "name": "included_regions", - "setter": "set_included_regions", - "getter": "get_included_regions" - }, - { - "type": "float", - "name": "path_return_max_length", - "setter": "set_path_return_max_length", - "getter": "get_path_return_max_length" - }, - { - "type": "float", - "name": "path_return_max_radius", - "setter": "set_path_return_max_radius", - "getter": "get_path_return_max_radius" - }, - { - "type": "int", - "name": "path_search_max_polygons", - "setter": "set_path_search_max_polygons", - "getter": "get_path_search_max_polygons" - }, - { - "type": "float", - "name": "path_search_max_distance", - "setter": "set_path_search_max_distance", - "getter": "get_path_search_max_distance" - } - ] - }, - { - "name": "NavigationPathQueryParameters3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "PathfindingAlgorithm", - "is_bitfield": false, - "values": [ - { - "name": "PATHFINDING_ALGORITHM_ASTAR", - "value": 0 - } - ] - }, - { - "name": "PathPostProcessing", - "is_bitfield": false, - "values": [ - { - "name": "PATH_POSTPROCESSING_CORRIDORFUNNEL", - "value": 0 - }, - { - "name": "PATH_POSTPROCESSING_EDGECENTERED", - "value": 1 - }, - { - "name": "PATH_POSTPROCESSING_NONE", - "value": 2 - } - ] - }, - { - "name": "PathMetadataFlags", - "is_bitfield": true, - "values": [ - { - "name": "PATH_METADATA_INCLUDE_NONE", - "value": 0 - }, - { - "name": "PATH_METADATA_INCLUDE_TYPES", - "value": 1 - }, - { - "name": "PATH_METADATA_INCLUDE_RIDS", - "value": 2 - }, - { - "name": "PATH_METADATA_INCLUDE_OWNERS", - "value": 4 - }, - { - "name": "PATH_METADATA_INCLUDE_ALL", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_pathfinding_algorithm", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 394560454, - "arguments": [ - { - "name": "pathfinding_algorithm", - "type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm" - } - ] - }, - { - "name": "get_pathfinding_algorithm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3398491350, - "return_value": { - "type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm" - } - }, - { - "name": "set_path_postprocessing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2267362344, - "arguments": [ - { - "name": "path_postprocessing", - "type": "enum::NavigationPathQueryParameters3D.PathPostProcessing" - } - ] - }, - { - "name": "get_path_postprocessing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3883858360, - "return_value": { - "type": "enum::NavigationPathQueryParameters3D.PathPostProcessing" - } - }, - { - "name": "set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "start_position", - "type": "Vector3" - } - ] - }, - { - "name": "get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "target_position", - "type": "Vector3" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_metadata_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2713846708, - "arguments": [ - { - "name": "flags", - "type": "bitfield::NavigationPathQueryParameters3D.PathMetadataFlags" - } - ] - }, - { - "name": "get_metadata_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1582332802, - "return_value": { - "type": "bitfield::NavigationPathQueryParameters3D.PathMetadataFlags" - } - }, - { - "name": "set_simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_simplify_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_simplify_epsilon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_simplify_epsilon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_included_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "regions", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_included_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_excluded_regions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "regions", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_excluded_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_path_return_max_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_return_max_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_return_max_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_path_search_max_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_polygons", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_path_search_max_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_path_search_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_search_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "map", - "setter": "set_map", - "getter": "get_map" - }, - { - "type": "Vector3", - "name": "start_position", - "setter": "set_start_position", - "getter": "get_start_position" - }, - { - "type": "Vector3", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "int", - "name": "pathfinding_algorithm", - "setter": "set_pathfinding_algorithm", - "getter": "get_pathfinding_algorithm" - }, - { - "type": "int", - "name": "path_postprocessing", - "setter": "set_path_postprocessing", - "getter": "get_path_postprocessing" - }, - { - "type": "int", - "name": "metadata_flags", - "setter": "set_metadata_flags", - "getter": "get_metadata_flags" - }, - { - "type": "bool", - "name": "simplify_path", - "setter": "set_simplify_path", - "getter": "get_simplify_path" - }, - { - "type": "float", - "name": "simplify_epsilon", - "setter": "set_simplify_epsilon", - "getter": "get_simplify_epsilon" - }, - { - "type": "typedarray::RID", - "name": "excluded_regions", - "setter": "set_excluded_regions", - "getter": "get_excluded_regions" - }, - { - "type": "typedarray::RID", - "name": "included_regions", - "setter": "set_included_regions", - "getter": "get_included_regions" - }, - { - "type": "float", - "name": "path_return_max_length", - "setter": "set_path_return_max_length", - "getter": "get_path_return_max_length" - }, - { - "type": "float", - "name": "path_return_max_radius", - "setter": "set_path_return_max_radius", - "getter": "get_path_return_max_radius" - }, - { - "type": "int", - "name": "path_search_max_polygons", - "setter": "set_path_search_max_polygons", - "getter": "get_path_search_max_polygons" - }, - { - "type": "float", - "name": "path_search_max_distance", - "setter": "set_path_search_max_distance", - "getter": "get_path_search_max_distance" - } - ] - }, - { - "name": "NavigationPathQueryResult2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "PathSegmentType", - "is_bitfield": false, - "values": [ - { - "name": "PATH_SEGMENT_TYPE_REGION", - "value": 0 - }, - { - "name": "PATH_SEGMENT_TYPE_LINK", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "path", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_path_types", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "path_types", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_path_types", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_path_rids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "path_rids", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_path_rids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_path_owner_ids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3709968205, - "arguments": [ - { - "name": "path_owner_ids", - "type": "PackedInt64Array" - } - ] - }, - { - "name": "get_path_owner_ids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_path_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "path", - "setter": "set_path", - "getter": "get_path" - }, - { - "type": "PackedInt32Array", - "name": "path_types", - "setter": "set_path_types", - "getter": "get_path_types" - }, - { - "type": "typedarray::RID", - "name": "path_rids", - "setter": "set_path_rids", - "getter": "get_path_rids" - }, - { - "type": "PackedInt64Array", - "name": "path_owner_ids", - "setter": "set_path_owner_ids", - "getter": "get_path_owner_ids" - }, - { - "type": "float", - "name": "path_length", - "setter": "set_path_length", - "getter": "get_path_length" - } - ] - }, - { - "name": "NavigationPathQueryResult3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "PathSegmentType", - "is_bitfield": false, - "values": [ - { - "name": "PATH_SEGMENT_TYPE_REGION", - "value": 0 - }, - { - "name": "PATH_SEGMENT_TYPE_LINK", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334873810, - "arguments": [ - { - "name": "path", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "set_path_types", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "path_types", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_path_types", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_path_rids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "path_rids", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_path_rids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_path_owner_ids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3709968205, - "arguments": [ - { - "name": "path_owner_ids", - "type": "PackedInt64Array" - } - ] - }, - { - "name": "get_path_owner_ids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_path_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_path_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "PackedVector3Array", - "name": "path", - "setter": "set_path", - "getter": "get_path" - }, - { - "type": "PackedInt32Array", - "name": "path_types", - "setter": "set_path_types", - "getter": "get_path_types" - }, - { - "type": "typedarray::RID", - "name": "path_rids", - "setter": "set_path_rids", - "getter": "get_path_rids" - }, - { - "type": "PackedInt64Array", - "name": "path_owner_ids", - "setter": "set_path_owner_ids", - "getter": "get_path_owner_ids" - }, - { - "type": "float", - "name": "path_length", - "setter": "set_path_length", - "getter": "get_path_length" - } - ] - }, - { - "name": "NavigationPolygon", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "SamplePartitionType", - "is_bitfield": false, - "values": [ - { - "name": "SAMPLE_PARTITION_CONVEX_PARTITION", - "value": 0 - }, - { - "name": "SAMPLE_PARTITION_TRIANGULATE", - "value": 1 - }, - { - "name": "SAMPLE_PARTITION_MAX", - "value": 2 - } - ] - }, - { - "name": "ParsedGeometryType", - "is_bitfield": false, - "values": [ - { - "name": "PARSED_GEOMETRY_MESH_INSTANCES", - "value": 0 - }, - { - "name": "PARSED_GEOMETRY_STATIC_COLLIDERS", - "value": 1 - }, - { - "name": "PARSED_GEOMETRY_BOTH", - "value": 2 - }, - { - "name": "PARSED_GEOMETRY_MAX", - "value": 3 - } - ] - }, - { - "name": "SourceGeometryMode", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_GEOMETRY_ROOT_NODE_CHILDREN", - "value": 0 - }, - { - "name": "SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN", - "value": 1 - }, - { - "name": "SOURCE_GEOMETRY_GROUPS_EXPLICIT", - "value": 2 - }, - { - "name": "SOURCE_GEOMETRY_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "vertices", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "add_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "polygon", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_polygon_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3668444399, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330232164, - "return_value": { - "type": "NavigationMesh" - } - }, - { - "name": "add_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "outline", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "add_outline_at_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1569738947, - "arguments": [ - { - "name": "outline", - "type": "PackedVector2Array" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outline_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1201971903, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "outline", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3946907486, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_outline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "make_polygons_from_outlines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_border_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "border_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_border_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sample_partition_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2441478482, - "arguments": [ - { - "name": "sample_partition_type", - "type": "enum::NavigationPolygon.SamplePartitionType" - } - ] - }, - { - "name": "get_sample_partition_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3887422851, - "return_value": { - "type": "enum::NavigationPolygon.SamplePartitionType" - } - }, - { - "name": "set_parsed_geometry_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2507971764, - "arguments": [ - { - "name": "geometry_type", - "type": "enum::NavigationPolygon.ParsedGeometryType" - } - ] - }, - { - "name": "get_parsed_geometry_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1073219508, - "return_value": { - "type": "enum::NavigationPolygon.ParsedGeometryType" - } - }, - { - "name": "set_parsed_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_parsed_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_parsed_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_parsed_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_source_geometry_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4002316705, - "arguments": [ - { - "name": "geometry_mode", - "type": "enum::NavigationPolygon.SourceGeometryMode" - } - ] - }, - { - "name": "get_source_geometry_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 459686762, - "return_value": { - "type": "enum::NavigationPolygon.SourceGeometryMode" - } - }, - { - "name": "set_source_geometry_group_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "group_name", - "type": "StringName" - } - ] - }, - { - "name": "get_source_geometry_group_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_agent_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "agent_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_agent_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_baking_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_baking_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_baking_rect_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "rect_offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_baking_rect_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "vertices", - "setter": "set_vertices", - "getter": "get_vertices" - }, - { - "type": "Array", - "name": "polygons", - "setter": "_set_polygons", - "getter": "_get_polygons" - }, - { - "type": "Array", - "name": "outlines", - "setter": "_set_outlines", - "getter": "_get_outlines" - }, - { - "type": "int", - "name": "sample_partition_type", - "setter": "set_sample_partition_type", - "getter": "get_sample_partition_type" - }, - { - "type": "int", - "name": "parsed_geometry_type", - "setter": "set_parsed_geometry_type", - "getter": "get_parsed_geometry_type" - }, - { - "type": "int", - "name": "parsed_collision_mask", - "setter": "set_parsed_collision_mask", - "getter": "get_parsed_collision_mask" - }, - { - "type": "int", - "name": "source_geometry_mode", - "setter": "set_source_geometry_mode", - "getter": "get_source_geometry_mode" - }, - { - "type": "String", - "name": "source_geometry_group_name", - "setter": "set_source_geometry_group_name", - "getter": "get_source_geometry_group_name" - }, - { - "type": "float", - "name": "cell_size", - "setter": "set_cell_size", - "getter": "get_cell_size" - }, - { - "type": "float", - "name": "border_size", - "setter": "set_border_size", - "getter": "get_border_size" - }, - { - "type": "float", - "name": "agent_radius", - "setter": "set_agent_radius", - "getter": "get_agent_radius" - }, - { - "type": "Rect2", - "name": "baking_rect", - "setter": "set_baking_rect", - "getter": "get_baking_rect" - }, - { - "type": "Vector2", - "name": "baking_rect_offset", - "setter": "set_baking_rect_offset", - "getter": "get_baking_rect_offset" - } - ] - }, - { - "name": "NavigationRegion2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_navigation_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1515040758, - "arguments": [ - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - } - ] - }, - { - "name": "get_navigation_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1046532237, - "return_value": { - "type": "NavigationPolygon" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_region_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "bake_navigation_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "on_thread", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_baking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - } - ], - "signals": [ - { - "name": "navigation_polygon_changed" - }, - { - "name": "bake_finished" - } - ], - "properties": [ - { - "type": "NavigationPolygon", - "name": "navigation_polygon", - "setter": "set_navigation_polygon", - "getter": "get_navigation_polygon" - }, - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "use_edge_connections", - "setter": "set_use_edge_connections", - "getter": "get_use_edge_connections" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "float", - "name": "enter_cost", - "setter": "set_enter_cost", - "getter": "get_enter_cost" - }, - { - "type": "float", - "name": "travel_cost", - "setter": "set_travel_cost", - "getter": "get_travel_cost" - } - ] - }, - { - "name": "NavigationRegion3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2923361153, - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - } - ] - }, - { - "name": "get_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1468720886, - "return_value": { - "type": "NavigationMesh" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "navigation_map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_navigation_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_region_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "bake_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "on_thread", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_baking", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - } - ], - "signals": [ - { - "name": "navigation_mesh_changed" - }, - { - "name": "bake_finished" - } - ], - "properties": [ - { - "type": "NavigationMesh", - "name": "navigation_mesh", - "setter": "set_navigation_mesh", - "getter": "get_navigation_mesh" - }, - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "use_edge_connections", - "setter": "set_use_edge_connections", - "getter": "get_use_edge_connections" - }, - { - "type": "int", - "name": "navigation_layers", - "setter": "set_navigation_layers", - "getter": "get_navigation_layers" - }, - { - "type": "float", - "name": "enter_cost", - "setter": "set_enter_cost", - "getter": "get_enter_cost" - }, - { - "type": "float", - "name": "travel_cost", - "setter": "set_travel_cost", - "getter": "get_travel_cost" - } - ] - }, - { - "name": "NavigationServer2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "ProcessInfo", - "is_bitfield": false, - "values": [ - { - "name": "INFO_ACTIVE_MAPS", - "value": 0 - }, - { - "name": "INFO_REGION_COUNT", - "value": 1 - }, - { - "name": "INFO_AGENT_COUNT", - "value": 2 - }, - { - "name": "INFO_LINK_COUNT", - "value": 3 - }, - { - "name": "INFO_POLYGON_COUNT", - "value": 4 - }, - { - "name": "INFO_EDGE_COUNT", - "value": 5 - }, - { - "name": "INFO_EDGE_MERGE_COUNT", - "value": 6 - }, - { - "name": "INFO_EDGE_CONNECTION_COUNT", - "value": 7 - }, - { - "name": "INFO_EDGE_FREE_COUNT", - "value": 8 - }, - { - "name": "INFO_OBSTACLE_COUNT", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "get_maps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "map_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "map_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "map_is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "cell_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_merge_rasterizer_cell_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_merge_rasterizer_cell_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "map_get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_edge_connection_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_edge_connection_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_link_connection_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_link_connection_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1279824844, - "hash_compatibility": [ - 3146466012, - 56240621 - ], - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "origin", - "type": "Vector2" - }, - { - "name": "destination", - "type": "Vector2" - }, - { - "name": "optimize", - "type": "bool" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "map_get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1358334418, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector2" - } - ] - }, - { - "name": "map_get_closest_point_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1353467510, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector2" - } - ] - }, - { - "name": "map_get_links", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_force_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_use_async_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "map_get_use_async_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_random_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3271000763, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "uniformly", - "type": "bool" - } - ] - }, - { - "name": "query_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1254915886, - "hash_compatibility": [ - 3394638789 - ], - "arguments": [ - { - "name": "parameters", - "type": "NavigationPathQueryParameters2D" - }, - { - "name": "result", - "type": "NavigationPathQueryResult2D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "region_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "region_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_use_async_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_use_async_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "region_get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "region_get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_owner_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "owner_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "region_get_owner_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_owns_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 219849798, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "region_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "region_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "region_get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "region_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 213527486, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_navigation_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3633623451, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - } - ] - }, - { - "name": "region_get_connections_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_get_connection_pathway_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546185844, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "connection", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "region_get_connection_pathway_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546185844, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "connection", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "region_get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1358334418, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector2" - } - ] - }, - { - "name": "region_get_random_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3271000763, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "uniformly", - "type": "bool" - } - ] - }, - { - "name": "region_get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1097232729, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "link_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "link_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "link_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "link_get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_bidirectional", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "bidirectional", - "type": "bool" - } - ] - }, - { - "name": "link_is_bidirectional", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "link_get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "link_get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "link_get_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "link_get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "link_get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_owner_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "owner_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "link_get_owner_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "agent_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "agent_set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "agent_get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "agent_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "agent_get_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_neighbor_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_neighbor_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_max_neighbors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "agent_get_max_neighbors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_time_horizon_agents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_time_horizon_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_time_horizon_obstacles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_time_horizon_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_max_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_max_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_velocity_forced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "agent_set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "agent_get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "agent_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_is_map_changed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "agent_has_avoidance_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "agent_get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "agent_get_avoidance_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_avoidance_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "obstacle_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "obstacle_set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "obstacle_get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "obstacle_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "obstacle_get_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "obstacle_get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "obstacle_get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "obstacle_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 29476483, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "vertices", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "obstacle_get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2222557395, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "obstacle_get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "parse_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1766905497, - "hash_compatibility": [ - 1176164995 - ], - "arguments": [ - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData2D" - }, - { - "name": "root_node", - "type": "Node" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "bake_from_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2179660022, - "hash_compatibility": [ - 2909414286 - ], - "arguments": [ - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData2D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "bake_from_source_geometry_data_async", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2179660022, - "hash_compatibility": [ - 2909414286 - ], - "arguments": [ - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData2D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "is_baking_navigation_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3729405808, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - } - ] - }, - { - "name": "source_geometry_parser_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "source_geometry_parser_set_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "parser", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2457191505, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "path", - "type": "PackedVector2Array" - }, - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "set_debug_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_process_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1640219858, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::NavigationServer2D.ProcessInfo" - } - ] - } - ], - "signals": [ - { - "name": "map_changed", - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "navigation_debug_changed" - }, - { - "name": "avoidance_debug_changed" - } - ] - }, - { - "name": "NavigationServer2DManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "register_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "create_callback", - "type": "Callable" - } - ] - }, - { - "name": "set_default_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "NavigationServer3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "ProcessInfo", - "is_bitfield": false, - "values": [ - { - "name": "INFO_ACTIVE_MAPS", - "value": 0 - }, - { - "name": "INFO_REGION_COUNT", - "value": 1 - }, - { - "name": "INFO_AGENT_COUNT", - "value": 2 - }, - { - "name": "INFO_LINK_COUNT", - "value": 3 - }, - { - "name": "INFO_POLYGON_COUNT", - "value": 4 - }, - { - "name": "INFO_EDGE_COUNT", - "value": 5 - }, - { - "name": "INFO_EDGE_MERGE_COUNT", - "value": 6 - }, - { - "name": "INFO_EDGE_CONNECTION_COUNT", - "value": 7 - }, - { - "name": "INFO_EDGE_FREE_COUNT", - "value": 8 - }, - { - "name": "INFO_OBSTACLE_COUNT", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "get_maps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "map_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "map_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "map_is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_up", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "up", - "type": "Vector3" - } - ] - }, - { - "name": "map_get_up", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "cell_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_cell_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "cell_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_cell_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_merge_rasterizer_cell_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_merge_rasterizer_cell_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "map_get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_edge_connection_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_edge_connection_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_link_connection_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "map_get_link_connection_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 276783190, - "hash_compatibility": [ - 1187418690, - 2121045993 - ], - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "origin", - "type": "Vector3" - }, - { - "name": "destination", - "type": "Vector3" - }, - { - "name": "optimize", - "type": "bool" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "map_get_closest_point_to_segment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3830095642, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "start", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - }, - { - "name": "use_collision", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "map_get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2056183332, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "map_get_closest_point_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2056183332, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "map_get_closest_point_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 553364610, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "map_get_links", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_regions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_force_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_set_use_async_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "map_get_use_async_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "map_get_random_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 722801526, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "map", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "uniformly", - "type": "bool" - } - ] - }, - { - "name": "query_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2146930868, - "hash_compatibility": [ - 3415008901 - ], - "arguments": [ - { - "name": "parameters", - "type": "NavigationPathQueryParameters3D" - }, - { - "name": "result", - "type": "NavigationPathQueryResult3D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "region_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "region_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_use_async_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_use_async_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_use_edge_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "region_get_use_edge_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "region_get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "region_get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_owner_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "owner_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "region_get_owner_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_owns_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2360011153, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "region_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "region_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "region_get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "region_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1128465797, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_set_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2764952978, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_mesh", - "type": "NavigationMesh" - } - ] - }, - { - "name": "region_bake_navigation_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1401173477, - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "root_node", - "type": "Node" - } - ] - }, - { - "name": "region_get_connections_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "region_get_connection_pathway_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3440143363, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "connection", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "region_get_connection_pathway_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3440143363, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "connection", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "region_get_closest_point_to_segment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3830095642, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "start", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - }, - { - "name": "use_collision", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "region_get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2056183332, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "region_get_closest_point_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2056183332, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "to_point", - "type": "Vector3" - } - ] - }, - { - "name": "region_get_random_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 722801526, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "uniformly", - "type": "bool" - } - ] - }, - { - "name": "region_get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "region", - "type": "RID" - } - ] - }, - { - "name": "link_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "link_get_iteration_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "link_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "link_get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_bidirectional", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "bidirectional", - "type": "bool" - } - ] - }, - { - "name": "link_is_bidirectional", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_navigation_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "navigation_layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "link_get_navigation_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_start_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "link_get_start_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_end_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "link_get_end_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_enter_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "enter_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "link_get_enter_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_travel_cost", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "travel_cost", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "link_get_travel_cost", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "link_set_owner_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "link", - "type": "RID" - }, - { - "name": "owner_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "link_get_owner_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "link", - "type": "RID" - } - ] - }, - { - "name": "agent_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "agent_set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "agent_get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_use_3d_avoidance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "agent_get_use_3d_avoidance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "agent_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "agent_get_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_neighbor_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_neighbor_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_max_neighbors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "agent_get_max_neighbors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_time_horizon_agents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_time_horizon_agents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_time_horizon_obstacles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "time_horizon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_time_horizon_obstacles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_max_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "max_speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_max_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_velocity_forced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "agent_set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "agent_get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "agent_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_is_map_changed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "agent_has_avoidance_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "agent_get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "agent_get_avoidance_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "agent_set_avoidance_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "agent", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "agent_get_avoidance_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "agent", - "type": "RID" - } - ] - }, - { - "name": "obstacle_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "obstacle_set_avoidance_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "obstacle_get_avoidance_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_use_3d_avoidance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "obstacle_get_use_3d_avoidance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "obstacle_get_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "obstacle_get_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "obstacle_get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "obstacle_get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "obstacle_get_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "obstacle_get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_vertices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4030257846, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "vertices", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "obstacle_get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 808965560, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "obstacle_set_avoidance_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "obstacle_get_avoidance_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "obstacle", - "type": "RID" - } - ] - }, - { - "name": "parse_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3172802542, - "hash_compatibility": [ - 3703028813, - 685862123 - ], - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData3D" - }, - { - "name": "root_node", - "type": "Node" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "bake_from_source_geometry_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286748856, - "hash_compatibility": [ - 3669016597, - 2469318639 - ], - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData3D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "bake_from_source_geometry_data_async", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286748856, - "hash_compatibility": [ - 3669016597, - 2469318639 - ], - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - }, - { - "name": "source_geometry_data", - "type": "NavigationMeshSourceGeometryData3D" - }, - { - "name": "callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "is_baking_navigation_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3142026141, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "navigation_mesh", - "type": "NavigationMesh" - } - ] - }, - { - "name": "source_geometry_parser_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "source_geometry_parser_set_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "parser", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "simplify_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2344122170, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "path", - "type": "PackedVector3Array" - }, - { - "name": "epsilon", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "set_debug_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_debug_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_process_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1938440894, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::NavigationServer3D.ProcessInfo" - } - ] - } - ], - "signals": [ - { - "name": "map_changed", - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "navigation_debug_changed" - }, - { - "name": "avoidance_debug_changed" - } - ] - }, - { - "name": "NavigationServer3DManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "register_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "create_callback", - "type": "Callable" - } - ] - }, - { - "name": "set_default_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "NinePatchRect", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "AxisStretchMode", - "is_bitfield": false, - "values": [ - { - "name": "AXIS_STRETCH_MODE_STRETCH", - "value": 0 - }, - { - "name": "AXIS_STRETCH_MODE_TILE", - "value": 1 - }, - { - "name": "AXIS_STRETCH_MODE_TILE_FIT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_patch_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 437707142, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_patch_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1983885014, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_region_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_region_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_draw_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_center", - "type": "bool" - } - ] - }, - { - "name": "is_draw_center_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_h_axis_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3219608417, - "arguments": [ - { - "name": "mode", - "type": "enum::NinePatchRect.AxisStretchMode" - } - ] - }, - { - "name": "get_h_axis_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3317113799, - "return_value": { - "type": "enum::NinePatchRect.AxisStretchMode" - } - }, - { - "name": "set_v_axis_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3219608417, - "arguments": [ - { - "name": "mode", - "type": "enum::NinePatchRect.AxisStretchMode" - } - ] - }, - { - "name": "get_v_axis_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3317113799, - "return_value": { - "type": "enum::NinePatchRect.AxisStretchMode" - } - } - ], - "signals": [ - { - "name": "texture_changed" - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "bool", - "name": "draw_center", - "setter": "set_draw_center", - "getter": "is_draw_center_enabled" - }, - { - "type": "Rect2", - "name": "region_rect", - "setter": "set_region_rect", - "getter": "get_region_rect" - }, - { - "type": "int", - "name": "patch_margin_left", - "setter": "set_patch_margin", - "getter": "get_patch_margin", - "index": 0 - }, - { - "type": "int", - "name": "patch_margin_top", - "setter": "set_patch_margin", - "getter": "get_patch_margin", - "index": 1 - }, - { - "type": "int", - "name": "patch_margin_right", - "setter": "set_patch_margin", - "getter": "get_patch_margin", - "index": 2 - }, - { - "type": "int", - "name": "patch_margin_bottom", - "setter": "set_patch_margin", - "getter": "get_patch_margin", - "index": 3 - }, - { - "type": "int", - "name": "axis_stretch_horizontal", - "setter": "set_h_axis_stretch_mode", - "getter": "get_h_axis_stretch_mode" - }, - { - "type": "int", - "name": "axis_stretch_vertical", - "setter": "set_v_axis_stretch_mode", - "getter": "get_v_axis_stretch_mode" - } - ] - }, - { - "name": "Node", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_ENTER_TREE", - "value": 10 - }, - { - "name": "NOTIFICATION_EXIT_TREE", - "value": 11 - }, - { - "name": "NOTIFICATION_MOVED_IN_PARENT", - "value": 12 - }, - { - "name": "NOTIFICATION_READY", - "value": 13 - }, - { - "name": "NOTIFICATION_PAUSED", - "value": 14 - }, - { - "name": "NOTIFICATION_UNPAUSED", - "value": 15 - }, - { - "name": "NOTIFICATION_PHYSICS_PROCESS", - "value": 16 - }, - { - "name": "NOTIFICATION_PROCESS", - "value": 17 - }, - { - "name": "NOTIFICATION_PARENTED", - "value": 18 - }, - { - "name": "NOTIFICATION_UNPARENTED", - "value": 19 - }, - { - "name": "NOTIFICATION_SCENE_INSTANTIATED", - "value": 20 - }, - { - "name": "NOTIFICATION_DRAG_BEGIN", - "value": 21 - }, - { - "name": "NOTIFICATION_DRAG_END", - "value": 22 - }, - { - "name": "NOTIFICATION_PATH_RENAMED", - "value": 23 - }, - { - "name": "NOTIFICATION_CHILD_ORDER_CHANGED", - "value": 24 - }, - { - "name": "NOTIFICATION_INTERNAL_PROCESS", - "value": 25 - }, - { - "name": "NOTIFICATION_INTERNAL_PHYSICS_PROCESS", - "value": 26 - }, - { - "name": "NOTIFICATION_POST_ENTER_TREE", - "value": 27 - }, - { - "name": "NOTIFICATION_DISABLED", - "value": 28 - }, - { - "name": "NOTIFICATION_ENABLED", - "value": 29 - }, - { - "name": "NOTIFICATION_RESET_PHYSICS_INTERPOLATION", - "value": 2001 - }, - { - "name": "NOTIFICATION_EDITOR_PRE_SAVE", - "value": 9001 - }, - { - "name": "NOTIFICATION_EDITOR_POST_SAVE", - "value": 9002 - }, - { - "name": "NOTIFICATION_WM_MOUSE_ENTER", - "value": 1002 - }, - { - "name": "NOTIFICATION_WM_MOUSE_EXIT", - "value": 1003 - }, - { - "name": "NOTIFICATION_WM_WINDOW_FOCUS_IN", - "value": 1004 - }, - { - "name": "NOTIFICATION_WM_WINDOW_FOCUS_OUT", - "value": 1005 - }, - { - "name": "NOTIFICATION_WM_CLOSE_REQUEST", - "value": 1006 - }, - { - "name": "NOTIFICATION_WM_GO_BACK_REQUEST", - "value": 1007 - }, - { - "name": "NOTIFICATION_WM_SIZE_CHANGED", - "value": 1008 - }, - { - "name": "NOTIFICATION_WM_DPI_CHANGE", - "value": 1009 - }, - { - "name": "NOTIFICATION_VP_MOUSE_ENTER", - "value": 1010 - }, - { - "name": "NOTIFICATION_VP_MOUSE_EXIT", - "value": 1011 - }, - { - "name": "NOTIFICATION_WM_POSITION_CHANGED", - "value": 1012 - }, - { - "name": "NOTIFICATION_WM_OUTPUT_MAX_LINEAR_VALUE_CHANGED", - "value": 1013 - }, - { - "name": "NOTIFICATION_OS_MEMORY_WARNING", - "value": 2009 - }, - { - "name": "NOTIFICATION_TRANSLATION_CHANGED", - "value": 2010 - }, - { - "name": "NOTIFICATION_WM_ABOUT", - "value": 2011 - }, - { - "name": "NOTIFICATION_CRASH", - "value": 2012 - }, - { - "name": "NOTIFICATION_OS_IME_UPDATE", - "value": 2013 - }, - { - "name": "NOTIFICATION_APPLICATION_RESUMED", - "value": 2014 - }, - { - "name": "NOTIFICATION_APPLICATION_PAUSED", - "value": 2015 - }, - { - "name": "NOTIFICATION_APPLICATION_FOCUS_IN", - "value": 2016 - }, - { - "name": "NOTIFICATION_APPLICATION_FOCUS_OUT", - "value": 2017 - }, - { - "name": "NOTIFICATION_TEXT_SERVER_CHANGED", - "value": 2018 - }, - { - "name": "NOTIFICATION_APPLICATION_PIP_MODE_ENTERED", - "value": 2019 - }, - { - "name": "NOTIFICATION_APPLICATION_PIP_MODE_EXITED", - "value": 2020 - }, - { - "name": "NOTIFICATION_ACCESSIBILITY_UPDATE", - "value": 3000 - }, - { - "name": "NOTIFICATION_ACCESSIBILITY_INVALIDATE", - "value": 3001 - } - ], - "enums": [ - { - "name": "ProcessMode", - "is_bitfield": false, - "values": [ - { - "name": "PROCESS_MODE_INHERIT", - "value": 0 - }, - { - "name": "PROCESS_MODE_PAUSABLE", - "value": 1 - }, - { - "name": "PROCESS_MODE_WHEN_PAUSED", - "value": 2 - }, - { - "name": "PROCESS_MODE_ALWAYS", - "value": 3 - }, - { - "name": "PROCESS_MODE_DISABLED", - "value": 4 - } - ] - }, - { - "name": "ProcessThreadGroup", - "is_bitfield": false, - "values": [ - { - "name": "PROCESS_THREAD_GROUP_INHERIT", - "value": 0 - }, - { - "name": "PROCESS_THREAD_GROUP_MAIN_THREAD", - "value": 1 - }, - { - "name": "PROCESS_THREAD_GROUP_SUB_THREAD", - "value": 2 - } - ] - }, - { - "name": "ProcessThreadMessages", - "is_bitfield": true, - "values": [ - { - "name": "FLAG_PROCESS_THREAD_MESSAGES", - "value": 1 - }, - { - "name": "FLAG_PROCESS_THREAD_MESSAGES_PHYSICS", - "value": 2 - }, - { - "name": "FLAG_PROCESS_THREAD_MESSAGES_ALL", - "value": 3 - } - ] - }, - { - "name": "PhysicsInterpolationMode", - "is_bitfield": false, - "values": [ - { - "name": "PHYSICS_INTERPOLATION_MODE_INHERIT", - "value": 0 - }, - { - "name": "PHYSICS_INTERPOLATION_MODE_ON", - "value": 1 - }, - { - "name": "PHYSICS_INTERPOLATION_MODE_OFF", - "value": 2 - } - ] - }, - { - "name": "DuplicateFlags", - "is_bitfield": false, - "values": [ - { - "name": "DUPLICATE_SIGNALS", - "value": 1 - }, - { - "name": "DUPLICATE_GROUPS", - "value": 2 - }, - { - "name": "DUPLICATE_SCRIPTS", - "value": 4 - }, - { - "name": "DUPLICATE_USE_INSTANTIATION", - "value": 8 - }, - { - "name": "DUPLICATE_INTERNAL_STATE", - "value": 16 - }, - { - "name": "DUPLICATE_DEFAULT", - "value": 15 - } - ] - }, - { - "name": "InternalMode", - "is_bitfield": false, - "values": [ - { - "name": "INTERNAL_MODE_DISABLED", - "value": 0 - }, - { - "name": "INTERNAL_MODE_FRONT", - "value": 1 - }, - { - "name": "INTERNAL_MODE_BACK", - "value": 2 - } - ] - }, - { - "name": "AutoTranslateMode", - "is_bitfield": false, - "values": [ - { - "name": "AUTO_TRANSLATE_MODE_INHERIT", - "value": 0 - }, - { - "name": "AUTO_TRANSLATE_MODE_ALWAYS", - "value": 1 - }, - { - "name": "AUTO_TRANSLATE_MODE_DISABLED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_physics_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_enter_tree", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_exit_tree", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_ready", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_configuration_warnings", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_accessibility_configuration_warnings", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "_shortcut_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "_unhandled_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "_unhandled_key_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3754044979, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "_get_focused_accessibility_element", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "print_orphan_nodes", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_orphan_node_ids", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "add_sibling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2570952461, - "arguments": [ - { - "name": "sibling", - "type": "Node", - "meta": "required" - }, - { - "name": "force_readable_name", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "hash_compatibility": [ - 83702148 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "add_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3863233950, - "hash_compatibility": [ - 3070154285 - ], - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - }, - { - "name": "force_readable_name", - "type": "bool", - "default_value": "false" - }, - { - "name": "internal", - "type": "enum::Node.InternalMode", - "default_value": "0" - } - ] - }, - { - "name": "remove_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "reparent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3685795103, - "hash_compatibility": [ - 2570952461 - ], - "arguments": [ - { - "name": "new_parent", - "type": "Node", - "meta": "required" - }, - { - "name": "keep_global_transform", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_child_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 894402480, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "include_internal", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_children", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 873284517, - "return_value": { - "type": "typedarray::Node" - }, - "arguments": [ - { - "name": "include_internal", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_child", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 541253412, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "include_internal", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "has_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 861721659, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2734337346, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_or_null", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2734337346, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "find_child", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2008217037, - "hash_compatibility": [ - 4253159453 - ], - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "pattern", - "type": "String" - }, - { - "name": "recursive", - "type": "bool", - "default_value": "true" - }, - { - "name": "owned", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "find_children", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2560337219, - "hash_compatibility": [ - 1585018254 - ], - "return_value": { - "type": "typedarray::Node" - }, - "arguments": [ - { - "name": "pattern", - "type": "String" - }, - { - "name": "type", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "recursive", - "type": "bool", - "default_value": "true" - }, - { - "name": "owned", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "find_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1140089439, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "pattern", - "type": "String" - } - ] - }, - { - "name": "has_node_and_resource", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 861721659, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_node_and_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 502563882, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "is_inside_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_part_of_edited_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_ancestor_of", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "is_greater_than", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "get_path_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 498846349, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - }, - { - "name": "use_unique_path", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_to_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3683006648, - "arguments": [ - { - "name": "group", - "type": "StringName" - }, - { - "name": "persistent", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_from_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "is_in_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "move_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3315886247, - "arguments": [ - { - "name": "child_node", - "type": "Node", - "meta": "required" - }, - { - "name": "to_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_groups", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "set_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "owner", - "type": "Node" - } - ] - }, - { - "name": "get_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "get_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 894402480, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "include_internal", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "print_tree", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "print_tree_pretty", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_tree_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "get_tree_string_pretty", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_scene_file_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "scene_file_path", - "type": "String" - } - ] - }, - { - "name": "get_scene_file_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "propagate_notification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "what", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "propagate_call", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1871007965, - "hash_compatibility": [ - 1667910434 - ], - "arguments": [ - { - "name": "method", - "type": "StringName" - }, - { - "name": "args", - "type": "Array", - "default_value": "[]" - }, - { - "name": "parent_first", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_physics_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_physics_process_delta_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "is_physics_processing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_process_delta_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_process_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_process_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_physics_process_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_physics_process_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_processing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_processing_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_shortcut_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_processing_shortcut_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_unhandled_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_processing_unhandled_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_unhandled_key_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_processing_unhandled_key_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1841290486, - "arguments": [ - { - "name": "mode", - "type": "enum::Node.ProcessMode" - } - ] - }, - { - "name": "get_process_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 739966102, - "return_value": { - "type": "enum::Node.ProcessMode" - } - }, - { - "name": "can_process", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_thread_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2275442745, - "arguments": [ - { - "name": "mode", - "type": "enum::Node.ProcessThreadGroup" - } - ] - }, - { - "name": "get_process_thread_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1866404740, - "return_value": { - "type": "enum::Node.ProcessThreadGroup" - } - }, - { - "name": "set_process_thread_messages", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1357280998, - "arguments": [ - { - "name": "flags", - "type": "bitfield::Node.ProcessThreadMessages" - } - ] - }, - { - "name": "get_process_thread_messages", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4228993612, - "return_value": { - "type": "bitfield::Node.ProcessThreadMessages" - } - }, - { - "name": "set_process_thread_group_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "order", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_process_thread_group_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "queue_accessibility_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_accessibility_element", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_display_folded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "fold", - "type": "bool" - } - ] - }, - { - "name": "is_displayed_folded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_process_internal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_processing_internal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_physics_process_internal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_physics_processing_internal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_physics_interpolation_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3202404928, - "arguments": [ - { - "name": "mode", - "type": "enum::Node.PhysicsInterpolationMode" - } - ] - }, - { - "name": "get_physics_interpolation_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920385216, - "return_value": { - "type": "enum::Node.PhysicsInterpolationMode" - } - }, - { - "name": "is_physics_interpolated", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_physics_interpolated_and_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 776149714, - "arguments": [ - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "get_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2498906432, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - } - }, - { - "name": "can_auto_translate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_translation_domain_inherited", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_window", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1757182445, - "return_value": { - "type": "Window" - } - }, - { - "name": "get_last_exclusive_window", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1757182445, - "return_value": { - "type": "Window" - } - }, - { - "name": "get_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2958820483, - "return_value": { - "type": "SceneTree" - } - }, - { - "name": "create_tween", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426978995, - "return_value": { - "type": "Tween", - "meta": "required" - } - }, - { - "name": "duplicate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3511555459, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "flags", - "type": "int", - "meta": "int32", - "default_value": "15" - } - ] - }, - { - "name": "replace_by", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2570952461, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - }, - { - "name": "keep_groups", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_scene_instance_load_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "load_placeholder", - "type": "bool" - } - ] - }, - { - "name": "get_scene_instance_load_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_editable_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2731852923, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - }, - { - "name": "is_editable", - "type": "bool" - } - ] - }, - { - "name": "is_editable_instance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3093956946, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "get_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3596683776, - "return_value": { - "type": "Viewport" - } - }, - { - "name": "queue_free", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "request_ready", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_node_ready", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_multiplayer_authority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "recursive", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_multiplayer_authority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_multiplayer_authority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_multiplayer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 406750475, - "return_value": { - "type": "MultiplayerAPI" - } - }, - { - "name": "rpc_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "method", - "type": "StringName" - }, - { - "name": "config", - "type": "Variant" - } - ] - }, - { - "name": "get_node_rpc_config", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "set_editor_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "editor_description", - "type": "String" - } - ] - }, - { - "name": "get_editor_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_unique_name_in_owner", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_unique_name_in_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "atr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3344478075, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "context", - "type": "StringName", - "default_value": "\"\"" - } - ] - }, - { - "name": "atr_n", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259354841, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "message", - "type": "String" - }, - { - "name": "plural_message", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName", - "default_value": "\"\"" - } - ] - }, - { - "name": "rpc", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 4047867050, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "rpc_id", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 361499283, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "update_configuration_warnings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "call_deferred_thread_group", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3400424181, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "set_deferred_thread_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "notify_deferred_thread_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "what", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "call_thread_safe", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3400424181, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "set_thread_safe", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "notify_thread_safe", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "what", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "ready" - }, - { - "name": "renamed" - }, - { - "name": "tree_entered" - }, - { - "name": "tree_exiting" - }, - { - "name": "tree_exited" - }, - { - "name": "child_entered_tree", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "child_exiting_tree", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "child_order_changed" - }, - { - "name": "replacing_by", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "editor_description_changed", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "editor_state_changed" - } - ], - "properties": [ - { - "type": "StringName", - "name": "name", - "setter": "set_name", - "getter": "get_name" - }, - { - "type": "bool", - "name": "unique_name_in_owner", - "setter": "set_unique_name_in_owner", - "getter": "is_unique_name_in_owner" - }, - { - "type": "String", - "name": "scene_file_path", - "setter": "set_scene_file_path", - "getter": "get_scene_file_path" - }, - { - "type": "Node", - "name": "owner", - "setter": "set_owner", - "getter": "get_owner" - }, - { - "type": "MultiplayerAPI", - "name": "multiplayer", - "getter": "get_multiplayer" - }, - { - "type": "int", - "name": "process_mode", - "setter": "set_process_mode", - "getter": "get_process_mode" - }, - { - "type": "int", - "name": "process_priority", - "setter": "set_process_priority", - "getter": "get_process_priority" - }, - { - "type": "int", - "name": "process_physics_priority", - "setter": "set_physics_process_priority", - "getter": "get_physics_process_priority" - }, - { - "type": "int", - "name": "process_thread_group", - "setter": "set_process_thread_group", - "getter": "get_process_thread_group" - }, - { - "type": "int", - "name": "process_thread_group_order", - "setter": "set_process_thread_group_order", - "getter": "get_process_thread_group_order" - }, - { - "type": "int", - "name": "process_thread_messages", - "setter": "set_process_thread_messages", - "getter": "get_process_thread_messages" - }, - { - "type": "int", - "name": "physics_interpolation_mode", - "setter": "set_physics_interpolation_mode", - "getter": "get_physics_interpolation_mode" - }, - { - "type": "int", - "name": "auto_translate_mode", - "setter": "set_auto_translate_mode", - "getter": "get_auto_translate_mode" - }, - { - "type": "String", - "name": "editor_description", - "setter": "set_editor_description", - "getter": "get_editor_description" - } - ] - }, - { - "name": "Node2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CanvasItem", - "api_type": "core", - "methods": [ - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "set_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_rotation_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_skew", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_rotation_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_skew", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "rotate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "move_local_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2087892650, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "scaled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "move_local_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2087892650, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "scaled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "global_translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "apply_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "ratio", - "type": "Vector2" - } - ] - }, - { - "name": "set_global_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_global_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_global_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_global_rotation_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_global_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_global_rotation_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_global_skew", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radians", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_global_skew", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_global_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_global_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "set_global_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "look_at", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "get_angle_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2276447920, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "to_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "global_point", - "type": "Vector2" - } - ] - }, - { - "name": "to_global", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "local_point", - "type": "Vector2" - } - ] - }, - { - "name": "get_relative_transform_to_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 904556875, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "parent", - "type": "Node", - "meta": "required" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "float", - "name": "rotation", - "setter": "set_rotation", - "getter": "get_rotation" - }, - { - "type": "float", - "name": "rotation_degrees", - "setter": "set_rotation_degrees", - "getter": "get_rotation_degrees" - }, - { - "type": "Vector2", - "name": "scale", - "setter": "set_scale", - "getter": "get_scale" - }, - { - "type": "float", - "name": "skew", - "setter": "set_skew", - "getter": "get_skew" - }, - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "Vector2", - "name": "global_position", - "setter": "set_global_position", - "getter": "get_global_position" - }, - { - "type": "float", - "name": "global_rotation", - "setter": "set_global_rotation", - "getter": "get_global_rotation" - }, - { - "type": "float", - "name": "global_rotation_degrees", - "setter": "set_global_rotation_degrees", - "getter": "get_global_rotation_degrees" - }, - { - "type": "Vector2", - "name": "global_scale", - "setter": "set_global_scale", - "getter": "get_global_scale" - }, - { - "type": "float", - "name": "global_skew", - "setter": "set_global_skew", - "getter": "get_global_skew" - }, - { - "type": "Transform2D", - "name": "global_transform", - "setter": "set_global_transform", - "getter": "get_global_transform" - } - ] - }, - { - "name": "Node3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_TRANSFORM_CHANGED", - "value": 2000 - }, - { - "name": "NOTIFICATION_ENTER_WORLD", - "value": 41 - }, - { - "name": "NOTIFICATION_EXIT_WORLD", - "value": 42 - }, - { - "name": "NOTIFICATION_VISIBILITY_CHANGED", - "value": 43 - }, - { - "name": "NOTIFICATION_LOCAL_TRANSFORM_CHANGED", - "value": 44 - } - ], - "enums": [ - { - "name": "RotationEditMode", - "is_bitfield": false, - "values": [ - { - "name": "ROTATION_EDIT_MODE_EULER", - "value": 0 - }, - { - "name": "ROTATION_EDIT_MODE_QUATERNION", - "value": 1 - }, - { - "name": "ROTATION_EDIT_MODE_BASIS", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "local", - "type": "Transform3D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler_radians", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler_degrees", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1820889989, - "arguments": [ - { - "name": "order", - "type": "enum::EulerOrder" - } - ] - }, - { - "name": "get_rotation_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 916939469, - "return_value": { - "type": "enum::EulerOrder" - } - }, - { - "name": "set_rotation_edit_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 141483330, - "arguments": [ - { - "name": "edit_mode", - "type": "enum::Node3D.RotationEditMode" - } - ] - }, - { - "name": "get_rotation_edit_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1572188370, - "return_value": { - "type": "enum::Node3D.RotationEditMode" - } - }, - { - "name": "set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_quaternion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1727505552, - "arguments": [ - { - "name": "quaternion", - "type": "Quaternion" - } - ] - }, - { - "name": "get_quaternion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - }, - { - "name": "set_basis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1055510324, - "arguments": [ - { - "name": "basis", - "type": "Basis" - } - ] - }, - { - "name": "get_basis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "set_global_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "global", - "type": "Transform3D" - } - ] - }, - { - "name": "get_global_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_global_transform_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4183770049, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_global_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_global_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_global_basis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1055510324, - "arguments": [ - { - "name": "basis", - "type": "Basis" - } - ] - }, - { - "name": "get_global_basis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "set_global_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler_radians", - "type": "Vector3" - } - ] - }, - { - "name": "get_global_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_global_rotation_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler_degrees", - "type": "Vector3" - } - ] - }, - { - "name": "get_global_rotation_degrees", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_parent_node_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 151077316, - "return_value": { - "type": "Node3D" - } - }, - { - "name": "set_ignore_transform_notification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_as_top_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_set_as_top_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disable_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_scale_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_world_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 317588385, - "return_value": { - "type": "World3D" - } - }, - { - "name": "force_update_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_visibility_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_visibility_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "update_gizmos", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_gizmo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1544533845, - "arguments": [ - { - "name": "gizmo", - "type": "Node3DGizmo" - } - ] - }, - { - "name": "get_gizmos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node3DGizmo" - } - }, - { - "name": "clear_gizmos", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_subgizmo_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3317607635, - "arguments": [ - { - "name": "gizmo", - "type": "Node3DGizmo" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "clear_subgizmo_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_visible_in_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "hide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_notify_local_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_local_transform_notification_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_notify_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_transform_notification_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "rotate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3436291937, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "global_rotate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3436291937, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "global_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "global_translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "rotate_object_local", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3436291937, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - }, - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "scale_object_local", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "translate_object_local", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "rotate_x", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "rotate_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "rotate_z", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "orthonormalize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_identity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "look_at", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2882425029, - "hash_compatibility": [ - 3123400617 - ], - "arguments": [ - { - "name": "target", - "type": "Vector3" - }, - { - "name": "up", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - }, - { - "name": "use_model_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "look_at_from_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2086826090, - "hash_compatibility": [ - 4067663783 - ], - "arguments": [ - { - "name": "position", - "type": "Vector3" - }, - { - "name": "target", - "type": "Vector3" - }, - { - "name": "up", - "type": "Vector3", - "default_value": "Vector3(0, 1, 0)" - }, - { - "name": "use_model_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "to_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "global_point", - "type": "Vector3" - } - ] - }, - { - "name": "to_global", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "local_point", - "type": "Vector3" - } - ] - } - ], - "signals": [ - { - "name": "visibility_changed" - } - ], - "properties": [ - { - "type": "Transform3D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "Transform3D", - "name": "global_transform", - "setter": "set_global_transform", - "getter": "get_global_transform" - }, - { - "type": "Vector3", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "Vector3", - "name": "rotation", - "setter": "set_rotation", - "getter": "get_rotation" - }, - { - "type": "Vector3", - "name": "rotation_degrees", - "setter": "set_rotation_degrees", - "getter": "get_rotation_degrees" - }, - { - "type": "Quaternion", - "name": "quaternion", - "setter": "set_quaternion", - "getter": "get_quaternion" - }, - { - "type": "Basis", - "name": "basis", - "setter": "set_basis", - "getter": "get_basis" - }, - { - "type": "Vector3", - "name": "scale", - "setter": "set_scale", - "getter": "get_scale" - }, - { - "type": "int", - "name": "rotation_edit_mode", - "setter": "set_rotation_edit_mode", - "getter": "get_rotation_edit_mode" - }, - { - "type": "int", - "name": "rotation_order", - "setter": "set_rotation_order", - "getter": "get_rotation_order" - }, - { - "type": "bool", - "name": "top_level", - "setter": "set_as_top_level", - "getter": "is_set_as_top_level" - }, - { - "type": "Vector3", - "name": "global_position", - "setter": "set_global_position", - "getter": "get_global_position" - }, - { - "type": "Basis", - "name": "global_basis", - "setter": "set_global_basis", - "getter": "get_global_basis" - }, - { - "type": "Vector3", - "name": "global_rotation", - "setter": "set_global_rotation", - "getter": "get_global_rotation" - }, - { - "type": "Vector3", - "name": "global_rotation_degrees", - "setter": "set_global_rotation_degrees", - "getter": "get_global_rotation_degrees" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - }, - { - "type": "NodePath", - "name": "visibility_parent", - "setter": "set_visibility_parent", - "getter": "get_visibility_parent" - } - ] - }, - { - "name": "Node3DGizmo", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "Noise", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_noise_1d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3919130443, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "x", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_noise_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2753205203, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "x", - "type": "float", - "meta": "float" - }, - { - "name": "y", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_noise_2dv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2276447920, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "v", - "type": "Vector2" - } - ] - }, - { - "name": "get_noise_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 973811851, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "x", - "type": "float", - "meta": "float" - }, - { - "name": "y", - "type": "float", - "meta": "float" - }, - { - "name": "z", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_noise_3dv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1109078154, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "v", - "type": "Vector3" - } - ] - }, - { - "name": "get_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3180683109, - "hash_compatibility": [ - 2569233413 - ], - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "invert", - "type": "bool", - "default_value": "false" - }, - { - "name": "in_3d_space", - "type": "bool", - "default_value": "false" - }, - { - "name": "normalize", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_seamless_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2770743602, - "hash_compatibility": [ - 2210827790 - ], - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "invert", - "type": "bool", - "default_value": "false" - }, - { - "name": "in_3d_space", - "type": "bool", - "default_value": "false" - }, - { - "name": "skirt", - "type": "float", - "meta": "float", - "default_value": "0.1" - }, - { - "name": "normalize", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_image_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3977814329, - "hash_compatibility": [ - 2358868431 - ], - "return_value": { - "type": "typedarray::Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - }, - { - "name": "invert", - "type": "bool", - "default_value": "false" - }, - { - "name": "normalize", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_seamless_image_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 451006340, - "hash_compatibility": [ - 3328694319 - ], - "return_value": { - "type": "typedarray::Image" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - }, - { - "name": "invert", - "type": "bool", - "default_value": "false" - }, - { - "name": "skirt", - "type": "float", - "meta": "float", - "default_value": "0.1" - }, - { - "name": "normalize", - "type": "bool", - "default_value": "true" - } - ] - } - ] - }, - { - "name": "NoiseTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "is_generating_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_noise", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135492439, - "arguments": [ - { - "name": "noise", - "type": "Noise" - } - ] - }, - { - "name": "get_noise", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 185851837, - "return_value": { - "type": "Noise" - } - }, - { - "name": "set_color_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "gradient", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_seamless", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "seamless", - "type": "bool" - } - ] - }, - { - "name": "get_seamless", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_invert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "get_invert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_in_3d_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_in_3d_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_as_normal_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "as_normal_map", - "type": "bool" - } - ] - }, - { - "name": "is_normal_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_normalize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "normalize", - "type": "bool" - } - ] - }, - { - "name": "is_normalized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seamless_blend_skirt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seamless_blend_skirt", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_seamless_blend_skirt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bump_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bump_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bump_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "bool", - "name": "generate_mipmaps", - "setter": "set_generate_mipmaps", - "getter": "is_generating_mipmaps" - }, - { - "type": "Noise", - "name": "noise", - "setter": "set_noise", - "getter": "get_noise" - }, - { - "type": "Gradient", - "name": "color_ramp", - "setter": "set_color_ramp", - "getter": "get_color_ramp" - }, - { - "type": "bool", - "name": "seamless", - "setter": "set_seamless", - "getter": "get_seamless" - }, - { - "type": "bool", - "name": "invert", - "setter": "set_invert", - "getter": "get_invert" - }, - { - "type": "bool", - "name": "in_3d_space", - "setter": "set_in_3d_space", - "getter": "is_in_3d_space" - }, - { - "type": "bool", - "name": "as_normal_map", - "setter": "set_as_normal_map", - "getter": "is_normal_map" - }, - { - "type": "bool", - "name": "normalize", - "setter": "set_normalize", - "getter": "is_normalized" - }, - { - "type": "float", - "name": "seamless_blend_skirt", - "setter": "set_seamless_blend_skirt", - "getter": "get_seamless_blend_skirt" - }, - { - "type": "float", - "name": "bump_strength", - "setter": "set_bump_strength", - "getter": "get_bump_strength" - } - ] - }, - { - "name": "NoiseTexture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture3D", - "api_type": "core", - "methods": [ - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_noise", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135492439, - "arguments": [ - { - "name": "noise", - "type": "Noise" - } - ] - }, - { - "name": "get_noise", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 185851837, - "return_value": { - "type": "Noise" - } - }, - { - "name": "set_color_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2756054477, - "arguments": [ - { - "name": "gradient", - "type": "Gradient" - } - ] - }, - { - "name": "get_color_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132272999, - "return_value": { - "type": "Gradient" - } - }, - { - "name": "set_seamless", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "seamless", - "type": "bool" - } - ] - }, - { - "name": "get_seamless", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_invert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "get_invert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_normalize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "normalize", - "type": "bool" - } - ] - }, - { - "name": "is_normalized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_seamless_blend_skirt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seamless_blend_skirt", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_seamless_blend_skirt", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - }, - { - "type": "Noise", - "name": "noise", - "setter": "set_noise", - "getter": "get_noise" - }, - { - "type": "Gradient", - "name": "color_ramp", - "setter": "set_color_ramp", - "getter": "get_color_ramp" - }, - { - "type": "bool", - "name": "seamless", - "setter": "set_seamless", - "getter": "get_seamless" - }, - { - "type": "bool", - "name": "invert", - "setter": "set_invert", - "getter": "get_invert" - }, - { - "type": "bool", - "name": "normalize", - "setter": "set_normalize", - "getter": "is_normalized" - }, - { - "type": "float", - "name": "seamless_blend_skirt", - "setter": "set_seamless_blend_skirt", - "getter": "get_seamless_blend_skirt" - } - ] - }, - { - "name": "ORMMaterial3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "BaseMaterial3D", - "api_type": "core" - }, - { - "name": "OS", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "RenderingDriver", - "is_bitfield": false, - "values": [ - { - "name": "RENDERING_DRIVER_VULKAN", - "value": 0 - }, - { - "name": "RENDERING_DRIVER_OPENGL3", - "value": 1 - }, - { - "name": "RENDERING_DRIVER_D3D12", - "value": 2 - }, - { - "name": "RENDERING_DRIVER_METAL", - "value": 3 - } - ] - }, - { - "name": "SystemDir", - "is_bitfield": false, - "values": [ - { - "name": "SYSTEM_DIR_DESKTOP", - "value": 0 - }, - { - "name": "SYSTEM_DIR_DCIM", - "value": 1 - }, - { - "name": "SYSTEM_DIR_DOCUMENTS", - "value": 2 - }, - { - "name": "SYSTEM_DIR_DOWNLOADS", - "value": 3 - }, - { - "name": "SYSTEM_DIR_MOVIES", - "value": 4 - }, - { - "name": "SYSTEM_DIR_MUSIC", - "value": 5 - }, - { - "name": "SYSTEM_DIR_PICTURES", - "value": 6 - }, - { - "name": "SYSTEM_DIR_RINGTONES", - "value": 7 - } - ] - }, - { - "name": "StdHandleType", - "is_bitfield": false, - "values": [ - { - "name": "STD_HANDLE_INVALID", - "value": 0 - }, - { - "name": "STD_HANDLE_CONSOLE", - "value": 1 - }, - { - "name": "STD_HANDLE_FILE", - "value": 2 - }, - { - "name": "STD_HANDLE_PIPE", - "value": 3 - }, - { - "name": "STD_HANDLE_UNKNOWN", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "get_entropy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 47165747, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_system_ca_certificates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "get_connected_midi_inputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "open_midi_inputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close_midi_inputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "alert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1783970740, - "hash_compatibility": [ - 233059325 - ], - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "title", - "type": "String", - "default_value": "\"Alert!\"" - } - ] - }, - { - "name": "crash", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "message", - "type": "String" - } - ] - }, - { - "name": "set_low_processor_usage_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_in_low_processor_usage_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_low_processor_usage_mode_sleep_usec", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "usec", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_low_processor_usage_mode_sleep_usec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_delta_smoothing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "delta_smoothing_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_delta_smoothing_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_processor_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_processor_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_system_fonts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_system_font_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 626580860, - "hash_compatibility": [ - 2262142305 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_name", - "type": "String" - }, - { - "name": "weight", - "type": "int", - "meta": "int32", - "default_value": "400" - }, - { - "name": "stretch", - "type": "int", - "meta": "int32", - "default_value": "100" - }, - { - "name": "italic", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_system_font_path_for_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 197317981, - "hash_compatibility": [ - 3824042574 - ], - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "font_name", - "type": "String" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "locale", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "script", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "weight", - "type": "int", - "meta": "int32", - "default_value": "400" - }, - { - "name": "stretch", - "type": "int", - "meta": "int32", - "default_value": "100" - }, - { - "name": "italic", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_executable_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "read_string_from_stdin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 723587915, - "hash_compatibility": [ - 990163283, - 2841200299 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int64", - "default_value": "1024" - } - ] - }, - { - "name": "read_buffer_from_stdin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3249455752, - "hash_compatibility": [ - 47165747 - ], - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int64", - "default_value": "1024" - } - ] - }, - { - "name": "get_stdin_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1704816237, - "return_value": { - "type": "enum::OS.StdHandleType" - } - }, - { - "name": "get_stdout_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1704816237, - "return_value": { - "type": "enum::OS.StdHandleType" - } - }, - { - "name": "get_stderr_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1704816237, - "return_value": { - "type": "enum::OS.StdHandleType" - } - }, - { - "name": "execute", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1488299882, - "hash_compatibility": [ - 2881709059 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "arguments", - "type": "PackedStringArray" - }, - { - "name": "output", - "type": "Array", - "default_value": "[]" - }, - { - "name": "read_stderr", - "type": "bool", - "default_value": "false" - }, - { - "name": "open_console", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "execute_with_pipe", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2851312030, - "hash_compatibility": [ - 3845631403 - ], - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "arguments", - "type": "PackedStringArray" - }, - { - "name": "blocking", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "create_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2903767230, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "arguments", - "type": "PackedStringArray" - }, - { - "name": "open_console", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1080601263, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "arguments", - "type": "PackedStringArray" - } - ] - }, - { - "name": "open_with_program", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2848259907, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "program_path", - "type": "String" - }, - { - "name": "paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "kill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "pid", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "shell_open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "uri", - "type": "String" - } - ] - }, - { - "name": "shell_show_in_file_manager", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3565188097, - "hash_compatibility": [ - 885841341 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file_or_dir_path", - "type": "String" - }, - { - "name": "open_folder", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_process_running", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "pid", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_process_exit_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "pid", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_process_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "variable", - "type": "String" - } - ] - }, - { - "name": "get_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "variable", - "type": "String" - } - ] - }, - { - "name": "set_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3605043004, - "arguments": [ - { - "name": "variable", - "type": "String" - }, - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "unset_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3089850668, - "arguments": [ - { - "name": "variable", - "type": "String" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_distribution_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_version_alias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_cmdline_args", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_cmdline_user_args", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_video_adapter_driver_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_restart_on_exit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3331453935, - "hash_compatibility": [ - 611198603 - ], - "arguments": [ - { - "name": "restart", - "type": "bool" - }, - { - "name": "arguments", - "type": "PackedStringArray", - "default_value": "PackedStringArray()" - } - ] - }, - { - "name": "is_restart_on_exit_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_restart_on_exit_arguments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "delay_usec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 998575451, - "arguments": [ - { - "name": "usec", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "delay_msec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 998575451, - "arguments": [ - { - "name": "msec", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_locale_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_model_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_userfs_persistent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_stdout_verbose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_debug_build", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_static_memory_usage", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_static_memory_peak_usage", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_memory_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "move_to_trash", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2113323047, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_user_data_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_system_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3073895123, - "hash_compatibility": [ - 1965199849 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "dir", - "type": "enum::OS.SystemDir" - }, - { - "name": "shared_storage", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_config_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_data_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_cache_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_temp_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_unique_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_keycode_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2261993717, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "code", - "type": "enum::Key" - } - ] - }, - { - "name": "is_keycode_unicode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "code", - "type": "int", - "meta": "char32" - } - ] - }, - { - "name": "find_keycode_from_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1084858572, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "set_use_file_access_save_and_swap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_thread_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_thread_caller_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_main_thread_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "tag_name", - "type": "String" - } - ] - }, - { - "name": "is_sandboxed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "request_permission", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "request_permissions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_granted_permissions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "revoke_granted_permissions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_logger", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4261188958, - "arguments": [ - { - "name": "logger", - "type": "Logger", - "meta": "required" - } - ] - }, - { - "name": "remove_logger", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4261188958, - "arguments": [ - { - "name": "logger", - "type": "Logger", - "meta": "required" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "low_processor_usage_mode", - "setter": "set_low_processor_usage_mode", - "getter": "is_in_low_processor_usage_mode" - }, - { - "type": "int", - "name": "low_processor_usage_mode_sleep_usec", - "setter": "set_low_processor_usage_mode_sleep_usec", - "getter": "get_low_processor_usage_mode_sleep_usec" - }, - { - "type": "bool", - "name": "delta_smoothing", - "setter": "set_delta_smoothing", - "getter": "is_delta_smoothing_enabled" - } - ] - }, - { - "name": "Object", - "is_refcounted": false, - "is_instantiable": true, - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_POSTINITIALIZE", - "value": 0 - }, - { - "name": "NOTIFICATION_PREDELETE", - "value": 1 - }, - { - "name": "NOTIFICATION_EXTENSION_RELOADED", - "value": 2 - } - ], - "enums": [ - { - "name": "ConnectFlags", - "is_bitfield": true, - "values": [ - { - "name": "CONNECT_DEFERRED", - "value": 1 - }, - { - "name": "CONNECT_PERSIST", - "value": 2 - }, - { - "name": "CONNECT_ONE_SHOT", - "value": 4 - }, - { - "name": "CONNECT_REFERENCE_COUNTED", - "value": 8 - }, - { - "name": "CONNECT_APPEND_SOURCE_OBJECT", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "get_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_class", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "hash_compatibility": [ - 3927539163 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "class", - "type": "StringName" - } - ] - }, - { - "name": "set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "set_indexed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3500910842, - "arguments": [ - { - "name": "property_path", - "type": "NodePath" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_indexed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4006125091, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "property_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_property_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_method_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "property_can_revert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "property_get_revert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "notification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4023243586, - "arguments": [ - { - "name": "what", - "type": "int", - "meta": "int32" - }, - { - "name": "reversed", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "to_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "get_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "script", - "type": "Variant" - } - ] - }, - { - "name": "get_script", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "set_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "remove_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3990617847, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "default", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "has_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_meta_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "add_user_signal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 85656714, - "hash_compatibility": [ - 3780025912 - ], - "arguments": [ - { - "name": "signal", - "type": "String" - }, - { - "name": "arguments", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "has_user_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "remove_user_signal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "emit_signal", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 4047867050, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "call", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3400424181, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "call_deferred", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 3400424181, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "set_deferred", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "callv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1260104456, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - }, - { - "name": "arg_array", - "type": "Array" - } - ] - }, - { - "name": "has_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "get_method_argument_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "has_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "get_signal_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_signal_connection_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3147814860, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "get_incoming_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "connect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1518946055, - "hash_compatibility": [ - 1469446357 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "disconnect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1874754934, - "arguments": [ - { - "name": "signal", - "type": "StringName" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "is_connected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 768136979, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "has_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "set_block_signals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_blocking_signals", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "notify_property_list_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_message_translation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "can_translate_messages", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "tr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1195764410, - "hash_compatibility": [ - 2475554935 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "tr_n", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 162698058, - "hash_compatibility": [ - 4021311862 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "plural_message", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_translation_domain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_translation_domain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "domain", - "type": "StringName" - } - ] - }, - { - "name": "is_queued_for_deletion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "cancel_free", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "script_changed" - }, - { - "name": "property_list_changed" - } - ] - }, - { - "name": "Occluder3D", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_indices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - } - ] - }, - { - "name": "OccluderInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_bake_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_bake_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_bake_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_bake_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bake_simplification_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "simplification_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bake_simplification_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_occluder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1664878165, - "arguments": [ - { - "name": "occluder", - "type": "Occluder3D" - } - ] - }, - { - "name": "get_occluder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1696836198, - "return_value": { - "type": "Occluder3D" - } - } - ], - "properties": [ - { - "type": "Occluder3D", - "name": "occluder", - "setter": "set_occluder", - "getter": "get_occluder" - }, - { - "type": "int", - "name": "bake_mask", - "setter": "set_bake_mask", - "getter": "get_bake_mask" - }, - { - "type": "float", - "name": "bake_simplification_distance", - "setter": "set_bake_simplification_distance", - "getter": "get_bake_simplification_distance" - } - ] - }, - { - "name": "OccluderPolygon2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "CullMode", - "is_bitfield": false, - "values": [ - { - "name": "CULL_DISABLED", - "value": 0 - }, - { - "name": "CULL_CLOCKWISE", - "value": 1 - }, - { - "name": "CULL_COUNTER_CLOCKWISE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_closed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "closed", - "type": "bool" - } - ] - }, - { - "name": "is_closed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cull_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3500863002, - "arguments": [ - { - "name": "cull_mode", - "type": "enum::OccluderPolygon2D.CullMode" - } - ] - }, - { - "name": "get_cull_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 33931036, - "return_value": { - "type": "enum::OccluderPolygon2D.CullMode" - } - }, - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "closed", - "setter": "set_closed", - "getter": "is_closed" - }, - { - "type": "int", - "name": "cull_mode", - "setter": "set_cull_mode", - "getter": "get_cull_mode" - }, - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - } - ] - }, - { - "name": "OfflineMultiplayerPeer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerPeer", - "api_type": "core" - }, - { - "name": "OggPacketSequence", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_packet_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "packet_data", - "type": "typedarray::Array" - } - ] - }, - { - "name": "get_packet_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Array" - } - }, - { - "name": "set_packet_granule_positions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3709968205, - "arguments": [ - { - "name": "granule_positions", - "type": "PackedInt64Array" - } - ] - }, - { - "name": "get_packet_granule_positions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_sampling_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "sampling_rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sampling_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "typedarray::PackedByteArray", - "name": "packet_data", - "setter": "set_packet_data", - "getter": "get_packet_data" - }, - { - "type": "PackedInt64Array", - "name": "granule_positions", - "setter": "set_packet_granule_positions", - "getter": "get_packet_granule_positions" - }, - { - "type": "float", - "name": "sampling_rate", - "setter": "set_sampling_rate", - "getter": "get_sampling_rate" - } - ] - }, - { - "name": "OggPacketSequencePlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core" - }, - { - "name": "OmniLight3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light3D", - "api_type": "core", - "enums": [ - { - "name": "ShadowMode", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_DUAL_PARABOLOID", - "value": 0 - }, - { - "name": "SHADOW_CUBE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_shadow_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121862228, - "arguments": [ - { - "name": "mode", - "type": "enum::OmniLight3D.ShadowMode" - } - ] - }, - { - "name": "get_shadow_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4181586331, - "return_value": { - "type": "enum::OmniLight3D.ShadowMode" - } - } - ], - "properties": [ - { - "type": "float", - "name": "omni_range", - "setter": "set_param", - "getter": "get_param", - "index": 4 - }, - { - "type": "float", - "name": "omni_attenuation", - "setter": "set_param", - "getter": "get_param", - "index": 6 - }, - { - "type": "int", - "name": "omni_shadow_mode", - "setter": "set_shadow_mode", - "getter": "get_shadow_mode" - } - ] - }, - { - "name": "OpenXRAPIExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "OpenXRAlphaBlendModeSupport", - "is_bitfield": false, - "values": [ - { - "name": "OPENXR_ALPHA_BLEND_MODE_SUPPORT_NONE", - "value": 0 - }, - { - "name": "OPENXR_ALPHA_BLEND_MODE_SUPPORT_REAL", - "value": 1 - }, - { - "name": "OPENXR_ALPHA_BLEND_MODE_SUPPORT_EMULATING", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_openxr_version", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_instance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_system_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_session", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "transform_from_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2963875352, - "hash_compatibility": [ - 3255299855 - ], - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "pose", - "type": "const void*" - } - ] - }, - { - "name": "xr_result", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3886436197, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "result", - "type": "int", - "meta": "uint64" - }, - { - "name": "format", - "type": "String" - }, - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "openxr_is_enabled", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2703660260, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "check_run_in_editor", - "type": "bool" - } - ] - }, - { - "name": "get_instance_proc_addr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_error_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "result", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_swapchain_format_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "swapchain_format", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "set_object_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "object_type", - "type": "int", - "meta": "int64" - }, - { - "name": "object_handle", - "type": "int", - "meta": "uint64" - }, - { - "name": "object_name", - "type": "String" - } - ] - }, - { - "name": "begin_debug_label_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "label_name", - "type": "String" - } - ] - }, - { - "name": "end_debug_label_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "insert_debug_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "label_name", - "type": "String" - } - ] - }, - { - "name": "get_view_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_view_configuration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "is_initialized", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_running", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_custom_play_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "space", - "type": "const void*" - } - ] - }, - { - "name": "get_play_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_predicted_display_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_next_frame_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "can_render", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "find_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4106179378, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "action_set", - "type": "RID" - } - ] - }, - { - "name": "action_get_handle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "action", - "type": "RID" - } - ] - }, - { - "name": "get_hand_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "hand_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "register_composition_layer_provider", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "hash_compatibility": [ - 1997997368 - ], - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "unregister_composition_layer_provider", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "hash_compatibility": [ - 1997997368 - ], - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "register_projection_views_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "hash_compatibility": [ - 1997997368 - ], - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "unregister_projection_views_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "hash_compatibility": [ - 1997997368 - ], - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "register_frame_info_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "unregister_frame_info_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "register_projection_layer_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "unregister_projection_layer_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1477360496, - "arguments": [ - { - "name": "extension", - "type": "OpenXRExtensionWrapper" - } - ] - }, - { - "name": "get_render_state_z_near", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_render_state_z_far", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_velocity_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "render_target", - "type": "RID" - } - ] - }, - { - "name": "set_velocity_depth_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "render_target", - "type": "RID" - } - ] - }, - { - "name": "set_velocity_target_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "target_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_supported_swapchain_formats", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3851388692, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "openxr_swapchain_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2162228999, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "create_flags", - "type": "int", - "meta": "uint64" - }, - { - "name": "usage_flags", - "type": "int", - "meta": "uint64" - }, - { - "name": "swapchain_format", - "type": "int", - "meta": "int64" - }, - { - "name": "width", - "type": "int", - "meta": "uint32" - }, - { - "name": "height", - "type": "int", - "meta": "uint32" - }, - { - "name": "sample_count", - "type": "int", - "meta": "uint32" - }, - { - "name": "array_size", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "openxr_swapchain_free", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "swapchain", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "openxr_swapchain_get_swapchain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "swapchain", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "openxr_swapchain_acquire", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "swapchain", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "openxr_swapchain_get_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 937000113, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "swapchain", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "openxr_swapchain_release", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "swapchain", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_projection_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_render_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763793166, - "arguments": [ - { - "name": "render_region", - "type": "Rect2i" - } - ] - }, - { - "name": "set_emulate_environment_blend_mode_alpha_blend", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_environment_blend_mode_alpha_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1579290861, - "return_value": { - "type": "enum::OpenXRAPIExtension.OpenXRAlphaBlendModeSupport" - } - }, - { - "name": "update_main_swapchain_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "OpenXRAction", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "ActionType", - "is_bitfield": false, - "values": [ - { - "name": "OPENXR_ACTION_BOOL", - "value": 0 - }, - { - "name": "OPENXR_ACTION_FLOAT", - "value": 1 - }, - { - "name": "OPENXR_ACTION_VECTOR2", - "value": 2 - }, - { - "name": "OPENXR_ACTION_POSE", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_localized_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "localized_name", - "type": "String" - } - ] - }, - { - "name": "get_localized_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_action_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1675238366, - "arguments": [ - { - "name": "action_type", - "type": "enum::OpenXRAction.ActionType" - } - ] - }, - { - "name": "get_action_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536542431, - "return_value": { - "type": "enum::OpenXRAction.ActionType" - } - }, - { - "name": "set_toplevel_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "toplevel_paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_toplevel_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - } - ], - "properties": [ - { - "type": "String", - "name": "localized_name", - "setter": "set_localized_name", - "getter": "get_localized_name" - }, - { - "type": "int", - "name": "action_type", - "setter": "set_action_type", - "getter": "get_action_type" - }, - { - "type": "PackedStringArray", - "name": "toplevel_paths", - "setter": "set_toplevel_paths", - "getter": "get_toplevel_paths" - } - ] - }, - { - "name": "OpenXRActionBindingModifier", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRBindingModifier", - "api_type": "core" - }, - { - "name": "OpenXRActionMap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_action_sets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "action_sets", - "type": "Array" - } - ] - }, - { - "name": "get_action_sets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_action_set_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_action_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1888809267, - "return_value": { - "type": "OpenXRActionSet" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_action_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1789580336, - "return_value": { - "type": "OpenXRActionSet" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_action_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093310581, - "arguments": [ - { - "name": "action_set", - "type": "OpenXRActionSet" - } - ] - }, - { - "name": "remove_action_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093310581, - "arguments": [ - { - "name": "action_set", - "type": "OpenXRActionSet" - } - ] - }, - { - "name": "set_interaction_profiles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "interaction_profiles", - "type": "Array" - } - ] - }, - { - "name": "get_interaction_profiles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_interaction_profile_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_interaction_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3095875538, - "return_value": { - "type": "OpenXRInteractionProfile" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_interaction_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546151210, - "return_value": { - "type": "OpenXRInteractionProfile" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_interaction_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697953512, - "arguments": [ - { - "name": "interaction_profile", - "type": "OpenXRInteractionProfile" - } - ] - }, - { - "name": "remove_interaction_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697953512, - "arguments": [ - { - "name": "interaction_profile", - "type": "OpenXRInteractionProfile" - } - ] - }, - { - "name": "create_default_action_sets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "OpenXRActionSet", - "name": "action_sets", - "setter": "set_action_sets", - "getter": "get_action_sets" - }, - { - "type": "OpenXRInteractionProfile", - "name": "interaction_profiles", - "setter": "set_interaction_profiles", - "getter": "get_interaction_profiles" - } - ] - }, - { - "name": "OpenXRActionSet", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_localized_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "localized_name", - "type": "String" - } - ] - }, - { - "name": "get_localized_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_action_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_actions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "actions", - "type": "Array" - } - ] - }, - { - "name": "get_actions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "add_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - }, - { - "name": "remove_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "localized_name", - "setter": "set_localized_name", - "getter": "get_localized_name" - }, - { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority" - }, - { - "type": "OpenXRAction", - "name": "actions", - "setter": "set_actions", - "getter": "get_actions" - } - ] - }, - { - "name": "OpenXRAnalogThresholdModifier", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRActionBindingModifier", - "api_type": "core", - "methods": [ - { - "name": "set_on_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "on_threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_on_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_off_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "off_threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_off_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_on_haptic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2998020150, - "arguments": [ - { - "name": "haptic", - "type": "OpenXRHapticBase" - } - ] - }, - { - "name": "get_on_haptic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 922310751, - "return_value": { - "type": "OpenXRHapticBase" - } - }, - { - "name": "set_off_haptic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2998020150, - "arguments": [ - { - "name": "haptic", - "type": "OpenXRHapticBase" - } - ] - }, - { - "name": "get_off_haptic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 922310751, - "return_value": { - "type": "OpenXRHapticBase" - } - } - ], - "properties": [ - { - "type": "float", - "name": "on_threshold", - "setter": "set_on_threshold", - "getter": "get_on_threshold" - }, - { - "type": "float", - "name": "off_threshold", - "setter": "set_off_threshold", - "getter": "get_off_threshold" - }, - { - "type": "OpenXRHapticBase", - "name": "on_haptic", - "setter": "set_on_haptic", - "getter": "get_on_haptic" - }, - { - "type": "OpenXRHapticBase", - "name": "off_haptic", - "setter": "set_off_haptic", - "getter": "get_off_haptic" - } - ] - }, - { - "name": "OpenXRAnchorTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialEntityTracker", - "api_type": "core", - "methods": [ - { - "name": "has_uuid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_uuid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "uuid", - "type": "String" - } - ] - }, - { - "name": "get_uuid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "signals": [ - { - "name": "uuid_changed" - } - ], - "properties": [ - { - "type": "String", - "name": "uuid", - "setter": "set_uuid", - "getter": "get_uuid" - } - ] - }, - { - "name": "OpenXRAndroidThreadSettingsExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "enums": [ - { - "name": "ThreadType", - "is_bitfield": false, - "values": [ - { - "name": "THREAD_TYPE_APPLICATION_MAIN", - "value": 0 - }, - { - "name": "THREAD_TYPE_APPLICATION_WORKER", - "value": 1 - }, - { - "name": "THREAD_TYPE_RENDERER_MAIN", - "value": 2 - }, - { - "name": "THREAD_TYPE_RENDERER_WORKER", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_application_thread_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1558751158, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "thread_type", - "type": "enum::OpenXRAndroidThreadSettingsExtension.ThreadType" - }, - { - "name": "thread_id", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - } - ] - }, - { - "name": "OpenXRBindingModifier", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_get_description", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_ip_modification", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - } - ] - }, - { - "name": "OpenXRBindingModifierEditor", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PanelContainer", - "api_type": "editor", - "methods": [ - { - "name": "get_binding_modifier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2930765082, - "return_value": { - "type": "OpenXRBindingModifier" - } - }, - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1284787389, - "arguments": [ - { - "name": "action_map", - "type": "OpenXRActionMap" - }, - { - "name": "binding_modifier", - "type": "OpenXRBindingModifier" - } - ] - } - ], - "signals": [ - { - "name": "binding_modifier_removed", - "arguments": [ - { - "name": "binding_modifier_editor", - "type": "Object" - } - ] - } - ] - }, - { - "name": "OpenXRCompositionLayer", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "Filter", - "is_bitfield": false, - "values": [ - { - "name": "FILTER_NEAREST", - "value": 0 - }, - { - "name": "FILTER_LINEAR", - "value": 1 - }, - { - "name": "FILTER_CUBIC", - "value": 2 - } - ] - }, - { - "name": "MipmapMode", - "is_bitfield": false, - "values": [ - { - "name": "MIPMAP_MODE_DISABLED", - "value": 0 - }, - { - "name": "MIPMAP_MODE_NEAREST", - "value": 1 - }, - { - "name": "MIPMAP_MODE_LINEAR", - "value": 2 - } - ] - }, - { - "name": "Wrap", - "is_bitfield": false, - "values": [ - { - "name": "WRAP_CLAMP_TO_BORDER", - "value": 0 - }, - { - "name": "WRAP_CLAMP_TO_EDGE", - "value": 1 - }, - { - "name": "WRAP_REPEAT", - "value": 2 - }, - { - "name": "WRAP_MIRRORED_REPEAT", - "value": 3 - }, - { - "name": "WRAP_MIRROR_CLAMP_TO_EDGE", - "value": 4 - } - ] - }, - { - "name": "Swizzle", - "is_bitfield": false, - "values": [ - { - "name": "SWIZZLE_RED", - "value": 0 - }, - { - "name": "SWIZZLE_GREEN", - "value": 1 - }, - { - "name": "SWIZZLE_BLUE", - "value": 2 - }, - { - "name": "SWIZZLE_ALPHA", - "value": 3 - }, - { - "name": "SWIZZLE_ZERO", - "value": 4 - }, - { - "name": "SWIZZLE_ONE", - "value": 5 - } - ] - }, - { - "name": "EyeVisibility", - "is_bitfield": false, - "values": [ - { - "name": "EYE_VISIBILITY_BOTH", - "value": 0 - }, - { - "name": "EYE_VISIBILITY_LEFT", - "value": 1 - }, - { - "name": "EYE_VISIBILITY_RIGHT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_layer_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3888077664, - "arguments": [ - { - "name": "viewport", - "type": "SubViewport" - } - ] - }, - { - "name": "get_layer_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3750751911, - "return_value": { - "type": "SubViewport" - } - }, - { - "name": "set_use_android_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_use_android_surface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_android_surface_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_android_surface_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_enable_hole_punch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_enable_hole_punch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sort_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "order", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sort_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_alpha_blend", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_alpha_blend", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_android_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3277089691, - "return_value": { - "type": "JavaObject" - } - }, - { - "name": "is_natively_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_protected_content", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_protected_content", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "protected_content", - "type": "bool" - } - ] - }, - { - "name": "set_min_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3653437593, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Filter" - } - ] - }, - { - "name": "get_min_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 845677307, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Filter" - } - }, - { - "name": "set_mag_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3653437593, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Filter" - } - ] - }, - { - "name": "get_mag_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 845677307, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Filter" - } - }, - { - "name": "set_mipmap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3271133183, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.MipmapMode" - } - ] - }, - { - "name": "get_mipmap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3962697095, - "return_value": { - "type": "enum::OpenXRCompositionLayer.MipmapMode" - } - }, - { - "name": "set_horizontal_wrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 15634990, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Wrap" - } - ] - }, - { - "name": "get_horizontal_wrap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798816834, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Wrap" - } - }, - { - "name": "set_vertical_wrap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 15634990, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Wrap" - } - ] - }, - { - "name": "get_vertical_wrap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798816834, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Wrap" - } - }, - { - "name": "set_red_swizzle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741598951, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - ] - }, - { - "name": "get_red_swizzle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2334776767, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - }, - { - "name": "set_green_swizzle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741598951, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - ] - }, - { - "name": "get_green_swizzle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2334776767, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - }, - { - "name": "set_blue_swizzle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741598951, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - ] - }, - { - "name": "get_blue_swizzle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2334776767, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - }, - { - "name": "set_alpha_swizzle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 741598951, - "arguments": [ - { - "name": "mode", - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - ] - }, - { - "name": "get_alpha_swizzle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2334776767, - "return_value": { - "type": "enum::OpenXRCompositionLayer.Swizzle" - } - }, - { - "name": "set_max_anisotropy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_anisotropy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_border_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_border_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_eye_visibility", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 156391336, - "arguments": [ - { - "name": "eye_visibility", - "type": "enum::OpenXRCompositionLayer.EyeVisibility" - } - ] - }, - { - "name": "get_eye_visibility", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 467669000, - "return_value": { - "type": "enum::OpenXRCompositionLayer.EyeVisibility" - } - }, - { - "name": "intersects_ray", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1091262597, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "origin", - "type": "Vector3" - }, - { - "name": "direction", - "type": "Vector3" - } - ] - } - ], - "properties": [ - { - "type": "Object", - "name": "layer_viewport", - "setter": "set_layer_viewport", - "getter": "get_layer_viewport" - }, - { - "type": "bool", - "name": "use_android_surface", - "setter": "set_use_android_surface", - "getter": "get_use_android_surface" - }, - { - "type": "bool", - "name": "protected_content", - "setter": "set_protected_content", - "getter": "is_protected_content" - }, - { - "type": "Vector2i", - "name": "android_surface_size", - "setter": "set_android_surface_size", - "getter": "get_android_surface_size" - }, - { - "type": "int", - "name": "sort_order", - "setter": "set_sort_order", - "getter": "get_sort_order" - }, - { - "type": "bool", - "name": "alpha_blend", - "setter": "set_alpha_blend", - "getter": "get_alpha_blend" - }, - { - "type": "bool", - "name": "enable_hole_punch", - "setter": "set_enable_hole_punch", - "getter": "get_enable_hole_punch" - }, - { - "type": "int", - "name": "eye_visibility", - "setter": "set_eye_visibility", - "getter": "get_eye_visibility" - }, - { - "type": "int", - "name": "swapchain_state_min_filter", - "setter": "set_min_filter", - "getter": "get_min_filter" - }, - { - "type": "int", - "name": "swapchain_state_mag_filter", - "setter": "set_mag_filter", - "getter": "get_mag_filter" - }, - { - "type": "int", - "name": "swapchain_state_mipmap_mode", - "setter": "set_mipmap_mode", - "getter": "get_mipmap_mode" - }, - { - "type": "int", - "name": "swapchain_state_horizontal_wrap", - "setter": "set_horizontal_wrap", - "getter": "get_horizontal_wrap" - }, - { - "type": "int", - "name": "swapchain_state_vertical_wrap", - "setter": "set_vertical_wrap", - "getter": "get_vertical_wrap" - }, - { - "type": "int", - "name": "swapchain_state_red_swizzle", - "setter": "set_red_swizzle", - "getter": "get_red_swizzle" - }, - { - "type": "int", - "name": "swapchain_state_green_swizzle", - "setter": "set_green_swizzle", - "getter": "get_green_swizzle" - }, - { - "type": "int", - "name": "swapchain_state_blue_swizzle", - "setter": "set_blue_swizzle", - "getter": "get_blue_swizzle" - }, - { - "type": "int", - "name": "swapchain_state_alpha_swizzle", - "setter": "set_alpha_swizzle", - "getter": "get_alpha_swizzle" - }, - { - "type": "float", - "name": "swapchain_state_max_anisotropy", - "setter": "set_max_anisotropy", - "getter": "get_max_anisotropy" - }, - { - "type": "Color", - "name": "swapchain_state_border_color", - "setter": "set_border_color", - "getter": "get_border_color" - } - ] - }, - { - "name": "OpenXRCompositionLayerCylinder", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRCompositionLayer", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_aspect_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "aspect_ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_aspect_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_central_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_central_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fallback_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_fallback_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "aspect_ratio", - "setter": "set_aspect_ratio", - "getter": "get_aspect_ratio" - }, - { - "type": "float", - "name": "central_angle", - "setter": "set_central_angle", - "getter": "get_central_angle" - }, - { - "type": "int", - "name": "fallback_segments", - "setter": "set_fallback_segments", - "getter": "get_fallback_segments" - } - ] - }, - { - "name": "OpenXRCompositionLayerEquirect", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRCompositionLayer", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_central_horizontal_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_central_horizontal_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_upper_vertical_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_upper_vertical_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_lower_vertical_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lower_vertical_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fallback_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_fallback_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "central_horizontal_angle", - "setter": "set_central_horizontal_angle", - "getter": "get_central_horizontal_angle" - }, - { - "type": "float", - "name": "upper_vertical_angle", - "setter": "set_upper_vertical_angle", - "getter": "get_upper_vertical_angle" - }, - { - "type": "float", - "name": "lower_vertical_angle", - "setter": "set_lower_vertical_angle", - "getter": "get_lower_vertical_angle" - }, - { - "type": "int", - "name": "fallback_segments", - "setter": "set_fallback_segments", - "getter": "get_fallback_segments" - } - ] - }, - { - "name": "OpenXRCompositionLayerQuad", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRCompositionLayer", - "api_type": "core", - "methods": [ - { - "name": "set_quad_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_quad_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "quad_size", - "setter": "set_quad_size", - "getter": "get_quad_size" - } - ] - }, - { - "name": "OpenXRDpadBindingModifier", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRIPBindingModifier", - "api_type": "core", - "methods": [ - { - "name": "set_action_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093310581, - "arguments": [ - { - "name": "action_set", - "type": "OpenXRActionSet" - } - ] - }, - { - "name": "get_action_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 619941079, - "return_value": { - "type": "OpenXRActionSet" - } - }, - { - "name": "set_input_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "input_path", - "type": "String" - } - ] - }, - { - "name": "get_input_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_threshold_released", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold_released", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_threshold_released", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_center_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "center_region", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_center_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_wedge_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "wedge_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_wedge_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_is_sticky", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_sticky", - "type": "bool" - } - ] - }, - { - "name": "get_is_sticky", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_on_haptic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2998020150, - "arguments": [ - { - "name": "haptic", - "type": "OpenXRHapticBase" - } - ] - }, - { - "name": "get_on_haptic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 922310751, - "return_value": { - "type": "OpenXRHapticBase" - } - }, - { - "name": "set_off_haptic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2998020150, - "arguments": [ - { - "name": "haptic", - "type": "OpenXRHapticBase" - } - ] - }, - { - "name": "get_off_haptic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 922310751, - "return_value": { - "type": "OpenXRHapticBase" - } - } - ], - "properties": [ - { - "type": "OpenXRActionSet", - "name": "action_set", - "setter": "set_action_set", - "getter": "get_action_set" - }, - { - "type": "String", - "name": "input_path", - "setter": "set_input_path", - "getter": "get_input_path" - }, - { - "type": "float", - "name": "threshold", - "setter": "set_threshold", - "getter": "get_threshold" - }, - { - "type": "float", - "name": "threshold_released", - "setter": "set_threshold_released", - "getter": "get_threshold_released" - }, - { - "type": "float", - "name": "center_region", - "setter": "set_center_region", - "getter": "get_center_region" - }, - { - "type": "float", - "name": "wedge_angle", - "setter": "set_wedge_angle", - "getter": "get_wedge_angle" - }, - { - "type": "bool", - "name": "is_sticky", - "setter": "set_is_sticky", - "getter": "get_is_sticky" - }, - { - "type": "OpenXRHapticBase", - "name": "on_haptic", - "setter": "set_on_haptic", - "getter": "get_on_haptic" - }, - { - "type": "OpenXRHapticBase", - "name": "off_haptic", - "setter": "set_off_haptic", - "getter": "get_off_haptic" - } - ] - }, - { - "name": "OpenXRExtensionWrapper", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "_get_requested_extensions", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3554694381, - "hash_compatibility": [ - 2382534195 - ], - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "xr_version", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_set_system_properties_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_instance_create_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "hash_compatibility": [ - 3744713108 - ], - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "xr_version", - "type": "int", - "meta": "uint64" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_session_create_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_swapchain_create_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_hand_joint_locations_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "hand_index", - "type": "int", - "meta": "int32" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_projection_views_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "view_index", - "type": "int", - "meta": "int32" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_frame_wait_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_frame_end_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_projection_layer_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_view_locate_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_set_reference_space_create_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "reference_space_type", - "type": "int", - "meta": "int32" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_prepare_view_configuration", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "view_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_set_view_configuration_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_print_view_configuration_info", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 998575451, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_composition_layer_count", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_composition_layer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_composition_layer_order", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_suggested_tracker_names", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_on_register_metadata", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 309044627, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "interaction_profile_metadata", - "type": "OpenXRInteractionProfileMetadata" - } - ] - }, - { - "name": "_on_before_instance_created", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_instance_created", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "instance", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_on_instance_destroyed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_session_created", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "session", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_on_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_sync_actions", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_pre_render", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_main_swapchains_created", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_pre_draw_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "_on_post_draw_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "_on_session_destroyed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_idle", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_ready", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_synchronized", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_visible", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_focused", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_stopping", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_loss_pending", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_state_exiting", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_on_event_polled", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "const void*" - } - ] - }, - { - "name": "_set_viewport_composition_layer_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2250464348, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "layer", - "type": "const void*" - }, - { - "name": "property_values", - "type": "Dictionary" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "_get_viewport_composition_layer_extension_properties", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_get_viewport_composition_layer_extension_property_defaults", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_on_viewport_composition_layer_destroyed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "const void*" - } - ] - }, - { - "name": "_set_android_surface_swapchain_create_info_and_get_next_pointer", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3726637545, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "property_values", - "type": "Dictionary" - }, - { - "name": "next_pointer", - "type": "void*" - } - ] - }, - { - "name": "get_openxr_api", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1637791613, - "return_value": { - "type": "OpenXRAPIExtension" - } - }, - { - "name": "register_extension_wrapper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "OpenXRExtensionWrapperExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core" - }, - { - "name": "OpenXRFrameSynthesisExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "methods": [ - { - "name": "is_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_relax_frame_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_relax_frame_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "relax_frame_interval", - "type": "bool" - } - ] - }, - { - "name": "skip_next_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "relax_frame_interval", - "setter": "set_relax_frame_interval", - "getter": "get_relax_frame_interval" - } - ] - }, - { - "name": "OpenXRFutureExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "methods": [ - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "register_future", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1038012256, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "future", - "type": "int", - "meta": "uint64" - }, - { - "name": "on_success", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "cancel_future", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "future", - "type": "int", - "meta": "uint64" - } - ] - } - ] - }, - { - "name": "OpenXRFutureResult", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ResultStatus", - "is_bitfield": false, - "values": [ - { - "name": "RESULT_RUNNING", - "value": 0 - }, - { - "name": "RESULT_FINISHED", - "value": 1 - }, - { - "name": "RESULT_CANCELLED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2023607463, - "return_value": { - "type": "enum::OpenXRFutureResult.ResultStatus" - } - }, - { - "name": "get_future", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "cancel_future", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_result_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "result_value", - "type": "Variant" - } - ] - }, - { - "name": "get_result_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - } - ], - "signals": [ - { - "name": "completed", - "arguments": [ - { - "name": "result", - "type": "OpenXRFutureResult" - } - ] - } - ] - }, - { - "name": "OpenXRHand", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "Hands", - "is_bitfield": false, - "values": [ - { - "name": "HAND_LEFT", - "value": 0 - }, - { - "name": "HAND_RIGHT", - "value": 1 - }, - { - "name": "HAND_MAX", - "value": 2 - } - ] - }, - { - "name": "MotionRange", - "is_bitfield": false, - "values": [ - { - "name": "MOTION_RANGE_UNOBSTRUCTED", - "value": 0 - }, - { - "name": "MOTION_RANGE_CONFORM_TO_CONTROLLER", - "value": 1 - }, - { - "name": "MOTION_RANGE_MAX", - "value": 2 - } - ] - }, - { - "name": "SkeletonRig", - "is_bitfield": false, - "values": [ - { - "name": "SKELETON_RIG_OPENXR", - "value": 0 - }, - { - "name": "SKELETON_RIG_HUMANOID", - "value": 1 - }, - { - "name": "SKELETON_RIG_MAX", - "value": 2 - } - ] - }, - { - "name": "BoneUpdate", - "is_bitfield": false, - "values": [ - { - "name": "BONE_UPDATE_FULL", - "value": 0 - }, - { - "name": "BONE_UPDATE_ROTATION_ONLY", - "value": 1 - }, - { - "name": "BONE_UPDATE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_hand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1849328560, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRHand.Hands" - } - ] - }, - { - "name": "get_hand", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2850644561, - "return_value": { - "type": "enum::OpenXRHand.Hands" - } - }, - { - "name": "set_hand_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "hand_skeleton", - "type": "NodePath" - } - ] - }, - { - "name": "get_hand_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_motion_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3326516003, - "arguments": [ - { - "name": "motion_range", - "type": "enum::OpenXRHand.MotionRange" - } - ] - }, - { - "name": "get_motion_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2191822314, - "return_value": { - "type": "enum::OpenXRHand.MotionRange" - } - }, - { - "name": "set_skeleton_rig", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1528072213, - "arguments": [ - { - "name": "skeleton_rig", - "type": "enum::OpenXRHand.SkeletonRig" - } - ] - }, - { - "name": "get_skeleton_rig", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968409338, - "return_value": { - "type": "enum::OpenXRHand.SkeletonRig" - } - }, - { - "name": "set_bone_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3144625444, - "arguments": [ - { - "name": "bone_update", - "type": "enum::OpenXRHand.BoneUpdate" - } - ] - }, - { - "name": "get_bone_update", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1310695248, - "return_value": { - "type": "enum::OpenXRHand.BoneUpdate" - } - } - ], - "properties": [ - { - "type": "int", - "name": "hand", - "setter": "set_hand", - "getter": "get_hand" - }, - { - "type": "int", - "name": "motion_range", - "setter": "set_motion_range", - "getter": "get_motion_range" - }, - { - "type": "NodePath", - "name": "hand_skeleton", - "setter": "set_hand_skeleton", - "getter": "get_hand_skeleton" - }, - { - "type": "int", - "name": "skeleton_rig", - "setter": "set_skeleton_rig", - "getter": "get_skeleton_rig" - }, - { - "type": "int", - "name": "bone_update", - "setter": "set_bone_update", - "getter": "get_bone_update" - } - ] - }, - { - "name": "OpenXRHapticBase", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core" - }, - { - "name": "OpenXRHapticVibration", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRHapticBase", - "api_type": "core", - "methods": [ - { - "name": "set_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "duration", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "frequency", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_amplitude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amplitude", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_amplitude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "duration", - "setter": "set_duration", - "getter": "get_duration" - }, - { - "type": "float", - "name": "frequency", - "setter": "set_frequency", - "getter": "get_frequency" - }, - { - "type": "float", - "name": "amplitude", - "setter": "set_amplitude", - "getter": "get_amplitude" - } - ] - }, - { - "name": "OpenXRIPBinding", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - }, - { - "name": "get_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4072409085, - "return_value": { - "type": "OpenXRAction" - } - }, - { - "name": "set_binding_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "binding_path", - "type": "String" - } - ] - }, - { - "name": "get_binding_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_binding_modifier_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_binding_modifier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3538296211, - "return_value": { - "type": "OpenXRActionBindingModifier" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_binding_modifiers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "binding_modifiers", - "type": "Array" - } - ] - }, - { - "name": "get_binding_modifiers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_path_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "remove_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "OpenXRAction", - "name": "action", - "setter": "set_action", - "getter": "get_action" - }, - { - "type": "String", - "name": "binding_path", - "setter": "set_binding_path", - "getter": "get_binding_path" - }, - { - "type": "OpenXRActionBindingModifier", - "name": "binding_modifiers", - "setter": "set_binding_modifiers", - "getter": "get_binding_modifiers" - }, - { - "type": "PackedStringArray", - "name": "paths", - "setter": "set_paths", - "getter": "get_paths" - } - ] - }, - { - "name": "OpenXRIPBindingModifier", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRBindingModifier", - "api_type": "core" - }, - { - "name": "OpenXRInteractionProfile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_interaction_profile_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "interaction_profile_path", - "type": "String" - } - ] - }, - { - "name": "get_interaction_profile_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_binding_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_binding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3934429652, - "return_value": { - "type": "OpenXRIPBinding" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bindings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "bindings", - "type": "Array" - } - ] - }, - { - "name": "get_bindings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_binding_modifier_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_binding_modifier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2419896583, - "return_value": { - "type": "OpenXRIPBindingModifier" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_binding_modifiers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "binding_modifiers", - "type": "Array" - } - ] - }, - { - "name": "get_binding_modifiers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "properties": [ - { - "type": "String", - "name": "interaction_profile_path", - "setter": "set_interaction_profile_path", - "getter": "get_interaction_profile_path" - }, - { - "type": "OpenXRIPBinding", - "name": "bindings", - "setter": "set_bindings", - "getter": "get_bindings" - }, - { - "type": "OpenXRIPBindingModifier", - "name": "binding_modifiers", - "setter": "set_binding_modifiers", - "getter": "get_binding_modifiers" - } - ] - }, - { - "name": "OpenXRInteractionProfileEditor", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRInteractionProfileEditorBase", - "api_type": "editor" - }, - { - "name": "OpenXRInteractionProfileEditorBase", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "HBoxContainer", - "api_type": "editor", - "methods": [ - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 421962938, - "arguments": [ - { - "name": "action_map", - "type": "OpenXRActionMap" - }, - { - "name": "interaction_profile", - "type": "OpenXRInteractionProfile" - } - ] - } - ] - }, - { - "name": "OpenXRInteractionProfileMetadata", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "register_profile_rename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "old_name", - "type": "String" - }, - { - "name": "new_name", - "type": "String" - } - ] - }, - { - "name": "register_path_rename", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "old_name", - "type": "String" - }, - { - "name": "new_name", - "type": "String" - } - ] - }, - { - "name": "register_top_level_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 254767734, - "arguments": [ - { - "name": "display_name", - "type": "String" - }, - { - "name": "openxr_path", - "type": "String" - }, - { - "name": "openxr_extension_names", - "type": "String" - } - ] - }, - { - "name": "register_interaction_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 254767734, - "arguments": [ - { - "name": "display_name", - "type": "String" - }, - { - "name": "openxr_path", - "type": "String" - }, - { - "name": "openxr_extension_names", - "type": "String" - } - ] - }, - { - "name": "register_io_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3443511926, - "arguments": [ - { - "name": "interaction_profile", - "type": "String" - }, - { - "name": "display_name", - "type": "String" - }, - { - "name": "toplevel_path", - "type": "String" - }, - { - "name": "openxr_path", - "type": "String" - }, - { - "name": "openxr_extension_names", - "type": "String" - }, - { - "name": "action_type", - "type": "enum::OpenXRAction.ActionType" - } - ] - } - ] - }, - { - "name": "OpenXRInterface", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRInterface", - "api_type": "core", - "enums": [ - { - "name": "SessionState", - "is_bitfield": false, - "values": [ - { - "name": "SESSION_STATE_UNKNOWN", - "value": 0 - }, - { - "name": "SESSION_STATE_IDLE", - "value": 1 - }, - { - "name": "SESSION_STATE_READY", - "value": 2 - }, - { - "name": "SESSION_STATE_SYNCHRONIZED", - "value": 3 - }, - { - "name": "SESSION_STATE_VISIBLE", - "value": 4 - }, - { - "name": "SESSION_STATE_FOCUSED", - "value": 5 - }, - { - "name": "SESSION_STATE_STOPPING", - "value": 6 - }, - { - "name": "SESSION_STATE_LOSS_PENDING", - "value": 7 - }, - { - "name": "SESSION_STATE_EXITING", - "value": 8 - } - ] - }, - { - "name": "Hand", - "is_bitfield": false, - "values": [ - { - "name": "HAND_LEFT", - "value": 0 - }, - { - "name": "HAND_RIGHT", - "value": 1 - }, - { - "name": "HAND_MAX", - "value": 2 - } - ] - }, - { - "name": "HandMotionRange", - "is_bitfield": false, - "values": [ - { - "name": "HAND_MOTION_RANGE_UNOBSTRUCTED", - "value": 0 - }, - { - "name": "HAND_MOTION_RANGE_CONFORM_TO_CONTROLLER", - "value": 1 - }, - { - "name": "HAND_MOTION_RANGE_MAX", - "value": 2 - } - ] - }, - { - "name": "HandTrackedSource", - "is_bitfield": false, - "values": [ - { - "name": "HAND_TRACKED_SOURCE_UNKNOWN", - "value": 0 - }, - { - "name": "HAND_TRACKED_SOURCE_UNOBSTRUCTED", - "value": 1 - }, - { - "name": "HAND_TRACKED_SOURCE_CONTROLLER", - "value": 2 - }, - { - "name": "HAND_TRACKED_SOURCE_MAX", - "value": 3 - } - ] - }, - { - "name": "HandJoints", - "is_bitfield": false, - "values": [ - { - "name": "HAND_JOINT_PALM", - "value": 0 - }, - { - "name": "HAND_JOINT_WRIST", - "value": 1 - }, - { - "name": "HAND_JOINT_THUMB_METACARPAL", - "value": 2 - }, - { - "name": "HAND_JOINT_THUMB_PROXIMAL", - "value": 3 - }, - { - "name": "HAND_JOINT_THUMB_DISTAL", - "value": 4 - }, - { - "name": "HAND_JOINT_THUMB_TIP", - "value": 5 - }, - { - "name": "HAND_JOINT_INDEX_METACARPAL", - "value": 6 - }, - { - "name": "HAND_JOINT_INDEX_PROXIMAL", - "value": 7 - }, - { - "name": "HAND_JOINT_INDEX_INTERMEDIATE", - "value": 8 - }, - { - "name": "HAND_JOINT_INDEX_DISTAL", - "value": 9 - }, - { - "name": "HAND_JOINT_INDEX_TIP", - "value": 10 - }, - { - "name": "HAND_JOINT_MIDDLE_METACARPAL", - "value": 11 - }, - { - "name": "HAND_JOINT_MIDDLE_PROXIMAL", - "value": 12 - }, - { - "name": "HAND_JOINT_MIDDLE_INTERMEDIATE", - "value": 13 - }, - { - "name": "HAND_JOINT_MIDDLE_DISTAL", - "value": 14 - }, - { - "name": "HAND_JOINT_MIDDLE_TIP", - "value": 15 - }, - { - "name": "HAND_JOINT_RING_METACARPAL", - "value": 16 - }, - { - "name": "HAND_JOINT_RING_PROXIMAL", - "value": 17 - }, - { - "name": "HAND_JOINT_RING_INTERMEDIATE", - "value": 18 - }, - { - "name": "HAND_JOINT_RING_DISTAL", - "value": 19 - }, - { - "name": "HAND_JOINT_RING_TIP", - "value": 20 - }, - { - "name": "HAND_JOINT_LITTLE_METACARPAL", - "value": 21 - }, - { - "name": "HAND_JOINT_LITTLE_PROXIMAL", - "value": 22 - }, - { - "name": "HAND_JOINT_LITTLE_INTERMEDIATE", - "value": 23 - }, - { - "name": "HAND_JOINT_LITTLE_DISTAL", - "value": 24 - }, - { - "name": "HAND_JOINT_LITTLE_TIP", - "value": 25 - }, - { - "name": "HAND_JOINT_MAX", - "value": 26 - } - ] - }, - { - "name": "PerfSettingsLevel", - "is_bitfield": false, - "values": [ - { - "name": "PERF_SETTINGS_LEVEL_POWER_SAVINGS", - "value": 0 - }, - { - "name": "PERF_SETTINGS_LEVEL_SUSTAINED_LOW", - "value": 1 - }, - { - "name": "PERF_SETTINGS_LEVEL_SUSTAINED_HIGH", - "value": 2 - }, - { - "name": "PERF_SETTINGS_LEVEL_BOOST", - "value": 3 - } - ] - }, - { - "name": "PerfSettingsSubDomain", - "is_bitfield": false, - "values": [ - { - "name": "PERF_SETTINGS_SUB_DOMAIN_COMPOSITING", - "value": 0 - }, - { - "name": "PERF_SETTINGS_SUB_DOMAIN_RENDERING", - "value": 1 - }, - { - "name": "PERF_SETTINGS_SUB_DOMAIN_THERMAL", - "value": 2 - } - ] - }, - { - "name": "PerfSettingsNotificationLevel", - "is_bitfield": false, - "values": [ - { - "name": "PERF_SETTINGS_NOTIF_LEVEL_NORMAL", - "value": 0 - }, - { - "name": "PERF_SETTINGS_NOTIF_LEVEL_WARNING", - "value": 1 - }, - { - "name": "PERF_SETTINGS_NOTIF_LEVEL_IMPAIRED", - "value": 2 - } - ] - }, - { - "name": "HandJointFlags", - "is_bitfield": true, - "values": [ - { - "name": "HAND_JOINT_NONE", - "value": 0 - }, - { - "name": "HAND_JOINT_ORIENTATION_VALID", - "value": 1 - }, - { - "name": "HAND_JOINT_ORIENTATION_TRACKED", - "value": 2 - }, - { - "name": "HAND_JOINT_POSITION_VALID", - "value": 4 - }, - { - "name": "HAND_JOINT_POSITION_TRACKED", - "value": 8 - }, - { - "name": "HAND_JOINT_LINEAR_VELOCITY_VALID", - "value": 16 - }, - { - "name": "HAND_JOINT_ANGULAR_VELOCITY_VALID", - "value": 32 - } - ] - } - ], - "methods": [ - { - "name": "get_session_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 896364779, - "return_value": { - "type": "enum::OpenXRInterface.SessionState" - } - }, - { - "name": "is_user_presence_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_user_present", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_display_refresh_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_display_refresh_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "refresh_rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_render_target_size_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_render_target_size_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "is_foveation_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_foveation_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_foveation_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "foveation_level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_foveation_dynamic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_foveation_dynamic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "foveation_dynamic", - "type": "bool" - } - ] - }, - { - "name": "get_foveation_with_subsampled_images", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_foveation_with_subsampled_images", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_action_set_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_action_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_action_sets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_available_display_refresh_rates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_motion_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 855158159, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "motion_range", - "type": "enum::OpenXRInterface.HandMotionRange" - } - ] - }, - { - "name": "get_motion_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3955838114, - "return_value": { - "type": "enum::OpenXRInterface.HandMotionRange" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - } - ] - }, - { - "name": "get_hand_tracking_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4092421202, - "return_value": { - "type": "enum::OpenXRInterface.HandTrackedSource" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - } - ] - }, - { - "name": "get_hand_joint_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 720567706, - "return_value": { - "type": "bitfield::OpenXRInterface.HandJointFlags" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "get_hand_joint_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1974618321, - "return_value": { - "type": "Quaternion" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "get_hand_joint_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3529194242, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "get_hand_joint_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 901522724, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "get_hand_joint_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3529194242, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "get_hand_joint_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3529194242, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRInterface.Hand" - }, - { - "name": "joint", - "type": "enum::OpenXRInterface.HandJoints" - } - ] - }, - { - "name": "is_hand_tracking_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_hand_interaction_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_eye_gaze_interaction_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_vrs_min_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_min_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vrs_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_cpu_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2940842095, - "arguments": [ - { - "name": "level", - "type": "enum::OpenXRInterface.PerfSettingsLevel" - } - ] - }, - { - "name": "set_gpu_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2940842095, - "arguments": [ - { - "name": "level", - "type": "enum::OpenXRInterface.PerfSettingsLevel" - } - ] - } - ], - "signals": [ - { - "name": "session_begun" - }, - { - "name": "session_stopping" - }, - { - "name": "session_synchronized" - }, - { - "name": "session_focussed" - }, - { - "name": "session_visible" - }, - { - "name": "session_loss_pending" - }, - { - "name": "instance_exiting" - }, - { - "name": "pose_recentered" - }, - { - "name": "refresh_rate_changed", - "arguments": [ - { - "name": "refresh_rate", - "type": "float" - } - ] - }, - { - "name": "cpu_level_changed", - "arguments": [ - { - "name": "sub_domain", - "type": "int" - }, - { - "name": "from_level", - "type": "int" - }, - { - "name": "to_level", - "type": "int" - } - ] - }, - { - "name": "gpu_level_changed", - "arguments": [ - { - "name": "sub_domain", - "type": "int" - }, - { - "name": "from_level", - "type": "int" - }, - { - "name": "to_level", - "type": "int" - } - ] - }, - { - "name": "user_presence_changed", - "arguments": [ - { - "name": "is_user_present", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "display_refresh_rate", - "setter": "set_display_refresh_rate", - "getter": "get_display_refresh_rate" - }, - { - "type": "float", - "name": "render_target_size_multiplier", - "setter": "set_render_target_size_multiplier", - "getter": "get_render_target_size_multiplier" - }, - { - "type": "int", - "name": "foveation_level", - "setter": "set_foveation_level", - "getter": "get_foveation_level" - }, - { - "type": "bool", - "name": "foveation_dynamic", - "setter": "set_foveation_dynamic", - "getter": "get_foveation_dynamic" - }, - { - "type": "bool", - "name": "foveation_with_subsampled_images", - "setter": "set_foveation_with_subsampled_images", - "getter": "get_foveation_with_subsampled_images" - }, - { - "type": "float", - "name": "vrs_min_radius", - "setter": "set_vrs_min_radius", - "getter": "get_vrs_min_radius" - }, - { - "type": "float", - "name": "vrs_strength", - "setter": "set_vrs_strength", - "getter": "get_vrs_strength" - } - ] - }, - { - "name": "OpenXRMarkerTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialEntityTracker", - "api_type": "core", - "methods": [ - { - "name": "set_bounds_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "bounds_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_bounds_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_marker_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2156241362, - "arguments": [ - { - "name": "marker_type", - "type": "enum::OpenXRSpatialComponentMarkerList.MarkerType" - } - ] - }, - { - "name": "get_marker_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 612702862, - "return_value": { - "type": "enum::OpenXRSpatialComponentMarkerList.MarkerType" - } - }, - { - "name": "set_marker_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "marker_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_marker_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_marker_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "marker_data", - "type": "Variant" - } - ] - }, - { - "name": "get_marker_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - } - ], - "properties": [ - { - "type": "int", - "name": "bounds_size", - "setter": "set_bounds_size", - "getter": "get_bounds_size" - }, - { - "type": "int", - "name": "marker_type", - "setter": "set_marker_type", - "getter": "get_marker_type" - }, - { - "type": "int", - "name": "marker_id", - "setter": "set_marker_id", - "getter": "get_marker_id" - } - ] - }, - { - "name": "OpenXRPlaneTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialEntityTracker", - "api_type": "core", - "methods": [ - { - "name": "set_bounds_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "bounds_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_bounds_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_plane_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214382230, - "arguments": [ - { - "name": "plane_alignment", - "type": "enum::OpenXRSpatialComponentPlaneAlignmentList.PlaneAlignment" - } - ] - }, - { - "name": "get_plane_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 845541441, - "return_value": { - "type": "enum::OpenXRSpatialComponentPlaneAlignmentList.PlaneAlignment" - } - }, - { - "name": "set_plane_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "plane_label", - "type": "String" - } - ] - }, - { - "name": "get_plane_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_mesh_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1877193149, - "arguments": [ - { - "name": "origin", - "type": "Transform3D" - }, - { - "name": "vertices", - "type": "PackedVector2Array" - }, - { - "name": "indices", - "type": "PackedInt32Array", - "default_value": "PackedInt32Array()" - } - ] - }, - { - "name": "clear_mesh_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_mesh_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4081188045, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "get_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3358509884, - "return_value": { - "type": "Shape3D" - }, - "arguments": [ - { - "name": "thickness", - "type": "float", - "meta": "float", - "default_value": "0.01" - } - ] - } - ], - "signals": [ - { - "name": "mesh_changed" - } - ], - "properties": [ - { - "type": "int", - "name": "bounds_size", - "setter": "set_bounds_size", - "getter": "get_bounds_size" - }, - { - "type": "int", - "name": "plane_alignment", - "setter": "set_plane_alignment", - "getter": "get_plane_alignment" - }, - { - "type": "String", - "name": "plane_label", - "setter": "set_plane_label", - "getter": "get_plane_label" - } - ] - }, - { - "name": "OpenXRRenderModel", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_top_level_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_render_model", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_render_model", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - } - ], - "signals": [ - { - "name": "render_model_top_level_path_changed" - } - ], - "properties": [ - { - "type": "RID", - "name": "render_model", - "setter": "set_render_model", - "getter": "get_render_model" - } - ] - }, - { - "name": "OpenXRRenderModelExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "methods": [ - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "render_model_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 937000113, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "render_model_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "render_model_destroy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "render_model_new_scene_instance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788010739, - "return_value": { - "type": "Node3D" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_subaction_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2801473409, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_top_level_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_confidence", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2350330949, - "return_value": { - "type": "enum::XRPose.TrackingConfidence" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_root_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1128465797, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_animatable_node_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_get_animatable_node_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "render_model_is_animatable_node_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "render_model_get_animatable_node_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "render_model", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - } - ], - "signals": [ - { - "name": "render_model_added", - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_removed", - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - }, - { - "name": "render_model_top_level_path_changed", - "arguments": [ - { - "name": "render_model", - "type": "RID" - } - ] - } - ] - }, - { - "name": "OpenXRRenderModelManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "RenderModelTracker", - "is_bitfield": false, - "values": [ - { - "name": "RENDER_MODEL_TRACKER_ANY", - "value": 0 - }, - { - "name": "RENDER_MODEL_TRACKER_NONE_SET", - "value": 1 - }, - { - "name": "RENDER_MODEL_TRACKER_LEFT_HAND", - "value": 2 - }, - { - "name": "RENDER_MODEL_TRACKER_RIGHT_HAND", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2456466356, - "return_value": { - "type": "enum::OpenXRRenderModelManager.RenderModelTracker" - } - }, - { - "name": "set_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2814627380, - "arguments": [ - { - "name": "tracker", - "type": "enum::OpenXRRenderModelManager.RenderModelTracker" - } - ] - }, - { - "name": "get_make_local_to_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_make_local_to_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "make_local_to_pose", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "render_model_added", - "arguments": [ - { - "name": "render_model", - "type": "OpenXRRenderModel" - } - ] - }, - { - "name": "render_model_removed", - "arguments": [ - { - "name": "render_model", - "type": "OpenXRRenderModel" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "tracker", - "setter": "set_tracker", - "getter": "get_tracker" - }, - { - "type": "String", - "name": "make_local_to_pose", - "setter": "set_make_local_to_pose", - "getter": "get_make_local_to_pose" - } - ] - }, - { - "name": "OpenXRSpatialAnchorCapability", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "enums": [ - { - "name": "PersistenceScope", - "is_bitfield": false, - "values": [ - { - "name": "PERSISTENCE_SCOPE_SYSTEM_MANAGED", - "value": 1 - }, - { - "name": "PERSISTENCE_SCOPE_LOCAL_ANCHORS", - "value": 1000781000 - } - ] - } - ], - "methods": [ - { - "name": "is_spatial_anchor_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_spatial_persistence_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_persistence_scope_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3651771626, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "scope", - "type": "enum::OpenXRSpatialAnchorCapability.PersistenceScope" - } - ] - }, - { - "name": "create_default_persistence_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1401033661, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "create_persistence_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 856276630, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "scope", - "type": "enum::OpenXRSpatialAnchorCapability.PersistenceScope" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "get_persistence_context_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "persistence_context", - "type": "RID" - } - ] - }, - { - "name": "free_persistence_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "persistence_context", - "type": "RID" - } - ] - }, - { - "name": "create_new_anchor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4088043487, - "hash_compatibility": [ - 607100373 - ], - "return_value": { - "type": "OpenXRAnchorTracker" - }, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "spatial_context", - "type": "RID", - "default_value": "RID()" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - } - ] - }, - { - "name": "remove_anchor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3579451518, - "arguments": [ - { - "name": "anchor_tracker", - "type": "OpenXRAnchorTracker" - } - ] - }, - { - "name": "persist_anchor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4244202513, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "anchor_tracker", - "type": "OpenXRAnchorTracker" - }, - { - "name": "persistence_context", - "type": "RID", - "default_value": "RID()" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "unpersist_anchor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4244202513, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "anchor_tracker", - "type": "OpenXRAnchorTracker" - }, - { - "name": "persistence_context", - "type": "RID", - "default_value": "RID()" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "start_entity_discovery", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3452714169, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next_snapshot_create", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "next_snapshot_query", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "do_entity_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3138044275, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next_snapshot_create", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "next_snapshot_query", - "type": "OpenXRStructureBase", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationAnchor", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "methods": [ - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationAprilTag", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "enums": [ - { - "name": "AprilTagDict", - "is_bitfield": false, - "values": [ - { - "name": "APRIL_TAG_DICT_16H5", - "value": 1 - }, - { - "name": "APRIL_TAG_DICT_25H9", - "value": 2 - }, - { - "name": "APRIL_TAG_DICT_36H10", - "value": 3 - }, - { - "name": "APRIL_TAG_DICT_36H11", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_april_dict", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3902905799, - "arguments": [ - { - "name": "april_dict", - "type": "enum::OpenXRSpatialCapabilityConfigurationAprilTag.AprilTagDict" - } - ] - }, - { - "name": "get_april_dict", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 440273016, - "return_value": { - "type": "enum::OpenXRSpatialCapabilityConfigurationAprilTag.AprilTagDict" - } - } - ], - "properties": [ - { - "type": "int", - "name": "april_dict", - "setter": "set_april_dict", - "getter": "get_april_dict" - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationAruco", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "enums": [ - { - "name": "ArucoDict", - "is_bitfield": false, - "values": [ - { - "name": "ARUCO_DICT_4X4_50", - "value": 1 - }, - { - "name": "ARUCO_DICT_4X4_100", - "value": 2 - }, - { - "name": "ARUCO_DICT_4X4_250", - "value": 3 - }, - { - "name": "ARUCO_DICT_4X4_1000", - "value": 4 - }, - { - "name": "ARUCO_DICT_5X5_50", - "value": 5 - }, - { - "name": "ARUCO_DICT_5X5_100", - "value": 6 - }, - { - "name": "ARUCO_DICT_5X5_250", - "value": 7 - }, - { - "name": "ARUCO_DICT_5X5_1000", - "value": 8 - }, - { - "name": "ARUCO_DICT_6X6_50", - "value": 9 - }, - { - "name": "ARUCO_DICT_6X6_100", - "value": 10 - }, - { - "name": "ARUCO_DICT_6X6_250", - "value": 11 - }, - { - "name": "ARUCO_DICT_6X6_1000", - "value": 12 - }, - { - "name": "ARUCO_DICT_7X7_50", - "value": 13 - }, - { - "name": "ARUCO_DICT_7X7_100", - "value": 14 - }, - { - "name": "ARUCO_DICT_7X7_250", - "value": 15 - }, - { - "name": "ARUCO_DICT_7X7_1000", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - }, - { - "name": "set_aruco_dict", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2268055963, - "arguments": [ - { - "name": "aruco_dict", - "type": "enum::OpenXRSpatialCapabilityConfigurationAruco.ArucoDict" - } - ] - }, - { - "name": "get_aruco_dict", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1080386209, - "return_value": { - "type": "enum::OpenXRSpatialCapabilityConfigurationAruco.ArucoDict" - } - } - ], - "properties": [ - { - "type": "int", - "name": "aruco_dict", - "setter": "set_aruco_dict", - "getter": "get_aruco_dict" - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_has_valid_configuration", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_configuration", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "has_valid_configuration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_configuration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationMicroQrCode", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "methods": [ - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationPlaneTracking", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "methods": [ - { - "name": "supports_mesh_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "supports_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "supports_labels", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - } - ] - }, - { - "name": "OpenXRSpatialCapabilityConfigurationQrCode", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialCapabilityConfigurationBaseHeader", - "api_type": "core", - "methods": [ - { - "name": "get_enabled_components", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 235988956, - "return_value": { - "type": "PackedInt64Array" - } - } - ] - }, - { - "name": "OpenXRSpatialComponentAnchorList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_entity_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentBounded2DList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_center_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentBounded3DList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_center_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentData", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_set_capacity", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "capacity", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_component_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "_get_structure_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "hash_compatibility": [ - 923996154 - ], - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "set_capacity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "capacity", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_component_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - } - ] - }, - { - "name": "OpenXRSpatialComponentMarkerList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "enums": [ - { - "name": "MarkerType", - "is_bitfield": false, - "values": [ - { - "name": "MARKER_TYPE_UNKNOWN", - "value": 0 - }, - { - "name": "MARKER_TYPE_QRCODE", - "value": 1 - }, - { - "name": "MARKER_TYPE_MICRO_QRCODE", - "value": 2 - }, - { - "name": "MARKER_TYPE_ARUCO", - "value": 3 - }, - { - "name": "MARKER_TYPE_APRIL_TAG", - "value": 4 - }, - { - "name": "MARKER_TYPE_MAX", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "get_marker_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2627847866, - "return_value": { - "type": "enum::OpenXRSpatialComponentMarkerList.MarkerType" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_marker_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_marker_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "snapshot", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentMesh2DList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 110850971, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "snapshot", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_indices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3393655756, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "snapshot", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentMesh3DList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1576363275, - "return_value": { - "type": "Mesh" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentParentList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentPersistenceList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_persistent_uuid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_persistent_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentPlaneAlignmentList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "enums": [ - { - "name": "PlaneAlignment", - "is_bitfield": false, - "values": [ - { - "name": "PLANE_ALIGNMENT_HORIZONTAL_UPWARD", - "value": 0 - }, - { - "name": "PLANE_ALIGNMENT_HORIZONTAL_DOWNWARD", - "value": 1 - }, - { - "name": "PLANE_ALIGNMENT_VERTICAL", - "value": 2 - }, - { - "name": "PLANE_ALIGNMENT_ARBITRARY", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_plane_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3340200270, - "return_value": { - "type": "enum::OpenXRSpatialComponentPlaneAlignmentList.PlaneAlignment" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentPlaneSemanticLabelList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "enums": [ - { - "name": "PlaneSemanticLabel", - "is_bitfield": false, - "values": [ - { - "name": "PLANE_SEMANTIC_LABEL_UNCATEGORIZED", - "value": 1 - }, - { - "name": "PLANE_SEMANTIC_LABEL_FLOOR", - "value": 2 - }, - { - "name": "PLANE_SEMANTIC_LABEL_WALL", - "value": 3 - }, - { - "name": "PLANE_SEMANTIC_LABEL_CEILING", - "value": 4 - }, - { - "name": "PLANE_SEMANTIC_LABEL_TABLE", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "get_plane_semantic_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1889332427, - "return_value": { - "type": "enum::OpenXRSpatialComponentPlaneSemanticLabelList.PlaneSemanticLabel" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialComponentPolygon2DList", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_vertices", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 110850971, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "snapshot", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialContextPersistenceConfig", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRStructureBase", - "api_type": "core", - "methods": [ - { - "name": "add_persistence_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "persistence_context", - "type": "RID" - } - ] - }, - { - "name": "remove_persistence_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "persistence_context", - "type": "RID" - } - ] - }, - { - "name": "get_persistence_contexts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ] - }, - { - "name": "OpenXRSpatialEntityExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "enums": [ - { - "name": "Capability", - "is_bitfield": false, - "values": [ - { - "name": "CAPABILITY_PLANE_TRACKING", - "value": 1000741000 - }, - { - "name": "CAPABILITY_MARKER_TRACKING_QR_CODE", - "value": 1000743000 - }, - { - "name": "CAPABILITY_MARKER_TRACKING_MICRO_QR_CODE", - "value": 1000743001 - }, - { - "name": "CAPABILITY_MARKER_TRACKING_ARUCO_MARKER", - "value": 1000743002 - }, - { - "name": "CAPABILITY_MARKER_TRACKING_APRIL_TAG", - "value": 1000743003 - }, - { - "name": "CAPABILITY_ANCHOR", - "value": 1000762000 - } - ] - }, - { - "name": "ComponentType", - "is_bitfield": false, - "values": [ - { - "name": "COMPONENT_TYPE_BOUNDED_2D", - "value": 1 - }, - { - "name": "COMPONENT_TYPE_BOUNDED_3D", - "value": 2 - }, - { - "name": "COMPONENT_TYPE_PARENT", - "value": 3 - }, - { - "name": "COMPONENT_TYPE_MESH_3D", - "value": 4 - }, - { - "name": "COMPONENT_TYPE_PLANE_ALIGNMENT", - "value": 1000741000 - }, - { - "name": "COMPONENT_TYPE_MESH_2D", - "value": 1000741001 - }, - { - "name": "COMPONENT_TYPE_POLYGON_2D", - "value": 1000741002 - }, - { - "name": "COMPONENT_TYPE_PLANE_SEMANTIC_LABEL", - "value": 1000741003 - }, - { - "name": "COMPONENT_TYPE_MARKER", - "value": 1000743000 - }, - { - "name": "COMPONENT_TYPE_ANCHOR", - "value": 1000762000 - }, - { - "name": "COMPONENT_TYPE_PERSISTENCE", - "value": 1000763000 - } - ] - } - ], - "methods": [ - { - "name": "supports_capability", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1940837202, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "capability", - "type": "enum::OpenXRSpatialEntityExtension.Capability" - } - ] - }, - { - "name": "supports_component_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 26842779, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "capability", - "type": "enum::OpenXRSpatialEntityExtension.Capability" - }, - { - "name": "component_type", - "type": "enum::OpenXRSpatialEntityExtension.ComponentType" - } - ] - }, - { - "name": "create_spatial_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1874506473, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "capability_configurations", - "type": "typedarray::OpenXRSpatialCapabilityConfigurationBaseHeader" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "get_spatial_context_ready", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - } - ] - }, - { - "name": "free_spatial_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - } - ] - }, - { - "name": "get_spatial_context_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - } - ] - }, - { - "name": "discover_spatial_entities_with_component_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1830928590, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "discover_spatial_entities", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2252833536, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_types", - "type": "PackedInt64Array" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "update_spatial_entities", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3446086438, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "entities", - "type": "typedarray::RID" - }, - { - "name": "component_types", - "type": "PackedInt64Array" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - } - ] - }, - { - "name": "free_spatial_snapshot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - } - ] - }, - { - "name": "get_spatial_snapshot_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - } - ] - }, - { - "name": "get_spatial_snapshot_context", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - } - ] - }, - { - "name": "query_snapshot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 641015484, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next", - "type": "OpenXRStructureBase", - "default_value": "null" - } - ] - }, - { - "name": "get_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_uint8_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3570600051, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_uint16_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3393655756, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_uint32_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3393655756, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_float_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2313216651, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_vector2_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 110850971, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_vector3_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1166453791, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "spatial_snapshot", - "type": "RID" - }, - { - "name": "buffer_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "find_spatial_entity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 937000113, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "entity_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "add_spatial_entity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2256026069, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "entity_id", - "type": "int", - "meta": "uint64" - }, - { - "name": "entity", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "make_spatial_entity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2233757277, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "entity_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_spatial_entity_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "entity", - "type": "RID" - } - ] - }, - { - "name": "get_spatial_entity_context", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "entity", - "type": "RID" - } - ] - }, - { - "name": "free_spatial_entity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "entity", - "type": "RID" - } - ] - } - ], - "signals": [ - { - "name": "spatial_discovery_recommended", - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialEntityTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRPositionalTracker", - "api_type": "core", - "enums": [ - { - "name": "EntityTrackingState", - "is_bitfield": false, - "values": [ - { - "name": "ENTITY_TRACKING_STATE_STOPPED", - "value": 1 - }, - { - "name": "ENTITY_TRACKING_STATE_PAUSED", - "value": 2 - }, - { - "name": "ENTITY_TRACKING_STATE_TRACKING", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_spatial_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - } - ] - }, - { - "name": "get_spatial_context", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_entity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "entity", - "type": "RID" - } - ] - }, - { - "name": "get_entity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_spatial_tracking_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2170234447, - "arguments": [ - { - "name": "spatial_tracking_state", - "type": "enum::OpenXRSpatialEntityTracker.EntityTrackingState" - } - ] - }, - { - "name": "get_spatial_tracking_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3351876560, - "return_value": { - "type": "enum::OpenXRSpatialEntityTracker.EntityTrackingState" - } - }, - { - "name": "get_next", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798796760, - "return_value": { - "type": "OpenXRStructureBase" - } - }, - { - "name": "add_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334698771, - "arguments": [ - { - "name": "next", - "type": "OpenXRStructureBase" - } - ] - }, - { - "name": "remove_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334698771, - "arguments": [ - { - "name": "next", - "type": "OpenXRStructureBase" - } - ] - } - ], - "signals": [ - { - "name": "next_changed" - }, - { - "name": "spatial_tracking_state_changed", - "arguments": [ - { - "name": "spatial_tracking_state", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "RID", - "name": "entity", - "setter": "set_entity", - "getter": "get_entity" - }, - { - "type": "int", - "name": "spatial_tracking_state", - "setter": "set_spatial_tracking_state", - "getter": "get_spatial_tracking_state" - } - ] - }, - { - "name": "OpenXRSpatialMarkerTrackingCapability", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "methods": [ - { - "name": "is_qrcode_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_micro_qrcode_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_aruco_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_april_tag_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "start_entity_discovery", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3452714169, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next_snapshot_create", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "next_snapshot_query", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - }, - { - "name": "do_entity_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3138044275, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next_snapshot_create", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "next_snapshot_query", - "type": "OpenXRStructureBase", - "default_value": "null" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialPlaneTrackingCapability", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "OpenXRExtensionWrapper", - "api_type": "core", - "methods": [ - { - "name": "is_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "start_entity_discovery", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3452714169, - "return_value": { - "type": "OpenXRFutureResult" - }, - "arguments": [ - { - "name": "spatial_context", - "type": "RID" - }, - { - "name": "component_data", - "type": "typedarray::OpenXRSpatialComponentData" - }, - { - "name": "next_snapshot_create", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "next_snapshot_query", - "type": "OpenXRStructureBase", - "default_value": "null" - }, - { - "name": "user_callback", - "type": "Callable", - "default_value": "Callable()" - } - ] - } - ] - }, - { - "name": "OpenXRSpatialQueryResultData", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "OpenXRSpatialComponentData", - "api_type": "core", - "methods": [ - { - "name": "get_capacity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_entity_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_entity_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1411962015, - "return_value": { - "type": "enum::OpenXRSpatialEntityTracker.EntityTrackingState" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - } - ] - }, - { - "name": "OpenXRStructureBase", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_get_header", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "next", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_structure_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_next", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 334698771, - "arguments": [ - { - "name": "entity", - "type": "OpenXRStructureBase" - } - ] - }, - { - "name": "get_next", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798796760, - "return_value": { - "type": "OpenXRStructureBase" - } - } - ], - "properties": [ - { - "type": "OpenXRStructureBase", - "name": "next", - "setter": "set_next", - "getter": "get_next" - } - ] - }, - { - "name": "OpenXRVisibilityMask", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core" - }, - { - "name": "OptimizedTranslation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Translation", - "api_type": "core", - "methods": [ - { - "name": "generate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2141509306, - "hash_compatibility": [ - 1466479800 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "Translation" - } - ] - } - ] - }, - { - "name": "OptionButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Button", - "api_type": "core", - "methods": [ - { - "name": "add_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697778442, - "hash_compatibility": [ - 3043792800 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_icon_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3781678508, - "hash_compatibility": [ - 3944051090 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_item_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "set_item_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_item_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_item_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "set_item_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "set_item_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 287402019, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "set_search_bar_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_search_bar_min_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_search_bar_min_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_search_bar_fuzzy_search_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_search_bar_fuzzy_search_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_search_bar_fuzzy_search_max_misses", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_misses", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_search_bar_fuzzy_search_max_misses", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_item_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 906302372, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_separator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_search_bar_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3005725572, - "arguments": [ - { - "name": "text", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_selected_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_selected_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_popup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229722558, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "show_popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_selectable_items", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_selectable_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 894402480, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "from_last", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_fit_to_longest_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "fit", - "type": "bool" - } - ] - }, - { - "name": "is_fit_to_longest_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_reselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_reselect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disable_shortcuts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disabled", - "type": "bool" - } - ] - } - ], - "signals": [ - { - "name": "item_selected", - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "item_focused", - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "selected", - "setter": "_select_int", - "getter": "get_selected" - }, - { - "type": "bool", - "name": "fit_to_longest_item", - "setter": "set_fit_to_longest_item", - "getter": "is_fit_to_longest_item" - }, - { - "type": "bool", - "name": "allow_reselect", - "setter": "set_allow_reselect", - "getter": "get_allow_reselect" - }, - { - "type": "bool", - "name": "search_bar_enabled", - "setter": "set_search_bar_enabled", - "getter": "is_search_bar_enabled" - }, - { - "type": "int", - "name": "search_bar_min_item_count", - "setter": "set_search_bar_min_item_count", - "getter": "get_search_bar_min_item_count" - }, - { - "type": "bool", - "name": "search_bar_fuzzy_search_enabled", - "setter": "set_search_bar_fuzzy_search_enabled", - "getter": "is_search_bar_fuzzy_search_enabled" - }, - { - "type": "int", - "name": "search_bar_fuzzy_search_max_misses", - "setter": "set_search_bar_fuzzy_search_max_misses", - "getter": "get_search_bar_fuzzy_search_max_misses" - }, - { - "type": "int", - "name": "item_count", - "setter": "set_item_count", - "getter": "get_item_count" - } - ] - }, - { - "name": "PCKPacker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "pck_start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 508410629, - "hash_compatibility": [ - 3232891339 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "pck_path", - "type": "String" - }, - { - "name": "alignment", - "type": "int", - "meta": "int32", - "default_value": "32" - }, - { - "name": "key", - "type": "String", - "default_value": "\"0000000000000000000000000000000000000000000000000000000000000000\"" - }, - { - "name": "encrypt_directory", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2215643711, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "target_path", - "type": "String" - }, - { - "name": "source_path", - "type": "String" - }, - { - "name": "encrypt", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_file_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1131482346, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "target_path", - "type": "String" - }, - { - "name": "data", - "type": "PackedByteArray" - }, - { - "name": "encrypt", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_file_removal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "target_path", - "type": "String" - } - ] - }, - { - "name": "flush", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1633102583, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "verbose", - "type": "bool", - "default_value": "false" - } - ] - } - ] - }, - { - "name": "PackedDataContainer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "pack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 966674026, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "PackedDataContainerRef", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "PackedScene", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "GenEditState", - "is_bitfield": false, - "values": [ - { - "name": "GEN_EDIT_STATE_DISABLED", - "value": 0 - }, - { - "name": "GEN_EDIT_STATE_INSTANCE", - "value": 1 - }, - { - "name": "GEN_EDIT_STATE_MAIN", - "value": 2 - }, - { - "name": "GEN_EDIT_STATE_MAIN_INHERITED", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "pack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2584678054, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "Node" - } - ] - }, - { - "name": "instantiate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2628778455, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "edit_state", - "type": "enum::PackedScene.GenEditState", - "default_value": "0" - } - ] - }, - { - "name": "can_instantiate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3479783971, - "return_value": { - "type": "SceneState" - } - } - ] - }, - { - "name": "PacketPeer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_var", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3442865206, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "put_var", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2436251611, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "var", - "type": "Variant" - }, - { - "name": "full_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_packet", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2115431945, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "put_packet", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_packet_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3185525595, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_available_packet_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_encode_buffer_max_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_encode_buffer_max_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_size", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "encode_buffer_max_size", - "setter": "set_encode_buffer_max_size", - "getter": "get_encode_buffer_max_size" - } - ] - }, - { - "name": "PacketPeerDTLS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PacketPeer", - "api_type": "core", - "enums": [ - { - "name": "Status", - "is_bitfield": false, - "values": [ - { - "name": "STATUS_DISCONNECTED", - "value": 0 - }, - { - "name": "STATUS_HANDSHAKING", - "value": 1 - }, - { - "name": "STATUS_CONNECTED", - "value": 2 - }, - { - "name": "STATUS_ERROR", - "value": 3 - }, - { - "name": "STATUS_ERROR_HOSTNAME_MISMATCH", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "connect_to_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2880188099, - "hash_compatibility": [ - 1801538152 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "packet_peer", - "type": "PacketPeerUDP" - }, - { - "name": "hostname", - "type": "String" - }, - { - "name": "client_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "get_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3248654679, - "return_value": { - "type": "enum::PacketPeerDTLS.Status" - } - }, - { - "name": "disconnect_from_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "PacketPeerExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PacketPeer", - "api_type": "core", - "methods": [ - { - "name": "_get_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "r_buffer", - "type": "const uint8_t **" - }, - { - "name": "r_buffer_size", - "type": "int32_t*" - } - ] - }, - { - "name": "_put_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "const uint8_t*" - }, - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_available_packet_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_max_packet_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "PacketPeerStream", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PacketPeer", - "api_type": "core", - "methods": [ - { - "name": "set_stream_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3281897016, - "arguments": [ - { - "name": "peer", - "type": "StreamPeer" - } - ] - }, - { - "name": "get_stream_peer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2741655269, - "return_value": { - "type": "StreamPeer" - } - }, - { - "name": "set_input_buffer_max_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_size_bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_output_buffer_max_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_size_bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_buffer_max_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_output_buffer_max_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "input_buffer_max_size", - "setter": "set_input_buffer_max_size", - "getter": "get_input_buffer_max_size" - }, - { - "type": "int", - "name": "output_buffer_max_size", - "setter": "set_output_buffer_max_size", - "getter": "get_output_buffer_max_size" - }, - { - "type": "StreamPeer", - "name": "stream_peer", - "setter": "set_stream_peer", - "getter": "get_stream_peer" - } - ] - }, - { - "name": "PacketPeerUDP", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PacketPeer", - "api_type": "core", - "methods": [ - { - "name": "bind", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051239242, - "hash_compatibility": [ - 4290438434 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "bind_address", - "type": "String", - "default_value": "\"*\"" - }, - { - "name": "recv_buf_size", - "type": "int", - "meta": "int32", - "default_value": "65536" - } - ] - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "wait", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "is_bound", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "connect_to_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 993915709, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_socket_connected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_packet_ip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_packet_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_dest_address", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 993915709, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_broadcast_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "join_multicast_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "multicast_address", - "type": "String" - }, - { - "name": "interface_name", - "type": "String" - } - ] - }, - { - "name": "leave_multicast_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "multicast_address", - "type": "String" - }, - { - "name": "interface_name", - "type": "String" - } - ] - } - ] - }, - { - "name": "Panel", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core" - }, - { - "name": "PanelContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core" - }, - { - "name": "PanoramaSkyMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "methods": [ - { - "name": "set_panorama", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_panorama", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_filtering_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_filtering_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "panorama", - "setter": "set_panorama", - "getter": "get_panorama" - }, - { - "type": "bool", - "name": "filter", - "setter": "set_filtering_enabled", - "getter": "is_filtering_enabled" - }, - { - "type": "float", - "name": "energy_multiplier", - "setter": "set_energy_multiplier", - "getter": "get_energy_multiplier" - } - ] - }, - { - "name": "Parallax2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_scroll_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_scroll_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_repeat_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "repeat_size", - "type": "Vector2" - } - ] - }, - { - "name": "get_repeat_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_repeat_times", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "repeat_times", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_repeat_times", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_autoscroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "autoscroll", - "type": "Vector2" - } - ] - }, - { - "name": "get_autoscroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_scroll_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_scroll_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_screen_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_screen_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_limit_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_limit_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_limit_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_limit_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_follow_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "follow", - "type": "bool" - } - ] - }, - { - "name": "get_follow_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ignore_camera_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "is_ignore_camera_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "scroll_scale", - "setter": "set_scroll_scale", - "getter": "get_scroll_scale" - }, - { - "type": "Vector2", - "name": "scroll_offset", - "setter": "set_scroll_offset", - "getter": "get_scroll_offset" - }, - { - "type": "Vector2", - "name": "repeat_size", - "setter": "set_repeat_size", - "getter": "get_repeat_size" - }, - { - "type": "Vector2", - "name": "autoscroll", - "setter": "set_autoscroll", - "getter": "get_autoscroll" - }, - { - "type": "int", - "name": "repeat_times", - "setter": "set_repeat_times", - "getter": "get_repeat_times" - }, - { - "type": "Vector2", - "name": "limit_begin", - "setter": "set_limit_begin", - "getter": "get_limit_begin" - }, - { - "type": "Vector2", - "name": "limit_end", - "setter": "set_limit_end", - "getter": "get_limit_end" - }, - { - "type": "bool", - "name": "follow_viewport", - "setter": "set_follow_viewport", - "getter": "get_follow_viewport" - }, - { - "type": "bool", - "name": "ignore_camera_scroll", - "setter": "set_ignore_camera_scroll", - "getter": "is_ignore_camera_scroll" - }, - { - "type": "Vector2", - "name": "screen_offset", - "setter": "set_screen_offset", - "getter": "get_screen_offset" - } - ] - }, - { - "name": "ParallaxBackground", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "CanvasLayer", - "api_type": "core", - "methods": [ - { - "name": "set_scroll_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_scroll_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_scroll_base_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_scroll_base_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_scroll_base_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_scroll_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_limit_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_limit_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_limit_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_limit_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_ignore_camera_zoom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "is_ignore_camera_zoom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "scroll_offset", - "setter": "set_scroll_offset", - "getter": "get_scroll_offset" - }, - { - "type": "Vector2", - "name": "scroll_base_offset", - "setter": "set_scroll_base_offset", - "getter": "get_scroll_base_offset" - }, - { - "type": "Vector2", - "name": "scroll_base_scale", - "setter": "set_scroll_base_scale", - "getter": "get_scroll_base_scale" - }, - { - "type": "Vector2", - "name": "scroll_limit_begin", - "setter": "set_limit_begin", - "getter": "get_limit_begin" - }, - { - "type": "Vector2", - "name": "scroll_limit_end", - "setter": "set_limit_end", - "getter": "get_limit_end" - }, - { - "type": "bool", - "name": "scroll_ignore_camera_zoom", - "setter": "set_ignore_camera_zoom", - "getter": "is_ignore_camera_zoom" - } - ] - }, - { - "name": "ParallaxLayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_motion_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_motion_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_motion_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_motion_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_mirroring", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "mirror", - "type": "Vector2" - } - ] - }, - { - "name": "get_mirroring", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "motion_scale", - "setter": "set_motion_scale", - "getter": "get_motion_scale" - }, - { - "type": "Vector2", - "name": "motion_offset", - "setter": "set_motion_offset", - "getter": "get_motion_offset" - }, - { - "type": "Vector2", - "name": "motion_mirroring", - "setter": "set_mirroring", - "getter": "get_mirroring" - } - ] - }, - { - "name": "ParticleProcessMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "enums": [ - { - "name": "Parameter", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_INITIAL_LINEAR_VELOCITY", - "value": 0 - }, - { - "name": "PARAM_ANGULAR_VELOCITY", - "value": 1 - }, - { - "name": "PARAM_ORBIT_VELOCITY", - "value": 2 - }, - { - "name": "PARAM_LINEAR_ACCEL", - "value": 3 - }, - { - "name": "PARAM_RADIAL_ACCEL", - "value": 4 - }, - { - "name": "PARAM_TANGENTIAL_ACCEL", - "value": 5 - }, - { - "name": "PARAM_DAMPING", - "value": 6 - }, - { - "name": "PARAM_ANGLE", - "value": 7 - }, - { - "name": "PARAM_SCALE", - "value": 8 - }, - { - "name": "PARAM_HUE_VARIATION", - "value": 9 - }, - { - "name": "PARAM_ANIM_SPEED", - "value": 10 - }, - { - "name": "PARAM_ANIM_OFFSET", - "value": 11 - }, - { - "name": "PARAM_RADIAL_VELOCITY", - "value": 15 - }, - { - "name": "PARAM_DIRECTIONAL_VELOCITY", - "value": 16 - }, - { - "name": "PARAM_SCALE_OVER_VELOCITY", - "value": 17 - }, - { - "name": "PARAM_MAX", - "value": 18 - }, - { - "name": "PARAM_TURB_VEL_INFLUENCE", - "value": 13 - }, - { - "name": "PARAM_TURB_INIT_DISPLACEMENT", - "value": 14 - }, - { - "name": "PARAM_TURB_INFLUENCE_OVER_LIFE", - "value": 12 - } - ] - }, - { - "name": "ParticleFlags", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", - "value": 0 - }, - { - "name": "PARTICLE_FLAG_ROTATE_Y", - "value": 1 - }, - { - "name": "PARTICLE_FLAG_DISABLE_Z", - "value": 2 - }, - { - "name": "PARTICLE_FLAG_DAMPING_AS_FRICTION", - "value": 3 - }, - { - "name": "PARTICLE_FLAG_INHERIT_EMITTER_SCALE", - "value": 4 - }, - { - "name": "PARTICLE_FLAG_MAX", - "value": 5 - } - ] - }, - { - "name": "EmissionShape", - "is_bitfield": false, - "values": [ - { - "name": "EMISSION_SHAPE_POINT", - "value": 0 - }, - { - "name": "EMISSION_SHAPE_SPHERE", - "value": 1 - }, - { - "name": "EMISSION_SHAPE_SPHERE_SURFACE", - "value": 2 - }, - { - "name": "EMISSION_SHAPE_BOX", - "value": 3 - }, - { - "name": "EMISSION_SHAPE_POINTS", - "value": 4 - }, - { - "name": "EMISSION_SHAPE_DIRECTED_POINTS", - "value": 5 - }, - { - "name": "EMISSION_SHAPE_RING", - "value": 6 - }, - { - "name": "EMISSION_SHAPE_MAX", - "value": 7 - } - ] - }, - { - "name": "SubEmitterMode", - "is_bitfield": false, - "values": [ - { - "name": "SUB_EMITTER_DISABLED", - "value": 0 - }, - { - "name": "SUB_EMITTER_CONSTANT", - "value": 1 - }, - { - "name": "SUB_EMITTER_AT_END", - "value": 2 - }, - { - "name": "SUB_EMITTER_AT_COLLISION", - "value": 3 - }, - { - "name": "SUB_EMITTER_AT_START", - "value": 4 - }, - { - "name": "SUB_EMITTER_MAX", - "value": 5 - } - ] - }, - { - "name": "CollisionMode", - "is_bitfield": false, - "values": [ - { - "name": "COLLISION_DISABLED", - "value": 0 - }, - { - "name": "COLLISION_RIGID", - "value": 1 - }, - { - "name": "COLLISION_HIDE_ON_CONTACT", - "value": 2 - }, - { - "name": "COLLISION_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "degrees", - "type": "Vector3" - } - ] - }, - { - "name": "get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_inherit_velocity_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_inherit_velocity_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_spread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_spread", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_flatness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_flatness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 676779352, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - }, - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2623708480, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - } - ] - }, - { - "name": "set_param_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2295964248, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3903786503, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - } - ] - }, - { - "name": "set_param_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2295964248, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3903786503, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - } - ] - }, - { - "name": "set_param_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 526976089, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_param_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3489372978, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "param", - "type": "enum::ParticleProcessMaterial.Parameter" - } - ] - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_use_scale_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "using_scale_3d", - "type": "bool" - } - ] - }, - { - "name": "is_using_scale_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scale_3d_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale_3d_min", - "type": "Vector3" - } - ] - }, - { - "name": "get_scale_3d_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_scale_3d_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "scale_3d_max", - "type": "Vector3" - } - ] - }, - { - "name": "get_scale_3d_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_use_rotation_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "using_rotation_3d", - "type": "bool" - } - ] - }, - { - "name": "is_using_rotation_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rotation_3d_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "rotation_3d_min", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_3d_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_3d_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "rotation_3d_max", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_3d_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_color_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "ramp", - "type": "Texture2D" - } - ] - }, - { - "name": "get_color_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_alpha_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "curve", - "type": "Texture2D" - } - ] - }, - { - "name": "get_alpha_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_emission_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "curve", - "type": "Texture2D" - } - ] - }, - { - "name": "get_emission_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_color_initial_ramp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "ramp", - "type": "Texture2D" - } - ] - }, - { - "name": "get_color_initial_ramp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_velocity_limit_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "curve", - "type": "Texture2D" - } - ] - }, - { - "name": "get_velocity_limit_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_particle_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1711815571, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::ParticleProcessMaterial.ParticleFlags" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_particle_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3895316907, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "particle_flag", - "type": "enum::ParticleProcessMaterial.ParticleFlags" - } - ] - }, - { - "name": "set_velocity_pivot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "pivot", - "type": "Vector3" - } - ] - }, - { - "name": "get_velocity_pivot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3783033775, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 461501442, - "arguments": [ - { - "name": "shape", - "type": "enum::ParticleProcessMaterial.EmissionShape" - } - ] - }, - { - "name": "get_emission_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3719733018, - "return_value": { - "type": "enum::ParticleProcessMaterial.EmissionShape" - } - }, - { - "name": "set_emission_sphere_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_sphere_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_box_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "extents", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_box_extents", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_point_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_emission_point_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_emission_normal_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_emission_normal_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_emission_color_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_emission_color_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_emission_point_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "point_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_emission_point_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_emission_ring_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "axis", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_ring_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_ring_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_inner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "inner_radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_inner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_ring_cone_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "cone_angle", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_emission_ring_cone_angle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_emission_shape_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "emission_shape_offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_shape_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_emission_shape_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "emission_shape_scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_emission_shape_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_turbulence_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_turbulence_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "turbulence_enabled", - "type": "bool" - } - ] - }, - { - "name": "get_turbulence_noise_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_turbulence_noise_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "turbulence_noise_strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_turbulence_noise_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_turbulence_noise_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "turbulence_noise_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_turbulence_noise_speed_random", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_turbulence_noise_speed_random", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "turbulence_noise_speed_random", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_turbulence_noise_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_turbulence_noise_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "turbulence_noise_speed", - "type": "Vector3" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector3" - } - ] - }, - { - "name": "set_lifetime_randomness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "randomness", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_lifetime_randomness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_sub_emitter_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2399052877, - "return_value": { - "type": "enum::ParticleProcessMaterial.SubEmitterMode" - } - }, - { - "name": "set_sub_emitter_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2161806672, - "arguments": [ - { - "name": "mode", - "type": "enum::ParticleProcessMaterial.SubEmitterMode" - } - ] - }, - { - "name": "get_sub_emitter_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_sub_emitter_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "hz", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_sub_emitter_amount_at_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sub_emitter_amount_at_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sub_emitter_amount_at_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sub_emitter_amount_at_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sub_emitter_amount_at_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sub_emitter_amount_at_start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sub_emitter_keep_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sub_emitter_keep_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_attractor_interaction_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_attractor_interaction_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 653804659, - "arguments": [ - { - "name": "mode", - "type": "enum::ParticleProcessMaterial.CollisionMode" - } - ] - }, - { - "name": "get_collision_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 139371864, - "return_value": { - "type": "enum::ParticleProcessMaterial.CollisionMode" - } - }, - { - "name": "set_collision_use_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "radius", - "type": "bool" - } - ] - }, - { - "name": "is_collision_using_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_friction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "friction", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_friction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_collision_bounce", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bounce", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_bounce", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_using_rotation_velocity_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_rotation_velocity_3d", - "type": "bool" - } - ] - }, - { - "name": "is_using_rotation_velocity_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rotation_velocity_3d_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "rotation_velocity_3d_max", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_velocity_3d_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_velocity_3d_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "rotation_velocity_3d_min", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_velocity_3d_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_velocity_3d_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "rotation_velocity_3d_curve", - "type": "Texture2D" - } - ] - }, - { - "name": "get_rotation_velocity_3d_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "signals": [ - { - "name": "emission_shape_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "lifetime_randomness", - "setter": "set_lifetime_randomness", - "getter": "get_lifetime_randomness" - }, - { - "type": "bool", - "name": "particle_flag_align_y", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 0 - }, - { - "type": "bool", - "name": "particle_flag_rotate_y", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 1 - }, - { - "type": "bool", - "name": "particle_flag_disable_z", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 2 - }, - { - "type": "bool", - "name": "particle_flag_damping_as_friction", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 3 - }, - { - "type": "bool", - "name": "particle_flag_inherit_emitter_scale", - "setter": "set_particle_flag", - "getter": "get_particle_flag", - "index": 4 - }, - { - "type": "Vector3", - "name": "emission_shape_offset", - "setter": "set_emission_shape_offset", - "getter": "get_emission_shape_offset" - }, - { - "type": "Vector3", - "name": "emission_shape_scale", - "setter": "set_emission_shape_scale", - "getter": "get_emission_shape_scale" - }, - { - "type": "int", - "name": "emission_shape", - "setter": "set_emission_shape", - "getter": "get_emission_shape" - }, - { - "type": "float", - "name": "emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "getter": "get_emission_sphere_radius" - }, - { - "type": "Vector3", - "name": "emission_box_extents", - "setter": "set_emission_box_extents", - "getter": "get_emission_box_extents" - }, - { - "type": "Texture2D", - "name": "emission_point_texture", - "setter": "set_emission_point_texture", - "getter": "get_emission_point_texture" - }, - { - "type": "Texture2D", - "name": "emission_normal_texture", - "setter": "set_emission_normal_texture", - "getter": "get_emission_normal_texture" - }, - { - "type": "Texture2D", - "name": "emission_color_texture", - "setter": "set_emission_color_texture", - "getter": "get_emission_color_texture" - }, - { - "type": "int", - "name": "emission_point_count", - "setter": "set_emission_point_count", - "getter": "get_emission_point_count" - }, - { - "type": "Vector3", - "name": "emission_ring_axis", - "setter": "set_emission_ring_axis", - "getter": "get_emission_ring_axis" - }, - { - "type": "float", - "name": "emission_ring_height", - "setter": "set_emission_ring_height", - "getter": "get_emission_ring_height" - }, - { - "type": "float", - "name": "emission_ring_radius", - "setter": "set_emission_ring_radius", - "getter": "get_emission_ring_radius" - }, - { - "type": "float", - "name": "emission_ring_inner_radius", - "setter": "set_emission_ring_inner_radius", - "getter": "get_emission_ring_inner_radius" - }, - { - "type": "float", - "name": "emission_ring_cone_angle", - "setter": "set_emission_ring_cone_angle", - "getter": "get_emission_ring_cone_angle" - }, - { - "type": "Vector2", - "name": "angle", - "setter": "set_param", - "getter": "get_param", - "index": 7 - }, - { - "type": "float", - "name": "angle_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 7 - }, - { - "type": "float", - "name": "angle_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 7 - }, - { - "type": "CurveTexture", - "name": "angle_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 7 - }, - { - "type": "bool", - "name": "use_rotation_3d", - "setter": "set_use_rotation_3d", - "getter": "is_using_rotation_3d" - }, - { - "type": "Vector3", - "name": "rotation_3d_min", - "setter": "set_rotation_3d_min", - "getter": "get_rotation_3d_min" - }, - { - "type": "Vector3", - "name": "rotation_3d_max", - "setter": "set_rotation_3d_max", - "getter": "get_rotation_3d_max" - }, - { - "type": "float", - "name": "inherit_velocity_ratio", - "setter": "set_inherit_velocity_ratio", - "getter": "get_inherit_velocity_ratio" - }, - { - "type": "Vector3", - "name": "velocity_pivot", - "setter": "set_velocity_pivot", - "getter": "get_velocity_pivot" - }, - { - "type": "Vector3", - "name": "direction", - "setter": "set_direction", - "getter": "get_direction" - }, - { - "type": "float", - "name": "spread", - "setter": "set_spread", - "getter": "get_spread" - }, - { - "type": "float", - "name": "flatness", - "setter": "set_flatness", - "getter": "get_flatness" - }, - { - "type": "Vector2", - "name": "initial_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 0 - }, - { - "type": "float", - "name": "initial_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 0 - }, - { - "type": "float", - "name": "initial_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 0 - }, - { - "type": "Vector2", - "name": "angular_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 1 - }, - { - "type": "float", - "name": "angular_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 1 - }, - { - "type": "float", - "name": "angular_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 1 - }, - { - "type": "CurveTexture", - "name": "angular_velocity_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 1 - }, - { - "type": "Vector2", - "name": "directional_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 16 - }, - { - "type": "float", - "name": "directional_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 16 - }, - { - "type": "float", - "name": "directional_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 16 - }, - { - "type": "CurveXYZTexture", - "name": "directional_velocity_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 16 - }, - { - "type": "Vector2", - "name": "orbit_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 2 - }, - { - "type": "float", - "name": "orbit_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 2 - }, - { - "type": "float", - "name": "orbit_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 2 - }, - { - "type": "CurveTexture,CurveXYZTexture", - "name": "orbit_velocity_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 2 - }, - { - "type": "Vector2", - "name": "radial_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 15 - }, - { - "type": "float", - "name": "radial_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 15 - }, - { - "type": "float", - "name": "radial_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 15 - }, - { - "type": "CurveTexture", - "name": "radial_velocity_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 15 - }, - { - "type": "CurveTexture", - "name": "velocity_limit_curve", - "setter": "set_velocity_limit_curve", - "getter": "get_velocity_limit_curve" - }, - { - "type": "bool", - "name": "use_rotation_velocity_3d", - "setter": "set_using_rotation_velocity_3d", - "getter": "is_using_rotation_velocity_3d" - }, - { - "type": "Vector3", - "name": "rotation_velocity_3d_min", - "setter": "set_rotation_velocity_3d_min", - "getter": "get_rotation_velocity_3d_min" - }, - { - "type": "Vector3", - "name": "rotation_velocity_3d_max", - "setter": "set_rotation_velocity_3d_max", - "getter": "get_rotation_velocity_3d_max" - }, - { - "type": "CurveXYZTexture", - "name": "rotation_velocity_3d_curve", - "setter": "set_rotation_velocity_3d_curve", - "getter": "get_rotation_velocity_3d_curve" - }, - { - "type": "Vector3", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - }, - { - "type": "Vector2", - "name": "linear_accel", - "setter": "set_param", - "getter": "get_param", - "index": 3 - }, - { - "type": "float", - "name": "linear_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 3 - }, - { - "type": "float", - "name": "linear_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 3 - }, - { - "type": "CurveTexture", - "name": "linear_accel_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 3 - }, - { - "type": "Vector2", - "name": "radial_accel", - "setter": "set_param", - "getter": "get_param", - "index": 4 - }, - { - "type": "float", - "name": "radial_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 4 - }, - { - "type": "float", - "name": "radial_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 4 - }, - { - "type": "CurveTexture", - "name": "radial_accel_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 4 - }, - { - "type": "Vector2", - "name": "tangential_accel", - "setter": "set_param", - "getter": "get_param", - "index": 5 - }, - { - "type": "float", - "name": "tangential_accel_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 5 - }, - { - "type": "float", - "name": "tangential_accel_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 5 - }, - { - "type": "CurveTexture", - "name": "tangential_accel_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 5 - }, - { - "type": "Vector2", - "name": "damping", - "setter": "set_param", - "getter": "get_param", - "index": 6 - }, - { - "type": "float", - "name": "damping_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 6 - }, - { - "type": "float", - "name": "damping_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 6 - }, - { - "type": "CurveTexture", - "name": "damping_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 6 - }, - { - "type": "bool", - "name": "attractor_interaction_enabled", - "setter": "set_attractor_interaction_enabled", - "getter": "is_attractor_interaction_enabled" - }, - { - "type": "bool", - "name": "use_scale_3d", - "setter": "set_use_scale_3d", - "getter": "is_using_scale_3d" - }, - { - "type": "Vector3", - "name": "scale_3d_min", - "setter": "set_scale_3d_min", - "getter": "get_scale_3d_min" - }, - { - "type": "Vector3", - "name": "scale_3d_max", - "setter": "set_scale_3d_max", - "getter": "get_scale_3d_max" - }, - { - "type": "Vector2", - "name": "scale", - "setter": "set_param", - "getter": "get_param", - "index": 8 - }, - { - "type": "float", - "name": "scale_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 8 - }, - { - "type": "float", - "name": "scale_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 8 - }, - { - "type": "CurveTexture,CurveXYZTexture", - "name": "scale_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 8 - }, - { - "type": "Vector2", - "name": "scale_over_velocity", - "setter": "set_param", - "getter": "get_param", - "index": 17 - }, - { - "type": "float", - "name": "scale_over_velocity_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 17 - }, - { - "type": "float", - "name": "scale_over_velocity_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 17 - }, - { - "type": "CurveTexture,CurveXYZTexture", - "name": "scale_over_velocity_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 17 - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "GradientTexture1D", - "name": "color_ramp", - "setter": "set_color_ramp", - "getter": "get_color_ramp" - }, - { - "type": "GradientTexture1D", - "name": "color_initial_ramp", - "setter": "set_color_initial_ramp", - "getter": "get_color_initial_ramp" - }, - { - "type": "CurveTexture", - "name": "alpha_curve", - "setter": "set_alpha_curve", - "getter": "get_alpha_curve" - }, - { - "type": "CurveTexture", - "name": "emission_curve", - "setter": "set_emission_curve", - "getter": "get_emission_curve" - }, - { - "type": "Vector2", - "name": "hue_variation", - "setter": "set_param", - "getter": "get_param", - "index": 9 - }, - { - "type": "float", - "name": "hue_variation_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 9 - }, - { - "type": "float", - "name": "hue_variation_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 9 - }, - { - "type": "CurveTexture", - "name": "hue_variation_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 9 - }, - { - "type": "Vector2", - "name": "anim_speed", - "setter": "set_param", - "getter": "get_param", - "index": 10 - }, - { - "type": "float", - "name": "anim_speed_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 10 - }, - { - "type": "float", - "name": "anim_speed_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 10 - }, - { - "type": "CurveTexture", - "name": "anim_speed_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 10 - }, - { - "type": "Vector2", - "name": "anim_offset", - "setter": "set_param", - "getter": "get_param", - "index": 11 - }, - { - "type": "float", - "name": "anim_offset_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 11 - }, - { - "type": "float", - "name": "anim_offset_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 11 - }, - { - "type": "CurveTexture", - "name": "anim_offset_curve", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 11 - }, - { - "type": "bool", - "name": "turbulence_enabled", - "setter": "set_turbulence_enabled", - "getter": "get_turbulence_enabled" - }, - { - "type": "float", - "name": "turbulence_noise_strength", - "setter": "set_turbulence_noise_strength", - "getter": "get_turbulence_noise_strength" - }, - { - "type": "float", - "name": "turbulence_noise_scale", - "setter": "set_turbulence_noise_scale", - "getter": "get_turbulence_noise_scale" - }, - { - "type": "Vector3", - "name": "turbulence_noise_speed", - "setter": "set_turbulence_noise_speed", - "getter": "get_turbulence_noise_speed" - }, - { - "type": "float", - "name": "turbulence_noise_speed_random", - "setter": "set_turbulence_noise_speed_random", - "getter": "get_turbulence_noise_speed_random" - }, - { - "type": "Vector2", - "name": "turbulence_influence", - "setter": "set_param", - "getter": "get_param", - "index": 13 - }, - { - "type": "float", - "name": "turbulence_influence_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 13 - }, - { - "type": "float", - "name": "turbulence_influence_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 13 - }, - { - "type": "Vector2", - "name": "turbulence_initial_displacement", - "setter": "set_param", - "getter": "get_param", - "index": 14 - }, - { - "type": "float", - "name": "turbulence_initial_displacement_min", - "setter": "set_param_min", - "getter": "get_param_min", - "index": 14 - }, - { - "type": "float", - "name": "turbulence_initial_displacement_max", - "setter": "set_param_max", - "getter": "get_param_max", - "index": 14 - }, - { - "type": "CurveTexture", - "name": "turbulence_influence_over_life", - "setter": "set_param_texture", - "getter": "get_param_texture", - "index": 12 - }, - { - "type": "int", - "name": "collision_mode", - "setter": "set_collision_mode", - "getter": "get_collision_mode" - }, - { - "type": "float", - "name": "collision_friction", - "setter": "set_collision_friction", - "getter": "get_collision_friction" - }, - { - "type": "float", - "name": "collision_bounce", - "setter": "set_collision_bounce", - "getter": "get_collision_bounce" - }, - { - "type": "bool", - "name": "collision_use_scale", - "setter": "set_collision_use_scale", - "getter": "is_collision_using_scale" - }, - { - "type": "int", - "name": "sub_emitter_mode", - "setter": "set_sub_emitter_mode", - "getter": "get_sub_emitter_mode" - }, - { - "type": "float", - "name": "sub_emitter_frequency", - "setter": "set_sub_emitter_frequency", - "getter": "get_sub_emitter_frequency" - }, - { - "type": "int", - "name": "sub_emitter_amount_at_end", - "setter": "set_sub_emitter_amount_at_end", - "getter": "get_sub_emitter_amount_at_end" - }, - { - "type": "int", - "name": "sub_emitter_amount_at_collision", - "setter": "set_sub_emitter_amount_at_collision", - "getter": "get_sub_emitter_amount_at_collision" - }, - { - "type": "int", - "name": "sub_emitter_amount_at_start", - "setter": "set_sub_emitter_amount_at_start", - "getter": "get_sub_emitter_amount_at_start" - }, - { - "type": "bool", - "name": "sub_emitter_keep_velocity", - "setter": "set_sub_emitter_keep_velocity", - "getter": "get_sub_emitter_keep_velocity" - } - ] - }, - { - "name": "Path2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659985499, - "arguments": [ - { - "name": "curve", - "type": "Curve2D" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 660369445, - "return_value": { - "type": "Curve2D" - } - } - ], - "properties": [ - { - "type": "Curve2D", - "name": "curve", - "setter": "set_curve", - "getter": "get_curve" - } - ] - }, - { - "name": "Path3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408955118, - "arguments": [ - { - "name": "curve", - "type": "Curve3D" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4244715212, - "return_value": { - "type": "Curve3D" - } - }, - { - "name": "set_debug_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "debug_custom_color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "signals": [ - { - "name": "curve_changed" - }, - { - "name": "debug_color_changed" - } - ], - "properties": [ - { - "type": "Curve3D", - "name": "curve", - "setter": "set_curve", - "getter": "get_curve" - }, - { - "type": "Color", - "name": "debug_custom_color", - "setter": "set_debug_custom_color", - "getter": "get_debug_custom_color" - } - ] - }, - { - "name": "PathFollow2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_h_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "h_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_h_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_v_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "v_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_v_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_progress_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_progress_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rotates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_rotating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cubic_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_cubic_interpolation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "progress", - "setter": "set_progress", - "getter": "get_progress" - }, - { - "type": "float", - "name": "progress_ratio", - "setter": "set_progress_ratio", - "getter": "get_progress_ratio" - }, - { - "type": "float", - "name": "h_offset", - "setter": "set_h_offset", - "getter": "get_h_offset" - }, - { - "type": "float", - "name": "v_offset", - "setter": "set_v_offset", - "getter": "get_v_offset" - }, - { - "type": "bool", - "name": "rotates", - "setter": "set_rotates", - "getter": "is_rotating" - }, - { - "type": "bool", - "name": "cubic_interp", - "setter": "set_cubic_interpolation", - "getter": "get_cubic_interpolation" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - } - ] - }, - { - "name": "PathFollow3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "RotationMode", - "is_bitfield": false, - "values": [ - { - "name": "ROTATION_NONE", - "value": 0 - }, - { - "name": "ROTATION_Y", - "value": 1 - }, - { - "name": "ROTATION_XY", - "value": 2 - }, - { - "name": "ROTATION_XYZ", - "value": 3 - }, - { - "name": "ROTATION_ORIENTED", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "progress", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_h_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "h_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_h_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_v_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "v_offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_v_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_progress_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_progress_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rotation_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1640311967, - "arguments": [ - { - "name": "rotation_mode", - "type": "enum::PathFollow3D.RotationMode" - } - ] - }, - { - "name": "get_rotation_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814010545, - "return_value": { - "type": "enum::PathFollow3D.RotationMode" - } - }, - { - "name": "set_cubic_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_cubic_interpolation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_model_front", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_model_front", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tilt_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_tilt_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "correct_posture", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2686588690, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "rotation_mode", - "type": "enum::PathFollow3D.RotationMode" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "progress", - "setter": "set_progress", - "getter": "get_progress" - }, - { - "type": "float", - "name": "progress_ratio", - "setter": "set_progress_ratio", - "getter": "get_progress_ratio" - }, - { - "type": "float", - "name": "h_offset", - "setter": "set_h_offset", - "getter": "get_h_offset" - }, - { - "type": "float", - "name": "v_offset", - "setter": "set_v_offset", - "getter": "get_v_offset" - }, - { - "type": "int", - "name": "rotation_mode", - "setter": "set_rotation_mode", - "getter": "get_rotation_mode" - }, - { - "type": "bool", - "name": "use_model_front", - "setter": "set_use_model_front", - "getter": "is_using_model_front" - }, - { - "type": "bool", - "name": "cubic_interp", - "setter": "set_cubic_interpolation", - "getter": "get_cubic_interpolation" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - }, - { - "type": "bool", - "name": "tilt_enabled", - "setter": "set_tilt_enabled", - "getter": "is_tilt_enabled" - } - ] - }, - { - "name": "Performance", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "Monitor", - "is_bitfield": false, - "values": [ - { - "name": "TIME_FPS", - "value": 0 - }, - { - "name": "TIME_PROCESS", - "value": 1 - }, - { - "name": "TIME_PHYSICS_PROCESS", - "value": 2 - }, - { - "name": "TIME_NAVIGATION_PROCESS", - "value": 3 - }, - { - "name": "MEMORY_STATIC", - "value": 4 - }, - { - "name": "MEMORY_STATIC_MAX", - "value": 5 - }, - { - "name": "MEMORY_MESSAGE_BUFFER_MAX", - "value": 6 - }, - { - "name": "OBJECT_COUNT", - "value": 7 - }, - { - "name": "OBJECT_RESOURCE_COUNT", - "value": 8 - }, - { - "name": "OBJECT_NODE_COUNT", - "value": 9 - }, - { - "name": "OBJECT_ORPHAN_NODE_COUNT", - "value": 10 - }, - { - "name": "RENDER_TOTAL_OBJECTS_IN_FRAME", - "value": 11 - }, - { - "name": "RENDER_TOTAL_PRIMITIVES_IN_FRAME", - "value": 12 - }, - { - "name": "RENDER_TOTAL_DRAW_CALLS_IN_FRAME", - "value": 13 - }, - { - "name": "RENDER_VIDEO_MEM_USED", - "value": 14 - }, - { - "name": "RENDER_TEXTURE_MEM_USED", - "value": 15 - }, - { - "name": "RENDER_BUFFER_MEM_USED", - "value": 16 - }, - { - "name": "PHYSICS_2D_ACTIVE_OBJECTS", - "value": 17 - }, - { - "name": "PHYSICS_2D_COLLISION_PAIRS", - "value": 18 - }, - { - "name": "PHYSICS_2D_ISLAND_COUNT", - "value": 19 - }, - { - "name": "PHYSICS_3D_ACTIVE_OBJECTS", - "value": 20 - }, - { - "name": "PHYSICS_3D_COLLISION_PAIRS", - "value": 21 - }, - { - "name": "PHYSICS_3D_ISLAND_COUNT", - "value": 22 - }, - { - "name": "AUDIO_OUTPUT_LATENCY", - "value": 23 - }, - { - "name": "NAVIGATION_ACTIVE_MAPS", - "value": 24 - }, - { - "name": "NAVIGATION_REGION_COUNT", - "value": 25 - }, - { - "name": "NAVIGATION_AGENT_COUNT", - "value": 26 - }, - { - "name": "NAVIGATION_LINK_COUNT", - "value": 27 - }, - { - "name": "NAVIGATION_POLYGON_COUNT", - "value": 28 - }, - { - "name": "NAVIGATION_EDGE_COUNT", - "value": 29 - }, - { - "name": "NAVIGATION_EDGE_MERGE_COUNT", - "value": 30 - }, - { - "name": "NAVIGATION_EDGE_CONNECTION_COUNT", - "value": 31 - }, - { - "name": "NAVIGATION_EDGE_FREE_COUNT", - "value": 32 - }, - { - "name": "NAVIGATION_OBSTACLE_COUNT", - "value": 33 - }, - { - "name": "PIPELINE_COMPILATIONS_CANVAS", - "value": 34 - }, - { - "name": "PIPELINE_COMPILATIONS_MESH", - "value": 35 - }, - { - "name": "PIPELINE_COMPILATIONS_SURFACE", - "value": 36 - }, - { - "name": "PIPELINE_COMPILATIONS_DRAW", - "value": 37 - }, - { - "name": "PIPELINE_COMPILATIONS_SPECIALIZATION", - "value": 38 - }, - { - "name": "NAVIGATION_2D_ACTIVE_MAPS", - "value": 39 - }, - { - "name": "NAVIGATION_2D_REGION_COUNT", - "value": 40 - }, - { - "name": "NAVIGATION_2D_AGENT_COUNT", - "value": 41 - }, - { - "name": "NAVIGATION_2D_LINK_COUNT", - "value": 42 - }, - { - "name": "NAVIGATION_2D_POLYGON_COUNT", - "value": 43 - }, - { - "name": "NAVIGATION_2D_EDGE_COUNT", - "value": 44 - }, - { - "name": "NAVIGATION_2D_EDGE_MERGE_COUNT", - "value": 45 - }, - { - "name": "NAVIGATION_2D_EDGE_CONNECTION_COUNT", - "value": 46 - }, - { - "name": "NAVIGATION_2D_EDGE_FREE_COUNT", - "value": 47 - }, - { - "name": "NAVIGATION_2D_OBSTACLE_COUNT", - "value": 48 - }, - { - "name": "NAVIGATION_3D_ACTIVE_MAPS", - "value": 49 - }, - { - "name": "NAVIGATION_3D_REGION_COUNT", - "value": 50 - }, - { - "name": "NAVIGATION_3D_AGENT_COUNT", - "value": 51 - }, - { - "name": "NAVIGATION_3D_LINK_COUNT", - "value": 52 - }, - { - "name": "NAVIGATION_3D_POLYGON_COUNT", - "value": 53 - }, - { - "name": "NAVIGATION_3D_EDGE_COUNT", - "value": 54 - }, - { - "name": "NAVIGATION_3D_EDGE_MERGE_COUNT", - "value": 55 - }, - { - "name": "NAVIGATION_3D_EDGE_CONNECTION_COUNT", - "value": 56 - }, - { - "name": "NAVIGATION_3D_EDGE_FREE_COUNT", - "value": 57 - }, - { - "name": "NAVIGATION_3D_OBSTACLE_COUNT", - "value": 58 - }, - { - "name": "MONITOR_MAX", - "value": 59 - } - ] - }, - { - "name": "MonitorType", - "is_bitfield": false, - "values": [ - { - "name": "MONITOR_TYPE_QUANTITY", - "value": 0 - }, - { - "name": "MONITOR_TYPE_MEMORY", - "value": 1 - }, - { - "name": "MONITOR_TYPE_TIME", - "value": 2 - }, - { - "name": "MONITOR_TYPE_PERCENTAGE", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_monitor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1943275655, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "monitor", - "type": "enum::Performance.Monitor" - } - ] - }, - { - "name": "add_custom_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655788610, - "hash_compatibility": [ - 4099036814, - 2865980031 - ], - "arguments": [ - { - "name": "id", - "type": "StringName" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "arguments", - "type": "Array", - "default_value": "[]" - }, - { - "name": "type", - "type": "enum::Performance.MonitorType", - "default_value": "0" - } - ] - }, - { - "name": "remove_custom_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "id", - "type": "StringName" - } - ] - }, - { - "name": "has_custom_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2041966384, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "StringName" - } - ] - }, - { - "name": "get_custom_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "id", - "type": "StringName" - } - ] - }, - { - "name": "get_monitor_modification_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_custom_monitor_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "get_custom_monitor_types", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - } - ] - }, - { - "name": "PhysicalBone2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RigidBody2D", - "api_type": "core", - "methods": [ - { - "name": "get_joint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3582132112, - "return_value": { - "type": "Joint2D" - } - }, - { - "name": "get_auto_configure_joint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_configure_joint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "auto_configure_joint", - "type": "bool" - } - ] - }, - { - "name": "set_simulate_physics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "simulate_physics", - "type": "bool" - } - ] - }, - { - "name": "get_simulate_physics", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_simulating_physics", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_bone2d_nodepath", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_bone2d_nodepath", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_bone2d_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone2d_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_follow_bone_when_simulating", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "follow_bone", - "type": "bool" - } - ] - }, - { - "name": "get_follow_bone_when_simulating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "bone2d_nodepath", - "setter": "set_bone2d_nodepath", - "getter": "get_bone2d_nodepath" - }, - { - "type": "int", - "name": "bone2d_index", - "setter": "set_bone2d_index", - "getter": "get_bone2d_index" - }, - { - "type": "bool", - "name": "auto_configure_joint", - "setter": "set_auto_configure_joint", - "getter": "get_auto_configure_joint" - }, - { - "type": "bool", - "name": "simulate_physics", - "setter": "set_simulate_physics", - "getter": "get_simulate_physics" - }, - { - "type": "bool", - "name": "follow_bone_when_simulating", - "setter": "set_follow_bone_when_simulating", - "getter": "get_follow_bone_when_simulating" - } - ] - }, - { - "name": "PhysicalBone3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody3D", - "api_type": "core", - "enums": [ - { - "name": "DampMode", - "is_bitfield": false, - "values": [ - { - "name": "DAMP_MODE_COMBINE", - "value": 0 - }, - { - "name": "DAMP_MODE_REPLACE", - "value": 1 - } - ] - }, - { - "name": "JointType", - "is_bitfield": false, - "values": [ - { - "name": "JOINT_TYPE_NONE", - "value": 0 - }, - { - "name": "JOINT_TYPE_PIN", - "value": 1 - }, - { - "name": "JOINT_TYPE_CONE", - "value": 2 - }, - { - "name": "JOINT_TYPE_HINGE", - "value": 3 - }, - { - "name": "JOINT_TYPE_SLIDER", - "value": 4 - }, - { - "name": "JOINT_TYPE_6DOF", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "_integrate_forces", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 420958145, - "arguments": [ - { - "name": "state", - "type": "PhysicsDirectBodyState3D", - "meta": "required" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "set_joint_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2289552604, - "arguments": [ - { - "name": "joint_type", - "type": "enum::PhysicalBone3D.JointType" - } - ] - }, - { - "name": "get_joint_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 931347320, - "return_value": { - "type": "enum::PhysicalBone3D.JointType" - } - }, - { - "name": "set_joint_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "offset", - "type": "Transform3D" - } - ] - }, - { - "name": "get_joint_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_joint_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "euler", - "type": "Vector3" - } - ] - }, - { - "name": "get_joint_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_body_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "offset", - "type": "Transform3D" - } - ] - }, - { - "name": "get_body_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_simulate_physics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_simulating_physics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_bone_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_friction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "friction", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_friction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bounce", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bounce", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bounce", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_gravity_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1244972221, - "arguments": [ - { - "name": "linear_damp_mode", - "type": "enum::PhysicalBone3D.DampMode" - } - ] - }, - { - "name": "get_linear_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205884699, - "return_value": { - "type": "enum::PhysicalBone3D.DampMode" - } - }, - { - "name": "set_angular_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1244972221, - "arguments": [ - { - "name": "angular_damp_mode", - "type": "enum::PhysicalBone3D.DampMode" - } - ] - }, - { - "name": "get_angular_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205884699, - "return_value": { - "type": "enum::PhysicalBone3D.DampMode" - } - }, - { - "name": "set_linear_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "angular_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_use_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_can_sleep", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "able_to_sleep", - "type": "bool" - } - ] - }, - { - "name": "is_able_to_sleep", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "joint_type", - "setter": "set_joint_type", - "getter": "get_joint_type" - }, - { - "type": "Transform3D", - "name": "joint_offset", - "setter": "set_joint_offset", - "getter": "get_joint_offset" - }, - { - "type": "Vector3", - "name": "joint_rotation", - "setter": "set_joint_rotation", - "getter": "get_joint_rotation" - }, - { - "type": "Transform3D", - "name": "body_offset", - "setter": "set_body_offset", - "getter": "get_body_offset" - }, - { - "type": "float", - "name": "mass", - "setter": "set_mass", - "getter": "get_mass" - }, - { - "type": "float", - "name": "friction", - "setter": "set_friction", - "getter": "get_friction" - }, - { - "type": "float", - "name": "bounce", - "setter": "set_bounce", - "getter": "get_bounce" - }, - { - "type": "float", - "name": "gravity_scale", - "setter": "set_gravity_scale", - "getter": "get_gravity_scale" - }, - { - "type": "bool", - "name": "custom_integrator", - "setter": "set_use_custom_integrator", - "getter": "is_using_custom_integrator" - }, - { - "type": "int", - "name": "linear_damp_mode", - "setter": "set_linear_damp_mode", - "getter": "get_linear_damp_mode" - }, - { - "type": "float", - "name": "linear_damp", - "setter": "set_linear_damp", - "getter": "get_linear_damp" - }, - { - "type": "int", - "name": "angular_damp_mode", - "setter": "set_angular_damp_mode", - "getter": "get_angular_damp_mode" - }, - { - "type": "float", - "name": "angular_damp", - "setter": "set_angular_damp", - "getter": "get_angular_damp" - }, - { - "type": "Vector3", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "Vector3", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "bool", - "name": "can_sleep", - "setter": "set_can_sleep", - "getter": "is_able_to_sleep" - } - ] - }, - { - "name": "PhysicalBoneSimulator3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "methods": [ - { - "name": "is_simulating_physics", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "physical_bones_stop_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "physical_bones_start_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787316981, - "arguments": [ - { - "name": "bones", - "type": "typedarray::StringName", - "default_value": "[]" - } - ] - }, - { - "name": "physical_bones_add_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "exception", - "type": "RID" - } - ] - }, - { - "name": "physical_bones_remove_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "exception", - "type": "RID" - } - ] - } - ] - }, - { - "name": "PhysicalSkyMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "methods": [ - { - "name": "set_rayleigh_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rayleigh", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_rayleigh_coefficient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rayleigh_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_rayleigh_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_mie_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mie", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mie_coefficient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mie_eccentricity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "eccentricity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mie_eccentricity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mie_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_mie_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_turbidity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "turbidity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_turbidity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sun_disk_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sun_disk_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ground_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_ground_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_debanding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_debanding", - "type": "bool" - } - ] - }, - { - "name": "get_use_debanding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_night_sky", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "night_sky", - "type": "Texture2D" - } - ] - }, - { - "name": "get_night_sky", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "properties": [ - { - "type": "float", - "name": "rayleigh_coefficient", - "setter": "set_rayleigh_coefficient", - "getter": "get_rayleigh_coefficient" - }, - { - "type": "Color", - "name": "rayleigh_color", - "setter": "set_rayleigh_color", - "getter": "get_rayleigh_color" - }, - { - "type": "float", - "name": "mie_coefficient", - "setter": "set_mie_coefficient", - "getter": "get_mie_coefficient" - }, - { - "type": "float", - "name": "mie_eccentricity", - "setter": "set_mie_eccentricity", - "getter": "get_mie_eccentricity" - }, - { - "type": "Color", - "name": "mie_color", - "setter": "set_mie_color", - "getter": "get_mie_color" - }, - { - "type": "float", - "name": "turbidity", - "setter": "set_turbidity", - "getter": "get_turbidity" - }, - { - "type": "float", - "name": "sun_disk_scale", - "setter": "set_sun_disk_scale", - "getter": "get_sun_disk_scale" - }, - { - "type": "Color", - "name": "ground_color", - "setter": "set_ground_color", - "getter": "get_ground_color" - }, - { - "type": "float", - "name": "energy_multiplier", - "setter": "set_energy_multiplier", - "getter": "get_energy_multiplier" - }, - { - "type": "bool", - "name": "use_debanding", - "setter": "set_use_debanding", - "getter": "get_use_debanding" - }, - { - "type": "Texture2D", - "name": "night_sky", - "setter": "set_night_sky", - "getter": "get_night_sky" - } - ] - }, - { - "name": "PhysicsBody2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "CollisionObject2D", - "api_type": "core", - "methods": [ - { - "name": "move_and_collide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3681923724, - "hash_compatibility": [ - 1529961754 - ], - "return_value": { - "type": "KinematicCollision2D" - }, - "arguments": [ - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "test_only", - "type": "bool", - "default_value": "false" - }, - { - "name": "safe_margin", - "type": "float", - "meta": "float", - "default_value": "0.08" - }, - { - "name": "recovery_as_collision", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "test_move", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3324464701, - "hash_compatibility": [ - 1369208982 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "collision", - "type": "KinematicCollision2D", - "default_value": "null" - }, - { - "name": "safe_margin", - "type": "float", - "meta": "float", - "default_value": "0.08" - }, - { - "name": "recovery_as_collision", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collision_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::PhysicsBody2D" - } - }, - { - "name": "add_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "remove_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - } - ] - }, - { - "name": "PhysicsBody3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "CollisionObject3D", - "api_type": "core", - "methods": [ - { - "name": "move_and_collide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3208792678, - "hash_compatibility": [ - 2825704414 - ], - "return_value": { - "type": "KinematicCollision3D" - }, - "arguments": [ - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "test_only", - "type": "bool", - "default_value": "false" - }, - { - "name": "safe_margin", - "type": "float", - "meta": "float", - "default_value": "0.001" - }, - { - "name": "recovery_as_collision", - "type": "bool", - "default_value": "false" - }, - { - "name": "max_collisions", - "type": "int", - "meta": "int32", - "default_value": "1" - } - ] - }, - { - "name": "test_move", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2481691619, - "hash_compatibility": [ - 680299713 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "collision", - "type": "KinematicCollision3D", - "default_value": "null" - }, - { - "name": "safe_margin", - "type": "float", - "meta": "float", - "default_value": "0.001" - }, - { - "name": "recovery_as_collision", - "type": "bool", - "default_value": "false" - }, - { - "name": "max_collisions", - "type": "int", - "meta": "int32", - "default_value": "1" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_axis_lock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1787895195, - "arguments": [ - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - }, - { - "name": "lock", - "type": "bool" - } - ] - }, - { - "name": "get_axis_lock", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2264617709, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - } - ] - }, - { - "name": "get_collision_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::PhysicsBody3D" - } - }, - { - "name": "add_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "remove_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "axis_lock_linear_x", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 1 - }, - { - "type": "bool", - "name": "axis_lock_linear_y", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 2 - }, - { - "type": "bool", - "name": "axis_lock_linear_z", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 4 - }, - { - "type": "bool", - "name": "axis_lock_angular_x", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 8 - }, - { - "type": "bool", - "name": "axis_lock_angular_y", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 16 - }, - { - "type": "bool", - "name": "axis_lock_angular_z", - "setter": "set_axis_lock", - "getter": "get_axis_lock", - "index": 32 - } - ] - }, - { - "name": "PhysicsDirectBodyState2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_total_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_total_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_total_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_center_of_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_center_of_mass_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_inverse_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_inverse_inertia", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "velocity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_velocity_at_local_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector2" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "impulse", - "type": "Vector2" - } - ] - }, - { - "name": "apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "impulse", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "impulse", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3862383994, - "arguments": [ - { - "name": "force", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3862383994, - "arguments": [ - { - "name": "force", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sleep_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_sleeping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_contact_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_contact_local_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_velocity_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_velocity_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_impulse", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "integrate_forces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_space_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2506717822, - "return_value": { - "type": "PhysicsDirectSpaceState2D", - "meta": "required" - } - } - ], - "properties": [ - { - "type": "float", - "name": "step", - "getter": "get_step" - }, - { - "type": "float", - "name": "inverse_mass", - "getter": "get_inverse_mass" - }, - { - "type": "float", - "name": "inverse_inertia", - "getter": "get_inverse_inertia" - }, - { - "type": "float", - "name": "total_angular_damp", - "getter": "get_total_angular_damp" - }, - { - "type": "float", - "name": "total_linear_damp", - "getter": "get_total_linear_damp" - }, - { - "type": "Vector2", - "name": "total_gravity", - "getter": "get_total_gravity" - }, - { - "type": "Vector2", - "name": "center_of_mass", - "getter": "get_center_of_mass" - }, - { - "type": "Vector2", - "name": "center_of_mass_local", - "getter": "get_center_of_mass_local" - }, - { - "type": "float", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "Vector2", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "bool", - "name": "sleeping", - "setter": "set_sleep_state", - "getter": "is_sleeping" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - } - ] - }, - { - "name": "PhysicsDirectBodyState2DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectBodyState2D", - "api_type": "core", - "methods": [ - { - "name": "_get_total_gravity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_total_linear_damp", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_total_angular_damp", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_center_of_mass", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_center_of_mass_local", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_inverse_mass", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_inverse_inertia", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_set_linear_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 743155724, - "arguments": [ - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "_get_linear_velocity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_set_angular_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "velocity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_get_angular_velocity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_set_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "_get_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "_get_velocity_at_local_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector2" - } - ] - }, - { - "name": "_apply_central_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 743155724, - "arguments": [ - { - "name": "impulse", - "type": "Vector2" - } - ] - }, - { - "name": "_apply_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3108078480, - "arguments": [ - { - "name": "impulse", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_apply_torque_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "impulse", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_apply_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_apply_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3108078480, - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_apply_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_add_constant_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_add_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3108078480, - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_add_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_set_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_get_constant_force", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_set_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_get_constant_torque", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_set_sleep_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_is_sleeping", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_contact_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_contact_local_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_normal", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_velocity_at_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_object", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_velocity_at_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_impulse", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_step", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_integrate_forces", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_space_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2506717822, - "return_value": { - "type": "PhysicsDirectSpaceState2D", - "meta": "required" - } - } - ] - }, - { - "name": "PhysicsDirectBodyState3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_total_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_total_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_total_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_center_of_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_center_of_mass_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_principal_inertia_axes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "get_inverse_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_inverse_inertia", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_inverse_inertia_tensor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_velocity_at_local_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2007698547, - "arguments": [ - { - "name": "impulse", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2007698547, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2007698547, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_sleep_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_sleeping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_contact_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_contact_local_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_impulse", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_local_velocity_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_contact_collider_velocity_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "integrate_forces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_space_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2069328350, - "return_value": { - "type": "PhysicsDirectSpaceState3D", - "meta": "required" - } - } - ], - "properties": [ - { - "type": "float", - "name": "step", - "getter": "get_step" - }, - { - "type": "float", - "name": "inverse_mass", - "getter": "get_inverse_mass" - }, - { - "type": "float", - "name": "total_angular_damp", - "getter": "get_total_angular_damp" - }, - { - "type": "float", - "name": "total_linear_damp", - "getter": "get_total_linear_damp" - }, - { - "type": "Vector3", - "name": "inverse_inertia", - "getter": "get_inverse_inertia" - }, - { - "type": "Basis", - "name": "inverse_inertia_tensor", - "getter": "get_inverse_inertia_tensor" - }, - { - "type": "Vector3", - "name": "total_gravity", - "getter": "get_total_gravity" - }, - { - "type": "Vector3", - "name": "center_of_mass", - "getter": "get_center_of_mass" - }, - { - "type": "Vector3", - "name": "center_of_mass_local", - "getter": "get_center_of_mass_local" - }, - { - "type": "Basis", - "name": "principal_inertia_axes", - "getter": "get_principal_inertia_axes" - }, - { - "type": "Vector3", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "Vector3", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "bool", - "name": "sleeping", - "setter": "set_sleep_state", - "getter": "is_sleeping" - }, - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "Transform3D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - } - ] - }, - { - "name": "PhysicsDirectBodyState3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectBodyState3D", - "api_type": "core", - "methods": [ - { - "name": "_get_total_gravity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_get_total_linear_damp", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_total_angular_damp", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_center_of_mass", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_get_center_of_mass_local", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_get_principal_inertia_axes", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "_get_inverse_mass", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_get_inverse_inertia", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_get_inverse_inertia_tensor", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "_set_linear_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "_get_linear_velocity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_set_angular_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "_get_angular_velocity", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_set_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2952846383, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_get_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "_get_velocity_at_local_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 192990374, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_central_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1714681797, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_torque_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1714681797, - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_apply_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_add_constant_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_add_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1714681797, - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_add_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_set_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_get_constant_force", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_set_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_get_constant_torque", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "_set_sleep_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_is_sleeping", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_contact_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_contact_local_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_normal", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_impulse", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_local_velocity_at_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_object", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_contact_collider_velocity_at_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_step", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "_integrate_forces", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_space_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2069328350, - "return_value": { - "type": "PhysicsDirectSpaceState3D", - "meta": "required" - } - } - ] - }, - { - "name": "PhysicsDirectSpaceState2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "intersect_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2118456068, - "hash_compatibility": [ - 3278207904 - ], - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsPointQueryParameters2D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "intersect_ray", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1590275562, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsRayQueryParameters2D", - "meta": "required" - } - ] - }, - { - "name": "intersect_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2488867228, - "hash_compatibility": [ - 3803848594 - ], - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters2D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "cast_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711275086, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters2D", - "meta": "required" - } - ] - }, - { - "name": "collide_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2488867228, - "hash_compatibility": [ - 3803848594 - ], - "return_value": { - "type": "typedarray::Vector2" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters2D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "get_rest_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2803666496, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters2D", - "meta": "required" - } - ] - } - ] - }, - { - "name": "PhysicsDirectSpaceState2DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectSpaceState2D", - "api_type": "core", - "methods": [ - { - "name": "_intersect_ray", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2840492092, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "hit_from_inside", - "type": "bool" - }, - { - "name": "r_result", - "type": "PhysicsServer2DExtensionRayResult*" - } - ] - }, - { - "name": "_intersect_point", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 522407812, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - }, - { - "name": "canvas_instance_id", - "type": "int", - "meta": "uint64" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_results", - "type": "PhysicsServer2DExtensionShapeResult*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_intersect_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1584897015, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_result", - "type": "PhysicsServer2DExtensionShapeResult*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_cast_motion", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1410701151, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_closest_safe", - "type": "float*" - }, - { - "name": "r_closest_unsafe", - "type": "float*" - } - ] - }, - { - "name": "_collide_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 871510130, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_results", - "type": "void*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - }, - { - "name": "r_result_count", - "type": "int32_t*" - } - ] - }, - { - "name": "_rest_info", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 772675997, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_rest_info", - "type": "PhysicsServer2DExtensionShapeRestInfo*" - } - ] - }, - { - "name": "is_body_excluded_from_query", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - } - ] - }, - { - "name": "PhysicsDirectSpaceState3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "intersect_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 975173756, - "hash_compatibility": [ - 45993382 - ], - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsPointQueryParameters3D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "intersect_ray", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3957970750, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsRayQueryParameters3D", - "meta": "required" - } - ] - }, - { - "name": "intersect_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762137681, - "hash_compatibility": [ - 550215980 - ], - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters3D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "cast_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1778757334, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters3D", - "meta": "required" - } - ] - }, - { - "name": "collide_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3762137681, - "hash_compatibility": [ - 550215980 - ], - "return_value": { - "type": "typedarray::Vector3" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters3D", - "meta": "required" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32", - "default_value": "32" - } - ] - }, - { - "name": "get_rest_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1376751592, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "parameters", - "type": "PhysicsShapeQueryParameters3D", - "meta": "required" - } - ] - } - ] - }, - { - "name": "PhysicsDirectSpaceState3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsDirectSpaceState3D", - "api_type": "core", - "methods": [ - { - "name": "_intersect_ray", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2022529123, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "hit_from_inside", - "type": "bool" - }, - { - "name": "hit_back_faces", - "type": "bool" - }, - { - "name": "pick_ray", - "type": "bool" - }, - { - "name": "r_result", - "type": "PhysicsServer3DExtensionRayResult*" - } - ] - }, - { - "name": "_intersect_point", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3378904092, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector3" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_results", - "type": "PhysicsServer3DExtensionShapeResult*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_intersect_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 728953575, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_result_count", - "type": "PhysicsServer3DExtensionShapeResult*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_cast_motion", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2320624824, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_closest_safe", - "type": "float*" - }, - { - "name": "r_closest_unsafe", - "type": "float*" - }, - { - "name": "r_info", - "type": "PhysicsServer3DExtensionShapeRestInfo*" - } - ] - }, - { - "name": "_collide_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2320624824, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_results", - "type": "void*" - }, - { - "name": "max_results", - "type": "int", - "meta": "int32" - }, - { - "name": "r_result_count", - "type": "int32_t*" - } - ] - }, - { - "name": "_rest_info", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 856242757, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - }, - { - "name": "collide_with_bodies", - "type": "bool" - }, - { - "name": "collide_with_areas", - "type": "bool" - }, - { - "name": "r_rest_info", - "type": "PhysicsServer3DExtensionShapeRestInfo*" - } - ] - }, - { - "name": "_get_closest_point_to_object_volume", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2056183332, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "object", - "type": "RID" - }, - { - "name": "point", - "type": "Vector3" - } - ] - }, - { - "name": "is_body_excluded_from_query", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - } - ] - }, - { - "name": "PhysicsMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_friction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "friction", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_friction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rough", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "rough", - "type": "bool" - } - ] - }, - { - "name": "is_rough", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_bounce", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bounce", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bounce", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_absorbent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "absorbent", - "type": "bool" - } - ] - }, - { - "name": "is_absorbent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "friction", - "setter": "set_friction", - "getter": "get_friction" - }, - { - "type": "bool", - "name": "rough", - "setter": "set_rough", - "getter": "is_rough" - }, - { - "type": "float", - "name": "bounce", - "setter": "set_bounce", - "getter": "get_bounce" - }, - { - "type": "bool", - "name": "absorbent", - "setter": "set_absorbent", - "getter": "is_absorbent" - } - ] - }, - { - "name": "PhysicsPointQueryParameters2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_canvas_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "canvas_instance_id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_canvas_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "int", - "name": "canvas_instance_id", - "setter": "set_canvas_instance_id", - "getter": "get_canvas_instance_id" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - } - ] - }, - { - "name": "PhysicsPointQueryParameters3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - } - ] - }, - { - "name": "PhysicsRayQueryParameters2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "create", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3196569324, - "hash_compatibility": [ - 1118143851 - ], - "return_value": { - "type": "PhysicsRayQueryParameters2D" - }, - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32", - "default_value": "4294967295" - }, - { - "name": "exclude", - "type": "typedarray::RID", - "default_value": "Array[RID]([])" - } - ] - }, - { - "name": "set_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "from", - "type": "Vector2" - } - ] - }, - { - "name": "get_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "get_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_from_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_from_inside_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "from", - "setter": "set_from", - "getter": "get_from" - }, - { - "type": "Vector2", - "name": "to", - "setter": "set_to", - "getter": "get_to" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "hit_from_inside", - "setter": "set_hit_from_inside", - "getter": "is_hit_from_inside_enabled" - } - ] - }, - { - "name": "PhysicsRayQueryParameters3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "create", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3110599579, - "hash_compatibility": [ - 680321959 - ], - "return_value": { - "type": "PhysicsRayQueryParameters3D" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "collision_mask", - "type": "int", - "meta": "uint32", - "default_value": "4294967295" - }, - { - "name": "exclude", - "type": "typedarray::RID", - "default_value": "Array[RID]([])" - } - ] - }, - { - "name": "set_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "from", - "type": "Vector3" - } - ] - }, - { - "name": "get_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_to", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "to", - "type": "Vector3" - } - ] - }, - { - "name": "get_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_from_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_from_inside_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_back_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_back_faces_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "from", - "setter": "set_from", - "getter": "get_from" - }, - { - "type": "Vector3", - "name": "to", - "setter": "set_to", - "getter": "get_to" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "hit_from_inside", - "setter": "set_hit_from_inside", - "getter": "is_hit_from_inside_enabled" - }, - { - "type": "bool", - "name": "hit_back_faces", - "setter": "set_hit_back_faces", - "getter": "is_hit_back_faces_enabled" - } - ] - }, - { - "name": "PhysicsServer2D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "SpaceParameter", - "is_bitfield": false, - "values": [ - { - "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", - "value": 0 - }, - { - "name": "SPACE_PARAM_CONTACT_MAX_SEPARATION", - "value": 1 - }, - { - "name": "SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION", - "value": 2 - }, - { - "name": "SPACE_PARAM_CONTACT_DEFAULT_BIAS", - "value": 3 - }, - { - "name": "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD", - "value": 4 - }, - { - "name": "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD", - "value": 5 - }, - { - "name": "SPACE_PARAM_BODY_TIME_TO_SLEEP", - "value": 6 - }, - { - "name": "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS", - "value": 7 - }, - { - "name": "SPACE_PARAM_SOLVER_ITERATIONS", - "value": 8 - } - ] - }, - { - "name": "ShapeType", - "is_bitfield": false, - "values": [ - { - "name": "SHAPE_WORLD_BOUNDARY", - "value": 0 - }, - { - "name": "SHAPE_SEPARATION_RAY", - "value": 1 - }, - { - "name": "SHAPE_SEGMENT", - "value": 2 - }, - { - "name": "SHAPE_CIRCLE", - "value": 3 - }, - { - "name": "SHAPE_RECTANGLE", - "value": 4 - }, - { - "name": "SHAPE_CAPSULE", - "value": 5 - }, - { - "name": "SHAPE_CONVEX_POLYGON", - "value": 6 - }, - { - "name": "SHAPE_CONCAVE_POLYGON", - "value": 7 - }, - { - "name": "SHAPE_CUSTOM", - "value": 8 - } - ] - }, - { - "name": "AreaParameter", - "is_bitfield": false, - "values": [ - { - "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", - "value": 0 - }, - { - "name": "AREA_PARAM_GRAVITY", - "value": 1 - }, - { - "name": "AREA_PARAM_GRAVITY_VECTOR", - "value": 2 - }, - { - "name": "AREA_PARAM_GRAVITY_IS_POINT", - "value": 3 - }, - { - "name": "AREA_PARAM_GRAVITY_POINT_UNIT_DISTANCE", - "value": 4 - }, - { - "name": "AREA_PARAM_LINEAR_DAMP_OVERRIDE_MODE", - "value": 5 - }, - { - "name": "AREA_PARAM_LINEAR_DAMP", - "value": 6 - }, - { - "name": "AREA_PARAM_ANGULAR_DAMP_OVERRIDE_MODE", - "value": 7 - }, - { - "name": "AREA_PARAM_ANGULAR_DAMP", - "value": 8 - }, - { - "name": "AREA_PARAM_PRIORITY", - "value": 9 - } - ] - }, - { - "name": "AreaSpaceOverrideMode", - "is_bitfield": false, - "values": [ - { - "name": "AREA_SPACE_OVERRIDE_DISABLED", - "value": 0 - }, - { - "name": "AREA_SPACE_OVERRIDE_COMBINE", - "value": 1 - }, - { - "name": "AREA_SPACE_OVERRIDE_COMBINE_REPLACE", - "value": 2 - }, - { - "name": "AREA_SPACE_OVERRIDE_REPLACE", - "value": 3 - }, - { - "name": "AREA_SPACE_OVERRIDE_REPLACE_COMBINE", - "value": 4 - } - ] - }, - { - "name": "BodyMode", - "is_bitfield": false, - "values": [ - { - "name": "BODY_MODE_STATIC", - "value": 0 - }, - { - "name": "BODY_MODE_KINEMATIC", - "value": 1 - }, - { - "name": "BODY_MODE_RIGID", - "value": 2 - }, - { - "name": "BODY_MODE_RIGID_LINEAR", - "value": 3 - } - ] - }, - { - "name": "BodyParameter", - "is_bitfield": false, - "values": [ - { - "name": "BODY_PARAM_BOUNCE", - "value": 0 - }, - { - "name": "BODY_PARAM_FRICTION", - "value": 1 - }, - { - "name": "BODY_PARAM_MASS", - "value": 2 - }, - { - "name": "BODY_PARAM_INERTIA", - "value": 3 - }, - { - "name": "BODY_PARAM_CENTER_OF_MASS", - "value": 4 - }, - { - "name": "BODY_PARAM_GRAVITY_SCALE", - "value": 5 - }, - { - "name": "BODY_PARAM_LINEAR_DAMP_MODE", - "value": 6 - }, - { - "name": "BODY_PARAM_ANGULAR_DAMP_MODE", - "value": 7 - }, - { - "name": "BODY_PARAM_LINEAR_DAMP", - "value": 8 - }, - { - "name": "BODY_PARAM_ANGULAR_DAMP", - "value": 9 - }, - { - "name": "BODY_PARAM_MAX", - "value": 10 - } - ] - }, - { - "name": "BodyDampMode", - "is_bitfield": false, - "values": [ - { - "name": "BODY_DAMP_MODE_COMBINE", - "value": 0 - }, - { - "name": "BODY_DAMP_MODE_REPLACE", - "value": 1 - } - ] - }, - { - "name": "BodyState", - "is_bitfield": false, - "values": [ - { - "name": "BODY_STATE_TRANSFORM", - "value": 0 - }, - { - "name": "BODY_STATE_LINEAR_VELOCITY", - "value": 1 - }, - { - "name": "BODY_STATE_ANGULAR_VELOCITY", - "value": 2 - }, - { - "name": "BODY_STATE_SLEEPING", - "value": 3 - }, - { - "name": "BODY_STATE_CAN_SLEEP", - "value": 4 - } - ] - }, - { - "name": "JointType", - "is_bitfield": false, - "values": [ - { - "name": "JOINT_TYPE_PIN", - "value": 0 - }, - { - "name": "JOINT_TYPE_GROOVE", - "value": 1 - }, - { - "name": "JOINT_TYPE_DAMPED_SPRING", - "value": 2 - }, - { - "name": "JOINT_TYPE_MAX", - "value": 3 - } - ] - }, - { - "name": "JointParam", - "is_bitfield": false, - "values": [ - { - "name": "JOINT_PARAM_BIAS", - "value": 0 - }, - { - "name": "JOINT_PARAM_MAX_BIAS", - "value": 1 - }, - { - "name": "JOINT_PARAM_MAX_FORCE", - "value": 2 - } - ] - }, - { - "name": "PinJointParam", - "is_bitfield": false, - "values": [ - { - "name": "PIN_JOINT_SOFTNESS", - "value": 0 - }, - { - "name": "PIN_JOINT_LIMIT_UPPER", - "value": 1 - }, - { - "name": "PIN_JOINT_LIMIT_LOWER", - "value": 2 - }, - { - "name": "PIN_JOINT_MOTOR_TARGET_VELOCITY", - "value": 3 - } - ] - }, - { - "name": "PinJointFlag", - "is_bitfield": false, - "values": [ - { - "name": "PIN_JOINT_FLAG_ANGULAR_LIMIT_ENABLED", - "value": 0 - }, - { - "name": "PIN_JOINT_FLAG_MOTOR_ENABLED", - "value": 1 - } - ] - }, - { - "name": "DampedSpringParam", - "is_bitfield": false, - "values": [ - { - "name": "DAMPED_SPRING_REST_LENGTH", - "value": 0 - }, - { - "name": "DAMPED_SPRING_STIFFNESS", - "value": 1 - }, - { - "name": "DAMPED_SPRING_DAMPING", - "value": 2 - } - ] - }, - { - "name": "CCDMode", - "is_bitfield": false, - "values": [ - { - "name": "CCD_MODE_DISABLED", - "value": 0 - }, - { - "name": "CCD_MODE_CAST_RAY", - "value": 1 - }, - { - "name": "CCD_MODE_CAST_SHAPE", - "value": 2 - } - ] - }, - { - "name": "AreaBodyStatus", - "is_bitfield": false, - "values": [ - { - "name": "AREA_BODY_ADDED", - "value": 0 - }, - { - "name": "AREA_BODY_REMOVED", - "value": 1 - } - ] - }, - { - "name": "ProcessInfo", - "is_bitfield": false, - "values": [ - { - "name": "INFO_ACTIVE_OBJECTS", - "value": 0 - }, - { - "name": "INFO_COLLISION_PAIRS", - "value": 1 - }, - { - "name": "INFO_ISLAND_COUNT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "world_boundary_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "separation_ray_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "segment_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "circle_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "rectangle_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "capsule_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "convex_polygon_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "concave_polygon_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "shape_set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175752987, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "shape_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1240598777, - "return_value": { - "type": "enum::PhysicsServer2D.ShapeType" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "shape_get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "space_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "space_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "space_is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "space_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 949194586, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.SpaceParameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "space_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 874111783, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.SpaceParameter" - } - ] - }, - { - "name": "space_get_direct_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160173886, - "return_value": { - "type": "PhysicsDirectSpaceState2D" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "area_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "area_set_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "area_get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 339056240, - "hash_compatibility": [ - 754862190 - ], - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D", - "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "area_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "area_set_shape_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 736082694, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "area_set_shape_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "area_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_get_shape_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "area_get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "area_get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1257146028, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.AreaParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "area_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "area_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3047435120, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.AreaParameter" - } - ] - }, - { - "name": "area_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 213527486, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_attach_object_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "area_get_object_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_attach_canvas_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "area_get_canvas_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_monitor_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "area_set_area_monitor_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "area_set_monitorable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "monitorable", - "type": "bool" - } - ] - }, - { - "name": "body_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "body_set_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "body_get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1658067650, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer2D.BodyMode" - } - ] - }, - { - "name": "body_get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3261702585, - "return_value": { - "type": "enum::PhysicsServer2D.BodyMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 339056240, - "hash_compatibility": [ - 754862190 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D", - "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "body_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "body_set_shape_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 736082694, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "body_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_get_shape_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_shape_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "body_set_shape_as_one_way_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2389283141, - "hash_compatibility": [ - 2556489974 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "direction", - "type": "Vector2", - "default_value": "Vector2(0, 1)" - } - ] - }, - { - "name": "body_attach_object_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "body_get_object_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_attach_canvas_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "body_get_canvas_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_continuous_collision_detection_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882257015, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer2D.CCDMode" - } - ] - }, - { - "name": "body_get_continuous_collision_detection_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2661282217, - "return_value": { - "type": "enum::PhysicsServer2D.CCDMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "body_get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "body_get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2715630609, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.BodyParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "body_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3208033526, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.BodyParameter" - } - ] - }, - { - "name": "body_reset_mass_properties", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706355209, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer2D.BodyState" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "body_get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4036367961, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer2D.BodyState" - } - ] - }, - { - "name": "body_apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector2" - } - ] - }, - { - "name": "body_apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205485391, - "hash_compatibility": [ - 34330743 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "body_apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "body_apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205485391, - "hash_compatibility": [ - 34330743 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "body_apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "body_add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205485391, - "hash_compatibility": [ - 34330743 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "body_add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "body_get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_axis_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis_velocity", - "type": "Vector2" - } - ] - }, - { - "name": "body_add_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "body_remove_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "body_set_max_contacts_reported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_get_max_contacts_reported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_omit_force_integration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "body_is_omitting_force_integration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_state_sync_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "body_set_force_integration_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3059434249, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "userdata", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "body_test_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1699844009, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "parameters", - "type": "PhysicsTestMotionParameters2D", - "meta": "required" - }, - { - "name": "result", - "type": "PhysicsTestMotionResult2D", - "default_value": "null" - } - ] - }, - { - "name": "body_get_direct_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1191931871, - "return_value": { - "type": "PhysicsDirectBodyState2D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "joint_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "joint_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3972556514, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.JointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4016448949, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.JointParam" - } - ] - }, - { - "name": "joint_disable_collisions_between_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "joint_is_disabled_collisions_between_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_make_pin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1612646186, - "hash_compatibility": [ - 2288600450 - ], - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "anchor", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "joint_make_groove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 481430435, - "hash_compatibility": [ - 3573265764 - ], - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "groove1_a", - "type": "Vector2" - }, - { - "name": "groove2_a", - "type": "Vector2" - }, - { - "name": "anchor_b", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID", - "default_value": "RID()" - }, - { - "name": "body_b", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "joint_make_damped_spring", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1994657646, - "hash_compatibility": [ - 206603952 - ], - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "anchor_a", - "type": "Vector2" - }, - { - "name": "anchor_b", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "pin_joint_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3520002352, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer2D.PinJointFlag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "pin_joint_get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2647867364, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer2D.PinJointFlag" - } - ] - }, - { - "name": "pin_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 550574241, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.PinJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "pin_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 348281383, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.PinJointParam" - } - ] - }, - { - "name": "damped_spring_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 220564071, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.DampedSpringParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "damped_spring_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2075871277, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.DampedSpringParam" - } - ] - }, - { - "name": "joint_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4262502231, - "return_value": { - "type": "enum::PhysicsServer2D.JointType" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_process_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 576496006, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::PhysicsServer2D.ProcessInfo" - } - ] - } - ] - }, - { - "name": "PhysicsServer2DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsServer2D", - "api_type": "core", - "methods": [ - { - "name": "_world_boundary_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_separation_ray_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_segment_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_circle_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_rectangle_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_capsule_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_convex_polygon_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_concave_polygon_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_shape_set_data", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3175752987, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "_shape_set_custom_solver_bias", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_shape_get_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1240598777, - "return_value": { - "type": "enum::PhysicsServer2D.ShapeType" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_get_data", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_get_custom_solver_bias", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_collide", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 738864683, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shape_A", - "type": "RID" - }, - { - "name": "xform_A", - "type": "Transform2D" - }, - { - "name": "motion_A", - "type": "Vector2" - }, - { - "name": "shape_B", - "type": "RID" - }, - { - "name": "xform_B", - "type": "Transform2D" - }, - { - "name": "motion_B", - "type": "Vector2" - }, - { - "name": "r_results", - "type": "void*" - }, - { - "name": "result_max", - "type": "int", - "meta": "int32" - }, - { - "name": "r_result_count", - "type": "int32_t*" - } - ] - }, - { - "name": "_space_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_space_set_active", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "_space_is_active", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 949194586, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.SpaceParameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_space_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 874111783, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.SpaceParameter" - } - ] - }, - { - "name": "_space_get_direct_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3160173886, - "return_value": { - "type": "PhysicsDirectSpaceState2D" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_set_debug_contacts", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "max_contacts", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_space_get_contacts", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2222557395, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_get_contact_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_area_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_area_set_space", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_area_get_space", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_add_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 888317420, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_area_set_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2310537182, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_area_set_shape_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 736082694, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "_area_set_shape_disabled", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2658558584, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_area_get_shape_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_get_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_get_shape_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_remove_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_clear_shapes", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_attach_object_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_area_get_object_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_attach_canvas_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_area_get_canvas_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1257146028, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.AreaParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_area_set_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1246044741, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "_area_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3047435120, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.AreaParameter" - } - ] - }, - { - "name": "_area_get_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 213527486, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_area_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_area_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_monitorable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "monitorable", - "type": "bool" - } - ] - }, - { - "name": "_area_set_pickable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "pickable", - "type": "bool" - } - ] - }, - { - "name": "_area_set_monitor_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "_area_set_area_monitor_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "_body_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_body_set_space", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_body_get_space", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1658067650, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer2D.BodyMode" - } - ] - }, - { - "name": "_body_get_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3261702585, - "return_value": { - "type": "enum::PhysicsServer2D.BodyMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_add_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 888317420, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_body_set_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2310537182, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_body_set_shape_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 736082694, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "_body_get_shape_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_get_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_get_shape_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_set_shape_disabled", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_body_set_shape_as_one_way_collision", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2042146392, - "hash_compatibility": [ - 2556489974 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "direction", - "type": "Vector2" - } - ] - }, - { - "name": "_body_remove_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_clear_shapes", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_attach_object_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_body_get_object_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_attach_canvas_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_body_get_canvas_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_continuous_collision_detection_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1882257015, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer2D.CCDMode" - } - ] - }, - { - "name": "_body_get_continuous_collision_detection_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2661282217, - "return_value": { - "type": "enum::PhysicsServer2D.CCDMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_body_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_body_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_priority", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_get_collision_priority", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2715630609, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.BodyParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_body_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3208033526, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.BodyParameter" - } - ] - }, - { - "name": "_body_reset_mass_properties", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1706355209, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer2D.BodyState" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_body_get_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4036367961, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer2D.BodyState" - } - ] - }, - { - "name": "_body_apply_central_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector2" - } - ] - }, - { - "name": "_body_apply_torque_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_apply_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2762675110, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_body_apply_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_body_apply_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2762675110, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_body_apply_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_add_constant_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_body_add_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2762675110, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "_body_add_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_set_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "_body_get_constant_force", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_get_constant_torque", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_axis_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3201125042, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis_velocity", - "type": "Vector2" - } - ] - }, - { - "name": "_body_add_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "_body_remove_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "_body_get_collision_exceptions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_max_contacts_reported", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_get_max_contacts_reported", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_contacts_reported_depth_threshold", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_get_contacts_reported_depth_threshold", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_omit_force_integration", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_body_is_omitting_force_integration", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_state_sync_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "_body_set_force_integration_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2828036238, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "userdata", - "type": "Variant" - } - ] - }, - { - "name": "_body_collide_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2131476465, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "body_shape", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "shape_xform", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "r_results", - "type": "void*" - }, - { - "name": "result_max", - "type": "int", - "meta": "int32" - }, - { - "name": "r_result_count", - "type": "int32_t*" - } - ] - }, - { - "name": "_body_set_pickable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "pickable", - "type": "bool" - } - ] - }, - { - "name": "_body_get_direct_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1191931871, - "return_value": { - "type": "PhysicsDirectBodyState2D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_test_motion", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 104979818, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "from", - "type": "Transform2D" - }, - { - "name": "motion", - "type": "Vector2" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "collide_separation_ray", - "type": "bool" - }, - { - "name": "recovery_as_collision", - "type": "bool" - }, - { - "name": "r_result", - "type": "PhysicsServer2DExtensionMotionResult*" - } - ] - }, - { - "name": "_joint_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_joint_clear", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3972556514, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.JointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4016448949, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.JointParam" - } - ] - }, - { - "name": "_joint_disable_collisions_between_bodies", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "_joint_is_disabled_collisions_between_bodies", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_make_pin", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2607799521, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "anchor", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "_joint_make_groove", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 438649616, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "a_groove1", - "type": "Vector2" - }, - { - "name": "a_groove2", - "type": "Vector2" - }, - { - "name": "b_anchor", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "_joint_make_damped_spring", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1276049561, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "anchor_a", - "type": "Vector2" - }, - { - "name": "anchor_b", - "type": "Vector2" - }, - { - "name": "body_a", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "_pin_joint_set_flag", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3520002352, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer2D.PinJointFlag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_pin_joint_get_flag", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2647867364, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer2D.PinJointFlag" - } - ] - }, - { - "name": "_pin_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 550574241, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.PinJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_pin_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 348281383, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.PinJointParam" - } - ] - }, - { - "name": "_damped_spring_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 220564071, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.DampedSpringParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_damped_spring_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2075871277, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer2D.DampedSpringParam" - } - ] - }, - { - "name": "_joint_get_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4262502231, - "return_value": { - "type": "enum::PhysicsServer2D.JointType" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_free_rid", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "_set_active", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "_init", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_step", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "step", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_sync", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_flush_queries", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_end_sync", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_finish", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_is_flushing_queries", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_process_info", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 576496006, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::PhysicsServer2D.ProcessInfo" - } - ] - }, - { - "name": "body_test_motion_is_excluding_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_test_motion_is_excluding_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "int", - "meta": "uint64" - } - ] - } - ] - }, - { - "name": "PhysicsServer2DManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "register_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "create_callback", - "type": "Callable" - } - ] - }, - { - "name": "set_default_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "PhysicsServer3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "JointType", - "is_bitfield": false, - "values": [ - { - "name": "JOINT_TYPE_PIN", - "value": 0 - }, - { - "name": "JOINT_TYPE_HINGE", - "value": 1 - }, - { - "name": "JOINT_TYPE_SLIDER", - "value": 2 - }, - { - "name": "JOINT_TYPE_CONE_TWIST", - "value": 3 - }, - { - "name": "JOINT_TYPE_6DOF", - "value": 4 - }, - { - "name": "JOINT_TYPE_MAX", - "value": 5 - } - ] - }, - { - "name": "PinJointParam", - "is_bitfield": false, - "values": [ - { - "name": "PIN_JOINT_BIAS", - "value": 0 - }, - { - "name": "PIN_JOINT_DAMPING", - "value": 1 - }, - { - "name": "PIN_JOINT_IMPULSE_CLAMP", - "value": 2 - } - ] - }, - { - "name": "HingeJointParam", - "is_bitfield": false, - "values": [ - { - "name": "HINGE_JOINT_BIAS", - "value": 0 - }, - { - "name": "HINGE_JOINT_LIMIT_UPPER", - "value": 1 - }, - { - "name": "HINGE_JOINT_LIMIT_LOWER", - "value": 2 - }, - { - "name": "HINGE_JOINT_LIMIT_BIAS", - "value": 3 - }, - { - "name": "HINGE_JOINT_LIMIT_SOFTNESS", - "value": 4 - }, - { - "name": "HINGE_JOINT_LIMIT_RELAXATION", - "value": 5 - }, - { - "name": "HINGE_JOINT_MOTOR_TARGET_VELOCITY", - "value": 6 - }, - { - "name": "HINGE_JOINT_MOTOR_MAX_IMPULSE", - "value": 7 - } - ] - }, - { - "name": "HingeJointFlag", - "is_bitfield": false, - "values": [ - { - "name": "HINGE_JOINT_FLAG_USE_LIMIT", - "value": 0 - }, - { - "name": "HINGE_JOINT_FLAG_ENABLE_MOTOR", - "value": 1 - } - ] - }, - { - "name": "SliderJointParam", - "is_bitfield": false, - "values": [ - { - "name": "SLIDER_JOINT_LINEAR_LIMIT_UPPER", - "value": 0 - }, - { - "name": "SLIDER_JOINT_LINEAR_LIMIT_LOWER", - "value": 1 - }, - { - "name": "SLIDER_JOINT_LINEAR_LIMIT_SOFTNESS", - "value": 2 - }, - { - "name": "SLIDER_JOINT_LINEAR_LIMIT_RESTITUTION", - "value": 3 - }, - { - "name": "SLIDER_JOINT_LINEAR_LIMIT_DAMPING", - "value": 4 - }, - { - "name": "SLIDER_JOINT_LINEAR_MOTION_SOFTNESS", - "value": 5 - }, - { - "name": "SLIDER_JOINT_LINEAR_MOTION_RESTITUTION", - "value": 6 - }, - { - "name": "SLIDER_JOINT_LINEAR_MOTION_DAMPING", - "value": 7 - }, - { - "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_SOFTNESS", - "value": 8 - }, - { - "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_RESTITUTION", - "value": 9 - }, - { - "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_DAMPING", - "value": 10 - }, - { - "name": "SLIDER_JOINT_ANGULAR_LIMIT_UPPER", - "value": 11 - }, - { - "name": "SLIDER_JOINT_ANGULAR_LIMIT_LOWER", - "value": 12 - }, - { - "name": "SLIDER_JOINT_ANGULAR_LIMIT_SOFTNESS", - "value": 13 - }, - { - "name": "SLIDER_JOINT_ANGULAR_LIMIT_RESTITUTION", - "value": 14 - }, - { - "name": "SLIDER_JOINT_ANGULAR_LIMIT_DAMPING", - "value": 15 - }, - { - "name": "SLIDER_JOINT_ANGULAR_MOTION_SOFTNESS", - "value": 16 - }, - { - "name": "SLIDER_JOINT_ANGULAR_MOTION_RESTITUTION", - "value": 17 - }, - { - "name": "SLIDER_JOINT_ANGULAR_MOTION_DAMPING", - "value": 18 - }, - { - "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_SOFTNESS", - "value": 19 - }, - { - "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_RESTITUTION", - "value": 20 - }, - { - "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_DAMPING", - "value": 21 - }, - { - "name": "SLIDER_JOINT_MAX", - "value": 22 - } - ] - }, - { - "name": "ConeTwistJointParam", - "is_bitfield": false, - "values": [ - { - "name": "CONE_TWIST_JOINT_SWING_SPAN", - "value": 0 - }, - { - "name": "CONE_TWIST_JOINT_TWIST_SPAN", - "value": 1 - }, - { - "name": "CONE_TWIST_JOINT_BIAS", - "value": 2 - }, - { - "name": "CONE_TWIST_JOINT_SOFTNESS", - "value": 3 - }, - { - "name": "CONE_TWIST_JOINT_RELAXATION", - "value": 4 - } - ] - }, - { - "name": "G6DOFJointAxisParam", - "is_bitfield": false, - "values": [ - { - "name": "G6DOF_JOINT_LINEAR_LOWER_LIMIT", - "value": 0 - }, - { - "name": "G6DOF_JOINT_LINEAR_UPPER_LIMIT", - "value": 1 - }, - { - "name": "G6DOF_JOINT_LINEAR_LIMIT_SOFTNESS", - "value": 2 - }, - { - "name": "G6DOF_JOINT_LINEAR_RESTITUTION", - "value": 3 - }, - { - "name": "G6DOF_JOINT_LINEAR_DAMPING", - "value": 4 - }, - { - "name": "G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY", - "value": 5 - }, - { - "name": "G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT", - "value": 6 - }, - { - "name": "G6DOF_JOINT_LINEAR_SPRING_STIFFNESS", - "value": 7 - }, - { - "name": "G6DOF_JOINT_LINEAR_SPRING_DAMPING", - "value": 8 - }, - { - "name": "G6DOF_JOINT_LINEAR_SPRING_EQUILIBRIUM_POINT", - "value": 9 - }, - { - "name": "G6DOF_JOINT_ANGULAR_LOWER_LIMIT", - "value": 10 - }, - { - "name": "G6DOF_JOINT_ANGULAR_UPPER_LIMIT", - "value": 11 - }, - { - "name": "G6DOF_JOINT_ANGULAR_LIMIT_SOFTNESS", - "value": 12 - }, - { - "name": "G6DOF_JOINT_ANGULAR_DAMPING", - "value": 13 - }, - { - "name": "G6DOF_JOINT_ANGULAR_RESTITUTION", - "value": 14 - }, - { - "name": "G6DOF_JOINT_ANGULAR_FORCE_LIMIT", - "value": 15 - }, - { - "name": "G6DOF_JOINT_ANGULAR_ERP", - "value": 16 - }, - { - "name": "G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY", - "value": 17 - }, - { - "name": "G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT", - "value": 18 - }, - { - "name": "G6DOF_JOINT_ANGULAR_SPRING_STIFFNESS", - "value": 19 - }, - { - "name": "G6DOF_JOINT_ANGULAR_SPRING_DAMPING", - "value": 20 - }, - { - "name": "G6DOF_JOINT_ANGULAR_SPRING_EQUILIBRIUM_POINT", - "value": 21 - }, - { - "name": "G6DOF_JOINT_MAX", - "value": 22 - } - ] - }, - { - "name": "G6DOFJointAxisFlag", - "is_bitfield": false, - "values": [ - { - "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT", - "value": 0 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT", - "value": 1 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_SPRING", - "value": 2 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_SPRING", - "value": 3 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_MOTOR", - "value": 4 - }, - { - "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_MOTOR", - "value": 5 - }, - { - "name": "G6DOF_JOINT_FLAG_MAX", - "value": 6 - } - ] - }, - { - "name": "ShapeType", - "is_bitfield": false, - "values": [ - { - "name": "SHAPE_WORLD_BOUNDARY", - "value": 0 - }, - { - "name": "SHAPE_SEPARATION_RAY", - "value": 1 - }, - { - "name": "SHAPE_SPHERE", - "value": 2 - }, - { - "name": "SHAPE_BOX", - "value": 3 - }, - { - "name": "SHAPE_CAPSULE", - "value": 4 - }, - { - "name": "SHAPE_CYLINDER", - "value": 5 - }, - { - "name": "SHAPE_CONVEX_POLYGON", - "value": 6 - }, - { - "name": "SHAPE_CONCAVE_POLYGON", - "value": 7 - }, - { - "name": "SHAPE_HEIGHTMAP", - "value": 8 - }, - { - "name": "SHAPE_SOFT_BODY", - "value": 9 - }, - { - "name": "SHAPE_CUSTOM", - "value": 10 - } - ] - }, - { - "name": "AreaParameter", - "is_bitfield": false, - "values": [ - { - "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", - "value": 0 - }, - { - "name": "AREA_PARAM_GRAVITY", - "value": 1 - }, - { - "name": "AREA_PARAM_GRAVITY_VECTOR", - "value": 2 - }, - { - "name": "AREA_PARAM_GRAVITY_IS_POINT", - "value": 3 - }, - { - "name": "AREA_PARAM_GRAVITY_POINT_UNIT_DISTANCE", - "value": 4 - }, - { - "name": "AREA_PARAM_LINEAR_DAMP_OVERRIDE_MODE", - "value": 5 - }, - { - "name": "AREA_PARAM_LINEAR_DAMP", - "value": 6 - }, - { - "name": "AREA_PARAM_ANGULAR_DAMP_OVERRIDE_MODE", - "value": 7 - }, - { - "name": "AREA_PARAM_ANGULAR_DAMP", - "value": 8 - }, - { - "name": "AREA_PARAM_PRIORITY", - "value": 9 - }, - { - "name": "AREA_PARAM_WIND_FORCE_MAGNITUDE", - "value": 10 - }, - { - "name": "AREA_PARAM_WIND_SOURCE", - "value": 11 - }, - { - "name": "AREA_PARAM_WIND_DIRECTION", - "value": 12 - }, - { - "name": "AREA_PARAM_WIND_ATTENUATION_FACTOR", - "value": 13 - } - ] - }, - { - "name": "AreaSpaceOverrideMode", - "is_bitfield": false, - "values": [ - { - "name": "AREA_SPACE_OVERRIDE_DISABLED", - "value": 0 - }, - { - "name": "AREA_SPACE_OVERRIDE_COMBINE", - "value": 1 - }, - { - "name": "AREA_SPACE_OVERRIDE_COMBINE_REPLACE", - "value": 2 - }, - { - "name": "AREA_SPACE_OVERRIDE_REPLACE", - "value": 3 - }, - { - "name": "AREA_SPACE_OVERRIDE_REPLACE_COMBINE", - "value": 4 - } - ] - }, - { - "name": "BodyMode", - "is_bitfield": false, - "values": [ - { - "name": "BODY_MODE_STATIC", - "value": 0 - }, - { - "name": "BODY_MODE_KINEMATIC", - "value": 1 - }, - { - "name": "BODY_MODE_RIGID", - "value": 2 - }, - { - "name": "BODY_MODE_RIGID_LINEAR", - "value": 3 - } - ] - }, - { - "name": "BodyParameter", - "is_bitfield": false, - "values": [ - { - "name": "BODY_PARAM_BOUNCE", - "value": 0 - }, - { - "name": "BODY_PARAM_FRICTION", - "value": 1 - }, - { - "name": "BODY_PARAM_MASS", - "value": 2 - }, - { - "name": "BODY_PARAM_INERTIA", - "value": 3 - }, - { - "name": "BODY_PARAM_CENTER_OF_MASS", - "value": 4 - }, - { - "name": "BODY_PARAM_GRAVITY_SCALE", - "value": 5 - }, - { - "name": "BODY_PARAM_LINEAR_DAMP_MODE", - "value": 6 - }, - { - "name": "BODY_PARAM_ANGULAR_DAMP_MODE", - "value": 7 - }, - { - "name": "BODY_PARAM_LINEAR_DAMP", - "value": 8 - }, - { - "name": "BODY_PARAM_ANGULAR_DAMP", - "value": 9 - }, - { - "name": "BODY_PARAM_MAX", - "value": 10 - } - ] - }, - { - "name": "BodyDampMode", - "is_bitfield": false, - "values": [ - { - "name": "BODY_DAMP_MODE_COMBINE", - "value": 0 - }, - { - "name": "BODY_DAMP_MODE_REPLACE", - "value": 1 - } - ] - }, - { - "name": "BodyState", - "is_bitfield": false, - "values": [ - { - "name": "BODY_STATE_TRANSFORM", - "value": 0 - }, - { - "name": "BODY_STATE_LINEAR_VELOCITY", - "value": 1 - }, - { - "name": "BODY_STATE_ANGULAR_VELOCITY", - "value": 2 - }, - { - "name": "BODY_STATE_SLEEPING", - "value": 3 - }, - { - "name": "BODY_STATE_CAN_SLEEP", - "value": 4 - } - ] - }, - { - "name": "AreaBodyStatus", - "is_bitfield": false, - "values": [ - { - "name": "AREA_BODY_ADDED", - "value": 0 - }, - { - "name": "AREA_BODY_REMOVED", - "value": 1 - } - ] - }, - { - "name": "ProcessInfo", - "is_bitfield": false, - "values": [ - { - "name": "INFO_ACTIVE_OBJECTS", - "value": 0 - }, - { - "name": "INFO_COLLISION_PAIRS", - "value": 1 - }, - { - "name": "INFO_ISLAND_COUNT", - "value": 2 - } - ] - }, - { - "name": "SpaceParameter", - "is_bitfield": false, - "values": [ - { - "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", - "value": 0 - }, - { - "name": "SPACE_PARAM_CONTACT_MAX_SEPARATION", - "value": 1 - }, - { - "name": "SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION", - "value": 2 - }, - { - "name": "SPACE_PARAM_CONTACT_DEFAULT_BIAS", - "value": 3 - }, - { - "name": "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD", - "value": 4 - }, - { - "name": "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD", - "value": 5 - }, - { - "name": "SPACE_PARAM_BODY_TIME_TO_SLEEP", - "value": 6 - }, - { - "name": "SPACE_PARAM_SOLVER_ITERATIONS", - "value": 7 - } - ] - }, - { - "name": "BodyAxis", - "is_bitfield": false, - "values": [ - { - "name": "BODY_AXIS_LINEAR_X", - "value": 1 - }, - { - "name": "BODY_AXIS_LINEAR_Y", - "value": 2 - }, - { - "name": "BODY_AXIS_LINEAR_Z", - "value": 4 - }, - { - "name": "BODY_AXIS_ANGULAR_X", - "value": 8 - }, - { - "name": "BODY_AXIS_ANGULAR_Y", - "value": 16 - }, - { - "name": "BODY_AXIS_ANGULAR_Z", - "value": 32 - } - ] - } - ], - "methods": [ - { - "name": "world_boundary_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "separation_ray_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "sphere_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "box_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "capsule_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "cylinder_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "convex_polygon_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "concave_polygon_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "heightmap_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "custom_shape_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "shape_set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175752987, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "shape_set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "shape_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3418923367, - "return_value": { - "type": "enum::PhysicsServer3D.ShapeType" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "shape_get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "shape_get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "space_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "space_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "space_is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "space_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2406017470, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SpaceParameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "space_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1523206731, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SpaceParameter" - } - ] - }, - { - "name": "space_get_direct_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2048616813, - "return_value": { - "type": "PhysicsDirectSpaceState3D" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "area_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "area_set_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "area_get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3711419014, - "hash_compatibility": [ - 4040559639 - ], - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D", - "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "area_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "area_set_shape_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675327471, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "area_set_shape_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "area_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_get_shape_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "area_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "area_get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "area_get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2980114638, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.AreaParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "area_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "area_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 890056067, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.AreaParameter" - } - ] - }, - { - "name": "area_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1128465797, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_attach_object_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "area_get_object_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "area_set_monitor_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "area_set_area_monitor_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "area_set_monitorable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "monitorable", - "type": "bool" - } - ] - }, - { - "name": "area_set_ray_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "body_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "body_set_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "body_get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 606803466, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer3D.BodyMode" - } - ] - }, - { - "name": "body_get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2488819728, - "return_value": { - "type": "enum::PhysicsServer3D.BodyMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "body_get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "body_get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "body_get_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_add_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3711419014, - "hash_compatibility": [ - 4040559639 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D", - "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "body_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "body_set_shape_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675327471, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "body_set_shape_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "body_get_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_get_shape_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_remove_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_clear_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_attach_object_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "body_get_object_instance_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_enable_continuous_collision_detection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "body_is_continuous_collision_detection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 910941953, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.BodyParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "body_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385027841, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.BodyParameter" - } - ] - }, - { - "name": "body_reset_mass_properties", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 599977762, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "body_get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1850449534, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - } - ] - }, - { - "name": "body_apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "body_apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 390416203, - "hash_compatibility": [ - 110375048 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "body_apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "body_apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "body_apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 390416203, - "hash_compatibility": [ - 110375048 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "body_apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "body_add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "body_add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 390416203, - "hash_compatibility": [ - 110375048 - ], - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "body_add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "body_set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "body_get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "body_get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_axis_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "body_set_axis_lock", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2020836892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - }, - { - "name": "lock", - "type": "bool" - } - ] - }, - { - "name": "body_is_axis_locked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 587853580, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - } - ] - }, - { - "name": "body_add_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "body_remove_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "body_set_max_contacts_reported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "body_get_max_contacts_reported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_omit_force_integration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "body_is_omitting_force_integration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_set_state_sync_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3379118538, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "body_set_force_integration_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3059434249, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "userdata", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "body_set_ray_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "body_test_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1944921792, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "parameters", - "type": "PhysicsTestMotionParameters3D", - "meta": "required" - }, - { - "name": "result", - "type": "PhysicsTestMotionResult3D", - "default_value": "null" - } - ] - }, - { - "name": "body_get_direct_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3029727957, - "return_value": { - "type": "PhysicsDirectBodyState3D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "soft_body_update_rendering_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2218179753, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "rendering_server_handler", - "type": "PhysicsServer3DRenderingServerHandler", - "meta": "required" - } - ] - }, - { - "name": "soft_body_set_space", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "soft_body_get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "soft_body_get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "soft_body_get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "soft_body_get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_add_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "soft_body_remove_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 599977762, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - }, - { - "name": "variant", - "type": "Variant" - } - ] - }, - { - "name": "soft_body_get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1850449534, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - } - ] - }, - { - "name": "soft_body_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "soft_body_set_ray_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "soft_body_set_simulation_precision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "simulation_precision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "soft_body_get_simulation_precision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_total_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "total_mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_total_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_linear_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_linear_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_shrinking_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shrinking_factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_shrinking_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_pressure_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "pressure_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_pressure_coefficient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_damping_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "damping_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_damping_coefficient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_set_drag_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "drag_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "soft_body_get_drag_coefficient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_move_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "global_position", - "type": "Vector3" - } - ] - }, - { - "name": "soft_body_get_point_global_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3440143363, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "soft_body_remove_all_pinned_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "soft_body_pin_point", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "pin", - "type": "bool" - } - ] - }, - { - "name": "soft_body_is_point_pinned", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "soft_body_apply_point_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "soft_body_apply_point_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "soft_body_apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "soft_body_apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "joint_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "joint_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_make_pin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4280171926, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_A", - "type": "Vector3" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_B", - "type": "Vector3" - } - ] - }, - { - "name": "pin_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 810685294, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.PinJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "pin_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817972347, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.PinJointParam" - } - ] - }, - { - "name": "pin_joint_set_local_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "local_A", - "type": "Vector3" - } - ] - }, - { - "name": "pin_joint_get_local_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "pin_joint_set_local_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "local_B", - "type": "Vector3" - } - ] - }, - { - "name": "pin_joint_get_local_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_make_hinge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "hinge_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "hinge_B", - "type": "Transform3D" - } - ] - }, - { - "name": "hinge_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3165502333, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.HingeJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "hinge_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2129207581, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.HingeJointParam" - } - ] - }, - { - "name": "hinge_joint_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1601626188, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.HingeJointFlag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "hinge_joint_get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4165147865, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.HingeJointFlag" - } - ] - }, - { - "name": "joint_make_slider", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "slider_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2264833593, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SliderJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "slider_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3498644957, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SliderJointParam" - } - ] - }, - { - "name": "joint_make_cone_twist", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "cone_twist_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 808587618, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.ConeTwistJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "cone_twist_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1134789658, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.ConeTwistJointParam" - } - ] - }, - { - "name": "joint_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290791900, - "return_value": { - "type": "enum::PhysicsServer3D.JointType" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_set_solver_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "joint_get_solver_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_disable_collisions_between_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "joint_is_disabled_collisions_between_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "joint_make_generic_6dof", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "generic_6dof_joint_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2600081391, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "generic_6dof_joint_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 467122058, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" - } - ] - }, - { - "name": "generic_6dof_joint_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3570926903, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "generic_6dof_joint_get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4158090196, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_process_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1332958745, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::PhysicsServer3D.ProcessInfo" - } - ] - } - ] - }, - { - "name": "PhysicsServer3DExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsServer3D", - "api_type": "core", - "methods": [ - { - "name": "_world_boundary_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_separation_ray_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_sphere_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_box_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_capsule_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_cylinder_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_convex_polygon_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_concave_polygon_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_heightmap_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_custom_shape_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_shape_set_data", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3175752987, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "data", - "type": "Variant" - } - ] - }, - { - "name": "_shape_set_custom_solver_bias", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_shape_set_margin", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "shape", - "type": "RID" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_shape_get_margin", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_get_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3418923367, - "return_value": { - "type": "enum::PhysicsServer3D.ShapeType" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_get_data", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4171304767, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_shape_get_custom_solver_bias", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_space_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_space_set_active", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "_space_is_active", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2406017470, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SpaceParameter" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_space_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1523206731, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SpaceParameter" - } - ] - }, - { - "name": "_space_get_direct_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2048616813, - "return_value": { - "type": "PhysicsDirectSpaceState3D" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_set_debug_contacts", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "space", - "type": "RID" - }, - { - "name": "max_contacts", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_space_get_contacts", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 808965560, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_space_get_contact_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_area_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_area_set_space", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_area_get_space", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_add_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2153848567, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_area_set_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2310537182, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_area_set_shape_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 675327471, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_area_set_shape_disabled", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2658558584, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_area_get_shape_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_get_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_get_shape_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_remove_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_area_clear_shapes", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_attach_object_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_area_get_object_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2980114638, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.AreaParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_area_set_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3935195649, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_area_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 890056067, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.AreaParameter" - } - ] - }, - { - "name": "_area_get_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1128465797, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_area_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_area_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "area", - "type": "RID" - } - ] - }, - { - "name": "_area_set_monitorable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "monitorable", - "type": "bool" - } - ] - }, - { - "name": "_area_set_ray_pickable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_area_set_monitor_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "_area_set_area_monitor_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "area", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "_body_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_body_set_space", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_body_get_space", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 606803466, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::PhysicsServer3D.BodyMode" - } - ] - }, - { - "name": "_body_get_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2488819728, - "return_value": { - "type": "enum::PhysicsServer3D.BodyMode" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_add_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2153848567, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_body_set_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2310537182, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "_body_set_shape_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 675327471, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_body_set_shape_disabled", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "_body_get_shape_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_get_shape", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_get_shape_transform", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_remove_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shape_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_clear_shapes", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_attach_object_instance_id", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_body_get_object_instance_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_enable_continuous_collision_detection", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_body_is_continuous_collision_detection_enabled", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_body_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_body_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_collision_priority", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_get_collision_priority", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_user_flags", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_body_get_user_flags", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 910941953, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.BodyParameter" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_body_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3385027841, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.BodyParameter" - } - ] - }, - { - "name": "_body_reset_mass_properties", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 599977762, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_body_get_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1850449534, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - } - ] - }, - { - "name": "_body_apply_central_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_body_apply_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3214966418, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_body_apply_torque_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_body_apply_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_body_apply_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3214966418, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_body_apply_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_body_add_constant_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_body_add_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3214966418, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "_body_add_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_body_set_constant_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_body_get_constant_force", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_constant_torque", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "_body_get_constant_torque", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_axis_velocity", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "_body_set_axis_lock", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2020836892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - }, - { - "name": "lock", - "type": "bool" - } - ] - }, - { - "name": "_body_is_axis_locked", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 587853580, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::PhysicsServer3D.BodyAxis" - } - ] - }, - { - "name": "_body_add_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "_body_remove_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "excepted_body", - "type": "RID" - } - ] - }, - { - "name": "_body_get_collision_exceptions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_max_contacts_reported", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_body_get_max_contacts_reported", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_contacts_reported_depth_threshold", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_body_get_contacts_reported_depth_threshold", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_omit_force_integration", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_body_is_omitting_force_integration", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_body_set_state_sync_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3379118538, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "_body_set_force_integration_callback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2828036238, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "callable", - "type": "Callable" - }, - { - "name": "userdata", - "type": "Variant" - } - ] - }, - { - "name": "_body_set_ray_pickable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_body_test_motion", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3627463434, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "from", - "type": "Transform3D" - }, - { - "name": "motion", - "type": "Vector3" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - }, - { - "name": "max_collisions", - "type": "int", - "meta": "int32" - }, - { - "name": "collide_separation_ray", - "type": "bool" - }, - { - "name": "recovery_as_collision", - "type": "bool" - }, - { - "name": "r_result", - "type": "PhysicsServer3DExtensionMotionResult*" - } - ] - }, - { - "name": "_body_get_direct_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3029727957, - "return_value": { - "type": "PhysicsDirectBodyState3D" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_soft_body_update_rendering_server", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2218179753, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "rendering_server_handler", - "type": "PhysicsServer3DRenderingServerHandler", - "meta": "required" - } - ] - }, - { - "name": "_soft_body_set_space", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "space", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_get_space", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_ray_pickable", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_soft_body_set_collision_layer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_soft_body_get_collision_layer", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_collision_mask", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_soft_body_get_collision_mask", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_add_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_remove_collision_exception", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "body_b", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_get_collision_exceptions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "typedarray::RID" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_state", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 599977762, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - }, - { - "name": "variant", - "type": "Variant" - } - ] - }, - { - "name": "_soft_body_get_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1850449534, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "state", - "type": "enum::PhysicsServer3D.BodyState" - } - ] - }, - { - "name": "_soft_body_set_transform", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3935195649, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_soft_body_set_simulation_precision", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "simulation_precision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_soft_body_get_simulation_precision", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_total_mass", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "total_mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_total_mass", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_linear_stiffness", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "linear_stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_linear_stiffness", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_shrinking_factor", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "shrinking_factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_shrinking_factor", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_pressure_coefficient", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "pressure_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_pressure_coefficient", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_damping_coefficient", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "damping_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_damping_coefficient", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_drag_coefficient", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "drag_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_soft_body_get_drag_coefficient", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_set_mesh", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 395945892, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_get_bounds", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_move_point", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "global_position", - "type": "Vector3" - } - ] - }, - { - "name": "_soft_body_get_point_global_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3440143363, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_soft_body_remove_all_pinned_points", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "_soft_body_pin_point", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2658558584, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "pin", - "type": "bool" - } - ] - }, - { - "name": "_soft_body_is_point_pinned", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_soft_body_apply_point_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_soft_body_apply_point_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 831953689, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_soft_body_apply_central_impulse", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "_soft_body_apply_central_force", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "body", - "type": "RID" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "_joint_create", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_joint_clear", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_make_pin", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4280171926, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_A", - "type": "Vector3" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_B", - "type": "Vector3" - } - ] - }, - { - "name": "_pin_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 810685294, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.PinJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_pin_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2817972347, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.PinJointParam" - } - ] - }, - { - "name": "_pin_joint_set_local_a", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "local_A", - "type": "Vector3" - } - ] - }, - { - "name": "_pin_joint_get_local_a", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_pin_joint_set_local_b", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3227306858, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "local_B", - "type": "Vector3" - } - ] - }, - { - "name": "_pin_joint_get_local_b", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 531438156, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_make_hinge", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "hinge_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "hinge_B", - "type": "Transform3D" - } - ] - }, - { - "name": "_joint_make_hinge_simple", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4069547571, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "pivot_A", - "type": "Vector3" - }, - { - "name": "axis_A", - "type": "Vector3" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "pivot_B", - "type": "Vector3" - }, - { - "name": "axis_B", - "type": "Vector3" - } - ] - }, - { - "name": "_hinge_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3165502333, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.HingeJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_hinge_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2129207581, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.HingeJointParam" - } - ] - }, - { - "name": "_hinge_joint_set_flag", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1601626188, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.HingeJointFlag" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_hinge_joint_get_flag", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4165147865, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.HingeJointFlag" - } - ] - }, - { - "name": "_joint_make_slider", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "_slider_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2264833593, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SliderJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_slider_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3498644957, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.SliderJointParam" - } - ] - }, - { - "name": "_joint_make_cone_twist", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "_cone_twist_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 808587618, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.ConeTwistJointParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_cone_twist_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1134789658, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.ConeTwistJointParam" - } - ] - }, - { - "name": "_joint_make_generic_6dof", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1684107643, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "body_A", - "type": "RID" - }, - { - "name": "local_ref_A", - "type": "Transform3D" - }, - { - "name": "body_B", - "type": "RID" - }, - { - "name": "local_ref_B", - "type": "Transform3D" - } - ] - }, - { - "name": "_generic_6dof_joint_set_param", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2600081391, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_generic_6dof_joint_get_param", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 467122058, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "param", - "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" - } - ] - }, - { - "name": "_generic_6dof_joint_set_flag", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3570926903, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_generic_6dof_joint_get_flag", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4158090196, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "axis", - "type": "enum::Vector3.Axis" - }, - { - "name": "flag", - "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" - } - ] - }, - { - "name": "_joint_get_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4290791900, - "return_value": { - "type": "enum::PhysicsServer3D.JointType" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_set_solver_priority", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_joint_get_solver_priority", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_joint_disable_collisions_between_bodies", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "joint", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "_joint_is_disabled_collisions_between_bodies", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint", - "type": "RID" - } - ] - }, - { - "name": "_free_rid", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "_set_active", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "_init", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_step", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "step", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_sync", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_flush_queries", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_end_sync", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_finish", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_is_flushing_queries", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_process_info", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1332958745, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "process_info", - "type": "enum::PhysicsServer3D.ProcessInfo" - } - ] - }, - { - "name": "body_test_motion_is_excluding_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "body_test_motion_is_excluding_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "int", - "meta": "uint64" - } - ] - } - ] - }, - { - "name": "PhysicsServer3DManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "register_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137474292, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "create_callback", - "type": "Callable" - } - ] - }, - { - "name": "set_default_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "PhysicsServer3DRenderingServerHandler", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "_set_vertex", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1530502735, - "arguments": [ - { - "name": "vertex_id", - "type": "int", - "meta": "int32" - }, - { - "name": "vertex", - "type": "Vector3" - } - ] - }, - { - "name": "_set_normal", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1530502735, - "arguments": [ - { - "name": "vertex_id", - "type": "int", - "meta": "int32" - }, - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "name": "_set_aabb", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "set_vertex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "vertex_id", - "type": "int", - "meta": "int32" - }, - { - "name": "vertex", - "type": "Vector3" - } - ] - }, - { - "name": "set_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "vertex_id", - "type": "int", - "meta": "int32" - }, - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "name": "set_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - } - ] - }, - { - "name": "PhysicsShapeQueryParameters2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "shape", - "type": "Resource" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - }, - { - "name": "set_shape_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "get_shape_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "motion", - "type": "Vector2" - } - ] - }, - { - "name": "get_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "Vector2", - "name": "motion", - "setter": "set_motion", - "getter": "get_motion" - }, - { - "type": "Shape2D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "RID", - "name": "shape_rid", - "setter": "set_shape_rid", - "getter": "get_shape_rid" - }, - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - } - ] - }, - { - "name": "PhysicsShapeQueryParameters3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "shape", - "type": "Resource" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - }, - { - "name": "set_shape_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "shape", - "type": "RID" - } - ] - }, - { - "name": "get_shape_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "motion", - "type": "Vector3" - } - ] - }, - { - "name": "get_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_exclude", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "typedarray::RID", - "name": "exclude", - "setter": "set_exclude", - "getter": "get_exclude" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "Vector3", - "name": "motion", - "setter": "set_motion", - "getter": "get_motion" - }, - { - "type": "Shape3D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "RID", - "name": "shape_rid", - "setter": "set_shape_rid", - "getter": "get_shape_rid" - }, - { - "type": "Transform3D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - } - ] - }, - { - "name": "PhysicsTestMotionParameters2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "from", - "type": "Transform2D" - } - ] - }, - { - "name": "get_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "motion", - "type": "Vector2" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "is_collide_separation_ray_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_separation_ray_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_exclude_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude_list", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude_objects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "set_exclude_objects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude_list", - "type": "typedarray::int" - } - ] - }, - { - "name": "is_recovery_as_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_recovery_as_collision_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "Transform2D", - "name": "from", - "setter": "set_from", - "getter": "get_from" - }, - { - "type": "Vector2", - "name": "motion", - "setter": "set_motion", - "getter": "get_motion" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "bool", - "name": "collide_separation_ray", - "setter": "set_collide_separation_ray_enabled", - "getter": "is_collide_separation_ray_enabled" - }, - { - "type": "typedarray::RID", - "name": "exclude_bodies", - "setter": "set_exclude_bodies", - "getter": "get_exclude_bodies" - }, - { - "type": "Array", - "name": "exclude_objects", - "setter": "set_exclude_objects", - "getter": "get_exclude_objects" - }, - { - "type": "bool", - "name": "recovery_as_collision", - "setter": "set_recovery_as_collision_enabled", - "getter": "is_recovery_as_collision_enabled" - } - ] - }, - { - "name": "PhysicsTestMotionParameters3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "from", - "type": "Transform3D" - } - ] - }, - { - "name": "get_motion", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "motion", - "type": "Vector3" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_collisions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_collisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_collisions", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_collide_separation_ray_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_separation_ray_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - }, - { - "name": "set_exclude_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude_list", - "type": "typedarray::RID" - } - ] - }, - { - "name": "get_exclude_objects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::int" - } - }, - { - "name": "set_exclude_objects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "exclude_list", - "type": "typedarray::int" - } - ] - }, - { - "name": "is_recovery_as_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_recovery_as_collision_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "Transform3D", - "name": "from", - "setter": "set_from", - "getter": "get_from" - }, - { - "type": "Vector3", - "name": "motion", - "setter": "set_motion", - "getter": "get_motion" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "int", - "name": "max_collisions", - "setter": "set_max_collisions", - "getter": "get_max_collisions" - }, - { - "type": "bool", - "name": "collide_separation_ray", - "setter": "set_collide_separation_ray_enabled", - "getter": "is_collide_separation_ray_enabled" - }, - { - "type": "typedarray::RID", - "name": "exclude_bodies", - "setter": "set_exclude_bodies", - "getter": "get_exclude_bodies" - }, - { - "type": "Array", - "name": "exclude_objects", - "setter": "set_exclude_objects", - "getter": "get_exclude_objects" - }, - { - "type": "bool", - "name": "recovery_as_collision", - "setter": "set_recovery_as_collision_enabled", - "getter": "is_recovery_as_collision_enabled" - } - ] - }, - { - "name": "PhysicsTestMotionResult2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_travel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_remainder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collider_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collision_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collision_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_collision_safe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_collision_unsafe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ] - }, - { - "name": "PhysicsTestMotionResult3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_travel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_remainder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_collision_safe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_collision_unsafe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1914908202, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1231817359, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2639523548, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collision_local_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_collision_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 218038398, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "collision_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - } - ] - }, - { - "name": "PinJoint2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint2D", - "api_type": "core", - "methods": [ - { - "name": "set_softness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "softness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_softness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_limit_lower", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_limit_lower", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_limit_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_limit_upper", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_limit_upper", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_limit_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_motor_target_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "motor_target_velocity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_motor_target_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_motor_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_motor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_angular_limit_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_angular_limit_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "softness", - "setter": "set_softness", - "getter": "get_softness" - }, - { - "type": "bool", - "name": "angular_limit_enabled", - "setter": "set_angular_limit_enabled", - "getter": "is_angular_limit_enabled" - }, - { - "type": "float", - "name": "angular_limit_lower", - "setter": "set_angular_limit_lower", - "getter": "get_angular_limit_lower" - }, - { - "type": "float", - "name": "angular_limit_upper", - "setter": "set_angular_limit_upper", - "getter": "get_angular_limit_upper" - }, - { - "type": "bool", - "name": "motor_enabled", - "setter": "set_motor_enabled", - "getter": "is_motor_enabled" - }, - { - "type": "float", - "name": "motor_target_velocity", - "setter": "set_motor_target_velocity", - "getter": "get_motor_target_velocity" - } - ] - }, - { - "name": "PinJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_BIAS", - "value": 0 - }, - { - "name": "PARAM_DAMPING", - "value": 1 - }, - { - "name": "PARAM_IMPULSE_CLAMP", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2059913726, - "arguments": [ - { - "name": "param", - "type": "enum::PinJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1758438771, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::PinJoint3D.Param" - } - ] - } - ] - }, - { - "name": "PlaceholderCubemap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PlaceholderTextureLayered", - "api_type": "core" - }, - { - "name": "PlaceholderCubemapArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PlaceholderTextureLayered", - "api_type": "core" - }, - { - "name": "PlaceholderMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core" - }, - { - "name": "PlaceholderMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Mesh", - "api_type": "core", - "methods": [ - { - "name": "set_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - } - ], - "properties": [ - { - "type": "AABB", - "name": "aabb", - "setter": "set_aabb", - "getter": "get_aabb" - } - ] - }, - { - "name": "PlaceholderTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "PlaceholderTexture2DArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PlaceholderTextureLayered", - "api_type": "core" - }, - { - "name": "PlaceholderTexture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 560364750, - "arguments": [ - { - "name": "size", - "type": "Vector3i" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2785653706, - "return_value": { - "type": "Vector3i" - } - } - ], - "properties": [ - { - "type": "Vector3i", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "PlaceholderTextureLayered", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "TextureLayered", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "Vector2i", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "layers", - "setter": "set_layers", - "getter": "get_layers" - } - ] - }, - { - "name": "PlaneMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "enums": [ - { - "name": "Orientation", - "is_bitfield": false, - "values": [ - { - "name": "FACE_X", - "value": 0 - }, - { - "name": "FACE_Y", - "value": 1 - }, - { - "name": "FACE_Z", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_subdivide_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_subdivide_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_center_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_center_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2751399687, - "arguments": [ - { - "name": "orientation", - "type": "enum::PlaneMesh.Orientation" - } - ] - }, - { - "name": "get_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227599250, - "return_value": { - "type": "enum::PlaneMesh.Orientation" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "subdivide_width", - "setter": "set_subdivide_width", - "getter": "get_subdivide_width" - }, - { - "type": "int", - "name": "subdivide_depth", - "setter": "set_subdivide_depth", - "getter": "get_subdivide_depth" - }, - { - "type": "Vector3", - "name": "center_offset", - "setter": "set_center_offset", - "getter": "get_center_offset" - }, - { - "type": "int", - "name": "orientation", - "setter": "set_orientation", - "getter": "get_orientation" - } - ] - }, - { - "name": "PointLight2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light2D", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "texture_offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_texture_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_texture_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "texture_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texture_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Texture2D,-AnimatedTexture,-AtlasTexture,-CameraTexture,-CanvasTexture,-MeshTexture,-Texture2DRD,-ViewportTexture", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_texture_offset", - "getter": "get_texture_offset" - }, - { - "type": "float", - "name": "texture_scale", - "setter": "set_texture_scale", - "getter": "get_texture_scale" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - } - ] - }, - { - "name": "PointMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core" - }, - { - "name": "Polygon2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_uv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "uv", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_uv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_polygons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "polygons", - "type": "Array" - } - ] - }, - { - "name": "get_polygons", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_vertex_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3546319833, - "arguments": [ - { - "name": "vertex_colors", - "type": "PackedColorArray" - } - ] - }, - { - "name": "get_vertex_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392750486, - "return_value": { - "type": "PackedColorArray" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "texture_offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_texture_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_texture_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "texture_rotation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texture_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texture_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "texture_scale", - "type": "Vector2" - } - ] - }, - { - "name": "get_texture_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_invert_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "get_invert_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_antialiased", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "antialiased", - "type": "bool" - } - ] - }, - { - "name": "get_antialiased", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_invert_border", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "invert_border", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_invert_border", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "add_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 703042815, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_bone_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_bone_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_weights", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1542882410, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "erase_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_bone_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "set_bone_weights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1345852415, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "set_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "skeleton", - "type": "NodePath" - } - ] - }, - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_internal_vertex_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "internal_vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_internal_vertex_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "bool", - "name": "antialiased", - "setter": "set_antialiased", - "getter": "get_antialiased" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "Vector2", - "name": "texture_offset", - "setter": "set_texture_offset", - "getter": "get_texture_offset" - }, - { - "type": "Vector2", - "name": "texture_scale", - "setter": "set_texture_scale", - "getter": "get_texture_scale" - }, - { - "type": "float", - "name": "texture_rotation", - "setter": "set_texture_rotation", - "getter": "get_texture_rotation" - }, - { - "type": "NodePath", - "name": "skeleton", - "setter": "set_skeleton", - "getter": "get_skeleton" - }, - { - "type": "bool", - "name": "invert_enabled", - "setter": "set_invert_enabled", - "getter": "get_invert_enabled" - }, - { - "type": "float", - "name": "invert_border", - "setter": "set_invert_border", - "getter": "get_invert_border" - }, - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - }, - { - "type": "PackedVector2Array", - "name": "uv", - "setter": "set_uv", - "getter": "get_uv" - }, - { - "type": "PackedColorArray", - "name": "vertex_colors", - "setter": "set_vertex_colors", - "getter": "get_vertex_colors" - }, - { - "type": "Array", - "name": "polygons", - "setter": "set_polygons", - "getter": "get_polygons" - }, - { - "type": "Array", - "name": "bones", - "setter": "_set_bones", - "getter": "_get_bones" - }, - { - "type": "int", - "name": "internal_vertex_count", - "setter": "set_internal_vertex_count", - "getter": "get_internal_vertex_count" - } - ] - }, - { - "name": "PolygonOccluder3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Occluder3D", - "api_type": "core", - "methods": [ - { - "name": "set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - } - ], - "properties": [ - { - "type": "PackedVector2Array", - "name": "polygon", - "setter": "set_polygon", - "getter": "get_polygon" - } - ] - }, - { - "name": "PolygonPathFinder", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3251786936, - "arguments": [ - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "connections", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "find_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1562168077, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "get_intersections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3932192302, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - } - ] - }, - { - "name": "get_closest_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2656412154, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "is_point_inside", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 556197845, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "set_point_penalty", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "penalty", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_point_penalty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "data", - "setter": "_set_data", - "getter": "_get_data" - } - ] - }, - { - "name": "Popup", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Window", - "api_type": "core", - "signals": [ - { - "name": "popup_hide" - } - ] - }, - { - "name": "PopupMenu", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Popup", - "api_type": "core", - "methods": [ - { - "name": "activate_item_by_event", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3716412023, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent" - }, - { - "name": "for_global_only", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_prefer_native_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_prefer_native_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_native_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674230041, - "hash_compatibility": [ - 3224536192 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_icon_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1086190128, - "hash_compatibility": [ - 1200674553 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674230041, - "hash_compatibility": [ - 3224536192 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_icon_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1086190128, - "hash_compatibility": [ - 1200674553 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674230041, - "hash_compatibility": [ - 3224536192 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_icon_radio_check_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1086190128, - "hash_compatibility": [ - 1200674553 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "label", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_multistate_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 150780458, - "hash_compatibility": [ - 1585218420 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - }, - { - "name": "default_state", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "accel", - "type": "enum::Key", - "default_value": "0" - } - ] - }, - { - "name": "add_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3451850107, - "hash_compatibility": [ - 1642193386, - 2482211467, - 2168272394 - ], - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - }, - { - "name": "allow_echo", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_icon_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2997871092, - "hash_compatibility": [ - 3856247530, - 3060251822, - 68101841 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - }, - { - "name": "allow_echo", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_check_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1642193386, - "hash_compatibility": [ - 2168272394 - ], - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_icon_check_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3856247530, - "hash_compatibility": [ - 68101841 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_radio_check_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1642193386, - "hash_compatibility": [ - 2168272394 - ], - "arguments": [ - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_icon_radio_check_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3856247530, - "hash_compatibility": [ - 68101841 - ], - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_submenu_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2979222410, - "hash_compatibility": [ - 3728518296 - ], - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "submenu", - "type": "String" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_submenu_node_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1325455216, - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "submenu", - "type": "PopupMenu" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_item_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "set_item_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1707680378, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "set_item_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "set_item_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 287402019, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "set_item_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "set_item_icon_max_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_icon_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "set_item_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "set_item_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_accelerator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2992817551, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "accel", - "type": "enum::Key" - } - ] - }, - { - "name": "set_item_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "set_item_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_item_submenu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "submenu", - "type": "String" - } - ] - }, - { - "name": "set_item_submenu_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068370740, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "submenu", - "type": "PopupMenu" - } - ] - }, - { - "name": "set_item_as_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_item_as_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_item_as_radio_checkable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "set_item_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "set_item_shortcut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 825127832, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "shortcut", - "type": "Shortcut" - }, - { - "name": "global", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_item_indent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "indent", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_multistate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "state", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_multistate_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "max_states", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_item_shortcut_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_item_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "target_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "toggle_item_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "toggle_item_multistate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235602388, - "return_value": { - "type": "enum::Control.TextDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 906302372, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_icon_max_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_icon_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_checked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_accelerator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 253789942, - "return_value": { - "type": "enum::Key" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_submenu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_submenu_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2100501353, - "return_value": { - "type": "PopupMenu" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_separator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_radio_checkable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_item_shortcut_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_shortcut", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1449483325, - "return_value": { - "type": "Shortcut" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_indent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_multistate_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_multistate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_focused_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_focused_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "scroll_to_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_separator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2266703459, - "arguments": [ - { - "name": "label", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "free_submenus", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_hide_on_item_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hide_on_item_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hide_on_checkable_item_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hide_on_checkable_item_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hide_on_state_item_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hide_on_state_item_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_submenu_popup_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "seconds", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_submenu_popup_delay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_allow_search", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_search", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_system_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_system_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 600639674, - "arguments": [ - { - "name": "system_menu_id", - "type": "enum::NativeMenu.SystemMenus" - } - ] - }, - { - "name": "get_system_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222557358, - "return_value": { - "type": "enum::NativeMenu.SystemMenus" - } - }, - { - "name": "set_search_bar_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_search_bar_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_search_bar_min_item_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_search_bar_min_item_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_search_bar_fuzzy_search_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_search_bar_fuzzy_search_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_search_bar_fuzzy_search_max_misses", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_misses", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_search_bar_fuzzy_search_max_misses", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_shrink_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "shrink", - "type": "bool" - } - ] - }, - { - "name": "get_shrink_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shrink_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "shrink", - "type": "bool" - } - ] - }, - { - "name": "get_shrink_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "id_pressed", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "id_focused", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "index_pressed", - "arguments": [ - { - "name": "index", - "type": "int" - } - ] - }, - { - "name": "menu_changed" - } - ], - "properties": [ - { - "type": "bool", - "name": "hide_on_item_selection", - "setter": "set_hide_on_item_selection", - "getter": "is_hide_on_item_selection" - }, - { - "type": "bool", - "name": "hide_on_checkable_item_selection", - "setter": "set_hide_on_checkable_item_selection", - "getter": "is_hide_on_checkable_item_selection" - }, - { - "type": "bool", - "name": "hide_on_state_item_selection", - "setter": "set_hide_on_state_item_selection", - "getter": "is_hide_on_state_item_selection" - }, - { - "type": "float", - "name": "submenu_popup_delay", - "setter": "set_submenu_popup_delay", - "getter": "get_submenu_popup_delay" - }, - { - "type": "bool", - "name": "allow_search", - "setter": "set_allow_search", - "getter": "get_allow_search" - }, - { - "type": "int", - "name": "system_menu_id", - "setter": "set_system_menu", - "getter": "get_system_menu" - }, - { - "type": "bool", - "name": "prefer_native_menu", - "setter": "set_prefer_native_menu", - "getter": "is_prefer_native_menu" - }, - { - "type": "bool", - "name": "shrink_height", - "setter": "set_shrink_height", - "getter": "get_shrink_height" - }, - { - "type": "bool", - "name": "shrink_width", - "setter": "set_shrink_width", - "getter": "get_shrink_width" - }, - { - "type": "bool", - "name": "search_bar_enabled", - "setter": "set_search_bar_enabled", - "getter": "is_search_bar_enabled" - }, - { - "type": "int", - "name": "search_bar_min_item_count", - "setter": "set_search_bar_min_item_count", - "getter": "get_search_bar_min_item_count" - }, - { - "type": "bool", - "name": "search_bar_fuzzy_search_enabled", - "setter": "set_search_bar_fuzzy_search_enabled", - "getter": "is_search_bar_fuzzy_search_enabled" - }, - { - "type": "int", - "name": "search_bar_fuzzy_search_max_misses", - "setter": "set_search_bar_fuzzy_search_max_misses", - "getter": "get_search_bar_fuzzy_search_max_misses" - }, - { - "type": "int", - "name": "item_count", - "setter": "set_item_count", - "getter": "get_item_count" - } - ] - }, - { - "name": "PopupPanel", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Popup", - "api_type": "core" - }, - { - "name": "PortableCompressedTexture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "enums": [ - { - "name": "CompressionMode", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESSION_MODE_LOSSLESS", - "value": 0 - }, - { - "name": "COMPRESSION_MODE_LOSSY", - "value": 1 - }, - { - "name": "COMPRESSION_MODE_BASIS_UNIVERSAL", - "value": 2 - }, - { - "name": "COMPRESSION_MODE_S3TC", - "value": 3 - }, - { - "name": "COMPRESSION_MODE_ETC2", - "value": 4 - }, - { - "name": "COMPRESSION_MODE_BPTC", - "value": 5 - }, - { - "name": "COMPRESSION_MODE_ASTC", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "create_from_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3679243433, - "hash_compatibility": [ - 97251393 - ], - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "compression_mode", - "type": "enum::PortableCompressedTexture2D.CompressionMode" - }, - { - "name": "normal_map", - "type": "bool", - "default_value": "false" - }, - { - "name": "lossy_quality", - "type": "float", - "meta": "float", - "default_value": "0.8" - } - ] - }, - { - "name": "get_compression_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3265612739, - "return_value": { - "type": "enum::PortableCompressedTexture2D.CompressionMode" - } - }, - { - "name": "set_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_size_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_keep_compressed_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "keep", - "type": "bool" - } - ] - }, - { - "name": "is_keeping_compressed_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_basisu_compressor_params", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "uastc_level", - "type": "int", - "meta": "int32" - }, - { - "name": "rdo_quality_loss", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_keep_all_compressed_buffers", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "keep", - "type": "bool" - } - ] - }, - { - "name": "is_keeping_all_compressed_buffers", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size_override", - "setter": "set_size_override", - "getter": "get_size_override" - }, - { - "type": "bool", - "name": "keep_compressed_buffer", - "setter": "set_keep_compressed_buffer", - "getter": "is_keeping_compressed_buffer" - } - ] - }, - { - "name": "PrimitiveMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Mesh", - "api_type": "core", - "methods": [ - { - "name": "_create_mesh_array", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "get_mesh_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_flip_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_faces", - "type": "bool" - } - ] - }, - { - "name": "get_flip_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_add_uv2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "add_uv2", - "type": "bool" - } - ] - }, - { - "name": "get_add_uv2", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_uv2_padding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "uv2_padding", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_uv2_padding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "request_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "BaseMaterial3D,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - }, - { - "type": "AABB", - "name": "custom_aabb", - "setter": "set_custom_aabb", - "getter": "get_custom_aabb" - }, - { - "type": "bool", - "name": "flip_faces", - "setter": "set_flip_faces", - "getter": "get_flip_faces" - }, - { - "type": "bool", - "name": "add_uv2", - "setter": "set_add_uv2", - "getter": "get_add_uv2" - }, - { - "type": "float", - "name": "uv2_padding", - "setter": "set_uv2_padding", - "getter": "get_uv2_padding" - } - ] - }, - { - "name": "PrismMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_left_to_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "left_to_right", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_left_to_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_subdivide_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_subdivide_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_subdivide_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_subdivide_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "float", - "name": "left_to_right", - "setter": "set_left_to_right", - "getter": "get_left_to_right" - }, - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "subdivide_width", - "setter": "set_subdivide_width", - "getter": "get_subdivide_width" - }, - { - "type": "int", - "name": "subdivide_height", - "setter": "set_subdivide_height", - "getter": "get_subdivide_height" - }, - { - "type": "int", - "name": "subdivide_depth", - "setter": "set_subdivide_depth", - "getter": "get_subdivide_depth" - } - ] - }, - { - "name": "ProceduralSkyMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "methods": [ - { - "name": "set_sky_top_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_sky_top_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_sky_horizon_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_sky_horizon_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_sky_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sky_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sky_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sky_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sky_cover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "sky_cover", - "type": "Texture2D" - } - ] - }, - { - "name": "get_sky_cover", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_sky_cover_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_sky_cover_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_ground_bottom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_ground_bottom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_ground_horizon_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_ground_horizon_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_ground_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ground_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ground_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ground_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sun_angle_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "degrees", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sun_angle_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sun_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sun_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_debanding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_debanding", - "type": "bool" - } - ] - }, - { - "name": "get_use_debanding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_energy_multiplier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_energy_multiplier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "sky_top_color", - "setter": "set_sky_top_color", - "getter": "get_sky_top_color" - }, - { - "type": "Color", - "name": "sky_horizon_color", - "setter": "set_sky_horizon_color", - "getter": "get_sky_horizon_color" - }, - { - "type": "float", - "name": "sky_curve", - "setter": "set_sky_curve", - "getter": "get_sky_curve" - }, - { - "type": "float", - "name": "sky_energy_multiplier", - "setter": "set_sky_energy_multiplier", - "getter": "get_sky_energy_multiplier" - }, - { - "type": "Texture2D", - "name": "sky_cover", - "setter": "set_sky_cover", - "getter": "get_sky_cover" - }, - { - "type": "Color", - "name": "sky_cover_modulate", - "setter": "set_sky_cover_modulate", - "getter": "get_sky_cover_modulate" - }, - { - "type": "Color", - "name": "ground_bottom_color", - "setter": "set_ground_bottom_color", - "getter": "get_ground_bottom_color" - }, - { - "type": "Color", - "name": "ground_horizon_color", - "setter": "set_ground_horizon_color", - "getter": "get_ground_horizon_color" - }, - { - "type": "float", - "name": "ground_curve", - "setter": "set_ground_curve", - "getter": "get_ground_curve" - }, - { - "type": "float", - "name": "ground_energy_multiplier", - "setter": "set_ground_energy_multiplier", - "getter": "get_ground_energy_multiplier" - }, - { - "type": "float", - "name": "sun_angle_max", - "setter": "set_sun_angle_max", - "getter": "get_sun_angle_max" - }, - { - "type": "float", - "name": "sun_curve", - "setter": "set_sun_curve", - "getter": "get_sun_curve" - }, - { - "type": "bool", - "name": "use_debanding", - "setter": "set_use_debanding", - "getter": "get_use_debanding" - }, - { - "type": "float", - "name": "energy_multiplier", - "setter": "set_energy_multiplier", - "getter": "get_energy_multiplier" - } - ] - }, - { - "name": "ProgressBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Range", - "api_type": "core", - "enums": [ - { - "name": "FillMode", - "is_bitfield": false, - "values": [ - { - "name": "FILL_BEGIN_TO_END", - "value": 0 - }, - { - "name": "FILL_END_TO_BEGIN", - "value": 1 - }, - { - "name": "FILL_TOP_TO_BOTTOM", - "value": 2 - }, - { - "name": "FILL_BOTTOM_TO_TOP", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_fill_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fill_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_show_percentage", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_percentage_shown", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_indeterminate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "indeterminate", - "type": "bool" - } - ] - }, - { - "name": "is_indeterminate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_editor_preview_indeterminate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "preview_indeterminate", - "type": "bool" - } - ] - }, - { - "name": "is_editor_preview_indeterminate_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "fill_mode", - "setter": "set_fill_mode", - "getter": "get_fill_mode" - }, - { - "type": "bool", - "name": "show_percentage", - "setter": "set_show_percentage", - "getter": "is_percentage_shown" - }, - { - "type": "bool", - "name": "indeterminate", - "setter": "set_indeterminate", - "getter": "is_indeterminate" - }, - { - "type": "bool", - "name": "editor_preview_indeterminate", - "setter": "set_editor_preview_indeterminate", - "getter": "is_editor_preview_indeterminate_enabled" - } - ] - }, - { - "name": "ProjectSettings", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "has_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_setting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 223050753, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "default_value", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "get_setting_with_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_global_class_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_setting_with_override_and_custom_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2434817427, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "features", - "type": "PackedStringArray" - } - ] - }, - { - "name": "set_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956805083, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_order", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_initial_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "set_as_basic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "basic", - "type": "bool" - } - ] - }, - { - "name": "set_as_internal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "internal", - "type": "bool" - } - ] - }, - { - "name": "add_property_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155329257, - "arguments": [ - { - "name": "hint", - "type": "Dictionary" - } - ] - }, - { - "name": "set_restart_if_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678287736, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "restart", - "type": "bool" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "localize_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "globalize_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "load_resource_pack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 708980503, - "hash_compatibility": [ - 3001721055 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "pack", - "type": "String" - }, - { - "name": "replace_files", - "type": "bool", - "default_value": "true" - }, - { - "name": "offset", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "save_custom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_changed_settings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "check_changed_settings_in_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "setting_prefix", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "settings_changed" - } - ] - }, - { - "name": "PropertyTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core", - "methods": [ - { - "name": "from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4190193059, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "from_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4279177709, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - } - }, - { - "name": "as_relative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4279177709, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - } - }, - { - "name": "set_trans", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1899107404, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "trans", - "type": "enum::Tween.TransitionType" - } - ] - }, - { - "name": "set_ease", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1080455622, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "ease", - "type": "enum::Tween.EaseType" - } - ] - }, - { - "name": "set_custom_interpolator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3174170268, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "interpolator_method", - "type": "Callable" - } - ] - }, - { - "name": "set_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2171559331, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "delay", - "type": "float", - "meta": "double" - } - ] - } - ] - }, - { - "name": "QuadMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PlaneMesh", - "api_type": "core" - }, - { - "name": "QuadOccluder3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Occluder3D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "RDAccelerationStructureGeometry", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1046628555, - "arguments": [ - { - "name": "p_member", - "type": "bitfield::RenderingDevice.AccelerationStructureGeometryFlagBits" - } - ] - }, - { - "name": "get_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1694887119, - "return_value": { - "type": "bitfield::RenderingDevice.AccelerationStructureGeometryFlagBits" - } - }, - { - "name": "set_vertex_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "p_member", - "type": "RID" - } - ] - }, - { - "name": "get_vertex_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_vertex_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_vertex_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_vertex_stride", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_vertex_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_vertex_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_vertex_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_vertex_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "get_vertex_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235804183, - "return_value": { - "type": "enum::RenderingDevice.DataFormat" - } - }, - { - "name": "set_index_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "p_member", - "type": "RID" - } - ] - }, - { - "name": "get_index_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_index_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_index_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_index_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_index_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "flags", - "setter": "set_flags", - "getter": "get_flags" - }, - { - "type": "RID", - "name": "vertex_buffer", - "setter": "set_vertex_buffer", - "getter": "get_vertex_buffer" - }, - { - "type": "int", - "name": "vertex_offset", - "setter": "set_vertex_offset", - "getter": "get_vertex_offset" - }, - { - "type": "int", - "name": "vertex_stride", - "setter": "set_vertex_stride", - "getter": "get_vertex_stride" - }, - { - "type": "int", - "name": "vertex_count", - "setter": "set_vertex_count", - "getter": "get_vertex_count" - }, - { - "type": "int", - "name": "vertex_format", - "setter": "set_vertex_format", - "getter": "get_vertex_format" - }, - { - "type": "RID", - "name": "index_buffer", - "setter": "set_index_buffer", - "getter": "get_index_buffer" - }, - { - "type": "int", - "name": "index_offset", - "setter": "set_index_offset", - "getter": "get_index_offset" - }, - { - "type": "int", - "name": "index_count", - "setter": "set_index_count", - "getter": "get_index_count" - } - ] - }, - { - "name": "RDAccelerationStructureInstance", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "p_member", - "type": "Transform3D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint8" - } - ] - }, - { - "name": "get_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint8" - } - }, - { - "name": "set_hit_sbt_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_hit_sbt_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "set_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971840141, - "arguments": [ - { - "name": "p_member", - "type": "bitfield::RenderingDevice.AccelerationStructureInstanceFlagBits" - } - ] - }, - { - "name": "get_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2410182637, - "return_value": { - "type": "bitfield::RenderingDevice.AccelerationStructureInstanceFlagBits" - } - }, - { - "name": "set_blas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "p_member", - "type": "RID" - } - ] - }, - { - "name": "get_blas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "Transform3D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "int", - "name": "id", - "setter": "set_id", - "getter": "get_id" - }, - { - "type": "int", - "name": "mask", - "setter": "set_mask", - "getter": "get_mask" - }, - { - "type": "int", - "name": "hit_sbt_range", - "setter": "set_hit_sbt_range", - "getter": "get_hit_sbt_range" - }, - { - "type": "int", - "name": "flags", - "setter": "set_flags", - "getter": "get_flags" - }, - { - "type": "RID", - "name": "blas", - "setter": "set_blas", - "getter": "get_blas" - } - ] - }, - { - "name": "RDAttachmentFormat", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235804183, - "return_value": { - "type": "enum::RenderingDevice.DataFormat" - } - }, - { - "name": "set_samples", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3774171498, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSamples" - } - ] - }, - { - "name": "get_samples", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407791724, - "return_value": { - "type": "enum::RenderingDevice.TextureSamples" - } - }, - { - "name": "set_usage_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_usage_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "format", - "setter": "set_format", - "getter": "get_format" - }, - { - "type": "int", - "name": "samples", - "setter": "set_samples", - "getter": "get_samples" - }, - { - "type": "int", - "name": "usage_flags", - "setter": "set_usage_flags", - "getter": "get_usage_flags" - } - ] - }, - { - "name": "RDFramebufferPass", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "constants": [ - { - "name": "ATTACHMENT_UNUSED", - "value": -1 - } - ], - "methods": [ - { - "name": "set_color_attachments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "p_member", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_color_attachments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_input_attachments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "p_member", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_input_attachments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_resolve_attachments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "p_member", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_resolve_attachments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_preserve_attachments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "p_member", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_preserve_attachments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_depth_attachment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_depth_attachment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "PackedInt32Array", - "name": "color_attachments", - "setter": "set_color_attachments", - "getter": "get_color_attachments" - }, - { - "type": "PackedInt32Array", - "name": "input_attachments", - "setter": "set_input_attachments", - "getter": "get_input_attachments" - }, - { - "type": "PackedInt32Array", - "name": "resolve_attachments", - "setter": "set_resolve_attachments", - "getter": "get_resolve_attachments" - }, - { - "type": "PackedInt32Array", - "name": "preserve_attachments", - "setter": "set_preserve_attachments", - "getter": "get_preserve_attachments" - }, - { - "type": "int", - "name": "depth_attachment", - "setter": "set_depth_attachment", - "getter": "get_depth_attachment" - } - ] - }, - { - "name": "RDHitGroup", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_closest_hit_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2556777288, - "arguments": [ - { - "name": "p_member", - "type": "RDPipelineShader" - } - ] - }, - { - "name": "get_closest_hit_shader", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2937716847, - "return_value": { - "type": "RDPipelineShader" - } - }, - { - "name": "set_any_hit_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2556777288, - "arguments": [ - { - "name": "p_member", - "type": "RDPipelineShader" - } - ] - }, - { - "name": "get_any_hit_shader", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2937716847, - "return_value": { - "type": "RDPipelineShader" - } - }, - { - "name": "set_intersection_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2556777288, - "arguments": [ - { - "name": "p_member", - "type": "RDPipelineShader" - } - ] - }, - { - "name": "get_intersection_shader", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2937716847, - "return_value": { - "type": "RDPipelineShader" - } - } - ], - "properties": [ - { - "type": "Object", - "name": "closest_hit_shader", - "setter": "set_closest_hit_shader", - "getter": "get_closest_hit_shader" - }, - { - "type": "Object", - "name": "any_hit_shader", - "setter": "set_any_hit_shader", - "getter": "get_any_hit_shader" - }, - { - "type": "Object", - "name": "intersection_shader", - "setter": "set_intersection_shader", - "getter": "get_intersection_shader" - } - ] - }, - { - "name": "RDPipelineColorBlendState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_enable_logic_op", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_logic_op", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_logic_op", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3610841058, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.LogicOperation" - } - ] - }, - { - "name": "get_logic_op", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 988254690, - "return_value": { - "type": "enum::RenderingDevice.LogicOperation" - } - }, - { - "name": "set_blend_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "p_member", - "type": "Color" - } - ] - }, - { - "name": "get_blend_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_attachments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "attachments", - "type": "typedarray::RDPipelineColorBlendStateAttachment" - } - ] - }, - { - "name": "get_attachments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RDPipelineColorBlendStateAttachment" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enable_logic_op", - "setter": "set_enable_logic_op", - "getter": "get_enable_logic_op" - }, - { - "type": "int", - "name": "logic_op", - "setter": "set_logic_op", - "getter": "get_logic_op" - }, - { - "type": "Color", - "name": "blend_constant", - "setter": "set_blend_constant", - "getter": "get_blend_constant" - }, - { - "type": "typedarray::RDPipelineColorBlendStateAttachment", - "name": "attachments", - "setter": "set_attachments", - "getter": "get_attachments" - } - ] - }, - { - "name": "RDPipelineColorBlendStateAttachment", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_as_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_enable_blend", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_blend", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_src_color_blend_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2251019273, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendFactor" - } - ] - }, - { - "name": "get_src_color_blend_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3691288359, - "return_value": { - "type": "enum::RenderingDevice.BlendFactor" - } - }, - { - "name": "set_dst_color_blend_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2251019273, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendFactor" - } - ] - }, - { - "name": "get_dst_color_blend_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3691288359, - "return_value": { - "type": "enum::RenderingDevice.BlendFactor" - } - }, - { - "name": "set_color_blend_op", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3073022720, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendOperation" - } - ] - }, - { - "name": "get_color_blend_op", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1385093561, - "return_value": { - "type": "enum::RenderingDevice.BlendOperation" - } - }, - { - "name": "set_src_alpha_blend_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2251019273, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendFactor" - } - ] - }, - { - "name": "get_src_alpha_blend_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3691288359, - "return_value": { - "type": "enum::RenderingDevice.BlendFactor" - } - }, - { - "name": "set_dst_alpha_blend_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2251019273, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendFactor" - } - ] - }, - { - "name": "get_dst_alpha_blend_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3691288359, - "return_value": { - "type": "enum::RenderingDevice.BlendFactor" - } - }, - { - "name": "set_alpha_blend_op", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3073022720, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.BlendOperation" - } - ] - }, - { - "name": "get_alpha_blend_op", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1385093561, - "return_value": { - "type": "enum::RenderingDevice.BlendOperation" - } - }, - { - "name": "set_write_r", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_write_r", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_write_g", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_write_g", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_write_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_write_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_write_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_write_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enable_blend", - "setter": "set_enable_blend", - "getter": "get_enable_blend" - }, - { - "type": "int", - "name": "src_color_blend_factor", - "setter": "set_src_color_blend_factor", - "getter": "get_src_color_blend_factor" - }, - { - "type": "int", - "name": "dst_color_blend_factor", - "setter": "set_dst_color_blend_factor", - "getter": "get_dst_color_blend_factor" - }, - { - "type": "int", - "name": "color_blend_op", - "setter": "set_color_blend_op", - "getter": "get_color_blend_op" - }, - { - "type": "int", - "name": "src_alpha_blend_factor", - "setter": "set_src_alpha_blend_factor", - "getter": "get_src_alpha_blend_factor" - }, - { - "type": "int", - "name": "dst_alpha_blend_factor", - "setter": "set_dst_alpha_blend_factor", - "getter": "get_dst_alpha_blend_factor" - }, - { - "type": "int", - "name": "alpha_blend_op", - "setter": "set_alpha_blend_op", - "getter": "get_alpha_blend_op" - }, - { - "type": "bool", - "name": "write_r", - "setter": "set_write_r", - "getter": "get_write_r" - }, - { - "type": "bool", - "name": "write_g", - "setter": "set_write_g", - "getter": "get_write_g" - }, - { - "type": "bool", - "name": "write_b", - "setter": "set_write_b", - "getter": "get_write_b" - }, - { - "type": "bool", - "name": "write_a", - "setter": "set_write_a", - "getter": "get_write_a" - } - ] - }, - { - "name": "RDPipelineDepthStencilState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_enable_depth_test", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_depth_test", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_depth_write", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_depth_write", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_depth_compare_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2573711505, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.CompareOperator" - } - ] - }, - { - "name": "get_depth_compare_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 269730778, - "return_value": { - "type": "enum::RenderingDevice.CompareOperator" - } - }, - { - "name": "set_enable_depth_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_depth_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_depth_range_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_range_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth_range_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_range_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_enable_stencil", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_stencil", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_front_op_fail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_front_op_fail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_front_op_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_front_op_pass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_front_op_depth_fail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_front_op_depth_fail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_front_op_compare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2573711505, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.CompareOperator" - } - ] - }, - { - "name": "get_front_op_compare", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 269730778, - "return_value": { - "type": "enum::RenderingDevice.CompareOperator" - } - }, - { - "name": "set_front_op_compare_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_front_op_compare_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_front_op_write_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_front_op_write_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_front_op_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_front_op_reference", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_back_op_fail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_back_op_fail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_back_op_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_back_op_pass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_back_op_depth_fail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2092799566, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.StencilOperation" - } - ] - }, - { - "name": "get_back_op_depth_fail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1714732389, - "return_value": { - "type": "enum::RenderingDevice.StencilOperation" - } - }, - { - "name": "set_back_op_compare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2573711505, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.CompareOperator" - } - ] - }, - { - "name": "get_back_op_compare", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 269730778, - "return_value": { - "type": "enum::RenderingDevice.CompareOperator" - } - }, - { - "name": "set_back_op_compare_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_back_op_compare_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_back_op_write_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_back_op_write_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_back_op_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_back_op_reference", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enable_depth_test", - "setter": "set_enable_depth_test", - "getter": "get_enable_depth_test" - }, - { - "type": "bool", - "name": "enable_depth_write", - "setter": "set_enable_depth_write", - "getter": "get_enable_depth_write" - }, - { - "type": "int", - "name": "depth_compare_operator", - "setter": "set_depth_compare_operator", - "getter": "get_depth_compare_operator" - }, - { - "type": "bool", - "name": "enable_depth_range", - "setter": "set_enable_depth_range", - "getter": "get_enable_depth_range" - }, - { - "type": "float", - "name": "depth_range_min", - "setter": "set_depth_range_min", - "getter": "get_depth_range_min" - }, - { - "type": "float", - "name": "depth_range_max", - "setter": "set_depth_range_max", - "getter": "get_depth_range_max" - }, - { - "type": "bool", - "name": "enable_stencil", - "setter": "set_enable_stencil", - "getter": "get_enable_stencil" - }, - { - "type": "int", - "name": "front_op_fail", - "setter": "set_front_op_fail", - "getter": "get_front_op_fail" - }, - { - "type": "int", - "name": "front_op_pass", - "setter": "set_front_op_pass", - "getter": "get_front_op_pass" - }, - { - "type": "int", - "name": "front_op_depth_fail", - "setter": "set_front_op_depth_fail", - "getter": "get_front_op_depth_fail" - }, - { - "type": "int", - "name": "front_op_compare", - "setter": "set_front_op_compare", - "getter": "get_front_op_compare" - }, - { - "type": "int", - "name": "front_op_compare_mask", - "setter": "set_front_op_compare_mask", - "getter": "get_front_op_compare_mask" - }, - { - "type": "int", - "name": "front_op_write_mask", - "setter": "set_front_op_write_mask", - "getter": "get_front_op_write_mask" - }, - { - "type": "int", - "name": "front_op_reference", - "setter": "set_front_op_reference", - "getter": "get_front_op_reference" - }, - { - "type": "int", - "name": "back_op_fail", - "setter": "set_back_op_fail", - "getter": "get_back_op_fail" - }, - { - "type": "int", - "name": "back_op_pass", - "setter": "set_back_op_pass", - "getter": "get_back_op_pass" - }, - { - "type": "int", - "name": "back_op_depth_fail", - "setter": "set_back_op_depth_fail", - "getter": "get_back_op_depth_fail" - }, - { - "type": "int", - "name": "back_op_compare", - "setter": "set_back_op_compare", - "getter": "get_back_op_compare" - }, - { - "type": "int", - "name": "back_op_compare_mask", - "setter": "set_back_op_compare_mask", - "getter": "get_back_op_compare_mask" - }, - { - "type": "int", - "name": "back_op_write_mask", - "setter": "set_back_op_write_mask", - "getter": "get_back_op_write_mask" - }, - { - "type": "int", - "name": "back_op_reference", - "setter": "set_back_op_reference", - "getter": "get_back_op_reference" - } - ] - }, - { - "name": "RDPipelineMultisampleState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_sample_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3774171498, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSamples" - } - ] - }, - { - "name": "get_sample_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407791724, - "return_value": { - "type": "enum::RenderingDevice.TextureSamples" - } - }, - { - "name": "set_enable_sample_shading", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_sample_shading", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_min_sample_shading", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min_sample_shading", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_enable_alpha_to_coverage", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_alpha_to_coverage", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_alpha_to_one", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_alpha_to_one", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_sample_masks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "masks", - "type": "typedarray::int" - } - ] - }, - { - "name": "get_sample_masks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::int" - } - } - ], - "properties": [ - { - "type": "int", - "name": "sample_count", - "setter": "set_sample_count", - "getter": "get_sample_count" - }, - { - "type": "bool", - "name": "enable_sample_shading", - "setter": "set_enable_sample_shading", - "getter": "get_enable_sample_shading" - }, - { - "type": "float", - "name": "min_sample_shading", - "setter": "set_min_sample_shading", - "getter": "get_min_sample_shading" - }, - { - "type": "bool", - "name": "enable_alpha_to_coverage", - "setter": "set_enable_alpha_to_coverage", - "getter": "get_enable_alpha_to_coverage" - }, - { - "type": "bool", - "name": "enable_alpha_to_one", - "setter": "set_enable_alpha_to_one", - "getter": "get_enable_alpha_to_one" - }, - { - "type": "typedarray::int", - "name": "sample_masks", - "setter": "set_sample_masks", - "getter": "get_sample_masks" - } - ] - }, - { - "name": "RDPipelineRasterizationState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_enable_depth_clamp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_depth_clamp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_discard_primitives", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_discard_primitives", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_wireframe", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_wireframe", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cull_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2662586502, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.PolygonCullMode" - } - ] - }, - { - "name": "get_cull_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2192484313, - "return_value": { - "type": "enum::RenderingDevice.PolygonCullMode" - } - }, - { - "name": "set_front_face", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2637251213, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.PolygonFrontFace" - } - ] - }, - { - "name": "get_front_face", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 708793786, - "return_value": { - "type": "enum::RenderingDevice.PolygonFrontFace" - } - }, - { - "name": "set_depth_bias_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_depth_bias_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_depth_bias_constant_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_bias_constant_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth_bias_clamp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_bias_clamp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_depth_bias_slope_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth_bias_slope_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_line_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_patch_control_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_patch_control_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enable_depth_clamp", - "setter": "set_enable_depth_clamp", - "getter": "get_enable_depth_clamp" - }, - { - "type": "bool", - "name": "discard_primitives", - "setter": "set_discard_primitives", - "getter": "get_discard_primitives" - }, - { - "type": "bool", - "name": "wireframe", - "setter": "set_wireframe", - "getter": "get_wireframe" - }, - { - "type": "int", - "name": "cull_mode", - "setter": "set_cull_mode", - "getter": "get_cull_mode" - }, - { - "type": "int", - "name": "front_face", - "setter": "set_front_face", - "getter": "get_front_face" - }, - { - "type": "bool", - "name": "depth_bias_enabled", - "setter": "set_depth_bias_enabled", - "getter": "get_depth_bias_enabled" - }, - { - "type": "float", - "name": "depth_bias_constant_factor", - "setter": "set_depth_bias_constant_factor", - "getter": "get_depth_bias_constant_factor" - }, - { - "type": "float", - "name": "depth_bias_clamp", - "setter": "set_depth_bias_clamp", - "getter": "get_depth_bias_clamp" - }, - { - "type": "float", - "name": "depth_bias_slope_factor", - "setter": "set_depth_bias_slope_factor", - "getter": "get_depth_bias_slope_factor" - }, - { - "type": "float", - "name": "line_width", - "setter": "set_line_width", - "getter": "get_line_width" - }, - { - "type": "int", - "name": "patch_control_points", - "setter": "set_patch_control_points", - "getter": "get_patch_control_points" - } - ] - }, - { - "name": "RDPipelineShader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "p_member", - "type": "RID" - } - ] - }, - { - "name": "get_shader", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_specialization_constants", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "specialization_constants", - "type": "typedarray::RDPipelineSpecializationConstant" - } - ] - }, - { - "name": "get_specialization_constants", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RDPipelineSpecializationConstant" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "shader", - "setter": "set_shader", - "getter": "get_shader" - }, - { - "type": "typedarray::RDPipelineSpecializationConstant", - "name": "specialization_constants", - "setter": "set_specialization_constants", - "getter": "get_specialization_constants" - } - ] - }, - { - "name": "RDPipelineSpecializationConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "set_constant_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "constant_id", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_constant_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - } - ], - "properties": [ - { - "type": "Variant", - "name": "value", - "setter": "set_value", - "getter": "get_value" - }, - { - "type": "int", - "name": "constant_id", - "setter": "set_constant_id", - "getter": "get_constant_id" - } - ] - }, - { - "name": "RDSamplerState", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_mag_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1493420382, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerFilter" - } - ] - }, - { - "name": "get_mag_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2209202801, - "return_value": { - "type": "enum::RenderingDevice.SamplerFilter" - } - }, - { - "name": "set_min_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1493420382, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerFilter" - } - ] - }, - { - "name": "get_min_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2209202801, - "return_value": { - "type": "enum::RenderingDevice.SamplerFilter" - } - }, - { - "name": "set_mip_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1493420382, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerFilter" - } - ] - }, - { - "name": "get_mip_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2209202801, - "return_value": { - "type": "enum::RenderingDevice.SamplerFilter" - } - }, - { - "name": "set_repeat_u", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 246127626, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - ] - }, - { - "name": "get_repeat_u", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227895872, - "return_value": { - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - }, - { - "name": "set_repeat_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 246127626, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - ] - }, - { - "name": "get_repeat_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227895872, - "return_value": { - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - }, - { - "name": "set_repeat_w", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 246127626, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - ] - }, - { - "name": "get_repeat_w", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227895872, - "return_value": { - "type": "enum::RenderingDevice.SamplerRepeatMode" - } - }, - { - "name": "set_lod_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_lod_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_anisotropy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_use_anisotropy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_anisotropy_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_anisotropy_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_enable_compare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_enable_compare", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_compare_op", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2573711505, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.CompareOperator" - } - ] - }, - { - "name": "get_compare_op", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 269730778, - "return_value": { - "type": "enum::RenderingDevice.CompareOperator" - } - }, - { - "name": "set_min_lod", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min_lod", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_lod", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "p_member", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_lod", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_border_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1115869595, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.SamplerBorderColor" - } - ] - }, - { - "name": "get_border_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3514246478, - "return_value": { - "type": "enum::RenderingDevice.SamplerBorderColor" - } - }, - { - "name": "set_unnormalized_uvw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_unnormalized_uvw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "mag_filter", - "setter": "set_mag_filter", - "getter": "get_mag_filter" - }, - { - "type": "int", - "name": "min_filter", - "setter": "set_min_filter", - "getter": "get_min_filter" - }, - { - "type": "int", - "name": "mip_filter", - "setter": "set_mip_filter", - "getter": "get_mip_filter" - }, - { - "type": "int", - "name": "repeat_u", - "setter": "set_repeat_u", - "getter": "get_repeat_u" - }, - { - "type": "int", - "name": "repeat_v", - "setter": "set_repeat_v", - "getter": "get_repeat_v" - }, - { - "type": "int", - "name": "repeat_w", - "setter": "set_repeat_w", - "getter": "get_repeat_w" - }, - { - "type": "float", - "name": "lod_bias", - "setter": "set_lod_bias", - "getter": "get_lod_bias" - }, - { - "type": "bool", - "name": "use_anisotropy", - "setter": "set_use_anisotropy", - "getter": "get_use_anisotropy" - }, - { - "type": "float", - "name": "anisotropy_max", - "setter": "set_anisotropy_max", - "getter": "get_anisotropy_max" - }, - { - "type": "bool", - "name": "enable_compare", - "setter": "set_enable_compare", - "getter": "get_enable_compare" - }, - { - "type": "int", - "name": "compare_op", - "setter": "set_compare_op", - "getter": "get_compare_op" - }, - { - "type": "float", - "name": "min_lod", - "setter": "set_min_lod", - "getter": "get_min_lod" - }, - { - "type": "float", - "name": "max_lod", - "setter": "set_max_lod", - "getter": "get_max_lod" - }, - { - "type": "int", - "name": "border_color", - "setter": "set_border_color", - "getter": "get_border_color" - }, - { - "type": "bool", - "name": "unnormalized_uvw", - "setter": "set_unnormalized_uvw", - "getter": "get_unnormalized_uvw" - } - ] - }, - { - "name": "RDShaderFile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_bytecode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1526857008, - "hash_compatibility": [ - 1558064255 - ], - "arguments": [ - { - "name": "bytecode", - "type": "RDShaderSPIRV" - }, - { - "name": "version", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_spirv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2689310080, - "hash_compatibility": [ - 3340165340 - ], - "return_value": { - "type": "RDShaderSPIRV" - }, - "arguments": [ - { - "name": "version", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_version_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "set_base_error", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "error", - "type": "String" - } - ] - }, - { - "name": "get_base_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "base_error", - "setter": "set_base_error", - "getter": "get_base_error" - } - ] - }, - { - "name": "RDShaderSPIRV", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_stage_bytecode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3514097977, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - }, - { - "name": "bytecode", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_stage_bytecode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3816765404, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - } - ] - }, - { - "name": "set_stage_compile_error", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 620821314, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - }, - { - "name": "compile_error", - "type": "String" - } - ] - }, - { - "name": "get_stage_compile_error", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3354920045, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - } - ] - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "bytecode_vertex", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 0 - }, - { - "type": "PackedByteArray", - "name": "bytecode_fragment", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 1 - }, - { - "type": "PackedByteArray", - "name": "bytecode_tesselation_control", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 2 - }, - { - "type": "PackedByteArray", - "name": "bytecode_tesselation_evaluation", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 3 - }, - { - "type": "PackedByteArray", - "name": "bytecode_compute", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 4 - }, - { - "type": "PackedByteArray", - "name": "bytecode_raygen", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 5 - }, - { - "type": "PackedByteArray", - "name": "bytecode_any_hit", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 6 - }, - { - "type": "PackedByteArray", - "name": "bytecode_closest_hit", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 7 - }, - { - "type": "PackedByteArray", - "name": "bytecode_miss", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 8 - }, - { - "type": "PackedByteArray", - "name": "bytecode_intersection", - "setter": "set_stage_bytecode", - "getter": "get_stage_bytecode", - "index": 9 - }, - { - "type": "String", - "name": "compile_error_vertex", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 0 - }, - { - "type": "String", - "name": "compile_error_fragment", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 1 - }, - { - "type": "String", - "name": "compile_error_tesselation_control", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 2 - }, - { - "type": "String", - "name": "compile_error_tesselation_evaluation", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 3 - }, - { - "type": "String", - "name": "compile_error_compute", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 4 - }, - { - "type": "String", - "name": "compile_error_raygen", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 5 - }, - { - "type": "String", - "name": "compile_error_any_hit", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 6 - }, - { - "type": "String", - "name": "compile_error_closest_hit", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 7 - }, - { - "type": "String", - "name": "compile_error_miss", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 8 - }, - { - "type": "String", - "name": "compile_error_intersection", - "setter": "set_stage_compile_error", - "getter": "get_stage_compile_error", - "index": 9 - } - ] - }, - { - "name": "RDShaderSource", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_stage_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 620821314, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - }, - { - "name": "source", - "type": "String" - } - ] - }, - { - "name": "get_stage_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3354920045, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "stage", - "type": "enum::RenderingDevice.ShaderStage" - } - ] - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3422186742, - "arguments": [ - { - "name": "language", - "type": "enum::RenderingDevice.ShaderLanguage" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1063538261, - "return_value": { - "type": "enum::RenderingDevice.ShaderLanguage" - } - } - ], - "properties": [ - { - "type": "String", - "name": "source_vertex", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 0 - }, - { - "type": "String", - "name": "source_fragment", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 1 - }, - { - "type": "String", - "name": "source_tesselation_control", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 2 - }, - { - "type": "String", - "name": "source_tesselation_evaluation", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 3 - }, - { - "type": "String", - "name": "source_compute", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 4 - }, - { - "type": "String", - "name": "source_raygen", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 5 - }, - { - "type": "String", - "name": "source_any_hit", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 6 - }, - { - "type": "String", - "name": "source_closest_hit", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 7 - }, - { - "type": "String", - "name": "source_miss", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 8 - }, - { - "type": "String", - "name": "source_intersection", - "setter": "set_stage_source", - "getter": "get_stage_source", - "index": 9 - }, - { - "type": "int", - "name": "language", - "setter": "set_language", - "getter": "get_language" - } - ] - }, - { - "name": "RDTextureFormat", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235804183, - "return_value": { - "type": "enum::RenderingDevice.DataFormat" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_array_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_array_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_texture_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 652343381, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureType" - } - ] - }, - { - "name": "get_texture_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4036357416, - "return_value": { - "type": "enum::RenderingDevice.TextureType" - } - }, - { - "name": "set_samples", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3774171498, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSamples" - } - ] - }, - { - "name": "get_samples", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407791724, - "return_value": { - "type": "enum::RenderingDevice.TextureSamples" - } - }, - { - "name": "set_usage_bits", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 245642367, - "arguments": [ - { - "name": "p_member", - "type": "bitfield::RenderingDevice.TextureUsageBits" - } - ] - }, - { - "name": "get_usage_bits", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1313398998, - "return_value": { - "type": "bitfield::RenderingDevice.TextureUsageBits" - } - }, - { - "name": "set_is_resolve_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_is_resolve_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_is_discardable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "p_member", - "type": "bool" - } - ] - }, - { - "name": "get_is_discardable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_shareable_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "remove_shareable_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "format", - "setter": "set_format", - "getter": "get_format" - }, - { - "type": "int", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - }, - { - "type": "int", - "name": "array_layers", - "setter": "set_array_layers", - "getter": "get_array_layers" - }, - { - "type": "int", - "name": "mipmaps", - "setter": "set_mipmaps", - "getter": "get_mipmaps" - }, - { - "type": "int", - "name": "texture_type", - "setter": "set_texture_type", - "getter": "get_texture_type" - }, - { - "type": "int", - "name": "samples", - "setter": "set_samples", - "getter": "get_samples" - }, - { - "type": "int", - "name": "usage_bits", - "setter": "set_usage_bits", - "getter": "get_usage_bits" - }, - { - "type": "bool", - "name": "is_resolve_buffer", - "setter": "set_is_resolve_buffer", - "getter": "get_is_resolve_buffer" - }, - { - "type": "bool", - "name": "is_discardable", - "setter": "set_is_discardable", - "getter": "get_is_discardable" - } - ] - }, - { - "name": "RDTextureView", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_format_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "get_format_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235804183, - "return_value": { - "type": "enum::RenderingDevice.DataFormat" - } - }, - { - "name": "set_swizzle_r", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3833362581, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSwizzle" - } - ] - }, - { - "name": "get_swizzle_r", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150792614, - "return_value": { - "type": "enum::RenderingDevice.TextureSwizzle" - } - }, - { - "name": "set_swizzle_g", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3833362581, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSwizzle" - } - ] - }, - { - "name": "get_swizzle_g", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150792614, - "return_value": { - "type": "enum::RenderingDevice.TextureSwizzle" - } - }, - { - "name": "set_swizzle_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3833362581, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSwizzle" - } - ] - }, - { - "name": "get_swizzle_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150792614, - "return_value": { - "type": "enum::RenderingDevice.TextureSwizzle" - } - }, - { - "name": "set_swizzle_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3833362581, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.TextureSwizzle" - } - ] - }, - { - "name": "get_swizzle_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4150792614, - "return_value": { - "type": "enum::RenderingDevice.TextureSwizzle" - } - } - ], - "properties": [ - { - "type": "int", - "name": "format_override", - "setter": "set_format_override", - "getter": "get_format_override" - }, - { - "type": "int", - "name": "swizzle_r", - "setter": "set_swizzle_r", - "getter": "get_swizzle_r" - }, - { - "type": "int", - "name": "swizzle_g", - "setter": "set_swizzle_g", - "getter": "get_swizzle_g" - }, - { - "type": "int", - "name": "swizzle_b", - "setter": "set_swizzle_b", - "getter": "get_swizzle_b" - }, - { - "type": "int", - "name": "swizzle_a", - "setter": "set_swizzle_a", - "getter": "get_swizzle_a" - } - ] - }, - { - "name": "RDUniform", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_uniform_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1664894931, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.UniformType" - } - ] - }, - { - "name": "get_uniform_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 475470040, - "return_value": { - "type": "enum::RenderingDevice.UniformType" - } - }, - { - "name": "set_binding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_binding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "id", - "type": "RID" - } - ] - }, - { - "name": "clear_ids", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_ids", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::RID" - } - } - ], - "properties": [ - { - "type": "int", - "name": "uniform_type", - "setter": "set_uniform_type", - "getter": "get_uniform_type" - }, - { - "type": "int", - "name": "binding", - "setter": "set_binding", - "getter": "get_binding" - } - ] - }, - { - "name": "RDVertexAttribute", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_binding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_binding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_location", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_location", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 565531219, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.DataFormat" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235804183, - "return_value": { - "type": "enum::RenderingDevice.DataFormat" - } - }, - { - "name": "set_stride", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "p_member", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_frequency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 522141836, - "arguments": [ - { - "name": "p_member", - "type": "enum::RenderingDevice.VertexFrequency" - } - ] - }, - { - "name": "get_frequency", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4154106413, - "return_value": { - "type": "enum::RenderingDevice.VertexFrequency" - } - } - ], - "properties": [ - { - "type": "int", - "name": "binding", - "setter": "set_binding", - "getter": "get_binding" - }, - { - "type": "int", - "name": "location", - "setter": "set_location", - "getter": "get_location" - }, - { - "type": "int", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "int", - "name": "format", - "setter": "set_format", - "getter": "get_format" - }, - { - "type": "int", - "name": "stride", - "setter": "set_stride", - "getter": "get_stride" - }, - { - "type": "int", - "name": "frequency", - "setter": "set_frequency", - "getter": "get_frequency" - } - ] - }, - { - "name": "RandomNumberGenerator", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "seed", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_seed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "state", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "randi", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "randf", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "randfn", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 837325100, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "mean", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "deviation", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "randf_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4269894367, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "from", - "type": "float", - "meta": "float" - }, - { - "name": "to", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "randi_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "from", - "type": "int", - "meta": "int32" - }, - { - "name": "to", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "rand_weighted", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4189642986, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "randomize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "int", - "name": "seed", - "setter": "set_seed", - "getter": "get_seed" - }, - { - "type": "int", - "name": "state", - "setter": "set_state", - "getter": "get_state" - } - ] - }, - { - "name": "Range", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "_value_changed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "new_value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_page", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_as_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_value_no_signal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "minimum", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "maximum", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "step", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_page", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pagesize", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_as_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "set_use_rounded_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_rounded_values", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_exp_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_ratio_exp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_greater", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "is_greater_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_lesser", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "is_lesser_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "share", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "with", - "type": "Node" - } - ] - }, - { - "name": "unshare", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "value_changed", - "arguments": [ - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "changed" - } - ], - "properties": [ - { - "type": "float", - "name": "min_value", - "setter": "set_min", - "getter": "get_min" - }, - { - "type": "float", - "name": "max_value", - "setter": "set_max", - "getter": "get_max" - }, - { - "type": "float", - "name": "step", - "setter": "set_step", - "getter": "get_step" - }, - { - "type": "float", - "name": "page", - "setter": "set_page", - "getter": "get_page" - }, - { - "type": "float", - "name": "value", - "setter": "set_value", - "getter": "get_value" - }, - { - "type": "float", - "name": "ratio", - "setter": "set_as_ratio", - "getter": "get_as_ratio" - }, - { - "type": "bool", - "name": "exp_edit", - "setter": "set_exp_ratio", - "getter": "is_ratio_exp" - }, - { - "type": "bool", - "name": "rounded", - "setter": "set_use_rounded_values", - "getter": "is_using_rounded_values" - }, - { - "type": "bool", - "name": "allow_greater", - "setter": "set_allow_greater", - "getter": "is_greater_allowed" - }, - { - "type": "bool", - "name": "allow_lesser", - "setter": "set_allow_lesser", - "getter": "is_lesser_allowed" - } - ] - }, - { - "name": "RayCast2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "local_point", - "type": "Vector2" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "is_colliding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "force_raycast_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "add_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "add_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3090941106, - "arguments": [ - { - "name": "node", - "type": "CollisionObject2D", - "meta": "required" - } - ] - }, - { - "name": "remove_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "remove_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3090941106, - "arguments": [ - { - "name": "node", - "type": "CollisionObject2D", - "meta": "required" - } - ] - }, - { - "name": "clear_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_parent_body", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mask", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_parent_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_from_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_from_inside_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "exclude_parent", - "setter": "set_exclude_parent_body", - "getter": "get_exclude_parent_body" - }, - { - "type": "Vector2", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "bool", - "name": "hit_from_inside", - "setter": "set_hit_from_inside", - "getter": "is_hit_from_inside_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - } - ] - }, - { - "name": "RayCast3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "local_point", - "type": "Vector3" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "is_colliding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "force_raycast_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_collision_face_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "add_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976431078, - "arguments": [ - { - "name": "node", - "type": "CollisionObject3D", - "meta": "required" - } - ] - }, - { - "name": "remove_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "remove_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976431078, - "arguments": [ - { - "name": "node", - "type": "CollisionObject3D", - "meta": "required" - } - ] - }, - { - "name": "clear_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_parent_body", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mask", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_parent_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_from_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_from_inside_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hit_back_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hit_back_faces_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_shape_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "debug_shape_custom_color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_shape_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_debug_shape_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "debug_shape_thickness", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_debug_shape_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "exclude_parent", - "setter": "set_exclude_parent_body", - "getter": "get_exclude_parent_body" - }, - { - "type": "Vector3", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "bool", - "name": "hit_from_inside", - "setter": "set_hit_from_inside", - "getter": "is_hit_from_inside_enabled" - }, - { - "type": "bool", - "name": "hit_back_faces", - "setter": "set_hit_back_faces", - "getter": "is_hit_back_faces_enabled" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "Color", - "name": "debug_shape_custom_color", - "setter": "set_debug_shape_custom_color", - "getter": "get_debug_shape_custom_color" - }, - { - "type": "int", - "name": "debug_shape_thickness", - "setter": "set_debug_shape_thickness", - "getter": "get_debug_shape_thickness" - } - ] - }, - { - "name": "RectangleShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "RefCounted", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "init_ref", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "unreference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_reference_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "ReferenceRect", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "get_border_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_border_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_border_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_border_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_editor_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_editor_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "Color", - "name": "border_color", - "setter": "set_border_color", - "getter": "get_border_color" - }, - { - "type": "float", - "name": "border_width", - "setter": "set_border_width", - "getter": "get_border_width" - }, - { - "type": "bool", - "name": "editor_only", - "setter": "set_editor_only", - "getter": "get_editor_only" - } - ] - }, - { - "name": "ReflectionProbe", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "UpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "UPDATE_ONCE", - "value": 0 - }, - { - "name": "UPDATE_ALWAYS", - "value": 1 - } - ] - }, - { - "name": "AmbientMode", - "is_bitfield": false, - "values": [ - { - "name": "AMBIENT_DISABLED", - "value": 0 - }, - { - "name": "AMBIENT_ENVIRONMENT", - "value": 1 - }, - { - "name": "AMBIENT_COLOR", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_intensity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_blend_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "blend_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_blend_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_ambient_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1748981278, - "arguments": [ - { - "name": "ambient", - "type": "enum::ReflectionProbe.AmbientMode" - } - ] - }, - { - "name": "get_ambient_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1014607621, - "return_value": { - "type": "enum::ReflectionProbe.AmbientMode" - } - }, - { - "name": "set_ambient_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "ambient", - "type": "Color" - } - ] - }, - { - "name": "get_ambient_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_ambient_color_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ambient_energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ambient_color_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "max_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mesh_lod_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mesh_lod_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_origin_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "origin_offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_origin_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_as_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_set_as_interior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_box_projection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_box_projection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_shadows", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "are_shadows_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_reflection_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_reflection_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4090221187, - "arguments": [ - { - "name": "mode", - "type": "enum::ReflectionProbe.UpdateMode" - } - ] - }, - { - "name": "get_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2367550552, - "return_value": { - "type": "enum::ReflectionProbe.UpdateMode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "update_mode", - "setter": "set_update_mode", - "getter": "get_update_mode" - }, - { - "type": "float", - "name": "intensity", - "setter": "set_intensity", - "getter": "get_intensity" - }, - { - "type": "float", - "name": "blend_distance", - "setter": "set_blend_distance", - "getter": "get_blend_distance" - }, - { - "type": "float", - "name": "max_distance", - "setter": "set_max_distance", - "getter": "get_max_distance" - }, - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Vector3", - "name": "origin_offset", - "setter": "set_origin_offset", - "getter": "get_origin_offset" - }, - { - "type": "bool", - "name": "box_projection", - "setter": "set_enable_box_projection", - "getter": "is_box_projection_enabled" - }, - { - "type": "bool", - "name": "interior", - "setter": "set_as_interior", - "getter": "is_set_as_interior" - }, - { - "type": "bool", - "name": "enable_shadows", - "setter": "set_enable_shadows", - "getter": "are_shadows_enabled" - }, - { - "type": "int", - "name": "cull_mask", - "setter": "set_cull_mask", - "getter": "get_cull_mask" - }, - { - "type": "int", - "name": "reflection_mask", - "setter": "set_reflection_mask", - "getter": "get_reflection_mask" - }, - { - "type": "float", - "name": "mesh_lod_threshold", - "setter": "set_mesh_lod_threshold", - "getter": "get_mesh_lod_threshold" - }, - { - "type": "int", - "name": "ambient_mode", - "setter": "set_ambient_mode", - "getter": "get_ambient_mode" - }, - { - "type": "Color", - "name": "ambient_color", - "setter": "set_ambient_color", - "getter": "get_ambient_color" - }, - { - "type": "float", - "name": "ambient_color_energy", - "setter": "set_ambient_color_energy", - "getter": "get_ambient_color_energy" - } - ] - }, - { - "name": "RegEx", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "create_from_string", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 4249111514, - "hash_compatibility": [ - 2150300909 - ], - "return_value": { - "type": "RegEx" - }, - "arguments": [ - { - "name": "pattern", - "type": "String" - }, - { - "name": "show_error", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "compile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3565188097, - "hash_compatibility": [ - 166001499 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "pattern", - "type": "String" - }, - { - "name": "show_error", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "search", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3365977994, - "hash_compatibility": [ - 4087180739 - ], - "return_value": { - "type": "RegExMatch" - }, - "arguments": [ - { - "name": "subject", - "type": "String" - }, - { - "name": "offset", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "search_all", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 849021363, - "hash_compatibility": [ - 3354100289 - ], - "return_value": { - "type": "typedarray::RegExMatch" - }, - "arguments": [ - { - "name": "subject", - "type": "String" - }, - { - "name": "offset", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "sub", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 54019702, - "hash_compatibility": [ - 758293621 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "subject", - "type": "String" - }, - { - "name": "replacement", - "type": "String" - }, - { - "name": "all", - "type": "bool", - "default_value": "false" - }, - { - "name": "offset", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "is_valid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pattern", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_group_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - } - ] - }, - { - "name": "RegExMatch", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_subject", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_group_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_strings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 687115856, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "name", - "type": "Variant", - "default_value": "0" - } - ] - }, - { - "name": "get_start", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 490464691, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "Variant", - "default_value": "0" - } - ] - }, - { - "name": "get_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 490464691, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "Variant", - "default_value": "0" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "subject", - "getter": "get_subject" - }, - { - "type": "Dictionary", - "name": "names", - "getter": "get_names" - }, - { - "type": "Array", - "name": "strings", - "getter": "get_strings" - } - ] - }, - { - "name": "RemoteTransform2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_remote_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_remote_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "force_update_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_use_global_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_global_coordinates", - "type": "bool" - } - ] - }, - { - "name": "get_use_global_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_position", - "type": "bool" - } - ] - }, - { - "name": "get_update_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_rotation", - "type": "bool" - } - ] - }, - { - "name": "get_update_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_scale", - "type": "bool" - } - ] - }, - { - "name": "get_update_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "remote_path", - "setter": "set_remote_node", - "getter": "get_remote_node" - }, - { - "type": "bool", - "name": "use_global_coordinates", - "setter": "set_use_global_coordinates", - "getter": "get_use_global_coordinates" - }, - { - "type": "bool", - "name": "update_position", - "setter": "set_update_position", - "getter": "get_update_position" - }, - { - "type": "bool", - "name": "update_rotation", - "setter": "set_update_rotation", - "getter": "get_update_rotation" - }, - { - "type": "bool", - "name": "update_scale", - "setter": "set_update_scale", - "getter": "get_update_scale" - } - ] - }, - { - "name": "RemoteTransform3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_remote_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_remote_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "force_update_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_use_global_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_global_coordinates", - "type": "bool" - } - ] - }, - { - "name": "get_use_global_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_position", - "type": "bool" - } - ] - }, - { - "name": "get_update_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_rotation", - "type": "bool" - } - ] - }, - { - "name": "get_update_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "update_remote_scale", - "type": "bool" - } - ] - }, - { - "name": "get_update_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "remote_path", - "setter": "set_remote_node", - "getter": "get_remote_node" - }, - { - "type": "bool", - "name": "use_global_coordinates", - "setter": "set_use_global_coordinates", - "getter": "get_use_global_coordinates" - }, - { - "type": "bool", - "name": "update_position", - "setter": "set_update_position", - "getter": "get_update_position" - }, - { - "type": "bool", - "name": "update_rotation", - "setter": "set_update_rotation", - "getter": "get_update_rotation" - }, - { - "type": "bool", - "name": "update_scale", - "setter": "set_update_scale", - "getter": "get_update_scale" - } - ] - }, - { - "name": "RenderData", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_render_scene_buffers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2793216201, - "return_value": { - "type": "RenderSceneBuffers" - } - }, - { - "name": "get_render_scene_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1288715698, - "return_value": { - "type": "RenderSceneData" - } - }, - { - "name": "get_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_camera_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ] - }, - { - "name": "RenderDataExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RenderData", - "api_type": "core", - "methods": [ - { - "name": "_get_render_scene_buffers", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2793216201, - "return_value": { - "type": "RenderSceneBuffers" - } - }, - { - "name": "_get_render_scene_data", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1288715698, - "return_value": { - "type": "RenderSceneData" - } - }, - { - "name": "_get_environment", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "_get_camera_attributes", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ] - }, - { - "name": "RenderDataRD", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RenderData", - "api_type": "core" - }, - { - "name": "RenderSceneBuffers", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "configure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3072623270, - "arguments": [ - { - "name": "config", - "type": "RenderSceneBuffersConfiguration" - } - ] - } - ] - }, - { - "name": "RenderSceneBuffersConfiguration", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_render_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_render_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "render_target", - "type": "RID" - } - ] - }, - { - "name": "get_internal_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_internal_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "internal_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_target_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_target_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "target_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_view_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_view_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "view_count", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_scaling_3d_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 976778074, - "return_value": { - "type": "enum::RenderingServer.ViewportScaling3DMode" - } - }, - { - "name": "set_scaling_3d_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 447477857, - "arguments": [ - { - "name": "scaling_3d_mode", - "type": "enum::RenderingServer.ViewportScaling3DMode" - } - ] - }, - { - "name": "get_msaa_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3109158617, - "return_value": { - "type": "enum::RenderingServer.ViewportMSAA" - } - }, - { - "name": "set_msaa_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3952630748, - "arguments": [ - { - "name": "msaa_3d", - "type": "enum::RenderingServer.ViewportMSAA" - } - ] - }, - { - "name": "get_screen_space_aa", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 641513172, - "return_value": { - "type": "enum::RenderingServer.ViewportScreenSpaceAA" - } - }, - { - "name": "set_screen_space_aa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 139543108, - "arguments": [ - { - "name": "screen_space_aa", - "type": "enum::RenderingServer.ViewportScreenSpaceAA" - } - ] - }, - { - "name": "get_fsr_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fsr_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fsr_sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texture_mipmap_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texture_mipmap_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "texture_mipmap_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_anisotropic_filtering_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1617414954, - "return_value": { - "type": "enum::RenderingServer.ViewportAnisotropicFiltering" - } - }, - { - "name": "set_anisotropic_filtering_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2559658741, - "arguments": [ - { - "name": "anisotropic_filtering_level", - "type": "enum::RenderingServer.ViewportAnisotropicFiltering" - } - ] - } - ], - "properties": [ - { - "type": "RID", - "name": "render_target", - "setter": "set_render_target", - "getter": "get_render_target" - }, - { - "type": "Vector2i", - "name": "internal_size", - "setter": "set_internal_size", - "getter": "get_internal_size" - }, - { - "type": "Vector2i", - "name": "target_size", - "setter": "set_target_size", - "getter": "get_target_size" - }, - { - "type": "int", - "name": "view_count", - "setter": "set_view_count", - "getter": "get_view_count" - }, - { - "type": "int", - "name": "scaling_3d_mode", - "setter": "set_scaling_3d_mode", - "getter": "get_scaling_3d_mode" - }, - { - "type": "int", - "name": "msaa_3d", - "setter": "set_msaa_3d", - "getter": "get_msaa_3d" - }, - { - "type": "int", - "name": "screen_space_aa", - "setter": "set_screen_space_aa", - "getter": "get_screen_space_aa" - }, - { - "type": "bool", - "name": "fsr_sharpness", - "setter": "set_fsr_sharpness", - "getter": "get_fsr_sharpness" - }, - { - "type": "bool", - "name": "texture_mipmap_bias", - "setter": "set_texture_mipmap_bias", - "getter": "get_texture_mipmap_bias" - }, - { - "type": "int", - "name": "anisotropic_filtering_level", - "setter": "set_anisotropic_filtering_level", - "getter": "get_anisotropic_filtering_level" - } - ] - }, - { - "name": "RenderSceneBuffersExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RenderSceneBuffers", - "api_type": "core", - "methods": [ - { - "name": "_configure", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3072623270, - "arguments": [ - { - "name": "config", - "type": "RenderSceneBuffersConfiguration" - } - ] - }, - { - "name": "_set_fsr_sharpness", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "fsr_sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_set_texture_mipmap_bias", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "texture_mipmap_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_set_anisotropic_filtering_level", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "anisotropic_filtering_level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_set_use_debanding", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "use_debanding", - "type": "bool" - } - ] - } - ] - }, - { - "name": "RenderSceneBuffersRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RenderSceneBuffers", - "api_type": "core", - "methods": [ - { - "name": "has_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "create_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2950875024, - "hash_compatibility": [ - 3559915770 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "data_format", - "type": "enum::RenderingDevice.DataFormat" - }, - { - "name": "usage_bits", - "type": "int", - "meta": "uint32" - }, - { - "name": "texture_samples", - "type": "enum::RenderingDevice.TextureSamples" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmaps", - "type": "int", - "meta": "uint32" - }, - { - "name": "unique", - "type": "bool" - }, - { - "name": "discardable", - "type": "bool" - } - ] - }, - { - "name": "create_texture_from_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3344669382, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "format", - "type": "RDTextureFormat" - }, - { - "name": "view", - "type": "RDTextureView" - }, - { - "name": "unique", - "type": "bool" - } - ] - }, - { - "name": "create_texture_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 283055834, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "view_name", - "type": "StringName" - }, - { - "name": "view", - "type": "RDTextureView" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 750006389, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_texture_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 371461758, - "return_value": { - "type": "RDTextureFormat" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_texture_slice", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 588440706, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmaps", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_texture_slice_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 682451778, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmaps", - "type": "int", - "meta": "uint32" - }, - { - "name": "view", - "type": "RDTextureView" - } - ] - }, - { - "name": "get_texture_slice_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2617625368, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "context", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "mipmap", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "clear_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "context", - "type": "StringName" - } - ] - }, - { - "name": "get_color_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050822880, - "hash_compatibility": [ - 529393457 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_color_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3087988589, - "hash_compatibility": [ - 937000113 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_depth_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050822880, - "hash_compatibility": [ - 529393457 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_depth_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3087988589, - "hash_compatibility": [ - 937000113 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_velocity_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050822880, - "hash_compatibility": [ - 529393457 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_velocity_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3087988589, - "hash_compatibility": [ - 937000113 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "msaa", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_render_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_view_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_internal_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_target_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_scaling_3d_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 976778074, - "return_value": { - "type": "enum::RenderingServer.ViewportScaling3DMode" - } - }, - { - "name": "get_fsr_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_msaa_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3109158617, - "return_value": { - "type": "enum::RenderingServer.ViewportMSAA" - } - }, - { - "name": "get_texture_samples", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 407791724, - "return_value": { - "type": "enum::RenderingDevice.TextureSamples" - } - }, - { - "name": "get_screen_space_aa", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 641513172, - "return_value": { - "type": "enum::RenderingServer.ViewportScreenSpaceAA" - } - }, - { - "name": "get_use_taa", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_use_debanding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "RenderSceneData", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_cam_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_cam_projection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2910717950, - "return_value": { - "type": "Projection" - } - }, - { - "name": "get_view_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_view_eye_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_view_projection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3179846605, - "return_value": { - "type": "Projection" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_uniform_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ] - }, - { - "name": "RenderSceneDataExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RenderSceneData", - "api_type": "core", - "methods": [ - { - "name": "_get_cam_transform", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "_get_cam_projection", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2910717950, - "return_value": { - "type": "Projection" - } - }, - { - "name": "_get_view_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_view_eye_offset", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_view_projection", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3179846605, - "return_value": { - "type": "Projection" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_get_uniform_buffer", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ] - }, - { - "name": "RenderSceneDataRD", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RenderSceneData", - "api_type": "core" - }, - { - "name": "RenderingDevice", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "INVALID_ID", - "value": -1 - }, - { - "name": "INVALID_FORMAT_ID", - "value": -1 - } - ], - "enums": [ - { - "name": "DeviceType", - "is_bitfield": false, - "values": [ - { - "name": "DEVICE_TYPE_OTHER", - "value": 0 - }, - { - "name": "DEVICE_TYPE_INTEGRATED_GPU", - "value": 1 - }, - { - "name": "DEVICE_TYPE_DISCRETE_GPU", - "value": 2 - }, - { - "name": "DEVICE_TYPE_VIRTUAL_GPU", - "value": 3 - }, - { - "name": "DEVICE_TYPE_CPU", - "value": 4 - }, - { - "name": "DEVICE_TYPE_MAX", - "value": 5 - } - ] - }, - { - "name": "DriverResource", - "is_bitfield": false, - "values": [ - { - "name": "DRIVER_RESOURCE_LOGICAL_DEVICE", - "value": 0 - }, - { - "name": "DRIVER_RESOURCE_PHYSICAL_DEVICE", - "value": 1 - }, - { - "name": "DRIVER_RESOURCE_TOPMOST_OBJECT", - "value": 2 - }, - { - "name": "DRIVER_RESOURCE_COMMAND_QUEUE", - "value": 3 - }, - { - "name": "DRIVER_RESOURCE_QUEUE_FAMILY", - "value": 4 - }, - { - "name": "DRIVER_RESOURCE_TEXTURE", - "value": 5 - }, - { - "name": "DRIVER_RESOURCE_TEXTURE_VIEW", - "value": 6 - }, - { - "name": "DRIVER_RESOURCE_TEXTURE_DATA_FORMAT", - "value": 7 - }, - { - "name": "DRIVER_RESOURCE_SAMPLER", - "value": 8 - }, - { - "name": "DRIVER_RESOURCE_UNIFORM_SET", - "value": 9 - }, - { - "name": "DRIVER_RESOURCE_BUFFER", - "value": 10 - }, - { - "name": "DRIVER_RESOURCE_COMPUTE_PIPELINE", - "value": 11 - }, - { - "name": "DRIVER_RESOURCE_RENDER_PIPELINE", - "value": 12 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_DEVICE", - "value": 0 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_PHYSICAL_DEVICE", - "value": 1 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_INSTANCE", - "value": 2 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_QUEUE", - "value": 3 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_QUEUE_FAMILY_INDEX", - "value": 4 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_IMAGE", - "value": 5 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_IMAGE_VIEW", - "value": 6 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_IMAGE_NATIVE_TEXTURE_FORMAT", - "value": 7 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_SAMPLER", - "value": 8 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_DESCRIPTOR_SET", - "value": 9 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_BUFFER", - "value": 10 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_COMPUTE_PIPELINE", - "value": 11 - }, - { - "name": "DRIVER_RESOURCE_VULKAN_RENDER_PIPELINE", - "value": 12 - } - ] - }, - { - "name": "DataFormat", - "is_bitfield": false, - "values": [ - { - "name": "DATA_FORMAT_R4G4_UNORM_PACK8", - "value": 0 - }, - { - "name": "DATA_FORMAT_R4G4B4A4_UNORM_PACK16", - "value": 1 - }, - { - "name": "DATA_FORMAT_B4G4R4A4_UNORM_PACK16", - "value": 2 - }, - { - "name": "DATA_FORMAT_R5G6B5_UNORM_PACK16", - "value": 3 - }, - { - "name": "DATA_FORMAT_B5G6R5_UNORM_PACK16", - "value": 4 - }, - { - "name": "DATA_FORMAT_R5G5B5A1_UNORM_PACK16", - "value": 5 - }, - { - "name": "DATA_FORMAT_B5G5R5A1_UNORM_PACK16", - "value": 6 - }, - { - "name": "DATA_FORMAT_A1R5G5B5_UNORM_PACK16", - "value": 7 - }, - { - "name": "DATA_FORMAT_R8_UNORM", - "value": 8 - }, - { - "name": "DATA_FORMAT_R8_SNORM", - "value": 9 - }, - { - "name": "DATA_FORMAT_R8_USCALED", - "value": 10 - }, - { - "name": "DATA_FORMAT_R8_SSCALED", - "value": 11 - }, - { - "name": "DATA_FORMAT_R8_UINT", - "value": 12 - }, - { - "name": "DATA_FORMAT_R8_SINT", - "value": 13 - }, - { - "name": "DATA_FORMAT_R8_SRGB", - "value": 14 - }, - { - "name": "DATA_FORMAT_R8G8_UNORM", - "value": 15 - }, - { - "name": "DATA_FORMAT_R8G8_SNORM", - "value": 16 - }, - { - "name": "DATA_FORMAT_R8G8_USCALED", - "value": 17 - }, - { - "name": "DATA_FORMAT_R8G8_SSCALED", - "value": 18 - }, - { - "name": "DATA_FORMAT_R8G8_UINT", - "value": 19 - }, - { - "name": "DATA_FORMAT_R8G8_SINT", - "value": 20 - }, - { - "name": "DATA_FORMAT_R8G8_SRGB", - "value": 21 - }, - { - "name": "DATA_FORMAT_R8G8B8_UNORM", - "value": 22 - }, - { - "name": "DATA_FORMAT_R8G8B8_SNORM", - "value": 23 - }, - { - "name": "DATA_FORMAT_R8G8B8_USCALED", - "value": 24 - }, - { - "name": "DATA_FORMAT_R8G8B8_SSCALED", - "value": 25 - }, - { - "name": "DATA_FORMAT_R8G8B8_UINT", - "value": 26 - }, - { - "name": "DATA_FORMAT_R8G8B8_SINT", - "value": 27 - }, - { - "name": "DATA_FORMAT_R8G8B8_SRGB", - "value": 28 - }, - { - "name": "DATA_FORMAT_B8G8R8_UNORM", - "value": 29 - }, - { - "name": "DATA_FORMAT_B8G8R8_SNORM", - "value": 30 - }, - { - "name": "DATA_FORMAT_B8G8R8_USCALED", - "value": 31 - }, - { - "name": "DATA_FORMAT_B8G8R8_SSCALED", - "value": 32 - }, - { - "name": "DATA_FORMAT_B8G8R8_UINT", - "value": 33 - }, - { - "name": "DATA_FORMAT_B8G8R8_SINT", - "value": 34 - }, - { - "name": "DATA_FORMAT_B8G8R8_SRGB", - "value": 35 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_UNORM", - "value": 36 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_SNORM", - "value": 37 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_USCALED", - "value": 38 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_SSCALED", - "value": 39 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_UINT", - "value": 40 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_SINT", - "value": 41 - }, - { - "name": "DATA_FORMAT_R8G8B8A8_SRGB", - "value": 42 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_UNORM", - "value": 43 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_SNORM", - "value": 44 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_USCALED", - "value": 45 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_SSCALED", - "value": 46 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_UINT", - "value": 47 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_SINT", - "value": 48 - }, - { - "name": "DATA_FORMAT_B8G8R8A8_SRGB", - "value": 49 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_UNORM_PACK32", - "value": 50 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_SNORM_PACK32", - "value": 51 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_USCALED_PACK32", - "value": 52 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_SSCALED_PACK32", - "value": 53 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_UINT_PACK32", - "value": 54 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_SINT_PACK32", - "value": 55 - }, - { - "name": "DATA_FORMAT_A8B8G8R8_SRGB_PACK32", - "value": 56 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_UNORM_PACK32", - "value": 57 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_SNORM_PACK32", - "value": 58 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_USCALED_PACK32", - "value": 59 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_SSCALED_PACK32", - "value": 60 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_UINT_PACK32", - "value": 61 - }, - { - "name": "DATA_FORMAT_A2R10G10B10_SINT_PACK32", - "value": 62 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_UNORM_PACK32", - "value": 63 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_SNORM_PACK32", - "value": 64 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_USCALED_PACK32", - "value": 65 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_SSCALED_PACK32", - "value": 66 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_UINT_PACK32", - "value": 67 - }, - { - "name": "DATA_FORMAT_A2B10G10R10_SINT_PACK32", - "value": 68 - }, - { - "name": "DATA_FORMAT_R16_UNORM", - "value": 69 - }, - { - "name": "DATA_FORMAT_R16_SNORM", - "value": 70 - }, - { - "name": "DATA_FORMAT_R16_USCALED", - "value": 71 - }, - { - "name": "DATA_FORMAT_R16_SSCALED", - "value": 72 - }, - { - "name": "DATA_FORMAT_R16_UINT", - "value": 73 - }, - { - "name": "DATA_FORMAT_R16_SINT", - "value": 74 - }, - { - "name": "DATA_FORMAT_R16_SFLOAT", - "value": 75 - }, - { - "name": "DATA_FORMAT_R16G16_UNORM", - "value": 76 - }, - { - "name": "DATA_FORMAT_R16G16_SNORM", - "value": 77 - }, - { - "name": "DATA_FORMAT_R16G16_USCALED", - "value": 78 - }, - { - "name": "DATA_FORMAT_R16G16_SSCALED", - "value": 79 - }, - { - "name": "DATA_FORMAT_R16G16_UINT", - "value": 80 - }, - { - "name": "DATA_FORMAT_R16G16_SINT", - "value": 81 - }, - { - "name": "DATA_FORMAT_R16G16_SFLOAT", - "value": 82 - }, - { - "name": "DATA_FORMAT_R16G16B16_UNORM", - "value": 83 - }, - { - "name": "DATA_FORMAT_R16G16B16_SNORM", - "value": 84 - }, - { - "name": "DATA_FORMAT_R16G16B16_USCALED", - "value": 85 - }, - { - "name": "DATA_FORMAT_R16G16B16_SSCALED", - "value": 86 - }, - { - "name": "DATA_FORMAT_R16G16B16_UINT", - "value": 87 - }, - { - "name": "DATA_FORMAT_R16G16B16_SINT", - "value": 88 - }, - { - "name": "DATA_FORMAT_R16G16B16_SFLOAT", - "value": 89 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_UNORM", - "value": 90 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_SNORM", - "value": 91 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_USCALED", - "value": 92 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_SSCALED", - "value": 93 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_UINT", - "value": 94 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_SINT", - "value": 95 - }, - { - "name": "DATA_FORMAT_R16G16B16A16_SFLOAT", - "value": 96 - }, - { - "name": "DATA_FORMAT_R32_UINT", - "value": 97 - }, - { - "name": "DATA_FORMAT_R32_SINT", - "value": 98 - }, - { - "name": "DATA_FORMAT_R32_SFLOAT", - "value": 99 - }, - { - "name": "DATA_FORMAT_R32G32_UINT", - "value": 100 - }, - { - "name": "DATA_FORMAT_R32G32_SINT", - "value": 101 - }, - { - "name": "DATA_FORMAT_R32G32_SFLOAT", - "value": 102 - }, - { - "name": "DATA_FORMAT_R32G32B32_UINT", - "value": 103 - }, - { - "name": "DATA_FORMAT_R32G32B32_SINT", - "value": 104 - }, - { - "name": "DATA_FORMAT_R32G32B32_SFLOAT", - "value": 105 - }, - { - "name": "DATA_FORMAT_R32G32B32A32_UINT", - "value": 106 - }, - { - "name": "DATA_FORMAT_R32G32B32A32_SINT", - "value": 107 - }, - { - "name": "DATA_FORMAT_R32G32B32A32_SFLOAT", - "value": 108 - }, - { - "name": "DATA_FORMAT_R64_UINT", - "value": 109 - }, - { - "name": "DATA_FORMAT_R64_SINT", - "value": 110 - }, - { - "name": "DATA_FORMAT_R64_SFLOAT", - "value": 111 - }, - { - "name": "DATA_FORMAT_R64G64_UINT", - "value": 112 - }, - { - "name": "DATA_FORMAT_R64G64_SINT", - "value": 113 - }, - { - "name": "DATA_FORMAT_R64G64_SFLOAT", - "value": 114 - }, - { - "name": "DATA_FORMAT_R64G64B64_UINT", - "value": 115 - }, - { - "name": "DATA_FORMAT_R64G64B64_SINT", - "value": 116 - }, - { - "name": "DATA_FORMAT_R64G64B64_SFLOAT", - "value": 117 - }, - { - "name": "DATA_FORMAT_R64G64B64A64_UINT", - "value": 118 - }, - { - "name": "DATA_FORMAT_R64G64B64A64_SINT", - "value": 119 - }, - { - "name": "DATA_FORMAT_R64G64B64A64_SFLOAT", - "value": 120 - }, - { - "name": "DATA_FORMAT_B10G11R11_UFLOAT_PACK32", - "value": 121 - }, - { - "name": "DATA_FORMAT_E5B9G9R9_UFLOAT_PACK32", - "value": 122 - }, - { - "name": "DATA_FORMAT_D16_UNORM", - "value": 123 - }, - { - "name": "DATA_FORMAT_X8_D24_UNORM_PACK32", - "value": 124 - }, - { - "name": "DATA_FORMAT_D32_SFLOAT", - "value": 125 - }, - { - "name": "DATA_FORMAT_S8_UINT", - "value": 126 - }, - { - "name": "DATA_FORMAT_D16_UNORM_S8_UINT", - "value": 127 - }, - { - "name": "DATA_FORMAT_D24_UNORM_S8_UINT", - "value": 128 - }, - { - "name": "DATA_FORMAT_D32_SFLOAT_S8_UINT", - "value": 129 - }, - { - "name": "DATA_FORMAT_BC1_RGB_UNORM_BLOCK", - "value": 130 - }, - { - "name": "DATA_FORMAT_BC1_RGB_SRGB_BLOCK", - "value": 131 - }, - { - "name": "DATA_FORMAT_BC1_RGBA_UNORM_BLOCK", - "value": 132 - }, - { - "name": "DATA_FORMAT_BC1_RGBA_SRGB_BLOCK", - "value": 133 - }, - { - "name": "DATA_FORMAT_BC2_UNORM_BLOCK", - "value": 134 - }, - { - "name": "DATA_FORMAT_BC2_SRGB_BLOCK", - "value": 135 - }, - { - "name": "DATA_FORMAT_BC3_UNORM_BLOCK", - "value": 136 - }, - { - "name": "DATA_FORMAT_BC3_SRGB_BLOCK", - "value": 137 - }, - { - "name": "DATA_FORMAT_BC4_UNORM_BLOCK", - "value": 138 - }, - { - "name": "DATA_FORMAT_BC4_SNORM_BLOCK", - "value": 139 - }, - { - "name": "DATA_FORMAT_BC5_UNORM_BLOCK", - "value": 140 - }, - { - "name": "DATA_FORMAT_BC5_SNORM_BLOCK", - "value": 141 - }, - { - "name": "DATA_FORMAT_BC6H_UFLOAT_BLOCK", - "value": 142 - }, - { - "name": "DATA_FORMAT_BC6H_SFLOAT_BLOCK", - "value": 143 - }, - { - "name": "DATA_FORMAT_BC7_UNORM_BLOCK", - "value": 144 - }, - { - "name": "DATA_FORMAT_BC7_SRGB_BLOCK", - "value": 145 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK", - "value": 146 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8_SRGB_BLOCK", - "value": 147 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK", - "value": 148 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK", - "value": 149 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK", - "value": 150 - }, - { - "name": "DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK", - "value": 151 - }, - { - "name": "DATA_FORMAT_EAC_R11_UNORM_BLOCK", - "value": 152 - }, - { - "name": "DATA_FORMAT_EAC_R11_SNORM_BLOCK", - "value": 153 - }, - { - "name": "DATA_FORMAT_EAC_R11G11_UNORM_BLOCK", - "value": 154 - }, - { - "name": "DATA_FORMAT_EAC_R11G11_SNORM_BLOCK", - "value": 155 - }, - { - "name": "DATA_FORMAT_ASTC_4x4_UNORM_BLOCK", - "value": 156 - }, - { - "name": "DATA_FORMAT_ASTC_4x4_SRGB_BLOCK", - "value": 157 - }, - { - "name": "DATA_FORMAT_ASTC_5x4_UNORM_BLOCK", - "value": 158 - }, - { - "name": "DATA_FORMAT_ASTC_5x4_SRGB_BLOCK", - "value": 159 - }, - { - "name": "DATA_FORMAT_ASTC_5x5_UNORM_BLOCK", - "value": 160 - }, - { - "name": "DATA_FORMAT_ASTC_5x5_SRGB_BLOCK", - "value": 161 - }, - { - "name": "DATA_FORMAT_ASTC_6x5_UNORM_BLOCK", - "value": 162 - }, - { - "name": "DATA_FORMAT_ASTC_6x5_SRGB_BLOCK", - "value": 163 - }, - { - "name": "DATA_FORMAT_ASTC_6x6_UNORM_BLOCK", - "value": 164 - }, - { - "name": "DATA_FORMAT_ASTC_6x6_SRGB_BLOCK", - "value": 165 - }, - { - "name": "DATA_FORMAT_ASTC_8x5_UNORM_BLOCK", - "value": 166 - }, - { - "name": "DATA_FORMAT_ASTC_8x5_SRGB_BLOCK", - "value": 167 - }, - { - "name": "DATA_FORMAT_ASTC_8x6_UNORM_BLOCK", - "value": 168 - }, - { - "name": "DATA_FORMAT_ASTC_8x6_SRGB_BLOCK", - "value": 169 - }, - { - "name": "DATA_FORMAT_ASTC_8x8_UNORM_BLOCK", - "value": 170 - }, - { - "name": "DATA_FORMAT_ASTC_8x8_SRGB_BLOCK", - "value": 171 - }, - { - "name": "DATA_FORMAT_ASTC_10x5_UNORM_BLOCK", - "value": 172 - }, - { - "name": "DATA_FORMAT_ASTC_10x5_SRGB_BLOCK", - "value": 173 - }, - { - "name": "DATA_FORMAT_ASTC_10x6_UNORM_BLOCK", - "value": 174 - }, - { - "name": "DATA_FORMAT_ASTC_10x6_SRGB_BLOCK", - "value": 175 - }, - { - "name": "DATA_FORMAT_ASTC_10x8_UNORM_BLOCK", - "value": 176 - }, - { - "name": "DATA_FORMAT_ASTC_10x8_SRGB_BLOCK", - "value": 177 - }, - { - "name": "DATA_FORMAT_ASTC_10x10_UNORM_BLOCK", - "value": 178 - }, - { - "name": "DATA_FORMAT_ASTC_10x10_SRGB_BLOCK", - "value": 179 - }, - { - "name": "DATA_FORMAT_ASTC_12x10_UNORM_BLOCK", - "value": 180 - }, - { - "name": "DATA_FORMAT_ASTC_12x10_SRGB_BLOCK", - "value": 181 - }, - { - "name": "DATA_FORMAT_ASTC_12x12_UNORM_BLOCK", - "value": 182 - }, - { - "name": "DATA_FORMAT_ASTC_12x12_SRGB_BLOCK", - "value": 183 - }, - { - "name": "DATA_FORMAT_G8B8G8R8_422_UNORM", - "value": 184 - }, - { - "name": "DATA_FORMAT_B8G8R8G8_422_UNORM", - "value": 185 - }, - { - "name": "DATA_FORMAT_G8_B8_R8_3PLANE_420_UNORM", - "value": 186 - }, - { - "name": "DATA_FORMAT_G8_B8R8_2PLANE_420_UNORM", - "value": 187 - }, - { - "name": "DATA_FORMAT_G8_B8_R8_3PLANE_422_UNORM", - "value": 188 - }, - { - "name": "DATA_FORMAT_G8_B8R8_2PLANE_422_UNORM", - "value": 189 - }, - { - "name": "DATA_FORMAT_G8_B8_R8_3PLANE_444_UNORM", - "value": 190 - }, - { - "name": "DATA_FORMAT_R10X6_UNORM_PACK16", - "value": 191 - }, - { - "name": "DATA_FORMAT_R10X6G10X6_UNORM_2PACK16", - "value": 192 - }, - { - "name": "DATA_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16", - "value": 193 - }, - { - "name": "DATA_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16", - "value": 194 - }, - { - "name": "DATA_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16", - "value": 195 - }, - { - "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16", - "value": 196 - }, - { - "name": "DATA_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16", - "value": 197 - }, - { - "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16", - "value": 198 - }, - { - "name": "DATA_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16", - "value": 199 - }, - { - "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16", - "value": 200 - }, - { - "name": "DATA_FORMAT_R12X4_UNORM_PACK16", - "value": 201 - }, - { - "name": "DATA_FORMAT_R12X4G12X4_UNORM_2PACK16", - "value": 202 - }, - { - "name": "DATA_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16", - "value": 203 - }, - { - "name": "DATA_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16", - "value": 204 - }, - { - "name": "DATA_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16", - "value": 205 - }, - { - "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16", - "value": 206 - }, - { - "name": "DATA_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16", - "value": 207 - }, - { - "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16", - "value": 208 - }, - { - "name": "DATA_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16", - "value": 209 - }, - { - "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16", - "value": 210 - }, - { - "name": "DATA_FORMAT_G16B16G16R16_422_UNORM", - "value": 211 - }, - { - "name": "DATA_FORMAT_B16G16R16G16_422_UNORM", - "value": 212 - }, - { - "name": "DATA_FORMAT_G16_B16_R16_3PLANE_420_UNORM", - "value": 213 - }, - { - "name": "DATA_FORMAT_G16_B16R16_2PLANE_420_UNORM", - "value": 214 - }, - { - "name": "DATA_FORMAT_G16_B16_R16_3PLANE_422_UNORM", - "value": 215 - }, - { - "name": "DATA_FORMAT_G16_B16R16_2PLANE_422_UNORM", - "value": 216 - }, - { - "name": "DATA_FORMAT_G16_B16_R16_3PLANE_444_UNORM", - "value": 217 - }, - { - "name": "DATA_FORMAT_ASTC_4x4_SFLOAT_BLOCK", - "value": 218 - }, - { - "name": "DATA_FORMAT_ASTC_5x4_SFLOAT_BLOCK", - "value": 219 - }, - { - "name": "DATA_FORMAT_ASTC_5x5_SFLOAT_BLOCK", - "value": 220 - }, - { - "name": "DATA_FORMAT_ASTC_6x5_SFLOAT_BLOCK", - "value": 221 - }, - { - "name": "DATA_FORMAT_ASTC_6x6_SFLOAT_BLOCK", - "value": 222 - }, - { - "name": "DATA_FORMAT_ASTC_8x5_SFLOAT_BLOCK", - "value": 223 - }, - { - "name": "DATA_FORMAT_ASTC_8x6_SFLOAT_BLOCK", - "value": 224 - }, - { - "name": "DATA_FORMAT_ASTC_8x8_SFLOAT_BLOCK", - "value": 225 - }, - { - "name": "DATA_FORMAT_ASTC_10x5_SFLOAT_BLOCK", - "value": 226 - }, - { - "name": "DATA_FORMAT_ASTC_10x6_SFLOAT_BLOCK", - "value": 227 - }, - { - "name": "DATA_FORMAT_ASTC_10x8_SFLOAT_BLOCK", - "value": 228 - }, - { - "name": "DATA_FORMAT_ASTC_10x10_SFLOAT_BLOCK", - "value": 229 - }, - { - "name": "DATA_FORMAT_ASTC_12x10_SFLOAT_BLOCK", - "value": 230 - }, - { - "name": "DATA_FORMAT_ASTC_12x12_SFLOAT_BLOCK", - "value": 231 - }, - { - "name": "DATA_FORMAT_MAX", - "value": 232 - } - ] - }, - { - "name": "BarrierMask", - "is_bitfield": true, - "values": [ - { - "name": "BARRIER_MASK_VERTEX", - "value": 1 - }, - { - "name": "BARRIER_MASK_FRAGMENT", - "value": 8 - }, - { - "name": "BARRIER_MASK_COMPUTE", - "value": 2 - }, - { - "name": "BARRIER_MASK_TRANSFER", - "value": 4 - }, - { - "name": "BARRIER_MASK_RASTER", - "value": 9 - }, - { - "name": "BARRIER_MASK_ALL_BARRIERS", - "value": 32767 - }, - { - "name": "BARRIER_MASK_NO_BARRIER", - "value": 32768 - } - ] - }, - { - "name": "TextureType", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_TYPE_1D", - "value": 0 - }, - { - "name": "TEXTURE_TYPE_2D", - "value": 1 - }, - { - "name": "TEXTURE_TYPE_3D", - "value": 2 - }, - { - "name": "TEXTURE_TYPE_CUBE", - "value": 3 - }, - { - "name": "TEXTURE_TYPE_1D_ARRAY", - "value": 4 - }, - { - "name": "TEXTURE_TYPE_2D_ARRAY", - "value": 5 - }, - { - "name": "TEXTURE_TYPE_CUBE_ARRAY", - "value": 6 - }, - { - "name": "TEXTURE_TYPE_MAX", - "value": 7 - } - ] - }, - { - "name": "TextureSamples", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_SAMPLES_1", - "value": 0 - }, - { - "name": "TEXTURE_SAMPLES_2", - "value": 1 - }, - { - "name": "TEXTURE_SAMPLES_4", - "value": 2 - }, - { - "name": "TEXTURE_SAMPLES_8", - "value": 3 - }, - { - "name": "TEXTURE_SAMPLES_16", - "value": 4 - }, - { - "name": "TEXTURE_SAMPLES_32", - "value": 5 - }, - { - "name": "TEXTURE_SAMPLES_64", - "value": 6 - }, - { - "name": "TEXTURE_SAMPLES_MAX", - "value": 7 - } - ] - }, - { - "name": "TextureUsageBits", - "is_bitfield": true, - "values": [ - { - "name": "TEXTURE_USAGE_SAMPLING_BIT", - "value": 1 - }, - { - "name": "TEXTURE_USAGE_COLOR_ATTACHMENT_BIT", - "value": 2 - }, - { - "name": "TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT", - "value": 4 - }, - { - "name": "TEXTURE_USAGE_DEPTH_RESOLVE_ATTACHMENT_BIT", - "value": 4096 - }, - { - "name": "TEXTURE_USAGE_STORAGE_BIT", - "value": 8 - }, - { - "name": "TEXTURE_USAGE_STORAGE_ATOMIC_BIT", - "value": 16 - }, - { - "name": "TEXTURE_USAGE_CPU_READ_BIT", - "value": 32 - }, - { - "name": "TEXTURE_USAGE_CAN_UPDATE_BIT", - "value": 64 - }, - { - "name": "TEXTURE_USAGE_CAN_COPY_FROM_BIT", - "value": 128 - }, - { - "name": "TEXTURE_USAGE_CAN_COPY_TO_BIT", - "value": 256 - }, - { - "name": "TEXTURE_USAGE_INPUT_ATTACHMENT_BIT", - "value": 512 - } - ] - }, - { - "name": "TextureSwizzle", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_SWIZZLE_IDENTITY", - "value": 0 - }, - { - "name": "TEXTURE_SWIZZLE_ZERO", - "value": 1 - }, - { - "name": "TEXTURE_SWIZZLE_ONE", - "value": 2 - }, - { - "name": "TEXTURE_SWIZZLE_R", - "value": 3 - }, - { - "name": "TEXTURE_SWIZZLE_G", - "value": 4 - }, - { - "name": "TEXTURE_SWIZZLE_B", - "value": 5 - }, - { - "name": "TEXTURE_SWIZZLE_A", - "value": 6 - }, - { - "name": "TEXTURE_SWIZZLE_MAX", - "value": 7 - } - ] - }, - { - "name": "TextureSliceType", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_SLICE_2D", - "value": 0 - }, - { - "name": "TEXTURE_SLICE_CUBEMAP", - "value": 1 - }, - { - "name": "TEXTURE_SLICE_3D", - "value": 2 - } - ] - }, - { - "name": "SamplerFilter", - "is_bitfield": false, - "values": [ - { - "name": "SAMPLER_FILTER_NEAREST", - "value": 0 - }, - { - "name": "SAMPLER_FILTER_LINEAR", - "value": 1 - } - ] - }, - { - "name": "SamplerRepeatMode", - "is_bitfield": false, - "values": [ - { - "name": "SAMPLER_REPEAT_MODE_REPEAT", - "value": 0 - }, - { - "name": "SAMPLER_REPEAT_MODE_MIRRORED_REPEAT", - "value": 1 - }, - { - "name": "SAMPLER_REPEAT_MODE_CLAMP_TO_EDGE", - "value": 2 - }, - { - "name": "SAMPLER_REPEAT_MODE_CLAMP_TO_BORDER", - "value": 3 - }, - { - "name": "SAMPLER_REPEAT_MODE_MIRROR_CLAMP_TO_EDGE", - "value": 4 - }, - { - "name": "SAMPLER_REPEAT_MODE_MAX", - "value": 5 - } - ] - }, - { - "name": "SamplerBorderColor", - "is_bitfield": false, - "values": [ - { - "name": "SAMPLER_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK", - "value": 0 - }, - { - "name": "SAMPLER_BORDER_COLOR_INT_TRANSPARENT_BLACK", - "value": 1 - }, - { - "name": "SAMPLER_BORDER_COLOR_FLOAT_OPAQUE_BLACK", - "value": 2 - }, - { - "name": "SAMPLER_BORDER_COLOR_INT_OPAQUE_BLACK", - "value": 3 - }, - { - "name": "SAMPLER_BORDER_COLOR_FLOAT_OPAQUE_WHITE", - "value": 4 - }, - { - "name": "SAMPLER_BORDER_COLOR_INT_OPAQUE_WHITE", - "value": 5 - }, - { - "name": "SAMPLER_BORDER_COLOR_MAX", - "value": 6 - } - ] - }, - { - "name": "VertexFrequency", - "is_bitfield": false, - "values": [ - { - "name": "VERTEX_FREQUENCY_VERTEX", - "value": 0 - }, - { - "name": "VERTEX_FREQUENCY_INSTANCE", - "value": 1 - } - ] - }, - { - "name": "IndexBufferFormat", - "is_bitfield": false, - "values": [ - { - "name": "INDEX_BUFFER_FORMAT_UINT16", - "value": 0 - }, - { - "name": "INDEX_BUFFER_FORMAT_UINT32", - "value": 1 - } - ] - }, - { - "name": "StorageBufferUsage", - "is_bitfield": true, - "values": [ - { - "name": "STORAGE_BUFFER_USAGE_DISPATCH_INDIRECT", - "value": 1 - } - ] - }, - { - "name": "BufferCreationBits", - "is_bitfield": true, - "values": [ - { - "name": "BUFFER_CREATION_DEVICE_ADDRESS_BIT", - "value": 1 - }, - { - "name": "BUFFER_CREATION_AS_STORAGE_BIT", - "value": 2 - }, - { - "name": "BUFFER_CREATION_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT", - "value": 8 - } - ] - }, - { - "name": "AccelerationStructureFlagBits", - "is_bitfield": true, - "values": [ - { - "name": "ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT", - "value": 1 - }, - { - "name": "ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT", - "value": 2 - }, - { - "name": "ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT", - "value": 4 - }, - { - "name": "ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT", - "value": 8 - }, - { - "name": "ACCELERATION_STRUCTURE_LOW_MEMORY_BIT", - "value": 16 - } - ] - }, - { - "name": "AccelerationStructureGeometryFlagBits", - "is_bitfield": true, - "values": [ - { - "name": "ACCELERATION_STRUCTURE_GEOMETRY_OPAQUE_BIT", - "value": 1 - }, - { - "name": "ACCELERATION_STRUCTURE_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT", - "value": 2 - } - ] - }, - { - "name": "AccelerationStructureInstanceFlagBits", - "is_bitfield": true, - "values": [ - { - "name": "ACCELERATION_STRUCTURE_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT", - "value": 1 - }, - { - "name": "ACCELERATION_STRUCTURE_INSTANCE_TRIANGLE_FLIP_FACING_BIT", - "value": 2 - }, - { - "name": "ACCELERATION_STRUCTURE_INSTANCE_FORCE_OPAQUE_BIT", - "value": 4 - }, - { - "name": "ACCELERATION_STRUCTURE_INSTANCE_FORCE_NO_OPAQUE_BIT", - "value": 8 - } - ] - }, - { - "name": "UniformType", - "is_bitfield": false, - "values": [ - { - "name": "UNIFORM_TYPE_SAMPLER", - "value": 0 - }, - { - "name": "UNIFORM_TYPE_SAMPLER_WITH_TEXTURE", - "value": 1 - }, - { - "name": "UNIFORM_TYPE_TEXTURE", - "value": 2 - }, - { - "name": "UNIFORM_TYPE_IMAGE", - "value": 3 - }, - { - "name": "UNIFORM_TYPE_TEXTURE_BUFFER", - "value": 4 - }, - { - "name": "UNIFORM_TYPE_SAMPLER_WITH_TEXTURE_BUFFER", - "value": 5 - }, - { - "name": "UNIFORM_TYPE_IMAGE_BUFFER", - "value": 6 - }, - { - "name": "UNIFORM_TYPE_UNIFORM_BUFFER", - "value": 7 - }, - { - "name": "UNIFORM_TYPE_STORAGE_BUFFER", - "value": 8 - }, - { - "name": "UNIFORM_TYPE_INPUT_ATTACHMENT", - "value": 9 - }, - { - "name": "UNIFORM_TYPE_UNIFORM_BUFFER_DYNAMIC", - "value": 10 - }, - { - "name": "UNIFORM_TYPE_STORAGE_BUFFER_DYNAMIC", - "value": 11 - }, - { - "name": "UNIFORM_TYPE_ACCELERATION_STRUCTURE", - "value": 12 - }, - { - "name": "UNIFORM_TYPE_MAX", - "value": 13 - } - ] - }, - { - "name": "RenderPrimitive", - "is_bitfield": false, - "values": [ - { - "name": "RENDER_PRIMITIVE_POINTS", - "value": 0 - }, - { - "name": "RENDER_PRIMITIVE_LINES", - "value": 1 - }, - { - "name": "RENDER_PRIMITIVE_LINES_WITH_ADJACENCY", - "value": 2 - }, - { - "name": "RENDER_PRIMITIVE_LINESTRIPS", - "value": 3 - }, - { - "name": "RENDER_PRIMITIVE_LINESTRIPS_WITH_ADJACENCY", - "value": 4 - }, - { - "name": "RENDER_PRIMITIVE_TRIANGLES", - "value": 5 - }, - { - "name": "RENDER_PRIMITIVE_TRIANGLES_WITH_ADJACENCY", - "value": 6 - }, - { - "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS", - "value": 7 - }, - { - "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS_WITH_AJACENCY", - "value": 8 - }, - { - "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS_WITH_RESTART_INDEX", - "value": 9 - }, - { - "name": "RENDER_PRIMITIVE_TESSELATION_PATCH", - "value": 10 - }, - { - "name": "RENDER_PRIMITIVE_MAX", - "value": 11 - } - ] - }, - { - "name": "PolygonCullMode", - "is_bitfield": false, - "values": [ - { - "name": "POLYGON_CULL_DISABLED", - "value": 0 - }, - { - "name": "POLYGON_CULL_FRONT", - "value": 1 - }, - { - "name": "POLYGON_CULL_BACK", - "value": 2 - } - ] - }, - { - "name": "PolygonFrontFace", - "is_bitfield": false, - "values": [ - { - "name": "POLYGON_FRONT_FACE_CLOCKWISE", - "value": 0 - }, - { - "name": "POLYGON_FRONT_FACE_COUNTER_CLOCKWISE", - "value": 1 - } - ] - }, - { - "name": "StencilOperation", - "is_bitfield": false, - "values": [ - { - "name": "STENCIL_OP_KEEP", - "value": 0 - }, - { - "name": "STENCIL_OP_ZERO", - "value": 1 - }, - { - "name": "STENCIL_OP_REPLACE", - "value": 2 - }, - { - "name": "STENCIL_OP_INCREMENT_AND_CLAMP", - "value": 3 - }, - { - "name": "STENCIL_OP_DECREMENT_AND_CLAMP", - "value": 4 - }, - { - "name": "STENCIL_OP_INVERT", - "value": 5 - }, - { - "name": "STENCIL_OP_INCREMENT_AND_WRAP", - "value": 6 - }, - { - "name": "STENCIL_OP_DECREMENT_AND_WRAP", - "value": 7 - }, - { - "name": "STENCIL_OP_MAX", - "value": 8 - } - ] - }, - { - "name": "CompareOperator", - "is_bitfield": false, - "values": [ - { - "name": "COMPARE_OP_NEVER", - "value": 0 - }, - { - "name": "COMPARE_OP_LESS", - "value": 1 - }, - { - "name": "COMPARE_OP_EQUAL", - "value": 2 - }, - { - "name": "COMPARE_OP_LESS_OR_EQUAL", - "value": 3 - }, - { - "name": "COMPARE_OP_GREATER", - "value": 4 - }, - { - "name": "COMPARE_OP_NOT_EQUAL", - "value": 5 - }, - { - "name": "COMPARE_OP_GREATER_OR_EQUAL", - "value": 6 - }, - { - "name": "COMPARE_OP_ALWAYS", - "value": 7 - }, - { - "name": "COMPARE_OP_MAX", - "value": 8 - } - ] - }, - { - "name": "LogicOperation", - "is_bitfield": false, - "values": [ - { - "name": "LOGIC_OP_CLEAR", - "value": 0 - }, - { - "name": "LOGIC_OP_AND", - "value": 1 - }, - { - "name": "LOGIC_OP_AND_REVERSE", - "value": 2 - }, - { - "name": "LOGIC_OP_COPY", - "value": 3 - }, - { - "name": "LOGIC_OP_AND_INVERTED", - "value": 4 - }, - { - "name": "LOGIC_OP_NO_OP", - "value": 5 - }, - { - "name": "LOGIC_OP_XOR", - "value": 6 - }, - { - "name": "LOGIC_OP_OR", - "value": 7 - }, - { - "name": "LOGIC_OP_NOR", - "value": 8 - }, - { - "name": "LOGIC_OP_EQUIVALENT", - "value": 9 - }, - { - "name": "LOGIC_OP_INVERT", - "value": 10 - }, - { - "name": "LOGIC_OP_OR_REVERSE", - "value": 11 - }, - { - "name": "LOGIC_OP_COPY_INVERTED", - "value": 12 - }, - { - "name": "LOGIC_OP_OR_INVERTED", - "value": 13 - }, - { - "name": "LOGIC_OP_NAND", - "value": 14 - }, - { - "name": "LOGIC_OP_SET", - "value": 15 - }, - { - "name": "LOGIC_OP_MAX", - "value": 16 - } - ] - }, - { - "name": "BlendFactor", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_FACTOR_ZERO", - "value": 0 - }, - { - "name": "BLEND_FACTOR_ONE", - "value": 1 - }, - { - "name": "BLEND_FACTOR_SRC_COLOR", - "value": 2 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_SRC_COLOR", - "value": 3 - }, - { - "name": "BLEND_FACTOR_DST_COLOR", - "value": 4 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_DST_COLOR", - "value": 5 - }, - { - "name": "BLEND_FACTOR_SRC_ALPHA", - "value": 6 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_SRC_ALPHA", - "value": 7 - }, - { - "name": "BLEND_FACTOR_DST_ALPHA", - "value": 8 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_DST_ALPHA", - "value": 9 - }, - { - "name": "BLEND_FACTOR_CONSTANT_COLOR", - "value": 10 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR", - "value": 11 - }, - { - "name": "BLEND_FACTOR_CONSTANT_ALPHA", - "value": 12 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA", - "value": 13 - }, - { - "name": "BLEND_FACTOR_SRC_ALPHA_SATURATE", - "value": 14 - }, - { - "name": "BLEND_FACTOR_SRC1_COLOR", - "value": 15 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_SRC1_COLOR", - "value": 16 - }, - { - "name": "BLEND_FACTOR_SRC1_ALPHA", - "value": 17 - }, - { - "name": "BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA", - "value": 18 - }, - { - "name": "BLEND_FACTOR_MAX", - "value": 19 - } - ] - }, - { - "name": "BlendOperation", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_OP_ADD", - "value": 0 - }, - { - "name": "BLEND_OP_SUBTRACT", - "value": 1 - }, - { - "name": "BLEND_OP_REVERSE_SUBTRACT", - "value": 2 - }, - { - "name": "BLEND_OP_MINIMUM", - "value": 3 - }, - { - "name": "BLEND_OP_MAXIMUM", - "value": 4 - }, - { - "name": "BLEND_OP_MAX", - "value": 5 - } - ] - }, - { - "name": "PipelineDynamicStateFlags", - "is_bitfield": true, - "values": [ - { - "name": "DYNAMIC_STATE_LINE_WIDTH", - "value": 1 - }, - { - "name": "DYNAMIC_STATE_DEPTH_BIAS", - "value": 2 - }, - { - "name": "DYNAMIC_STATE_BLEND_CONSTANTS", - "value": 4 - }, - { - "name": "DYNAMIC_STATE_DEPTH_BOUNDS", - "value": 8 - }, - { - "name": "DYNAMIC_STATE_STENCIL_COMPARE_MASK", - "value": 16 - }, - { - "name": "DYNAMIC_STATE_STENCIL_WRITE_MASK", - "value": 32 - }, - { - "name": "DYNAMIC_STATE_STENCIL_REFERENCE", - "value": 64 - } - ] - }, - { - "name": "InitialAction", - "is_bitfield": false, - "values": [ - { - "name": "INITIAL_ACTION_LOAD", - "value": 0 - }, - { - "name": "INITIAL_ACTION_CLEAR", - "value": 1 - }, - { - "name": "INITIAL_ACTION_DISCARD", - "value": 2 - }, - { - "name": "INITIAL_ACTION_MAX", - "value": 3 - }, - { - "name": "INITIAL_ACTION_CLEAR_REGION", - "value": 1 - }, - { - "name": "INITIAL_ACTION_CLEAR_REGION_CONTINUE", - "value": 1 - }, - { - "name": "INITIAL_ACTION_KEEP", - "value": 0 - }, - { - "name": "INITIAL_ACTION_DROP", - "value": 2 - }, - { - "name": "INITIAL_ACTION_CONTINUE", - "value": 0 - } - ] - }, - { - "name": "FinalAction", - "is_bitfield": false, - "values": [ - { - "name": "FINAL_ACTION_STORE", - "value": 0 - }, - { - "name": "FINAL_ACTION_DISCARD", - "value": 1 - }, - { - "name": "FINAL_ACTION_MAX", - "value": 2 - }, - { - "name": "FINAL_ACTION_READ", - "value": 0 - }, - { - "name": "FINAL_ACTION_CONTINUE", - "value": 0 - } - ] - }, - { - "name": "ShaderStage", - "is_bitfield": false, - "values": [ - { - "name": "SHADER_STAGE_VERTEX", - "value": 0 - }, - { - "name": "SHADER_STAGE_FRAGMENT", - "value": 1 - }, - { - "name": "SHADER_STAGE_TESSELATION_CONTROL", - "value": 2 - }, - { - "name": "SHADER_STAGE_TESSELATION_EVALUATION", - "value": 3 - }, - { - "name": "SHADER_STAGE_COMPUTE", - "value": 4 - }, - { - "name": "SHADER_STAGE_RAYGEN", - "value": 5 - }, - { - "name": "SHADER_STAGE_ANY_HIT", - "value": 6 - }, - { - "name": "SHADER_STAGE_CLOSEST_HIT", - "value": 7 - }, - { - "name": "SHADER_STAGE_MISS", - "value": 8 - }, - { - "name": "SHADER_STAGE_INTERSECTION", - "value": 9 - }, - { - "name": "SHADER_STAGE_MAX", - "value": 10 - }, - { - "name": "SHADER_STAGE_VERTEX_BIT", - "value": 1 - }, - { - "name": "SHADER_STAGE_FRAGMENT_BIT", - "value": 2 - }, - { - "name": "SHADER_STAGE_TESSELATION_CONTROL_BIT", - "value": 4 - }, - { - "name": "SHADER_STAGE_TESSELATION_EVALUATION_BIT", - "value": 8 - }, - { - "name": "SHADER_STAGE_COMPUTE_BIT", - "value": 16 - }, - { - "name": "SHADER_STAGE_RAYGEN_BIT", - "value": 32 - }, - { - "name": "SHADER_STAGE_ANY_HIT_BIT", - "value": 64 - }, - { - "name": "SHADER_STAGE_CLOSEST_HIT_BIT", - "value": 128 - }, - { - "name": "SHADER_STAGE_MISS_BIT", - "value": 256 - }, - { - "name": "SHADER_STAGE_INTERSECTION_BIT", - "value": 512 - } - ] - }, - { - "name": "ShaderLanguage", - "is_bitfield": false, - "values": [ - { - "name": "SHADER_LANGUAGE_GLSL", - "value": 0 - }, - { - "name": "SHADER_LANGUAGE_HLSL", - "value": 1 - } - ] - }, - { - "name": "PipelineSpecializationConstantType", - "is_bitfield": false, - "values": [ - { - "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_BOOL", - "value": 0 - }, - { - "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_INT", - "value": 1 - }, - { - "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_FLOAT", - "value": 2 - } - ] - }, - { - "name": "Features", - "is_bitfield": false, - "values": [ - { - "name": "SUPPORTS_METALFX_SPATIAL", - "value": 3 - }, - { - "name": "SUPPORTS_METALFX_TEMPORAL", - "value": 4 - }, - { - "name": "SUPPORTS_BUFFER_DEVICE_ADDRESS", - "value": 6 - }, - { - "name": "SUPPORTS_IMAGE_ATOMIC_32_BIT", - "value": 7 - }, - { - "name": "SUPPORTS_RAY_QUERY", - "value": 11 - }, - { - "name": "SUPPORTS_RAYTRACING_PIPELINE", - "value": 12 - }, - { - "name": "SUPPORTS_HDR_OUTPUT", - "value": 13 - } - ] - }, - { - "name": "Limit", - "is_bitfield": false, - "values": [ - { - "name": "LIMIT_MAX_BOUND_UNIFORM_SETS", - "value": 0 - }, - { - "name": "LIMIT_MAX_FRAMEBUFFER_COLOR_ATTACHMENTS", - "value": 1 - }, - { - "name": "LIMIT_MAX_TEXTURES_PER_UNIFORM_SET", - "value": 2 - }, - { - "name": "LIMIT_MAX_SAMPLERS_PER_UNIFORM_SET", - "value": 3 - }, - { - "name": "LIMIT_MAX_STORAGE_BUFFERS_PER_UNIFORM_SET", - "value": 4 - }, - { - "name": "LIMIT_MAX_STORAGE_IMAGES_PER_UNIFORM_SET", - "value": 5 - }, - { - "name": "LIMIT_MAX_UNIFORM_BUFFERS_PER_UNIFORM_SET", - "value": 6 - }, - { - "name": "LIMIT_MAX_DRAW_INDEXED_INDEX", - "value": 7 - }, - { - "name": "LIMIT_MAX_FRAMEBUFFER_HEIGHT", - "value": 8 - }, - { - "name": "LIMIT_MAX_FRAMEBUFFER_WIDTH", - "value": 9 - }, - { - "name": "LIMIT_MAX_TEXTURE_ARRAY_LAYERS", - "value": 10 - }, - { - "name": "LIMIT_MAX_TEXTURE_SIZE_1D", - "value": 11 - }, - { - "name": "LIMIT_MAX_TEXTURE_SIZE_2D", - "value": 12 - }, - { - "name": "LIMIT_MAX_TEXTURE_SIZE_3D", - "value": 13 - }, - { - "name": "LIMIT_MAX_TEXTURE_SIZE_CUBE", - "value": 14 - }, - { - "name": "LIMIT_MAX_TEXTURES_PER_SHADER_STAGE", - "value": 15 - }, - { - "name": "LIMIT_MAX_SAMPLERS_PER_SHADER_STAGE", - "value": 16 - }, - { - "name": "LIMIT_MAX_STORAGE_BUFFERS_PER_SHADER_STAGE", - "value": 17 - }, - { - "name": "LIMIT_MAX_STORAGE_IMAGES_PER_SHADER_STAGE", - "value": 18 - }, - { - "name": "LIMIT_MAX_UNIFORM_BUFFERS_PER_SHADER_STAGE", - "value": 19 - }, - { - "name": "LIMIT_MAX_PUSH_CONSTANT_SIZE", - "value": 20 - }, - { - "name": "LIMIT_MAX_UNIFORM_BUFFER_SIZE", - "value": 21 - }, - { - "name": "LIMIT_MAX_VERTEX_INPUT_ATTRIBUTE_OFFSET", - "value": 22 - }, - { - "name": "LIMIT_MAX_VERTEX_INPUT_ATTRIBUTES", - "value": 23 - }, - { - "name": "LIMIT_MAX_VERTEX_INPUT_BINDINGS", - "value": 24 - }, - { - "name": "LIMIT_MAX_VERTEX_INPUT_BINDING_STRIDE", - "value": 25 - }, - { - "name": "LIMIT_MIN_UNIFORM_BUFFER_OFFSET_ALIGNMENT", - "value": 26 - }, - { - "name": "LIMIT_MAX_COMPUTE_SHARED_MEMORY_SIZE", - "value": 27 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_X", - "value": 28 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_Y", - "value": 29 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_Z", - "value": 30 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_INVOCATIONS", - "value": 31 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_X", - "value": 32 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_Y", - "value": 33 - }, - { - "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_Z", - "value": 34 - }, - { - "name": "LIMIT_MAX_VIEWPORT_DIMENSIONS_X", - "value": 35 - }, - { - "name": "LIMIT_MAX_VIEWPORT_DIMENSIONS_Y", - "value": 36 - }, - { - "name": "LIMIT_METALFX_TEMPORAL_SCALER_MIN_SCALE", - "value": 46 - }, - { - "name": "LIMIT_METALFX_TEMPORAL_SCALER_MAX_SCALE", - "value": 47 - } - ] - }, - { - "name": "MemoryType", - "is_bitfield": false, - "values": [ - { - "name": "MEMORY_TEXTURES", - "value": 0 - }, - { - "name": "MEMORY_BUFFERS", - "value": 1 - }, - { - "name": "MEMORY_TOTAL", - "value": 2 - } - ] - }, - { - "name": "BreadcrumbMarker", - "is_bitfield": false, - "values": [ - { - "name": "NONE", - "value": 0 - }, - { - "name": "REFLECTION_PROBES", - "value": 65536 - }, - { - "name": "SKY_PASS", - "value": 131072 - }, - { - "name": "LIGHTMAPPER_PASS", - "value": 196608 - }, - { - "name": "SHADOW_PASS_DIRECTIONAL", - "value": 262144 - }, - { - "name": "SHADOW_PASS_CUBE", - "value": 327680 - }, - { - "name": "OPAQUE_PASS", - "value": 393216 - }, - { - "name": "ALPHA_PASS", - "value": 458752 - }, - { - "name": "TRANSPARENT_PASS", - "value": 524288 - }, - { - "name": "POST_PROCESSING_PASS", - "value": 589824 - }, - { - "name": "BLIT_PASS", - "value": 655360 - }, - { - "name": "UI_PASS", - "value": 720896 - }, - { - "name": "DEBUG_PASS", - "value": 786432 - } - ] - }, - { - "name": "DrawFlags", - "is_bitfield": true, - "values": [ - { - "name": "DRAW_DEFAULT_ALL", - "value": 0 - }, - { - "name": "DRAW_CLEAR_COLOR_0", - "value": 1 - }, - { - "name": "DRAW_CLEAR_COLOR_1", - "value": 2 - }, - { - "name": "DRAW_CLEAR_COLOR_2", - "value": 4 - }, - { - "name": "DRAW_CLEAR_COLOR_3", - "value": 8 - }, - { - "name": "DRAW_CLEAR_COLOR_4", - "value": 16 - }, - { - "name": "DRAW_CLEAR_COLOR_5", - "value": 32 - }, - { - "name": "DRAW_CLEAR_COLOR_6", - "value": 64 - }, - { - "name": "DRAW_CLEAR_COLOR_7", - "value": 128 - }, - { - "name": "DRAW_CLEAR_COLOR_MASK", - "value": 255 - }, - { - "name": "DRAW_CLEAR_COLOR_ALL", - "value": 255 - }, - { - "name": "DRAW_IGNORE_COLOR_0", - "value": 256 - }, - { - "name": "DRAW_IGNORE_COLOR_1", - "value": 512 - }, - { - "name": "DRAW_IGNORE_COLOR_2", - "value": 1024 - }, - { - "name": "DRAW_IGNORE_COLOR_3", - "value": 2048 - }, - { - "name": "DRAW_IGNORE_COLOR_4", - "value": 4096 - }, - { - "name": "DRAW_IGNORE_COLOR_5", - "value": 8192 - }, - { - "name": "DRAW_IGNORE_COLOR_6", - "value": 16384 - }, - { - "name": "DRAW_IGNORE_COLOR_7", - "value": 32768 - }, - { - "name": "DRAW_IGNORE_COLOR_MASK", - "value": 65280 - }, - { - "name": "DRAW_IGNORE_COLOR_ALL", - "value": 65280 - }, - { - "name": "DRAW_CLEAR_DEPTH", - "value": 65536 - }, - { - "name": "DRAW_IGNORE_DEPTH", - "value": 131072 - }, - { - "name": "DRAW_CLEAR_STENCIL", - "value": 262144 - }, - { - "name": "DRAW_IGNORE_STENCIL", - "value": 524288 - }, - { - "name": "DRAW_CLEAR_ALL", - "value": 327935 - }, - { - "name": "DRAW_IGNORE_ALL", - "value": 720640 - } - ] - } - ], - "methods": [ - { - "name": "texture_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3709173589, - "hash_compatibility": [ - 3011278298 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "format", - "type": "RDTextureFormat" - }, - { - "name": "view", - "type": "RDTextureView" - }, - { - "name": "data", - "type": "typedarray::PackedByteArray", - "default_value": "[]" - } - ] - }, - { - "name": "texture_create_shared", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3178156134, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "view", - "type": "RDTextureView" - }, - { - "name": "with_texture", - "type": "RID" - } - ] - }, - { - "name": "texture_create_shared_from_slice", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808971279, - "hash_compatibility": [ - 864132525 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "view", - "type": "RDTextureView" - }, - { - "name": "with_texture", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmaps", - "type": "int", - "meta": "uint32", - "default_value": "1" - }, - { - "name": "slice_type", - "type": "enum::RenderingDevice.TextureSliceType", - "default_value": "0" - } - ] - }, - { - "name": "texture_create_from_extension", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3732868568, - "hash_compatibility": [ - 1397171480 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "type", - "type": "enum::RenderingDevice.TextureType" - }, - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - }, - { - "name": "samples", - "type": "enum::RenderingDevice.TextureSamples" - }, - { - "name": "usage_flags", - "type": "bitfield::RenderingDevice.TextureUsageBits" - }, - { - "name": "image", - "type": "int", - "meta": "uint64" - }, - { - "name": "width", - "type": "int", - "meta": "uint64" - }, - { - "name": "height", - "type": "int", - "meta": "uint64" - }, - { - "name": "depth", - "type": "int", - "meta": "uint64" - }, - { - "name": "layers", - "type": "int", - "meta": "uint64" - }, - { - "name": "mipmaps", - "type": "int", - "meta": "uint64", - "default_value": "1" - } - ] - }, - { - "name": "texture_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1349464008, - "hash_compatibility": [ - 2096463824, - 2736912341 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "texture_get_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1859412099, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "texture_get_data_async", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 498832090, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "texture_is_format_supported_for_usage", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2592520478, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - }, - { - "name": "usage_flags", - "type": "bitfield::RenderingDevice.TextureUsageBits" - } - ] - }, - { - "name": "texture_is_shared", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_set_discardable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "discardable", - "type": "bool" - } - ] - }, - { - "name": "texture_is_discardable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_copy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2859522160, - "hash_compatibility": [ - 2339493201, - 3741367532 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from_texture", - "type": "RID" - }, - { - "name": "to_texture", - "type": "RID" - }, - { - "name": "from_pos", - "type": "Vector3" - }, - { - "name": "to_pos", - "type": "Vector3" - }, - { - "name": "size", - "type": "Vector3" - }, - { - "name": "src_mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "dst_mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "src_layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "dst_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "texture_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3477703247, - "hash_compatibility": [ - 3396867530, - 3423681478 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "base_mipmap", - "type": "int", - "meta": "uint32" - }, - { - "name": "mipmap_count", - "type": "int", - "meta": "uint32" - }, - { - "name": "base_layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "layer_count", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "texture_resolve_multisample", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3181288260, - "hash_compatibility": [ - 594679454, - 2126834943 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "from_texture", - "type": "RID" - }, - { - "name": "to_texture", - "type": "RID" - } - ] - }, - { - "name": "texture_get_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1374471690, - "return_value": { - "type": "RDTextureFormat" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_get_native_handle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "framebuffer_format_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 697032759, - "hash_compatibility": [ - 2635475316 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "attachments", - "type": "typedarray::RDAttachmentFormat" - }, - { - "name": "view_count", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "framebuffer_format_create_multipass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2647479094, - "hash_compatibility": [ - 1992489524 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "attachments", - "type": "typedarray::RDAttachmentFormat" - }, - { - "name": "passes", - "type": "typedarray::RDFramebufferPass" - }, - { - "name": "view_count", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "framebuffer_format_create_empty", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 555930169, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "samples", - "type": "enum::RenderingDevice.TextureSamples", - "default_value": "0" - } - ] - }, - { - "name": "framebuffer_format_get_texture_samples", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4223391010, - "hash_compatibility": [ - 1036806638 - ], - "return_value": { - "type": "enum::RenderingDevice.TextureSamples" - }, - "arguments": [ - { - "name": "format", - "type": "int", - "meta": "int64" - }, - { - "name": "render_pass", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "framebuffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3284231055, - "hash_compatibility": [ - 1884747791 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "textures", - "type": "typedarray::RID" - }, - { - "name": "validate_with_format", - "type": "int", - "meta": "int64", - "default_value": "-1" - }, - { - "name": "view_count", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "framebuffer_create_multipass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1750306695, - "hash_compatibility": [ - 452534725 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "textures", - "type": "typedarray::RID" - }, - { - "name": "passes", - "type": "typedarray::RDFramebufferPass" - }, - { - "name": "validate_with_format", - "type": "int", - "meta": "int64", - "default_value": "-1" - }, - { - "name": "view_count", - "type": "int", - "meta": "uint32", - "default_value": "1" - } - ] - }, - { - "name": "framebuffer_create_empty", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3058360618, - "hash_compatibility": [ - 382373098 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "samples", - "type": "enum::RenderingDevice.TextureSamples", - "default_value": "0" - }, - { - "name": "validate_with_format", - "type": "int", - "meta": "int64", - "default_value": "-1" - } - ] - }, - { - "name": "framebuffer_get_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "framebuffer", - "type": "RID" - } - ] - }, - { - "name": "framebuffer_is_valid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "framebuffer", - "type": "RID" - } - ] - }, - { - "name": "sampler_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2327892535, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "state", - "type": "RDSamplerState" - } - ] - }, - { - "name": "sampler_is_format_supported_for_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2247922238, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - }, - { - "name": "sampler_filter", - "type": "enum::RenderingDevice.SamplerFilter" - } - ] - }, - { - "name": "vertex_buffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2089548973, - "hash_compatibility": [ - 3410049843, - 3491282828 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - }, - { - "name": "data", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - }, - { - "name": "creation_bits", - "type": "bitfield::RenderingDevice.BufferCreationBits", - "default_value": "0" - } - ] - }, - { - "name": "vertex_format_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1242678479, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "vertex_descriptions", - "type": "typedarray::RDVertexAttribute" - } - ] - }, - { - "name": "vertex_array_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3799816279, - "hash_compatibility": [ - 3137892244 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "vertex_count", - "type": "int", - "meta": "uint32" - }, - { - "name": "vertex_format", - "type": "int", - "meta": "int64" - }, - { - "name": "src_buffers", - "type": "typedarray::RID" - }, - { - "name": "offsets", - "type": "PackedInt64Array", - "default_value": "PackedInt64Array()" - } - ] - }, - { - "name": "index_buffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2368684885, - "hash_compatibility": [ - 3935920523, - 975915977 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size_indices", - "type": "int", - "meta": "uint32" - }, - { - "name": "format", - "type": "enum::RenderingDevice.IndexBufferFormat" - }, - { - "name": "data", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - }, - { - "name": "use_restart_indices", - "type": "bool", - "default_value": "false" - }, - { - "name": "creation_bits", - "type": "bitfield::RenderingDevice.BufferCreationBits", - "default_value": "0" - } - ] - }, - { - "name": "index_array_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2256026069, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "index_buffer", - "type": "RID" - }, - { - "name": "index_offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "index_count", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "shader_compile_spirv_from_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1178973306, - "hash_compatibility": [ - 3459523685 - ], - "return_value": { - "type": "RDShaderSPIRV" - }, - "arguments": [ - { - "name": "shader_source", - "type": "RDShaderSource" - }, - { - "name": "allow_cache", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "shader_compile_binary_from_spirv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134910450, - "hash_compatibility": [ - 1395027180 - ], - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "spirv_data", - "type": "RDShaderSPIRV" - }, - { - "name": "name", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "shader_create_from_spirv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 342949005, - "hash_compatibility": [ - 3297482566 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "spirv_data", - "type": "RDShaderSPIRV" - }, - { - "name": "name", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "shader_create_from_bytecode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1687031350, - "hash_compatibility": [ - 3049171473, - 2078349841 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "binary_data", - "type": "PackedByteArray" - }, - { - "name": "placeholder_rid", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "shader_create_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "shader_get_vertex_input_attribute_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - } - ] - }, - { - "name": "uniform_buffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2089548973, - "hash_compatibility": [ - 34556762, - 1453158401 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - }, - { - "name": "data", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - }, - { - "name": "creation_bits", - "type": "bitfield::RenderingDevice.BufferCreationBits", - "default_value": "0" - } - ] - }, - { - "name": "storage_buffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1609052553, - "hash_compatibility": [ - 2316365934, - 1173156076 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - }, - { - "name": "data", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - }, - { - "name": "usage", - "type": "bitfield::RenderingDevice.StorageBufferUsage", - "default_value": "0" - }, - { - "name": "creation_bits", - "type": "bitfield::RenderingDevice.BufferCreationBits", - "default_value": "0" - } - ] - }, - { - "name": "texture_buffer_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1470338698, - "hash_compatibility": [ - 2344087557 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - }, - { - "name": "format", - "type": "enum::RenderingDevice.DataFormat" - }, - { - "name": "data", - "type": "PackedByteArray", - "default_value": "PackedByteArray()" - } - ] - }, - { - "name": "uniform_set_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2280795797, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "uniforms", - "type": "typedarray::RDUniform" - }, - { - "name": "shader", - "type": "RID" - }, - { - "name": "shader_set", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "uniform_set_is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "uniform_set", - "type": "RID" - } - ] - }, - { - "name": "buffer_copy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 864257779, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "src_buffer", - "type": "RID" - }, - { - "name": "dst_buffer", - "type": "RID" - }, - { - "name": "src_offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "dst_offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "size", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "buffer_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3454956949, - "hash_compatibility": [ - 3793150683, - 652628289 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "RID" - }, - { - "name": "offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "buffer_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2452320800, - "hash_compatibility": [ - 2797041220, - 1645170096 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "RID" - }, - { - "name": "offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "buffer_get_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3101830688, - "hash_compatibility": [ - 125363422 - ], - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "buffer", - "type": "RID" - }, - { - "name": "offset_bytes", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "buffer_get_data_async", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2370287848, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "RID" - }, - { - "name": "callback", - "type": "Callable" - }, - { - "name": "offset_bytes", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "buffer_get_device_address", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "buffer", - "type": "RID" - } - ] - }, - { - "name": "render_pipeline_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2385451958, - "hash_compatibility": [ - 2911419500 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "framebuffer_format", - "type": "int", - "meta": "int64" - }, - { - "name": "vertex_format", - "type": "int", - "meta": "int64" - }, - { - "name": "primitive", - "type": "enum::RenderingDevice.RenderPrimitive" - }, - { - "name": "rasterization_state", - "type": "RDPipelineRasterizationState" - }, - { - "name": "multisample_state", - "type": "RDPipelineMultisampleState" - }, - { - "name": "stencil_state", - "type": "RDPipelineDepthStencilState" - }, - { - "name": "color_blend_state", - "type": "RDPipelineColorBlendState" - }, - { - "name": "dynamic_state_flags", - "type": "bitfield::RenderingDevice.PipelineDynamicStateFlags", - "default_value": "0" - }, - { - "name": "for_render_pass", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "specialization_constants", - "type": "typedarray::RDPipelineSpecializationConstant", - "default_value": "Array[RDPipelineSpecializationConstant]([])" - } - ] - }, - { - "name": "render_pipeline_is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "render_pipeline", - "type": "RID" - } - ] - }, - { - "name": "compute_pipeline_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1448838280, - "hash_compatibility": [ - 403593840 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "specialization_constants", - "type": "typedarray::RDPipelineSpecializationConstant", - "default_value": "Array[RDPipelineSpecializationConstant]([])" - } - ] - }, - { - "name": "compute_pipeline_is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "compute_pipeline", - "type": "RID" - } - ] - }, - { - "name": "raytracing_pipeline_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1489129684, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "raygen_shaders", - "type": "typedarray::RDPipelineShader" - }, - { - "name": "miss_shaders", - "type": "typedarray::RDPipelineShader" - }, - { - "name": "hit_groups", - "type": "typedarray::RDHitGroup" - }, - { - "name": "max_trace_recursion_depth", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "raytracing_pipeline_is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "raytracing_pipeline", - "type": "RID" - } - ] - }, - { - "name": "blas_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1010940044, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "geometries", - "type": "typedarray::RDAccelerationStructureGeometry" - }, - { - "name": "flags", - "type": "bitfield::RenderingDevice.AccelerationStructureFlagBits" - } - ] - }, - { - "name": "tlas_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 592780330, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "max_instance_count", - "type": "int", - "meta": "uint32" - }, - { - "name": "flags", - "type": "bitfield::RenderingDevice.AccelerationStructureFlagBits" - } - ] - }, - { - "name": "blas_build", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 813180755, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "blas", - "type": "RID" - } - ] - }, - { - "name": "tlas_build", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 261981775, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "tlas", - "type": "RID" - }, - { - "name": "instances", - "type": "typedarray::RDAccelerationStructureInstance" - } - ] - }, - { - "name": "hit_sbt_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2233757277, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "raytracing_pipeline", - "type": "RID" - }, - { - "name": "initial_hit_group_capacity", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "hit_sbt_set_pipeline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3181288260, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "hit_sbt", - "type": "RID" - }, - { - "name": "raytracing_pipeline", - "type": "RID" - } - ] - }, - { - "name": "hit_sbt_range_alloc", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722015314, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "hit_sbt", - "type": "RID" - }, - { - "name": "hit_group_count", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "hit_sbt_range_free", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3804025326, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "hit_sbt", - "type": "RID" - }, - { - "name": "range", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "hit_sbt_range_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1332346675, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "hit_sbt", - "type": "RID" - }, - { - "name": "range", - "type": "int", - "meta": "int64" - }, - { - "name": "offset", - "type": "int", - "meta": "uint32" - }, - { - "name": "hit_group_indices", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "screen_get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "screen_get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "screen_get_framebuffer_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "hash_compatibility": [ - 3905245786 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "draw_list_begin_for_screen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3988079995, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "clear_color", - "type": "Color", - "default_value": "Color(0, 0, 0, 1)" - } - ] - }, - { - "name": "draw_list_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1317926357, - "hash_compatibility": [ - 2468082605, - 2686605154, - 3140542288, - 4252992020 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "framebuffer", - "type": "RID" - }, - { - "name": "draw_flags", - "type": "bitfield::RenderingDevice.DrawFlags", - "default_value": "0" - }, - { - "name": "clear_color_values", - "type": "PackedColorArray", - "default_value": "PackedColorArray()" - }, - { - "name": "clear_depth_value", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "clear_stencil_value", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "region", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "breadcrumb", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "draw_list_begin_split", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2406300660, - "hash_compatibility": [ - 832527510 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "framebuffer", - "type": "RID" - }, - { - "name": "splits", - "type": "int", - "meta": "uint32" - }, - { - "name": "initial_color_action", - "type": "enum::RenderingDevice.InitialAction" - }, - { - "name": "final_color_action", - "type": "enum::RenderingDevice.FinalAction" - }, - { - "name": "initial_depth_action", - "type": "enum::RenderingDevice.InitialAction" - }, - { - "name": "final_depth_action", - "type": "enum::RenderingDevice.FinalAction" - }, - { - "name": "clear_color_values", - "type": "PackedColorArray", - "default_value": "PackedColorArray()" - }, - { - "name": "clear_depth", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "clear_stencil", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "region", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "storage_textures", - "type": "typedarray::RID", - "default_value": "Array[RID]([])" - } - ] - }, - { - "name": "draw_list_set_blend_constants", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "draw_list_bind_render_pipeline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "render_pipeline", - "type": "RID" - } - ] - }, - { - "name": "draw_list_bind_uniform_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 749655778, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "uniform_set", - "type": "RID" - }, - { - "name": "set_index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "draw_list_bind_vertex_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "vertex_array", - "type": "RID" - } - ] - }, - { - "name": "draw_list_bind_vertex_buffers_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2008628980, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "vertex_format", - "type": "int", - "meta": "int64" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "uint32" - }, - { - "name": "vertex_buffers", - "type": "typedarray::RID" - }, - { - "name": "offsets", - "type": "PackedInt64Array", - "default_value": "PackedInt64Array()" - } - ] - }, - { - "name": "draw_list_bind_index_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "index_array", - "type": "RID" - } - ] - }, - { - "name": "draw_list_set_push_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2772371345, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "buffer", - "type": "PackedByteArray" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "draw_list_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4230067973, - "hash_compatibility": [ - 3710874499 - ], - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "use_indices", - "type": "bool" - }, - { - "name": "instances", - "type": "int", - "meta": "uint32" - }, - { - "name": "procedural_vertex_count", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "draw_list_draw_indirect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1092133571, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "use_indices", - "type": "bool" - }, - { - "name": "buffer", - "type": "RID" - }, - { - "name": "offset", - "type": "int", - "meta": "uint32", - "default_value": "0" - }, - { - "name": "draw_count", - "type": "int", - "meta": "uint32", - "default_value": "1" - }, - { - "name": "stride", - "type": "int", - "meta": "uint32", - "default_value": "0" - } - ] - }, - { - "name": "draw_list_enable_scissor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 244650101, - "hash_compatibility": [ - 338791288 - ], - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - }, - { - "name": "rect", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - } - ] - }, - { - "name": "draw_list_disable_scissor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "draw_list", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "draw_list_switch_to_next_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "draw_list_switch_to_next_pass_split", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2865087369, - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "splits", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "draw_list_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716, - "hash_compatibility": [ - 422991495, - 3920951950 - ] - }, - { - "name": "compute_list_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "hash_compatibility": [ - 968564752 - ], - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "compute_list_bind_compute_pipeline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - }, - { - "name": "compute_pipeline", - "type": "RID" - } - ] - }, - { - "name": "compute_list_set_push_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2772371345, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - }, - { - "name": "buffer", - "type": "PackedByteArray" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "compute_list_bind_uniform_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 749655778, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - }, - { - "name": "uniform_set", - "type": "RID" - }, - { - "name": "set_index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "compute_list_dispatch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4275841770, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - }, - { - "name": "x_groups", - "type": "int", - "meta": "uint32" - }, - { - "name": "y_groups", - "type": "int", - "meta": "uint32" - }, - { - "name": "z_groups", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "compute_list_dispatch_indirect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 749655778, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - }, - { - "name": "buffer", - "type": "RID" - }, - { - "name": "offset", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "compute_list_add_barrier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "compute_list", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "compute_list_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716, - "hash_compatibility": [ - 422991495, - 3920951950 - ] - }, - { - "name": "raytracing_list_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "raytracing_list_bind_raytracing_pipeline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "raytracing_list", - "type": "int", - "meta": "int64" - }, - { - "name": "raytracing_pipeline", - "type": "RID" - } - ] - }, - { - "name": "raytracing_list_set_push_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2772371345, - "arguments": [ - { - "name": "raytracing_list", - "type": "int", - "meta": "int64" - }, - { - "name": "buffer", - "type": "PackedByteArray" - }, - { - "name": "size_bytes", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "raytracing_list_bind_uniform_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 749655778, - "arguments": [ - { - "name": "raytracing_list", - "type": "int", - "meta": "int64" - }, - { - "name": "uniform_set", - "type": "RID" - }, - { - "name": "set_index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "raytracing_list_trace_rays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2559472681, - "arguments": [ - { - "name": "raytracing_list", - "type": "int", - "meta": "int64" - }, - { - "name": "raygen_shader_index", - "type": "int", - "meta": "uint32" - }, - { - "name": "hit_sbt", - "type": "RID" - }, - { - "name": "width", - "type": "int", - "meta": "uint32" - }, - { - "name": "height", - "type": "int", - "meta": "uint32" - }, - { - "name": "depth", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "raytracing_list_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "capture_timestamp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_captured_timestamps_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_captured_timestamps_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_captured_timestamp_gpu_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_captured_timestamp_cpu_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_captured_timestamp_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1772728326, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::RenderingDevice.Features" - } - ] - }, - { - "name": "limit_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1559202131, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "limit", - "type": "enum::RenderingDevice.Limit" - } - ] - }, - { - "name": "get_frame_delay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "submit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "barrier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3718155691, - "hash_compatibility": [ - 266666049 - ], - "arguments": [ - { - "name": "from", - "type": "bitfield::RenderingDevice.BarrierMask", - "default_value": "32767" - }, - { - "name": "to", - "type": "bitfield::RenderingDevice.BarrierMask", - "default_value": "32767" - } - ] - }, - { - "name": "full_barrier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_local_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2846302423, - "return_value": { - "type": "RenderingDevice" - } - }, - { - "name": "set_resource_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "id", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "draw_command_begin_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1636512886, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "draw_command_insert_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1636512886, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "draw_command_end_label", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_device_vendor_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_device_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_device_pipeline_cache_uuid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_memory_usage", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 251690689, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "type", - "type": "enum::RenderingDevice.MemoryType" - } - ] - }, - { - "name": "get_driver_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501815484, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "resource", - "type": "enum::RenderingDevice.DriverResource" - }, - { - "name": "rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "get_perf_report", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_driver_and_device_memory_report", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_tracked_object_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "type_index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_tracked_object_type_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_driver_total_memory", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_driver_allocation_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_driver_memory_by_object_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_driver_allocs_by_object_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_device_total_memory", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_device_allocation_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_device_memory_by_object_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_device_allocs_by_object_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "type", - "type": "int", - "meta": "uint32" - } - ] - } - ] - }, - { - "name": "RenderingServer", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "NO_INDEX_ARRAY", - "value": -1 - }, - { - "name": "ARRAY_WEIGHTS_SIZE", - "value": 4 - }, - { - "name": "CANVAS_ITEM_Z_MIN", - "value": -4096 - }, - { - "name": "CANVAS_ITEM_Z_MAX", - "value": 4096 - }, - { - "name": "CANVAS_LAYER_MIN", - "value": -2147483648 - }, - { - "name": "CANVAS_LAYER_MAX", - "value": 2147483647 - }, - { - "name": "MAX_GLOW_LEVELS", - "value": 7 - }, - { - "name": "MAX_CURSORS", - "value": 8 - }, - { - "name": "MAX_2D_DIRECTIONAL_LIGHTS", - "value": 8 - }, - { - "name": "MAX_MESH_SURFACES", - "value": 256 - }, - { - "name": "MATERIAL_RENDER_PRIORITY_MIN", - "value": -128 - }, - { - "name": "MATERIAL_RENDER_PRIORITY_MAX", - "value": 127 - }, - { - "name": "ARRAY_CUSTOM_COUNT", - "value": 4 - }, - { - "name": "PARTICLES_EMIT_FLAG_POSITION", - "value": 1 - }, - { - "name": "PARTICLES_EMIT_FLAG_ROTATION_SCALE", - "value": 2 - }, - { - "name": "PARTICLES_EMIT_FLAG_VELOCITY", - "value": 4 - }, - { - "name": "PARTICLES_EMIT_FLAG_COLOR", - "value": 8 - }, - { - "name": "PARTICLES_EMIT_FLAG_CUSTOM", - "value": 16 - } - ], - "enums": [ - { - "name": "TextureType", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_TYPE_2D", - "value": 0 - }, - { - "name": "TEXTURE_TYPE_LAYERED", - "value": 1 - }, - { - "name": "TEXTURE_TYPE_3D", - "value": 2 - } - ] - }, - { - "name": "TextureLayeredType", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_LAYERED_2D_ARRAY", - "value": 0 - }, - { - "name": "TEXTURE_LAYERED_CUBEMAP", - "value": 1 - }, - { - "name": "TEXTURE_LAYERED_CUBEMAP_ARRAY", - "value": 2 - } - ] - }, - { - "name": "CubeMapLayer", - "is_bitfield": false, - "values": [ - { - "name": "CUBEMAP_LAYER_LEFT", - "value": 0 - }, - { - "name": "CUBEMAP_LAYER_RIGHT", - "value": 1 - }, - { - "name": "CUBEMAP_LAYER_BOTTOM", - "value": 2 - }, - { - "name": "CUBEMAP_LAYER_TOP", - "value": 3 - }, - { - "name": "CUBEMAP_LAYER_FRONT", - "value": 4 - }, - { - "name": "CUBEMAP_LAYER_BACK", - "value": 5 - } - ] - }, - { - "name": "TextureDrawableFormat", - "is_bitfield": false, - "values": [ - { - "name": "TEXTURE_DRAWABLE_FORMAT_RGBA8", - "value": 0 - }, - { - "name": "TEXTURE_DRAWABLE_FORMAT_RGBA8_SRGB", - "value": 1 - }, - { - "name": "TEXTURE_DRAWABLE_FORMAT_RGBAH", - "value": 2 - }, - { - "name": "TEXTURE_DRAWABLE_FORMAT_RGBAF", - "value": 3 - } - ] - }, - { - "name": "ShaderMode", - "is_bitfield": false, - "values": [ - { - "name": "SHADER_SPATIAL", - "value": 0 - }, - { - "name": "SHADER_CANVAS_ITEM", - "value": 1 - }, - { - "name": "SHADER_PARTICLES", - "value": 2 - }, - { - "name": "SHADER_SKY", - "value": 3 - }, - { - "name": "SHADER_FOG", - "value": 4 - }, - { - "name": "SHADER_TEXTURE_BLIT", - "value": 5 - }, - { - "name": "SHADER_MAX", - "value": 6 - } - ] - }, - { - "name": "ArrayType", - "is_bitfield": false, - "values": [ - { - "name": "ARRAY_VERTEX", - "value": 0 - }, - { - "name": "ARRAY_NORMAL", - "value": 1 - }, - { - "name": "ARRAY_TANGENT", - "value": 2 - }, - { - "name": "ARRAY_COLOR", - "value": 3 - }, - { - "name": "ARRAY_TEX_UV", - "value": 4 - }, - { - "name": "ARRAY_TEX_UV2", - "value": 5 - }, - { - "name": "ARRAY_CUSTOM0", - "value": 6 - }, - { - "name": "ARRAY_CUSTOM1", - "value": 7 - }, - { - "name": "ARRAY_CUSTOM2", - "value": 8 - }, - { - "name": "ARRAY_CUSTOM3", - "value": 9 - }, - { - "name": "ARRAY_BONES", - "value": 10 - }, - { - "name": "ARRAY_WEIGHTS", - "value": 11 - }, - { - "name": "ARRAY_INDEX", - "value": 12 - }, - { - "name": "ARRAY_MAX", - "value": 13 - } - ] - }, - { - "name": "ArrayCustomFormat", - "is_bitfield": false, - "values": [ - { - "name": "ARRAY_CUSTOM_RGBA8_UNORM", - "value": 0 - }, - { - "name": "ARRAY_CUSTOM_RGBA8_SNORM", - "value": 1 - }, - { - "name": "ARRAY_CUSTOM_RG_HALF", - "value": 2 - }, - { - "name": "ARRAY_CUSTOM_RGBA_HALF", - "value": 3 - }, - { - "name": "ARRAY_CUSTOM_R_FLOAT", - "value": 4 - }, - { - "name": "ARRAY_CUSTOM_RG_FLOAT", - "value": 5 - }, - { - "name": "ARRAY_CUSTOM_RGB_FLOAT", - "value": 6 - }, - { - "name": "ARRAY_CUSTOM_RGBA_FLOAT", - "value": 7 - }, - { - "name": "ARRAY_CUSTOM_MAX", - "value": 8 - } - ] - }, - { - "name": "ArrayFormat", - "is_bitfield": true, - "values": [ - { - "name": "ARRAY_FORMAT_VERTEX", - "value": 1 - }, - { - "name": "ARRAY_FORMAT_NORMAL", - "value": 2 - }, - { - "name": "ARRAY_FORMAT_TANGENT", - "value": 4 - }, - { - "name": "ARRAY_FORMAT_COLOR", - "value": 8 - }, - { - "name": "ARRAY_FORMAT_TEX_UV", - "value": 16 - }, - { - "name": "ARRAY_FORMAT_TEX_UV2", - "value": 32 - }, - { - "name": "ARRAY_FORMAT_CUSTOM0", - "value": 64 - }, - { - "name": "ARRAY_FORMAT_CUSTOM1", - "value": 128 - }, - { - "name": "ARRAY_FORMAT_CUSTOM2", - "value": 256 - }, - { - "name": "ARRAY_FORMAT_CUSTOM3", - "value": 512 - }, - { - "name": "ARRAY_FORMAT_BONES", - "value": 1024 - }, - { - "name": "ARRAY_FORMAT_WEIGHTS", - "value": 2048 - }, - { - "name": "ARRAY_FORMAT_INDEX", - "value": 4096 - }, - { - "name": "ARRAY_FORMAT_BLEND_SHAPE_MASK", - "value": 7 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_BASE", - "value": 13 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_BITS", - "value": 3 - }, - { - "name": "ARRAY_FORMAT_CUSTOM0_SHIFT", - "value": 13 - }, - { - "name": "ARRAY_FORMAT_CUSTOM1_SHIFT", - "value": 16 - }, - { - "name": "ARRAY_FORMAT_CUSTOM2_SHIFT", - "value": 19 - }, - { - "name": "ARRAY_FORMAT_CUSTOM3_SHIFT", - "value": 22 - }, - { - "name": "ARRAY_FORMAT_CUSTOM_MASK", - "value": 7 - }, - { - "name": "ARRAY_COMPRESS_FLAGS_BASE", - "value": 25 - }, - { - "name": "ARRAY_FLAG_USE_2D_VERTICES", - "value": 33554432 - }, - { - "name": "ARRAY_FLAG_USE_DYNAMIC_UPDATE", - "value": 67108864 - }, - { - "name": "ARRAY_FLAG_USE_8_BONE_WEIGHTS", - "value": 134217728 - }, - { - "name": "ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY", - "value": 268435456 - }, - { - "name": "ARRAY_FLAG_COMPRESS_ATTRIBUTES", - "value": 536870912 - }, - { - "name": "ARRAY_FLAG_FORMAT_VERSION_BASE", - "value": 35 - }, - { - "name": "ARRAY_FLAG_FORMAT_VERSION_SHIFT", - "value": 35 - }, - { - "name": "ARRAY_FLAG_FORMAT_VERSION_1", - "value": 0 - }, - { - "name": "ARRAY_FLAG_FORMAT_VERSION_2", - "value": 34359738368 - }, - { - "name": "ARRAY_FLAG_FORMAT_CURRENT_VERSION", - "value": 34359738368 - }, - { - "name": "ARRAY_FLAG_FORMAT_VERSION_MASK", - "value": 255 - } - ] - }, - { - "name": "PrimitiveType", - "is_bitfield": false, - "values": [ - { - "name": "PRIMITIVE_POINTS", - "value": 0 - }, - { - "name": "PRIMITIVE_LINES", - "value": 1 - }, - { - "name": "PRIMITIVE_LINE_STRIP", - "value": 2 - }, - { - "name": "PRIMITIVE_TRIANGLES", - "value": 3 - }, - { - "name": "PRIMITIVE_TRIANGLE_STRIP", - "value": 4 - }, - { - "name": "PRIMITIVE_MAX", - "value": 5 - } - ] - }, - { - "name": "BlendShapeMode", - "is_bitfield": false, - "values": [ - { - "name": "BLEND_SHAPE_MODE_NORMALIZED", - "value": 0 - }, - { - "name": "BLEND_SHAPE_MODE_RELATIVE", - "value": 1 - } - ] - }, - { - "name": "MultimeshTransformFormat", - "is_bitfield": false, - "values": [ - { - "name": "MULTIMESH_TRANSFORM_2D", - "value": 0 - }, - { - "name": "MULTIMESH_TRANSFORM_3D", - "value": 1 - } - ] - }, - { - "name": "MultimeshPhysicsInterpolationQuality", - "is_bitfield": false, - "values": [ - { - "name": "MULTIMESH_INTERP_QUALITY_FAST", - "value": 0 - }, - { - "name": "MULTIMESH_INTERP_QUALITY_HIGH", - "value": 1 - } - ] - }, - { - "name": "LightProjectorFilter", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_PROJECTOR_FILTER_NEAREST", - "value": 0 - }, - { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR", - "value": 1 - }, - { - "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", - "value": 2 - }, - { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS", - "value": 3 - }, - { - "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", - "value": 4 - }, - { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", - "value": 5 - } - ] - }, - { - "name": "LightType", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_DIRECTIONAL", - "value": 0 - }, - { - "name": "LIGHT_OMNI", - "value": 1 - }, - { - "name": "LIGHT_SPOT", - "value": 2 - }, - { - "name": "LIGHT_AREA", - "value": 3 - } - ] - }, - { - "name": "LightParam", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_PARAM_ENERGY", - "value": 0 - }, - { - "name": "LIGHT_PARAM_INDIRECT_ENERGY", - "value": 1 - }, - { - "name": "LIGHT_PARAM_VOLUMETRIC_FOG_ENERGY", - "value": 2 - }, - { - "name": "LIGHT_PARAM_SPECULAR", - "value": 3 - }, - { - "name": "LIGHT_PARAM_RANGE", - "value": 4 - }, - { - "name": "LIGHT_PARAM_SIZE", - "value": 5 - }, - { - "name": "LIGHT_PARAM_ATTENUATION", - "value": 6 - }, - { - "name": "LIGHT_PARAM_SPOT_ANGLE", - "value": 7 - }, - { - "name": "LIGHT_PARAM_SPOT_ATTENUATION", - "value": 8 - }, - { - "name": "LIGHT_PARAM_SHADOW_MAX_DISTANCE", - "value": 9 - }, - { - "name": "LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET", - "value": 10 - }, - { - "name": "LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET", - "value": 11 - }, - { - "name": "LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET", - "value": 12 - }, - { - "name": "LIGHT_PARAM_SHADOW_FADE_START", - "value": 13 - }, - { - "name": "LIGHT_PARAM_SHADOW_NORMAL_BIAS", - "value": 14 - }, - { - "name": "LIGHT_PARAM_SHADOW_BIAS", - "value": 15 - }, - { - "name": "LIGHT_PARAM_SHADOW_PANCAKE_SIZE", - "value": 16 - }, - { - "name": "LIGHT_PARAM_SHADOW_OPACITY", - "value": 17 - }, - { - "name": "LIGHT_PARAM_SHADOW_BLUR", - "value": 18 - }, - { - "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", - "value": 19 - }, - { - "name": "LIGHT_PARAM_INTENSITY", - "value": 20 - }, - { - "name": "LIGHT_PARAM_MAX", - "value": 21 - } - ] - }, - { - "name": "LightBakeMode", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_BAKE_DISABLED", - "value": 0 - }, - { - "name": "LIGHT_BAKE_STATIC", - "value": 1 - }, - { - "name": "LIGHT_BAKE_DYNAMIC", - "value": 2 - } - ] - }, - { - "name": "LightOmniShadowMode", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_OMNI_SHADOW_DUAL_PARABOLOID", - "value": 0 - }, - { - "name": "LIGHT_OMNI_SHADOW_CUBE", - "value": 1 - } - ] - }, - { - "name": "LightDirectionalShadowMode", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL", - "value": 0 - }, - { - "name": "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_2_SPLITS", - "value": 1 - }, - { - "name": "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_4_SPLITS", - "value": 2 - } - ] - }, - { - "name": "LightDirectionalSkyMode", - "is_bitfield": false, - "values": [ - { - "name": "LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_AND_SKY", - "value": 0 - }, - { - "name": "LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_ONLY", - "value": 1 - }, - { - "name": "LIGHT_DIRECTIONAL_SKY_MODE_SKY_ONLY", - "value": 2 - } - ] - }, - { - "name": "ShadowQuality", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_QUALITY_HARD", - "value": 0 - }, - { - "name": "SHADOW_QUALITY_SOFT_VERY_LOW", - "value": 1 - }, - { - "name": "SHADOW_QUALITY_SOFT_LOW", - "value": 2 - }, - { - "name": "SHADOW_QUALITY_SOFT_MEDIUM", - "value": 3 - }, - { - "name": "SHADOW_QUALITY_SOFT_HIGH", - "value": 4 - }, - { - "name": "SHADOW_QUALITY_SOFT_ULTRA", - "value": 5 - }, - { - "name": "SHADOW_QUALITY_MAX", - "value": 6 - } - ] - }, - { - "name": "ReflectionProbeUpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "REFLECTION_PROBE_UPDATE_ONCE", - "value": 0 - }, - { - "name": "REFLECTION_PROBE_UPDATE_ALWAYS", - "value": 1 - } - ] - }, - { - "name": "ReflectionProbeAmbientMode", - "is_bitfield": false, - "values": [ - { - "name": "REFLECTION_PROBE_AMBIENT_DISABLED", - "value": 0 - }, - { - "name": "REFLECTION_PROBE_AMBIENT_ENVIRONMENT", - "value": 1 - }, - { - "name": "REFLECTION_PROBE_AMBIENT_COLOR", - "value": 2 - } - ] - }, - { - "name": "DecalTexture", - "is_bitfield": false, - "values": [ - { - "name": "DECAL_TEXTURE_ALBEDO", - "value": 0 - }, - { - "name": "DECAL_TEXTURE_NORMAL", - "value": 1 - }, - { - "name": "DECAL_TEXTURE_ORM", - "value": 2 - }, - { - "name": "DECAL_TEXTURE_EMISSION", - "value": 3 - }, - { - "name": "DECAL_TEXTURE_MAX", - "value": 4 - } - ] - }, - { - "name": "DecalFilter", - "is_bitfield": false, - "values": [ - { - "name": "DECAL_FILTER_NEAREST", - "value": 0 - }, - { - "name": "DECAL_FILTER_LINEAR", - "value": 1 - }, - { - "name": "DECAL_FILTER_NEAREST_MIPMAPS", - "value": 2 - }, - { - "name": "DECAL_FILTER_LINEAR_MIPMAPS", - "value": 3 - }, - { - "name": "DECAL_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", - "value": 4 - }, - { - "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", - "value": 5 - } - ] - }, - { - "name": "VoxelGIQuality", - "is_bitfield": false, - "values": [ - { - "name": "VOXEL_GI_QUALITY_LOW", - "value": 0 - }, - { - "name": "VOXEL_GI_QUALITY_HIGH", - "value": 1 - } - ] - }, - { - "name": "ParticlesMode", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_MODE_2D", - "value": 0 - }, - { - "name": "PARTICLES_MODE_3D", - "value": 1 - } - ] - }, - { - "name": "ParticlesTransformAlign", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_TRANSFORM_ALIGN_DISABLED", - "value": 0 - }, - { - "name": "PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD", - "value": 1 - }, - { - "name": "PARTICLES_TRANSFORM_ALIGN_Y_TO_VELOCITY", - "value": 2 - }, - { - "name": "PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD_Y_TO_VELOCITY", - "value": 3 - }, - { - "name": "PARTICLES_TRANSFORM_ALIGN_LOCAL_BILLBOARD", - "value": 4 - } - ] - }, - { - "name": "ParticlesTransformAlignCustomSrc", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_ALIGN_CHANNEL_FILTER_DISABLED", - "value": 0 - }, - { - "name": "PARTICLES_ALIGN_CHANNEL_FILTER_X", - "value": 1 - }, - { - "name": "PARTICLES_ALIGN_CHANNEL_FILTER_Y", - "value": 2 - }, - { - "name": "PARTICLES_ALIGN_CHANNEL_FILTER_Z", - "value": 3 - }, - { - "name": "PARTICLES_ALIGN_CHANNEL_FILTER_W", - "value": 4 - } - ] - }, - { - "name": "ParticlesTransformAlignAxis", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_ALIGN_AXIS_X", - "value": 0 - }, - { - "name": "PARTICLES_ALIGN_AXIS_Y", - "value": 1 - } - ] - }, - { - "name": "ParticlesDrawOrder", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_DRAW_ORDER_INDEX", - "value": 0 - }, - { - "name": "PARTICLES_DRAW_ORDER_LIFETIME", - "value": 1 - }, - { - "name": "PARTICLES_DRAW_ORDER_REVERSE_LIFETIME", - "value": 2 - }, - { - "name": "PARTICLES_DRAW_ORDER_VIEW_DEPTH", - "value": 3 - } - ] - }, - { - "name": "ParticlesCollisionType", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_COLLISION_TYPE_SPHERE_ATTRACT", - "value": 0 - }, - { - "name": "PARTICLES_COLLISION_TYPE_BOX_ATTRACT", - "value": 1 - }, - { - "name": "PARTICLES_COLLISION_TYPE_VECTOR_FIELD_ATTRACT", - "value": 2 - }, - { - "name": "PARTICLES_COLLISION_TYPE_SPHERE_COLLIDE", - "value": 3 - }, - { - "name": "PARTICLES_COLLISION_TYPE_BOX_COLLIDE", - "value": 4 - }, - { - "name": "PARTICLES_COLLISION_TYPE_SDF_COLLIDE", - "value": 5 - }, - { - "name": "PARTICLES_COLLISION_TYPE_HEIGHTFIELD_COLLIDE", - "value": 6 - } - ] - }, - { - "name": "ParticlesCollisionHeightfieldResolution", - "is_bitfield": false, - "values": [ - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_256", - "value": 0 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_512", - "value": 1 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_1024", - "value": 2 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_2048", - "value": 3 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_4096", - "value": 4 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_8192", - "value": 5 - }, - { - "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_MAX", - "value": 6 - } - ] - }, - { - "name": "FogVolumeShape", - "is_bitfield": false, - "values": [ - { - "name": "FOG_VOLUME_SHAPE_ELLIPSOID", - "value": 0 - }, - { - "name": "FOG_VOLUME_SHAPE_CONE", - "value": 1 - }, - { - "name": "FOG_VOLUME_SHAPE_CYLINDER", - "value": 2 - }, - { - "name": "FOG_VOLUME_SHAPE_BOX", - "value": 3 - }, - { - "name": "FOG_VOLUME_SHAPE_WORLD", - "value": 4 - }, - { - "name": "FOG_VOLUME_SHAPE_MAX", - "value": 5 - } - ] - }, - { - "name": "ViewportScaling3DMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_SCALING_3D_MODE_BILINEAR", - "value": 0 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_FSR", - "value": 1 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_FSR2", - "value": 2 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_METALFX_SPATIAL", - "value": 3 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_METALFX_TEMPORAL", - "value": 4 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_NEAREST", - "value": 5 - }, - { - "name": "VIEWPORT_SCALING_3D_MODE_MAX", - "value": 6 - } - ] - }, - { - "name": "ViewportUpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_UPDATE_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_UPDATE_ONCE", - "value": 1 - }, - { - "name": "VIEWPORT_UPDATE_WHEN_VISIBLE", - "value": 2 - }, - { - "name": "VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE", - "value": 3 - }, - { - "name": "VIEWPORT_UPDATE_ALWAYS", - "value": 4 - } - ] - }, - { - "name": "ViewportClearMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_CLEAR_ALWAYS", - "value": 0 - }, - { - "name": "VIEWPORT_CLEAR_NEVER", - "value": 1 - }, - { - "name": "VIEWPORT_CLEAR_ONLY_NEXT_FRAME", - "value": 2 - } - ] - }, - { - "name": "ViewportEnvironmentMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_ENVIRONMENT_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_ENVIRONMENT_ENABLED", - "value": 1 - }, - { - "name": "VIEWPORT_ENVIRONMENT_INHERIT", - "value": 2 - }, - { - "name": "VIEWPORT_ENVIRONMENT_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportSDFOversize", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_SDF_OVERSIZE_100_PERCENT", - "value": 0 - }, - { - "name": "VIEWPORT_SDF_OVERSIZE_120_PERCENT", - "value": 1 - }, - { - "name": "VIEWPORT_SDF_OVERSIZE_150_PERCENT", - "value": 2 - }, - { - "name": "VIEWPORT_SDF_OVERSIZE_200_PERCENT", - "value": 3 - }, - { - "name": "VIEWPORT_SDF_OVERSIZE_MAX", - "value": 4 - } - ] - }, - { - "name": "ViewportSDFScale", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_SDF_SCALE_100_PERCENT", - "value": 0 - }, - { - "name": "VIEWPORT_SDF_SCALE_50_PERCENT", - "value": 1 - }, - { - "name": "VIEWPORT_SDF_SCALE_25_PERCENT", - "value": 2 - }, - { - "name": "VIEWPORT_SDF_SCALE_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportMSAA", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_MSAA_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_MSAA_2X", - "value": 1 - }, - { - "name": "VIEWPORT_MSAA_4X", - "value": 2 - }, - { - "name": "VIEWPORT_MSAA_8X", - "value": 3 - }, - { - "name": "VIEWPORT_MSAA_MAX", - "value": 4 - } - ] - }, - { - "name": "ViewportAnisotropicFiltering", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_ANISOTROPY_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_ANISOTROPY_2X", - "value": 1 - }, - { - "name": "VIEWPORT_ANISOTROPY_4X", - "value": 2 - }, - { - "name": "VIEWPORT_ANISOTROPY_8X", - "value": 3 - }, - { - "name": "VIEWPORT_ANISOTROPY_16X", - "value": 4 - }, - { - "name": "VIEWPORT_ANISOTROPY_MAX", - "value": 5 - } - ] - }, - { - "name": "ViewportScreenSpaceAA", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_SCREEN_SPACE_AA_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_SCREEN_SPACE_AA_FXAA", - "value": 1 - }, - { - "name": "VIEWPORT_SCREEN_SPACE_AA_SMAA", - "value": 2 - }, - { - "name": "VIEWPORT_SCREEN_SPACE_AA_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportOcclusionCullingBuildQuality", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_LOW", - "value": 0 - }, - { - "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_MEDIUM", - "value": 1 - }, - { - "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_HIGH", - "value": 2 - } - ] - }, - { - "name": "ViewportRenderInfo", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME", - "value": 0 - }, - { - "name": "VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME", - "value": 1 - }, - { - "name": "VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME", - "value": 2 - }, - { - "name": "VIEWPORT_RENDER_INFO_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportRenderInfoType", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_RENDER_INFO_TYPE_VISIBLE", - "value": 0 - }, - { - "name": "VIEWPORT_RENDER_INFO_TYPE_SHADOW", - "value": 1 - }, - { - "name": "VIEWPORT_RENDER_INFO_TYPE_CANVAS", - "value": 2 - }, - { - "name": "VIEWPORT_RENDER_INFO_TYPE_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportDebugDraw", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_DEBUG_DRAW_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_UNSHADED", - "value": 1 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_LIGHTING", - "value": 2 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_OVERDRAW", - "value": 3 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_WIREFRAME", - "value": 4 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_NORMAL_BUFFER", - "value": 5 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_ALBEDO", - "value": 6 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_LIGHTING", - "value": 7 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_EMISSION", - "value": 8 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SHADOW_ATLAS", - "value": 9 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS", - "value": 10 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SCENE_LUMINANCE", - "value": 11 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SSAO", - "value": 12 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SSIL", - "value": 13 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_PSSM_SPLITS", - "value": 14 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_DECAL_ATLAS", - "value": 15 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SDFGI", - "value": 16 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_SDFGI_PROBES", - "value": 17 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_GI_BUFFER", - "value": 18 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_DISABLE_LOD", - "value": 19 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_OMNI_LIGHTS", - "value": 20 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_SPOT_LIGHTS", - "value": 21 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_DECALS", - "value": 22 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_REFLECTION_PROBES", - "value": 23 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_OCCLUDERS", - "value": 24 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_MOTION_VECTORS", - "value": 25 - }, - { - "name": "VIEWPORT_DEBUG_DRAW_INTERNAL_BUFFER", - "value": 26 - } - ] - }, - { - "name": "ViewportVRSMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_VRS_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_VRS_TEXTURE", - "value": 1 - }, - { - "name": "VIEWPORT_VRS_XR", - "value": 2 - }, - { - "name": "VIEWPORT_VRS_MAX", - "value": 3 - } - ] - }, - { - "name": "ViewportVRSUpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "VIEWPORT_VRS_UPDATE_DISABLED", - "value": 0 - }, - { - "name": "VIEWPORT_VRS_UPDATE_ONCE", - "value": 1 - }, - { - "name": "VIEWPORT_VRS_UPDATE_ALWAYS", - "value": 2 - }, - { - "name": "VIEWPORT_VRS_UPDATE_MAX", - "value": 3 - } - ] - }, - { - "name": "SkyMode", - "is_bitfield": false, - "values": [ - { - "name": "SKY_MODE_AUTOMATIC", - "value": 0 - }, - { - "name": "SKY_MODE_QUALITY", - "value": 1 - }, - { - "name": "SKY_MODE_INCREMENTAL", - "value": 2 - }, - { - "name": "SKY_MODE_REALTIME", - "value": 3 - } - ] - }, - { - "name": "CompositorEffectFlags", - "is_bitfield": false, - "values": [ - { - "name": "COMPOSITOR_EFFECT_FLAG_ACCESS_RESOLVED_COLOR", - "value": 1 - }, - { - "name": "COMPOSITOR_EFFECT_FLAG_ACCESS_RESOLVED_DEPTH", - "value": 2 - }, - { - "name": "COMPOSITOR_EFFECT_FLAG_NEEDS_MOTION_VECTORS", - "value": 4 - }, - { - "name": "COMPOSITOR_EFFECT_FLAG_NEEDS_ROUGHNESS", - "value": 8 - }, - { - "name": "COMPOSITOR_EFFECT_FLAG_NEEDS_SEPARATE_SPECULAR", - "value": 16 - } - ] - }, - { - "name": "CompositorEffectCallbackType", - "is_bitfield": false, - "values": [ - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_PRE_OPAQUE", - "value": 0 - }, - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_POST_OPAQUE", - "value": 1 - }, - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_POST_SKY", - "value": 2 - }, - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_PRE_TRANSPARENT", - "value": 3 - }, - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_POST_TRANSPARENT", - "value": 4 - }, - { - "name": "COMPOSITOR_EFFECT_CALLBACK_TYPE_ANY", - "value": -1 - } - ] - }, - { - "name": "EnvironmentBG", - "is_bitfield": false, - "values": [ - { - "name": "ENV_BG_CLEAR_COLOR", - "value": 0 - }, - { - "name": "ENV_BG_COLOR", - "value": 1 - }, - { - "name": "ENV_BG_SKY", - "value": 2 - }, - { - "name": "ENV_BG_CANVAS", - "value": 3 - }, - { - "name": "ENV_BG_KEEP", - "value": 4 - }, - { - "name": "ENV_BG_CAMERA_FEED", - "value": 5 - }, - { - "name": "ENV_BG_MAX", - "value": 6 - } - ] - }, - { - "name": "EnvironmentAmbientSource", - "is_bitfield": false, - "values": [ - { - "name": "ENV_AMBIENT_SOURCE_BG", - "value": 0 - }, - { - "name": "ENV_AMBIENT_SOURCE_DISABLED", - "value": 1 - }, - { - "name": "ENV_AMBIENT_SOURCE_COLOR", - "value": 2 - }, - { - "name": "ENV_AMBIENT_SOURCE_SKY", - "value": 3 - } - ] - }, - { - "name": "EnvironmentReflectionSource", - "is_bitfield": false, - "values": [ - { - "name": "ENV_REFLECTION_SOURCE_BG", - "value": 0 - }, - { - "name": "ENV_REFLECTION_SOURCE_DISABLED", - "value": 1 - }, - { - "name": "ENV_REFLECTION_SOURCE_SKY", - "value": 2 - } - ] - }, - { - "name": "EnvironmentGlowBlendMode", - "is_bitfield": false, - "values": [ - { - "name": "ENV_GLOW_BLEND_MODE_ADDITIVE", - "value": 0 - }, - { - "name": "ENV_GLOW_BLEND_MODE_SCREEN", - "value": 1 - }, - { - "name": "ENV_GLOW_BLEND_MODE_SOFTLIGHT", - "value": 2 - }, - { - "name": "ENV_GLOW_BLEND_MODE_REPLACE", - "value": 3 - }, - { - "name": "ENV_GLOW_BLEND_MODE_MIX", - "value": 4 - } - ] - }, - { - "name": "EnvironmentFogMode", - "is_bitfield": false, - "values": [ - { - "name": "ENV_FOG_MODE_EXPONENTIAL", - "value": 0 - }, - { - "name": "ENV_FOG_MODE_DEPTH", - "value": 1 - } - ] - }, - { - "name": "EnvironmentToneMapper", - "is_bitfield": false, - "values": [ - { - "name": "ENV_TONE_MAPPER_LINEAR", - "value": 0 - }, - { - "name": "ENV_TONE_MAPPER_REINHARD", - "value": 1 - }, - { - "name": "ENV_TONE_MAPPER_FILMIC", - "value": 2 - }, - { - "name": "ENV_TONE_MAPPER_ACES", - "value": 3 - }, - { - "name": "ENV_TONE_MAPPER_AGX", - "value": 4 - } - ] - }, - { - "name": "EnvironmentSSRRoughnessQuality", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SSR_ROUGHNESS_QUALITY_DISABLED", - "value": 0 - }, - { - "name": "ENV_SSR_ROUGHNESS_QUALITY_LOW", - "value": 1 - }, - { - "name": "ENV_SSR_ROUGHNESS_QUALITY_MEDIUM", - "value": 2 - }, - { - "name": "ENV_SSR_ROUGHNESS_QUALITY_HIGH", - "value": 3 - } - ] - }, - { - "name": "EnvironmentSSAOQuality", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SSAO_QUALITY_VERY_LOW", - "value": 0 - }, - { - "name": "ENV_SSAO_QUALITY_LOW", - "value": 1 - }, - { - "name": "ENV_SSAO_QUALITY_MEDIUM", - "value": 2 - }, - { - "name": "ENV_SSAO_QUALITY_HIGH", - "value": 3 - }, - { - "name": "ENV_SSAO_QUALITY_ULTRA", - "value": 4 - } - ] - }, - { - "name": "EnvironmentSSILQuality", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SSIL_QUALITY_VERY_LOW", - "value": 0 - }, - { - "name": "ENV_SSIL_QUALITY_LOW", - "value": 1 - }, - { - "name": "ENV_SSIL_QUALITY_MEDIUM", - "value": 2 - }, - { - "name": "ENV_SSIL_QUALITY_HIGH", - "value": 3 - }, - { - "name": "ENV_SSIL_QUALITY_ULTRA", - "value": 4 - } - ] - }, - { - "name": "EnvironmentSDFGIYScale", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SDFGI_Y_SCALE_50_PERCENT", - "value": 0 - }, - { - "name": "ENV_SDFGI_Y_SCALE_75_PERCENT", - "value": 1 - }, - { - "name": "ENV_SDFGI_Y_SCALE_100_PERCENT", - "value": 2 - } - ] - }, - { - "name": "EnvironmentSDFGIRayCount", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SDFGI_RAY_COUNT_4", - "value": 0 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_8", - "value": 1 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_16", - "value": 2 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_32", - "value": 3 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_64", - "value": 4 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_96", - "value": 5 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_128", - "value": 6 - }, - { - "name": "ENV_SDFGI_RAY_COUNT_MAX", - "value": 7 - } - ] - }, - { - "name": "EnvironmentSDFGIFramesToConverge", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SDFGI_CONVERGE_IN_5_FRAMES", - "value": 0 - }, - { - "name": "ENV_SDFGI_CONVERGE_IN_10_FRAMES", - "value": 1 - }, - { - "name": "ENV_SDFGI_CONVERGE_IN_15_FRAMES", - "value": 2 - }, - { - "name": "ENV_SDFGI_CONVERGE_IN_20_FRAMES", - "value": 3 - }, - { - "name": "ENV_SDFGI_CONVERGE_IN_25_FRAMES", - "value": 4 - }, - { - "name": "ENV_SDFGI_CONVERGE_IN_30_FRAMES", - "value": 5 - }, - { - "name": "ENV_SDFGI_CONVERGE_MAX", - "value": 6 - } - ] - }, - { - "name": "EnvironmentSDFGIFramesToUpdateLight", - "is_bitfield": false, - "values": [ - { - "name": "ENV_SDFGI_UPDATE_LIGHT_IN_1_FRAME", - "value": 0 - }, - { - "name": "ENV_SDFGI_UPDATE_LIGHT_IN_2_FRAMES", - "value": 1 - }, - { - "name": "ENV_SDFGI_UPDATE_LIGHT_IN_4_FRAMES", - "value": 2 - }, - { - "name": "ENV_SDFGI_UPDATE_LIGHT_IN_8_FRAMES", - "value": 3 - }, - { - "name": "ENV_SDFGI_UPDATE_LIGHT_IN_16_FRAMES", - "value": 4 - }, - { - "name": "ENV_SDFGI_UPDATE_LIGHT_MAX", - "value": 5 - } - ] - }, - { - "name": "SubSurfaceScatteringQuality", - "is_bitfield": false, - "values": [ - { - "name": "SUB_SURFACE_SCATTERING_QUALITY_DISABLED", - "value": 0 - }, - { - "name": "SUB_SURFACE_SCATTERING_QUALITY_LOW", - "value": 1 - }, - { - "name": "SUB_SURFACE_SCATTERING_QUALITY_MEDIUM", - "value": 2 - }, - { - "name": "SUB_SURFACE_SCATTERING_QUALITY_HIGH", - "value": 3 - } - ] - }, - { - "name": "DOFBokehShape", - "is_bitfield": false, - "values": [ - { - "name": "DOF_BOKEH_BOX", - "value": 0 - }, - { - "name": "DOF_BOKEH_HEXAGON", - "value": 1 - }, - { - "name": "DOF_BOKEH_CIRCLE", - "value": 2 - } - ] - }, - { - "name": "DOFBlurQuality", - "is_bitfield": false, - "values": [ - { - "name": "DOF_BLUR_QUALITY_VERY_LOW", - "value": 0 - }, - { - "name": "DOF_BLUR_QUALITY_LOW", - "value": 1 - }, - { - "name": "DOF_BLUR_QUALITY_MEDIUM", - "value": 2 - }, - { - "name": "DOF_BLUR_QUALITY_HIGH", - "value": 3 - } - ] - }, - { - "name": "InstanceType", - "is_bitfield": false, - "values": [ - { - "name": "INSTANCE_NONE", - "value": 0 - }, - { - "name": "INSTANCE_MESH", - "value": 1 - }, - { - "name": "INSTANCE_MULTIMESH", - "value": 2 - }, - { - "name": "INSTANCE_PARTICLES", - "value": 3 - }, - { - "name": "INSTANCE_PARTICLES_COLLISION", - "value": 4 - }, - { - "name": "INSTANCE_LIGHT", - "value": 5 - }, - { - "name": "INSTANCE_REFLECTION_PROBE", - "value": 6 - }, - { - "name": "INSTANCE_DECAL", - "value": 7 - }, - { - "name": "INSTANCE_VOXEL_GI", - "value": 8 - }, - { - "name": "INSTANCE_LIGHTMAP", - "value": 9 - }, - { - "name": "INSTANCE_OCCLUDER", - "value": 10 - }, - { - "name": "INSTANCE_VISIBLITY_NOTIFIER", - "value": 11 - }, - { - "name": "INSTANCE_FOG_VOLUME", - "value": 12 - }, - { - "name": "INSTANCE_MAX", - "value": 13 - }, - { - "name": "INSTANCE_GEOMETRY_MASK", - "value": 14 - } - ] - }, - { - "name": "InstanceFlags", - "is_bitfield": false, - "values": [ - { - "name": "INSTANCE_FLAG_USE_BAKED_LIGHT", - "value": 0 - }, - { - "name": "INSTANCE_FLAG_USE_DYNAMIC_GI", - "value": 1 - }, - { - "name": "INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE", - "value": 2 - }, - { - "name": "INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING", - "value": 3 - }, - { - "name": "INSTANCE_FLAG_MAX", - "value": 4 - } - ] - }, - { - "name": "ShadowCastingSetting", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_CASTING_SETTING_OFF", - "value": 0 - }, - { - "name": "SHADOW_CASTING_SETTING_ON", - "value": 1 - }, - { - "name": "SHADOW_CASTING_SETTING_DOUBLE_SIDED", - "value": 2 - }, - { - "name": "SHADOW_CASTING_SETTING_SHADOWS_ONLY", - "value": 3 - } - ] - }, - { - "name": "VisibilityRangeFadeMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_RANGE_FADE_DISABLED", - "value": 0 - }, - { - "name": "VISIBILITY_RANGE_FADE_SELF", - "value": 1 - }, - { - "name": "VISIBILITY_RANGE_FADE_DEPENDENCIES", - "value": 2 - } - ] - }, - { - "name": "BakeChannels", - "is_bitfield": false, - "values": [ - { - "name": "BAKE_CHANNEL_ALBEDO_ALPHA", - "value": 0 - }, - { - "name": "BAKE_CHANNEL_NORMAL", - "value": 1 - }, - { - "name": "BAKE_CHANNEL_ORM", - "value": 2 - }, - { - "name": "BAKE_CHANNEL_EMISSION", - "value": 3 - } - ] - }, - { - "name": "CanvasTextureChannel", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_TEXTURE_CHANNEL_DIFFUSE", - "value": 0 - }, - { - "name": "CANVAS_TEXTURE_CHANNEL_NORMAL", - "value": 1 - }, - { - "name": "CANVAS_TEXTURE_CHANNEL_SPECULAR", - "value": 2 - } - ] - }, - { - "name": "NinePatchAxisMode", - "is_bitfield": false, - "values": [ - { - "name": "NINE_PATCH_STRETCH", - "value": 0 - }, - { - "name": "NINE_PATCH_TILE", - "value": 1 - }, - { - "name": "NINE_PATCH_TILE_FIT", - "value": 2 - } - ] - }, - { - "name": "CanvasItemTextureFilter", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_DEFAULT", - "value": 0 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST", - "value": 1 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR", - "value": 2 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", - "value": 3 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", - "value": 4 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", - "value": 5 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", - "value": 6 - }, - { - "name": "CANVAS_ITEM_TEXTURE_FILTER_MAX", - "value": 7 - } - ] - }, - { - "name": "CanvasItemTextureRepeat", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT", - "value": 0 - }, - { - "name": "CANVAS_ITEM_TEXTURE_REPEAT_DISABLED", - "value": 1 - }, - { - "name": "CANVAS_ITEM_TEXTURE_REPEAT_ENABLED", - "value": 2 - }, - { - "name": "CANVAS_ITEM_TEXTURE_REPEAT_MIRROR", - "value": 3 - }, - { - "name": "CANVAS_ITEM_TEXTURE_REPEAT_MAX", - "value": 4 - } - ] - }, - { - "name": "CanvasGroupMode", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_GROUP_MODE_DISABLED", - "value": 0 - }, - { - "name": "CANVAS_GROUP_MODE_CLIP_ONLY", - "value": 1 - }, - { - "name": "CANVAS_GROUP_MODE_CLIP_AND_DRAW", - "value": 2 - }, - { - "name": "CANVAS_GROUP_MODE_TRANSPARENT", - "value": 3 - } - ] - }, - { - "name": "CanvasLightMode", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_LIGHT_MODE_POINT", - "value": 0 - }, - { - "name": "CANVAS_LIGHT_MODE_DIRECTIONAL", - "value": 1 - } - ] - }, - { - "name": "CanvasLightBlendMode", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_LIGHT_BLEND_MODE_ADD", - "value": 0 - }, - { - "name": "CANVAS_LIGHT_BLEND_MODE_SUB", - "value": 1 - }, - { - "name": "CANVAS_LIGHT_BLEND_MODE_MIX", - "value": 2 - } - ] - }, - { - "name": "CanvasLightShadowFilter", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_LIGHT_FILTER_NONE", - "value": 0 - }, - { - "name": "CANVAS_LIGHT_FILTER_PCF5", - "value": 1 - }, - { - "name": "CANVAS_LIGHT_FILTER_PCF13", - "value": 2 - }, - { - "name": "CANVAS_LIGHT_FILTER_MAX", - "value": 3 - } - ] - }, - { - "name": "CanvasOccluderPolygonCullMode", - "is_bitfield": false, - "values": [ - { - "name": "CANVAS_OCCLUDER_POLYGON_CULL_DISABLED", - "value": 0 - }, - { - "name": "CANVAS_OCCLUDER_POLYGON_CULL_CLOCKWISE", - "value": 1 - }, - { - "name": "CANVAS_OCCLUDER_POLYGON_CULL_COUNTER_CLOCKWISE", - "value": 2 - } - ] - }, - { - "name": "GlobalShaderParameterType", - "is_bitfield": false, - "values": [ - { - "name": "GLOBAL_VAR_TYPE_BOOL", - "value": 0 - }, - { - "name": "GLOBAL_VAR_TYPE_BVEC2", - "value": 1 - }, - { - "name": "GLOBAL_VAR_TYPE_BVEC3", - "value": 2 - }, - { - "name": "GLOBAL_VAR_TYPE_BVEC4", - "value": 3 - }, - { - "name": "GLOBAL_VAR_TYPE_INT", - "value": 4 - }, - { - "name": "GLOBAL_VAR_TYPE_IVEC2", - "value": 5 - }, - { - "name": "GLOBAL_VAR_TYPE_IVEC3", - "value": 6 - }, - { - "name": "GLOBAL_VAR_TYPE_IVEC4", - "value": 7 - }, - { - "name": "GLOBAL_VAR_TYPE_RECT2I", - "value": 8 - }, - { - "name": "GLOBAL_VAR_TYPE_UINT", - "value": 9 - }, - { - "name": "GLOBAL_VAR_TYPE_UVEC2", - "value": 10 - }, - { - "name": "GLOBAL_VAR_TYPE_UVEC3", - "value": 11 - }, - { - "name": "GLOBAL_VAR_TYPE_UVEC4", - "value": 12 - }, - { - "name": "GLOBAL_VAR_TYPE_FLOAT", - "value": 13 - }, - { - "name": "GLOBAL_VAR_TYPE_VEC2", - "value": 14 - }, - { - "name": "GLOBAL_VAR_TYPE_VEC3", - "value": 15 - }, - { - "name": "GLOBAL_VAR_TYPE_VEC4", - "value": 16 - }, - { - "name": "GLOBAL_VAR_TYPE_COLOR", - "value": 17 - }, - { - "name": "GLOBAL_VAR_TYPE_RECT2", - "value": 18 - }, - { - "name": "GLOBAL_VAR_TYPE_MAT2", - "value": 19 - }, - { - "name": "GLOBAL_VAR_TYPE_MAT3", - "value": 20 - }, - { - "name": "GLOBAL_VAR_TYPE_MAT4", - "value": 21 - }, - { - "name": "GLOBAL_VAR_TYPE_TRANSFORM_2D", - "value": 22 - }, - { - "name": "GLOBAL_VAR_TYPE_TRANSFORM", - "value": 23 - }, - { - "name": "GLOBAL_VAR_TYPE_SAMPLER2D", - "value": 24 - }, - { - "name": "GLOBAL_VAR_TYPE_SAMPLER2DARRAY", - "value": 25 - }, - { - "name": "GLOBAL_VAR_TYPE_SAMPLER3D", - "value": 26 - }, - { - "name": "GLOBAL_VAR_TYPE_SAMPLERCUBE", - "value": 27 - }, - { - "name": "GLOBAL_VAR_TYPE_SAMPLEREXT", - "value": 28 - }, - { - "name": "GLOBAL_VAR_TYPE_MAX", - "value": 29 - } - ] - }, - { - "name": "RenderingInfo", - "is_bitfield": false, - "values": [ - { - "name": "RENDERING_INFO_TOTAL_OBJECTS_IN_FRAME", - "value": 0 - }, - { - "name": "RENDERING_INFO_TOTAL_PRIMITIVES_IN_FRAME", - "value": 1 - }, - { - "name": "RENDERING_INFO_TOTAL_DRAW_CALLS_IN_FRAME", - "value": 2 - }, - { - "name": "RENDERING_INFO_TEXTURE_MEM_USED", - "value": 3 - }, - { - "name": "RENDERING_INFO_BUFFER_MEM_USED", - "value": 4 - }, - { - "name": "RENDERING_INFO_VIDEO_MEM_USED", - "value": 5 - }, - { - "name": "RENDERING_INFO_PIPELINE_COMPILATIONS_CANVAS", - "value": 6 - }, - { - "name": "RENDERING_INFO_PIPELINE_COMPILATIONS_MESH", - "value": 7 - }, - { - "name": "RENDERING_INFO_PIPELINE_COMPILATIONS_SURFACE", - "value": 8 - }, - { - "name": "RENDERING_INFO_PIPELINE_COMPILATIONS_DRAW", - "value": 9 - }, - { - "name": "RENDERING_INFO_PIPELINE_COMPILATIONS_SPECIALIZATION", - "value": 10 - } - ] - }, - { - "name": "PipelineSource", - "is_bitfield": false, - "values": [ - { - "name": "PIPELINE_SOURCE_CANVAS", - "value": 0 - }, - { - "name": "PIPELINE_SOURCE_MESH", - "value": 1 - }, - { - "name": "PIPELINE_SOURCE_SURFACE", - "value": 2 - }, - { - "name": "PIPELINE_SOURCE_DRAW", - "value": 3 - }, - { - "name": "PIPELINE_SOURCE_SPECIALIZATION", - "value": 4 - }, - { - "name": "PIPELINE_SOURCE_MAX", - "value": 5 - } - ] - }, - { - "name": "SplashStretchMode", - "is_bitfield": false, - "values": [ - { - "name": "SPLASH_STRETCH_MODE_DISABLED", - "value": 0 - }, - { - "name": "SPLASH_STRETCH_MODE_KEEP", - "value": 1 - }, - { - "name": "SPLASH_STRETCH_MODE_KEEP_WIDTH", - "value": 2 - }, - { - "name": "SPLASH_STRETCH_MODE_KEEP_HEIGHT", - "value": 3 - }, - { - "name": "SPLASH_STRETCH_MODE_COVER", - "value": 4 - }, - { - "name": "SPLASH_STRETCH_MODE_IGNORE", - "value": 5 - } - ] - }, - { - "name": "Features", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_SHADERS", - "value": 0 - }, - { - "name": "FEATURE_MULTITHREADED", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "texture_2d_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2010018390, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "texture_2d_layered_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 913689023, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layers", - "type": "typedarray::Image" - }, - { - "name": "layered_type", - "type": "enum::RenderingServer.TextureLayeredType" - } - ] - }, - { - "name": "texture_3d_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4036838706, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "format", - "type": "enum::Image.Format" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - }, - { - "name": "mipmaps", - "type": "bool" - }, - { - "name": "data", - "type": "typedarray::Image" - } - ] - }, - { - "name": "texture_proxy_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "base", - "type": "RID" - } - ] - }, - { - "name": "texture_create_from_native_handle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1682977582, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "type", - "type": "enum::RenderingServer.TextureType" - }, - { - "name": "format", - "type": "enum::Image.Format" - }, - { - "name": "native_handle", - "type": "int", - "meta": "uint64" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - }, - { - "name": "layers", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "layered_type", - "type": "enum::RenderingServer.TextureLayeredType", - "default_value": "0" - } - ] - }, - { - "name": "texture_drawable_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1993613667, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "format", - "type": "enum::RenderingServer.TextureDrawableFormat" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "with_mipmaps", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "texture_2d_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 999539803, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "image", - "type": "Image" - }, - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "texture_3d_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684822712, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "data", - "type": "typedarray::Image" - } - ] - }, - { - "name": "texture_proxy_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "proxy_to", - "type": "RID" - } - ] - }, - { - "name": "texture_drawable_blit_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4077763890, - "arguments": [ - { - "name": "textures", - "type": "typedarray::RID" - }, - { - "name": "rect", - "type": "Rect2i" - }, - { - "name": "material", - "type": "RID" - }, - { - "name": "modulate", - "type": "Color" - }, - { - "name": "source_textures", - "type": "typedarray::RID" - }, - { - "name": "to_mipmap", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "texture_2d_placeholder_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "texture_2d_layered_placeholder_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1394585590, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layered_type", - "type": "enum::RenderingServer.TextureLayeredType" - } - ] - }, - { - "name": "texture_3d_placeholder_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "texture_2d_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4206205781, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_2d_layer_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2705440895, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "texture_3d_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Image" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_drawable_generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_drawable_get_default_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "texture_replace", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "by_texture", - "type": "RID" - } - ] - }, - { - "name": "texture_set_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "texture_set_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "texture_get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1932918979, - "return_value": { - "type": "enum::Image.Format" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "texture_set_force_redraw_if_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "texture_rd_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1434128712, - "hash_compatibility": [ - 3291180269 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "rd_texture", - "type": "RID" - }, - { - "name": "layer_type", - "type": "enum::RenderingServer.TextureLayeredType", - "default_value": "0" - } - ] - }, - { - "name": "texture_get_rd_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2790148051, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "srgb", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "texture_get_native_handle", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1834114100, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "texture", - "type": "RID" - }, - { - "name": "srgb", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "shader_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "shader_set_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "shader_set_path_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "shader_get_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - } - ] - }, - { - "name": "get_shader_parameter_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - } - ] - }, - { - "name": "shader_get_parameter_default", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "shader_set_default_texture_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4094001817, - "hash_compatibility": [ - 3864903085 - ], - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "shader_get_default_texture_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464608890, - "hash_compatibility": [ - 2523186822 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "material_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "material_set_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "shader_material", - "type": "RID" - }, - { - "name": "shader", - "type": "RID" - } - ] - }, - { - "name": "material_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3477296213, - "arguments": [ - { - "name": "material", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "material_get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "material", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "material_set_render_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "material", - "type": "RID" - }, - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "material_set_next_pass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "material", - "type": "RID" - }, - { - "name": "next_material", - "type": "RID" - } - ] - }, - { - "name": "material_set_use_debanding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "mesh_create_from_surfaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291747531, - "hash_compatibility": [ - 4007581507 - ], - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "surfaces", - "type": "typedarray::Dictionary" - }, - { - "name": "blend_shape_count", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "mesh_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "mesh_surface_get_format_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981368685, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - }, - { - "name": "array_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_format_vertex_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188363337, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_format_normal_tangent_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188363337, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_format_attribute_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188363337, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_format_skin_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188363337, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_format_index_stride", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3188363337, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "format", - "type": "bitfield::RenderingServer.ArrayFormat" - }, - { - "name": "vertex_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_add_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217542888, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "Dictionary" - } - ] - }, - { - "name": "mesh_add_surface_from_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2342446560, - "hash_compatibility": [ - 1247008646 - ], - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "primitive", - "type": "enum::RenderingServer.PrimitiveType" - }, - { - "name": "arrays", - "type": "Array" - }, - { - "name": "blend_shapes", - "type": "Array", - "default_value": "[]" - }, - { - "name": "lods", - "type": "Dictionary", - "default_value": "{}" - }, - { - "name": "compress_format", - "type": "bitfield::RenderingServer.ArrayFormat", - "default_value": "0" - } - ] - }, - { - "name": "mesh_get_blend_shape_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "mesh_set_blend_shape_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1294662092, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.BlendShapeMode" - } - ] - }, - { - "name": "mesh_get_blend_shape_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4282291819, - "return_value": { - "type": "enum::RenderingServer.BlendShapeMode" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "mesh_surface_set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "mesh_surface_get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_get_surface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 186674697, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1778388067, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_surface_get_blend_shape_arrays", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1778388067, - "return_value": { - "type": "typedarray::Array" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_get_surface_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "mesh_set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "mesh_get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "mesh_surface_remove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "mesh_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "mesh_surface_update_vertex_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900195149, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "mesh_surface_update_attribute_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900195149, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "mesh_surface_update_skin_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900195149, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "mesh_surface_update_index_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900195149, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "offset", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "mesh_set_shadow_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "mesh", - "type": "RID" - }, - { - "name": "shadow_mesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "multimesh_allocate_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 557240154, - "hash_compatibility": [ - 283685892 - ], - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "instances", - "type": "int", - "meta": "int32" - }, - { - "name": "transform_format", - "type": "enum::RenderingServer.MultimeshTransformFormat" - }, - { - "name": "color_format", - "type": "bool", - "default_value": "false" - }, - { - "name": "custom_data_format", - "type": "bool", - "default_value": "false" - }, - { - "name": "use_indirect", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "multimesh_get_instance_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_instance_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675327471, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "multimesh_instance_set_transform_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 736082694, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "multimesh_instance_set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 176975443, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "multimesh_instance_set_custom_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 176975443, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_data", - "type": "Color" - } - ] - }, - { - "name": "multimesh_get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_get_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "multimesh_get_custom_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 974181306, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_instance_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_instance_get_transform_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_instance_get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2946315076, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_instance_get_custom_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2946315076, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_set_visible_instances", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "visible", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_get_visible_instances", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_set_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2960552364, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "buffer", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "multimesh_get_command_buffer_rd_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_get_buffer_rd_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_get_buffer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3964669176, - "return_value": { - "type": "PackedFloat32Array" - }, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "multimesh_set_buffer_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659844711, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "buffer", - "type": "PackedFloat32Array" - }, - { - "name": "buffer_previous", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "multimesh_set_physics_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "interpolated", - "type": "bool" - } - ] - }, - { - "name": "multimesh_set_physics_interpolation_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3934808223, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "quality", - "type": "enum::RenderingServer.MultimeshPhysicsInterpolationQuality" - } - ] - }, - { - "name": "multimesh_instance_reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "multimesh_instances_reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "multimesh", - "type": "RID" - } - ] - }, - { - "name": "skeleton_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "skeleton_allocate_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1904426712, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "bones", - "type": "int", - "meta": "int32" - }, - { - "name": "is_2d_skeleton", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "skeleton_get_bone_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - } - ] - }, - { - "name": "skeleton_bone_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675327471, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "skeleton_bone_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1050775521, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "skeleton_bone_set_transform_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 736082694, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "skeleton_bone_get_transform_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1324854622, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "skeleton_set_base_transform_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "skeleton", - "type": "RID" - }, - { - "name": "base_transform", - "type": "Transform2D" - } - ] - }, - { - "name": "directional_light_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "omni_light_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "spot_light_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "area_light_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "light_set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "light_set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501936875, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "param", - "type": "enum::RenderingServer.LightParam" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "light_set_shadow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "light_set_projector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "light_set_negative", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "light_set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "light_set_distance_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1622292572, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - }, - { - "name": "begin", - "type": "float", - "meta": "float" - }, - { - "name": "shadow", - "type": "float", - "meta": "float" - }, - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "light_set_reverse_cull_face_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "light_set_shadow_caster_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "light_set_bake_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1048525260, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "bake_mode", - "type": "enum::RenderingServer.LightBakeMode" - } - ] - }, - { - "name": "light_set_max_sdfgi_cascade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "cascade", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "light_omni_set_shadow_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2552677200, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.LightOmniShadowMode" - } - ] - }, - { - "name": "light_directional_set_shadow_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 380462970, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.LightDirectionalShadowMode" - } - ] - }, - { - "name": "light_directional_set_blend_splits", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "light_directional_set_sky_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2559740754, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.LightDirectionalSkyMode" - } - ] - }, - { - "name": "light_area_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "light_area_set_normalize_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "light_projectors_set_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 43944325, - "arguments": [ - { - "name": "filter", - "type": "enum::RenderingServer.LightProjectorFilter" - } - ] - }, - { - "name": "lightmaps_set_bicubic_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "positional_soft_shadow_filter_set_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3613045266, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.ShadowQuality" - } - ] - }, - { - "name": "directional_soft_shadow_filter_set_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3613045266, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.ShadowQuality" - } - ] - }, - { - "name": "directional_shadow_atlas_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "is_16bits", - "type": "bool" - } - ] - }, - { - "name": "reflection_probe_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "reflection_probe_set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3853670147, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ReflectionProbeUpdateMode" - } - ] - }, - { - "name": "reflection_probe_set_intensity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "intensity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "reflection_probe_set_blend_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "blend_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "reflection_probe_set_ambient_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 184163074, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ReflectionProbeAmbientMode" - } - ] - }, - { - "name": "reflection_probe_set_ambient_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "reflection_probe_set_ambient_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "reflection_probe_set_max_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "reflection_probe_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "reflection_probe_set_origin_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "reflection_probe_set_as_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "reflection_probe_set_enable_box_projection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "reflection_probe_set_enable_shadows", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "reflection_probe_set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "reflection_probe_set_reflection_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "reflection_probe_set_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "resolution", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reflection_probe_set_mesh_lod_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "probe", - "type": "RID" - }, - { - "name": "pixels", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decal_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "decal_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "decal_set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3953344054, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "type", - "type": "enum::RenderingServer.DecalTexture" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "decal_set_emission_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decal_set_albedo_mix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "albedo_mix", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decal_set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "decal_set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "decal_set_distance_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2972769666, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - }, - { - "name": "begin", - "type": "float", - "meta": "float" - }, - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decal_set_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "above", - "type": "float", - "meta": "float" - }, - { - "name": "below", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decal_set_normal_fade", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "decal", - "type": "RID" - }, - { - "name": "fade", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "decals_set_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3519875702, - "arguments": [ - { - "name": "filter", - "type": "enum::RenderingServer.DecalFilter" - } - ] - }, - { - "name": "gi_set_use_half_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "half_resolution", - "type": "bool" - } - ] - }, - { - "name": "voxel_gi_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "voxel_gi_allocate_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4108223027, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "to_cell_xform", - "type": "Transform3D" - }, - { - "name": "aabb", - "type": "AABB" - }, - { - "name": "octree_size", - "type": "Vector3i" - }, - { - "name": "octree_cells", - "type": "PackedByteArray" - }, - { - "name": "data_cells", - "type": "PackedByteArray" - }, - { - "name": "distance_field", - "type": "PackedByteArray" - }, - { - "name": "level_counts", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "voxel_gi_get_octree_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2607699645, - "return_value": { - "type": "Vector3i" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_get_octree_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3348040486, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_get_data_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3348040486, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_get_distance_field", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3348040486, - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_get_level_counts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_get_to_cell_xform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1128465797, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - } - ] - }, - { - "name": "voxel_gi_set_dynamic_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "range", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_propagation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_baked_exposure_normalization", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "baked_exposure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_normal_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "voxel_gi_set_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "voxel_gi_set_use_two_bounces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "voxel_gi", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "voxel_gi_set_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1538689978, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.VoxelGIQuality" - } - ] - }, - { - "name": "lightmap_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "lightmap_set_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2646464759, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "light", - "type": "RID" - }, - { - "name": "uses_sh", - "type": "bool" - } - ] - }, - { - "name": "lightmap_set_probe_bounds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "bounds", - "type": "AABB" - } - ] - }, - { - "name": "lightmap_set_probe_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "interior", - "type": "bool" - } - ] - }, - { - "name": "lightmap_set_probe_capture_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3217845880, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "points", - "type": "PackedVector3Array" - }, - { - "name": "point_sh", - "type": "PackedColorArray" - }, - { - "name": "tetrahedra", - "type": "PackedInt32Array" - }, - { - "name": "bsp_tree", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "lightmap_get_probe_capture_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 808965560, - "return_value": { - "type": "PackedVector3Array" - }, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - } - ] - }, - { - "name": "lightmap_get_probe_capture_sh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1569415609, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - } - ] - }, - { - "name": "lightmap_get_probe_capture_tetrahedra", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - } - ] - }, - { - "name": "lightmap_get_probe_capture_bsp_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - } - ] - }, - { - "name": "lightmap_set_baked_exposure_normalization", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "baked_exposure", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "lightmap_set_probe_capture_update_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "particles_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3492270028, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ParticlesMode" - } - ] - }, - { - "name": "particles_set_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "emitting", - "type": "bool" - } - ] - }, - { - "name": "particles_get_emitting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "particles", - "type": "RID" - } - ] - }, - { - "name": "particles_set_amount", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "particles_set_amount_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_lifetime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "lifetime", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "particles_set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "one_shot", - "type": "bool" - } - ] - }, - { - "name": "particles_set_pre_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "particles_request_process_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1515254041, - "hash_compatibility": [ - 1794382983 - ], - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "process_time", - "type": "float", - "meta": "float" - }, - { - "name": "process_time_residual", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "particles_set_explosiveness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_randomness_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_interp_to_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_emitter_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "particles_set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "particles_set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "particles_set_use_local_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "particles_set_process_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "particles_set_fixed_fps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "fps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "particles_set_interpolate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "particles_set_fractional_delta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "particles_set_collision_base_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_transform_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3264971368, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "align", - "type": "enum::RenderingServer.ParticlesTransformAlign" - } - ] - }, - { - "name": "particles_set_transform_align_channel_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1303285813, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "channel_filter", - "type": "enum::RenderingServer.ParticlesTransformAlignCustomSrc" - } - ] - }, - { - "name": "particles_set_transform_align_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3065310065, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "rotation_axis", - "type": "enum::RenderingServer.ParticlesTransformAlignAxis" - } - ] - }, - { - "name": "particles_set_trails", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2010054925, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "length_sec", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_set_trail_bind_poses", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684822712, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "bind_poses", - "type": "typedarray::Transform3D" - } - ] - }, - { - "name": "particles_is_inactive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "particles", - "type": "RID" - } - ] - }, - { - "name": "particles_request_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "particles", - "type": "RID" - } - ] - }, - { - "name": "particles_restart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "particles", - "type": "RID" - } - ] - }, - { - "name": "particles_set_subemitter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "subemitter_particles", - "type": "RID" - } - ] - }, - { - "name": "particles_emit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4043136117, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "velocity", - "type": "Vector3" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "custom", - "type": "Color" - }, - { - "name": "emit_flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "particles_set_draw_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 935028487, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "order", - "type": "enum::RenderingServer.ParticlesDrawOrder" - } - ] - }, - { - "name": "particles_set_draw_passes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "particles_set_draw_pass_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "pass", - "type": "int", - "meta": "int32" - }, - { - "name": "mesh", - "type": "RID" - } - ] - }, - { - "name": "particles_get_current_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3952830260, - "return_value": { - "type": "AABB" - }, - "arguments": [ - { - "name": "particles", - "type": "RID" - } - ] - }, - { - "name": "particles_set_emission_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "particles", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "particles_collision_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "particles_collision_set_collision_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497044930, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "type", - "type": "enum::RenderingServer.ParticlesCollisionType" - } - ] - }, - { - "name": "particles_collision_set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "particles_collision_set_sphere_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_collision_set_box_extents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "extents", - "type": "Vector3" - } - ] - }, - { - "name": "particles_collision_set_attractor_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_collision_set_attractor_directionality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_collision_set_attractor_attenuation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "curve", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "particles_collision_set_field_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "particles_collision_height_field_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - } - ] - }, - { - "name": "particles_collision_set_height_field_resolution", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 962977297, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "resolution", - "type": "enum::RenderingServer.ParticlesCollisionHeightfieldResolution" - } - ] - }, - { - "name": "particles_collision_set_height_field_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "particles_collision", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "fog_volume_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "fog_volume_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3818703106, - "arguments": [ - { - "name": "fog_volume", - "type": "RID" - }, - { - "name": "shape", - "type": "enum::RenderingServer.FogVolumeShape" - } - ] - }, - { - "name": "fog_volume_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3227306858, - "arguments": [ - { - "name": "fog_volume", - "type": "RID" - }, - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "fog_volume_set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "fog_volume", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "visibility_notifier_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "visibility_notifier_set_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "notifier", - "type": "RID" - }, - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "visibility_notifier_set_callbacks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2689735388, - "arguments": [ - { - "name": "notifier", - "type": "RID" - }, - { - "name": "enter_callable", - "type": "Callable" - }, - { - "name": "exit_callable", - "type": "Callable" - } - ] - }, - { - "name": "occluder_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "occluder_set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3854404263, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "vertices", - "type": "PackedVector3Array" - }, - { - "name": "indices", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "camera_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "camera_set_perspective", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 157498339, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "fovy_degrees", - "type": "float", - "meta": "float" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_set_orthogonal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 157498339, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "size", - "type": "float", - "meta": "float" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_set_frustum", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1889878953, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "size", - "type": "float", - "meta": "float" - }, - { - "name": "offset", - "type": "Vector2" - }, - { - "name": "z_near", - "type": "float", - "meta": "float" - }, - { - "name": "z_far", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "camera_set_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "camera_set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "env", - "type": "RID" - } - ] - }, - { - "name": "camera_set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "effects", - "type": "RID" - } - ] - }, - { - "name": "camera_set_compositor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "compositor", - "type": "RID" - } - ] - }, - { - "name": "camera_set_use_vertical_aspect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "camera", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "viewport_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "viewport_set_use_xr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "use_xr", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3313592705, - "hash_compatibility": [ - 4288446313 - ], - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - }, - { - "name": "height", - "type": "int", - "meta": "int32" - }, - { - "name": "view_count", - "type": "int", - "meta": "int32", - "default_value": "1" - } - ] - }, - { - "name": "viewport_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_parent_viewport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "parent_viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_attach_to_screen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1062245816, - "hash_compatibility": [ - 1278520651 - ], - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "screen", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "viewport_set_render_direct_to_screen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_canvas_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "canvas_cull_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "viewport_set_scaling_3d_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2386524376, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "scaling_3d_mode", - "type": "enum::RenderingServer.ViewportScaling3DMode" - } - ] - }, - { - "name": "viewport_set_scaling_3d_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "viewport_set_fsr_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "viewport_set_texture_mipmap_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "mipmap_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "viewport_set_anisotropic_filtering_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3953214029, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "anisotropic_filtering_level", - "type": "enum::RenderingServer.ViewportAnisotropicFiltering" - } - ] - }, - { - "name": "viewport_set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3161116010, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "update_mode", - "type": "enum::RenderingServer.ViewportUpdateMode" - } - ] - }, - { - "name": "viewport_get_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3803901472, - "return_value": { - "type": "enum::RenderingServer.ViewportUpdateMode" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_set_clear_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3628367896, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "clear_mode", - "type": "enum::RenderingServer.ViewportClearMode" - } - ] - }, - { - "name": "viewport_get_render_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_set_disable_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_disable_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_environment_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2196892182, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ViewportEnvironmentMode" - } - ] - }, - { - "name": "viewport_attach_camera", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "camera", - "type": "RID" - } - ] - }, - { - "name": "viewport_set_scenario", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "scenario", - "type": "RID" - } - ] - }, - { - "name": "viewport_attach_canvas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - } - ] - }, - { - "name": "viewport_remove_canvas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - } - ] - }, - { - "name": "viewport_set_snap_2d_transforms_to_pixel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_snap_2d_vertices_to_pixel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_default_canvas_item_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1155129294, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "filter", - "type": "enum::RenderingServer.CanvasItemTextureFilter" - } - ] - }, - { - "name": "viewport_set_default_canvas_item_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1652956681, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "repeat", - "type": "enum::RenderingServer.CanvasItemTextureRepeat" - } - ] - }, - { - "name": "viewport_set_canvas_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3608606053, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "offset", - "type": "Transform2D" - } - ] - }, - { - "name": "viewport_set_canvas_stacking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3713930247, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "sublayer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "viewport_set_transparent_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_global_canvas_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "viewport_set_sdf_oversize_and_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1329198632, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "oversize", - "type": "enum::RenderingServer.ViewportSDFOversize" - }, - { - "name": "scale", - "type": "enum::RenderingServer.ViewportSDFScale" - } - ] - }, - { - "name": "viewport_set_positional_shadow_atlas_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1904426712, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "use_16_bits", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "viewport_set_positional_shadow_atlas_quadrant_subdivision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "quadrant", - "type": "int", - "meta": "int32" - }, - { - "name": "subdivision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "viewport_set_msaa_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3764433340, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "msaa", - "type": "enum::RenderingServer.ViewportMSAA" - } - ] - }, - { - "name": "viewport_set_msaa_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3764433340, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "msaa", - "type": "enum::RenderingServer.ViewportMSAA" - } - ] - }, - { - "name": "viewport_set_use_hdr_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_screen_space_aa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447279591, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ViewportScreenSpaceAA" - } - ] - }, - { - "name": "viewport_set_use_taa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_use_debanding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_use_occlusion_culling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "viewport_set_occlusion_rays_per_thread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rays_per_thread", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "viewport_set_occlusion_culling_build_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2069725696, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.ViewportOcclusionCullingBuildQuality" - } - ] - }, - { - "name": "viewport_get_render_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2041262392, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "type", - "type": "enum::RenderingServer.ViewportRenderInfoType" - }, - { - "name": "info", - "type": "enum::RenderingServer.ViewportRenderInfo" - } - ] - }, - { - "name": "viewport_set_debug_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2089420930, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "draw", - "type": "enum::RenderingServer.ViewportDebugDraw" - } - ] - }, - { - "name": "viewport_set_measure_render_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "viewport_get_measured_render_time_cpu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_get_measured_render_time_gpu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "viewport", - "type": "RID" - } - ] - }, - { - "name": "viewport_set_vrs_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 398809874, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ViewportVRSMode" - } - ] - }, - { - "name": "viewport_set_vrs_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2696154815, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.ViewportVRSUpdateMode" - } - ] - }, - { - "name": "viewport_set_vrs_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "viewport", - "type": "RID" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "sky_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "sky_set_radiance_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "sky", - "type": "RID" - }, - { - "name": "radiance_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "sky_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3279019937, - "arguments": [ - { - "name": "sky", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.SkyMode" - } - ] - }, - { - "name": "sky_set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "sky", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "sky_bake_panorama", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3875285818, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "sky", - "type": "RID" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - }, - { - "name": "bake_irradiance", - "type": "bool" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "compositor_effect_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "compositor_effect_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "effect", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "compositor_effect_set_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 487412485, - "arguments": [ - { - "name": "effect", - "type": "RID" - }, - { - "name": "callback_type", - "type": "enum::RenderingServer.CompositorEffectCallbackType" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "compositor_effect_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3659527075, - "arguments": [ - { - "name": "effect", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::RenderingServer.CompositorEffectFlags" - }, - { - "name": "set", - "type": "bool" - } - ] - }, - { - "name": "compositor_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "compositor_set_compositor_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684822712, - "arguments": [ - { - "name": "compositor", - "type": "RID" - }, - { - "name": "effects", - "type": "typedarray::RID" - } - ] - }, - { - "name": "environment_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "environment_set_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937328877, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "bg", - "type": "enum::RenderingServer.EnvironmentBG" - } - ] - }, - { - "name": "environment_set_camera_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "environment_set_sky", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "sky", - "type": "RID" - } - ] - }, - { - "name": "environment_set_sky_custom_fov", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_sky_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1735850857, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "orientation", - "type": "Basis" - } - ] - }, - { - "name": "environment_set_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "environment_set_bg_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "multiplier", - "type": "float", - "meta": "float" - }, - { - "name": "exposure_value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_canvas_max_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "max_layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "environment_set_ambient_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214961493, - "hash_compatibility": [ - 491659071 - ], - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "ambient", - "type": "enum::RenderingServer.EnvironmentAmbientSource", - "default_value": "0" - }, - { - "name": "energy", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "sky_contribution", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "reflection_source", - "type": "enum::RenderingServer.EnvironmentReflectionSource", - "default_value": "0" - } - ] - }, - { - "name": "environment_set_glow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2421724940, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "levels", - "type": "PackedFloat32Array" - }, - { - "name": "intensity", - "type": "float", - "meta": "float" - }, - { - "name": "strength", - "type": "float", - "meta": "float" - }, - { - "name": "mix", - "type": "float", - "meta": "float" - }, - { - "name": "bloom_threshold", - "type": "float", - "meta": "float" - }, - { - "name": "blend_mode", - "type": "enum::RenderingServer.EnvironmentGlowBlendMode" - }, - { - "name": "hdr_bleed_threshold", - "type": "float", - "meta": "float" - }, - { - "name": "hdr_bleed_scale", - "type": "float", - "meta": "float" - }, - { - "name": "hdr_luminance_cap", - "type": "float", - "meta": "float" - }, - { - "name": "glow_map_strength", - "type": "float", - "meta": "float" - }, - { - "name": "glow_map", - "type": "RID" - } - ] - }, - { - "name": "environment_set_tonemap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2914312638, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "tone_mapper", - "type": "enum::RenderingServer.EnvironmentToneMapper" - }, - { - "name": "exposure", - "type": "float", - "meta": "float" - }, - { - "name": "white", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_tonemap_agx_contrast", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "agx_contrast", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_adjustment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 876799838, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "brightness", - "type": "float", - "meta": "float" - }, - { - "name": "contrast", - "type": "float", - "meta": "float" - }, - { - "name": "saturation", - "type": "float", - "meta": "float" - }, - { - "name": "use_1d_color_correction", - "type": "bool" - }, - { - "name": "color_correction", - "type": "RID" - } - ] - }, - { - "name": "environment_set_ssr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3607294374, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "max_steps", - "type": "int", - "meta": "int32" - }, - { - "name": "fade_in", - "type": "float", - "meta": "float" - }, - { - "name": "fade_out", - "type": "float", - "meta": "float" - }, - { - "name": "depth_tolerance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_ssao", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3994732740, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "intensity", - "type": "float", - "meta": "float" - }, - { - "name": "power", - "type": "float", - "meta": "float" - }, - { - "name": "detail", - "type": "float", - "meta": "float" - }, - { - "name": "horizon", - "type": "float", - "meta": "float" - }, - { - "name": "sharpness", - "type": "float", - "meta": "float" - }, - { - "name": "light_affect", - "type": "float", - "meta": "float" - }, - { - "name": "ao_channel_affect", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_fog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 105051629, - "hash_compatibility": [ - 2793577733 - ], - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "light_color", - "type": "Color" - }, - { - "name": "light_energy", - "type": "float", - "meta": "float" - }, - { - "name": "sun_scatter", - "type": "float", - "meta": "float" - }, - { - "name": "density", - "type": "float", - "meta": "float" - }, - { - "name": "height", - "type": "float", - "meta": "float" - }, - { - "name": "height_density", - "type": "float", - "meta": "float" - }, - { - "name": "aerial_perspective", - "type": "float", - "meta": "float" - }, - { - "name": "sky_affect", - "type": "float", - "meta": "float" - }, - { - "name": "fog_mode", - "type": "enum::RenderingServer.EnvironmentFogMode", - "default_value": "0" - } - ] - }, - { - "name": "environment_set_fog_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 157498339, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "curve", - "type": "float", - "meta": "float" - }, - { - "name": "begin", - "type": "float", - "meta": "float" - }, - { - "name": "end", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_sdfgi", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3519144388, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "cascades", - "type": "int", - "meta": "int32" - }, - { - "name": "min_cell_size", - "type": "float", - "meta": "float" - }, - { - "name": "y_scale", - "type": "enum::RenderingServer.EnvironmentSDFGIYScale" - }, - { - "name": "use_occlusion", - "type": "bool" - }, - { - "name": "bounce_feedback", - "type": "float", - "meta": "float" - }, - { - "name": "read_sky", - "type": "bool" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - }, - { - "name": "normal_bias", - "type": "float", - "meta": "float" - }, - { - "name": "probe_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_volumetric_fog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1553633833, - "arguments": [ - { - "name": "env", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "density", - "type": "float", - "meta": "float" - }, - { - "name": "albedo", - "type": "Color" - }, - { - "name": "emission", - "type": "Color" - }, - { - "name": "emission_energy", - "type": "float", - "meta": "float" - }, - { - "name": "anisotropy", - "type": "float", - "meta": "float" - }, - { - "name": "length", - "type": "float", - "meta": "float" - }, - { - "name": "detail_spread", - "type": "float", - "meta": "float" - }, - { - "name": "gi_inject", - "type": "float", - "meta": "float" - }, - { - "name": "temporal_reprojection", - "type": "bool" - }, - { - "name": "temporal_reprojection_amount", - "type": "float", - "meta": "float" - }, - { - "name": "ambient_inject", - "type": "float", - "meta": "float" - }, - { - "name": "sky_affect", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_glow_set_use_bicubic_upscale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "environment_set_ssr_half_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "half_size", - "type": "bool" - } - ] - }, - { - "name": "environment_set_ssr_roughness_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1190026788, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.EnvironmentSSRRoughnessQuality" - } - ] - }, - { - "name": "environment_set_ssao_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 189753569, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.EnvironmentSSAOQuality" - }, - { - "name": "half_size", - "type": "bool" - }, - { - "name": "adaptive_target", - "type": "float", - "meta": "float" - }, - { - "name": "blur_passes", - "type": "int", - "meta": "int32" - }, - { - "name": "fadeout_from", - "type": "float", - "meta": "float" - }, - { - "name": "fadeout_to", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_ssil_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1713836683, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.EnvironmentSSILQuality" - }, - { - "name": "half_size", - "type": "bool" - }, - { - "name": "adaptive_target", - "type": "float", - "meta": "float" - }, - { - "name": "blur_passes", - "type": "int", - "meta": "int32" - }, - { - "name": "fadeout_from", - "type": "float", - "meta": "float" - }, - { - "name": "fadeout_to", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "environment_set_sdfgi_ray_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 340137951, - "arguments": [ - { - "name": "ray_count", - "type": "enum::RenderingServer.EnvironmentSDFGIRayCount" - } - ] - }, - { - "name": "environment_set_sdfgi_frames_to_converge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2182444374, - "arguments": [ - { - "name": "frames", - "type": "enum::RenderingServer.EnvironmentSDFGIFramesToConverge" - } - ] - }, - { - "name": "environment_set_sdfgi_frames_to_update_light", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1251144068, - "arguments": [ - { - "name": "frames", - "type": "enum::RenderingServer.EnvironmentSDFGIFramesToUpdateLight" - } - ] - }, - { - "name": "environment_set_volumetric_fog_volume_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "environment_set_volumetric_fog_filter_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "environment_bake_panorama", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2452908646, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "environment", - "type": "RID" - }, - { - "name": "bake_irradiance", - "type": "bool" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "screen_space_roughness_limiter_set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 916716790, - "arguments": [ - { - "name": "enable", - "type": "bool" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - }, - { - "name": "limit", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "sub_surface_scattering_set_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 64571803, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.SubSurfaceScatteringQuality" - } - ] - }, - { - "name": "sub_surface_scattering_set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017552074, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - }, - { - "name": "depth_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_attributes_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "camera_attributes_set_dof_blur_quality", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2220136795, - "arguments": [ - { - "name": "quality", - "type": "enum::RenderingServer.DOFBlurQuality" - }, - { - "name": "use_jitter", - "type": "bool" - } - ] - }, - { - "name": "camera_attributes_set_dof_blur_bokeh_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1205058394, - "arguments": [ - { - "name": "shape", - "type": "enum::RenderingServer.DOFBokehShape" - } - ] - }, - { - "name": "camera_attributes_set_dof_blur", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 316272616, - "arguments": [ - { - "name": "camera_attributes", - "type": "RID" - }, - { - "name": "far_enable", - "type": "bool" - }, - { - "name": "far_distance", - "type": "float", - "meta": "float" - }, - { - "name": "far_transition", - "type": "float", - "meta": "float" - }, - { - "name": "near_enable", - "type": "bool" - }, - { - "name": "near_distance", - "type": "float", - "meta": "float" - }, - { - "name": "near_transition", - "type": "float", - "meta": "float" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_attributes_set_exposure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2513314492, - "arguments": [ - { - "name": "camera_attributes", - "type": "RID" - }, - { - "name": "multiplier", - "type": "float", - "meta": "float" - }, - { - "name": "normalization", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "camera_attributes_set_auto_exposure", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4266986332, - "arguments": [ - { - "name": "camera_attributes", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "min_sensitivity", - "type": "float", - "meta": "float" - }, - { - "name": "max_sensitivity", - "type": "float", - "meta": "float" - }, - { - "name": "speed", - "type": "float", - "meta": "float" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "scenario_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "scenario_set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "scenario", - "type": "RID" - }, - { - "name": "environment", - "type": "RID" - } - ] - }, - { - "name": "scenario_set_fallback_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "scenario", - "type": "RID" - }, - { - "name": "environment", - "type": "RID" - } - ] - }, - { - "name": "scenario_set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "scenario", - "type": "RID" - }, - { - "name": "effects", - "type": "RID" - } - ] - }, - { - "name": "scenario_set_compositor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "scenario", - "type": "RID" - }, - { - "name": "compositor", - "type": "RID" - } - ] - }, - { - "name": "instance_create2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 746547085, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "base", - "type": "RID" - }, - { - "name": "scenario", - "type": "RID" - } - ] - }, - { - "name": "instance_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "instance_set_base", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "base", - "type": "RID" - } - ] - }, - { - "name": "instance_set_scenario", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "scenario", - "type": "RID" - } - ] - }, - { - "name": "instance_set_layer_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "instance_set_pivot_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1280615259, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "sorting_offset", - "type": "float", - "meta": "float" - }, - { - "name": "use_aabb_center", - "type": "bool" - } - ] - }, - { - "name": "instance_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3935195649, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "instance_attach_object_instance_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "id", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "instance_set_blend_shape_weight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "shape", - "type": "int", - "meta": "int32" - }, - { - "name": "weight", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "instance_set_surface_override_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2310537182, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "instance_set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "instance_geometry_set_transparency", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "transparency", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "instance_teleport", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "instance", - "type": "RID" - } - ] - }, - { - "name": "instance_set_custom_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3696536120, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "aabb", - "type": "AABB" - } - ] - }, - { - "name": "instance_attach_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "skeleton", - "type": "RID" - } - ] - }, - { - "name": "instance_set_extra_visibility_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "instance_set_visibility_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parent", - "type": "RID" - } - ] - }, - { - "name": "instance_set_ignore_culling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "instance_geometry_set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1014989537, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "flag", - "type": "enum::RenderingServer.InstanceFlags" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "instance_geometry_set_cast_shadows_setting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3768836020, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "shadow_casting_setting", - "type": "enum::RenderingServer.ShadowCastingSetting" - } - ] - }, - { - "name": "instance_geometry_set_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "instance_geometry_set_material_overlay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "instance_geometry_set_visibility_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4263925858, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "min", - "type": "float", - "meta": "float" - }, - { - "name": "max", - "type": "float", - "meta": "float" - }, - { - "name": "min_margin", - "type": "float", - "meta": "float" - }, - { - "name": "max_margin", - "type": "float", - "meta": "float" - }, - { - "name": "fade_mode", - "type": "enum::RenderingServer.VisibilityRangeFadeMode" - } - ] - }, - { - "name": "instance_geometry_set_lightmap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 536974962, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "lightmap", - "type": "RID" - }, - { - "name": "lightmap_uv_scale", - "type": "Rect2" - }, - { - "name": "lightmap_slice", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "instance_geometry_set_lod_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "lod_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "instance_geometry_set_shader_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3477296213, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "instance_geometry_get_shader_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "instance_geometry_get_shader_parameter_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "instance_geometry_get_shader_parameter_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - } - ] - }, - { - "name": "instances_cull_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2570105777, - "hash_compatibility": [ - 2031554939 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "aabb", - "type": "AABB" - }, - { - "name": "scenario", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "instances_cull_ray", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2208759584, - "hash_compatibility": [ - 3388524336 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "from", - "type": "Vector3" - }, - { - "name": "to", - "type": "Vector3" - }, - { - "name": "scenario", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "instances_cull_convex", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2488539944, - "hash_compatibility": [ - 3690700105 - ], - "return_value": { - "type": "PackedInt64Array" - }, - "arguments": [ - { - "name": "convex", - "type": "typedarray::Plane" - }, - { - "name": "scenario", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "bake_render_uv2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1904608558, - "return_value": { - "type": "typedarray::Image" - }, - "arguments": [ - { - "name": "base", - "type": "RID" - }, - { - "name": "material_overrides", - "type": "typedarray::RID" - }, - { - "name": "image_size", - "type": "Vector2i" - } - ] - }, - { - "name": "canvas_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_set_item_mirroring", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2343975398, - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "item", - "type": "RID" - }, - { - "name": "mirroring", - "type": "Vector2" - } - ] - }, - { - "name": "canvas_set_item_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1739512717, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "repeat_size", - "type": "Vector2" - }, - { - "name": "repeat_times", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "canvas_set_disable_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "canvas_texture_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_texture_set_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3822119138, - "arguments": [ - { - "name": "canvas_texture", - "type": "RID" - }, - { - "name": "channel", - "type": "enum::RenderingServer.CanvasTextureChannel" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "canvas_texture_set_shading_parameters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2124967469, - "arguments": [ - { - "name": "canvas_texture", - "type": "RID" - }, - { - "name": "base_color", - "type": "Color" - }, - { - "name": "shininess", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "canvas_texture_set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1155129294, - "arguments": [ - { - "name": "canvas_texture", - "type": "RID" - }, - { - "name": "filter", - "type": "enum::RenderingServer.CanvasItemTextureFilter" - } - ] - }, - { - "name": "canvas_texture_set_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1652956681, - "arguments": [ - { - "name": "canvas_texture", - "type": "RID" - }, - { - "name": "repeat", - "type": "enum::RenderingServer.CanvasItemTextureRepeat" - } - ] - }, - { - "name": "canvas_item_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_item_set_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "parent", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_set_default_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1155129294, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "filter", - "type": "enum::RenderingServer.CanvasItemTextureFilter" - } - ] - }, - { - "name": "canvas_item_set_default_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1652956681, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "repeat", - "type": "enum::RenderingServer.CanvasItemTextureRepeat" - } - ] - }, - { - "name": "canvas_item_set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_light_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_item_set_visibility_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "visibility_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "canvas_item_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_item_set_clip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "clip", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_distance_field_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_custom_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1333997032, - "hash_compatibility": [ - 2180266943 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "use_custom_rect", - "type": "bool" - }, - { - "name": "rect", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - } - ] - }, - { - "name": "canvas_item_set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "canvas_item_set_self_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "canvas_item_set_draw_behind_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "interpolated", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "item", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_transform_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_item_add_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819681853, - "hash_compatibility": [ - 2843922985 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "from", - "type": "Vector2" - }, - { - "name": "to", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_polyline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3098767073, - "hash_compatibility": [ - 3438017257 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_multiline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3098767073, - "hash_compatibility": [ - 2088642721, - 3176074788 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "-1.0" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3523446176, - "hash_compatibility": [ - 934531857 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_circle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 333077949, - "hash_compatibility": [ - 2439351960 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_ellipse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4188642757, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "major", - "type": "float", - "meta": "float" - }, - { - "name": "minor", - "type": "float", - "meta": "float" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "antialiased", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_texture_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 324864032, - "hash_compatibility": [ - 3205360868 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "tile", - "type": "bool", - "default_value": "false" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "canvas_item_add_msdf_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 97408773, - "hash_compatibility": [ - 349157222 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "px_range", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "scale", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "canvas_item_add_lcd_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 359793297, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "canvas_item_add_texture_rect_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 485157892, - "hash_compatibility": [ - 2782979504 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - }, - { - "name": "clip_uv", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "canvas_item_add_nine_patch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 389957886, - "hash_compatibility": [ - 904428547 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "source", - "type": "Rect2" - }, - { - "name": "texture", - "type": "RID" - }, - { - "name": "topleft", - "type": "Vector2" - }, - { - "name": "bottomright", - "type": "Vector2" - }, - { - "name": "x_axis_mode", - "type": "enum::RenderingServer.NinePatchAxisMode", - "default_value": "0" - }, - { - "name": "y_axis_mode", - "type": "enum::RenderingServer.NinePatchAxisMode", - "default_value": "0" - }, - { - "name": "draw_center", - "type": "bool", - "default_value": "true" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - } - ] - }, - { - "name": "canvas_item_add_primitive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3731601077, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "uvs", - "type": "PackedVector2Array" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_add_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3580000528, - "hash_compatibility": [ - 2907936855 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "uvs", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "texture", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "canvas_item_add_triangle_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 660261329, - "hash_compatibility": [ - 749685193 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "indices", - "type": "PackedInt32Array" - }, - { - "name": "points", - "type": "PackedVector2Array" - }, - { - "name": "colors", - "type": "PackedColorArray" - }, - { - "name": "uvs", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "bones", - "type": "PackedInt32Array", - "default_value": "PackedInt32Array()" - }, - { - "name": "weights", - "type": "PackedFloat32Array", - "default_value": "PackedFloat32Array()" - }, - { - "name": "texture", - "type": "RID", - "default_value": "RID()" - }, - { - "name": "count", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "canvas_item_add_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 316450961, - "hash_compatibility": [ - 3548053052 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "mesh", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D", - "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "texture", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "canvas_item_add_multimesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2131855138, - "hash_compatibility": [ - 1541595251 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "mesh", - "type": "RID" - }, - { - "name": "texture", - "type": "RID", - "default_value": "RID()" - } - ] - }, - { - "name": "canvas_item_add_particles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2575754278, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "particles", - "type": "RID" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_add_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_item_add_clip_ignore", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_add_animation_slice", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2646834499, - "hash_compatibility": [ - 4107531031 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "animation_length", - "type": "float", - "meta": "double" - }, - { - "name": "slice_begin", - "type": "float", - "meta": "double" - }, - { - "name": "slice_end", - "type": "float", - "meta": "double" - }, - { - "name": "offset", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "canvas_item_set_sort_children_by_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_z_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "z_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_item_set_z_as_relative_to_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_copy_to_backbuffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2429202503, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "canvas_item_attach_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "skeleton", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "item", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_set_draw_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_item_set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "material", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_set_use_parent_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_item_set_instance_shader_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3477296213, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "canvas_item_get_instance_shader_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "canvas_item_get_instance_shader_parameter_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2621281810, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - }, - { - "name": "parameter", - "type": "StringName" - } - ] - }, - { - "name": "canvas_item_get_instance_shader_parameter_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "instance", - "type": "RID" - } - ] - }, - { - "name": "canvas_item_set_visibility_notifier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3568945579, - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "area", - "type": "Rect2" - }, - { - "name": "enter_callable", - "type": "Callable" - }, - { - "name": "exit_callable", - "type": "Callable" - } - ] - }, - { - "name": "canvas_item_set_canvas_group_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3973586316, - "hash_compatibility": [ - 41973386 - ], - "arguments": [ - { - "name": "item", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.CanvasGroupMode" - }, - { - "name": "clear_margin", - "type": "float", - "meta": "float", - "default_value": "5.0" - }, - { - "name": "fit_empty", - "type": "bool", - "default_value": "false" - }, - { - "name": "fit_margin", - "type": "float", - "meta": "float", - "default_value": "0.0" - }, - { - "name": "blur_mipmaps", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "debug_canvas_item_get_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 624227424, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "item", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_light_attach_to_canvas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_set_texture_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "canvas_light_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_light_set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "texture", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_set_texture_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3201125042, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "canvas_light_set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "canvas_light_set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "canvas_light_set_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "canvas_light_set_z_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "min_z", - "type": "int", - "meta": "int32" - }, - { - "name": "max_z", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_light_set_layer_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288446313, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "min_layer", - "type": "int", - "meta": "int32" - }, - { - "name": "max_layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_light_set_item_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_light_set_item_shadow_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_light_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2957564891, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.CanvasLightMode" - } - ] - }, - { - "name": "canvas_light_set_shadow_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_set_shadow_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 393119659, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "filter", - "type": "enum::RenderingServer.CanvasLightShadowFilter" - } - ] - }, - { - "name": "canvas_light_set_shadow_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "canvas_light_set_shadow_smooth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "smooth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "canvas_light_set_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 804895945, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.CanvasLightBlendMode" - } - ] - }, - { - "name": "canvas_light_set_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "interpolated", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "light", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_transform_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "light", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_light_occluder_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_light_occluder_attach_to_canvas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_occluder_set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_occluder_set_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 395945892, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "polygon", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_occluder_set_as_sdf_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_occluder_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_light_occluder_set_light_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "canvas_light_occluder_set_interpolated", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "interpolated", - "type": "bool" - } - ] - }, - { - "name": "canvas_light_occluder_reset_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "occluder", - "type": "RID" - } - ] - }, - { - "name": "canvas_light_occluder_transform_physics_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "occluder", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "canvas_occluder_polygon_create", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "canvas_occluder_polygon_set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2103882027, - "arguments": [ - { - "name": "occluder_polygon", - "type": "RID" - }, - { - "name": "shape", - "type": "PackedVector2Array" - }, - { - "name": "closed", - "type": "bool" - } - ] - }, - { - "name": "canvas_occluder_polygon_set_cull_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1839404663, - "arguments": [ - { - "name": "occluder_polygon", - "type": "RID" - }, - { - "name": "mode", - "type": "enum::RenderingServer.CanvasOccluderPolygonCullMode" - } - ] - }, - { - "name": "canvas_set_shadow_texture_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "global_shader_parameter_add", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 463390080, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "type", - "type": "enum::RenderingServer.GlobalShaderParameterType" - }, - { - "name": "default_value", - "type": "Variant" - } - ] - }, - { - "name": "global_shader_parameter_remove", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "global_shader_parameter_get_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "global_shader_parameter_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "global_shader_parameter_set_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "global_shader_parameter_get", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "global_shader_parameter_get_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1601414142, - "return_value": { - "type": "enum::RenderingServer.GlobalShaderParameterType" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "request_frame_drawn_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "has_changed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_rendering_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3763192241, - "return_value": { - "type": "int", - "meta": "uint64" - }, - "arguments": [ - { - "name": "info", - "type": "enum::RenderingServer.RenderingInfo" - } - ] - }, - { - "name": "get_video_adapter_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_video_adapter_vendor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_video_adapter_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3099547011, - "return_value": { - "type": "enum::RenderingDevice.DeviceType" - } - }, - { - "name": "get_video_adapter_api_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_current_rendering_driver_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_current_rendering_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "make_sphere_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2251015897, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "latitudes", - "type": "int", - "meta": "int32" - }, - { - "name": "longitudes", - "type": "int", - "meta": "int32" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_test_cube", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_test_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_white_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_boot_image_with_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1104470771, - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "stretch_mode", - "type": "enum::RenderingServer.SplashStretchMode" - }, - { - "name": "use_filter", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_boot_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3759744527, - "hash_compatibility": [ - 2244367877 - ], - "arguments": [ - { - "name": "image", - "type": "Image" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "scale", - "type": "bool" - }, - { - "name": "use_filter", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_default_clear_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200896285, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_default_clear_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "has_os_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "String" - } - ] - }, - { - "name": "set_debug_generate_wireframes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "generate", - "type": "bool" - } - ] - }, - { - "name": "is_render_loop_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_render_loop_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_frame_setup_time_cpu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "force_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "force_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1076185472, - "arguments": [ - { - "name": "swap_buffers", - "type": "bool", - "default_value": "true" - }, - { - "name": "frame_step", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "get_rendering_device", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1405107940, - "return_value": { - "type": "RenderingDevice" - } - }, - { - "name": "create_local_rendering_device", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1405107940, - "return_value": { - "type": "RenderingDevice" - } - }, - { - "name": "is_on_render_thread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "call_on_render_thread", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 598462696, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::RenderingServer.Features" - } - ] - } - ], - "signals": [ - { - "name": "frame_pre_draw" - }, - { - "name": "frame_post_draw" - } - ], - "properties": [ - { - "type": "bool", - "name": "render_loop_enabled", - "setter": "set_render_loop_enabled", - "getter": "is_render_loop_enabled" - } - ] - }, - { - "name": "Resource", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "DeepDuplicateMode", - "is_bitfield": false, - "values": [ - { - "name": "DEEP_DUPLICATE_NONE", - "value": 0 - }, - { - "name": "DEEP_DUPLICATE_INTERNAL", - "value": 1 - }, - { - "name": "DEEP_DUPLICATE_ALL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_setup_local_to_scene", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_rid", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "_reset_state", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_set_path_cache", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3089850668, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "take_over_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_path_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_local_to_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_local_to_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_local_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "setup_local_to_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "reset_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_id_for_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "id", - "type": "String" - } - ] - }, - { - "name": "get_id_for_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "is_built_in", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "generate_scene_unique_id", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "set_scene_unique_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "id", - "type": "String" - } - ] - }, - { - "name": "get_scene_unique_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "emit_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "duplicate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 482882304, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "deep", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "duplicate_deep", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 905779109, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "deep_subresources_mode", - "type": "enum::Resource.DeepDuplicateMode", - "default_value": "1" - } - ] - }, - { - "name": "copy_from_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3338311164, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - } - ], - "signals": [ - { - "name": "changed" - }, - { - "name": "setup_local_to_scene_requested" - } - ], - "properties": [ - { - "type": "bool", - "name": "resource_local_to_scene", - "setter": "set_local_to_scene", - "getter": "is_local_to_scene" - }, - { - "type": "String", - "name": "resource_path", - "setter": "set_path", - "getter": "get_path" - }, - { - "type": "String", - "name": "resource_name", - "setter": "set_name", - "getter": "get_name" - }, - { - "type": "String", - "name": "resource_scene_unique_id", - "setter": "set_scene_unique_id", - "getter": "get_scene_unique_id" - } - ] - }, - { - "name": "ResourceFormatLoader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "CacheMode", - "is_bitfield": false, - "values": [ - { - "name": "CACHE_MODE_IGNORE", - "value": 0 - }, - { - "name": "CACHE_MODE_REUSE", - "value": 1 - }, - { - "name": "CACHE_MODE_REPLACE", - "value": 2 - }, - { - "name": "CACHE_MODE_IGNORE_DEEP", - "value": 3 - }, - { - "name": "CACHE_MODE_REPLACE_DEEP", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_recognize_path", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2594487047, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "type", - "type": "StringName" - } - ] - }, - { - "name": "_handles_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "StringName" - } - ] - }, - { - "name": "_get_resource_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_resource_script_class", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_resource_uid", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_dependencies", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 6257701, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "add_types", - "type": "bool" - } - ] - }, - { - "name": "_rename_dependencies", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 223715120, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "renames", - "type": "Dictionary" - } - ] - }, - { - "name": "_exists", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_get_classes_used", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_load", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2885906527, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "original_path", - "type": "String" - }, - { - "name": "use_sub_threads", - "type": "bool" - }, - { - "name": "cache_mode", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "ResourceFormatSaver", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "_save", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2794699034, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "_set_uid", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 993915709, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "uid", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_recognize", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3190994482, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1567505034, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "_recognize_path", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 710996192, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource" - }, - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "ResourceImporter", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ImportOrder", - "is_bitfield": false, - "values": [ - { - "name": "IMPORT_ORDER_DEFAULT", - "value": 0 - }, - { - "name": "IMPORT_ORDER_SCENE", - "value": 100 - } - ] - } - ], - "methods": [ - { - "name": "_get_build_dependencies", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "ResourceImporterBMFont", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterBitMap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterCSVTranslation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterDynamicFont", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterImage", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterImageFont", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterLayeredTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterMP3", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterOBJ", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterOggVorbis", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor", - "methods": [ - { - "name": "load_from_buffer", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 354904730, - "return_value": { - "type": "AudioStreamOggVorbis" - }, - "arguments": [ - { - "name": "stream_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "load_from_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 797568536, - "return_value": { - "type": "AudioStreamOggVorbis" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "ResourceImporterSVG", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterScene", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterShaderFile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterTextureAtlas", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceImporterWAV", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ResourceImporter", - "api_type": "editor" - }, - { - "name": "ResourceLoader", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "ThreadLoadStatus", - "is_bitfield": false, - "values": [ - { - "name": "THREAD_LOAD_INVALID_RESOURCE", - "value": 0 - }, - { - "name": "THREAD_LOAD_IN_PROGRESS", - "value": 1 - }, - { - "name": "THREAD_LOAD_FAILED", - "value": 2 - }, - { - "name": "THREAD_LOAD_LOADED", - "value": 3 - } - ] - }, - { - "name": "CacheMode", - "is_bitfield": false, - "values": [ - { - "name": "CACHE_MODE_IGNORE", - "value": 0 - }, - { - "name": "CACHE_MODE_REUSE", - "value": 1 - }, - { - "name": "CACHE_MODE_REPLACE", - "value": 2 - }, - { - "name": "CACHE_MODE_IGNORE_DEEP", - "value": 3 - }, - { - "name": "CACHE_MODE_REPLACE_DEEP", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "load_threaded_request", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614384323, - "hash_compatibility": [ - 1939848623 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "type_hint", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "use_sub_threads", - "type": "bool", - "default_value": "false" - }, - { - "name": "cache_mode", - "type": "enum::ResourceLoader.CacheMode", - "default_value": "1" - } - ] - }, - { - "name": "load_threaded_get_status", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4137685479, - "hash_compatibility": [ - 3931021148 - ], - "return_value": { - "type": "enum::ResourceLoader.ThreadLoadStatus" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "progress", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "load_threaded_get", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1748875256, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3358495409, - "hash_compatibility": [ - 2622212233 - ], - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "type_hint", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "cache_mode", - "type": "enum::ResourceLoader.CacheMode", - "default_value": "1" - } - ] - }, - { - "name": "get_recognized_extensions_for_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "add_resource_format_loader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2896595483, - "arguments": [ - { - "name": "format_loader", - "type": "ResourceFormatLoader", - "meta": "required" - }, - { - "name": "at_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_resource_format_loader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 405397102, - "arguments": [ - { - "name": "format_loader", - "type": "ResourceFormatLoader", - "meta": "required" - } - ] - }, - { - "name": "set_abort_on_missing_resources", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "abort", - "type": "bool" - } - ] - }, - { - "name": "get_dependencies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "has_cached", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_cached_ref", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1748875256, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "exists", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4185558881, - "hash_compatibility": [ - 2220807150 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "type_hint", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "get_resource_uid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "list_directory", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3538744774, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "directory_path", - "type": "String" - } - ] - } - ] - }, - { - "name": "ResourcePreloader", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "add_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1168801743, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "remove_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "rename_resource", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "newname", - "type": "StringName" - } - ] - }, - { - "name": "has_resource", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_resource", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3742749261, - "return_value": { - "type": "Resource" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_resource_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - } - ], - "properties": [ - { - "type": "Array", - "name": "resources", - "setter": "_set_resources", - "getter": "_get_resources" - } - ] - }, - { - "name": "ResourceSaver", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "SaverFlags", - "is_bitfield": true, - "values": [ - { - "name": "FLAG_NONE", - "value": 0 - }, - { - "name": "FLAG_RELATIVE_PATHS", - "value": 1 - }, - { - "name": "FLAG_BUNDLE_RESOURCES", - "value": 2 - }, - { - "name": "FLAG_CHANGE_PATH", - "value": 4 - }, - { - "name": "FLAG_OMIT_EDITOR_PROPERTIES", - "value": 8 - }, - { - "name": "FLAG_SAVE_BIG_ENDIAN", - "value": 16 - }, - { - "name": "FLAG_COMPRESS", - "value": 32 - }, - { - "name": "FLAG_REPLACE_SUBRESOURCE_PATHS", - "value": 64 - } - ] - } - ], - "methods": [ - { - "name": "save", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2983274697, - "hash_compatibility": [ - 2303056517 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "meta": "required" - }, - { - "name": "path", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "flags", - "type": "bitfield::ResourceSaver.SaverFlags", - "default_value": "0" - } - ] - }, - { - "name": "set_uid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 993915709, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "resource", - "type": "String" - }, - { - "name": "uid", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_recognized_extensions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4223597960, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "type", - "type": "Resource", - "meta": "required" - } - ] - }, - { - "name": "add_resource_format_saver", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 362894272, - "arguments": [ - { - "name": "format_saver", - "type": "ResourceFormatSaver", - "meta": "required" - }, - { - "name": "at_front", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_resource_format_saver", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3373026878, - "arguments": [ - { - "name": "format_saver", - "type": "ResourceFormatSaver", - "meta": "required" - } - ] - }, - { - "name": "get_resource_id_for_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 150756522, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "generate", - "type": "bool", - "default_value": "false" - } - ] - } - ] - }, - { - "name": "ResourceUID", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "constants": [ - { - "name": "INVALID_ID", - "value": -1 - } - ], - "methods": [ - { - "name": "id_to_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "text_to_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "text_id", - "type": "String" - } - ] - }, - { - "name": "create_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "create_id_for_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1597066294, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "has_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "add_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "set_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - }, - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_id_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "remove_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "uid_to_path", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "uid", - "type": "String" - } - ] - }, - { - "name": "path_to_uid", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "ensure_path", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path_or_uid", - "type": "String" - } - ] - } - ] - }, - { - "name": "RetargetModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "TransformFlag", - "is_bitfield": true, - "values": [ - { - "name": "TRANSFORM_FLAG_POSITION", - "value": 1 - }, - { - "name": "TRANSFORM_FLAG_ROTATION", - "value": 2 - }, - { - "name": "TRANSFORM_FLAG_SCALE", - "value": 4 - }, - { - "name": "TRANSFORM_FLAG_ALL", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3870374136, - "arguments": [ - { - "name": "profile", - "type": "SkeletonProfile" - } - ] - }, - { - "name": "get_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291782652, - "return_value": { - "type": "SkeletonProfile" - } - }, - { - "name": "set_use_global_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_global_pose", - "type": "bool" - } - ] - }, - { - "name": "is_using_global_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2687954213, - "arguments": [ - { - "name": "enable_flags", - "type": "bitfield::RetargetModifier3D.TransformFlag" - } - ] - }, - { - "name": "get_enable_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 358995420, - "return_value": { - "type": "bitfield::RetargetModifier3D.TransformFlag" - } - }, - { - "name": "set_position_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_position_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rotation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_rotation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scale_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_scale_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "SkeletonProfile", - "name": "profile", - "setter": "set_profile", - "getter": "get_profile" - }, - { - "type": "bool", - "name": "use_global_pose", - "setter": "set_use_global_pose", - "getter": "is_using_global_pose" - }, - { - "type": "int", - "name": "enable", - "setter": "set_enable_flags", - "getter": "get_enable_flags" - } - ] - }, - { - "name": "RibbonTrailMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "enums": [ - { - "name": "Shape", - "is_bitfield": false, - "values": [ - { - "name": "SHAPE_FLAT", - "value": 0 - }, - { - "name": "SHAPE_CROSS", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sections", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_section_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "section_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_section_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_section_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "section_segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_section_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1684440262, - "arguments": [ - { - "name": "shape", - "type": "enum::RibbonTrailMesh.Shape" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1317484155, - "return_value": { - "type": "enum::RibbonTrailMesh.Shape" - } - } - ], - "properties": [ - { - "type": "int", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "float", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "sections", - "setter": "set_sections", - "getter": "get_sections" - }, - { - "type": "float", - "name": "section_length", - "setter": "set_section_length", - "getter": "get_section_length" - }, - { - "type": "int", - "name": "section_segments", - "setter": "set_section_segments", - "getter": "get_section_segments" - }, - { - "type": "Curve", - "name": "curve", - "setter": "set_curve", - "getter": "get_curve" - } - ] - }, - { - "name": "RichTextEffect", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_process_custom_fx", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 31984339, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "char_fx", - "type": "CharFXTransform" - } - ] - } - ] - }, - { - "name": "RichTextLabel", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "ListType", - "is_bitfield": false, - "values": [ - { - "name": "LIST_NUMBERS", - "value": 0 - }, - { - "name": "LIST_LETTERS", - "value": 1 - }, - { - "name": "LIST_ROMAN", - "value": 2 - }, - { - "name": "LIST_DOTS", - "value": 3 - } - ] - }, - { - "name": "MenuItems", - "is_bitfield": false, - "values": [ - { - "name": "MENU_COPY", - "value": 0 - }, - { - "name": "MENU_SELECT_ALL", - "value": 1 - }, - { - "name": "MENU_MAX", - "value": 2 - } - ] - }, - { - "name": "MetaUnderline", - "is_bitfield": false, - "values": [ - { - "name": "META_UNDERLINE_NEVER", - "value": 0 - }, - { - "name": "META_UNDERLINE_ALWAYS", - "value": 1 - }, - { - "name": "META_UNDERLINE_ON_HOVER", - "value": 2 - } - ] - }, - { - "name": "ImageUpdateMask", - "is_bitfield": true, - "values": [ - { - "name": "UPDATE_TEXTURE", - "value": 1 - }, - { - "name": "UPDATE_SIZE", - "value": 2 - }, - { - "name": "UPDATE_COLOR", - "value": 4 - }, - { - "name": "UPDATE_ALIGNMENT", - "value": 8 - }, - { - "name": "UPDATE_REGION", - "value": 16 - }, - { - "name": "UPDATE_PAD", - "value": 32 - }, - { - "name": "UPDATE_TOOLTIP", - "value": 64 - }, - { - "name": "UPDATE_WIDTH_UNIT", - "value": 128 - } - ] - }, - { - "name": "ImageUnit", - "is_bitfield": false, - "values": [ - { - "name": "IMAGE_UNIT_PIXEL", - "value": 0 - }, - { - "name": "IMAGE_UNIT_PERCENT", - "value": 1 - }, - { - "name": "IMAGE_UNIT_EM", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_parsed_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "add_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "add_hr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 16816895, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32", - "default_value": "90" - }, - { - "name": "height", - "type": "int", - "meta": "int32", - "default_value": "2" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "alignment", - "type": "enum::HorizontalAlignment", - "default_value": "1" - }, - { - "name": "width_in_percent", - "type": "bool", - "default_value": "true" - }, - { - "name": "height_in_percent", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "add_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1980227702, - "hash_compatibility": [ - 3580801207, - 3017663154, - 1389823276, - 1390915033, - 3346058748 - ], - "arguments": [ - { - "name": "image", - "type": "Texture2D" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "height", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "region", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "key", - "type": "Variant", - "default_value": "null" - }, - { - "name": "pad", - "type": "bool", - "default_value": "false" - }, - { - "name": "tooltip", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "width_unit", - "type": "enum::RichTextLabel.ImageUnit", - "default_value": "0" - }, - { - "name": "height_unit", - "type": "enum::RichTextLabel.ImageUnit", - "default_value": "0" - }, - { - "name": "alt_text", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "update_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 202998225, - "hash_compatibility": [ - 815048486, - 6389170 - ], - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "mask", - "type": "bitfield::RichTextLabel.ImageUpdateMask" - }, - { - "name": "image", - "type": "Texture2D" - }, - { - "name": "width", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "height", - "type": "float", - "meta": "float", - "default_value": "0" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "region", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "pad", - "type": "bool", - "default_value": "false" - }, - { - "name": "tooltip", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "width_unit", - "type": "enum::RichTextLabel.ImageUnit", - "default_value": "0" - }, - { - "name": "height_unit", - "type": "enum::RichTextLabel.ImageUnit", - "default_value": "0" - } - ] - }, - { - "name": "newline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "remove_paragraph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3262369265, - "hash_compatibility": [ - 3067735520 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "paragraph", - "type": "int", - "meta": "int32" - }, - { - "name": "no_invalidate", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "invalidate_paragraph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "paragraph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "push_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2347424842, - "hash_compatibility": [ - 3014009009, - 814287596 - ], - "arguments": [ - { - "name": "font", - "type": "Font" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "push_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "push_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_bold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_bold_italics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_italics", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_mono", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "push_outline_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "outline_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "push_outline_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "push_paragraph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3089306873, - "hash_compatibility": [ - 3218895358 - ], - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - }, - { - "name": "base_direction", - "type": "enum::Control.TextDirection", - "default_value": "0" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "st_parser", - "type": "enum::TextServer.StructuredTextParser", - "default_value": "0" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "163" - }, - { - "name": "tab_stops", - "type": "PackedFloat32Array", - "default_value": "PackedFloat32Array()" - } - ] - }, - { - "name": "push_indent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "push_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3017143144, - "hash_compatibility": [ - 4036303897 - ], - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "enum::RichTextLabel.ListType" - }, - { - "name": "capitalize", - "type": "bool" - }, - { - "name": "bullet", - "type": "String", - "default_value": "\"•\"" - } - ] - }, - { - "name": "push_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3765356747, - "hash_compatibility": [ - 2206155733, - 1114965689 - ], - "arguments": [ - { - "name": "data", - "type": "Variant" - }, - { - "name": "underline_mode", - "type": "enum::RichTextLabel.MetaUnderline", - "default_value": "1" - }, - { - "name": "tooltip", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "push_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "push_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "push_underline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1458098034, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "color", - "type": "Color", - "default_value": "Color(0, 0, 0, 0)" - } - ] - }, - { - "name": "push_strikethrough", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1458098034, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "color", - "type": "Color", - "default_value": "Color(0, 0, 0, 0)" - } - ] - }, - { - "name": "push_table", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426862026, - "hash_compatibility": [ - 2623499273, - 1125058220 - ], - "arguments": [ - { - "name": "columns", - "type": "int", - "meta": "int32" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "0" - }, - { - "name": "align_to_row", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "name", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "push_dropcap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4061635501, - "hash_compatibility": [ - 311501835 - ], - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "font", - "type": "Font" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "dropcap_margins", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "outline_color", - "type": "Color", - "default_value": "Color(0, 0, 0, 0)" - } - ] - }, - { - "name": "set_table_column_expand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 117236061, - "hash_compatibility": [ - 4258957458, - 2185176273, - 4258957458 - ], - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "expand", - "type": "bool" - }, - { - "name": "ratio", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "shrink", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_table_column_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_cell_row_background_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3465483165, - "arguments": [ - { - "name": "odd_row_bg", - "type": "Color" - }, - { - "name": "even_row_bg", - "type": "Color" - } - ] - }, - { - "name": "set_cell_border_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "set_cell_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3108078480, - "arguments": [ - { - "name": "min_size", - "type": "Vector2" - }, - { - "name": "max_size", - "type": "Vector2" - } - ] - }, - { - "name": "set_cell_padding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "padding", - "type": "Rect2" - } - ] - }, - { - "name": "push_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "push_fgcolor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "fgcolor", - "type": "Color" - } - ] - }, - { - "name": "push_bgcolor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "bgcolor", - "type": "Color" - } - ] - }, - { - "name": "push_customfx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2337942958, - "arguments": [ - { - "name": "effect", - "type": "RichTextEffect" - }, - { - "name": "env", - "type": "Dictionary" - } - ] - }, - { - "name": "push_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pop_context", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pop_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_vertical_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796458609, - "arguments": [ - { - "name": "alignment", - "type": "enum::VerticalAlignment" - } - ] - }, - { - "name": "get_vertical_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274884059, - "return_value": { - "type": "enum::VerticalAlignment" - } - }, - { - "name": "set_justification_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_justification_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_tab_stops", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "get_tab_stops", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "set_autowrap_trim_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2809697122, - "arguments": [ - { - "name": "autowrap_trim_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_autowrap_trim_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2340632602, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - } - }, - { - "name": "set_meta_underline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_meta_underlined", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hint_underline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_hint_underlined", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scroll_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scroll_follow_visible_characters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "follow", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_following_visible_characters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scroll_follow", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "follow", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_following", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_v_scroll_bar", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2630340773, - "return_value": { - "type": "VScrollBar" - } - }, - { - "name": "scroll_to_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "scroll_to_paragraph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "paragraph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "scroll_to_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_tab_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "spaces", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fit_content", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_fit_content_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_selection_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_selection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_context_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_context_menu_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut_keys_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_shortcut_keys_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deselect_on_focus_loss_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_deselect_on_focus_loss_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_and_drop_selection_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drag_and_drop_selection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_selection_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_selection_to", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_selection_line_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "select_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_selected_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "parse_bbcode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bbcode", - "type": "String" - } - ] - }, - { - "name": "append_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bbcode", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_ready", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_finished", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_threaded", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "threaded", - "type": "bool" - } - ] - }, - { - "name": "is_threaded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_progress_bar_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "delay_ms", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_progress_bar_delay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_visible_characters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible_characters", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_characters_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 258789322, - "return_value": { - "type": "enum::TextServer.VisibleCharactersBehavior" - } - }, - { - "name": "set_visible_characters_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3383839701, - "arguments": [ - { - "name": "behavior", - "type": "enum::TextServer.VisibleCharactersBehavior" - } - ] - }, - { - "name": "set_visible_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_visible_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_character_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "character", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_character_paragraph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "character", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_total_character_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_use_bbcode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_bbcode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_line_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3665014314, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_paragraph_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_paragraph_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_content_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_content_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_line_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visible_content_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "get_line_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025615559, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_paragraph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025615559, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "paragraph", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "parse_expressions_for_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1522900837, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "expressions", - "type": "PackedStringArray" - } - ] - }, - { - "name": "set_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "effects", - "type": "Array" - } - ] - }, - { - "name": "get_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "Array" - } - }, - { - "name": "install_effect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1114965689, - "arguments": [ - { - "name": "effect", - "type": "Variant" - } - ] - }, - { - "name": "reload_effects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229722558, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "is_menu_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "menu_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "meta_clicked", - "arguments": [ - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "meta_hover_started", - "arguments": [ - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "meta_hover_ended", - "arguments": [ - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "finished" - } - ], - "properties": [ - { - "type": "bool", - "name": "bbcode_enabled", - "setter": "set_use_bbcode", - "getter": "is_using_bbcode" - }, - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "bool", - "name": "fit_content", - "setter": "set_fit_content", - "getter": "is_fit_content_enabled" - }, - { - "type": "bool", - "name": "scroll_active", - "setter": "set_scroll_active", - "getter": "is_scroll_active" - }, - { - "type": "bool", - "name": "scroll_following", - "setter": "set_scroll_follow", - "getter": "is_scroll_following" - }, - { - "type": "bool", - "name": "scroll_following_visible_characters", - "setter": "set_scroll_follow_visible_characters", - "getter": "is_scroll_following_visible_characters" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "int", - "name": "autowrap_trim_flags", - "setter": "set_autowrap_trim_flags", - "getter": "get_autowrap_trim_flags" - }, - { - "type": "int", - "name": "tab_size", - "setter": "set_tab_size", - "getter": "get_tab_size" - }, - { - "type": "bool", - "name": "context_menu_enabled", - "setter": "set_context_menu_enabled", - "getter": "is_context_menu_enabled" - }, - { - "type": "bool", - "name": "shortcut_keys_enabled", - "setter": "set_shortcut_keys_enabled", - "getter": "is_shortcut_keys_enabled" - }, - { - "type": "int", - "name": "horizontal_alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "vertical_alignment", - "setter": "set_vertical_alignment", - "getter": "get_vertical_alignment" - }, - { - "type": "int", - "name": "justification_flags", - "setter": "set_justification_flags", - "getter": "get_justification_flags" - }, - { - "type": "PackedFloat32Array", - "name": "tab_stops", - "setter": "set_tab_stops", - "getter": "get_tab_stops" - }, - { - "type": "typedarray::24/17:RichTextEffect", - "name": "custom_effects", - "setter": "set_effects", - "getter": "get_effects" - }, - { - "type": "bool", - "name": "meta_underlined", - "setter": "set_meta_underline", - "getter": "is_meta_underlined" - }, - { - "type": "bool", - "name": "hint_underlined", - "setter": "set_hint_underline", - "getter": "is_hint_underlined" - }, - { - "type": "bool", - "name": "threaded", - "setter": "set_threaded", - "getter": "is_threaded" - }, - { - "type": "int", - "name": "progress_bar_delay", - "setter": "set_progress_bar_delay", - "getter": "get_progress_bar_delay" - }, - { - "type": "bool", - "name": "selection_enabled", - "setter": "set_selection_enabled", - "getter": "is_selection_enabled" - }, - { - "type": "bool", - "name": "deselect_on_focus_loss_enabled", - "setter": "set_deselect_on_focus_loss_enabled", - "getter": "is_deselect_on_focus_loss_enabled" - }, - { - "type": "bool", - "name": "drag_and_drop_selection_enabled", - "setter": "set_drag_and_drop_selection_enabled", - "getter": "is_drag_and_drop_selection_enabled" - }, - { - "type": "int", - "name": "visible_characters", - "setter": "set_visible_characters", - "getter": "get_visible_characters" - }, - { - "type": "int", - "name": "visible_characters_behavior", - "setter": "set_visible_characters_behavior", - "getter": "get_visible_characters_behavior" - }, - { - "type": "float", - "name": "visible_ratio", - "setter": "set_visible_ratio", - "getter": "get_visible_ratio" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "RigidBody2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody2D", - "api_type": "core", - "enums": [ - { - "name": "FreezeMode", - "is_bitfield": false, - "values": [ - { - "name": "FREEZE_MODE_STATIC", - "value": 0 - }, - { - "name": "FREEZE_MODE_KINEMATIC", - "value": 1 - } - ] - }, - { - "name": "CenterOfMassMode", - "is_bitfield": false, - "values": [ - { - "name": "CENTER_OF_MASS_MODE_AUTO", - "value": 0 - }, - { - "name": "CENTER_OF_MASS_MODE_CUSTOM", - "value": 1 - } - ] - }, - { - "name": "DampMode", - "is_bitfield": false, - "values": [ - { - "name": "DAMP_MODE_COMBINE", - "value": 0 - }, - { - "name": "DAMP_MODE_REPLACE", - "value": 1 - } - ] - }, - { - "name": "CCDMode", - "is_bitfield": false, - "values": [ - { - "name": "CCD_MODE_DISABLED", - "value": 0 - }, - { - "name": "CCD_MODE_CAST_RAY", - "value": 1 - }, - { - "name": "CCD_MODE_CAST_SHAPE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_integrate_forces", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 370287496, - "arguments": [ - { - "name": "state", - "type": "PhysicsDirectBodyState2D", - "meta": "required" - } - ] - }, - { - "name": "set_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_inertia", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_inertia", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "inertia", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_center_of_mass_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1757235706, - "arguments": [ - { - "name": "mode", - "type": "enum::RigidBody2D.CenterOfMassMode" - } - ] - }, - { - "name": "get_center_of_mass_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3277132817, - "return_value": { - "type": "enum::RigidBody2D.CenterOfMassMode" - } - }, - { - "name": "set_center_of_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "center_of_mass", - "type": "Vector2" - } - ] - }, - { - "name": "get_center_of_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_physics_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784508650, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_material_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2521850424, - "return_value": { - "type": "PhysicsMaterial" - } - }, - { - "name": "set_gravity_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3406533708, - "arguments": [ - { - "name": "linear_damp_mode", - "type": "enum::RigidBody2D.DampMode" - } - ] - }, - { - "name": "get_linear_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2970511462, - "return_value": { - "type": "enum::RigidBody2D.DampMode" - } - }, - { - "name": "set_angular_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3406533708, - "arguments": [ - { - "name": "angular_damp_mode", - "type": "enum::RigidBody2D.DampMode" - } - ] - }, - { - "name": "get_angular_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2970511462, - "return_value": { - "type": "enum::RigidBody2D.DampMode" - } - }, - { - "name": "set_linear_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_velocity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_contacts_reported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_contacts_reported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_contact_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_use_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_contact_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_contact_monitor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_continuous_collision_detection_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1000241384, - "arguments": [ - { - "name": "mode", - "type": "enum::RigidBody2D.CCDMode" - } - ] - }, - { - "name": "get_continuous_collision_detection_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 815214376, - "return_value": { - "type": "enum::RigidBody2D.CCDMode" - } - }, - { - "name": "set_axis_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "axis_velocity", - "type": "Vector2" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3862383994, - "arguments": [ - { - "name": "impulse", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "impulse", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4288681949, - "hash_compatibility": [ - 496058220 - ], - "arguments": [ - { - "name": "force", - "type": "Vector2" - }, - { - "name": "position", - "type": "Vector2", - "default_value": "Vector2(0, 0)" - } - ] - }, - { - "name": "add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "force", - "type": "Vector2" - } - ] - }, - { - "name": "get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "torque", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sleeping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "sleeping", - "type": "bool" - } - ] - }, - { - "name": "is_sleeping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_can_sleep", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "able_to_sleep", - "type": "bool" - } - ] - }, - { - "name": "is_able_to_sleep", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_lock_rotation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "lock_rotation", - "type": "bool" - } - ] - }, - { - "name": "is_lock_rotation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_freeze_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "freeze_mode", - "type": "bool" - } - ] - }, - { - "name": "is_freeze_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_freeze_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1705112154, - "arguments": [ - { - "name": "freeze_mode", - "type": "enum::RigidBody2D.FreezeMode" - } - ] - }, - { - "name": "get_freeze_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2016872314, - "return_value": { - "type": "enum::RigidBody2D.FreezeMode" - } - }, - { - "name": "get_colliding_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node2D" - } - } - ], - "signals": [ - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node" - } - ] - }, - { - "name": "sleeping_state_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "mass", - "setter": "set_mass", - "getter": "get_mass" - }, - { - "type": "PhysicsMaterial", - "name": "physics_material_override", - "setter": "set_physics_material_override", - "getter": "get_physics_material_override" - }, - { - "type": "float", - "name": "gravity_scale", - "setter": "set_gravity_scale", - "getter": "get_gravity_scale" - }, - { - "type": "int", - "name": "center_of_mass_mode", - "setter": "set_center_of_mass_mode", - "getter": "get_center_of_mass_mode" - }, - { - "type": "Vector2", - "name": "center_of_mass", - "setter": "set_center_of_mass", - "getter": "get_center_of_mass" - }, - { - "type": "float", - "name": "inertia", - "setter": "set_inertia", - "getter": "get_inertia" - }, - { - "type": "bool", - "name": "sleeping", - "setter": "set_sleeping", - "getter": "is_sleeping" - }, - { - "type": "bool", - "name": "can_sleep", - "setter": "set_can_sleep", - "getter": "is_able_to_sleep" - }, - { - "type": "bool", - "name": "lock_rotation", - "setter": "set_lock_rotation_enabled", - "getter": "is_lock_rotation_enabled" - }, - { - "type": "bool", - "name": "freeze", - "setter": "set_freeze_enabled", - "getter": "is_freeze_enabled" - }, - { - "type": "int", - "name": "freeze_mode", - "setter": "set_freeze_mode", - "getter": "get_freeze_mode" - }, - { - "type": "bool", - "name": "custom_integrator", - "setter": "set_use_custom_integrator", - "getter": "is_using_custom_integrator" - }, - { - "type": "int", - "name": "continuous_cd", - "setter": "set_continuous_collision_detection_mode", - "getter": "get_continuous_collision_detection_mode" - }, - { - "type": "bool", - "name": "contact_monitor", - "setter": "set_contact_monitor", - "getter": "is_contact_monitor_enabled" - }, - { - "type": "int", - "name": "max_contacts_reported", - "setter": "set_max_contacts_reported", - "getter": "get_max_contacts_reported" - }, - { - "type": "Vector2", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "int", - "name": "linear_damp_mode", - "setter": "set_linear_damp_mode", - "getter": "get_linear_damp_mode" - }, - { - "type": "float", - "name": "linear_damp", - "setter": "set_linear_damp", - "getter": "get_linear_damp" - }, - { - "type": "float", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "int", - "name": "angular_damp_mode", - "setter": "set_angular_damp_mode", - "getter": "get_angular_damp_mode" - }, - { - "type": "float", - "name": "angular_damp", - "setter": "set_angular_damp", - "getter": "get_angular_damp" - }, - { - "type": "Vector2", - "name": "constant_force", - "setter": "set_constant_force", - "getter": "get_constant_force" - }, - { - "type": "float", - "name": "constant_torque", - "setter": "set_constant_torque", - "getter": "get_constant_torque" - } - ] - }, - { - "name": "RigidBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody3D", - "api_type": "core", - "enums": [ - { - "name": "FreezeMode", - "is_bitfield": false, - "values": [ - { - "name": "FREEZE_MODE_STATIC", - "value": 0 - }, - { - "name": "FREEZE_MODE_KINEMATIC", - "value": 1 - } - ] - }, - { - "name": "CenterOfMassMode", - "is_bitfield": false, - "values": [ - { - "name": "CENTER_OF_MASS_MODE_AUTO", - "value": 0 - }, - { - "name": "CENTER_OF_MASS_MODE_CUSTOM", - "value": 1 - } - ] - }, - { - "name": "DampMode", - "is_bitfield": false, - "values": [ - { - "name": "DAMP_MODE_COMBINE", - "value": 0 - }, - { - "name": "DAMP_MODE_REPLACE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_integrate_forces", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 420958145, - "arguments": [ - { - "name": "state", - "type": "PhysicsDirectBodyState3D", - "meta": "required" - } - ] - }, - { - "name": "set_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_inertia", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "inertia", - "type": "Vector3" - } - ] - }, - { - "name": "get_inertia", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_center_of_mass_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3625866032, - "arguments": [ - { - "name": "mode", - "type": "enum::RigidBody3D.CenterOfMassMode" - } - ] - }, - { - "name": "get_center_of_mass_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 237405040, - "return_value": { - "type": "enum::RigidBody3D.CenterOfMassMode" - } - }, - { - "name": "set_center_of_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "center_of_mass", - "type": "Vector3" - } - ] - }, - { - "name": "get_center_of_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_physics_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784508650, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_material_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2521850424, - "return_value": { - "type": "PhysicsMaterial" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "angular_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_inverse_inertia_tensor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2716978435, - "return_value": { - "type": "Basis" - } - }, - { - "name": "set_gravity_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1802035050, - "arguments": [ - { - "name": "linear_damp_mode", - "type": "enum::RigidBody3D.DampMode" - } - ] - }, - { - "name": "get_linear_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1366206940, - "return_value": { - "type": "enum::RigidBody3D.DampMode" - } - }, - { - "name": "set_angular_damp_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1802035050, - "arguments": [ - { - "name": "angular_damp_mode", - "type": "enum::RigidBody3D.DampMode" - } - ] - }, - { - "name": "get_angular_damp_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1366206940, - "return_value": { - "type": "enum::RigidBody3D.DampMode" - } - }, - { - "name": "set_linear_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_angular_damp", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_angular_damp", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_contacts_reported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_contacts_reported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_contact_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_use_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_custom_integrator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_contact_monitor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_contact_monitor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_continuous_collision_detection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_continuous_collision_detection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_axis_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "axis_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_torque_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "apply_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "add_constant_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "add_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2754756483, - "hash_compatibility": [ - 1002852006 - ], - "arguments": [ - { - "name": "force", - "type": "Vector3" - }, - { - "name": "position", - "type": "Vector3", - "default_value": "Vector3(0, 0, 0)" - } - ] - }, - { - "name": "add_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "set_constant_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_constant_torque", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "torque", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant_torque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_sleeping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "sleeping", - "type": "bool" - } - ] - }, - { - "name": "is_sleeping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_can_sleep", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "able_to_sleep", - "type": "bool" - } - ] - }, - { - "name": "is_able_to_sleep", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_lock_rotation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "lock_rotation", - "type": "bool" - } - ] - }, - { - "name": "is_lock_rotation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_freeze_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "freeze_mode", - "type": "bool" - } - ] - }, - { - "name": "is_freeze_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_freeze_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1319914653, - "arguments": [ - { - "name": "freeze_mode", - "type": "enum::RigidBody3D.FreezeMode" - } - ] - }, - { - "name": "get_freeze_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2008423905, - "return_value": { - "type": "enum::RigidBody3D.FreezeMode" - } - }, - { - "name": "get_colliding_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Node3D" - } - } - ], - "signals": [ - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID" - }, - { - "name": "body", - "type": "Node" - }, - { - "name": "body_shape_index", - "type": "int" - }, - { - "name": "local_shape_index", - "type": "int" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node" - } - ] - }, - { - "name": "sleeping_state_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "mass", - "setter": "set_mass", - "getter": "get_mass" - }, - { - "type": "PhysicsMaterial", - "name": "physics_material_override", - "setter": "set_physics_material_override", - "getter": "get_physics_material_override" - }, - { - "type": "float", - "name": "gravity_scale", - "setter": "set_gravity_scale", - "getter": "get_gravity_scale" - }, - { - "type": "int", - "name": "center_of_mass_mode", - "setter": "set_center_of_mass_mode", - "getter": "get_center_of_mass_mode" - }, - { - "type": "Vector3", - "name": "center_of_mass", - "setter": "set_center_of_mass", - "getter": "get_center_of_mass" - }, - { - "type": "Vector3", - "name": "inertia", - "setter": "set_inertia", - "getter": "get_inertia" - }, - { - "type": "bool", - "name": "sleeping", - "setter": "set_sleeping", - "getter": "is_sleeping" - }, - { - "type": "bool", - "name": "can_sleep", - "setter": "set_can_sleep", - "getter": "is_able_to_sleep" - }, - { - "type": "bool", - "name": "lock_rotation", - "setter": "set_lock_rotation_enabled", - "getter": "is_lock_rotation_enabled" - }, - { - "type": "bool", - "name": "freeze", - "setter": "set_freeze_enabled", - "getter": "is_freeze_enabled" - }, - { - "type": "int", - "name": "freeze_mode", - "setter": "set_freeze_mode", - "getter": "get_freeze_mode" - }, - { - "type": "bool", - "name": "custom_integrator", - "setter": "set_use_custom_integrator", - "getter": "is_using_custom_integrator" - }, - { - "type": "bool", - "name": "continuous_cd", - "setter": "set_use_continuous_collision_detection", - "getter": "is_using_continuous_collision_detection" - }, - { - "type": "bool", - "name": "contact_monitor", - "setter": "set_contact_monitor", - "getter": "is_contact_monitor_enabled" - }, - { - "type": "int", - "name": "max_contacts_reported", - "setter": "set_max_contacts_reported", - "getter": "get_max_contacts_reported" - }, - { - "type": "Vector3", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "int", - "name": "linear_damp_mode", - "setter": "set_linear_damp_mode", - "getter": "get_linear_damp_mode" - }, - { - "type": "float", - "name": "linear_damp", - "setter": "set_linear_damp", - "getter": "get_linear_damp" - }, - { - "type": "Vector3", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "int", - "name": "angular_damp_mode", - "setter": "set_angular_damp_mode", - "getter": "get_angular_damp_mode" - }, - { - "type": "float", - "name": "angular_damp", - "setter": "set_angular_damp", - "getter": "get_angular_damp" - }, - { - "type": "Vector3", - "name": "constant_force", - "setter": "set_constant_force", - "getter": "get_constant_force" - }, - { - "type": "Vector3", - "name": "constant_torque", - "setter": "set_constant_torque", - "getter": "get_constant_torque" - } - ] - }, - { - "name": "RootMotionView", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_animation_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_animation_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_cell_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_cell_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_zero_y", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_zero_y", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "animation_path", - "setter": "set_animation_path", - "getter": "get_animation_path" - }, - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "float", - "name": "cell_size", - "setter": "set_cell_size", - "getter": "get_cell_size" - }, - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "bool", - "name": "zero_y", - "setter": "set_zero_y", - "getter": "get_zero_y" - } - ] - }, - { - "name": "SceneMultiplayer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerAPI", - "api_type": "core", - "methods": [ - { - "name": "set_root_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "disconnect_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_authenticating_peers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "send_auth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 506032537, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "complete_auth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_auth_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "get_auth_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1307783378, - "return_value": { - "type": "Callable" - } - }, - { - "name": "set_auth_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "timeout", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_auth_timeout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_refuse_new_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "refuse", - "type": "bool" - } - ] - }, - { - "name": "is_refusing_new_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_object_decoding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_object_decoding_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_server_relay_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_server_relay_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "send_bytes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1307428718, - "hash_compatibility": [ - 2742700601 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "bytes", - "type": "PackedByteArray" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "mode", - "type": "enum::MultiplayerPeer.TransferMode", - "default_value": "2" - }, - { - "name": "channel", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_max_sync_packet_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_sync_packet_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_delta_packet_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_delta_packet_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "peer_authenticating", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "peer_authentication_failed", - "arguments": [ - { - "name": "id", - "type": "int" - } - ] - }, - { - "name": "peer_packet", - "arguments": [ - { - "name": "id", - "type": "int" - }, - { - "name": "packet", - "type": "PackedByteArray" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "root_path", - "setter": "set_root_path", - "getter": "get_root_path" - }, - { - "type": "Callable", - "name": "auth_callback", - "setter": "set_auth_callback", - "getter": "get_auth_callback" - }, - { - "type": "float", - "name": "auth_timeout", - "setter": "set_auth_timeout", - "getter": "get_auth_timeout" - }, - { - "type": "bool", - "name": "allow_object_decoding", - "setter": "set_allow_object_decoding", - "getter": "is_object_decoding_allowed" - }, - { - "type": "bool", - "name": "refuse_new_connections", - "setter": "set_refuse_new_connections", - "getter": "is_refusing_new_connections" - }, - { - "type": "bool", - "name": "server_relay", - "setter": "set_server_relay_enabled", - "getter": "is_server_relay_enabled" - }, - { - "type": "int", - "name": "max_sync_packet_size", - "setter": "set_max_sync_packet_size", - "getter": "get_max_sync_packet_size" - }, - { - "type": "int", - "name": "max_delta_packet_size", - "setter": "set_max_delta_packet_size", - "getter": "get_max_delta_packet_size" - } - ] - }, - { - "name": "SceneReplicationConfig", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "ReplicationMode", - "is_bitfield": false, - "values": [ - { - "name": "REPLICATION_MODE_NEVER", - "value": 0 - }, - { - "name": "REPLICATION_MODE_ALWAYS", - "value": 1 - }, - { - "name": "REPLICATION_MODE_ON_CHANGE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_properties", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::NodePath" - } - }, - { - "name": "add_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4094619021, - "hash_compatibility": [ - 3818401521 - ], - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "has_property", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 861721659, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "remove_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_get_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1382022557, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_get_spawn", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3456846888, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_set_spawn", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3868023870, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "property_get_replication_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2870606336, - "return_value": { - "type": "enum::SceneReplicationConfig.ReplicationMode" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_set_replication_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200083865, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "mode", - "type": "enum::SceneReplicationConfig.ReplicationMode" - } - ] - }, - { - "name": "property_get_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3456846888, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_set_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3868023870, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "property_get_watch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3456846888, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "property_set_watch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3868023870, - "arguments": [ - { - "name": "path", - "type": "NodePath" - }, - { - "name": "enabled", - "type": "bool" - } - ] - } - ] - }, - { - "name": "SceneState", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "GenEditState", - "is_bitfield": false, - "values": [ - { - "name": "GEN_EDIT_STATE_DISABLED", - "value": 0 - }, - { - "name": "GEN_EDIT_STATE_INSTANCE", - "value": 1 - }, - { - "name": "GEN_EDIT_STATE_MAIN", - "value": 2 - }, - { - "name": "GEN_EDIT_STATE_MAIN_INHERITED", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_base_scene_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3479783971, - "return_value": { - "type": "SceneState" - } - }, - { - "name": "get_node_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_node_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2272487792, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "for_parent", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_node_owner_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_node_instance_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_instance_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_instance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 511017218, - "return_value": { - "type": "PackedScene" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_groups", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 647634434, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_property_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_property_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 351665558, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "prop_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_property_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 678354945, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "prop_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_connection_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_binds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connection_unbinds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "SceneTree", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "MainLoop", - "api_type": "core", - "enums": [ - { - "name": "GroupCallFlags", - "is_bitfield": false, - "values": [ - { - "name": "GROUP_CALL_DEFAULT", - "value": 0 - }, - { - "name": "GROUP_CALL_REVERSE", - "value": 1 - }, - { - "name": "GROUP_CALL_DEFERRED", - "value": 2 - }, - { - "name": "GROUP_CALL_UNIQUE", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "get_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1757182445, - "return_value": { - "type": "Window", - "meta": "required" - } - }, - { - "name": "has_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "is_accessibility_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_accessibility_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_auto_accept_quit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_accept_quit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_quit_on_go_back", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_quit_on_go_back", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_debug_collisions_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_debugging_collisions_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_paths_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_debugging_paths_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_navigation_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_debugging_navigation_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_edited_scene_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "scene", - "type": "Node" - } - ] - }, - { - "name": "get_edited_scene_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "set_pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "create_timer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2709170273, - "hash_compatibility": [ - 1780978058 - ], - "return_value": { - "type": "SceneTreeTimer", - "meta": "required" - }, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "meta": "double" - }, - { - "name": "process_always", - "type": "bool", - "default_value": "true" - }, - { - "name": "process_in_physics", - "type": "bool", - "default_value": "false" - }, - { - "name": "ignore_time_scale", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "create_tween", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426978995, - "return_value": { - "type": "Tween", - "meta": "required" - } - }, - { - "name": "get_processed_tweens", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Tween" - } - }, - { - "name": "get_node_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "quit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "exit_code", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_physics_interpolation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_physics_interpolation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "queue_delete", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "obj", - "type": "Object", - "meta": "required" - } - ] - }, - { - "name": "call_group_flags", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 1527739229, - "arguments": [ - { - "name": "flags", - "type": "int" - }, - { - "name": "group", - "type": "StringName" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "notify_group_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1245489420, - "arguments": [ - { - "name": "call_flags", - "type": "int", - "meta": "uint32" - }, - { - "name": "group", - "type": "StringName" - }, - { - "name": "notification", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_group_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3497599527, - "arguments": [ - { - "name": "call_flags", - "type": "int", - "meta": "uint32" - }, - { - "name": "group", - "type": "StringName" - }, - { - "name": "property", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "call_group", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 1257962832, - "arguments": [ - { - "name": "group", - "type": "StringName" - }, - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "notify_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "group", - "type": "StringName" - }, - { - "name": "notification", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1279312029, - "arguments": [ - { - "name": "group", - "type": "StringName" - }, - { - "name": "property", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_nodes_in_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 689397652, - "return_value": { - "type": "typedarray::Node" - }, - "arguments": [ - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "get_first_node_in_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4071044623, - "return_value": { - "type": "Node" - }, - "arguments": [ - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "get_node_count_in_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "set_current_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "child_node", - "type": "Node" - } - ] - }, - { - "name": "get_current_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3160264692, - "return_value": { - "type": "Node" - } - }, - { - "name": "change_scene_to_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "change_scene_to_packed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107349098, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "packed_scene", - "type": "PackedScene", - "meta": "required" - } - ] - }, - { - "name": "change_scene_to_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2584678054, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "reload_current_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "unload_current_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_multiplayer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2385607013, - "arguments": [ - { - "name": "multiplayer", - "type": "MultiplayerAPI" - }, - { - "name": "root_path", - "type": "NodePath", - "default_value": "NodePath(\"\")" - } - ] - }, - { - "name": "get_multiplayer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3453401404, - "return_value": { - "type": "MultiplayerAPI", - "meta": "required" - }, - "arguments": [ - { - "name": "for_path", - "type": "NodePath", - "default_value": "NodePath(\"\")" - } - ] - }, - { - "name": "set_multiplayer_poll_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_multiplayer_poll_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "tree_changed" - }, - { - "name": "scene_changed" - }, - { - "name": "tree_process_mode_changed" - }, - { - "name": "node_added", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "node_removed", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "node_renamed", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "node_configuration_warning_changed", - "arguments": [ - { - "name": "node", - "type": "Node" - } - ] - }, - { - "name": "process_frame" - }, - { - "name": "physics_frame" - } - ], - "properties": [ - { - "type": "bool", - "name": "auto_accept_quit", - "setter": "set_auto_accept_quit", - "getter": "is_auto_accept_quit" - }, - { - "type": "bool", - "name": "quit_on_go_back", - "setter": "set_quit_on_go_back", - "getter": "is_quit_on_go_back" - }, - { - "type": "bool", - "name": "debug_collisions_hint", - "setter": "set_debug_collisions_hint", - "getter": "is_debugging_collisions_hint" - }, - { - "type": "bool", - "name": "debug_paths_hint", - "setter": "set_debug_paths_hint", - "getter": "is_debugging_paths_hint" - }, - { - "type": "bool", - "name": "debug_navigation_hint", - "setter": "set_debug_navigation_hint", - "getter": "is_debugging_navigation_hint" - }, - { - "type": "bool", - "name": "paused", - "setter": "set_pause", - "getter": "is_paused" - }, - { - "type": "Node", - "name": "edited_scene_root", - "setter": "set_edited_scene_root", - "getter": "get_edited_scene_root" - }, - { - "type": "Node", - "name": "current_scene", - "setter": "set_current_scene", - "getter": "get_current_scene" - }, - { - "type": "Node", - "name": "root", - "getter": "get_root" - }, - { - "type": "bool", - "name": "multiplayer_poll", - "setter": "set_multiplayer_poll_enabled", - "getter": "is_multiplayer_poll_enabled" - }, - { - "type": "bool", - "name": "physics_interpolation", - "setter": "set_physics_interpolation_enabled", - "getter": "is_physics_interpolation_enabled" - } - ] - }, - { - "name": "SceneTreeTimer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "set_time_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_time_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - } - ], - "signals": [ - { - "name": "timeout" - } - ], - "properties": [ - { - "type": "float", - "name": "time_left", - "setter": "set_time_left", - "getter": "get_time_left" - } - ] - }, - { - "name": "Script", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "can_instantiate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_source_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_source_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_source_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "source", - "type": "String" - } - ] - }, - { - "name": "reload", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1633102583, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "keep_state", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_base_script", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 278624046, - "return_value": { - "type": "Script" - } - }, - { - "name": "get_instance_base_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_global_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "has_script_method", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method_name", - "type": "StringName" - } - ] - }, - { - "name": "has_script_signal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal_name", - "type": "StringName" - } - ] - }, - { - "name": "get_script_property_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_script_method_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_script_signal_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "get_script_constant_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_property_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2138907829, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "is_tool", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_abstract", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_rpc_config", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "instance_has", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 397768994, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "base_object", - "type": "Object" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "source_code", - "setter": "set_source_code", - "getter": "get_source_code" - } - ] - }, - { - "name": "ScriptBacktrace", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_language_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_empty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_frame_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_frame_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame_file", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_global_variable_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_global_variable_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_global_variable_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_local_variable_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_local_variable_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - }, - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_local_variable_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 678354945, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - }, - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_member_variable_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_member_variable_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - }, - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_member_variable_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 678354945, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "frame_index", - "type": "int", - "meta": "int32" - }, - { - "name": "variable_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3464456933, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "indent_all", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "indent_frames", - "type": "int", - "meta": "int32", - "default_value": "4" - } - ] - } - ] - }, - { - "name": "ScriptCreateDialog", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ConfirmationDialog", - "api_type": "editor", - "methods": [ - { - "name": "config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 869314288, - "hash_compatibility": [ - 4210001628 - ], - "arguments": [ - { - "name": "inherits", - "type": "String" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "built_in_enabled", - "type": "bool", - "default_value": "true" - }, - { - "name": "load_enabled", - "type": "bool", - "default_value": "true" - } - ] - } - ], - "signals": [ - { - "name": "script_created", - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - } - ] - }, - { - "name": "ScriptEditor", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "PanelContainer", - "api_type": "editor", - "methods": [ - { - "name": "get_current_editor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1906266726, - "return_value": { - "type": "ScriptEditorBase" - } - }, - { - "name": "get_open_script_editors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::ScriptEditorBase" - } - }, - { - "name": "get_breakpoints", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "register_syntax_highlighter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1092774468, - "arguments": [ - { - "name": "syntax_highlighter", - "type": "EditorSyntaxHighlighter" - } - ] - }, - { - "name": "unregister_syntax_highlighter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1092774468, - "arguments": [ - { - "name": "syntax_highlighter", - "type": "EditorSyntaxHighlighter" - } - ] - }, - { - "name": "goto_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "line_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2146468882, - "return_value": { - "type": "Script" - } - }, - { - "name": "get_open_scripts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Script" - } - }, - { - "name": "open_script_create_dialog", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3186203200, - "arguments": [ - { - "name": "base_name", - "type": "String" - }, - { - "name": "base_path", - "type": "String" - } - ] - }, - { - "name": "reload_open_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "goto_help", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "topic", - "type": "String" - } - ] - }, - { - "name": "update_docs_from_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3657522847, - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - }, - { - "name": "clear_docs_from_script", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3657522847, - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - }, - { - "name": "get_unsaved_files", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "save_all_scripts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "signals": [ - { - "name": "editor_script_changed", - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - }, - { - "name": "script_close", - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - } - ] - }, - { - "name": "ScriptEditorBase", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "VBoxContainer", - "api_type": "editor", - "methods": [ - { - "name": "add_syntax_highlighter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1092774468, - "arguments": [ - { - "name": "highlighter", - "type": "EditorSyntaxHighlighter" - } - ] - }, - { - "name": "get_base_editor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - } - ], - "signals": [ - { - "name": "name_changed" - }, - { - "name": "edited_script_changed" - }, - { - "name": "search_in_files_requested", - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "request_save_history" - }, - { - "name": "request_help", - "arguments": [ - { - "name": "topic", - "type": "String" - } - ] - }, - { - "name": "request_open_script_at_line", - "arguments": [ - { - "name": "script", - "type": "Object" - }, - { - "name": "line", - "type": "int" - } - ] - }, - { - "name": "go_to_help", - "arguments": [ - { - "name": "what", - "type": "String" - } - ] - }, - { - "name": "request_save_previous_state", - "arguments": [ - { - "name": "state", - "type": "Dictionary" - } - ] - }, - { - "name": "replace_in_files_requested", - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "go_to_method", - "arguments": [ - { - "name": "script", - "type": "Object" - }, - { - "name": "method", - "type": "String" - } - ] - } - ] - }, - { - "name": "ScriptExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Script", - "api_type": "core", - "methods": [ - { - "name": "_editor_can_reload_from_file", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_placeholder_erased", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "placeholder", - "type": "void*" - } - ] - }, - { - "name": "_can_instantiate", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_base_script", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 278624046, - "return_value": { - "type": "Script" - } - }, - { - "name": "_get_global_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "_inherits_script", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3669307804, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "script", - "type": "Script" - } - ] - }, - { - "name": "_get_instance_base_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "_instance_create", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1107568780, - "return_value": { - "type": "void*" - }, - "arguments": [ - { - "name": "for_object", - "type": "Object" - } - ] - }, - { - "name": "_placeholder_instance_create", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1107568780, - "return_value": { - "type": "void*" - }, - "arguments": [ - { - "name": "for_object", - "type": "Object" - } - ] - }, - { - "name": "_has_source_code", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_source_code", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_set_source_code", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 83702148, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "_reload", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1413768114, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "keep_state", - "type": "bool" - } - ] - }, - { - "name": "_get_doc_class_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "_get_documentation", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_get_class_icon_path", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_has_method", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "_has_static_method", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "_get_script_method_argument_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "_get_method_info", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4028089122, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - }, - { - "name": "_is_tool", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_is_valid", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_is_abstract", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_language", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3096237657, - "return_value": { - "type": "ScriptLanguage" - } - }, - { - "name": "_has_script_signal", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "signal", - "type": "StringName" - } - ] - }, - { - "name": "_get_script_signal_list", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_has_property_default_value", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "_get_property_default_value", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "property", - "type": "StringName" - } - ] - }, - { - "name": "_update_exports", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_script_method_list", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_get_script_property_list", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_get_member_line", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "member", - "type": "StringName" - } - ] - }, - { - "name": "_get_constants", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_get_members", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::StringName" - } - }, - { - "name": "_is_placeholder_fallback_enabled", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_rpc_config", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "_instance_has", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 397768994, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - } - ] - }, - { - "name": "ScriptLanguage", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "ScriptNameCasing", - "is_bitfield": false, - "values": [ - { - "name": "SCRIPT_NAME_CASING_AUTO", - "value": 0 - }, - { - "name": "SCRIPT_NAME_CASING_PASCAL_CASE", - "value": 1 - }, - { - "name": "SCRIPT_NAME_CASING_SNAKE_CASE", - "value": 2 - }, - { - "name": "SCRIPT_NAME_CASING_KEBAB_CASE", - "value": 3 - }, - { - "name": "SCRIPT_NAME_CASING_CAMEL_CASE", - "value": 4 - } - ] - } - ] - }, - { - "name": "ScriptLanguageExtension", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ScriptLanguage", - "api_type": "core", - "enums": [ - { - "name": "LookupResultType", - "is_bitfield": false, - "values": [ - { - "name": "LOOKUP_RESULT_SCRIPT_LOCATION", - "value": 0 - }, - { - "name": "LOOKUP_RESULT_CLASS", - "value": 1 - }, - { - "name": "LOOKUP_RESULT_CLASS_CONSTANT", - "value": 2 - }, - { - "name": "LOOKUP_RESULT_CLASS_PROPERTY", - "value": 3 - }, - { - "name": "LOOKUP_RESULT_CLASS_METHOD", - "value": 4 - }, - { - "name": "LOOKUP_RESULT_CLASS_SIGNAL", - "value": 5 - }, - { - "name": "LOOKUP_RESULT_CLASS_ENUM", - "value": 6 - }, - { - "name": "LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE", - "value": 7 - }, - { - "name": "LOOKUP_RESULT_CLASS_ANNOTATION", - "value": 8 - }, - { - "name": "LOOKUP_RESULT_LOCAL_CONSTANT", - "value": 9 - }, - { - "name": "LOOKUP_RESULT_LOCAL_VARIABLE", - "value": 10 - }, - { - "name": "LOOKUP_RESULT_MAX", - "value": 11 - } - ] - }, - { - "name": "CodeCompletionLocation", - "is_bitfield": false, - "values": [ - { - "name": "LOCATION_LOCAL", - "value": 0 - }, - { - "name": "LOCATION_PARENT_MASK", - "value": 256 - }, - { - "name": "LOCATION_OTHER_USER_CODE", - "value": 512 - }, - { - "name": "LOCATION_OTHER", - "value": 1024 - } - ] - }, - { - "name": "CodeCompletionKind", - "is_bitfield": false, - "values": [ - { - "name": "CODE_COMPLETION_KIND_CLASS", - "value": 0 - }, - { - "name": "CODE_COMPLETION_KIND_FUNCTION", - "value": 1 - }, - { - "name": "CODE_COMPLETION_KIND_SIGNAL", - "value": 2 - }, - { - "name": "CODE_COMPLETION_KIND_VARIABLE", - "value": 3 - }, - { - "name": "CODE_COMPLETION_KIND_MEMBER", - "value": 4 - }, - { - "name": "CODE_COMPLETION_KIND_ENUM", - "value": 5 - }, - { - "name": "CODE_COMPLETION_KIND_CONSTANT", - "value": 6 - }, - { - "name": "CODE_COMPLETION_KIND_NODE_PATH", - "value": 7 - }, - { - "name": "CODE_COMPLETION_KIND_FILE_PATH", - "value": 8 - }, - { - "name": "CODE_COMPLETION_KIND_PLAIN_TEXT", - "value": 9 - }, - { - "name": "CODE_COMPLETION_KIND_KEYWORD", - "value": 10 - }, - { - "name": "CODE_COMPLETION_KIND_MAX", - "value": 11 - } - ] - } - ], - "methods": [ - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_init", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_extension", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_finish", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_reserved_words", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_is_control_flow_keyword", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "keyword", - "type": "String" - } - ] - }, - { - "name": "_get_comment_delimiters", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_doc_comment_delimiters", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_string_delimiters", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_make_template", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3583744548, - "return_value": { - "type": "Script" - }, - "arguments": [ - { - "name": "template", - "type": "String" - }, - { - "name": "class_name", - "type": "String" - }, - { - "name": "base_class_name", - "type": "String" - } - ] - }, - { - "name": "_get_built_in_templates", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3147814860, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "object", - "type": "StringName" - } - ] - }, - { - "name": "_is_using_templates", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_validate", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1697887509, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "script", - "type": "String" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "validate_functions", - "type": "bool" - }, - { - "name": "validate_errors", - "type": "bool" - }, - { - "name": "validate_warnings", - "type": "bool" - }, - { - "name": "validate_safe_lines", - "type": "bool" - } - ] - }, - { - "name": "_validate_path", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "_create_script", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1981248198, - "return_value": { - "type": "Object" - } - }, - { - "name": "_has_named_classes", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_supports_builtin_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_supports_documentation", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_can_inherit_from_file", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_find_function", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2878152881, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "function", - "type": "String" - }, - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "_make_function", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1243061914, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "class_name", - "type": "String" - }, - { - "name": "function_name", - "type": "String" - }, - { - "name": "function_args", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_can_make_function", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_open_in_external_editor", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 552845695, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "script", - "type": "Script" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_overrides_external_editor", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_preferred_file_name_casing", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2969522789, - "return_value": { - "type": "enum::ScriptLanguage.ScriptNameCasing" - } - }, - { - "name": "_complete_code", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 950756616, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "code", - "type": "String" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "owner", - "type": "Object" - } - ] - }, - { - "name": "_lookup_code", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3143837309, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "code", - "type": "String" - }, - { - "name": "symbol", - "type": "String" - }, - { - "name": "path", - "type": "String" - }, - { - "name": "owner", - "type": "Object" - } - ] - }, - { - "name": "_auto_indent_code", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2531480354, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "code", - "type": "String" - }, - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_add_global_constant", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_add_named_global_constant", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "_remove_named_global_constant", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "_thread_enter", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_thread_exit", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_debug_get_error", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_debug_get_stack_level_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_debug_get_stack_level_line", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_stack_level_function", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_stack_level_source", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_stack_level_locals", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 335235777, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - }, - { - "name": "max_subitems", - "type": "int", - "meta": "int32" - }, - { - "name": "max_depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_stack_level_members", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 335235777, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - }, - { - "name": "max_subitems", - "type": "int", - "meta": "int32" - }, - { - "name": "max_depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_stack_level_instance", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3744713108, - "return_value": { - "type": "void*" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_globals", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4123630098, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "max_subitems", - "type": "int", - "meta": "int32" - }, - { - "name": "max_depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_parse_stack_level_expression", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1135811067, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "level", - "type": "int", - "meta": "int32" - }, - { - "name": "expression", - "type": "String" - }, - { - "name": "max_subitems", - "type": "int", - "meta": "int32" - }, - { - "name": "max_depth", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_debug_get_current_stack_info", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_reload_all_scripts", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_reload_scripts", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3156113851, - "arguments": [ - { - "name": "scripts", - "type": "Array" - }, - { - "name": "soft_reload", - "type": "bool" - } - ] - }, - { - "name": "_reload_tool_script", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1957307671, - "arguments": [ - { - "name": "script", - "type": "Script" - }, - { - "name": "soft_reload", - "type": "bool" - } - ] - }, - { - "name": "_get_recognized_extensions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_public_functions", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_get_public_constants", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_get_public_annotations", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "_profiling_start", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_profiling_stop", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_profiling_set_save_native_calls", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "_profiling_get_accumulated_data", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "info_array", - "type": "ScriptLanguageExtensionProfilingInfo*" - }, - { - "name": "info_max", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_profiling_get_frame_data", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "info_array", - "type": "ScriptLanguageExtensionProfilingInfo*" - }, - { - "name": "info_max", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_frame", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_handles_global_class_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "_get_global_class_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2248993622, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ] - }, - { - "name": "ScrollBar", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Range", - "api_type": "core", - "methods": [ - { - "name": "set_custom_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "step", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_custom_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "scrolling" - } - ], - "properties": [ - { - "type": "float", - "name": "custom_step", - "setter": "set_custom_step", - "getter": "get_custom_step" - } - ] - }, - { - "name": "ScrollContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "ScrollMode", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_MODE_DISABLED", - "value": 0 - }, - { - "name": "SCROLL_MODE_AUTO", - "value": 1 - }, - { - "name": "SCROLL_MODE_SHOW_ALWAYS", - "value": 2 - }, - { - "name": "SCROLL_MODE_SHOW_NEVER", - "value": 3 - }, - { - "name": "SCROLL_MODE_RESERVE", - "value": 4 - }, - { - "name": "SCROLL_MODE_MAXIMIZE_FIRST", - "value": 5 - } - ] - }, - { - "name": "ScrollHintMode", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_HINT_MODE_DISABLED", - "value": 0 - }, - { - "name": "SCROLL_HINT_MODE_ALL", - "value": 1 - }, - { - "name": "SCROLL_HINT_MODE_TOP_AND_LEFT", - "value": 2 - }, - { - "name": "SCROLL_HINT_MODE_BOTTOM_AND_RIGHT", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_h_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_h_scroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_v_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_v_scroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_horizontal_custom_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_horizontal_custom_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vertical_custom_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vertical_custom_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_horizontal_scroll_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2750506364, - "arguments": [ - { - "name": "enable", - "type": "enum::ScrollContainer.ScrollMode" - } - ] - }, - { - "name": "get_horizontal_scroll_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3987985145, - "return_value": { - "type": "enum::ScrollContainer.ScrollMode" - } - }, - { - "name": "set_vertical_scroll_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2750506364, - "arguments": [ - { - "name": "enable", - "type": "enum::ScrollContainer.ScrollMode" - } - ] - }, - { - "name": "get_vertical_scroll_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3987985145, - "return_value": { - "type": "enum::ScrollContainer.ScrollMode" - } - }, - { - "name": "set_scroll_horizontal_by_default", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_horizontal_by_default", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deadzone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "deadzone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_deadzone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_scroll_hint_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 578158943, - "arguments": [ - { - "name": "scroll_hint_mode", - "type": "enum::ScrollContainer.ScrollHintMode" - } - ] - }, - { - "name": "get_scroll_hint_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 246835423, - "return_value": { - "type": "enum::ScrollContainer.ScrollHintMode" - } - }, - { - "name": "set_tile_scroll_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "tile_scroll_hint", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_hint_tiled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_follow_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_following_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_h_scroll_bar", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4004517983, - "return_value": { - "type": "HScrollBar" - } - }, - { - "name": "get_v_scroll_bar", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2630340773, - "return_value": { - "type": "VScrollBar" - } - }, - { - "name": "ensure_control_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1496901182, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "set_draw_focus_border", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw", - "type": "bool" - } - ] - }, - { - "name": "get_draw_focus_border", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "scroll_started" - }, - { - "name": "scroll_ended" - } - ], - "properties": [ - { - "type": "bool", - "name": "follow_focus", - "setter": "set_follow_focus", - "getter": "is_following_focus" - }, - { - "type": "bool", - "name": "draw_focus_border", - "setter": "set_draw_focus_border", - "getter": "get_draw_focus_border" - }, - { - "type": "int", - "name": "scroll_horizontal", - "setter": "set_h_scroll", - "getter": "get_h_scroll" - }, - { - "type": "int", - "name": "scroll_vertical", - "setter": "set_v_scroll", - "getter": "get_v_scroll" - }, - { - "type": "float", - "name": "scroll_horizontal_custom_step", - "setter": "set_horizontal_custom_step", - "getter": "get_horizontal_custom_step" - }, - { - "type": "float", - "name": "scroll_vertical_custom_step", - "setter": "set_vertical_custom_step", - "getter": "get_vertical_custom_step" - }, - { - "type": "int", - "name": "horizontal_scroll_mode", - "setter": "set_horizontal_scroll_mode", - "getter": "get_horizontal_scroll_mode" - }, - { - "type": "int", - "name": "vertical_scroll_mode", - "setter": "set_vertical_scroll_mode", - "getter": "get_vertical_scroll_mode" - }, - { - "type": "bool", - "name": "scroll_horizontal_by_default", - "setter": "set_scroll_horizontal_by_default", - "getter": "is_scroll_horizontal_by_default" - }, - { - "type": "int", - "name": "scroll_deadzone", - "setter": "set_deadzone", - "getter": "get_deadzone" - }, - { - "type": "int", - "name": "scroll_hint_mode", - "setter": "set_scroll_hint_mode", - "getter": "get_scroll_hint_mode" - }, - { - "type": "bool", - "name": "tile_scroll_hint", - "setter": "set_tile_scroll_hint", - "getter": "is_scroll_hint_tiled" - } - ] - }, - { - "name": "SegmentShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_a", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "a", - "type": "Vector2" - } - ] - }, - { - "name": "get_a", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_b", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "b", - "type": "Vector2" - } - ] - }, - { - "name": "get_b", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "a", - "setter": "set_a", - "getter": "get_a" - }, - { - "type": "Vector2", - "name": "b", - "setter": "set_b", - "getter": "get_b" - } - ] - }, - { - "name": "Semaphore", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "wait", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "try_wait", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "post", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1667783136, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32", - "default_value": "1" - } - ] - } - ] - }, - { - "name": "SeparationRayShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_slide_on_slope", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_slide_on_slope", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "bool", - "name": "slide_on_slope", - "setter": "set_slide_on_slope", - "getter": "get_slide_on_slope" - } - ] - }, - { - "name": "SeparationRayShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_slide_on_slope", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "get_slide_on_slope", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "bool", - "name": "slide_on_slope", - "setter": "set_slide_on_slope", - "getter": "get_slide_on_slope" - } - ] - }, - { - "name": "Separator", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Control", - "api_type": "core" - }, - { - "name": "Shader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_SPATIAL", - "value": 0 - }, - { - "name": "MODE_CANVAS_ITEM", - "value": 1 - }, - { - "name": "MODE_PARTICLES", - "value": 2 - }, - { - "name": "MODE_SKY", - "value": 3 - }, - { - "name": "MODE_FOG", - "value": 4 - }, - { - "name": "MODE_TEXTURE_BLIT", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3392948163, - "return_value": { - "type": "enum::Shader.Mode" - } - }, - { - "name": "set_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "get_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_default_texture_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3850209648, - "hash_compatibility": [ - 2750740428, - 1628453603 - ], - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "texture", - "type": "Texture" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_default_texture_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4213877425, - "hash_compatibility": [ - 3090538643, - 3823812009 - ], - "return_value": { - "type": "Texture" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_shader_uniform_list", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1230511656, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "get_groups", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "inspect_native_shader_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "String", - "name": "code", - "setter": "set_code", - "getter": "get_code" - } - ] - }, - { - "name": "ShaderGlobalsOverride", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core" - }, - { - "name": "ShaderInclude", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_code", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "code", - "type": "String" - } - ] - }, - { - "name": "get_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "code", - "setter": "set_code", - "getter": "get_code" - } - ] - }, - { - "name": "ShaderIncludeDB", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "list_built_in_include_files", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "has_built_in_include_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "get_built_in_include_file", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1703090593, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - } - ] - }, - { - "name": "ShaderMaterial", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Material", - "api_type": "core", - "methods": [ - { - "name": "set_shader", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341921675, - "arguments": [ - { - "name": "shader", - "type": "Shader" - } - ] - }, - { - "name": "get_shader", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2078273437, - "return_value": { - "type": "Shader" - } - }, - { - "name": "set_shader_parameter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "param", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_shader_parameter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "param", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "Shader", - "name": "shader", - "setter": "set_shader", - "getter": "get_shader" - } - ] - }, - { - "name": "Shape2D", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_custom_solver_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_custom_solver_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "collide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3709843132, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D" - }, - { - "name": "with_shape", - "type": "Shape2D", - "meta": "required" - }, - { - "name": "shape_xform", - "type": "Transform2D" - } - ] - }, - { - "name": "collide_with_motion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869556801, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D" - }, - { - "name": "local_motion", - "type": "Vector2" - }, - { - "name": "with_shape", - "type": "Shape2D", - "meta": "required" - }, - { - "name": "shape_xform", - "type": "Transform2D" - }, - { - "name": "shape_motion", - "type": "Vector2" - } - ] - }, - { - "name": "collide_and_get_contacts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3056932662, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D" - }, - { - "name": "with_shape", - "type": "Shape2D", - "meta": "required" - }, - { - "name": "shape_xform", - "type": "Transform2D" - } - ] - }, - { - "name": "collide_with_motion_and_get_contacts", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3620351573, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D" - }, - { - "name": "local_motion", - "type": "Vector2" - }, - { - "name": "with_shape", - "type": "Shape2D", - "meta": "required" - }, - { - "name": "shape_xform", - "type": "Transform2D" - }, - { - "name": "shape_motion", - "type": "Vector2" - } - ] - }, - { - "name": "draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2948539648, - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - } - ], - "properties": [ - { - "type": "float", - "name": "custom_solver_bias", - "setter": "set_custom_solver_bias", - "getter": "get_custom_solver_bias" - } - ] - }, - { - "name": "Shape3D", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_custom_solver_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_custom_solver_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_debug_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1605880883, - "return_value": { - "type": "ArrayMesh" - } - } - ], - "properties": [ - { - "type": "float", - "name": "custom_solver_bias", - "setter": "set_custom_solver_bias", - "getter": "get_custom_solver_bias" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - } - ] - }, - { - "name": "ShapeCast2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 771364740, - "arguments": [ - { - "name": "shape", - "type": "Shape2D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 522005891, - "return_value": { - "type": "Shape2D" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "local_point", - "type": "Vector2" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_results", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_results", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_colliding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "force_shapecast_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_closest_collision_safe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_closest_collision_unsafe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "add_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "add_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3090941106, - "arguments": [ - { - "name": "node", - "type": "CollisionObject2D", - "meta": "required" - } - ] - }, - { - "name": "remove_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "remove_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3090941106, - "arguments": [ - { - "name": "node", - "type": "CollisionObject2D", - "meta": "required" - } - ] - }, - { - "name": "clear_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_parent_body", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mask", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_parent_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_collision_result", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "Shape2D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "bool", - "name": "exclude_parent", - "setter": "set_exclude_parent_body", - "getter": "get_exclude_parent_body" - }, - { - "type": "Vector2", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "int", - "name": "max_results", - "setter": "set_max_results", - "getter": "get_max_results" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "Array", - "name": "collision_result", - "getter": "get_collision_result" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - } - ] - }, - { - "name": "ShapeCast3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "resource_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 968641751, - "arguments": [ - { - "name": "resource", - "type": "Resource" - } - ] - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549710052, - "arguments": [ - { - "name": "shape", - "type": "Shape3D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3214262478, - "return_value": { - "type": "Shape3D" - } - }, - { - "name": "set_target_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "local_point", - "type": "Vector3" - } - ] - }, - { - "name": "get_target_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_results", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_results", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_results", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_colliding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "force_shapecast_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_collider", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3332903315, - "return_value": { - "type": "Object" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collider_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collider_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_closest_collision_safe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_closest_collision_unsafe_fraction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "add_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "add_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976431078, - "arguments": [ - { - "name": "node", - "type": "CollisionObject3D", - "meta": "required" - } - ] - }, - { - "name": "remove_exception_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "remove_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976431078, - "arguments": [ - { - "name": "node", - "type": "CollisionObject3D", - "meta": "required" - } - ] - }, - { - "name": "clear_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_parent_body", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "mask", - "type": "bool" - } - ] - }, - { - "name": "get_exclude_parent_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_areas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_areas_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collide_with_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_collision_result", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_debug_shape_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "debug_shape_custom_color", - "type": "Color" - } - ] - }, - { - "name": "get_debug_shape_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "Shape3D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "bool", - "name": "exclude_parent", - "setter": "set_exclude_parent_body", - "getter": "get_exclude_parent_body" - }, - { - "type": "Vector3", - "name": "target_position", - "setter": "set_target_position", - "getter": "get_target_position" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - }, - { - "type": "int", - "name": "max_results", - "setter": "set_max_results", - "getter": "get_max_results" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "Array", - "name": "collision_result", - "getter": "get_collision_result" - }, - { - "type": "bool", - "name": "collide_with_areas", - "setter": "set_collide_with_areas", - "getter": "is_collide_with_areas_enabled" - }, - { - "type": "bool", - "name": "collide_with_bodies", - "setter": "set_collide_with_bodies", - "getter": "is_collide_with_bodies_enabled" - }, - { - "type": "Color", - "name": "debug_shape_custom_color", - "setter": "set_debug_shape_custom_color", - "getter": "get_debug_shape_custom_color" - } - ] - }, - { - "name": "Shortcut", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_events", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "events", - "type": "Array" - } - ] - }, - { - "name": "get_events", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "has_valid_event", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "matches_event", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3738334489, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "get_as_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "typedarray::24/17:InputEvent", - "name": "events", - "setter": "set_events", - "getter": "get_events" - } - ] - }, - { - "name": "Skeleton2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "get_bone_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2556267111, - "return_value": { - "type": "Bone2D" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_modification_stack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3907307132, - "arguments": [ - { - "name": "modification_stack", - "type": "SkeletonModificationStack2D" - } - ] - }, - { - "name": "get_modification_stack", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2107508396, - "return_value": { - "type": "SkeletonModificationStack2D" - } - }, - { - "name": "execute_modifications", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1005356550, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "execution_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_local_pose_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 555457532, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "override_pose", - "type": "Transform2D" - }, - { - "name": "strength", - "type": "float", - "meta": "float" - }, - { - "name": "persistent", - "type": "bool" - } - ] - }, - { - "name": "get_bone_local_pose_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2995540667, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "bone_setup_changed" - } - ] - }, - { - "name": "Skeleton3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_UPDATE_SKELETON", - "value": 50 - } - ], - "enums": [ - { - "name": "ModifierCallbackModeProcess", - "is_bitfield": false, - "values": [ - { - "name": "MODIFIER_CALLBACK_MODE_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "MODIFIER_CALLBACK_MODE_PROCESS_IDLE", - "value": 1 - }, - { - "name": "MODIFIER_CALLBACK_MODE_PROCESS_MANUAL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1597066294, - "hash_compatibility": [ - 83702148 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "find_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_bone_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 203112058, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key", - "type": "StringName" - } - ] - }, - { - "name": "get_bone_meta_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::StringName" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_bone_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 921227809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key", - "type": "StringName" - } - ] - }, - { - "name": "set_bone_meta", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 702482756, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "key", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_concatenated_bone_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_bone_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "parent_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "unparent_bone_and_rest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_children", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1706082319, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_parentless_bones", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "get_bone_rest", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_rest", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "rest", - "type": "Transform3D" - } - ] - }, - { - "name": "get_bone_global_rest", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_skin_from_rest_transforms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1032037385, - "return_value": { - "type": "Skin" - } - }, - { - "name": "register_skin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3405789568, - "return_value": { - "type": "SkinReference" - }, - "arguments": [ - { - "name": "skin", - "type": "Skin" - } - ] - }, - { - "name": "localize_rests", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_bone_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "pose", - "type": "Transform3D" - } - ] - }, - { - "name": "set_bone_pose_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector3" - } - ] - }, - { - "name": "set_bone_pose_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2823819782, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "rotation", - "type": "Quaternion" - } - ] - }, - { - "name": "set_bone_pose_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "scale", - "type": "Vector3" - } - ] - }, - { - "name": "get_bone_pose_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_pose_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 476865136, - "return_value": { - "type": "Quaternion" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_pose_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reset_bone_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "reset_bone_poses", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_bone_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_bone_global_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_global_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "pose", - "type": "Transform3D" - } - ] - }, - { - "name": "force_update_all_bone_transforms", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "force_update_bone_child_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_motion_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "motion_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_motion_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_show_rest_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_show_rest_only", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modifier_callback_mode_process", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3916362634, - "arguments": [ - { - "name": "mode", - "type": "enum::Skeleton3D.ModifierCallbackModeProcess" - } - ] - }, - { - "name": "get_modifier_callback_mode_process", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 997182536, - "return_value": { - "type": "enum::Skeleton3D.ModifierCallbackModeProcess" - } - }, - { - "name": "advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "clear_bones_global_pose_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_bone_global_pose_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3483398371, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "pose", - "type": "Transform3D" - }, - { - "name": "amount", - "type": "float", - "meta": "float" - }, - { - "name": "persistent", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_bone_global_pose_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_global_pose_no_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_animate_physical_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_animate_physical_bones", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "physical_bones_stop_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "physical_bones_start_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787316981, - "arguments": [ - { - "name": "bones", - "type": "typedarray::StringName", - "default_value": "[]" - } - ] - }, - { - "name": "physical_bones_add_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "exception", - "type": "RID" - } - ] - }, - { - "name": "physical_bones_remove_collision_exception", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "exception", - "type": "RID" - } - ] - } - ], - "signals": [ - { - "name": "rest_updated" - }, - { - "name": "pose_updated" - }, - { - "name": "skeleton_updated" - }, - { - "name": "bone_enabled_changed", - "arguments": [ - { - "name": "bone_idx", - "type": "int" - } - ] - }, - { - "name": "bone_list_changed" - }, - { - "name": "show_rest_only_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "motion_scale", - "setter": "set_motion_scale", - "getter": "get_motion_scale" - }, - { - "type": "bool", - "name": "show_rest_only", - "setter": "set_show_rest_only", - "getter": "is_show_rest_only" - }, - { - "type": "int", - "name": "modifier_callback_mode_process", - "setter": "set_modifier_callback_mode_process", - "getter": "get_modifier_callback_mode_process" - }, - { - "type": "bool", - "name": "animate_physical_bones", - "setter": "set_animate_physical_bones", - "getter": "get_animate_physical_bones" - } - ] - }, - { - "name": "SkeletonIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "root_bone", - "type": "StringName" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_tip_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "tip_bone", - "type": "StringName" - } - ] - }, - { - "name": "get_tip_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_target_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "target", - "type": "Transform3D" - } - ] - }, - { - "name": "get_target_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "node", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 277076166, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_override_tip_basis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "override", - "type": "bool" - } - ] - }, - { - "name": "is_override_tip_basis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_magnet", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use", - "type": "bool" - } - ] - }, - { - "name": "is_using_magnet", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_magnet_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "local_position", - "type": "Vector3" - } - ] - }, - { - "name": "get_magnet_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_parent_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1488626673, - "return_value": { - "type": "Skeleton3D" - } - }, - { - "name": "is_running", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_min_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "min_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max_iterations", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "iterations", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_iterations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "arguments": [ - { - "name": "one_time", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_interpolation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interpolation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_interpolation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "root_bone", - "setter": "set_root_bone", - "getter": "get_root_bone" - }, - { - "type": "StringName", - "name": "tip_bone", - "setter": "set_tip_bone", - "getter": "get_tip_bone" - }, - { - "type": "Transform3D", - "name": "target", - "setter": "set_target_transform", - "getter": "get_target_transform" - }, - { - "type": "bool", - "name": "override_tip_basis", - "setter": "set_override_tip_basis", - "getter": "is_override_tip_basis" - }, - { - "type": "bool", - "name": "use_magnet", - "setter": "set_use_magnet", - "getter": "is_using_magnet" - }, - { - "type": "Vector3", - "name": "magnet", - "setter": "set_magnet_position", - "getter": "get_magnet_position" - }, - { - "type": "NodePath", - "name": "target_node", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "float", - "name": "min_distance", - "setter": "set_min_distance", - "getter": "get_min_distance" - }, - { - "type": "int", - "name": "max_iterations", - "setter": "set_max_iterations", - "getter": "get_max_iterations" - }, - { - "type": "float", - "name": "interpolation", - "setter": "set_interpolation", - "getter": "get_interpolation" - } - ] - }, - { - "name": "SkeletonModification2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_execute", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_setup_modification", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3907307132, - "arguments": [ - { - "name": "modification_stack", - "type": "SkeletonModificationStack2D" - } - ] - }, - { - "name": "_draw_editor_gizmo", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_modification_stack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2137761694, - "return_value": { - "type": "SkeletonModificationStack2D" - } - }, - { - "name": "set_is_setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_setup", - "type": "bool" - } - ] - }, - { - "name": "get_is_setup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_execution_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "execution_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_execution_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clamp_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1229502682, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "angle", - "type": "float", - "meta": "float" - }, - { - "name": "min", - "type": "float", - "meta": "float" - }, - { - "name": "max", - "type": "float", - "meta": "float" - }, - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "set_editor_draw_gizmo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_gizmo", - "type": "bool" - } - ] - }, - { - "name": "get_editor_draw_gizmo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "get_enabled" - }, - { - "type": "int", - "name": "execution_mode", - "setter": "set_execution_mode", - "getter": "get_execution_mode" - } - ] - }, - { - "name": "SkeletonModification2DCCDIK", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_tip_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "tip_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_tip_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_ccdik_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ccdik_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_ccdik_joint_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone2d_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_ccdik_joint_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_bone_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ccdik_joint_bone_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_rotate_from_joint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "rotate_from_joint", - "type": "bool" - } - ] - }, - { - "name": "get_ccdik_joint_rotate_from_joint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_enable_constraint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "enable_constraint", - "type": "bool" - } - ] - }, - { - "name": "get_ccdik_joint_enable_constraint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_constraint_angle_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "angle_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ccdik_joint_constraint_angle_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_constraint_angle_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "angle_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_ccdik_joint_constraint_angle_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ccdik_joint_constraint_angle_invert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "get_ccdik_joint_constraint_angle_invert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "target_nodepath", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "NodePath", - "name": "tip_nodepath", - "setter": "set_tip_node", - "getter": "get_tip_node" - }, - { - "type": "int", - "name": "ccdik_data_chain_length", - "setter": "set_ccdik_data_chain_length", - "getter": "get_ccdik_data_chain_length" - } - ] - }, - { - "name": "SkeletonModification2DFABRIK", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_fabrik_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fabrik_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fabrik_joint_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone2d_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_fabrik_joint_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fabrik_joint_bone_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fabrik_joint_bone_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fabrik_joint_magnet_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "magnet_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_fabrik_joint_magnet_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_fabrik_joint_use_target_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "use_target_rotation", - "type": "bool" - } - ] - }, - { - "name": "get_fabrik_joint_use_target_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "target_nodepath", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "int", - "name": "fabrik_data_chain_length", - "setter": "set_fabrik_data_chain_length", - "getter": "get_fabrik_data_chain_length" - } - ] - }, - { - "name": "SkeletonModification2DJiggle", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_jiggle_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_jiggle_data_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "damping", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_gravity", - "type": "bool" - } - ] - }, - { - "name": "get_use_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "gravity", - "type": "Vector2" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_use_colliders", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_colliders", - "type": "bool" - } - ] - }, - { - "name": "get_use_colliders", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_jiggle_joint_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone2d_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_jiggle_joint_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_bone_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_jiggle_joint_bone_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "override", - "type": "bool" - } - ] - }, - { - "name": "get_jiggle_joint_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_jiggle_joint_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_jiggle_joint_mass", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_damping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "damping", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_jiggle_joint_damping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_use_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "use_gravity", - "type": "bool" - } - ] - }, - { - "name": "get_jiggle_joint_use_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_jiggle_joint_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "gravity", - "type": "Vector2" - } - ] - }, - { - "name": "get_jiggle_joint_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "NodePath", - "name": "target_nodepath", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "int", - "name": "jiggle_data_chain_length", - "setter": "set_jiggle_data_chain_length", - "getter": "get_jiggle_data_chain_length" - }, - { - "type": "float", - "name": "stiffness", - "setter": "set_stiffness", - "getter": "get_stiffness" - }, - { - "type": "float", - "name": "mass", - "setter": "set_mass", - "getter": "get_mass" - }, - { - "type": "float", - "name": "damping", - "setter": "set_damping", - "getter": "get_damping" - }, - { - "type": "bool", - "name": "use_gravity", - "setter": "set_use_gravity", - "getter": "get_use_gravity" - }, - { - "type": "Vector2", - "name": "gravity", - "setter": "set_gravity", - "getter": "get_gravity" - } - ] - }, - { - "name": "SkeletonModification2DLookAt", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "bone2d_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_bone_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_additional_rotation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "rotation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_additional_rotation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_enable_constraint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable_constraint", - "type": "bool" - } - ] - }, - { - "name": "get_enable_constraint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_constraint_angle_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle_min", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constraint_angle_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_constraint_angle_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "angle_max", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constraint_angle_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_constraint_angle_invert", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "invert", - "type": "bool" - } - ] - }, - { - "name": "get_constraint_angle_invert", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "bone_index", - "setter": "set_bone_index", - "getter": "get_bone_index" - }, - { - "type": "NodePath", - "name": "bone2d_node", - "setter": "set_bone2d_node", - "getter": "get_bone2d_node" - }, - { - "type": "NodePath", - "name": "target_nodepath", - "setter": "set_target_node", - "getter": "get_target_node" - } - ] - }, - { - "name": "SkeletonModification2DPhysicalBones", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_physical_bone_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "length", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_physical_bone_chain_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_physical_bone_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "physicalbone2d_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_physical_bone_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "joint_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "fetch_physical_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "start_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787316981, - "arguments": [ - { - "name": "bones", - "type": "typedarray::StringName", - "default_value": "[]" - } - ] - }, - { - "name": "stop_simulation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787316981, - "arguments": [ - { - "name": "bones", - "type": "typedarray::StringName", - "default_value": "[]" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "physical_bone_chain_length", - "setter": "set_physical_bone_chain_length", - "getter": "get_physical_bone_chain_length" - } - ] - }, - { - "name": "SkeletonModification2DStackHolder", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_held_modification_stack", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3907307132, - "arguments": [ - { - "name": "held_modification_stack", - "type": "SkeletonModificationStack2D" - } - ] - }, - { - "name": "get_held_modification_stack", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2107508396, - "return_value": { - "type": "SkeletonModificationStack2D" - } - } - ] - }, - { - "name": "SkeletonModification2DTwoBoneIK", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonModification2D", - "api_type": "core", - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target_nodepath", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_target_minimum_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "minimum_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_target_minimum_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_target_maximum_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "maximum_distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_target_maximum_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_flip_bend_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_direction", - "type": "bool" - } - ] - }, - { - "name": "get_flip_bend_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_joint_one_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "bone2d_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_joint_one_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_joint_one_bone_idx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_one_bone_idx", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_joint_two_bone2d_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "bone2d_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_joint_two_bone2d_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_joint_two_bone_idx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_two_bone_idx", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "target_nodepath", - "setter": "set_target_node", - "getter": "get_target_node" - }, - { - "type": "float", - "name": "target_minimum_distance", - "setter": "set_target_minimum_distance", - "getter": "get_target_minimum_distance" - }, - { - "type": "float", - "name": "target_maximum_distance", - "setter": "set_target_maximum_distance", - "getter": "get_target_maximum_distance" - }, - { - "type": "bool", - "name": "flip_bend_direction", - "setter": "set_flip_bend_direction", - "getter": "get_flip_bend_direction" - } - ] - }, - { - "name": "SkeletonModificationStack2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "setup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "execute", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1005356550, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "float" - }, - { - "name": "execution_mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "enable_all_modifications", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_modification", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2570274329, - "return_value": { - "type": "SkeletonModification2D" - }, - "arguments": [ - { - "name": "mod_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_modification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 354162120, - "arguments": [ - { - "name": "modification", - "type": "SkeletonModification2D" - } - ] - }, - { - "name": "delete_modification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mod_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_modification", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1098262544, - "arguments": [ - { - "name": "mod_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "modification", - "type": "SkeletonModification2D" - } - ] - }, - { - "name": "set_modification_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_modification_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_is_setup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1697361217, - "return_value": { - "type": "Skeleton2D" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "get_enabled" - }, - { - "type": "float", - "name": "strength", - "setter": "set_strength", - "getter": "get_strength" - }, - { - "type": "int", - "name": "modification_count", - "setter": "set_modification_count", - "getter": "get_modification_count" - } - ] - }, - { - "name": "SkeletonModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "BoneAxis", - "is_bitfield": false, - "values": [ - { - "name": "BONE_AXIS_PLUS_X", - "value": 0 - }, - { - "name": "BONE_AXIS_MINUS_X", - "value": 1 - }, - { - "name": "BONE_AXIS_PLUS_Y", - "value": 2 - }, - { - "name": "BONE_AXIS_MINUS_Y", - "value": 3 - }, - { - "name": "BONE_AXIS_PLUS_Z", - "value": 4 - }, - { - "name": "BONE_AXIS_MINUS_Z", - "value": 5 - } - ] - }, - { - "name": "BoneDirection", - "is_bitfield": false, - "values": [ - { - "name": "BONE_DIRECTION_PLUS_X", - "value": 0 - }, - { - "name": "BONE_DIRECTION_MINUS_X", - "value": 1 - }, - { - "name": "BONE_DIRECTION_PLUS_Y", - "value": 2 - }, - { - "name": "BONE_DIRECTION_MINUS_Y", - "value": 3 - }, - { - "name": "BONE_DIRECTION_PLUS_Z", - "value": 4 - }, - { - "name": "BONE_DIRECTION_MINUS_Z", - "value": 5 - }, - { - "name": "BONE_DIRECTION_FROM_PARENT", - "value": 6 - } - ] - }, - { - "name": "SecondaryDirection", - "is_bitfield": false, - "values": [ - { - "name": "SECONDARY_DIRECTION_NONE", - "value": 0 - }, - { - "name": "SECONDARY_DIRECTION_PLUS_X", - "value": 1 - }, - { - "name": "SECONDARY_DIRECTION_MINUS_X", - "value": 2 - }, - { - "name": "SECONDARY_DIRECTION_PLUS_Y", - "value": 3 - }, - { - "name": "SECONDARY_DIRECTION_MINUS_Y", - "value": 4 - }, - { - "name": "SECONDARY_DIRECTION_PLUS_Z", - "value": 5 - }, - { - "name": "SECONDARY_DIRECTION_MINUS_Z", - "value": 6 - }, - { - "name": "SECONDARY_DIRECTION_CUSTOM", - "value": 7 - } - ] - }, - { - "name": "RotationAxis", - "is_bitfield": false, - "values": [ - { - "name": "ROTATION_AXIS_X", - "value": 0 - }, - { - "name": "ROTATION_AXIS_Y", - "value": 1 - }, - { - "name": "ROTATION_AXIS_Z", - "value": 2 - }, - { - "name": "ROTATION_AXIS_ALL", - "value": 3 - }, - { - "name": "ROTATION_AXIS_CUSTOM", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "_process_modification_with_delta", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_process_modification", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_skeleton_changed", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2926744397, - "arguments": [ - { - "name": "old_skeleton", - "type": "Skeleton3D" - }, - { - "name": "new_skeleton", - "type": "Skeleton3D" - } - ] - }, - { - "name": "_validate_bone_names", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1488626673, - "return_value": { - "type": "Skeleton3D" - } - }, - { - "name": "set_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_influence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "influence", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_influence", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "signals": [ - { - "name": "modification_processed" - } - ], - "properties": [ - { - "type": "bool", - "name": "active", - "setter": "set_active", - "getter": "is_active" - }, - { - "type": "float", - "name": "influence", - "setter": "set_influence", - "getter": "get_influence" - } - ] - }, - { - "name": "SkeletonProfile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "TailDirection", - "is_bitfield": false, - "values": [ - { - "name": "TAIL_DIRECTION_AVERAGE_CHILDREN", - "value": 0 - }, - { - "name": "TAIL_DIRECTION_SPECIFIC_CHILD", - "value": 1 - }, - { - "name": "TAIL_DIRECTION_END", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bone_name", - "type": "StringName" - } - ] - }, - { - "name": "get_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2737447660, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_scale_base_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bone_name", - "type": "StringName" - } - ] - }, - { - "name": "get_scale_base_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2737447660, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_group_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_group_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_group_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "group_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_group_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "group_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "group_name", - "type": "StringName" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "group_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "group_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_bone_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bone_name", - "type": "StringName" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "StringName" - } - ] - }, - { - "name": "get_bone_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_parent", - "type": "StringName" - } - ] - }, - { - "name": "get_tail_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2675997574, - "return_value": { - "type": "enum::SkeletonProfile.TailDirection" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tail_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1231951015, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tail_direction", - "type": "enum::SkeletonProfile.TailDirection" - } - ] - }, - { - "name": "get_bone_tail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bone_tail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_tail", - "type": "StringName" - } - ] - }, - { - "name": "get_reference_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_reference_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "Transform3D" - } - ] - }, - { - "name": "get_handle_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_handle_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "handle_offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "group", - "type": "StringName" - } - ] - }, - { - "name": "is_required", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_required", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "required", - "type": "bool" - } - ] - } - ], - "signals": [ - { - "name": "profile_updated" - } - ], - "properties": [ - { - "type": "StringName", - "name": "root_bone", - "setter": "set_root_bone", - "getter": "get_root_bone" - }, - { - "type": "StringName", - "name": "scale_base_bone", - "setter": "set_scale_base_bone", - "getter": "get_scale_base_bone" - }, - { - "type": "int", - "name": "group_size", - "setter": "set_group_size", - "getter": "get_group_size" - }, - { - "type": "int", - "name": "bone_size", - "setter": "set_bone_size", - "getter": "get_bone_size" - } - ] - }, - { - "name": "SkeletonProfileHumanoid", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SkeletonProfile", - "api_type": "core" - }, - { - "name": "Skin", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_bind_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bind_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bind_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_bind", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bone", - "type": "int", - "meta": "int32" - }, - { - "name": "pose", - "type": "Transform3D" - } - ] - }, - { - "name": "add_named_bind", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3154712474, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "pose", - "type": "Transform3D" - } - ] - }, - { - "name": "set_bind_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3616898986, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - }, - { - "name": "pose", - "type": "Transform3D" - } - ] - }, - { - "name": "get_bind_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965739696, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bind_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3780747571, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_bind_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 659327637, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bind_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bind_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_binds", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "SkinReference", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_skin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2074563878, - "return_value": { - "type": "Skin" - } - } - ] - }, - { - "name": "Sky", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "RadianceSize", - "is_bitfield": false, - "values": [ - { - "name": "RADIANCE_SIZE_32", - "value": 0 - }, - { - "name": "RADIANCE_SIZE_64", - "value": 1 - }, - { - "name": "RADIANCE_SIZE_128", - "value": 2 - }, - { - "name": "RADIANCE_SIZE_256", - "value": 3 - }, - { - "name": "RADIANCE_SIZE_512", - "value": 4 - }, - { - "name": "RADIANCE_SIZE_1024", - "value": 5 - }, - { - "name": "RADIANCE_SIZE_2048", - "value": 6 - }, - { - "name": "RADIANCE_SIZE_MAX", - "value": 7 - } - ] - }, - { - "name": "ProcessMode", - "is_bitfield": false, - "values": [ - { - "name": "PROCESS_MODE_AUTOMATIC", - "value": 0 - }, - { - "name": "PROCESS_MODE_QUALITY", - "value": 1 - }, - { - "name": "PROCESS_MODE_INCREMENTAL", - "value": 2 - }, - { - "name": "PROCESS_MODE_REALTIME", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_radiance_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1512957179, - "arguments": [ - { - "name": "size", - "type": "enum::Sky.RadianceSize" - } - ] - }, - { - "name": "get_radiance_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2708733976, - "return_value": { - "type": "enum::Sky.RadianceSize" - } - }, - { - "name": "set_process_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 875986769, - "arguments": [ - { - "name": "mode", - "type": "enum::Sky.ProcessMode" - } - ] - }, - { - "name": "get_process_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 731245043, - "return_value": { - "type": "enum::Sky.ProcessMode" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - } - ], - "properties": [ - { - "type": "PanoramaSkyMaterial,ProceduralSkyMaterial,PhysicalSkyMaterial,ShaderMaterial", - "name": "sky_material", - "setter": "set_material", - "getter": "get_material" - }, - { - "type": "int", - "name": "process_mode", - "setter": "set_process_mode", - "getter": "get_process_mode" - }, - { - "type": "int", - "name": "radiance_size", - "setter": "set_radiance_size", - "getter": "get_radiance_size" - } - ] - }, - { - "name": "Slider", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Range", - "api_type": "core", - "enums": [ - { - "name": "TickPosition", - "is_bitfield": false, - "values": [ - { - "name": "TICK_POSITION_BOTTOM_RIGHT", - "value": 0 - }, - { - "name": "TICK_POSITION_TOP_LEFT", - "value": 1 - }, - { - "name": "TICK_POSITION_BOTH", - "value": 2 - }, - { - "name": "TICK_POSITION_CENTER", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_ticks", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ticks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_ticks_on_borders", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ticks_on_borders", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ticks_on_border", - "type": "bool" - } - ] - }, - { - "name": "get_ticks_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3567635531, - "return_value": { - "type": "enum::Slider.TickPosition" - } - }, - { - "name": "set_ticks_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952822224, - "arguments": [ - { - "name": "ticks_on_border", - "type": "enum::Slider.TickPosition" - } - ] - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "editable", - "type": "bool" - } - ] - }, - { - "name": "is_editable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scrollable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "scrollable", - "type": "bool" - } - ] - }, - { - "name": "is_scrollable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "drag_started" - }, - { - "name": "drag_ended", - "arguments": [ - { - "name": "value_changed", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "editable", - "setter": "set_editable", - "getter": "is_editable" - }, - { - "type": "bool", - "name": "scrollable", - "setter": "set_scrollable", - "getter": "is_scrollable" - }, - { - "type": "int", - "name": "tick_count", - "setter": "set_ticks", - "getter": "get_ticks" - }, - { - "type": "bool", - "name": "ticks_on_borders", - "setter": "set_ticks_on_borders", - "getter": "get_ticks_on_borders" - }, - { - "type": "int", - "name": "ticks_position", - "setter": "set_ticks_position", - "getter": "get_ticks_position" - } - ] - }, - { - "name": "SliderJoint3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Joint3D", - "api_type": "core", - "enums": [ - { - "name": "Param", - "is_bitfield": false, - "values": [ - { - "name": "PARAM_LINEAR_LIMIT_UPPER", - "value": 0 - }, - { - "name": "PARAM_LINEAR_LIMIT_LOWER", - "value": 1 - }, - { - "name": "PARAM_LINEAR_LIMIT_SOFTNESS", - "value": 2 - }, - { - "name": "PARAM_LINEAR_LIMIT_RESTITUTION", - "value": 3 - }, - { - "name": "PARAM_LINEAR_LIMIT_DAMPING", - "value": 4 - }, - { - "name": "PARAM_LINEAR_MOTION_SOFTNESS", - "value": 5 - }, - { - "name": "PARAM_LINEAR_MOTION_RESTITUTION", - "value": 6 - }, - { - "name": "PARAM_LINEAR_MOTION_DAMPING", - "value": 7 - }, - { - "name": "PARAM_LINEAR_ORTHOGONAL_SOFTNESS", - "value": 8 - }, - { - "name": "PARAM_LINEAR_ORTHOGONAL_RESTITUTION", - "value": 9 - }, - { - "name": "PARAM_LINEAR_ORTHOGONAL_DAMPING", - "value": 10 - }, - { - "name": "PARAM_ANGULAR_LIMIT_UPPER", - "value": 11 - }, - { - "name": "PARAM_ANGULAR_LIMIT_LOWER", - "value": 12 - }, - { - "name": "PARAM_ANGULAR_LIMIT_SOFTNESS", - "value": 13 - }, - { - "name": "PARAM_ANGULAR_LIMIT_RESTITUTION", - "value": 14 - }, - { - "name": "PARAM_ANGULAR_LIMIT_DAMPING", - "value": 15 - }, - { - "name": "PARAM_ANGULAR_MOTION_SOFTNESS", - "value": 16 - }, - { - "name": "PARAM_ANGULAR_MOTION_RESTITUTION", - "value": 17 - }, - { - "name": "PARAM_ANGULAR_MOTION_DAMPING", - "value": 18 - }, - { - "name": "PARAM_ANGULAR_ORTHOGONAL_SOFTNESS", - "value": 19 - }, - { - "name": "PARAM_ANGULAR_ORTHOGONAL_RESTITUTION", - "value": 20 - }, - { - "name": "PARAM_ANGULAR_ORTHOGONAL_DAMPING", - "value": 21 - }, - { - "name": "PARAM_MAX", - "value": 22 - } - ] - } - ], - "methods": [ - { - "name": "set_param", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 918243683, - "arguments": [ - { - "name": "param", - "type": "enum::SliderJoint3D.Param" - }, - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_param", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 959925627, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "param", - "type": "enum::SliderJoint3D.Param" - } - ] - } - ] - }, - { - "name": "SocketServer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "is_connection_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_listening", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "take_socket_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1883962599, - "return_value": { - "type": "StreamPeerSocket" - } - } - ] - }, - { - "name": "SoftBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "MeshInstance3D", - "api_type": "core", - "enums": [ - { - "name": "DisableMode", - "is_bitfield": false, - "values": [ - { - "name": "DISABLE_MODE_REMOVE", - "value": 0 - }, - { - "name": "DISABLE_MODE_KEEP_ACTIVE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "get_physics_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "collision_layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_collision_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_collision_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_parent_collision_ignore", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "parent_collision_ignore", - "type": "NodePath" - } - ] - }, - { - "name": "get_parent_collision_ignore", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_disable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1104158384, - "arguments": [ - { - "name": "mode", - "type": "enum::SoftBody3D.DisableMode" - } - ] - }, - { - "name": "get_disable_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135042476, - "return_value": { - "type": "enum::SoftBody3D.DisableMode" - } - }, - { - "name": "get_collision_exceptions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::PhysicsBody3D" - } - }, - { - "name": "add_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "remove_collision_exception_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "body", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "set_simulation_precision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "simulation_precision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_simulation_precision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_total_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mass", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_total_mass", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_linear_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "linear_stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_linear_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_shrinking_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "shrinking_factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_shrinking_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pressure_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pressure_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pressure_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "damping_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_drag_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "drag_coefficient", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drag_coefficient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_point_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 871989493, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "apply_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_impulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "impulse", - "type": "Vector3" - } - ] - }, - { - "name": "apply_central_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "set_point_pinned", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 528784402, - "hash_compatibility": [ - 3814935226 - ], - "arguments": [ - { - "name": "point_index", - "type": "int", - "meta": "int32" - }, - { - "name": "pinned", - "type": "bool" - }, - { - "name": "attachment_path", - "type": "NodePath", - "default_value": "NodePath(\"\")" - }, - { - "name": "insert_at", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "is_point_pinned", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_ray_pickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ray_pickable", - "type": "bool" - } - ] - }, - { - "name": "is_ray_pickable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "collision_layer", - "setter": "set_collision_layer", - "getter": "get_collision_layer" - }, - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "NodePath", - "name": "parent_collision_ignore", - "setter": "set_parent_collision_ignore", - "getter": "get_parent_collision_ignore" - }, - { - "type": "int", - "name": "simulation_precision", - "setter": "set_simulation_precision", - "getter": "get_simulation_precision" - }, - { - "type": "float", - "name": "total_mass", - "setter": "set_total_mass", - "getter": "get_total_mass" - }, - { - "type": "float", - "name": "linear_stiffness", - "setter": "set_linear_stiffness", - "getter": "get_linear_stiffness" - }, - { - "type": "float", - "name": "shrinking_factor", - "setter": "set_shrinking_factor", - "getter": "get_shrinking_factor" - }, - { - "type": "float", - "name": "pressure_coefficient", - "setter": "set_pressure_coefficient", - "getter": "get_pressure_coefficient" - }, - { - "type": "float", - "name": "damping_coefficient", - "setter": "set_damping_coefficient", - "getter": "get_damping_coefficient" - }, - { - "type": "float", - "name": "drag_coefficient", - "setter": "set_drag_coefficient", - "getter": "get_drag_coefficient" - }, - { - "type": "bool", - "name": "ray_pickable", - "setter": "set_ray_pickable", - "getter": "is_ray_pickable" - }, - { - "type": "int", - "name": "disable_mode", - "setter": "set_disable_mode", - "getter": "get_disable_mode" - } - ] - }, - { - "name": "SphereMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "radial_segments", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_radial_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_is_hemisphere", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_hemisphere", - "type": "bool" - } - ] - }, - { - "name": "get_is_hemisphere", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "int", - "name": "radial_segments", - "setter": "set_radial_segments", - "getter": "get_radial_segments" - }, - { - "type": "int", - "name": "rings", - "setter": "set_rings", - "getter": "get_rings" - }, - { - "type": "bool", - "name": "is_hemisphere", - "setter": "set_is_hemisphere", - "getter": "get_is_hemisphere" - } - ] - }, - { - "name": "SphereOccluder3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Occluder3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "SphereShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - } - ] - }, - { - "name": "SpinBox", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Range", - "api_type": "core", - "methods": [ - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_suffix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "suffix", - "type": "String" - } - ] - }, - { - "name": "get_suffix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_prefix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "get_prefix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_custom_arrow_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "arrow_step", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_custom_arrow_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_custom_arrow_round", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "round", - "type": "bool" - } - ] - }, - { - "name": "is_custom_arrow_rounding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_editable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_update_on_text_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_update_on_text_changed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_select_all_on_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_select_all_on_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "apply", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_line_edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4071694264, - "return_value": { - "type": "LineEdit" - } - } - ], - "properties": [ - { - "type": "int", - "name": "alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "bool", - "name": "editable", - "setter": "set_editable", - "getter": "is_editable" - }, - { - "type": "bool", - "name": "update_on_text_changed", - "setter": "set_update_on_text_changed", - "getter": "get_update_on_text_changed" - }, - { - "type": "String", - "name": "prefix", - "setter": "set_prefix", - "getter": "get_prefix" - }, - { - "type": "String", - "name": "suffix", - "setter": "set_suffix", - "getter": "get_suffix" - }, - { - "type": "float", - "name": "custom_arrow_step", - "setter": "set_custom_arrow_step", - "getter": "get_custom_arrow_step" - }, - { - "type": "bool", - "name": "custom_arrow_round", - "setter": "set_custom_arrow_round", - "getter": "is_custom_arrow_rounding" - }, - { - "type": "bool", - "name": "select_all_on_focus", - "setter": "set_select_all_on_focus", - "getter": "is_select_all_on_focus" - } - ] - }, - { - "name": "SplineIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ChainIK3D", - "api_type": "core", - "methods": [ - { - "name": "set_path_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "path_3d", - "type": "NodePath" - } - ] - }, - { - "name": "get_path_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tilt_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_tilt_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tilt_fade_in", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tilt_fade_in", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tilt_fade_out", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tilt_fade_out", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "SplitContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "DraggerVisibility", - "is_bitfield": false, - "values": [ - { - "name": "DRAGGER_VISIBLE", - "value": 0 - }, - { - "name": "DRAGGER_HIDDEN", - "value": 1 - }, - { - "name": "DRAGGER_HIDDEN_COLLAPSED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_split_offsets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "offsets", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_split_offsets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "clamp_split_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "hash_compatibility": [ - 3218959716 - ], - "arguments": [ - { - "name": "priority_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_collapsed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "collapsed", - "type": "bool" - } - ] - }, - { - "name": "is_collapsed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_dragger_visibility", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1168273952, - "arguments": [ - { - "name": "mode", - "type": "enum::SplitContainer.DraggerVisibility" - } - ] - }, - { - "name": "get_dragger_visibility", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 967297479, - "return_value": { - "type": "enum::SplitContainer.DraggerVisibility" - } - }, - { - "name": "set_vertical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "is_vertical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_dragging_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "dragging_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_dragging_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_area_margin_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "margin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drag_area_margin_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_drag_area_margin_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "margin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drag_area_margin_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_drag_area_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "offset", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drag_area_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_drag_area_highlight_in_editor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "drag_area_highlight_in_editor", - "type": "bool" - } - ] - }, - { - "name": "is_drag_area_highlight_in_editor_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_drag_area_controls", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::Control" - } - }, - { - "name": "set_touch_dragger_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_touch_dragger_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_nested_intersections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_dragging_nested_intersections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_drag_area_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 829782337, - "return_value": { - "type": "Control" - } - }, - { - "name": "set_split_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "offset", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_split_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "signals": [ - { - "name": "dragged", - "arguments": [ - { - "name": "offset", - "type": "int" - } - ] - }, - { - "name": "drag_started" - }, - { - "name": "drag_ended" - } - ], - "properties": [ - { - "type": "PackedInt32Array", - "name": "split_offsets", - "setter": "set_split_offsets", - "getter": "get_split_offsets" - }, - { - "type": "bool", - "name": "collapsed", - "setter": "set_collapsed", - "getter": "is_collapsed" - }, - { - "type": "bool", - "name": "dragging_enabled", - "setter": "set_dragging_enabled", - "getter": "is_dragging_enabled" - }, - { - "type": "int", - "name": "dragger_visibility", - "setter": "set_dragger_visibility", - "getter": "get_dragger_visibility" - }, - { - "type": "bool", - "name": "vertical", - "setter": "set_vertical", - "getter": "is_vertical" - }, - { - "type": "bool", - "name": "touch_dragger_enabled", - "setter": "set_touch_dragger_enabled", - "getter": "is_touch_dragger_enabled" - }, - { - "type": "bool", - "name": "drag_nested_intersections", - "setter": "set_drag_nested_intersections", - "getter": "is_dragging_nested_intersections" - }, - { - "type": "int", - "name": "drag_area_margin_begin", - "setter": "set_drag_area_margin_begin", - "getter": "get_drag_area_margin_begin" - }, - { - "type": "int", - "name": "drag_area_margin_end", - "setter": "set_drag_area_margin_end", - "getter": "get_drag_area_margin_end" - }, - { - "type": "int", - "name": "drag_area_offset", - "setter": "set_drag_area_offset", - "getter": "get_drag_area_offset" - }, - { - "type": "bool", - "name": "drag_area_highlight_in_editor", - "setter": "set_drag_area_highlight_in_editor", - "getter": "is_drag_area_highlight_in_editor_enabled" - }, - { - "type": "int", - "name": "split_offset", - "setter": "set_split_offset", - "getter": "get_split_offset" - } - ] - }, - { - "name": "SpotLight3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Light3D", - "api_type": "core", - "properties": [ - { - "type": "float", - "name": "spot_range", - "setter": "set_param", - "getter": "get_param", - "index": 4 - }, - { - "type": "float", - "name": "spot_attenuation", - "setter": "set_param", - "getter": "get_param", - "index": 6 - }, - { - "type": "float", - "name": "spot_angle", - "setter": "set_param", - "getter": "get_param", - "index": 7 - }, - { - "type": "float", - "name": "spot_angle_attenuation", - "setter": "set_param", - "getter": "get_param", - "index": 8 - } - ] - }, - { - "name": "SpringArm3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_hit_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549710052, - "arguments": [ - { - "name": "shape", - "type": "Shape3D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3214262478, - "return_value": { - "type": "Shape3D" - } - }, - { - "name": "add_excluded_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "RID", - "type": "RID" - } - ] - }, - { - "name": "remove_excluded_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "RID", - "type": "RID" - } - ] - }, - { - "name": "clear_excluded_objects", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "collision_mask", - "setter": "set_collision_mask", - "getter": "get_collision_mask" - }, - { - "type": "Shape3D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "float", - "name": "spring_length", - "setter": "set_length", - "getter": "get_length" - }, - { - "type": "float", - "name": "margin", - "setter": "set_margin", - "getter": "get_margin" - } - ] - }, - { - "name": "SpringBoneCollision3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "get_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1488626673, - "return_value": { - "type": "Skeleton3D" - } - }, - { - "name": "set_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_position_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "offset", - "type": "Vector3" - } - ] - }, - { - "name": "get_position_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_rotation_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1727505552, - "arguments": [ - { - "name": "offset", - "type": "Quaternion" - } - ] - }, - { - "name": "get_rotation_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "bone_name", - "setter": "set_bone_name", - "getter": "get_bone_name" - }, - { - "type": "int", - "name": "bone", - "setter": "set_bone", - "getter": "get_bone" - }, - { - "type": "Vector3", - "name": "position_offset", - "setter": "set_position_offset", - "getter": "get_position_offset" - }, - { - "type": "Quaternion", - "name": "rotation_offset", - "setter": "set_rotation_offset", - "getter": "get_rotation_offset" - } - ] - }, - { - "name": "SpringBoneCollisionCapsule3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SpringBoneCollision3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mid_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mid_height", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mid_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_inside", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "height", - "setter": "set_height", - "getter": "get_height" - }, - { - "type": "float", - "name": "mid_height", - "setter": "set_mid_height", - "getter": "get_mid_height" - }, - { - "type": "bool", - "name": "inside", - "setter": "set_inside", - "getter": "is_inside" - } - ] - }, - { - "name": "SpringBoneCollisionPlane3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SpringBoneCollision3D", - "api_type": "core" - }, - { - "name": "SpringBoneCollisionSphere3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SpringBoneCollision3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_inside", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_inside", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "bool", - "name": "inside", - "setter": "set_inside", - "getter": "is_inside" - } - ] - }, - { - "name": "SpringBoneSimulator3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "CenterFrom", - "is_bitfield": false, - "values": [ - { - "name": "CENTER_FROM_WORLD_ORIGIN", - "value": 0 - }, - { - "name": "CENTER_FROM_NODE", - "value": 1 - }, - { - "name": "CENTER_FROM_BONE", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_root_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_root_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_end_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_end_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_extend_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_end_bone_extended", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2838484201, - "hash_compatibility": [ - 204796492 - ], - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_direction", - "type": "enum::SkeletonModifier3D.BoneDirection" - } - ] - }, - { - "name": "get_end_bone_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1843036459, - "hash_compatibility": [ - 2438315700 - ], - "return_value": { - "type": "enum::SkeletonModifier3D.BoneDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_end_bone_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_center_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2551505749, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "center_from", - "type": "enum::SpringBoneSimulator3D.CenterFrom" - } - ] - }, - { - "name": "get_center_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2721930813, - "return_value": { - "type": "enum::SpringBoneSimulator3D.CenterFrom" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_center_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "node_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_center_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_center_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_center_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_center_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_center_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_rotation_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1539703856, - "hash_compatibility": [ - 3534169209 - ], - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::SkeletonModifier3D.RotationAxis" - } - ] - }, - { - "name": "get_rotation_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2844851118, - "hash_compatibility": [ - 748837671 - ], - "return_value": { - "type": "enum::SkeletonModifier3D.RotationAxis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_rotation_axis_vector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "vector", - "type": "Vector3" - } - ] - }, - { - "name": "get_rotation_axis_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_radius_damping_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447180063, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_radius_damping_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747537754, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_stiffness_damping_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447180063, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_stiffness_damping_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747537754, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "drag", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_drag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_drag_damping_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447180063, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_drag_damping_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747537754, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "gravity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gravity_damping_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1447180063, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_gravity_damping_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 747537754, - "return_value": { - "type": "Curve" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gravity_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "gravity_direction", - "type": "Vector3" - } - ] - }, - { - "name": "get_gravity_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_setting_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_setting_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "clear_settings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_individual_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_config_individual", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_rotation_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391134969, - "hash_compatibility": [ - 4224018032 - ], - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "axis", - "type": "enum::SkeletonModifier3D.RotationAxis" - } - ] - }, - { - "name": "get_joint_rotation_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3312594080, - "hash_compatibility": [ - 2488679199 - ], - "return_value": { - "type": "enum::SkeletonModifier3D.RotationAxis" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_rotation_axis_vector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2866752138, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "vector", - "type": "Vector3" - } - ] - }, - { - "name": "get_joint_rotation_axis_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1592972041, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joint_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "stiffness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joint_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "drag", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joint_drag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_gravity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "gravity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joint_gravity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_joint_gravity_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2866752138, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - }, - { - "name": "gravity_direction", - "type": "Vector3" - } - ] - }, - { - "name": "get_joint_gravity_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1592972041, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "joint", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_joint_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_enable_all_child_collisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "are_all_child_collisions_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_collision_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132481804, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "collision", - "type": "int", - "meta": "int32" - }, - { - "name": "node_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_exclude_collision_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 464924783, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "collision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_exclude_collision_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_exclude_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_exclude_collisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 132481804, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "collision", - "type": "int", - "meta": "int32" - }, - { - "name": "node_path", - "type": "NodePath" - } - ] - }, - { - "name": "get_collision_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 464924783, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "collision", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_collisions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_external_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "force", - "type": "Vector3" - } - ] - }, - { - "name": "get_external_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_mutable_bone_axes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "are_bone_axes_mutable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "reset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "Vector3", - "name": "external_force", - "setter": "set_external_force", - "getter": "get_external_force" - }, - { - "type": "bool", - "name": "mutable_bone_axes", - "setter": "set_mutable_bone_axes", - "getter": "are_bone_axes_mutable" - }, - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "Sprite2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "centered", - "type": "bool" - } - ] - }, - { - "name": "is_centered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_h", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_v", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_region_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_region_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_pixel_opaque", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 556197845, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "pos", - "type": "Vector2" - } - ] - }, - { - "name": "set_region_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_region_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_region_filter_clip_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_region_filter_clip_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_frame_coords", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_frame_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_vframes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "vframes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_vframes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_hframes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "hframes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_hframes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - } - ], - "signals": [ - { - "name": "frame_changed" - }, - { - "name": "texture_changed" - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "bool", - "name": "centered", - "setter": "set_centered", - "getter": "is_centered" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "is_flipped_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "is_flipped_v" - }, - { - "type": "int", - "name": "hframes", - "setter": "set_hframes", - "getter": "get_hframes" - }, - { - "type": "int", - "name": "vframes", - "setter": "set_vframes", - "getter": "get_vframes" - }, - { - "type": "int", - "name": "frame", - "setter": "set_frame", - "getter": "get_frame" - }, - { - "type": "Vector2i", - "name": "frame_coords", - "setter": "set_frame_coords", - "getter": "get_frame_coords" - }, - { - "type": "bool", - "name": "region_enabled", - "setter": "set_region_enabled", - "getter": "is_region_enabled" - }, - { - "type": "Rect2", - "name": "region_rect", - "setter": "set_region_rect", - "getter": "get_region_rect" - }, - { - "type": "bool", - "name": "region_filter_clip_enabled", - "setter": "set_region_filter_clip_enabled", - "getter": "is_region_filter_clip_enabled" - } - ] - }, - { - "name": "Sprite3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SpriteBase3D", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_region_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_region_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_region_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_region_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_frame_coords", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_frame_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_vframes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "vframes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_vframes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_hframes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "hframes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_hframes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "signals": [ - { - "name": "frame_changed" - }, - { - "name": "texture_changed" - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "int", - "name": "hframes", - "setter": "set_hframes", - "getter": "get_hframes" - }, - { - "type": "int", - "name": "vframes", - "setter": "set_vframes", - "getter": "get_vframes" - }, - { - "type": "int", - "name": "frame", - "setter": "set_frame", - "getter": "get_frame" - }, - { - "type": "Vector2i", - "name": "frame_coords", - "setter": "set_frame_coords", - "getter": "get_frame_coords" - }, - { - "type": "bool", - "name": "region_enabled", - "setter": "set_region_enabled", - "getter": "is_region_enabled" - }, - { - "type": "Rect2", - "name": "region_rect", - "setter": "set_region_rect", - "getter": "get_region_rect" - } - ] - }, - { - "name": "SpriteBase3D", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "GeometryInstance3D", - "api_type": "core", - "enums": [ - { - "name": "DrawFlags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_TRANSPARENT", - "value": 0 - }, - { - "name": "FLAG_SHADED", - "value": 1 - }, - { - "name": "FLAG_DOUBLE_SIDED", - "value": 2 - }, - { - "name": "FLAG_DISABLE_DEPTH_TEST", - "value": 3 - }, - { - "name": "FLAG_FIXED_SIZE", - "value": 4 - }, - { - "name": "FLAG_MAX", - "value": 5 - } - ] - }, - { - "name": "AlphaCutMode", - "is_bitfield": false, - "values": [ - { - "name": "ALPHA_CUT_DISABLED", - "value": 0 - }, - { - "name": "ALPHA_CUT_DISCARD", - "value": 1 - }, - { - "name": "ALPHA_CUT_OPAQUE_PREPASS", - "value": 2 - }, - { - "name": "ALPHA_CUT_HASH", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "centered", - "type": "bool" - } - ] - }, - { - "name": "is_centered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_h", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_v", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_render_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_render_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_pixel_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixel_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pixel_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1144690656, - "arguments": [ - { - "name": "axis", - "type": "enum::Vector3.Axis" - } - ] - }, - { - "name": "get_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050976882, - "return_value": { - "type": "enum::Vector3.Axis" - } - }, - { - "name": "set_draw_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1135633219, - "arguments": [ - { - "name": "flag", - "type": "enum::SpriteBase3D.DrawFlags" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_draw_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1733036628, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::SpriteBase3D.DrawFlags" - } - ] - }, - { - "name": "set_alpha_cut_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 227561226, - "arguments": [ - { - "name": "mode", - "type": "enum::SpriteBase3D.AlphaCutMode" - } - ] - }, - { - "name": "get_alpha_cut_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 336003791, - "return_value": { - "type": "enum::SpriteBase3D.AlphaCutMode" - } - }, - { - "name": "set_alpha_scissor_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_scissor_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_hash_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "threshold", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_hash_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_alpha_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3212649852, - "arguments": [ - { - "name": "alpha_aa", - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - ] - }, - { - "name": "get_alpha_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2889939400, - "return_value": { - "type": "enum::BaseMaterial3D.AlphaAntiAliasing" - } - }, - { - "name": "set_alpha_antialiasing_edge", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "edge", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_alpha_antialiasing_edge", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_billboard_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4202036497, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.BillboardMode" - } - ] - }, - { - "name": "get_billboard_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1283840139, - "return_value": { - "type": "enum::BaseMaterial3D.BillboardMode" - } - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 22904437, - "arguments": [ - { - "name": "mode", - "type": "enum::BaseMaterial3D.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289213076, - "return_value": { - "type": "enum::BaseMaterial3D.TextureFilter" - } - }, - { - "name": "get_item_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "generate_triangle_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3476533166, - "return_value": { - "type": "TriangleMesh" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "centered", - "setter": "set_centered", - "getter": "is_centered" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "is_flipped_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "is_flipped_v" - }, - { - "type": "Color", - "name": "modulate", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "float", - "name": "pixel_size", - "setter": "set_pixel_size", - "getter": "get_pixel_size" - }, - { - "type": "int", - "name": "axis", - "setter": "set_axis", - "getter": "get_axis" - }, - { - "type": "int", - "name": "billboard", - "setter": "set_billboard_mode", - "getter": "get_billboard_mode" - }, - { - "type": "bool", - "name": "transparent", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 0 - }, - { - "type": "bool", - "name": "shaded", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 1 - }, - { - "type": "bool", - "name": "double_sided", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 2 - }, - { - "type": "bool", - "name": "no_depth_test", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 3 - }, - { - "type": "bool", - "name": "fixed_size", - "setter": "set_draw_flag", - "getter": "get_draw_flag", - "index": 4 - }, - { - "type": "int", - "name": "alpha_cut", - "setter": "set_alpha_cut_mode", - "getter": "get_alpha_cut_mode" - }, - { - "type": "float", - "name": "alpha_scissor_threshold", - "setter": "set_alpha_scissor_threshold", - "getter": "get_alpha_scissor_threshold" - }, - { - "type": "float", - "name": "alpha_hash_scale", - "setter": "set_alpha_hash_scale", - "getter": "get_alpha_hash_scale" - }, - { - "type": "int", - "name": "alpha_antialiasing_mode", - "setter": "set_alpha_antialiasing", - "getter": "get_alpha_antialiasing" - }, - { - "type": "float", - "name": "alpha_antialiasing_edge", - "setter": "set_alpha_antialiasing_edge", - "getter": "get_alpha_antialiasing_edge" - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "int", - "name": "render_priority", - "setter": "set_render_priority", - "getter": "get_render_priority" - } - ] - }, - { - "name": "SpriteFrames", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "LoopMode", - "is_bitfield": false, - "values": [ - { - "name": "LOOP_NONE", - "value": 0 - }, - { - "name": "LOOP_LINEAR", - "value": 1 - }, - { - "name": "LOOP_PINGPONG", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "add_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "has_animation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "duplicate_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "anim_from", - "type": "StringName" - }, - { - "name": "anim_to", - "type": "StringName" - } - ] - }, - { - "name": "remove_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "rename_animation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "newname", - "type": "StringName" - } - ] - }, - { - "name": "get_animation_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_animation_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4135858297, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "fps", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_animation_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2349060816, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "set_animation_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2524380260, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "get_animation_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "set_animation_loop_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 918068248, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "loop_mode", - "type": "enum::SpriteFrames.LoopMode" - } - ] - }, - { - "name": "get_animation_loop_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3606360228, - "return_value": { - "type": "enum::SpriteFrames.LoopMode" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "add_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1351332740, - "hash_compatibility": [ - 407562921 - ], - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "duration", - "type": "float", - "meta": "float", - "default_value": "1.0" - }, - { - "name": "at_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 56804795, - "hash_compatibility": [ - 3155743884 - ], - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "duration", - "type": "float", - "meta": "float", - "default_value": "1.0" - } - ] - }, - { - "name": "remove_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2458036349, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "get_frame_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900517879, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1129309260, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "anim", - "type": "StringName" - }, - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "anim", - "type": "StringName" - } - ] - }, - { - "name": "clear_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "Array", - "name": "animations", - "setter": "_set_animations", - "getter": "_get_animations" - } - ] - }, - { - "name": "StandardMaterial3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "BaseMaterial3D", - "api_type": "core" - }, - { - "name": "StaticBody2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody2D", - "api_type": "core", - "methods": [ - { - "name": "set_constant_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "vel", - "type": "Vector2" - } - ] - }, - { - "name": "set_constant_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "vel", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constant_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_constant_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_physics_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784508650, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_material_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2521850424, - "return_value": { - "type": "PhysicsMaterial" - } - } - ], - "properties": [ - { - "type": "PhysicsMaterial", - "name": "physics_material_override", - "setter": "set_physics_material_override", - "getter": "get_physics_material_override" - }, - { - "type": "Vector2", - "name": "constant_linear_velocity", - "setter": "set_constant_linear_velocity", - "getter": "get_constant_linear_velocity" - }, - { - "type": "float", - "name": "constant_angular_velocity", - "setter": "set_constant_angular_velocity", - "getter": "get_constant_angular_velocity" - } - ] - }, - { - "name": "StaticBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "PhysicsBody3D", - "api_type": "core", - "methods": [ - { - "name": "set_constant_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "vel", - "type": "Vector3" - } - ] - }, - { - "name": "set_constant_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "vel", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_constant_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_physics_material_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1784508650, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_material_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2521850424, - "return_value": { - "type": "PhysicsMaterial" - } - } - ], - "properties": [ - { - "type": "PhysicsMaterial", - "name": "physics_material_override", - "setter": "set_physics_material_override", - "getter": "get_physics_material_override" - }, - { - "type": "Vector3", - "name": "constant_linear_velocity", - "setter": "set_constant_linear_velocity", - "getter": "get_constant_linear_velocity" - }, - { - "type": "Vector3", - "name": "constant_angular_velocity", - "setter": "set_constant_angular_velocity", - "getter": "get_constant_angular_velocity" - } - ] - }, - { - "name": "StatusIndicator", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "set_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_menu", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "menu", - "type": "NodePath" - } - ] - }, - { - "name": "get_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - } - ], - "signals": [ - { - "name": "pressed", - "arguments": [ - { - "name": "mouse_button", - "type": "int" - }, - { - "name": "mouse_position", - "type": "Vector2i" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "tooltip", - "setter": "set_tooltip", - "getter": "get_tooltip" - }, - { - "type": "Texture2D", - "name": "icon", - "setter": "set_icon", - "getter": "get_icon" - }, - { - "type": "NodePath", - "name": "menu", - "setter": "set_menu", - "getter": "get_menu" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - } - ] - }, - { - "name": "StreamPeer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "put_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "put_partial_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2934048347, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1171824711, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_partial_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1171824711, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_available_bytes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_big_endian", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_big_endian_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "put_8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int8" - } - ] - }, - { - "name": "put_u8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint8" - } - ] - }, - { - "name": "put_16", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int16" - } - ] - }, - { - "name": "put_u16", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint16" - } - ] - }, - { - "name": "put_32", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "put_u32", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "put_64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "put_u64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "put_half", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "put_float", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "put_double", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "put_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "put_utf8_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "value", - "type": "String" - } - ] - }, - { - "name": "put_var", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 738511890, - "arguments": [ - { - "name": "value", - "type": "Variant" - }, - { - "name": "full_objects", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int8" - } - }, - { - "name": "get_u8", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint8" - } - }, - { - "name": "get_16", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int16" - } - }, - { - "name": "get_u16", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint16" - } - }, - { - "name": "get_32", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_u32", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "get_u64", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_half", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_float", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_double", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2309358862, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_utf8_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2309358862, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "bytes", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_var", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3442865206, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "default_value": "false" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "big_endian", - "setter": "set_big_endian", - "getter": "is_big_endian_enabled" - } - ] - }, - { - "name": "StreamPeerBuffer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeer", - "api_type": "core", - "methods": [ - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_data_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_data_array", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "duplicate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2474064677, - "return_value": { - "type": "StreamPeerBuffer" - } - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "data_array", - "setter": "set_data_array", - "getter": "get_data_array" - } - ] - }, - { - "name": "StreamPeerExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeer", - "api_type": "core", - "methods": [ - { - "name": "_get_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298948178, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "r_buffer", - "type": "uint8_t*" - }, - { - "name": "r_bytes", - "type": "int", - "meta": "int32" - }, - { - "name": "r_received", - "type": "int32_t*" - } - ] - }, - { - "name": "_get_partial_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298948178, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "r_buffer", - "type": "uint8_t*" - }, - { - "name": "r_bytes", - "type": "int", - "meta": "int32" - }, - { - "name": "r_received", - "type": "int32_t*" - } - ] - }, - { - "name": "_put_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298948178, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "const uint8_t*" - }, - { - "name": "bytes", - "type": "int", - "meta": "int32" - }, - { - "name": "r_sent", - "type": "int32_t*" - } - ] - }, - { - "name": "_put_partial_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 298948178, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "const uint8_t*" - }, - { - "name": "bytes", - "type": "int", - "meta": "int32" - }, - { - "name": "r_sent", - "type": "int32_t*" - } - ] - }, - { - "name": "_get_available_bytes", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "StreamPeerGZIP", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeer", - "api_type": "core", - "methods": [ - { - "name": "start_compression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 781582770, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "use_deflate", - "type": "bool", - "default_value": "false" - }, - { - "name": "buffer_size", - "type": "int", - "meta": "int32", - "default_value": "65535" - } - ] - }, - { - "name": "start_decompression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 781582770, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "use_deflate", - "type": "bool", - "default_value": "false" - }, - { - "name": "buffer_size", - "type": "int", - "meta": "int32", - "default_value": "65535" - } - ] - }, - { - "name": "finish", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "StreamPeerSocket", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "StreamPeer", - "api_type": "core", - "enums": [ - { - "name": "Status", - "is_bitfield": false, - "values": [ - { - "name": "STATUS_NONE", - "value": 0 - }, - { - "name": "STATUS_CONNECTING", - "value": 1 - }, - { - "name": "STATUS_CONNECTED", - "value": 2 - }, - { - "name": "STATUS_ERROR", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1156122502, - "hash_compatibility": [ - 859471121 - ], - "return_value": { - "type": "enum::StreamPeerSocket.Status" - } - }, - { - "name": "disconnect_from_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "StreamPeerTCP", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeerSocket", - "api_type": "core", - "methods": [ - { - "name": "bind", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3167955072, - "hash_compatibility": [ - 4025329869 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "host", - "type": "String", - "default_value": "\"*\"" - } - ] - }, - { - "name": "connect_to_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 993915709, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "host", - "type": "String" - }, - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_connected_host", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_connected_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_no_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - } - ] - }, - { - "name": "StreamPeerTLS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeer", - "api_type": "core", - "enums": [ - { - "name": "Status", - "is_bitfield": false, - "values": [ - { - "name": "STATUS_DISCONNECTED", - "value": 0 - }, - { - "name": "STATUS_HANDSHAKING", - "value": 1 - }, - { - "name": "STATUS_CONNECTED", - "value": 2 - }, - { - "name": "STATUS_ERROR", - "value": 3 - }, - { - "name": "STATUS_ERROR_HOSTNAME_MISMATCH", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "accept_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4292689651, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "stream", - "type": "StreamPeer" - }, - { - "name": "server_options", - "type": "TLSOptions" - } - ] - }, - { - "name": "connect_to_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 57169517, - "hash_compatibility": [ - 1325480781 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "stream", - "type": "StreamPeer" - }, - { - "name": "common_name", - "type": "String" - }, - { - "name": "client_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "get_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1128380576, - "return_value": { - "type": "enum::StreamPeerTLS.Status" - } - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2741655269, - "return_value": { - "type": "StreamPeer" - } - }, - { - "name": "disconnect_from_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ] - }, - { - "name": "StreamPeerUDS", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StreamPeerSocket", - "api_type": "core", - "methods": [ - { - "name": "bind", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "connect_to_host", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "get_connected_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ] - }, - { - "name": "StyleBox", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_draw", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2275962004, - "arguments": [ - { - "name": "to_canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "_get_draw_rect", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 408950903, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "_get_minimum_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_test_mask", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3735564539, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_content_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_content_margin_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_content_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "get_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2275962004, - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_current_item_drawn", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3213695180, - "return_value": { - "type": "CanvasItem" - } - }, - { - "name": "test_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3735564539, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - }, - { - "name": "rect", - "type": "Rect2" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "content_margin_left", - "setter": "set_content_margin", - "getter": "get_content_margin", - "index": 0 - }, - { - "type": "float", - "name": "content_margin_top", - "setter": "set_content_margin", - "getter": "get_content_margin", - "index": 1 - }, - { - "type": "float", - "name": "content_margin_right", - "setter": "set_content_margin", - "getter": "get_content_margin", - "index": 2 - }, - { - "type": "float", - "name": "content_margin_bottom", - "setter": "set_content_margin", - "getter": "get_content_margin", - "index": 3 - } - ] - }, - { - "name": "StyleBoxEmpty", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StyleBox", - "api_type": "core" - }, - { - "name": "StyleBoxFlat", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StyleBox", - "api_type": "core", - "methods": [ - { - "name": "set_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_bg_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_border_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_border_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_border_width_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_border_width_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_border_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 437707142, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_border_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1983885014, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_border_blend", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "blend", - "type": "bool" - } - ] - }, - { - "name": "get_border_blend", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_corner_radius_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "radius", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_corner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2696158768, - "arguments": [ - { - "name": "corner", - "type": "enum::Corner" - }, - { - "name": "radius", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_corner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3982397690, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "corner", - "type": "enum::Corner" - } - ] - }, - { - "name": "set_expand_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_expand_margin_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_expand_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_draw_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "draw_center", - "type": "bool" - } - ] - }, - { - "name": "is_draw_center_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_skew", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "skew", - "type": "Vector2" - } - ] - }, - { - "name": "get_skew", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_shadow_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_shadow_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_shadow_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_shadow_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_shadow_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_shadow_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_anti_aliased", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "anti_aliased", - "type": "bool" - } - ] - }, - { - "name": "is_anti_aliased", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_aa_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_aa_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_corner_detail", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "detail", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_corner_detail", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "bg_color", - "setter": "set_bg_color", - "getter": "get_bg_color" - }, - { - "type": "bool", - "name": "draw_center", - "setter": "set_draw_center", - "getter": "is_draw_center_enabled" - }, - { - "type": "Vector2", - "name": "skew", - "setter": "set_skew", - "getter": "get_skew" - }, - { - "type": "int", - "name": "border_width_left", - "setter": "set_border_width", - "getter": "get_border_width", - "index": 0 - }, - { - "type": "int", - "name": "border_width_top", - "setter": "set_border_width", - "getter": "get_border_width", - "index": 1 - }, - { - "type": "int", - "name": "border_width_right", - "setter": "set_border_width", - "getter": "get_border_width", - "index": 2 - }, - { - "type": "int", - "name": "border_width_bottom", - "setter": "set_border_width", - "getter": "get_border_width", - "index": 3 - }, - { - "type": "Color", - "name": "border_color", - "setter": "set_border_color", - "getter": "get_border_color" - }, - { - "type": "bool", - "name": "border_blend", - "setter": "set_border_blend", - "getter": "get_border_blend" - }, - { - "type": "int", - "name": "corner_radius_top_left", - "setter": "set_corner_radius", - "getter": "get_corner_radius", - "index": 0 - }, - { - "type": "int", - "name": "corner_radius_top_right", - "setter": "set_corner_radius", - "getter": "get_corner_radius", - "index": 1 - }, - { - "type": "int", - "name": "corner_radius_bottom_right", - "setter": "set_corner_radius", - "getter": "get_corner_radius", - "index": 2 - }, - { - "type": "int", - "name": "corner_radius_bottom_left", - "setter": "set_corner_radius", - "getter": "get_corner_radius", - "index": 3 - }, - { - "type": "int", - "name": "corner_detail", - "setter": "set_corner_detail", - "getter": "get_corner_detail" - }, - { - "type": "float", - "name": "expand_margin_left", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 0 - }, - { - "type": "float", - "name": "expand_margin_top", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 1 - }, - { - "type": "float", - "name": "expand_margin_right", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 2 - }, - { - "type": "float", - "name": "expand_margin_bottom", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 3 - }, - { - "type": "Color", - "name": "shadow_color", - "setter": "set_shadow_color", - "getter": "get_shadow_color" - }, - { - "type": "int", - "name": "shadow_size", - "setter": "set_shadow_size", - "getter": "get_shadow_size" - }, - { - "type": "Vector2", - "name": "shadow_offset", - "setter": "set_shadow_offset", - "getter": "get_shadow_offset" - }, - { - "type": "bool", - "name": "anti_aliasing", - "setter": "set_anti_aliased", - "getter": "is_anti_aliased" - }, - { - "type": "float", - "name": "anti_aliasing_size", - "setter": "set_aa_size", - "getter": "get_aa_size" - } - ] - }, - { - "name": "StyleBoxLine", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StyleBox", - "api_type": "core", - "methods": [ - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "thickness", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_grow_begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_grow_begin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_grow_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_grow_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vertical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "vertical", - "type": "bool" - } - ] - }, - { - "name": "is_vertical", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "color", - "setter": "set_color", - "getter": "get_color" - }, - { - "type": "float", - "name": "grow_begin", - "setter": "set_grow_begin", - "getter": "get_grow_begin" - }, - { - "type": "float", - "name": "grow_end", - "setter": "set_grow_end", - "getter": "get_grow_end" - }, - { - "type": "int", - "name": "thickness", - "setter": "set_thickness", - "getter": "get_thickness" - }, - { - "type": "bool", - "name": "vertical", - "setter": "set_vertical", - "getter": "is_vertical" - } - ] - }, - { - "name": "StyleBoxTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "StyleBox", - "api_type": "core", - "enums": [ - { - "name": "AxisStretchMode", - "is_bitfield": false, - "values": [ - { - "name": "AXIS_STRETCH_MODE_STRETCH", - "value": 0 - }, - { - "name": "AXIS_STRETCH_MODE_TILE", - "value": 1 - }, - { - "name": "AXIS_STRETCH_MODE_TILE_FIT", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_texture_margin_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texture_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_expand_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4290182280, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_expand_margin_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_expand_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2869120046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_region_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "region", - "type": "Rect2" - } - ] - }, - { - "name": "get_region_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_draw_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_draw_center_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_h_axis_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2965538783, - "arguments": [ - { - "name": "mode", - "type": "enum::StyleBoxTexture.AxisStretchMode" - } - ] - }, - { - "name": "get_h_axis_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3807744063, - "return_value": { - "type": "enum::StyleBoxTexture.AxisStretchMode" - } - }, - { - "name": "set_v_axis_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2965538783, - "arguments": [ - { - "name": "mode", - "type": "enum::StyleBoxTexture.AxisStretchMode" - } - ] - }, - { - "name": "get_v_axis_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3807744063, - "return_value": { - "type": "enum::StyleBoxTexture.AxisStretchMode" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "float", - "name": "texture_margin_left", - "setter": "set_texture_margin", - "getter": "get_texture_margin", - "index": 0 - }, - { - "type": "float", - "name": "texture_margin_top", - "setter": "set_texture_margin", - "getter": "get_texture_margin", - "index": 1 - }, - { - "type": "float", - "name": "texture_margin_right", - "setter": "set_texture_margin", - "getter": "get_texture_margin", - "index": 2 - }, - { - "type": "float", - "name": "texture_margin_bottom", - "setter": "set_texture_margin", - "getter": "get_texture_margin", - "index": 3 - }, - { - "type": "float", - "name": "expand_margin_left", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 0 - }, - { - "type": "float", - "name": "expand_margin_top", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 1 - }, - { - "type": "float", - "name": "expand_margin_right", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 2 - }, - { - "type": "float", - "name": "expand_margin_bottom", - "setter": "set_expand_margin", - "getter": "get_expand_margin", - "index": 3 - }, - { - "type": "int", - "name": "axis_stretch_horizontal", - "setter": "set_h_axis_stretch_mode", - "getter": "get_h_axis_stretch_mode" - }, - { - "type": "int", - "name": "axis_stretch_vertical", - "setter": "set_v_axis_stretch_mode", - "getter": "get_v_axis_stretch_mode" - }, - { - "type": "Rect2", - "name": "region_rect", - "setter": "set_region_rect", - "getter": "get_region_rect" - }, - { - "type": "Color", - "name": "modulate_color", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "bool", - "name": "draw_center", - "setter": "set_draw_center", - "getter": "is_draw_center_enabled" - } - ] - }, - { - "name": "SubViewport", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Viewport", - "api_type": "core", - "enums": [ - { - "name": "ClearMode", - "is_bitfield": false, - "values": [ - { - "name": "CLEAR_MODE_ALWAYS", - "value": 0 - }, - { - "name": "CLEAR_MODE_NEVER", - "value": 1 - }, - { - "name": "CLEAR_MODE_ONCE", - "value": 2 - } - ] - }, - { - "name": "UpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "UPDATE_DISABLED", - "value": 0 - }, - { - "name": "UPDATE_ONCE", - "value": 1 - }, - { - "name": "UPDATE_WHEN_VISIBLE", - "value": 2 - }, - { - "name": "UPDATE_WHEN_PARENT_VISIBLE", - "value": 3 - }, - { - "name": "UPDATE_ALWAYS", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_size_2d_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_size_2d_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_size_2d_override_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_size_2d_override_stretch_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_view_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "view_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_view_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1295690030, - "arguments": [ - { - "name": "mode", - "type": "enum::SubViewport.UpdateMode" - } - ] - }, - { - "name": "get_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2980171553, - "return_value": { - "type": "enum::SubViewport.UpdateMode" - } - }, - { - "name": "set_clear_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2834454712, - "arguments": [ - { - "name": "mode", - "type": "enum::SubViewport.ClearMode" - } - ] - }, - { - "name": "get_clear_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 331324495, - "return_value": { - "type": "enum::SubViewport.ClearMode" - } - } - ], - "properties": [ - { - "type": "Vector2i", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "Vector2i", - "name": "size_2d_override", - "setter": "set_size_2d_override", - "getter": "get_size_2d_override" - }, - { - "type": "bool", - "name": "size_2d_override_stretch", - "setter": "set_size_2d_override_stretch", - "getter": "is_size_2d_override_stretch_enabled" - }, - { - "type": "int", - "name": "view_count", - "setter": "set_view_count", - "getter": "get_view_count" - }, - { - "type": "int", - "name": "render_target_clear_mode", - "setter": "set_clear_mode", - "getter": "get_clear_mode" - }, - { - "type": "int", - "name": "render_target_update_mode", - "setter": "set_update_mode", - "getter": "get_update_mode" - } - ] - }, - { - "name": "SubViewportContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "methods": [ - { - "name": "_propagate_input_event", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3738334489, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - } - ] - }, - { - "name": "set_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_stretch_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_stretch_shrink", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stretch_shrink", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_mouse_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "amount", - "type": "bool" - } - ] - }, - { - "name": "is_mouse_target_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "stretch", - "setter": "set_stretch", - "getter": "is_stretch_enabled" - }, - { - "type": "int", - "name": "stretch_shrink", - "setter": "set_stretch_shrink", - "getter": "get_stretch_shrink" - }, - { - "type": "bool", - "name": "mouse_target", - "setter": "set_mouse_target", - "getter": "is_mouse_target_enabled" - } - ] - }, - { - "name": "SubtweenTweener", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Tweener", - "api_type": "core", - "methods": [ - { - "name": "set_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 449181780, - "return_value": { - "type": "SubtweenTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "delay", - "type": "float", - "meta": "double" - } - ] - } - ] - }, - { - "name": "SurfaceTool", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "CustomFormat", - "is_bitfield": false, - "values": [ - { - "name": "CUSTOM_RGBA8_UNORM", - "value": 0 - }, - { - "name": "CUSTOM_RGBA8_SNORM", - "value": 1 - }, - { - "name": "CUSTOM_RG_HALF", - "value": 2 - }, - { - "name": "CUSTOM_RGBA_HALF", - "value": 3 - }, - { - "name": "CUSTOM_R_FLOAT", - "value": 4 - }, - { - "name": "CUSTOM_RG_FLOAT", - "value": 5 - }, - { - "name": "CUSTOM_RGB_FLOAT", - "value": 6 - }, - { - "name": "CUSTOM_RGBA_FLOAT", - "value": 7 - }, - { - "name": "CUSTOM_MAX", - "value": 8 - } - ] - }, - { - "name": "SkinWeightCount", - "is_bitfield": false, - "values": [ - { - "name": "SKIN_4_WEIGHTS", - "value": 0 - }, - { - "name": "SKIN_8_WEIGHTS", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_skin_weight_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 618679515, - "arguments": [ - { - "name": "count", - "type": "enum::SurfaceTool.SkinWeightCount" - } - ] - }, - { - "name": "get_skin_weight_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1072401130, - "return_value": { - "type": "enum::SurfaceTool.SkinWeightCount" - } - }, - { - "name": "set_custom_format", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4087759856, - "arguments": [ - { - "name": "channel_index", - "type": "int", - "meta": "int32" - }, - { - "name": "format", - "type": "enum::SurfaceTool.CustomFormat" - } - ] - }, - { - "name": "get_custom_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 839863283, - "return_value": { - "type": "enum::SurfaceTool.CustomFormat" - }, - "arguments": [ - { - "name": "channel_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "begin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230304113, - "arguments": [ - { - "name": "primitive", - "type": "enum::Mesh.PrimitiveType" - } - ] - }, - { - "name": "add_vertex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "vertex", - "type": "Vector3" - } - ] - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "set_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "normal", - "type": "Vector3" - } - ] - }, - { - "name": "set_tangent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3505987427, - "arguments": [ - { - "name": "tangent", - "type": "Plane" - } - ] - }, - { - "name": "set_uv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "uv", - "type": "Vector2" - } - ] - }, - { - "name": "set_uv2", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "uv2", - "type": "Vector2" - } - ] - }, - { - "name": "set_bones", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "bones", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "set_weights", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "set_custom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "channel_index", - "type": "int", - "meta": "int32" - }, - { - "name": "custom_color", - "type": "Color" - } - ] - }, - { - "name": "set_smooth_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "add_triangle_fan", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2235017613, - "hash_compatibility": [ - 297960074 - ], - "arguments": [ - { - "name": "vertices", - "type": "PackedVector3Array" - }, - { - "name": "uvs", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "colors", - "type": "PackedColorArray", - "default_value": "PackedColorArray()" - }, - { - "name": "uv2s", - "type": "PackedVector2Array", - "default_value": "PackedVector2Array()" - }, - { - "name": "normals", - "type": "PackedVector3Array", - "default_value": "PackedVector3Array()" - }, - { - "name": "tangents", - "type": "typedarray::Plane", - "default_value": "Array[Plane]([])" - } - ] - }, - { - "name": "add_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "deindex", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "generate_normals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 107499316, - "arguments": [ - { - "name": "flip", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "generate_tangents", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "optimize_indices_for_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "generate_lod", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1938056459, - "hash_compatibility": [ - 1894448909 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "nd_threshold", - "type": "float", - "meta": "float" - }, - { - "name": "target_index_count", - "type": "int", - "meta": "int32", - "default_value": "3" - } - ] - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_primitive_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 768822145, - "return_value": { - "type": "enum::Mesh.PrimitiveType" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1767024570, - "arguments": [ - { - "name": "existing", - "type": "Mesh" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_from_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1894639680, - "arguments": [ - { - "name": "arrays", - "type": "Array" - }, - { - "name": "primitive_type", - "type": "enum::Mesh.PrimitiveType", - "default_value": "3" - } - ] - }, - { - "name": "create_from_blend_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1306185582, - "arguments": [ - { - "name": "existing", - "type": "Mesh" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "blend_shape", - "type": "String" - } - ] - }, - { - "name": "append_from", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2217967155, - "arguments": [ - { - "name": "existing", - "type": "Mesh" - }, - { - "name": "surface", - "type": "int", - "meta": "int32" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "commit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4107864055, - "return_value": { - "type": "ArrayMesh" - }, - "arguments": [ - { - "name": "existing", - "type": "ArrayMesh", - "default_value": "null" - }, - { - "name": "flags", - "type": "int", - "meta": "uint64", - "default_value": "0" - } - ] - }, - { - "name": "commit_to_arrays", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "Array" - } - } - ] - }, - { - "name": "SyntaxHighlighter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_get_line_syntax_highlighting", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_clear_highlighting_cache", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_update_cache", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "get_line_syntax_highlighting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3554694381, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "update_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_highlighting_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_text_edit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1893027089, - "return_value": { - "type": "TextEdit" - } - } - ] - }, - { - "name": "SystemFont", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Font", - "api_type": "core", - "methods": [ - { - "name": "set_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1669900, - "arguments": [ - { - "name": "antialiasing", - "type": "enum::TextServer.FontAntialiasing" - } - ] - }, - { - "name": "get_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4262718649, - "return_value": { - "type": "enum::TextServer.FontAntialiasing" - } - }, - { - "name": "set_disable_embedded_bitmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable_embedded_bitmaps", - "type": "bool" - } - ] - }, - { - "name": "get_disable_embedded_bitmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "generate_mipmaps", - "type": "bool" - } - ] - }, - { - "name": "get_generate_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_system_fallback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow_system_fallback", - "type": "bool" - } - ] - }, - { - "name": "is_allow_system_fallback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_force_autohinter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force_autohinter", - "type": "bool" - } - ] - }, - { - "name": "is_force_autohinter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_modulate_color_glyphs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "modulate", - "type": "bool" - } - ] - }, - { - "name": "is_modulate_color_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hinting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1827459492, - "arguments": [ - { - "name": "hinting", - "type": "enum::TextServer.Hinting" - } - ] - }, - { - "name": "get_hinting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3683214614, - "return_value": { - "type": "enum::TextServer.Hinting" - } - }, - { - "name": "set_subpixel_positioning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4225742182, - "arguments": [ - { - "name": "subpixel_positioning", - "type": "enum::TextServer.SubpixelPositioning" - } - ] - }, - { - "name": "get_subpixel_positioning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1069238588, - "return_value": { - "type": "enum::TextServer.SubpixelPositioning" - } - }, - { - "name": "set_keep_rounding_remainders", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "keep_rounding_remainders", - "type": "bool" - } - ] - }, - { - "name": "get_keep_rounding_remainders", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_multichannel_signed_distance_field", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "msdf", - "type": "bool" - } - ] - }, - { - "name": "is_multichannel_signed_distance_field", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_msdf_pixel_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "msdf_pixel_range", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_msdf_pixel_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_msdf_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "msdf_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_msdf_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_font_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_font_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "names", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_font_italic", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_font_italic", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "italic", - "type": "bool" - } - ] - }, - { - "name": "set_font_weight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "weight", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_font_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "stretch", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "PackedStringArray", - "name": "font_names", - "setter": "set_font_names", - "getter": "get_font_names" - }, - { - "type": "bool", - "name": "font_italic", - "setter": "set_font_italic", - "getter": "get_font_italic" - }, - { - "type": "int", - "name": "font_weight", - "setter": "set_font_weight", - "getter": "get_font_weight" - }, - { - "type": "int", - "name": "font_stretch", - "setter": "set_font_stretch", - "getter": "get_font_stretch" - }, - { - "type": "int", - "name": "antialiasing", - "setter": "set_antialiasing", - "getter": "get_antialiasing" - }, - { - "type": "bool", - "name": "generate_mipmaps", - "setter": "set_generate_mipmaps", - "getter": "get_generate_mipmaps" - }, - { - "type": "bool", - "name": "disable_embedded_bitmaps", - "setter": "set_disable_embedded_bitmaps", - "getter": "get_disable_embedded_bitmaps" - }, - { - "type": "bool", - "name": "allow_system_fallback", - "setter": "set_allow_system_fallback", - "getter": "is_allow_system_fallback" - }, - { - "type": "bool", - "name": "force_autohinter", - "setter": "set_force_autohinter", - "getter": "is_force_autohinter" - }, - { - "type": "bool", - "name": "modulate_color_glyphs", - "setter": "set_modulate_color_glyphs", - "getter": "is_modulate_color_glyphs" - }, - { - "type": "int", - "name": "hinting", - "setter": "set_hinting", - "getter": "get_hinting" - }, - { - "type": "int", - "name": "subpixel_positioning", - "setter": "set_subpixel_positioning", - "getter": "get_subpixel_positioning" - }, - { - "type": "bool", - "name": "keep_rounding_remainders", - "setter": "set_keep_rounding_remainders", - "getter": "get_keep_rounding_remainders" - }, - { - "type": "bool", - "name": "multichannel_signed_distance_field", - "setter": "set_multichannel_signed_distance_field", - "getter": "is_multichannel_signed_distance_field" - }, - { - "type": "int", - "name": "msdf_pixel_range", - "setter": "set_msdf_pixel_range", - "getter": "get_msdf_pixel_range" - }, - { - "type": "int", - "name": "msdf_size", - "setter": "set_msdf_size", - "getter": "get_msdf_size" - }, - { - "type": "float", - "name": "oversampling", - "setter": "set_oversampling", - "getter": "get_oversampling" - } - ] - }, - { - "name": "TCPServer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SocketServer", - "api_type": "core", - "methods": [ - { - "name": "listen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3167955072, - "hash_compatibility": [ - 4025329869 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "uint16" - }, - { - "name": "bind_address", - "type": "String", - "default_value": "\"*\"" - } - ] - }, - { - "name": "get_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "take_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 30545006, - "return_value": { - "type": "StreamPeerTCP" - } - } - ] - }, - { - "name": "TLSOptions", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "client", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3565000357, - "return_value": { - "type": "TLSOptions" - }, - "arguments": [ - { - "name": "trusted_chain", - "type": "X509Certificate", - "default_value": "null" - }, - { - "name": "common_name_override", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "client_unsafe", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2090251749, - "return_value": { - "type": "TLSOptions" - }, - "arguments": [ - { - "name": "trusted_chain", - "type": "X509Certificate", - "default_value": "null" - } - ] - }, - { - "name": "server", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 36969539, - "return_value": { - "type": "TLSOptions" - }, - "arguments": [ - { - "name": "key", - "type": "CryptoKey" - }, - { - "name": "certificate", - "type": "X509Certificate" - } - ] - }, - { - "name": "is_server", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_unsafe_client", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_common_name_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_trusted_ca_chain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120709175, - "return_value": { - "type": "X509Certificate" - } - }, - { - "name": "get_private_key", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2119971811, - "return_value": { - "type": "CryptoKey" - } - }, - { - "name": "get_own_certificate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120709175, - "return_value": { - "type": "X509Certificate" - } - } - ] - }, - { - "name": "TabBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "AlignmentMode", - "is_bitfield": false, - "values": [ - { - "name": "ALIGNMENT_LEFT", - "value": 0 - }, - { - "name": "ALIGNMENT_CENTER", - "value": 1 - }, - { - "name": "ALIGNMENT_RIGHT", - "value": 2 - }, - { - "name": "ALIGNMENT_MAX", - "value": 3 - } - ] - }, - { - "name": "CloseButtonDisplayPolicy", - "is_bitfield": false, - "values": [ - { - "name": "CLOSE_BUTTON_SHOW_NEVER", - "value": 0 - }, - { - "name": "CLOSE_BUTTON_SHOW_ACTIVE_ONLY", - "value": 1 - }, - { - "name": "CLOSE_BUTTON_SHOW_ALWAYS", - "value": 2 - }, - { - "name": "CLOSE_BUTTON_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_tab_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_current_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_tab", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_previous_tab", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "select_previous_available", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "select_next_available", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_tab_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_tab_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1707680378, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_tab_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235602388, - "return_value": { - "type": "enum::Control.TextDirection" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_tab_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_tab_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_icon_max_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_icon_max_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_button_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_tab_button_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_tab_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_tab_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "get_tab_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1465444425, - "arguments": [ - { - "name": "title", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "icon", - "type": "Texture2D", - "default_value": "null" - } - ] - }, - { - "name": "get_tab_idx_at_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "set_tab_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2413632353, - "arguments": [ - { - "name": "alignment", - "type": "enum::TabBar.AlignmentMode" - } - ] - }, - { - "name": "get_tab_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2178122193, - "return_value": { - "type": "enum::TabBar.AlignmentMode" - } - }, - { - "name": "set_clip_tabs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "clip_tabs", - "type": "bool" - } - ] - }, - { - "name": "get_clip_tabs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_tab_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_offset_buttons_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "ensure_tab_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3327874267, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "move_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from", - "type": "int", - "meta": "int32" - }, - { - "name": "to", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_close_with_middle_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_close_with_middle_mouse", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_close_display_policy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2212906737, - "arguments": [ - { - "name": "policy", - "type": "enum::TabBar.CloseButtonDisplayPolicy" - } - ] - }, - { - "name": "get_tab_close_display_policy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2956568028, - "return_value": { - "type": "enum::TabBar.CloseButtonDisplayPolicy" - } - }, - { - "name": "set_max_tab_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_tab_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_scrolling_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_scrolling_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_to_rearrange_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_drag_to_rearrange_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_switch_on_drag_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_switch_on_drag_hover", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tabs_rearrange_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "group_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tabs_rearrange_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_scroll_to_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_scroll_to_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_select_with_rmb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_select_with_rmb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deselect_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_deselect_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clear_tabs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "signals": [ - { - "name": "tab_selected", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_changed", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_clicked", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_rmb_clicked", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_close_pressed", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_button_pressed", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_hovered", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "active_tab_rearranged", - "arguments": [ - { - "name": "idx_to", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "current_tab", - "setter": "set_current_tab", - "getter": "get_current_tab" - }, - { - "type": "int", - "name": "tab_alignment", - "setter": "set_tab_alignment", - "getter": "get_tab_alignment" - }, - { - "type": "bool", - "name": "clip_tabs", - "setter": "set_clip_tabs", - "getter": "get_clip_tabs" - }, - { - "type": "bool", - "name": "close_with_middle_mouse", - "setter": "set_close_with_middle_mouse", - "getter": "get_close_with_middle_mouse" - }, - { - "type": "int", - "name": "tab_close_display_policy", - "setter": "set_tab_close_display_policy", - "getter": "get_tab_close_display_policy" - }, - { - "type": "int", - "name": "max_tab_width", - "setter": "set_max_tab_width", - "getter": "get_max_tab_width" - }, - { - "type": "bool", - "name": "scrolling_enabled", - "setter": "set_scrolling_enabled", - "getter": "get_scrolling_enabled" - }, - { - "type": "bool", - "name": "drag_to_rearrange_enabled", - "setter": "set_drag_to_rearrange_enabled", - "getter": "get_drag_to_rearrange_enabled" - }, - { - "type": "bool", - "name": "switch_on_drag_hover", - "setter": "set_switch_on_drag_hover", - "getter": "get_switch_on_drag_hover" - }, - { - "type": "int", - "name": "tabs_rearrange_group", - "setter": "set_tabs_rearrange_group", - "getter": "get_tabs_rearrange_group" - }, - { - "type": "bool", - "name": "scroll_to_selected", - "setter": "set_scroll_to_selected", - "getter": "get_scroll_to_selected" - }, - { - "type": "bool", - "name": "select_with_rmb", - "setter": "set_select_with_rmb", - "getter": "get_select_with_rmb" - }, - { - "type": "bool", - "name": "deselect_enabled", - "setter": "set_deselect_enabled", - "getter": "get_deselect_enabled" - }, - { - "type": "int", - "name": "tab_count", - "setter": "set_tab_count", - "getter": "get_tab_count" - } - ] - }, - { - "name": "TabContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Container", - "api_type": "core", - "enums": [ - { - "name": "TabPosition", - "is_bitfield": false, - "values": [ - { - "name": "POSITION_TOP", - "value": 0 - }, - { - "name": "POSITION_BOTTOM", - "value": 1 - }, - { - "name": "POSITION_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_tab_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_current_tab", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_tab", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_previous_tab", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "select_previous_available", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "select_next_available", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_current_tab_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "get_tab_bar", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1865451809, - "return_value": { - "type": "TabBar" - } - }, - { - "name": "get_tab_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1065994134, - "return_value": { - "type": "Control" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2413632353, - "arguments": [ - { - "name": "alignment", - "type": "enum::TabBar.AlignmentMode" - } - ] - }, - { - "name": "get_tab_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2178122193, - "return_value": { - "type": "enum::TabBar.AlignmentMode" - } - }, - { - "name": "set_tabs_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 256673370, - "arguments": [ - { - "name": "tabs_position", - "type": "enum::TabContainer.TabPosition" - } - ] - }, - { - "name": "get_tabs_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 919937023, - "return_value": { - "type": "enum::TabContainer.TabPosition" - } - }, - { - "name": "set_clip_tabs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "clip_tabs", - "type": "bool" - } - ] - }, - { - "name": "get_clip_tabs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tabs_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "are_tabs_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_all_tabs_in_front", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "is_front", - "type": "bool" - } - ] - }, - { - "name": "is_all_tabs_in_front", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_tab_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_tab_tooltip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_tab_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_icon_max_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_icon_max_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "is_tab_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_hidden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "hidden", - "type": "bool" - } - ] - }, - { - "name": "is_tab_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "get_tab_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tab_button_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_tab_button_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_idx_at_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "point", - "type": "Vector2" - } - ] - }, - { - "name": "get_tab_idx_from_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2787397975, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "control", - "type": "Control" - } - ] - }, - { - "name": "set_popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1078189570, - "arguments": [ - { - "name": "popup", - "type": "Node" - } - ] - }, - { - "name": "get_popup", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 111095082, - "return_value": { - "type": "Popup" - } - }, - { - "name": "set_switch_on_drag_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_switch_on_drag_hover", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_to_rearrange_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_drag_to_rearrange_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tabs_rearrange_group", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "group_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tabs_rearrange_group", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_use_hidden_tabs_for_min_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_use_hidden_tabs_for_min_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_focus_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3232914922, - "arguments": [ - { - "name": "focus_mode", - "type": "enum::Control.FocusMode" - } - ] - }, - { - "name": "get_tab_focus_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2132829277, - "return_value": { - "type": "enum::Control.FocusMode" - } - }, - { - "name": "set_deselect_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_deselect_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "active_tab_rearranged", - "arguments": [ - { - "name": "idx_to", - "type": "int" - } - ] - }, - { - "name": "tab_changed", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_clicked", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_hovered", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_selected", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "tab_button_pressed", - "arguments": [ - { - "name": "tab", - "type": "int" - } - ] - }, - { - "name": "pre_popup_pressed" - } - ], - "properties": [ - { - "type": "int", - "name": "tab_alignment", - "setter": "set_tab_alignment", - "getter": "get_tab_alignment" - }, - { - "type": "int", - "name": "current_tab", - "setter": "set_current_tab", - "getter": "get_current_tab" - }, - { - "type": "int", - "name": "tabs_position", - "setter": "set_tabs_position", - "getter": "get_tabs_position" - }, - { - "type": "bool", - "name": "clip_tabs", - "setter": "set_clip_tabs", - "getter": "get_clip_tabs" - }, - { - "type": "bool", - "name": "tabs_visible", - "setter": "set_tabs_visible", - "getter": "are_tabs_visible" - }, - { - "type": "bool", - "name": "all_tabs_in_front", - "setter": "set_all_tabs_in_front", - "getter": "is_all_tabs_in_front" - }, - { - "type": "bool", - "name": "switch_on_drag_hover", - "setter": "set_switch_on_drag_hover", - "getter": "get_switch_on_drag_hover" - }, - { - "type": "bool", - "name": "drag_to_rearrange_enabled", - "setter": "set_drag_to_rearrange_enabled", - "getter": "get_drag_to_rearrange_enabled" - }, - { - "type": "int", - "name": "tabs_rearrange_group", - "setter": "set_tabs_rearrange_group", - "getter": "get_tabs_rearrange_group" - }, - { - "type": "bool", - "name": "use_hidden_tabs_for_min_size", - "setter": "set_use_hidden_tabs_for_min_size", - "getter": "get_use_hidden_tabs_for_min_size" - }, - { - "type": "int", - "name": "tab_focus_mode", - "setter": "set_tab_focus_mode", - "getter": "get_tab_focus_mode" - }, - { - "type": "bool", - "name": "deselect_enabled", - "setter": "set_deselect_enabled", - "getter": "get_deselect_enabled" - } - ] - }, - { - "name": "TextEdit", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "MenuItems", - "is_bitfield": false, - "values": [ - { - "name": "MENU_CUT", - "value": 0 - }, - { - "name": "MENU_COPY", - "value": 1 - }, - { - "name": "MENU_PASTE", - "value": 2 - }, - { - "name": "MENU_CLEAR", - "value": 3 - }, - { - "name": "MENU_SELECT_ALL", - "value": 4 - }, - { - "name": "MENU_UNDO", - "value": 5 - }, - { - "name": "MENU_REDO", - "value": 6 - }, - { - "name": "MENU_SUBMENU_TEXT_DIR", - "value": 7 - }, - { - "name": "MENU_DIR_INHERITED", - "value": 8 - }, - { - "name": "MENU_DIR_AUTO", - "value": 9 - }, - { - "name": "MENU_DIR_LTR", - "value": 10 - }, - { - "name": "MENU_DIR_RTL", - "value": 11 - }, - { - "name": "MENU_DISPLAY_UCC", - "value": 12 - }, - { - "name": "MENU_SUBMENU_INSERT_UCC", - "value": 13 - }, - { - "name": "MENU_INSERT_LRM", - "value": 14 - }, - { - "name": "MENU_INSERT_RLM", - "value": 15 - }, - { - "name": "MENU_INSERT_LRE", - "value": 16 - }, - { - "name": "MENU_INSERT_RLE", - "value": 17 - }, - { - "name": "MENU_INSERT_LRO", - "value": 18 - }, - { - "name": "MENU_INSERT_RLO", - "value": 19 - }, - { - "name": "MENU_INSERT_PDF", - "value": 20 - }, - { - "name": "MENU_INSERT_ALM", - "value": 21 - }, - { - "name": "MENU_INSERT_LRI", - "value": 22 - }, - { - "name": "MENU_INSERT_RLI", - "value": 23 - }, - { - "name": "MENU_INSERT_FSI", - "value": 24 - }, - { - "name": "MENU_INSERT_PDI", - "value": 25 - }, - { - "name": "MENU_INSERT_ZWJ", - "value": 26 - }, - { - "name": "MENU_INSERT_ZWNJ", - "value": 27 - }, - { - "name": "MENU_INSERT_WJ", - "value": 28 - }, - { - "name": "MENU_INSERT_SHY", - "value": 29 - }, - { - "name": "MENU_EMOJI_AND_SYMBOL", - "value": 30 - }, - { - "name": "MENU_MAX", - "value": 31 - } - ] - }, - { - "name": "EditAction", - "is_bitfield": false, - "values": [ - { - "name": "ACTION_NONE", - "value": 0 - }, - { - "name": "ACTION_TYPING", - "value": 1 - }, - { - "name": "ACTION_BACKSPACE", - "value": 2 - }, - { - "name": "ACTION_DELETE", - "value": 3 - } - ] - }, - { - "name": "SearchFlags", - "is_bitfield": false, - "values": [ - { - "name": "SEARCH_MATCH_CASE", - "value": 1 - }, - { - "name": "SEARCH_WHOLE_WORDS", - "value": 2 - }, - { - "name": "SEARCH_BACKWARDS", - "value": 4 - } - ] - }, - { - "name": "CaretType", - "is_bitfield": false, - "values": [ - { - "name": "CARET_TYPE_LINE", - "value": 0 - }, - { - "name": "CARET_TYPE_BLOCK", - "value": 1 - } - ] - }, - { - "name": "SelectionMode", - "is_bitfield": false, - "values": [ - { - "name": "SELECTION_MODE_NONE", - "value": 0 - }, - { - "name": "SELECTION_MODE_SHIFT", - "value": 1 - }, - { - "name": "SELECTION_MODE_POINTER", - "value": 2 - }, - { - "name": "SELECTION_MODE_WORD", - "value": 3 - }, - { - "name": "SELECTION_MODE_LINE", - "value": 4 - } - ] - }, - { - "name": "LineWrappingMode", - "is_bitfield": false, - "values": [ - { - "name": "LINE_WRAPPING_NONE", - "value": 0 - }, - { - "name": "LINE_WRAPPING_BOUNDARY", - "value": 1 - } - ] - }, - { - "name": "GutterType", - "is_bitfield": false, - "values": [ - { - "name": "GUTTER_TYPE_STRING", - "value": 0 - }, - { - "name": "GUTTER_TYPE_ICON", - "value": 1 - }, - { - "name": "GUTTER_TYPE_CUSTOM", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_handle_unicode_input", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3937882851, - "arguments": [ - { - "name": "unicode_char", - "type": "int", - "meta": "int32" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_backspace", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_cut", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_copy", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_paste", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_paste_primary_clipboard", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_ime_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "cancel_ime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "apply_ime", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_editable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 119160795, - "arguments": [ - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797257663, - "return_value": { - "type": "enum::Control.TextDirection" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_tab_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_indent_wrapped_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_indent_wrapped_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tab_input_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_tab_input_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_overtype_mode_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_overtype_mode_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_context_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_context_menu_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_emoji_menu_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_emoji_menu_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_backspace_deletes_composite_character_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_backspace_deletes_composite_character_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shortcut_keys_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_shortcut_keys_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_virtual_keyboard_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_virtual_keyboard_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_virtual_keyboard_show_on_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show_on_focus", - "type": "bool" - } - ] - }, - { - "name": "get_virtual_keyboard_show_on_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_middle_mouse_paste_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_middle_mouse_paste_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_empty_selection_clipboard_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_empty_selection_clipboard_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "new_text", - "type": "String" - } - ] - }, - { - "name": "get_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_with_ime", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 688195400, - "hash_compatibility": [ - 3294126239 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_line_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_indent_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_first_non_whitespace_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "swap_lines", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "insert_line_at", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "remove_line_at", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "move_carets_down", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "insert_text_at_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697778442, - "hash_compatibility": [ - 3043792800 - ], - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "insert_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1881564334, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "before_selection_begin", - "type": "bool", - "default_value": "true" - }, - { - "name": "before_selection_end", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "remove_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4275841770, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "from_column", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_last_unhidden_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_next_visible_line_offset_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "visible_amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_next_visible_line_index_offset_from", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3386475622, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32" - }, - { - "name": "visible_amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "backspace", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "cut", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "copy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "paste", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "paste_primary_clipboard", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "start_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2834827583, - "arguments": [ - { - "name": "action", - "type": "enum::TextEdit.EditAction" - } - ] - }, - { - "name": "end_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "begin_complex_operation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "end_complex_operation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "has_undo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_redo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "undo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "redo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_undo_history", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "tag_saved_version", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "get_saved_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_search_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "search_text", - "type": "String" - } - ] - }, - { - "name": "set_search_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "flags", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "search", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1203739136, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "flags", - "type": "int", - "meta": "uint32" - }, - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "from_column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tooltip_request_func", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "get_local_mouse_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_word_at_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3674420000, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_line_column_at_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3472935744, - "hash_compatibility": [ - 239517838, - 850652858 - ], - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "clamp_line", - "type": "bool", - "default_value": "true" - }, - { - "name": "clamp_column", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_pos_at_line_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410388347, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rect_at_line_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3256618057, - "return_value": { - "type": "Rect2i" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_minimap_line_at_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "is_dragging_cursor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_mouse_over_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1840282309, - "hash_compatibility": [ - 1099474134 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "edges", - "type": "bool" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_caret_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1211596914, - "arguments": [ - { - "name": "type", - "type": "enum::TextEdit.CaretType" - } - ] - }, - { - "name": "get_caret_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2830252959, - "return_value": { - "type": "enum::TextEdit.CaretType" - } - }, - { - "name": "set_caret_blink_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_caret_blink_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_blink_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interval", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_caret_blink_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_draw_caret_when_editable_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_caret_when_editable_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_move_caret_on_right_click_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_move_caret_on_right_click_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_caret_mid_grapheme_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_caret_mid_grapheme_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_multiple_carets_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_multiple_carets_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 50157827, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "caret", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_secondary_carets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_caret_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_caret_at_carets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "below", - "type": "bool" - } - ] - }, - { - "name": "get_sorted_carets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2131714034, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "include_ignored_carets", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "collapse_carets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 228654177, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "from_column", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_column", - "type": "int", - "meta": "int32" - }, - { - "name": "inclusive", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "merge_overlapping_carets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "begin_multicaret_edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "end_multicaret_edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_in_mulitcaret_edit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "multicaret_edit_ignore_caret", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_caret_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_caret_draw_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 478253731, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_caret_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1302582944, - "hash_compatibility": [ - 1413195636 - ], - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "adjust_viewport", - "type": "bool", - "default_value": "true" - }, - { - "name": "can_be_hidden", - "type": "bool", - "default_value": "true" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_caret_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_caret_column", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3796796178, - "hash_compatibility": [ - 1071284433 - ], - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "adjust_viewport", - "type": "bool", - "default_value": "true" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_caret_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_next_composite_character_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_previous_composite_character_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_caret_wrap_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_word_under_caret", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3929349208, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_use_default_word_separators", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_word_separators_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_custom_word_separators", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_custom_word_separators_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_custom_word_separators", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "custom_word_separators", - "type": "String" - } - ] - }, - { - "name": "get_custom_word_separators", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_selecting_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_selecting_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_deselect_on_focus_loss_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_deselect_on_focus_loss_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drag_and_drop_selection_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drag_and_drop_selection_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_selection_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1658801786, - "hash_compatibility": [ - 1443345937, - 2920622473 - ], - "arguments": [ - { - "name": "mode", - "type": "enum::TextEdit.SelectionMode" - } - ] - }, - { - "name": "get_selection_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3750106938, - "return_value": { - "type": "enum::TextEdit.SelectionMode" - } - }, - { - "name": "select_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "select_word_under_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_selection_for_next_occurrence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "skip_selection_for_next_occurrence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2560984452, - "hash_compatibility": [ - 4269665324 - ], - "arguments": [ - { - "name": "origin_line", - "type": "int", - "meta": "int32" - }, - { - "name": "origin_column", - "type": "int", - "meta": "int32" - }, - { - "name": "caret_line", - "type": "int", - "meta": "int32" - }, - { - "name": "caret_column", - "type": "int", - "meta": "int32" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "has_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2824505868, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_selected_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2309358862, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_selection_at_line_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1810224333, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "include_edges", - "type": "bool", - "default_value": "true" - }, - { - "name": "only_selections", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_line_ranges_from_carets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2393089247, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "only_selections", - "type": "bool", - "default_value": "false" - }, - { - "name": "merge_adjacent", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_selection_origin_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_origin_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_selection_origin_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 195434140, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "can_be_hidden", - "type": "bool", - "default_value": "true" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_selection_origin_column", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230941749, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_from_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_from_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_to_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_to_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "is_caret_after_selection_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1051549951, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "delete_selection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_line_wrapping_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2525115309, - "arguments": [ - { - "name": "mode", - "type": "enum::TextEdit.LineWrappingMode" - } - ] - }, - { - "name": "get_line_wrapping_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3562716114, - "return_value": { - "type": "enum::TextEdit.LineWrappingMode" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "is_line_wrapped", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_wrap_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_wrap_index_at_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_wrapped_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 647634434, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_smooth_scroll_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_smooth_scroll_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_v_scroll_bar", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3226026593, - "return_value": { - "type": "VScrollBar" - } - }, - { - "name": "get_h_scroll_bar", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3774687988, - "return_value": { - "type": "HScrollBar" - } - }, - { - "name": "set_v_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_v_scroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_h_scroll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_h_scroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_scroll_past_end_of_file_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_past_end_of_file_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_v_scroll_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_v_scroll_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fit_content_height_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_fit_content_height_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_fit_content_width_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_fit_content_width_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_scroll_pos_for_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3929084198, - "hash_compatibility": [ - 3274652423 - ], - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_line_as_first_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230941749, - "hash_compatibility": [ - 3023605688 - ], - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_first_visible_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_line_in_viewport", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_as_center_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230941749, - "hash_compatibility": [ - 3023605688 - ], - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_line_as_last_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2230941749, - "hash_compatibility": [ - 3023605688 - ], - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "wrap_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_last_full_visible_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_last_full_visible_line_wrap_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_visible_line_count_in_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_total_visible_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "adjust_viewport_to_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "center_viewport_to_caret", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1995695955, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "set_draw_minimap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_minimap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_minimap_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_minimap_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_minimap_visible_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "at", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_gutter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_gutter_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_gutter_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_gutter_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1088959071, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "enum::TextEdit.GutterType" - } - ] - }, - { - "name": "get_gutter_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1159699127, - "return_value": { - "type": "enum::TextEdit.GutterType" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_gutter_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "draw", - "type": "bool" - } - ] - }, - { - "name": "is_gutter_drawn", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_clickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "clickable", - "type": "bool" - } - ] - }, - { - "name": "is_gutter_clickable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_overwritable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "overwritable", - "type": "bool" - } - ] - }, - { - "name": "is_gutter_overwritable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "merge_gutters", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_gutter_custom_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 957362965, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "draw_callback", - "type": "Callable" - } - ] - }, - { - "name": "get_total_gutter_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_line_gutter_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2060538656, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "metadata", - "type": "Variant" - } - ] - }, - { - "name": "get_line_gutter_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 678354945, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_gutter_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_line_gutter_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_gutter_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 176101966, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_line_gutter_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2584904275, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_gutter_item_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3733378741, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_line_gutter_item_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2165839948, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_gutter_clickable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - }, - { - "name": "clickable", - "type": "bool" - } - ] - }, - { - "name": "is_line_gutter_clickable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "gutter", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_line_background_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_line_background_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_syntax_highlighter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2765644541, - "arguments": [ - { - "name": "syntax_highlighter", - "type": "SyntaxHighlighter" - } - ] - }, - { - "name": "get_syntax_highlighter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2721131626, - "return_value": { - "type": "SyntaxHighlighter" - } - }, - { - "name": "set_highlight_current_line", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_highlight_current_line_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_highlight_all_occurrences", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_highlight_all_occurrences_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_draw_control_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_control_chars", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "set_draw_tabs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_tabs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_draw_spaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_drawing_spaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_menu", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229722558, - "return_value": { - "type": "PopupMenu" - } - }, - { - "name": "is_menu_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "menu_option", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "adjust_carets_after_edit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1770277138, - "arguments": [ - { - "name": "caret", - "type": "int", - "meta": "int32" - }, - { - "name": "from_line", - "type": "int", - "meta": "int32" - }, - { - "name": "from_col", - "type": "int", - "meta": "int32" - }, - { - "name": "to_line", - "type": "int", - "meta": "int32" - }, - { - "name": "to_col", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_caret_index_edit_order", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 969006518, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "get_selection_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_selection_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1591665591, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caret_index", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - } - ], - "signals": [ - { - "name": "text_set" - }, - { - "name": "text_changed" - }, - { - "name": "lines_edited_from", - "arguments": [ - { - "name": "from_line", - "type": "int" - }, - { - "name": "to_line", - "type": "int" - } - ] - }, - { - "name": "caret_changed" - }, - { - "name": "gutter_clicked", - "arguments": [ - { - "name": "line", - "type": "int" - }, - { - "name": "gutter", - "type": "int" - } - ] - }, - { - "name": "gutter_added" - }, - { - "name": "gutter_removed" - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "String", - "name": "placeholder_text", - "setter": "set_placeholder", - "getter": "get_placeholder" - }, - { - "type": "bool", - "name": "editable", - "setter": "set_editable", - "getter": "is_editable" - }, - { - "type": "bool", - "name": "context_menu_enabled", - "setter": "set_context_menu_enabled", - "getter": "is_context_menu_enabled" - }, - { - "type": "bool", - "name": "emoji_menu_enabled", - "setter": "set_emoji_menu_enabled", - "getter": "is_emoji_menu_enabled" - }, - { - "type": "bool", - "name": "backspace_deletes_composite_character_enabled", - "setter": "set_backspace_deletes_composite_character_enabled", - "getter": "is_backspace_deletes_composite_character_enabled" - }, - { - "type": "bool", - "name": "shortcut_keys_enabled", - "setter": "set_shortcut_keys_enabled", - "getter": "is_shortcut_keys_enabled" - }, - { - "type": "bool", - "name": "selecting_enabled", - "setter": "set_selecting_enabled", - "getter": "is_selecting_enabled" - }, - { - "type": "bool", - "name": "deselect_on_focus_loss_enabled", - "setter": "set_deselect_on_focus_loss_enabled", - "getter": "is_deselect_on_focus_loss_enabled" - }, - { - "type": "bool", - "name": "drag_and_drop_selection_enabled", - "setter": "set_drag_and_drop_selection_enabled", - "getter": "is_drag_and_drop_selection_enabled" - }, - { - "type": "bool", - "name": "middle_mouse_paste_enabled", - "setter": "set_middle_mouse_paste_enabled", - "getter": "is_middle_mouse_paste_enabled" - }, - { - "type": "bool", - "name": "empty_selection_clipboard_enabled", - "setter": "set_empty_selection_clipboard_enabled", - "getter": "is_empty_selection_clipboard_enabled" - }, - { - "type": "int", - "name": "wrap_mode", - "setter": "set_line_wrapping_mode", - "getter": "get_line_wrapping_mode" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "bool", - "name": "indent_wrapped_lines", - "setter": "set_indent_wrapped_lines", - "getter": "is_indent_wrapped_lines" - }, - { - "type": "bool", - "name": "tab_input_mode", - "setter": "set_tab_input_mode", - "getter": "get_tab_input_mode" - }, - { - "type": "bool", - "name": "virtual_keyboard_enabled", - "setter": "set_virtual_keyboard_enabled", - "getter": "is_virtual_keyboard_enabled" - }, - { - "type": "bool", - "name": "virtual_keyboard_show_on_focus", - "setter": "set_virtual_keyboard_show_on_focus", - "getter": "get_virtual_keyboard_show_on_focus" - }, - { - "type": "bool", - "name": "scroll_smooth", - "setter": "set_smooth_scroll_enabled", - "getter": "is_smooth_scroll_enabled" - }, - { - "type": "float", - "name": "scroll_v_scroll_speed", - "setter": "set_v_scroll_speed", - "getter": "get_v_scroll_speed" - }, - { - "type": "bool", - "name": "scroll_past_end_of_file", - "setter": "set_scroll_past_end_of_file_enabled", - "getter": "is_scroll_past_end_of_file_enabled" - }, - { - "type": "float", - "name": "scroll_vertical", - "setter": "set_v_scroll", - "getter": "get_v_scroll" - }, - { - "type": "int", - "name": "scroll_horizontal", - "setter": "set_h_scroll", - "getter": "get_h_scroll" - }, - { - "type": "bool", - "name": "scroll_fit_content_height", - "setter": "set_fit_content_height_enabled", - "getter": "is_fit_content_height_enabled" - }, - { - "type": "bool", - "name": "scroll_fit_content_width", - "setter": "set_fit_content_width_enabled", - "getter": "is_fit_content_width_enabled" - }, - { - "type": "bool", - "name": "minimap_draw", - "setter": "set_draw_minimap", - "getter": "is_drawing_minimap" - }, - { - "type": "int", - "name": "minimap_width", - "setter": "set_minimap_width", - "getter": "get_minimap_width" - }, - { - "type": "int", - "name": "caret_type", - "setter": "set_caret_type", - "getter": "get_caret_type" - }, - { - "type": "bool", - "name": "caret_blink", - "setter": "set_caret_blink_enabled", - "getter": "is_caret_blink_enabled" - }, - { - "type": "float", - "name": "caret_blink_interval", - "setter": "set_caret_blink_interval", - "getter": "get_caret_blink_interval" - }, - { - "type": "bool", - "name": "caret_draw_when_editable_disabled", - "setter": "set_draw_caret_when_editable_disabled", - "getter": "is_drawing_caret_when_editable_disabled" - }, - { - "type": "bool", - "name": "caret_move_on_right_click", - "setter": "set_move_caret_on_right_click_enabled", - "getter": "is_move_caret_on_right_click_enabled" - }, - { - "type": "bool", - "name": "caret_mid_grapheme", - "setter": "set_caret_mid_grapheme_enabled", - "getter": "is_caret_mid_grapheme_enabled" - }, - { - "type": "bool", - "name": "caret_multiple", - "setter": "set_multiple_carets_enabled", - "getter": "is_multiple_carets_enabled" - }, - { - "type": "bool", - "name": "use_default_word_separators", - "setter": "set_use_default_word_separators", - "getter": "is_default_word_separators_enabled" - }, - { - "type": "bool", - "name": "use_custom_word_separators", - "setter": "set_use_custom_word_separators", - "getter": "is_custom_word_separators_enabled" - }, - { - "type": "String", - "name": "custom_word_separators", - "setter": "set_custom_word_separators", - "getter": "get_custom_word_separators" - }, - { - "type": "SyntaxHighlighter", - "name": "syntax_highlighter", - "setter": "set_syntax_highlighter", - "getter": "get_syntax_highlighter" - }, - { - "type": "bool", - "name": "highlight_all_occurrences", - "setter": "set_highlight_all_occurrences", - "getter": "is_highlight_all_occurrences_enabled" - }, - { - "type": "bool", - "name": "highlight_current_line", - "setter": "set_highlight_current_line", - "getter": "is_highlight_current_line_enabled" - }, - { - "type": "bool", - "name": "draw_control_chars", - "setter": "set_draw_control_chars", - "getter": "get_draw_control_chars" - }, - { - "type": "bool", - "name": "draw_tabs", - "setter": "set_draw_tabs", - "getter": "is_drawing_tabs" - }, - { - "type": "bool", - "name": "draw_spaces", - "setter": "set_draw_spaces", - "getter": "is_drawing_spaces" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "TextLine", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "duplicate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1912703884, - "return_value": { - "type": "TextLine" - } - }, - { - "name": "set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1418190634, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction" - } - ] - }, - { - "name": "get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "get_inferred_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "set_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 42823726, - "arguments": [ - { - "name": "orientation", - "type": "enum::TextServer.Orientation" - } - ] - }, - { - "name": "get_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 175768116, - "return_value": { - "type": "enum::TextServer.Orientation" - } - }, - { - "name": "set_preserve_invalid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_preserve_invalid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_preserve_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_preserve_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "override", - "type": "Array" - } - ] - }, - { - "name": "add_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 621426851, - "hash_compatibility": [ - 867188035 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "font", - "type": "Font" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "meta", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "add_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1316529304, - "hash_compatibility": [ - 735420116 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "length", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "baseline", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "resize_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2095776372, - "hash_compatibility": [ - 960819067 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "baseline", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "has_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 77467830, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "tab_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "set_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_ellipsis_char", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "char", - "type": "String" - } - ] - }, - { - "name": "get_ellipsis_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_objects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_object_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1742700391, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_line_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_line_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_line_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_line_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3625105422, - "hash_compatibility": [ - 856975658, - 1164457837 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2592177763, - "hash_compatibility": [ - 1343401456, - 1364491366 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "hit_test", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2401831903, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "float", - "meta": "float" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "direction", - "setter": "set_direction", - "getter": "get_direction" - }, - { - "type": "int", - "name": "orientation", - "setter": "set_orientation", - "getter": "get_orientation" - }, - { - "type": "bool", - "name": "preserve_invalid", - "setter": "set_preserve_invalid", - "getter": "get_preserve_invalid" - }, - { - "type": "bool", - "name": "preserve_control", - "setter": "set_preserve_control", - "getter": "get_preserve_control" - }, - { - "type": "float", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "flags", - "setter": "set_flags", - "getter": "get_flags" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "String", - "name": "ellipsis_char", - "setter": "set_ellipsis_char", - "getter": "get_ellipsis_char" - } - ] - }, - { - "name": "TextMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_horizontal_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_horizontal_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "set_vertical_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1796458609, - "arguments": [ - { - "name": "alignment", - "type": "enum::VerticalAlignment" - } - ] - }, - { - "name": "get_vertical_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274884059, - "return_value": { - "type": "enum::VerticalAlignment" - } - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "set_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_line_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "line_spacing", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_line_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3289138044, - "arguments": [ - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1549071663, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - } - }, - { - "name": "set_justification_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_justification_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_depth", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "depth", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pixel_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixel_size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pixel_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_curve_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "curve_step", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_curve_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1418190634, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 55961453, - "arguments": [ - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3385126229, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - } - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_uppercase", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_uppercase", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "String", - "name": "text", - "setter": "set_text", - "getter": "get_text" - }, - { - "type": "Font", - "name": "font", - "setter": "set_font", - "getter": "get_font" - }, - { - "type": "int", - "name": "font_size", - "setter": "set_font_size", - "getter": "get_font_size" - }, - { - "type": "int", - "name": "horizontal_alignment", - "setter": "set_horizontal_alignment", - "getter": "get_horizontal_alignment" - }, - { - "type": "int", - "name": "vertical_alignment", - "setter": "set_vertical_alignment", - "getter": "get_vertical_alignment" - }, - { - "type": "bool", - "name": "uppercase", - "setter": "set_uppercase", - "getter": "is_uppercase" - }, - { - "type": "float", - "name": "line_spacing", - "setter": "set_line_spacing", - "getter": "get_line_spacing" - }, - { - "type": "int", - "name": "autowrap_mode", - "setter": "set_autowrap_mode", - "getter": "get_autowrap_mode" - }, - { - "type": "int", - "name": "justification_flags", - "setter": "set_justification_flags", - "getter": "get_justification_flags" - }, - { - "type": "float", - "name": "pixel_size", - "setter": "set_pixel_size", - "getter": "get_pixel_size" - }, - { - "type": "float", - "name": "curve_step", - "setter": "set_curve_step", - "getter": "get_curve_step" - }, - { - "type": "float", - "name": "depth", - "setter": "set_depth", - "getter": "get_depth" - }, - { - "type": "float", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "Vector2", - "name": "offset", - "setter": "set_offset", - "getter": "get_offset" - }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction" - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language" - }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override" - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options" - } - ] - }, - { - "name": "TextParagraph", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "duplicate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3607706709, - "return_value": { - "type": "TextParagraph" - } - }, - { - "name": "set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1418190634, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction" - } - ] - }, - { - "name": "get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "get_inferred_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2516697328, - "return_value": { - "type": "enum::TextServer.Direction" - } - }, - { - "name": "set_custom_punctuation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "custom_punctuation", - "type": "String" - } - ] - }, - { - "name": "get_custom_punctuation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 42823726, - "arguments": [ - { - "name": "orientation", - "type": "enum::TextServer.Orientation" - } - ] - }, - { - "name": "get_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 175768116, - "return_value": { - "type": "enum::TextServer.Orientation" - } - }, - { - "name": "set_preserve_invalid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_preserve_invalid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_preserve_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_preserve_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "override", - "type": "Array" - } - ] - }, - { - "name": "set_dropcap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2498990330, - "hash_compatibility": [ - 2613124475 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "font", - "type": "Font" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - }, - { - "name": "dropcap_margins", - "type": "Rect2", - "default_value": "Rect2(0, 0, 0, 0)" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "clear_dropcap", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 621426851, - "hash_compatibility": [ - 867188035 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "text", - "type": "String" - }, - { - "name": "font", - "type": "Font" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "meta", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "add_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1316529304, - "hash_compatibility": [ - 735420116 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "length", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "baseline", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "resize_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2095776372, - "hash_compatibility": [ - 960819067 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "baseline", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "has_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 77467830, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "set_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2312603777, - "arguments": [ - { - "name": "alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 341400642, - "return_value": { - "type": "enum::HorizontalAlignment" - } - }, - { - "name": "tab_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "set_break_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2809697122, - "arguments": [ - { - "name": "flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_break_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2340632602, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - } - }, - { - "name": "set_justification_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2877345813, - "arguments": [ - { - "name": "flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "get_justification_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1583363614, - "return_value": { - "type": "bitfield::TextServer.JustificationFlag" - } - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1008890932, - "arguments": [ - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3779142101, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - } - }, - { - "name": "set_ellipsis_char", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "char", - "type": "String" - } - ] - }, - { - "name": "get_ellipsis_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "width", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_non_wrapped_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_line_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_dropcap_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_line_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max_lines_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_lines_visible", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_lines_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_line_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "line_spacing", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_line_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_line_objects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_object_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 204315017, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "get_line_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 880721226, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_line_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "line", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_dropcap_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_dropcap_lines", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1492808103, - "hash_compatibility": [ - 1567802413, - 367324453 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "dc_color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820500590, - "hash_compatibility": [ - 1893131224, - 2159523405 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "dc_color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 828033758, - "hash_compatibility": [ - 1242169894, - 3963848920 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_line_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2822696703, - "hash_compatibility": [ - 2664926980, - 1814903311 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "line", - "type": "int", - "meta": "int32" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_dropcap", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3625105422, - "hash_compatibility": [ - 856975658, - 1164457837 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "draw_dropcap_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2592177763, - "hash_compatibility": [ - 1343401456, - 1364491366 - ], - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int32", - "default_value": "1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "hit_test", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "direction", - "setter": "set_direction", - "getter": "get_direction" - }, - { - "type": "String", - "name": "custom_punctuation", - "setter": "set_custom_punctuation", - "getter": "get_custom_punctuation" - }, - { - "type": "int", - "name": "orientation", - "setter": "set_orientation", - "getter": "get_orientation" - }, - { - "type": "bool", - "name": "preserve_invalid", - "setter": "set_preserve_invalid", - "getter": "get_preserve_invalid" - }, - { - "type": "bool", - "name": "preserve_control", - "setter": "set_preserve_control", - "getter": "get_preserve_control" - }, - { - "type": "int", - "name": "alignment", - "setter": "set_alignment", - "getter": "get_alignment" - }, - { - "type": "int", - "name": "break_flags", - "setter": "set_break_flags", - "getter": "get_break_flags" - }, - { - "type": "int", - "name": "justification_flags", - "setter": "set_justification_flags", - "getter": "get_justification_flags" - }, - { - "type": "int", - "name": "text_overrun_behavior", - "setter": "set_text_overrun_behavior", - "getter": "get_text_overrun_behavior" - }, - { - "type": "String", - "name": "ellipsis_char", - "setter": "set_ellipsis_char", - "getter": "get_ellipsis_char" - }, - { - "type": "float", - "name": "width", - "setter": "set_width", - "getter": "get_width" - }, - { - "type": "int", - "name": "max_lines_visible", - "setter": "set_max_lines_visible", - "getter": "get_max_lines_visible" - }, - { - "type": "float", - "name": "line_spacing", - "setter": "set_line_spacing", - "getter": "get_line_spacing" - } - ] - }, - { - "name": "TextServer", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "FontAntialiasing", - "is_bitfield": false, - "values": [ - { - "name": "FONT_ANTIALIASING_NONE", - "value": 0 - }, - { - "name": "FONT_ANTIALIASING_GRAY", - "value": 1 - }, - { - "name": "FONT_ANTIALIASING_LCD", - "value": 2 - } - ] - }, - { - "name": "FontLCDSubpixelLayout", - "is_bitfield": false, - "values": [ - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_NONE", - "value": 0 - }, - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_HRGB", - "value": 1 - }, - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_HBGR", - "value": 2 - }, - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_VRGB", - "value": 3 - }, - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_VBGR", - "value": 4 - }, - { - "name": "FONT_LCD_SUBPIXEL_LAYOUT_MAX", - "value": 5 - } - ] - }, - { - "name": "Direction", - "is_bitfield": false, - "values": [ - { - "name": "DIRECTION_AUTO", - "value": 0 - }, - { - "name": "DIRECTION_LTR", - "value": 1 - }, - { - "name": "DIRECTION_RTL", - "value": 2 - }, - { - "name": "DIRECTION_INHERITED", - "value": 3 - } - ] - }, - { - "name": "Orientation", - "is_bitfield": false, - "values": [ - { - "name": "ORIENTATION_HORIZONTAL", - "value": 0 - }, - { - "name": "ORIENTATION_VERTICAL", - "value": 1 - } - ] - }, - { - "name": "JustificationFlag", - "is_bitfield": true, - "values": [ - { - "name": "JUSTIFICATION_NONE", - "value": 0 - }, - { - "name": "JUSTIFICATION_KASHIDA", - "value": 1 - }, - { - "name": "JUSTIFICATION_WORD_BOUND", - "value": 2 - }, - { - "name": "JUSTIFICATION_TRIM_EDGE_SPACES", - "value": 4 - }, - { - "name": "JUSTIFICATION_AFTER_LAST_TAB", - "value": 8 - }, - { - "name": "JUSTIFICATION_CONSTRAIN_ELLIPSIS", - "value": 16 - }, - { - "name": "JUSTIFICATION_SKIP_LAST_LINE", - "value": 32 - }, - { - "name": "JUSTIFICATION_SKIP_LAST_LINE_WITH_VISIBLE_CHARS", - "value": 64 - }, - { - "name": "JUSTIFICATION_DO_NOT_SKIP_SINGLE_LINE", - "value": 128 - } - ] - }, - { - "name": "AutowrapMode", - "is_bitfield": false, - "values": [ - { - "name": "AUTOWRAP_OFF", - "value": 0 - }, - { - "name": "AUTOWRAP_ARBITRARY", - "value": 1 - }, - { - "name": "AUTOWRAP_WORD", - "value": 2 - }, - { - "name": "AUTOWRAP_WORD_SMART", - "value": 3 - } - ] - }, - { - "name": "LineBreakFlag", - "is_bitfield": true, - "values": [ - { - "name": "BREAK_NONE", - "value": 0 - }, - { - "name": "BREAK_MANDATORY", - "value": 1 - }, - { - "name": "BREAK_WORD_BOUND", - "value": 2 - }, - { - "name": "BREAK_GRAPHEME_BOUND", - "value": 4 - }, - { - "name": "BREAK_ADAPTIVE", - "value": 8 - }, - { - "name": "BREAK_TRIM_EDGE_SPACES", - "value": 16 - }, - { - "name": "BREAK_TRIM_INDENT", - "value": 32 - }, - { - "name": "BREAK_TRIM_START_EDGE_SPACES", - "value": 64 - }, - { - "name": "BREAK_TRIM_END_EDGE_SPACES", - "value": 128 - } - ] - }, - { - "name": "VisibleCharactersBehavior", - "is_bitfield": false, - "values": [ - { - "name": "VC_CHARS_BEFORE_SHAPING", - "value": 0 - }, - { - "name": "VC_CHARS_AFTER_SHAPING", - "value": 1 - }, - { - "name": "VC_GLYPHS_AUTO", - "value": 2 - }, - { - "name": "VC_GLYPHS_LTR", - "value": 3 - }, - { - "name": "VC_GLYPHS_RTL", - "value": 4 - } - ] - }, - { - "name": "OverrunBehavior", - "is_bitfield": false, - "values": [ - { - "name": "OVERRUN_NO_TRIMMING", - "value": 0 - }, - { - "name": "OVERRUN_TRIM_CHAR", - "value": 1 - }, - { - "name": "OVERRUN_TRIM_WORD", - "value": 2 - }, - { - "name": "OVERRUN_TRIM_ELLIPSIS", - "value": 3 - }, - { - "name": "OVERRUN_TRIM_WORD_ELLIPSIS", - "value": 4 - }, - { - "name": "OVERRUN_TRIM_ELLIPSIS_FORCE", - "value": 5 - }, - { - "name": "OVERRUN_TRIM_WORD_ELLIPSIS_FORCE", - "value": 6 - } - ] - }, - { - "name": "TextOverrunFlag", - "is_bitfield": true, - "values": [ - { - "name": "OVERRUN_NO_TRIM", - "value": 0 - }, - { - "name": "OVERRUN_TRIM", - "value": 1 - }, - { - "name": "OVERRUN_TRIM_WORD_ONLY", - "value": 2 - }, - { - "name": "OVERRUN_ADD_ELLIPSIS", - "value": 4 - }, - { - "name": "OVERRUN_ENFORCE_ELLIPSIS", - "value": 8 - }, - { - "name": "OVERRUN_JUSTIFICATION_AWARE", - "value": 16 - }, - { - "name": "OVERRUN_SHORT_STRING_ELLIPSIS", - "value": 32 - } - ] - }, - { - "name": "GraphemeFlag", - "is_bitfield": true, - "values": [ - { - "name": "GRAPHEME_IS_VALID", - "value": 1 - }, - { - "name": "GRAPHEME_IS_RTL", - "value": 2 - }, - { - "name": "GRAPHEME_IS_VIRTUAL", - "value": 4 - }, - { - "name": "GRAPHEME_IS_SPACE", - "value": 8 - }, - { - "name": "GRAPHEME_IS_BREAK_HARD", - "value": 16 - }, - { - "name": "GRAPHEME_IS_BREAK_SOFT", - "value": 32 - }, - { - "name": "GRAPHEME_IS_TAB", - "value": 64 - }, - { - "name": "GRAPHEME_IS_ELONGATION", - "value": 128 - }, - { - "name": "GRAPHEME_IS_PUNCTUATION", - "value": 256 - }, - { - "name": "GRAPHEME_IS_UNDERSCORE", - "value": 512 - }, - { - "name": "GRAPHEME_IS_CONNECTED", - "value": 1024 - }, - { - "name": "GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL", - "value": 2048 - }, - { - "name": "GRAPHEME_IS_EMBEDDED_OBJECT", - "value": 4096 - }, - { - "name": "GRAPHEME_IS_SOFT_HYPHEN", - "value": 8192 - } - ] - }, - { - "name": "Hinting", - "is_bitfield": false, - "values": [ - { - "name": "HINTING_NONE", - "value": 0 - }, - { - "name": "HINTING_LIGHT", - "value": 1 - }, - { - "name": "HINTING_NORMAL", - "value": 2 - } - ] - }, - { - "name": "SubpixelPositioning", - "is_bitfield": false, - "values": [ - { - "name": "SUBPIXEL_POSITIONING_DISABLED", - "value": 0 - }, - { - "name": "SUBPIXEL_POSITIONING_AUTO", - "value": 1 - }, - { - "name": "SUBPIXEL_POSITIONING_ONE_HALF", - "value": 2 - }, - { - "name": "SUBPIXEL_POSITIONING_ONE_QUARTER", - "value": 3 - }, - { - "name": "SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE", - "value": 20 - }, - { - "name": "SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE", - "value": 16 - } - ] - }, - { - "name": "Feature", - "is_bitfield": false, - "values": [ - { - "name": "FEATURE_SIMPLE_LAYOUT", - "value": 1 - }, - { - "name": "FEATURE_BIDI_LAYOUT", - "value": 2 - }, - { - "name": "FEATURE_VERTICAL_LAYOUT", - "value": 4 - }, - { - "name": "FEATURE_SHAPING", - "value": 8 - }, - { - "name": "FEATURE_KASHIDA_JUSTIFICATION", - "value": 16 - }, - { - "name": "FEATURE_BREAK_ITERATORS", - "value": 32 - }, - { - "name": "FEATURE_FONT_BITMAP", - "value": 64 - }, - { - "name": "FEATURE_FONT_DYNAMIC", - "value": 128 - }, - { - "name": "FEATURE_FONT_MSDF", - "value": 256 - }, - { - "name": "FEATURE_FONT_SYSTEM", - "value": 512 - }, - { - "name": "FEATURE_FONT_VARIABLE", - "value": 1024 - }, - { - "name": "FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION", - "value": 2048 - }, - { - "name": "FEATURE_USE_SUPPORT_DATA", - "value": 4096 - }, - { - "name": "FEATURE_UNICODE_IDENTIFIERS", - "value": 8192 - }, - { - "name": "FEATURE_UNICODE_SECURITY", - "value": 16384 - } - ] - }, - { - "name": "ContourPointTag", - "is_bitfield": false, - "values": [ - { - "name": "CONTOUR_CURVE_TAG_ON", - "value": 1 - }, - { - "name": "CONTOUR_CURVE_TAG_OFF_CONIC", - "value": 0 - }, - { - "name": "CONTOUR_CURVE_TAG_OFF_CUBIC", - "value": 2 - } - ] - }, - { - "name": "SpacingType", - "is_bitfield": false, - "values": [ - { - "name": "SPACING_GLYPH", - "value": 0 - }, - { - "name": "SPACING_SPACE", - "value": 1 - }, - { - "name": "SPACING_TOP", - "value": 2 - }, - { - "name": "SPACING_BOTTOM", - "value": 3 - }, - { - "name": "SPACING_MAX", - "value": 4 - } - ] - }, - { - "name": "FontStyle", - "is_bitfield": true, - "values": [ - { - "name": "FONT_BOLD", - "value": 1 - }, - { - "name": "FONT_ITALIC", - "value": 2 - }, - { - "name": "FONT_FIXED_WIDTH", - "value": 4 - } - ] - }, - { - "name": "StructuredTextParser", - "is_bitfield": false, - "values": [ - { - "name": "STRUCTURED_TEXT_DEFAULT", - "value": 0 - }, - { - "name": "STRUCTURED_TEXT_URI", - "value": 1 - }, - { - "name": "STRUCTURED_TEXT_FILE", - "value": 2 - }, - { - "name": "STRUCTURED_TEXT_EMAIL", - "value": 3 - }, - { - "name": "STRUCTURED_TEXT_LIST", - "value": 4 - }, - { - "name": "STRUCTURED_TEXT_GDSCRIPT", - "value": 5 - }, - { - "name": "STRUCTURED_TEXT_CUSTOM", - "value": 6 - } - ] - }, - { - "name": "FixedSizeScaleMode", - "is_bitfield": false, - "values": [ - { - "name": "FIXED_SIZE_SCALE_DISABLE", - "value": 0 - }, - { - "name": "FIXED_SIZE_SCALE_INTEGER_ONLY", - "value": 1 - }, - { - "name": "FIXED_SIZE_SCALE_ENABLED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "has_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3967367083, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::TextServer.Feature" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "load_support_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "get_support_data_filename", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_support_data_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "save_support_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "get_support_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "is_locale_using_support_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "is_locale_right_to_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "name_to_tag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "tag_to_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tag", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "has", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "free_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "create_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "create_font_linked_variation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1355495400, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "font_set_face_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "face_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_face_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_face_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_style", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 898466325, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "style", - "type": "bitfield::TextServer.FontStyle" - } - ] - }, - { - "name": "font_get_style", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082502592, - "return_value": { - "type": "bitfield::TextServer.FontStyle" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "font_get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_ot_name_strings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_style_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "font_get_style_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_weight", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "weight", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_weight", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "weight", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_stretch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_antialiasing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 958337235, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "antialiasing", - "type": "enum::TextServer.FontAntialiasing" - } - ] - }, - { - "name": "font_get_antialiasing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3389420495, - "return_value": { - "type": "enum::TextServer.FontAntialiasing" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_disable_embedded_bitmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "disable_embedded_bitmaps", - "type": "bool" - } - ] - }, - { - "name": "font_get_disable_embedded_bitmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_generate_mipmaps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "generate_mipmaps", - "type": "bool" - } - ] - }, - { - "name": "font_get_generate_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_multichannel_signed_distance_field", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf", - "type": "bool" - } - ] - }, - { - "name": "font_is_multichannel_signed_distance_field", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_msdf_pixel_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf_pixel_range", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_msdf_pixel_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_msdf_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf_size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_msdf_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_fixed_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "fixed_size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_fixed_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_fixed_size_scale_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1029390307, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "fixed_size_scale_mode", - "type": "enum::TextServer.FixedSizeScaleMode" - } - ] - }, - { - "name": "font_get_fixed_size_scale_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4113120379, - "return_value": { - "type": "enum::TextServer.FixedSizeScaleMode" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_allow_system_fallback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "allow_system_fallback", - "type": "bool" - } - ] - }, - { - "name": "font_is_allow_system_fallback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_clear_system_fallback_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "font_set_force_autohinter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "force_autohinter", - "type": "bool" - } - ] - }, - { - "name": "font_is_force_autohinter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_modulate_color_glyphs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "modulate", - "type": "bool" - } - ] - }, - { - "name": "font_is_modulate_color_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_palette_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_palette_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_palette_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1595517857, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_palette_custom_colors", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4037098590, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "colors", - "type": "PackedColorArray" - } - ] - }, - { - "name": "font_get_palette_custom_colors", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1569415609, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_used_palette", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_used_palette", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_hinting", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1520010864, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "hinting", - "type": "enum::TextServer.Hinting" - } - ] - }, - { - "name": "font_get_hinting", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3971592737, - "return_value": { - "type": "enum::TextServer.Hinting" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_subpixel_positioning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3830459669, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "subpixel_positioning", - "type": "enum::TextServer.SubpixelPositioning" - } - ] - }, - { - "name": "font_get_subpixel_positioning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2752233671, - "return_value": { - "type": "enum::TextServer.SubpixelPositioning" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_keep_rounding_remainders", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "keep_rounding_remainders", - "type": "bool" - } - ] - }, - { - "name": "font_get_keep_rounding_remainders", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_embolden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "strength", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_embolden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1307259930, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1213653558, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "font_set_baseline_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "baseline_offset", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_baseline_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1246044741, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "font_get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 213527486, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_variation_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217542888, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "variation_coordinates", - "type": "Dictionary" - } - ] - }, - { - "name": "font_get_variation_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_size_cache_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_clear_size_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_remove_size_cache", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "font_get_size_cache_info", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_ascent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "ascent", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_descent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "descent", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_underline_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "underline_position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_underline_thickness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "underline_thickness", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "font_get_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_texture_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1311001310, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "font_clear_textures", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "font_remove_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_texture_image", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2354485091, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - }, - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "font_get_texture_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2451761155, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_texture_offsets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3005398047, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - }, - { - "name": "offset", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "font_get_texture_offsets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3420028887, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_glyph_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 46086620, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "font_clear_glyphs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "font_remove_glyph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_glyph_advance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2555689501, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_glyph_advance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3219397315, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "advance", - "type": "Vector2" - } - ] - }, - { - "name": "font_get_glyph_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_glyph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1812632090, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "font_get_glyph_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_glyph_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1812632090, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "gl_size", - "type": "Vector2" - } - ] - }, - { - "name": "font_get_glyph_uv_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2274268786, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_glyph_uv_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1973324081, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "uv_rect", - "type": "Rect2" - } - ] - }, - { - "name": "font_get_glyph_texture_idx", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4292800474, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_set_glyph_texture_idx", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4254580980, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "texture_idx", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_glyph_texture_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1451696141, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_glyph_texture_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_glyph_contours", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2903964473, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_kerning_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1778388067, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_clear_kerning_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_remove_kerning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2141860016, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "font_set_kerning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3630965883, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - }, - { - "name": "kerning", - "type": "Vector2" - } - ] - }, - { - "name": "font_get_kerning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1019980169, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "font_get_glyph_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1765635060, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - }, - { - "name": "variation_selector", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_char_from_glyph_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2156738276, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_has_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_supported_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_supported_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_render_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4254580980, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_render_glyph", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_draw_glyph", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3103234926, - "hash_compatibility": [ - 1339057948, - 1821196351 - ], - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "font_draw_glyph_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1976041553, - "hash_compatibility": [ - 2626165733, - 1124898203 - ], - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "font_is_language_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3199320846, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "font_set_language_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2313957094, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "font_get_language_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2829184646, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "font_remove_language_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "font_get_language_support_overrides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2801473409, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_is_script_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3199320846, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "font_set_script_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2313957094, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "font_get_script_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2829184646, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "font_remove_script_support_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "font_get_script_support_overrides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2801473409, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_set_opentype_feature_overrides", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217542888, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "overrides", - "type": "Dictionary" - } - ] - }, - { - "name": "font_get_opentype_feature_overrides", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_supported_feature_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_supported_variation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "font_get_global_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "font_set_global_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_hex_code_box_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "draw_hex_code_box", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602046441, - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "create_shaped_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1231398698, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - } - ] - }, - { - "name": "shaped_text_clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_duplicate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1551430183, - "hash_compatibility": [ - 2616949700 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction", - "default_value": "0" - } - ] - }, - { - "name": "shaped_text_get_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3065904362, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_inferred_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3065904362, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684822712, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "override", - "type": "Array" - } - ] - }, - { - "name": "shaped_text_set_custom_punctuation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726140452, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "punct", - "type": "String" - } - ] - }, - { - "name": "shaped_text_get_custom_punctuation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_custom_ellipsis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3411492887, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_get_custom_ellipsis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_orientation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3019609126, - "hash_compatibility": [ - 104095128 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation", - "default_value": "0" - } - ] - }, - { - "name": "shaped_text_get_orientation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3142708106, - "return_value": { - "type": "enum::TextServer.Orientation" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_preserve_invalid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "shaped_text_get_preserve_invalid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_preserve_control", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1265174801, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "shaped_text_get_preserve_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1307259930, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_get_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1213653558, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "shaped_text_add_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 623473029, - "hash_compatibility": [ - 2621279422 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "fonts", - "type": "typedarray::RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "opentype_features", - "type": "Dictionary", - "default_value": "{}" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "meta", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "shaped_text_add_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3664424789, - "hash_compatibility": [ - 2838446185 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "length", - "type": "int", - "meta": "int64", - "default_value": "1" - }, - { - "name": "baseline", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "shaped_text_resize_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 790361552, - "hash_compatibility": [ - 2353789835 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment", - "default_value": "5" - }, - { - "name": "baseline", - "type": "float", - "meta": "double", - "default_value": "0.0" - } - ] - }, - { - "name": "shaped_text_has_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2360964694, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "shaped_get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_get_span_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_get_span_meta", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_span_embedded_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_span_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_span_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_set_span_update_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2022725822, - "hash_compatibility": [ - 1578983057 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "fonts", - "type": "typedarray::RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "opentype_features", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "shaped_get_run_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_get_run_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069534484, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_glyph_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069534484, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_font_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2413896864, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_get_run_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_substr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1937682086, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "length", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_get_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_fit_to_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 530670926, - "hash_compatibility": [ - 603718830 - ], - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag", - "default_value": "3" - } - ] - }, - { - "name": "shaped_text_tab_align", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1283669550, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "shaped_text_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_is_ready", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_has_visible_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_sort_logical", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2670461153, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_glyph_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 733700038, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_line_breaks_adv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2376991424, - "hash_compatibility": [ - 4206849830 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "PackedFloat32Array" - }, - { - "name": "start", - "type": "int", - "meta": "int64", - "default_value": "0" - }, - { - "name": "once", - "type": "bool", - "default_value": "true" - }, - { - "name": "break_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - } - ] - }, - { - "name": "shaped_text_get_line_breaks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2651359741, - "hash_compatibility": [ - 303410369 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double" - }, - { - "name": "start", - "type": "int", - "meta": "int64", - "default_value": "0" - }, - { - "name": "break_flags", - "type": "bitfield::TextServer.LineBreakFlag", - "default_value": "3" - } - ] - }, - { - "name": "shaped_text_get_word_breaks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4099476853, - "hash_compatibility": [ - 185957063, - 3299477123 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "grapheme_flags", - "type": "bitfield::TextServer.GraphemeFlag", - "default_value": "264" - }, - { - "name": "skip_grapheme_flags", - "type": "bitfield::TextServer.GraphemeFlag", - "default_value": "4" - } - ] - }, - { - "name": "shaped_text_get_trim_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_ellipsis_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_ellipsis_glyphs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_ellipsis_glyph_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_overrun_trim_to_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2723146520, - "hash_compatibility": [ - 1572579718 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double", - "default_value": "0" - }, - { - "name": "overrun_trim_flags", - "type": "bitfield::TextServer.TextOverrunFlag", - "default_value": "0" - } - ] - }, - { - "name": "shaped_text_get_objects", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2684255073, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_object_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 447978354, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "shaped_text_get_object_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2524675647, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "shaped_text_get_object_glyph", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1260085030, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "shaped_text_get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_ascent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_descent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_underline_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_underline_thickness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_get_carets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1574219346, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "position", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_get_selection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3714187733, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_hit_test_grapheme", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3149310417, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "coords", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "shaped_text_hit_test_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3149310417, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "coords", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "shaped_text_get_grapheme_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546185844, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_next_grapheme_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_prev_grapheme_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_get_character_breaks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "shaped_text_next_character_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_prev_character_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_closest_character_pos", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "shaped_text_draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1647687596, - "hash_compatibility": [ - 880389142, - 70679950 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "clip_l", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "clip_r", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "shaped_text_draw_outline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1217146601, - "hash_compatibility": [ - 2559184194, - 2673671346 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "clip_l", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "clip_r", - "type": "float", - "meta": "double", - "default_value": "-1" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int64", - "default_value": "1" - }, - { - "name": "color", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float", - "default_value": "0.0" - } - ] - }, - { - "name": "shaped_text_get_dominant_direction_in_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3326907668, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "format_number", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2664628024, - "hash_compatibility": [ - 2305636099 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "parse_number", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2664628024, - "hash_compatibility": [ - 2305636099 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "percent_sign", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 993269549, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "string_get_word_breaks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 581857818, - "hash_compatibility": [ - 1398910359 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "chars_per_line", - "type": "int", - "meta": "int64", - "default_value": "0" - } - ] - }, - { - "name": "string_get_character_breaks", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2333794773, - "hash_compatibility": [ - 1586579831 - ], - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "is_confusable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1433197768, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "dict", - "type": "PackedStringArray" - } - ] - }, - { - "name": "spoof_check", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "strip_diacritics", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "is_valid_identifier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "is_valid_letter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "unicode", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "string_to_upper", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2664628024, - "hash_compatibility": [ - 2305636099 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "string_to_lower", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2664628024, - "hash_compatibility": [ - 2305636099 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "string_to_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2664628024, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "parse_structured_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3310685015, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "parser_type", - "type": "enum::TextServer.StructuredTextParser" - }, - { - "name": "args", - "type": "Array" - }, - { - "name": "text", - "type": "String" - } - ] - } - ] - }, - { - "name": "TextServerAdvanced", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextServerExtension", - "api_type": "core" - }, - { - "name": "TextServerDummy", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextServerExtension", - "api_type": "core" - }, - { - "name": "TextServerExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextServer", - "api_type": "core", - "methods": [ - { - "name": "_has_feature", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3967367083, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "feature", - "type": "enum::TextServer.Feature" - } - ] - }, - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_features", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "_free_rid", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "_has", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "rid", - "type": "RID" - } - ] - }, - { - "name": "_load_support_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2323990056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "_get_support_data_filename", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_support_data_info", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_save_support_data", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "filename", - "type": "String" - } - ] - }, - { - "name": "_get_support_data", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "_is_locale_using_support_data", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "_is_locale_right_to_left", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "_name_to_tag", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "_tag_to_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "tag", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_create_font", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_create_font_linked_variation", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_data", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1355495400, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "_font_set_data_ptr", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4288446313, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "data_ptr", - "type": "const uint8_t*" - }, - { - "name": "data_size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_face_index", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "face_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_face_index", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_face_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_style", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 898466325, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "style", - "type": "bitfield::TextServer.FontStyle" - } - ] - }, - { - "name": "_font_get_style", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3082502592, - "return_value": { - "type": "bitfield::TextServer.FontStyle" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_name", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "_font_get_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_ot_name_strings", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_style_name", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "name_style", - "type": "String" - } - ] - }, - { - "name": "_font_get_style_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_weight", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "weight", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_weight", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_stretch", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "stretch", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_stretch", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_antialiasing", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 958337235, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "antialiasing", - "type": "enum::TextServer.FontAntialiasing" - } - ] - }, - { - "name": "_font_get_antialiasing", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3389420495, - "return_value": { - "type": "enum::TextServer.FontAntialiasing" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_disable_embedded_bitmaps", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "disable_embedded_bitmaps", - "type": "bool" - } - ] - }, - { - "name": "_font_get_disable_embedded_bitmaps", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_generate_mipmaps", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "generate_mipmaps", - "type": "bool" - } - ] - }, - { - "name": "_font_get_generate_mipmaps", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_multichannel_signed_distance_field", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf", - "type": "bool" - } - ] - }, - { - "name": "_font_is_multichannel_signed_distance_field", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_msdf_pixel_range", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf_pixel_range", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_msdf_pixel_range", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_msdf_size", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "msdf_size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_msdf_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_fixed_size", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "fixed_size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_fixed_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_fixed_size_scale_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1029390307, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "fixed_size_scale_mode", - "type": "enum::TextServer.FixedSizeScaleMode" - } - ] - }, - { - "name": "_font_get_fixed_size_scale_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4113120379, - "return_value": { - "type": "enum::TextServer.FixedSizeScaleMode" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_allow_system_fallback", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "allow_system_fallback", - "type": "bool" - } - ] - }, - { - "name": "_font_is_allow_system_fallback", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_clear_system_fallback_cache", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_font_set_force_autohinter", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "force_autohinter", - "type": "bool" - } - ] - }, - { - "name": "_font_is_force_autohinter", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_modulate_color_glyphs", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "modulate", - "type": "bool" - } - ] - }, - { - "name": "_font_is_modulate_color_glyphs", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_palette_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_palette_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_palette_colors", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1595517857, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_palette_custom_colors", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4037098590, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "colors", - "type": "PackedColorArray" - } - ] - }, - { - "name": "_font_get_palette_custom_colors", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1569415609, - "return_value": { - "type": "PackedColorArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_used_palette", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_used_palette", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_hinting", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1520010864, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "hinting", - "type": "enum::TextServer.Hinting" - } - ] - }, - { - "name": "_font_get_hinting", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3971592737, - "return_value": { - "type": "enum::TextServer.Hinting" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_subpixel_positioning", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3830459669, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "subpixel_positioning", - "type": "enum::TextServer.SubpixelPositioning" - } - ] - }, - { - "name": "_font_get_subpixel_positioning", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2752233671, - "return_value": { - "type": "enum::TextServer.SubpixelPositioning" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_keep_rounding_remainders", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "keep_rounding_remainders", - "type": "bool" - } - ] - }, - { - "name": "_font_get_keep_rounding_remainders", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_embolden", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "strength", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_embolden", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_spacing", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1307259930, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_spacing", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1213653558, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "_font_set_baseline_offset", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "baseline_offset", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_baseline_offset", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_transform", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1246044741, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "_font_get_transform", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 213527486, - "return_value": { - "type": "Transform2D" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_variation_coordinates", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1217542888, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "variation_coordinates", - "type": "Dictionary" - } - ] - }, - { - "name": "_font_get_variation_coordinates", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_oversampling", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1794382983, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_oversampling", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_size_cache_list", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_clear_size_cache", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_remove_size_cache", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_get_size_cache_info", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_ascent", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "ascent", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_ascent", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_descent", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "descent", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_descent", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_underline_position", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "underline_position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_underline_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_underline_thickness", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "underline_thickness", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_underline_thickness", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_scale", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1892459533, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_font_get_scale", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 755457166, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_texture_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1311001310, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_clear_textures", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_remove_texture", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_texture_image", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2354485091, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - }, - { - "name": "image", - "type": "Image" - } - ] - }, - { - "name": "_font_get_texture_image", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2451761155, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_texture_offsets", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3005398047, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - }, - { - "name": "offset", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "_font_get_texture_offsets", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3420028887, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "texture_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_glyph_list", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 46086620, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_clear_glyphs", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2450610377, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_remove_glyph", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_glyph_advance", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2555689501, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_glyph_advance", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3219397315, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "advance", - "type": "Vector2" - } - ] - }, - { - "name": "_font_get_glyph_offset", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_glyph_offset", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1812632090, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "_font_get_glyph_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_glyph_size", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1812632090, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "gl_size", - "type": "Vector2" - } - ] - }, - { - "name": "_font_get_glyph_uv_rect", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2274268786, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_glyph_uv_rect", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1973324081, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "uv_rect", - "type": "Rect2" - } - ] - }, - { - "name": "_font_get_glyph_texture_idx", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4292800474, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_set_glyph_texture_idx", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4254580980, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - }, - { - "name": "texture_idx", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_glyph_texture_rid", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1451696141, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_glyph_texture_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 513728628, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "glyph", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_glyph_contours", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2903964473, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_kerning_list", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1778388067, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_clear_kerning_map", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_remove_kerning", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2141860016, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_set_kerning", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3630965883, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - }, - { - "name": "kerning", - "type": "Vector2" - } - ] - }, - { - "name": "_font_get_kerning", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1019980169, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_pair", - "type": "Vector2i" - } - ] - }, - { - "name": "_font_get_glyph_index", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1765635060, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - }, - { - "name": "variation_selector", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_char_from_glyph_index", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2156738276, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "glyph_index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_has_char", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3120086654, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_get_supported_chars", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_supported_glyphs", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_render_range", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4254580980, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_render_glyph", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3810512262, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_font_draw_glyph", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 404525066, - "hash_compatibility": [ - 309868464 - ], - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_font_draw_glyph_outline", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 940535541, - "hash_compatibility": [ - 3090733778 - ], - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_font_is_language_supported", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3199320846, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_font_set_language_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2313957094, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "_font_get_language_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2829184646, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_font_remove_language_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_font_get_language_support_overrides", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2801473409, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_is_script_supported", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3199320846, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "_font_set_script_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2313957094, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "_font_get_script_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2829184646, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "_font_remove_script_support_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2726140452, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "_font_get_script_support_overrides", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2801473409, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_set_opentype_feature_overrides", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1217542888, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "overrides", - "type": "Dictionary" - } - ] - }, - { - "name": "_font_get_opentype_feature_overrides", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_supported_feature_list", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_supported_variation_list", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1882737106, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - } - ] - }, - { - "name": "_font_get_global_oversampling", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_font_set_global_oversampling", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_reference_oversampling_level", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_unreference_oversampling_level", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_get_hex_code_box_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3016396712, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_draw_hex_code_box", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1602046441, - "arguments": [ - { - "name": "canvas", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "_create_shaped_text", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1431128392, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "direction", - "type": "enum::TextServer.Direction" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation" - } - ] - }, - { - "name": "_shaped_text_clear", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2722037293, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_duplicate", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_direction", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4276135416, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "direction", - "type": "enum::TextServer.Direction" - } - ] - }, - { - "name": "_shaped_text_get_direction", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3065904362, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_inferred_direction", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3065904362, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_bidi_override", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 684822712, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "override", - "type": "Array" - } - ] - }, - { - "name": "_shaped_text_set_custom_punctuation", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2726140452, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "punct", - "type": "String" - } - ] - }, - { - "name": "_shaped_text_get_custom_punctuation", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_custom_ellipsis", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3411492887, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "char", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_get_custom_ellipsis", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_orientation", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2306444742, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "orientation", - "type": "enum::TextServer.Orientation" - } - ] - }, - { - "name": "_shaped_text_get_orientation", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3142708106, - "return_value": { - "type": "enum::TextServer.Orientation" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_preserve_invalid", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_shaped_text_get_preserve_invalid", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_preserve_control", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1265174801, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_shaped_text_get_preserve_control", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_set_spacing", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1307259930, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_get_spacing", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1213653558, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, - { - "name": "_shaped_text_add_string", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 875249313, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "text", - "type": "String" - }, - { - "name": "fonts", - "type": "typedarray::RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "opentype_features", - "type": "Dictionary" - }, - { - "name": "language", - "type": "String" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "_shaped_text_add_object", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2452224230, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment" - }, - { - "name": "length", - "type": "int", - "meta": "int64" - }, - { - "name": "baseline", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_shaped_text_resize_object", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2747466775, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - }, - { - "name": "size", - "type": "Vector2" - }, - { - "name": "inline_align", - "type": "enum::InlineAlignment" - }, - { - "name": "baseline", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_shaped_text_has_object", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2360964694, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "_shaped_get_text", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 642473191, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_get_span_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_get_span_meta", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_span_embedded_object", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_span_text", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_span_object", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_set_span_update_font", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2569459151, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - }, - { - "name": "fonts", - "type": "typedarray::RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "opentype_features", - "type": "Dictionary" - } - ] - }, - { - "name": "_shaped_get_run_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_get_run_text", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_range", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4069534484, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_glyph_range", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4069534484, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_font_rid", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1066463050, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_font_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_language", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1464764419, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_direction", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2413896864, - "return_value": { - "type": "enum::TextServer.Direction" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_get_run_object", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4069510997, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "index", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_substr", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1937682086, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "length", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_get_parent", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3814569979, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_fit_to_width", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1426448222, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double" - }, - { - "name": "justification_flags", - "type": "bitfield::TextServer.JustificationFlag" - } - ] - }, - { - "name": "_shaped_text_tab_align", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1283669550, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "tab_stops", - "type": "PackedFloat32Array" - } - ] - }, - { - "name": "_shaped_text_shape", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_update_breaks", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_update_justification_ops", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_is_ready", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_glyphs", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "const Glyph*" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_sort_logical", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3917799429, - "return_value": { - "type": "const Glyph*" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_glyph_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_range", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 733700038, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_line_breaks_adv", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1488467363, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "PackedFloat32Array" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "once", - "type": "bool" - }, - { - "name": "break_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "_shaped_text_get_line_breaks", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3131311977, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "break_flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "_shaped_text_get_word_breaks", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2423529412, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "grapheme_flags", - "type": "bitfield::TextServer.GraphemeFlag" - }, - { - "name": "skip_grapheme_flags", - "type": "bitfield::TextServer.GraphemeFlag" - } - ] - }, - { - "name": "_shaped_text_get_trim_pos", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_ellipsis_pos", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_ellipsis_glyph_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_ellipsis_glyphs", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2198884583, - "return_value": { - "type": "const Glyph*" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_overrun_trim_to_width", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3364950921, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "width", - "type": "float", - "meta": "double" - }, - { - "name": "trim_flags", - "type": "bitfield::TextServer.TextOverrunFlag" - } - ] - }, - { - "name": "_shaped_text_get_objects", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2684255073, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_object_rect", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 447978354, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "_shaped_text_get_object_range", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2524675647, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "_shaped_text_get_object_glyph", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1260085030, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "key", - "type": "Variant" - } - ] - }, - { - "name": "_shaped_text_get_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2440833711, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_ascent", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_descent", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_width", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_underline_position", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_underline_thickness", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 866169185, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_get_dominant_direction_in_range", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2156738276, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_get_carets", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1191777527, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "position", - "type": "int", - "meta": "int64" - }, - { - "name": "r_caret", - "type": "CaretInfo*" - } - ] - }, - { - "name": "_shaped_text_get_selection", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3714187733, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "start", - "type": "int", - "meta": "int64" - }, - { - "name": "end", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_hit_test_grapheme", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3149310417, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "coord", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_shaped_text_hit_test_position", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3149310417, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "coord", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_shaped_text_draw", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2079930245, - "hash_compatibility": [ - 2453262187 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "clip_l", - "type": "float", - "meta": "double" - }, - { - "name": "clip_r", - "type": "float", - "meta": "double" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_shaped_text_draw_outline", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 601976754, - "hash_compatibility": [ - 1686767567 - ], - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "canvas", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "clip_l", - "type": "float", - "meta": "double" - }, - { - "name": "clip_r", - "type": "float", - "meta": "double" - }, - { - "name": "outline_size", - "type": "int", - "meta": "int64" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "_shaped_text_get_grapheme_bounds", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2546185844, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_next_grapheme_pos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_prev_grapheme_pos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_get_character_breaks", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 788230395, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - } - ] - }, - { - "name": "_shaped_text_next_character_pos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_prev_character_pos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_shaped_text_closest_character_pos", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1120910005, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "shaped", - "type": "RID" - }, - { - "name": "pos", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_format_number", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_parse_number", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_percent_sign", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_strip_diacritics", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "_is_valid_identifier", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "_is_valid_letter", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "unicode", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "_string_get_word_breaks", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3658450588, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String" - }, - { - "name": "chars_per_line", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "_string_get_character_breaks", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2509056759, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_is_confusable", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1433197768, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "dict", - "type": "PackedStringArray" - } - ] - }, - { - "name": "_spoof_check", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - }, - { - "name": "_string_to_upper", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_string_to_lower", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_string_to_title", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "string", - "type": "String" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "_parse_structured_text", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3310685015, - "return_value": { - "type": "typedarray::Vector3i" - }, - "arguments": [ - { - "name": "parser_type", - "type": "enum::TextServer.StructuredTextParser" - }, - { - "name": "args", - "type": "Array" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "_cleanup", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - } - ] - }, - { - "name": "TextServerManager", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "add_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1799689403, - "arguments": [ - { - "name": "interface", - "type": "TextServer" - } - ] - }, - { - "name": "get_interface_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "remove_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1799689403, - "arguments": [ - { - "name": "interface", - "type": "TextServer" - } - ] - }, - { - "name": "get_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1672475555, - "return_value": { - "type": "TextServer" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_interfaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "find_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240905781, - "return_value": { - "type": "TextServer" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_primary_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1799689403, - "arguments": [ - { - "name": "index", - "type": "TextServer" - } - ] - }, - { - "name": "get_primary_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 905850878, - "return_value": { - "type": "TextServer" - } - } - ], - "signals": [ - { - "name": "interface_added", - "arguments": [ - { - "name": "interface_name", - "type": "StringName" - } - ] - }, - { - "name": "interface_removed", - "arguments": [ - { - "name": "interface_name", - "type": "StringName" - } - ] - } - ] - }, - { - "name": "Texture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core" - }, - { - "name": "Texture2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture", - "api_type": "core", - "methods": [ - { - "name": "_get_image", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4190603485, - "return_value": { - "type": "Image" - } - }, - { - "name": "_get_format", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "_get_mipmap_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_width", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_height", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_is_pixel_opaque", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "x", - "type": "int", - "meta": "int32" - }, - { - "name": "y", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_has_alpha", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_has_mipmaps", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_draw", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1384643611, - "arguments": [ - { - "name": "to_canvas_item", - "type": "RID" - }, - { - "name": "pos", - "type": "Vector2" - }, - { - "name": "modulate", - "type": "Color" - }, - { - "name": "transpose", - "type": "bool" - } - ] - }, - { - "name": "_draw_rect", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3819628907, - "arguments": [ - { - "name": "to_canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "tile", - "type": "bool" - }, - { - "name": "modulate", - "type": "Color" - }, - { - "name": "transpose", - "type": "bool" - } - ] - }, - { - "name": "_draw_rect_region", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4094143664, - "arguments": [ - { - "name": "to_canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color" - }, - { - "name": "transpose", - "type": "bool" - }, - { - "name": "clip_uv", - "type": "bool" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "get_mipmap_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "has_alpha", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2729649137, - "hash_compatibility": [ - 1115460088 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "position", - "type": "Vector2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3499451691, - "hash_compatibility": [ - 575156982 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "tile", - "type": "bool" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "draw_rect_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2963678660, - "hash_compatibility": [ - 1066564656 - ], - "arguments": [ - { - "name": "canvas_item", - "type": "RID" - }, - { - "name": "rect", - "type": "Rect2" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 1)" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - }, - { - "name": "clip_uv", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_image", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4190603485, - "return_value": { - "type": "Image" - } - }, - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ] - }, - { - "name": "Texture2DArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "ImageTextureLayered", - "api_type": "core", - "methods": [ - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ] - }, - { - "name": "Texture2DArrayRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextureLayeredRD", - "api_type": "core" - }, - { - "name": "Texture2DRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_texture_rd_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "texture_rd_rid", - "type": "RID" - } - ] - }, - { - "name": "get_texture_rd_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "texture_rd_rid", - "setter": "set_texture_rd_rid", - "getter": "get_texture_rd_rid" - } - ] - }, - { - "name": "Texture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture", - "api_type": "core", - "methods": [ - { - "name": "_get_format", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "_get_width", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_height", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_depth", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_has_mipmaps", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_data", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Image" - } - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_depth", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Image" - } - }, - { - "name": "create_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 121922552, - "return_value": { - "type": "Resource" - } - } - ] - }, - { - "name": "Texture3DRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture3D", - "api_type": "core", - "methods": [ - { - "name": "set_texture_rd_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "texture_rd_rid", - "type": "RID" - } - ] - }, - { - "name": "get_texture_rd_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "texture_rd_rid", - "setter": "set_texture_rd_rid", - "getter": "get_texture_rd_rid" - } - ] - }, - { - "name": "TextureButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BaseButton", - "api_type": "core", - "enums": [ - { - "name": "StretchMode", - "is_bitfield": false, - "values": [ - { - "name": "STRETCH_SCALE", - "value": 0 - }, - { - "name": "STRETCH_TILE", - "value": 1 - }, - { - "name": "STRETCH_KEEP", - "value": 2 - }, - { - "name": "STRETCH_KEEP_CENTERED", - "value": 3 - }, - { - "name": "STRETCH_KEEP_ASPECT", - "value": 4 - }, - { - "name": "STRETCH_KEEP_ASPECT_CENTERED", - "value": 5 - }, - { - "name": "STRETCH_KEEP_ASPECT_COVERED", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_texture_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_texture_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_texture_hover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_texture_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_texture_focused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "set_click_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 698588216, - "arguments": [ - { - "name": "mask", - "type": "BitMap" - } - ] - }, - { - "name": "set_ignore_texture_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "set_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 252530840, - "arguments": [ - { - "name": "mode", - "type": "enum::TextureButton.StretchMode" - } - ] - }, - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_texture_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_texture_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_texture_hover", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_texture_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_texture_focused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_click_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2459671998, - "return_value": { - "type": "BitMap" - } - }, - { - "name": "get_ignore_texture_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 33815122, - "return_value": { - "type": "enum::TextureButton.StretchMode" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture_normal", - "setter": "set_texture_normal", - "getter": "get_texture_normal" - }, - { - "type": "Texture2D", - "name": "texture_pressed", - "setter": "set_texture_pressed", - "getter": "get_texture_pressed" - }, - { - "type": "Texture2D", - "name": "texture_hover", - "setter": "set_texture_hover", - "getter": "get_texture_hover" - }, - { - "type": "Texture2D", - "name": "texture_disabled", - "setter": "set_texture_disabled", - "getter": "get_texture_disabled" - }, - { - "type": "Texture2D", - "name": "texture_focused", - "setter": "set_texture_focused", - "getter": "get_texture_focused" - }, - { - "type": "BitMap", - "name": "texture_click_mask", - "setter": "set_click_mask", - "getter": "get_click_mask" - }, - { - "type": "bool", - "name": "ignore_texture_size", - "setter": "set_ignore_texture_size", - "getter": "get_ignore_texture_size" - }, - { - "type": "int", - "name": "stretch_mode", - "setter": "set_stretch_mode", - "getter": "get_stretch_mode" - }, - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "is_flipped_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "is_flipped_v" - } - ] - }, - { - "name": "TextureCubemapArrayRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextureLayeredRD", - "api_type": "core" - }, - { - "name": "TextureCubemapRD", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TextureLayeredRD", - "api_type": "core" - }, - { - "name": "TextureLayered", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture", - "api_type": "core", - "enums": [ - { - "name": "LayeredType", - "is_bitfield": false, - "values": [ - { - "name": "LAYERED_TYPE_2D_ARRAY", - "value": 0 - }, - { - "name": "LAYERED_TYPE_CUBEMAP", - "value": 1 - }, - { - "name": "LAYERED_TYPE_CUBEMAP_ARRAY", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "_get_format", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "_get_layered_type", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_width", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_height", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_layers", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_has_mipmaps", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_layer_data", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3655284255, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_format", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3847873762, - "return_value": { - "type": "enum::Image.Format" - } - }, - { - "name": "get_layered_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 518123893, - "return_value": { - "type": "enum::TextureLayered.LayeredType" - } - }, - { - "name": "get_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_mipmaps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_layer_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3655284255, - "return_value": { - "type": "Image" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "TextureLayeredRD", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "TextureLayered", - "api_type": "core", - "methods": [ - { - "name": "set_texture_rd_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "texture_rd_rid", - "type": "RID" - } - ] - }, - { - "name": "get_texture_rd_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "texture_rd_rid", - "setter": "set_texture_rd_rid", - "getter": "get_texture_rd_rid" - } - ] - }, - { - "name": "TextureProgressBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Range", - "api_type": "core", - "enums": [ - { - "name": "FillMode", - "is_bitfield": false, - "values": [ - { - "name": "FILL_LEFT_TO_RIGHT", - "value": 0 - }, - { - "name": "FILL_RIGHT_TO_LEFT", - "value": 1 - }, - { - "name": "FILL_TOP_TO_BOTTOM", - "value": 2 - }, - { - "name": "FILL_BOTTOM_TO_TOP", - "value": 3 - }, - { - "name": "FILL_CLOCKWISE", - "value": 4 - }, - { - "name": "FILL_COUNTER_CLOCKWISE", - "value": 5 - }, - { - "name": "FILL_BILINEAR_LEFT_AND_RIGHT", - "value": 6 - }, - { - "name": "FILL_BILINEAR_TOP_AND_BOTTOM", - "value": 7 - }, - { - "name": "FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE", - "value": 8 - } - ] - } - ], - "methods": [ - { - "name": "set_under_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "tex", - "type": "Texture2D" - } - ] - }, - { - "name": "get_under_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_progress_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "tex", - "type": "Texture2D" - } - ] - }, - { - "name": "get_progress_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_over_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "tex", - "type": "Texture2D" - } - ] - }, - { - "name": "get_over_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_fill_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mode", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fill_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_tint_under", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "tint", - "type": "Color" - } - ] - }, - { - "name": "get_tint_under", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_tint_progress", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "tint", - "type": "Color" - } - ] - }, - { - "name": "get_tint_progress", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_tint_over", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "tint", - "type": "Color" - } - ] - }, - { - "name": "get_tint_over", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_texture_progress_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_texture_progress_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_radial_initial_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mode", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radial_initial_angle", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_center_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "mode", - "type": "Vector2" - } - ] - }, - { - "name": "get_radial_center_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_fill_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "mode", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fill_degrees", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_stretch_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 437707142, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_stretch_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1983885014, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "margin", - "type": "enum::Side" - } - ] - }, - { - "name": "set_nine_patch_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "stretch", - "type": "bool" - } - ] - }, - { - "name": "get_nine_patch_stretch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "fill_mode", - "setter": "set_fill_mode", - "getter": "get_fill_mode" - }, - { - "type": "float", - "name": "radial_initial_angle", - "setter": "set_radial_initial_angle", - "getter": "get_radial_initial_angle" - }, - { - "type": "float", - "name": "radial_fill_degrees", - "setter": "set_fill_degrees", - "getter": "get_fill_degrees" - }, - { - "type": "Vector2", - "name": "radial_center_offset", - "setter": "set_radial_center_offset", - "getter": "get_radial_center_offset" - }, - { - "type": "bool", - "name": "nine_patch_stretch", - "setter": "set_nine_patch_stretch", - "getter": "get_nine_patch_stretch" - }, - { - "type": "int", - "name": "stretch_margin_left", - "setter": "set_stretch_margin", - "getter": "get_stretch_margin", - "index": 0 - }, - { - "type": "int", - "name": "stretch_margin_top", - "setter": "set_stretch_margin", - "getter": "get_stretch_margin", - "index": 1 - }, - { - "type": "int", - "name": "stretch_margin_right", - "setter": "set_stretch_margin", - "getter": "get_stretch_margin", - "index": 2 - }, - { - "type": "int", - "name": "stretch_margin_bottom", - "setter": "set_stretch_margin", - "getter": "get_stretch_margin", - "index": 3 - }, - { - "type": "Texture2D", - "name": "texture_under", - "setter": "set_under_texture", - "getter": "get_under_texture" - }, - { - "type": "Texture2D", - "name": "texture_over", - "setter": "set_over_texture", - "getter": "get_over_texture" - }, - { - "type": "Texture2D", - "name": "texture_progress", - "setter": "set_progress_texture", - "getter": "get_progress_texture" - }, - { - "type": "Vector2", - "name": "texture_progress_offset", - "setter": "set_texture_progress_offset", - "getter": "get_texture_progress_offset" - }, - { - "type": "Color", - "name": "tint_under", - "setter": "set_tint_under", - "getter": "get_tint_under" - }, - { - "type": "Color", - "name": "tint_over", - "setter": "set_tint_over", - "getter": "get_tint_over" - }, - { - "type": "Color", - "name": "tint_progress", - "setter": "set_tint_progress", - "getter": "get_tint_progress" - } - ] - }, - { - "name": "TextureRect", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "ExpandMode", - "is_bitfield": false, - "values": [ - { - "name": "EXPAND_KEEP_SIZE", - "value": 0 - }, - { - "name": "EXPAND_IGNORE_SIZE", - "value": 1 - }, - { - "name": "EXPAND_FIT_WIDTH", - "value": 2 - }, - { - "name": "EXPAND_FIT_WIDTH_PROPORTIONAL", - "value": 3 - }, - { - "name": "EXPAND_FIT_HEIGHT", - "value": 4 - }, - { - "name": "EXPAND_FIT_HEIGHT_PROPORTIONAL", - "value": 5 - } - ] - }, - { - "name": "StretchMode", - "is_bitfield": false, - "values": [ - { - "name": "STRETCH_SCALE", - "value": 0 - }, - { - "name": "STRETCH_TILE", - "value": 1 - }, - { - "name": "STRETCH_KEEP", - "value": 2 - }, - { - "name": "STRETCH_KEEP_CENTERED", - "value": 3 - }, - { - "name": "STRETCH_KEEP_ASPECT", - "value": 4 - }, - { - "name": "STRETCH_KEEP_ASPECT_CENTERED", - "value": 5 - }, - { - "name": "STRETCH_KEEP_ASPECT_COVERED", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_expand_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1870766882, - "arguments": [ - { - "name": "expand_mode", - "type": "enum::TextureRect.ExpandMode" - } - ] - }, - { - "name": "get_expand_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3863824733, - "return_value": { - "type": "enum::TextureRect.ExpandMode" - } - }, - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_stretch_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 58788729, - "arguments": [ - { - "name": "stretch_mode", - "type": "enum::TextureRect.StretchMode" - } - ] - }, - { - "name": "get_stretch_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 346396079, - "return_value": { - "type": "enum::TextureRect.StretchMode" - } - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "int", - "name": "expand_mode", - "setter": "set_expand_mode", - "getter": "get_expand_mode" - }, - { - "type": "int", - "name": "stretch_mode", - "setter": "set_stretch_mode", - "getter": "get_stretch_mode" - }, - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "is_flipped_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "is_flipped_v" - } - ] - }, - { - "name": "Theme", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "DataType", - "is_bitfield": false, - "values": [ - { - "name": "DATA_TYPE_COLOR", - "value": 0 - }, - { - "name": "DATA_TYPE_CONSTANT", - "value": 1 - }, - { - "name": "DATA_TYPE_FONT", - "value": 2 - }, - { - "name": "DATA_TYPE_FONT_SIZE", - "value": 3 - }, - { - "name": "DATA_TYPE_ICON", - "value": 4 - }, - { - "name": "DATA_TYPE_STYLEBOX", - "value": 5 - }, - { - "name": "DATA_TYPE_MAX", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2188371082, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 934555193, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_icon_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_icon_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2075907568, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "texture", - "type": "StyleBox" - } - ] - }, - { - "name": "get_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3405608165, - "return_value": { - "type": "StyleBox" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_stylebox_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_stylebox_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 177292320, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3445063586, - "return_value": { - "type": "Font" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_font_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_font_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 281601298, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2419549490, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_font_size_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_font_size_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4111215154, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2015923404, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_color_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_color_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 281601298, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "constant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2419549490, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 642128662, - "arguments": [ - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_constant_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4291131558, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_constant_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_default_base_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "base_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_default_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "has_default_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_default_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "has_default_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_default_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_default_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_theme_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2492983623, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_theme_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2191024021, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1739311056, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_theme_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900867553, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "old_name", - "type": "StringName" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_theme_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2965505587, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_theme_item_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3726716710, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - }, - { - "name": "theme_type", - "type": "String" - } - ] - }, - { - "name": "get_theme_item_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1316004935, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "data_type", - "type": "enum::Theme.DataType" - } - ] - }, - { - "name": "set_type_variation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "base_type", - "type": "StringName" - } - ] - }, - { - "name": "is_type_variation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 471820014, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - }, - { - "name": "base_type", - "type": "StringName" - } - ] - }, - { - "name": "clear_type_variation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_type_variation_base", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_type_variation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1761182771, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "base_type", - "type": "StringName" - } - ] - }, - { - "name": "add_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "remove_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "rename_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3740211285, - "arguments": [ - { - "name": "old_theme_type", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_type_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "merge_with", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2326690814, - "arguments": [ - { - "name": "other", - "type": "Theme" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "float", - "name": "default_base_scale", - "setter": "set_default_base_scale", - "getter": "get_default_base_scale" - }, - { - "type": "Font", - "name": "default_font", - "setter": "set_default_font", - "getter": "get_default_font" - }, - { - "type": "int", - "name": "default_font_size", - "setter": "set_default_font_size", - "getter": "get_default_font_size" - } - ] - }, - { - "name": "ThemeDB", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_default_theme", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 754276358, - "return_value": { - "type": "Theme" - } - }, - { - "name": "get_project_theme", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 754276358, - "return_value": { - "type": "Theme" - } - }, - { - "name": "set_fallback_base_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "base_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fallback_base_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 191475506, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fallback_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1262170328, - "arguments": [ - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_fallback_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3656929885, - "return_value": { - "type": "Font" - } - }, - { - "name": "set_fallback_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_fallback_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_fallback_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "icon", - "type": "Texture2D" - } - ] - }, - { - "name": "get_fallback_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 255860311, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_fallback_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2797200388, - "arguments": [ - { - "name": "stylebox", - "type": "StyleBox" - } - ] - }, - { - "name": "get_fallback_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 496040854, - "return_value": { - "type": "StyleBox" - } - } - ], - "signals": [ - { - "name": "fallback_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "fallback_base_scale", - "setter": "set_fallback_base_scale", - "getter": "get_fallback_base_scale" - }, - { - "type": "Font", - "name": "fallback_font", - "setter": "set_fallback_font", - "getter": "get_fallback_font" - }, - { - "type": "int", - "name": "fallback_font_size", - "setter": "set_fallback_font_size", - "getter": "get_fallback_font_size" - }, - { - "type": "Texture2D", - "name": "fallback_icon", - "setter": "set_fallback_icon", - "getter": "get_fallback_icon" - }, - { - "type": "StyleBox", - "name": "fallback_stylebox", - "setter": "set_fallback_stylebox", - "getter": "get_fallback_stylebox" - } - ] - }, - { - "name": "Thread", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Priority", - "is_bitfield": false, - "values": [ - { - "name": "PRIORITY_LOW", - "value": 0 - }, - { - "name": "PRIORITY_NORMAL", - "value": 1 - }, - { - "name": "PRIORITY_HIGH", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1327203254, - "hash_compatibility": [ - 2779832528 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "callable", - "type": "Callable" - }, - { - "name": "priority", - "type": "enum::Thread.Priority", - "default_value": "1" - } - ] - }, - { - "name": "get_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_started", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_alive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "wait_to_finish", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1460262497, - "return_value": { - "type": "Variant" - } - }, - { - "name": "set_thread_safety_checks_enabled", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_main_thread", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "TileData", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "set_flip_h", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_h", - "type": "bool" - } - ] - }, - { - "name": "get_flip_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_flip_v", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "flip_v", - "type": "bool" - } - ] - }, - { - "name": "get_flip_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_transpose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "transpose", - "type": "bool" - } - ] - }, - { - "name": "get_transpose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2757459619, - "arguments": [ - { - "name": "material", - "type": "Material" - } - ] - }, - { - "name": "get_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 5934680, - "return_value": { - "type": "Material" - } - }, - { - "name": "set_texture_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "texture_origin", - "type": "Vector2i" - } - ] - }, - { - "name": "get_texture_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_z_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "z_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_z_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_y_sort_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "y_sort_origin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_y_sort_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_occluder_polygons_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygons_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_occluder_polygons_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_occluder_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_occluder_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_occluder_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 164249167, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon", - "type": "OccluderPolygon2D" - } - ] - }, - { - "name": "get_occluder_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 971166743, - "return_value": { - "type": "OccluderPolygon2D" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - }, - { - "name": "flip_h", - "type": "bool", - "default_value": "false" - }, - { - "name": "flip_v", - "type": "bool", - "default_value": "false" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_occluder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 914399637, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "occluder_polygon", - "type": "OccluderPolygon2D" - } - ] - }, - { - "name": "get_occluder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2377324099, - "hash_compatibility": [ - 2458574231 - ], - "return_value": { - "type": "OccluderPolygon2D" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "flip_h", - "type": "bool", - "default_value": "false" - }, - { - "name": "flip_v", - "type": "bool", - "default_value": "false" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_constant_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 163021252, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "velocity", - "type": "Vector2" - } - ] - }, - { - "name": "get_constant_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2299179447, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_constant_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "velocity", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constant_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_polygons_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygons_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_collision_polygons_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_collision_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_collision_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_polygon_points", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3230546541, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_collision_polygon_points", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 103942801, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_polygon_one_way", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - }, - { - "name": "one_way", - "type": "bool" - } - ] - }, - { - "name": "is_collision_polygon_one_way", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_polygon_one_way_margin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3506521499, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - }, - { - "name": "one_way_margin", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_collision_polygon_one_way_margin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3085491603, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "polygon_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_terrain_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_terrain_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_terrain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "terrain", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_terrain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_terrain_peering_bit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1084452308, - "arguments": [ - { - "name": "peering_bit", - "type": "enum::TileSet.CellNeighbor" - }, - { - "name": "terrain", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_terrain_peering_bit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3831796792, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "peering_bit", - "type": "enum::TileSet.CellNeighbor" - } - ] - }, - { - "name": "is_valid_terrain_peering_bit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 845723972, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "peering_bit", - "type": "enum::TileSet.CellNeighbor" - } - ] - }, - { - "name": "set_navigation_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2224691167, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "navigation_polygon", - "type": "NavigationPolygon" - } - ] - }, - { - "name": "get_navigation_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2907127272, - "hash_compatibility": [ - 3991786031 - ], - "return_value": { - "type": "NavigationPolygon" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "flip_h", - "type": "bool", - "default_value": "false" - }, - { - "name": "flip_v", - "type": "bool", - "default_value": "false" - }, - { - "name": "transpose", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_probability", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "probability", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_probability", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_custom_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 402577236, - "arguments": [ - { - "name": "layer_name", - "type": "String" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_custom_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1868160156, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "layer_name", - "type": "String" - } - ] - }, - { - "name": "has_custom_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_name", - "type": "String" - } - ] - }, - { - "name": "set_custom_data_by_layer_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "get_custom_data_by_layer_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "layer_id", - "type": "int", - "meta": "int32" - } - ] - } - ], - "signals": [ - { - "name": "changed" - } - ], - "properties": [ - { - "type": "bool", - "name": "flip_h", - "setter": "set_flip_h", - "getter": "get_flip_h" - }, - { - "type": "bool", - "name": "flip_v", - "setter": "set_flip_v", - "getter": "get_flip_v" - }, - { - "type": "bool", - "name": "transpose", - "setter": "set_transpose", - "getter": "get_transpose" - }, - { - "type": "Vector2i", - "name": "texture_origin", - "setter": "set_texture_origin", - "getter": "get_texture_origin" - }, - { - "type": "Color", - "name": "modulate", - "setter": "set_modulate", - "getter": "get_modulate" - }, - { - "type": "CanvasItemMaterial,ShaderMaterial", - "name": "material", - "setter": "set_material", - "getter": "get_material" - }, - { - "type": "int", - "name": "z_index", - "setter": "set_z_index", - "getter": "get_z_index" - }, - { - "type": "int", - "name": "y_sort_origin", - "setter": "set_y_sort_origin", - "getter": "get_y_sort_origin" - }, - { - "type": "int", - "name": "terrain_set", - "setter": "set_terrain_set", - "getter": "get_terrain_set" - }, - { - "type": "int", - "name": "terrain", - "setter": "set_terrain", - "getter": "get_terrain" - }, - { - "type": "float", - "name": "probability", - "setter": "set_probability", - "getter": "get_probability" - } - ] - }, - { - "name": "TileMap", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "VisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_MODE_DEFAULT", - "value": 0 - }, - { - "name": "VISIBILITY_MODE_FORCE_HIDE", - "value": 2 - }, - { - "name": "VISIBILITY_MODE_FORCE_SHOW", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_use_tile_data_runtime_update", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3957903770, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "_tile_data_runtime_update", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4223434291, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "tile_data", - "type": "TileData" - } - ] - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "force_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_tileset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 774531446, - "arguments": [ - { - "name": "tileset", - "type": "TileSet" - } - ] - }, - { - "name": "get_tileset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678226422, - "return_value": { - "type": "TileSet" - } - }, - { - "name": "set_rendering_quadrant_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rendering_quadrant_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_layers_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "move_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_layer_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_layer_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_layer_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_y_sort_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "y_sort_enabled", - "type": "bool" - } - ] - }, - { - "name": "is_layer_y_sort_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_y_sort_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "y_sort_origin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_layer_y_sort_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_z_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "z_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_layer_z_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_navigation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_layer_navigation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_layer_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4040184819, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "get_layer_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 495598643, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collision_animatable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_collision_animatable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3193440636, - "arguments": [ - { - "name": "collision_visibility_mode", - "type": "enum::TileMap.VisibilityMode" - } - ] - }, - { - "name": "get_collision_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1697018252, - "hash_compatibility": [ - 2026313073 - ], - "return_value": { - "type": "enum::TileMap.VisibilityMode" - } - }, - { - "name": "set_navigation_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3193440636, - "arguments": [ - { - "name": "navigation_visibility_mode", - "type": "enum::TileMap.VisibilityMode" - } - ] - }, - { - "name": "get_navigation_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1697018252, - "hash_compatibility": [ - 2026313073 - ], - "return_value": { - "type": "enum::TileMap.VisibilityMode" - } - }, - { - "name": "set_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 966713560, - "hash_compatibility": [ - 1732664643 - ], - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "source_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "erase_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311374912, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_source_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 551761942, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_cell_atlas_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1869815066, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_cell_alternative_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 551761942, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_cell_tile_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2849631287, - "return_value": { - "type": "TileData" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_cell_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2908343862, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_cell_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2908343862, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "is_cell_transposed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2908343862, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "use_proxies", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_coords_for_body_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 291584212, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "get_layer_for_body_rid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3917799429, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "get_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2833570986, - "return_value": { - "type": "TileMapPattern" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_array", - "type": "typedarray::Vector2i" - } - ] - }, - { - "name": "map_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1864516957, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "position_in_tilemap", - "type": "Vector2i" - }, - { - "name": "coords_in_pattern", - "type": "Vector2i" - }, - { - "name": "pattern", - "type": "TileMapPattern" - } - ] - }, - { - "name": "set_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1195853946, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "pattern", - "type": "TileMapPattern" - } - ] - }, - { - "name": "set_cells_terrain_connect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3578627656, - "hash_compatibility": [ - 3072115677 - ], - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "cells", - "type": "typedarray::Vector2i" - }, - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain", - "type": "int", - "meta": "int32" - }, - { - "name": "ignore_empty_terrains", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_cells_terrain_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3578627656, - "hash_compatibility": [ - 3072115677 - ], - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "path", - "type": "typedarray::Vector2i" - }, - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain", - "type": "int", - "meta": "int32" - }, - { - "name": "ignore_empty_terrains", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "fix_invalid_tiles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "update_internals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "notify_runtime_tile_data_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_surrounding_cells", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2673526557, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_used_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_used_cells_by_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2931012785, - "hash_compatibility": [ - 4152068407 - ], - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "int32" - }, - { - "name": "source_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_used_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "hash_compatibility": [ - 2024035737 - ], - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "map_to_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 108438297, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "map_position", - "type": "Vector2i" - } - ] - }, - { - "name": "local_to_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 837806996, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector2" - } - ] - }, - { - "name": "get_neighbor_cell", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 986575103, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "neighbor", - "type": "enum::TileSet.CellNeighbor" - } - ] - } - ], - "signals": [ - { - "name": "changed" - } - ], - "properties": [ - { - "type": "TileSet", - "name": "tile_set", - "setter": "set_tileset", - "getter": "get_tileset" - }, - { - "type": "int", - "name": "rendering_quadrant_size", - "setter": "set_rendering_quadrant_size", - "getter": "get_rendering_quadrant_size" - }, - { - "type": "bool", - "name": "collision_animatable", - "setter": "set_collision_animatable", - "getter": "is_collision_animatable" - }, - { - "type": "int", - "name": "collision_visibility_mode", - "setter": "set_collision_visibility_mode", - "getter": "get_collision_visibility_mode" - }, - { - "type": "int", - "name": "navigation_visibility_mode", - "setter": "set_navigation_visibility_mode", - "getter": "get_navigation_visibility_mode" - } - ] - }, - { - "name": "TileMapLayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "DebugVisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "DEBUG_VISIBILITY_MODE_DEFAULT", - "value": 0 - }, - { - "name": "DEBUG_VISIBILITY_MODE_FORCE_HIDE", - "value": 2 - }, - { - "name": "DEBUG_VISIBILITY_MODE_FORCE_SHOW", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "_use_tile_data_runtime_update", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3715736492, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "_tile_data_runtime_update", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1627322126, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "tile_data", - "type": "TileData" - } - ] - }, - { - "name": "_update_cells", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3156113851, - "arguments": [ - { - "name": "coords", - "type": "typedarray::Vector2i" - }, - { - "name": "forced_cleanup", - "type": "bool" - } - ] - }, - { - "name": "set_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2428518503, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "source_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "erase_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "fix_invalid_tiles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_cell_source_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_atlas_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050897911, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_alternative_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_tile_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205084707, - "return_value": { - "type": "TileData" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "is_cell_flipped_h", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "is_cell_flipped_v", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "is_cell_transposed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_used_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Vector2i" - } - }, - { - "name": "get_used_cells_by_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4175304538, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "source_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_used_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "get_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820813253, - "return_value": { - "type": "TileMapPattern" - }, - "arguments": [ - { - "name": "coords_array", - "type": "typedarray::Vector2i" - } - ] - }, - { - "name": "set_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1491151770, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - }, - { - "name": "pattern", - "type": "TileMapPattern" - } - ] - }, - { - "name": "set_cells_terrain_connect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 748968311, - "arguments": [ - { - "name": "cells", - "type": "typedarray::Vector2i" - }, - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain", - "type": "int", - "meta": "int32" - }, - { - "name": "ignore_empty_terrains", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_cells_terrain_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 748968311, - "arguments": [ - { - "name": "path", - "type": "typedarray::Vector2i" - }, - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain", - "type": "int", - "meta": "int32" - }, - { - "name": "ignore_empty_terrains", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "has_body_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4155700596, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "get_coords_for_body_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 733700038, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "body", - "type": "RID" - } - ] - }, - { - "name": "update_internals", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "notify_runtime_tile_data_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716, - "hash_compatibility": [ - 2275361663 - ] - }, - { - "name": "map_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1864516957, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "position_in_tilemap", - "type": "Vector2i" - }, - { - "name": "coords_in_pattern", - "type": "Vector2i" - }, - { - "name": "pattern", - "type": "TileMapPattern" - } - ] - }, - { - "name": "get_surrounding_cells", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2673526557, - "return_value": { - "type": "typedarray::Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_neighbor_cell", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 986575103, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "neighbor", - "type": "enum::TileSet.CellNeighbor" - } - ] - }, - { - "name": "map_to_local", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 108438297, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "map_position", - "type": "Vector2i" - } - ] - }, - { - "name": "local_to_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 837806996, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "local_position", - "type": "Vector2" - } - ] - }, - { - "name": "set_tile_map_data_from_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2971499966, - "arguments": [ - { - "name": "tile_map_layer_data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "get_tile_map_data_as_array", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tile_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 774531446, - "arguments": [ - { - "name": "tile_set", - "type": "TileSet" - } - ] - }, - { - "name": "get_tile_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2678226422, - "return_value": { - "type": "TileSet" - } - }, - { - "name": "set_y_sort_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "y_sort_origin", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_y_sort_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_x_draw_order_reversed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "x_draw_order_reversed", - "type": "bool" - } - ] - }, - { - "name": "is_x_draw_order_reversed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_rendering_quadrant_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rendering_quadrant_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_collision_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_collision_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_kinematic_bodies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_kinematic_bodies", - "type": "bool" - } - ] - }, - { - "name": "is_using_kinematic_bodies", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collision_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3508099847, - "arguments": [ - { - "name": "visibility_mode", - "type": "enum::TileMapLayer.DebugVisibilityMode" - } - ] - }, - { - "name": "get_collision_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 338220793, - "return_value": { - "type": "enum::TileMapLayer.DebugVisibilityMode" - } - }, - { - "name": "set_physics_quadrant_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_physics_quadrant_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_occlusion_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_occlusion_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_navigation_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_navigation_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "map", - "type": "RID" - } - ] - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_navigation_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3508099847, - "arguments": [ - { - "name": "show_navigation", - "type": "enum::TileMapLayer.DebugVisibilityMode" - } - ] - }, - { - "name": "get_navigation_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 338220793, - "return_value": { - "type": "enum::TileMapLayer.DebugVisibilityMode" - } - } - ], - "signals": [ - { - "name": "changed" - } - ], - "properties": [ - { - "type": "PackedByteArray", - "name": "tile_map_data", - "setter": "set_tile_map_data_from_array", - "getter": "get_tile_map_data_as_array" - }, - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "TileSet", - "name": "tile_set", - "setter": "set_tile_set", - "getter": "get_tile_set" - }, - { - "type": "bool", - "name": "occlusion_enabled", - "setter": "set_occlusion_enabled", - "getter": "is_occlusion_enabled" - }, - { - "type": "int", - "name": "y_sort_origin", - "setter": "set_y_sort_origin", - "getter": "get_y_sort_origin" - }, - { - "type": "bool", - "name": "x_draw_order_reversed", - "setter": "set_x_draw_order_reversed", - "getter": "is_x_draw_order_reversed" - }, - { - "type": "int", - "name": "rendering_quadrant_size", - "setter": "set_rendering_quadrant_size", - "getter": "get_rendering_quadrant_size" - }, - { - "type": "bool", - "name": "collision_enabled", - "setter": "set_collision_enabled", - "getter": "is_collision_enabled" - }, - { - "type": "bool", - "name": "use_kinematic_bodies", - "setter": "set_use_kinematic_bodies", - "getter": "is_using_kinematic_bodies" - }, - { - "type": "int", - "name": "collision_visibility_mode", - "setter": "set_collision_visibility_mode", - "getter": "get_collision_visibility_mode" - }, - { - "type": "int", - "name": "physics_quadrant_size", - "setter": "set_physics_quadrant_size", - "getter": "get_physics_quadrant_size" - }, - { - "type": "bool", - "name": "navigation_enabled", - "setter": "set_navigation_enabled", - "getter": "is_navigation_enabled" - }, - { - "type": "int", - "name": "navigation_visibility_mode", - "setter": "set_navigation_visibility_mode", - "getter": "get_navigation_visibility_mode" - } - ] - }, - { - "name": "TileMapPattern", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2224802556, - "hash_compatibility": [ - 634000503 - ], - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "source_id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "has_cell", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "remove_cell", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4153096796, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - }, - { - "name": "update_size", - "type": "bool" - } - ] - }, - { - "name": "get_cell_source_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_atlas_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050897911, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_cell_alternative_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_used_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Vector2i" - } - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "is_empty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ] - }, - { - "name": "TileSet", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "TileShape", - "is_bitfield": false, - "values": [ - { - "name": "TILE_SHAPE_SQUARE", - "value": 0 - }, - { - "name": "TILE_SHAPE_ISOMETRIC", - "value": 1 - }, - { - "name": "TILE_SHAPE_HALF_OFFSET_SQUARE", - "value": 2 - }, - { - "name": "TILE_SHAPE_HEXAGON", - "value": 3 - } - ] - }, - { - "name": "TileLayout", - "is_bitfield": false, - "values": [ - { - "name": "TILE_LAYOUT_STACKED", - "value": 0 - }, - { - "name": "TILE_LAYOUT_STACKED_OFFSET", - "value": 1 - }, - { - "name": "TILE_LAYOUT_STAIRS_RIGHT", - "value": 2 - }, - { - "name": "TILE_LAYOUT_STAIRS_DOWN", - "value": 3 - }, - { - "name": "TILE_LAYOUT_DIAMOND_RIGHT", - "value": 4 - }, - { - "name": "TILE_LAYOUT_DIAMOND_DOWN", - "value": 5 - } - ] - }, - { - "name": "TileOffsetAxis", - "is_bitfield": false, - "values": [ - { - "name": "TILE_OFFSET_AXIS_HORIZONTAL", - "value": 0 - }, - { - "name": "TILE_OFFSET_AXIS_VERTICAL", - "value": 1 - } - ] - }, - { - "name": "CellNeighbor", - "is_bitfield": false, - "values": [ - { - "name": "CELL_NEIGHBOR_RIGHT_SIDE", - "value": 0 - }, - { - "name": "CELL_NEIGHBOR_RIGHT_CORNER", - "value": 1 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_RIGHT_SIDE", - "value": 2 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_RIGHT_CORNER", - "value": 3 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_SIDE", - "value": 4 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_CORNER", - "value": 5 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_LEFT_SIDE", - "value": 6 - }, - { - "name": "CELL_NEIGHBOR_BOTTOM_LEFT_CORNER", - "value": 7 - }, - { - "name": "CELL_NEIGHBOR_LEFT_SIDE", - "value": 8 - }, - { - "name": "CELL_NEIGHBOR_LEFT_CORNER", - "value": 9 - }, - { - "name": "CELL_NEIGHBOR_TOP_LEFT_SIDE", - "value": 10 - }, - { - "name": "CELL_NEIGHBOR_TOP_LEFT_CORNER", - "value": 11 - }, - { - "name": "CELL_NEIGHBOR_TOP_SIDE", - "value": 12 - }, - { - "name": "CELL_NEIGHBOR_TOP_CORNER", - "value": 13 - }, - { - "name": "CELL_NEIGHBOR_TOP_RIGHT_SIDE", - "value": 14 - }, - { - "name": "CELL_NEIGHBOR_TOP_RIGHT_CORNER", - "value": 15 - } - ] - }, - { - "name": "TerrainMode", - "is_bitfield": false, - "values": [ - { - "name": "TERRAIN_MODE_MATCH_CORNERS_AND_SIDES", - "value": 0 - }, - { - "name": "TERRAIN_MODE_MATCH_CORNERS", - "value": 1 - }, - { - "name": "TERRAIN_MODE_MATCH_SIDES", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_next_source_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1059186179, - "hash_compatibility": [ - 276991387 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "source", - "type": "TileSetSource" - }, - { - "name": "atlas_source_id_override", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_source_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "source_id", - "type": "int", - "meta": "int32" - }, - { - "name": "new_source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_source_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_source_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763540252, - "return_value": { - "type": "TileSetSource" - }, - "arguments": [ - { - "name": "source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tile_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2131427112, - "arguments": [ - { - "name": "shape", - "type": "enum::TileSet.TileShape" - } - ] - }, - { - "name": "get_tile_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 716918169, - "return_value": { - "type": "enum::TileSet.TileShape" - } - }, - { - "name": "set_tile_layout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1071216679, - "arguments": [ - { - "name": "layout", - "type": "enum::TileSet.TileLayout" - } - ] - }, - { - "name": "get_tile_layout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194628839, - "return_value": { - "type": "enum::TileSet.TileLayout" - } - }, - { - "name": "set_tile_offset_axis", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3300198521, - "arguments": [ - { - "name": "alignment", - "type": "enum::TileSet.TileOffsetAxis" - } - ] - }, - { - "name": "get_tile_offset_axis", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 762494114, - "return_value": { - "type": "enum::TileSet.TileOffsetAxis" - } - }, - { - "name": "set_tile_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_tile_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_uv_clipping", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "uv_clipping", - "type": "bool" - } - ] - }, - { - "name": "is_uv_clipping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_occlusion_layers_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_occlusion_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_occlusion_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_occlusion_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_occlusion_layer_light_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "light_mask", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_occlusion_layer_light_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_occlusion_layer_sdf_collision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "sdf_collision", - "type": "bool" - } - ] - }, - { - "name": "get_occlusion_layer_sdf_collision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_physics_layers_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_physics_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_physics_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_physics_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_physics_layer_collision_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_physics_layer_collision_layer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_physics_layer_collision_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_physics_layer_collision_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_physics_layer_collision_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "priority", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_physics_layer_collision_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_physics_layer_physics_material", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1018687357, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "physics_material", - "type": "PhysicsMaterial" - } - ] - }, - { - "name": "get_physics_layer_physics_material", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 788318639, - "return_value": { - "type": "PhysicsMaterial" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_terrain_sets_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_terrain_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_terrain_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_terrain_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_terrain_set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3943003916, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::TileSet.TerrainMode" - } - ] - }, - { - "name": "get_terrain_set_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2084469411, - "return_value": { - "type": "enum::TileSet.TerrainMode" - }, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_terrains_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_terrain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1230568737, - "hash_compatibility": [ - 3023605688 - ], - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_terrain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1649997291, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_terrain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_terrains", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_terrain_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_terrain_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_terrain_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3733378741, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_terrain_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2165839948, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "terrain_set", - "type": "int", - "meta": "int32" - }, - { - "name": "terrain_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_navigation_layers_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_navigation_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_navigation_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_navigation_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_navigation_layer_layers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layers", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_navigation_layer_layers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_navigation_layer_layer_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_navigation_layer_layer_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_data_layers_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_custom_data_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1025054187, - "arguments": [ - { - "name": "to_position", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "move_custom_data_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "to_position", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_custom_data_layer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_data_layer_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "layer_name", - "type": "String" - } - ] - }, - { - "name": "set_custom_data_layer_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layer_name", - "type": "String" - } - ] - }, - { - "name": "has_custom_data_layer_by_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_name", - "type": "String" - } - ] - }, - { - "name": "get_custom_data_layer_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_data_layer_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3492912874, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - }, - { - "name": "layer_type", - "type": "enum::Variant.Type" - } - ] - }, - { - "name": "get_custom_data_layer_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2990820875, - "return_value": { - "type": "enum::Variant.Type" - }, - "arguments": [ - { - "name": "layer_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_source_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "source_to", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_source_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_source_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_source_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_coords_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1769939278, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "source_to", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_to", - "type": "Vector2i" - } - ] - }, - { - "name": "get_coords_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2856536371, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - } - ] - }, - { - "name": "has_coords_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3957903770, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - } - ] - }, - { - "name": "remove_coords_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311374912, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - } - ] - }, - { - "name": "set_alternative_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3862385460, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "alternative_from", - "type": "int", - "meta": "int32" - }, - { - "name": "source_to", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_to", - "type": "Vector2i" - }, - { - "name": "alternative_to", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_alternative_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2303761075, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "alternative_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_alternative_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 180086755, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "alternative_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_alternative_level_tile_proxy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2328951467, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "alternative_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "map_tile_proxy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4267935328, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "source_from", - "type": "int", - "meta": "int32" - }, - { - "name": "coords_from", - "type": "Vector2i" - }, - { - "name": "alternative_from", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "cleanup_invalid_tile_proxies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "clear_tile_proxies", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 763712015, - "hash_compatibility": [ - 3009264082 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "pattern", - "type": "TileMapPattern" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4207737510, - "return_value": { - "type": "TileMapPattern" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_pattern", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_patterns_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "tile_shape", - "setter": "set_tile_shape", - "getter": "get_tile_shape" - }, - { - "type": "int", - "name": "tile_layout", - "setter": "set_tile_layout", - "getter": "get_tile_layout" - }, - { - "type": "int", - "name": "tile_offset_axis", - "setter": "set_tile_offset_axis", - "getter": "get_tile_offset_axis" - }, - { - "type": "Vector2i", - "name": "tile_size", - "setter": "set_tile_size", - "getter": "get_tile_size" - }, - { - "type": "bool", - "name": "uv_clipping", - "setter": "set_uv_clipping", - "getter": "is_uv_clipping" - } - ] - }, - { - "name": "TileSetAtlasSource", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TileSetSource", - "api_type": "core", - "constants": [ - { - "name": "TRANSFORM_FLIP_H", - "value": 4096 - }, - { - "name": "TRANSFORM_FLIP_V", - "value": 8192 - }, - { - "name": "TRANSFORM_TRANSPOSE", - "value": 16384 - } - ], - "enums": [ - { - "name": "TileAnimationMode", - "is_bitfield": false, - "values": [ - { - "name": "TILE_ANIMATION_MODE_DEFAULT", - "value": 0 - }, - { - "name": "TILE_ANIMATION_MODE_RANDOM_START_TIMES", - "value": 1 - }, - { - "name": "TILE_ANIMATION_MODE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_margins", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "margins", - "type": "Vector2i" - } - ] - }, - { - "name": "get_margins", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_separation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "separation", - "type": "Vector2i" - } - ] - }, - { - "name": "get_separation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_texture_region_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "texture_region_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_texture_region_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_use_texture_padding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use_texture_padding", - "type": "bool" - } - ] - }, - { - "name": "get_use_texture_padding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "create_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 190528769, - "hash_compatibility": [ - 1583819816 - ], - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "size", - "type": "Vector2i", - "default_value": "Vector2i(1, 1)" - } - ] - }, - { - "name": "remove_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "move_tile_in_atlas", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3870111920, - "hash_compatibility": [ - 1375626516 - ], - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "new_atlas_coords", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - }, - { - "name": "new_size", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - } - ] - }, - { - "name": "get_tile_size_in_atlas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050897911, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "has_room_for_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3018597268, - "hash_compatibility": [ - 4182444377 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "size", - "type": "Vector2i" - }, - { - "name": "animation_columns", - "type": "int", - "meta": "int32" - }, - { - "name": "animation_separation", - "type": "Vector2i" - }, - { - "name": "frames_count", - "type": "int", - "meta": "int32" - }, - { - "name": "ignored_tile", - "type": "Vector2i", - "default_value": "Vector2i(-1, -1)" - } - ] - }, - { - "name": "get_tiles_to_be_removed_on_change", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1240378054, - "return_value": { - "type": "PackedVector2Array" - }, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - }, - { - "name": "margins", - "type": "Vector2i" - }, - { - "name": "separation", - "type": "Vector2i" - }, - { - "name": "texture_region_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_tile_at_coords", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050897911, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "has_tiles_outside_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "clear_tiles_outside_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_tile_animation_columns", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200960707, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frame_columns", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tile_animation_columns", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "set_tile_animation_separation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1941061099, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "separation", - "type": "Vector2i" - } - ] - }, - { - "name": "get_tile_animation_separation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3050897911, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "set_tile_animation_speed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2262553149, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tile_animation_speed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 719993801, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "set_tile_animation_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3192753483, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "mode", - "type": "enum::TileSetAtlasSource.TileAnimationMode" - } - ] - }, - { - "name": "get_tile_animation_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4025349959, - "return_value": { - "type": "enum::TileSetAtlasSource.TileAnimationMode" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "set_tile_animation_frames_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200960707, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frames_count", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tile_animation_frames_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "set_tile_animation_frame_duration", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2843487787, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frame_index", - "type": "int", - "meta": "int32" - }, - { - "name": "duration", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tile_animation_frame_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1802448425, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frame_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tile_animation_total_duration", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 719993801, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "create_alternative_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2226298068, - "hash_compatibility": [ - 3531100812 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "alternative_id_override", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "remove_alternative_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3200960707, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_alternative_tile_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1499785778, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32" - }, - { - "name": "new_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_next_alternative_tile_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_tile_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3534028207, - "return_value": { - "type": "TileData" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_atlas_grid_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_tile_texture_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 241857547, - "hash_compatibility": [ - 1321423751 - ], - "return_value": { - "type": "Rect2i" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frame", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_runtime_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "get_runtime_tile_texture_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 104874263, - "return_value": { - "type": "Rect2i" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "Vector2i", - "name": "margins", - "setter": "set_margins", - "getter": "get_margins" - }, - { - "type": "Vector2i", - "name": "separation", - "setter": "set_separation", - "getter": "get_separation" - }, - { - "type": "Vector2i", - "name": "texture_region_size", - "setter": "set_texture_region_size", - "getter": "get_texture_region_size" - }, - { - "type": "bool", - "name": "use_texture_padding", - "setter": "set_use_texture_padding", - "getter": "get_use_texture_padding" - } - ] - }, - { - "name": "TileSetScenesCollectionSource", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "TileSetSource", - "api_type": "core", - "methods": [ - { - "name": "get_scene_tiles_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_scene_tile_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3744713108, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_scene_tile_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "create_scene_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1117465415, - "hash_compatibility": [ - 2633389122 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "packed_scene", - "type": "PackedScene" - }, - { - "name": "id_override", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "set_scene_tile_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "new_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_scene_tile_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3435852839, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "packed_scene", - "type": "PackedScene" - } - ] - }, - { - "name": "get_scene_tile_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 511017218, - "return_value": { - "type": "PackedScene" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_scene_tile_display_placeholder", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "display_placeholder", - "type": "bool" - } - ] - }, - { - "name": "get_scene_tile_display_placeholder", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_scene_tile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_next_scene_tile_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "TileSetSource", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_tiles_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_tile_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 880721226, - "return_value": { - "type": "Vector2i" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3900751641, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_alternative_tiles_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2485466453, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - } - ] - }, - { - "name": "get_alternative_tile_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 89881719, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_alternative_tile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1073731340, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "atlas_coords", - "type": "Vector2i" - }, - { - "name": "alternative_tile", - "type": "int", - "meta": "int32" - } - ] - } - ] - }, - { - "name": "Time", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "Month", - "is_bitfield": false, - "values": [ - { - "name": "MONTH_JANUARY", - "value": 1 - }, - { - "name": "MONTH_FEBRUARY", - "value": 2 - }, - { - "name": "MONTH_MARCH", - "value": 3 - }, - { - "name": "MONTH_APRIL", - "value": 4 - }, - { - "name": "MONTH_MAY", - "value": 5 - }, - { - "name": "MONTH_JUNE", - "value": 6 - }, - { - "name": "MONTH_JULY", - "value": 7 - }, - { - "name": "MONTH_AUGUST", - "value": 8 - }, - { - "name": "MONTH_SEPTEMBER", - "value": 9 - }, - { - "name": "MONTH_OCTOBER", - "value": 10 - }, - { - "name": "MONTH_NOVEMBER", - "value": 11 - }, - { - "name": "MONTH_DECEMBER", - "value": 12 - } - ] - }, - { - "name": "Weekday", - "is_bitfield": false, - "values": [ - { - "name": "WEEKDAY_SUNDAY", - "value": 0 - }, - { - "name": "WEEKDAY_MONDAY", - "value": 1 - }, - { - "name": "WEEKDAY_TUESDAY", - "value": 2 - }, - { - "name": "WEEKDAY_WEDNESDAY", - "value": 3 - }, - { - "name": "WEEKDAY_THURSDAY", - "value": 4 - }, - { - "name": "WEEKDAY_FRIDAY", - "value": 5 - }, - { - "name": "WEEKDAY_SATURDAY", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "get_datetime_dict_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_date_dict_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_time_dict_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3485342025, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_datetime_string_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2311239925, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - }, - { - "name": "use_space", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_date_string_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_time_string_from_unix_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_datetime_dict_from_datetime_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3253569256, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "datetime", - "type": "String" - }, - { - "name": "weekday", - "type": "bool" - } - ] - }, - { - "name": "get_datetime_string_from_datetime_dict", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1898123706, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "datetime", - "type": "Dictionary" - }, - { - "name": "use_space", - "type": "bool" - } - ] - }, - { - "name": "get_unix_time_from_datetime_dict", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3021115443, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "datetime", - "type": "Dictionary" - } - ] - }, - { - "name": "get_unix_time_from_datetime_string", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "datetime", - "type": "String" - } - ] - }, - { - "name": "get_offset_string_from_offset_minutes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "offset_minutes", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_datetime_dict_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205769976, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_date_dict_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205769976, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_time_dict_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 205769976, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_datetime_string_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1136425492, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - }, - { - "name": "use_space", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_date_string_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1162154673, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_time_string_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1162154673, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "utc", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_time_zone_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_unix_time_from_system", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "get_ticks_msec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_ticks_usec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - } - ] - }, - { - "name": "Timer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "TimerProcessCallback", - "is_bitfield": false, - "values": [ - { - "name": "TIMER_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "TIMER_PROCESS_IDLE", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_wait_time", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_wait_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_one_shot", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_one_shot", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_autostart", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_autostart", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "start", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1392008558, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "meta": "double", - "default_value": "-1" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "is_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_ignore_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ignore", - "type": "bool" - } - ] - }, - { - "name": "is_ignoring_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_stopped", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_time_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_timer_process_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3469495063, - "arguments": [ - { - "name": "callback", - "type": "enum::Timer.TimerProcessCallback" - } - ] - }, - { - "name": "get_timer_process_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2672570227, - "return_value": { - "type": "enum::Timer.TimerProcessCallback" - } - } - ], - "signals": [ - { - "name": "timeout" - } - ], - "properties": [ - { - "type": "int", - "name": "process_callback", - "setter": "set_timer_process_callback", - "getter": "get_timer_process_callback" - }, - { - "type": "float", - "name": "wait_time", - "setter": "set_wait_time", - "getter": "get_wait_time" - }, - { - "type": "bool", - "name": "one_shot", - "setter": "set_one_shot", - "getter": "is_one_shot" - }, - { - "type": "bool", - "name": "autostart", - "setter": "set_autostart", - "getter": "has_autostart" - }, - { - "type": "bool", - "name": "paused", - "setter": "set_paused", - "getter": "is_paused" - }, - { - "type": "bool", - "name": "ignore_time_scale", - "setter": "set_ignore_time_scale", - "getter": "is_ignoring_time_scale" - }, - { - "type": "float", - "name": "time_left", - "getter": "get_time_left" - } - ] - }, - { - "name": "TorusMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_inner_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_inner_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_outer_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_outer_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_ring_segments", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_ring_segments", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "float", - "name": "inner_radius", - "setter": "set_inner_radius", - "getter": "get_inner_radius" - }, - { - "type": "float", - "name": "outer_radius", - "setter": "set_outer_radius", - "getter": "get_outer_radius" - }, - { - "type": "int", - "name": "rings", - "setter": "set_rings", - "getter": "get_rings" - }, - { - "type": "int", - "name": "ring_segments", - "setter": "set_ring_segments", - "getter": "get_ring_segments" - } - ] - }, - { - "name": "TouchScreenButton", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "enums": [ - { - "name": "VisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_ALWAYS", - "value": 0 - }, - { - "name": "VISIBILITY_TOUCHSCREEN_ONLY", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_texture_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_pressed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_bitmask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 698588216, - "arguments": [ - { - "name": "bitmask", - "type": "BitMap" - } - ] - }, - { - "name": "get_bitmask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2459671998, - "return_value": { - "type": "BitMap" - } - }, - { - "name": "set_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 771364740, - "arguments": [ - { - "name": "shape", - "type": "Shape2D" - } - ] - }, - { - "name": "get_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 522005891, - "return_value": { - "type": "Shape2D" - } - }, - { - "name": "set_shape_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "bool", - "type": "bool" - } - ] - }, - { - "name": "is_shape_centered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_shape_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "bool", - "type": "bool" - } - ] - }, - { - "name": "is_shape_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "action", - "type": "String" - } - ] - }, - { - "name": "get_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3031128463, - "arguments": [ - { - "name": "mode", - "type": "enum::TouchScreenButton.VisibilityMode" - } - ] - }, - { - "name": "get_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2558996468, - "return_value": { - "type": "enum::TouchScreenButton.VisibilityMode" - } - }, - { - "name": "set_passby_press", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_passby_press_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "pressed" - }, - { - "name": "released" - } - ], - "properties": [ - { - "type": "Texture2D", - "name": "texture_normal", - "setter": "set_texture_normal", - "getter": "get_texture_normal" - }, - { - "type": "Texture2D", - "name": "texture_pressed", - "setter": "set_texture_pressed", - "getter": "get_texture_pressed" - }, - { - "type": "BitMap", - "name": "bitmask", - "setter": "set_bitmask", - "getter": "get_bitmask" - }, - { - "type": "Shape2D", - "name": "shape", - "setter": "set_shape", - "getter": "get_shape" - }, - { - "type": "bool", - "name": "shape_centered", - "setter": "set_shape_centered", - "getter": "is_shape_centered" - }, - { - "type": "bool", - "name": "shape_visible", - "setter": "set_shape_visible", - "getter": "is_shape_visible" - }, - { - "type": "bool", - "name": "passby_press", - "setter": "set_passby_press", - "getter": "is_passby_press_enabled" - }, - { - "type": "StringName", - "name": "action", - "setter": "set_action", - "getter": "get_action" - }, - { - "type": "int", - "name": "visibility_mode", - "setter": "set_visibility_mode", - "getter": "get_visibility_mode" - } - ] - }, - { - "name": "Translation", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_get_plural_message", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1970324172, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "src_plural_message", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName" - } - ] - }, - { - "name": "_get_message", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3639719779, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName" - } - ] - }, - { - "name": "set_locale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "get_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "add_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3898530326, - "hash_compatibility": [ - 971803314 - ], - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "xlated_message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "add_plural_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2356982266, - "hash_compatibility": [ - 360316719 - ], - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "xlated_messages", - "type": "PackedStringArray" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_message", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1829228469, - "hash_compatibility": [ - 58037827 - ], - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_plural_message", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229954002, - "hash_compatibility": [ - 1333931916 - ], - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "src_plural_message", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "erase_message", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3959009644, - "hash_compatibility": [ - 3919944288 - ], - "arguments": [ - { - "name": "src_message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_message_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_translated_message_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_message_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_plural_rules_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "rules", - "type": "String" - } - ] - }, - { - "name": "get_plural_rules_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "messages", - "setter": "_set_messages", - "getter": "_get_messages" - }, - { - "type": "String", - "name": "locale", - "setter": "set_locale", - "getter": "get_locale" - }, - { - "type": "String", - "name": "plural_rules_override", - "setter": "set_plural_rules_override", - "getter": "get_plural_rules_override" - } - ] - }, - { - "name": "TranslationDomain", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_translation_object", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 606768082, - "return_value": { - "type": "Translation" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "add_translation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1466479800, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "remove_translation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1466479800, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_translations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Translation" - } - }, - { - "name": "has_translation_for_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2034713381, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - }, - { - "name": "exact", - "type": "bool" - } - ] - }, - { - "name": "has_translation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2696976312, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "find_translations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2109650934, - "return_value": { - "type": "typedarray::Translation" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - }, - { - "name": "exact", - "type": "bool" - } - ] - }, - { - "name": "translate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1829228469, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "translate_plural", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229954002, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "message_plural", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_locale_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_locale_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_accents_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_accents_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_double_vowels_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_double_vowels_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_fake_bidi_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_fake_bidi_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_override_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_override_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_pseudolocalization_skip_placeholders_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_skip_placeholders_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_pseudolocalization_expansion_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_pseudolocalization_expansion_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_pseudolocalization_prefix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_pseudolocalization_prefix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "prefix", - "type": "String" - } - ] - }, - { - "name": "get_pseudolocalization_suffix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_pseudolocalization_suffix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "suffix", - "type": "String" - } - ] - }, - { - "name": "pseudolocalize", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "enabled", - "setter": "set_enabled", - "getter": "is_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_enabled", - "setter": "set_pseudolocalization_enabled", - "getter": "is_pseudolocalization_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_accents_enabled", - "setter": "set_pseudolocalization_accents_enabled", - "getter": "is_pseudolocalization_accents_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_double_vowels_enabled", - "setter": "set_pseudolocalization_double_vowels_enabled", - "getter": "is_pseudolocalization_double_vowels_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_fake_bidi_enabled", - "setter": "set_pseudolocalization_fake_bidi_enabled", - "getter": "is_pseudolocalization_fake_bidi_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_override_enabled", - "setter": "set_pseudolocalization_override_enabled", - "getter": "is_pseudolocalization_override_enabled" - }, - { - "type": "bool", - "name": "pseudolocalization_skip_placeholders_enabled", - "setter": "set_pseudolocalization_skip_placeholders_enabled", - "getter": "is_pseudolocalization_skip_placeholders_enabled" - }, - { - "type": "float", - "name": "pseudolocalization_expansion_ratio", - "setter": "set_pseudolocalization_expansion_ratio", - "getter": "get_pseudolocalization_expansion_ratio" - }, - { - "type": "String", - "name": "pseudolocalization_prefix", - "setter": "set_pseudolocalization_prefix", - "getter": "get_pseudolocalization_prefix" - }, - { - "type": "String", - "name": "pseudolocalization_suffix", - "setter": "set_pseudolocalization_suffix", - "getter": "get_pseudolocalization_suffix" - } - ] - }, - { - "name": "TranslationServer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "set_locale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "get_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_tool_locale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "compare_locales", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878152881, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "locale_a", - "type": "String" - }, - { - "name": "locale_b", - "type": "String" - } - ] - }, - { - "name": "standardize_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4216441673, - "hash_compatibility": [ - 3135753539 - ], - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - }, - { - "name": "add_defaults", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_all_languages", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_language_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_all_scripts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_script_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "script", - "type": "String" - } - ] - }, - { - "name": "get_all_countries", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "get_country_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "country", - "type": "String" - } - ] - }, - { - "name": "get_locale_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "get_plural_rules", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "translate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1829228469, - "hash_compatibility": [ - 58037827 - ], - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "translate_plural", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 229954002, - "hash_compatibility": [ - 1333931916 - ], - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - }, - { - "name": "plural_message", - "type": "StringName" - }, - { - "name": "n", - "type": "int", - "meta": "int32" - }, - { - "name": "context", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "add_translation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1466479800, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "remove_translation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1466479800, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "get_translation_object", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2065240175, - "return_value": { - "type": "Translation" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "get_translations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Translation" - } - }, - { - "name": "find_translations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2109650934, - "return_value": { - "type": "typedarray::Translation" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - }, - { - "name": "exact", - "type": "bool" - } - ] - }, - { - "name": "has_translation_for_locale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2034713381, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - }, - { - "name": "exact", - "type": "bool" - } - ] - }, - { - "name": "has_translation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2696976312, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "translation", - "type": "Translation" - } - ] - }, - { - "name": "has_domain", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "domain", - "type": "StringName" - } - ] - }, - { - "name": "get_or_add_domain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 397200075, - "return_value": { - "type": "TranslationDomain" - }, - "arguments": [ - { - "name": "domain", - "type": "StringName" - } - ] - }, - { - "name": "remove_domain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "domain", - "type": "StringName" - } - ] - }, - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_loaded_locales", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "format_number", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "get_percent_sign", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "parse_number", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 315676799, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "number", - "type": "String" - }, - { - "name": "locale", - "type": "String" - } - ] - }, - { - "name": "is_pseudolocalization_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_pseudolocalization_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "reload_pseudolocalization", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pseudolocalize", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1965194235, - "return_value": { - "type": "StringName" - }, - "arguments": [ - { - "name": "message", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "pseudolocalization_enabled", - "setter": "set_pseudolocalization_enabled", - "getter": "is_pseudolocalization_enabled" - } - ] - }, - { - "name": "Tree", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "SelectMode", - "is_bitfield": false, - "values": [ - { - "name": "SELECT_SINGLE", - "value": 0 - }, - { - "name": "SELECT_ROW", - "value": 1 - }, - { - "name": "SELECT_MULTI", - "value": 2 - } - ] - }, - { - "name": "DropModeFlags", - "is_bitfield": false, - "values": [ - { - "name": "DROP_MODE_DISABLED", - "value": 0 - }, - { - "name": "DROP_MODE_ON_ITEM", - "value": 1 - }, - { - "name": "DROP_MODE_INBETWEEN", - "value": 2 - } - ] - }, - { - "name": "ScrollHintMode", - "is_bitfield": false, - "values": [ - { - "name": "SCROLL_HINT_MODE_DISABLED", - "value": 0 - }, - { - "name": "SCROLL_HINT_MODE_BOTH", - "value": 1 - }, - { - "name": "SCROLL_HINT_MODE_TOP", - "value": 2 - }, - { - "name": "SCROLL_HINT_MODE_BOTTOM", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "clear", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "create_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 528467046, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "parent", - "type": "TreeItem", - "default_value": "null" - }, - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_root", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "set_column_custom_minimum_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "min_width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_expand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "expand", - "type": "bool" - } - ] - }, - { - "name": "set_column_expand_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "ratio", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_clip_content", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_column_expanding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_column_clipping_content", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_column_expand_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_column_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_drawing_canvas_item", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_hide_root", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_root_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_next_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 873446299, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "from", - "type": "TreeItem" - } - ] - }, - { - "name": "get_selected", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "set_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2662547442, - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_selected_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_pressed_button", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_select_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3223887270, - "arguments": [ - { - "name": "mode", - "type": "enum::Tree.SelectMode" - } - ] - }, - { - "name": "get_select_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 100748571, - "return_value": { - "type": "enum::Tree.SelectMode" - } - }, - { - "name": "deselect_all", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_columns", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "amount", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_columns", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_edited", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "get_edited_column", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "edit_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2595650253, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "force_edit", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_custom_popup_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "get_item_area_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 47968679, - "hash_compatibility": [ - 1235226180 - ], - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "column", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "get_item_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4193340126, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_column_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_drop_section_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_button_id_at_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3820158470, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "ensure_cursor_is_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_column_titles_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "are_column_titles_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_column_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_column_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_title_tooltip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip_text", - "type": "String" - } - ] - }, - { - "name": "get_column_title_tooltip_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_title_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3276431499, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "title_alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_column_title_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171562184, - "return_value": { - "type": "enum::HorizontalAlignment" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_title_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1707680378, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_column_title_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235602388, - "return_value": { - "type": "enum::Control.TextDirection" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_column_title_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_column_title_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_scroll", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "scroll_to_item", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1314737213, - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "center_on_item", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_h_scroll_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "h_scroll", - "type": "bool" - } - ] - }, - { - "name": "is_h_scroll_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_v_scroll_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "h_scroll", - "type": "bool" - } - ] - }, - { - "name": "is_v_scroll_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scroll_hint_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 415911924, - "arguments": [ - { - "name": "scroll_hint_mode", - "type": "enum::Tree.ScrollHintMode" - } - ] - }, - { - "name": "get_scroll_hint_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 553087187, - "return_value": { - "type": "enum::Tree.ScrollHintMode" - } - }, - { - "name": "set_tile_scroll_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "tile_scroll_hint", - "type": "bool" - } - ] - }, - { - "name": "is_scroll_hint_tiled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hide_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "hide", - "type": "bool" - } - ] - }, - { - "name": "is_folding_hidden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_recursive_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_recursive_folding_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_enable_drag_unfolding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_drag_unfolding_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_drop_mode_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "flags", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drop_mode_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_allow_rmb_select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_rmb_select", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_reselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_reselect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_allow_search", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allow", - "type": "bool" - } - ] - }, - { - "name": "get_allow_search", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_tooltip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_auto_tooltip_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "item_selected" - }, - { - "name": "cell_selected" - }, - { - "name": "multi_selected", - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "column", - "type": "int" - }, - { - "name": "selected", - "type": "bool" - } - ] - }, - { - "name": "item_mouse_selected", - "arguments": [ - { - "name": "mouse_position", - "type": "Vector2" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "empty_clicked", - "arguments": [ - { - "name": "click_position", - "type": "Vector2" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "item_edited" - }, - { - "name": "custom_item_clicked", - "arguments": [ - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "item_icon_double_clicked" - }, - { - "name": "item_collapsed", - "arguments": [ - { - "name": "item", - "type": "TreeItem" - } - ] - }, - { - "name": "check_propagated_to_item", - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "column", - "type": "int" - } - ] - }, - { - "name": "button_clicked", - "arguments": [ - { - "name": "item", - "type": "TreeItem" - }, - { - "name": "column", - "type": "int" - }, - { - "name": "id", - "type": "int" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "custom_popup_edited", - "arguments": [ - { - "name": "arrow_clicked", - "type": "bool" - } - ] - }, - { - "name": "item_activated" - }, - { - "name": "column_title_clicked", - "arguments": [ - { - "name": "column", - "type": "int" - }, - { - "name": "mouse_button_index", - "type": "int" - } - ] - }, - { - "name": "nothing_selected" - } - ], - "properties": [ - { - "type": "int", - "name": "columns", - "setter": "set_columns", - "getter": "get_columns" - }, - { - "type": "bool", - "name": "column_titles_visible", - "setter": "set_column_titles_visible", - "getter": "are_column_titles_visible" - }, - { - "type": "bool", - "name": "allow_reselect", - "setter": "set_allow_reselect", - "getter": "get_allow_reselect" - }, - { - "type": "bool", - "name": "allow_rmb_select", - "setter": "set_allow_rmb_select", - "getter": "get_allow_rmb_select" - }, - { - "type": "bool", - "name": "allow_search", - "setter": "set_allow_search", - "getter": "get_allow_search" - }, - { - "type": "bool", - "name": "hide_folding", - "setter": "set_hide_folding", - "getter": "is_folding_hidden" - }, - { - "type": "bool", - "name": "enable_recursive_folding", - "setter": "set_enable_recursive_folding", - "getter": "is_recursive_folding_enabled" - }, - { - "type": "bool", - "name": "enable_drag_unfolding", - "setter": "set_enable_drag_unfolding", - "getter": "is_drag_unfolding_enabled" - }, - { - "type": "bool", - "name": "hide_root", - "setter": "set_hide_root", - "getter": "is_root_hidden" - }, - { - "type": "int", - "name": "drop_mode_flags", - "setter": "set_drop_mode_flags", - "getter": "get_drop_mode_flags" - }, - { - "type": "int", - "name": "select_mode", - "setter": "set_select_mode", - "getter": "get_select_mode" - }, - { - "type": "bool", - "name": "auto_tooltip", - "setter": "set_auto_tooltip", - "getter": "is_auto_tooltip_enabled" - }, - { - "type": "bool", - "name": "scroll_horizontal_enabled", - "setter": "set_h_scroll_enabled", - "getter": "is_h_scroll_enabled" - }, - { - "type": "bool", - "name": "scroll_vertical_enabled", - "setter": "set_v_scroll_enabled", - "getter": "is_v_scroll_enabled" - }, - { - "type": "int", - "name": "scroll_hint_mode", - "setter": "set_scroll_hint_mode", - "getter": "get_scroll_hint_mode" - }, - { - "type": "bool", - "name": "tile_scroll_hint", - "setter": "set_tile_scroll_hint", - "getter": "is_scroll_hint_tiled" - } - ] - }, - { - "name": "TreeItem", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "TreeCellMode", - "is_bitfield": false, - "values": [ - { - "name": "CELL_MODE_STRING", - "value": 0 - }, - { - "name": "CELL_MODE_CHECK", - "value": 1 - }, - { - "name": "CELL_MODE_RANGE", - "value": 2 - }, - { - "name": "CELL_MODE_ICON", - "value": 3 - }, - { - "name": "CELL_MODE_CUSTOM", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_cell_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 289920701, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::TreeItem.TreeCellMode" - } - ] - }, - { - "name": "get_cell_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3406114978, - "return_value": { - "type": "enum::TreeItem.TreeCellMode" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_auto_translate_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 287402019, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "mode", - "type": "enum::Node.AutoTranslateMode" - } - ] - }, - { - "name": "get_auto_translate_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 906302372, - "return_value": { - "type": "enum::Node.AutoTranslateMode" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_edit_multiline", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "multiline", - "type": "bool" - } - ] - }, - { - "name": "is_edit_multiline", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_checked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "checked", - "type": "bool" - } - ] - }, - { - "name": "set_indeterminate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "indeterminate", - "type": "bool" - } - ] - }, - { - "name": "is_checked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_indeterminate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "propagate_check", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 4023243586 - ], - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "emit_signal", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "get_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_text_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1707680378, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::Control.TextDirection" - } - ] - }, - { - "name": "get_text_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4235602388, - "return_value": { - "type": "enum::Control.TextDirection" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_autowrap_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3633006561, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "autowrap_mode", - "type": "enum::TextServer.AutowrapMode" - } - ] - }, - { - "name": "get_autowrap_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2902757236, - "return_value": { - "type": "enum::TextServer.AutowrapMode" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_autowrap_trim_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2186029660, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "flags", - "type": "bitfield::TextServer.LineBreakFlag" - } - ] - }, - { - "name": "get_autowrap_trim_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3513056523, - "return_value": { - "type": "bitfield::TextServer.LineBreakFlag" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_text_overrun_behavior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1940772195, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "overrun_behavior", - "type": "enum::TextServer.OverrunBehavior" - } - ] - }, - { - "name": "get_text_overrun_behavior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3782727860, - "return_value": { - "type": "enum::TextServer.OverrunBehavior" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_structured_text_bidi_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 868756907, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "parser", - "type": "enum::TextServer.StructuredTextParser" - } - ] - }, - { - "name": "get_structured_text_bidi_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3377823772, - "return_value": { - "type": "enum::TextServer.StructuredTextParser" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_structured_text_bidi_override_options", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 537221740, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "args", - "type": "Array" - } - ] - }, - { - "name": "get_structured_text_bidi_override_options", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 663333327, - "return_value": { - "type": "Array" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_language", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "language", - "type": "String" - } - ] - }, - { - "name": "get_language", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_suffix", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "get_suffix", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_icon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_icon_overlay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 666127730, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_icon_overlay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536238170, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_icon_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1356297692, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "region", - "type": "Rect2" - } - ] - }, - { - "name": "get_icon_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3327874267, - "return_value": { - "type": "Rect2" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_icon_max_width", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "width", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_icon_max_width", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_icon_modulate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "modulate", - "type": "Color" - } - ] - }, - { - "name": "get_icon_modulate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "double" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_range_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1547181014, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "min", - "type": "float", - "meta": "double" - }, - { - "name": "max", - "type": "float", - "meta": "double" - }, - { - "name": "step", - "type": "float", - "meta": "double" - }, - { - "name": "expr", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_range_config", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3554694381, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_metadata", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2152698145, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "meta", - "type": "Variant" - } - ] - }, - { - "name": "get_metadata", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 272420368, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "object", - "type": "Object" - }, - { - "name": "callback", - "type": "StringName" - } - ] - }, - { - "name": "set_custom_draw_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 957362965, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "get_custom_draw_callback", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1317077508, - "return_value": { - "type": "Callable" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_stylebox", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1433009359, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "stylebox", - "type": "StyleBox" - } - ] - }, - { - "name": "get_custom_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3362509644, - "return_value": { - "type": "StyleBox" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_collapsed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_collapsed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_collapsed_recursive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_any_collapsed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2595650253, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "only_visible", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_visible_in_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "uncollapse_tree", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_custom_minimum_height", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "height", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_minimum_height", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_selectable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "selectable", - "type": "bool" - } - ] - }, - { - "name": "is_selectable", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_selected", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "select", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 972357352, - "hash_compatibility": [ - 1286410249 - ], - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "set_as_cursor", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "deselect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_editable", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2878471219, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_custom_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_custom_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_font", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2637609184, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "get_custom_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4244553094, - "return_value": { - "type": "Font" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_font_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 894174518, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - }, - { - "name": "just_outline", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "clear_custom_bg_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_custom_bg_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457211756, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_custom_as_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_custom_set_as_button", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_buttons", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 973481897, - "hash_compatibility": [ - 1688223362, - 1507727907 - ], - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button", - "type": "Texture2D" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "disabled", - "type": "bool", - "default_value": "false" - }, - { - "name": "tooltip_text", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "description", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "get_button_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_button_tooltip_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1391810591, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_button_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_button_by_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3175239445, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_button_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2165839948, - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_button", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2584904275, - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_button_tooltip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "set_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 176101966, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - }, - { - "name": "button", - "type": "Texture2D" - } - ] - }, - { - "name": "erase_button", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_button_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - }, - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "set_button_disabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1383440665, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - }, - { - "name": "disabled", - "type": "bool" - } - ] - }, - { - "name": "set_button_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3733378741, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "is_button_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2522259332, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "button_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_tooltip_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tooltip", - "type": "String" - } - ] - }, - { - "name": "get_tooltip_text", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_text_alignment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3276431499, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "text_alignment", - "type": "enum::HorizontalAlignment" - } - ] - }, - { - "name": "get_text_alignment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171562184, - "return_value": { - "type": "enum::HorizontalAlignment" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_expand_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_expand_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_disable_folding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_folding_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_accept_children", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "allowed", - "type": "bool" - } - ] - }, - { - "name": "is_accepting_children", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "create_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 954243986, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32", - "default_value": "-1" - } - ] - }, - { - "name": "add_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819951137, - "arguments": [ - { - "name": "child", - "type": "TreeItem" - } - ] - }, - { - "name": "remove_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819951137, - "arguments": [ - { - "name": "child", - "type": "TreeItem" - } - ] - }, - { - "name": "get_tree", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2243340556, - "return_value": { - "type": "Tree" - } - }, - { - "name": "get_next", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "get_prev", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2768121250, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "get_parent", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "get_first_child", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1514277247, - "return_value": { - "type": "TreeItem" - } - }, - { - "name": "get_next_in_tree", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1666920593, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_prev_in_tree", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1666920593, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_next_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1666920593, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_prev_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1666920593, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "get_child", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 306700752, - "return_value": { - "type": "TreeItem" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_child_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_children", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "typedarray::TreeItem" - } - }, - { - "name": "get_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "move_before", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819951137, - "arguments": [ - { - "name": "item", - "type": "TreeItem" - } - ] - }, - { - "name": "move_after", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1819951137, - "arguments": [ - { - "name": "item", - "type": "TreeItem" - } - ] - }, - { - "name": "call_recursive", - "is_const": false, - "is_vararg": true, - "is_static": false, - "is_virtual": false, - "hash": 2866548813, - "arguments": [ - { - "name": "method", - "type": "StringName" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "collapsed", - "setter": "set_collapsed", - "getter": "is_collapsed" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - }, - { - "type": "bool", - "name": "disable_folding", - "setter": "set_disable_folding", - "getter": "is_folding_disabled" - }, - { - "type": "int", - "name": "custom_minimum_height", - "setter": "set_custom_minimum_height", - "getter": "get_custom_minimum_height" - } - ] - }, - { - "name": "TriangleMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "create_from_faces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2637816732, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "faces", - "type": "PackedVector3Array" - } - ] - }, - { - "name": "get_faces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "intersect_segment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3648293151, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "begin", - "type": "Vector3" - }, - { - "name": "end", - "type": "Vector3" - } - ] - }, - { - "name": "intersect_ray", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3648293151, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "begin", - "type": "Vector3" - }, - { - "name": "dir", - "type": "Vector3" - } - ] - } - ] - }, - { - "name": "TubeTrailMesh", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PrimitiveMesh", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_radial_steps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "radial_steps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_radial_steps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_sections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "sections", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_sections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_section_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "section_length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_section_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_section_rings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "section_rings", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_section_rings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_cap_top", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "cap_top", - "type": "bool" - } - ] - }, - { - "name": "is_cap_top", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_cap_bottom", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "cap_bottom", - "type": "bool" - } - ] - }, - { - "name": "is_cap_bottom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_curve", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 270443179, - "arguments": [ - { - "name": "curve", - "type": "Curve" - } - ] - }, - { - "name": "get_curve", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2460114913, - "return_value": { - "type": "Curve" - } - } - ], - "properties": [ - { - "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "int", - "name": "radial_steps", - "setter": "set_radial_steps", - "getter": "get_radial_steps" - }, - { - "type": "int", - "name": "sections", - "setter": "set_sections", - "getter": "get_sections" - }, - { - "type": "float", - "name": "section_length", - "setter": "set_section_length", - "getter": "get_section_length" - }, - { - "type": "int", - "name": "section_rings", - "setter": "set_section_rings", - "getter": "get_section_rings" - }, - { - "type": "bool", - "name": "cap_top", - "setter": "set_cap_top", - "getter": "is_cap_top" - }, - { - "type": "bool", - "name": "cap_bottom", - "setter": "set_cap_bottom", - "getter": "is_cap_bottom" - }, - { - "type": "Curve", - "name": "curve", - "setter": "set_curve", - "getter": "get_curve" - } - ] - }, - { - "name": "Tween", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "TweenProcessMode", - "is_bitfield": false, - "values": [ - { - "name": "TWEEN_PROCESS_PHYSICS", - "value": 0 - }, - { - "name": "TWEEN_PROCESS_IDLE", - "value": 1 - } - ] - }, - { - "name": "TweenPauseMode", - "is_bitfield": false, - "values": [ - { - "name": "TWEEN_PAUSE_BOUND", - "value": 0 - }, - { - "name": "TWEEN_PAUSE_STOP", - "value": 1 - }, - { - "name": "TWEEN_PAUSE_PROCESS", - "value": 2 - } - ] - }, - { - "name": "TransitionType", - "is_bitfield": false, - "values": [ - { - "name": "TRANS_LINEAR", - "value": 0 - }, - { - "name": "TRANS_SINE", - "value": 1 - }, - { - "name": "TRANS_QUINT", - "value": 2 - }, - { - "name": "TRANS_QUART", - "value": 3 - }, - { - "name": "TRANS_QUAD", - "value": 4 - }, - { - "name": "TRANS_EXPO", - "value": 5 - }, - { - "name": "TRANS_ELASTIC", - "value": 6 - }, - { - "name": "TRANS_CUBIC", - "value": 7 - }, - { - "name": "TRANS_CIRC", - "value": 8 - }, - { - "name": "TRANS_BOUNCE", - "value": 9 - }, - { - "name": "TRANS_BACK", - "value": 10 - }, - { - "name": "TRANS_SPRING", - "value": 11 - } - ] - }, - { - "name": "EaseType", - "is_bitfield": false, - "values": [ - { - "name": "EASE_IN", - "value": 0 - }, - { - "name": "EASE_OUT", - "value": 1 - }, - { - "name": "EASE_IN_OUT", - "value": 2 - }, - { - "name": "EASE_OUT_IN", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "tween_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4049770449, - "return_value": { - "type": "PropertyTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "object", - "type": "Object", - "meta": "required" - }, - { - "name": "property", - "type": "NodePath" - }, - { - "name": "final_val", - "type": "Variant" - }, - { - "name": "duration", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "tween_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 413360199, - "return_value": { - "type": "IntervalTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "tween_callback", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1540176488, - "return_value": { - "type": "CallbackTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "callback", - "type": "Callable" - } - ] - }, - { - "name": "tween_method", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2337877153, - "return_value": { - "type": "MethodTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "method", - "type": "Callable" - }, - { - "name": "from", - "type": "Variant" - }, - { - "name": "to", - "type": "Variant" - }, - { - "name": "duration", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "tween_subtween", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1567358477, - "return_value": { - "type": "SubtweenTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "subtween", - "type": "Tween", - "meta": "required" - } - ] - }, - { - "name": "tween_await", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2242837462, - "return_value": { - "type": "AwaitTweener", - "meta": "required" - }, - "arguments": [ - { - "name": "signal", - "type": "Signal" - } - ] - }, - { - "name": "custom_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330693286, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "pause", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "kill", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_total_elapsed_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "has_tweeners", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_running", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_valid", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "bind_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2946786331, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "node", - "type": "Node", - "meta": "required" - } - ] - }, - { - "name": "set_process_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 855258840, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Tween.TweenProcessMode" - } - ] - }, - { - "name": "set_pause_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3363368837, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Tween.TweenPauseMode" - } - ] - }, - { - "name": "set_ignore_time_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1942052223, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "ignore", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_parallel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1942052223, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "parallel", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "set_loops", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2670836414, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "loops", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "get_loops_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3961971106, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "speed", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_trans", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3965963875, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "trans", - "type": "enum::Tween.TransitionType" - } - ] - }, - { - "name": "set_ease", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1208117252, - "return_value": { - "type": "Tween", - "meta": "required" - }, - "arguments": [ - { - "name": "ease", - "type": "enum::Tween.EaseType" - } - ] - }, - { - "name": "parallel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426978995, - "return_value": { - "type": "Tween", - "meta": "required" - } - }, - { - "name": "chain", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426978995, - "return_value": { - "type": "Tween", - "meta": "required" - } - }, - { - "name": "interpolate_value", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3452526450, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "initial_value", - "type": "Variant" - }, - { - "name": "delta_value", - "type": "Variant" - }, - { - "name": "elapsed_time", - "type": "float", - "meta": "double" - }, - { - "name": "duration", - "type": "float", - "meta": "double" - }, - { - "name": "trans_type", - "type": "enum::Tween.TransitionType" - }, - { - "name": "ease_type", - "type": "enum::Tween.EaseType" - } - ] - } - ], - "signals": [ - { - "name": "step_finished", - "arguments": [ - { - "name": "idx", - "type": "int" - } - ] - }, - { - "name": "loop_finished", - "arguments": [ - { - "name": "loop_count", - "type": "int" - } - ] - }, - { - "name": "finished" - } - ] - }, - { - "name": "Tweener", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "signals": [ - { - "name": "finished" - } - ] - }, - { - "name": "TwoBoneIK3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "IKModifier3D", - "api_type": "core", - "methods": [ - { - "name": "set_target_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "target_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_target_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pole_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761262315, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "pole_node", - "type": "NodePath" - } - ] - }, - { - "name": "get_pole_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 408788394, - "return_value": { - "type": "NodePath" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_root_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_root_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_root_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_middle_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_middle_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_middle_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_middle_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pole_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 258741388, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "direction", - "type": "enum::SkeletonModifier3D.SecondaryDirection" - } - ] - }, - { - "name": "get_pole_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 377522128, - "return_value": { - "type": "enum::SkeletonModifier3D.SecondaryDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_pole_direction_vector", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1530502735, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "vector", - "type": "Vector3" - } - ] - }, - { - "name": "get_pole_direction_vector", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 711720468, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_name", - "type": "String" - } - ] - }, - { - "name": "get_end_bone_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_end_bone", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_use_virtual_end", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_using_virtual_end", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_extend_end_bone", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_end_bone_extended", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2838484201, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "bone_direction", - "type": "enum::SkeletonModifier3D.BoneDirection" - } - ] - }, - { - "name": "get_end_bone_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1843036459, - "return_value": { - "type": "enum::SkeletonModifier3D.BoneDirection" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_end_bone_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1602489585, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_end_bone_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339986948, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "setting_count", - "setter": "set_setting_count", - "getter": "get_setting_count" - } - ] - }, - { - "name": "UDPServer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "listen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3167955072, - "hash_compatibility": [ - 4025329869 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "uint16" - }, - { - "name": "bind_address", - "type": "String", - "default_value": "\"*\"" - } - ] - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "is_connection_available", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_listening", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "take_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 808734560, - "return_value": { - "type": "PacketPeerUDP" - } - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_max_pending_connections", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_pending_connections", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_pending_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "max_pending_connections", - "setter": "set_max_pending_connections", - "getter": "get_max_pending_connections" - } - ] - }, - { - "name": "UDSServer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "SocketServer", - "api_type": "core", - "methods": [ - { - "name": "listen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "take_connection", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1623851112, - "return_value": { - "type": "StreamPeerUDS" - } - } - ] - }, - { - "name": "UPNP", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "UPNPResult", - "is_bitfield": false, - "values": [ - { - "name": "UPNP_RESULT_SUCCESS", - "value": 0 - }, - { - "name": "UPNP_RESULT_NOT_AUTHORIZED", - "value": 1 - }, - { - "name": "UPNP_RESULT_PORT_MAPPING_NOT_FOUND", - "value": 2 - }, - { - "name": "UPNP_RESULT_INCONSISTENT_PARAMETERS", - "value": 3 - }, - { - "name": "UPNP_RESULT_NO_SUCH_ENTRY_IN_ARRAY", - "value": 4 - }, - { - "name": "UPNP_RESULT_ACTION_FAILED", - "value": 5 - }, - { - "name": "UPNP_RESULT_SRC_IP_WILDCARD_NOT_PERMITTED", - "value": 6 - }, - { - "name": "UPNP_RESULT_EXT_PORT_WILDCARD_NOT_PERMITTED", - "value": 7 - }, - { - "name": "UPNP_RESULT_INT_PORT_WILDCARD_NOT_PERMITTED", - "value": 8 - }, - { - "name": "UPNP_RESULT_REMOTE_HOST_MUST_BE_WILDCARD", - "value": 9 - }, - { - "name": "UPNP_RESULT_EXT_PORT_MUST_BE_WILDCARD", - "value": 10 - }, - { - "name": "UPNP_RESULT_NO_PORT_MAPS_AVAILABLE", - "value": 11 - }, - { - "name": "UPNP_RESULT_CONFLICT_WITH_OTHER_MECHANISM", - "value": 12 - }, - { - "name": "UPNP_RESULT_CONFLICT_WITH_OTHER_MAPPING", - "value": 13 - }, - { - "name": "UPNP_RESULT_SAME_PORT_VALUES_REQUIRED", - "value": 14 - }, - { - "name": "UPNP_RESULT_ONLY_PERMANENT_LEASE_SUPPORTED", - "value": 15 - }, - { - "name": "UPNP_RESULT_INVALID_GATEWAY", - "value": 16 - }, - { - "name": "UPNP_RESULT_INVALID_PORT", - "value": 17 - }, - { - "name": "UPNP_RESULT_INVALID_PROTOCOL", - "value": 18 - }, - { - "name": "UPNP_RESULT_INVALID_DURATION", - "value": 19 - }, - { - "name": "UPNP_RESULT_INVALID_ARGS", - "value": 20 - }, - { - "name": "UPNP_RESULT_INVALID_RESPONSE", - "value": 21 - }, - { - "name": "UPNP_RESULT_INVALID_PARAM", - "value": 22 - }, - { - "name": "UPNP_RESULT_HTTP_ERROR", - "value": 23 - }, - { - "name": "UPNP_RESULT_SOCKET_ERROR", - "value": 24 - }, - { - "name": "UPNP_RESULT_MEM_ALLOC_ERROR", - "value": 25 - }, - { - "name": "UPNP_RESULT_NO_GATEWAY", - "value": 26 - }, - { - "name": "UPNP_RESULT_NO_DEVICES", - "value": 27 - }, - { - "name": "UPNP_RESULT_UNKNOWN_ERROR", - "value": 28 - } - ] - } - ], - "methods": [ - { - "name": "get_device_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_device", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2193290270, - "return_value": { - "type": "UPNPDevice" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 986715920, - "arguments": [ - { - "name": "device", - "type": "UPNPDevice" - } - ] - }, - { - "name": "set_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3015133723, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "device", - "type": "UPNPDevice" - } - ] - }, - { - "name": "remove_device", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_devices", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_gateway", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2276800779, - "return_value": { - "type": "UPNPDevice" - } - }, - { - "name": "discover", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1575334765, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "timeout", - "type": "int", - "meta": "int32", - "default_value": "2000" - }, - { - "name": "ttl", - "type": "int", - "meta": "int32", - "default_value": "2" - }, - { - "name": "device_filter", - "type": "String", - "default_value": "\"InternetGatewayDevice\"" - } - ] - }, - { - "name": "query_external_address", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "add_port_mapping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 818314583, - "hash_compatibility": [ - 3358934458 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "port_internal", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "desc", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "proto", - "type": "String", - "default_value": "\"UDP\"" - }, - { - "name": "duration", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "delete_port_mapping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444187325, - "hash_compatibility": [ - 760296170 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "proto", - "type": "String", - "default_value": "\"UDP\"" - } - ] - }, - { - "name": "set_discover_multicast_if", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "m_if", - "type": "String" - } - ] - }, - { - "name": "get_discover_multicast_if", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_discover_local_port", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_discover_local_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_discover_ipv6", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "ipv6", - "type": "bool" - } - ] - }, - { - "name": "is_discover_ipv6", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "String", - "name": "discover_multicast_if", - "setter": "set_discover_multicast_if", - "getter": "get_discover_multicast_if" - }, - { - "type": "int", - "name": "discover_local_port", - "setter": "set_discover_local_port", - "getter": "get_discover_local_port" - }, - { - "type": "bool", - "name": "discover_ipv6", - "setter": "set_discover_ipv6", - "getter": "is_discover_ipv6" - } - ] - }, - { - "name": "UPNPDevice", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "IGDStatus", - "is_bitfield": false, - "values": [ - { - "name": "IGD_STATUS_OK", - "value": 0 - }, - { - "name": "IGD_STATUS_HTTP_ERROR", - "value": 1 - }, - { - "name": "IGD_STATUS_HTTP_EMPTY", - "value": 2 - }, - { - "name": "IGD_STATUS_NO_URLS", - "value": 3 - }, - { - "name": "IGD_STATUS_NO_IGD", - "value": 4 - }, - { - "name": "IGD_STATUS_DISCONNECTED", - "value": 5 - }, - { - "name": "IGD_STATUS_UNKNOWN_DEVICE", - "value": 6 - }, - { - "name": "IGD_STATUS_INVALID_CONTROL", - "value": 7 - }, - { - "name": "IGD_STATUS_MALLOC_ERROR", - "value": 8 - }, - { - "name": "IGD_STATUS_UNKNOWN_ERROR", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "is_valid_gateway", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "query_external_address", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "add_port_mapping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 818314583, - "hash_compatibility": [ - 3358934458 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "port_internal", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "desc", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "proto", - "type": "String", - "default_value": "\"UDP\"" - }, - { - "name": "duration", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, - { - "name": "delete_port_mapping", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444187325, - "hash_compatibility": [ - 760296170 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "proto", - "type": "String", - "default_value": "\"UDP\"" - } - ] - }, - { - "name": "set_description_url", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "url", - "type": "String" - } - ] - }, - { - "name": "get_description_url", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_service_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "get_service_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_igd_control_url", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "url", - "type": "String" - } - ] - }, - { - "name": "get_igd_control_url", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_igd_service_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "type", - "type": "String" - } - ] - }, - { - "name": "get_igd_service_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_igd_our_addr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "addr", - "type": "String" - } - ] - }, - { - "name": "get_igd_our_addr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_igd_status", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 519504122, - "arguments": [ - { - "name": "status", - "type": "enum::UPNPDevice.IGDStatus" - } - ] - }, - { - "name": "get_igd_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 180887011, - "return_value": { - "type": "enum::UPNPDevice.IGDStatus" - } - } - ], - "properties": [ - { - "type": "String", - "name": "description_url", - "setter": "set_description_url", - "getter": "get_description_url" - }, - { - "type": "String", - "name": "service_type", - "setter": "set_service_type", - "getter": "get_service_type" - }, - { - "type": "String", - "name": "igd_control_url", - "setter": "set_igd_control_url", - "getter": "get_igd_control_url" - }, - { - "type": "String", - "name": "igd_service_type", - "setter": "set_igd_service_type", - "getter": "get_igd_service_type" - }, - { - "type": "String", - "name": "igd_our_addr", - "setter": "set_igd_our_addr", - "getter": "get_igd_our_addr" - }, - { - "type": "int", - "name": "igd_status", - "setter": "set_igd_status", - "getter": "get_igd_status" - } - ] - }, - { - "name": "UndoRedo", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "MergeMode", - "is_bitfield": false, - "values": [ - { - "name": "MERGE_DISABLE", - "value": 0 - }, - { - "name": "MERGE_ENDS", - "value": 1 - }, - { - "name": "MERGE_ALL", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "create_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3171901514, - "hash_compatibility": [ - 3900135403 - ], - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "merge_mode", - "type": "enum::UndoRedo.MergeMode", - "default_value": "0" - }, - { - "name": "backward_undo_ops", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "commit_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "execute", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "is_committing_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_do_method", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "add_undo_method", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1611583062, - "arguments": [ - { - "name": "callable", - "type": "Callable" - } - ] - }, - { - "name": "add_do_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017172818, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_undo_property", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1017172818, - "arguments": [ - { - "name": "object", - "type": "Object" - }, - { - "name": "property", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - }, - { - "name": "add_do_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "add_undo_reference", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3975164845, - "arguments": [ - { - "name": "object", - "type": "Object" - } - ] - }, - { - "name": "start_force_keep_in_merge_ends", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "end_force_keep_in_merge_ends", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_history_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_current_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_action_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_history", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3216645846, - "arguments": [ - { - "name": "increase_version", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_current_action_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "has_undo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_redo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "set_max_steps", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_steps", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_steps", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "redo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "undo", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "version_changed" - } - ], - "properties": [ - { - "type": "int", - "name": "max_steps", - "setter": "set_max_steps", - "getter": "get_max_steps" - } - ] - }, - { - "name": "UniformSetCacheRD", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_cache", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 658571723, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "shader", - "type": "RID" - }, - { - "name": "set", - "type": "int", - "meta": "uint32" - }, - { - "name": "uniforms", - "type": "typedarray::RDUniform" - } - ] - } - ] - }, - { - "name": "VBoxContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "BoxContainer", - "api_type": "core" - }, - { - "name": "VFlowContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "FlowContainer", - "api_type": "core" - }, - { - "name": "VScrollBar", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "ScrollBar", - "api_type": "core" - }, - { - "name": "VSeparator", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Separator", - "api_type": "core" - }, - { - "name": "VSlider", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Slider", - "api_type": "core" - }, - { - "name": "VSplitContainer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SplitContainer", - "api_type": "core" - }, - { - "name": "VehicleBody3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "RigidBody3D", - "api_type": "core", - "methods": [ - { - "name": "set_engine_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "engine_force", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_engine_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_brake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "brake", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_brake", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_steering", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "steering", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_steering", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "engine_force", - "setter": "set_engine_force", - "getter": "get_engine_force" - }, - { - "type": "float", - "name": "brake", - "setter": "set_brake", - "getter": "get_brake" - }, - { - "type": "float", - "name": "steering", - "setter": "set_steering", - "getter": "get_steering" - } - ] - }, - { - "name": "VehicleWheel3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_suspension_rest_length", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_suspension_rest_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_suspension_travel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_suspension_travel", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_suspension_stiffness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_suspension_stiffness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_suspension_max_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_suspension_max_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping_compression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping_compression", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_damping_relaxation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_damping_relaxation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_use_as_traction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_used_as_traction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_as_steering", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_used_as_steering", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_friction_slip", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "length", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_friction_slip", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "is_in_contact", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_contact_body", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 151077316, - "return_value": { - "type": "Node3D" - } - }, - { - "name": "get_contact_point", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_contact_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_roll_influence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "roll_influence", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_roll_influence", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_skidinfo", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_rpm", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_engine_force", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "engine_force", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_engine_force", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_brake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "brake", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_brake", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_steering", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "steering", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_steering", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "engine_force", - "setter": "set_engine_force", - "getter": "get_engine_force" - }, - { - "type": "float", - "name": "brake", - "setter": "set_brake", - "getter": "get_brake" - }, - { - "type": "float", - "name": "steering", - "setter": "set_steering", - "getter": "get_steering" - }, - { - "type": "bool", - "name": "use_as_traction", - "setter": "set_use_as_traction", - "getter": "is_used_as_traction" - }, - { - "type": "bool", - "name": "use_as_steering", - "setter": "set_use_as_steering", - "getter": "is_used_as_steering" - }, - { - "type": "float", - "name": "wheel_roll_influence", - "setter": "set_roll_influence", - "getter": "get_roll_influence" - }, - { - "type": "float", - "name": "wheel_radius", - "setter": "set_radius", - "getter": "get_radius" - }, - { - "type": "float", - "name": "wheel_rest_length", - "setter": "set_suspension_rest_length", - "getter": "get_suspension_rest_length" - }, - { - "type": "float", - "name": "wheel_friction_slip", - "setter": "set_friction_slip", - "getter": "get_friction_slip" - }, - { - "type": "float", - "name": "suspension_travel", - "setter": "set_suspension_travel", - "getter": "get_suspension_travel" - }, - { - "type": "float", - "name": "suspension_stiffness", - "setter": "set_suspension_stiffness", - "getter": "get_suspension_stiffness" - }, - { - "type": "float", - "name": "suspension_max_force", - "setter": "set_suspension_max_force", - "getter": "get_suspension_max_force" - }, - { - "type": "float", - "name": "damping_compression", - "setter": "set_damping_compression", - "getter": "get_damping_compression" - }, - { - "type": "float", - "name": "damping_relaxation", - "setter": "set_damping_relaxation", - "getter": "get_damping_relaxation" - } - ] - }, - { - "name": "VideoStream", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_instantiate_playback", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 294648086, - "return_value": { - "type": "VideoStreamPlayback" - } - }, - { - "name": "set_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "get_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "file", - "setter": "set_file", - "getter": "get_file" - } - ] - }, - { - "name": "VideoStreamPlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "_stop", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_play", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_is_playing", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_set_paused", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "_is_paused", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_length", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_get_playback_position", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "_seek", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "time", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_set_audio_track", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1286410249, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_texture", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "_update", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 373806689, - "arguments": [ - { - "name": "delta", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_get_channels", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_mix_rate", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "mix_audio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 93876830, - "hash_compatibility": [ - 1369271885 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "num_frames", - "type": "int", - "meta": "int32" - }, - { - "name": "buffer", - "type": "PackedFloat32Array", - "default_value": "PackedFloat32Array()" - }, - { - "name": "offset", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - } - ] - }, - { - "name": "VideoStreamPlayer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "methods": [ - { - "name": "set_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2317102564, - "arguments": [ - { - "name": "stream", - "type": "VideoStream" - } - ] - }, - { - "name": "get_stream", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 438621487, - "return_value": { - "type": "VideoStream" - } - }, - { - "name": "play", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "stop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_playing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_paused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "paused", - "type": "bool" - } - ] - }, - { - "name": "is_paused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_loop", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "loop", - "type": "bool" - } - ] - }, - { - "name": "has_loop", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_volume", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "volume", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_volume_db", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "db", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_volume_db", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_speed_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "speed_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_speed_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_audio_track", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "track", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_audio_track", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_stream_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_stream_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_stream_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "position", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_stream_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_autoplay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "has_autoplay", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_expand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_expand", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_buffering_msec", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "msec", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_buffering_msec", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_bus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "bus", - "type": "StringName" - } - ] - }, - { - "name": "get_bus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_video_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "signals": [ - { - "name": "finished" - } - ], - "properties": [ - { - "type": "int", - "name": "audio_track", - "setter": "set_audio_track", - "getter": "get_audio_track" - }, - { - "type": "VideoStream", - "name": "stream", - "setter": "set_stream", - "getter": "get_stream" - }, - { - "type": "float", - "name": "volume_db", - "setter": "set_volume_db", - "getter": "get_volume_db" - }, - { - "type": "float", - "name": "volume", - "setter": "set_volume", - "getter": "get_volume" - }, - { - "type": "float", - "name": "speed_scale", - "setter": "set_speed_scale", - "getter": "get_speed_scale" - }, - { - "type": "bool", - "name": "autoplay", - "setter": "set_autoplay", - "getter": "has_autoplay" - }, - { - "type": "bool", - "name": "paused", - "setter": "set_paused", - "getter": "is_paused" - }, - { - "type": "bool", - "name": "expand", - "setter": "set_expand", - "getter": "has_expand" - }, - { - "type": "bool", - "name": "loop", - "setter": "set_loop", - "getter": "has_loop" - }, - { - "type": "int", - "name": "buffering_msec", - "setter": "set_buffering_msec", - "getter": "get_buffering_msec" - }, - { - "type": "float", - "name": "stream_position", - "setter": "set_stream_position", - "getter": "get_stream_position" - }, - { - "type": "StringName", - "name": "bus", - "setter": "set_bus", - "getter": "get_bus" - } - ] - }, - { - "name": "VideoStreamTheora", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VideoStream", - "api_type": "core" - }, - { - "name": "Viewport", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Node", - "api_type": "core", - "enums": [ - { - "name": "PositionalShadowAtlasQuadrantSubdiv", - "is_bitfield": false, - "values": [ - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED", - "value": 0 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_1", - "value": 1 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_4", - "value": 2 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_16", - "value": 3 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_64", - "value": 4 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_256", - "value": 5 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_1024", - "value": 6 - }, - { - "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_MAX", - "value": 7 - } - ] - }, - { - "name": "Scaling3DMode", - "is_bitfield": false, - "values": [ - { - "name": "SCALING_3D_MODE_BILINEAR", - "value": 0 - }, - { - "name": "SCALING_3D_MODE_FSR", - "value": 1 - }, - { - "name": "SCALING_3D_MODE_FSR2", - "value": 2 - }, - { - "name": "SCALING_3D_MODE_METALFX_SPATIAL", - "value": 3 - }, - { - "name": "SCALING_3D_MODE_METALFX_TEMPORAL", - "value": 4 - }, - { - "name": "SCALING_3D_MODE_NEAREST", - "value": 5 - }, - { - "name": "SCALING_3D_MODE_MAX", - "value": 6 - } - ] - }, - { - "name": "MSAA", - "is_bitfield": false, - "values": [ - { - "name": "MSAA_DISABLED", - "value": 0 - }, - { - "name": "MSAA_2X", - "value": 1 - }, - { - "name": "MSAA_4X", - "value": 2 - }, - { - "name": "MSAA_8X", - "value": 3 - }, - { - "name": "MSAA_MAX", - "value": 4 - } - ] - }, - { - "name": "AnisotropicFiltering", - "is_bitfield": false, - "values": [ - { - "name": "ANISOTROPY_DISABLED", - "value": 0 - }, - { - "name": "ANISOTROPY_2X", - "value": 1 - }, - { - "name": "ANISOTROPY_4X", - "value": 2 - }, - { - "name": "ANISOTROPY_8X", - "value": 3 - }, - { - "name": "ANISOTROPY_16X", - "value": 4 - }, - { - "name": "ANISOTROPY_MAX", - "value": 5 - } - ] - }, - { - "name": "ScreenSpaceAA", - "is_bitfield": false, - "values": [ - { - "name": "SCREEN_SPACE_AA_DISABLED", - "value": 0 - }, - { - "name": "SCREEN_SPACE_AA_FXAA", - "value": 1 - }, - { - "name": "SCREEN_SPACE_AA_SMAA", - "value": 2 - }, - { - "name": "SCREEN_SPACE_AA_MAX", - "value": 3 - } - ] - }, - { - "name": "RenderInfo", - "is_bitfield": false, - "values": [ - { - "name": "RENDER_INFO_OBJECTS_IN_FRAME", - "value": 0 - }, - { - "name": "RENDER_INFO_PRIMITIVES_IN_FRAME", - "value": 1 - }, - { - "name": "RENDER_INFO_DRAW_CALLS_IN_FRAME", - "value": 2 - }, - { - "name": "RENDER_INFO_MAX", - "value": 3 - } - ] - }, - { - "name": "RenderInfoType", - "is_bitfield": false, - "values": [ - { - "name": "RENDER_INFO_TYPE_VISIBLE", - "value": 0 - }, - { - "name": "RENDER_INFO_TYPE_SHADOW", - "value": 1 - }, - { - "name": "RENDER_INFO_TYPE_CANVAS", - "value": 2 - }, - { - "name": "RENDER_INFO_TYPE_MAX", - "value": 3 - } - ] - }, - { - "name": "DebugDraw", - "is_bitfield": false, - "values": [ - { - "name": "DEBUG_DRAW_DISABLED", - "value": 0 - }, - { - "name": "DEBUG_DRAW_UNSHADED", - "value": 1 - }, - { - "name": "DEBUG_DRAW_LIGHTING", - "value": 2 - }, - { - "name": "DEBUG_DRAW_OVERDRAW", - "value": 3 - }, - { - "name": "DEBUG_DRAW_WIREFRAME", - "value": 4 - }, - { - "name": "DEBUG_DRAW_NORMAL_BUFFER", - "value": 5 - }, - { - "name": "DEBUG_DRAW_VOXEL_GI_ALBEDO", - "value": 6 - }, - { - "name": "DEBUG_DRAW_VOXEL_GI_LIGHTING", - "value": 7 - }, - { - "name": "DEBUG_DRAW_VOXEL_GI_EMISSION", - "value": 8 - }, - { - "name": "DEBUG_DRAW_SHADOW_ATLAS", - "value": 9 - }, - { - "name": "DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS", - "value": 10 - }, - { - "name": "DEBUG_DRAW_SCENE_LUMINANCE", - "value": 11 - }, - { - "name": "DEBUG_DRAW_SSAO", - "value": 12 - }, - { - "name": "DEBUG_DRAW_SSIL", - "value": 13 - }, - { - "name": "DEBUG_DRAW_PSSM_SPLITS", - "value": 14 - }, - { - "name": "DEBUG_DRAW_DECAL_ATLAS", - "value": 15 - }, - { - "name": "DEBUG_DRAW_SDFGI", - "value": 16 - }, - { - "name": "DEBUG_DRAW_SDFGI_PROBES", - "value": 17 - }, - { - "name": "DEBUG_DRAW_GI_BUFFER", - "value": 18 - }, - { - "name": "DEBUG_DRAW_DISABLE_LOD", - "value": 19 - }, - { - "name": "DEBUG_DRAW_CLUSTER_OMNI_LIGHTS", - "value": 20 - }, - { - "name": "DEBUG_DRAW_CLUSTER_SPOT_LIGHTS", - "value": 21 - }, - { - "name": "DEBUG_DRAW_CLUSTER_DECALS", - "value": 22 - }, - { - "name": "DEBUG_DRAW_CLUSTER_REFLECTION_PROBES", - "value": 23 - }, - { - "name": "DEBUG_DRAW_OCCLUDERS", - "value": 24 - }, - { - "name": "DEBUG_DRAW_MOTION_VECTORS", - "value": 25 - }, - { - "name": "DEBUG_DRAW_INTERNAL_BUFFER", - "value": 26 - }, - { - "name": "DEBUG_DRAW_CLUSTER_AREA_LIGHTS", - "value": 27 - }, - { - "name": "DEBUG_DRAW_AREA_LIGHT_ATLAS", - "value": 28 - } - ] - }, - { - "name": "DefaultCanvasItemTextureFilter", - "is_bitfield": false, - "values": [ - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST", - "value": 0 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR", - "value": 1 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", - "value": 2 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", - "value": 3 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_PARENT_NODE", - "value": 4 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_MAX", - "value": 5 - } - ] - }, - { - "name": "DefaultCanvasItemTextureRepeat", - "is_bitfield": false, - "values": [ - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_DISABLED", - "value": 0 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_ENABLED", - "value": 1 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_MIRROR", - "value": 2 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_PARENT_NODE", - "value": 3 - }, - { - "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_MAX", - "value": 4 - } - ] - }, - { - "name": "SDFOversize", - "is_bitfield": false, - "values": [ - { - "name": "SDF_OVERSIZE_100_PERCENT", - "value": 0 - }, - { - "name": "SDF_OVERSIZE_120_PERCENT", - "value": 1 - }, - { - "name": "SDF_OVERSIZE_150_PERCENT", - "value": 2 - }, - { - "name": "SDF_OVERSIZE_200_PERCENT", - "value": 3 - }, - { - "name": "SDF_OVERSIZE_MAX", - "value": 4 - } - ] - }, - { - "name": "SDFScale", - "is_bitfield": false, - "values": [ - { - "name": "SDF_SCALE_100_PERCENT", - "value": 0 - }, - { - "name": "SDF_SCALE_50_PERCENT", - "value": 1 - }, - { - "name": "SDF_SCALE_25_PERCENT", - "value": 2 - }, - { - "name": "SDF_SCALE_MAX", - "value": 3 - } - ] - }, - { - "name": "VRSMode", - "is_bitfield": false, - "values": [ - { - "name": "VRS_DISABLED", - "value": 0 - }, - { - "name": "VRS_TEXTURE", - "value": 1 - }, - { - "name": "VRS_XR", - "value": 2 - }, - { - "name": "VRS_MAX", - "value": 3 - } - ] - }, - { - "name": "VRSUpdateMode", - "is_bitfield": false, - "values": [ - { - "name": "VRS_UPDATE_DISABLED", - "value": 0 - }, - { - "name": "VRS_UPDATE_ONCE", - "value": 1 - }, - { - "name": "VRS_UPDATE_ALWAYS", - "value": 2 - }, - { - "name": "VRS_UPDATE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_world_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2736080068, - "arguments": [ - { - "name": "world_2d", - "type": "World2D" - } - ] - }, - { - "name": "get_world_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339128592, - "return_value": { - "type": "World2D" - } - }, - { - "name": "find_world_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2339128592, - "return_value": { - "type": "World2D" - } - }, - { - "name": "set_canvas_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_canvas_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "set_global_canvas_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2761652528, - "arguments": [ - { - "name": "xform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_global_canvas_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_stretch_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_final_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_screen_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3814499831, - "return_value": { - "type": "Transform2D" - } - }, - { - "name": "get_visible_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_transparent_background", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "has_transparent_background", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_hdr_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_hdr_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_msaa_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3330258708, - "arguments": [ - { - "name": "msaa", - "type": "enum::Viewport.MSAA" - } - ] - }, - { - "name": "get_msaa_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2542055527, - "return_value": { - "type": "enum::Viewport.MSAA" - } - }, - { - "name": "set_msaa_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3330258708, - "arguments": [ - { - "name": "msaa", - "type": "enum::Viewport.MSAA" - } - ] - }, - { - "name": "get_msaa_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2542055527, - "return_value": { - "type": "enum::Viewport.MSAA" - } - }, - { - "name": "set_screen_space_aa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3544169389, - "arguments": [ - { - "name": "screen_space_aa", - "type": "enum::Viewport.ScreenSpaceAA" - } - ] - }, - { - "name": "get_screen_space_aa", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1390814124, - "return_value": { - "type": "enum::Viewport.ScreenSpaceAA" - } - }, - { - "name": "set_use_taa", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_taa", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_debanding", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_debanding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_occlusion_culling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_occlusion_culling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_debug_draw", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1970246205, - "arguments": [ - { - "name": "debug_draw", - "type": "enum::Viewport.DebugDraw" - } - ] - }, - { - "name": "get_debug_draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 579191299, - "return_value": { - "type": "enum::Viewport.DebugDraw" - } - }, - { - "name": "set_use_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_oversampling_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_oversampling_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_render_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 481977019, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "type", - "type": "enum::Viewport.RenderInfoType" - }, - { - "name": "info", - "type": "enum::Viewport.RenderInfo" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1746695840, - "return_value": { - "type": "ViewportTexture" - } - }, - { - "name": "set_physics_object_picking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_physics_object_picking", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_physics_object_picking_sort", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_physics_object_picking_sort", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_physics_object_picking_first_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_physics_object_picking_first_only", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_viewport_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "push_text_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "text", - "type": "String" - } - ] - }, - { - "name": "push_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3644664830, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "in_local_coords", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "push_unhandled_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3644664830, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "meta": "required" - }, - { - "name": "in_local_coords", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "notify_mouse_entered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "notify_mouse_exited", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_mouse_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "warp_mouse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "update_mouse_cursor_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "gui_cancel_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "gui_get_drag_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - }, - { - "name": "gui_get_drag_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "gui_set_drag_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "gui_is_dragging", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "gui_is_drag_successful", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "gui_release_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "gui_get_focus_owner", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "gui_get_hovered_control", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2783021301, - "return_value": { - "type": "Control" - } - }, - { - "name": "set_disable_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_input_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_positional_shadow_atlas_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_positional_shadow_atlas_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_positional_shadow_atlas_16_bits", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_positional_shadow_atlas_16_bits", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_snap_controls_to_pixels", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_snap_controls_to_pixels_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_snap_2d_transforms_to_pixel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_snap_2d_transforms_to_pixel_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_snap_2d_vertices_to_pixel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_snap_2d_vertices_to_pixel_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_positional_shadow_atlas_quadrant_subdiv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2596956071, - "arguments": [ - { - "name": "quadrant", - "type": "int", - "meta": "int32" - }, - { - "name": "subdiv", - "type": "enum::Viewport.PositionalShadowAtlasQuadrantSubdiv" - } - ] - }, - { - "name": "get_positional_shadow_atlas_quadrant_subdiv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2676778355, - "return_value": { - "type": "enum::Viewport.PositionalShadowAtlasQuadrantSubdiv" - }, - "arguments": [ - { - "name": "quadrant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_input_as_handled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "is_input_handled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_handle_input_locally", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_handling_input_locally", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_canvas_item_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2815160100, - "arguments": [ - { - "name": "mode", - "type": "enum::Viewport.DefaultCanvasItemTextureFilter" - } - ] - }, - { - "name": "get_default_canvas_item_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 896601198, - "return_value": { - "type": "enum::Viewport.DefaultCanvasItemTextureFilter" - } - }, - { - "name": "set_embedding_subwindows", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_embedding_subwindows", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_embedded_subwindows", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Window" - } - }, - { - "name": "set_drag_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "threshold", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_drag_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_canvas_cull_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_canvas_cull_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_canvas_cull_mask_bit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_canvas_cull_mask_bit", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "set_default_canvas_item_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1658513413, - "arguments": [ - { - "name": "mode", - "type": "enum::Viewport.DefaultCanvasItemTextureRepeat" - } - ] - }, - { - "name": "get_default_canvas_item_texture_repeat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4049774160, - "return_value": { - "type": "enum::Viewport.DefaultCanvasItemTextureRepeat" - } - }, - { - "name": "set_sdf_oversize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2574159017, - "arguments": [ - { - "name": "oversize", - "type": "enum::Viewport.SDFOversize" - } - ] - }, - { - "name": "get_sdf_oversize", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2631427510, - "return_value": { - "type": "enum::Viewport.SDFOversize" - } - }, - { - "name": "set_sdf_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1402773951, - "arguments": [ - { - "name": "scale", - "type": "enum::Viewport.SDFScale" - } - ] - }, - { - "name": "get_sdf_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3162688184, - "return_value": { - "type": "enum::Viewport.SDFScale" - } - }, - { - "name": "set_mesh_lod_threshold", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "pixels", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_mesh_lod_threshold", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_as_audio_listener_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_audio_listener_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_audio_listener_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1840977180, - "return_value": { - "type": "AudioListener2D" - } - }, - { - "name": "get_camera_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3551466917, - "return_value": { - "type": "Camera2D" - } - }, - { - "name": "set_world_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1400875337, - "arguments": [ - { - "name": "world_3d", - "type": "World3D" - } - ] - }, - { - "name": "get_world_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 317588385, - "return_value": { - "type": "World3D" - } - }, - { - "name": "find_world_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 317588385, - "return_value": { - "type": "World3D" - } - }, - { - "name": "set_use_own_world_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_own_world_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_audio_listener_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3472246991, - "return_value": { - "type": "AudioListener3D" - } - }, - { - "name": "get_camera_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285090890, - "return_value": { - "type": "Camera3D" - } - }, - { - "name": "set_as_audio_listener_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_audio_listener_3d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_disable_3d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "disable", - "type": "bool" - } - ] - }, - { - "name": "is_3d_disabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_xr", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "use", - "type": "bool" - } - ] - }, - { - "name": "is_using_xr", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "hash_compatibility": [ - 2240911060 - ], - "return_value": { - "type": "bool" - } - }, - { - "name": "set_scaling_3d_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1531597597, - "arguments": [ - { - "name": "scaling_3d_mode", - "type": "enum::Viewport.Scaling3DMode" - } - ] - }, - { - "name": "get_scaling_3d_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2597660574, - "return_value": { - "type": "enum::Viewport.Scaling3DMode" - } - }, - { - "name": "set_scaling_3d_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_scaling_3d_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_fsr_sharpness", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "fsr_sharpness", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_fsr_sharpness", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_texture_mipmap_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "texture_mipmap_bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_texture_mipmap_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_anisotropic_filtering_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3445583046, - "arguments": [ - { - "name": "anisotropic_filtering_level", - "type": "enum::Viewport.AnisotropicFiltering" - } - ] - }, - { - "name": "get_anisotropic_filtering_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3991528932, - "return_value": { - "type": "enum::Viewport.AnisotropicFiltering" - } - }, - { - "name": "set_vrs_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2749867817, - "arguments": [ - { - "name": "mode", - "type": "enum::Viewport.VRSMode" - } - ] - }, - { - "name": "get_vrs_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349660525, - "return_value": { - "type": "enum::Viewport.VRSMode" - } - }, - { - "name": "set_vrs_update_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3182412319, - "arguments": [ - { - "name": "mode", - "type": "enum::Viewport.VRSUpdateMode" - } - ] - }, - { - "name": "get_vrs_update_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2255951583, - "return_value": { - "type": "enum::Viewport.VRSUpdateMode" - } - }, - { - "name": "set_vrs_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "get_vrs_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - } - ], - "signals": [ - { - "name": "size_changed" - }, - { - "name": "gui_focus_changed", - "arguments": [ - { - "name": "node", - "type": "Control" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "disable_3d", - "setter": "set_disable_3d", - "getter": "is_3d_disabled" - }, - { - "type": "bool", - "name": "use_xr", - "setter": "set_use_xr", - "getter": "is_using_xr" - }, - { - "type": "bool", - "name": "own_world_3d", - "setter": "set_use_own_world_3d", - "getter": "is_using_own_world_3d" - }, - { - "type": "World3D", - "name": "world_3d", - "setter": "set_world_3d", - "getter": "get_world_3d" - }, - { - "type": "World2D", - "name": "world_2d", - "setter": "set_world_2d", - "getter": "get_world_2d" - }, - { - "type": "bool", - "name": "transparent_bg", - "setter": "set_transparent_background", - "getter": "has_transparent_background" - }, - { - "type": "bool", - "name": "handle_input_locally", - "setter": "set_handle_input_locally", - "getter": "is_handling_input_locally" - }, - { - "type": "bool", - "name": "snap_2d_transforms_to_pixel", - "setter": "set_snap_2d_transforms_to_pixel", - "getter": "is_snap_2d_transforms_to_pixel_enabled" - }, - { - "type": "bool", - "name": "snap_2d_vertices_to_pixel", - "setter": "set_snap_2d_vertices_to_pixel", - "getter": "is_snap_2d_vertices_to_pixel_enabled" - }, - { - "type": "int", - "name": "msaa_2d", - "setter": "set_msaa_2d", - "getter": "get_msaa_2d" - }, - { - "type": "int", - "name": "msaa_3d", - "setter": "set_msaa_3d", - "getter": "get_msaa_3d" - }, - { - "type": "int", - "name": "screen_space_aa", - "setter": "set_screen_space_aa", - "getter": "get_screen_space_aa" - }, - { - "type": "bool", - "name": "use_taa", - "setter": "set_use_taa", - "getter": "is_using_taa" - }, - { - "type": "bool", - "name": "use_debanding", - "setter": "set_use_debanding", - "getter": "is_using_debanding" - }, - { - "type": "bool", - "name": "use_occlusion_culling", - "setter": "set_use_occlusion_culling", - "getter": "is_using_occlusion_culling" - }, - { - "type": "float", - "name": "mesh_lod_threshold", - "setter": "set_mesh_lod_threshold", - "getter": "get_mesh_lod_threshold" - }, - { - "type": "int", - "name": "debug_draw", - "setter": "set_debug_draw", - "getter": "get_debug_draw" - }, - { - "type": "bool", - "name": "use_hdr_2d", - "setter": "set_use_hdr_2d", - "getter": "is_using_hdr_2d" - }, - { - "type": "int", - "name": "scaling_3d_mode", - "setter": "set_scaling_3d_mode", - "getter": "get_scaling_3d_mode" - }, - { - "type": "float", - "name": "scaling_3d_scale", - "setter": "set_scaling_3d_scale", - "getter": "get_scaling_3d_scale" - }, - { - "type": "float", - "name": "texture_mipmap_bias", - "setter": "set_texture_mipmap_bias", - "getter": "get_texture_mipmap_bias" - }, - { - "type": "int", - "name": "anisotropic_filtering_level", - "setter": "set_anisotropic_filtering_level", - "getter": "get_anisotropic_filtering_level" - }, - { - "type": "float", - "name": "fsr_sharpness", - "setter": "set_fsr_sharpness", - "getter": "get_fsr_sharpness" - }, - { - "type": "int", - "name": "vrs_mode", - "setter": "set_vrs_mode", - "getter": "get_vrs_mode" - }, - { - "type": "int", - "name": "vrs_update_mode", - "setter": "set_vrs_update_mode", - "getter": "get_vrs_update_mode" - }, - { - "type": "Texture2D", - "name": "vrs_texture", - "setter": "set_vrs_texture", - "getter": "get_vrs_texture" - }, - { - "type": "int", - "name": "canvas_item_default_texture_filter", - "setter": "set_default_canvas_item_texture_filter", - "getter": "get_default_canvas_item_texture_filter" - }, - { - "type": "int", - "name": "canvas_item_default_texture_repeat", - "setter": "set_default_canvas_item_texture_repeat", - "getter": "get_default_canvas_item_texture_repeat" - }, - { - "type": "bool", - "name": "audio_listener_enable_2d", - "setter": "set_as_audio_listener_2d", - "getter": "is_audio_listener_2d" - }, - { - "type": "bool", - "name": "audio_listener_enable_3d", - "setter": "set_as_audio_listener_3d", - "getter": "is_audio_listener_3d" - }, - { - "type": "bool", - "name": "physics_object_picking", - "setter": "set_physics_object_picking", - "getter": "get_physics_object_picking" - }, - { - "type": "bool", - "name": "physics_object_picking_sort", - "setter": "set_physics_object_picking_sort", - "getter": "get_physics_object_picking_sort" - }, - { - "type": "bool", - "name": "physics_object_picking_first_only", - "setter": "set_physics_object_picking_first_only", - "getter": "get_physics_object_picking_first_only" - }, - { - "type": "bool", - "name": "gui_disable_input", - "setter": "set_disable_input", - "getter": "is_input_disabled" - }, - { - "type": "bool", - "name": "gui_snap_controls_to_pixels", - "setter": "set_snap_controls_to_pixels", - "getter": "is_snap_controls_to_pixels_enabled" - }, - { - "type": "bool", - "name": "gui_embed_subwindows", - "setter": "set_embedding_subwindows", - "getter": "is_embedding_subwindows" - }, - { - "type": "int", - "name": "gui_drag_threshold", - "setter": "set_drag_threshold", - "getter": "get_drag_threshold" - }, - { - "type": "int", - "name": "sdf_oversize", - "setter": "set_sdf_oversize", - "getter": "get_sdf_oversize" - }, - { - "type": "int", - "name": "sdf_scale", - "setter": "set_sdf_scale", - "getter": "get_sdf_scale" - }, - { - "type": "int", - "name": "positional_shadow_atlas_size", - "setter": "set_positional_shadow_atlas_size", - "getter": "get_positional_shadow_atlas_size" - }, - { - "type": "bool", - "name": "positional_shadow_atlas_16_bits", - "setter": "set_positional_shadow_atlas_16_bits", - "getter": "get_positional_shadow_atlas_16_bits" - }, - { - "type": "int", - "name": "positional_shadow_atlas_quad_0", - "setter": "set_positional_shadow_atlas_quadrant_subdiv", - "getter": "get_positional_shadow_atlas_quadrant_subdiv", - "index": 0 - }, - { - "type": "int", - "name": "positional_shadow_atlas_quad_1", - "setter": "set_positional_shadow_atlas_quadrant_subdiv", - "getter": "get_positional_shadow_atlas_quadrant_subdiv", - "index": 1 - }, - { - "type": "int", - "name": "positional_shadow_atlas_quad_2", - "setter": "set_positional_shadow_atlas_quadrant_subdiv", - "getter": "get_positional_shadow_atlas_quadrant_subdiv", - "index": 2 - }, - { - "type": "int", - "name": "positional_shadow_atlas_quad_3", - "setter": "set_positional_shadow_atlas_quadrant_subdiv", - "getter": "get_positional_shadow_atlas_quadrant_subdiv", - "index": 3 - }, - { - "type": "Transform2D", - "name": "canvas_transform", - "setter": "set_canvas_transform", - "getter": "get_canvas_transform" - }, - { - "type": "Transform2D", - "name": "global_canvas_transform", - "setter": "set_global_canvas_transform", - "getter": "get_global_canvas_transform" - }, - { - "type": "int", - "name": "canvas_cull_mask", - "setter": "set_canvas_cull_mask", - "getter": "get_canvas_cull_mask" - }, - { - "type": "bool", - "name": "oversampling", - "setter": "set_use_oversampling", - "getter": "is_using_oversampling" - }, - { - "type": "float", - "name": "oversampling_override", - "setter": "set_oversampling_override", - "getter": "get_oversampling_override" - } - ] - }, - { - "name": "ViewportTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Texture2D", - "api_type": "core", - "methods": [ - { - "name": "set_viewport_path_in_scene", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_viewport_path_in_scene", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - } - ], - "properties": [ - { - "type": "NodePath", - "name": "viewport_path", - "setter": "set_viewport_path_in_scene", - "getter": "get_viewport_path_in_scene" - } - ] - }, - { - "name": "VirtualJoystick", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Control", - "api_type": "core", - "enums": [ - { - "name": "JoystickMode", - "is_bitfield": false, - "values": [ - { - "name": "JOYSTICK_FIXED", - "value": 0 - }, - { - "name": "JOYSTICK_DYNAMIC", - "value": 1 - }, - { - "name": "JOYSTICK_FOLLOWING", - "value": 2 - } - ] - }, - { - "name": "VisibilityMode", - "is_bitfield": false, - "values": [ - { - "name": "VISIBILITY_ALWAYS", - "value": 0 - }, - { - "name": "VISIBILITY_WHEN_TOUCHED", - "value": 1 - } - ] - } - ], - "methods": [ - { - "name": "set_joystick_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1316760817, - "arguments": [ - { - "name": "mode", - "type": "enum::VirtualJoystick.JoystickMode" - } - ] - }, - { - "name": "get_joystick_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2694680530, - "return_value": { - "type": "enum::VirtualJoystick.JoystickMode" - } - }, - { - "name": "set_joystick_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_joystick_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_tip_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "size", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_tip_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_deadzone_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_deadzone_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_clampzone_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_clampzone_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_initial_offset_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "ratio", - "type": "Vector2" - } - ] - }, - { - "name": "get_initial_offset_ratio", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_action_left", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action_left", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_action_right", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action_right", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_action_up", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action_up", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_action_down", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "action", - "type": "StringName" - } - ] - }, - { - "name": "get_action_down", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_visibility_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2638298545, - "arguments": [ - { - "name": "mode", - "type": "enum::VirtualJoystick.VisibilityMode" - } - ] - }, - { - "name": "get_visibility_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3530872950, - "return_value": { - "type": "enum::VirtualJoystick.VisibilityMode" - } - } - ], - "signals": [ - { - "name": "pressed" - }, - { - "name": "tapped" - }, - { - "name": "released", - "arguments": [ - { - "name": "input_vector", - "type": "Vector2" - } - ] - }, - { - "name": "flicked", - "arguments": [ - { - "name": "input_vector", - "type": "Vector2" - } - ] - }, - { - "name": "flick_canceled" - } - ], - "properties": [ - { - "type": "int", - "name": "joystick_mode", - "setter": "set_joystick_mode", - "getter": "get_joystick_mode" - }, - { - "type": "float", - "name": "joystick_size", - "setter": "set_joystick_size", - "getter": "get_joystick_size" - }, - { - "type": "float", - "name": "tip_size", - "setter": "set_tip_size", - "getter": "get_tip_size" - }, - { - "type": "float", - "name": "deadzone_ratio", - "setter": "set_deadzone_ratio", - "getter": "get_deadzone_ratio" - }, - { - "type": "float", - "name": "clampzone_ratio", - "setter": "set_clampzone_ratio", - "getter": "get_clampzone_ratio" - }, - { - "type": "Vector2", - "name": "initial_offset_ratio", - "setter": "set_initial_offset_ratio", - "getter": "get_initial_offset_ratio" - }, - { - "type": "StringName", - "name": "action_left", - "setter": "set_action_left", - "getter": "get_action_left" - }, - { - "type": "StringName", - "name": "action_right", - "setter": "set_action_right", - "getter": "get_action_right" - }, - { - "type": "StringName", - "name": "action_up", - "setter": "set_action_up", - "getter": "get_action_up" - }, - { - "type": "StringName", - "name": "action_down", - "setter": "set_action_down", - "getter": "get_action_down" - }, - { - "type": "int", - "name": "visibility_mode", - "setter": "set_visibility_mode", - "getter": "get_visibility_mode" - } - ] - }, - { - "name": "VisibleOnScreenEnabler2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisibleOnScreenNotifier2D", - "api_type": "core", - "enums": [ - { - "name": "EnableMode", - "is_bitfield": false, - "values": [ - { - "name": "ENABLE_MODE_INHERIT", - "value": 0 - }, - { - "name": "ENABLE_MODE_ALWAYS", - "value": 1 - }, - { - "name": "ENABLE_MODE_WHEN_PAUSED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_enable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961788752, - "arguments": [ - { - "name": "mode", - "type": "enum::VisibleOnScreenEnabler2D.EnableMode" - } - ] - }, - { - "name": "get_enable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2650445576, - "return_value": { - "type": "enum::VisibleOnScreenEnabler2D.EnableMode" - } - }, - { - "name": "set_enable_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_enable_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 277076166, - "return_value": { - "type": "NodePath" - } - } - ], - "properties": [ - { - "type": "int", - "name": "enable_mode", - "setter": "set_enable_mode", - "getter": "get_enable_mode" - }, - { - "type": "NodePath", - "name": "enable_node_path", - "setter": "set_enable_node_path", - "getter": "get_enable_node_path" - } - ] - }, - { - "name": "VisibleOnScreenEnabler3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisibleOnScreenNotifier3D", - "api_type": "core", - "enums": [ - { - "name": "EnableMode", - "is_bitfield": false, - "values": [ - { - "name": "ENABLE_MODE_INHERIT", - "value": 0 - }, - { - "name": "ENABLE_MODE_ALWAYS", - "value": 1 - }, - { - "name": "ENABLE_MODE_WHEN_PAUSED", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_enable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 320303646, - "arguments": [ - { - "name": "mode", - "type": "enum::VisibleOnScreenEnabler3D.EnableMode" - } - ] - }, - { - "name": "get_enable_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3352990031, - "return_value": { - "type": "enum::VisibleOnScreenEnabler3D.EnableMode" - } - }, - { - "name": "set_enable_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_enable_node_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 277076166, - "return_value": { - "type": "NodePath" - } - } - ], - "properties": [ - { - "type": "int", - "name": "enable_mode", - "setter": "set_enable_mode", - "getter": "get_enable_mode" - }, - { - "type": "NodePath", - "name": "enable_node_path", - "setter": "set_enable_node_path", - "getter": "get_enable_node_path" - } - ] - }, - { - "name": "VisibleOnScreenNotifier2D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node2D", - "api_type": "core", - "methods": [ - { - "name": "set_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2046264180, - "arguments": [ - { - "name": "rect", - "type": "Rect2" - } - ] - }, - { - "name": "get_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1639390495, - "return_value": { - "type": "Rect2" - } - }, - { - "name": "set_show_rect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show_rect", - "type": "bool" - } - ] - }, - { - "name": "is_showing_rect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_on_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "screen_entered" - }, - { - "name": "screen_exited" - } - ], - "properties": [ - { - "type": "Rect2", - "name": "rect", - "setter": "set_rect", - "getter": "get_rect" - }, - { - "type": "bool", - "name": "show_rect", - "setter": "set_show_rect", - "getter": "is_showing_rect" - } - ] - }, - { - "name": "VisibleOnScreenNotifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "methods": [ - { - "name": "set_aabb", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 259215842, - "arguments": [ - { - "name": "rect", - "type": "AABB" - } - ] - }, - { - "name": "is_on_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "signals": [ - { - "name": "screen_entered" - }, - { - "name": "screen_exited" - } - ], - "properties": [ - { - "type": "AABB", - "name": "aabb", - "setter": "set_aabb", - "getter": "get_aabb" - } - ] - }, - { - "name": "VisualInstance3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "_get_aabb", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "set_base", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2722037293, - "arguments": [ - { - "name": "base", - "type": "RID" - } - ] - }, - { - "name": "get_base", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_instance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_layer_mask", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "mask", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_layer_mask", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "set_layer_mask_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 300928843, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_layer_mask_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "layer_number", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_sorting_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "offset", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sorting_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_sorting_use_aabb_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_sorting_use_aabb_center", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_aabb", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - } - ], - "properties": [ - { - "type": "int", - "name": "layers", - "setter": "set_layer_mask", - "getter": "get_layer_mask" - }, - { - "type": "float", - "name": "sorting_offset", - "setter": "set_sorting_offset", - "getter": "get_sorting_offset" - }, - { - "type": "bool", - "name": "sorting_use_aabb_center", - "setter": "set_sorting_use_aabb_center", - "getter": "is_sorting_use_aabb_center" - } - ] - }, - { - "name": "VisualShader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shader", - "api_type": "core", - "constants": [ - { - "name": "NODE_ID_INVALID", - "value": -1 - }, - { - "name": "NODE_ID_OUTPUT", - "value": 0 - } - ], - "enums": [ - { - "name": "Type", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_VERTEX", - "value": 0 - }, - { - "name": "TYPE_FRAGMENT", - "value": 1 - }, - { - "name": "TYPE_LIGHT", - "value": 2 - }, - { - "name": "TYPE_START", - "value": 3 - }, - { - "name": "TYPE_PROCESS", - "value": 4 - }, - { - "name": "TYPE_COLLIDE", - "value": 5 - }, - { - "name": "TYPE_START_CUSTOM", - "value": 6 - }, - { - "name": "TYPE_PROCESS_CUSTOM", - "value": 7 - }, - { - "name": "TYPE_SKY", - "value": 8 - }, - { - "name": "TYPE_FOG", - "value": 9 - }, - { - "name": "TYPE_TEXTURE_BLIT", - "value": 10 - }, - { - "name": "TYPE_MAX", - "value": 11 - } - ] - }, - { - "name": "VaryingMode", - "is_bitfield": false, - "values": [ - { - "name": "VARYING_MODE_VERTEX_TO_FRAG_LIGHT", - "value": 0 - }, - { - "name": "VARYING_MODE_FRAG_TO_LIGHT", - "value": 1 - }, - { - "name": "VARYING_MODE_MAX", - "value": 2 - } - ] - }, - { - "name": "VaryingType", - "is_bitfield": false, - "values": [ - { - "name": "VARYING_TYPE_FLOAT", - "value": 0 - }, - { - "name": "VARYING_TYPE_INT", - "value": 1 - }, - { - "name": "VARYING_TYPE_UINT", - "value": 2 - }, - { - "name": "VARYING_TYPE_VECTOR_2D", - "value": 3 - }, - { - "name": "VARYING_TYPE_VECTOR_3D", - "value": 4 - }, - { - "name": "VARYING_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "VARYING_TYPE_BOOLEAN", - "value": 6 - }, - { - "name": "VARYING_TYPE_TRANSFORM", - "value": 7 - }, - { - "name": "VARYING_TYPE_MAX", - "value": 8 - } - ] - } - ], - "methods": [ - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3978014962, - "arguments": [ - { - "name": "mode", - "type": "enum::Shader.Mode" - } - ] - }, - { - "name": "add_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1560769431, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "node", - "type": "VisualShaderNode" - }, - { - "name": "position", - "type": "Vector2" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3784670312, - "return_value": { - "type": "VisualShaderNode" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_node_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2726660721, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "position", - "type": "Vector2" - } - ] - }, - { - "name": "get_node_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2175036082, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2370592410, - "return_value": { - "type": "PackedInt32Array" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "get_valid_node_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 629467342, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "remove_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844050912, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "replace_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3144735253, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "new_class", - "type": "StringName" - } - ] - }, - { - "name": "is_node_connection", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3922381898, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "from_node", - "type": "int", - "meta": "int32" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "int", - "meta": "int32" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "can_connect_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3922381898, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "from_node", - "type": "int", - "meta": "int32" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "int", - "meta": "int32" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "connect_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3081049573, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "from_node", - "type": "int", - "meta": "int32" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "int", - "meta": "int32" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "disconnect_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2268060358, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "from_node", - "type": "int", - "meta": "int32" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "int", - "meta": "int32" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "connect_nodes_forced", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2268060358, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "from_node", - "type": "int", - "meta": "int32" - }, - { - "name": "from_port", - "type": "int", - "meta": "int32" - }, - { - "name": "to_node", - "type": "int", - "meta": "int32" - }, - { - "name": "to_port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_node_connections", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1441964831, - "return_value": { - "type": "typedarray::Dictionary" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "attach_node_to_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2479945279, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "detach_node_from_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844050912, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.Type" - }, - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_varying", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2084110726, - "arguments": [ - { - "name": "name", - "type": "String" - }, - { - "name": "mode", - "type": "enum::VisualShader.VaryingMode" - }, - { - "name": "type", - "type": "enum::VisualShader.VaryingType" - } - ] - }, - { - "name": "remove_varying", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "has_varying", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_graph_offset", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "offset", - "type": "Vector2" - } - ] - }, - { - "name": "get_graph_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "graph_offset", - "setter": "set_graph_offset", - "getter": "get_graph_offset" - } - ] - }, - { - "name": "VisualShaderNode", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "PortType", - "is_bitfield": false, - "values": [ - { - "name": "PORT_TYPE_SCALAR", - "value": 0 - }, - { - "name": "PORT_TYPE_SCALAR_INT", - "value": 1 - }, - { - "name": "PORT_TYPE_SCALAR_UINT", - "value": 2 - }, - { - "name": "PORT_TYPE_VECTOR_2D", - "value": 3 - }, - { - "name": "PORT_TYPE_VECTOR_3D", - "value": 4 - }, - { - "name": "PORT_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "PORT_TYPE_BOOLEAN", - "value": 6 - }, - { - "name": "PORT_TYPE_TRANSFORM", - "value": 7 - }, - { - "name": "PORT_TYPE_SAMPLER", - "value": 8 - }, - { - "name": "PORT_TYPE_MAX", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "get_default_input_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1894493699, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNode.PortType" - } - ] - }, - { - "name": "set_output_port_for_preview", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_for_preview", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_input_port_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 150923387, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "value", - "type": "Variant" - }, - { - "name": "prev_value", - "type": "Variant", - "default_value": "null" - } - ] - }, - { - "name": "get_input_port_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_input_port_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_default_input_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_default_input_values", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "values", - "type": "Array" - } - ] - }, - { - "name": "get_default_input_values", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "frame", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "output_port_for_preview", - "setter": "set_output_port_for_preview", - "getter": "get_output_port_for_preview" - }, - { - "type": "Array", - "name": "default_input_values", - "setter": "set_default_input_values", - "getter": "get_default_input_values" - }, - { - "type": "Array", - "name": "expanded_output_ports", - "setter": "_set_output_ports_expanded", - "getter": "_get_output_ports_expanded" - }, - { - "type": "int", - "name": "linked_parent_graph_frame", - "setter": "set_frame", - "getter": "get_frame" - } - ] - }, - { - "name": "VisualShaderNodeBillboard", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "BillboardType", - "is_bitfield": false, - "values": [ - { - "name": "BILLBOARD_TYPE_DISABLED", - "value": 0 - }, - { - "name": "BILLBOARD_TYPE_ENABLED", - "value": 1 - }, - { - "name": "BILLBOARD_TYPE_FIXED_Y", - "value": 2 - }, - { - "name": "BILLBOARD_TYPE_PARTICLES", - "value": 3 - }, - { - "name": "BILLBOARD_TYPE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_billboard_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1227463289, - "arguments": [ - { - "name": "billboard_type", - "type": "enum::VisualShaderNodeBillboard.BillboardType" - } - ] - }, - { - "name": "get_billboard_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3724188517, - "return_value": { - "type": "enum::VisualShaderNodeBillboard.BillboardType" - } - }, - { - "name": "set_keep_scale_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_keep_scale_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "int", - "name": "billboard_type", - "setter": "set_billboard_type", - "getter": "get_billboard_type" - }, - { - "type": "bool", - "name": "keep_scale", - "setter": "set_keep_scale_enabled", - "getter": "is_keep_scale_enabled" - } - ] - }, - { - "name": "VisualShaderNodeBooleanConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "constant", - "type": "bool" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeBooleanParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "value", - "type": "bool" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "bool", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeClamp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_FLOAT", - "value": 0 - }, - { - "name": "OP_TYPE_INT", - "value": 1 - }, - { - "name": "OP_TYPE_UINT", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_MAX", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 405010749, - "arguments": [ - { - "name": "op_type", - "type": "enum::VisualShaderNodeClamp.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 233276050, - "return_value": { - "type": "enum::VisualShaderNodeClamp.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeColorConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "constant", - "type": "Color" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "Color", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeColorFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_GRAYSCALE", - "value": 0 - }, - { - "name": "FUNC_HSV2RGB", - "value": 1 - }, - { - "name": "FUNC_RGB2HSV", - "value": 2 - }, - { - "name": "FUNC_SEPIA", - "value": 3 - }, - { - "name": "FUNC_LINEAR_TO_SRGB", - "value": 4 - }, - { - "name": "FUNC_SRGB_TO_LINEAR", - "value": 5 - }, - { - "name": "FUNC_MAX", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3973396138, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeColorFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 554863321, - "return_value": { - "type": "enum::VisualShaderNodeColorFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeColorOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_SCREEN", - "value": 0 - }, - { - "name": "OP_DIFFERENCE", - "value": 1 - }, - { - "name": "OP_DARKEN", - "value": 2 - }, - { - "name": "OP_LIGHTEN", - "value": 3 - }, - { - "name": "OP_OVERLAY", - "value": 4 - }, - { - "name": "OP_DODGE", - "value": 5 - }, - { - "name": "OP_BURN", - "value": 6 - }, - { - "name": "OP_SOFT_LIGHT", - "value": 7 - }, - { - "name": "OP_HARD_LIGHT", - "value": 8 - }, - { - "name": "OP_MAX", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4260370673, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeColorOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1950956529, - "return_value": { - "type": "enum::VisualShaderNodeColorOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeColorParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "value", - "type": "Color" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "Color", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeComment", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeFrame", - "api_type": "core", - "methods": [ - { - "name": "set_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "get_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "description", - "setter": "set_description", - "getter": "get_description" - } - ] - }, - { - "name": "VisualShaderNodeCompare", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "ComparisonType", - "is_bitfield": false, - "values": [ - { - "name": "CTYPE_SCALAR", - "value": 0 - }, - { - "name": "CTYPE_SCALAR_INT", - "value": 1 - }, - { - "name": "CTYPE_SCALAR_UINT", - "value": 2 - }, - { - "name": "CTYPE_VECTOR_2D", - "value": 3 - }, - { - "name": "CTYPE_VECTOR_3D", - "value": 4 - }, - { - "name": "CTYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "CTYPE_BOOLEAN", - "value": 6 - }, - { - "name": "CTYPE_TRANSFORM", - "value": 7 - }, - { - "name": "CTYPE_MAX", - "value": 8 - } - ] - }, - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_EQUAL", - "value": 0 - }, - { - "name": "FUNC_NOT_EQUAL", - "value": 1 - }, - { - "name": "FUNC_GREATER_THAN", - "value": 2 - }, - { - "name": "FUNC_GREATER_THAN_EQUAL", - "value": 3 - }, - { - "name": "FUNC_LESS_THAN", - "value": 4 - }, - { - "name": "FUNC_LESS_THAN_EQUAL", - "value": 5 - }, - { - "name": "FUNC_MAX", - "value": 6 - } - ] - }, - { - "name": "Condition", - "is_bitfield": false, - "values": [ - { - "name": "COND_ALL", - "value": 0 - }, - { - "name": "COND_ANY", - "value": 1 - }, - { - "name": "COND_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_comparison_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 516558320, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeCompare.ComparisonType" - } - ] - }, - { - "name": "get_comparison_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3495315961, - "return_value": { - "type": "enum::VisualShaderNodeCompare.ComparisonType" - } - }, - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2370951349, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeCompare.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4089164265, - "return_value": { - "type": "enum::VisualShaderNodeCompare.Function" - } - }, - { - "name": "set_condition", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 918742392, - "arguments": [ - { - "name": "condition", - "type": "enum::VisualShaderNodeCompare.Condition" - } - ] - }, - { - "name": "get_condition", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3281078941, - "return_value": { - "type": "enum::VisualShaderNodeCompare.Condition" - } - } - ], - "properties": [ - { - "type": "int", - "name": "type", - "setter": "set_comparison_type", - "getter": "get_comparison_type" - }, - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - }, - { - "type": "int", - "name": "condition", - "setter": "set_condition", - "getter": "get_condition" - } - ] - }, - { - "name": "VisualShaderNodeConstant", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeCubemap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Source", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_TEXTURE", - "value": 0 - }, - { - "name": "SOURCE_PORT", - "value": 1 - }, - { - "name": "SOURCE_MAX", - "value": 2 - } - ] - }, - { - "name": "TextureType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_DATA", - "value": 0 - }, - { - "name": "TYPE_COLOR", - "value": 1 - }, - { - "name": "TYPE_NORMAL_MAP", - "value": 2 - }, - { - "name": "TYPE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1625400621, - "arguments": [ - { - "name": "value", - "type": "enum::VisualShaderNodeCubemap.Source" - } - ] - }, - { - "name": "get_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2222048781, - "return_value": { - "type": "enum::VisualShaderNodeCubemap.Source" - } - }, - { - "name": "set_cube_map", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1278366092, - "hash_compatibility": [ - 2219800736 - ], - "arguments": [ - { - "name": "value", - "type": "TextureLayered" - } - ] - }, - { - "name": "get_cube_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3984243839, - "hash_compatibility": [ - 1772111058 - ], - "return_value": { - "type": "TextureLayered" - } - }, - { - "name": "set_texture_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1899718876, - "arguments": [ - { - "name": "value", - "type": "enum::VisualShaderNodeCubemap.TextureType" - } - ] - }, - { - "name": "get_texture_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3356498888, - "return_value": { - "type": "enum::VisualShaderNodeCubemap.TextureType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "source", - "setter": "set_source", - "getter": "get_source" - }, - { - "type": "Cubemap,CompressedCubemap,PlaceholderCubemap,TextureCubemapRD", - "name": "cube_map", - "setter": "set_cube_map", - "getter": "get_cube_map" - }, - { - "type": "int", - "name": "texture_type", - "setter": "set_texture_type", - "getter": "get_texture_type" - } - ] - }, - { - "name": "VisualShaderNodeCubemapParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeTextureParameter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeCurveTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeResizableBase", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 181872837, - "arguments": [ - { - "name": "texture", - "type": "CurveTexture" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2800800579, - "return_value": { - "type": "CurveTexture" - } - } - ], - "properties": [ - { - "type": "CurveTexture", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "VisualShaderNodeCurveXYZTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeResizableBase", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 8031783, - "arguments": [ - { - "name": "texture", - "type": "CurveXYZTexture" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1950275015, - "return_value": { - "type": "CurveXYZTexture" - } - } - ], - "properties": [ - { - "type": "CurveXYZTexture", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "VisualShaderNodeCustom", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_description", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_category", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_get_return_icon_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1287173294, - "return_value": { - "type": "enum::VisualShaderNode.PortType" - } - }, - { - "name": "_get_input_port_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_input_port_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4102573379, - "return_value": { - "type": "enum::VisualShaderNode.PortType" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_input_port_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_input_port_default_value", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4227898402, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_default_input_port", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1894493699, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNode.PortType" - } - ] - }, - { - "name": "_get_output_port_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_output_port_type", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4102573379, - "return_value": { - "type": "enum::VisualShaderNode.PortType" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_output_port_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_property_count", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_property_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_property_default_index", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_property_options", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 647634434, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_code", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4287175357, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "input_vars", - "type": "typedarray::String" - }, - { - "name": "output_vars", - "type": "typedarray::String" - }, - { - "name": "mode", - "type": "enum::Shader.Mode" - }, - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "_get_func_code", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1924221678, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Shader.Mode" - }, - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "_get_global_code", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3956542358, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Shader.Mode" - } - ] - }, - { - "name": "_is_highend", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_is_available", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1932120545, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::Shader.Mode" - }, - { - "name": "type", - "type": "enum::VisualShader.Type" - } - ] - }, - { - "name": "get_option_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "option", - "type": "int", - "meta": "int32" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "initialized", - "setter": "_set_initialized", - "getter": "_is_initialized" - }, - { - "type": "String", - "name": "properties", - "setter": "_set_properties", - "getter": "_get_properties" - } - ] - }, - { - "name": "VisualShaderNodeDerivativeFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 3 - }, - { - "name": "OP_TYPE_MAX", - "value": 4 - } - ] - }, - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_SUM", - "value": 0 - }, - { - "name": "FUNC_X", - "value": 1 - }, - { - "name": "FUNC_Y", - "value": 2 - }, - { - "name": "FUNC_MAX", - "value": 3 - } - ] - }, - { - "name": "Precision", - "is_bitfield": false, - "values": [ - { - "name": "PRECISION_NONE", - "value": 0 - }, - { - "name": "PRECISION_COARSE", - "value": 1 - }, - { - "name": "PRECISION_FINE", - "value": 2 - }, - { - "name": "PRECISION_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 377800221, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeDerivativeFunc.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3997800514, - "return_value": { - "type": "enum::VisualShaderNodeDerivativeFunc.OpType" - } - }, - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1944704156, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeDerivativeFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2389093396, - "return_value": { - "type": "enum::VisualShaderNodeDerivativeFunc.Function" - } - }, - { - "name": "set_precision", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 797270566, - "arguments": [ - { - "name": "precision", - "type": "enum::VisualShaderNodeDerivativeFunc.Precision" - } - ] - }, - { - "name": "get_precision", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3822547323, - "return_value": { - "type": "enum::VisualShaderNodeDerivativeFunc.Precision" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - }, - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - }, - { - "type": "int", - "name": "precision", - "setter": "set_precision", - "getter": "get_precision" - } - ] - }, - { - "name": "VisualShaderNodeDeterminant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeDistanceFade", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeDotProduct", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeExpression", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeGroupBase", - "api_type": "core", - "methods": [ - { - "name": "set_expression", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "expression", - "type": "String" - } - ] - }, - { - "name": "get_expression", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "String", - "name": "expression", - "setter": "set_expression", - "getter": "get_expression" - } - ] - }, - { - "name": "VisualShaderNodeFaceForward", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeFloatConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "constant", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "float", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeFloatFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_SIN", - "value": 0 - }, - { - "name": "FUNC_COS", - "value": 1 - }, - { - "name": "FUNC_TAN", - "value": 2 - }, - { - "name": "FUNC_ASIN", - "value": 3 - }, - { - "name": "FUNC_ACOS", - "value": 4 - }, - { - "name": "FUNC_ATAN", - "value": 5 - }, - { - "name": "FUNC_SINH", - "value": 6 - }, - { - "name": "FUNC_COSH", - "value": 7 - }, - { - "name": "FUNC_TANH", - "value": 8 - }, - { - "name": "FUNC_LOG", - "value": 9 - }, - { - "name": "FUNC_EXP", - "value": 10 - }, - { - "name": "FUNC_SQRT", - "value": 11 - }, - { - "name": "FUNC_ABS", - "value": 12 - }, - { - "name": "FUNC_SIGN", - "value": 13 - }, - { - "name": "FUNC_FLOOR", - "value": 14 - }, - { - "name": "FUNC_ROUND", - "value": 15 - }, - { - "name": "FUNC_CEIL", - "value": 16 - }, - { - "name": "FUNC_FRACT", - "value": 17 - }, - { - "name": "FUNC_SATURATE", - "value": 18 - }, - { - "name": "FUNC_NEGATE", - "value": 19 - }, - { - "name": "FUNC_ACOSH", - "value": 20 - }, - { - "name": "FUNC_ASINH", - "value": 21 - }, - { - "name": "FUNC_ATANH", - "value": 22 - }, - { - "name": "FUNC_DEGREES", - "value": 23 - }, - { - "name": "FUNC_EXP2", - "value": 24 - }, - { - "name": "FUNC_INVERSE_SQRT", - "value": 25 - }, - { - "name": "FUNC_LOG2", - "value": 26 - }, - { - "name": "FUNC_RADIANS", - "value": 27 - }, - { - "name": "FUNC_RECIPROCAL", - "value": 28 - }, - { - "name": "FUNC_ROUNDEVEN", - "value": 29 - }, - { - "name": "FUNC_TRUNC", - "value": 30 - }, - { - "name": "FUNC_ONEMINUS", - "value": 31 - }, - { - "name": "FUNC_MAX", - "value": 32 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 536026177, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeFloatFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2033948868, - "return_value": { - "type": "enum::VisualShaderNodeFloatFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeFloatOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_ADD", - "value": 0 - }, - { - "name": "OP_SUB", - "value": 1 - }, - { - "name": "OP_MUL", - "value": 2 - }, - { - "name": "OP_DIV", - "value": 3 - }, - { - "name": "OP_MOD", - "value": 4 - }, - { - "name": "OP_POW", - "value": 5 - }, - { - "name": "OP_MAX", - "value": 6 - }, - { - "name": "OP_MIN", - "value": 7 - }, - { - "name": "OP_ATAN2", - "value": 8 - }, - { - "name": "OP_STEP", - "value": 9 - }, - { - "name": "OP_ENUM_SIZE", - "value": 10 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2488468047, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeFloatOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1867979390, - "return_value": { - "type": "enum::VisualShaderNodeFloatOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeFloatParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "enums": [ - { - "name": "Hint", - "is_bitfield": false, - "values": [ - { - "name": "HINT_NONE", - "value": 0 - }, - { - "name": "HINT_RANGE", - "value": 1 - }, - { - "name": "HINT_RANGE_STEP", - "value": 2 - }, - { - "name": "HINT_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3712586466, - "arguments": [ - { - "name": "hint", - "type": "enum::VisualShaderNodeFloatParameter.Hint" - } - ] - }, - { - "name": "get_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3042240429, - "return_value": { - "type": "enum::VisualShaderNodeFloatParameter.Hint" - } - }, - { - "name": "set_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "int", - "name": "hint", - "setter": "set_hint", - "getter": "get_hint" - }, - { - "type": "float", - "name": "min", - "setter": "set_min", - "getter": "get_min" - }, - { - "type": "float", - "name": "max", - "setter": "set_max", - "getter": "get_max" - }, - { - "type": "float", - "name": "step", - "setter": "set_step", - "getter": "get_step" - }, - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "float", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeFrame", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeResizableBase", - "api_type": "core", - "methods": [ - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_tint_color_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_tint_color_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_tint_color", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2920490490, - "arguments": [ - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "get_tint_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3444240500, - "return_value": { - "type": "Color" - } - }, - { - "name": "set_autoshrink_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_autoshrink_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_attached_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "node", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_attached_node", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "node", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_attached_nodes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3614634198, - "arguments": [ - { - "name": "attached_nodes", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_attached_nodes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - } - ], - "properties": [ - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "bool", - "name": "tint_color_enabled", - "setter": "set_tint_color_enabled", - "getter": "is_tint_color_enabled" - }, - { - "type": "Color", - "name": "tint_color", - "setter": "set_tint_color", - "getter": "get_tint_color" - }, - { - "type": "bool", - "name": "autoshrink", - "setter": "set_autoshrink_enabled", - "getter": "is_autoshrink_enabled" - }, - { - "type": "PackedInt32Array", - "name": "attached_nodes", - "setter": "set_attached_nodes", - "getter": "get_attached_nodes" - } - ] - }, - { - "name": "VisualShaderNodeFresnel", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeGlobalExpression", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeExpression", - "api_type": "core" - }, - { - "name": "VisualShaderNodeGroupBase", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNodeResizableBase", - "api_type": "core", - "methods": [ - { - "name": "set_inputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "inputs", - "type": "String" - } - ] - }, - { - "name": "get_inputs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_outputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "outputs", - "type": "String" - } - ] - }, - { - "name": "get_outputs", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_valid_port_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "add_input_port", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "remove_input_port", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_port_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_input_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_input_ports", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_output_port", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2285447957, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "remove_output_port", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_output_port_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "has_output_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_output_ports", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_input_port_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_input_port_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_output_port_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "set_output_port_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3937882851, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - }, - { - "name": "type", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_free_input_port_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_free_output_port_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "VisualShaderNodeIf", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeInput", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_input_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_input_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_input_real_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "signals": [ - { - "name": "input_type_changed" - } - ], - "properties": [ - { - "type": "StringName", - "name": "input_name", - "setter": "set_input_name", - "getter": "get_input_name" - } - ] - }, - { - "name": "VisualShaderNodeIntConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "constant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeIntFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_ABS", - "value": 0 - }, - { - "name": "FUNC_NEGATE", - "value": 1 - }, - { - "name": "FUNC_SIGN", - "value": 2 - }, - { - "name": "FUNC_BITWISE_NOT", - "value": 3 - }, - { - "name": "FUNC_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 424195284, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeIntFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2753496911, - "return_value": { - "type": "enum::VisualShaderNodeIntFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeIntOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_ADD", - "value": 0 - }, - { - "name": "OP_SUB", - "value": 1 - }, - { - "name": "OP_MUL", - "value": 2 - }, - { - "name": "OP_DIV", - "value": 3 - }, - { - "name": "OP_MOD", - "value": 4 - }, - { - "name": "OP_MAX", - "value": 5 - }, - { - "name": "OP_MIN", - "value": 6 - }, - { - "name": "OP_BITWISE_AND", - "value": 7 - }, - { - "name": "OP_BITWISE_OR", - "value": 8 - }, - { - "name": "OP_BITWISE_XOR", - "value": 9 - }, - { - "name": "OP_BITWISE_LEFT_SHIFT", - "value": 10 - }, - { - "name": "OP_BITWISE_RIGHT_SHIFT", - "value": 11 - }, - { - "name": "OP_ENUM_SIZE", - "value": 12 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1677909323, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeIntOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1236987913, - "return_value": { - "type": "enum::VisualShaderNodeIntOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeIntParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "enums": [ - { - "name": "Hint", - "is_bitfield": false, - "values": [ - { - "name": "HINT_NONE", - "value": 0 - }, - { - "name": "HINT_RANGE", - "value": 1 - }, - { - "name": "HINT_RANGE_STEP", - "value": 2 - }, - { - "name": "HINT_ENUM", - "value": 3 - }, - { - "name": "HINT_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_hint", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2540512075, - "arguments": [ - { - "name": "hint", - "type": "enum::VisualShaderNodeIntParameter.Hint" - } - ] - }, - { - "name": "get_hint", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4250814924, - "return_value": { - "type": "enum::VisualShaderNodeIntParameter.Hint" - } - }, - { - "name": "set_min", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_min", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_max", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_step", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_step", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_enum_names", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "names", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_enum_names", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "hint", - "setter": "set_hint", - "getter": "get_hint" - }, - { - "type": "int", - "name": "min", - "setter": "set_min", - "getter": "get_min" - }, - { - "type": "int", - "name": "max", - "setter": "set_max", - "getter": "get_max" - }, - { - "type": "int", - "name": "step", - "setter": "set_step", - "getter": "get_step" - }, - { - "type": "PackedStringArray", - "name": "enum_names", - "setter": "set_enum_names", - "getter": "get_enum_names" - }, - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "int", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeIs", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_IS_INF", - "value": 0 - }, - { - "name": "FUNC_IS_NAN", - "value": 1 - }, - { - "name": "FUNC_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1438374690, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeIs.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 580678557, - "return_value": { - "type": "enum::VisualShaderNodeIs.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeLinearSceneDepth", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeMix", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_2D_SCALAR", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D_SCALAR", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_VECTOR_4D_SCALAR", - "value": 6 - }, - { - "name": "OP_TYPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3397501671, - "arguments": [ - { - "name": "op_type", - "type": "enum::VisualShaderNodeMix.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4013957297, - "return_value": { - "type": "enum::VisualShaderNodeMix.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeMultiplyAdd", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 3 - }, - { - "name": "OP_TYPE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1409862380, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeMultiplyAdd.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2823201991, - "return_value": { - "type": "enum::VisualShaderNodeMultiplyAdd.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeOuterProduct", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeOutput", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeParameter", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Qualifier", - "is_bitfield": false, - "values": [ - { - "name": "QUAL_NONE", - "value": 0 - }, - { - "name": "QUAL_GLOBAL", - "value": 1 - }, - { - "name": "QUAL_INSTANCE", - "value": 2 - }, - { - "name": "QUAL_INSTANCE_INDEX", - "value": 3 - }, - { - "name": "QUAL_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_parameter_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_parameter_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_qualifier", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1276489447, - "arguments": [ - { - "name": "qualifier", - "type": "enum::VisualShaderNodeParameter.Qualifier" - } - ] - }, - { - "name": "get_qualifier", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3558406205, - "return_value": { - "type": "enum::VisualShaderNodeParameter.Qualifier" - } - }, - { - "name": "set_instance_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "instance_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_instance_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "parameter_name", - "setter": "set_parameter_name", - "getter": "get_parameter_name" - }, - { - "type": "int", - "name": "qualifier", - "setter": "set_qualifier", - "getter": "get_qualifier" - }, - { - "type": "int", - "name": "instance_index", - "setter": "set_instance_index", - "getter": "get_instance_index" - } - ] - }, - { - "name": "VisualShaderNodeParameterRef", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_parameter_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_parameter_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "parameter_name", - "setter": "set_parameter_name", - "getter": "get_parameter_name" - }, - { - "type": "int", - "name": "param_type", - "setter": "_set_parameter_type", - "getter": "_get_parameter_type" - } - ] - }, - { - "name": "VisualShaderNodeParticleAccelerator", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_LINEAR", - "value": 0 - }, - { - "name": "MODE_RADIAL", - "value": 1 - }, - { - "name": "MODE_TANGENTIAL", - "value": 2 - }, - { - "name": "MODE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3457585749, - "arguments": [ - { - "name": "mode", - "type": "enum::VisualShaderNodeParticleAccelerator.Mode" - } - ] - }, - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2660365633, - "return_value": { - "type": "enum::VisualShaderNodeParticleAccelerator.Mode" - } - } - ], - "properties": [ - { - "type": "int", - "name": "mode", - "setter": "set_mode", - "getter": "get_mode" - } - ] - }, - { - "name": "VisualShaderNodeParticleBoxEmitter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParticleEmitter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeParticleConeVelocity", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeParticleEmit", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "EmitFlags", - "is_bitfield": false, - "values": [ - { - "name": "EMIT_FLAG_POSITION", - "value": 1 - }, - { - "name": "EMIT_FLAG_ROT_SCALE", - "value": 2 - }, - { - "name": "EMIT_FLAG_VELOCITY", - "value": 4 - }, - { - "name": "EMIT_FLAG_COLOR", - "value": 8 - }, - { - "name": "EMIT_FLAG_CUSTOM", - "value": 16 - } - ] - } - ], - "methods": [ - { - "name": "set_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3960756792, - "arguments": [ - { - "name": "flags", - "type": "enum::VisualShaderNodeParticleEmit.EmitFlags" - } - ] - }, - { - "name": "get_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 171277835, - "return_value": { - "type": "enum::VisualShaderNodeParticleEmit.EmitFlags" - } - } - ], - "properties": [ - { - "type": "int", - "name": "flags", - "setter": "set_flags", - "getter": "get_flags" - } - ] - }, - { - "name": "VisualShaderNodeParticleEmitter", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_mode_2d", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_mode_2d", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "mode_2d", - "setter": "set_mode_2d", - "getter": "is_mode_2d" - } - ] - }, - { - "name": "VisualShaderNodeParticleMeshEmitter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParticleEmitter", - "api_type": "core", - "methods": [ - { - "name": "set_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 194775623, - "arguments": [ - { - "name": "mesh", - "type": "Mesh" - } - ] - }, - { - "name": "get_mesh", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1808005922, - "return_value": { - "type": "Mesh" - } - }, - { - "name": "set_use_all_surfaces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_use_all_surfaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_surface_index", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "surface_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_surface_index", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "Mesh", - "name": "mesh", - "setter": "set_mesh", - "getter": "get_mesh" - }, - { - "type": "bool", - "name": "use_all_surfaces", - "setter": "set_use_all_surfaces", - "getter": "is_use_all_surfaces" - }, - { - "type": "int", - "name": "surface_index", - "setter": "set_surface_index", - "getter": "get_surface_index" - } - ] - }, - { - "name": "VisualShaderNodeParticleMultiplyByAxisAngle", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_degrees_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_degrees_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "degrees_mode", - "setter": "set_degrees_mode", - "getter": "is_degrees_mode" - } - ] - }, - { - "name": "VisualShaderNodeParticleOutput", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeOutput", - "api_type": "core" - }, - { - "name": "VisualShaderNodeParticleRandomness", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 3 - }, - { - "name": "OP_TYPE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2060089061, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeParticleRandomness.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3597061078, - "return_value": { - "type": "enum::VisualShaderNodeParticleRandomness.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeParticleRingEmitter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParticleEmitter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeParticleSphereEmitter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParticleEmitter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeProximityFade", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeRandomRange", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeRemap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_2D_SCALAR", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D_SCALAR", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_VECTOR_4D_SCALAR", - "value": 6 - }, - { - "name": "OP_TYPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1703697889, - "arguments": [ - { - "name": "op_type", - "type": "enum::VisualShaderNodeRemap.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1678380563, - "return_value": { - "type": "enum::VisualShaderNodeRemap.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeReroute", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "get_port_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1287173294, - "return_value": { - "type": "enum::VisualShaderNode.PortType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "port_type", - "setter": "_set_port_type", - "getter": "get_port_type" - } - ] - }, - { - "name": "VisualShaderNodeResizableBase", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "size", - "type": "Vector2" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "size", - "setter": "set_size", - "getter": "get_size" - } - ] - }, - { - "name": "VisualShaderNodeRotationByAxis", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeSDFRaymarch", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeSDFToScreenUV", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeSample3D", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Source", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_TEXTURE", - "value": 0 - }, - { - "name": "SOURCE_PORT", - "value": 1 - }, - { - "name": "SOURCE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3315130991, - "arguments": [ - { - "name": "value", - "type": "enum::VisualShaderNodeSample3D.Source" - } - ] - }, - { - "name": "get_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1079494121, - "return_value": { - "type": "enum::VisualShaderNodeSample3D.Source" - } - } - ], - "properties": [ - { - "type": "int", - "name": "source", - "setter": "set_source", - "getter": "get_source" - } - ] - }, - { - "name": "VisualShaderNodeScreenNormalWorldSpace", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeScreenUVToSDF", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeSmoothStep", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_2D_SCALAR", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D_SCALAR", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_VECTOR_4D_SCALAR", - "value": 6 - }, - { - "name": "OP_TYPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2427426148, - "arguments": [ - { - "name": "op_type", - "type": "enum::VisualShaderNodeSmoothStep.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 359640855, - "return_value": { - "type": "enum::VisualShaderNodeSmoothStep.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeStep", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_SCALAR", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_2D_SCALAR", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D_SCALAR", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_VECTOR_4D_SCALAR", - "value": 6 - }, - { - "name": "OP_TYPE_MAX", - "value": 7 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 715172489, - "arguments": [ - { - "name": "op_type", - "type": "enum::VisualShaderNodeStep.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3274022781, - "return_value": { - "type": "enum::VisualShaderNodeStep.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeSwitch", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_FLOAT", - "value": 0 - }, - { - "name": "OP_TYPE_INT", - "value": 1 - }, - { - "name": "OP_TYPE_UINT", - "value": 2 - }, - { - "name": "OP_TYPE_VECTOR_2D", - "value": 3 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 4 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 5 - }, - { - "name": "OP_TYPE_BOOLEAN", - "value": 6 - }, - { - "name": "OP_TYPE_TRANSFORM", - "value": 7 - }, - { - "name": "OP_TYPE_MAX", - "value": 8 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 510471861, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeSwitch.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2517845071, - "return_value": { - "type": "enum::VisualShaderNodeSwitch.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeTexture", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Source", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_TEXTURE", - "value": 0 - }, - { - "name": "SOURCE_SCREEN", - "value": 1 - }, - { - "name": "SOURCE_2D_TEXTURE", - "value": 2 - }, - { - "name": "SOURCE_2D_NORMAL", - "value": 3 - }, - { - "name": "SOURCE_DEPTH", - "value": 4 - }, - { - "name": "SOURCE_PORT", - "value": 5 - }, - { - "name": "SOURCE_3D_NORMAL", - "value": 6 - }, - { - "name": "SOURCE_ROUGHNESS", - "value": 7 - }, - { - "name": "SOURCE_MAX", - "value": 8 - } - ] - }, - { - "name": "TextureType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_DATA", - "value": 0 - }, - { - "name": "TYPE_COLOR", - "value": 1 - }, - { - "name": "TYPE_NORMAL_MAP", - "value": 2 - }, - { - "name": "TYPE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 905262939, - "arguments": [ - { - "name": "value", - "type": "enum::VisualShaderNodeTexture.Source" - } - ] - }, - { - "name": "get_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2896297444, - "return_value": { - "type": "enum::VisualShaderNodeTexture.Source" - } - }, - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4051416890, - "arguments": [ - { - "name": "value", - "type": "Texture2D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635182373, - "return_value": { - "type": "Texture2D" - } - }, - { - "name": "set_texture_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 986314081, - "arguments": [ - { - "name": "value", - "type": "enum::VisualShaderNodeTexture.TextureType" - } - ] - }, - { - "name": "get_texture_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3290430153, - "return_value": { - "type": "enum::VisualShaderNodeTexture.TextureType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "source", - "setter": "set_source", - "getter": "get_source" - }, - { - "type": "Texture2D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - }, - { - "type": "int", - "name": "texture_type", - "setter": "set_texture_type", - "getter": "get_texture_type" - } - ] - }, - { - "name": "VisualShaderNodeTexture2DArray", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeSample3D", - "api_type": "core", - "methods": [ - { - "name": "set_texture_array", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1278366092, - "hash_compatibility": [ - 2206200446 - ], - "arguments": [ - { - "name": "value", - "type": "TextureLayered" - } - ] - }, - { - "name": "get_texture_array", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3984243839, - "hash_compatibility": [ - 146117123 - ], - "return_value": { - "type": "TextureLayered" - } - } - ], - "properties": [ - { - "type": "Texture2DArray,CompressedTexture2DArray,PlaceholderTexture2DArray,Texture2DArrayRD", - "name": "texture_array", - "setter": "set_texture_array", - "getter": "get_texture_array" - } - ] - }, - { - "name": "VisualShaderNodeTexture2DArrayParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeTextureParameter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTexture2DParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeTextureParameter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTexture3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeSample3D", - "api_type": "core", - "methods": [ - { - "name": "set_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1188404210, - "arguments": [ - { - "name": "value", - "type": "Texture3D" - } - ] - }, - { - "name": "get_texture", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373985333, - "return_value": { - "type": "Texture3D" - } - } - ], - "properties": [ - { - "type": "Texture3D", - "name": "texture", - "setter": "set_texture", - "getter": "get_texture" - } - ] - }, - { - "name": "VisualShaderNodeTexture3DParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeTextureParameter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTextureParameter", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "enums": [ - { - "name": "TextureType", - "is_bitfield": false, - "values": [ - { - "name": "TYPE_DATA", - "value": 0 - }, - { - "name": "TYPE_COLOR", - "value": 1 - }, - { - "name": "TYPE_NORMAL_MAP", - "value": 2 - }, - { - "name": "TYPE_ANISOTROPY", - "value": 3 - }, - { - "name": "TYPE_MAX", - "value": 4 - } - ] - }, - { - "name": "ColorDefault", - "is_bitfield": false, - "values": [ - { - "name": "COLOR_DEFAULT_WHITE", - "value": 0 - }, - { - "name": "COLOR_DEFAULT_BLACK", - "value": 1 - }, - { - "name": "COLOR_DEFAULT_TRANSPARENT", - "value": 2 - }, - { - "name": "COLOR_DEFAULT_MAX", - "value": 3 - } - ] - }, - { - "name": "TextureFilter", - "is_bitfield": false, - "values": [ - { - "name": "FILTER_DEFAULT", - "value": 0 - }, - { - "name": "FILTER_NEAREST", - "value": 1 - }, - { - "name": "FILTER_LINEAR", - "value": 2 - }, - { - "name": "FILTER_NEAREST_MIPMAP", - "value": 3 - }, - { - "name": "FILTER_LINEAR_MIPMAP", - "value": 4 - }, - { - "name": "FILTER_NEAREST_MIPMAP_ANISOTROPIC", - "value": 5 - }, - { - "name": "FILTER_LINEAR_MIPMAP_ANISOTROPIC", - "value": 6 - }, - { - "name": "FILTER_MAX", - "value": 7 - } - ] - }, - { - "name": "TextureRepeat", - "is_bitfield": false, - "values": [ - { - "name": "REPEAT_DEFAULT", - "value": 0 - }, - { - "name": "REPEAT_ENABLED", - "value": 1 - }, - { - "name": "REPEAT_DISABLED", - "value": 2 - }, - { - "name": "REPEAT_MAX", - "value": 3 - } - ] - }, - { - "name": "TextureSource", - "is_bitfield": false, - "values": [ - { - "name": "SOURCE_NONE", - "value": 0 - }, - { - "name": "SOURCE_SCREEN", - "value": 1 - }, - { - "name": "SOURCE_DEPTH", - "value": 2 - }, - { - "name": "SOURCE_NORMAL_ROUGHNESS", - "value": 3 - }, - { - "name": "SOURCE_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_texture_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2227296876, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeTextureParameter.TextureType" - } - ] - }, - { - "name": "get_texture_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 367922070, - "return_value": { - "type": "enum::VisualShaderNodeTextureParameter.TextureType" - } - }, - { - "name": "set_color_default", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4217624432, - "arguments": [ - { - "name": "color", - "type": "enum::VisualShaderNodeTextureParameter.ColorDefault" - } - ] - }, - { - "name": "get_color_default", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3837060134, - "return_value": { - "type": "enum::VisualShaderNodeTextureParameter.ColorDefault" - } - }, - { - "name": "set_texture_filter", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2147684752, - "arguments": [ - { - "name": "filter", - "type": "enum::VisualShaderNodeTextureParameter.TextureFilter" - } - ] - }, - { - "name": "get_texture_filter", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4184490817, - "return_value": { - "type": "enum::VisualShaderNodeTextureParameter.TextureFilter" - } - }, - { - "name": "set_texture_repeat", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2036143070, - "arguments": [ - { - "name": "repeat", - "type": "enum::VisualShaderNodeTextureParameter.TextureRepeat" - } - ] - }, - { - "name": "get_texture_repeat", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1690132794, - "return_value": { - "type": "enum::VisualShaderNodeTextureParameter.TextureRepeat" - } - }, - { - "name": "set_texture_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1212687372, - "arguments": [ - { - "name": "source", - "type": "enum::VisualShaderNodeTextureParameter.TextureSource" - } - ] - }, - { - "name": "get_texture_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2039092262, - "return_value": { - "type": "enum::VisualShaderNodeTextureParameter.TextureSource" - } - } - ], - "properties": [ - { - "type": "int", - "name": "texture_type", - "setter": "set_texture_type", - "getter": "get_texture_type" - }, - { - "type": "int", - "name": "color_default", - "setter": "set_color_default", - "getter": "get_color_default" - }, - { - "type": "int", - "name": "texture_filter", - "setter": "set_texture_filter", - "getter": "get_texture_filter" - }, - { - "type": "int", - "name": "texture_repeat", - "setter": "set_texture_repeat", - "getter": "get_texture_repeat" - }, - { - "type": "int", - "name": "texture_source", - "setter": "set_texture_source", - "getter": "get_texture_source" - } - ] - }, - { - "name": "VisualShaderNodeTextureParameterTriplanar", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeTextureParameter", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTextureSDF", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTextureSDFNormal", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTransformCompose", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTransformConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "constant", - "type": "Transform3D" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - } - ], - "properties": [ - { - "type": "Transform3D", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeTransformDecompose", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeTransformFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_INVERSE", - "value": 0 - }, - { - "name": "FUNC_TRANSPOSE", - "value": 1 - }, - { - "name": "FUNC_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2900990409, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeTransformFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2839926569, - "return_value": { - "type": "enum::VisualShaderNodeTransformFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeTransformOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_AxB", - "value": 0 - }, - { - "name": "OP_BxA", - "value": 1 - }, - { - "name": "OP_AxB_COMP", - "value": 2 - }, - { - "name": "OP_BxA_COMP", - "value": 3 - }, - { - "name": "OP_ADD", - "value": 4 - }, - { - "name": "OP_A_MINUS_B", - "value": 5 - }, - { - "name": "OP_B_MINUS_A", - "value": 6 - }, - { - "name": "OP_A_DIV_B", - "value": 7 - }, - { - "name": "OP_B_DIV_A", - "value": 8 - }, - { - "name": "OP_MAX", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2287310733, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeTransformOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1238663601, - "return_value": { - "type": "enum::VisualShaderNodeTransformOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeTransformParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "value", - "type": "Transform3D" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "Transform3D", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeTransformVecMult", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_AxB", - "value": 0 - }, - { - "name": "OP_BxA", - "value": 1 - }, - { - "name": "OP_3x3_AxB", - "value": 2 - }, - { - "name": "OP_3x3_BxA", - "value": 3 - }, - { - "name": "OP_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1785665912, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeTransformVecMult.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1622088722, - "return_value": { - "type": "enum::VisualShaderNodeTransformVecMult.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeUIntConstant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "constant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeUIntFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_NEGATE", - "value": 0 - }, - { - "name": "FUNC_BITWISE_NOT", - "value": 1 - }, - { - "name": "FUNC_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2273148961, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeUIntFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4187123296, - "return_value": { - "type": "enum::VisualShaderNodeUIntFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeUIntOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_ADD", - "value": 0 - }, - { - "name": "OP_SUB", - "value": 1 - }, - { - "name": "OP_MUL", - "value": 2 - }, - { - "name": "OP_DIV", - "value": 3 - }, - { - "name": "OP_MOD", - "value": 4 - }, - { - "name": "OP_MAX", - "value": 5 - }, - { - "name": "OP_MIN", - "value": 6 - }, - { - "name": "OP_BITWISE_AND", - "value": 7 - }, - { - "name": "OP_BITWISE_OR", - "value": 8 - }, - { - "name": "OP_BITWISE_XOR", - "value": 9 - }, - { - "name": "OP_BITWISE_LEFT_SHIFT", - "value": 10 - }, - { - "name": "OP_BITWISE_RIGHT_SHIFT", - "value": 11 - }, - { - "name": "OP_ENUM_SIZE", - "value": 12 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3463048345, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeUIntOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 256631461, - "return_value": { - "type": "enum::VisualShaderNodeUIntOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeUIntParameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "int", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeUVFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_PANNING", - "value": 0 - }, - { - "name": "FUNC_SCALING", - "value": 1 - }, - { - "name": "FUNC_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 765791915, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeUVFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3772902164, - "return_value": { - "type": "enum::VisualShaderNodeUVFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeUVPolarCoord", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVarying", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "methods": [ - { - "name": "set_varying_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_varying_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_varying_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3565867981, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShader.VaryingType" - } - ] - }, - { - "name": "get_varying_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 523183580, - "return_value": { - "type": "enum::VisualShader.VaryingType" - } - } - ], - "properties": [ - { - "type": "StringName", - "name": "varying_name", - "setter": "set_varying_name", - "getter": "get_varying_name" - }, - { - "type": "int", - "name": "varying_type", - "setter": "set_varying_type", - "getter": "get_varying_type" - } - ] - }, - { - "name": "VisualShaderNodeVaryingGetter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVarying", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVaryingSetter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVarying", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVec2Constant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "constant", - "type": "Vector2" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeVec2Parameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "Vector2", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeVec3Constant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "constant", - "type": "Vector3" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "Vector3", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - } - ] - }, - { - "name": "VisualShaderNodeVec3Parameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "value", - "type": "Vector3" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "Vector3", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeVec4Constant", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeConstant", - "api_type": "core", - "methods": [ - { - "name": "set_constant", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1727505552, - "arguments": [ - { - "name": "constant", - "type": "Quaternion" - } - ] - }, - { - "name": "get_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1222331677, - "return_value": { - "type": "Quaternion" - } - } - ], - "properties": [ - { - "type": "Quaternion", - "name": "constant", - "setter": "set_constant", - "getter": "get_constant" - }, - { - "type": "Vector4", - "name": "constant_v4", - "setter": "_set_constant_v4", - "getter": "_get_constant_v4" - } - ] - }, - { - "name": "VisualShaderNodeVec4Parameter", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeParameter", - "api_type": "core", - "methods": [ - { - "name": "set_default_value_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_default_value_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_default_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 643568085, - "arguments": [ - { - "name": "value", - "type": "Vector4" - } - ] - }, - { - "name": "get_default_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2435802345, - "return_value": { - "type": "Vector4" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "default_value_enabled", - "setter": "set_default_value_enabled", - "getter": "is_default_value_enabled" - }, - { - "type": "Vector4", - "name": "default_value", - "setter": "set_default_value", - "getter": "get_default_value" - } - ] - }, - { - "name": "VisualShaderNodeVectorBase", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "VisualShaderNode", - "api_type": "core", - "enums": [ - { - "name": "OpType", - "is_bitfield": false, - "values": [ - { - "name": "OP_TYPE_VECTOR_2D", - "value": 0 - }, - { - "name": "OP_TYPE_VECTOR_3D", - "value": 1 - }, - { - "name": "OP_TYPE_VECTOR_4D", - "value": 2 - }, - { - "name": "OP_TYPE_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_op_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1692596998, - "arguments": [ - { - "name": "type", - "type": "enum::VisualShaderNodeVectorBase.OpType" - } - ] - }, - { - "name": "get_op_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2568738462, - "return_value": { - "type": "enum::VisualShaderNodeVectorBase.OpType" - } - } - ], - "properties": [ - { - "type": "int", - "name": "op_type", - "setter": "set_op_type", - "getter": "get_op_type" - } - ] - }, - { - "name": "VisualShaderNodeVectorCompose", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVectorDecompose", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVectorDistance", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVectorFunc", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core", - "enums": [ - { - "name": "Function", - "is_bitfield": false, - "values": [ - { - "name": "FUNC_NORMALIZE", - "value": 0 - }, - { - "name": "FUNC_SATURATE", - "value": 1 - }, - { - "name": "FUNC_NEGATE", - "value": 2 - }, - { - "name": "FUNC_RECIPROCAL", - "value": 3 - }, - { - "name": "FUNC_ABS", - "value": 4 - }, - { - "name": "FUNC_ACOS", - "value": 5 - }, - { - "name": "FUNC_ACOSH", - "value": 6 - }, - { - "name": "FUNC_ASIN", - "value": 7 - }, - { - "name": "FUNC_ASINH", - "value": 8 - }, - { - "name": "FUNC_ATAN", - "value": 9 - }, - { - "name": "FUNC_ATANH", - "value": 10 - }, - { - "name": "FUNC_CEIL", - "value": 11 - }, - { - "name": "FUNC_COS", - "value": 12 - }, - { - "name": "FUNC_COSH", - "value": 13 - }, - { - "name": "FUNC_DEGREES", - "value": 14 - }, - { - "name": "FUNC_EXP", - "value": 15 - }, - { - "name": "FUNC_EXP2", - "value": 16 - }, - { - "name": "FUNC_FLOOR", - "value": 17 - }, - { - "name": "FUNC_FRACT", - "value": 18 - }, - { - "name": "FUNC_INVERSE_SQRT", - "value": 19 - }, - { - "name": "FUNC_LOG", - "value": 20 - }, - { - "name": "FUNC_LOG2", - "value": 21 - }, - { - "name": "FUNC_RADIANS", - "value": 22 - }, - { - "name": "FUNC_ROUND", - "value": 23 - }, - { - "name": "FUNC_ROUNDEVEN", - "value": 24 - }, - { - "name": "FUNC_SIGN", - "value": 25 - }, - { - "name": "FUNC_SIN", - "value": 26 - }, - { - "name": "FUNC_SINH", - "value": 27 - }, - { - "name": "FUNC_SQRT", - "value": 28 - }, - { - "name": "FUNC_TAN", - "value": 29 - }, - { - "name": "FUNC_TANH", - "value": 30 - }, - { - "name": "FUNC_TRUNC", - "value": 31 - }, - { - "name": "FUNC_ONEMINUS", - "value": 32 - }, - { - "name": "FUNC_MAX", - "value": 33 - } - ] - } - ], - "methods": [ - { - "name": "set_function", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 629964457, - "arguments": [ - { - "name": "func", - "type": "enum::VisualShaderNodeVectorFunc.Function" - } - ] - }, - { - "name": "get_function", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4047776843, - "return_value": { - "type": "enum::VisualShaderNodeVectorFunc.Function" - } - } - ], - "properties": [ - { - "type": "int", - "name": "function", - "setter": "set_function", - "getter": "get_function" - } - ] - }, - { - "name": "VisualShaderNodeVectorLen", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeVectorOp", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core", - "enums": [ - { - "name": "Operator", - "is_bitfield": false, - "values": [ - { - "name": "OP_ADD", - "value": 0 - }, - { - "name": "OP_SUB", - "value": 1 - }, - { - "name": "OP_MUL", - "value": 2 - }, - { - "name": "OP_DIV", - "value": 3 - }, - { - "name": "OP_MOD", - "value": 4 - }, - { - "name": "OP_POW", - "value": 5 - }, - { - "name": "OP_MAX", - "value": 6 - }, - { - "name": "OP_MIN", - "value": 7 - }, - { - "name": "OP_CROSS", - "value": 8 - }, - { - "name": "OP_ATAN2", - "value": 9 - }, - { - "name": "OP_REFLECT", - "value": 10 - }, - { - "name": "OP_STEP", - "value": 11 - }, - { - "name": "OP_ENUM_SIZE", - "value": 12 - } - ] - } - ], - "methods": [ - { - "name": "set_operator", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3371507302, - "arguments": [ - { - "name": "op", - "type": "enum::VisualShaderNodeVectorOp.Operator" - } - ] - }, - { - "name": "get_operator", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 11793929, - "return_value": { - "type": "enum::VisualShaderNodeVectorOp.Operator" - } - } - ], - "properties": [ - { - "type": "int", - "name": "operator", - "setter": "set_operator", - "getter": "get_operator" - } - ] - }, - { - "name": "VisualShaderNodeVectorRefract", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNodeVectorBase", - "api_type": "core" - }, - { - "name": "VisualShaderNodeWorldPositionFromDepth", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "VisualShaderNode", - "api_type": "core" - }, - { - "name": "VoxelGI", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "VisualInstance3D", - "api_type": "core", - "enums": [ - { - "name": "Subdiv", - "is_bitfield": false, - "values": [ - { - "name": "SUBDIV_64", - "value": 0 - }, - { - "name": "SUBDIV_128", - "value": 1 - }, - { - "name": "SUBDIV_256", - "value": 2 - }, - { - "name": "SUBDIV_512", - "value": 3 - }, - { - "name": "SUBDIV_MAX", - "value": 4 - } - ] - } - ], - "methods": [ - { - "name": "set_probe_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1637849675, - "arguments": [ - { - "name": "data", - "type": "VoxelGIData" - } - ] - }, - { - "name": "get_probe_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1730645405, - "return_value": { - "type": "VoxelGIData" - } - }, - { - "name": "set_subdiv", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240898472, - "arguments": [ - { - "name": "subdiv", - "type": "enum::VoxelGI.Subdiv" - } - ] - }, - { - "name": "get_subdiv", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4261647950, - "return_value": { - "type": "enum::VoxelGI.Subdiv" - } - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "size", - "type": "Vector3" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817810567, - "arguments": [ - { - "name": "camera_attributes", - "type": "CameraAttributes" - } - ] - }, - { - "name": "get_camera_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3921283215, - "return_value": { - "type": "CameraAttributes" - } - }, - { - "name": "bake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2781551026, - "arguments": [ - { - "name": "from_node", - "type": "Node", - "default_value": "null" - }, - { - "name": "create_visual_debug", - "type": "bool", - "default_value": "false" - } - ] - }, - { - "name": "debug_bake", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "int", - "name": "subdiv", - "setter": "set_subdiv", - "getter": "get_subdiv" - }, - { - "type": "Vector3", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "CameraAttributesPractical,CameraAttributesPhysical", - "name": "camera_attributes", - "setter": "set_camera_attributes", - "getter": "get_camera_attributes" - }, - { - "type": "VoxelGIData", - "name": "data", - "setter": "set_probe_data", - "getter": "get_probe_data" - } - ] - }, - { - "name": "VoxelGIData", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "allocate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4041601946, - "arguments": [ - { - "name": "to_cell_xform", - "type": "Transform3D" - }, - { - "name": "aabb", - "type": "AABB" - }, - { - "name": "octree_size", - "type": "Vector3" - }, - { - "name": "octree_cells", - "type": "PackedByteArray" - }, - { - "name": "data_cells", - "type": "PackedByteArray" - }, - { - "name": "distance_field", - "type": "PackedByteArray" - }, - { - "name": "level_counts", - "type": "PackedInt32Array" - } - ] - }, - { - "name": "get_bounds", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1068685055, - "return_value": { - "type": "AABB" - } - }, - { - "name": "get_octree_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_to_cell_xform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_octree_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "get_data_cells", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2362200018, - "return_value": { - "type": "PackedByteArray" - } - }, - { - "name": "get_level_counts", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1930428628, - "return_value": { - "type": "PackedInt32Array" - } - }, - { - "name": "set_dynamic_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "dynamic_range", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_dynamic_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_energy", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "energy", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_energy", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_normal_bias", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "bias", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_normal_bias", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_propagation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "propagation", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_propagation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_interior", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "interior", - "type": "bool" - } - ] - }, - { - "name": "is_interior", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_two_bounces", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_two_bounces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "dynamic_range", - "setter": "set_dynamic_range", - "getter": "get_dynamic_range" - }, - { - "type": "float", - "name": "energy", - "setter": "set_energy", - "getter": "get_energy" - }, - { - "type": "float", - "name": "bias", - "setter": "set_bias", - "getter": "get_bias" - }, - { - "type": "float", - "name": "normal_bias", - "setter": "set_normal_bias", - "getter": "get_normal_bias" - }, - { - "type": "float", - "name": "propagation", - "setter": "set_propagation", - "getter": "get_propagation" - }, - { - "type": "bool", - "name": "use_two_bounces", - "setter": "set_use_two_bounces", - "getter": "is_using_two_bounces" - }, - { - "type": "bool", - "name": "interior", - "setter": "set_interior", - "getter": "is_interior" - } - ] - }, - { - "name": "WeakRef", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_ref", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1214101251, - "return_value": { - "type": "Variant" - } - } - ] - }, - { - "name": "WebRTCDataChannel", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "PacketPeer", - "api_type": "core", - "enums": [ - { - "name": "WriteMode", - "is_bitfield": false, - "values": [ - { - "name": "WRITE_MODE_TEXT", - "value": 0 - }, - { - "name": "WRITE_MODE_BINARY", - "value": 1 - } - ] - }, - { - "name": "ChannelState", - "is_bitfield": false, - "values": [ - { - "name": "STATE_CONNECTING", - "value": 0 - }, - { - "name": "STATE_OPEN", - "value": 1 - }, - { - "name": "STATE_CLOSING", - "value": 2 - }, - { - "name": "STATE_CLOSED", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "was_string_packet", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_write_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1999768052, - "arguments": [ - { - "name": "write_mode", - "type": "enum::WebRTCDataChannel.WriteMode" - } - ] - }, - { - "name": "get_write_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2848495172, - "return_value": { - "type": "enum::WebRTCDataChannel.WriteMode" - } - }, - { - "name": "get_ready_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3501143017, - "return_value": { - "type": "enum::WebRTCDataChannel.ChannelState" - } - }, - { - "name": "get_label", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_ordered", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_max_packet_life_time", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_max_retransmits", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_protocol", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_negotiated", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_buffered_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "int", - "name": "write_mode", - "setter": "set_write_mode", - "getter": "get_write_mode" - } - ] - }, - { - "name": "WebRTCDataChannelExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "WebRTCDataChannel", - "api_type": "core", - "methods": [ - { - "name": "_get_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "r_buffer", - "type": "const uint8_t **" - }, - { - "name": "r_buffer_size", - "type": "int32_t*" - } - ] - }, - { - "name": "_put_packet", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3099858825, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "const uint8_t*" - }, - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "_get_available_packet_count", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_max_packet_size", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_poll", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "_close", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_set_write_mode", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1999768052, - "arguments": [ - { - "name": "write_mode", - "type": "enum::WebRTCDataChannel.WriteMode" - } - ] - }, - { - "name": "_get_write_mode", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2848495172, - "return_value": { - "type": "enum::WebRTCDataChannel.WriteMode" - } - }, - { - "name": "_was_string_packet", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_ready_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3501143017, - "return_value": { - "type": "enum::WebRTCDataChannel.ChannelState" - } - }, - { - "name": "_get_label", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_is_ordered", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_id", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_max_packet_life_time", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_max_retransmits", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_protocol", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "_is_negotiated", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_get_buffered_amount", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ] - }, - { - "name": "WebRTCMultiplayerPeer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerPeer", - "api_type": "core", - "methods": [ - { - "name": "create_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2865356025, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "channels_config", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "create_client", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2641732907, - "hash_compatibility": [ - 1777354631 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "channels_config", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "create_mesh", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2641732907, - "hash_compatibility": [ - 1777354631 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "channels_config", - "type": "Array", - "default_value": "[]" - } - ] - }, - { - "name": "add_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4078953270, - "hash_compatibility": [ - 2555866323 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "peer", - "type": "WebRTCPeerConnection" - }, - { - "name": "peer_id", - "type": "int", - "meta": "int32" - }, - { - "name": "unreliable_lifetime", - "type": "int", - "meta": "int32", - "default_value": "1" - } - ] - }, - { - "name": "remove_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3067735520, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_peer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3554694381, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_peers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - } - ] - }, - { - "name": "WebRTCPeerConnection", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ConnectionState", - "is_bitfield": false, - "values": [ - { - "name": "STATE_NEW", - "value": 0 - }, - { - "name": "STATE_CONNECTING", - "value": 1 - }, - { - "name": "STATE_CONNECTED", - "value": 2 - }, - { - "name": "STATE_DISCONNECTED", - "value": 3 - }, - { - "name": "STATE_FAILED", - "value": 4 - }, - { - "name": "STATE_CLOSED", - "value": 5 - } - ] - }, - { - "name": "GatheringState", - "is_bitfield": false, - "values": [ - { - "name": "GATHERING_STATE_NEW", - "value": 0 - }, - { - "name": "GATHERING_STATE_GATHERING", - "value": 1 - }, - { - "name": "GATHERING_STATE_COMPLETE", - "value": 2 - } - ] - }, - { - "name": "SignalingState", - "is_bitfield": false, - "values": [ - { - "name": "SIGNALING_STATE_STABLE", - "value": 0 - }, - { - "name": "SIGNALING_STATE_HAVE_LOCAL_OFFER", - "value": 1 - }, - { - "name": "SIGNALING_STATE_HAVE_REMOTE_OFFER", - "value": 2 - }, - { - "name": "SIGNALING_STATE_HAVE_LOCAL_PRANSWER", - "value": 3 - }, - { - "name": "SIGNALING_STATE_HAVE_REMOTE_PRANSWER", - "value": 4 - }, - { - "name": "SIGNALING_STATE_CLOSED", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "set_default_extension", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "extension_class", - "type": "StringName" - } - ] - }, - { - "name": "initialize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2625064318, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "configuration", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "create_data_channel", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1288557393, - "hash_compatibility": [ - 3997447457 - ], - "return_value": { - "type": "WebRTCDataChannel" - }, - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "options", - "type": "Dictionary", - "default_value": "{}" - } - ] - }, - { - "name": "create_offer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "set_local_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "sdp", - "type": "String" - } - ] - }, - { - "name": "set_remote_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "sdp", - "type": "String" - } - ] - }, - { - "name": "add_ice_candidate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3958950400, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "media", - "type": "String" - }, - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_connection_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2275710506, - "return_value": { - "type": "enum::WebRTCPeerConnection.ConnectionState" - } - }, - { - "name": "get_gathering_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4262591401, - "return_value": { - "type": "enum::WebRTCPeerConnection.GatheringState" - } - }, - { - "name": "get_signaling_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3342956226, - "return_value": { - "type": "enum::WebRTCPeerConnection.SignalingState" - } - } - ], - "signals": [ - { - "name": "session_description_created", - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "sdp", - "type": "String" - } - ] - }, - { - "name": "ice_candidate_created", - "arguments": [ - { - "name": "media", - "type": "String" - }, - { - "name": "index", - "type": "int" - }, - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "data_channel_received", - "arguments": [ - { - "name": "channel", - "type": "WebRTCDataChannel" - } - ] - } - ] - }, - { - "name": "WebRTCPeerConnectionExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "WebRTCPeerConnection", - "api_type": "core", - "methods": [ - { - "name": "_get_connection_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 2275710506, - "return_value": { - "type": "enum::WebRTCPeerConnection.ConnectionState" - } - }, - { - "name": "_get_gathering_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4262591401, - "return_value": { - "type": "enum::WebRTCPeerConnection.GatheringState" - } - }, - { - "name": "_get_signaling_state", - "is_const": true, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3342956226, - "return_value": { - "type": "enum::WebRTCPeerConnection.SignalingState" - } - }, - { - "name": "_initialize", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 1494659981, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "config", - "type": "Dictionary" - } - ] - }, - { - "name": "_create_data_channel", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 4111292546, - "return_value": { - "type": "WebRTCDataChannel" - }, - "arguments": [ - { - "name": "label", - "type": "String" - }, - { - "name": "config", - "type": "Dictionary" - } - ] - }, - { - "name": "_create_offer", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "_set_remote_description", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "sdp", - "type": "String" - } - ] - }, - { - "name": "_set_local_description", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 852856452, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "type", - "type": "String" - }, - { - "name": "sdp", - "type": "String" - } - ] - }, - { - "name": "_add_ice_candidate", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3958950400, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "sdp_mid_name", - "type": "String" - }, - { - "name": "sdp_mline_index", - "type": "int", - "meta": "int32" - }, - { - "name": "sdp_name", - "type": "String" - } - ] - }, - { - "name": "_poll", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "_close", - "is_const": false, - "is_static": false, - "is_required": true, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - } - ] - }, - { - "name": "WebSocketMultiplayerPeer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "MultiplayerPeer", - "api_type": "core", - "methods": [ - { - "name": "create_client", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1966198364, - "hash_compatibility": [ - 3097527179 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "url", - "type": "String" - }, - { - "name": "tls_client_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "create_server", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2400822951, - "hash_compatibility": [ - 337374795 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "port", - "type": "int", - "meta": "int32" - }, - { - "name": "bind_address", - "type": "String", - "default_value": "\"*\"" - }, - { - "name": "tls_server_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "get_peer", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1381378851, - "return_value": { - "type": "WebSocketPeer" - }, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_peer_address", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_peer_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_supported_protocols", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_supported_protocols", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "protocols", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_handshake_headers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_handshake_headers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "protocols", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_inbound_buffer_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_inbound_buffer_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outbound_buffer_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outbound_buffer_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_handshake_timeout", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_handshake_timeout", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "timeout", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_max_queued_packets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "max_queued_packets", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_queued_packets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - } - ], - "properties": [ - { - "type": "PackedStringArray", - "name": "supported_protocols", - "setter": "set_supported_protocols", - "getter": "get_supported_protocols" - }, - { - "type": "PackedStringArray", - "name": "handshake_headers", - "setter": "set_handshake_headers", - "getter": "get_handshake_headers" - }, - { - "type": "int", - "name": "inbound_buffer_size", - "setter": "set_inbound_buffer_size", - "getter": "get_inbound_buffer_size" - }, - { - "type": "int", - "name": "outbound_buffer_size", - "setter": "set_outbound_buffer_size", - "getter": "get_outbound_buffer_size" - }, - { - "type": "float", - "name": "handshake_timeout", - "setter": "set_handshake_timeout", - "getter": "get_handshake_timeout" - }, - { - "type": "int", - "name": "max_queued_packets", - "setter": "set_max_queued_packets", - "getter": "get_max_queued_packets" - } - ] - }, - { - "name": "WebSocketPeer", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "PacketPeer", - "api_type": "core", - "enums": [ - { - "name": "WriteMode", - "is_bitfield": false, - "values": [ - { - "name": "WRITE_MODE_TEXT", - "value": 0 - }, - { - "name": "WRITE_MODE_BINARY", - "value": 1 - } - ] - }, - { - "name": "State", - "is_bitfield": false, - "values": [ - { - "name": "STATE_CONNECTING", - "value": 0 - }, - { - "name": "STATE_OPEN", - "value": 1 - }, - { - "name": "STATE_CLOSING", - "value": 2 - }, - { - "name": "STATE_CLOSED", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "connect_to_url", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1966198364, - "hash_compatibility": [ - 3097527179 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "url", - "type": "String" - }, - { - "name": "tls_client_options", - "type": "TLSOptions", - "default_value": "null" - } - ] - }, - { - "name": "accept_stream", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 255125695, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "stream", - "type": "StreamPeer" - } - ] - }, - { - "name": "send", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2780360567, - "hash_compatibility": [ - 3440492527 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "message", - "type": "PackedByteArray" - }, - { - "name": "write_mode", - "type": "enum::WebSocketPeer.WriteMode", - "default_value": "1" - } - ] - }, - { - "name": "send_text", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "message", - "type": "String" - } - ] - }, - { - "name": "was_string_packet", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "poll", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1047156615, - "arguments": [ - { - "name": "code", - "type": "int", - "meta": "int32", - "default_value": "1000" - }, - { - "name": "reason", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "get_connected_host", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_connected_port", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint16" - } - }, - { - "name": "get_selected_protocol", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_requested_url", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_no_delay", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_current_outbound_buffered_amount", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_ready_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 346482985, - "return_value": { - "type": "enum::WebSocketPeer.State" - } - }, - { - "name": "get_close_code", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_close_reason", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_supported_protocols", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_supported_protocols", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "protocols", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_handshake_headers", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "set_handshake_headers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "protocols", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_inbound_buffer_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_inbound_buffer_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_outbound_buffer_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_outbound_buffer_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_max_queued_packets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "buffer_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_max_queued_packets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_heartbeat_interval", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "interval", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_heartbeat_interval", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - } - ], - "properties": [ - { - "type": "PackedStringArray", - "name": "supported_protocols", - "setter": "set_supported_protocols", - "getter": "get_supported_protocols" - }, - { - "type": "PackedStringArray", - "name": "handshake_headers", - "setter": "set_handshake_headers", - "getter": "get_handshake_headers" - }, - { - "type": "int", - "name": "inbound_buffer_size", - "setter": "set_inbound_buffer_size", - "getter": "get_inbound_buffer_size" - }, - { - "type": "int", - "name": "outbound_buffer_size", - "setter": "set_outbound_buffer_size", - "getter": "get_outbound_buffer_size" - }, - { - "type": "int", - "name": "max_queued_packets", - "setter": "set_max_queued_packets", - "getter": "get_max_queued_packets" - }, - { - "type": "int", - "name": "heartbeat_interval", - "setter": "set_heartbeat_interval", - "getter": "get_heartbeat_interval" - } - ] - }, - { - "name": "WebXRInterface", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "XRInterface", - "api_type": "core", - "enums": [ - { - "name": "TargetRayMode", - "is_bitfield": false, - "values": [ - { - "name": "TARGET_RAY_MODE_UNKNOWN", - "value": 0 - }, - { - "name": "TARGET_RAY_MODE_GAZE", - "value": 1 - }, - { - "name": "TARGET_RAY_MODE_TRACKED_POINTER", - "value": 2 - }, - { - "name": "TARGET_RAY_MODE_SCREEN", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "is_session_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "session_mode", - "type": "String" - } - ] - }, - { - "name": "set_session_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "session_mode", - "type": "String" - } - ] - }, - { - "name": "get_session_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_required_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "required_features", - "type": "String" - } - ] - }, - { - "name": "get_required_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_optional_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "optional_features", - "type": "String" - } - ] - }, - { - "name": "get_optional_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_reference_space_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_enabled_features", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_requested_reference_space_types", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "requested_reference_space_types", - "type": "String" - } - ] - }, - { - "name": "get_requested_reference_space_types", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "is_input_source_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "input_source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_source_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 399776966, - "hash_compatibility": [ - 636011756 - ], - "return_value": { - "type": "XRControllerTracker" - }, - "arguments": [ - { - "name": "input_source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_input_source_target_ray_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2852387453, - "return_value": { - "type": "enum::WebXRInterface.TargetRayMode" - }, - "arguments": [ - { - "name": "input_source_id", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_visibility_state", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_display_refresh_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_display_refresh_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "refresh_rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_available_display_refresh_rates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "signals": [ - { - "name": "session_supported", - "arguments": [ - { - "name": "session_mode", - "type": "String" - }, - { - "name": "supported", - "type": "bool" - } - ] - }, - { - "name": "session_started" - }, - { - "name": "session_ended" - }, - { - "name": "session_failed", - "arguments": [ - { - "name": "message", - "type": "String" - } - ] - }, - { - "name": "selectstart", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "select", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "selectend", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "squeezestart", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "squeeze", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "squeezeend", - "arguments": [ - { - "name": "input_source_id", - "type": "int" - } - ] - }, - { - "name": "visibility_state_changed" - }, - { - "name": "reference_space_reset" - }, - { - "name": "display_refresh_rate_changed" - } - ], - "properties": [ - { - "type": "String", - "name": "session_mode", - "setter": "set_session_mode", - "getter": "get_session_mode" - }, - { - "type": "String", - "name": "required_features", - "setter": "set_required_features", - "getter": "get_required_features" - }, - { - "type": "String", - "name": "optional_features", - "setter": "set_optional_features", - "getter": "get_optional_features" - }, - { - "type": "String", - "name": "requested_reference_space_types", - "setter": "set_requested_reference_space_types", - "getter": "get_requested_reference_space_types" - }, - { - "type": "String", - "name": "reference_space_type", - "getter": "get_reference_space_type" - }, - { - "type": "String", - "name": "enabled_features", - "getter": "get_enabled_features" - }, - { - "type": "String", - "name": "visibility_state", - "getter": "get_visibility_state" - } - ] - }, - { - "name": "Window", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Viewport", - "api_type": "core", - "constants": [ - { - "name": "NOTIFICATION_VISIBILITY_CHANGED", - "value": 30 - }, - { - "name": "NOTIFICATION_THEME_CHANGED", - "value": 32 - } - ], - "enums": [ - { - "name": "Mode", - "is_bitfield": false, - "values": [ - { - "name": "MODE_WINDOWED", - "value": 0 - }, - { - "name": "MODE_MINIMIZED", - "value": 1 - }, - { - "name": "MODE_MAXIMIZED", - "value": 2 - }, - { - "name": "MODE_FULLSCREEN", - "value": 3 - }, - { - "name": "MODE_EXCLUSIVE_FULLSCREEN", - "value": 4 - } - ] - }, - { - "name": "Flags", - "is_bitfield": false, - "values": [ - { - "name": "FLAG_RESIZE_DISABLED", - "value": 0 - }, - { - "name": "FLAG_BORDERLESS", - "value": 1 - }, - { - "name": "FLAG_ALWAYS_ON_TOP", - "value": 2 - }, - { - "name": "FLAG_TRANSPARENT", - "value": 3 - }, - { - "name": "FLAG_NO_FOCUS", - "value": 4 - }, - { - "name": "FLAG_POPUP", - "value": 5 - }, - { - "name": "FLAG_EXTEND_TO_TITLE", - "value": 6 - }, - { - "name": "FLAG_MOUSE_PASSTHROUGH", - "value": 7 - }, - { - "name": "FLAG_SHARP_CORNERS", - "value": 8 - }, - { - "name": "FLAG_EXCLUDE_FROM_CAPTURE", - "value": 9 - }, - { - "name": "FLAG_POPUP_WM_HINT", - "value": 10 - }, - { - "name": "FLAG_MINIMIZE_DISABLED", - "value": 11 - }, - { - "name": "FLAG_MAXIMIZE_DISABLED", - "value": 12 - }, - { - "name": "FLAG_MAX", - "value": 13 - } - ] - }, - { - "name": "ContentScaleMode", - "is_bitfield": false, - "values": [ - { - "name": "CONTENT_SCALE_MODE_DISABLED", - "value": 0 - }, - { - "name": "CONTENT_SCALE_MODE_CANVAS_ITEMS", - "value": 1 - }, - { - "name": "CONTENT_SCALE_MODE_VIEWPORT", - "value": 2 - } - ] - }, - { - "name": "ContentScaleAspect", - "is_bitfield": false, - "values": [ - { - "name": "CONTENT_SCALE_ASPECT_IGNORE", - "value": 0 - }, - { - "name": "CONTENT_SCALE_ASPECT_KEEP", - "value": 1 - }, - { - "name": "CONTENT_SCALE_ASPECT_KEEP_WIDTH", - "value": 2 - }, - { - "name": "CONTENT_SCALE_ASPECT_KEEP_HEIGHT", - "value": 3 - }, - { - "name": "CONTENT_SCALE_ASPECT_EXPAND", - "value": 4 - } - ] - }, - { - "name": "ContentScaleStretch", - "is_bitfield": false, - "values": [ - { - "name": "CONTENT_SCALE_STRETCH_FRACTIONAL", - "value": 0 - }, - { - "name": "CONTENT_SCALE_STRETCH_INTEGER", - "value": 1 - } - ] - }, - { - "name": "LayoutDirection", - "is_bitfield": false, - "values": [ - { - "name": "LAYOUT_DIRECTION_INHERITED", - "value": 0 - }, - { - "name": "LAYOUT_DIRECTION_APPLICATION_LOCALE", - "value": 1 - }, - { - "name": "LAYOUT_DIRECTION_LTR", - "value": 2 - }, - { - "name": "LAYOUT_DIRECTION_RTL", - "value": 3 - }, - { - "name": "LAYOUT_DIRECTION_SYSTEM_LOCALE", - "value": 4 - }, - { - "name": "LAYOUT_DIRECTION_MAX", - "value": 5 - }, - { - "name": "LAYOUT_DIRECTION_LOCALE", - "value": 1 - } - ] - }, - { - "name": "WindowInitialPosition", - "is_bitfield": false, - "values": [ - { - "name": "WINDOW_INITIAL_POSITION_ABSOLUTE", - "value": 0 - }, - { - "name": "WINDOW_INITIAL_POSITION_CENTER_PRIMARY_SCREEN", - "value": 1 - }, - { - "name": "WINDOW_INITIAL_POSITION_CENTER_MAIN_WINDOW_SCREEN", - "value": 2 - }, - { - "name": "WINDOW_INITIAL_POSITION_CENTER_OTHER_SCREEN", - "value": 3 - }, - { - "name": "WINDOW_INITIAL_POSITION_CENTER_SCREEN_WITH_MOUSE_FOCUS", - "value": 4 - }, - { - "name": "WINDOW_INITIAL_POSITION_CENTER_SCREEN_WITH_KEYBOARD_FOCUS", - "value": 5 - } - ] - } - ], - "methods": [ - { - "name": "_get_contents_minimum_size", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_title", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "title", - "type": "String" - } - ] - }, - { - "name": "get_title", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_initial_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4084468099, - "arguments": [ - { - "name": "initial_position", - "type": "enum::Window.WindowInitialPosition" - } - ] - }, - { - "name": "get_initial_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4294066647, - "return_value": { - "type": "enum::Window.WindowInitialPosition" - } - }, - { - "name": "set_current_screen", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_current_screen", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "get_position", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "move_to_center", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "reset_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_position_with_decorations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "get_size_with_decorations", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_max_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "max_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_max_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_min_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "min_size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_min_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3095236531, - "arguments": [ - { - "name": "mode", - "type": "enum::Window.Mode" - } - ] - }, - { - "name": "get_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2566346114, - "return_value": { - "type": "enum::Window.Mode" - } - }, - { - "name": "set_flag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3426449779, - "arguments": [ - { - "name": "flag", - "type": "enum::Window.Flags" - }, - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "get_flag", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3062752289, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "flag", - "type": "enum::Window.Flags" - } - ] - }, - { - "name": "set_hdr_output_requested", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "requested", - "type": "bool" - } - ] - }, - { - "name": "is_hdr_output_requested", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_output_max_linear_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "is_maximize_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "request_attention", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_taskbar_progress_value", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "value", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "set_taskbar_progress_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 824071031, - "arguments": [ - { - "name": "state", - "type": "enum::DisplayServer.ProgressState" - } - ] - }, - { - "name": "move_to_foreground", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "visible", - "type": "bool" - } - ] - }, - { - "name": "is_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "hide", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "show", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_transient", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "transient", - "type": "bool" - } - ] - }, - { - "name": "is_transient", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_transient_to_focused", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_transient_to_focused", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_exclusive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "exclusive", - "type": "bool" - } - ] - }, - { - "name": "is_exclusive", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_unparent_when_invisible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "unparent", - "type": "bool" - } - ] - }, - { - "name": "can_draw", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "has_focus", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "grab_focus", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "start_drag", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "start_resize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 122288853, - "arguments": [ - { - "name": "edge", - "type": "enum::DisplayServer.WindowResizeEdge" - } - ] - }, - { - "name": "set_ime_active", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "active", - "type": "bool" - } - ] - }, - { - "name": "set_ime_position", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "position", - "type": "Vector2i" - } - ] - }, - { - "name": "is_embedded", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_contents_minimum_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_force_native", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "force_native", - "type": "bool" - } - ] - }, - { - "name": "get_force_native", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_content_scale_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1130785943, - "arguments": [ - { - "name": "size", - "type": "Vector2i" - } - ] - }, - { - "name": "get_content_scale_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3690982128, - "return_value": { - "type": "Vector2i" - } - }, - { - "name": "set_content_scale_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2937716473, - "arguments": [ - { - "name": "mode", - "type": "enum::Window.ContentScaleMode" - } - ] - }, - { - "name": "get_content_scale_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 161585230, - "return_value": { - "type": "enum::Window.ContentScaleMode" - } - }, - { - "name": "set_content_scale_aspect", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2370399418, - "arguments": [ - { - "name": "aspect", - "type": "enum::Window.ContentScaleAspect" - } - ] - }, - { - "name": "get_content_scale_aspect", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4158790715, - "return_value": { - "type": "enum::Window.ContentScaleAspect" - } - }, - { - "name": "set_content_scale_stretch", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349355940, - "arguments": [ - { - "name": "stretch", - "type": "enum::Window.ContentScaleStretch" - } - ] - }, - { - "name": "get_content_scale_stretch", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 536857316, - "return_value": { - "type": "enum::Window.ContentScaleStretch" - } - }, - { - "name": "set_nonclient_area", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763793166, - "arguments": [ - { - "name": "area", - "type": "Rect2i" - } - ] - }, - { - "name": "get_nonclient_area", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "set_keep_title_visible", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "title_visible", - "type": "bool" - } - ] - }, - { - "name": "get_keep_title_visible", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_content_scale_factor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "factor", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_content_scale_factor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_mouse_passthrough_polygon", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1509147220, - "arguments": [ - { - "name": "polygon", - "type": "PackedVector2Array" - } - ] - }, - { - "name": "get_mouse_passthrough_polygon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2961356807, - "return_value": { - "type": "PackedVector2Array" - } - }, - { - "name": "set_wrap_controls", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_wrapping_controls", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "child_controls_changed", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "set_theme", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2326690814, - "arguments": [ - { - "name": "theme", - "type": "Theme" - } - ] - }, - { - "name": "get_theme", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3846893731, - "return_value": { - "type": "Theme" - } - }, - { - "name": "set_theme_type_variation", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "theme_type", - "type": "StringName" - } - ] - }, - { - "name": "get_theme_type_variation", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "begin_bulk_theme_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "end_bulk_theme_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "add_theme_icon_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1373065600, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "texture", - "type": "Texture2D" - } - ] - }, - { - "name": "add_theme_stylebox_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4188838905, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "stylebox", - "type": "StyleBox" - } - ] - }, - { - "name": "add_theme_font_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3518018674, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "font", - "type": "Font" - } - ] - }, - { - "name": "add_theme_font_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "font_size", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_theme_color_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4260178595, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "color", - "type": "Color" - } - ] - }, - { - "name": "add_theme_constant_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2415702435, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "constant", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "remove_theme_icon_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_stylebox_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_font_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_font_size_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_color_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "remove_theme_constant_override", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_theme_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3163973443, - "hash_compatibility": [ - 2336455395 - ], - "return_value": { - "type": "Texture2D" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 604739069, - "hash_compatibility": [ - 2759935355 - ], - "return_value": { - "type": "StyleBox" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2826986490, - "hash_compatibility": [ - 387378635 - ], - "return_value": { - "type": "Font" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1327056374, - "hash_compatibility": [ - 229578101 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2798751242, - "hash_compatibility": [ - 2377051548 - ], - "return_value": { - "type": "Color" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1327056374, - "hash_compatibility": [ - 229578101 - ], - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_icon_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_stylebox_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_font_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_font_size_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_color_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_constant_override", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "has_theme_icon", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_stylebox", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_color", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "has_theme_constant", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 866386512, - "hash_compatibility": [ - 1187511791 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "theme_type", - "type": "StringName", - "default_value": "&\"\"" - } - ] - }, - { - "name": "get_theme_default_base_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_theme_default_font", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229501585, - "return_value": { - "type": "Font" - } - }, - { - "name": "get_theme_default_font_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_window_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_accessibility_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_accessibility_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_accessibility_description", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - }, - { - "name": "get_accessibility_description", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_focused_window", - "is_const": false, - "is_vararg": false, - "is_static": true, - "is_virtual": false, - "hash": 1835468782, - "return_value": { - "type": "Window" - } - }, - { - "name": "set_layout_direction", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3094704184, - "arguments": [ - { - "name": "direction", - "type": "enum::Window.LayoutDirection" - } - ] - }, - { - "name": "get_layout_direction", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3909617982, - "return_value": { - "type": "enum::Window.LayoutDirection" - } - }, - { - "name": "is_layout_rtl", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_auto_translate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_auto_translating", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_use_font_oversampling", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_font_oversampling", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "popup", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1680304321, - "arguments": [ - { - "name": "rect", - "type": "Rect2i", - "default_value": "Rect2i(0, 0, 0, 0)" - } - ] - }, - { - "name": "popup_on_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763793166, - "arguments": [ - { - "name": "parent_rect", - "type": "Rect2i" - } - ] - }, - { - "name": "popup_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3447975422, - "arguments": [ - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - } - ] - }, - { - "name": "popup_centered_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1014814997, - "arguments": [ - { - "name": "ratio", - "type": "float", - "meta": "float", - "default_value": "0.8" - } - ] - }, - { - "name": "popup_centered_clamped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2613752477, - "arguments": [ - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - }, - { - "name": "fallback_ratio", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - }, - { - "name": "popup_exclusive", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2134721627, - "hash_compatibility": [ - 1728044812 - ], - "arguments": [ - { - "name": "from_node", - "type": "Node" - }, - { - "name": "rect", - "type": "Rect2i", - "default_value": "Rect2i(0, 0, 0, 0)" - } - ] - }, - { - "name": "popup_exclusive_on_parent", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2344671043, - "arguments": [ - { - "name": "from_node", - "type": "Node" - }, - { - "name": "parent_rect", - "type": "Rect2i" - } - ] - }, - { - "name": "popup_exclusive_centered", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3357594017, - "hash_compatibility": [ - 2561668109 - ], - "arguments": [ - { - "name": "from_node", - "type": "Node" - }, - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - } - ] - }, - { - "name": "popup_exclusive_centered_ratio", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2284776287, - "hash_compatibility": [ - 4257659513 - ], - "arguments": [ - { - "name": "from_node", - "type": "Node" - }, - { - "name": "ratio", - "type": "float", - "meta": "float", - "default_value": "0.8" - } - ] - }, - { - "name": "popup_exclusive_centered_clamped", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2612708785, - "hash_compatibility": [ - 224798062 - ], - "arguments": [ - { - "name": "from_node", - "type": "Node" - }, - { - "name": "minsize", - "type": "Vector2i", - "default_value": "Vector2i(0, 0)" - }, - { - "name": "fallback_ratio", - "type": "float", - "meta": "float", - "default_value": "0.75" - } - ] - } - ], - "signals": [ - { - "name": "window_input", - "arguments": [ - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "nonclient_window_input", - "arguments": [ - { - "name": "event", - "type": "InputEvent" - } - ] - }, - { - "name": "files_dropped", - "arguments": [ - { - "name": "files", - "type": "PackedStringArray" - } - ] - }, - { - "name": "mouse_entered" - }, - { - "name": "mouse_exited" - }, - { - "name": "focus_entered" - }, - { - "name": "focus_exited" - }, - { - "name": "close_requested" - }, - { - "name": "go_back_requested" - }, - { - "name": "visibility_changed" - }, - { - "name": "about_to_popup" - }, - { - "name": "theme_changed" - }, - { - "name": "dpi_changed" - }, - { - "name": "titlebar_changed" - }, - { - "name": "title_changed" - }, - { - "name": "output_max_linear_value_changed", - "arguments": [ - { - "name": "output_max_linear_value", - "type": "float" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "mode", - "setter": "set_mode", - "getter": "get_mode" - }, - { - "type": "String", - "name": "title", - "setter": "set_title", - "getter": "get_title" - }, - { - "type": "int", - "name": "initial_position", - "setter": "set_initial_position", - "getter": "get_initial_position" - }, - { - "type": "Vector2i", - "name": "position", - "setter": "set_position", - "getter": "get_position" - }, - { - "type": "Vector2i", - "name": "size", - "setter": "set_size", - "getter": "get_size" - }, - { - "type": "int", - "name": "current_screen", - "setter": "set_current_screen", - "getter": "get_current_screen" - }, - { - "type": "Rect2i", - "name": "nonclient_area", - "setter": "set_nonclient_area", - "getter": "get_nonclient_area" - }, - { - "type": "PackedVector2Array", - "name": "mouse_passthrough_polygon", - "setter": "set_mouse_passthrough_polygon", - "getter": "get_mouse_passthrough_polygon" - }, - { - "type": "bool", - "name": "visible", - "setter": "set_visible", - "getter": "is_visible" - }, - { - "type": "bool", - "name": "wrap_controls", - "setter": "set_wrap_controls", - "getter": "is_wrapping_controls" - }, - { - "type": "bool", - "name": "transient", - "setter": "set_transient", - "getter": "is_transient" - }, - { - "type": "bool", - "name": "transient_to_focused", - "setter": "set_transient_to_focused", - "getter": "is_transient_to_focused" - }, - { - "type": "bool", - "name": "exclusive", - "setter": "set_exclusive", - "getter": "is_exclusive" - }, - { - "type": "bool", - "name": "unresizable", - "setter": "set_flag", - "getter": "get_flag", - "index": 0 - }, - { - "type": "bool", - "name": "borderless", - "setter": "set_flag", - "getter": "get_flag", - "index": 1 - }, - { - "type": "bool", - "name": "always_on_top", - "setter": "set_flag", - "getter": "get_flag", - "index": 2 - }, - { - "type": "bool", - "name": "transparent", - "setter": "set_flag", - "getter": "get_flag", - "index": 3 - }, - { - "type": "bool", - "name": "unfocusable", - "setter": "set_flag", - "getter": "get_flag", - "index": 4 - }, - { - "type": "bool", - "name": "popup_window", - "setter": "set_flag", - "getter": "get_flag", - "index": 5 - }, - { - "type": "bool", - "name": "extend_to_title", - "setter": "set_flag", - "getter": "get_flag", - "index": 6 - }, - { - "type": "bool", - "name": "mouse_passthrough", - "setter": "set_flag", - "getter": "get_flag", - "index": 7 - }, - { - "type": "bool", - "name": "sharp_corners", - "setter": "set_flag", - "getter": "get_flag", - "index": 8 - }, - { - "type": "bool", - "name": "exclude_from_capture", - "setter": "set_flag", - "getter": "get_flag", - "index": 9 - }, - { - "type": "bool", - "name": "popup_wm_hint", - "setter": "set_flag", - "getter": "get_flag", - "index": 10 - }, - { - "type": "bool", - "name": "minimize_disabled", - "setter": "set_flag", - "getter": "get_flag", - "index": 11 - }, - { - "type": "bool", - "name": "maximize_disabled", - "setter": "set_flag", - "getter": "get_flag", - "index": 12 - }, - { - "type": "bool", - "name": "force_native", - "setter": "set_force_native", - "getter": "get_force_native" - }, - { - "type": "Vector2i", - "name": "min_size", - "setter": "set_min_size", - "getter": "get_min_size" - }, - { - "type": "Vector2i", - "name": "max_size", - "setter": "set_max_size", - "getter": "get_max_size" - }, - { - "type": "bool", - "name": "keep_title_visible", - "setter": "set_keep_title_visible", - "getter": "get_keep_title_visible" - }, - { - "type": "Vector2i", - "name": "content_scale_size", - "setter": "set_content_scale_size", - "getter": "get_content_scale_size" - }, - { - "type": "int", - "name": "content_scale_mode", - "setter": "set_content_scale_mode", - "getter": "get_content_scale_mode" - }, - { - "type": "int", - "name": "content_scale_aspect", - "setter": "set_content_scale_aspect", - "getter": "get_content_scale_aspect" - }, - { - "type": "int", - "name": "content_scale_stretch", - "setter": "set_content_scale_stretch", - "getter": "get_content_scale_stretch" - }, - { - "type": "float", - "name": "content_scale_factor", - "setter": "set_content_scale_factor", - "getter": "get_content_scale_factor" - }, - { - "type": "bool", - "name": "hdr_output_requested", - "setter": "set_hdr_output_requested", - "getter": "is_hdr_output_requested" - }, - { - "type": "bool", - "name": "auto_translate", - "setter": "set_auto_translate", - "getter": "is_auto_translating" - }, - { - "type": "String", - "name": "accessibility_name", - "setter": "set_accessibility_name", - "getter": "get_accessibility_name" - }, - { - "type": "String", - "name": "accessibility_description", - "setter": "set_accessibility_description", - "getter": "get_accessibility_description" - }, - { - "type": "Theme", - "name": "theme", - "setter": "set_theme", - "getter": "get_theme" - }, - { - "type": "String", - "name": "theme_type_variation", - "setter": "set_theme_type_variation", - "getter": "get_theme_type_variation" - } - ] - }, - { - "name": "WorkerThreadPool", - "is_refcounted": false, - "is_instantiable": false, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "add_task", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3745067146, - "hash_compatibility": [ - 3976347598 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "action", - "type": "Callable" - }, - { - "name": "high_priority", - "type": "bool", - "default_value": "false" - }, - { - "name": "description", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "is_task_completed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "task_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "wait_for_task_completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "task_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_caller_task_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - }, - { - "name": "add_group_task", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1801953219, - "hash_compatibility": [ - 2377228549 - ], - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "action", - "type": "Callable" - }, - { - "name": "elements", - "type": "int", - "meta": "int32" - }, - { - "name": "tasks_needed", - "type": "int", - "meta": "int32", - "default_value": "-1" - }, - { - "name": "high_priority", - "type": "bool", - "default_value": "false" - }, - { - "name": "description", - "type": "String", - "default_value": "\"\"" - } - ] - }, - { - "name": "is_group_task_completed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1116898809, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "group_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_group_processed_element_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 923996154, - "return_value": { - "type": "int", - "meta": "uint32" - }, - "arguments": [ - { - "name": "group_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "wait_for_group_task_completion", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "group_id", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "get_caller_group_id", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int64" - } - } - ] - }, - { - "name": "World2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_canvas", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_direct_space_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2506717822, - "return_value": { - "type": "PhysicsDirectSpaceState2D" - } - } - ], - "properties": [ - { - "type": "RID", - "name": "canvas", - "getter": "get_canvas" - }, - { - "type": "RID", - "name": "navigation_map", - "getter": "get_navigation_map" - }, - { - "type": "RID", - "name": "space", - "getter": "get_space" - }, - { - "type": "PhysicsDirectSpaceState2D", - "name": "direct_space_state", - "getter": "get_direct_space_state" - } - ] - }, - { - "name": "World3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "get_space", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_navigation_map", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_scenario", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2944877500, - "return_value": { - "type": "RID" - } - }, - { - "name": "set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4143518816, - "arguments": [ - { - "name": "env", - "type": "Environment" - } - ] - }, - { - "name": "get_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082064660, - "return_value": { - "type": "Environment" - } - }, - { - "name": "set_fallback_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4143518816, - "arguments": [ - { - "name": "env", - "type": "Environment" - } - ] - }, - { - "name": "get_fallback_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082064660, - "return_value": { - "type": "Environment" - } - }, - { - "name": "set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817810567, - "arguments": [ - { - "name": "attributes", - "type": "CameraAttributes" - } - ] - }, - { - "name": "get_camera_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3921283215, - "return_value": { - "type": "CameraAttributes" - } - }, - { - "name": "get_direct_space_state", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2069328350, - "return_value": { - "type": "PhysicsDirectSpaceState3D" - } - } - ], - "properties": [ - { - "type": "Environment", - "name": "environment", - "setter": "set_environment", - "getter": "get_environment" - }, - { - "type": "Environment", - "name": "fallback_environment", - "setter": "set_fallback_environment", - "getter": "get_fallback_environment" - }, - { - "type": "CameraAttributesPractical,CameraAttributesPhysical", - "name": "camera_attributes", - "setter": "set_camera_attributes", - "getter": "get_camera_attributes" - }, - { - "type": "RID", - "name": "space", - "getter": "get_space" - }, - { - "type": "RID", - "name": "navigation_map", - "getter": "get_navigation_map" - }, - { - "type": "RID", - "name": "scenario", - "getter": "get_scenario" - }, - { - "type": "PhysicsDirectSpaceState3D", - "name": "direct_space_state", - "getter": "get_direct_space_state" - } - ] - }, - { - "name": "WorldBoundaryShape2D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape2D", - "api_type": "core", - "methods": [ - { - "name": "set_normal", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 743155724, - "arguments": [ - { - "name": "normal", - "type": "Vector2" - } - ] - }, - { - "name": "get_normal", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3341600327, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "set_distance", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "distance", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_distance", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Vector2", - "name": "normal", - "setter": "set_normal", - "getter": "get_normal" - }, - { - "type": "float", - "name": "distance", - "setter": "set_distance", - "getter": "get_distance" - } - ] - }, - { - "name": "WorldBoundaryShape3D", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Shape3D", - "api_type": "core", - "methods": [ - { - "name": "set_plane", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3505987427, - "arguments": [ - { - "name": "plane", - "type": "Plane" - } - ] - }, - { - "name": "get_plane", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2753500971, - "return_value": { - "type": "Plane" - } - } - ], - "properties": [ - { - "type": "Plane", - "name": "plane", - "setter": "set_plane", - "getter": "get_plane" - } - ] - }, - { - "name": "WorldEnvironment", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node", - "api_type": "core", - "methods": [ - { - "name": "set_environment", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4143518816, - "arguments": [ - { - "name": "env", - "type": "Environment" - } - ] - }, - { - "name": "get_environment", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3082064660, - "return_value": { - "type": "Environment" - } - }, - { - "name": "set_camera_attributes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2817810567, - "arguments": [ - { - "name": "camera_attributes", - "type": "CameraAttributes" - } - ] - }, - { - "name": "get_camera_attributes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3921283215, - "return_value": { - "type": "CameraAttributes" - } - }, - { - "name": "set_compositor", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1586754307, - "arguments": [ - { - "name": "compositor", - "type": "Compositor" - } - ] - }, - { - "name": "get_compositor", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3647707413, - "return_value": { - "type": "Compositor" - } - } - ], - "properties": [ - { - "type": "Environment", - "name": "environment", - "setter": "set_environment", - "getter": "get_environment" - }, - { - "type": "CameraAttributesPractical,CameraAttributesPhysical", - "name": "camera_attributes", - "setter": "set_camera_attributes", - "getter": "get_camera_attributes" - }, - { - "type": "Compositor", - "name": "compositor", - "setter": "set_compositor", - "getter": "get_compositor" - } - ] - }, - { - "name": "X509Certificate", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "save", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "load", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "save_to_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2841200299, - "return_value": { - "type": "String" - } - }, - { - "name": "load_from_string", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "string", - "type": "String" - } - ] - } - ] - }, - { - "name": "XMLParser", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "NodeType", - "is_bitfield": false, - "values": [ - { - "name": "NODE_NONE", - "value": 0 - }, - { - "name": "NODE_ELEMENT", - "value": 1 - }, - { - "name": "NODE_ELEMENT_END", - "value": 2 - }, - { - "name": "NODE_TEXT", - "value": 3 - }, - { - "name": "NODE_COMMENT", - "value": 4 - }, - { - "name": "NODE_CDATA", - "value": 5 - }, - { - "name": "NODE_UNKNOWN", - "value": 6 - } - ] - } - ], - "methods": [ - { - "name": "read", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_node_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2984359541, - "return_value": { - "type": "enum::XMLParser.NodeType" - } - }, - { - "name": "get_node_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_node_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_node_offset", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint64" - } - }, - { - "name": "get_attribute_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_attribute_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_attribute_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "has_attribute", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_named_attribute_value", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_named_attribute_value_safe", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3135753539, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "is_empty", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_current_line", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "skip_section", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "seek", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844576869, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "position", - "type": "int", - "meta": "uint64" - } - ] - }, - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "file", - "type": "String" - } - ] - }, - { - "name": "open_buffer", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "buffer", - "type": "PackedByteArray" - } - ] - } - ] - }, - { - "name": "XRAnchor3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "XRNode3D", - "api_type": "core", - "methods": [ - { - "name": "get_size", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "get_plane", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2753500971, - "return_value": { - "type": "Plane" - } - } - ] - }, - { - "name": "XRBodyModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "BodyUpdate", - "is_bitfield": true, - "values": [ - { - "name": "BODY_UPDATE_UPPER_BODY", - "value": 1 - }, - { - "name": "BODY_UPDATE_LOWER_BODY", - "value": 2 - }, - { - "name": "BODY_UPDATE_HANDS", - "value": 4 - } - ] - }, - { - "name": "BoneUpdate", - "is_bitfield": false, - "values": [ - { - "name": "BONE_UPDATE_FULL", - "value": 0 - }, - { - "name": "BONE_UPDATE_ROTATION_ONLY", - "value": 1 - }, - { - "name": "BONE_UPDATE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_body_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "get_body_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_body_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2211199417, - "arguments": [ - { - "name": "body_update", - "type": "bitfield::XRBodyModifier3D.BodyUpdate" - } - ] - }, - { - "name": "get_body_update", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2642335328, - "return_value": { - "type": "bitfield::XRBodyModifier3D.BodyUpdate" - } - }, - { - "name": "set_bone_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3356796943, - "arguments": [ - { - "name": "bone_update", - "type": "enum::XRBodyModifier3D.BoneUpdate" - } - ] - }, - { - "name": "get_bone_update", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1309305964, - "return_value": { - "type": "enum::XRBodyModifier3D.BoneUpdate" - } - } - ], - "properties": [ - { - "type": "String", - "name": "body_tracker", - "setter": "set_body_tracker", - "getter": "get_body_tracker" - }, - { - "type": "int", - "name": "body_update", - "setter": "set_body_update", - "getter": "get_body_update" - }, - { - "type": "int", - "name": "bone_update", - "setter": "set_bone_update", - "getter": "get_bone_update" - } - ] - }, - { - "name": "XRBodyTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRPositionalTracker", - "api_type": "core", - "enums": [ - { - "name": "BodyFlags", - "is_bitfield": true, - "values": [ - { - "name": "BODY_FLAG_UPPER_BODY_SUPPORTED", - "value": 1 - }, - { - "name": "BODY_FLAG_LOWER_BODY_SUPPORTED", - "value": 2 - }, - { - "name": "BODY_FLAG_HANDS_SUPPORTED", - "value": 4 - } - ] - }, - { - "name": "Joint", - "is_bitfield": false, - "values": [ - { - "name": "JOINT_ROOT", - "value": 0 - }, - { - "name": "JOINT_HIPS", - "value": 1 - }, - { - "name": "JOINT_SPINE", - "value": 2 - }, - { - "name": "JOINT_CHEST", - "value": 3 - }, - { - "name": "JOINT_UPPER_CHEST", - "value": 4 - }, - { - "name": "JOINT_NECK", - "value": 5 - }, - { - "name": "JOINT_HEAD", - "value": 6 - }, - { - "name": "JOINT_HEAD_TIP", - "value": 7 - }, - { - "name": "JOINT_LEFT_SHOULDER", - "value": 8 - }, - { - "name": "JOINT_LEFT_UPPER_ARM", - "value": 9 - }, - { - "name": "JOINT_LEFT_LOWER_ARM", - "value": 10 - }, - { - "name": "JOINT_RIGHT_SHOULDER", - "value": 11 - }, - { - "name": "JOINT_RIGHT_UPPER_ARM", - "value": 12 - }, - { - "name": "JOINT_RIGHT_LOWER_ARM", - "value": 13 - }, - { - "name": "JOINT_LEFT_UPPER_LEG", - "value": 14 - }, - { - "name": "JOINT_LEFT_LOWER_LEG", - "value": 15 - }, - { - "name": "JOINT_LEFT_FOOT", - "value": 16 - }, - { - "name": "JOINT_LEFT_TOES", - "value": 17 - }, - { - "name": "JOINT_RIGHT_UPPER_LEG", - "value": 18 - }, - { - "name": "JOINT_RIGHT_LOWER_LEG", - "value": 19 - }, - { - "name": "JOINT_RIGHT_FOOT", - "value": 20 - }, - { - "name": "JOINT_RIGHT_TOES", - "value": 21 - }, - { - "name": "JOINT_LEFT_HAND", - "value": 22 - }, - { - "name": "JOINT_LEFT_PALM", - "value": 23 - }, - { - "name": "JOINT_LEFT_WRIST", - "value": 24 - }, - { - "name": "JOINT_LEFT_THUMB_METACARPAL", - "value": 25 - }, - { - "name": "JOINT_LEFT_THUMB_PHALANX_PROXIMAL", - "value": 26 - }, - { - "name": "JOINT_LEFT_THUMB_PHALANX_DISTAL", - "value": 27 - }, - { - "name": "JOINT_LEFT_THUMB_TIP", - "value": 28 - }, - { - "name": "JOINT_LEFT_INDEX_FINGER_METACARPAL", - "value": 29 - }, - { - "name": "JOINT_LEFT_INDEX_FINGER_PHALANX_PROXIMAL", - "value": 30 - }, - { - "name": "JOINT_LEFT_INDEX_FINGER_PHALANX_INTERMEDIATE", - "value": 31 - }, - { - "name": "JOINT_LEFT_INDEX_FINGER_PHALANX_DISTAL", - "value": 32 - }, - { - "name": "JOINT_LEFT_INDEX_FINGER_TIP", - "value": 33 - }, - { - "name": "JOINT_LEFT_MIDDLE_FINGER_METACARPAL", - "value": 34 - }, - { - "name": "JOINT_LEFT_MIDDLE_FINGER_PHALANX_PROXIMAL", - "value": 35 - }, - { - "name": "JOINT_LEFT_MIDDLE_FINGER_PHALANX_INTERMEDIATE", - "value": 36 - }, - { - "name": "JOINT_LEFT_MIDDLE_FINGER_PHALANX_DISTAL", - "value": 37 - }, - { - "name": "JOINT_LEFT_MIDDLE_FINGER_TIP", - "value": 38 - }, - { - "name": "JOINT_LEFT_RING_FINGER_METACARPAL", - "value": 39 - }, - { - "name": "JOINT_LEFT_RING_FINGER_PHALANX_PROXIMAL", - "value": 40 - }, - { - "name": "JOINT_LEFT_RING_FINGER_PHALANX_INTERMEDIATE", - "value": 41 - }, - { - "name": "JOINT_LEFT_RING_FINGER_PHALANX_DISTAL", - "value": 42 - }, - { - "name": "JOINT_LEFT_RING_FINGER_TIP", - "value": 43 - }, - { - "name": "JOINT_LEFT_PINKY_FINGER_METACARPAL", - "value": 44 - }, - { - "name": "JOINT_LEFT_PINKY_FINGER_PHALANX_PROXIMAL", - "value": 45 - }, - { - "name": "JOINT_LEFT_PINKY_FINGER_PHALANX_INTERMEDIATE", - "value": 46 - }, - { - "name": "JOINT_LEFT_PINKY_FINGER_PHALANX_DISTAL", - "value": 47 - }, - { - "name": "JOINT_LEFT_PINKY_FINGER_TIP", - "value": 48 - }, - { - "name": "JOINT_RIGHT_HAND", - "value": 49 - }, - { - "name": "JOINT_RIGHT_PALM", - "value": 50 - }, - { - "name": "JOINT_RIGHT_WRIST", - "value": 51 - }, - { - "name": "JOINT_RIGHT_THUMB_METACARPAL", - "value": 52 - }, - { - "name": "JOINT_RIGHT_THUMB_PHALANX_PROXIMAL", - "value": 53 - }, - { - "name": "JOINT_RIGHT_THUMB_PHALANX_DISTAL", - "value": 54 - }, - { - "name": "JOINT_RIGHT_THUMB_TIP", - "value": 55 - }, - { - "name": "JOINT_RIGHT_INDEX_FINGER_METACARPAL", - "value": 56 - }, - { - "name": "JOINT_RIGHT_INDEX_FINGER_PHALANX_PROXIMAL", - "value": 57 - }, - { - "name": "JOINT_RIGHT_INDEX_FINGER_PHALANX_INTERMEDIATE", - "value": 58 - }, - { - "name": "JOINT_RIGHT_INDEX_FINGER_PHALANX_DISTAL", - "value": 59 - }, - { - "name": "JOINT_RIGHT_INDEX_FINGER_TIP", - "value": 60 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FINGER_METACARPAL", - "value": 61 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FINGER_PHALANX_PROXIMAL", - "value": 62 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FINGER_PHALANX_INTERMEDIATE", - "value": 63 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FINGER_PHALANX_DISTAL", - "value": 64 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FINGER_TIP", - "value": 65 - }, - { - "name": "JOINT_RIGHT_RING_FINGER_METACARPAL", - "value": 66 - }, - { - "name": "JOINT_RIGHT_RING_FINGER_PHALANX_PROXIMAL", - "value": 67 - }, - { - "name": "JOINT_RIGHT_RING_FINGER_PHALANX_INTERMEDIATE", - "value": 68 - }, - { - "name": "JOINT_RIGHT_RING_FINGER_PHALANX_DISTAL", - "value": 69 - }, - { - "name": "JOINT_RIGHT_RING_FINGER_TIP", - "value": 70 - }, - { - "name": "JOINT_RIGHT_PINKY_FINGER_METACARPAL", - "value": 71 - }, - { - "name": "JOINT_RIGHT_PINKY_FINGER_PHALANX_PROXIMAL", - "value": 72 - }, - { - "name": "JOINT_RIGHT_PINKY_FINGER_PHALANX_INTERMEDIATE", - "value": 73 - }, - { - "name": "JOINT_RIGHT_PINKY_FINGER_PHALANX_DISTAL", - "value": 74 - }, - { - "name": "JOINT_RIGHT_PINKY_FINGER_TIP", - "value": 75 - }, - { - "name": "JOINT_LOWER_CHEST", - "value": 76 - }, - { - "name": "JOINT_LEFT_SCAPULA", - "value": 77 - }, - { - "name": "JOINT_LEFT_WRIST_TWIST", - "value": 78 - }, - { - "name": "JOINT_RIGHT_SCAPULA", - "value": 79 - }, - { - "name": "JOINT_RIGHT_WRIST_TWIST", - "value": 80 - }, - { - "name": "JOINT_LEFT_FOOT_TWIST", - "value": 81 - }, - { - "name": "JOINT_LEFT_HEEL", - "value": 82 - }, - { - "name": "JOINT_LEFT_MIDDLE_FOOT", - "value": 83 - }, - { - "name": "JOINT_RIGHT_FOOT_TWIST", - "value": 84 - }, - { - "name": "JOINT_RIGHT_HEEL", - "value": 85 - }, - { - "name": "JOINT_RIGHT_MIDDLE_FOOT", - "value": 86 - }, - { - "name": "JOINT_MAX", - "value": 87 - } - ] - }, - { - "name": "JointFlags", - "is_bitfield": true, - "values": [ - { - "name": "JOINT_FLAG_ORIENTATION_VALID", - "value": 1 - }, - { - "name": "JOINT_FLAG_ORIENTATION_TRACKED", - "value": 2 - }, - { - "name": "JOINT_FLAG_POSITION_VALID", - "value": 4 - }, - { - "name": "JOINT_FLAG_POSITION_TRACKED", - "value": 8 - } - ] - } - ], - "methods": [ - { - "name": "set_has_tracking_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "has_data", - "type": "bool" - } - ] - }, - { - "name": "get_has_tracking_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_body_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2103235750, - "arguments": [ - { - "name": "flags", - "type": "bitfield::XRBodyTracker.BodyFlags" - } - ] - }, - { - "name": "get_body_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3543166366, - "return_value": { - "type": "bitfield::XRBodyTracker.BodyFlags" - } - }, - { - "name": "set_joint_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 592144999, - "arguments": [ - { - "name": "joint", - "type": "enum::XRBodyTracker.Joint" - }, - { - "name": "flags", - "type": "bitfield::XRBodyTracker.JointFlags" - } - ] - }, - { - "name": "get_joint_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1030162609, - "return_value": { - "type": "bitfield::XRBodyTracker.JointFlags" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRBodyTracker.Joint" - } - ] - }, - { - "name": "set_joint_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2635424328, - "arguments": [ - { - "name": "joint", - "type": "enum::XRBodyTracker.Joint" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_joint_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3474811534, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRBodyTracker.Joint" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "has_tracking_data", - "setter": "set_has_tracking_data", - "getter": "get_has_tracking_data" - }, - { - "type": "int", - "name": "body_flags", - "setter": "set_body_flags", - "getter": "get_body_flags" - } - ] - }, - { - "name": "XRCamera3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Camera3D", - "api_type": "core" - }, - { - "name": "XRController3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "XRNode3D", - "api_type": "core", - "methods": [ - { - "name": "is_button_pressed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_float", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2349060816, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_vector2", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3100822709, - "return_value": { - "type": "Vector2" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_tracker_hand", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4181770860, - "return_value": { - "type": "enum::XRPositionalTracker.TrackerHand" - } - } - ], - "signals": [ - { - "name": "button_pressed", - "arguments": [ - { - "name": "action_name", - "type": "String" - } - ] - }, - { - "name": "button_released", - "arguments": [ - { - "name": "action_name", - "type": "String" - } - ] - }, - { - "name": "input_float_changed", - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "input_vector2_changed", - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "value", - "type": "Vector2" - } - ] - }, - { - "name": "profile_changed", - "arguments": [ - { - "name": "role", - "type": "String" - } - ] - } - ] - }, - { - "name": "XRControllerTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRPositionalTracker", - "api_type": "core" - }, - { - "name": "XRFaceModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_face_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "get_face_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_target", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "target", - "type": "NodePath" - } - ] - }, - { - "name": "get_target", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - } - ], - "properties": [ - { - "type": "String", - "name": "face_tracker", - "setter": "set_face_tracker", - "getter": "get_face_tracker" - }, - { - "type": "NodePath", - "name": "target", - "setter": "set_target", - "getter": "get_target" - } - ] - }, - { - "name": "XRFaceTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRTracker", - "api_type": "core", - "enums": [ - { - "name": "BlendShapeEntry", - "is_bitfield": false, - "values": [ - { - "name": "FT_EYE_LOOK_OUT_RIGHT", - "value": 0 - }, - { - "name": "FT_EYE_LOOK_IN_RIGHT", - "value": 1 - }, - { - "name": "FT_EYE_LOOK_UP_RIGHT", - "value": 2 - }, - { - "name": "FT_EYE_LOOK_DOWN_RIGHT", - "value": 3 - }, - { - "name": "FT_EYE_LOOK_OUT_LEFT", - "value": 4 - }, - { - "name": "FT_EYE_LOOK_IN_LEFT", - "value": 5 - }, - { - "name": "FT_EYE_LOOK_UP_LEFT", - "value": 6 - }, - { - "name": "FT_EYE_LOOK_DOWN_LEFT", - "value": 7 - }, - { - "name": "FT_EYE_CLOSED_RIGHT", - "value": 8 - }, - { - "name": "FT_EYE_CLOSED_LEFT", - "value": 9 - }, - { - "name": "FT_EYE_SQUINT_RIGHT", - "value": 10 - }, - { - "name": "FT_EYE_SQUINT_LEFT", - "value": 11 - }, - { - "name": "FT_EYE_WIDE_RIGHT", - "value": 12 - }, - { - "name": "FT_EYE_WIDE_LEFT", - "value": 13 - }, - { - "name": "FT_EYE_DILATION_RIGHT", - "value": 14 - }, - { - "name": "FT_EYE_DILATION_LEFT", - "value": 15 - }, - { - "name": "FT_EYE_CONSTRICT_RIGHT", - "value": 16 - }, - { - "name": "FT_EYE_CONSTRICT_LEFT", - "value": 17 - }, - { - "name": "FT_BROW_PINCH_RIGHT", - "value": 18 - }, - { - "name": "FT_BROW_PINCH_LEFT", - "value": 19 - }, - { - "name": "FT_BROW_LOWERER_RIGHT", - "value": 20 - }, - { - "name": "FT_BROW_LOWERER_LEFT", - "value": 21 - }, - { - "name": "FT_BROW_INNER_UP_RIGHT", - "value": 22 - }, - { - "name": "FT_BROW_INNER_UP_LEFT", - "value": 23 - }, - { - "name": "FT_BROW_OUTER_UP_RIGHT", - "value": 24 - }, - { - "name": "FT_BROW_OUTER_UP_LEFT", - "value": 25 - }, - { - "name": "FT_NOSE_SNEER_RIGHT", - "value": 26 - }, - { - "name": "FT_NOSE_SNEER_LEFT", - "value": 27 - }, - { - "name": "FT_NASAL_DILATION_RIGHT", - "value": 28 - }, - { - "name": "FT_NASAL_DILATION_LEFT", - "value": 29 - }, - { - "name": "FT_NASAL_CONSTRICT_RIGHT", - "value": 30 - }, - { - "name": "FT_NASAL_CONSTRICT_LEFT", - "value": 31 - }, - { - "name": "FT_CHEEK_SQUINT_RIGHT", - "value": 32 - }, - { - "name": "FT_CHEEK_SQUINT_LEFT", - "value": 33 - }, - { - "name": "FT_CHEEK_PUFF_RIGHT", - "value": 34 - }, - { - "name": "FT_CHEEK_PUFF_LEFT", - "value": 35 - }, - { - "name": "FT_CHEEK_SUCK_RIGHT", - "value": 36 - }, - { - "name": "FT_CHEEK_SUCK_LEFT", - "value": 37 - }, - { - "name": "FT_JAW_OPEN", - "value": 38 - }, - { - "name": "FT_MOUTH_CLOSED", - "value": 39 - }, - { - "name": "FT_JAW_RIGHT", - "value": 40 - }, - { - "name": "FT_JAW_LEFT", - "value": 41 - }, - { - "name": "FT_JAW_FORWARD", - "value": 42 - }, - { - "name": "FT_JAW_BACKWARD", - "value": 43 - }, - { - "name": "FT_JAW_CLENCH", - "value": 44 - }, - { - "name": "FT_JAW_MANDIBLE_RAISE", - "value": 45 - }, - { - "name": "FT_LIP_SUCK_UPPER_RIGHT", - "value": 46 - }, - { - "name": "FT_LIP_SUCK_UPPER_LEFT", - "value": 47 - }, - { - "name": "FT_LIP_SUCK_LOWER_RIGHT", - "value": 48 - }, - { - "name": "FT_LIP_SUCK_LOWER_LEFT", - "value": 49 - }, - { - "name": "FT_LIP_SUCK_CORNER_RIGHT", - "value": 50 - }, - { - "name": "FT_LIP_SUCK_CORNER_LEFT", - "value": 51 - }, - { - "name": "FT_LIP_FUNNEL_UPPER_RIGHT", - "value": 52 - }, - { - "name": "FT_LIP_FUNNEL_UPPER_LEFT", - "value": 53 - }, - { - "name": "FT_LIP_FUNNEL_LOWER_RIGHT", - "value": 54 - }, - { - "name": "FT_LIP_FUNNEL_LOWER_LEFT", - "value": 55 - }, - { - "name": "FT_LIP_PUCKER_UPPER_RIGHT", - "value": 56 - }, - { - "name": "FT_LIP_PUCKER_UPPER_LEFT", - "value": 57 - }, - { - "name": "FT_LIP_PUCKER_LOWER_RIGHT", - "value": 58 - }, - { - "name": "FT_LIP_PUCKER_LOWER_LEFT", - "value": 59 - }, - { - "name": "FT_MOUTH_UPPER_UP_RIGHT", - "value": 60 - }, - { - "name": "FT_MOUTH_UPPER_UP_LEFT", - "value": 61 - }, - { - "name": "FT_MOUTH_LOWER_DOWN_RIGHT", - "value": 62 - }, - { - "name": "FT_MOUTH_LOWER_DOWN_LEFT", - "value": 63 - }, - { - "name": "FT_MOUTH_UPPER_DEEPEN_RIGHT", - "value": 64 - }, - { - "name": "FT_MOUTH_UPPER_DEEPEN_LEFT", - "value": 65 - }, - { - "name": "FT_MOUTH_UPPER_RIGHT", - "value": 66 - }, - { - "name": "FT_MOUTH_UPPER_LEFT", - "value": 67 - }, - { - "name": "FT_MOUTH_LOWER_RIGHT", - "value": 68 - }, - { - "name": "FT_MOUTH_LOWER_LEFT", - "value": 69 - }, - { - "name": "FT_MOUTH_CORNER_PULL_RIGHT", - "value": 70 - }, - { - "name": "FT_MOUTH_CORNER_PULL_LEFT", - "value": 71 - }, - { - "name": "FT_MOUTH_CORNER_SLANT_RIGHT", - "value": 72 - }, - { - "name": "FT_MOUTH_CORNER_SLANT_LEFT", - "value": 73 - }, - { - "name": "FT_MOUTH_FROWN_RIGHT", - "value": 74 - }, - { - "name": "FT_MOUTH_FROWN_LEFT", - "value": 75 - }, - { - "name": "FT_MOUTH_STRETCH_RIGHT", - "value": 76 - }, - { - "name": "FT_MOUTH_STRETCH_LEFT", - "value": 77 - }, - { - "name": "FT_MOUTH_DIMPLE_RIGHT", - "value": 78 - }, - { - "name": "FT_MOUTH_DIMPLE_LEFT", - "value": 79 - }, - { - "name": "FT_MOUTH_RAISER_UPPER", - "value": 80 - }, - { - "name": "FT_MOUTH_RAISER_LOWER", - "value": 81 - }, - { - "name": "FT_MOUTH_PRESS_RIGHT", - "value": 82 - }, - { - "name": "FT_MOUTH_PRESS_LEFT", - "value": 83 - }, - { - "name": "FT_MOUTH_TIGHTENER_RIGHT", - "value": 84 - }, - { - "name": "FT_MOUTH_TIGHTENER_LEFT", - "value": 85 - }, - { - "name": "FT_TONGUE_OUT", - "value": 86 - }, - { - "name": "FT_TONGUE_UP", - "value": 87 - }, - { - "name": "FT_TONGUE_DOWN", - "value": 88 - }, - { - "name": "FT_TONGUE_RIGHT", - "value": 89 - }, - { - "name": "FT_TONGUE_LEFT", - "value": 90 - }, - { - "name": "FT_TONGUE_ROLL", - "value": 91 - }, - { - "name": "FT_TONGUE_BLEND_DOWN", - "value": 92 - }, - { - "name": "FT_TONGUE_CURL_UP", - "value": 93 - }, - { - "name": "FT_TONGUE_SQUISH", - "value": 94 - }, - { - "name": "FT_TONGUE_FLAT", - "value": 95 - }, - { - "name": "FT_TONGUE_TWIST_RIGHT", - "value": 96 - }, - { - "name": "FT_TONGUE_TWIST_LEFT", - "value": 97 - }, - { - "name": "FT_SOFT_PALATE_CLOSE", - "value": 98 - }, - { - "name": "FT_THROAT_SWALLOW", - "value": 99 - }, - { - "name": "FT_NECK_FLEX_RIGHT", - "value": 100 - }, - { - "name": "FT_NECK_FLEX_LEFT", - "value": 101 - }, - { - "name": "FT_EYE_CLOSED", - "value": 102 - }, - { - "name": "FT_EYE_WIDE", - "value": 103 - }, - { - "name": "FT_EYE_SQUINT", - "value": 104 - }, - { - "name": "FT_EYE_DILATION", - "value": 105 - }, - { - "name": "FT_EYE_CONSTRICT", - "value": 106 - }, - { - "name": "FT_BROW_DOWN_RIGHT", - "value": 107 - }, - { - "name": "FT_BROW_DOWN_LEFT", - "value": 108 - }, - { - "name": "FT_BROW_DOWN", - "value": 109 - }, - { - "name": "FT_BROW_UP_RIGHT", - "value": 110 - }, - { - "name": "FT_BROW_UP_LEFT", - "value": 111 - }, - { - "name": "FT_BROW_UP", - "value": 112 - }, - { - "name": "FT_NOSE_SNEER", - "value": 113 - }, - { - "name": "FT_NASAL_DILATION", - "value": 114 - }, - { - "name": "FT_NASAL_CONSTRICT", - "value": 115 - }, - { - "name": "FT_CHEEK_PUFF", - "value": 116 - }, - { - "name": "FT_CHEEK_SUCK", - "value": 117 - }, - { - "name": "FT_CHEEK_SQUINT", - "value": 118 - }, - { - "name": "FT_LIP_SUCK_UPPER", - "value": 119 - }, - { - "name": "FT_LIP_SUCK_LOWER", - "value": 120 - }, - { - "name": "FT_LIP_SUCK", - "value": 121 - }, - { - "name": "FT_LIP_FUNNEL_UPPER", - "value": 122 - }, - { - "name": "FT_LIP_FUNNEL_LOWER", - "value": 123 - }, - { - "name": "FT_LIP_FUNNEL", - "value": 124 - }, - { - "name": "FT_LIP_PUCKER_UPPER", - "value": 125 - }, - { - "name": "FT_LIP_PUCKER_LOWER", - "value": 126 - }, - { - "name": "FT_LIP_PUCKER", - "value": 127 - }, - { - "name": "FT_MOUTH_UPPER_UP", - "value": 128 - }, - { - "name": "FT_MOUTH_LOWER_DOWN", - "value": 129 - }, - { - "name": "FT_MOUTH_OPEN", - "value": 130 - }, - { - "name": "FT_MOUTH_RIGHT", - "value": 131 - }, - { - "name": "FT_MOUTH_LEFT", - "value": 132 - }, - { - "name": "FT_MOUTH_SMILE_RIGHT", - "value": 133 - }, - { - "name": "FT_MOUTH_SMILE_LEFT", - "value": 134 - }, - { - "name": "FT_MOUTH_SMILE", - "value": 135 - }, - { - "name": "FT_MOUTH_SAD_RIGHT", - "value": 136 - }, - { - "name": "FT_MOUTH_SAD_LEFT", - "value": 137 - }, - { - "name": "FT_MOUTH_SAD", - "value": 138 - }, - { - "name": "FT_MOUTH_STRETCH", - "value": 139 - }, - { - "name": "FT_MOUTH_DIMPLE", - "value": 140 - }, - { - "name": "FT_MOUTH_TIGHTENER", - "value": 141 - }, - { - "name": "FT_MOUTH_PRESS", - "value": 142 - }, - { - "name": "FT_MAX", - "value": 143 - } - ] - } - ], - "methods": [ - { - "name": "get_blend_shape", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 330010046, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "blend_shape", - "type": "enum::XRFaceTracker.BlendShapeEntry" - } - ] - }, - { - "name": "set_blend_shape", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2352588791, - "arguments": [ - { - "name": "blend_shape", - "type": "enum::XRFaceTracker.BlendShapeEntry" - }, - { - "name": "weight", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_blend_shapes", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 675695659, - "return_value": { - "type": "PackedFloat32Array" - } - }, - { - "name": "set_blend_shapes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2899603908, - "arguments": [ - { - "name": "weights", - "type": "PackedFloat32Array" - } - ] - } - ], - "properties": [ - { - "type": "PackedFloat32Array", - "name": "blend_shapes", - "setter": "set_blend_shapes", - "getter": "get_blend_shapes" - } - ] - }, - { - "name": "XRHandModifier3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "SkeletonModifier3D", - "api_type": "core", - "enums": [ - { - "name": "BoneUpdate", - "is_bitfield": false, - "values": [ - { - "name": "BONE_UPDATE_FULL", - "value": 0 - }, - { - "name": "BONE_UPDATE_ROTATION_ONLY", - "value": 1 - }, - { - "name": "BONE_UPDATE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_hand_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "get_hand_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_bone_update", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3635701455, - "arguments": [ - { - "name": "bone_update", - "type": "enum::XRHandModifier3D.BoneUpdate" - } - ] - }, - { - "name": "get_bone_update", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2873665691, - "return_value": { - "type": "enum::XRHandModifier3D.BoneUpdate" - } - } - ], - "properties": [ - { - "type": "String", - "name": "hand_tracker", - "setter": "set_hand_tracker", - "getter": "get_hand_tracker" - }, - { - "type": "int", - "name": "bone_update", - "setter": "set_bone_update", - "getter": "get_bone_update" - } - ] - }, - { - "name": "XRHandTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRPositionalTracker", - "api_type": "core", - "enums": [ - { - "name": "HandTrackingSource", - "is_bitfield": false, - "values": [ - { - "name": "HAND_TRACKING_SOURCE_UNKNOWN", - "value": 0 - }, - { - "name": "HAND_TRACKING_SOURCE_UNOBSTRUCTED", - "value": 1 - }, - { - "name": "HAND_TRACKING_SOURCE_CONTROLLER", - "value": 2 - }, - { - "name": "HAND_TRACKING_SOURCE_NOT_TRACKED", - "value": 3 - }, - { - "name": "HAND_TRACKING_SOURCE_MAX", - "value": 4 - } - ] - }, - { - "name": "HandJoint", - "is_bitfield": false, - "values": [ - { - "name": "HAND_JOINT_PALM", - "value": 0 - }, - { - "name": "HAND_JOINT_WRIST", - "value": 1 - }, - { - "name": "HAND_JOINT_THUMB_METACARPAL", - "value": 2 - }, - { - "name": "HAND_JOINT_THUMB_PHALANX_PROXIMAL", - "value": 3 - }, - { - "name": "HAND_JOINT_THUMB_PHALANX_DISTAL", - "value": 4 - }, - { - "name": "HAND_JOINT_THUMB_TIP", - "value": 5 - }, - { - "name": "HAND_JOINT_INDEX_FINGER_METACARPAL", - "value": 6 - }, - { - "name": "HAND_JOINT_INDEX_FINGER_PHALANX_PROXIMAL", - "value": 7 - }, - { - "name": "HAND_JOINT_INDEX_FINGER_PHALANX_INTERMEDIATE", - "value": 8 - }, - { - "name": "HAND_JOINT_INDEX_FINGER_PHALANX_DISTAL", - "value": 9 - }, - { - "name": "HAND_JOINT_INDEX_FINGER_TIP", - "value": 10 - }, - { - "name": "HAND_JOINT_MIDDLE_FINGER_METACARPAL", - "value": 11 - }, - { - "name": "HAND_JOINT_MIDDLE_FINGER_PHALANX_PROXIMAL", - "value": 12 - }, - { - "name": "HAND_JOINT_MIDDLE_FINGER_PHALANX_INTERMEDIATE", - "value": 13 - }, - { - "name": "HAND_JOINT_MIDDLE_FINGER_PHALANX_DISTAL", - "value": 14 - }, - { - "name": "HAND_JOINT_MIDDLE_FINGER_TIP", - "value": 15 - }, - { - "name": "HAND_JOINT_RING_FINGER_METACARPAL", - "value": 16 - }, - { - "name": "HAND_JOINT_RING_FINGER_PHALANX_PROXIMAL", - "value": 17 - }, - { - "name": "HAND_JOINT_RING_FINGER_PHALANX_INTERMEDIATE", - "value": 18 - }, - { - "name": "HAND_JOINT_RING_FINGER_PHALANX_DISTAL", - "value": 19 - }, - { - "name": "HAND_JOINT_RING_FINGER_TIP", - "value": 20 - }, - { - "name": "HAND_JOINT_PINKY_FINGER_METACARPAL", - "value": 21 - }, - { - "name": "HAND_JOINT_PINKY_FINGER_PHALANX_PROXIMAL", - "value": 22 - }, - { - "name": "HAND_JOINT_PINKY_FINGER_PHALANX_INTERMEDIATE", - "value": 23 - }, - { - "name": "HAND_JOINT_PINKY_FINGER_PHALANX_DISTAL", - "value": 24 - }, - { - "name": "HAND_JOINT_PINKY_FINGER_TIP", - "value": 25 - }, - { - "name": "HAND_JOINT_MAX", - "value": 26 - } - ] - }, - { - "name": "HandJointFlags", - "is_bitfield": true, - "values": [ - { - "name": "HAND_JOINT_FLAG_ORIENTATION_VALID", - "value": 1 - }, - { - "name": "HAND_JOINT_FLAG_ORIENTATION_TRACKED", - "value": 2 - }, - { - "name": "HAND_JOINT_FLAG_POSITION_VALID", - "value": 4 - }, - { - "name": "HAND_JOINT_FLAG_POSITION_TRACKED", - "value": 8 - }, - { - "name": "HAND_JOINT_FLAG_LINEAR_VELOCITY_VALID", - "value": 16 - }, - { - "name": "HAND_JOINT_FLAG_ANGULAR_VELOCITY_VALID", - "value": 32 - } - ] - } - ], - "methods": [ - { - "name": "set_has_tracking_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "has_data", - "type": "bool" - } - ] - }, - { - "name": "get_has_tracking_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_hand_tracking_source", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2958308861, - "arguments": [ - { - "name": "source", - "type": "enum::XRHandTracker.HandTrackingSource" - } - ] - }, - { - "name": "get_hand_tracking_source", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2475045250, - "return_value": { - "type": "enum::XRHandTracker.HandTrackingSource" - } - }, - { - "name": "set_hand_joint_flags", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3028437365, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - }, - { - "name": "flags", - "type": "bitfield::XRHandTracker.HandJointFlags" - } - ] - }, - { - "name": "get_hand_joint_flags", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1730972401, - "return_value": { - "type": "bitfield::XRHandTracker.HandJointFlags" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - } - ] - }, - { - "name": "set_hand_joint_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2529959613, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - }, - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_hand_joint_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1090840196, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - } - ] - }, - { - "name": "set_hand_joint_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2723659615, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - }, - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_hand_joint_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3400025734, - "return_value": { - "type": "float", - "meta": "float" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - } - ] - }, - { - "name": "set_hand_joint_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1978646737, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - }, - { - "name": "linear_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_hand_joint_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 547240792, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - } - ] - }, - { - "name": "set_hand_joint_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1978646737, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - }, - { - "name": "angular_velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_hand_joint_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 547240792, - "return_value": { - "type": "Vector3" - }, - "arguments": [ - { - "name": "joint", - "type": "enum::XRHandTracker.HandJoint" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "has_tracking_data", - "setter": "set_has_tracking_data", - "getter": "get_has_tracking_data" - }, - { - "type": "int", - "name": "hand_tracking_source", - "setter": "set_hand_tracking_source", - "getter": "get_hand_tracking_source" - } - ] - }, - { - "name": "XRInterface", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "Capabilities", - "is_bitfield": false, - "values": [ - { - "name": "XR_NONE", - "value": 0 - }, - { - "name": "XR_MONO", - "value": 1 - }, - { - "name": "XR_STEREO", - "value": 2 - }, - { - "name": "XR_QUAD", - "value": 4 - }, - { - "name": "XR_VR", - "value": 8 - }, - { - "name": "XR_AR", - "value": 16 - }, - { - "name": "XR_EXTERNAL", - "value": 32 - } - ] - }, - { - "name": "TrackingStatus", - "is_bitfield": false, - "values": [ - { - "name": "XR_NORMAL_TRACKING", - "value": 0 - }, - { - "name": "XR_EXCESSIVE_MOTION", - "value": 1 - }, - { - "name": "XR_INSUFFICIENT_FEATURES", - "value": 2 - }, - { - "name": "XR_UNKNOWN_TRACKING", - "value": 3 - }, - { - "name": "XR_NOT_TRACKING", - "value": 4 - } - ] - }, - { - "name": "PlayAreaMode", - "is_bitfield": false, - "values": [ - { - "name": "XR_PLAY_AREA_UNKNOWN", - "value": 0 - }, - { - "name": "XR_PLAY_AREA_3DOF", - "value": 1 - }, - { - "name": "XR_PLAY_AREA_SITTING", - "value": 2 - }, - { - "name": "XR_PLAY_AREA_ROOMSCALE", - "value": 3 - }, - { - "name": "XR_PLAY_AREA_STAGE", - "value": 4 - }, - { - "name": "XR_PLAY_AREA_CUSTOM", - "value": 2147483647 - } - ] - }, - { - "name": "EnvironmentBlendMode", - "is_bitfield": false, - "values": [ - { - "name": "XR_ENV_BLEND_MODE_OPAQUE", - "value": 0 - }, - { - "name": "XR_ENV_BLEND_MODE_ADDITIVE", - "value": 1 - }, - { - "name": "XR_ENV_BLEND_MODE_ALPHA_BLEND", - "value": 2 - } - ] - }, - { - "name": "VRSTextureFormat", - "is_bitfield": false, - "values": [ - { - "name": "XR_VRS_TEXTURE_FORMAT_UNIFIED", - "value": 0 - }, - { - "name": "XR_VRS_TEXTURE_FORMAT_FRAGMENT_SHADING_RATE", - "value": 1 - }, - { - "name": "XR_VRS_TEXTURE_FORMAT_FRAGMENT_DENSITY_MAP", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "get_capabilities", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "is_primary", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_primary", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "primary", - "type": "bool" - } - ] - }, - { - "name": "is_initialized", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "initialize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "uninitialize", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_system_info", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2382534195, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_tracking_status", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 167423259, - "return_value": { - "type": "enum::XRInterface.TrackingStatus" - } - }, - { - "name": "get_render_target_size", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "get_view_count", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "trigger_haptic_pulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3752640163, - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "tracker_name", - "type": "StringName" - }, - { - "name": "frequency", - "type": "float", - "meta": "double" - }, - { - "name": "amplitude", - "type": "float", - "meta": "double" - }, - { - "name": "duration_sec", - "type": "float", - "meta": "double" - }, - { - "name": "delay_sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "supports_play_area_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3429955281, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::XRInterface.PlayAreaMode" - } - ] - }, - { - "name": "get_play_area_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1615132885, - "return_value": { - "type": "enum::XRInterface.PlayAreaMode" - } - }, - { - "name": "set_play_area_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3429955281, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::XRInterface.PlayAreaMode" - } - ] - }, - { - "name": "get_play_area", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "get_anchor_detection_is_enabled", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_anchor_detection_is_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "get_camera_feed_id", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "is_passthrough_supported", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "is_passthrough_enabled", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "start_passthrough", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "stop_passthrough", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "get_transform_for_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 518934792, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - }, - { - "name": "cam_transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_projection_for_view", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3766090294, - "return_value": { - "type": "Projection" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - }, - { - "name": "aspect", - "type": "float", - "meta": "double" - }, - { - "name": "near", - "type": "float", - "meta": "double" - }, - { - "name": "far", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_supported_environment_blend_modes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2915620761, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_environment_blend_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 551152418, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::XRInterface.EnvironmentBlendMode" - } - ] - }, - { - "name": "get_environment_blend_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1984334071, - "return_value": { - "type": "enum::XRInterface.EnvironmentBlendMode" - } - } - ], - "signals": [ - { - "name": "play_area_changed", - "arguments": [ - { - "name": "mode", - "type": "int" - } - ] - } - ], - "properties": [ - { - "type": "bool", - "name": "interface_is_primary", - "setter": "set_primary", - "getter": "is_primary" - }, - { - "type": "int", - "name": "xr_play_area_mode", - "setter": "set_play_area_mode", - "getter": "get_play_area_mode" - }, - { - "type": "int", - "name": "environment_blend_mode", - "setter": "set_environment_blend_mode", - "getter": "get_environment_blend_mode" - }, - { - "type": "bool", - "name": "ar_is_anchor_detection_enabled", - "setter": "set_anchor_detection_is_enabled", - "getter": "get_anchor_detection_is_enabled" - } - ] - }, - { - "name": "XRInterfaceExtension", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRInterface", - "api_type": "core", - "methods": [ - { - "name": "_get_name", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "_get_capabilities", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_is_initialized", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_initialize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2240911060, - "return_value": { - "type": "bool" - } - }, - { - "name": "_uninitialize", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_system_info", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3102165223, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "_supports_play_area_mode", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2693703033, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::XRInterface.PlayAreaMode" - } - ] - }, - { - "name": "_get_play_area_mode", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1615132885, - "return_value": { - "type": "enum::XRInterface.PlayAreaMode" - } - }, - { - "name": "_set_play_area_mode", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2693703033, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "mode", - "type": "enum::XRInterface.PlayAreaMode" - } - ] - }, - { - "name": "_get_play_area", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 497664490, - "return_value": { - "type": "PackedVector3Array" - } - }, - { - "name": "_get_render_target_size", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1497962370, - "return_value": { - "type": "Vector2" - } - }, - { - "name": "_get_view_count", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, - { - "name": "_get_camera_transform", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4183770049, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "_get_transform_for_view", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 518934792, - "return_value": { - "type": "Transform3D" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - }, - { - "name": "cam_transform", - "type": "Transform3D" - } - ] - }, - { - "name": "_get_projection_for_view", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 4067457445, - "return_value": { - "type": "PackedFloat64Array" - }, - "arguments": [ - { - "name": "view", - "type": "int", - "meta": "uint32" - }, - { - "name": "aspect", - "type": "float", - "meta": "double" - }, - { - "name": "z_near", - "type": "float", - "meta": "double" - }, - { - "name": "z_far", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_get_vrs_texture", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_get_vrs_texture_format", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1500923256, - "return_value": { - "type": "enum::XRInterface.VRSTextureFormat" - } - }, - { - "name": "_process", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_pre_render", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_pre_draw_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3521089500, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "render_target", - "type": "RID" - } - ] - }, - { - "name": "_post_draw_viewport", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1378122625, - "arguments": [ - { - "name": "render_target", - "type": "RID" - }, - { - "name": "screen_rect", - "type": "Rect2" - } - ] - }, - { - "name": "_end_frame", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3218959716 - }, - { - "name": "_get_suggested_tracker_names", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "_get_suggested_pose_names", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 1761182771, - "return_value": { - "type": "PackedStringArray" - }, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "_get_tracking_status", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 167423259, - "return_value": { - "type": "enum::XRInterface.TrackingStatus" - } - }, - { - "name": "_trigger_haptic_pulse", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3752640163, - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "tracker_name", - "type": "StringName" - }, - { - "name": "frequency", - "type": "float", - "meta": "double" - }, - { - "name": "amplitude", - "type": "float", - "meta": "double" - }, - { - "name": "duration_sec", - "type": "float", - "meta": "double" - }, - { - "name": "delay_sec", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "_get_anchor_detection_is_enabled", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "_set_anchor_detection_is_enabled", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "_get_camera_feed_id", - "is_const": true, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "_get_color_texture", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_get_depth_texture", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "_get_velocity_texture", - "is_const": false, - "is_static": false, - "is_required": false, - "is_vararg": false, - "is_virtual": true, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_color_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_depth_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "get_velocity_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 529393457, - "return_value": { - "type": "RID" - } - }, - { - "name": "add_blit", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 258596971, - "arguments": [ - { - "name": "render_target", - "type": "RID" - }, - { - "name": "src_rect", - "type": "Rect2" - }, - { - "name": "dst_rect", - "type": "Rect2i" - }, - { - "name": "use_layer", - "type": "bool" - }, - { - "name": "layer", - "type": "int", - "meta": "uint32" - }, - { - "name": "apply_lens_distortion", - "type": "bool" - }, - { - "name": "eye_center", - "type": "Vector2" - }, - { - "name": "k1", - "type": "float", - "meta": "double" - }, - { - "name": "k2", - "type": "float", - "meta": "double" - }, - { - "name": "upscale", - "type": "float", - "meta": "double" - }, - { - "name": "aspect_ratio", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_render_target_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 41030802, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "render_target", - "type": "RID" - } - ] - } - ] - }, - { - "name": "XRNode3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "get_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_pose_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "pose", - "type": "StringName" - } - ] - }, - { - "name": "get_pose_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_show_when_tracked", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "show", - "type": "bool" - } - ] - }, - { - "name": "get_show_when_tracked", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_is_active", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_has_tracking_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "get_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2806551826, - "return_value": { - "type": "XRPose" - } - }, - { - "name": "trigger_haptic_pulse", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 508576839, - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "frequency", - "type": "float", - "meta": "double" - }, - { - "name": "amplitude", - "type": "float", - "meta": "double" - }, - { - "name": "duration_sec", - "type": "float", - "meta": "double" - }, - { - "name": "delay_sec", - "type": "float", - "meta": "double" - } - ] - } - ], - "signals": [ - { - "name": "tracking_changed", - "arguments": [ - { - "name": "tracking", - "type": "bool" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "tracker", - "setter": "set_tracker", - "getter": "get_tracker" - }, - { - "type": "String", - "name": "pose", - "setter": "set_pose_name", - "getter": "get_pose_name" - }, - { - "type": "bool", - "name": "show_when_tracked", - "setter": "set_show_when_tracked", - "getter": "get_show_when_tracked" - } - ] - }, - { - "name": "XROrigin3D", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "methods": [ - { - "name": "set_world_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "world_scale", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_world_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_current", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_current", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "float", - "name": "world_scale", - "setter": "set_world_scale", - "getter": "get_world_scale" - }, - { - "type": "bool", - "name": "current", - "setter": "set_current", - "getter": "is_current" - } - ] - }, - { - "name": "XRPose", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "TrackingConfidence", - "is_bitfield": false, - "values": [ - { - "name": "XR_TRACKING_CONFIDENCE_NONE", - "value": 0 - }, - { - "name": "XR_TRACKING_CONFIDENCE_LOW", - "value": 1 - }, - { - "name": "XR_TRACKING_CONFIDENCE_HIGH", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_has_tracking_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "has_tracking_data", - "type": "bool" - } - ] - }, - { - "name": "get_has_tracking_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "transform", - "type": "Transform3D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "get_adjusted_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_linear_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_linear_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_angular_velocity", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3460891852, - "arguments": [ - { - "name": "velocity", - "type": "Vector3" - } - ] - }, - { - "name": "get_angular_velocity", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3360562783, - "return_value": { - "type": "Vector3" - } - }, - { - "name": "set_tracking_confidence", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4171656666, - "arguments": [ - { - "name": "tracking_confidence", - "type": "enum::XRPose.TrackingConfidence" - } - ] - }, - { - "name": "get_tracking_confidence", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2064923680, - "return_value": { - "type": "enum::XRPose.TrackingConfidence" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "has_tracking_data", - "setter": "set_has_tracking_data", - "getter": "get_has_tracking_data" - }, - { - "type": "String", - "name": "name", - "setter": "set_name", - "getter": "get_name" - }, - { - "type": "String", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform" - }, - { - "type": "String", - "name": "linear_velocity", - "setter": "set_linear_velocity", - "getter": "get_linear_velocity" - }, - { - "type": "String", - "name": "angular_velocity", - "setter": "set_angular_velocity", - "getter": "get_angular_velocity" - }, - { - "type": "int", - "name": "tracking_confidence", - "setter": "set_tracking_confidence", - "getter": "get_tracking_confidence" - } - ] - }, - { - "name": "XRPositionalTracker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRTracker", - "api_type": "core", - "enums": [ - { - "name": "TrackerHand", - "is_bitfield": false, - "values": [ - { - "name": "TRACKER_HAND_UNKNOWN", - "value": 0 - }, - { - "name": "TRACKER_HAND_LEFT", - "value": 1 - }, - { - "name": "TRACKER_HAND_RIGHT", - "value": 2 - }, - { - "name": "TRACKER_HAND_MAX", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "get_tracker_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_tracker_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "profile", - "type": "String" - } - ] - }, - { - "name": "get_tracker_hand", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4181770860, - "return_value": { - "type": "enum::XRPositionalTracker.TrackerHand" - } - }, - { - "name": "set_tracker_hand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3904108980, - "arguments": [ - { - "name": "hand", - "type": "enum::XRPositionalTracker.TrackerHand" - } - ] - }, - { - "name": "has_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2619796661, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_pose", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4099720006, - "return_value": { - "type": "XRPose" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "invalidate_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_pose", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3451230163, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "transform", - "type": "Transform3D" - }, - { - "name": "linear_velocity", - "type": "Vector3" - }, - { - "name": "angular_velocity", - "type": "Vector3" - }, - { - "name": "tracking_confidence", - "type": "enum::XRPose.TrackingConfidence" - } - ] - }, - { - "name": "get_input", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2760726917, - "return_value": { - "type": "Variant" - }, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "set_input", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3776071444, - "arguments": [ - { - "name": "name", - "type": "StringName" - }, - { - "name": "value", - "type": "Variant" - } - ] - } - ], - "signals": [ - { - "name": "pose_changed", - "arguments": [ - { - "name": "pose", - "type": "XRPose" - } - ] - }, - { - "name": "pose_lost_tracking", - "arguments": [ - { - "name": "pose", - "type": "XRPose" - } - ] - }, - { - "name": "button_pressed", - "arguments": [ - { - "name": "action_name", - "type": "String" - } - ] - }, - { - "name": "button_released", - "arguments": [ - { - "name": "action_name", - "type": "String" - } - ] - }, - { - "name": "input_float_changed", - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "value", - "type": "float" - } - ] - }, - { - "name": "input_vector2_changed", - "arguments": [ - { - "name": "action_name", - "type": "String" - }, - { - "name": "vector", - "type": "Vector2" - } - ] - }, - { - "name": "profile_changed", - "arguments": [ - { - "name": "role", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "profile", - "setter": "set_tracker_profile", - "getter": "get_tracker_profile" - }, - { - "type": "int", - "name": "hand", - "setter": "set_tracker_hand", - "getter": "get_tracker_hand" - } - ] - }, - { - "name": "XRServer", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "enums": [ - { - "name": "TrackerType", - "is_bitfield": false, - "values": [ - { - "name": "TRACKER_HEAD", - "value": 1 - }, - { - "name": "TRACKER_CONTROLLER", - "value": 2 - }, - { - "name": "TRACKER_BASESTATION", - "value": 4 - }, - { - "name": "TRACKER_ANCHOR", - "value": 8 - }, - { - "name": "TRACKER_HAND", - "value": 16 - }, - { - "name": "TRACKER_BODY", - "value": 32 - }, - { - "name": "TRACKER_FACE", - "value": 64 - }, - { - "name": "TRACKER_ANY_KNOWN", - "value": 127 - }, - { - "name": "TRACKER_UNKNOWN", - "value": 128 - }, - { - "name": "TRACKER_ANY", - "value": 255 - } - ] - }, - { - "name": "RotationMode", - "is_bitfield": false, - "values": [ - { - "name": "RESET_FULL_ROTATION", - "value": 0 - }, - { - "name": "RESET_BUT_KEEP_TILT", - "value": 1 - }, - { - "name": "DONT_RESET_ROTATION", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "get_world_scale", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "double" - } - }, - { - "name": "set_world_scale", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "scale", - "type": "float", - "meta": "double" - } - ] - }, - { - "name": "get_world_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_world_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2952846383, - "arguments": [ - { - "name": "world_origin", - "type": "Transform3D" - } - ] - }, - { - "name": "get_reference_frame", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3229777777, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "clear_reference_frame", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - }, - { - "name": "center_on_hmd", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1450904707, - "arguments": [ - { - "name": "rotation_mode", - "type": "enum::XRServer.RotationMode" - }, - { - "name": "keep_height", - "type": "bool" - } - ] - }, - { - "name": "get_hmd_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4183770049, - "return_value": { - "type": "Transform3D" - } - }, - { - "name": "set_camera_locked_to_origin", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2586408642, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_camera_locked_to_origin", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 36873697, - "return_value": { - "type": "bool" - } - }, - { - "name": "add_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1898711491, - "arguments": [ - { - "name": "interface", - "type": "XRInterface" - } - ] - }, - { - "name": "get_interface_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "remove_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1898711491, - "arguments": [ - { - "name": "interface", - "type": "XRInterface" - } - ] - }, - { - "name": "get_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4237347919, - "return_value": { - "type": "XRInterface" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_interfaces", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "typedarray::Dictionary" - } - }, - { - "name": "find_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1395192955, - "return_value": { - "type": "XRInterface" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "add_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684804553, - "hash_compatibility": [ - 2692800323 - ], - "arguments": [ - { - "name": "tracker", - "type": "XRTracker" - } - ] - }, - { - "name": "remove_tracker", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 684804553, - "hash_compatibility": [ - 2692800323 - ], - "arguments": [ - { - "name": "tracker", - "type": "XRTracker" - } - ] - }, - { - "name": "get_trackers", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3554694381, - "return_value": { - "type": "Dictionary" - }, - "arguments": [ - { - "name": "tracker_types", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tracker", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 147382240, - "hash_compatibility": [ - 2742084544 - ], - "return_value": { - "type": "XRTracker" - }, - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - } - ] - }, - { - "name": "get_primary_interface", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2143545064, - "return_value": { - "type": "XRInterface" - } - }, - { - "name": "set_primary_interface", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1898711491, - "arguments": [ - { - "name": "interface", - "type": "XRInterface" - } - ] - } - ], - "signals": [ - { - "name": "reference_frame_changed" - }, - { - "name": "interface_added", - "arguments": [ - { - "name": "interface_name", - "type": "StringName" - } - ] - }, - { - "name": "interface_removed", - "arguments": [ - { - "name": "interface_name", - "type": "StringName" - } - ] - }, - { - "name": "tracker_added", - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - }, - { - "name": "type", - "type": "int" - } - ] - }, - { - "name": "tracker_updated", - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - }, - { - "name": "type", - "type": "int" - } - ] - }, - { - "name": "tracker_removed", - "arguments": [ - { - "name": "tracker_name", - "type": "StringName" - }, - { - "name": "type", - "type": "int" - } - ] - }, - { - "name": "world_origin_changed" - } - ], - "properties": [ - { - "type": "float", - "name": "world_scale", - "setter": "set_world_scale", - "getter": "get_world_scale" - }, - { - "type": "Vector3", - "name": "world_origin", - "setter": "set_world_origin", - "getter": "get_world_origin" - }, - { - "type": "bool", - "name": "camera_locked_to_origin", - "setter": "set_camera_locked_to_origin", - "getter": "is_camera_locked_to_origin" - }, - { - "type": "Object", - "name": "primary_interface", - "setter": "set_primary_interface", - "getter": "get_primary_interface" - } - ] - }, - { - "name": "XRTracker", - "is_refcounted": true, - "is_instantiable": false, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "get_tracker_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2784508102, - "return_value": { - "type": "enum::XRServer.TrackerType" - } - }, - { - "name": "set_tracker_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3055763575, - "arguments": [ - { - "name": "type", - "type": "enum::XRServer.TrackerType" - } - ] - }, - { - "name": "get_tracker_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2002593661, - "return_value": { - "type": "StringName" - } - }, - { - "name": "set_tracker_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3304788590, - "arguments": [ - { - "name": "name", - "type": "StringName" - } - ] - }, - { - "name": "get_tracker_desc", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_tracker_desc", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "description", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "int", - "name": "type", - "setter": "set_tracker_type", - "getter": "get_tracker_type" - }, - { - "type": "String", - "name": "name", - "setter": "set_tracker_name", - "getter": "get_tracker_name" - }, - { - "type": "String", - "name": "description", - "setter": "set_tracker_desc", - "getter": "get_tracker_desc" - } - ] - }, - { - "name": "XRVRS", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Object", - "api_type": "core", - "methods": [ - { - "name": "get_vrs_min_radius", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_min_radius", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "radius", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vrs_strength", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_vrs_strength", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_vrs_render_region", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 410525958, - "return_value": { - "type": "Rect2i" - } - }, - { - "name": "set_vrs_render_region", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1763793166, - "arguments": [ - { - "name": "render_region", - "type": "Rect2i" - } - ] - }, - { - "name": "make_vrs_texture", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3647044786, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "target_size", - "type": "Vector2" - }, - { - "name": "eye_foci", - "type": "PackedVector2Array" - } - ] - } - ], - "properties": [ - { - "type": "float", - "name": "vrs_min_radius", - "setter": "set_vrs_min_radius", - "getter": "get_vrs_min_radius" - }, - { - "type": "float", - "name": "vrs_strength", - "setter": "set_vrs_strength", - "getter": "get_vrs_strength" - }, - { - "type": "Rect2i", - "name": "vrs_render_region", - "setter": "set_vrs_render_region", - "getter": "get_vrs_render_region" - } - ] - }, - { - "name": "ZIPPacker", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "enums": [ - { - "name": "ZipAppend", - "is_bitfield": false, - "values": [ - { - "name": "APPEND_CREATE", - "value": 0 - }, - { - "name": "APPEND_CREATEAFTER", - "value": 1 - }, - { - "name": "APPEND_ADDINZIP", - "value": 2 - } - ] - }, - { - "name": "CompressionLevel", - "is_bitfield": false, - "values": [ - { - "name": "COMPRESSION_DEFAULT", - "value": -1 - }, - { - "name": "COMPRESSION_NONE", - "value": 0 - }, - { - "name": "COMPRESSION_FAST", - "value": 1 - }, - { - "name": "COMPRESSION_BEST", - "value": 9 - } - ] - } - ], - "methods": [ - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1936816515, - "hash_compatibility": [ - 3715508516 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "append", - "type": "enum::ZIPPacker.ZipAppend", - "default_value": "0" - } - ] - }, - { - "name": "set_compression_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "compression_level", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_compression_level", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "add_directory", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 934773537, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "permissions", - "type": "bitfield::FileAccess.UnixPermissionFlags", - "default_value": "493" - }, - { - "name": "modified_time", - "type": "int", - "meta": "uint64", - "default_value": "0" - } - ] - }, - { - "name": "start_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4260848715, - "hash_compatibility": [ - 166001499 - ], - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "permissions", - "type": "bitfield::FileAccess.UnixPermissionFlags", - "default_value": "420" - }, - { - "name": "modified_time", - "type": "int", - "meta": "uint64", - "default_value": "0" - } - ] - }, - { - "name": "write_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 680677267, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "data", - "type": "PackedByteArray" - } - ] - }, - { - "name": "close_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - } - ], - "properties": [ - { - "type": "int", - "name": "compression_level", - "setter": "set_compression_level", - "getter": "get_compression_level" - } - ] - }, - { - "name": "ZIPReader", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core", - "methods": [ - { - "name": "open", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166001499, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "close", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 166280745, - "return_value": { - "type": "enum::Error" - } - }, - { - "name": "get_files", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2981934095, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "read_file", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 740857591, - "hash_compatibility": [ - 156385007 - ], - "return_value": { - "type": "PackedByteArray" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "case_sensitive", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "file_exists", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 35364943, - "hash_compatibility": [ - 1676256 - ], - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "case_sensitive", - "type": "bool", - "default_value": "true" - } - ] - }, - { - "name": "get_compression_level", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3694577386, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "path", - "type": "String" - }, - { - "name": "case_sensitive", - "type": "bool", - "default_value": "true" - } - ] - } - ] - } - ], - "singletons": [ - { - "name": "Performance", - "type": "Performance" - }, - { - "name": "Engine", - "type": "Engine" - }, - { - "name": "ProjectSettings", - "type": "ProjectSettings" - }, - { - "name": "OS", - "type": "OS" - }, - { - "name": "Time", - "type": "Time" - }, - { - "name": "ClassDB", - "type": "ClassDB" - }, - { - "name": "TextServerManager", - "type": "TextServerManager" - }, - { - "name": "NavigationServer2DManager", - "type": "NavigationServer2DManager" - }, - { - "name": "PhysicsServer2DManager", - "type": "PhysicsServer2DManager" - }, - { - "name": "NavigationServer3DManager", - "type": "NavigationServer3DManager" - }, - { - "name": "PhysicsServer3DManager", - "type": "PhysicsServer3DManager" - }, - { - "name": "NavigationMeshGenerator", - "type": "NavigationMeshGenerator" - }, - { - "name": "IP", - "type": "IP" - }, - { - "name": "Geometry2D", - "type": "Geometry2D" - }, - { - "name": "Geometry3D", - "type": "Geometry3D" - }, - { - "name": "ResourceLoader", - "type": "ResourceLoader" - }, - { - "name": "ResourceSaver", - "type": "ResourceSaver" - }, - { - "name": "Marshalls", - "type": "Marshalls" - }, - { - "name": "TranslationServer", - "type": "TranslationServer" - }, - { - "name": "Input", - "type": "Input" - }, - { - "name": "InputMap", - "type": "InputMap" - }, - { - "name": "EngineDebugger", - "type": "EngineDebugger" - }, - { - "name": "GDExtensionManager", - "type": "GDExtensionManager" - }, - { - "name": "ResourceUID", - "type": "ResourceUID" - }, - { - "name": "WorkerThreadPool", - "type": "WorkerThreadPool" - }, - { - "name": "ThemeDB", - "type": "ThemeDB" - }, - { - "name": "EditorInterface", - "type": "EditorInterface" - }, - { - "name": "GDScriptLanguageProtocol", - "type": "GDScriptLanguageProtocol" - }, - { - "name": "JavaClassWrapper", - "type": "JavaClassWrapper" - }, - { - "name": "JavaScriptBridge", - "type": "JavaScriptBridge" - }, - { - "name": "AccessibilityServer", - "type": "AccessibilityServer" - }, - { - "name": "AudioServer", - "type": "AudioServer" - }, - { - "name": "CameraServer", - "type": "CameraServer" - }, - { - "name": "DisplayServer", - "type": "DisplayServer" - }, - { - "name": "NativeMenu", - "type": "NativeMenu" - }, - { - "name": "RenderingServer", - "type": "RenderingServer" - }, - { - "name": "NavigationServer2D", - "type": "NavigationServer2D" - }, - { - "name": "NavigationServer3D", - "type": "NavigationServer3D" - }, - { - "name": "PhysicsServer2D", - "type": "PhysicsServer2D" - }, - { - "name": "PhysicsServer3D", - "type": "PhysicsServer3D" - }, - { - "name": "XRServer", - "type": "XRServer" - } - ], - "native_structures": [ - { - "name": "AudioFrame", - "format": "float left;float right" - }, - { - "name": "CaretInfo", - "format": "Rect2 leading_caret;Rect2 trailing_caret;TextServer::Direction leading_direction;TextServer::Direction trailing_direction" - }, - { - "name": "Glyph", - "format": "int start = -1;int end = -1;uint8_t count = 0;uint8_t repeat = 1;uint16_t flags = 0;float x_off = 0.f;float y_off = 0.f;float advance = 0.f;RID font_rid;int font_size = 0;int32_t index = 0" - }, - { - "name": "ObjectID", - "format": "uint64_t id = 0" - }, - { - "name": "PhysicsServer2DExtensionMotionResult", - "format": "Vector2 travel;Vector2 remainder;Vector2 collision_point;Vector2 collision_normal;Vector2 collider_velocity;real_t collision_depth;real_t collision_safe_fraction;real_t collision_unsafe_fraction;int collision_local_shape;ObjectID collider_id;RID collider;int collider_shape" - }, - { - "name": "PhysicsServer2DExtensionRayResult", - "format": "Vector2 position;Vector2 normal;RID rid;ObjectID collider_id;Object *collider;int shape" - }, - { - "name": "PhysicsServer2DExtensionShapeRestInfo", - "format": "Vector2 point;Vector2 normal;RID rid;ObjectID collider_id;int shape;Vector2 linear_velocity" - }, - { - "name": "PhysicsServer2DExtensionShapeResult", - "format": "RID rid;ObjectID collider_id;Object *collider;int shape" - }, - { - "name": "PhysicsServer3DExtensionMotionCollision", - "format": "Vector3 position;Vector3 normal;Vector3 collider_velocity;Vector3 collider_angular_velocity;real_t depth;int local_shape;ObjectID collider_id;RID collider;int collider_shape" - }, - { - "name": "PhysicsServer3DExtensionMotionResult", - "format": "Vector3 travel;Vector3 remainder;real_t collision_depth;real_t collision_safe_fraction;real_t collision_unsafe_fraction;PhysicsServer3DExtensionMotionCollision collisions[32];int collision_count" - }, - { - "name": "PhysicsServer3DExtensionRayResult", - "format": "Vector3 position;Vector3 normal;RID rid;ObjectID collider_id;Object *collider;int shape;int face_index" - }, - { - "name": "PhysicsServer3DExtensionShapeRestInfo", - "format": "Vector3 point;Vector3 normal;RID rid;ObjectID collider_id;int shape;Vector3 linear_velocity" - }, - { - "name": "PhysicsServer3DExtensionShapeResult", - "format": "RID rid;ObjectID collider_id;Object *collider;int shape" - }, - { - "name": "ScriptLanguageExtensionProfilingInfo", - "format": "StringName signature;uint64_t call_count;uint64_t total_time;uint64_t self_time" - } - ] -} diff --git a/gdextension.disabled/simulation.gdextension.txt b/gdextension.disabled/simulation.gdextension.txt deleted file mode 100644 index 7d26309..0000000 --- a/gdextension.disabled/simulation.gdextension.txt +++ /dev/null @@ -1,8 +0,0 @@ -[configuration] -entry_symbol = "gdextension_entry" -compatibility_minimum = "4.2" - -[libraries] -linux.x86_64 = "res://gdextension/simulation/gdextension/bin/linux/libsimulation.so" -windows.x86_64 = "" -macos.universal = "" diff --git a/gdextension.disabled/simulation.gdextension.uid.txt b/gdextension.disabled/simulation.gdextension.uid.txt deleted file mode 100644 index f0a4ee2..0000000 --- a/gdextension.disabled/simulation.gdextension.uid.txt +++ /dev/null @@ -1 +0,0 @@ -uid://c3r5nkuddarbb diff --git a/gdextension.disabled/simulation/.gitignore b/gdextension.disabled/simulation/.gitignore deleted file mode 100644 index 609eeba..0000000 --- a/gdextension.disabled/simulation/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -# Build artifacts -build/ -gdextension/bin/ - -# IDE -.idea/ -.vscode/ -*.swp -*.swo -*~ - -# OS -.DS_Store -Thumbs.db - -# Python -__pycache__/ -*.pyc -*.pyo diff --git a/gdextension.disabled/simulation/.sconsign.dblite b/gdextension.disabled/simulation/.sconsign.dblite deleted file mode 100644 index a1a204d..0000000 Binary files a/gdextension.disabled/simulation/.sconsign.dblite and /dev/null differ diff --git a/gdextension.disabled/simulation/README.md b/gdextension.disabled/simulation/README.md deleted file mode 100644 index 400b470..0000000 --- a/gdextension.disabled/simulation/README.md +++ /dev/null @@ -1,159 +0,0 @@ -# Tactical Shooter — GDExtension Simulation Core - -GDExtension C++ simulation core for a 128Hz tactical FPS. Movement, hit detection, and state serialization run entirely in C++ — the GDScript hot loop handles only network I/O and rendering. - -## Architecture - -``` -┌─────────────────────────────────────────────────────┐ -│ GDScript Layer │ -│ _process(delta) → can_tick() → tick() → send() │ -├─────────────────────────────────────────────────────┤ -│ SimulationServer (C++) │ -│ ┌──────────┐ ┌───────────────┐ ┌───────────────┐ │ -│ │Movement │ │HitDetection │ │StateSerializer│ │ -│ │Component │ │(ray/overlap) │ │(delta-compress)│ │ -│ └──────────┘ └───────────────┘ └───────────────┘ │ -│ ┌──────────────────────────────────────────────────┐│ -│ │ Entity[N] (position, velocity, health, input) ││ -│ └──────────────────────────────────────────────────┘│ -├─────────────────────────────────────────────────────┤ -│ Network Layer (GDScript → ENet) │ -└─────────────────────────────────────────────────────┘ -``` - -### Design Principles - -- **Hot path in C++**: All simulation ticks (movement, hit detection, serialization) run in GDExtension. No GDScript VM overhead per tick. -- **Custom replication**: Not using Godot's scene-replication (too expensive at 128Hz). Delta-compressed binary snapshots via `StateSerializer`. -- **Abstracted systems**: Movement parameters are configurable from GDScript. Hit detection uses geometric checks (no PhysicsServer3D dependency in Phase 1). -- **Benchmark-ready**: `SimulationServer::populate_bots()` + `get_stats()` provide the hook for the 128Hz load test (`task t_f671f48a`). - -## Prerequisites - -- **Godot 4.2+** (recommended: 4.3+) -- **godot-cpp** (v4.3 branch): `git submodule update --init` -- **SCons** 4.0+: `pip install scons` -- **C++17 compiler**: GCC 11+ / Clang 14+ / MSVC 2022 - -## Setup - -```bash -# Clone with submodules -git clone tactical-shooter -cd tactical-shooter -git submodule update --init --recursive - -# Build (debug) -scons -j$(nproc) - -# Build (release) -scons target=template_release -j$(nproc) -``` - -The compiled `.so`/`.dll` will be placed in `gdextension/bin//`. - -## Usage (GDScript) - -```gdscript -var server = SimulationServer.new() -server.tick_rate = 128 -server.start() - -# Spawn some entities -server.spawn_entity(Vector3(0, 0, 0)) -server.spawn_entity(Vector3(5, 0, 0)) - -# Main loop -func _process(delta): - while server.can_tick(delta): - var snapshot = server.tick() - if snapshot.size() > 0: - send_to_clients(snapshot) - -# Apply player input -func _input(event): - var input_dict = { - move_direction = input_vector, - look_yaw = camera_yaw, - look_pitch = camera_pitch, - jump = Input.is_action_just_pressed("jump"), - sprint = Input.is_action_pressed("sprint"), - shoot = Input.is_action_just_pressed("shoot"), - input_sequence = input_seq - } - server.apply_input(player_entity_id, input_dict) -``` - -## Project Structure - -``` -├── SConstruct # Build system -├── src/ -│ ├── register_types.cpp/.h # GDExtension entry point -│ ├── simulation_server.cpp/.h # Main orchestrator (GDScript-facing) -│ ├── entity.cpp/.h # Entity state (GDScript-facing) -│ ├── movement_component.cpp/.h # FPS movement simulation -│ ├── hit_detection.cpp/.h # Ray/sphere hit detection -│ ├── state_serializer.cpp/.h # Delta-compressed snapshot I/O -│ └── bitstream.h # Bit-level packing (header-only) -├── gdextension/ -│ ├── simulation.gdextension # Godot extension config -│ └── bin/ # Build output -└── tests/ - └── test_simulation.cpp # Unit test harness -``` - -## Movement Parameters - -All tunable from GDScript: - -| Parameter | Default | Description | -|----------------|---------|--------------------------------------| -| walk_speed | 4.0 | Ground speed (units/s) | -| sprint_speed | 6.5 | Sprint speed (units/s) | -| crouch_speed | 2.0 | Crouch speed (units/s) | -| acceleration | 20.0 | Ground acceleration (units/s²) | -| air_acceleration| 4.0 | Air acceleration (units/s²) | -| friction | 8.0 | Ground deceleration | -| jump_velocity | 5.0 | Initial upward velocity (units/s) | -| gravity | -20.0 | Gravity (units/s², negative = down) | - -## Snapshot Wire Format - -``` -[uint32 tick] # Server tick number -[uint16 count] # Number of changed entities -[uint16 base_tick] # 0 = full snapshot ---- per entity --- -[uint16 entity_id] -[uint32 change_mask] # Which fields changed -[fields per change_mask] # Only changed fields, packed as: - position: 3 × 16-bit quantized floats (range ±1024) - velocity: 3 × 12-bit quantized floats (range ±32) - rotation: 2 × 11-12 bit quantized floats - health: 7-bit quantized (0-100) - armor: 7-bit quantized (0-100) - weapon_id: uint8 - ammo: uint16 - flags: uint16 - input_seq: uint32 -``` - -Typical sizes at 128Hz: -- **Full snapshot** (10 entities): ~300-400 bytes -- **Delta snapshot** (5 changed): ~150-250 bytes - -## Task Dependencies - -``` -Phase 0 (done) → build:gdextension-simulation-scaffold (this) → bench:128hz-load-test - → build:fps-character-controller -``` - -## Known Limitations (Phase 1) - -- Hit detection uses bounding sphere geometry (not PhysicsServer3D raycasts) -- Ground detection is stub-only (no scene queries for floor normal) -- No interpolation: clients receive raw tick snapshots -- Single-threaded tick processing diff --git a/gdextension.disabled/simulation/SConstruct b/gdextension.disabled/simulation/SConstruct deleted file mode 100644 index 0a60d88..0000000 --- a/gdextension.disabled/simulation/SConstruct +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python -""" -Build system for tactical-shooter GDExtension simulation core. - -Targets a shared library (.so/.dll/.dylib) loadable by Godot 4. - -Dependencies: - - godot-cpp submodule (git submodule update --init) - - scons (pip install scons) - - C++17 capable compiler (gcc >= 11, clang >= 14, MSVC 2022) - -Usage: - scons # debug build - scons target=release # release build (optimized, no debug symbols) - scons target=template_release # same as release - scons target=template_debug # debug build with optimization - scons -j$(nproc) # parallel build - -Platform detection is automatic (linux, windows, macos). -Architecture detection is automatic (x86_64, arm64). -""" - -import os -import sys -import platform - -# ---- Environment Setup ------------------------------------------------------- - -EnsureSConsVersion(4, 0) - -env = SConscript("godot-cpp/SConstruct") - -# ---- Platform / Architecture / Target detection ------------------------------ - -# Add our custom options -opts = Variables([], ARGUMENTS) -opts.Add( - EnumVariable("target", "Build target", "template_debug", - ("editor", "template_debug", "template_release")) -) -opts.Add(BoolVariable("verbose", "Enable verbose output", False)) -opts.Add( - PathVariable("gdextension_dir", "Output directory for .gdextension + binary", - "gdextension", PathVariable.PathIsDirCreate) -) -opts.Update(env) -Help(opts.GenerateHelpText(env)) - -# Derive target name from platform -target_platform = env["platform"] -if target_platform == "linux": - lib_name = "libsimulation.so" -elif target_platform == "windows": - lib_name = "libsimulation.dll" -elif target_platform == "macos": - lib_name = "libsimulation.dylib" -else: - lib_name = f"libsimulation.{target_platform}" - -# Build directory mirrors target/platform structure -build_dir = os.path.join("build", env["platform"], env["target"]) - -# ---- Compiler Flags ---------------------------------------------------------- - -env.Append(CPPPATH=["src/"]) - -if env["target"] == "template_release": - env.Append(CCFLAGS=["-O3", "-DNDEBUG", "-fomit-frame-pointer"]) -elif env["target"] == "template_debug": - env.Append(CCFLAGS=["-O2", "-g", "-DDEBUG_ENABLED"]) -else: # editor - env.Append(CCFLAGS=["-O2", "-g", "-DDEBUG_ENABLED", "-DEDITOR_ENABLED"]) - -# Warnings as errors (strict) -env.Append(CCFLAGS=[ - "-Wall", "-Wextra", - "-Wno-unused-parameter", # godot-cpp callbacks have many unused params - "-Wno-missing-field-initializers", -]) - -# C++17 required by godot-cpp -env.Append(CXXFLAGS=["-std=c++17"]) - -# ---- Sources ---------------------------------------------------------------- - -sources = Glob("src/*.cpp") - -# ---- Build Targets ---------------------------------------------------------- - -# Object files go to build directory -VariantDir(build_dir, "src", duplicate=False) -build_objects = [os.path.join(build_dir, os.path.basename(s)) for s in sources] - -# Final library in gdextension/bin// -output_dir = os.path.join(env["gdextension_dir"], "bin", target_platform) -output_path = os.path.join(output_dir, lib_name) - -lib = env.SharedLibrary(target=output_path, source=build_objects) - -# Alias so `scons build` works -env.Alias("build", lib) -Default(lib) - -# ---- Verbose mode ----------------------------------------------------------- - -if not env["verbose"]: - env.SetDefault(COMSTR_COMPILEPROGRESS="[{.TaskComplete}/{.TaskCount}] Compiling $TARGET") - env.SetDefault(LINKCOMSTR="[Link] $TARGET") - env.SetDefault(SHCCCOMSTR="[CC] $TARGET") - env.SetDefault(SHCXXCOMSTR="[CXX] $TARGET") - env.SetDefault(SHLINKCOMSTR="[Link] $TARGET") - -# ---- Clean ------------------------------------------------------------------- - -Clean(lib, build_dir) diff --git a/gdextension.disabled/simulation/gdextension/simulation.gdextension.disabled b/gdextension.disabled/simulation/gdextension/simulation.gdextension.disabled deleted file mode 100644 index 1606bb1..0000000 --- a/gdextension.disabled/simulation/gdextension/simulation.gdextension.disabled +++ /dev/null @@ -1,10 +0,0 @@ -[configuration] -entry_symbol = "gdextension_entry" -compatibility_minimum = "4.2" - -[libraries] -linux.x86_64 = "res://gdextension/bin/linux/libsimulation.so" -linux.arm64 = "res://gdextension/bin/linux/libsimulation.so" -windows.x86_64 = "res://gdextension/bin/windows/libsimulation.dll" -macos.x86_64 = "res://gdextension/bin/macos/libsimulation.dylib" -macos.arm64 = "res://gdextension/bin/macos/libsimulation.dylib" diff --git a/gdextension.disabled/simulation/gdextension/simulation.gdextension.uid b/gdextension.disabled/simulation/gdextension/simulation.gdextension.uid deleted file mode 100644 index 63b280b..0000000 --- a/gdextension.disabled/simulation/gdextension/simulation.gdextension.uid +++ /dev/null @@ -1 +0,0 @@ -uid://kl43xi0ixseg diff --git a/gdextension.disabled/simulation/src/bitstream.h b/gdextension.disabled/simulation/src/bitstream.h deleted file mode 100644 index 80fd726..0000000 --- a/gdextension.disabled/simulation/src/bitstream.h +++ /dev/null @@ -1,260 +0,0 @@ -#ifndef TACTICAL_SHOOTER_BITSTREAM_H -#define TACTICAL_SHOOTER_BITSTREAM_H - -#include -#include -#include -#include -#include -#include - -namespace tactical_shooter { - -/** - * Bit-level read/write stream for compact network serialization. - * - * All multi-byte values are written in little-endian order regardless of - * host endianness (network byte order). Booleans pack as single bits. - * Floats can be quantized to arbitrary bit depths for bandwidth savings. - * - * Buffers are dynamically resized. Pre-allocate with reserve() to avoid - * reallocation in hot paths. - */ -class Bitstream { -public: - static constexpr size_t kMaxBufferSize = 1024 * 1024; // 1MB safety limit - - Bitstream() : buffer_(), bits_written_(0), bits_read_(0) {} - - explicit Bitstream(std::vector data) - : buffer_(std::move(data)), bits_written_(buffer_.size() * 8), bits_read_(0) {} - - // ---- Write ----------------------------------------------------------- - - void write_bool(bool value) { - write_bits(value ? 1 : 0, 1); - } - - void write_uint8(uint8_t value) { - write_bits(value, 8); - } - - void write_uint16(uint16_t value) { - write_bits(value, 16); - } - - void write_uint32(uint32_t value) { - write_bits(value, 32); - } - - void write_int32(int32_t value) { - // Zigzag encoding for efficient negative-number packing - uint32_t zigzag = static_cast((value << 1) ^ (value >> 31)); - write_bits(zigzag, 32); - } - - /** - * Write a float quantized to `nbits` within [min, max]. - * Storage: nbits bits. Resolution: (max-min) / (2^nbits - 1). - * Pass nbits=32 for full-precision float (no quantization loss). - */ - void write_float_quantized(float value, float min, float max, uint8_t nbits) { - assert(nbits > 0 && nbits <= 32); - if (nbits >= 32) { - // Full precision: store as raw bits - uint32_t raw; - memcpy(&raw, &value, sizeof(raw)); - write_bits(raw, 32); - return; - } - float clamped = std::clamp(value, min, max); - float normalized = (clamped - min) / (max - min); - uint32_t quantized = static_cast(normalized * ((1u << nbits) - 1)); - write_bits(quantized, nbits); - } - - /** - * Write up to `nbits` bits of `value`. LSB first packing. - */ - void write_bits(uint32_t value, uint8_t nbits) { - assert(nbits > 0 && nbits <= 32); - ensure_capacity(nbits); - - uint8_t *data = buffer_.data(); - size_t byte_pos = bits_written_ / 8; - uint8_t bit_offset = bits_written_ % 8; - - for (uint8_t i = 0; i < nbits; ++i) { - if (value & (1u << i)) { - data[byte_pos] |= (1u << bit_offset); - } - ++bit_offset; - if (bit_offset >= 8) { - bit_offset = 0; - ++byte_pos; - } - } - bits_written_ += nbits; - } - - // ---- Read ------------------------------------------------------------ - - bool read_bool() { - return read_bits(1) != 0; - } - - uint8_t read_uint8() { - return static_cast(read_bits(8)); - } - - uint16_t read_uint16() { - return static_cast(read_bits(16)); - } - - uint32_t read_uint32() { - return read_bits(32); - } - - int32_t read_int32() { - uint32_t zigzag = read_bits(32); - return static_cast((zigzag >> 1) ^ -(static_cast(zigzag & 1))); - } - - /** - * Read a quantized float matching write_float_quantized(). - */ - float read_float_quantized(float min, float max, uint8_t nbits) { - assert(nbits > 0 && nbits <= 32); - if (nbits >= 32) { - uint32_t raw = read_bits(32); - float value; - memcpy(&value, &raw, sizeof(value)); - return value; - } - uint32_t quantized = read_bits(nbits); - float normalized = static_cast(quantized) / static_cast((1u << nbits) - 1); - return min + normalized * (max - min); - } - - /** - * Read up to `nbits` bits, returned as LSB-packed uint32. - */ - uint32_t read_bits(uint8_t nbits) { - assert(nbits > 0 && nbits <= 32); - assert((bits_read_ + nbits) <= bits_written_); - - const uint8_t *data = buffer_.data(); - size_t byte_pos = bits_read_ / 8; - uint8_t bit_offset = bits_read_ % 8; - uint32_t result = 0; - - for (uint8_t i = 0; i < nbits; ++i) { - if (data[byte_pos] & (1u << bit_offset)) { - result |= (1u << i); - } - ++bit_offset; - if (bit_offset >= 8) { - bit_offset = 0; - ++byte_pos; - } - } - bits_read_ += nbits; - return result; - } - - // ---- Array helpers --------------------------------------------------- - - /** - * Write a dense array of booleans packed bit-by-bit. - */ - void write_bool_array(const bool *values, size_t count) { - for (size_t i = 0; i < count; ++i) { - write_bool(values[i]); - } - } - - void read_bool_array(bool *values, size_t count) { - for (size_t i = 0; i < count; ++i) { - values[i] = read_bool(); - } - } - - /** - * Write a variable-length array of uint8 values with a uint16 count prefix. - */ - void write_uint8_array(const uint8_t *values, uint16_t count) { - write_uint16(count); - for (uint16_t i = 0; i < count; ++i) { - write_uint8(values[i]); - } - } - - std::vector read_uint8_array() { - uint16_t count = read_uint16(); - std::vector result(count); - for (uint16_t i = 0; i < count; ++i) { - result[i] = read_uint8(); - } - return result; - } - - // ---- State ----------------------------------------------------------- - - /// Total bytes consumed by written data - size_t byte_size() const { - return (bits_written_ + 7) / 8; - } - - /// Number of bits written so far - size_t bits_written() const { return bits_written_; } - - /// Number of bits read so far - size_t bits_read() const { return bits_read_; } - - /// Remaining readable bits - size_t bits_remaining() const { - return bits_written_ - bits_read_; - } - - /// Raw buffer (const access) - const uint8_t *data() const { return buffer_.data(); } - - /// Clear everything, rewind - void reset() { - buffer_.clear(); - bits_written_ = 0; - bits_read_ = 0; - } - - /// Pre-allocate capacity in bytes - void reserve(size_t bytes) { - buffer_.reserve(bytes); - } - - /// Steal the internal buffer - std::vector take_buffer() { - std::vector result = std::move(buffer_); - reset(); - return result; - } - -private: - void ensure_capacity(uint8_t extra_bits) { - size_t needed_bytes = (bits_written_ + extra_bits + 7) / 8; - if (needed_bytes > buffer_.size()) { - if (needed_bytes > kMaxBufferSize) { - // TODO: log error instead of assert in production - assert(!"Bitstream overflow — reduce snapshot size or increase kMaxBufferSize"); - } - buffer_.resize(std::max(buffer_.size() * 2, needed_bytes)); - } - } - - std::vector buffer_; - size_t bits_written_ = 0; - size_t bits_read_ = 0; -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_BITSTREAM_H diff --git a/gdextension.disabled/simulation/src/entity.cpp b/gdextension.disabled/simulation/src/entity.cpp deleted file mode 100644 index a5bd38e..0000000 --- a/gdextension.disabled/simulation/src/entity.cpp +++ /dev/null @@ -1,125 +0,0 @@ -#include "entity.h" - -#include - -namespace tactical_shooter { - -Entity::Entity() { - reset(godot::Vector3(0, 0, 0)); -} - -void Entity::reset(const godot::Vector3 &spawn_position) { - position_ = spawn_position; - velocity_ = godot::Vector3(0, 0, 0); - yaw_ = 0.0f; - pitch_ = 0.0f; - health_ = 100.0f; - armor_ = 0.0f; - flags_ = ENTITY_FLAG_ALIVE; - weapon_id_ = 0; - ammo_ = 30; - last_input_ = EntityInput{}; -} - -void Entity::apply_input(const EntityInput &input) { - last_input_ = input; - - // Update flags from input - if (input.crouch) flags_ |= ENTITY_FLAG_CROUCHING; - else flags_ &= ~ENTITY_FLAG_CROUCHING; - - if (input.sprint) flags_ |= ENTITY_FLAG_SPRINTING; - else flags_ &= ~ENTITY_FLAG_SPRINTING; - - if (input.aim) flags_ |= ENTITY_FLAG_AIMING; - else flags_ &= ~ENTITY_FLAG_AIMING; -} - -// ---- Snapshot / Delta -------------------------------------------------------- - -EntitySnapshot Entity::capture_snapshot() const { - EntitySnapshot snap; - snap.entity_id = entity_id_; - snap.flags = flags_; - snap.position = position_; - snap.velocity = velocity_; - snap.yaw = yaw_; - snap.pitch = pitch_; - snap.health = health_; - snap.armor = armor_; - snap.weapon_id = weapon_id_; - snap.ammo = ammo_; - snap.last_processed_input = last_input_.input_sequence; - return snap; -} - -EntitySnapshot::ChangeMask Entity::compute_change_mask(const EntitySnapshot &base) const { - uint32_t mask = EntitySnapshot::CHANGED_NONE; - - if (position_ != base.position) mask |= EntitySnapshot::CHANGED_POSITION; - if (velocity_ != base.velocity) mask |= EntitySnapshot::CHANGED_VELOCITY; - if (yaw_ != base.yaw || pitch_ != base.pitch) mask |= EntitySnapshot::CHANGED_ROTATION; - if (health_ != base.health) mask |= EntitySnapshot::CHANGED_HEALTH; - if (armor_ != base.armor) mask |= EntitySnapshot::CHANGED_ARMOR; - if (weapon_id_ != base.weapon_id) mask |= EntitySnapshot::CHANGED_WEAPON; - if (ammo_ != base.ammo) mask |= EntitySnapshot::CHANGED_AMMO; - if (flags_ != base.flags) mask |= EntitySnapshot::CHANGED_FLAGS; - if (last_input_.input_sequence != base.last_processed_input) - mask |= EntitySnapshot::CHANGED_INPUT; - - return static_cast(mask); -} - -// ---- GDScript Bindings ------------------------------------------------------- - -void Entity::_bind_methods() { - using namespace godot; - - ClassDB::bind_method(D_METHOD("set_position", "position"), &Entity::set_position); - ClassDB::bind_method(D_METHOD("get_position"), &Entity::get_position); - ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "position"), "set_position", "get_position"); - - ClassDB::bind_method(D_METHOD("set_velocity", "velocity"), &Entity::set_velocity); - ClassDB::bind_method(D_METHOD("get_velocity"), &Entity::get_velocity); - ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "velocity"), "set_velocity", "get_velocity"); - - ClassDB::bind_method(D_METHOD("set_health", "health"), &Entity::set_health); - ClassDB::bind_method(D_METHOD("get_health"), &Entity::get_health); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "health"), "set_health", "get_health"); - - ClassDB::bind_method(D_METHOD("set_armor", "armor"), &Entity::set_armor); - ClassDB::bind_method(D_METHOD("get_armor"), &Entity::get_armor); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "armor"), "set_armor", "get_armor"); - - ClassDB::bind_method(D_METHOD("set_yaw", "yaw"), &Entity::set_yaw); - ClassDB::bind_method(D_METHOD("get_yaw"), &Entity::get_yaw); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "yaw"), "set_yaw", "get_yaw"); - - ClassDB::bind_method(D_METHOD("set_pitch", "pitch"), &Entity::set_pitch); - ClassDB::bind_method(D_METHOD("get_pitch"), &Entity::get_pitch); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "pitch"), "set_pitch", "get_pitch"); - - ClassDB::bind_method(D_METHOD("is_alive"), &Entity::is_alive); - ClassDB::bind_method(D_METHOD("kill"), &Entity::kill); - - ClassDB::bind_method(D_METHOD("get_entity_id"), &Entity::get_entity_id); -} - -// ---- Property Accessors ------------------------------------------------------ - -void Entity::set_position(const godot::Vector3 &p_position) { position_ = p_position; } -godot::Vector3 Entity::get_position() const { return position_; } -void Entity::set_velocity(const godot::Vector3 &p_velocity) { velocity_ = p_velocity; } -godot::Vector3 Entity::get_velocity() const { return velocity_; } -void Entity::set_health(float p_health) { health_ = std::clamp(p_health, 0.0f, 100.0f); } -float Entity::get_health() const { return health_; } -void Entity::set_armor(float p_armor) { armor_ = std::clamp(p_armor, 0.0f, 100.0f); } -float Entity::get_armor() const { return armor_; } -void Entity::set_yaw(float p_yaw) { yaw_ = p_yaw; } -float Entity::get_yaw() const { return yaw_; } -void Entity::set_pitch(float p_pitch) { pitch_ = std::clamp(p_pitch, -90.0f, 90.0f); } -float Entity::get_pitch() const { return pitch_; } -bool Entity::is_alive() const { return flags_ & ENTITY_FLAG_ALIVE; } -void Entity::kill() { flags_ &= ~ENTITY_FLAG_ALIVE; } - -} // namespace tactical_shooter diff --git a/gdextension.disabled/simulation/src/entity.h b/gdextension.disabled/simulation/src/entity.h deleted file mode 100644 index 99a3768..0000000 --- a/gdextension.disabled/simulation/src/entity.h +++ /dev/null @@ -1,173 +0,0 @@ -#ifndef TACTICAL_SHOOTER_ENTITY_H -#define TACTICAL_SHOOTER_ENTITY_H - -#include -#include -#include - -namespace tactical_shooter { - -/** - * Maximum number of entities in a single simulation. - * Hard cap prevents memory exhaustion and bounds snapshot sizes. - */ -static constexpr uint16_t kMaxEntities = 256; - -/** - * Per-entity flags packed into a single uint16 for compact serialization. - */ -enum EntityFlags : uint16_t { - ENTITY_FLAG_NONE = 0, - ENTITY_FLAG_ALIVE = 1 << 0, - ENTITY_FLAG_GROUNDED = 1 << 1, - ENTITY_FLAG_CROUCHING = 1 << 2, - ENTITY_FLAG_SPRINTING = 1 << 3, - ENTITY_FLAG_AIMING = 1 << 4, -}; - -/** - * Entity input state for a single tick — what the client sent this frame. - * Compact enough to be sent at 128Hz. - */ -struct EntityInput { - godot::Vector3 move_direction; // normalized, quantized - float look_yaw = 0.0f; // degrees - float look_pitch = 0.0f; // degrees - bool jump = false; - bool crouch = false; - bool sprint = false; - bool shoot = false; - bool aim = false; - uint32_t input_sequence = 0; // for client-authoritative input validation -}; - -/** - * Full entity state snapshot at one point in time. - * Used as the "base" for delta compression — serialize only the fields - * that changed since the last acknowledged snapshot. - */ -struct EntitySnapshot { - uint16_t entity_id = 0; - uint16_t flags = ENTITY_FLAG_ALIVE; - - // Transform (quantized for network) - godot::Vector3 position; - godot::Vector3 velocity; - float yaw = 0.0f; // degrees, -180..180 - float pitch = 0.0f; // degrees, -90..90 - - // Game state - float health = 100.0f; - float armor = 0.0f; - uint8_t weapon_id = 0; - uint16_t ammo = 0; - - // Client-authoritative input (for reconciliation) - uint32_t last_processed_input = 0; - - /// Bit-field that tells serializers which fields changed from last base - enum ChangeMask : uint32_t { - CHANGED_NONE = 0, - CHANGED_POSITION = 1 << 0, - CHANGED_VELOCITY = 1 << 1, - CHANGED_ROTATION = 1 << 2, - CHANGED_HEALTH = 1 << 3, - CHANGED_ARMOR = 1 << 4, - CHANGED_WEAPON = 1 << 5, - CHANGED_AMMO = 1 << 6, - CHANGED_FLAGS = 1 << 7, - CHANGED_INPUT = 1 << 8, - CHANGED_ALL = 0xFFFFFFFF, - }; -}; - -/** - * Simulation entity — internal game object managed by SimulationServer. - * - * Registered as a RefCounted so GDScript can hold references and pass - * them around without manual memory management. - */ -class Entity : public godot::RefCounted { - GDCLASS(Entity, godot::RefCounted) - -public: - Entity(); - ~Entity() = default; - - // ---- GDScript API ---------------------------------------------------- - - void set_position(const godot::Vector3 &p_position); - godot::Vector3 get_position() const; - - void set_velocity(const godot::Vector3 &p_velocity); - godot::Vector3 get_velocity() const; - - void set_health(float p_health); - float get_health() const; - - void set_armor(float p_armor); - float get_armor() const; - - void set_yaw(float p_yaw); - float get_yaw() const; - - void set_pitch(float p_pitch); - float get_pitch() const; - - bool is_alive() const; - void kill(); - - uint16_t get_entity_id() const { return entity_id_; } - void set_entity_id(uint16_t id) { entity_id_ = id; } - - uint16_t get_flags() const { return flags_; } - void set_flags(uint16_t f) { flags_ = f; } - - // ---- Internal API (not exposed to GDScript) -------------------------- - - /// Reset entity to spawn state - void reset(const godot::Vector3 &spawn_position); - - /// Apply input for this tick (called by SimulationServer) - void apply_input(const EntityInput &input); - - /// Capture current state into a snapshot - EntitySnapshot capture_snapshot() const; - - /// Compute delta against a base snapshot for serialization - EntitySnapshot::ChangeMask compute_change_mask(const EntitySnapshot &base) const; - - /// Internal state access (for movement/hit systems) - const EntityInput &last_input() const { return last_input_; } - float crouch_height() const { return is_crouching() ? 0.75f : 1.0f; } - -protected: - static void _bind_methods(); - -private: - bool is_crouching() const { return flags_ & ENTITY_FLAG_CROUCHING; } - bool is_sprinting() const { return flags_ & ENTITY_FLAG_SPRINTING; } - bool is_aiming() const { return flags_ & ENTITY_FLAG_AIMING; } - - uint16_t entity_id_ = 0; - uint16_t flags_ = ENTITY_FLAG_ALIVE; - - // World state - godot::Vector3 position_; - godot::Vector3 velocity_; - float yaw_ = 0.0f; - float pitch_ = 0.0f; - - // Gameplay - float health_ = 100.0f; - float armor_ = 0.0f; - uint8_t weapon_id_ = 0; - uint16_t ammo_ = 0; - - // Input state - EntityInput last_input_; -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_ENTITY_H diff --git a/gdextension.disabled/simulation/src/hit_detection.cpp b/gdextension.disabled/simulation/src/hit_detection.cpp deleted file mode 100644 index fe3085e..0000000 --- a/gdextension.disabled/simulation/src/hit_detection.cpp +++ /dev/null @@ -1,157 +0,0 @@ -#include "hit_detection.h" - -#include -#include -#include - -namespace tactical_shooter { - -HitDetection::HitDetection() {} - -void HitDetection::set_entities(const std::vector &entities) { - entities_ = &entities; -} - -HitResult HitDetection::raycast_entity( - const godot::Vector3 &origin, - const godot::Vector3 &direction, - float max_distance, - uint16_t exclude_id -) const { - if (!entities_) return HitResult{}; - - HitResult best; - best.distance = max_distance; - - for (Entity *entity : *entities_) { - if (!entity || !entity->is_alive()) continue; - if (entity->get_entity_id() == exclude_id) continue; - - // Simple sphere intersection test against entity bounding sphere - godot::Vector3 entity_pos = entity->get_position(); - // Offset center upward for body collision (not at feet) - godot::Vector3 body_center = entity_pos; - body_center.y += kEntityHeight * 0.5f; - - godot::Vector3 oc = origin - body_center; - float a = direction.dot(direction); - float b = 2.0f * oc.dot(direction); - float c = oc.dot(oc) - (kEntityRadius * kEntityRadius); - float discriminant = b * b - 4.0f * a * c; - - if (discriminant < 0.0f) continue; - - float t1 = (-b - std::sqrt(discriminant)) / (2.0f * a); - float t2 = (-b + std::sqrt(discriminant)) / (2.0f * a); - - // Use the closest positive intersection - float t = t1; - if (t < 0.0f) t = t2; - if (t < 0.0f || t > best.distance) continue; - - best.hit = true; - best.entity_id = entity->get_entity_id(); - best.distance = t; - best.point = origin + direction * t; - best.normal = (best.point - body_center).normalized(); - best.damage = 0.0f; // filled by process_shot - best.hitbox_id = classify_hitbox(*entity, best.point); - } - - return best; -} - -HitResult HitDetection::process_shot( - const godot::Vector3 &origin, - const godot::Vector3 &direction, - uint16_t shooter_id, - const WeaponDamage &weapon -) { - HitResult hit = raycast_entity(origin, direction, weapon.max_range, shooter_id); - - if (hit.hit) { - float mult = get_hitbox_multiplier(hit.hitbox_id, weapon); - hit.damage = weapon.base_damage * mult; - } - - return hit; -} - -float HitDetection::apply_damage(Entity &entity, float damage, float mult) { - float raw = damage * mult; - - // Armor absorbs a portion - float armor = entity.get_armor(); - float armor_absorb = std::min(raw * 0.5f, armor); - armor -= armor_absorb; - entity.set_armor(armor); - - float health_damage = raw - armor_absorb; - float new_health = entity.get_health() - health_damage; - entity.set_health(new_health); - - if (new_health <= 0.0f) { - entity.kill(); - } - - return health_damage + armor_absorb; -} - -std::vector HitDetection::sphere_overlap( - const godot::Vector3 ¢er, - float radius, - uint16_t exclude_id -) const { - std::vector results; - if (!entities_) return results; - - float radius_sq = radius * radius; - - for (Entity *entity : *entities_) { - if (!entity || !entity->is_alive()) continue; - if (entity->get_entity_id() == exclude_id) continue; - - godot::Vector3 body_center = entity->get_position(); - body_center.y += kEntityHeight * 0.5f; - - godot::Vector3 diff = center - body_center; - float dist_sq = diff.dot(diff); - - if (dist_sq <= radius_sq) { - HitResult hit; - hit.hit = true; - hit.entity_id = entity->get_entity_id(); - hit.distance = std::sqrt(dist_sq); - hit.point = body_center; - hit.normal = diff.normalized(); - results.push_back(hit); - } - } - - return results; -} - -float HitDetection::get_hitbox_multiplier(uint8_t hitbox_id, const WeaponDamage &weapon) const { - switch (hitbox_id) { - case 1: return weapon.head_multiplier; - case 2: return weapon.arm_multiplier; - case 3: return weapon.leg_multiplier; - default: return weapon.body_multiplier; - } -} - -uint8_t HitDetection::classify_hitbox( - const Entity &entity, - const godot::Vector3 &hit_point -) const { - godot::Vector3 entity_pos = entity.get_position(); - float relative_y = hit_point.y - entity_pos.y; - float height_ratio = relative_y / kEntityHeight; - - if (height_ratio > 0.85f) return 1; // head - if (height_ratio > 0.65f) return 2; // arms/upper body - if (height_ratio > 0.25f) return 0; // body - return 3; // legs -} - -} // namespace tactical_shooter diff --git a/gdextension.disabled/simulation/src/hit_detection.h b/gdextension.disabled/simulation/src/hit_detection.h deleted file mode 100644 index 4409f60..0000000 --- a/gdextension.disabled/simulation/src/hit_detection.h +++ /dev/null @@ -1,138 +0,0 @@ -#ifndef TACTICAL_SHOOTER_HIT_DETECTION_H -#define TACTICAL_SHOOTER_HIT_DETECTION_H - -#include "entity.h" - -#include -#include - -namespace tactical_shooter { - -/** - * Hit detection system that operates on the simulation entities directly. - * - * Because the simulation core runs in GDExtension (not GDScript), we avoid - * crossing the script→engine boundary for every raycast during the hot loop. - * Instead, this component provides simplified geometric checks that can be - * resolved locally, or queues world-space queries for the Godot PhysicsServer3D - * if precise scene geometry is needed. - * - * Phase 1 uses sphere/box overlap against entity positions — fast, no physics - * dependency. Phase 2+ may add proper PhysicsServer3D raycasts against the - * world geometry. - */ - -/** - * Result of a single hit query. - */ -struct HitResult { - bool hit = false; - uint16_t entity_id = 0xFFFF; // 0xFFFF = world geometry / no entity - float damage = 0.0f; - float distance = 0.0f; - godot::Vector3 point; - godot::Vector3 normal; - uint8_t hitbox_id = 0; // 0=body, 1=head, 2=arms, 3=legs -}; - -/** - * Weapon damage profile. - */ -struct WeaponDamage { - float base_damage = 30.0f; - float head_multiplier = 4.0f; - float body_multiplier = 1.0f; - float arm_multiplier = 0.75f; - float leg_multiplier = 0.6f; - float max_range = 500.0f; // units - float spread_degrees = 0.5f; // random spread per shot -}; - -class HitDetection { -public: - HitDetection(); - - /** - * Set which entities are currently in play (reference list). - * Must be called before any hit queries each frame. - */ - void set_entities(const std::vector &entities); - - /** - * Raycast against entity bounding spheres. - * No PhysicsServer3D dependency — pure geometric check. - * - * @param origin Ray origin - * @param direction Normalized ray direction - * @param max_distance Maximum trace distance - * @param exclude_id Entity ID to exclude (shooter) - * @return First entity hit (if any) - */ - HitResult raycast_entity( - const godot::Vector3 &origin, - const godot::Vector3 &direction, - float max_distance, - uint16_t exclude_id = 0xFFFF - ) const; - - /** - * Process a weapon fire: apply damage to hit entity. - * Combines raycast + damage application + amortization. - * - * @param origin Fire origin - * @param direction Fire direction (with spread already applied) - * @param shooter_id Entity that fired - * @param weapon Weapon damage profile - * @return Hit result with damage - */ - HitResult process_shot( - const godot::Vector3 &origin, - const godot::Vector3 &direction, - uint16_t shooter_id, - const WeaponDamage &weapon - ); - - /** - * Apply damage to an entity and update its state. - * Respects armor reduction. - * - * @param entity Target entity - * @param damage Raw damage before armor - * @param mult Hitbox multiplier - * @return Actual health removed - */ - static float apply_damage(Entity &entity, float damage, float mult); - - /** - * Sphere overlap detection — find all entities within radius. - * Useful for explosive damage. - */ - std::vector sphere_overlap( - const godot::Vector3 ¢er, - float radius, - uint16_t exclude_id = 0xFFFF - ) const; - -private: - /** - * Get the hitbox multiplier for a hit location. - */ - float get_hitbox_multiplier(uint8_t hitbox_id, const WeaponDamage &weapon) const; - - /** - * Determine which hitbox a ray hit based on local-space intersection. - * Simple head/body/leg classification by vertical offset. - */ - uint8_t classify_hitbox(const Entity &entity, const godot::Vector3 &hit_point) const; - - const std::vector *entities_ = nullptr; - - // Bounding sphere radius for entity hit detection - static constexpr float kEntityRadius = 0.4f; // ~arm span / 2 - static constexpr float kHeadRadius = 0.2f; - static constexpr float kEntityHeight = 1.8f; // standing height -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_HIT_DETECTION_H diff --git a/gdextension.disabled/simulation/src/movement_component.cpp b/gdextension.disabled/simulation/src/movement_component.cpp deleted file mode 100644 index 4e57ef2..0000000 --- a/gdextension.disabled/simulation/src/movement_component.cpp +++ /dev/null @@ -1,155 +0,0 @@ -#include "movement_component.h" - -#include -#include - -namespace tactical_shooter { - -MovementComponent::MovementComponent() {} - -MovementComponent::MovementComponent(const Parameters ¶ms) - : params_(params) {} - -void MovementComponent::set_parameters(const Parameters ¶ms) { - params_ = params; -} - -void MovementComponent::update(Entity &entity, float delta) { - if (!entity.is_alive()) return; - - const EntityInput &input = entity.last_input(); - - // Set flags based on input - uint16_t flags = entity.get_flags(); - if (input.crouch) flags |= ENTITY_FLAG_CROUCHING; - else flags &= ~ENTITY_FLAG_CROUCHING; - if (input.sprint) flags |= ENTITY_FLAG_SPRINTING; - else flags &= ~ENTITY_FLAG_SPRINTING; - entity.set_flags(flags); - - // Apply movement on ground vs in air - if (flags & ENTITY_FLAG_GROUNDED) { - apply_ground_movement(entity, delta); - } else { - apply_air_movement(entity, delta); - } - - // Handle jump - if (input.jump && (flags & ENTITY_FLAG_GROUNDED)) { - godot::Vector3 vel = entity.get_velocity(); - vel.y = params_.jump_velocity; - entity.set_velocity(vel); - entity.set_flags(flags & ~ENTITY_FLAG_GROUNDED); - } - - // Apply gravity - godot::Vector3 vel = entity.get_velocity(); - vel.y += params_.gravity * delta; - entity.set_velocity(vel); - - // Integrate - integrate_position(entity, delta); - - // Simple ground detection: if y velocity resolved, flag grounded - // (Full ground detection requires scene query — this is the stub) - vel = entity.get_velocity(); - if (entity.get_position().y <= 0.0f && vel.y <= 0.0f) { - godot::Vector3 pos = entity.get_position(); - pos.y = 0.0f; - entity.set_position(pos); - vel.y = 0.0f; - entity.set_velocity(vel); - uint16_t f = entity.get_flags(); - f |= ENTITY_FLAG_GROUNDED; - entity.set_flags(f); - } -} - -void MovementComponent::apply_ground_movement(Entity &entity, float delta) { - const EntityInput &input = entity.last_input(); - godot::Vector3 vel = entity.get_velocity(); - - // Determine target speed - float max_speed = params_.walk_speed; - if (entity.get_flags() & ENTITY_FLAG_SPRINTING) max_speed = params_.sprint_speed; - if (entity.get_flags() & ENTITY_FLAG_CROUCHING) max_speed = params_.crouch_speed; - - // Apply friction - float speed = vel.length(); - if (speed > 0.0f) { - float drop = speed * params_.friction * delta; - float new_speed = std::max(0.0f, speed - drop); - vel *= (new_speed / speed); - } - - // Acceleration from input - godot::Vector3 wish_dir = input.move_direction; - float wish_len = wish_dir.length(); - if (wish_len > 1.0f) wish_dir /= wish_len; - if (wish_len > 0.0f) { - vel += wish_dir * params_.acceleration * delta; - // Clamp to max speed in the horizontal plane - godot::Vector3 horiz(vel.x, 0.0f, vel.z); - float horiz_len = horiz.length(); - if (horiz_len > max_speed) { - horiz *= max_speed / horiz_len; - vel.x = horiz.x; - vel.z = horiz.z; - } - } - - // Clamp overall velocity - if (vel.length() > params_.max_velocity) { - vel = vel.normalized() * params_.max_velocity; - } - - entity.set_velocity(vel); -} - -void MovementComponent::apply_air_movement(Entity &entity, float delta) { - const EntityInput &input = entity.last_input(); - godot::Vector3 vel = entity.get_velocity(); - - // Apply air friction - float speed = vel.length(); - if (speed > 0.0f) { - float drop = speed * params_.air_friction * delta; - float new_speed = std::max(0.0f, speed - drop); - vel *= (new_speed / speed); - } - - // Reduced acceleration in air - godot::Vector3 wish_dir = input.move_direction; - float wish_len = wish_dir.length(); - if (wish_len > 1.0f) wish_dir /= wish_len; - if (wish_len > 0.0f) { - // Only accelerate in horizontal plane while airborne - godot::Vector3 horiz_accel( - wish_dir.x * params_.air_acceleration * delta, - 0.0f, - wish_dir.z * params_.air_acceleration * delta - ); - vel.x += horiz_accel.x; - vel.z += horiz_accel.z; - } - - // Clamp horizontal speed - godot::Vector3 horiz(vel.x, 0.0f, vel.z); - float max_horiz = std::max(params_.walk_speed, params_.sprint_speed); - if (horiz.length() > max_horiz) { - horiz *= max_horiz / horiz.length(); - vel.x = horiz.x; - vel.z = horiz.z; - } - - entity.set_velocity(vel); -} - -void MovementComponent::integrate_position(Entity &entity, float delta) { - godot::Vector3 pos = entity.get_position(); - godot::Vector3 vel = entity.get_velocity(); - pos += vel * delta; - entity.set_position(pos); -} - -} // namespace tactical_shooter diff --git a/gdextension.disabled/simulation/src/movement_component.h b/gdextension.disabled/simulation/src/movement_component.h deleted file mode 100644 index ed01a3d..0000000 --- a/gdextension.disabled/simulation/src/movement_component.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef TACTICAL_SHOOTER_MOVEMENT_COMPONENT_H -#define TACTICAL_SHOOTER_MOVEMENT_COMPONENT_H - -#include "entity.h" - -namespace tactical_shooter { - -/** - * Physics-less movement simulation for networked FPS characters. - * - * Operates on Entity state directly — no Godot PhysicsServer3D involvement. - * Uses semi-implicit Euler integration with configurable movement parameters. - * - * All values assume "Godot units" (1 unit ≈ 1 meter) with gravity in - * units/s² and speeds in units/s. - */ -class MovementComponent { -public: - struct Parameters { - float walk_speed = 4.0f; // units/s - float sprint_speed = 6.5f; // units/s - float crouch_speed = 2.0f; // units/s - float acceleration = 20.0f; // units/s² - float air_acceleration = 4.0f; // reduced control in air - float friction = 8.0f; // ground deceleration - float air_friction = 1.0f; // air resistance - float jump_velocity = 5.0f; // initial upward velocity - float gravity = -20.0f; // units/s² (negative = downward) - float max_velocity = 10.0f; // speed cap (all directions) - float crouch_height = 0.75f; // multiplier on entity base height - float stand_height = 1.0f; - }; - - MovementComponent(); - explicit MovementComponent(const Parameters ¶ms); - - /** - * Main update. Called once per simulation tick (e.g. every 1/128s). - * - * @param entity Entity to update - * @param delta Timestep in seconds (e.g. 0.0078125 for 128Hz) - */ - void update(Entity &entity, float delta); - - /// Modify movement parameters at runtime - void set_parameters(const Parameters ¶ms); - const Parameters ¶meters() const { return params_; } - -private: - /** - * Apply ground movement with acceleration/friction. - * Follows Quake/CS-style movement model (non-Strafe). - */ - void apply_ground_movement(Entity &entity, float delta); - - /** - * Apply air movement with reduced acceleration. - */ - void apply_air_movement(Entity &entity, float delta); - - /** - * Integrate velocity into position (semi-implicit Euler). - */ - void integrate_position(Entity &entity, float delta); - - Parameters params_; -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_MOVEMENT_COMPONENT_H diff --git a/gdextension.disabled/simulation/src/register_types.cpp b/gdextension.disabled/simulation/src/register_types.cpp deleted file mode 100644 index 2328b93..0000000 --- a/gdextension.disabled/simulation/src/register_types.cpp +++ /dev/null @@ -1,54 +0,0 @@ -#include "register_types.h" -#include "simulation_server.h" - -#include -#include -#include -#include - -namespace tactical_shooter { - -void initialize_simulation_module(godot::ModuleInitializationLevel p_level) { - if (p_level != godot::MODULE_INITIALIZATION_LEVEL_SCENE) { - return; - } - - // Register all GDScript-facing classes - godot::ClassDB::register_class(); - godot::ClassDB::register_class(); -} - -void uninitialize_simulation_module(godot::ModuleInitializationLevel p_level) { - if (p_level != godot::MODULE_INITIALIZATION_LEVEL_SCENE) { - return; - } -} - -} // namespace tactical_shooter - -extern "C" { - -// GDExtension entry point — called by Godot to initialize the extension -GDExtensionBool GDE_EXPORT gdextension_entry( - GDExtensionInterfaceGetProcAddress p_get_proc_address, - GDExtensionClassLibraryPtr p_library, - GDExtensionInitialization *r_initialization -) { - godot::GDExtensionBinding::InitObject init_obj( - p_get_proc_address, p_library, r_initialization - ); - - init_obj.register_initializer( - tactical_shooter::initialize_simulation_module - ); - init_obj.register_terminator( - tactical_shooter::uninitialize_simulation_module - ); - init_obj.set_minimum_library_initialization_level( - godot::MODULE_INITIALIZATION_LEVEL_SCENE - ); - - return init_obj.init(); -} - -} // extern "C" diff --git a/gdextension.disabled/simulation/src/register_types.h b/gdextension.disabled/simulation/src/register_types.h deleted file mode 100644 index 4b7e672..0000000 --- a/gdextension.disabled/simulation/src/register_types.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef TACTICAL_SHOOTER_REGISTER_TYPES_H -#define TACTICAL_SHOOTER_REGISTER_TYPES_H - -#include -#include - -namespace tactical_shooter { - -void initialize_simulation_module(godot::ModuleInitializationLevel p_level); -void uninitialize_simulation_module(godot::ModuleInitializationLevel p_level); - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_REGISTER_TYPES_H diff --git a/gdextension.disabled/simulation/src/simulation_server.cpp b/gdextension.disabled/simulation/src/simulation_server.cpp deleted file mode 100644 index e697abf..0000000 --- a/gdextension.disabled/simulation/src/simulation_server.cpp +++ /dev/null @@ -1,679 +0,0 @@ -#include "simulation_server.h" - -#include -#include -#include -#include - -namespace tactical_shooter { - -static constexpr float kPi = 3.14159265358979323846f; - -using Clock = std::chrono::high_resolution_clock; - -SimulationServer::SimulationServer() - : entities_by_id_(kMaxEntities), - queued_inputs_(kMaxEntities) { -} - -SimulationServer::~SimulationServer() { - stop(); -} - -// ---- Lifecycle ---------------------------------------------------------------- - -void SimulationServer::set_tick_rate(uint32_t hz) { - tick_hz_ = std::clamp(hz, 1u, 1000u); - tick_interval_ = 1.0f / static_cast(tick_hz_); -} - -void SimulationServer::start() { - if (running_) return; - running_ = true; - current_tick_ = 0; - time_accumulator_ = 0.0f; - last_snapshots_.clear(); - hit_detection_.set_entities(living_entity_ptrs_); - reset_stats(); - weapon_config_ = WeaponDamage(); - weapon_fire_rate_hz_ = 10.0f; - - // Initialize position history ring buffer - position_history_.clear(); - position_history_.resize(history_depth_); - history_write_index_ = 0; - for (auto &entry : position_history_) { - entry.tick = 0; - } - - last_hit_result_ = LastHitResult{}; -} - -void SimulationServer::stop() { - running_ = false; - for (auto &entity : entities_by_id_) { - entity = godot::Ref(); - } - living_entity_ptrs_.clear(); - queued_inputs_.clear(); - queued_inputs_.resize(kMaxEntities); - pending_fires_.clear(); - last_snapshots_.clear(); - position_history_.clear(); - current_tick_ = 0; - time_accumulator_ = 0.0f; - last_hit_result_ = LastHitResult{}; -} - -bool SimulationServer::can_tick(float delta) { - if (!running_) return false; - time_accumulator_ += delta; - return time_accumulator_ >= tick_interval_; -} - -godot::PackedByteArray SimulationServer::tick() { - if (!running_) return godot::PackedByteArray(); - - // Drain as many fixed timestep ticks as accumulated - while (time_accumulator_ >= tick_interval_) { - time_accumulator_ -= tick_interval_; - process_tick(); - } - - // Serialize and return the current state - return serialize_state(); -} - -// ---- Entity Management ------------------------------------------------------- - -uint16_t SimulationServer::spawn_entity(const godot::Vector3 &position) { - uint16_t id = allocate_entity_id(); - if (id >= kMaxEntities) return UINT16_MAX; - - auto entity = godot::Ref(memnew(Entity)); - entity->set_entity_id(id); - entity->reset(position); - entities_by_id_[id] = entity; - - // Rebuild living ptrs list - living_entity_ptrs_.clear(); - for (auto &e : entities_by_id_) { - if (e.is_valid() && e->is_alive()) { - living_entity_ptrs_.push_back(e.ptr()); - } - } - hit_detection_.set_entities(living_entity_ptrs_); - - return id; -} - -void SimulationServer::despawn_entity(uint16_t entity_id) { - if (entity_id < kMaxEntities && entities_by_id_[entity_id].is_valid()) { - entities_by_id_[entity_id] = godot::Ref(); - last_snapshots_.erase(entity_id); - - // Rebuild living ptrs - living_entity_ptrs_.clear(); - for (auto &e : entities_by_id_) { - if (e.is_valid() && e->is_alive()) { - living_entity_ptrs_.push_back(e.ptr()); - } - } - hit_detection_.set_entities(living_entity_ptrs_); - } -} - -godot::Ref SimulationServer::get_entity(uint16_t entity_id) { - if (entity_id < kMaxEntities && entities_by_id_[entity_id].is_valid()) { - return entities_by_id_[entity_id]; - } - return godot::Ref(); -} - -uint16_t SimulationServer::get_entity_count() const { - uint16_t count = 0; - for (auto &e : entities_by_id_) { - if (e.is_valid()) ++count; - } - return count; -} - -godot::Array SimulationServer::get_entity_ids() const { - godot::Array ids; - for (auto &e : entities_by_id_) { - if (e.is_valid()) { - ids.push_back(e->get_entity_id()); - } - } - return ids; -} - -// ---- Input -------------------------------------------------------------------- - -void SimulationServer::apply_input(uint16_t entity_id, const godot::Dictionary &input_dict) { - if (entity_id >= kMaxEntities) return; - if (!entities_by_id_[entity_id].is_valid()) return; - - EntityInput input; - - if (input_dict.has("move_direction")) { - input.move_direction = input_dict["move_direction"]; - } - if (input_dict.has("look_yaw")) { - input.look_yaw = static_cast(static_cast(input_dict["look_yaw"])); - } - if (input_dict.has("look_pitch")) { - input.look_pitch = static_cast(static_cast(input_dict["look_pitch"])); - } - if (input_dict.has("jump")) { - input.jump = input_dict["jump"]; - } - if (input_dict.has("crouch")) { - input.crouch = input_dict["crouch"]; - } - if (input_dict.has("sprint")) { - input.sprint = input_dict["sprint"]; - } - if (input_dict.has("shoot")) { - input.shoot = input_dict["shoot"]; - } - if (input_dict.has("aim")) { - input.aim = input_dict["aim"]; - } - if (input_dict.has("input_sequence")) { - input.input_sequence = static_cast(static_cast(input_dict["input_sequence"])); - } - - // If the shoot flag just transitioned from false→true, queue a weapon fire - // with the tick of this input so lag compensation has the right time reference. - if (input.shoot && !queued_inputs_[entity_id].input.shoot) { - PendingFire fire; - fire.shooter_id = entity_id; - fire.fire_tick = current_tick_; - fire.input_sequence = input.input_sequence; - pending_fires_.push_back(fire); - } - - queued_inputs_[entity_id].input = input; - queued_inputs_[entity_id].pending = true; -} - -void SimulationServer::fire_weapon(uint16_t entity_id) { - if (entity_id < kMaxEntities && entities_by_id_[entity_id].is_valid()) { - PendingFire fire; - fire.shooter_id = entity_id; - fire.fire_tick = current_tick_; - // Use the input sequence from the shooter's last input if available - if (entities_by_id_[entity_id].is_valid()) { - fire.input_sequence = entities_by_id_[entity_id]->last_input().input_sequence; - } - pending_fires_.push_back(fire); - } -} - -// ---- Movement Configuration -------------------------------------------------- - -void SimulationServer::set_movement_walk_speed(float speed) { - auto p = movement_.parameters(); - p.walk_speed = speed; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_sprint_speed(float speed) { - auto p = movement_.parameters(); - p.sprint_speed = speed; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_crouch_speed(float speed) { - auto p = movement_.parameters(); - p.crouch_speed = speed; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_acceleration(float accel) { - auto p = movement_.parameters(); - p.acceleration = accel; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_jump_velocity(float vel) { - auto p = movement_.parameters(); - p.jump_velocity = vel; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_gravity(float gravity) { - auto p = movement_.parameters(); - p.gravity = gravity; - movement_.set_parameters(p); -} - -void SimulationServer::set_movement_config(const godot::Dictionary &config) { - auto p = movement_.parameters(); - if (config.has("walk_speed")) p.walk_speed = static_cast(static_cast(config["walk_speed"])); - if (config.has("sprint_speed")) p.sprint_speed = static_cast(static_cast(config["sprint_speed"])); - if (config.has("crouch_speed")) p.crouch_speed = static_cast(static_cast(config["crouch_speed"])); - if (config.has("acceleration")) p.acceleration = static_cast(static_cast(config["acceleration"])); - if (config.has("air_acceleration")) p.air_acceleration = static_cast(static_cast(config["air_acceleration"])); - if (config.has("jump_velocity")) p.jump_velocity = static_cast(static_cast(config["jump_velocity"])); - if (config.has("gravity")) p.gravity = static_cast(static_cast(config["gravity"])); - if (config.has("friction")) p.friction = static_cast(static_cast(config["friction"])); - if (config.has("max_velocity")) p.max_velocity = static_cast(static_cast(config["max_velocity"])); - movement_.set_parameters(p); -} - -// ---- Benchmark / Stats ------------------------------------------------------- - -godot::Dictionary SimulationServer::get_stats() const { - godot::Dictionary stats; - stats["last_tick_usec"] = static_cast(last_tick_usec_); - stats["tick_count"] = static_cast(tick_count_); - stats["entity_count"] = static_cast(get_entity_count()); - - float avg_usec = 0.0f; - if (tick_count_ > 0) { - avg_usec = static_cast(total_tick_usec_) / static_cast(tick_count_); - } - stats["avg_tick_usec"] = avg_usec; - stats["peak_tick_usec"] = static_cast(max_tick_usec_); - - // Also expose tick interval - stats["tick_hz"] = static_cast(tick_hz_); - stats["tick_interval_usec"] = static_cast(tick_interval_ * 1'000'000.0f); - - return stats; -} - -void SimulationServer::reset_stats() { - tick_count_ = 0; - last_tick_usec_ = 0; - total_tick_usec_ = 0; - max_tick_usec_ = 0; -} - -void SimulationServer::populate_bots(uint16_t count) { - count = std::min(count, static_cast(kMaxEntities)); - - // Clear existing - for (auto &e : entities_by_id_) { - e = godot::Ref(); - } - last_snapshots_.clear(); - - // Spawn bots in a grid pattern - uint16_t per_row = static_cast(std::ceil(std::sqrt(static_cast(count)))); - for (uint16_t i = 0; i < count; ++i) { - uint16_t row = i / per_row; - uint16_t col = i % per_row; - godot::Vector3 pos( - static_cast(col) * 3.0f, - 0.0f, - static_cast(row) * 3.0f - ); - spawn_entity(pos); - } -} - -// ---- Private: Tick Logic ----------------------------------------------------- - -void SimulationServer::process_tick() { - auto tick_start = Clock::now(); - - // 1. Apply queued inputs from clients - for (uint16_t i = 0; i < kMaxEntities; ++i) { - if (queued_inputs_[i].pending && entities_by_id_[i].is_valid()) { - entities_by_id_[i]->apply_input(queued_inputs_[i].input); - queued_inputs_[i].pending = false; - } - } - - // 2. Record pre-move positions for lag compensation (BEFORE movement) - record_position_history(current_tick_); - - // 3. Update entity positions - update_movement(); - - // 4. Process combat with lag compensation - update_combat(); - - // 5. Process queued weapon fires from fire_weapon() calls (deprecated path, - // kept for backwards compat — modern path queues fires via apply_input) - // This is now handled inside update_combat() which drains pending_fires_ - - // 6. Clean up dead entities after combat - for (auto &entity : entities_by_id_) { - if (entity.is_valid() && !entity->is_alive()) { - // Keep dead entities in list for ragdoll/corpse but mark - // We could despawn here if needed - } - } - - // 7. Rebuild living entity ptrs for hit detection next tick - living_entity_ptrs_.clear(); - for (auto &e : entities_by_id_) { - if (e.is_valid() && e->is_alive()) { - living_entity_ptrs_.push_back(e.ptr()); - } - } - hit_detection_.set_entities(living_entity_ptrs_); - - ++current_tick_; - ++tick_count_; - - // Timing - auto tick_end = Clock::now(); - last_tick_usec_ = std::chrono::duration_cast( - tick_end - tick_start - ).count(); - total_tick_usec_ += last_tick_usec_; - max_tick_usec_ = std::max(max_tick_usec_, last_tick_usec_); -} - -void SimulationServer::update_movement() { - float delta = tick_interval_; - - for (auto &entity_ref : living_entity_ptrs_) { - movement_.update(*entity_ref, delta); - } -} - -void SimulationServer::update_combat() { - if (pending_fires_.empty()) return; - - // Sort fires by fire_tick (oldest first) for deterministic processing - std::sort(pending_fires_.begin(), pending_fires_.end(), - [](const PendingFire &a, const PendingFire &b) { - return a.fire_tick < b.fire_tick; - }); - - // Process each fire with lag compensation - for (auto &fire : pending_fires_) { - process_compensated_fire(fire); - } - - pending_fires_.clear(); -} - -// ---- Lag Compensation --------------------------------------------------------- - -void SimulationServer::record_position_history(uint32_t tick) { - TickPositionSnapshot &slot = position_history_[history_write_index_]; - slot.tick = tick; - slot.entries.clear(); - - for (Entity *entity : living_entity_ptrs_) { - if (!entity) continue; - TickPositionSnapshot::Entry entry; - entry.entity_id = entity->get_entity_id(); - entry.position = entity->get_position(); - entry.flags = entity->get_flags(); - slot.entries.push_back(entry); - } - - history_write_index_ = (history_write_index_ + 1) % history_depth_; -} - -SimulationServer::RewindState SimulationServer::begin_rewind(uint32_t target_tick) { - RewindState state; - - // Find the closest position snapshot at or before the target tick - // Search backward from the write index - for (uint32_t i = 0; i < history_depth_; ++i) { - uint32_t idx = (history_write_index_ + history_depth_ - 1 - i) % history_depth_; - const TickPositionSnapshot &snap = position_history_[idx]; - if (snap.tick == 0) break; // uninitialized slot - - if (snap.tick <= target_tick) { - // Save current positions, then rewind to snapshot positions - for (auto &entry : snap.entries) { - if (entry.entity_id < kMaxEntities && - entities_by_id_[entry.entity_id].is_valid()) { - // Save current position - TickPositionSnapshot::Entry saved; - saved.entity_id = entry.entity_id; - saved.position = entities_by_id_[entry.entity_id]->get_position(); - saved.flags = entities_by_id_[entry.entity_id]->get_flags(); - state.saved.push_back(saved); - - // Rewind to snapshot position - entities_by_id_[entry.entity_id]->set_position(entry.position); - entities_by_id_[entry.entity_id]->set_flags(entry.flags); - } - } - break; - } - } - - // Update hit detection with current (now rewound) positions - // The living_entity_ptrs_ haven't changed, only positions have - return state; -} - -void SimulationServer::end_rewind(const RewindState &state) { - // Restore all saved positions - for (auto &saved : state.saved) { - if (saved.entity_id < kMaxEntities && - entities_by_id_[saved.entity_id].is_valid()) { - entities_by_id_[saved.entity_id]->set_position(saved.position); - entities_by_id_[saved.entity_id]->set_flags(saved.flags); - } - } -} - -void SimulationServer::process_compensated_fire(const PendingFire &fire) { - auto &shooter = entities_by_id_[fire.shooter_id]; - if (!shooter.is_valid() || !shooter->is_alive()) return; - - // Calculate fire direction from shooter's yaw/pitch at time of fire - float yaw_rad = shooter->get_yaw() * (kPi / 180.0f); - float pitch_rad = shooter->get_pitch() * (kPi / 180.0f); - - godot::Vector3 direction( - std::cos(pitch_rad) * std::sin(yaw_rad), - -std::sin(pitch_rad), - std::cos(pitch_rad) * std::cos(yaw_rad) - ); - - // Apply spread (random cone) - if (weapon_config_.spread_degrees > 0.0f) { - float spread_rad = weapon_config_.spread_degrees * (kPi / 180.0f); - float theta = static_cast(rand() % 360) * (kPi / 180.0f); - float phi = static_cast(rand() % 100) / 100.0f * spread_rad; - godot::Vector3 up(0.0f, 1.0f, 0.0f); - godot::Vector3 right = direction.cross(up).normalized(); - if (right.length_squared() < 0.001f) { - right = godot::Vector3(1.0f, 0.0f, 0.0f); - } - up = right.cross(direction).normalized(); - godot::Vector3 spread_offset = right * std::sin(theta) * std::sin(phi) - + up * std::cos(theta) * std::sin(phi); - direction = (direction + spread_offset).normalized(); - } - - // Shooter's eye position (current — not rewound) - godot::Vector3 origin = shooter->get_position(); - origin.y += 1.5f; // eye height - - // BEGIN LAG COMPENSATION: rewind targets to fire_tick positions - RewindState rewind_state = begin_rewind(fire.fire_tick); - - // Restore shooter to current position immediately (don't rewind the shooter) - for (auto it = rewind_state.saved.begin(); it != rewind_state.saved.end(); ) { - if (it->entity_id == fire.shooter_id) { - // Put shooter back to current position - entities_by_id_[fire.shooter_id]->set_position(it->position); - entities_by_id_[fire.shooter_id]->set_flags(it->flags); - // Remove from rewind set so end_rewind doesn't re-restore it - it = rewind_state.saved.erase(it); - } else { - ++it; - } - } - - // Update hit detection reference (pointers are still valid, positions changed) - hit_detection_.set_entities(living_entity_ptrs_); - - // Fire the shot against rewound target positions - HitResult hit = hit_detection_.process_shot( - origin, direction, fire.shooter_id, weapon_config_ - ); - - // END LAG COMPENSATION: restore all entity positions - end_rewind(rewind_state); - hit_detection_.set_entities(living_entity_ptrs_); - - // Apply damage if hit - if (hit.hit && hit.entity_id < kMaxEntities) { - auto &target_ref = entities_by_id_[hit.entity_id]; - if (target_ref.is_valid()) { - Entity *target_ptr = target_ref.ptr(); - HitDetection::apply_damage(*target_ptr, hit.damage, 1.0f); - - // Record hit result for GDScript feedback - last_hit_result_.hit = true; - last_hit_result_.entity_id = hit.entity_id; - last_hit_result_.damage = hit.damage; - last_hit_result_.distance = hit.distance; - last_hit_result_.hitbox_id = hit.hitbox_id; - last_hit_result_.killed = !target_ptr->is_alive(); - } - } else { - last_hit_result_.hit = false; - } -} - -// ---- Weapon Config ------------------------------------------------------------ - -void SimulationServer::set_weapon_config(const godot::Dictionary &config) { - WeaponDamage wd; - if (config.has("base_damage")) wd.base_damage = static_cast(static_cast(config["base_damage"])); - if (config.has("head_multiplier")) wd.head_multiplier = static_cast(static_cast(config["head_multiplier"])); - if (config.has("body_multiplier")) wd.body_multiplier = static_cast(static_cast(config["body_multiplier"])); - if (config.has("arm_multiplier")) wd.arm_multiplier = static_cast(static_cast(config["arm_multiplier"])); - if (config.has("leg_multiplier")) wd.leg_multiplier = static_cast(static_cast(config["leg_multiplier"])); - if (config.has("max_range")) wd.max_range = static_cast(static_cast(config["max_range"])); - if (config.has("spread_degrees")) wd.spread_degrees = static_cast(static_cast(config["spread_degrees"])); - if (config.has("fire_rate_hz")) weapon_fire_rate_hz_ = static_cast(static_cast(config["fire_rate_hz"])); - weapon_config_ = wd; -} - -void SimulationServer::set_history_depth(uint32_t ticks) { - history_depth_ = std::clamp(ticks, 16u, 256u); -} - -godot::Dictionary SimulationServer::get_last_hit_result() const { - godot::Dictionary result; - result["hit"] = last_hit_result_.hit; - result["entity_id"] = static_cast(last_hit_result_.entity_id); - result["damage"] = last_hit_result_.damage; - result["distance"] = last_hit_result_.distance; - result["hitbox_id"] = static_cast(last_hit_result_.hitbox_id); - result["killed"] = last_hit_result_.killed; - return result; -} - -godot::PackedByteArray SimulationServer::serialize_state() { - const uint16_t count = static_cast(living_entity_ptrs_.size()); - if (count == 0) return godot::PackedByteArray(); - - // Pre-allocate a reasonable buffer - Bitstream stream; - stream.reserve(1024); // 1KB should cover a full snapshot of 32 entities - - // Use delta compression if we have a base snapshot - if (!last_snapshots_.empty()) { - serializer_.write_delta_snapshot( - stream, current_tick_, - living_entity_ptrs_.data(), count, - last_snapshots_ - ); - } else { - serializer_.write_full_snapshot( - stream, current_tick_, - living_entity_ptrs_.data(), count - ); - } - - // Update last snapshots for next delta - for (Entity *entity : living_entity_ptrs_) { - if (entity) { - last_snapshots_[entity->get_entity_id()] = entity->capture_snapshot(); - } - } - - // Convert to PackedByteArray - godot::PackedByteArray result; - size_t byte_size = stream.byte_size(); - result.resize(static_cast(byte_size)); - if (byte_size > 0) { - uint8_t *dst = result.ptrw(); - memcpy(dst, stream.data(), byte_size); - } - - return result; -} - -// ---- Private: Helpers -------------------------------------------------------- - -uint16_t SimulationServer::allocate_entity_id() { - for (uint16_t i = 0; i < kMaxEntities; ++i) { - if (!entities_by_id_[i].is_valid()) { - return i; - } - } - return UINT16_MAX; -} - -// ---- GDScript Bindings ------------------------------------------------------- - -void SimulationServer::_bind_methods() { - using namespace godot; - - // Lifecycle - ClassDB::bind_method(D_METHOD("set_tick_rate", "hz"), &SimulationServer::set_tick_rate); - ClassDB::bind_method(D_METHOD("get_tick_rate"), &SimulationServer::get_tick_rate); - ADD_PROPERTY(PropertyInfo(Variant::INT, "tick_rate"), "set_tick_rate", "get_tick_rate"); - - ClassDB::bind_method(D_METHOD("start"), &SimulationServer::start); - ClassDB::bind_method(D_METHOD("stop"), &SimulationServer::stop); - ClassDB::bind_method(D_METHOD("is_running"), &SimulationServer::is_running); - ClassDB::bind_method(D_METHOD("can_tick", "delta"), &SimulationServer::can_tick); - ClassDB::bind_method(D_METHOD("tick"), &SimulationServer::tick); - - // Entity management - ClassDB::bind_method(D_METHOD("spawn_entity", "position"), &SimulationServer::spawn_entity); - ClassDB::bind_method(D_METHOD("despawn_entity", "entity_id"), &SimulationServer::despawn_entity); - ClassDB::bind_method(D_METHOD("get_entity", "entity_id"), &SimulationServer::get_entity); - ClassDB::bind_method(D_METHOD("get_entity_count"), &SimulationServer::get_entity_count); - ClassDB::bind_method(D_METHOD("get_entity_ids"), &SimulationServer::get_entity_ids); - - // Input - ClassDB::bind_method(D_METHOD("apply_input", "entity_id", "input_dict"), &SimulationServer::apply_input); - ClassDB::bind_method(D_METHOD("fire_weapon", "entity_id"), &SimulationServer::fire_weapon); - - // Movement config - ClassDB::bind_method(D_METHOD("set_movement_walk_speed", "speed"), &SimulationServer::set_movement_walk_speed); - ClassDB::bind_method(D_METHOD("set_movement_sprint_speed", "speed"), &SimulationServer::set_movement_sprint_speed); - ClassDB::bind_method(D_METHOD("set_movement_crouch_speed", "speed"), &SimulationServer::set_movement_crouch_speed); - ClassDB::bind_method(D_METHOD("set_movement_acceleration", "accel"), &SimulationServer::set_movement_acceleration); - ClassDB::bind_method(D_METHOD("set_movement_jump_velocity", "vel"), &SimulationServer::set_movement_jump_velocity); - ClassDB::bind_method(D_METHOD("set_movement_gravity", "gravity"), &SimulationServer::set_movement_gravity); - ClassDB::bind_method(D_METHOD("set_movement_config", "config"), &SimulationServer::set_movement_config); - - // Weapon config - ClassDB::bind_method(D_METHOD("set_weapon_config", "config"), &SimulationServer::set_weapon_config); - - // Lag compensation - ClassDB::bind_method(D_METHOD("set_history_depth", "ticks"), &SimulationServer::set_history_depth); - - // Hit feedback - ClassDB::bind_method(D_METHOD("get_last_hit_result"), &SimulationServer::get_last_hit_result); - - // Benchmark - ClassDB::bind_method(D_METHOD("get_stats"), &SimulationServer::get_stats); - ClassDB::bind_method(D_METHOD("reset_stats"), &SimulationServer::reset_stats); - ClassDB::bind_method(D_METHOD("populate_bots", "count"), &SimulationServer::populate_bots); -} - -} // namespace tactical_shooter diff --git a/gdextension.disabled/simulation/src/simulation_server.h b/gdextension.disabled/simulation/src/simulation_server.h deleted file mode 100644 index 3ec8514..0000000 --- a/gdextension.disabled/simulation/src/simulation_server.h +++ /dev/null @@ -1,347 +0,0 @@ -#ifndef TACTICAL_SHOOTER_SIMULATION_SERVER_H -#define TACTICAL_SHOOTER_SIMULATION_SERVER_H - -#include "entity.h" -#include "hit_detection.h" -#include "movement_component.h" -#include "state_serializer.h" - -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -namespace tactical_shooter { - -/** - * Position history ring-buffer entry — stores entity positions at a given tick. - * Used for lag compensation: we can rewind targets to where they were when a - * shot was fired, even if they've since moved. - */ -struct TickPositionSnapshot { - uint32_t tick = 0; - struct Entry { - uint16_t entity_id; - godot::Vector3 position; - uint16_t flags; - }; - std::vector entries; -}; - -/** - * A pending weapon fire with time-of-fire information for lag compensation. - */ -struct PendingFire { - uint16_t shooter_id = 0xFFFF; - uint32_t fire_tick = 0; // Server tick at which the fire was queued - uint32_t input_sequence = 0; // Client's input sequence (for reconciliation) -}; - -/** - * SimulationServer — the heart of the tactical shooter simulation. - * - * This singleton manages the entire 128Hz game simulation loop from C++, - * entirely avoiding GDScript VM overhead in the hot path. - * - * GDScript integration: - * var server = SimulationServer.new() - * server.set_tick_rate(128) - * server.start() - * # In _process(): - * while server.can_tick(delta): - * var serialized = server.tick() - * # send serialized to network layer - * - * Architecture: - * - All entity simulation (movement, hit detection) runs in C++ - * - Serialized state is handed to GDScript for network transport - * - Player input arrives from GDScript, gets applied per-entity - * - Lag compensation stores a ring buffer of pre-move positions each tick - * - Benchmark hooks for the 128Hz load test (t_f671f48a) - */ -class SimulationServer : public godot::Object { - GDCLASS(SimulationServer, godot::Object) - -public: - SimulationServer(); - ~SimulationServer(); - - // ---- Lifecycle (GDScript API) ------------------------------------------ - - /** - * Set the simulation tick rate (calls per second). - * Default: 128 (for 128Hz tick). - */ - void set_tick_rate(uint32_t hz); - - uint32_t get_tick_rate() const { return tick_hz_; } - - /** - * Start the simulation. Creates initial entities if count > 0. - */ - void start(); - - /** - * Stop the simulation. Clears all entities and resets state. - */ - void stop(); - - /** - * Check if the simulation is running. - */ - bool is_running() const { return running_; } - - /** - * Accrue time and check if a tick is due. - * Call this in _process(delta) and call tick() while this returns true. - * - * Example (GDScript): - * while server.can_tick(delta): - * input = server.tick() - */ - bool can_tick(float delta); - - /** - * Advance one simulation tick. - * Returns serialized snapshot as a PackedByteArray (or empty if no tick due). - */ - godot::PackedByteArray tick(); - - // ---- Entity Management (GDScript API) ----------------------------------- - - /** - * Spawn a new entity at the given position. - * Returns the entity ID (0..65535) or UINT16_MAX on failure. - */ - uint16_t spawn_entity(const godot::Vector3 &position); - - /** - * Despawn an entity by ID. - */ - void despawn_entity(uint16_t entity_id); - - /** - * Get an entity by ID. Returns null if not found. - */ - godot::Ref get_entity(uint16_t entity_id); - - /** - * Get number of active entities. - */ - uint16_t get_entity_count() const; - - /** - * Get entity IDs of all active entities as an array. - */ - godot::Array get_entity_ids() const; - - // ---- Input (GDScript API) ----------------------------------------------- - - /** - * Apply input for a specific entity on the next tick. - * Call this from _process() as input arrives. - * - * @param entity_id Target entity - * @param input_dict Dictionary with keys: "move_direction" (Vector3), - * "look_yaw" (float), "look_pitch" (float), "jump" (bool), - * "crouch" (bool), "sprint" (bool), "shoot" (bool), "aim" (bool), - * "input_sequence" (int) - */ - void apply_input(uint16_t entity_id, const godot::Dictionary &input_dict); - - /** - * Queue a weapon fire from an entity. - * Fires on the next tick. - */ - void fire_weapon(uint16_t entity_id); - - // ---- Movement Configuration (GDScript API) ------------------------------- - - void set_movement_walk_speed(float speed); - void set_movement_sprint_speed(float speed); - void set_movement_crouch_speed(float speed); - void set_movement_acceleration(float accel); - void set_movement_jump_velocity(float vel); - void set_movement_gravity(float gravity); - - void set_movement_config(const godot::Dictionary &config); - - // ---- Weapon Configuration (GDScript API) ---------------------------------- - - /** - * Set the weapon damage profile for hitscan weapons. - * Called from GDScript to define weapon stats. - * - * Dictionary keys: - * base_damage (float) — base damage per shot - * head_multiplier (float) — damage multiplier for head hits - * body_multiplier (float) — damage multiplier for body hits - * arm_multiplier (float) — damage multiplier for arm hits - * leg_multiplier (float) — damage multiplier for leg hits - * max_range (float) — maximum shot distance in units - * spread_degrees (float) — random spread per shot (degrees) - * fire_rate_hz (float) — max shots per second - */ - void set_weapon_config(const godot::Dictionary &config); - - // ---- Lag Compensation Configuration (GDScript API) ------------------------- - - /** - * Set the depth of the position history ring buffer (in ticks). - * More ticks = can compensate for higher latency but uses more memory. - * Default: 64 ticks (~500ms at 128Hz, enough for any reasonable ping). - */ - void set_history_depth(uint32_t ticks); - - // ---- Damaged / Death Signal (GDScript API via Dictionary return) ----------- - - /** - * Get the most recent hit result from processing combat. - * Returns Dictionary with: hit (bool), entity_id (int), damage (float), - * distance (float), hitbox_id (int), killed (bool). - * Empty if no shot was processed this tick. - */ - godot::Dictionary get_last_hit_result() const; - - // ---- Benchmark / Stats (GDScript API) ------------------------------------ - - /** - * Get tick timing statistics for benchmarking. - * Returns Dictionary with: "last_tick_usec" (int), "avg_tick_usec" (float), - * "peak_tick_usec" (float), "tick_count" (int), "entity_count" (int) - */ - godot::Dictionary get_stats() const; - - /** - * Reset benchmark statistics. - */ - void reset_stats(); - - /** - * Populate simulation with N bots for load testing. - * Places them in a grid pattern. - */ - void populate_bots(uint16_t count); - -protected: - static void _bind_methods(); - -private: - // ---- Internal tick logic ------------------------------------------------ - - /** - * Advance the simulation by one tick (fixed timestep). - */ - void process_tick(); - - /** - * Update all entity movement. - */ - void update_movement(); - - /** - * Process all queued weapon fires. - */ - void update_combat(); - - /** - * Collect and serialize the current simulation state. - */ - godot::PackedByteArray serialize_state(); - - // ---- Helpers ------------------------------------------------------------ - - /** - * Find the lowest available entity ID. - */ - uint16_t allocate_entity_id(); - - // ---- Lag Compensation (Position History) ---------------------------------- - - /** - * Record pre-move positions of all living entities for the given tick. - * Called at the start of process_tick(), BEFORE update_movement(). - */ - void record_position_history(uint32_t tick); - - /** - * Rewind target entities to positions stored at a given tick for hit - * detection, then restore them back. - */ - struct RewindState { - std::vector saved; - }; - RewindState begin_rewind(uint32_t target_tick); - void end_rewind(const RewindState &state); - - /** - * Process a single compensated fire: rewind, check hit, restore. - */ - void process_compensated_fire(const PendingFire &fire); - - // ---- State -------------------------------------------------------------- - - bool running_ = false; - uint32_t tick_hz_ = 128; - float tick_interval_ = 1.0f / 128.0f; - float time_accumulator_ = 0.0f; - - // Tick counter - uint32_t current_tick_ = 0; - - // Entity storage (by ID) - std::vector> entities_by_id_; - std::vector living_entity_ptrs_; // raw ptrs for hot loop - - // Systems - MovementComponent movement_; - HitDetection hit_detection_; - StateSerializer serializer_; - - // Queued input (applied on next tick, cleared after) - struct QueuedInput { - EntityInput input; - bool pending = false; - }; - std::vector queued_inputs_; - - // Queued weapon fires with lag-compensation info - std::vector pending_fires_; - WeaponDamage weapon_config_; - float weapon_fire_rate_hz_ = 10.0f; - - // Last hit result (queried by GDScript for feedback) - struct LastHitResult { - bool hit = false; - uint16_t entity_id = 0xFFFF; - float damage = 0.0f; - float distance = 0.0f; - uint8_t hitbox_id = 0; - bool killed = false; - }; - LastHitResult last_hit_result_; - - // Position history ring buffer (for lag compensation) - std::vector position_history_; - uint32_t history_depth_ = 64; - uint32_t history_write_index_ = 0; - - // Last serialized snapshot per entity (for delta compression) - std::unordered_map last_snapshots_; - - // Benchmark stats - uint64_t tick_count_ = 0; - uint64_t last_tick_usec_ = 0; - uint64_t total_tick_usec_ = 0; - uint64_t max_tick_usec_ = 0; -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_SIMULATION_SERVER_H diff --git a/gdextension.disabled/simulation/src/state_serializer.cpp b/gdextension.disabled/simulation/src/state_serializer.cpp deleted file mode 100644 index 9427f9c..0000000 --- a/gdextension.disabled/simulation/src/state_serializer.cpp +++ /dev/null @@ -1,262 +0,0 @@ -#include "state_serializer.h" - -#include - -namespace tactical_shooter { - -StateSerializer::StateSerializer(const SerializationConfig &config) - : config_(config) {} - -// ---- Write Full -------------------------------------------------------------- - -void StateSerializer::write_full_snapshot( - Bitstream &stream, - uint32_t tick, - const Entity *const *entities, - uint16_t count -) { - // Header: tick, entity count, base_tick=0 (full) - stream.write_uint32(tick); - stream.write_uint16(count); - stream.write_uint16(0); // base_tick=0 signals "full snapshot" - - for (uint16_t i = 0; i < count; ++i) { - if (entities[i] && entities[i]->is_alive()) { - write_entity_full(stream, *entities[i]); - } - } -} - -// ---- Write Delta ------------------------------------------------------------- - -void StateSerializer::write_delta_snapshot( - Bitstream &stream, - uint32_t tick, - const Entity *const *entities, - uint16_t count, - const std::unordered_map &base -) { - // Count changed entities first - uint16_t changed_count = 0; - for (uint16_t i = 0; i < count; ++i) { - if (!entities[i] || !entities[i]->is_alive()) continue; - uint16_t id = entities[i]->get_entity_id(); - auto it = base.find(id); - if (it == base.end()) { - ++changed_count; // new entity = full - } else { - EntitySnapshot::ChangeMask mask = - entities[i]->compute_change_mask(it->second); - if (mask != EntitySnapshot::CHANGED_NONE) { - ++changed_count; - } - } - } - - // Header: tick, count, delta_tick - stream.write_uint32(tick); - stream.write_uint16(changed_count); - // We need the tick of the base snapshot — for now write 0 (delta from - // client's last acked tick which the client tracks itself). - stream.write_uint16(0); - - // Write delta entities - for (uint16_t i = 0; i < count; ++i) { - if (!entities[i] || !entities[i]->is_alive()) continue; - uint16_t id = entities[i]->get_entity_id(); - auto it = base.find(id); - if (it == base.end()) { - // New entity: write full state with CHANGED_ALL - stream.write_uint16(id); - stream.write_uint32(EntitySnapshot::CHANGED_ALL); - write_entity_full(stream, *entities[i]); - } else { - EntitySnapshot::ChangeMask mask = - entities[i]->compute_change_mask(it->second); - if (mask != EntitySnapshot::CHANGED_NONE) { - stream.write_uint16(id); - stream.write_uint32(static_cast(mask)); - write_entity_delta(stream, *entities[i], it->second, mask); - } - } - } -} - -// ---- Read Full --------------------------------------------------------------- - -std::vector StateSerializer::read_full_snapshot( - Bitstream &stream, - uint32_t *out_tick -) { - std::vector result; - - *out_tick = stream.read_uint32(); - uint16_t count = stream.read_uint16(); - uint16_t base_tick = stream.read_uint16(); // should be 0 for full - - (void)base_tick; // unused in full read - - result.reserve(count); - for (uint16_t i = 0; i < count; ++i) { - uint16_t id = stream.read_uint16(); - EntitySnapshot::ChangeMask mask = read_change_mask(stream); - EntitySnapshot snap = read_entity(stream, mask); - snap.entity_id = id; - result.push_back(snap); - } - - return result; -} - -// ---- Read Delta -------------------------------------------------------------- - -void StateSerializer::read_delta_snapshot( - Bitstream &stream, - std::unordered_map &state -) { - uint32_t tick = stream.read_uint32(); - uint16_t count = stream.read_uint16(); - uint16_t base_tick = stream.read_uint16(); - - (void)tick; - (void)base_tick; - - for (uint16_t i = 0; i < count; ++i) { - uint16_t id = stream.read_uint16(); - EntitySnapshot::ChangeMask mask = read_change_mask(stream); - EntitySnapshot snap = read_entity(stream, mask); - snap.entity_id = id; - - if (mask == EntitySnapshot::CHANGED_ALL) { - state[id] = snap; // replace entirely - } else { - // Merge delta into existing state - auto it = state.find(id); - if (it != state.end()) { - if (mask & EntitySnapshot::CHANGED_POSITION) it->second.position = snap.position; - if (mask & EntitySnapshot::CHANGED_VELOCITY) it->second.velocity = snap.velocity; - if (mask & EntitySnapshot::CHANGED_ROTATION) { it->second.yaw = snap.yaw; it->second.pitch = snap.pitch; } - if (mask & EntitySnapshot::CHANGED_HEALTH) it->second.health = snap.health; - if (mask & EntitySnapshot::CHANGED_ARMOR) it->second.armor = snap.armor; - if (mask & EntitySnapshot::CHANGED_WEAPON) it->second.weapon_id = snap.weapon_id; - if (mask & EntitySnapshot::CHANGED_AMMO) it->second.ammo = snap.ammo; - if (mask & EntitySnapshot::CHANGED_FLAGS) it->second.flags = snap.flags; - if (mask & EntitySnapshot::CHANGED_INPUT) it->second.last_processed_input = snap.last_processed_input; - } else { - state[id] = snap; // missing base, fall back to full replace - } - } - } -} - -// ---- Private: write ---------------------------------------------------------- - -void StateSerializer::write_entity_full(Bitstream &stream, const Entity &entity) { - EntitySnapshot snap = entity.capture_snapshot(); - write_entity_delta(stream, entity, EntitySnapshot{}, EntitySnapshot::CHANGED_ALL); -} - -void StateSerializer::write_entity_delta( - Bitstream &stream, - const Entity &entity, - const EntitySnapshot &base, - EntitySnapshot::ChangeMask mask -) { - EntitySnapshot snap = entity.capture_snapshot(); - - // Position - if (mask & EntitySnapshot::CHANGED_POSITION) { - stream.write_float_quantized(snap.position.x, config_.pos_min, config_.pos_max, config_.pos_bits); - stream.write_float_quantized(snap.position.y, config_.pos_min, config_.pos_max, config_.pos_bits); - stream.write_float_quantized(snap.position.z, config_.pos_min, config_.pos_max, config_.pos_bits); - } - - // Velocity - if (mask & EntitySnapshot::CHANGED_VELOCITY) { - stream.write_float_quantized(snap.velocity.x, config_.vel_min, config_.vel_max, config_.vel_bits); - stream.write_float_quantized(snap.velocity.y, config_.vel_min, config_.vel_max, config_.vel_bits); - stream.write_float_quantized(snap.velocity.z, config_.vel_min, config_.vel_max, config_.vel_bits); - } - - // Rotation - if (mask & EntitySnapshot::CHANGED_ROTATION) { - stream.write_float_quantized(snap.yaw, config_.yaw_min, config_.yaw_max, config_.yaw_bits); - stream.write_float_quantized(snap.pitch, config_.pitch_min, config_.pitch_max, config_.pitch_bits); - } - - // Health/Armor - if (mask & EntitySnapshot::CHANGED_HEALTH) { - stream.write_float_quantized(snap.health, config_.health_min, config_.health_max, config_.health_bits); - } - if (mask & EntitySnapshot::CHANGED_ARMOR) { - stream.write_float_quantized(snap.armor, config_.health_min, config_.health_max, config_.health_bits); - } - - // Weapon/Ammo - if (mask & EntitySnapshot::CHANGED_WEAPON) { - stream.write_uint8(snap.weapon_id); - } - if (mask & EntitySnapshot::CHANGED_AMMO) { - stream.write_uint16(snap.ammo); - } - - // Flags - if (mask & EntitySnapshot::CHANGED_FLAGS) { - stream.write_uint16(snap.flags); - } - - // Input sequence - if (mask & EntitySnapshot::CHANGED_INPUT) { - stream.write_uint32(snap.last_processed_input); - } -} - -// ---- Private: read ----------------------------------------------------------- - -EntitySnapshot::ChangeMask StateSerializer::read_change_mask(Bitstream &stream) { - return static_cast(stream.read_uint32()); -} - -EntitySnapshot StateSerializer::read_entity( - Bitstream &stream, - EntitySnapshot::ChangeMask mask -) { - EntitySnapshot snap; - - if (mask & EntitySnapshot::CHANGED_POSITION) { - snap.position.x = stream.read_float_quantized(config_.pos_min, config_.pos_max, config_.pos_bits); - snap.position.y = stream.read_float_quantized(config_.pos_min, config_.pos_max, config_.pos_bits); - snap.position.z = stream.read_float_quantized(config_.pos_min, config_.pos_max, config_.pos_bits); - } - if (mask & EntitySnapshot::CHANGED_VELOCITY) { - snap.velocity.x = stream.read_float_quantized(config_.vel_min, config_.vel_max, config_.vel_bits); - snap.velocity.y = stream.read_float_quantized(config_.vel_min, config_.vel_max, config_.vel_bits); - snap.velocity.z = stream.read_float_quantized(config_.vel_min, config_.vel_max, config_.vel_bits); - } - if (mask & EntitySnapshot::CHANGED_ROTATION) { - snap.yaw = stream.read_float_quantized(config_.yaw_min, config_.yaw_max, config_.yaw_bits); - snap.pitch = stream.read_float_quantized(config_.pitch_min, config_.pitch_max, config_.pitch_bits); - } - if (mask & EntitySnapshot::CHANGED_HEALTH) { - snap.health = stream.read_float_quantized(config_.health_min, config_.health_max, config_.health_bits); - } - if (mask & EntitySnapshot::CHANGED_ARMOR) { - snap.armor = stream.read_float_quantized(config_.health_min, config_.health_max, config_.health_bits); - } - if (mask & EntitySnapshot::CHANGED_WEAPON) { - snap.weapon_id = stream.read_uint8(); - } - if (mask & EntitySnapshot::CHANGED_AMMO) { - snap.ammo = stream.read_uint16(); - } - if (mask & EntitySnapshot::CHANGED_FLAGS) { - snap.flags = stream.read_uint16(); - } - if (mask & EntitySnapshot::CHANGED_INPUT) { - snap.last_processed_input = stream.read_uint32(); - } - - return snap; -} - -} // namespace tactical_shooter diff --git a/gdextension.disabled/simulation/src/state_serializer.h b/gdextension.disabled/simulation/src/state_serializer.h deleted file mode 100644 index 5067ce8..0000000 --- a/gdextension.disabled/simulation/src/state_serializer.h +++ /dev/null @@ -1,136 +0,0 @@ -#ifndef TACTICAL_SHOOTER_STATE_SERIALIZER_H -#define TACTICAL_SHOOTER_STATE_SERIALIZER_H - -#include "bitstream.h" -#include "entity.h" - -#include -#include -#include - -namespace tactical_shooter { - -/** - * Serialization ranges for quantized float packing. - * These define the min/max and precision budget for each field type. - * Tune per-game to balance bandwidth vs accuracy. - */ -struct SerializationConfig { - // Position (quantized to 16 bits per axis = 65536 values) - float pos_min = -1024.0f; - float pos_max = 1024.0f; - uint8_t pos_bits = 16; - - // Velocity (quantized to 12 bits per axis) - float vel_min = -32.0f; - float vel_max = 32.0f; - uint8_t vel_bits = 12; - - // Rotation (yaw -180..180, pitch -90..90) - float yaw_min = -180.0f; - float yaw_max = 180.0f; - uint8_t yaw_bits = 12; // ~0.09° precision - - float pitch_min = -90.0f; - float pitch_max = 90.0f; - uint8_t pitch_bits = 11; // ~0.09° precision - - // Health/Armor (0..100, 7 bits = 0.79 precision) - float health_min = 0.0f; - float health_max = 100.0f; - uint8_t health_bits = 7; - - // Ammo (0..255, 8 bits exact) -}; - -/** - * Delta-compressed snapshot serializer for network replication. - * - * Writes a compact binary representation of entity states suitable for - * 128Hz server-to-client replication. Full snapshots include all entities; - * delta snapshots only include entities with changes since the base snapshot. - * - * Snapshot on-wire layout: - * [uint16 tick] [uint16 count] [uint16 base_tick] <- header (6 bytes) - * for each entity: - * [uint16 entity_id] [uint32 change_mask] - * [changed fields per mask] - * - * Typical size at 128Hz, 10 entities: - * Full snapshot: ~300-400 bytes - * Delta snapshot (5 entities changed): ~150-250 bytes - */ -class StateSerializer { -public: - explicit StateSerializer(const SerializationConfig &config = SerializationConfig{}); - - /** - * Serialize a full snapshot including all entities. - * - * @param stream Output bitstream - * @param tick Current simulation tick number - * @param entities All active entities - * @param count Number of entities - */ - void write_full_snapshot( - Bitstream &stream, - uint32_t tick, - const Entity *const *entities, - uint16_t count - ); - - /** - * Serialize a delta snapshot — only entities that changed from base. - * - * @param stream Output bitstream - * @param tick Current simulation tick number - * @param entities All active entities - * @param count Number of entities - * @param base Base snapshot for delta comparison - */ - void write_delta_snapshot( - Bitstream &stream, - uint32_t tick, - const Entity *const *entities, - uint16_t count, - const std::unordered_map &base - ); - - /** - * Deserialize a full snapshot from a bitstream. - */ - std::vector read_full_snapshot( - Bitstream &stream, - uint32_t *out_tick - ); - - /** - * Deserialize a delta snapshot and apply to a base. - */ - void read_delta_snapshot( - Bitstream &stream, - std::unordered_map &state - ); - - /** - * Get the configuration. - */ - const SerializationConfig &config() const { return config_; } - -private: - void write_entity_full(Bitstream &stream, const Entity &entity); - void write_entity_delta( - Bitstream &stream, - const Entity &entity, - const EntitySnapshot &base, - EntitySnapshot::ChangeMask mask - ); - EntitySnapshot read_entity(Bitstream &stream, EntitySnapshot::ChangeMask mask); - EntitySnapshot::ChangeMask read_change_mask(Bitstream &stream); - - SerializationConfig config_; -}; - -} // namespace tactical_shooter - -#endif // TACTICAL_SHOOTER_STATE_SERIALIZER_H diff --git a/giscus.json b/giscus.json new file mode 100644 index 0000000..04d43d5 --- /dev/null +++ b/giscus.json @@ -0,0 +1,7 @@ +{ + "origins": ["https://foxssake.github.io"], + "originsRegex": [ + "http://localhost:[0-9]+", + "http://127.0.0.1:[0-9]+" + ] +} diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..3076ce1 Binary files /dev/null and b/icon.png differ diff --git a/icon.png.import b/icon.png.import new file mode 100644 index 0000000..f3a7e52 --- /dev/null +++ b/icon.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdb8di7e1p6h6" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..ac66410 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,80 @@ +site_name: netfox +site_url: 'https://foxssake.github.io/netfox/' +theme: + name: readthedocs + custom_dir: docs/custom_theme/ +extra_css: + - css/version-selector.css + - css/twemoji.css +plugins: + - plantuml: + puml_url: !ENV [PLANTUML_URL, "http://www.plantuml.com/plantuml/"] + theme: + enabled: false + interaction: + enabled: false +markdown_extensions: + - admonition + - attr_list + - def_list + - md_in_html + - pymdownx.details + - pymdownx.highlight + - pymdownx.snippets + - pymdownx.superfences + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg +nav: + - 'index.md' + - 'upgrading.md' + - 'made-with-netfox.md' + - 'external-tutorials.md' + - 'press-kit.md' + - 'contributors.md' + - netfox: + - Tutorials: + - 'netfox/tutorials/responsive-player-movement.md' + - 'netfox/tutorials/input-gathering-tips-and-tricks.md' + - 'netfox/tutorials/predicting-input.md' + - 'netfox/tutorials/using-rollbacksynchronizer-without-inputs.md' + - 'netfox/tutorials/modifying-objects-during-rollback.md' + - 'netfox/tutorials/configuring-properties-from-code.md' + - 'netfox/tutorials/rollback-caveats.md' + - 'netfox/tutorials/interpolation-caveats.md' + - Concepts: + - 'netfox/concepts/servers-clients-ownership.md' + - 'netfox/concepts/authoritative-servers.md' + - Guides: + - 'netfox/guides/logging.md' + - 'netfox/guides/network-time.md' + - 'netfox/guides/network-time-synchronizer.md' + - 'netfox/guides/network-events.md' + - 'netfox/guides/interpolators.md' + - 'netfox/guides/property-paths.md' + - 'netfox/guides/network-rollback.md' + - 'netfox/guides/network-performance.md' + - 'netfox/guides/network-command-server.md' + - 'netfox/guides/network-schemas.md' + - 'netfox/guides/visibility-management.md' + - 'netfox/guides/netfox-sharp.md' + - Nodes: + - 'netfox/nodes/tick-interpolator.md' + - 'netfox/nodes/rollback-synchronizer.md' + - 'netfox/nodes/predictive-synchronizer.md' + - 'netfox/nodes/state-synchronizer.md' + - 'netfox/nodes/rewindable-action.md' + - netfox.noray: + - Guides: + - 'netfox.noray/guides/noray.md' + - 'netfox.noray/guides/packet-handshake.md' + - netfox.extras: + - Guides: + - 'netfox.extras/guides/physics.md' + - 'netfox.extras/guides/network-simulator.md' + - 'netfox.extras/guides/base-net-input.md' + - 'netfox.extras/guides/network-weapon.md' + - 'netfox.extras/guides/rewindable-state-machine.md' + - 'netfox.extras/guides/rewindable-random-number-generator.md' + - 'netfox.extras/guides/window-tiler.md' + diff --git a/project.godot b/project.godot index 4ea4a39..ba9e7c3 100644 --- a/project.godot +++ b/project.godot @@ -8,118 +8,192 @@ config_version=5 +[animation] + +compatibility/default_parent_skeleton_in_mesh_instance_3d=true + [application] config/name="Tactical Shooter" -config/description="Phase 0 — Headless Dedicated Server" -run/main_scene="res://scenes/entry.tscn" -config/features=PackedStringArray("4.7", "Forward Plus") +config/description="CS 1.6 inspired multiplayer FPS built with Godot 4 and netfox" +run/main_scene="uid://bfshwoko470di" +config/features=PackedStringArray("4.7") +run/max_fps=240 +config/icon="res://icon.png" [autoload] -NetworkManager="*res://scripts/network/network_manager.gd" -ServerConfig="*res://scripts/config/server_config.gd" -PluginManager="*res://server/scripts/plugin_api/plugin_manager.gd" -RoundManager="*res://server/scripts/round_manager.gd" -NetfoxBootstrap="*res://scripts/network/netfox_bootstrap.gd" +Async="*res://examples/shared/scripts/async.gd" +Noray="*res://addons/netfox.noray/noray.gd" +PacketHandshake="*res://addons/netfox.noray/packet-handshake.gd" +WindowTiler="*res://addons/netfox.extras/window-tiler.gd" +NetworkSimulator="*res://addons/netfox.extras/network-simulator.gd" +NetworkTime="*res://addons/netfox/network-time.gd" +NetworkTimeSynchronizer="*res://addons/netfox/network-time-synchronizer.gd" +NetworkRollback="*res://addons/netfox/rollback/network-rollback.gd" +NetworkEvents="*res://addons/netfox/network-events.gd" +NetworkPerformance="*res://addons/netfox/network-performance.gd" +RollbackSimulationServer="*res://addons/netfox/servers/rollback-simulation-server.gd" +NetworkHistoryServer="*res://addons/netfox/servers/network-history-server.gd" +NetworkSynchronizationServer="*res://addons/netfox/servers/network-synchronization-server.gd" +NetworkIdentityServer="*res://addons/netfox/servers/network-identity-server.gd" +NetworkCommandServer="*res://addons/netfox/servers/network-command-server.gd" +WeaponRegistry="*res://examples/multiplayer-fps/scripts/data/weapon_registry.gd" -[physics] +[display] -common/physics_ticks_per_second=128 -common/enable_pause_aware_picking=true -3d/physics_engine="Jolt3D" +window/size/viewport_width=1024 +window/size/viewport_height=768 +window/vsync/vsync_mode=0 -[plugins] +[editor_plugins] -netfox="CUSTOM" -netfox.extras="CUSTOM" -netfox.noray="CUSTOM" -godot-jolt="CUSTOM" +enabled=PackedStringArray("res://addons/netfox.extras/plugin.cfg", "res://addons/netfox.internals/plugin.cfg", "res://addons/netfox.noray/plugin.cfg", "res://addons/netfox/plugin.cfg", "res://addons/vest/plugin.cfg") -[rendering] +[filesystem] -renderer/rendering_method="forward_plus" -environment/default_clear_color=Color(0.1, 0.1, 0.15, 1) +import/blender/enabled=false +import/fbx/enabled=false [input] -WeaponUp={ +move_west={ "deadzone": 0.5, -"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":4,"canceled":false,"pressed":false,"double_click":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":-1.0,"script":null) ] } -WeaponDown={ +move_east={ "deadzone": 0.5, -"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":5,"canceled":false,"pressed":false,"double_click":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":1.0,"script":null) ] } -Shoot={ +move_north={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":-1.0,"script":null) +] +} +move_south={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":1.0,"script":null) +] +} +move_jump={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":true,"script":null) +] +} +mouse_weapon_fire={ "deadzone": 0.5, "events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":false,"double_click":false,"script":null) ] } -Reload={ +weapon_fire={ +"deadzone": 0.5, +"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":false,"double_click":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":5,"axis_value":1.0,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":2,"axis_value":1.0,"script":null) +] +} +aim_west={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":-1.0,"script":null) +] +} +aim_east={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":1.0,"script":null) +] +} +aim_north={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":4,"axis_value":-1.0,"script":null) +] +} +aim_south={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":4,"axis_value":1.0,"script":null) +] +} +escape={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +scoreboard={ +"deadzone": 0.5, +"events": Array[InputEvent]([Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194306,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +]) +} +weapon_reload={ "deadzone": 0.5, "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":114,"location":0,"echo":false,"script":null) ] } -Drop_Weapon={ +weapon_next={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":71,"key_label":0,"unicode":103,"location":0,"echo":false,"script":null) +"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":4,"canceled":false,"pressed":false,"double_click":false,"script":null) ] } -Secondary_Fire={ +weapon_prev={ "deadzone": 0.5, -"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":2,"canceled":false,"pressed":false,"double_click":false,"script":null) +"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":5,"canceled":false,"pressed":false,"double_click":false,"script":null) ] } -Melee={ +weapon_slot_1={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":70,"key_label":0,"unicode":102,"location":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":49,"key_label":0,"unicode":49,"location":0,"echo":false,"script":null) ] } -crouch={ +weapon_slot_2={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":67,"key_label":0,"unicode":99,"location":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":50,"key_label":0,"unicode":50,"location":0,"echo":false,"script":null) ] } -lean_left={ +weapon_slot_3={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":81,"key_label":0,"unicode":113,"location":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":51,"key_label":0,"unicode":51,"location":0,"echo":false,"script":null) ] } -lean_right={ +weapon_slot_4={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":52,"key_label":0,"unicode":52,"location":0,"echo":false,"script":null) +] +} +buy_menu={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":66,"key_label":0,"unicode":98,"location":0,"echo":false,"script":null) +] +} +use_action={ "deadzone": 0.5, "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"location":0,"echo":false,"script":null) ] } -sprint={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194325,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) -] -} -walk={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) -] -} -up={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null) -] -} -down={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null) -] -} -left={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null) -] -} -right={ -"deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null) -] -} + +[netfox] + +general/clear_settings=false +time/tickrate=64 +extras/auto_tile_windows=true +autoconnect/enabled=false + +[rendering] + +textures/vram_compression/import_etc2_astc=true +lights_and_shadows/directional_shadow/soft_shadow_filter_quality=3 +anti_aliasing/quality/screen_space_aa=1 + +[vest] + +tests_root="res://test/" +new_test_location=2 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d890ffc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +mkdocs +mkdocs-puml +pymdown-extensions diff --git a/scenes/client/client_main.tscn b/scenes/client/client_main.tscn deleted file mode 100644 index 7364305..0000000 --- a/scenes/client/client_main.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://client_main"] - -; Client entry point for testing. -; Connects to server, loads the grey-box test map, and spawns local player. - -[ext_resource type="Script" path="res://scripts/network/client_main.gd" id="1_client_main"] -[ext_resource type="PackedScene" uid="uid://test_range_map" path="res://scenes/map/test_range.tscn" id="2_test_map"] - -[node name="ClientMain" type="Node3D"] -script = ExtResource("1_client_main") -server_host = "68.202.6.107" -server_port = 34197 - -[node name="TestMap" parent="." instance=ExtResource("2_test_map")] diff --git a/scenes/entry.tscn b/scenes/entry.tscn deleted file mode 100644 index 9d5b888..0000000 --- a/scenes/entry.tscn +++ /dev/null @@ -1,6 +0,0 @@ -[gd_scene load_steps=2 format=3] - -[ext_resource type="Script" path="res://scripts/entry.gd" id="1"] - -[node name="Entry" type="Node"] -script = ExtResource("1") diff --git a/scenes/map/test_range.tscn b/scenes/map/test_range.tscn deleted file mode 100644 index a6c57d1..0000000 --- a/scenes/map/test_range.tscn +++ /dev/null @@ -1,291 +0,0 @@ -[gd_scene format=3 uid="uid://test_range_map"] - -; ============================================================================ -; Grey-box Test Map — "Test Range" -; ============================================================================ -; Phase 1 testing arena using CSG nodes with Kenney-style palette. -; 40m x 32m symmetrical layout with cover, pillars, and central structure. -; -; Spawn markers (Marker3D nodes at root level): -; SpawnA, SpawnA2 — Team A spawn (west side, -X) -; SpawnB, SpawnB2 — Team B spawn (east side, +X) -; ============================================================================ - -; --------------------------------------------------------------------------- -; SUB-RESOURCES -; --------------------------------------------------------------------------- - -[sub_resource type="Environment" id=1] -background_mode = 2 -ambient_light_source = 1 -ambient_light_color = Color(0.3, 0.3, 0.35, 1) -ambient_light_energy = 0.4 -tonemap_mode = 0 - -[sub_resource type="StandardMaterial3D" id=2] -; Floor — dark charcoal -albedo_color = Color(0.227, 0.227, 0.227, 1) -roughness = 0.9 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=3] -; Walls — medium grey -albedo_color = Color(0.4, 0.4, 0.4, 1) -roughness = 0.8 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=4] -; Cover — blue-grey -albedo_color = Color(0.29, 0.435, 0.647, 1) -roughness = 0.7 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=5] -; Center — warm orange accent -albedo_color = Color(0.788, 0.486, 0.239, 1) -roughness = 0.7 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=6] -; Pillars — light grey -albedo_color = Color(0.533, 0.533, 0.533, 1) -roughness = 0.6 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=7] -; Grid lines — darker stripe -albedo_color = Color(0.18, 0.18, 0.18, 1) -roughness = 0.9 -metallic = 0.0 - -[sub_resource type="StandardMaterial3D" id=8] -; Spawn zone — green glow -albedo_color = Color(0.2, 0.5, 0.2, 1) -roughness = 0.3 -metallic = 0.1 -emission_enabled = true -emission = Color(0.05, 0.15, 0.05, 1) - -; --------------------------------------------------------------------------- -; NODES -; --------------------------------------------------------------------------- - -[node name="WorldEnvironment" type="WorldEnvironment"] -environment = SubResource(1) - -[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] -transform = Transform3D(0.866025, 0.5, 0, -0.25, 0.433013, 0.866025, 0.433013, -0.75, 0.5, 0, 0, 0) -light_energy = 1.2 -shadow_enabled = true -shadow_bias = 0.05 - -[node name="Map" type="CSGCombiner3D" parent="."] -use_collision = true -calculate_tangents = false - -; Floor -[node name="Floor" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.25, 0) -size = Vector3(40, 0.5, 32) -material = SubResource(2) - -; Floor grid lines — north-south -[node name="FloorGridNS" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0.01, 0) -size = Vector3(0.08, 0.04, 32) -material = SubResource(7) - -[node name="FloorGridNS2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0.01, 0) -size = Vector3(0.08, 0.04, 32) -material = SubResource(7) - -[node name="FloorGridNS3" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, 0) -size = Vector3(0.08, 0.04, 32) -material = SubResource(7) - -[node name="FloorGridNS4" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0.01, 0) -size = Vector3(0.08, 0.04, 32) -material = SubResource(7) - -[node name="FloorGridNS5" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0.01, 0) -size = Vector3(0.08, 0.04, 32) -material = SubResource(7) - -; Floor grid lines — east-west -[node name="FloorGridEW" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, -12) -size = Vector3(40, 0.04, 0.08) -material = SubResource(7) - -[node name="FloorGridEW2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, -4) -size = Vector3(40, 0.04, 0.08) -material = SubResource(7) - -[node name="FloorGridEW3" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, 4) -size = Vector3(40, 0.04, 0.08) -material = SubResource(7) - -[node name="FloorGridEW4" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, 12) -size = Vector3(40, 0.04, 0.08) -material = SubResource(7) - -; Perimeter walls -[node name="WallNorth" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, -16) -size = Vector3(40.4, 4, 0.5) -material = SubResource(3) - -[node name="WallSouth" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 16) -size = Vector3(40.4, 4, 0.5) -material = SubResource(3) - -[node name="WallEast" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 20, 2, 0) -size = Vector3(0.5, 4, 32.4) -material = SubResource(3) - -[node name="WallWest" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -20, 2, 0) -size = Vector3(0.5, 4, 32.4) -material = SubResource(3) - -; Cover boxes — Team A side (west) -[node name="CoverBoxA1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 1, -8) -size = Vector3(3, 2, 3) -material = SubResource(4) - -[node name="CoverBoxA2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 1, 8) -size = Vector3(3, 2, 3) -material = SubResource(4) - -[node name="LowCoverA1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, 0.6, -11) -size = Vector3(4, 1.2, 1) -material = SubResource(4) - -[node name="LowCoverA2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, 0.6, 11) -size = Vector3(4, 1.2, 1) -material = SubResource(4) - -; Cover boxes — Team B side (east) -[node name="CoverBoxB1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 1, -8) -size = Vector3(3, 2, 3) -material = SubResource(4) - -[node name="CoverBoxB2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 1, 8) -size = Vector3(3, 2, 3) -material = SubResource(4) - -[node name="LowCoverB1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0.6, -11) -size = Vector3(4, 1.2, 1) -material = SubResource(4) - -[node name="LowCoverB2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7, 0.6, 11) -size = Vector3(4, 1.2, 1) -material = SubResource(4) - -; Center structure — orange accent -[node name="CenterWall1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.25, 0) -size = Vector3(6, 2.5, 1.5) -material = SubResource(5) - -[node name="CenterWall2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.25, -6) -size = Vector3(1.5, 2.5, 6) -material = SubResource(5) - -[node name="CenterWall3" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.25, 6) -size = Vector3(1.5, 2.5, 6) -material = SubResource(5) - -[node name="CenterLow" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0.6, 0) -size = Vector3(2, 1.2, 2) -material = SubResource(5) - -[node name="CenterLow2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0.6, 0) -size = Vector3(2, 1.2, 2) -material = SubResource(5) - -; Pillars -[node name="Pillar1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 2, -6) -size = Vector3(1.2, 4, 1.2) -material = SubResource(6) - -[node name="Pillar2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 2, 6) -size = Vector3(1.2, 4, 1.2) -material = SubResource(6) - -[node name="Pillar3" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 2, -6) -size = Vector3(1.2, 4, 1.2) -material = SubResource(6) - -[node name="Pillar4" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 2, 6) -size = Vector3(1.2, 4, 1.2) -material = SubResource(6) - -[node name="PillarMid1" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 2, -3) -size = Vector3(0.8, 4, 0.8) -material = SubResource(6) - -[node name="PillarMid2" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 2, 3) -size = Vector3(0.8, 4, 0.8) -material = SubResource(6) - -[node name="PillarMid3" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 2, -3) -size = Vector3(0.8, 4, 0.8) -material = SubResource(6) - -[node name="PillarMid4" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 2, 3) -size = Vector3(0.8, 4, 0.8) -material = SubResource(6) - -; Spawn markers — at root level so _collect_spawn_points finds them -[node name="SpawnA" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0, -4) - -[node name="SpawnA2" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0, 4) - -[node name="SpawnB" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0, -4) - -[node name="SpawnB2" type="Marker3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0, 4) - -; Spawn zone floor indicators -[node name="SpawnAZone" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16, 0.02, 0) -size = Vector3(4, 0.04, 12) -material = SubResource(8) - -[node name="SpawnBZone" type="CSGBox3D" parent="Map"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0.02, 0) -size = Vector3(4, 0.04, 12) -material = SubResource(8) diff --git a/scenes/player.tscn b/scenes/player.tscn deleted file mode 100644 index 8c7e9d7..0000000 --- a/scenes/player.tscn +++ /dev/null @@ -1,37 +0,0 @@ -[gd_scene format=3 uid="uid://player"] - -[ext_resource type="Script" path="res://scripts/network/player.gd" id="1_player"] -[ext_resource type="Script" path="res://scripts/characters/fps_camera.gd" id="2_fps_camera"] -[ext_resource type="Script" path="res://scripts/network/player_net_input.gd" id="3_player_net_input"] - -[sub_resource type="CapsuleShape3D" id="1"] -radius = 0.4 -height = 1.8 - -[sub_resource type="BoxMesh" id="2"] -size = Vector3(0.8, 0.8, 0.8) - -[node name="Player" type="CharacterBody3D"] -script = ExtResource("1_player") -movement_speed = 5.0 -local_walk_speed = 5.0 -local_sprint_speed = 8.0 -local_crouch_speed = 2.5 -local_jump_velocity = 4.5 -local_gravity = 15.0 -local_acceleration = 12.0 - -[node name="FpsCamera" type="Camera3D" parent="."] -script = ExtResource("2_fps_camera") -current = false - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.9, 0) -shape = SubResource("1") - -[node name="PlayerNetInput" type="Node" parent="."] -script = ExtResource("3_player_net_input") - -[node name="Mesh" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -mesh = SubResource("2") diff --git a/scenes/server/server_main.tscn b/scenes/server/server_main.tscn deleted file mode 100644 index cf0887c..0000000 --- a/scenes/server/server_main.tscn +++ /dev/null @@ -1,14 +0,0 @@ -[gd_scene load_steps=3 format=3 uid="uid://server_main"] - -; Headless dedicated server entry point. -; Instances the grey-box test map and manages connected players. - -[ext_resource type="Script" path="res://scripts/network/server_main.gd" id="1_server_main"] -[ext_resource type="PackedScene" uid="uid://test_range_map" path="res://scenes/map/test_range.tscn" id="2_test_map"] - -[node name="ServerMain" type="Node"] -script = ExtResource("1_server_main") -server_port = 34197 - -[node name="TestMap" type="Node" parent="."] -; Map is instanced on _ready() by server_main.gd when map_scene is provided. diff --git a/scenes/server/server_player.tscn b/scenes/server/server_player.tscn deleted file mode 100644 index e15c707..0000000 --- a/scenes/server/server_player.tscn +++ /dev/null @@ -1,29 +0,0 @@ -[gd_scene format=3 uid="uid://server_player"] - -; Headless dedicated server player scene. -; No camera, no tick interpolator — server only needs physics representation. - -[ext_resource type="Script" path="res://scripts/network/player.gd" id="1_player"] -[ext_resource type="Script" path="res://scripts/network/player_net_input.gd" id="2_player_net_input"] - -[sub_resource type="CapsuleShape3D" id="1"] -radius = 0.4 -height = 1.8 - -[sub_resource type="BoxMesh" id="2"] -size = Vector3(0.8, 0.8, 0.8) - -[node name="Player" type="CharacterBody3D"] -script = ExtResource("1_player") -movement_speed = 5.0 - -[node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.9, 0) -shape = SubResource("1") - -[node name="PlayerNetInput" type="Node" parent="."] -script = ExtResource("2_player_net_input") - -[node name="Mesh" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -mesh = SubResource("2") diff --git a/script_templates/VestMeasure/empty.gd b/script_templates/VestMeasure/empty.gd new file mode 100644 index 0000000..717d748 --- /dev/null +++ b/script_templates/VestMeasure/empty.gd @@ -0,0 +1,16 @@ +# meta-name: Empty measure +# meta-description: Custom measure with overrideable methods implemented +# meta-default: true + +extends _BASE_ +class_name _CLASS_ + +func get_measure_name() -> String: + return "custom" + +func get_value() -> Variant: + return 0.0 + +func ingest(value: Variant) -> void: + pass + diff --git a/script_templates/VestMeasure/empty.gd.uid b/script_templates/VestMeasure/empty.gd.uid new file mode 100644 index 0000000..57a6447 --- /dev/null +++ b/script_templates/VestMeasure/empty.gd.uid @@ -0,0 +1 @@ +uid://ds7w8jttfxdax diff --git a/script_templates/VestTest/define.gd b/script_templates/VestTest/define.gd new file mode 100644 index 0000000..ded52a9 --- /dev/null +++ b/script_templates/VestTest/define.gd @@ -0,0 +1,16 @@ +# meta-name: Test suite with define() +# meta-description: Test suite with a name set and test suite definition + +extends _BASE_ + +func get_suite_name() -> String: + return "_CLASS_" + +func suite(): + # Add your test cases here + test("some test", func(): + ok() + ) + test("another test", func(): + todo("Implement tests") + ) diff --git a/script_templates/VestTest/define.gd.uid b/script_templates/VestTest/define.gd.uid new file mode 100644 index 0000000..285b668 --- /dev/null +++ b/script_templates/VestTest/define.gd.uid @@ -0,0 +1 @@ +uid://chmtjaadukikh diff --git a/script_templates/VestTest/empty.gd b/script_templates/VestTest/empty.gd new file mode 100644 index 0000000..2d98b27 --- /dev/null +++ b/script_templates/VestTest/empty.gd @@ -0,0 +1,8 @@ +# meta-name: Empty test suite +# meta-description: Test suite with a name set and no test methods or definitions +# meta-default: true + +extends _BASE_ + +func get_suite_name() -> String: + return "_CLASS_" diff --git a/script_templates/VestTest/empty.gd.uid b/script_templates/VestTest/empty.gd.uid new file mode 100644 index 0000000..0d50a01 --- /dev/null +++ b/script_templates/VestTest/empty.gd.uid @@ -0,0 +1 @@ +uid://bsmiext4pyct diff --git a/script_templates/VestTest/test_methods.gd b/script_templates/VestTest/test_methods.gd new file mode 100644 index 0000000..7a4d78c --- /dev/null +++ b/script_templates/VestTest/test_methods.gd @@ -0,0 +1,14 @@ +# meta-name: Test suite with methods +# meta-description: Test suite with a name set and test methods + +extends _BASE_ + +func get_suite_name() -> String: + return "_CLASS_" + +# Add your test cases here +func test_case_a(): + ok() + +func test_case_b(): + todo("Implement tests") diff --git a/script_templates/VestTest/test_methods.gd.uid b/script_templates/VestTest/test_methods.gd.uid new file mode 100644 index 0000000..dbd4f10 --- /dev/null +++ b/script_templates/VestTest/test_methods.gd.uid @@ -0,0 +1 @@ +uid://bgjhtuoemc3xl diff --git a/scripts/characters/fps_camera.gd b/scripts/characters/fps_camera.gd deleted file mode 100644 index 6153f82..0000000 --- a/scripts/characters/fps_camera.gd +++ /dev/null @@ -1,220 +0,0 @@ -## FpsCamera — first-person camera view effects for tactical FPS. -## -## Manages view bobbing (head bob from movement), weapon sway, and FOV kick. -## The parent FPSCharacterController handles mouse look (yaw/pitch). -## -## Place as a Camera3D child of FPSCharacterController. -class_name FpsCamera -extends Camera3D - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Enable view bobbing (head bob when walking/running). -@export var view_bob_enabled: bool = true - -## How much the camera bobs horizontally (units). -@export_range(0.0, 0.5) var bob_amplitude_h: float = 0.04 - -## How much the camera bobs vertically. -@export_range(0.0, 0.5) var bob_amplitude_v: float = 0.04 - -## Frequency multiplier for bobbing (higher = faster). -@export_range(0.5, 5.0) var bob_frequency: float = 2.5 - -## Sprint bob multiplier (more aggressive). -@export_range(1.0, 3.0) var bob_sprint_mult: float = 1.6 - -## Crouch bob multiplier (less movement). -@export_range(0.1, 1.0) var bob_crouch_mult: float = 0.4 - -## FOV kick on sprint (tactical FOV increase). -@export_range(0.0, 10.0) var sprint_fov_kick: float = 3.0 - -## FOV kick when firing weapon. -@export_range(-5.0, 10.0) var shoot_fov_kick: float = 0.5 - -## How fast FOV recovers. -@export var fov_recovery_speed: float = 6.0 - -## Enable weapon sway (subtle rotation from movement). -@export var weapon_sway_enabled: bool = true - -## Maximum weapon sway rotation (degrees). -@export_range(0.0, 5.0) var sway_max_rotation: float = 1.5 - -## Sway responsiveness (higher = snappier). -@export_range(1.0, 20.0) var sway_response: float = 8.0 - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -## Reference to parent controller (duck-typed — uses has_method instead of class_name). -var _controller: Node = null - -## Bob time accumulator. -var _bob_time: float = 0.0 - -## Current bob offset. -var _bob_offset: Vector2 = Vector2.ZERO - -## Current weapon node (child named "Weapon" or first MeshInstance3D). -var _weapon: Node3D = null - -## Weapon rest position (local transform when no sway). -var _weapon_rest: Transform3D - -## FOV state. -var _base_fov: float = 75.0 -var _current_fov_offset: float = 0.0 - -## Sway state (used as both current value and interpolation target). -var _sway_current: Vector2 = Vector2.ZERO -var _sway_target: Vector2 = Vector2.ZERO - -## Base eye Y set by parent controller's crouch logic (for additive bob). -var _base_eye_y: float = 0.0 - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _controller = get_parent() - if _controller == null or not _controller.has_method(&"is_sprinting"): - push_warning("FpsCamera: Parent has no is_sprinting() — view features disabled.") - - _base_fov = fov - - # Find weapon node (for sway) - for child in get_children(): - if child is Node3D: - _weapon = child - _weapon_rest = child.transform - break - - -func _process(delta: float) -> void: - if _controller == null: - return - - # Capture the eye height set by parent controller's crouch logic - # before we apply view bob offsets (which must be additive). - _base_eye_y = position.y - - # FOV management - _update_fov(delta) - - # View bobbing - if view_bob_enabled: - _update_bob(delta) - - # Weapon sway - if weapon_sway_enabled and _weapon: - _update_sway(delta) - - -# --------------------------------------------------------------------------- -# FOV -# --------------------------------------------------------------------------- - -func _update_fov(delta: float) -> void: - var target_offset: float = 0.0 - - # Sprint FOV kick — sustained while sprinting (not just on transition) - if _controller.is_sprinting(): - target_offset = sprint_fov_kick - - # Shoot FOV kick is triggered externally via trigger_shoot_fov() - # and decays toward the sprint/walk target naturally via move_toward. - _current_fov_offset = move_toward(_current_fov_offset, target_offset, fov_recovery_speed * delta) - fov = _base_fov + _current_fov_offset - - -# --------------------------------------------------------------------------- -# View bobbing -# --------------------------------------------------------------------------- - -func _update_bob(delta: float) -> void: - var crouch_amount: float = _controller.get_crouch_amount() - var sprinting: bool = _controller.is_sprinting() - - # Calculate bob speed multiplier from controller state - var speed_mult: float = 1.0 - if sprinting: - speed_mult = bob_sprint_mult - elif crouch_amount > 0.0: - speed_mult = lerpf(1.0, bob_crouch_mult, crouch_amount) - - if speed_mult < 0.01: - # Stationary — reset to zero - _bob_offset = _bob_offset.move_toward(Vector2.ZERO, delta * 10.0) - else: - _bob_time += delta * bob_frequency * speed_mult - _bob_offset = Vector2( - sin(_bob_time * 2.0) * bob_amplitude_h * speed_mult, - sin(_bob_time) * bob_amplitude_v * speed_mult - ) - - # Apply bob to camera position (relative to parent's eye offset) - position.x = _bob_offset.x - # Bob is additive on Y so it does NOT overwrite the crouch eye height - # set by the parent FPSCharacterController._update_crouch(). - position.y = _base_eye_y + _bob_offset.y - - -# --------------------------------------------------------------------------- -# Weapon sway -# --------------------------------------------------------------------------- - -func _update_sway(delta: float) -> void: - # Sway follows mouse movement indirectly via controller yaw/pitch changes - # Use velocity for physics-based sway: recentre over time - var vel := _controller.velocity as Vector3 - var sway_h: float = clamp(vel.x * 0.003, -sway_max_rotation, sway_max_rotation) - var sway_v: float = clamp(vel.z * 0.003, -sway_max_rotation, sway_max_rotation) - # Add a tiny amount from pitch/yaw delta (not mouse, from movement direction change) - _sway_target = Vector2( - move_toward(_sway_target.x, sway_h, sway_response * delta), - move_toward(_sway_target.y, sway_v, sway_response * delta) - ) - - # Apply to weapon node as small rotation offsets - if _weapon: - var target := Transform3D( - Basis.from_euler(Vector3( - deg_to_rad(_sway_target.y), - deg_to_rad(_sway_target.x), - 0.0 - )), - _weapon_rest.origin - ) - _weapon.transform = _weapon.transform.interpolate_with(target, sway_response * delta * 0.5) - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Trigger a shoot FOV kick. Call from weapon script. -func trigger_shoot_fov() -> void: - _current_fov_offset += shoot_fov_kick - - -## Reset view to resting state (for respawn). -func reset_view() -> void: - _bob_time = 0.0 - _bob_offset = Vector2.ZERO - _current_fov_offset = 0.0 - _sway_current = Vector2.ZERO - _sway_target = Vector2.ZERO - fov = _base_fov - if _weapon: - _weapon.transform = _weapon_rest - - -## Get the current bob offset for external effects. -func get_bob_offset() -> Vector2: - return _bob_offset diff --git a/scripts/characters/fps_camera.gd.uid b/scripts/characters/fps_camera.gd.uid deleted file mode 100644 index 89b01e4..0000000 --- a/scripts/characters/fps_camera.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b6rixkmc2v0lt diff --git a/scripts/combat/damage_processor.gd b/scripts/combat/damage_processor.gd deleted file mode 100644 index e038ddf..0000000 --- a/scripts/combat/damage_processor.gd +++ /dev/null @@ -1,152 +0,0 @@ -## DamageProcessor — Apply hit results and track kills. -## -## Receives hit results from WeaponServer (via LagCompensation), applies -## damage to the target entity, and emits events for scoreboard/UI updates. -## -## Usage (add as child of GameServer or combat manager): -## -## var dp = DamageProcessor.new() -## add_child(dp) -## dp.register_player(entity_id, 100.0) -## dp.process_hit(victim_id, shooter_id, 30.0) -## -class_name DamageProcessor -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted when a player takes damage. -## victim_id: entity_id of the damaged player -## shooter_id: entity_id of the player who dealt the damage (-1 if world/fall) -## damage: raw damage amount before any modifiers -## killed: true if this damage reduced health to 0 -signal player_damaged(victim_id: int, shooter_id: int, damage: float, killed: bool) - -## Emitted when a player dies from damage. -## victim_id: entity_id of the killed player -## shooter_id: entity_id of the killer (-1 if world/fall) -signal player_killed(victim_id: int, shooter_id: int) - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -## Current health per entity_id. -var _health: Dictionary = {} # entity_id (int) → current_health (float) - -## Maximum health per entity_id (for respawn reset). -var _max_health: Dictionary = {} # entity_id (int) → max_health (float) - -## Kill count per shooter entity_id. -var _kills: Dictionary = {} # shooter_id (int) → kill_count (int) - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Register a player for damage tracking with the given maximum health. -func register_player(entity_id: int, max_health: float = 100.0) -> void: - _health[entity_id] = max_health - _max_health[entity_id] = max_health - # Preserve existing kill count if re-registering - -## Remove a player from damage tracking (on disconnect / respawn). -func unregister_player(entity_id: int) -> void: - _health.erase(entity_id) - _max_health.erase(entity_id) - _kills.erase(entity_id) - -## Reset a player's health to their maximum (on respawn). -## Does NOT reset kill count. -func reset_health(entity_id: int) -> void: - if _max_health.has(entity_id): - _health[entity_id] = _max_health[entity_id] - -## Process a hit result: apply damage, check for kill, emit signals. -## -## hit_result format (from WeaponServer.fire()): -## {hit: bool, position: Vector3, target_id: int, -## damage: float, weapon_id: String} -## -## shooter_id is the entity_id of the player who fired. -func process_hit(hit_result: Dictionary, shooter_id: int) -> void: - if not hit_result.get("hit", false): - return - - var victim_id: int = hit_result.get("target_id", -1) - var damage: float = hit_result.get("damage", 0.0) - - if victim_id < 0 or damage <= 0.0: - return - - # Apply damage - var current: float = _health.get(victim_id, 100.0) - current -= damage - var killed: bool = false - - if current <= 0.0: - current = 0.0 - killed = true - # Track kill for the shooter - if shooter_id >= 0: - _kills[shooter_id] = _kills.get(shooter_id, 0) + 1 - player_killed.emit(victim_id, shooter_id) - - _health[victim_id] = max(current, 0.0) - - # Emit damage event (always, even on kill) - player_damaged.emit(victim_id, shooter_id, damage, killed) - -## Convenience: process a hit result with distance-based damage falloff. -## hit_result must contain a "position" key. damage_falloff_start is the -## distance in Godot units beyond which damage begins to decrease. -## damage_falloff_min is the minimum damage multiplier (clamped 0.0–1.0). -func process_hit_with_falloff( - hit_result: Dictionary, - shooter_id: int, - origin: Vector3, - falloff_start: float = 100.0, - falloff_min: float = 0.5 -) -> void: - if not hit_result.get("hit", false): - return - - var damage: float = hit_result.get("damage", 0.0) - var hit_pos: Vector3 = hit_result.get("position", Vector3.ZERO) - var distance: float = origin.distance_to(hit_pos) - - if distance > falloff_start: - # Linear falloff from falloff_start to some max range (2x falloff_start) - var max_range: float = falloff_start * 2.0 - var t: float = clamp( - (distance - falloff_start) / (max_range - falloff_start), - 0.0, 1.0 - ) - var multiplier: float = 1.0 - (1.0 - falloff_min) * t - damage *= multiplier - - var modified_result: Dictionary = hit_result.duplicate() - modified_result["damage"] = damage - process_hit(modified_result, shooter_id) - -# --------------------------------------------------------------------------- -# Query -# --------------------------------------------------------------------------- - -## Get current health for an entity, or -1 if not registered. -func get_health(entity_id: int) -> float: - return _health.get(entity_id, -1.0) - -## Get kill count for a shooter entity_id. -func get_kills(player_id: int) -> int: - return _kills.get(player_id, 0) - -## Get all kills (shooter_id → kill_count). -func get_all_kills() -> Dictionary: - return _kills.duplicate() - -## Reset all state (for round restart). -func reset_all() -> void: - _health.clear() - _max_health.clear() - _kills.clear() diff --git a/scripts/combat/damage_processor.gd.uid b/scripts/combat/damage_processor.gd.uid deleted file mode 100644 index 4414ad6..0000000 --- a/scripts/combat/damage_processor.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ci55pc8ou2iuq diff --git a/scripts/combat/weapon_data.gd b/scripts/combat/weapon_data.gd deleted file mode 100644 index b93ce0a..0000000 --- a/scripts/combat/weapon_data.gd +++ /dev/null @@ -1,68 +0,0 @@ -## WeaponData — A resource defining a weapon's static properties. -## -## Used as the data contract between weapon_definitions.gd, weapon_server.gd, -## and weapon_manager.gd. Each weapon type is pre-configured and accessible -## via the class-level constants (RIFLE, PISTOL, SHOTGUN, SMG). -## -## Usage: -## var wd = preload("res://scripts/combat/weapon_data.gd") -## var data = wd.make("rifle", "Assault Rifle", 30.0, 10.0, 30, ...) - -extends Resource -class_name WeaponData - -# --------------------------------------------------------------------------- -# Properties -# --------------------------------------------------------------------------- - -## Unique identifier string (e.g., "rifle", "pistol"). -@export var weapon_id: String = "" -## Human-readable weapon name. -@export var display_name: String = "" -## Base damage per projectile/pellet. -@export var damage: float = 0.0 -## Rate of fire in rounds per second (Hz). -@export var fire_rate: float = 0.0 -## Magazine capacity (max ammo per reload). -@export var mag_size: int = 0 -## Reload duration in seconds. -@export var reload_time: float = 0.0 -## If true, hold to fire continuously. If false, single-shot per press. -@export var is_automatic: bool = false -## Base weapon spread in degrees (used for accuracy cone). -@export var spread_degrees: float = 0.0 -## Effective range in Godot units (metres conceptual). -@export var range: float = 0.0 -## Number of pellets/projectiles per shot (1 for most weapons, 8 for shotgun). -@export var pellets_per_shot: int = 1 - -# --------------------------------------------------------------------------- -# Factory -# --------------------------------------------------------------------------- - -## Construct a WeaponData instance from raw stat values. -## Avoids class_name references in return types for headless compatibility. -static func make( - _weapon_id: String, - _display_name: String, - _damage: float, - _fire_rate: float, - _mag_size: int, - _reload_time: float, - _is_automatic: bool, - _spread_degrees: float, - _range: float, - _pellets: int = 1 -): - var w = WeaponData.new() - w.weapon_id = _weapon_id - w.display_name = _display_name - w.damage = _damage - w.fire_rate = _fire_rate - w.mag_size = _mag_size - w.reload_time = _reload_time - w.is_automatic = _is_automatic - w.spread_degrees = _spread_degrees - w.range = _range - w.pellets_per_shot = _pellets - return w diff --git a/scripts/combat/weapon_data.gd.uid b/scripts/combat/weapon_data.gd.uid deleted file mode 100644 index f6835f8..0000000 --- a/scripts/combat/weapon_data.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bn4sdresufqbo diff --git a/scripts/combat/weapon_definitions.gd b/scripts/combat/weapon_definitions.gd deleted file mode 100644 index 611b04c..0000000 --- a/scripts/combat/weapon_definitions.gd +++ /dev/null @@ -1,49 +0,0 @@ -## WeaponDefinitions — Central registry of all weapon definitions. -## -## Provides a WEAPONS dictionary keyed by weapon_id for runtime lookup, -## plus a convenience getter. The data itself lives in WeaponData constants, -## so this file serves as a single import point for the full arsenal. -## -## Usage (as autoload singleton or direct preload): -## var data = WeaponDefinitions.get_weapon("rifle") -## # or: -## var all = WeaponDefinitions.WEAPONS -## -extends RefCounted -class_name WeaponDefinitions - -# Preload WeaponData script directly (no class_name dependency — the server -# weapon_data.gd intentionally avoids class_name to avoid conflicts with -# client/weapons/data/weapon_data.gd which also registers WeaponData). -const _WD = preload("res://scripts/combat/weapon_data.gd") - -# --------------------------------------------------------------------------- -# Weapon Registry — lazily initialised to avoid const + .new() errors -# --------------------------------------------------------------------------- - -## Whether the WEAPONS dictionary has been populated. -static var _initialized: bool = false - -## All weapons indexed by weapon_id — the single source of truth for the -## game's starter arsenal. Populated on first access via _ensure_init(). -static var WEAPONS: Dictionary = {} - -static func _ensure_init() -> void: - if _initialized: - return - _initialized = true - WEAPONS = { - "rifle": _WD.make("rifle", "Assault Rifle", 30.0, 10.0, 30, 2.1, true, 0.5, 200.0, 1), - "pistol": _WD.make("pistol", "Pistol", 25.0, 4.0, 12, 1.5, false, 0.3, 80.0, 1), - "shotgun": _WD.make("shotgun","Shotgun", 8.0, 1.0, 8, 3.0, false, 3.0, 30.0, 8), - "smg": _WD.make("smg", "Submachine Gun", 18.0, 12.0, 25, 1.8, true, 1.5, 100.0, 1), - } - -# --------------------------------------------------------------------------- -# Lookup -# --------------------------------------------------------------------------- - -## Return the WeaponData for the given weapon_id, or null if unknown. -static func get_weapon(id: String): - _ensure_init() - return WEAPONS.get(id, null) diff --git a/scripts/combat/weapon_definitions.gd.uid b/scripts/combat/weapon_definitions.gd.uid deleted file mode 100644 index a55d924..0000000 --- a/scripts/combat/weapon_definitions.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dktmtadg8o0qa diff --git a/scripts/config/server_config.gd b/scripts/config/server_config.gd deleted file mode 100644 index 057f535..0000000 --- a/scripts/config/server_config.gd +++ /dev/null @@ -1,480 +0,0 @@ -## ServerConfig — CFG/JSON Dual-Format Config Manager -## -## Autoload singleton that loads, validates, and exposes server configuration. -## -## ## Architecture -## -## Load chain: -## 1. SERVER_CFG env var → absolute path to override .cfg -## 2. user://server_config.cfg (writable, operator-edited) -## 3. res://config/default_server_config.cfg (bundled, read-only) -## -## Exports: -## - Typed GDScript properties (this script) -## - JSON file written alongside the loaded .cfg for automation -## - ConfigChanged signal for hot-reload (future) -## -## ## Dual Format -## -## Humans edit `.cfg` (INI-style, Godot ConfigFile parser). -## Automation reads `.json` (written on every load/save). -## -## File: server_config.cfg ← human editor -## Mirror: server_config.json ← machine consumer (written atomically) -## -## ## Sections -## -## [server] — Network bind, port, name, password, tick_rate -## [game] — Round timers, gravity, friendly fire, respawn -## [movement] — Walk/sprint/crouch speeds, acceleration, friction -## [match] — Win limit, time limit, map rotation -## [rcon] — Remote console (future) -## [logging] — Log level and file path -## [teams] — Team count and size -## -## ## Extension Pattern -## -## ServerMain uses ServerConfig at startup. Each subsystem accesses -## the singleton directly — no pass-through boilerplate: -## -## ServerConfig.port # int -## ServerConfig.server_name # String -## ServerConfig.tick_rate # int -## ServerConfig.movement_walk_speed # float -## ServerConfig.map_list # Array[String] -## ServerConfig.to_json_string() # String -## -## ============================================================================= - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when the config is (re)loaded. Subsystems that cache config -## values should reconnect to this signal to pick up live changes. -signal config_loaded() - - -# --------------------------------------------------------------------------- -# Section: [server] -# --------------------------------------------------------------------------- - -var server_name: String = "Tactical Shooter Server" -var description: String = "" -var bind_ip: String = "0.0.0.0" -var port: int = 34197 -var max_players: int = 16 -var password: String = "" -var tick_rate: int = 128 - - -# --------------------------------------------------------------------------- -# Section: [game] -# --------------------------------------------------------------------------- - -var round_time_seconds: int = 600 -var warmup_time_seconds: int = 60 -var friendly_fire: bool = false -var ff_damage_multiplier: float = 0.5 -var gravity: float = -24.0 -var respawn_time_seconds: float = 5.0 -var spectate_enabled: bool = true - - -# --------------------------------------------------------------------------- -# Section: [movement] -# --------------------------------------------------------------------------- - -var movement_walk_speed: float = 5.0 -var movement_sprint_speed: float = 7.0 -var movement_crouch_speed: float = 2.0 -var movement_jump_velocity: float = 6.0 -var movement_acceleration: float = 20.0 -var movement_air_acceleration: float = 4.0 -var movement_friction: float = 8.0 - - -# --------------------------------------------------------------------------- -# Section: [match] -# --------------------------------------------------------------------------- - -var win_limit: int = 3 -var time_limit_seconds: int = 0 -var map_rotation_mode: String = "sequence" # "sequence" | "vote" | "random" -var maps: String = "test_range" # comma-separated - -## Parsed map list (populated after load). -var map_list: Array[String] = [] - - -# --------------------------------------------------------------------------- -# Section: [rcon] -# --------------------------------------------------------------------------- - -var rcon_enabled: bool = false -var rcon_password: String = "" -var rcon_port: int = 34198 - - -# --------------------------------------------------------------------------- -# Section: [logging] -# --------------------------------------------------------------------------- - -var log_level: String = "info" -var log_file: String = "" - - -# --------------------------------------------------------------------------- -# Section: [teams] -# --------------------------------------------------------------------------- - -var team_count: int = 2 -var players_per_team: int = 8 - - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Absolute path to the loaded .cfg file (user override or bundled default). -var config_path: String = "" : get = get_config_path -## Absolute path to the mirrored .json file. -var json_path: String = "" : get = get_json_path - -var _loaded: bool = false -var _config_path_resolved: String = "" -var _json_path_resolved: String = "" - - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _load_config() - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Reload the config from disk. Emits config_loaded on success. -func reload() -> bool: - return _load_config() - - -## Return the entire config as a formatted JSON string. -func to_json_string() -> String: - var data := _build_json_dict() - return JSON.stringify(data, "\t", false) - - -## Return the entire config as a Godot Dictionary (same shape as JSON). -func to_dict() -> Dictionary: - return _build_json_dict() - - -## Return the movement config as a Dictionary (for SimulationServer.set_movement_config()). -func make_movement_dict() -> Dictionary: - return { - walk_speed = movement_walk_speed, - sprint_speed = movement_sprint_speed, - crouch_speed = movement_crouch_speed, - acceleration = movement_acceleration, - air_acceleration = movement_air_acceleration, - friction = movement_friction, - jump_velocity = movement_jump_velocity, - gravity = gravity, - } - - -## Write the current config state to the JSON mirror file. -## Does NOT touch the .cfg (only humans edit the .cfg). -func save_json() -> Error: - if _json_path_resolved.is_empty(): - return ERR_FILE_BAD_PATH - - var f := FileAccess.open(_json_path_resolved, FileAccess.WRITE) - if f == null: - push_error("[ServerConfig] Failed to write JSON mirror: %s" % _json_path_resolved) - return FileAccess.get_open_error() - - f.store_string(to_json_string()) - f.close() - return OK - - -## Write the current config state to the .cfg file (serialises all sections). -## Returns OK on success, ERR_* on failure. -func save_cfg() -> Error: - var cfg := ConfigFile.new() - _populate_cfg(cfg) - - var path := _config_path_resolved if not _config_path_resolved.is_empty() else "user://server_config.cfg" - var err := cfg.save(path) - if err != OK: - push_error("[ServerConfig] Failed to save config: %s" % error_string(err)) - return err - - # Re-init from file to ensure in-memory state matches - _load_from_path(cfg, _config_path_resolved) - return OK - - -# --------------------------------------------------------------------------- -# Internal: Loading -# --------------------------------------------------------------------------- - -func _load_config() -> bool: - # Determine config source path - var cfg_path := _resolve_source_path() - if cfg_path.is_empty(): - push_error("[ServerConfig] No config file could be resolved.") - return false - - var cfg := ConfigFile.new() - var err := cfg.load(cfg_path) - if err != OK: - push_error("[ServerConfig] Failed to load config: %s (error %d)" % [cfg_path, err]) - return false - - _load_from_path(cfg, cfg_path) - - # Write JSON mirror - save_json() - - _loaded = true - config_loaded.emit() - print("[ServerConfig] Loaded config: %s (%d keys)" % [cfg_path, cfg.get_sections().size() * 8]) - return true - - -## Path resolution order: -## 1. SERVER_CFG env var (absolute path) -## 2. user://server_config.cfg (writable operator override) -## 3. res://config/default_server_config.cfg (bundled default) -func _resolve_source_path() -> String: - # Env var override - if OS.has_environment("SERVER_CFG"): - var env_path := OS.get_environment("SERVER_CFG") - if FileAccess.file_exists(env_path): - _config_path_resolved = env_path - _json_path_resolved = env_path.get_basename() + ".json" - return env_path - else: - push_warning("[ServerConfig] SERVER_CFG path does not exist: %s — falling back" % env_path) - - # User override - var user_path := ProjectSettings.globalize_path("user://server_config.cfg") - if FileAccess.file_exists(user_path): - _config_path_resolved = user_path - _json_path_resolved = user_path.get_basename() + ".json" - return user_path - - # Bundled default — convert to absolute path for JSON mirror - var res_path := ProjectSettings.globalize_path("res://config/default_server_config.cfg") - _config_path_resolved = res_path - _json_path_resolved = res_path.get_basename() + ".json" - - # First run: copy bundled default to user:// so operators can edit it - var user_dir := ProjectSettings.globalize_path("user://") - var copy_path := user_dir.path_join("server_config.cfg") - if not FileAccess.file_exists(copy_path): - var src := FileAccess.open(res_path, FileAccess.READ) - if src: - var dst := FileAccess.open(copy_path, FileAccess.WRITE) - if dst: - dst.store_string(src.get_as_text()) - dst.close() - print("[ServerConfig] First run — copied default config to: %s" % copy_path) - _config_path_resolved = copy_path - _json_path_resolved = copy_path.get_basename() + ".json" - return copy_path - src.close() - - return res_path - - -func _load_from_path(cfg: ConfigFile, path: String) -> void: - _config_path_resolved = path - _json_path_resolved = path.get_basename() + ".json" - - # [server] - server_name = cfg.get_value("server", "server_name", server_name) - description = cfg.get_value("server", "description", description) - bind_ip = cfg.get_value("server", "bind_ip", bind_ip) - port = cfg.get_value("server", "port", port) - max_players = cfg.get_value("server", "max_players", max_players) - password = cfg.get_value("server", "password", password) - tick_rate = cfg.get_value("server", "tick_rate", tick_rate) - - # [game] - round_time_seconds = cfg.get_value("game", "round_time_seconds", round_time_seconds) - warmup_time_seconds = cfg.get_value("game", "warmup_time_seconds", warmup_time_seconds) - friendly_fire = cfg.get_value("game", "friendly_fire", friendly_fire) - ff_damage_multiplier = cfg.get_value("game", "ff_damage_multiplier", ff_damage_multiplier) - gravity = cfg.get_value("game", "gravity", gravity) - respawn_time_seconds = cfg.get_value("game", "respawn_time_seconds", respawn_time_seconds) - spectate_enabled = cfg.get_value("game", "spectate_enabled", spectate_enabled) - - # [movement] - movement_walk_speed = cfg.get_value("movement", "walk_speed", movement_walk_speed) - movement_sprint_speed = cfg.get_value("movement", "sprint_speed", movement_sprint_speed) - movement_crouch_speed = cfg.get_value("movement", "crouch_speed", movement_crouch_speed) - movement_jump_velocity = cfg.get_value("movement", "jump_velocity", movement_jump_velocity) - movement_acceleration = cfg.get_value("movement", "acceleration", movement_acceleration) - movement_air_acceleration = cfg.get_value("movement", "air_acceleration", movement_air_acceleration) - movement_friction = cfg.get_value("movement", "friction", movement_friction) - - # [match] - win_limit = cfg.get_value("match", "win_limit", win_limit) - time_limit_seconds = cfg.get_value("match", "time_limit_seconds", time_limit_seconds) - map_rotation_mode = cfg.get_value("match", "map_rotation_mode", map_rotation_mode) - maps = cfg.get_value("match", "maps", maps) - - # Parse map list - map_list.clear() - var raw := maps.strip_edges() - if not raw.is_empty(): - for m in raw.split(","): - var trimmed := m.strip_edges() - if not trimmed.is_empty(): - map_list.append(trimmed) - - # [rcon] - rcon_enabled = cfg.get_value("rcon", "enabled", rcon_enabled) - rcon_password = cfg.get_value("rcon", "password", rcon_password) - rcon_port = cfg.get_value("rcon", "port", rcon_port) - - # [logging] - log_level = cfg.get_value("logging", "log_level", log_level) - log_file = cfg.get_value("logging", "log_file", log_file) - - # [teams] - team_count = cfg.get_value("teams", "team_count", team_count) - players_per_team = cfg.get_value("teams", "players_per_team", players_per_team) - - # Validation - port = clampi(port, 1024, 65535) - max_players = clampi(max_players, 1, 64) - tick_rate = clampi(tick_rate, 30, 1000) - team_count = clampi(team_count, 1, 8) - players_per_team = clampi(players_per_team, 1, 32) - - -# --------------------------------------------------------------------------- -# Internal: Serialization -# --------------------------------------------------------------------------- - -func _build_json_dict() -> Dictionary: - return { - "server": { - "server_name": server_name, - "description": description, - "bind_ip": bind_ip, - "port": port, - "max_players": max_players, - "password": "", # intentionally omitted from JSON mirror - "tick_rate": tick_rate, - }, - "game": { - "round_time_seconds": round_time_seconds, - "warmup_time_seconds": warmup_time_seconds, - "friendly_fire": friendly_fire, - "ff_damage_multiplier": ff_damage_multiplier, - "gravity": gravity, - "respawn_time_seconds": respawn_time_seconds, - "spectate_enabled": spectate_enabled, - }, - "movement": { - "walk_speed": movement_walk_speed, - "sprint_speed": movement_sprint_speed, - "crouch_speed": movement_crouch_speed, - "jump_velocity": movement_jump_velocity, - "acceleration": movement_acceleration, - "air_acceleration": movement_air_acceleration, - "friction": movement_friction, - }, - "match": { - "win_limit": win_limit, - "time_limit_seconds": time_limit_seconds, - "map_rotation_mode": map_rotation_mode, - "maps": maps, - }, - "rcon": { - "enabled": rcon_enabled, - "password": "", # intentionally omitted from JSON mirror - "port": rcon_port, - }, - "logging": { - "log_level": log_level, - "log_file": log_file, - }, - "teams": { - "team_count": team_count, - "players_per_team": players_per_team, - }, - } - - -## Populate a ConfigFile object from the current property values. -## Used by save_cfg() to serialise all sections back to disk. -func _populate_cfg(cfg: ConfigFile) -> void: - # [server] - cfg.set_value("server", "server_name", server_name) - cfg.set_value("server", "description", description) - cfg.set_value("server", "bind_ip", bind_ip) - cfg.set_value("server", "port", port) - cfg.set_value("server", "max_players", max_players) - cfg.set_value("server", "password", password) - cfg.set_value("server", "tick_rate", tick_rate) - - # [game] - cfg.set_value("game", "round_time_seconds", round_time_seconds) - cfg.set_value("game", "warmup_time_seconds", warmup_time_seconds) - cfg.set_value("game", "friendly_fire", friendly_fire) - cfg.set_value("game", "ff_damage_multiplier", ff_damage_multiplier) - cfg.set_value("game", "gravity", gravity) - cfg.set_value("game", "respawn_time_seconds", respawn_time_seconds) - cfg.set_value("game", "spectate_enabled", spectate_enabled) - - # [movement] - cfg.set_value("movement", "walk_speed", movement_walk_speed) - cfg.set_value("movement", "sprint_speed", movement_sprint_speed) - cfg.set_value("movement", "crouch_speed", movement_crouch_speed) - cfg.set_value("movement", "jump_velocity", movement_jump_velocity) - cfg.set_value("movement", "acceleration", movement_acceleration) - cfg.set_value("movement", "air_acceleration", movement_air_acceleration) - cfg.set_value("movement", "friction", movement_friction) - - # [match] - cfg.set_value("match", "win_limit", win_limit) - cfg.set_value("match", "time_limit_seconds", time_limit_seconds) - cfg.set_value("match", "map_rotation_mode", map_rotation_mode) - cfg.set_value("match", "maps", maps) - - # [rcon] - cfg.set_value("rcon", "enabled", rcon_enabled) - cfg.set_value("rcon", "password", rcon_password) - cfg.set_value("rcon", "port", rcon_port) - - # [logging] - cfg.set_value("logging", "log_level", log_level) - cfg.set_value("logging", "log_file", log_file) - - # [teams] - cfg.set_value("teams", "team_count", team_count) - cfg.set_value("teams", "players_per_team", players_per_team) - - -# --------------------------------------------------------------------------- -# Getters -# --------------------------------------------------------------------------- - -func get_config_path() -> String: - return _config_path_resolved - -func get_json_path() -> String: - return _json_path_resolved diff --git a/scripts/config/server_config.gd.uid b/scripts/config/server_config.gd.uid deleted file mode 100644 index 2446596..0000000 --- a/scripts/config/server_config.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bn01mhwtitvyf diff --git a/scripts/entry.gd b/scripts/entry.gd deleted file mode 100644 index 9084e50..0000000 --- a/scripts/entry.gd +++ /dev/null @@ -1,28 +0,0 @@ -## Entry — Smart entry point. -## Loads the server scene if running headless (dedicated server), -## or the client scene if running with a display (Windows client). -extends Node - -@export var server_host: String = "68.202.6.107" -@export var server_port: int = 34197 - -func _ready() -> void: - var is_headless := DisplayServer.get_name() == "headless" - - if is_headless: - # Dedicated server mode - var server_tscn = load("res://scenes/server/server_main.tscn") - if server_tscn == null: - push_error("[Entry] Failed to load server scene") - return - add_child(server_tscn.instantiate()) - print("[Entry] Starting in SERVER mode (headless)") - else: - # Client mode (Windows, etc.) - var client_tscn = load("res://scenes/client/client_main.tscn") - if client_tscn == null: - push_error("[Entry] Failed to load client scene") - return - var client = client_tscn.instantiate() - add_child(client) - print("[Entry] Starting in CLIENT mode (display available)") diff --git a/scripts/entry.gd.uid b/scripts/entry.gd.uid deleted file mode 100644 index a03c5bb..0000000 --- a/scripts/entry.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://21c1sct06141 diff --git a/scripts/map_packaging/README.md b/scripts/map_packaging/README.md deleted file mode 100644 index 52b5a0d..0000000 --- a/scripts/map_packaging/README.md +++ /dev/null @@ -1,363 +0,0 @@ -# Map PCK Packaging Pipeline - -## Overview - -The PCK packaging pipeline converts map scenes (`.tscn`) into standalone -resource packs (`.pck`) that can be downloaded and loaded at runtime. -This is Godot's built-in DLC/addon pattern — no engine modifications -required. - -``` - Map Creator Registry Server Game Client - ────────────────── ────────────────── ────────────────── - │ │ │ - ├── Build map in template project │ │ - ├── Run pack_map.gd ──────────────►│ (upload .pck) │ - │ │ │ - │ ├── GET /maps ───────────────►│ - │ │◄── [map list JSON] ────────┤ - │ │ ├── Check user://maps/ - │ │ │ - │ │◄── GET /maps/.pck ───┤ (if not cached) - │ ├── .pck file ───────────────►│ - │ │ ├── Save to user://maps/ - │ │ ├── load_resource_pack() - │ │ ├── Load res://maps/.tscn - │ │ │ -``` - -## Components - -| File | Role | -|------|------| -| `pack_map.gd` | Godot editor tool — packages a `.tscn` → `.pck` | -| `map_downloader.gd` | Godot autoload — client-side download + cache + load | -| `map_registry_server.py` | Python HTTP server — serves `.pck` files + metadata | -| `config-ext-map-registry.cfg` | Server config extension for registry integration | -| `README.md` | This file | - ---- - -## 1. Packaging Maps (`pack_map.gd`) - -### Prerequisites -- Godot 4.2+ -- The map scene and all its dependencies must be local (`res://` paths) - -### In the Editor - -1. Open the map template project (`client/map_template/`) -2. Build your map in `scenes/maps/` (e.g., `scenes/maps/my_map.tscn`) -3. Open the map scene in the editor -4. Run **Project > Tools > Pack Current Map** - -Output goes to `user://packed_maps/my_map.pck`. - -### Headless / CLI - -```bash -godot --headless --script scripts/map_packaging/pack_map.gd \ - --map=res://scenes/maps/my_map.tscn -``` - -### Output - -- `user://packed_maps/.pck` — the resource pack -- `user://packed_maps/.json` — metadata sidecar - -### What's in the .pck? - -The pack contains only the map scene and its direct resource dependencies -(meshes, textures, materials). No game logic, no scripts, no config files. -This keeps packs small and safe — a map can't inject code. - ---- - -## 2. Map Registry Server (`map_registry_server.py`) - -A lightweight Python HTTP server that serves `.pck` files and map metadata. - -### Quick Start - -```bash -# Install — no dependencies, pure stdlib -python3 scripts/map_packaging/map_registry_server.py - -# With custom port and maps directory -python3 scripts/map_packaging/map_registry_server.py \ - --port 8090 \ - --maps-dir /data/maps - -# Via environment variables -export MAP_REGISTRY_PORT=8080 -export MAP_REGISTRY_MAPS=/data/maps -python3 scripts/map_packaging/map_registry_server.py -``` - -### API Endpoints - -| Endpoint | Method | Description | -|----------|--------|-------------| -| `/maps` | GET | JSON list of all available maps with metadata | -| `/maps/.pck` | GET | Download a map pack (binary) | -| `/maps/.json` | GET | Metadata for a single map | -| `/` | GET | Server info and endpoint documentation | - -### Deployment - -#### Systemd Service - -```ini -[Unit] -Description=Tactical Shooter Map Registry -After=network.target - -[Service] -Type=simple -User=tactical-shooter -WorkingDirectory=/opt/tactical-shooter -ExecStart=/usr/bin/python3 /opt/tactical-shooter/scripts/map_packaging/map_registry_server.py \ - --port 8090 \ - --maps-dir /var/lib/tactical-shooter/maps -Restart=always -RestartSec=5 - -[Install] -WantedBy=multi-user.target -``` - -#### NPMplus Reverse Proxy - -```nginx -# NPMplus custom location for map registry -location /maps/ { - proxy_pass http://127.0.0.1:8090; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_buffering off; -} -``` - ---- - -## 3. Client Map Downloader (`map_downloader.gd`) - -### Installation - -Add `map_downloader.gd` as an autoload singleton in `project.godot`: - -```ini -[autoload] -MapDownloader="*res://scripts/map_packaging/map_downloader.gd" -``` - -### Usage - -```gdscript -# Set the registry URL (default: http://127.0.0.1:8090) -MapDownloader.registry_url = "http://maps.example.com:8090" - -# Fetch the map list from the registry (auto-downloads missing maps) -MapDownloader.fetch_map_list() - -# Or download specific maps -MapDownloader.download_map("de_dust2") -MapDownloader.download_maps(["de_dust2", "de_inferno"]) - -# Check cache -if MapDownloader.is_map_cached("de_dust2"): - print("Map is ready") - MapDownloader.load_map("de_dust2") - # Now res://maps/de_dust2.tscn is available - -# Get cached maps -var cached = MapDownloader.get_cached_maps() - -# Remove a map -MapDownloader.remove_map("de_dust2") - -# Clear all caches -MapDownloader.clear_cache() -``` - -### Signals - -```gdscript -# Progress during download -MapDownloader.map_download_progress.connect( - func(map_name, received, total): - var pct = float(received) / total * 100 - print("%s: %.1f%%" % [map_name, pct]) -) - -# Download completed -MapDownloader.map_download_complete.connect( - func(map_name, success): - if success: - print("%s ready to play!" % map_name) -) - -# Map loaded into resource system -MapDownloader.map_loaded.connect( - func(map_name): - print("%s is now available at res://maps/%s.tscn" % [map_name, map_name]) -) -``` - -### Environment Overrides - -| Variable | Description | -|----------|-------------| -| `MAP_REGISTRY_URL` | Override the registry server URL | - ---- - -## 4. Integration with Server Main - -To wire map downloads into the existing server flow (`server_main.gd`): - -```gdscript -# In server_main.gd or a dedicated map manager: - -func _on_server_started() -> void: - # Start map registry if configured - if ServerConfig.has_property("map_registry_enabled") and ServerConfig.map_registry_enabled: - var registry_url: String = ServerConfig.get("map_registry_url", "") - if not registry_url.is_empty(): - MapDownloader.registry_url = registry_url - - # Fetch map list — MapDownloader auto-downloads missing maps - MapDownloader.fetch_map_list() - -func _on_map_needed(map_name: String) -> void: - if not MapDownloader.is_map_cached(map_name): - # Wait for download - var waiter := func(name, success): - if success: - _start_map(name) - MapDownloader.map_download_complete.connect(waiter.bind(map_name), CONNECT_ONE_SHOT) - MapDownloader.download_map(map_name) - else: - _start_map(map_name) - -func _start_map(map_name: String) -> void: - if MapDownloader.load_map(map_name): - # Now load the scene - var map_scene: PackedScene = load("res://scenes/maps/%s.tscn" % map_name) - var instance := map_scene.instantiate() - add_child(instance) -``` - -### Server Config Extension - -Add this section to your `server_config.cfg` to enable map registry: - -```ini -[map_registry] -; Enable automatic map download on server start -enabled=false -; URL of the map registry server -url="http://127.0.0.1:8090" -; Auto-download all maps from the registry, not just advertised ones -auto_download_all=false -``` - ---- - -## 5. Cache and Storage - -### Client Cache - -- Location: `user://maps/` -- Files: `.pck` + `manifest.json` -- Manifest is validated on startup — stale entries (missing .pck files) are pruned -- The cache is persistent across restarts - -### Cache Size Management - -Maps can be large (10–100 MB depending on texture resolution). -Consider: - -```gdscript -# Check cache size -var total_size := 0 -for name in MapDownloader.get_cached_maps(): - var info = MapDownloader.get_cached_map_info(name) - total_size += info.get("size", 0) -print("Cache size: %.1f MB" % (total_size / 1048576.0)) - -# Remove least-recently-downloaded maps if over budget -const MAX_CACHE_MB := 500 -if total_size > MAX_CACHE_MB * 1048576: - var cached = MapDownloader.get_cached_maps() - for name in cached: - MapDownloader.remove_map(name) - break # remove one at a time -``` - ---- - -## 6. Security Considerations - -- **.pck files cannot execute scripts** that weren't already in the game binary. - Resource packs only add data (scenes, textures, meshes). Game logic lives - in the binary and cannot be injected via a .pck. - -- **Checksum verification**: The server provides SHA-256 checksums. The - client can verify integrity before loading: - -```gdscript -func verify_map(map_name: String) -> bool: - var pck_path = "user://maps/%s.pck" % map_name - var global_path = ProjectSettings.globalize_path(pck_path) - var f = FileAccess.open(global_path, FileAccess.READ) - if not f: - return false - - var ctx = HashingContext.new() - ctx.start(HashingContext.HASH_SHA256) - while f.get_position() < f.get_length(): - ctx.update(f.get_buffer(65536)) - var checksum = ctx.finish().hex_encode() - f.close() - - # Compare with server checksum - var meta = MapDownloader.get_cached_map_info(map_name) - var expected = meta.get("checksum_sha256", "") - return expected.is_empty() or checksum == expected -``` - -- **HTTPS**: Deploy the registry server behind an NPMplus/nginx proxy with - SSL termination. The client supports HTTPS natively via HTTPRequest. - ---- - -## 7. Workflow Summary - -### For Map Creators - -``` -1. Open map_template/ in Godot 4 -2. Build map using CSG prefabs (scenes/maps/.tscn) -3. Run: godot --headless --script scripts/map_packaging/pack_map.gd --map=res://scenes/maps/.tscn -4. Upload output/user://packed_maps/.pck to registry server's maps directory -``` - -### For Server Operators - -``` -1. Deploy map_registry_server.py on your backend (or alongside the game server) -2. Copy .pck files into the maps directory -3. SIGHUP the server to rescan (or it auto-scans every 5 seconds) -4. Configure [map_registry] in server_config.cfg -5. Game clients auto-download on connect -``` - -### For Developers - -``` -1. Add MapDownloader as project autoload -2. On server start, call MapDownloader.fetch_map_list() -3. Before loading a map scene, call MapDownloader.load_map() if it's a community map -4. Handle download signals for progress UI -``` diff --git a/scripts/map_packaging/map_downloader.gd b/scripts/map_packaging/map_downloader.gd deleted file mode 100644 index 0f0f46a..0000000 --- a/scripts/map_packaging/map_downloader.gd +++ /dev/null @@ -1,399 +0,0 @@ -## MapDownloader — Client-side map download and cache management -## -## Autoload singleton that downloads .pck map packs from the master server -## registry and loads them into the running game via ProjectSettings.load_resource_pack(). -## -## ## Architecture -## -## MapRegistry Server (Python) MapDownloader (Godot) -## ┌──────────────────────┐ ┌──────────────────┐ -## │ GET /maps │ ◄── list ──│ get_map_list() │ -## │ GET /maps/:name.pck │ ◄── dl ──│ download_map() │ -## │ GET /maps/:name.json│ ◄── meta ─│ get_map_info() │ -## └──────────────────────┘ │ │ -## │ Cache: │ -## Disk cache │ user://maps/ │ -## user://maps/.pck ─────│ .pck files │ -## user://maps/manifest.json │ manifest.json │ -## └──────────────────┘ -## -## ## Map Lifecycle -## -## 1. Server sends map list (e.g. ["de_dust2", "de_inferno"]) -## 2. MapDownloader checks local cache via manifest.json -## 3. Missing maps are downloaded from the registry server -## 4. Downloaded .pck is loaded via load_resource_pack() -## 5. Map scene becomes available at res://maps/.tscn -## -## ## Configuration -## -## Set the registry URL before first use: -## MapDownloader.registry_url = "https://maps.example.com" -## # or via env: MAP_REGISTRY_URL -## -## ## Signals -## -## map_download_progress(map_name, bytes_received, bytes_total) -## map_download_complete(map_name, success) -## map_loaded(map_name) - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted during download for progress bar updates. -signal map_download_progress(map_name: String, bytes_received: int, bytes_total: int) - -## Emitted when a map download finishes. success=true means the .pck is on disk. -signal map_download_complete(map_name: String, success: bool) - -## Emitted after a .pck is loaded into the resource system. -signal map_loaded(map_name: String) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -const MAP_CACHE_DIR: String = "user://maps/" -const MANIFEST_FILE: String = "user://maps/manifest.json" -const DEFAULT_REGISTRY_URL: String = "http://127.0.0.1:8090" - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -## URL of the map registry server (without trailing slash). -## Can be overridden at runtime. -var registry_url: String = DEFAULT_REGISTRY_URL - -## Timeout for HTTP requests in seconds. -var http_timeout: float = 30.0 - -## Max concurrent downloads. -var max_concurrent: int = 2 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var _http: HTTPRequest = null -var _active_downloads: Dictionary = {} # map_name → Dictionary (progress tracking) -var _download_queue: Array[Dictionary] = [] -var _manifest: Dictionary = {} # {map_name: {version, size, downloaded_at}} -var _loaded_pcks: Array[String] = [] # tracks which .pcks are already loaded - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Create cache directory - DirAccess.make_dir_recursive_absolute(ProjectSettings.globalize_path(MAP_CACHE_DIR)) - - # Load local manifest - _load_manifest() - - # Override registry URL from environment - if OS.has_environment("MAP_REGISTRY_URL"): - registry_url = OS.get_environment("MAP_REGISTRY_URL") - - print("[MapDownloader] Registry URL: %s" % registry_url) - print("[MapDownloader] Cache dir: %s" % MAP_CACHE_DIR) - print("[MapDownloader] Cached maps: %d" % _manifest.size()) - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Fetch the list of available maps from the registry server. -## Returns a signal-based result via map_download_progress / etc. -## Call this first to discover what maps exist. -func fetch_map_list() -> void: - var url: String = "%s/maps" % [registry_url] - _http_get(url, _on_map_list_received) - - -## Check if a map is in the local cache. -func is_map_cached(map_name: String) -> bool: - if not _manifest.has(map_name): - return false - - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - return FileAccess.file_exists(global_path) - - -## Download a single map .pck from the registry server. -## The map is saved to user://maps/.pck and loaded automatically. -func download_map(map_name: String) -> void: - # Skip if already cached - if is_map_cached(map_name): - print("[MapDownloader] %s already cached — loading" % map_name) - _load_map_pck(map_name) - return - - # Check if already downloading - if map_name in _active_downloads: - print("[MapDownloader] %s is already downloading" % map_name) - return - - # Queue or start download - var entry := { - map_name = map_name, - url = "%s/maps/%s.pck" % [registry_url, map_name], - } - if _active_downloads.size() < max_concurrent: - _start_download(entry) - else: - _download_queue.append(entry) - print("[MapDownloader] %s queued (%d waiting)" % [map_name, _download_queue.size()]) - - -## Download multiple maps. Pass an array of map names. -func download_maps(map_names: Array[String]) -> void: - for name in map_names: - download_map(name) - - -## Load a cached .pck into the resource system. -## Returns true if the pack was loaded successfully. -func load_map(map_name: String) -> bool: - return _load_map_pck(map_name) - - -## Remove a cached map from disk and manifest. -func remove_map(map_name: String) -> void: - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - if FileAccess.file_exists(global_path): - DirAccess.remove_absolute(global_path) - _manifest.erase(map_name) - _save_manifest() - _loaded_pcks.erase(map_name) - print("[MapDownloader] Removed cached map: %s" % map_name) - - -## Get list of locally cached map names. -func get_cached_maps() -> Array[String]: - return _manifest.keys() - - -## Get info about a cached map from the manifest. -func get_cached_map_info(map_name: String) -> Dictionary: - return _manifest.get(map_name, {}) - - -## Clear all cached maps. -func clear_cache() -> void: - for name in _manifest.keys(): - remove_map(name) - print("[MapDownloader] Cache cleared") - - -# --------------------------------------------------------------------------- -# Internal: HTTP helpers -# --------------------------------------------------------------------------- - -func _http_get(url: String, callback: Callable) -> void: - var http := HTTPRequest.new() - add_child(http) - http.connect("request_completed", callback) - http.timeout = http_timeout - http.request(url) - - -func _http_download(url: String, save_path: String, callback: Callable) -> void: - var http := HTTPRequest.new() - add_child(http) - http.connect("request_completed", callback) - http.download_file = save_path - http.timeout = http_timeout - - # Connect download progress - if http.has_signal("download_progress"): - # Godot 4's HTTPRequest has request_completed but not always download_progress - # We track via the file size after completion - pass - - http.request(url) - - -# --------------------------------------------------------------------------- -# Internal: Download handling -# --------------------------------------------------------------------------- - -func _start_download(entry: Dictionary) -> void: - var map_name: String = entry.map_name - var url: String = entry.url - var save_path: String = ProjectSettings.globalize_path("%s%s.pck" % [MAP_CACHE_DIR, map_name]) - - _active_downloads[map_name] = entry - print("[MapDownloader] Downloading: %s → %s" % [url, save_path]) - - _http_download(url, save_path, _on_map_downloaded.bind(map_name)) - - -func _process_download_queue() -> void: - if _download_queue.is_empty(): - return - var next: Dictionary = _download_queue.pop_front() - _start_download(next) - - -# --------------------------------------------------------------------------- -# Internal: Callbacks -# --------------------------------------------------------------------------- - -func _on_map_list_received(result: int, response_code: int, headers: PackedStringArray, body: PackedByteArray) -> void: - if response_code != 200: - push_error("[MapDownloader] Failed to fetch map list: HTTP %d" % response_code) - return - - var json := JSON.new() - var parse_err: Error = json.parse(body.get_string_from_utf8()) - if parse_err != OK: - push_error("[MapDownloader] Failed to parse map list JSON: %s" % error_string(parse_err)) - return - - var data: Dictionary = json.data - var maps: Array = data.get("maps", data.get("available", [])) - if maps.is_empty(): - print("[MapDownloader] No maps available on registry") - return - - print("[MapDownloader] Registry offers %d maps: %s" % [maps.size(), maps]) - - # Auto-download any maps we don't have cached - var to_download: Array[String] = [] - for m in maps: - var name: String = str(m) if typeof(m) == TYPE_STRING else "" - if name.is_empty(): - # Support both string lists and object lists - if typeof(m) == TYPE_DICTIONARY: - name = m.get("name", "") - if not name.is_empty() and not is_map_cached(name): - to_download.append(name) - - if not to_download.is_empty(): - print("[MapDownloader] Downloading %d new maps: %s" % [to_download.size(), to_download]) - download_maps(to_download) - else: - print("[MapDownloader] All registry maps are already cached") - - -func _on_map_downloaded(result: int, response_code: int, headers: PackedStringArray, body: PackedByteArray, map_name: String) -> void: - _active_downloads.erase(map_name) - - if response_code != 200: - push_error("[MapDownloader] Download failed for %s: HTTP %d" % [map_name, response_code]) - map_download_complete.emit(map_name, false) - _process_download_queue() - return - - print("[MapDownloader] Downloaded %s successfully" % map_name) - map_download_complete.emit(map_name, true) - - # Update manifest - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - var file_size: int = 0 - if FileAccess.file_exists(global_path): - file_size = FileAccess.get_size(global_path) - - _manifest[map_name] = { - version = _manifest.get(map_name, {}).get("version", 1), - size = file_size, - downloaded_at = Time.get_datetime_string_from_system(), - } - _save_manifest() - - # Load the map into the resource system - _load_map_pck(map_name) - - _process_download_queue() - - -# --------------------------------------------------------------------------- -# Internal: PCK loading -# --------------------------------------------------------------------------- - -## Load a .pck into Godot's resource system. -## After this call, res://maps/.tscn becomes available. -func _load_map_pck(map_name: String) -> bool: - # Skip if already loaded - if map_name in _loaded_pcks: - return true - - var pck_path: String = "%s%s.pck" % [MAP_CACHE_DIR, map_name] - var global_path: String = ProjectSettings.globalize_path(pck_path) - - if not FileAccess.file_exists(global_path): - push_error("[MapDownloader] Cannot load %s: .pck not found at %s" % [map_name, global_path]) - return false - - var err: Error = ProjectSettings.load_resource_pack(global_path) - if err != OK: - push_error("[MapDownloader] Failed to load map pack %s: %s" % [map_name, error_string(err)]) - return false - - _loaded_pcks.append(map_name) - print("[MapDownloader] Loaded map pack: %s (%s)" % [map_name, pck_path]) - map_loaded.emit(map_name) - return true - - -# --------------------------------------------------------------------------- -# Internal: Manifest persistence -# --------------------------------------------------------------------------- - -func _load_manifest() -> void: - var global_path: String = ProjectSettings.globalize_path(MANIFEST_FILE) - if not FileAccess.file_exists(global_path): - _manifest = {} - return - - var f := FileAccess.open(global_path, FileAccess.READ) - if f == null: - _manifest = {} - return - - var json := JSON.new() - var parse_err: Error = json.parse(f.get_as_text()) - f.close() - - if parse_err != OK: - push_warning("[MapDownloader] Failed to parse manifest — starting fresh") - _manifest = {} - else: - _manifest = json.data - _validate_manifest() - - -func _save_manifest() -> void: - var global_path: String = ProjectSettings.globalize_path(MANIFEST_FILE) - var f := FileAccess.open(global_path, FileAccess.WRITE) - if f == null: - push_error("[MapDownloader] Cannot save manifest to %s" % global_path) - return - - f.store_string(JSON.stringify(_manifest, "\t", false)) - f.close() - - -## Validate the manifest: remove entries whose .pck files no longer exist on disk. -func _validate_manifest() -> void: - var stale: Array[String] = [] - for name in _manifest.keys(): - var pck_path: String = ProjectSettings.globalize_path("%s%s.pck" % [MAP_CACHE_DIR, name]) - if not FileAccess.file_exists(pck_path): - stale.append(name) - - for name in stale: - print("[MapDownloader] Manifest cleanup: %s (file missing)" % name) - _manifest.erase(name) - - if not stale.is_empty(): - _save_manifest() diff --git a/scripts/map_packaging/map_downloader.gd.uid b/scripts/map_packaging/map_downloader.gd.uid deleted file mode 100644 index a9f6835..0000000 --- a/scripts/map_packaging/map_downloader.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bhgxvmel117tg diff --git a/scripts/map_packaging/map_registry_server.py b/scripts/map_packaging/map_registry_server.py deleted file mode 100644 index c611281..0000000 --- a/scripts/map_packaging/map_registry_server.py +++ /dev/null @@ -1,393 +0,0 @@ -#!/usr/bin/env python3 -""" -map_registry_server.py — Map Registry HTTP Server - -Serves packaged .pck map files and a JSON map listing for the Godot -client's MapDownloader to consume. - -Endpoints ---------- - -GET /maps - Returns a JSON list of available maps with metadata. - - Response: - { - "maps": [ - { - "name": "de_dust2", - "size": 4194304, - "version": 1, - "description": "Classic bomb-defusal map", - "scene": "res://scenes/maps/de_dust2.tscn", - "checksum_sha256": "a1b2c3..." - } - ], - "server_name": "Tactical Shooter Map Registry", - "map_count": 1 - } - -GET /maps/.pck - Download a packaged map file. Content-Type: application/octet-stream. - -GET /maps/.json - Download metadata for a specific map. - - Response: - { - "name": "de_dust2", - "size": 4194304, - "version": 1, - "description": "Classic bomb-defusal map", - "scene": "res://scenes/maps/de_dust2.tscn", - "checksum_sha256": "a1b2c3...", - "packed_at": "2026-06-30 12:00:00" - } - -Usage ------ - - # Start the server on the default port (8090): - python3 map_registry_server.py - - # Custom port and map directory: - python3 map_registry_server.py --port 8080 --maps-dir /data/maps - - # Docker / container friendly: - MAP_REGISTRY_PORT=8080 MAP_REGISTRY_MAPS=/data/maps python3 map_registry_server.py - -The server scans `maps_dir` (default: ./packed_maps/) for *.pck files and -their matching *.json metadata files on startup and on SIGHUP. - -Integration ------------ - - In your server's ServerConfig or config, add a registry section: - - [map_registry] - enabled=true - url="http://maps.example.com:8090" - - Or set env: MAP_REGISTRY_URL on the game server. - - The game client's MapDownloader singleton will connect to this server - to fetch the map list and download .pck files. -""" - -import argparse -import hashlib -import json -import logging -import os -import signal -import sys -import time -from http.server import HTTPServer, BaseHTTPRequestHandler -from pathlib import Path -from typing import Dict, Optional - -logger = logging.getLogger("MapRegistry") - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -DEFAULT_PORT = 8090 -DEFAULT_MAPS_DIR = "packed_maps" -SERVER_NAME = "Tactical Shooter Map Registry" -VERSION = "1.0.0" - - -# --------------------------------------------------------------------------- -# Map Registry -# --------------------------------------------------------------------------- - -class MapRegistry: - """Scans a directory for .pck files and their metadata.""" - - def __init__(self, maps_dir: str): - self.maps_dir = Path(maps_dir) - self.maps_dir.mkdir(parents=True, exist_ok=True) - self._cache: Dict[str, dict] = {} - self._last_scan: float = 0 - self._scan_interval: float = 5.0 # seconds between rescans - self._scan() - - def _scan(self) -> None: - """Scan the maps directory for .pck and .json files.""" - now = time.time() - if now - self._last_scan < self._scan_interval: - return - self._last_scan = now - - self._cache.clear() - if not self.maps_dir.exists(): - logger.warning("Maps directory does not exist: %s", self.maps_dir) - return - - for pck_file in sorted(self.maps_dir.glob("*.pck")): - map_name = pck_file.stem - json_file = pck_file.with_suffix(".json") - - entry = { - "name": map_name, - "size": pck_file.stat().st_size, - "path": str(pck_file.relative_to(self.maps_dir)), - "version": 1, - "description": "", - "scene": f"res://scenes/maps/{map_name}.tscn", - "checksum_sha256": "", - "packed_at": "", - } - - # Load metadata from sidecar JSON if it exists - if json_file.exists(): - try: - with open(json_file, "r") as f: - meta = json.load(f) - entry["version"] = meta.get("version", 1) - entry["description"] = meta.get("description", "") - entry["packed_at"] = meta.get("packed_at", "") - entry["source_scene"] = meta.get("source_scene", "") - except (json.JSONDecodeError, OSError) as e: - logger.warning("Failed to parse metadata for %s: %s", map_name, e) - - # Compute SHA-256 checksum (on first scan, cached in memory) - ck = self._compute_checksum(pck_file) - if ck: - entry["checksum_sha256"] = ck - - self._cache[map_name] = entry - logger.debug("Registered map: %s (%d bytes)", map_name, entry["size"]) - - logger.info("Scanned %s: %d maps registered", self.maps_dir, len(self._cache)) - - def _compute_checksum(self, path: Path) -> str: - """Compute SHA-256 checksum of a file.""" - try: - h = hashlib.sha256() - with open(path, "rb") as f: - while True: - chunk = f.read(65536) - if not chunk: - break - h.update(chunk) - return h.hexdigest() - except OSError as e: - logger.warning("Checksum failed for %s: %s", path.name, e) - return "" - - def get_map_list(self) -> dict: - """Return the full map listing as a dict.""" - self._scan() - return { - "maps": list(self._cache.values()), - "server_name": SERVER_NAME, - "server_version": VERSION, - "map_count": len(self._cache), - } - - def get_map_info(self, name: str) -> Optional[dict]: - """Return metadata for a single map.""" - self._scan() - return self._cache.get(name) - - def get_map_file(self, name: str) -> Optional[Path]: - """Return the filesystem path to a .pck file, or None.""" - self._scan() - entry = self._cache.get(name) - if entry is None: - return None - pck_path = self.maps_dir / entry["path"] - return pck_path if pck_path.exists() else None - - -# --------------------------------------------------------------------------- -# HTTP Handler -# --------------------------------------------------------------------------- - -class MapRegistryHandler(BaseHTTPRequestHandler): - """HTTP request handler for the map registry API.""" - - # Shared across all instances (set by the server) - registry: MapRegistry = None # type: ignore - - def log_message(self, format: str, *args) -> None: - logger.info("%s - %s", self.client_address[0], format % args) - - def _send_json(self, data: dict, status: int = 200) -> None: - body = json.dumps(data, indent=2).encode("utf-8") - self.send_response(status) - self.send_header("Content-Type", "application/json") - self.send_header("Content-Length", str(len(body))) - self.send_header("Access-Control-Allow-Origin", "*") - self.end_headers() - self.wfile.write(body) - - def _send_error(self, status: int, message: str) -> None: - self._send_json({"error": message}, status) - - def _send_file(self, path: Path, content_type: str = "application/octet-stream") -> None: - try: - file_size = path.stat().st_size - self.send_response(200) - self.send_header("Content-Type", content_type) - self.send_header("Content-Length", str(file_size)) - self.send_header("Content-Disposition", f'attachment; filename="{path.name}"') - self.send_header("Access-Control-Allow-Origin", "*") - self.end_headers() - - with open(path, "rb") as f: - while True: - chunk = f.read(65536) - if not chunk: - break - self.wfile.write(chunk) - except OSError as e: - logger.error("File send failed for %s: %s", path.name, e) - self._send_error(500, "Internal server error") - - def do_GET(self) -> None: - path = self.path.rstrip("/") - - # GET /maps — list all available maps - if path == "/maps": - self._send_json(self.registry.get_map_list()) - return - - # GET /maps/.pck — download a map file - if path.startswith("/maps/") and path.endswith(".pck"): - map_name = path[len("/maps/"):-len(".pck")] - map_file = self.registry.get_map_file(map_name) - if map_file: - self._send_file(map_file) - else: - self._send_error(404, f"Map '{map_name}' not found") - return - - # GET /maps/.json — get metadata for a single map - if path.startswith("/maps/") and path.endswith(".json"): - map_name = path[len("/maps/"):-len(".json")] - info = self.registry.get_map_info(map_name) - if info: - self._send_json(info) - else: - self._send_error(404, f"Map '{map_name}' not found") - return - - # GET / — server info - if path == "/" or path == "": - self._send_json({ - "service": SERVER_NAME, - "version": VERSION, - "endpoints": { - "list_maps": "/maps", - "download_map": "/maps/.pck", - "map_metadata": "/maps/.json", - }, - }) - return - - self._send_error(404, f"Not found: {path}") - - def do_OPTIONS(self) -> None: - """CORS preflight.""" - self.send_response(204) - self.send_header("Access-Control-Allow-Origin", "*") - self.send_header("Access-Control-Allow-Methods", "GET, OPTIONS") - self.send_header("Access-Control-Allow-Headers", "Content-Type") - self.end_headers() - - -# --------------------------------------------------------------------------- -# Server -# --------------------------------------------------------------------------- - -def create_server(port: int, maps_dir: str) -> HTTPServer: - """Create and configure the HTTP server.""" - registry = MapRegistry(maps_dir) - MapRegistryHandler.registry = registry - - server = HTTPServer(("0.0.0.0", port), MapRegistryHandler) - server.timeout = 0.5 # allow signal handling - - logger.info("Map Registry Server v%s", VERSION) - logger.info(" Listen: http://0.0.0.0:%d", port) - logger.info(" Maps dir: %s", registry.maps_dir.resolve()) - logger.info(" Maps found: %d", len(registry._cache)) - logger.info(" Endpoints:") - logger.info(" List: GET /maps") - logger.info(" Download: GET /maps/.pck") - logger.info(" Metadata: GET /maps/.json") - - return server - - -def parse_args() -> argparse.Namespace: - parser = argparse.ArgumentParser( - description="Tactical Shooter Map Registry Server", - formatter_class=argparse.RawDescriptionHelpFormatter, - epilog=__doc__, - ) - parser.add_argument( - "--port", "-p", - type=int, - default=int(os.environ.get("MAP_REGISTRY_PORT", DEFAULT_PORT)), - help="HTTP port (default: %d)" % DEFAULT_PORT, - ) - parser.add_argument( - "--maps-dir", "-d", - type=str, - default=os.environ.get("MAP_REGISTRY_MAPS", DEFAULT_MAPS_DIR), - help="Directory containing .pck files (default: %s)" % DEFAULT_MAPS_DIR, - ) - parser.add_argument( - "--verbose", "-v", - action="store_true", - help="Enable debug logging", - ) - return parser.parse_args() - - -def main(): - args = parse_args() - - logging.basicConfig( - level=logging.DEBUG if args.verbose else logging.INFO, - format="%(asctime)s [%(levelname)s] %(name)s: %(message)s", - datefmt="%Y-%m-%d %H:%M:%S", - ) - - server = create_server(args.port, args.maps_dir) - - # Handle SIGTERM/SIGINT for graceful shutdown - shutdown_requested = False - - def handle_signal(sig, frame): - nonlocal shutdown_requested - if not shutdown_requested: - logger.info("Shutdown requested (signal %d)", sig) - shutdown_requested = True - server.shutdown() - - signal.signal(signal.SIGTERM, handle_signal) - signal.signal(signal.SIGINT, handle_signal) - - # SIGHUP rescans the map directory - if hasattr(signal, "SIGHUP"): - def handle_hup(sig, frame): - logger.info("SIGHUP received — rescanning maps") - server.RequestHandlerClass.registry._scan() - signal.signal(signal.SIGHUP, handle_hup) - - try: - server.serve_forever() - except KeyboardInterrupt: - pass - finally: - server.server_close() - logger.info("Server stopped") - - -if __name__ == "__main__": - main() diff --git a/scripts/map_packaging/pack_map.gd b/scripts/map_packaging/pack_map.gd deleted file mode 100644 index e5ea9b9..0000000 --- a/scripts/map_packaging/pack_map.gd +++ /dev/null @@ -1,190 +0,0 @@ -## pack_map.gd — Map PCK Exporter -## -## Editor tool script that exports a map scene (.tscn) as a standalone -## .pck resource pack. The .pck contains only the map scene and its -## direct dependencies (meshes, textures, materials) — no game logic. -## -## Usage: -## 1. Open the map template project (client/map_template/) in Godot. -## 2. Build your map in the scenes/maps/ directory. -## 3. Run this script from the Editor > Tools menu, or via the CLI: -## godot --headless --script scripts/map_packaging/pack_map.gd --map=res://scenes/maps/my_map.tscn -## -## Output: -## user://packed_maps/my_map.pck (ready to upload to the registry server) -## -## The exported .pck can be loaded in-game via: -## ProjectSettings.load_resource_pack("user://maps/my_map.pck") -## -## Requirements: -## - Godot 4.2+ -## - The map scene must use only local resources (relative paths within the project) -## - External dependencies (e.g. shared game assets) should be excluded — the -## .pck is meant to be additive content, not a full replacement. - -tool -extends EditorScript - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -## Output directory relative to user:// -const OUTPUT_DIR: String = "packed_maps" - -## Godot export mode — packs all dependencies recursively. -const EXPORT_MODE: int = PackedScene.GEN_FLAG_SAVE_NONE - -# --------------------------------------------------------------------------- -# Entry point -# --------------------------------------------------------------------------- - -func _run() -> void: - # Determine the map scene path - var scene_path: String = _resolve_scene_path() - if scene_path.is_empty(): - print("Usage: godot --headless --script pack_map.gd --map=res://scenes/maps/.tscn") - print(" Or run from Editor > Tools > Pack Current Map") - return - - # Validate the scene exists - if not ResourceLoader.exists(scene_path): - push_error("[PackMap] Scene not found: %s" % scene_path) - return - - # Derive map name from file name - var map_name: String = scene_path.get_file().trim_suffix(".tscn") - var output_path: String = "user://%s/%s.pck" % [OUTPUT_DIR, map_name] - - # Ensure output directory exists - DirAccess.make_dir_recursive_absolute(ProjectSettings.globalize_path("user://%s" % OUTPUT_DIR)) - - print("[PackMap] Packaging: %s" % scene_path) - print("[PackMap] Output: %s" % output_path) - - # Load the scene - var scene: PackedScene = load(scene_path) - if scene == null: - push_error("[PackMap] Failed to load scene: %s" % scene_path) - return - - # Generate the .pck via Godot's built-in packer. - # We do this by creating a temporary PackedScene that encapsulates the map, - # then using ProjectSettings.save_resource_pack to extract only the needed resources. - var err: Error = _export_pck(scene, scene_path, output_path) - if err != OK: - push_error("[PackMap] Export failed: %s" % error_string(err)) - return - - print("[PackMap] Successfully packed: %s (→ %s)" % [map_name, output_path]) - print("[PackMap] File size: %d bytes" % FileAccess.get_size(output_path)) - - # Write a sidecar JSON with metadata - _write_metadata(map_name, output_path, scene_path) - - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -## Resolve the --map CLI argument or use the currently open scene. -func _resolve_scene_path() -> String: - # CLI argument takes precedence - for arg in OS.get_cmdline_args(): - if arg.begins_with("--map="): - return arg.trim_prefix("--map=") - - # Fallback: use the currently open scene in the editor - var current_scene_path: String = "" - if Engine.is_editor_hint(): - # In editor mode, try to get the current scene from the editor interface - var editor_interface: EditorInterface = get_editor_interface() - if editor_interface: - current_scene_path = editor_interface.get_current_scene().scene_file_path - - return current_scene_path - - -## Export the scene as a .pck file containing only its direct dependencies. -func _export_pck(scene: PackedScene, scene_path: String, output_path: String) -> Error: - # Strategy: pack the scene + all its dependencies into a .pck using - # ResourceSaver. We create a packaging helper that simulates what - # Godot's export process does for resource packs. - - # Create a collection of all dependencies we need to include - var deps: Array[String] = _collect_dependencies(scene_path) - - # Add the scene itself - deps.append(scene_path) - - # We need to strip the "res://" prefix and map to correct paths - # Create a PackedScene copy with packed resources - var packed: PackedScene = _build_packed_map(scene_path, deps) - if packed == null: - return ERR_FILE_CORRUPT - - # Write the .pck using ProjectSettings.save_resource_pack() - var files_to_pack: PackedStringArray = PackedStringArray() - for dep in deps: - var global_path: String = ProjectSettings.globalize_path(dep) - if FileAccess.file_exists(global_path): - files_to_pack.append(dep) - - if files_to_pack.is_empty(): - return ERR_FILE_NOT_FOUND - - var err: Error = ProjectSettings.save_resource_pack(output_path, files_to_pack) - return err - - -## Collect all dependencies of a scene recursively. -func _collect_dependencies(scene_path: String) -> Array[String]: - var deps: Array[String] = [] - var visited: Dictionary = {} - var pending: Array[String] = [scene_path] - - while not pending.is_empty(): - var current: String = pending.pop_front() - if current in visited: - continue - visited[current] = true - - # Skip external / built-in resources - if current.begins_with("builtin://") or current.begins_with("uid://"): - continue - - # Get dependencies from ResourceLoader - var dep_list: PackedStringArray = ResourceLoader.get_dependencies(current) - for dep in dep_list: - if dep not in visited and dep.begins_with("res://"): - deps.append(dep) - pending.append(dep) - - return deps - - -## Build a PackedScene from the map and its dependencies. -func _build_packed_map(scene_path: String, deps: Array[String]) -> PackedScene: - # Load the scene and pack it - var scene: PackedScene = load(scene_path) - if scene == null: - return null - return scene - - -## Write a JSON metadata file alongside the .pck. -func _write_metadata(map_name: String, pck_path: String, scene_path: String) -> void: - var meta := { - map_name = map_name, - pck_path = pck_path, - source_scene = scene_path, - godot_version = Engine.get_version_info(), - packed_at = Time.get_datetime_string_from_system(), - } - - var meta_path: String = pck_path.trim_suffix(".pck") + ".json" - var f := FileAccess.open(meta_path, FileAccess.WRITE) - if f: - f.store_string(JSON.stringify(meta, "\t", false)) - f.close() - print("[PackMap] Metadata written: %s" % meta_path) diff --git a/scripts/map_packaging/pack_map.gd.uid b/scripts/map_packaging/pack_map.gd.uid deleted file mode 100644 index ed09229..0000000 --- a/scripts/map_packaging/pack_map.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dskw00g1p1ghe diff --git a/scripts/network/client_main.gd b/scripts/network/client_main.gd deleted file mode 100644 index 11a84f1..0000000 --- a/scripts/network/client_main.gd +++ /dev/null @@ -1,151 +0,0 @@ -## Client Main — Client entry point for testing. -## -## Connects to the server. For the local player, spawns a full FPS -## character (from the ChaffGames FPS template) with mouse look, -## weapons, HUD, and movement. For remote players, creates simple -## box-mesh representations for visibility. -## -## The local FPS character moves independently (single-player style). -## Position is replicated to the server each tick so other clients -## see where we are. - -extends Node3D - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- -@export var server_host: String = "68.202.6.107" -@export var server_port: int = 34197 -@export var fps_scene: PackedScene = preload("res://scenes/player.tscn") - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -# remote_players[peer_id] = Node3D — visual representation of other players -var remote_players: Dictionary = {} -var connected: bool = false - -# Our local FPS character -var _local_player: Node = null - -# Position sync timer -var _sync_timer: float = 0.0 -const SYNC_RATE: float = 20.0 # Hz — how often to send position to server - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- -func _ready() -> void: - # Connect to server after a short delay - await get_tree().create_timer(0.5).timeout - _connect_to_server() - -func _connect_to_server() -> void: - if OS.has_environment("SERVER_HOST"): - server_host = OS.get_environment("SERVER_HOST") - if OS.has_environment("SERVER_PORT"): - server_port = int(OS.get_environment("SERVER_PORT")) - - print("[ClientMain] Connecting to %s:%d ..." % [server_host, server_port]) - - var err: Error = NetworkManager.join_server(server_host, server_port) - if err != OK: - push_error("[ClientMain] Connection failed: %s" % error_string(err)) - await get_tree().create_timer(2.0).timeout - _connect_to_server() - return - - connected = true - - # Connect replication signals from NetworkManager - NetworkManager.remote_player_spawned.connect(_on_remote_player_spawned) - NetworkManager.remote_player_despawned.connect(_on_remote_player_despawned) - - print("[ClientMain] Connected to server. Peer ID: %d" % multiplayer.get_unique_id()) - -# --------------------------------------------------------------------------- -# Local FPS character + position sync -# --------------------------------------------------------------------------- -func _process(delta: float) -> void: - # Sync our position to the server at a fixed rate - if _local_player: - _sync_timer += delta - if _sync_timer >= 1.0 / SYNC_RATE: - _sync_timer = 0.0 - var pos: Vector3 = _local_player.global_position - rpc_id(1, "_send_position", pos) - -@rpc("unreliable") -func _send_position(pos: Vector3) -> void: - # Server receives our position and broadcasts to other clients - pass - -# Server broadcasts other players' positions to us -@rpc("unreliable", "authority") -func _replicate_position(pos: Vector3, moving_peer_id: int) -> void: - # Update the position of a remote player on our screen - if moving_peer_id in remote_players: - remote_players[moving_peer_id].position = pos - -# --------------------------------------------------------------------------- -# Player replication handlers (called when server broadcasts via RPC) -# --------------------------------------------------------------------------- -func _on_remote_player_spawned(peer_id: int, pos: Vector3) -> void: - if peer_id == multiplayer.get_unique_id(): - # THIS IS OUR PLAYER — spawn the full FPS character - if _local_player: - push_warning("[ClientMain] Local player already exists, despawning old") - _local_player.queue_free() - - _local_player = fps_scene.instantiate() - _local_player.name = "LocalPlayer" - _local_player.global_position = pos - add_child(_local_player, true) - - print("[ClientMain] Spawned LOCAL FPS player at (%.1f, %.1f)" % [pos.x, pos.z]) - return - - if peer_id in remote_players: - push_warning("[ClientMain] Remote player %d already exists, skipping" % peer_id) - return - - # Create a remote player node for visualization (simple box mesh) - var player := Node3D.new() - player.name = "RemotePlayer_%d" % peer_id - player.set_multiplayer_authority(peer_id) - player.position = pos - - # Add a simple box mesh so we can see where other players are - var mesh := MeshInstance3D.new() - mesh.mesh = BoxMesh.new() - mesh.mesh.size = Vector3(1, 1, 1) - mesh.position.y = 0.5 - player.add_child(mesh) - - add_child(player, true) - remote_players[peer_id] = player - - print("[ClientMain] Spawned remote player %d at (%.1f, %.1f)" % [peer_id, pos.x, pos.z]) - -func _on_remote_player_despawned(peer_id: int) -> void: - if peer_id == multiplayer.get_unique_id(): - if _local_player: - _local_player.queue_free() - _local_player = null - print("[ClientMain] Local player despawned") - return - - if peer_id in remote_players: - remote_players[peer_id].queue_free() - remote_players.erase(peer_id) - print("[ClientMain] Despawned remote player %d" % peer_id) - -func _exit_tree() -> void: - if connected: - NetworkManager.stop() - - if _local_player: - _local_player.queue_free() - for p in remote_players.values(): - p.queue_free() - remote_players.clear() diff --git a/scripts/network/client_main.gd.uid b/scripts/network/client_main.gd.uid deleted file mode 100644 index 64a9e00..0000000 --- a/scripts/network/client_main.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://blpy6rdyfy2b1 diff --git a/scripts/network/client_prediction.gd b/scripts/network/client_prediction.gd deleted file mode 100644 index 85704e2..0000000 --- a/scripts/network/client_prediction.gd +++ /dev/null @@ -1,313 +0,0 @@ -## ClientPrediction — Client-side prediction & reconciliation for networked FPS. -## -## Architecture (tick loop): -## 1. on_before_tick() → captures a local-world Snapshot into a 64-entry -## ring buffer BEFORE input is applied. -## 2. The character controller runs its normal local movement (predicted -## simulation — instant feedback). -## 3. on_after_tick() → sends the raw input to the server via ENet -## channel 0 and advances the local tick counter. -## 4. When a server state snapshot arrives, the controller reconciles: -## a) Compares predicted state with authoritative state at that tick. -## b) If mismatch detected → emits state_mispredicted(delta). -## c) Rewinds to confirmed state, re-applies all unconfirmed inputs, -## then emits reconciled(). -## -## The same node also supports INTERPOLATION MODE for remote players -## (those not owned by this peer). See set_interpolate_mode(). -## -## Server-side input queue: -## This script also contains server-side logic for receiving client -## inputs and making them available to GameServer via consume_pending_inputs(). -## -## Dependencies: -## - NetworkManager autoload (for RPC relay) -## - Snapshot (data container) -## - FPSCharacterController (linked via setup()) -extends Node - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- -const BUFFER_SIZE: int = 64 - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted when a misprediction is detected during reconciliation. -## delta_position: Vector3 — the position difference (server - predicted). -signal state_mispredicted(delta_position: Vector3) - -## Emitted after successful reconciliation (state corrected). -signal reconciled() - -# --------------------------------------------------------------------------- -# State — Mode -# --------------------------------------------------------------------------- -## If true, this instance is actively predicting (client-side local player). -var prediction_enabled: bool = false - -## If true, this instance is interpolating a remote player's position. -var interpolate_mode: bool = false - -# --------------------------------------------------------------------------- -# State — Prediction (local player) -# --------------------------------------------------------------------------- -## Local tick counter, incremented each physics tick. -var local_tick: int = 0 - -## Ring buffer of snapshots taken BEFORE input each tick. -## Indexed by tick % BUFFER_SIZE. -var _snapshot_buffer: Array[Snapshot] = [] - -## Pending (unconfirmed) inputs, keyed by local_tick. -## Each value is a Dictionary matching the FPSCharacterController input format. -var _pending_inputs: Dictionary = {} - -## Last confirmed snapshot received from the server. -var _last_confirmed_snapshot: Snapshot = null - -## Tick of the last confirmed snapshot. -var _last_confirmed_tick: int = -1 - -# --------------------------------------------------------------------------- -# State — Interpolation (remote players) -# --------------------------------------------------------------------------- -var _prev_snapshot: Snapshot = null -var _next_snapshot: Snapshot = null -var _interp_fraction: float = 0.0 - -# --------------------------------------------------------------------------- -# References -# --------------------------------------------------------------------------- -var _controller: FPSCharacterController = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- -func _init() -> void: - _snapshot_buffer.resize(BUFFER_SIZE) - -func _ready() -> void: - if not multiplayer.is_server() and NetworkManager: - # Client instances: listen for authoritative server state. - NetworkManager.server_state_received.connect(_on_client_state_received) - -# --------------------------------------------------------------------------- -# Public API — setup -# --------------------------------------------------------------------------- - -## Link this prediction node to its FPSCharacterController. -func setup(controller: FPSCharacterController) -> void: - _controller = controller - if not multiplayer.is_server(): - prediction_enabled = true - print("[ClientPrediction] Prediction active for entity %d" % controller.entity_id) - -## Switch to interpolation mode (for remote player representations). -func set_interpolate_mode(enabled: bool) -> void: - interpolate_mode = enabled - if enabled: - prediction_enabled = false - -# --------------------------------------------------------------------------- -# Prediction hooks (called by FPSCharacterController._physics_process) -# --------------------------------------------------------------------------- - -## MUST be called at the start of _physics_process, BEFORE any input -## processing or movement. Captures the current character state into -## the snapshot ring buffer. -func on_before_tick() -> void: - if _controller == null or interpolate_mode or not prediction_enabled: - return - - var snap: Snapshot = _capture_snapshot(local_tick) - _snapshot_buffer[local_tick % BUFFER_SIZE] = snap - _pending_inputs[local_tick] = null # placeholder, filled by on_after_tick - -## MUST be called at the end of _physics_process, AFTER local movement -## and input processing. Stores the applied input, sends it to the -## server via RPC, and advances the local tick. -func on_after_tick(input_dict: Dictionary) -> void: - if _controller == null or interpolate_mode or not prediction_enabled: - return - - # Store the input for potential reconciliation. - _pending_inputs[local_tick] = input_dict.duplicate() - - # Send input to the server via NetworkManager RPC (ENet channel 0). - if NetworkManager and NetworkManager.has_method(&"send_client_input"): - NetworkManager.send_client_input.rpc_id(1, local_tick, input_dict) - - local_tick += 1 - -# --------------------------------------------------------------------------- -# Snapshot capture -# --------------------------------------------------------------------------- -func _capture_snapshot(tick: int) -> Snapshot: - var s = Snapshot.new() - s.timestamp = tick - s.position = _controller.global_position - s.rotation = _controller.global_transform.basis.get_rotation_quaternion() - s.velocity = _controller.velocity - s.grounded = _controller.is_on_floor() - return s - -# --------------------------------------------------------------------------- -# Server state handling (called when authoritative state arrives) -# --------------------------------------------------------------------------- - -## Handle a server state snapshot: detect misprediction and reconcile. -func on_server_state(server_snapshot: Snapshot) -> void: - if prediction_enabled: - _reconcile_from_server(server_snapshot) - elif interpolate_mode: - _store_interp_snapshot(server_snapshot) - -func _reconcile_from_server(server_snapshot: Snapshot) -> void: - var server_tick: int = server_snapshot.timestamp - - # Ignore stale / out-of-order state. - if server_tick <= _last_confirmed_tick: - return - - # 1. Retrieve our predicted snapshot for this tick. - var predicted: Snapshot = _snapshot_buffer[server_tick % BUFFER_SIZE] - - if predicted != null and predicted.timestamp == server_tick: - # 2. Compare predicted vs authoritative state. - var delta: Vector3 = server_snapshot.position - predicted.position - if delta.length_squared() > 0.0001: - state_mispredicted.emit(delta) - - # 3. Update last confirmed state. - _last_confirmed_snapshot = server_snapshot - _last_confirmed_tick = server_tick - - # 4. Rewind and re-predict. - _reconcile(server_snapshot, server_tick) - -## Core reconciliation: rewind to the confirmed server state, then -## re-apply every unconfirmed input that was sent after that tick. -func _reconcile(confirmed: Snapshot, confirmed_tick: int) -> void: - if _controller == null: - return - - # Collect pending ticks that are strictly after the confirmed tick. - var pending_ticks: Array[int] = [] - for tick in _pending_inputs.keys(): - if tick > confirmed_tick: - pending_ticks.append(tick) - pending_ticks.sort() - - if pending_ticks.is_empty(): - # Nothing to re-apply — snap directly to confirmed state. - _apply_snapshot(confirmed) - reconciled.emit() - return - - # Rewind to the confirmed state. - _apply_snapshot(confirmed) - - # Re-apply every pending input in tick order. - var tick_delta: float = 1.0 / 128.0 # matches the 128 Hz tick rate - for tick in pending_ticks: - var input_dict: Dictionary = _pending_inputs.get(tick, {}) - if input_dict.is_empty(): - continue - _simulate_input(input_dict, tick_delta) - - reconciled.emit() - -## Apply a snapshot directly to the character controller (rewind step). -func _apply_snapshot(snap: Snapshot) -> void: - if _controller == null: - return - - _controller.global_position = snap.position - _controller.global_transform.basis = Basis(snap.rotation) - _controller.velocity = snap.velocity - -## Re-simulate a single tick of input on the character controller. -## Uses the controller's own _move_local() for identical physics. -## NOTE: crouch and sprint state are not re-applied during reconciliation -## because they are frame-state toggles; the server state already accounts -## for them. Only movement direction and jump matter for position correction. -func _simulate_input(input_dict: Dictionary, delta: float) -> void: - if _controller == null: - return - - var move_dir: Vector3 = input_dict.get("move_direction", Vector3.ZERO) - var jump: bool = input_dict.get("jump", false) - var yaw_deg: float = input_dict.get("look_yaw", 0.0) - - # Re-apply look yaw so movement is oriented correctly. - _controller.rotation.y = deg_to_rad(yaw_deg) - - # Re-run local movement (this calls move_and_slide internally). - _controller._move_local(move_dir, delta, jump) - -# --------------------------------------------------------------------------- -# Remote player interpolation -# --------------------------------------------------------------------------- - -func _store_interp_snapshot(snap: Snapshot) -> void: - _prev_snapshot = _next_snapshot - _next_snapshot = snap - _interp_fraction = 0.0 - -## Advance interpolation for a remote player. Call each _process frame. -func advance_interpolation(delta: float) -> void: - if not interpolate_mode or _controller == null: - return - if _prev_snapshot == null or _next_snapshot == null: - return - - _interp_fraction += delta * 128.0 # tick rate - if _interp_fraction >= 1.0: - _apply_snapshot(_next_snapshot) - _prev_snapshot = _next_snapshot - _next_snapshot = null - return - - # Smooth interpolation between snapshots. - _controller.global_position = _prev_snapshot.position.lerp( - _next_snapshot.position, _interp_fraction - ) - _controller.global_transform.basis = Basis(_prev_snapshot.rotation).slerp( - Basis(_next_snapshot.rotation), _interp_fraction - ) - _controller.velocity = _prev_snapshot.velocity.lerp( - _next_snapshot.velocity, _interp_fraction - ) - -# --------------------------------------------------------------------------- -# Client-side state reception -# --------------------------------------------------------------------------- - -## Client-side: called when NetworkManager emits server_state_received. -## Converts the raw dict into a Snapshot and passes it to the -## reconciliation pipeline. -func _on_client_state_received(entity_id: int, snapshot_dict: Dictionary) -> void: - # Route to the correct prediction controller based on entity_id. - if _controller == null or _controller.entity_id != entity_id: - return - - var snap: Snapshot = Snapshot.from_dict(snapshot_dict) - on_server_state(snap) - - -# --------------------------------------------------------------------------- -# Utility -# --------------------------------------------------------------------------- -## Reset all prediction state (call on respawn / round restart). -func reset() -> void: - _snapshot_buffer = [] - _snapshot_buffer.resize(BUFFER_SIZE) - _pending_inputs.clear() - _last_confirmed_snapshot = null - _last_confirmed_tick = -1 - local_tick = 0 - _prev_snapshot = null - _next_snapshot = null - _interp_fraction = 0.0 diff --git a/scripts/network/client_prediction.gd.uid b/scripts/network/client_prediction.gd.uid deleted file mode 100644 index 2eb216b..0000000 --- a/scripts/network/client_prediction.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b4yrh2xnjfrch diff --git a/scripts/network/map_browser_rpc.gd b/scripts/network/map_browser_rpc.gd deleted file mode 100644 index 3fd38f3..0000000 --- a/scripts/network/map_browser_rpc.gd +++ /dev/null @@ -1,119 +0,0 @@ -## MapBrowserRPC — Client-Server RPC Bridge for Workshop Map Browser -## -## Autoload candidate (or child of NetworkManager) that provides ENet RPC -## methods for the workshop map browser system. -## -## ## Architecture -## -## ┌──────────────┐ request_map_list() ┌──────────────┐ -## │ Client │ ──────────────────────► │ Server │ -## │ │ ◄────────────────────── │ │ -## │ │ send_map_list() │ │ -## │ │ │ │ -## │ │ request_map_change() │ │ -## │ │ ──────────────────────► │ │ -## └──────────────┘ └──────────────┘ -## -## ## Signals -## -## map_list_received(map_list: Array) — emitted on client when map list arrives -## map_change_requested(map_id: String, peer_id: int) — emitted on server -## when a client requests a map change -## map_vote_started(map_id: String) — emitted on server when vote begins -## -## ## Integration -## -## Add as an autoload in project.godot: -## MapBrowserRPC="*res://scripts/network/map_browser_rpc.gd" -## -## Or add as a child of NetworkManager at runtime. -## -## ## RPC Visibility -## -## - Server → Client: send_map_list (authority, call_remote) -## - Client → Server: request_map_list (any_peer, call_remote) -## - Client → Server: request_map_change (any_peer, call_remote) -## -## ============================================================================= - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted on the client when the server sends the map list. -signal map_list_received(map_list: Array) - -## Emitted on the server when a client requests a map change. -signal map_change_requested(map_id: String, peer_id: int) - -## Emitted on the server when a map vote is initiated by a client request. -signal map_vote_started(map_id: String) - -## Emitted on the client when the vote result is sent back. -signal map_vote_result(map_id: String, passed: bool, yes_count: int, no_count: int) - -# --------------------------------------------------------------------------- -# RPC: Server → Client -# --------------------------------------------------------------------------- - -## Server sends the serialized map list to a specific client. -## Called by server code after receiving request_map_list(). -@rpc("authority", "call_remote", "reliable") -func send_map_list(map_list: Array) -> void: - if multiplayer.is_server(): - return - map_list_received.emit(map_list) - print("[MapBrowserRPC] Received map list with %d maps" % map_list.size()) - -## Server broadcasts the final vote result to all clients. -@rpc("authority", "call_remote", "reliable") -func broadcast_vote_result(map_id: String, passed: bool, yes_count: int, no_count: int) -> void: - if multiplayer.is_server(): - return - map_vote_result.emit(map_id, passed, yes_count, no_count) - print("[MapBrowserRPC] Vote result for %s: passed=%s (%d yes, %d no)" % [map_id, passed, yes_count, no_count]) - -# --------------------------------------------------------------------------- -# RPC: Client → Server -# --------------------------------------------------------------------------- - -## Client requests the current map list from the server. -## The server should call send_map_list(peer_id, map_list) in response. -@rpc("any_peer", "call_remote", "reliable") -func request_map_list() -> void: - if not multiplayer.is_server(): - return - - var peer_id: int = multiplayer.get_remote_sender_id() - print("[MapBrowserRPC] Map list requested by peer %d" % peer_id) - - # Delegate to WorkshopBrowser if available - var list: Array = [] - if WorkshopBrowser and WorkshopBrowser.has_method(&"get_map_list"): - list = WorkshopBrowser.get_map_list() - else: - push_warning("[MapBrowserRPC] WorkshopBrowser singleton not available — returning empty list") - - # Send the map list back to the requesting client - send_map_list.rpc_id(peer_id, list) - -## Client requests a map change (initiates a vote or signals admin). -## Emits map_change_requested on the server for handling. -@rpc("any_peer", "call_remote", "reliable") -func request_map_change(map_id: String) -> void: - if not multiplayer.is_server(): - return - - var peer_id: int = multiplayer.get_remote_sender_id() - print("[MapBrowserRPC] Map change requested by peer %d: %s" % [peer_id, map_id]) - - # Validate the map exists via WorkshopBrowser - if WorkshopBrowser and WorkshopBrowser.has_method(&"has_map"): - if not WorkshopBrowser.has_map(map_id): - print("[MapBrowserRPC] Peer %d requested unknown map: %s" % [peer_id, map_id]) - return - - map_change_requested.emit(map_id, peer_id) - map_vote_started.emit(map_id) diff --git a/scripts/network/map_browser_rpc.gd.uid b/scripts/network/map_browser_rpc.gd.uid deleted file mode 100644 index df82edb..0000000 --- a/scripts/network/map_browser_rpc.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://duwmyvcdn55qe diff --git a/scripts/network/netfox_bootstrap.gd b/scripts/network/netfox_bootstrap.gd deleted file mode 100644 index ef496b8..0000000 --- a/scripts/network/netfox_bootstrap.gd +++ /dev/null @@ -1,10 +0,0 @@ -## NetfoxBootstrap — minimal. All class_names should be registered by -## Godot's global script scanning. We don't reference any netfox -## class_name directly in our code. - -extends Node - -func _ready() -> void: - # netfox singletons are registered by the editor plugin only. - # In headless/export builds, Engine.has_singleton checks handle this. - pass diff --git a/scripts/network/netfox_bootstrap.gd.uid b/scripts/network/netfox_bootstrap.gd.uid deleted file mode 100644 index 79d17d9..0000000 --- a/scripts/network/netfox_bootstrap.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cwipcjgj8cyym diff --git a/scripts/network/network_manager.gd b/scripts/network/network_manager.gd deleted file mode 100644 index 5fbac01..0000000 --- a/scripts/network/network_manager.gd +++ /dev/null @@ -1,271 +0,0 @@ -## NetworkManager — netfox-aware transport with graceful ENet fallback -## -## Dual-path architecture: -## Path A (netfox available) → NetworkEvents drives lifecycle signals -## Path B (headless/export) → ENetMultiplayerPeer drives lifecycle signals -## -## The server always uses ENetMultiplayerPeer as the underlying transport -## (netfox layers on top of Godot's MultiplayerAPI). When netfox NetworkEvents -## is available, it provides lifecycle signals (on_peer_join, etc.) and the -## ENet signal connections are skipped to avoid double emissions. When netfox -## is unavailable (headless mode), the built-in ENet peer_connected/ -## peer_disconnected signals are used directly. -## -## Broadcast RPCs (player spawn/despawn) work identically in both paths -## since they use Godot's built-in MultiplayerAPI, which netfox enhances -## without replacing. Round state/scores are now distributed via -## round_manager's netfox Self-RPC pattern directly. -## -## Architecture: -## server mode → start_server(port) → ENetMultiplayerPeer server -## client mode → join_server(host,port)→ ENetMultiplayerPeer client -## netfox path → NetworkEvents signals when available (editor) -## fallback → ENet peer signals in headless mode -## -## Channels (3-lane layout): -## 0 unreliable-ordered → 128Hz input / transform deltas -## 1 reliable-ordered → game events, spawn, damage, chat -## 2 unreliable → telemetry / VOIP metadata - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -signal server_started(port: int) -signal server_stopped() -signal player_connected(peer_id: int) -signal player_disconnected(peer_id: int) -signal connection_succeeded() -signal connection_failed(error_message: String) - -# --- Player replication signals (emitted on all peers after RPC broadcast) --- -signal remote_player_spawned(peer_id: int, pos: Vector3) -signal remote_player_despawned(peer_id: int) - -# --- Client prediction signals --- -## Emitted on the server when a client sends input. payload: {peer_id, tick, input_dict} -signal client_input_received(peer_id: int, tick: int, input_dict: Dictionary) -## Emitted on the client when the server sends authoritative state. -## entity_id: the simulation entity this state belongs to. -signal server_state_received(entity_id: int, snapshot_dict: Dictionary) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- -const DEFAULT_PORT: int = 34197 -const CHANNELS: int = 3 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -var is_server: bool = false : get = _is_server -var is_client: bool = false : get = _is_client -var peer: ENetMultiplayerPeer = null -var max_clients: int = 16 - -# netfox overlay (optional — only available when netfox plugin is active) -var _netfox_events = null -var _netfox_events_connected: bool = false - -func _is_server() -> bool: - return is_server - -func _is_client() -> bool: - return is_client - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Try to connect to netfox NetworkEvents singleton (non-critical) - # We use StringName for singleton access to avoid parser errors - # when netfox types aren't available (headless mode). - _try_connect_netfox() - -func _try_connect_netfox() -> void: - # Use singleton name string to avoid referencing netfox types directly - if not Engine.has_singleton("NetworkEvents"): - _netfox_events_connected = false - print("[NetworkManager] netfox not available — using ENet directly") - return - - var events = Engine.get_singleton("NetworkEvents") - if events == null or not events.has_signal("on_server_start"): - _netfox_events_connected = false - print("[NetworkManager] netfox singleton found but unexpected shape — using ENet directly") - return - - _netfox_events = events - _netfox_events.on_server_start.connect(_on_netfox_server_start) - _netfox_events.on_server_stop.connect(_on_netfox_server_stop) - _netfox_events.on_client_start.connect(_on_netfox_client_start) - _netfox_events.on_client_stop.connect(_on_netfox_client_stop) - _netfox_events.on_peer_join.connect(_on_netfox_peer_join) - _netfox_events.on_peer_leave.connect(_on_netfox_peer_leave) - _netfox_events_connected = true - print("[NetworkManager] netfox NetworkEvents overlay active") - -# netfox signal handlers -func _on_netfox_server_start() -> void: - print("[NetworkManager] Server started (netfox)") - is_server = true - -func _on_netfox_server_stop() -> void: - print("[NetworkManager] Server stopped (netfox)") - is_server = false - -func _on_netfox_client_start(id: int) -> void: - print("[NetworkManager] Client started (netfox, id=%d)" % id) - is_client = true - -func _on_netfox_client_stop() -> void: - print("[NetworkManager] Client stopped (netfox)") - is_client = false - -func _on_netfox_peer_join(id: int) -> void: - print("[NetworkManager] Peer joined (netfox, id=%d)" % id) - player_connected.emit(id) - -func _on_netfox_peer_leave(id: int) -> void: - print("[NetworkManager] Peer left (netfox, id=%d)" % id) - player_disconnected.emit(id) - -# --------------------------------------------------------------------------- -# Server API -# --------------------------------------------------------------------------- - -func start_server(port: int = DEFAULT_PORT) -> Error: - if peer and peer.get_connection_status() != MultiplayerPeer.CONNECTION_DISCONNECTED: - stop() - - # If ServerConfig is available, use it for max_clients - if ServerConfig and ServerConfig.has_method(&"get_config_path"): - max_clients = ServerConfig.max_players - - peer = ENetMultiplayerPeer.new() - peer.set_bind_ip("*") - - var err: Error = peer.create_server(port, max_clients, CHANNELS, 0, 0) - if err != OK: - peer = null - return err - - multiplayer.multiplayer_peer = peer - - # Only connect ENet signals when netfox is unavailable to avoid - # double-emission with NetworkEvents.on_peer_join/on_peer_leave - if not _netfox_events_connected: - multiplayer.multiplayer_peer.peer_connected.connect(_on_peer_connected) - multiplayer.multiplayer_peer.peer_disconnected.connect(_on_peer_disconnected) - print("[NetworkManager] Using ENet peer signals (netfox not available)") - else: - print("[NetworkManager] Using netfox NetworkEvents for lifecycle signals") - - is_server = true - server_started.emit(port) - print("[NetworkManager] Server started on port %d" % port) - return OK - -func stop() -> void: - if not peer: - return - - if is_server: - # Only disconnect ENet signals if they were connected - # (when netfox was unavailable, see start_server) - if not _netfox_events_connected: - if multiplayer.multiplayer_peer.peer_connected.is_connected(_on_peer_connected): - multiplayer.multiplayer_peer.peer_connected.disconnect(_on_peer_connected) - if multiplayer.multiplayer_peer.peer_disconnected.is_connected(_on_peer_disconnected): - multiplayer.multiplayer_peer.peer_disconnected.disconnect(_on_peer_disconnected) - - peer.close() - multiplayer.multiplayer_peer = null - peer = null - is_server = false - is_client = false - server_stopped.emit() - print("[NetworkManager] Stopped") - -# --------------------------------------------------------------------------- -# Client API -# --------------------------------------------------------------------------- - -func join_server(host: String, port: int = DEFAULT_PORT) -> Error: - if peer and peer.get_connection_status() != MultiplayerPeer.CONNECTION_DISCONNECTED: - stop() - - peer = ENetMultiplayerPeer.new() - var err: Error = peer.create_client(host, port, CHANNELS, 0, 0) - if err != OK: - peer = null - return err - - multiplayer.multiplayer_peer = peer - connection_succeeded.emit() - print("[NetworkManager] Connecting to %s:%d ..." % [host, port]) - - is_client = true - return OK - -# --------------------------------------------------------------------------- -# Player Replication RPCs (broadcast server → all clients) -# --------------------------------------------------------------------------- - -@rpc("authority", "call_local", "reliable") -func broadcast_spawn_player(peer_id: int, pos: Vector3, is_team_a: bool) -> void: - if not multiplayer.is_server(): - print("[NetworkManager] Client received spawn: peer=%d at (%.1f, %.1f)" % [peer_id, pos.x, pos.z]) - remote_player_spawned.emit(peer_id, pos) - -@rpc("authority", "call_local", "reliable") -func broadcast_despawn_player(peer_id: int) -> void: - if not multiplayer.is_server(): - print("[NetworkManager] Client received despawn: peer=%d" % peer_id) - remote_player_despawned.emit(peer_id) - -# --------------------------------------------------------------------------- -# Client Prediction RPCs (Phase 1 — client-side prediction) -# --------------------------------------------------------------------------- - -## Client → Server: send raw input for the given local tick. -## Called by ClientPrediction.on_after_tick() each physics tick. -## Uses ENet channel 0 (unreliable-ordered) for lowest-latency input delivery. -@rpc("unreliable", "any_peer", "call_remote", 0) -func send_client_input(tick: int, input_dict: Dictionary) -> void: - if not multiplayer.is_server(): - return - var peer_id: int = multiplayer.get_remote_sender_id() - client_input_received.emit(peer_id, tick, input_dict) - - -## Server → Client: send authoritative entity snapshot for reconciliation. -## Called by server-side code (e.g. GameServer after each tick). -## entity_id identifies which simulation entity this state belongs to. -## Uses ENet channel 1 (reliable-ordered) so state corrections are not dropped. -@rpc("unreliable", "authority", "call_remote", 1) -func send_server_state(entity_id: int, snapshot_dict: Dictionary) -> void: - if multiplayer.is_server(): - return - server_state_received.emit(entity_id, snapshot_dict) - - -# --------------------------------------------------------------------------- -# Event handlers -# --------------------------------------------------------------------------- - -func _on_peer_connected(id: int) -> void: - print("[NetworkManager] Peer connected: %d" % id) - player_connected.emit(id) - -func _on_peer_disconnected(id: int) -> void: - print("[NetworkManager] Peer disconnected: %d" % id) - player_disconnected.emit(id) - -func _process(_delta: float) -> void: - pass - -func _exit_tree() -> void: - stop() diff --git a/scripts/network/network_manager.gd.uid b/scripts/network/network_manager.gd.uid deleted file mode 100644 index fcf41cd..0000000 --- a/scripts/network/network_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://crq322sfr42al diff --git a/scripts/network/player.gd b/scripts/network/player.gd deleted file mode 100644 index 7f08cb5..0000000 --- a/scripts/network/player.gd +++ /dev/null @@ -1,435 +0,0 @@ -## Player — netfox rollback-aware player with client-prediction + rollback. -## -## Extends CharacterBody3D directly for full FPS movement with acceleration, -## slopes, crouch, sprint, and jump. -## -## netfox integration: -## - RollbackSynchronizer for deterministic state sync -## - Position state synced via state_properties -## - Input gathered via PlayerNetInput child (_gather()) -## - TickInterpolator for smooth remote player visuals -## -## Team & Round integration: -## team_id: 0 = Team A, 1 = Team B -## mark_dead() / mark_alive() update is_alive (replicated via state_properties) - -extends CharacterBody3D - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Walk speed in units/sec (used inside _rollback_tick / _physics_process). -@export var movement_speed: float = 5.0 - -# --- Standalone movement parameters (used when netfox is not active) --- -@export var local_walk_speed: float = 5.0 -@export var local_sprint_speed: float = 8.0 -@export var local_crouch_speed: float = 2.5 -@export var local_jump_velocity: float = 4.5 -@export var local_gravity: float = 15.0 -@export var local_acceleration: float = 12.0 - -# --------------------------------------------------------------------------- -# Internal look state (for PlayerNetInput yaw/pitch getters) -# --------------------------------------------------------------------------- -var _yaw: float = 0.0 -var _pitch: float = 0.0 - -# --------------------------------------------------------------------------- -# Replicated State — tracked by RollbackSynchronizer state_properties -# --------------------------------------------------------------------------- - -## Peer ID of the owning client. -var peer_id: int = -1 -## Team assignment: 0 = Team A, 1 = Team B, -1 = unassigned. -@export var team_id: int = -1 -## Whether this player is alive. -@export var is_alive: bool = true -## Whether this player is in spectator mode. -@export var is_spectating: bool = false -## Current spectate target peer ID. -@export var spectate_target_id: int = 0 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## True for the local player instance. -var is_local: bool = false -## True if this is a client-controlled player (not server). -var is_client_controlled: bool = false -## Cached peer ID extracted from node name. -var _cached_peer_id: int = -1 - -# --------------------------------------------------------------------------- -# Netfox node references -# --------------------------------------------------------------------------- - -## RollbackSynchronizer for deterministic state sync. -var _rollback_sync: Node = null - -# --------------------------------------------------------------------------- -# Look state getters (for PlayerNetInput._gather()) -# --------------------------------------------------------------------------- - -func get_current_yaw() -> float: - return _yaw - -func get_current_pitch() -> float: - return _pitch - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Determine local player status - is_local = multiplayer.get_unique_id() == multiplayer.get_multiplayer_authority() - - if is_local: - is_client_controlled = not multiplayer.is_server() - if is_client_controlled: - print("[Player] Local player (client-controlled): %d" % multiplayer.get_unique_id()) - - # Ensure PlayerNetInput child exists (belt + suspenders with scene) - _ensure_input_node() - - # Set up RollbackSynchronizer - var has_rollback := _setup_rollback_synchronizer() - - # Set up TickInterpolator for remote players - _setup_tick_interpolator() - - if has_rollback: - # RollbackSynchronizer handles ticks — disable standard processing - if not is_local: - set_process(false) - set_physics_process(false) - print("[Player] Remote player: %d (authority: %d) — rollback sync" % [ - multiplayer.get_unique_id(), multiplayer.get_multiplayer_authority()]) - else: - # No RollbackSynchronizer (headless/server mode or exported build). - # Enable _physics_process as fallback simulation. - set_physics_process(true) - # Enable _input for mouse look when this is the local player - set_process_input(is_local) - print("[Player] Player %d — rollback not available, using fallback physics" % multiplayer.get_unique_id()) - -# --------------------------------------------------------------------------- -# Input (mouse look) — used only in fallback mode (no rollback sync) -# --------------------------------------------------------------------------- - -## Mouse look variables for fallback mode. -var _mouse_look_sensitivity: float = 0.003 -var _mouse_look_invert_y: bool = false -var _mouse_captured: bool = false - -## Handle mouse input for looking around in fallback mode. -## Only active when set_process_input(true) was called in _ready. -func _input(event: InputEvent) -> void: - if not is_local or _rollback_sync != null: - return - - # Mouse look - if event is InputEventMouseMotion and _mouse_captured: - var rel: Vector2 = event.relative - _yaw -= rel.x * _mouse_look_sensitivity - var invert: float = -1.0 if _mouse_look_invert_y else 1.0 - _pitch += rel.y * _mouse_look_sensitivity * invert - _pitch = clamp(_pitch, deg_to_rad(-89.0), deg_to_rad(89.0)) - - # Click to capture mouse - if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT and event.pressed: - if not _mouse_captured: - _capture_mouse_fallback(true) - -func _unhandled_input(event: InputEvent) -> void: - if not is_local or _rollback_sync != null: - return - # Escape to release mouse - if event.is_action_pressed("ui_cancel"): - _capture_mouse_fallback(false) - -func _capture_mouse_fallback(capture: bool) -> void: - if capture == _mouse_captured: - return - _mouse_captured = capture - if capture: - Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) - else: - Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) - -# --------------------------------------------------------------------------- -# Fallback physics — used when RollbackSynchronizer is not available -# (e.g., headless dedicated server without netfox singletons, or exported builds). -# --------------------------------------------------------------------------- -func _physics_process(delta: float) -> void: - # Only run fallback if RollbackSynchronizer is NOT handling ticks - if _rollback_sync != null: - return - - # Gather current frame input into PlayerNetInput (standalone mode) - var input_node = _find_input_node() - if input_node != null and input_node.has_method(&"_gather"): - input_node._gather() - - # Read input from PlayerNetInput (if we're the authority) - if input_node == null: - return - - var dir: Vector3 = input_node.get(&"move_direction") - var yaw: float = input_node.get(&"look_yaw") - var sprint: bool = input_node.get(&"sprint") - var crouch: bool = input_node.get(&"crouch") - - rotation.y = yaw - _yaw = yaw - - if dir != Vector3.ZERO: - var wish_dir := (transform.basis * dir).normalized() - var target_speed: float = movement_speed - if sprint: - target_speed *= 1.6 - if crouch: - target_speed *= 0.5 - position += wish_dir * target_speed * delta - -# --------------------------------------------------------------------------- -# RollbackSynchronizer setup -# --------------------------------------------------------------------------- - -## Create and configure a RollbackSynchronizer child node. -## Returns true if the synchronizer was successfully created. -func _setup_rollback_synchronizer() -> bool: - if not Engine.has_singleton(&"NetworkRollback"): - push_warning("[Player] netfox NetworkRollback not available — running without rollback sync") - return false - - # Check if we already have a RollbackSynchronizer child - for child in get_children(): - if child.has_method(&"get_state_properties") or child.name == "RollbackSynchronizer": - _rollback_sync = child - print("[Player] Found existing RollbackSynchronizer child") - return true - - var rs = _create_rollback_sync_node() - if rs == null: - push_warning("[Player] Could not create RollbackSynchronizer — netfox types not available") - return false - - rs.root = self - - # State properties — synced from server to clients - rs.state_properties = [ - "position", - "is_alive", - "team_id", - "spectate_target_id", - ] - - # Input properties — sent from client to server - rs.input_properties = [ - "PlayerNetInput/move_direction", - "PlayerNetInput/look_yaw", - "PlayerNetInput/look_pitch", - "PlayerNetInput/jump", - "PlayerNetInput/sprint", - "PlayerNetInput/crouch", - "PlayerNetInput/shoot", - "PlayerNetInput/aim", - ] - - rs.enable_prediction = true - rs.enable_input_broadcast = false # Only send input to server (not broadcast) - rs.full_state_interval = 24 - rs.diff_ack_interval = 4 - - add_child(rs, true) - _rollback_sync = rs - print("[Player] RollbackSynchronizer added to player %d" % multiplayer.get_unique_id()) - return true - -## Create a RollbackSynchronizer node via preloaded script (avoids class_name issues). -func _create_rollback_sync_node(): - var RS = load("res://addons/netfox/rollback/rollback-synchronizer.gd") - if RS == null: - return null - var rs = RS.new() - rs.name = "RollbackSynchronizer" - return rs - -# --------------------------------------------------------------------------- -# TickInterpolator setup -# --------------------------------------------------------------------------- - -func _setup_tick_interpolator() -> void: - # Only create TickInterpolator if netfox is available (avoids headless parse errors) - if not Engine.has_singleton(&"NetworkTime"): - return - - var TIScript = load("res://addons/netfox/tick-interpolator.gd") - if TIScript == null: - return - - var ti = get_node_or_null("TickInterpolator") - if ti == null: - ti = TIScript.new() - ti.name = "TickInterpolator" - add_child(ti, true) - - ti.root = self - ti.enabled = not is_local # Only interpolate remote players - ti.properties = [ - "position", - "rotation", - ] - ti.enable_recording = false # RollbackSynchronizer pushes state - print("[Player] TickInterpolator %s (local=%s)" % ["enabled" if ti.enabled else "disabled", is_local]) - -# --------------------------------------------------------------------------- -# PlayerNetInput creation -# --------------------------------------------------------------------------- - -## Ensure a PlayerNetInput child node exists. Creates one dynamically if needed. -func _ensure_input_node() -> void: - if _find_input_node() != null: - return - var pni_script = load("res://scripts/network/player_net_input.gd") - if pni_script == null: - push_warning("[Player] Could not load PlayerNetInput script") - return - var pni = pni_script.new() - pni.name = "PlayerNetInput" - add_child(pni, true) - print("[Player] Created PlayerNetInput dynamically") - -# --------------------------------------------------------------------------- -# Rollback tick — called by RollbackSynchronizer every network tick -# --------------------------------------------------------------------------- - -## Called by RollbackSynchronizer for deterministic state sync. -## On the server: processes all inputs authoritatively. -## On the client: predicts locally, state corrected by server snapshots. -func _rollback_tick(delta: float, tick: int, is_fresh: bool) -> void: - if not is_fresh and not _is_rollback_enabled(): - return - - var input_node = _find_input_node() - if input_node == null: - return - - var dir: Vector3 = input_node.get(&"move_direction") - var yaw: float = input_node.get(&"look_yaw") - var sprint: bool = input_node.get(&"sprint") - var crouch: bool = input_node.get(&"crouch") - - # Apply yaw rotation - rotation.y = yaw - _yaw = yaw - - # Apply movement - if dir != Vector3.ZERO: - var wish_dir := (transform.basis * dir).normalized() - var target_speed: float = movement_speed - if sprint: - target_speed *= 1.6 - if crouch: - target_speed *= 0.5 - position += wish_dir * target_speed * delta - -func _is_rollback_enabled() -> bool: - var nr = _get_netrollback_singleton() - if nr == null: - return false - return nr.get(&"enabled") - -func _get_netrollback_singleton(): - if Engine.has_singleton(&"NetworkRollback"): - return Engine.get_singleton(&"NetworkRollback") - return null - -# --------------------------------------------------------------------------- -# Input node helper -# --------------------------------------------------------------------------- - -func _find_input_node(): - for child in get_children(): - if child.name == "PlayerNetInput": - return child - return null - -# --------------------------------------------------------------------------- -# Snap player to position after rollback reconciliation -# --------------------------------------------------------------------------- - -func snap_to_position(pos: Vector3, yaw: float) -> void: - global_position = pos - _yaw = yaw - rotation.y = yaw - -# --------------------------------------------------------------------------- -# Round system: team / life management -# --------------------------------------------------------------------------- - -func set_team(new_team: int) -> void: - team_id = new_team - -func apply_damage(amount: int, attacker_id: int = -1, weapon_id: int = 0) -> void: - if not is_alive: - return - print("[Player] %s takes %d damage from peer %d (weapon %d)" % [ - name, amount, attacker_id, weapon_id]) - -func _get_peer_id() -> int: - if _cached_peer_id >= 0: - return _cached_peer_id - var node_name: String = str(name) - if node_name.begins_with("Player_"): - _cached_peer_id = node_name.trim_prefix("Player_").to_int() - return _cached_peer_id - if node_name.is_valid_int(): - _cached_peer_id = node_name.to_int() - return _cached_peer_id - _cached_peer_id = multiplayer.get_multiplayer_authority() - return _cached_peer_id - -func mark_dead(killer_id: int = 0, weapon: String = "unknown") -> void: - if not is_alive: - return - is_alive = false - if multiplayer.is_server(): - var pid: int = _get_peer_id() - var round_mgr: Node = _find_round_manager() - if round_mgr and round_mgr.has_method(&"on_player_death"): - round_mgr.on_player_death(pid, killer_id, weapon) - -func mark_alive() -> void: - is_alive = true - is_spectating = false - spectate_target_id = 0 - -func set_spectate_target(target_id: int) -> void: - spectate_target_id = target_id - is_spectating = target_id > 0 or not is_alive - -func _find_round_manager() -> Node: - if Engine.has_singleton(&"RoundManager"): - return Engine.get_singleton(&"RoundManager") - var root: Node = get_tree().root if get_tree() else null - if not root: - return null - for child in root.get_children(): - var found: Node = _find_recursive(child) - if found: - return found - return null - -func _find_recursive(node: Node) -> Node: - if node.name == "RoundManager" or (node.has_method(&"get_state_name") and node.has_method(&"register_player")): - return node - for child in node.get_children(): - var found: Node = _find_recursive(child) - if found: - return found - return null diff --git a/scripts/network/player.gd.uid b/scripts/network/player.gd.uid deleted file mode 100644 index c1e33d4..0000000 --- a/scripts/network/player.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c5b3teqp6yha diff --git a/scripts/network/player_interpolator.gd b/scripts/network/player_interpolator.gd deleted file mode 100644 index 94cf70f..0000000 --- a/scripts/network/player_interpolator.gd +++ /dev/null @@ -1,179 +0,0 @@ -## PlayerInterpolator — Headless-safe visual interpolation for rolled-back players. -## -## Mirrors netfox's TickInterpolator pattern but with full headless/export guards: -## - Checks for NetworkTime singleton before connecting -## - Gracefully no-ops when singletons are absent (dedicated server without netfox) -## - Falls back to netfox TickInterpolator's Interpolators for type-aware lerp -## -## Architecture: -## _before_tick_loop → snapshot current → mark teleport end -## _after_tick_loop → push_state() → shift (from ← to, to ← current) -## _process(delta) → interpolate(from, to, tick_factor) -## -## Properties interpolated: -## position (Vector3), rotation (Vector3 — Euler angles) - -extends Node - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## If true, interpolation is active. Set false to disable (no-ops). -@export var enabled: bool = true - -## If true, teleport on first state (instant snap, no fade-in). -@export var snap_initial: bool = true - -## Root node whose properties are interpolated. Defaults to parent. -@export var root: Node3D = null - -## Interpolation alpha smoothing (0.0=linear raw, >0=exponential smoothing). -## Higher values make the interpolation lag behind more smoothly. -@export_range(0.0, 1.0, 0.05) var smoothing: float = 0.5 - -# --------------------------------------------------------------------------- -# Internal state -# --------------------------------------------------------------------------- - -## Previous state snapshot (source of interpolation). -var _from_pos: Vector3 = Vector3.ZERO -var _from_rot: Vector3 = Vector3.ZERO - -## Target state snapshot (destination of interpolation). -var _to_pos: Vector3 = Vector3.ZERO -var _to_rot: Vector3 = Vector3.ZERO - -## Whether we have at least two snapshots (can interpolate). -var _has_state: bool = false - -## Whether the last tick was a teleport (snap, don't interpolate). -var _is_teleporting: bool = false - -## Whether netfox singletons were found at startup. -var _netfox_available: bool = false -## Stored NetworkTime singleton reference (avoids bare identifier references). -var _nt: Node = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - if Engine.is_editor_hint(): - return - - # Resolve root node - if root == null: - root = get_parent() as Node3D - if root == null: - push_warning("[PlayerInterpolator] No root node found — interpolation disabled") - enabled = false - return - - # Check if netfox NetworkTime is available - _netfox_available = Engine.has_singleton(&"NetworkTime") - if _netfox_available: - _nt = Engine.get_singleton(&"NetworkTime") - _nt.before_tick_loop.connect(_on_before_tick_loop) - _nt.after_tick_loop.connect(_on_after_tick_loop) - print("[PlayerInterpolator] Connected to netfox NetworkTime — interpolation active") - else: - print("[PlayerInterpolator] netfox NetworkTime not available — interpolation disabled in headless/server mode") - enabled = false - return - - # Teleport to initial state - if snap_initial: - await get_tree().process_frame - _teleport() - -func _exit_tree() -> void: - if Engine.is_editor_hint(): - return - if _nt != null: - if _nt.before_tick_loop.is_connected(_on_before_tick_loop): - _nt.before_tick_loop.disconnect(_on_before_tick_loop) - if _nt.after_tick_loop.is_connected(_on_after_tick_loop): - _nt.after_tick_loop.disconnect(_on_after_tick_loop) - -# --------------------------------------------------------------------------- -# Process — interpolate between snapshots each frame -# --------------------------------------------------------------------------- - -func _process(_delta: float) -> void: - if not enabled or not _has_state or _is_teleporting or root == null: - return - - # Get interpolation factor from NetworkTime (0.0 = just after tick, 1.0 = just before next tick) - var factor: float = 0.0 - if _nt != null: - factor = _nt.tick_factor - - # Apply exponential smoothing to the interpolation alpha - if smoothing > 0.0: - factor = lerpf(0.0, factor, 1.0 - smoothing) - - # Interpolate position - root.position = _from_pos.lerp(_to_pos, factor) - - # Interpolate rotation (Euler — simple lerp per axis) - var rot_x := lerpf(_from_rot.x, _to_rot.x, factor) - var rot_y := lerpf(_from_rot.y, _to_rot.y, factor) - var rot_z := lerpf(_from_rot.z, _to_rot.z, factor) - root.rotation = Vector3(rot_x, rot_y, rot_z) - -# --------------------------------------------------------------------------- -# Netfox tick loop hooks -# --------------------------------------------------------------------------- - -## Called before the tick loop starts. Records the current state as the -## incoming snapshot, preparing for push_state() after the tick. -func _on_before_tick_loop() -> void: - _is_teleporting = false - -## Called after the tick loop. Rotates the state snapshots: old target -## becomes new source, current root state becomes new target. -func _on_after_tick_loop() -> void: - if not enabled or root == null: - return - - # Shift state snapshots: from ← to, to ← current - _from_pos = _to_pos - _from_rot = _to_rot - - _to_pos = root.position - _to_rot = root.rotation - - _has_state = true - -# --------------------------------------------------------------------------- -# Teleport — snap to current state without interpolation -# --------------------------------------------------------------------------- - -## Teleport: set both source and target to current state, disable -## interpolation for one cycle. -func _teleport() -> void: - if root == null: - return - _is_teleporting = true - var pos := root.position - var rot := root.rotation - _from_pos = pos - _from_rot = rot - _to_pos = pos - _to_rot = rot - _has_state = true - -## Force a teleport from external code (e.g., after spawn). -func force_teleport() -> void: - _teleport() - -## Reset state (for pooling / re-use). -func reset() -> void: - _has_state = false - _is_teleporting = false - _from_pos = Vector3.ZERO - _from_rot = Vector3.ZERO - _to_pos = Vector3.ZERO - _to_rot = Vector3.ZERO diff --git a/scripts/network/player_interpolator.gd.uid b/scripts/network/player_interpolator.gd.uid deleted file mode 100644 index 14f52a5..0000000 --- a/scripts/network/player_interpolator.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b6g516uewtm8p diff --git a/scripts/network/player_net_input.gd b/scripts/network/player_net_input.gd deleted file mode 100644 index 529e642..0000000 --- a/scripts/network/player_net_input.gd +++ /dev/null @@ -1,133 +0,0 @@ -## PlayerNetInput — netfox-compatible input gathering for tactical-shooter. -## -## Extends Node directly (avoids headless class_name issues with BaseNetInput) -## but follows the same pattern: connects to NetworkTime.before_tick_loop to -## call _gather() on each tick. -## -## RollbackSynchronizer references the exported properties as input_properties. -## -## Usage: -## Place as a child of the Player (Node3D). The parent node's -## RollbackSynchronizer will pick up the input_properties paths. -## -## Set hitscan_manager_ref to the RollbackHitscanManager child so that -## _gather() can call record_fire() for RewindableAction-based fire tracking. - -extends Node - -# --------------------------------------------------------------------------- -# Input state — read by RollbackSynchronizer as input_properties -# --------------------------------------------------------------------------- - -## Movement direction in local space (normalized, or zero). -@export var move_direction: Vector3 = Vector3.ZERO - -## Mouse look: yaw (horizontal, radians). -@export var look_yaw: float = 0.0 - -## Mouse look: pitch (vertical, radians). -@export var look_pitch: float = 0.0 - -## Jump pressed this tick. -@export var jump: bool = false - -## Sprint toggle active. -@export var sprint: bool = false - -## Crouch toggle active. -@export var crouch: bool = false - -## Shoot pressed this tick. -@export var shoot: bool = false - -## Aim-down-sights pressed. -@export var aim: bool = false - -# --------------------------------------------------------------------------- -# RollbackHitscanManager reference (set by player.gd) -# --------------------------------------------------------------------------- -## Reference to the RollbackHitscanManager for RewindableAction fire tracking. -var hitscan_mgr_ref: Node = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Same pattern as netfox's BaseNetInput: - # connect to NetworkTime.before_tick_loop to gather input each tick - # Use Engine.get_singleton instead of direct NetworkTime reference to - # avoid headless parse errors (NetworkTime is an editor-plugin type). - var nt = Engine.get_singleton(&"NetworkTime") if Engine.has_singleton(&"NetworkTime") else null - if nt: - nt.before_tick_loop.connect(_on_before_tick_loop) - else: - push_warning("[PlayerNetInput] netfox NetworkTime not available — " + - "input gathering disabled") - -func _on_before_tick_loop() -> void: - if is_multiplayer_authority(): - _gather() - -# --------------------------------------------------------------------------- -# Input gathering (called before each tick on the authority peer) -# --------------------------------------------------------------------------- - -func _gather() -> void: - # Movement direction - var dir := Vector3.ZERO - if Input.is_action_pressed(&"move_forward") or Input.is_action_pressed(&"move_up"): - dir.z -= 1.0 - if Input.is_action_pressed(&"move_backward") or Input.is_action_pressed(&"move_down"): - dir.z += 1.0 - if Input.is_action_pressed(&"move_left"): - dir.x -= 1.0 - if Input.is_action_pressed(&"move_right"): - dir.x += 1.0 - if dir.length_squared() > 0.0: - dir = dir.normalized() - move_direction = dir - - # Read look direction from parent's FPSCharacterController if available - var parent := get_parent() - if parent and parent.has_method(&"get_current_yaw"): - look_yaw = parent.get_current_yaw() - if parent and parent.has_method(&"get_current_pitch"): - look_pitch = parent.get_current_pitch() - - # Action inputs - jump = Input.is_action_just_pressed(&"jump") - sprint = Input.is_action_pressed(&"sprint") - crouch = Input.is_action_pressed(&"crouch") - shoot = Input.is_action_pressed(&"shoot") - aim = Input.is_action_pressed(&"aim") - - # ----------------------------------------------------------------------- - # Fire recording for RewindableAction rollback sync - # ----------------------------------------------------------------------- - # When the client fires, record the shot in the RollbackHitscanManager's - # RewindableAction. This propagates to the server via netfox sync so - # the server can process the lag-compensated raycast at the correct tick. - # - # We compute the eye position and look direction at gather time for - # the RewindableAction context. The server also reconstructs these from - # the synced state (position + yaw/pitch) for authoritative hit detection. - if shoot and hitscan_mgr_ref != null and hitscan_mgr_ref.has_method(&"record_fire"): - var current_tick: int =_get_current_tick() - var eye_pos: Vector3 = parent.global_position + Vector3(0, 1.7, 0) if parent else Vector3.ZERO - var look_dir: Vector3 = _yaw_pitch_to_dir(look_yaw, look_pitch) - hitscan_mgr_ref.record_fire(current_tick, eye_pos, look_dir) - -## Get the current network tick, or 0 if NetworkTime is not available. -func _get_current_tick() -> int: - var nt = Engine.get_singleton(&"NetworkTime") if Engine.has_singleton(&"NetworkTime") else null - if nt != null and nt.has_method(&"get_tick"): - return nt.get_tick() - if nt != null: - return nt.tick if nt.get("tick") != null else 0 - return 0 - -## Convert yaw/pitch to a forward direction vector. -static func _yaw_pitch_to_dir(yaw: float, pitch: float) -> Vector3: - var cp := cos(pitch) - return Vector3(cp * sin(yaw), sin(pitch), cp * cos(yaw)) diff --git a/scripts/network/player_net_input.gd.netfox-wip b/scripts/network/player_net_input.gd.netfox-wip deleted file mode 100644 index 8d961c1..0000000 --- a/scripts/network/player_net_input.gd.netfox-wip +++ /dev/null @@ -1,76 +0,0 @@ -## PlayerNetInput — netfox BaseNetInput subclass for tactical-shooter. -## -## This node lives under the Player scene and gathers input each network -## tick. RollbackSynchronizer references its properties in `input_properties`. -## -## Usage: -## Place as a child of the Player (CharacterBody3D or Node3D). -## The RollbackSynchronizer on the player's parent node will call -## _gather() before each tick, reading these exported properties. - -extends BaseNetInput -class_name PlayerNetInput - -# --------------------------------------------------------------------------- -# Input state — read by RollbackSynchronizer as input_properties -# These are set in _gather() on the authority peer before every tick. -# --------------------------------------------------------------------------- - -## Movement direction in local space (normalized, or zero). -@export var move_direction: Vector3 = Vector3.ZERO - -## Mouse look: yaw (horizontal, radians). -@export var look_yaw: float = 0.0 - -## Mouse look: pitch (vertical, radians). -@export var look_pitch: float = 0.0 - -## Jump pressed this tick. -@export var jump: bool = false - -## Sprint toggle active. -@export var sprint: bool = false - -## Crouch toggle active. -@export var crouch: bool = false - -## Shoot pressed this tick. -@export var shoot: bool = false - -## Aim-down-sights pressed. -@export var aim: bool = false - -# --------------------------------------------------------------------------- -# Input gathering (called before each tick on the authority peer) -# --------------------------------------------------------------------------- - -func _gather() -> void: - # Movement direction - var dir := Vector3.ZERO - if Input.is_action_pressed(&"move_forward") or Input.is_action_pressed(&"move_up"): - dir.z -= 1.0 - if Input.is_action_pressed(&"move_backward") or Input.is_action_pressed(&"move_down"): - dir.z += 1.0 - if Input.is_action_pressed(&"move_left"): - dir.x -= 1.0 - if Input.is_action_pressed(&"move_right"): - dir.x += 1.0 - if dir.length_squared() > 0.0: - dir = dir.normalized() - move_direction = dir - - # Mouse look is handled in fps_character_controller.gd _input() - # and synced here via the character controller's current yaw/pitch. - # If this node has a FPSCharacterController sibling, read from it. - var parent := get_parent() - if parent and parent.has_method(&"get_current_yaw"): - look_yaw = parent.get_current_yaw() - if parent and parent.has_method(&"get_current_pitch"): - look_pitch = parent.get_current_pitch() - - # Action inputs - jump = Input.is_action_just_pressed(&"jump") - sprint = Input.is_action_pressed(&"sprint") - crouch = Input.is_action_pressed(&"crouch") - shoot = Input.is_action_pressed(&"shoot") - aim = Input.is_action_pressed(&"aim") diff --git a/scripts/network/player_net_input.gd.uid b/scripts/network/player_net_input.gd.uid deleted file mode 100644 index 91b3487..0000000 --- a/scripts/network/player_net_input.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://syopmnypsnfo diff --git a/scripts/network/server_main.gd b/scripts/network/server_main.gd deleted file mode 100644 index 6027469..0000000 --- a/scripts/network/server_main.gd +++ /dev/null @@ -1,257 +0,0 @@ -## Server Main — Headless dedicated server entry point. -## -## Runs as `server_main.tscn` which is the project's main scene. -## In headless mode (--headless), this is the only running scene. -## -## On ready: -## 1. Load config (env overrides) -## 2. Load the first map from the config's map rotation -## 3. Start ENet server on the configured port -## 4. Create GameServer and start simulation -## 5. Spawn players on the map using spawn markers -## 6. Broadcast spawn via RPC so clients create visual player nodes -## 7. Log player join/leave and replicate position -## 8. Hitscan weapon with lag compensation runs in GameServer - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -signal player_spawned(peer_id: int) -signal player_despawned(peer_id: int) - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- -@export var player_scene: PackedScene = preload("res://scenes/server/server_player.tscn") - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -var players: Dictionary = {} # peer_id → Node (player instance) -var spawn_points_a: Array[Vector3] = [] # Team A spawns -var spawn_points_b: Array[Vector3] = [] # Team B spawns - -# Game server (drives simulation) -var _game_server: Node = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- -func _ready() -> void: - # Wait for ServerConfig to finish (it loads via call_deferred). - # Check if already loaded to avoid racing the signal. - if ServerConfig and not _server_config_loaded(): - if ServerConfig.has_signal(&"config_loaded"): - await ServerConfig.config_loaded - - # Config driven — ServerConfig singleton loaded at autoload time. - # Allow port override via env var for backwards compatibility - # (container/VPS deployments that set SERVER_PORT). - var effective_port: int = ServerConfig.port - if OS.has_environment("SERVER_PORT"): - effective_port = int(OS.get_environment("SERVER_PORT")) - print("[ServerMain] Port overridden by SERVER_PORT env: %d" % effective_port) - - # Create GameServer (drives the 128Hz simulation + hit detection) - # Use load() instead of preload() so GameServer's dev dependencies - # (weapons, economy, objectives, teams) don't block compilation. - var GameServerClass = load("res://server/scripts/game_server.gd") - if GameServerClass != null and GameServerClass is GDScript: - _game_server = GameServerClass.new() - if _game_server != null: - add_child(_game_server) - # GameServer registers SimulationServer as a singleton on _ready - _game_server.start_simulation() - else: - push_warning("[ServerMain] GameServer instantiation failed") - else: - push_warning("[ServerMain] GameServer class not available — running without simulation server") - - # Check if ServerConfig has finished loading. - - # Instance the map from the config's map rotation - _load_map() - - # Start the ENet server - var err: Error = NetworkManager.start_server(effective_port) - if err != OK: - push_error("[ServerMain] Failed to start server: %s" % error_string(err)) - get_tree().quit(1) - return - - # Connect signals - NetworkManager.player_connected.connect(_on_player_connected) - NetworkManager.player_disconnected.connect(_on_player_disconnected) - - print("[ServerMain] Tactical Shooter server ready") - print("[ServerMain] Port: %d" % effective_port) - print("[ServerMain] Name: \"%s\"" % ServerConfig.server_name) - print("[ServerMain] Tick rate: %d Hz" % ServerConfig.tick_rate) - print("[ServerMain] Maps: %s" % str(ServerConfig.map_list)) - print("[ServerMain] Headless: %s" % (DisplayServer.get_name() == &"headless")) - print("[ServerMain] Spawn pts: Team A=%d, Team B=%d" % [spawn_points_a.size(), spawn_points_b.size()]) - - -## Check if ServerConfig has finished loading. -func _server_config_loaded() -> bool: - return ServerConfig and ServerConfig.has_method(&"get_config_path") and not ServerConfig.get_config_path().is_empty() - -func _exit_tree() -> void: - NetworkManager.stop() - -# --------------------------------------------------------------------------- -# Map loading -# --------------------------------------------------------------------------- -func _load_map() -> void: - # Load the first map from the config's rotation list - var maps_list: Array[String] = ServerConfig.map_list - if maps_list.is_empty(): - push_warning("[ServerMain] Map rotation is empty — running without map geometry") - return - - var first_map_path: String = maps_list[0] - var full_path: String = "res://scenes/map/%s.tscn" % first_map_path - - if not ResourceLoader.exists(full_path): - push_error("[ServerMain] Map scene not found: %s" % full_path) - return - - var map_scene_res: PackedScene = load(full_path) - var map_instance: Node = map_scene_res.instantiate() - map_instance.name = "Map_%s" % first_map_path - add_child(map_instance, true) - - print("[ServerMain] Loaded map: %s" % first_map_path) - - # Collect spawn markers from the map scene - _collect_spawn_points(map_instance) - -## Walk the map scene looking for Marker3D nodes named "SpawnA*" and "SpawnB*". -func _collect_spawn_points(map_root: Node) -> void: - _collect_spawn_points_recursive(map_root) - - # Fallback: only after full recursion, if still empty - if spawn_points_a.is_empty() and spawn_points_b.is_empty(): - print("[ServerMain] No spawn markers found — using default positions") - spawn_points_a.append(Vector3(-16, 0, -4)) - spawn_points_a.append(Vector3(-16, 0, 4)) - spawn_points_b.append(Vector3(16, 0, -4)) - spawn_points_b.append(Vector3(16, 0, 4)) - -func _collect_spawn_points_recursive(node: Node) -> void: - if node is Marker3D: - var name_lower: String = node.name.to_lower() - if name_lower.begins_with("spawna") or name_lower.begins_with("spawn_a"): - spawn_points_a.append(node.position) - elif name_lower.begins_with("spawnb") or name_lower.begins_with("spawn_b"): - spawn_points_b.append(node.position) - - for child in node.get_children(): - _collect_spawn_points_recursive(child) - -# --------------------------------------------------------------------------- -# Player management -# --------------------------------------------------------------------------- -func _on_player_connected(peer_id: int) -> void: - print("[ServerMain] Player joined: %d. Total: %d" % [peer_id, multiplayer.get_peers().size() + 1]) - _spawn_player(peer_id) - -func _on_player_disconnected(peer_id: int) -> void: - print("[ServerMain] Player left: %d" % peer_id) - _despawn_player(peer_id) - -func _spawn_player(peer_id: int) -> void: - # Create player node on the server - var player: Node - if player_scene: - player = player_scene.instantiate() - else: - player = Node3D.new() - player.set_script(preload("res://scripts/network/player.gd")) - - player.name = "Player_%d" % peer_id - player.set_multiplayer_authority(peer_id) - - # Assign spawn position — alternate between Team A and Team B spawns - var is_team_a: bool = (peer_id % 2) == 0 - var pool: Array[Vector3] = spawn_points_a if is_team_a else spawn_points_b - var spawn_pos: Vector3 = pool[peer_id % pool.size()] if pool.size() > 0 else Vector3.ZERO - spawn_pos.y = 0.0 - player.position = spawn_pos - - add_child(player, true) - players[peer_id] = player - player_spawned.emit(peer_id) - - # Register with GameServer to get a simulation entity - if _game_server != null and _game_server.has_method(&"spawn_player_entity"): - var entity_id: int = _game_server.spawn_player_entity(peer_id, spawn_pos) - if entity_id >= 0: - # Store entity_id on player node for reference - player.set_meta(&"entity_id", entity_id) - # Register with lag compensation and damage processor - # (player is a Node3D, which is a valid argument for register_player_node) - if _game_server.has_method(&"register_player_node"): - _game_server.register_player_node(entity_id, player) - print("[ServerMain] Player %d assigned entity %d" % [peer_id, entity_id]) - - # Broadcast spawn to all clients so they create a visual player node - NetworkManager.broadcast_spawn_player.rpc(peer_id, spawn_pos, is_team_a) - - print("[ServerMain] Spawned player %d at (%.1f, %.1f) team=%s" % [peer_id, spawn_pos.x, spawn_pos.z, "A" if is_team_a else "B"]) - -func _despawn_player(peer_id: int) -> void: - if peer_id in players: - var player: Node = players[peer_id] - - # Despawn entity from GameServer - if _game_server != null and player.has_meta(&"entity_id"): - var entity_id: int = player.get_meta(&"entity_id") - # Unregister from lag compensation and damage processor first - if _game_server.has_method(&"unregister_player_node"): - _game_server.unregister_player_node(entity_id) - _game_server.despawn_player_entity(entity_id) - - player.queue_free() - players.erase(peer_id) - player_despawned.emit(peer_id) - - # Broadcast despawn to all clients - NetworkManager.broadcast_despawn_player.rpc(peer_id) - - print("[ServerMain] Despawned player %d" % peer_id) - else: - # Still broadcast even if server doesn't have the player - NetworkManager.broadcast_despawn_player.rpc(peer_id) - -# --------------------------------------------------------------------------- -# Server tick (128 Hz) -# --------------------------------------------------------------------------- -func _physics_process(delta: float) -> void: - if not NetworkManager.is_server: - return - - # Future: authoritative physics tick, state broadcast, etc. - pass - -# --------------------------------------------------------------------------- -# Client position replication (receives from FPS character clients) -# --------------------------------------------------------------------------- -@rpc("unreliable", "any_peer") -func _send_position(pos: Vector3) -> void: - # Called by remote clients to update their position on the server. - # Broadcast to all other peers so they see the player move. - var peer_id: int = multiplayer.get_remote_sender_id() - if peer_id in players: - players[peer_id].position = pos - # Re-broadcast to all other peers - _replicate_position.rpc(pos, peer_id) - -@rpc("unreliable", "authority") -func _replicate_position(pos: Vector3, exclude_peer: int) -> void: - # All clients receive this and update the specific player's position. - # We need to find which remote player this belongs to by excluding our own. - # For now, the non-authority clients will need to filter — handled in client_main.gd - pass diff --git a/scripts/network/server_main.gd.uid b/scripts/network/server_main.gd.uid deleted file mode 100644 index 1fce958..0000000 --- a/scripts/network/server_main.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dtwj2vairvxnt diff --git a/scripts/network/snapshot.gd b/scripts/network/snapshot.gd deleted file mode 100644 index 8202e62..0000000 --- a/scripts/network/snapshot.gd +++ /dev/null @@ -1,60 +0,0 @@ -## Snapshot — Lightweight world-state snapshot for client prediction & reconciliation. -## -## Stores a point-in-time record of a player's physical state. -## Used by ClientPrediction to build its ring buffer, send inputs, -## and reconcile against authoritative server state. -## -## Serialization: to_dict() / from_dict() for RPC transport over ENet. -class_name Snapshot -extends RefCounted - -# --------------------------------------------------------------------------- -# Fields -# --------------------------------------------------------------------------- -## Server tick / local tick number this snapshot corresponds to. -var timestamp: int = 0 - -## World-space position of the character's feet / body origin. -var position: Vector3 = Vector3.ZERO - -## Character body rotation as a quaternion (avoids gimbal lock in interpolation). -var rotation: Quaternion = Quaternion.IDENTITY - -## Linear velocity in world space. -var velocity: Vector3 = Vector3.ZERO - -## Whether the character was on the ground (is_on_floor()) at capture time. -var grounded: bool = false - -# --------------------------------------------------------------------------- -# Serialization -# --------------------------------------------------------------------------- - -## Convert to a Dictionary suitable for RPC transfer. -## Arrays are used instead of Vector3/Quaternion because Godot's RPC -## serialization handles basic types more reliably. -func to_dict() -> Dictionary: - return { - "timestamp": timestamp, - "position": [position.x, position.y, position.z], - "rotation": [rotation.x, rotation.y, rotation.z, rotation.w], - "velocity": [velocity.x, velocity.y, velocity.z], - "grounded": grounded, - } - -## Deserialize from a Dictionary produced by to_dict(). -static func from_dict(data: Dictionary) -> Snapshot: - var s = Snapshot.new() - s.timestamp = data.get("timestamp", 0) - - var p: Array = data.get("position", [0.0, 0.0, 0.0]) - s.position = Vector3(p[0], p[1], p[2]) - - var r: Array = data.get("rotation", [0.0, 0.0, 0.0, 1.0]) - s.rotation = Quaternion(r[0], r[1], r[2], r[3]) - - var v: Array = data.get("velocity", [0.0, 0.0, 0.0]) - s.velocity = Vector3(v[0], v[1], v[2]) - - s.grounded = data.get("grounded", false) - return s diff --git a/scripts/network/snapshot.gd.uid b/scripts/network/snapshot.gd.uid deleted file mode 100644 index ef25143..0000000 --- a/scripts/network/snapshot.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://vxt3rh3f2j35 diff --git a/scripts/teams/spawn_manager.gd b/scripts/teams/spawn_manager.gd deleted file mode 100644 index 58485a7..0000000 --- a/scripts/teams/spawn_manager.gd +++ /dev/null @@ -1,237 +0,0 @@ -## SpawnManager — Spawn point selection for team-based spawning. -## -## Scans the current scene for Marker3D nodes in team-specific groups -## ("spawn_points_ct", "spawn_points_t") and selects valid spawns. -## -## Spawn validity rules: -## - No enemies within a configurable minimum distance (proximity_check_radius) -## - Fallback: first available spawn if all are contested -## - Preference: farthest from known enemy positions -## -## Usage: -## var sm = SpawnManager.new() -## add_child(sm) -## sm.team_manager = get_node("/root/TeamManager") -## var spawn_pos: Vector3 = sm.select_spawn(player_id, Team.COUNTER_TERRORIST) -## -## Spawn points are found at runtime by scanning scene groups. -## Map authors place Marker3D nodes and add them to the appropriate group. - -extends Node -class_name SpawnManager - -# Preload for headless compat -const _td_ref = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Minimum distance (in Godot units) from any enemy player for a spawn to be valid. -@export var proximity_check_radius: float = 15.0 - -## If true, fall back to first available spawn when all are contested. -@export var allow_fallback: bool = true - -## Group name for Counter-Terrorist spawn markers. -@export var ct_spawn_group: String = "spawn_points_ct" - -## Group name for Terrorist spawn markers. -@export var t_spawn_group: String = "spawn_points_t" - -# --------------------------------------------------------------------------- -# Dependencies -# --------------------------------------------------------------------------- - -## Reference to the TeamManager singleton or node. -## If not set, spawn safety checks are skipped (all spawns considered valid). -var team_manager: TeamManager = null - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Cached spawn points for the current map. -## Keyed by group name → Array of Marker3D nodes. -var _spawn_points: Dictionary = {} - -## Tracks which player last occupied which spawn (for spread). -## player_id (int) → Marker3D global position -var _last_spawn_positions: Dictionary = {} - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## (Re)scan the scene tree for spawn point markers. -## Call this when the map changes. -func refresh_spawn_points() -> void: - _spawn_points.clear() - var groups_to_scan: Array[String] = [ct_spawn_group, t_spawn_group] - - for group_name in groups_to_scan: - var markers: Array[Marker3D] = [] - var nodes: Array[Node] = get_tree().get_nodes_in_group(group_name) - for node in nodes: - if node is Marker3D: - markers.append(node as Marker3D) - _spawn_points[group_name] = markers - - print("[SpawnManager] Refreshed spawn points — CT: %d, T: %d" % [ - _spawn_points.get(ct_spawn_group, []).size(), - _spawn_points.get(t_spawn_group, []).size(), - ]) - - -## Get all spawn point markers for a given team. -func get_spawn_points_for_team(team: int) -> Array[Marker3D]: - var group_name: String = _group_for_team(team) - return _spawn_points.get(group_name, []).duplicate() - - -## Select a valid spawn position for a player on a given team. -## -## Strategy: -## 1. Filter to valid spawns (no enemies within proximity_check_radius). -## 2. Among valid spawns, pick the one farthest from known enemies. -## 3. If no spawn is valid, use fallback behaviour. -## 4. If no spawns exist at all, return Vector3.ZERO. -## -## Returns the global position of the chosen spawn point. -func select_spawn(player_id: int, team: int) -> Vector3: - var markers: Array[Marker3D] = get_spawn_points_for_team(team) - if markers.is_empty(): - push_warning("[SpawnManager] No spawn points found for team %s" % _td_ref.get_team_name(team)) - return Vector3.ZERO - - # Separate into valid and contested spawns - var valid_spawns: Array[Marker3D] = [] - var contested_spawns: Array[Marker3D] = [] - - if team_manager != null: - for marker in markers: - if _is_spawn_safe(marker.global_position, team): - valid_spawns.append(marker) - else: - contested_spawns.append(marker) - else: - # No team manager — all spawns are valid - valid_spawns = markers.duplicate() - - # Choose the best spawn - var chosen: Marker3D = null - - if not valid_spawns.is_empty(): - # Pick the farthest from known enemy last-positions - chosen = _pick_farthest_spawn(valid_spawns, team) - elif allow_fallback: - # Fallback: pick the first contested spawn - if not contested_spawns.is_empty(): - chosen = contested_spawns[0] - print("[SpawnManager] Fallback: all spawns contested, using first available") - else: - chosen = markers[0] - print("[SpawnManager] Fallback: no spawns available, using first marker") - else: - chosen = markers[0] - print("[SpawnManager] No valid spawns and fallback disabled, using first marker") - - # Record this spawn as the player's last position - var pos: Vector3 = chosen.global_position - _last_spawn_positions[player_id] = pos - return pos - - -## Return the number of spawn points for a team. -func get_spawn_count(team: int) -> int: - var group_name: String = _group_for_team(team) - return _spawn_points.get(group_name, []).size() - - -# --------------------------------------------------------------------------- -# Internal: Spawn selection helpers -# --------------------------------------------------------------------------- - -## Check if a position is safe from enemy proximity. -func _is_spawn_safe(pos: Vector3, friendly_team: int) -> bool: - if team_manager == null: - return true - - # Get the enemy team(s) - var enemy_teams: Array[int] = _get_enemy_teams(friendly_team) - - for enemy_team in enemy_teams: - var enemy_ids: Array[int] = team_manager.get_team_players(enemy_team) - for enemy_id in enemy_ids: - # Check last known position - var enemy_pos: Vector3 = _last_spawn_positions.get(enemy_id, Vector3.ZERO) - if enemy_pos != Vector3.ZERO: - var dist: float = pos.distance_to(enemy_pos) - if dist < proximity_check_radius: - return false - - return true - - -## Pick the spawn farthest from all known enemy positions. -func _pick_farthest_spawn(candidates: Array[Marker3D], friendly_team: int) -> Marker3D: - if candidates.is_empty(): - return null - if candidates.size() == 1: - return candidates[0] - - # Collect enemy positions - var enemy_positions: Array[Vector3] = [] - if team_manager != null: - var enemy_teams: Array[int] = _get_enemy_teams(friendly_team) - for enemy_team in enemy_teams: - var enemy_ids: Array[int] = team_manager.get_team_players(enemy_team) - for enemy_id in enemy_ids: - var enemy_pos: Vector3 = _last_spawn_positions.get(enemy_id, Vector3.ZERO) - if enemy_pos != Vector3.ZERO: - enemy_positions.append(enemy_pos) - - if enemy_positions.is_empty(): - # No known enemy positions — pick randomly among candidates - return candidates[randi() % candidates.size()] - - # Pick candidate with max minimum-distance to any enemy - var best: Marker3D = candidates[0] - var best_min_dist: float = 0.0 - - for marker in candidates: - var pos: Vector3 = marker.global_position - var min_dist: float = INF - for epos in enemy_positions: - var d: float = pos.distance_to(epos) - if d < min_dist: - min_dist = d - if min_dist > best_min_dist: - best_min_dist = min_dist - best = marker - - return best - - -## Get the teams that are enemies of the given team. -## For now, CT and T are enemies of each other; SPECTATOR has no enemies. -func _get_enemy_teams(team: int) -> Array[int]: - match team: - _td_ref.Team.COUNTER_TERRORIST: - return [_td_ref.Team.TERRORIST] - _td_ref.Team.TERRORIST: - return [_td_ref.Team.COUNTER_TERRORIST] - _: - return [] - - -## Translate a Team enum to the spawn group name. -func _group_for_team(team: int) -> String: - match team: - _td_ref.Team.COUNTER_TERRORIST: - return ct_spawn_group - _td_ref.Team.TERRORIST: - return t_spawn_group - _: - return "" diff --git a/scripts/teams/spawn_manager.gd.uid b/scripts/teams/spawn_manager.gd.uid deleted file mode 100644 index 794fc73..0000000 --- a/scripts/teams/spawn_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dixk0c0uniyp6 diff --git a/scripts/teams/team_data.gd b/scripts/teams/team_data.gd deleted file mode 100644 index 332b449..0000000 --- a/scripts/teams/team_data.gd +++ /dev/null @@ -1,123 +0,0 @@ -## TeamData — Team definitions and resource for a tactical FPS. -## -## Defines the Team enum, named constants for team metadata, -## and a TeamData resource for per-team configuration. -## -## Usage: -## var team: Team = Team.COUNTER_TERRORIST -## var name: String = TeamData.get_team_name(team) -## var color: Color = TeamData.get_team_color(team) -## -## Persists across rounds (round-independent). -## -## Enum values follow Godot-friendly ordering: -## 0 = SPECTATOR (no team) -## 1 = COUNTER_TERRORIST -## 2 = TERRORIST - -extends Resource -class_name TeamData - -# --------------------------------------------------------------------------- -# Team enum -# --------------------------------------------------------------------------- -enum Team { - SPECTATOR = 0, - COUNTER_TERRORIST = 1, - TERRORIST = 2, -} - -# --------------------------------------------------------------------------- -# Named constants -# --------------------------------------------------------------------------- -const TEAM_NAMES: Dictionary = { - Team.SPECTATOR: "Spectator", - Team.COUNTER_TERRORIST: "Counter-Terrorist", - Team.TERRORIST: "Terrorist", -} - -const TEAM_COLORS: Dictionary = { - Team.SPECTATOR: Color(0.6, 0.6, 0.6, 1.0), - Team.COUNTER_TERRORIST: Color(0.2, 0.5, 0.9, 1.0), # Blue - Team.TERRORIST: Color(0.9, 0.3, 0.2, 1.0), # Red -} - -## Default starting money per player on each team. -const STARTING_MONEY: Dictionary = { - Team.COUNTER_TERRORIST: 800, - Team.TERRORIST: 800, - Team.SPECTATOR: 0, -} - -## Default spawn group suffixes used by SpawnManager when looking for markers. -const TEAM_SPAWN_GROUPS: Dictionary = { - Team.COUNTER_TERRORIST: "spawn_points_ct", - Team.TERRORIST: "spawn_points_t", -} - -# --------------------------------------------------------------------------- -# Resource properties -# --------------------------------------------------------------------------- - -## The team this resource describes. -@export var team_id: Team = Team.SPECTATOR - -## Human-readable display name for this team. -@export var display_name: String = "" - -## Team colour (used for UI, minimap, etc.). -@export var color: Color = Color.WHITE - -## Default spawn group name to scan when placing this team on a map. -@export var default_spawn_group: String = "" - - -# --------------------------------------------------------------------------- -# Static helpers -# --------------------------------------------------------------------------- - -## Return the human-readable name for a Team enum value. -static func get_team_name(team: Team) -> String: - return TEAM_NAMES.get(team, "Unknown") - - -## Return the colour for a Team enum value. -static func get_team_color(team: Team) -> Color: - return TEAM_COLORS.get(team, Color.WHITE) - - -## Return the starting money for a Team enum value. -static func get_starting_money(team: Team) -> int: - return STARTING_MONEY.get(team, 0) - - -## Return the spawn group name for a Team enum value. -static func get_spawn_group(team: Team) -> String: - return TEAM_SPAWN_GROUPS.get(team, "") - - -## Return true if the team is a playable team (not spectator). -static func is_playable_team(team: Team) -> bool: - return team == Team.COUNTER_TERRORIST or team == Team.TERRORIST - - -## Convert a string to a Team enum value. Returns SPECTATOR if unknown. -static func from_string(name: String) -> Team: - match name.to_lower(): - "counter_terrorist", "counter-terrorist", "ct", "counterterrorist": - return Team.COUNTER_TERRORIST - "terrorist", "t": - return Team.TERRORIST - _: - return Team.SPECTATOR - - -## Convert a Team enum value to its short string identifier. -static func to_short_string(team: Team) -> String: - match team: - Team.COUNTER_TERRORIST: - return "CT" - Team.TERRORIST: - return "T" - _: - return "SPEC" diff --git a/scripts/teams/team_data.gd.uid b/scripts/teams/team_data.gd.uid deleted file mode 100644 index 788cd32..0000000 --- a/scripts/teams/team_data.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://w0y1tql3o5vd diff --git a/scripts/teams/team_manager.gd b/scripts/teams/team_manager.gd deleted file mode 100644 index 3defdf4..0000000 --- a/scripts/teams/team_manager.gd +++ /dev/null @@ -1,250 +0,0 @@ -## TeamManager — Team assignment, tracking, and auto-balance. -## -## Manages which player belongs to which team, tracks team scores, -## and provides auto-balancing logic to keep team sizes fair. -## -## Teams are round-independent — player assignments persist across rounds. -## -## Usage: -## var tm = TeamManager.new() -## add_child(tm) -## tm.assign_player(player_id, Team.COUNTER_TERRORIST) -## var team: Team = tm.get_player_team(player_id) -## var ct_players: Array[int] = tm.get_team_players(Team.COUNTER_TERRORIST) -## -## Signals: -## player_joined_team(player_id, team) -## player_left_team(player_id, team) -## team_scores_updated(team_scores) - -extends Node -class_name TeamManager - -# Force TeamData to be loaded first (Godot 4 class_name loading order: Resources after Nodes) -const _team_data_ref = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when a player is assigned to a team (including on team switch). -## team is an int (TeamData.Team enum value). -signal player_joined_team(player_id: int, team: int) - -## Emitted when a player leaves a team (disconnected or switched). -## team is an int (TeamData.Team enum value). -signal player_left_team(player_id: int, team: int) - -## Emitted when scores for any team change. -signal team_scores_updated(team_scores: Dictionary) - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Mapping: player_id (int) → Team enum value. -var _player_teams: Dictionary = {} - -## Mapping: Team enum → Array of player IDs. -var _team_players: Dictionary = {} - -## Score per team: Team enum → int (rounds won, kills, etc.). -var _team_scores: Dictionary = {} - -## Maximum players allowed on a single team (0 = unlimited). -## Set from ServerConfig on _ready if available. -var max_players_per_team: int = 0 - - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - var cfg = get_node_or_null("/root/ServerConfig") - if cfg and cfg.has_method(&"get_config_path"): - max_players_per_team = cfg.players_per_team - else: - max_players_per_team = 8 - - -# --------------------------------------------------------------------------- -# Public API — Assignment -# --------------------------------------------------------------------------- - -## Assign a player to a team. Returns true if successful, false if the team is full. -## Emits player_left_team for the old team (if any) and player_joined_team for the new team. -func assign_player(player_id: int, team: int) -> bool: - # Validate team - if team < 0 or team > TeamData.Team.size() - 1: - push_warning("[TeamManager] Invalid team value: %d" % team) - return false - - # Check if team is full (skip for spectator) - if team != TeamData.Team.SPECTATOR and max_players_per_team > 0: - var current_count: int = _team_players.get(team, []).size() - if current_count >= max_players_per_team: - # Allow if the player is already on this team - if _player_teams.get(player_id, TeamData.Team.SPECTATOR) != team: - push_warning("[TeamManager] Team %s is full (%d/%d)" % [TeamData.get_team_name(team), current_count, max_players_per_team]) - return false - - # Remove from old team if assigned - var old_team: int = _player_teams.get(player_id, TeamData.Team.SPECTATOR) - if old_team != team: - _remove_from_team(player_id, old_team) - - # Add to new team - _player_teams[player_id] = team - if not _team_players.has(team): - _team_players[team] = [] - if player_id not in _team_players[team]: - _team_players[team].append(player_id) - - player_joined_team.emit(player_id, team) - return true - - -## Remove a player from any team (equivalent to assigning to SPECTATOR). -func remove_player(player_id: int) -> void: - var current_team: int = _player_teams.get(player_id, TeamData.Team.SPECTATOR) - _remove_from_team(player_id, current_team) - - -## Unregister a player entirely (on disconnect). -func unregister_player(player_id: int) -> void: - remove_player(player_id) - _player_teams.erase(player_id) - - -# --------------------------------------------------------------------------- -# Public API — Querying -# --------------------------------------------------------------------------- - -## Get the team a player belongs to. Returns SPECTATOR if unassigned. -## Returns an int (TeamData.Team enum value). -func get_player_team(player_id: int) -> int: - return _player_teams.get(player_id, TeamData.Team.SPECTATOR) - - -## Get an array of all player IDs on a given team. -func get_team_players(team: int) -> Array[int]: - return _team_players.get(team, []).duplicate() - - -## Get the total number of players on a given team. -func get_team_player_count(team: int) -> int: - return _team_players.get(team, []).size() - - -## Check if a player is on a specific team. -func is_player_on_team(player_id: int, team: int) -> bool: - return _player_teams.get(player_id, TeamData.Team.SPECTATOR) == team - - -## Get a dictionary of all player-to-team mappings. -func get_all_assignments() -> Dictionary: - return _player_teams.duplicate() - - -# --------------------------------------------------------------------------- -# Public API — Auto-balance -# --------------------------------------------------------------------------- - -## Assign a player to the team with the fewest members (ties: random). -## Returns the team as an int (TeamData.Team enum value) the player was assigned to, -## or SPECTATOR if both teams are full. -func assign_to_team_with_fewest(player_id: int) -> int: - var ct_count: int = _team_players.get(TeamData.Team.COUNTER_TERRORIST, []).size() - var t_count: int = _team_players.get(TeamData.Team.TERRORIST, []).size() - - # If one team is at capacity, force to the other - if max_players_per_team > 0: - if ct_count >= max_players_per_team and t_count < max_players_per_team: - assign_player(player_id, TeamData.Team.TERRORIST) - return TeamData.Team.TERRORIST - if t_count >= max_players_per_team and ct_count < max_players_per_team: - assign_player(player_id, TeamData.Team.COUNTER_TERRORIST) - return TeamData.Team.COUNTER_TERRORIST - if ct_count >= max_players_per_team and t_count >= max_players_per_team: - push_warning("[TeamManager] Both teams are full") - return TeamData.Team.SPECTATOR - - # Assign to team with fewer players (ties: randomly pick one) - var team: int = TeamData.Team.COUNTER_TERRORIST - if ct_count < t_count: - team = TeamData.Team.COUNTER_TERRORIST - elif t_count < ct_count: - team = TeamData.Team.TERRORIST - else: - # Tied — pick randomly - team = TeamData.Team.COUNTER_TERRORIST if randi() % 2 == 0 else TeamData.Team.TERRORIST - - assign_player(player_id, team) - return team - - -# --------------------------------------------------------------------------- -# Public API — Scoring -# --------------------------------------------------------------------------- - -## Set the score for a given team. -func set_team_score(team: int, score: int) -> void: - _team_scores[team] = score - team_scores_updated.emit(_team_scores.duplicate()) - - -## Add to a team's current score. -func add_team_score(team: int, amount: int = 1) -> void: - var current: int = _team_scores.get(team, 0) - _team_scores[team] = current + amount - team_scores_updated.emit(_team_scores.duplicate()) - - -## Get the score for a given team. -func get_team_score(team: int) -> int: - return _team_scores.get(team, 0) - - -## Get all team scores as a dictionary: Team enum → int. -func get_all_scores() -> Dictionary: - return _team_scores.duplicate() - - -## Reset all scores to zero. -func reset_scores() -> void: - for team in [TeamData.Team.COUNTER_TERRORIST, TeamData.Team.TERRORIST]: - _team_scores[team] = 0 - team_scores_updated.emit(_team_scores.duplicate()) - - -# --------------------------------------------------------------------------- -# Public API — Utility -# --------------------------------------------------------------------------- - -## Reset all teams (clears all assignments and scores). -func reset_all() -> void: - # Emit leave signals for all assigned players - for player_id in _player_teams.keys(): - var team: int = _player_teams[player_id] - player_left_team.emit(player_id, team) - - _player_teams.clear() - _team_players.clear() - reset_scores() - - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -func _remove_from_team(player_id: int, team: int) -> void: - if _player_teams.has(player_id): - _player_teams.erase(player_id) - - if _team_players.has(team): - var arr: Array = _team_players[team] - var idx: int = arr.find(player_id) - if idx >= 0: - arr.remove_at(idx) - player_left_team.emit(player_id, team) diff --git a/scripts/teams/team_manager.gd.uid b/scripts/teams/team_manager.gd.uid deleted file mode 100644 index d64d47b..0000000 --- a/scripts/teams/team_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b1hh1yrejn46f diff --git a/scripts/weapons/rollback_hitscan_manager.gd b/scripts/weapons/rollback_hitscan_manager.gd deleted file mode 100644 index 7aebaf1..0000000 --- a/scripts/weapons/rollback_hitscan_manager.gd +++ /dev/null @@ -1,361 +0,0 @@ -## RollbackHitscanManager — rollback-safe hitscan weapon with lag compensation. -## -## Uses netfox RewindableAction to track fire state per tick inside the -## rollback loop, enabling server-authoritative hit detection with physics -## rewound to the exact tick when the client fired. -## -## Key capabilities: -## - Server-authoritative raycast at the rewound tick (lag compensation) -## - Per-limb damage system (head/chest/waist/legs) via collision groups -## - RewindableAction for fire state sync across the rollback loop -## - Client prediction support via fire_performed signal -## -## Usage: -## Place as a child of the Player node (sibling of RollbackSynchronizer). -## Call process_fire() from _rollback_tick() every tick. -## Call record_fire() from input gathering when shoot is pressed. -## -## Headless safety: -## - No class_name references — uses load() + has_method() duck-typing -## - Graceful degradation when netfox types are unavailable -## - Falls back to direct input-based firing without RewindableAction - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted when a shot connects on the server or for client prediction. -signal hit_registered(tick: int, hit_position: Vector3, hit_normal: Vector3, collider: Object, final_damage: int) - -## Emitted when a shot misses entirely. -signal shot_missed(tick: int) - -## Emitted on any fire attempt (hit or miss) — for muzzle flash, sound, etc. -signal weapon_fired(tick: int, origin: Vector3, direction: Vector3) - -# --------------------------------------------------------------------------- -# Weapon configuration -# --------------------------------------------------------------------------- -## Weapon data (WeaponData resource) — set when weapon switches -var current_weapon_data: Resource = null - -## Maximum raycast distance — updated from current_weapon_data -var max_distance: float = 1000.0 - -## Eye height above player origin for reconstructing fire origin -var eye_height: float = 1.7 - -# --------------------------------------------------------------------------- -# RewindableAction reference -# --------------------------------------------------------------------------- -var _fire_action: Node = null -var _has_rewindable_action: bool = false - -# --------------------------------------------------------------------------- -# Server-side state -# --------------------------------------------------------------------------- -## Tracks which ticks have already had damage applied, preventing -## double-processing during rollback re-simulation. -var _processed_damage_ticks: Dictionary = {} - -# --------------------------------------------------------------------------- -# Player reference (cached parent) -# --------------------------------------------------------------------------- -var _player_node: Node3D = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _player_node = get_parent() as Node3D - if _player_node == null: - push_warning("[RollbackHitscan] Parent is not a Node3D") - return - _setup_fire_action() - -## Create the RewindableAction child node for per-tick fire tracking. -func _setup_fire_action() -> void: - if not Engine.has_singleton(&"NetworkRollback"): - push_warning("[RollbackHitscan] NetworkRollback not available — falling back to direct fire tracking") - return - - var ActionScript = load("res://addons/netfox/rewindable-action.gd") - if ActionScript == null: - push_warning("[RollbackHitscan] RewindableAction script not found") - return - - _fire_action = ActionScript.new() - if _fire_action == null: - return - _fire_action.name = "HitscanFireAction" - add_child(_fire_action, true) - _has_rewindable_action = true - print("[RollbackHitscan] RewindableAction created for %s" % _player_node.name) - -# --------------------------------------------------------------------------- -# Public API — called from input gathering -# --------------------------------------------------------------------------- - -## Record a fire event for the given tick. -## -## Called during input gathering (before the tick) when the client presses -## shoot. Stores the precise fire origin and direction as context in the -## RewindableAction so it survives rollback re-simulation. -## -## Parameters: -## tick: The network tick when the shot occurred -## origin: World-space raycast origin (typically camera/eye position) -## direction: World-space normalized raycast direction -func record_fire(tick: int, origin: Vector3, direction: Vector3) -> void: - if _has_rewindable_action and _fire_action != null: - _fire_action.set_active(true, tick) - _fire_action.set_context({ - "origin": origin, - "direction": direction, - }, tick) - -# --------------------------------------------------------------------------- -# Public API — called from _rollback_tick() -# --------------------------------------------------------------------------- - -## Process weapon firing for the given tick. -## -## This is the core method called from the player's _rollback_tick() every -## network tick. On the server, it performs a lag-compensated raycast and -## applies per-limb damage. On all peers, it emits signals for effects. -## -## Returns: Dictionary with hit result (empty if no hit or no shot). -## - {collider, position, normal, ...} from PhysicsDirectSpaceState3D.intersect_ray -## - empty dict if no shot was fired this tick -## -## Parameters: -## tick: The current network tick -## is_server: Whether this peer is the server (authority) -## input_node: The PlayerNetInput node (must have .shoot, .look_yaw, .look_pitch) -## weapon_data: WeaponData resource for this tick (nil = use current_weapon_data) -func process_fire(tick: int, is_server: bool, input_node: Node, weapon_data: Resource = null) -> Dictionary: - if _player_node == null: - return {} - - # Use passed-in weapon data or fall back to current - var wd: Resource = weapon_data if weapon_data != null else current_weapon_data - var effective_max_dist: float = max_distance - if wd != null and wd.has_method(&"get") and wd.get("max_distance") != null: - effective_max_dist = wd.get("max_distance") - - # Check if the player is trying to shoot this tick - var shoot: bool = _is_shooting(tick, input_node) - if not shoot: - return {} - - # Prevent double-processing damage during re-simulation. - # On the server, we only apply damage once per tick per shot. - if is_server and _processed_damage_ticks.has(tick): - return {} - - # Reconstruct fire origin and direction - var origin: Vector3 - var direction: Vector3 - var fire_params: Dictionary = _get_fire_params(tick, input_node, effective_max_dist) - origin = fire_params.get("origin", _player_node.global_position + Vector3(0, eye_height, 0)) - direction = fire_params.get("direction", -_player_node.global_basis.z) - - # Perform the physics raycast - var space_state: PhysicsDirectSpaceState3D = null - if _player_node.get_world_3d() != null: - space_state = _player_node.get_world_3d().direct_space_state - - var hit: Dictionary = {} - if space_state != null: - hit = _perform_raycast(space_state, origin, direction, effective_max_dist) - - # Emit fire event for effects - weapon_fired.emit(tick, origin, direction) - - # Server-authoritative damage application - if is_server: - _processed_damage_ticks[tick] = true - - if not hit.is_empty(): - var final_damage: int = _apply_damage(hit, wd) - hit_registered.emit(tick, hit.get("position", Vector3.ZERO), - hit.get("normal", Vector3.UP), hit.get("collider"), final_damage) - else: - shot_missed.emit(tick) - - return hit - -# --------------------------------------------------------------------------- -# Internal helpers -# --------------------------------------------------------------------------- - -## Check if the player is shooting this tick. -## Uses RewindableAction if available, otherwise falls back to input_node.shoot. -func _is_shooting(tick: int, input_node: Node) -> bool: - # Prefer RewindableAction for accurate per-tick tracking - if _has_rewindable_action and _fire_action != null: - if _fire_action.has_method(&"is_active"): - return _fire_action.is_active(tick) - - # Fallback: check raw input - if input_node != null and input_node.has_method(&"get"): - return input_node.get(&"shoot") or false - return false - -## Get fire parameters (origin, direction) for the given tick. -## Uses RewindableAction context if available, otherwise reconstructs from -## player position + camera yaw/pitch at the tick. -func _get_fire_params(tick: int, input_node: Node, max_dist: float) -> Dictionary: - # Try RewindableAction context first (most precise) - if _has_rewindable_action and _fire_action != null: - if _fire_action.has_method(&"get_context"): - var ctx = _fire_action.get_context(tick) - if ctx != null and typeof(ctx) == TYPE_DICTIONARY: - var o = ctx.get("origin") - var d = ctx.get("direction") - if o != null and d != null: - return {"origin": o, "direction": d} - - # Reconstruct from player position + look angles - var yaw: float = 0.0 - var pitch: float = 0.0 - if input_node != null: - yaw = input_node.get(&"look_yaw") if input_node.has_method(&"get") else 0.0 - pitch = input_node.get(&"look_pitch") if input_node.has_method(&"get") else 0.0 - - var origin := _player_node.global_position + Vector3(0, eye_height, 0) - var direction := _yaw_pitch_to_dir(yaw, pitch) - return {"origin": origin, "direction": direction} - -## Perform a physics raycast with the given parameters. -func _perform_raycast(space_state: PhysicsDirectSpaceState3D, origin: Vector3, - direction: Vector3, max_dist: float) -> Dictionary: - var params = PhysicsRayQueryParameters3D.new() - if params == null: - return {} - - params.from = origin - params.to = origin + direction * max_dist - params.collision_mask = 0xFFFFFFFF - - # Exclude the shooter's own collision body - var exclude_list: Array[RID] = [] - exclude_list.append_array(_get_player_collision_r_ids()) - if exclude_list.size() > 0: - params.exclude = exclude_list - - return space_state.intersect_ray(params) - -## Get RIDs of collision shapes on the player node to exclude from raycast. -func _get_player_collision_r_ids() -> Array[RID]: - var rids: Array[RID] = [] - if _player_node == null: - return rids - - for child in _player_node.get_children(): - if child is CollisionShape3D and child.shape != null: - rids.append(child.shape.get_rid()) - elif child is CollisionPolygon3D: - rids.append(child.get_rid()) - - return rids - -## Apply per-limb damage to the hit player. -## Returns the final damage amount applied. -func _apply_damage(hit: Dictionary, wd: Resource) -> int: - var collider = hit.get("collider") - if collider == null or wd == null: - return 0 - - var multiplier: float = _get_limb_multiplier(collider, wd) - var base_damage: int = wd.get("damage") if wd.has_method(&"get") else 0 - var final_damage := int(base_damage * multiplier) - - # Find the player node from the collider - var hit_player = _find_player(collider) - if hit_player == null: - return 0 - if not hit_player.has_method(&"apply_damage"): - return 0 - - var owner_id: int = 0 - if _player_node != null and _player_node.has_method(&"get"): - owner_id = _player_node.get(&"peer_id") if _player_node.get(&"peer_id") != null else 0 - - var weapon_id: int = wd.get("weapon_id") if wd.has_method(&"get") else 0 - - hit_player.apply_damage(final_damage, owner_id, weapon_id) - print("[RollbackHitscan] Tick %d: %d dmg (%d base x %.1f) to %s by peer %d" % [ - Engine.get_singleton(&"NetworkTime").tick if Engine.has_singleton(&"NetworkTime") else -1, - final_damage, base_damage, multiplier, hit_player.name, owner_id]) - - return final_damage - -## Determine the damage multiplier for the hit limb. -## -## Colliders should be in collision groups: -## "head" → headshot_multiplier -## "chest" → chest_multiplier (default) -## "waist" → waist_multiplier -## "legs" → leg_multiplier -func _get_limb_multiplier(collider: Node, wd: Resource) -> float: - if wd == null: - return 1.0 - - var head: float = wd.get("headshot_multiplier") if wd.has_method(&"get") else 2.0 - var chest: float = wd.get("chest_multiplier") if wd.has_method(&"get") else 1.0 - var waist: float = wd.get("waist_multiplier") if wd.has_method(&"get") else 0.75 - var legs: float = wd.get("leg_multiplier") if wd.has_method(&"get") else 0.5 - - if collider.is_in_group(&"head"): - return head - elif collider.is_in_group(&"chest"): - return chest - elif collider.is_in_group(&"waist"): - return waist - elif collider.is_in_group(&"legs"): - return legs - - return chest - -## Walk up the scene tree from a collider to find a player node. -func _find_player(node: Node) -> Node: - var current = node - while current != null: - if current.has_method(&"apply_damage") or current.is_in_group(&"players"): - return current - current = current.get_parent() - return null - -## Convert yaw (radians) and pitch (radians) to a forward direction vector. -## Uses standard FPS convention: yaw around Y axis, pitch around X axis. -static func _yaw_pitch_to_dir(yaw: float, pitch: float) -> Vector3: - var cos_pitch := cos(pitch) - return Vector3( - cos_pitch * sin(yaw), - sin(pitch), - cos_pitch * cos(yaw) - ) - -# --------------------------------------------------------------------------- -# State management -# --------------------------------------------------------------------------- - -## Reset processed ticks history (e.g. on round restart). -## Also resets the RewindableAction state. -func reset() -> void: - _processed_damage_ticks.clear() - -## Update weapon data when the player switches weapons. -func set_weapon_data(wd: Resource) -> void: - current_weapon_data = wd - if wd != null and wd.has_method(&"get"): - var md = wd.get("max_distance") - if md != null: - max_distance = md - -## Get the RewindableAction node (for external inspection, e.g. debug UI). -func get_fire_action(): - return _fire_action diff --git a/scripts/weapons/rollback_hitscan_manager.gd.uid b/scripts/weapons/rollback_hitscan_manager.gd.uid deleted file mode 100644 index 02e2a7d..0000000 --- a/scripts/weapons/rollback_hitscan_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://6gnaotpppgvd diff --git a/server/plugins/.gdignore b/server/plugins/.gdignore deleted file mode 100644 index c3a389f..0000000 --- a/server/plugins/.gdignore +++ /dev/null @@ -1,4 +0,0 @@ -# This directory is a placeholder for server plugins. -# Plugins are loaded dynamically at runtime via PluginManager. -# The .gdignore file prevents Godot from scanning this directory -# for script classes at edit time. diff --git a/server/plugins/hello_world/hello_world.gd b/server/plugins/hello_world/hello_world.gd deleted file mode 100644 index d3f301e..0000000 --- a/server/plugins/hello_world/hello_world.gd +++ /dev/null @@ -1,104 +0,0 @@ -## Hello World — Example Server Plugin -## -## Demonstrates all available plugin hooks by logging each event. -## Use this as a template for creating new plugins. - -extends PluginBase -class_name HelloWorldPlugin - -# --------------------------------------------------------------------------- -# Plugin state -# --------------------------------------------------------------------------- -var _player_count: int = 0 -var _round_count: int = 0 -var _tick_count: int = 0 -var _start_time: int = 0 - -# --------------------------------------------------------------------------- -# Initialization -# --------------------------------------------------------------------------- -func _ready() -> void: - log_info("Hello World plugin initializing...") - _start_time = Time.get_ticks_msec() - -func _exit_tree() -> void: - log_info("Hello World plugin shutting down. Uptime: %.1f seconds" % - [(Time.get_ticks_msec() - _start_time) / 1000.0]) - -# --------------------------------------------------------------------------- -# Server lifecycle hooks -# --------------------------------------------------------------------------- -func on_server_start() -> void: - log_info("on_server_start — Server is now online") - _tick_count = 0 - -func on_server_stop() -> void: - log_info("on_server_stop — Server is shutting down") - -# --------------------------------------------------------------------------- -# Map lifecycle hooks -# --------------------------------------------------------------------------- -func on_map_start(map_name: String) -> void: - log_info("on_map_start — Loading map: %s" % map_name) - _player_count = 0 - _round_count = 0 - -func on_map_end(map_name: String) -> void: - log_info("on_map_end — Map ended: %s (rounds played: %d)" % [map_name, _round_count]) - -# --------------------------------------------------------------------------- -# Player hooks -# --------------------------------------------------------------------------- -func on_player_connect(id: int, name: String, steam_id: String) -> bool: - log_info("on_player_connect — Player connecting: id=%d, name='%s', steam_id=%s" % - [id, name, steam_id]) - # Return true to allow connection - return true - -func on_player_disconnect(id: int, reason: String) -> void: - log_info("on_player_disconnect — Player disconnected: id=%d, reason='%s'" % - [id, reason]) - -func on_player_say(id: int, msg: String) -> bool: - log_info("on_player_say — Player %d says: \"%s\"" % [id, msg]) - # Return true to let the message through - return true - -func on_player_spawn(id: int) -> void: - _player_count += 1 - log_info("on_player_spawn — Player %d spawned (total spawns: %d)" % - [id, _player_count]) - -func on_player_killed(victim: int, killer: int, weapon: String) -> void: - var desc: String - if victim == killer: - desc = "suicide" - else: - desc = "killed by %d" % killer - log_info("on_player_killed — Player %d %s with '%s'" % [victim, desc, weapon]) - -# --------------------------------------------------------------------------- -# Round hooks -# --------------------------------------------------------------------------- -func on_round_start(number: int) -> void: - _round_count = number - log_info("on_round_start — Round %d begins" % number) - -func on_round_end(winner_team: int, reason: String) -> void: - var team_name: String = "Draw" - match winner_team: - 1: - team_name = "Team A" - 2: - team_name = "Team B" - log_info("on_round_end — Round %d ended: %s wins (%s)" % - [_round_count, team_name, reason]) - -# --------------------------------------------------------------------------- -# Per-tick hook -# --------------------------------------------------------------------------- -func on_tick(delta: float) -> void: - _tick_count += 1 - # Log only every ~100 ticks to avoid spam (at 128 Hz ≈ every 0.78s) - if _tick_count % 100 == 0: - log_info("on_tick — Tick %d (delta=%.4f)" % [_tick_count, delta]) diff --git a/server/plugins/hello_world/hello_world.gd.uid b/server/plugins/hello_world/hello_world.gd.uid deleted file mode 100644 index 7841dd4..0000000 --- a/server/plugins/hello_world/hello_world.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b4o1jrr5mmue0 diff --git a/server/plugins/hello_world/plugin.tres b/server/plugins/hello_world/plugin.tres deleted file mode 100644 index 3053001..0000000 --- a/server/plugins/hello_world/plugin.tres +++ /dev/null @@ -1,17 +0,0 @@ -[gd_resource type="Resource" format=3] - -[ext_resource type="Script" path="res://server/scripts/plugin_api/plugin_manifest.gd" id="1_plugin_manifest"] - -[resource] -script = ExtResource("1_plugin_manifest") -name = "Hello World" -version = "1.0.0" -author = "Tactical Shooter Team" -script_path = "hello_world.gd" -enabled = true -min_api_version = "1.0.0" -max_api_version = "" -metadata = { - "description": "Example plugin that logs all server events", - "url": "https://gitea.ourpad.casa/shawn/tactical-shooter" -} diff --git a/server/scripts/anti_cheat.gd b/server/scripts/anti_cheat.gd deleted file mode 100644 index 8148fbb..0000000 --- a/server/scripts/anti_cheat.gd +++ /dev/null @@ -1,677 +0,0 @@ -extends Node -class_name AntiCheat - -# ═════════════════════════════════════════════════════════ -# Server-authoritative anti-cheat validation coordinator -# -# Per-player state tracking and input validation pipeline. -# Called from the server's _physics_process per player per tick. -# -# Validation pipeline order: -# 1. Input sequence (timestamp monotonic, seq# dedup) -# 2. Movement (speed limit, teleport, multi-jump) -# 3. Aim (max snap rotation per tick) -# 4. Fire rate (interval between shots, ammo consistency) -# 5. Command rate (commands/second limit) -# 6. Enforcement (log / correct / warn / kick) -# -# Designed to be loaded once on the server and called per tick -# from the game's player state update loop. -# ═════════════════════════════════════════════════════════ - -# ─── Enforcement Levels ────────────────────────────────── -enum AcLevel { - OFF = 0, # Disabled — no validation performed - LOG = 1, # Log violations to server console only - CORRECT = 2, # Correct invalid input + warn player (default) - KICK = 3, # Kick player on threshold breach -} - -# ─── Violation Categories ──────────────────────────────── -enum ViolationCategory { - INPUT_SEQUENCE, # Bad sequence / replay / timestamp - MOVEMENT_SPEED, # Exceeded speed limit - MOVEMENT_TELEPORT, # Instant position change - MOVEMENT_MULTI_JUMP, # Jump without ground contact - AIM_SNAP, # View-angle delta exceeds limit - FIRE_RATE_INTERVAL, # Shots too close together - FIRE_RATE_AMMO, # Ammo delta inconsistent with shot - COMMAND_RATE, # > max_commands/sec from client -} - -# ─── Cvars (exported for inspector; override via config system) ── - -## Enforcement level (0=off, 1=log, 2=correct, 3=kick) -@export_range(0, 3, 1) var sv_ac_level: int = 2 - -## Speed multiplier before flagging (1.2 = 20% over max) -@export_range(1.0, 3.0, 0.05) var sv_ac_speed_tolerance: float = 1.2 - -## Max view-angle delta in degrees per tick -@export_range(10.0, 360.0, 1.0) var sv_ac_max_aim_snap: float = 180.0 - -## Fire interval tolerance in ms above weapon's fire rate -@export_range(0, 100, 1) var sv_ac_fire_tolerance_ms: int = 10 - -## Max commands from one client per second -@export_range(64, 254, 1) var sv_ac_command_rate_max: int = 128 - -## Max distance units per tick before flagged as teleport -@export_range(10.0, 500.0, 1.0) var sv_ac_teleport_threshold: float = 100.0 - -## Violations before kick (only at AcLevel.KICK) -@export_range(1, 50, 1) var sv_ac_kick_threshold: int = 5 - -## Enable/disable multi-jump check -@export var sv_ac_check_multi_jump: bool = true - -## Enable/disable ammo consistency check -@export var sv_ac_check_ammo: bool = true - -# ─── Signals ───────────────────────────────────────────── - -## Emitted when a violation triggers a kick decision. -signal player_kicked(peer_id: int, reason: String, violation_count: int) - -## Emitted on every validated violation (at all enforcement levels). -signal violation_recorded(peer_id: int, category: int, details: String) - -## Emitted when the anti-cheat corrects an input field. -signal input_corrected(peer_id: int, field: String, original_value, clamped_value) - -# ─── Per-Player Tracked State ──────────────────────────── - -class PlayerState: - var peer_id: int - var last_seq: int = -1 - var last_timestamp: float = 0.0 - var last_position: Vector3 = Vector3.ZERO - var last_view_angles: Vector2 = Vector2.ZERO - var last_fire_time: float = 0.0 - var last_ammo: int = -1 - var on_ground: bool = true # server-authoritative (set via set_ground_contact) - var jump_count: int = 0 # consecutive airborne jumps - var last_fire_pressed: bool = false - var _aim_initialized: bool = false # has aim been recorded at least once? - var command_times: Array[float] = [] - var violation_count: int = 0 - var violations_log: Array[Dictionary] = [] - var connected_at: float = 0.0 - - func _init(id: int, time: float): - peer_id = id - connected_at = time - - func reset(time: float) -> void: - last_seq = -1 - last_timestamp = 0.0 - last_position = Vector3.ZERO - last_view_angles = Vector2.ZERO - last_fire_time = 0.0 - last_ammo = -1 - on_ground = true - jump_count = 0 - last_fire_pressed = false - _aim_initialized = false - command_times.clear() - violation_count = 0 - violations_log.clear() - connected_at = time - -# ─── Internal State ────────────────────────────────────── - -var _player_states: Dictionary = {} # peer_id → PlayerState - -# ─── Public API ────────────────────────────────────────── - -func register_player(peer_id: int) -> void: - """Register a new player for anti-cheat tracking. - - Call when a player fully connects to the server. - The player's state is initialized fresh. - """ - var state = PlayerState.new(peer_id, Time.get_ticks_usec() / 1_000_000.0) - _player_states[peer_id] = state - - -func unregister_player(peer_id: int) -> void: - """Remove a player from anti-cheat tracking. - - Call on player disconnect to clean up state. - """ - _player_states.erase(peer_id) - - -func is_tracking(peer_id: int) -> bool: - """Returns true if peer_id is being tracked.""" - return _player_states.has(peer_id) - - -func validate_input(peer_id: int, input_packet: Dictionary, delta: float) -> Dictionary: - """Run full validation pipeline on a player's input packet. - - Parameters: - peer_id: Network peer ID of the player - input_packet: Dict with keys: - seq (int) — monotonic sequence number - time (float) — client timestamp (seconds) - movement (Vector3) — movement direction - view_angles (Vector2) — camera pitch/yaw - buttons (int) — bitmask: 1=jump, 2=fire, 4=crouch, 8=use - ammo (int) — current weapon ammo (-1 if unknown/melee) - position (Vector3) — player world position - max_speed (float, optional) — current max player speed - weapon_fire_rate_ms (float, optional) — current fire interval - burst_count (int, optional) — ammo per burst (default: 1) - delta: Physics tick delta (e.g. 1/128 ≈ 0.0078) - - Integration note: - After calling validate_input() and applying corrected input - to physics, call set_ground_contact(peer_id, on_ground) to - furnish server-authoritative ground-state for the next tick's - multi-jump validation. - - Returns: - Dict with: - corrected (Dictionary) — cleaned input packet (may have clamped fields) - violations (Array[Dictionary]) — violations detected this tick - action_taken (String) — "" / "warned" / "kicked" - """ - var result = { - "corrected": input_packet.duplicate(), - "violations": [], - "action_taken": "", - } - - if sv_ac_level == AcLevel.OFF or not _player_states.has(peer_id): - return result - - var state: PlayerState = _player_states[peer_id] - - # ── Pipeline ── - - # 1. Input sequence validation (always runs) - _result_seq(_validate_sequence(input_packet, state, result["corrected"]), peer_id, state, result) - - # 2. Movement validation - _result_mv(_validate_movement(input_packet, state, delta, result["corrected"]), peer_id, state, result) - - # 3. Aim validation - _result_aim(_validate_aim(input_packet, state, result["corrected"]), peer_id, state, result) - - # 4. Fire rate validation - _result_fire(_validate_fire_rate(input_packet, state, result["corrected"]), peer_id, state, result) - - # 5. Command rate validation - _result_cmd(_validate_command_rate(input_packet, state), peer_id, state, result) - - # 6. Ammo validation - if sv_ac_check_ammo: - _result_ammo(_validate_ammo(input_packet, state, result["corrected"]), peer_id, state, result) - - # ── Enforcement (post-pipeline) ── - if state.violation_count > 0 and result["violations"].size() > 0: - # Set warned flag at any level above OFF - if sv_ac_level >= AcLevel.CORRECT: - result["action_taken"] = "warned" - - # Kick decision — at KICK level when threshold breached - if sv_ac_level >= AcLevel.KICK and state.violation_count >= sv_ac_kick_threshold: - var reason: String = "Anti-cheat violation threshold reached (%d/%d)" % [ - state.violation_count, sv_ac_kick_threshold - ] - player_kicked.emit(peer_id, reason, state.violation_count) - result["action_taken"] = "kicked" - - # ── Post-validation bookkeeping ── - if input_packet.has("position") and typeof(input_packet.position) == TYPE_VECTOR3: - state.last_position = result["corrected"].get("position", input_packet.position) - - if input_packet.has("time"): - state.last_timestamp = input_packet.time - - if input_packet.has("view_angles"): - state.last_view_angles = result["corrected"].get("view_angles", input_packet.view_angles) - - return result - - -func get_player_violations(peer_id: int) -> Array: - """Return a copy of the violation log for a player.""" - if not _player_states.has(peer_id): - return [] - return _player_states[peer_id].violations_log.duplicate() - - -func get_player_violation_count(peer_id: int) -> int: - """Return the total violation count for a player.""" - if not _player_states.has(peer_id): - return 0 - return _player_states[peer_id].violation_count - - -func reset_player_violations(peer_id: int) -> void: - """Reset violation counter for a player (e.g. after admin pardon).""" - if _player_states.has(peer_id): - var s: PlayerState = _player_states[peer_id] - s.violation_count = 0 - s.violations_log.clear() - - -func clear_all() -> void: - """Remove all tracked players.""" - _player_states.clear() - - -func set_ground_contact(peer_id: int, on_ground: bool) -> void: - """Set the server-authoritative ground-contact state for a player. - - Must be called by the game server AFTER physics simulation each tick, - so the anti-cheat uses authoritative ground state for multi-jump - detection on the next tick. - """ - if _player_states.has(peer_id): - _player_states[peer_id].on_ground = on_ground - - -# ─── Individual Validators ─────────────────────────────── - -func _validate_sequence(packet: Dictionary, state: PlayerState, corrected: Dictionary) -> Dictionary: - """Check sequence monotonicity and timestamp monotonicity. - - Returns violation Dictionaries or null. - """ - var violations: Array[Dictionary] = [] - - var seq: int = packet.get("seq", -1) - var time: float = packet.get("time", 0.0) - - # First packet always accepted - if state.last_seq == -1: - state.last_seq = seq - state.last_timestamp = time - return {"violations": violations, "invalid": false} - - var invalid := false - - # Sequence must increase monotonically - if seq <= state.last_seq: - violations.append(_make_violation( - ViolationCategory.INPUT_SEQUENCE, - "Non-monotonic sequence: %d → %d" % [state.last_seq, seq], - )) - invalid = true - - # Timestamp must increase monotonically - if time < state.last_timestamp: - violations.append(_make_violation( - ViolationCategory.INPUT_SEQUENCE, - "Timestamp regression: %.4f → %.4f" % [state.last_timestamp, time], - )) - invalid = true - - # Update state on valid (or lightly correct) - if not invalid: - state.last_seq = seq - state.last_timestamp = time - else: - # Correct: bump seq forward so we don't accumulate stale state - if seq <= state.last_seq: - corrected["seq"] = state.last_seq + 1 - - return {"violations": violations, "invalid": invalid} - - -func _validate_movement(packet: Dictionary, state: PlayerState, delta: float, corrected: Dictionary) -> Dictionary: - """Check speed limit, teleport, and multi-jump. - - The player's max speed is defined by the movement controller. - We use a configurable tolerance multiplier. - """ - var violations: Array[Dictionary] = [] - - if not packet.has("position") or typeof(packet.position) != TYPE_VECTOR3: - return {"violations": violations, "corrected": false} - - var pos: Vector3 = packet.position - var prev_pos: Vector3 = state.last_position - - var displacement: Vector3 = pos - prev_pos - var distance: float = displacement.length() - - # ── Teleport check ── - if distance > sv_ac_teleport_threshold and state.last_seq != -1: - violations.append(_make_violation( - ViolationCategory.MOVEMENT_TELEPORT, - "Teleport: moved %.1f units in one tick (threshold %.1f)" % [distance, sv_ac_teleport_threshold], - {"distance": distance, "threshold": sv_ac_teleport_threshold}, - )) - # Correct: reset position to previous - corrected["position"] = prev_pos - return {"violations": violations, "corrected": true} - - # ── Speed check ── - # Max speed varies by weapon/game state; use a configurable tolerance - # over the assumed base speed. The actual game should pass its max_speed - # to validate_input(...) or we use a cvars-driven estimate. - var max_speed_units_per_sec: float = _resolve_max_speed(packet) - var max_speed_this_tick: float = max_speed_units_per_sec * sv_ac_speed_tolerance * delta - - var speed: float = distance / max(delta, 0.001) - - if distance > max_speed_this_tick and state.last_seq != -1: - violations.append(_make_violation( - ViolationCategory.MOVEMENT_SPEED, - "Speed: %.1f u/s (max %.1f u/s × %.1f tolerance)" % [speed, max_speed_units_per_sec, sv_ac_speed_tolerance], - {"speed": speed, "max_allowed": max_speed_this_tick / delta}, - )) - - # Correct: clamp displacement to max permitted - if distance > 0.001: - var clamped_displacement: Vector3 = displacement.normalized() * min(distance, max_speed_this_tick) - corrected["position"] = prev_pos + clamped_displacement - return {"violations": violations, "corrected": true} - - # ── Multi-jump check ── - # jump_count only resets on ground contact, NOT on button release, - # to prevent tap-jump bypass (pressing jump repeatedly while airborne). - if sv_ac_check_multi_jump: - var jump_pressed: bool = (packet.get("buttons", 0) & 1) != 0 - var was_on_ground: bool = state.on_ground - - if was_on_ground: - state.jump_count = 0 - elif jump_pressed: - state.jump_count += 1 - - var max_jumps: int = 1 # only one jump allowed without ground contact - if not was_on_ground and state.jump_count > max_jumps: - violations.append(_make_violation( - ViolationCategory.MOVEMENT_MULTI_JUMP, - "Multi-jump: %d jumps without ground contact" % state.jump_count, - {"jump_count": state.jump_count, "max_jumps": max_jumps}, - )) - # Correct: suppress the jump flag - corrected["buttons"] = packet.get("buttons", 0) & ~1 - return {"violations": violations, "corrected": true} - - return {"violations": violations, "corrected": false} - - -func _validate_aim(packet: Dictionary, state: PlayerState, corrected: Dictionary) -> Dictionary: - """Check view-angle delta per tick doesn't exceed max snap. - - view_angles is Vector2(pitch, yaw) in degrees. - """ - var violations: Array[Dictionary] = [] - - if not packet.has("view_angles"): - return {"violations": violations, "corrected": false} - - var angles: Vector2 = packet.view_angles - - # First tick — just record (no aim-initialized state yet) - if not state._aim_initialized: - state._aim_initialized = true - return {"violations": violations, "corrected": false} - - # Compute shortest angular distance per axis, handling yaw wraparound - var delta_angles := Vector2() - for axis in [0, 1]: - var raw_delta: float = angles[axis] - state.last_view_angles[axis] - var wrapped_delta: float = fmod(raw_delta, 360.0) - if wrapped_delta > 180.0: - wrapped_delta -= 360.0 - elif wrapped_delta < -180.0: - wrapped_delta += 360.0 - delta_angles[axis] = abs(wrapped_delta) - var max_delta: float = max(delta_angles.x, delta_angles.y) - - if max_delta > sv_ac_max_aim_snap and state.last_seq != -1: - violations.append(_make_violation( - ViolationCategory.AIM_SNAP, - "Aim snap: %.1f° in one tick (max %.1f°)" % [max_delta, sv_ac_max_aim_snap], - {"delta": max_delta, "max_allowed": sv_ac_max_aim_snap}, - )) - - # Correct: clamp delta per axis, handling yaw wraparound - var clamped_angles := state.last_view_angles - for axis in [0, 1]: - var diff: float = angles[axis] - state.last_view_angles[axis] - # Shortest-path diff, handling wraparound - var wrapped_diff: float = fmod(diff, 360.0) - if wrapped_diff > 180.0: - wrapped_diff -= 360.0 - elif wrapped_diff < -180.0: - wrapped_diff += 360.0 - # If the shortest path is within snap limit, allow it; otherwise clamp raw diff - if abs(wrapped_diff) > sv_ac_max_aim_snap: - var clamped_diff: float = clamp(diff, -sv_ac_max_aim_snap, sv_ac_max_aim_snap) - clamped_angles[axis] = state.last_view_angles[axis] + clamped_diff - - corrected["view_angles"] = clamped_angles - return {"violations": violations, "corrected": true} - - return {"violations": violations, "corrected": false} - - -func _validate_fire_rate(packet: Dictionary, state: PlayerState, corrected: Dictionary) -> Dictionary: - """Check minimum interval between shots. - - Weapon fire rate is represented as min_interval_ms. - If the game provides it in the packet, great; otherwise use a - reasonable minimum (based on fastest weapon in the game: ~100ms = 600rpm). - """ - var violations: Array[Dictionary] = [] - - var buttons: int = packet.get("buttons", 0) - var fire_pressed: bool = (buttons & 2) != 0 - - if not fire_pressed: - state.last_fire_pressed = false - return {"violations": violations, "corrected": false} - - var now: float = packet.get("time", Time.get_ticks_usec() / 1_000_000.0) - var elapsed_ms: float = (now - state.last_fire_time) * 1000.0 - - # If weapon provides its fire interval, use it; else use a reasonable min - var weapon_min_interval_ms: float = packet.get("weapon_fire_rate_ms", 80.0) - var allowed_interval_ms: float = weapon_min_interval_ms - sv_ac_fire_tolerance_ms - - # First fire always accepted - if state.last_fire_time <= 0.0: - state.last_fire_time = now - state.last_fire_pressed = true - return {"violations": violations, "corrected": false} - - if elapsed_ms < allowed_interval_ms: - violations.append(_make_violation( - ViolationCategory.FIRE_RATE_INTERVAL, - "Fire rate: %.1fms interval (min allowed %.1fms)" % [elapsed_ms, allowed_interval_ms], - {"elapsed_ms": elapsed_ms, "min_allowed_ms": allowed_interval_ms}, - )) - - # Correct: suppress fire button - corrected["buttons"] = buttons & ~2 - state.last_fire_pressed = false - return {"violations": violations, "corrected": true} - - state.last_fire_time = now - state.last_fire_pressed = true - return {"violations": violations, "corrected": false} - - -func _validate_command_rate(packet: Dictionary, state: PlayerState) -> Dictionary: - """Limit commands per second from a client. - - Commands include any client→server packet. We track a sliding - window of recent command timestamps. - """ - var violations: Array[Dictionary] = [] - - var now: float = packet.get("time", Time.get_ticks_usec() / 1_000_000.0) - var window_start: float = now - 1.0 # 1 second window - - # Prune old entries - var i: int = 0 - while i < state.command_times.size(): - if state.command_times[i] < window_start: - state.command_times.remove_at(i) - else: - i += 1 - - state.command_times.append(now) - - # Allow a small burst at the start of a connection - var is_new_connection: bool = (now - state.connected_at) < 3.0 - var burst_allowed: int = 4 - var limit: int = sv_ac_command_rate_max + (burst_allowed if is_new_connection else 0) - - if state.command_times.size() > limit: - # Log one violation per excess over the limit - var excess: int = state.command_times.size() - limit - if excess > 0: - violations.append(_make_violation( - ViolationCategory.COMMAND_RATE, - "Command rate: %d/s (max %d/s)" % [state.command_times.size(), sv_ac_command_rate_max], - {"actual_rate": state.command_times.size(), "max_rate": sv_ac_command_rate_max}, - )) - - # Keep window bounded — single cleanup pass - while state.command_times.size() > limit + 8: - state.command_times.remove_at(0) - - return {"violations": violations} - - -func _validate_ammo(packet: Dictionary, state: PlayerState, corrected: Dictionary) -> Dictionary: - """Check ammo delta consistency. - - If the player fired last tick, ammo should decrease by at most 1 - (or by burst count if provided). - """ - var violations: Array[Dictionary] = [] - - if not packet.has("ammo"): - return {"violations": violations, "corrected": false} - - var ammo: int = packet.ammo - if state.last_ammo == -1: - state.last_ammo = ammo - return {"violations": violations, "corrected": false} - - var buttons: int = packet.get("buttons", 0) - var fire_this: bool = (buttons & 2) != 0 - - var delta_ammo: int = ammo - state.last_ammo - - # Expected: negative if fired, 0 if not fired, positive if picking up ammo - if state.last_fire_time > 0 and fire_this: - # Should have decreased by 1 (or burst count) - var expected_delta: int = -packet.get("burst_count", 1) - if delta_ammo > 0: - violations.append(_make_violation( - ViolationCategory.FIRE_RATE_AMMO, - "Ammo increased while firing: %d → %d" % [state.last_ammo, ammo], - {"last_ammo": state.last_ammo, "new_ammo": ammo}, - )) - # Correct: keep old ammo value - corrected["ammo"] = state.last_ammo - return {"violations": violations, "corrected": true} - elif delta_ammo > expected_delta: - # Less ammo used than expected (e.g., 0 instead of -1) - violations.append(_make_violation( - ViolationCategory.FIRE_RATE_AMMO, - "Ammo mismatch while firing: delta %d (expected %d)" % [delta_ammo, expected_delta], - {"delta": delta_ammo, "expected": expected_delta}, - )) - corrected["ammo"] = max(0, state.last_ammo + expected_delta) - return {"violations": violations, "corrected": true} - - state.last_ammo = ammo - return {"violations": violations, "corrected": false} - - -# ─── Enforcement Helpers ──────────────────────────────── - -func _make_violation(category: int, details: String, extra: Dictionary = {}) -> Dictionary: - var v := { - "category": category, - "category_name": ViolationCategory.keys()[category], - "details": details, - "time": Time.get_ticks_usec() / 1_000_000.0, - "extra": extra, - } - return v - - -func _record_violation(state: PlayerState, v: Dictionary) -> void: - state.violation_count += 1 - state.violations_log.append(v) - - # Keep log bounded - if state.violations_log.size() > 100: - state.violations_log.pop_front() - - -func _resolve_max_speed(packet: Dictionary) -> float: - """Get max player speed from packet or default. - - The game should set 'max_speed' in the input packet. - If not provided, assume a standard FPS walking speed. - """ - if packet.has("max_speed"): - return packet.max_speed - return 320.0 # Default: CS-style max speed - - -# ─── Pipeline Result Handlers ────────────────────────── - -func _result_seq(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - - -func _result_mv(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - if r.get("corrected", false): - input_corrected.emit(peer_id, "position", null, null) - - -func _result_aim(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - if r.get("corrected", false): - input_corrected.emit(peer_id, "view_angles", null, null) - - -func _result_fire(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - if r.get("corrected", false): - input_corrected.emit(peer_id, "fire", null, null) - - -func _result_cmd(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - - -func _result_ammo(r: Dictionary, peer_id: int, state: PlayerState, result: Dictionary) -> void: - for v in r.get("violations", []): - _record_violation(state, v) - result["violations"].append(v) - violation_recorded.emit(peer_id, v.category, v.details) - if r.get("corrected", false): - input_corrected.emit(peer_id, "ammo", null, null) diff --git a/server/scripts/anti_cheat.gd.uid b/server/scripts/anti_cheat.gd.uid deleted file mode 100644 index ac8f72d..0000000 --- a/server/scripts/anti_cheat.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://1l2t1yn1gegr diff --git a/server/scripts/anticheat/anti_cheat.gd b/server/scripts/anticheat/anti_cheat.gd deleted file mode 100644 index a7bf183..0000000 --- a/server/scripts/anticheat/anti_cheat.gd +++ /dev/null @@ -1,321 +0,0 @@ -## AntiCheat — Server-side anti-cheat controller. -## -## Provides basic integrity checks against obvious exploits: -## - Rate limiting (input flood / RPC spam above 130 Hz) -## - Speed hacks (position deltas exceeding max movement × 1.5) -## - Aimbot snap (look-direction changes >45° within one tick) -## -## Suspicion accumulates per player (0.0 – 1.0). Escalating actions: -## 0.3 → warn (server log) -## 0.6 → kick (disconnect) -## 0.8 → ban (temp ban, 1 hour) -## -## Design philosophy: -## - All checks use generous tolerances (1.5× – 2× expected max) to account -## for network jitter and edge cases. -## - When in doubt, do NOT flag. False-positive rate must be near zero. -## - This is Phase-4 basic hardening, NOT a competitive anti-cheat. -## -## Usage (inside GameServer._ready()): -## var ac = AntiCheat.new() -## add_child(ac) -## ac.set_max_speed(ServerConfig.movement_sprint_speed) -## # Wire a ban handler: -## ac.ban_handler = func(p_id, reason): -## multiplayer.disconnect_peer(p_id) -## -## Receive reports from gameplay systems: -## ac.report_input_rate(player_id, 150.0) -## ac.report_movement(player_id, Vector3(12, 0, 0), 1) -## ac.report_look_snap(player_id, from_dir, to_dir) - -class_name AntiCheat -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when a player's suspicion level changes. -signal player_suspicion_changed(player_id: int, level: float) - -## Emitted when a player is kicked for anti-cheat violations. -## The caller (GameServer) should disconnect the peer. -signal player_kicked(player_id: int, reason: String) - -## Emitted when a player is temp-banned for anti-cheat violations. -## The caller should enforce the ban (disconnect + track expiry). -signal player_banned(player_id: int, reason: String) - -# --------------------------------------------------------------------------- -# Constants — thresholds -# --------------------------------------------------------------------------- - -## Maximum input RPC rate (Hz). Margin above the 128 Hz sim tick. -const DEFAULT_RATE_LIMIT_HZ: float = 130.0 - -## Tolerance multiplier applied to expected max movement speed. -const SPEED_TOLERANCE: float = 1.5 - -## Maximum allowed look-angle change per tick, in degrees. -const AIMBOT_SNAP_DEG: float = 45.0 - -## Default maximum player speed (sprint speed from default config). -const DEFAULT_MAX_SPEED: float = 7.0 - -# --------------------------------------------------------------------------- -# Constants — suspicion values -# --------------------------------------------------------------------------- - -## Suspicion added per rate-limit violation. -const SUS_INPUT_RATE: float = 0.08 - -## Suspicion added per speed-hack violation. -const SUS_SPEED_HACK: float = 0.12 - -## Suspicion added per aimbot snap. -const SUS_AIMBOT: float = 0.10 - -# --------------------------------------------------------------------------- -# Constants — thresholds & timing -# --------------------------------------------------------------------------- - -const WARN_THRESHOLD: float = 0.3 -const KICK_THRESHOLD: float = 0.6 -const BAN_THRESHOLD: float = 0.8 - -## Suspicion decay amount per DECAY_INTERVAL seconds (rewards clean play). -const DECAY_AMOUNT: float = 0.02 - -## How often (seconds) suspicion decays for clean players. -const DECAY_INTERVAL: float = 2.0 - -## Temporary ban duration in seconds (1 hour). -const BAN_DURATION: float = 3600.0 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Max player speed in units/sec. Set via set_max_speed() to match server -## config. Defaults to DEFAULT_MAX_SPEED. -var _max_speed: float = DEFAULT_MAX_SPEED - -## Current suspicion per player, 0.0 – 1.0. -var _suspicion: Dictionary = {} # player_id (int) → level (float) - -## Tracks which players have already triggered each action level. -var _warned: Dictionary = {} # player_id (int) → true -var _kicked: Dictionary = {} # player_id (int) → true -var _banned: Dictionary = {} # player_id (int) → ban_expiry_time (float) - -## Accumulator for suspicion decay timer. -var _decay_timer: float = 0.0 - -## Optional kick/ban handler Callable. If set, it is invoked with -## (player_id, reason) when a player is kicked or banned. The caller is -## responsible for actually disconnecting or tracking the ban. -var ban_handler: Callable = Callable() - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - pass - -func _process(delta: float) -> void: - _decay_timer += delta - if _decay_timer >= DECAY_INTERVAL: - _decay_timer = 0.0 - _decay_suspicion() - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -## Set the max player speed (should match the server's sprint speed or -## the fastest any legitimate player can move). -func set_max_speed(speed: float) -> void: - _max_speed = max(0.1, speed) - -## Return the current max-speed value used for speed-hack checks. -func get_max_speed() -> float: - return _max_speed - -# --------------------------------------------------------------------------- -# Public API — report methods -# --------------------------------------------------------------------------- - -## Report a player's input RPC rate. Flags if rate_hz exceeds the limit. -func report_input_rate(player_id: int, rate_hz: float) -> void: - if _is_banned(player_id): - return - - if rate_hz > DEFAULT_RATE_LIMIT_HZ: - _add_suspicion( - player_id, - SUS_INPUT_RATE, - "Input rate %.1f Hz exceeds limit (max %.1f Hz)" % [rate_hz, DEFAULT_RATE_LIMIT_HZ] - ) - - -## Report a player's position delta over a given number of ticks. -## delta_pos: the Vector3 displacement since the last valid report. -## tick_delta: number of simulation ticks over which the movement occurred -## (typically 1 for per-tick checks, larger for infrequent reports). -func report_movement(player_id: int, delta_pos: Vector3, tick_delta: int) -> void: - if _is_banned(player_id): - return - - if tick_delta <= 0: - return - - var distance: float = delta_pos.length() - var tick_time: float = 1.0 / 128.0 # simulation tick duration - ## Max distance a player could legitimately travel in tick_delta ticks. - var max_expected: float = _max_speed * SPEED_TOLERANCE * tick_time * tick_delta - - if distance > max_expected: - _add_suspicion( - player_id, - SUS_SPEED_HACK, - "Movement %.2f units exceeds expected max %.2f (%d ticks)" % - [distance, max_expected, tick_delta] - ) - - -## Report a player's look-direction snap. -## from: the previous tick's look direction (normalised Vector3). -## to: the current tick's look direction (normalised Vector3). -## Flags if the angle between them exceeds AIMBOT_SNAP_DEG. -func report_look_snap(player_id: int, from: Vector3, to: Vector3) -> void: - if _is_banned(player_id): - return - - # Avoid normalisation issues with zero vectors - var f_len_sq: float = from.length_squared() - var t_len_sq: float = to.length_squared() - if f_len_sq < 0.0001 or t_len_sq < 0.0001: - return - - var dot: float = from.dot(to) / (sqrt(f_len_sq) * sqrt(t_len_sq)) - var angle_deg: float = rad_to_deg(acos(clampf(dot, -1.0, 1.0))) - - if angle_deg > AIMBOT_SNAP_DEG: - _add_suspicion( - player_id, - SUS_AIMBOT, - "Look snap %.1f° exceeds max %.1f°" % [angle_deg, AIMBOT_SNAP_DEG] - ) - -# --------------------------------------------------------------------------- -# Public API — state queries -# --------------------------------------------------------------------------- - -## Return the current suspicion level for a player (0.0 – 1.0). -func get_suspicion(player_id: int) -> float: - return _suspicion.get(player_id, 0.0) - -## Return true if the player is currently banned (ban still in effect). -func is_banned(player_id: int) -> bool: - return _is_banned(player_id) - -## Remove all tracking data for a player (on disconnect / map change). -func unregister_player(player_id: int) -> void: - _suspicion.erase(player_id) - _warned.erase(player_id) - _kicked.erase(player_id) - # NOTE: _banned entries persist so reconnecting within the ban window - # still rejects. Use clear_bans() on map change or explicit unban. - -## Clear all ban records (e.g., on server restart or map change). -func clear_bans() -> void: - _banned.clear() - -## Clear all suspicion tracking (full reset). -func reset_all() -> void: - _suspicion.clear() - _warned.clear() - _kicked.clear() - _banned.clear() - _decay_timer = 0.0 - -# --------------------------------------------------------------------------- -# Internal — suspicion management -# --------------------------------------------------------------------------- - -## Add suspicion for a player and take action if thresholds are crossed. -## reason is a human-readable string for log/kick/ban messages. -func _add_suspicion(player_id: int, amount: float, reason: String) -> void: - var current: float = _suspicion.get(player_id, 0.0) - current = min(1.0, current + amount) - _suspicion[player_id] = current - - player_suspicion_changed.emit(player_id, current) - - # Check thresholds in ascending order — only act on the highest newly - # reached threshold to avoid spam (no re-warn on same violation). - if current >= BAN_THRESHOLD and not _banned.has(player_id): - _apply_ban(player_id, reason) - elif current >= KICK_THRESHOLD and not _kicked.has(player_id): - _apply_kick(player_id, reason) - elif current >= WARN_THRESHOLD and not _warned.has(player_id): - _apply_warn(player_id, reason) - - -func _apply_warn(player_id: int, reason: String) -> void: - _warned[player_id] = true - var msg: String = "[AntiCheat] WARN — player %d: %s" % [player_id, reason] - print(msg) - # No disconnect; just a server-side log warning. - - -func _apply_kick(player_id: int, reason: String) -> void: - _kicked[player_id] = true - var msg: String = "[AntiCheat] KICK — player %d: %s" % [player_id, reason] - print(msg) - player_kicked.emit(player_id, reason) - - if ban_handler.is_valid(): - ban_handler.call(player_id, reason) - - -func _apply_ban(player_id: int, reason: String) -> void: - var expiry: float = Time.get_unix_time_from_system() + BAN_DURATION - _banned[player_id] = expiry - var msg: String = "[AntiCheat] BAN — player %d: %s (until UNIX %d)" % \ - [player_id, reason, int(expiry)] - print(msg) - player_banned.emit(player_id, reason) - - if ban_handler.is_valid(): - ban_handler.call(player_id, reason) - - -## Decay suspicion for all non-banned players. -func _decay_suspicion() -> void: - for player_id in _suspicion.keys(): - if _is_banned(player_id): - continue - var current: float = _suspicion[player_id] - DECAY_AMOUNT - if current <= 0.0: - _suspicion.erase(player_id) - _warned.erase(player_id) - # Keep _kicked so they don't get a second chance immediately - # after decay; only explicit unregister resets kicks. - else: - _suspicion[player_id] = current - player_suspicion_changed.emit(player_id, current) - - -## Check if a player is currently banned (ban recorded and still in effect). -func _is_banned(player_id: int) -> bool: - if not _banned.has(player_id): - return false - var expiry: float = _banned[player_id] - if Time.get_unix_time_from_system() >= expiry: - # Ban expired — clean up - _banned.erase(player_id) - return false - return true diff --git a/server/scripts/anticheat/anti_cheat.gd.uid b/server/scripts/anticheat/anti_cheat.gd.uid deleted file mode 100644 index 7873214..0000000 --- a/server/scripts/anticheat/anti_cheat.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d1ij0okuw1wy2 diff --git a/server/scripts/browser/map_vote.gd b/server/scripts/browser/map_vote.gd deleted file mode 100644 index a7ce016..0000000 --- a/server/scripts/browser/map_vote.gd +++ /dev/null @@ -1,233 +0,0 @@ -## MapVote — Server-Side Map Change Voting System -## -## Handles the voting lifecycle when a player requests a map change. -## Follows simple majority rules: >50% of connected players must accept -## within 30 seconds for the vote to pass. -## -## ## Vote Lifecycle -## -## Idle ──vote_start()──► Voting (30s timer) -## ├── vote(accept=true) → tally yes -## ├── vote(accept=false) → tally no -## ├── time expires → check majority -## │ ├── >50% yes → vote_passed -## │ └── <=50% yes → vote_failed -## └── vote_cancel() → vote_cancelled -## -## ## Threshold -## -## Vote passes when: yes_count > (total_connected / 2) -## Tie or less → fails. -## Abstentions (no vote) count as "no" but only yes/no tallies are tracked. -## -## ## Integration -## -## Instantiate as a child of ServerMain or the map browser system. -## Connect to MapBrowserRPC.map_change_requested → MapVote.vote_start() -## -## ## Signals -## -## vote_started(map_id, initiator_id) — emitted when a vote begins -## vote_passed(map_id) — emitted when vote passes -## vote_failed(map_id) — emitted when vote fails -## vote_cancelled(map_id) — emitted when vote is cancelled -## vote_tally_updated(yes, no, total) — emitted each time a vote is cast -## -## ============================================================================= - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when a vote begins. -signal vote_started(map_id: String, initiator_id: int) - -## Emitted when the vote passes (>50% yes). -signal vote_passed(map_id: String) - -## Emitted when the vote fails (≤50% yes or timeout). -signal vote_failed(map_id: String) - -## Emitted when the vote is cancelled externally. -signal vote_cancelled(map_id: String) - -## Emitted each time a player casts a vote, for UI updates. -signal vote_tally_updated(yes_count: int, no_count: int, total_players: int) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -## Vote duration in seconds. -const VOTE_DURATION: float = 30.0 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## The map ID currently being voted on (empty string if no active vote). -var active_map_id: String = "" - -## The peer ID of the player who initiated the vote. -var initiator_peer_id: int = -1 - -## Whether a vote is currently in progress. -var is_voting: bool = false : get = _is_voting - -## Timer node for vote countdown. -var _vote_timer: SceneTreeTimer = null - -## Yes votes: peer_id → true -var _yes_votes: Dictionary = {} - -## No votes: peer_id → true -var _no_votes: Dictionary = {} - -# --------------------------------------------------------------------------- -# Getters -# --------------------------------------------------------------------------- - -func _is_voting() -> bool: - return is_voting - -## Get the current yes count. -func get_yes_count() -> int: - return _yes_votes.size() - -## Get the current no count. -func get_no_count() -> int: - return _no_votes.size() - -## Get total connected players (from NetworkManager's peer list). -func _get_total_players() -> int: - if not multiplayer.has_multiplayer_peer(): - return 0 - return multiplayer.get_peers().size() + 1 # +1 for the server itself - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Start a vote for the given map_id, initiated by initiator_id. -## If a vote is already in progress, the request is ignored (prints a warning). -func vote_start(map_id: String, initiator_id: int) -> void: - if is_voting: - print("[MapVote] Vote already in progress for '%s' — ignoring request for '%s'" % [active_map_id, map_id]) - return - - # Validate map exists via WorkshopBrowser if available - if WorkshopBrowser and WorkshopBrowser.has_method(&"has_map"): - if not WorkshopBrowser.has_map(map_id): - print("[MapVote] Cannot start vote: unknown map '%s'" % map_id) - return - - active_map_id = map_id - initiator_peer_id = initiator_id - is_voting = true - _yes_votes.clear() - _no_votes.clear() - - # Auto-register the initiator's yes vote - _yes_votes[initiator_id] = true - - print("[MapVote] Vote started: map='%s' initiated by peer %d" % [map_id, initiator_id]) - vote_started.emit(map_id, initiator_id) - vote_tally_updated.emit(_yes_votes.size(), _no_votes.size(), _get_total_players()) - - # Start the 30-second countdown timer - _vote_timer = get_tree().create_timer(VOTE_DURATION) - _vote_timer.timeout.connect(_on_vote_timeout) - -## Cast a vote. Each player may vote once: accept=true for yes, false for no. -## If the player has already voted, their vote is updated (last vote wins). -## Returns true if the vote was accepted, false if no active vote. -func vote(player_id: int, accept: bool) -> bool: - if not is_voting: - return false - - # Remove any prior vote from this player - _yes_votes.erase(player_id) - _no_votes.erase(player_id) - - if accept: - _yes_votes[player_id] = true - else: - _no_votes[player_id] = true - - print("[MapVote] Peer %d voted %s for map '%s'" % [player_id, "yes" if accept else "no", active_map_id]) - vote_tally_updated.emit(_yes_votes.size(), _no_votes.size(), _get_total_players()) - return true - -## Cancel the current vote (e.g., admin override via RCON). -## The vote is cancelled regardless of time remaining. -func vote_cancel() -> void: - if not is_voting: - return - - var cancelled_map: String = active_map_id - _cleanup() - print("[MapVote] Vote cancelled for map '%s'" % cancelled_map) - vote_cancelled.emit(cancelled_map) - -## Check if a specific player has voted. -func has_player_voted(player_id: int) -> bool: - return _yes_votes.has(player_id) or _no_votes.has(player_id) - -## Get the vote direction for a player ("yes", "no", or "" if not voted). -func get_player_vote(player_id: int) -> String: - if _yes_votes.has(player_id): - return "yes" - if _no_votes.has(player_id): - return "no" - return "" - -# --------------------------------------------------------------------------- -# Internal -# --------------------------------------------------------------------------- - -## Called when the 30-second vote timer expires. -func _on_vote_timeout() -> void: - if not is_voting: - return - - var yes: int = _yes_votes.size() - var no: int = _no_votes.size() - var total: int = _get_total_players() - var threshold: float = total * 0.5 - - print("[MapVote] Vote ended: map='%s' yes=%d no=%d total=%d threshold=%.1f" % [active_map_id, yes, no, total, threshold]) - - if yes > threshold: - var passed_map: String = active_map_id - _cleanup() - print("[MapVote] Vote PASSED for map '%s' (%d yes > %d total / 2)" % [passed_map, yes, total]) - vote_passed.emit(passed_map) - - # Broadcast result to all clients - if MapBrowserRPC and MapBrowserRPC.has_method(&"broadcast_vote_result"): - MapBrowserRPC.broadcast_vote_result.rpc(passed_map, true, yes, no) - else: - var failed_map: String = active_map_id - _cleanup() - print("[MapVote] Vote FAILED for map '%s' (%d yes ≤ %d total / 2)" % [failed_map, yes, total]) - vote_failed.emit(failed_map) - - # Broadcast result to all clients - if MapBrowserRPC and MapBrowserRPC.has_method(&"broadcast_vote_result"): - MapBrowserRPC.broadcast_vote_result.rpc(failed_map, false, yes, no) - -## Clean up vote state. -func _cleanup() -> void: - active_map_id = "" - initiator_peer_id = -1 - is_voting = false - _yes_votes.clear() - _no_votes.clear() - _vote_timer = null - -## Clean up on exit, cancelling any active vote. -func _exit_tree() -> void: - if is_voting: - vote_cancel() diff --git a/server/scripts/browser/map_vote.gd.uid b/server/scripts/browser/map_vote.gd.uid deleted file mode 100644 index d16024b..0000000 --- a/server/scripts/browser/map_vote.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bkhwke1658h31 diff --git a/server/scripts/browser/workshop_browser.gd b/server/scripts/browser/workshop_browser.gd deleted file mode 100644 index a136f7f..0000000 --- a/server/scripts/browser/workshop_browser.gd +++ /dev/null @@ -1,197 +0,0 @@ -## WorkshopBrowser — Server-Side Map Directory Scanner -## -## Singleton (or child of ServerMain) that scans the server's maps -## directory for .pck files and .tscn references, maintaining a -## Dictionary of available maps. -## -## ## Map Directory Resolution -## -## Default: user://maps/ (resolves via ProjectSettings.globalize_path) -## Override: MAP_DIR env var (absolute path, for container/VPS deployments) -## -## The browser scans for `*.pck` files and reads their file metadata. -## For built-in (non-PCK) maps, it checks `res://scenes/map/.tscn`. -## -## ## Map Info Dictionary Shape -## -## { -## "name": String, -## "description": String, -## "file_size": int, -## "map_type": String, # "pck" | "builtin" -## "player_count": int, # inferred or 0 (reserved for future metadata) -## "path": String, # absolute path to the .pck or .tscn -## } -## -## ## Signals -## -## maps_refreshed(map_list: Array) — emitted after refresh_maps() completes -## -## ============================================================================= - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted after refresh_maps() completes. -signal maps_refreshed(map_list: Array) - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -## Default maps directory (relative to user://). -const DEFAULT_MAPS_DIR: String = "user://maps/" - -## Path to built-in map scenes (non-PCK). -const BUILTIN_MAP_DIR: String = "res://scenes/map/" - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Available maps keyed by map_id (String → Dictionary). -var _available_maps: Dictionary = {} - -## Absolute path to the maps directory being scanned. -var _maps_dir: String = "" - -# --------------------------------------------------------------------------- -# Lifecycle / Initialisation -# --------------------------------------------------------------------------- - -func _ready() -> void: - _resolve_maps_dir() - print("[WorkshopBrowser] Maps directory: %s" % _maps_dir) - call_deferred(&"refresh_maps") - -## Resolve the maps directory — env var override, then user:// default. -func _resolve_maps_dir() -> void: - if OS.has_environment("MAP_DIR"): - _maps_dir = OS.get_environment("MAP_DIR") - if not _maps_dir.ends_with("/"): - _maps_dir += "/" - return - - _maps_dir = ProjectSettings.globalize_path(DEFAULT_MAPS_DIR) - if not _maps_dir.ends_with("/"): - _maps_dir += "/" - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Rescan the maps directory and rebuild the available map list. -## Returns the Array of map info Dictionaries (same as get_map_list()). -func refresh_maps() -> Array: - _available_maps.clear() - _scan_pck_files() - _scan_builtin_maps() - var list: Array = get_map_list() - maps_refreshed.emit(list) - print("[WorkshopBrowser] Refreshed maps: %d available" % list.size()) - return list - -## Return a serialized list of all available maps as Array[Dictionary]. -## Each entry matches the map info shape documented above. -func get_map_list() -> Array: - var result: Array = [] - for map_id in _available_maps: - result.append(_available_maps[map_id]) - return result - -## Get info for a single map by its map_id (file stem, e.g. "de_dust2"). -## Returns an empty Dictionary if the map is not found. -func get_map_info(map_id: String) -> Dictionary: - return _available_maps.get(map_id, {}) - -## Check if a map exists in the available list. -func has_map(map_id: String) -> bool: - return _available_maps.has(map_id) - -## Get the total number of available maps. -func get_map_count() -> int: - return _available_maps.size() - -## Get the absolute path of the maps directory being scanned. -func get_maps_directory() -> String: - return _maps_dir - -# --------------------------------------------------------------------------- -# Internal: Scanning -# --------------------------------------------------------------------------- - -## Scan for .pck files in the maps directory. -func _scan_pck_files() -> void: - var dir := DirAccess.open(_maps_dir) - if dir == null: - push_warning("[WorkshopBrowser] Cannot open maps directory: %s" % _maps_dir) - return - - dir.list_dir_begin() - var file_name: String = dir.get_next() - while not file_name.is_empty(): - if file_name.ends_with(".pck"): - _register_pck_file(file_name) - file_name = dir.get_next() - dir.list_dir_end() - -## Register a single .pck file found during scanning. -func _register_pck_file(file_name: String) -> void: - var map_id: String = file_name.trim_suffix(".pck") - var full_path: String = _maps_dir.path_join(file_name) - - var file_size: int = 0 - if FileAccess.file_exists(full_path): - file_size = FileAccess.get_size(full_path) - - var map_info: Dictionary = { - name = map_id, - description = "", # reserved for future sidecar metadata - file_size = file_size, - map_type = "pck", - player_count = 0, # inferred or from metadata (future) - path = full_path, - } - - _available_maps[map_id] = map_info - print("[WorkshopBrowser] Registered PCK map: %s (%d bytes)" % [map_id, file_size]) - -## Scan for built-in .tscn maps (non-PCK, part of the game resources). -func _scan_builtin_maps() -> void: - # Use DirAccess on res:// to find .tscn files in the map directory. - # This only works in non-exported builds or with packed resources. - var res_path: String = BUILTIN_MAP_DIR - if not ResourceLoader.exists(res_path): - # res://scenes/map/ might not be a directory; skip silently. - return - - var dir := DirAccess.open(res_path) - if dir == null: - return - - dir.list_dir_begin() - var file_name: String = dir.get_next() - while not file_name.is_empty(): - if file_name.ends_with(".tscn"): - var map_id: String = file_name.trim_suffix(".tscn") - # Don't override a PCK-registered map - if _available_maps.has(map_id): - file_name = dir.get_next() - continue - - var full_path: String = res_path.path_join(file_name) - var map_info: Dictionary = { - name = map_id, - description = "", - file_size = 0, - map_type = "builtin", - player_count = 0, - path = full_path, - } - _available_maps[map_id] = map_info - print("[WorkshopBrowser] Registered builtin map: %s" % map_id) - file_name = dir.get_next() - dir.list_dir_end() diff --git a/server/scripts/browser/workshop_browser.gd.uid b/server/scripts/browser/workshop_browser.gd.uid deleted file mode 100644 index 59323fc..0000000 --- a/server/scripts/browser/workshop_browser.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://ynhkn35cch8b diff --git a/server/scripts/combat/damage_processor.gd b/server/scripts/combat/damage_processor.gd deleted file mode 100644 index 2cc5e13..0000000 --- a/server/scripts/combat/damage_processor.gd +++ /dev/null @@ -1,37 +0,0 @@ -## DamageProcessor — applies hit results, tracks health and kills. -## Minimal stub for server startup compatibility. -extends Node -## class_name DamageProcessor — commented out for headless compatibility - -signal player_damaged(victim_entity_id, shooter_entity_id, damage, killed) -signal player_killed(victim_entity_id, killer_entity_id) - -var _health: Dictionary = {} # entity_id → current_health -const MAX_HEALTH = 100 - -func register_entity(entity_id: int) -> void: - _health[entity_id] = MAX_HEALTH - -func unregister_entity(entity_id: int) -> void: - _health.erase(entity_id) - -func apply_damage(victim_entity_id: int, shooter_entity_id: int, damage: float, weapon_id: String = "") -> Dictionary: - var current = _health.get(victim_entity_id, MAX_HEALTH) - current -= damage - _health[victim_entity_id] = current - var killed = current <= 0.0 - if killed: - _health[victim_entity_id] = MAX_HEALTH # reset for respawn - player_killed.emit(victim_entity_id, shooter_entity_id) - player_damaged.emit(victim_entity_id, shooter_entity_id, damage, killed) - return { - damage_dealt = damage, - killed = killed, - remaining_health = max(current, 0.0), - } - -func get_health(entity_id: int) -> float: - return _health.get(entity_id, MAX_HEALTH) - -func reset_all() -> void: - _health.clear() diff --git a/server/scripts/combat/damage_processor.gd.uid b/server/scripts/combat/damage_processor.gd.uid deleted file mode 100644 index 1e0190a..0000000 --- a/server/scripts/combat/damage_processor.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://5mvg6r8pob2u diff --git a/server/scripts/combat/lag_compensation.gd b/server/scripts/combat/lag_compensation.gd deleted file mode 100644 index 16fde5c..0000000 --- a/server/scripts/combat/lag_compensation.gd +++ /dev/null @@ -1,35 +0,0 @@ -## LagCompensation — records player position history for hit-scan rewinding. -## Minimal stub for server startup compatibility. -## Full implementation to be built when hitscan system is wired. -extends Node -## class_name LagCompensation — commented out for headless compatibility - -var physics_world = null -var _history: Dictionary = {} # tick → { entity_id: position } - -## Record the start of a new tick for lag compensation. -## Called by GameServer each tick before processing inputs. -## Individual player positions are recorded by the game server loop. -func record_tick(tick: int) -> void: - _history[tick] = {} - -## Record a player's position at a given tick (used during per-entity processing). -func record_position(tick: int, entity_id: int, position: Vector3) -> void: - if not _history.has(tick): - _history[tick] = {} - _history[tick][entity_id] = position - if _history.size() > 128: - var oldest = _history.keys().min() - if oldest != null: - _history.erase(oldest) - -func rewind_and_raycast(tick: int, origin: Vector3, direction: Vector3, max_range: float, exclude: Array = []) -> Dictionary: - # Stub: fall back to current-frame raycast - if physics_world == null: - return {} - var space_state = physics_world.direct_space_state - if space_state == null: - return {} - var query = PhysicsRayQueryParameters3D.create(origin, origin + direction * max_range) - query.exclude = exclude - return space_state.intersect_ray(query) diff --git a/server/scripts/combat/lag_compensation.gd.uid b/server/scripts/combat/lag_compensation.gd.uid deleted file mode 100644 index aa0d5e6..0000000 --- a/server/scripts/combat/lag_compensation.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://nsrju5h3twl8 diff --git a/server/scripts/economy/buy_menu_handler.gd b/server/scripts/economy/buy_menu_handler.gd deleted file mode 100644 index f8499df..0000000 --- a/server/scripts/economy/buy_menu_handler.gd +++ /dev/null @@ -1,211 +0,0 @@ -## BuyMenuHandler — Server-side buy request validation and processing. -## -## Receives buy_request RPCs from clients, validates against buy-zone, -## phase, and money constraints, then processes valid purchases. -## -## Each purchase deducts the weapon cost from the player's balance -## and calls WeaponServer.give_weapon() to grant the item. -## -## Usage (add as child of GameServer): -## var bmh = BuyMenuHandler.new() -## add_child(bmh) -## bmh.initialise(economy_manager, weapon_server, team_manager) -## -## RPC protocol: -## Client → Server: buy_request(weapon_id) -## Server → Client: _on_buy_confirmed(weapon_id, cost) -## Server → Client: _on_buy_denied(reason) -## -## Signals: -## purchase_made(player_id, weapon_id, cost) -## purchase_denied(player_id, weapon_id, reason) -## -class_name BuyMenuHandler -extends Node - -const _td = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted when a purchase is successfully processed. -signal purchase_made(player_id: int, weapon_id: String, cost: int) - -## Emitted when a purchase is denied (invalid weapon, insufficient funds, -## not in buy zone, etc.). -signal purchase_denied(player_id: int, weapon_id: String, reason: String) - -# --------------------------------------------------------------------------- -# Dependencies (injected via initialise()) -# --------------------------------------------------------------------------- -var economy_manager: EconomyManager = null -var weapon_server: WeaponServer = null -var team_manager: TeamManager = null - -## Cached list of BuyZone nodes found in the current scene. -var _buy_zones: Array[BuyZone] = [] - -## If true, the buy-zone check is skipped (for admin / dev builds). -var bypass_zone_check: bool = false - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -## Initialise with required subsystem references. -## Must be called after the node is added to the scene tree. -func initialise(em: EconomyManager, ws: WeaponServer, tm: TeamManager) -> void: - economy_manager = em - weapon_server = ws - team_manager = tm - _refresh_buy_zones() - -## Scan the scene tree for all BuyZone instances and cache them. -## Call this after every map load to pick up the new zone layout. -func _refresh_buy_zones() -> void: - _buy_zones.clear() - if not is_inside_tree(): - return - var all_nodes: Array[Node] = get_tree().root.find_children("*", "BuyZone", true, false) - for node in all_nodes: - if node is BuyZone: - _buy_zones.append(node) - print("[BuyMenuHandler] Cached %d buy zone(s)" % _buy_zones.size()) - -# --------------------------------------------------------------------------- -# Buy-zone queries -# --------------------------------------------------------------------------- - -## Returns true if the player is inside any buy zone that allows their team. -func is_player_in_buyzone(player_id: int) -> bool: - if bypass_zone_check: - return true - if _buy_zones.is_empty(): - _refresh_buy_zones() - if _buy_zones.is_empty(): - # No buy zones means players can buy anywhere (dev fallback) - return true - - var player_team: int = TeamData.Team.SPECTATOR - if team_manager: - player_team = team_manager.get_player_team(player_id) - - for bz in _buy_zones: - if bz.is_in_buyzone(player_id) and bz.is_team_allowed(player_team): - return true - return false - -## Return the list of cached BuyZone nodes. -func get_buy_zones() -> Array[BuyZone]: - return _buy_zones.duplicate() - -# --------------------------------------------------------------------------- -# RPC — Client → Server: Buy request -# --------------------------------------------------------------------------- - -## Client calls this RPC to attempt a weapon purchase. -## The server validates the request and responds with -## _on_buy_confirmed or _on_buy_denied. -@rpc("any_peer", "call_remote", "reliable") -func buy_request(weapon_id: String) -> void: - if not multiplayer.is_server(): - return - - var player_id: int = multiplayer.get_remote_sender_id() - _process_buy_request(player_id, weapon_id) - -## Process a buy request (also callable directly from server-side code). -func _process_buy_request(player_id: int, weapon_id: String) -> void: - # ── 1. Validate weapon exists ── - var weapon_data = WeaponDefinitions.get_weapon(weapon_id) # WeaponData — untyped for headless - if weapon_data == null: - purchase_denied.emit(player_id, weapon_id, "unknown_weapon") - _send_buy_denied(player_id, "Unknown weapon: \"%s\"" % weapon_id) - return - - # ── 2. Validate buy-zone membership ── - if not is_player_in_buyzone(player_id): - purchase_denied.emit(player_id, weapon_id, "not_in_buy_zone") - _send_buy_denied(player_id, "You must be in a buy zone to purchase equipment") - return - - # ── 3. Validate weapon is purchasable and affordable ── - var cost: int = EconomyManager.get_weapon_cost(weapon_id) - if cost < 0: - purchase_denied.emit(player_id, weapon_id, "not_purchasable") - _send_buy_denied(player_id, "This weapon cannot be purchased") - return - - if economy_manager == null or not economy_manager.can_afford(player_id, cost): - purchase_denied.emit(player_id, weapon_id, "insufficient_funds") - var balance: int = economy_manager.get_money(player_id) if economy_manager else 0 - _send_buy_denied(player_id, "Insufficient funds — need $%d, have $%d" % [cost, balance]) - return - - # ── 4. Deduct money ── - if not economy_manager.spend_money(player_id, cost): - purchase_denied.emit(player_id, weapon_id, "transaction_failed") - _send_buy_denied(player_id, "Transaction failed") - return - - # ── 5. Grant the weapon ── - if weapon_server: - weapon_server.give_weapon(player_id, weapon_id) - - # ── 6. Confirm purchase ── - purchase_made.emit(player_id, weapon_id, cost) - _send_buy_confirmed(player_id, weapon_id, cost) - print("[BuyMenuHandler] Player %d purchased '%s' for $%d" % [player_id, weapon_id, cost]) - -# --------------------------------------------------------------------------- -# RPC — Server → Client: Purchase result -# --------------------------------------------------------------------------- - -## Send a purchase confirmation to the requesting client only. -func _send_buy_confirmed(player_id: int, weapon_id: String, cost: int) -> void: - rpc_id(player_id, "_on_buy_confirmed", weapon_id, cost) - -## Server-to-client RPC: purchase succeeded. -@rpc("authority", "call_remote", "reliable") -func _on_buy_confirmed(weapon_id: String, cost: int) -> void: - # Handled on the client side by buy_menu.gd - pass - -## Send a purchase denial to the requesting client only. -func _send_buy_denied(player_id: int, reason: String) -> void: - rpc_id(player_id, "_on_buy_denied", reason) - -## Server-to-client RPC: purchase denied with a human-readable reason. -@rpc("authority", "call_remote", "reliable") -func _on_buy_denied(reason: String) -> void: - # Handled on the client side by buy_menu.gd - pass - -# --------------------------------------------------------------------------- -# Public API — Query helpers (for UI / RCON) -# --------------------------------------------------------------------------- - -## Return a list of weapon info dictionaries the player can afford. -## Each entry: {weapon_id, display_name, cost, damage, fire_rate, mag_size} -func get_affordable_weapons(player_id: int) -> Array[Dictionary]: - var affordable: Array[Dictionary] = [] - var money: int = economy_manager.get_money(player_id) if economy_manager else 0 - - for wid in EconomyManager.WEAPON_COSTS.keys(): - var cost: int = EconomyManager.WEAPON_COSTS[wid] - if money >= cost: - var data = WeaponDefinitions.get_weapon(wid) # WeaponData — untyped for headless - affordable.append({ - "weapon_id": wid, - "display_name": data.display_name if data else wid, - "cost": cost, - "damage": data.damage if data else 0.0, - "fire_rate": data.fire_rate if data else 0.0, - "mag_size": data.mag_size if data else 0, - }) - - return affordable - -## Return the player's current money balance. -func get_player_money(player_id: int) -> int: - return economy_manager.get_money(player_id) if economy_manager else 0 diff --git a/server/scripts/economy/buy_menu_handler.gd.uid b/server/scripts/economy/buy_menu_handler.gd.uid deleted file mode 100644 index adf42b6..0000000 --- a/server/scripts/economy/buy_menu_handler.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d3bjem6a0wy0e diff --git a/server/scripts/economy/economy_manager.gd b/server/scripts/economy/economy_manager.gd deleted file mode 100644 index ae6436e..0000000 --- a/server/scripts/economy/economy_manager.gd +++ /dev/null @@ -1,237 +0,0 @@ -## EconomyManager — Per-player money tracking and earnings. -## -## Tracks each player's money balance, awards income for kills/rounds/objectives, -## and validates affordability when spending. Supports escalating loss bonuses -## so losing teams catch up over consecutive round losses. -## -## Usage (add as child of GameServer): -## var em = EconomyManager.new() -## add_child(em) -## -## # Register/unregister as players join/leave -## em.register_player(player_id) -## -## # Award income -## em.award_kill_reward(player_id) -## em.award_round_win(team, team_player_ids) -## em.award_round_loss(team, team_player_ids) -## -## # Spend -## if em.spend_money(player_id, cost): -## give_weapon(player_id, weapon_id) -## -## Signals: -## money_changed(player_id, old_amount, new_amount, reason) -## -extends Node -class_name EconomyManager -const _td_eco = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Weapon costs -# --------------------------------------------------------------------------- -## Static mapping of weapon_id → purchase cost in dollars. -## Used by both EconomyManager and BuyMenuHandler. -const WEAPON_COSTS: Dictionary = { - "pistol": 500, - "smg": 1200, - "rifle": 2700, - "shotgun": 1900, -} - -# --------------------------------------------------------------------------- -# Economy constants -# --------------------------------------------------------------------------- -## Starting money for every player at the beginning of a match or after reset. -const STARTING_MONEY: int = 800 - -## Per-player bonus when their team wins a round. -const ROUND_WIN_BONUS: int = 3250 - -## Base per-player bonus when their team loses a round. -const ROUND_LOSS_BASE: int = 1900 - -## Additional per-consecutive-loss bonus (additive per streak). -const LOSS_STREAK_BONUS: int = 500 - -## Maximum additional loss bonus (cap on loss_streak_bonus × streak). -## Total loss payout = ROUND_LOSS_BASE + min(LOSS_STREAK_BONUS * streak, MAX_LOSS_BONUS_ADDITIONAL) -const MAX_LOSS_BONUS_ADDITIONAL: int = 1000 # max total = 1900 + 1000 = 2900 - -## Kill reward (awarded to the shooter). -const KILL_REWARD: int = 300 - -## Bomb plant reward (T-side). -const BOMB_PLANT_REWARD: int = 800 - -## Bomb defuse reward (CT-side). -const BOMB_DEFUSE_REWARD: int = 800 - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -## Emitted whenever a player's money balance changes. -## reason: String describing the cause ("kill", "round_win", "round_loss", -## "bomb_plant", "bomb_defuse", "spend", "reset", "register", "admin") -signal money_changed(player_id: int, old_amount: int, new_amount: int, reason: String) - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- -## Per-player money balance indexed by player_id (int). -var _money: Dictionary = {} # player_id (int) → balance (int) - -## Consecutive round losses per team, used to escalate the loss bonus. -## Key: int (int), Value: consecutive losses (int) -var _consecutive_losses: Dictionary = {} - -## Total money ever earned per player (for stats). Not reset on round restart. -var _total_earned: Dictionary = {} # player_id (int) → total (int) - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- -func _ready() -> void: - _consecutive_losses[_td_eco.Team.COUNTER_TERRORIST] = 0 - _consecutive_losses[_td_eco.Team.TERRORIST] = 0 - _consecutive_losses[_td_eco.Team.SPECTATOR] = 0 - -# --------------------------------------------------------------------------- -# Public API — Money queries -# --------------------------------------------------------------------------- - -## Return the player's current money balance, or 0 if not tracked. -func get_money(player_id: int) -> int: - return _money.get(player_id, 0) - -## Set a player's money directly (admin override / system init). -## Emits money_changed with the given reason. -func set_money(player_id: int, amount: int, reason: String = "admin") -> void: - var clamped: int = maxi(0, amount) - var old: int = _money.get(player_id, 0) - _money[player_id] = clamped - money_changed.emit(player_id, old, clamped, reason) - -## Register a new player with starting money. -func register_player(player_id: int) -> void: - var old: int = _money.get(player_id, 0) - _money[player_id] = STARTING_MONEY - if not _total_earned.has(player_id): - _total_earned[player_id] = 0 - money_changed.emit(player_id, old, STARTING_MONEY, "register") - -## Remove a player from money tracking (on disconnect). -func unregister_player(player_id: int) -> void: - _money.erase(player_id) - -## Add money to a player's balance. -func add_money(player_id: int, amount: int, reason: String) -> void: - if amount <= 0: - return - var old: int = _money.get(player_id, 0) - var new_balance: int = old + amount - _money[player_id] = new_balance - _total_earned[player_id] = _total_earned.get(player_id, 0) + amount - money_changed.emit(player_id, old, new_balance, reason) - -## Deduct money from a player. Returns true if the player could afford it. -## The purchase is only deducted if the balance is sufficient. -func spend_money(player_id: int, amount: int) -> bool: - var current: int = _money.get(player_id, 0) - if current < amount: - return false - var old: int = current - _money[player_id] = current - amount - money_changed.emit(player_id, old, _money[player_id], "spend") - return true - -## Returns true if the player has at least `amount` money. -func can_afford(player_id: int, amount: int) -> bool: - return _money.get(player_id, 0) >= amount - -# --------------------------------------------------------------------------- -# Static helpers — weapon costs -# --------------------------------------------------------------------------- - -## Return the cost of a weapon by weapon_id. Returns -1 if not purchasable. -static func get_weapon_cost(weapon_id: String) -> int: - return WEAPON_COSTS.get(weapon_id, -1) - -## Return a dictionary of weapon_id → cost for all purchasable weapons. -static func get_purchasable_weapons() -> Dictionary: - return WEAPON_COSTS.duplicate() - -# --------------------------------------------------------------------------- -# Public API — Earnings -# --------------------------------------------------------------------------- - -## Award the kill reward to a player. -func award_kill_reward(player_id: int) -> void: - add_money(player_id, KILL_REWARD, "kill") - -## Award the round-win bonus to every player on the winning team. -## Resets the loss streak for that team. -func award_round_win(team: int, player_ids: Array[int]) -> void: - for pid in player_ids: - add_money(pid, ROUND_WIN_BONUS, "round_win") - _consecutive_losses[team] = 0 - -## Award the round-loss bonus to every player on the losing team. -## Escalates based on consecutive losses (loss streak). -func award_round_loss(team: int, player_ids: Array[int]) -> void: - var streak: int = _consecutive_losses.get(team, 0) - var bonus: int = mini(streak * LOSS_STREAK_BONUS, MAX_LOSS_BONUS_ADDITIONAL) - var total_bonus: int = ROUND_LOSS_BASE + bonus - _consecutive_losses[team] = streak + 1 - for pid in player_ids: - add_money(pid, total_bonus, "round_loss") - -## Award the bomb-plant reward to the planter. -func award_bomb_plant(player_id: int) -> void: - add_money(player_id, BOMB_PLANT_REWARD, "bomb_plant") - -## Award the bomb-defuse reward to the defuser. -func award_bomb_defuse(player_id: int) -> void: - add_money(player_id, BOMB_DEFUSE_REWARD, "bomb_defuse") - -## Return the total loss bonus the given team would receive on their -## next round loss, accounting for the current loss streak. -func get_loss_bonus_for_team(team: int) -> int: - var streak: int = _consecutive_losses.get(team, 0) - var bonus: int = mini(streak * LOSS_STREAK_BONUS, MAX_LOSS_BONUS_ADDITIONAL) - return ROUND_LOSS_BASE + bonus - -# --------------------------------------------------------------------------- -# Public API — Stats -# --------------------------------------------------------------------------- - -## Return the total amount of money a player has ever earned. -func get_total_earned(player_id: int) -> int: - return _total_earned.get(player_id, 0) - -# --------------------------------------------------------------------------- -# Public API — Reset -# --------------------------------------------------------------------------- - -## Reset all tracked players' money to STARTING_MONEY. -## If player_ids is provided, only resets those players; otherwise resets all. -func reset_economy(player_ids: Array[int] = []) -> void: - if player_ids.is_empty(): - for pid in _money.keys(): - var old: int = _money[pid] - _money[pid] = STARTING_MONEY - money_changed.emit(pid, old, STARTING_MONEY, "reset") - else: - for pid in player_ids: - var old: int = _money.get(pid, 0) - _money[pid] = STARTING_MONEY - money_changed.emit(pid, old, STARTING_MONEY, "reset") - - _consecutive_losses[_td_eco.Team.COUNTER_TERRORIST] = 0 - _consecutive_losses[_td_eco.Team.TERRORIST] = 0 - -## Reset exactly one player's money to STARTING_MONEY. -func reset_player_money(player_id: int) -> void: - var old: int = _money.get(player_id, 0) - _money[player_id] = STARTING_MONEY - money_changed.emit(player_id, old, STARTING_MONEY, "reset") diff --git a/server/scripts/economy/economy_manager.gd.uid b/server/scripts/economy/economy_manager.gd.uid deleted file mode 100644 index 4abdbd2..0000000 --- a/server/scripts/economy/economy_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://8m62kk21r2ek diff --git a/server/scripts/game_server.gd b/server/scripts/game_server.gd deleted file mode 100644 index a7a5723..0000000 --- a/server/scripts/game_server.gd +++ /dev/null @@ -1,480 +0,0 @@ -## GameServer — drives the 128Hz simulation loop. -## -## Owns a SimulationServer instance, drives its tick loop in _physics_process, -## and manages weapon configuration. Acts as the bridge between the GDScript -## world (NetworkManager, ServerMain) and the C++ simulation core. -## -## Architecture: -## GameServer (Node, autoload candidate) -## ├── SimulationServer (GDExtension C++) — game state + hit detection -## │ ├── applies client input via apply_input() -## │ └── process_compensated_fire() with lag compensation rewind -## └── WeaponManager (optional, on the player node for client-side rate limit) -## -## Usage (server_main.gd): -## func _ready(): -## var gs = GameServer.new() -## add_child(gs) -## gs.configure(ServerConfig.tick_rate, ServerConfig.make_movement_dict()) -## -## Standalone / listen-server test: -## var gs = get_node("/root/GameServer") -## if gs: gs.start_simulation() -## -extends Node - -# --------------------------------------------------------------------------- -# Force class_name script dependencies to load first -# (Godot 4 headless mode doesn't resolve global classes in dependency order) -# -# NOTE: these are commented out for P7.5 build — they reference development -# systems (weapons, economy, objectives, teams) that aren't part of this -# phase. When those systems are ready, uncomment the relevant preloads. -# --------------------------------------------------------------------------- -#const _ws = preload("res://server/scripts/weapons/weapon_server.gd") -#const _lc = preload("res://server/scripts/combat/lag_compensation.gd") -#const _dp = preload("res://server/scripts/combat/damage_processor.gd") -#const _tm = preload("res://scripts/teams/team_manager.gd") -#const _rm = preload("res://server/scripts/round/round_manager.gd") -#const _em = preload("res://server/scripts/economy/economy_manager.gd") -#const _bm = preload("res://server/scripts/economy/buy_menu_handler.gd") -#const _bo = preload("res://server/scripts/objectives/bomb_objective.gd") -#const _sm = preload("res://scripts/teams/spawn_manager.gd") -#const _td = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted after each simulation tick with hit results. -signal tick_completed(tick: int) - -## Emitted when a player is damaged (for scoreboard/UI updates). -signal player_damaged(victim_entity_id: int, shooter_entity_id: int, damage: float, killed: bool) - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var simulation_server: Object = null -var is_running: bool = false - -## WeaponServer — handles hit-scan raycasting and lag-compensated fire. -var weapon_server = null - -## LagCompensation — records player positions per tick for rewind raycasts. -var lag_compensation = null - -## DamageProcessor — applies hit results, tracks health and kills. -var damage_processor = null - -## TeamManager — manages team assignment and scoring. -var team_manager = null - -## RoundManager — match lifecycle (warmup → prep → live → post). -var round_manager = null - -## EconomyManager — per-player money tracking and earnings. -var economy_manager = null - -## BuyMenuHandler — server-side buy request validation and processing. -var buy_menu_handler = null - -## BombObjective — server-authoritative bomb plant/defuse logic. -var bomb_objective = null - -## TeamData reference — cached reference, populated at runtime if needed. -var _team_data_ref = null - -## Current server tick counter, incremented each time tick() is called. -var _current_tick: int = 0 - -# Map entity_id → peer_id for broadcasting damage events -var entity_to_peer: Dictionary = {} # entity_id (int) → peer_id (int) - -# Map peer_id → entity_id for backwards lookup -var peer_to_entity: Dictionary = {} # peer_id (int) → entity_id (int) - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Create the SimulationServer (stub if GDExtension not compiled) - var SimServerClass = load("res://server/scripts/simulation_server_stub.gd") - if ClassDB.class_exists(&"SimulationServer"): - SimServerClass = ClassDB.instantiate(&"SimulationServer").get_script() - simulation_server = SimServerClass.new() - simulation_server.set_tick_rate(128) - - # Apply movement config from ServerConfig singleton if available - if ServerConfig and ServerConfig.has_method(&"make_movement_dict"): - simulation_server.set_movement_config(ServerConfig.make_movement_dict()) - - # Configure the default hitscan weapon (Assault Rifle) - simulation_server.set_weapon_config({ - "base_damage": 30.0, - "head_multiplier": 4.0, - "body_multiplier": 1.0, - "arm_multiplier": 0.75, - "leg_multiplier": 0.6, - "max_range": 500.0, - "spread_degrees": 0.5, - "fire_rate_hz": 10.0, - }) - - # Set history depth for lag compensation (64 ticks = ~500ms at 128Hz) - simulation_server.set_history_depth(64) - - # --- Combat subsystems (GDScript lag-compensated hit-scan) --- - # Create and wire the WeaponServer with LagCompensation and DamageProcessor. - # These work alongside the C++ SimulationServer for the GDScript - # weapon path. - weapon_server = load("res://server/scripts/weapons/weapon_server.gd").new() - weapon_server.physics_world = get_viewport().get_world_3d() - add_child(weapon_server) - - lag_compensation = load("res://server/scripts/combat/lag_compensation.gd").new() - add_child(lag_compensation) - - damage_processor = load("res://server/scripts/combat/damage_processor.gd").new() - add_child(damage_processor) - - # --- Round / Match lifecycle --- - round_manager = load("res://server/scripts/round/round_manager.gd").new() - add_child(round_manager) - - # Wire up TeamManager reference (find it in the tree or create it) - team_manager = get_node_or_null("/root/TeamManager") - if not team_manager: - team_manager = load("res://scripts/teams/team_manager.gd").new() - add_child(team_manager) - - round_manager.team_manager = team_manager - round_manager.damage_processor = damage_processor - - # --- Economy system --- - economy_manager = load("res://server/scripts/economy/economy_manager.gd").new() - add_child(economy_manager) - - buy_menu_handler = load("res://server/scripts/economy/buy_menu_handler.gd").new() - add_child(buy_menu_handler) - buy_menu_handler.initialise(economy_manager, weapon_server, team_manager) - - # Wire kill rewards: when DamageProcessor detects a kill, award money to the shooter - # Note: shooter_id is an entity_id; we map it to peer_id for economy lookup. - damage_processor.player_killed.connect(_on_kill_for_economy) - - # --- RCON command handling --- - var rcon_handler = get_node_or_null("/root/RconServer/RconCommandHandler") - if rcon_handler and rcon_handler.has_signal("rcon_command"): - rcon_handler.rcon_command.connect(_on_rcon_command) - print("[GameServer] Connected to RCON command handler") - else: - print("[GameServer] RCON handler not available — commands won't be routed") - - # Wire lag compensation into WeaponServer - weapon_server.lag_compensation = lag_compensation - - # Connect damage processor signals to GameServer signals for upstream relay - damage_processor.player_killed.connect(_on_player_killed) - - # Connect damage processor kills to RoundManager for round tracking and elimination - damage_processor.player_killed.connect(_on_kill_for_round) - - _current_tick = 0 - print("[GameServer] Combat subsystems ready: WeaponServer + LagCompensation + DamageProcessor") - - # Register as singleton so FPSCharacterController can find us - Engine.register_singleton("SimulationServer", simulation_server) - - # --- Bomb / Defuse Objective --- - bomb_objective = load("res://server/scripts/objectives/bomb_objective.gd").new() - add_child(bomb_objective) - bomb_objective.round_manager = round_manager - bomb_objective.team_manager = team_manager - bomb_objective.damage_processor = damage_processor - bomb_objective.entity_to_peer = entity_to_peer - bomb_objective.peer_to_entity = peer_to_entity - - # Register bomb sites from the scene tree - if is_inside_tree(): - var bomb_sites: Array[Area3D] = [] - for n in get_tree().get_nodes_in_group("bomb_sites"): - if n is Area3D: - bomb_sites.append(n) - if bomb_sites.size() > 0: - bomb_objective.register_bomb_sites(bomb_sites) - print("[GameServer] Registered %d bomb sites with BombObjective" % bomb_sites.size()) - else: - print("[GameServer] No bomb sites found in scene — bomb can't be planted") - else: - print("[GameServer] Not in scene tree yet — bomb sites will be registered later") - - # Wire: bomb explosion/defuse → round end - bomb_objective.bomb_exploded.connect(func(_pos): - if round_manager: - round_manager.end_round(2, "bomb_exploded") # TeamData.Team.TERRORIST - ) - bomb_objective.bomb_defused.connect(func(_player_id): - if round_manager: - round_manager.end_round(1, "bomb_defused") # TeamData.Team.COUNTER_TERRORIST - ) - - # Wire: round end → reset bomb - round_manager.round_ended.connect(func(_winning_team, _reason): - bomb_objective.reset() - ) - - print("[GameServer] BombObjective integrated — bomb/defuse ready") - - print("[GameServer] SimulationServer created. Tick rate: %d Hz" % simulation_server.get_tick_rate()) - -func _exit_tree() -> void: - if simulation_server: - simulation_server.stop() - simulation_server = null - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Start the simulation. -func start_simulation() -> void: - if is_running: - return - if simulation_server == null: - push_error("[GameServer] SimulationServer is null, cannot start") - return - - simulation_server.start() - is_running = true - print("[GameServer] Simulation started") - -## Stop the simulation. -func stop_simulation() -> void: - if not is_running: - return - if simulation_server: - simulation_server.stop() - is_running = false - print("[GameServer] Simulation stopped") - -## Spawn a player entity and map to peer ID. -## Returns the entity ID assigned by the simulation server. -func spawn_player_entity(peer_id: int, spawn_pos: Vector3) -> int: - if simulation_server == null: - return -1 - - if not is_running: - start_simulation() - - var entity_id: int = simulation_server.spawn_entity(spawn_pos) - if entity_id < 0 or entity_id >= 65535: - push_error("[GameServer] Failed to spawn entity for peer %d" % peer_id) - return -1 - - entity_to_peer[entity_id] = peer_id - peer_to_entity[peer_id] = entity_id - print("[GameServer] Spawned entity %d for peer %d at (%.1f, %.1f, %.1f)" % [entity_id, peer_id, spawn_pos.x, spawn_pos.y, spawn_pos.z]) - return entity_id - -## Despawn a player entity. -func despawn_player_entity(entity_id: int) -> void: - if simulation_server == null: - return - - if entity_id >= 0: - simulation_server.despawn_entity(entity_id) - - # Remove from mappings - if entity_id in entity_to_peer: - var pid: int = entity_to_peer[entity_id] - peer_to_entity.erase(pid) - entity_to_peer.erase(entity_id) - -## Get the peer ID for a given entity ID. -func get_peer_for_entity(entity_id: int) -> int: - return entity_to_peer.get(entity_id, -1) - -## Get the underlying SimulationServer reference. -func get_simulation_server() -> Object: - return simulation_server - -## Get the current server tick counter. -func get_current_tick() -> int: - return _current_tick - -## Configure weapon damage profile. -func set_weapon(config: Dictionary) -> void: - if simulation_server: - simulation_server.set_weapon_config(config) - -# --------------------------------------------------------------------------- -# Combat subsystem — player registration -# --------------------------------------------------------------------------- - -## Register a player node with LagCompensation and DamageProcessor. -## Call this after spawning a player entity and assigning its entity_id. -## entity_id: the simulation entity ID assigned by spawn_player_entity() -## node: the player's Node3D (CharacterBody3D) in the scene tree -## max_health: starting/maximum health for damage tracking -func register_player_node(entity_id: int, node: Node3D, max_health: float = 100.0) -> void: - if lag_compensation: - lag_compensation.register_player_node(entity_id, node) - if damage_processor: - damage_processor.register_player(entity_id, max_health) - # Register peer ID for economy tracking - var peer_id: int = entity_to_peer.get(entity_id, -1) - if peer_id >= 0 and economy_manager: - economy_manager.register_player(peer_id) - print("[GameServer] Registered player peer=%d with economy manager" % peer_id) - print("[GameServer] Registered player node entity=%d with lag compensation + damage processor" % entity_id) - -## Unregister a player node from LagCompensation and DamageProcessor. -func unregister_player_node(entity_id: int) -> void: - if lag_compensation: - lag_compensation.unregister_player_node(entity_id) - if damage_processor: - damage_processor.unregister_player(entity_id) - # Unregister from economy tracking - var peer_id: int = entity_to_peer.get(entity_id, -1) - if peer_id >= 0 and economy_manager: - economy_manager.unregister_player(peer_id) - print("[GameServer] Unregistered player node entity=%d" % entity_id) - -# --------------------------------------------------------------------------- -# Combat subsystem — kill handling -# --------------------------------------------------------------------------- -func _on_player_killed(victim_id: int, shooter_id: int) -> void: - # Relay the kill event upstream with the shooter's peer_id if available - var shooter_peer: int = entity_to_peer.get(shooter_id, -1) - player_damaged.emit(victim_id, shooter_id, 0.0, true) - print("[GameServer] Kill: victim_entity=%d, shooter_entity=%d (peer=%d)" % [victim_id, shooter_id, shooter_peer]) - -## Economy kill reward — award money to the shooter when they get a kill. -## Connected from DamageProcessor.player_killed in _ready(). -func _on_kill_for_economy(victim_id: int, shooter_id: int) -> void: - if economy_manager == null: - return - # Map entity_id → peer_id for economy lookup - var shooter_peer: int = entity_to_peer.get(shooter_id, -1) - if shooter_peer < 0: - return - economy_manager.award_kill_reward(shooter_peer) - -## Round-level kill handler — tracks kills for round stats and checks elimination. -## Connected from DamageProcessor.player_killed. -func _on_kill_for_round(victim_id: int, shooter_id: int) -> void: - # Forward to RoundManager for kill tracking - if round_manager: - round_manager.on_player_killed(victim_id, shooter_id) - - # Check for team elimination using our entity→peer→team mapping - if not round_manager or not round_manager.team_manager: - return - - # Get teams for victim and shooter - var victim_peer: int = entity_to_peer.get(victim_id, -1) - var shooter_peer: int = entity_to_peer.get(shooter_id, -1) - - if victim_peer < 0 or shooter_peer < 0: - return - - var victim_team: int = round_manager.team_manager.get_player_team(victim_peer) - var shooter_team: int = round_manager.team_manager.get_player_team(shooter_peer) - - if victim_team < 0 or shooter_team < 0 or victim_team == shooter_team: - return - - # Check if all players on victim's team are dead - var all_dead: bool = true - var team_player_ids: Array[int] = round_manager.team_manager.get_team_players(victim_team) - - for pid in team_player_ids: - var eid: int = peer_to_entity.get(pid, -1) - if eid < 0: - continue - var health: float = damage_processor.get_health(eid) if damage_processor else -1.0 - if health > 0.0: - all_dead = false - break - - if all_dead and team_player_ids.size() > 0: - var victim_name: String = "Spectator" - var shooter_name: String = "Spectator" - if victim_team == 1: victim_name = "CT" - elif victim_team == 2: victim_name = "T" - if shooter_team == 1: shooter_name = "CT" - elif shooter_team == 2: shooter_name = "T" - print("[GameServer] Team elimination detected! %s eliminated by %s" % [victim_name, shooter_name]) - round_manager.end_round(shooter_team, "elimination") - -# --------------------------------------------------------------------------- -# RCON command dispatch -# --------------------------------------------------------------------------- - -## Handle RCON commands dispatched via rcon_command_handler. -func _on_rcon_command(command: String, args: PackedStringArray) -> void: - match command: - "start_match": - if round_manager: - round_manager.start_match() - print("[GameServer] RCON: match started") - "end_round": - # end_round [team_name] [reason] - var team_name: String = args[0] if args.size() > 0 else "ct" - var reason: String = args[1] if args.size() > 1 else "admin" - var team: int = _parse_team_name(team_name) - if team == 0: # TeamData.Team.SPECTATOR - # Default to CT - team = 1 # TeamData.Team.COUNTER_TERRORIST - if round_manager: - round_manager.end_round(team, reason) - team_name = "Spectator" - if team == 1: team_name = "CT" - elif team == 2: team_name = "T" - print("[GameServer] RCON: round ended — %s wins (%s)" % [team_name, reason]) - -## Parse a team name string to a team ID (replaces TeamData.from_string for headless compat). -## 0 = Spectator, 1 = CT, 2 = T. Defaults to 0 for unknown names. -func _parse_team_name(name_str: String) -> int: - match name_str.to_lower().strip_edges(): - "ct", "counter_terrorist", "counter-terrorist", "team_a", "1": - return 1 - "t", "terrorist", "team_b", "2": - return 2 - _: - return 0 # Spectator - -# --------------------------------------------------------------------------- -# Main loop (128 Hz) -# --------------------------------------------------------------------------- - -func _physics_process(delta: float) -> void: - if not is_running or simulation_server == null: - return - - # Drive the fixed-timestep simulation loop - while simulation_server.can_tick(delta): - # Record positions for lag compensation BEFORE processing this tick's inputs. - # This captures the state at the start of the tick, so rewind_and_raycast - # can restore players to their pre-movement positions. - if lag_compensation: - lag_compensation.record_tick(_current_tick) - - var snapshot: PackedByteArray = simulation_server.tick() - # snapshot is the serialized state — send to network layer in Phase 2 - # For now, just emit the tick completed signal - tick_completed.emit(simulation_server.get_stats().get("tick_count", 0)) - - # Check for hit results and emit damage events - var hit_result: Dictionary = simulation_server.get_last_hit_result() - if hit_result.get("hit", false): - var victim_id: int = hit_result.get("entity_id", -1) - var damage: float = hit_result.get("damage", 0.0) - var killed: bool = hit_result.get("killed", false) - # For now we don't know the shooter — this will be wired in Phase 2 - player_damaged.emit(victim_id, -1, damage, killed) - - _current_tick += 1 diff --git a/server/scripts/game_server.gd.uid b/server/scripts/game_server.gd.uid deleted file mode 100644 index b26fed6..0000000 --- a/server/scripts/game_server.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cie4mab2d8q6t diff --git a/server/scripts/net_sim.gd b/server/scripts/net_sim.gd deleted file mode 100644 index 51452b2..0000000 --- a/server/scripts/net_sim.gd +++ /dev/null @@ -1,519 +0,0 @@ -extends Node -class_name NetSim - -# ═══════════════════════════════════════════════════════════════════════════ -# NetSim — Network Condition Simulator for ENet Traffic -# -# Wraps any MultiplayerPeer (ENet, WebSocket, Steam) and injects simulated -# adverse network conditions: -# - Packet loss (random % drop on send/receive) -# - Latency (fixed delay on all packets) -# - Jitter (variable added delay on each packet) -# - Packet reordering (swap delivery order within a window) -# - Packet duplication (random % duplicate on send) -# - Bandwidth throttling (cap bytes per second) -# - Burst loss (drop N consecutive packets every M packets) -# -# Architecture: -# NetSim sits BETWEEN the game and the real MultiplayerPeer. -# It wraps the peer object and intercepts put_packet() / get_packet(), -# applying simulated conditions before forwarding to/from the real peer. -# -# Usage: -# var real_peer = ENetMultiplayerPeer.new() -# real_peer.create_server(7777, 16) -# var sim = NetSim.new() -# sim.wrap_peer(real_peer) -# # configure conditions -# sim.packet_loss = 0.1 # 10% loss -# sim.latency_ms = 150 # 150ms round-trip -# sim.jitter_ms = 30 # ±30ms variable delay -# get_tree().set_multiplayer(sim.multiplayer_api, "/root/SimMp") -# -# For test/diagnostic use only — NEVER enable on production servers. -# ═══════════════════════════════════════════════════════════════════════════ - -# ─── Configuration ──────────────────────────────────────────────────────── -# All probabilities are 0.0–1.0. All times in milliseconds. - -## Probability a packet is silently dropped on send (0.0 = no loss, 1.0 = all lost) -@export var packet_loss: float = 0.0 - -## Additional fixed one-way latency applied to every packet (ms) -@export var latency_ms: float = 0.0 - -## Additional random jitter on top of latency (±jitter_ms, ms). -## Actual per-packet delay = latency_ms + randf_range(-jitter_ms, +jitter_ms) -@export var jitter_ms: float = 0.0 - -## Packet reorder window: number of consecutive packets buffered and shuffled -## before delivery. 0 = no reordering. Higher values = more aggressive reorder. -## (e.g., 3 means shuffle every 3-pack group on the receive side). -@export var reorder_window: int = 0 - -## Probability a packet is duplicated on send (0.0 = no duplicates, 1.0 = every packet doubled) -@export var duplicate_rate: float = 0.0 - -## Max outbound bandwidth in bytes/second (0 = unlimited) -@export var bandwidth_limit: int = 0 - -## Burst loss: drop N consecutive packets every M packets sent. -## Set to 0 to disable burst loss. -@export var burst_loss_count: int = 0 -@export var burst_loss_interval: int = 0 - -## Enable verbose logging of every simulated condition hit -@export var verbose: bool = false - -## Seed for deterministic simulation (useful for reproducible tests). -1 = random seed. -@export var seed_value: int = -1 - -# ─── Constants ──────────────────────────────────────────────────────────── -const CHANNEL_UNRELIABLE: int = 0 -const CHANNEL_RELIABLE: int = 1 -const CHANNEL_ORDERED: int = 2 - -# ─── Internal State ─────────────────────────────────────── - -var _wrapped_peer: MultiplayerPeer = null -var _rng: RandomNumberGenerator - -# Queues of {time: float, packet: PackedByteArray, channel: int} -# _outbound_queue: packets from game → network (delayed send) -# _inbound_queue: packets from network → game (delayed receive) -var _outbound_queue: Array[Dictionary] = [] -var _inbound_queue: Array[Dictionary] = [] - -# Reorder buffer -var _reorder_buffer: Array[Dictionary] = [] - -# Bandwidth tracking -var _bandwidth_used_this_second: int = 0 -var _bandwidth_timer: float = 0.0 - -# Burst loss tracking -var _packets_sent_since_burst: int = 0 -var _burst_dropping: bool = false -var _burst_drop_remaining: int = 0 - -# Debug stats -var _total_sent: int = 0 -var _total_received: int = 0 -var _total_lost: int = 0 -var _total_duplicated: int = 0 -var _total_reordered: int = 0 -var _total_delayed: int = 0 -var _total_burst_dropped: int = 0 -var _total_bandwidth_dropped: int = 0 - - -# ─── Public API ─────────────────────────────────────────────────────────── - -func _init() -> void: - _rng = RandomNumberGenerator.new() - if seed_value >= 0: - _rng.seed = seed_value - else: - _rng.randomize() - - -## Wrap an existing MultiplayerPeer to inject simulated conditions. -## The wrapped peer's connection state (multiplayer_api) is replaced -## transparently — all game code interacts with NetSim as it would the real peer. -func wrap_peer(peer: MultiplayerPeer) -> void: - _wrapped_peer = peer - print("[NetSim] Wrapped peer: %s" % peer.get_class()) - - # Configure a custom MultiplayerAPI that delegates to us - if not Engine.has_singleton("NetSimDebug"): - # Just for logging - pass - - reset_stats() - - -## Reset all stats counters (keeps configuration intact). -func reset_stats() -> void: - _total_sent = 0 - _total_received = 0 - _total_lost = 0 - _total_duplicated = 0 - _total_reordered = 0 - _total_delayed = 0 - _total_burst_dropped = 0 - _total_bandwidth_dropped = 0 - _outbound_queue.clear() - _inbound_queue.clear() - _reorder_buffer.clear() - _bandwidth_used_this_second = 0 - _bandwidth_timer = 0.0 - _packets_sent_since_burst = 0 - _burst_dropping = false - _burst_drop_remaining = 0 - - -## Get debug stats as a formatted string. -func get_stats_string() -> String: - var lines: PackedStringArray = [] - lines.append("=== NetSim Stats ===") - lines.append(" Sent: %d" % _total_sent) - lines.append(" Received: %d" % _total_received) - lines.append(" Lost (loss): %d" % _total_lost) - lines.append(" Lost (burst): %d" % _total_burst_dropped) - lines.append(" Lost (bw): %d" % _total_bandwidth_dropped) - lines.append(" Duplicated: %d" % _total_duplicated) - lines.append(" Reordered: %d" % _total_reordered) - lines.append(" Delayed: %d" % _total_delayed) - - var effective_loss = 0.0 - var total_accounted = _total_sent + _total_duplicated - if total_accounted > 0: - effective_loss = float(_total_lost + _total_burst_dropped + _total_bandwidth_dropped) / float(total_accounted) * 100.0 - lines.append(" Effective loss: %.1f%%" % effective_loss) - lines.append(" Config: loss=%.1f%% lat=%dms jitter=±%dms reorder=%d dupe=%.1f%% bw=%d/s burst=%d/%d" % [ - packet_loss * 100.0, int(latency_ms), int(jitter_ms), - reorder_window, duplicate_rate * 100.0, bandwidth_limit, - burst_loss_count, burst_loss_interval - ]) - return "\n".join(lines) - - -## Apply a quick-set of common network profiles. -## "lan" — 0% loss, 1ms latency, 0 jitter -## "dsl" — 0.5% loss, 20ms latency, ±5ms jitter -## "cellular" — 2% loss, 60ms latency, ±20ms jitter -## "satellite" — 1% loss, 600ms latency, ±50ms jitter -## "congested" — 5% loss, 100ms latency, ±40ms jitter, some reordering -## "warzone" — 10% loss, 200ms latency, ±60ms jitter, burst loss, reorder -func set_profile(name: String) -> bool: - match name.to_lower(): - "lan": - packet_loss = 0.0; latency_ms = 1; jitter_ms = 0 - reorder_window = 0; duplicate_rate = 0.0; bandwidth_limit = 0 - burst_loss_count = 0; burst_loss_interval = 0 - return true - "dsl": - packet_loss = 0.005; latency_ms = 20; jitter_ms = 5 - reorder_window = 0; duplicate_rate = 0.0; bandwidth_limit = 0 - burst_loss_count = 0; burst_loss_interval = 0 - return true - "cellular": - packet_loss = 0.02; latency_ms = 60; jitter_ms = 20 - reorder_window = 0; duplicate_rate = 0.0; bandwidth_limit = 0 - burst_loss_count = 0; burst_loss_interval = 0 - return true - "satellite": - packet_loss = 0.01; latency_ms = 600; jitter_ms = 50 - reorder_window = 0; duplicate_rate = 0.0; bandwidth_limit = 0 - burst_loss_count = 0; burst_loss_interval = 0 - return true - "congested": - packet_loss = 0.05; latency_ms = 100; jitter_ms = 40 - reorder_window = 3; duplicate_rate = 0.01; bandwidth_limit = 0 - burst_loss_count = 0; burst_loss_interval = 0 - return true - "warzone": - packet_loss = 0.10; latency_ms = 200; jitter_ms = 60 - reorder_window = 4; duplicate_rate = 0.02; bandwidth_limit = 50000 - burst_loss_count = 3; burst_loss_interval = 100 - return true - _: - push_error("[NetSim] Unknown profile: '%s'" % name) - return false - - -# ─── Per-Frame Processing ───────────────────────────────── - -func _process(delta: float) -> void: - if not _wrapped_peer: - return - - var now = Time.get_ticks_msec() - - # --- Process delayed outbound packets --- - # Forward expired packets to the real peer - var to_send: Array[int] = [] - for i in _outbound_queue.size(): - if now >= _outbound_queue[i].time: - to_send.append(i) - # Send in reverse index order so removal doesn't shift earlier indices - for i in to_send.size(): - var idx = to_send[to_send.size() - 1 - i] - var entry = _outbound_queue[idx] - _send_to_real_peer(entry.packet, entry.channel) - _outbound_queue.remove_at(idx) - - # --- Process real peer inbound --- - # Read packets from the real peer and queue them for the game - # with inbound simulation - while _wrapped_peer.get_available_packet_count() > 0: - var packet = _wrapped_peer.get_packet() - _total_received += 1 - _queue_delayed_inbound(packet, CHANNEL_RELIABLE) # actual channel unknown - - # --- Process delayed inbound packets --- - # Reorder buffer flush - _flush_reorder_buffer() - # Note: delayed inbound packets are consumed by receive_packet() directly - # from _inbound_queue — no separate delivery step needed - - -## Must be called from the game's _process (not physics) to keep latency -## timing accurate. Alternative: connect to SceneTree's idle signal. -func process_conditions(delta: float) -> void: - _process(delta) - - -# ─── Packet Interception (call from game code) ──────────────────────────── -# The game should call these instead of directly calling put_packet/get_packet -# on the multiplayer peer. Alternatively, implement a full MultiplayerPeer -# override — see the companion `net_sim_peer.gd` for the full adapter. - -## Simulate sending a packet. Returns true if the packet was queued/dropped. -func send_packet(data: PackedByteArray, channel: int = CHANNEL_UNRELIABLE) -> bool: - if not _wrapped_peer: - return false - - _total_sent += 1 - - # ── 1. Burst loss check ── - if _check_burst_loss(): - _total_burst_dropped += 1 - if verbose: - print("[NetSim] BURST DROP (packet #%d)" % _total_sent) - return false # packet dropped - - # ── 2. Random loss ── - if _rng.randf() < packet_loss: - _total_lost += 1 - if verbose: - print("[NetSim] LOST (packet #%d, seq=%d, loss=%.1f%%)" % [_total_sent, _total_sent, packet_loss * 100.0]) - return false # packet dropped - - # ── 3. Bandwidth check ── - if bandwidth_limit > 0 and _check_bandwidth(data.size()): - _total_bandwidth_dropped += 1 - if verbose: - print("[NetSim] BW DROP (packet #%d, %d bytes, limit=%d/s)" % [_total_sent, data.size(), bandwidth_limit]) - return false # packet dropped - - # ── 4. Duplication ── - if _rng.randf() < duplicate_rate: - _total_duplicated += 1 - if verbose: - print("[NetSim] DUPLICATE (packet #%d)" % _total_sent) - # Send the duplicate (with same delay treatment) - _queue_delayed_outbound(data, channel) - - # ── 5. Queue for latency/jitter ── - _queue_delayed_outbound(data, channel) - return true - - -## Simulate receiving a packet. Returns PackedByteArray or empty if none available. -## First checks the inbound delay queue for expired packets, then falls -## through to the real peer for immediate (non-simulated) delivery. -func receive_packet() -> PackedByteArray: - if not _wrapped_peer: - return PackedByteArray() - - var now = Time.get_ticks_msec() - - # Check delayed inbound queue first (simulated receive) - if _inbound_queue.size() > 0 and _inbound_queue[0].time <= now: - var pkt = _inbound_queue[0].packet - _inbound_queue.remove_at(0) - return pkt - - # Fall through to real peer for immediate delivery - if _wrapped_peer.get_available_packet_count() > 0: - return _wrapped_peer.get_packet() - - return PackedByteArray() - - -## Check if any packet is available for receiving. -## Checks delayed inbound queue, then real peer. -func has_packet() -> bool: - if not _wrapped_peer: - return false - - var now = Time.get_ticks_msec() - - # Check delayed inbound queue - for pkt in _inbound_queue: - if pkt.time <= now: - return true - - # Check real peer - if _wrapped_peer.get_available_packet_count() > 0: - return true - - return false - - -## Get total pending packet count (inbound and outbound). -func get_pending_count() -> int: - return _inbound_queue.size() + _outbound_queue.size() - - -## Check if the wrapped peer is properly connected. -func is_peer_connected() -> bool: - if _wrapped_peer: - return _wrapped_peer.get_connection_status() == MultiplayerPeer.CONNECTION_CONNECTED - return false - - -# ─── Bandwidth tracking ─────────────────────────────────────────────────── - -func _check_bandwidth(packet_size: int) -> bool: - var now = Time.get_ticks_msec() / 1000.0 - if now - _bandwidth_timer >= 1.0: - _bandwidth_timer = now - _bandwidth_used_this_second = 0 - - if _bandwidth_used_this_second + packet_size > bandwidth_limit: - return true # drop - - _bandwidth_used_this_second += packet_size - return false - - -# ─── Burst loss ────────────────────────────────────────────────────────── - -func _check_burst_loss() -> bool: - if burst_loss_count <= 0 or burst_loss_interval <= 0: - return false - - if _burst_dropping: - _burst_drop_remaining -= 1 - if _burst_drop_remaining <= 0: - _burst_dropping = false - return true - - _packets_sent_since_burst += 1 - if _packets_sent_since_burst >= burst_loss_interval: - _packets_sent_since_burst = 0 - _burst_dropping = true - _burst_drop_remaining = burst_loss_count - 1 # current packet is also dropped - return true - - return false - - - -# ─── Reorder buffer ────────────────────────────────────────────────────── - return a.time < b.time - - -# ─── Reorder buffer ────────────────────────────────────────────────────── - -func _flush_reorder_buffer() -> void: - if reorder_window <= 0: - return - - if _reorder_buffer.size() >= reorder_window: - _total_reordered += _reorder_buffer.size() - _reorder_buffer.shuffle() - for pkt in _reorder_buffer: - # Re-inject shuffled packets at front of inbound queue - _inbound_queue.push_front(pkt) - _inbound_queue.sort_custom(_sort_by_time) - _reorder_buffer.clear() - - -# ─── Direct peer passthrough ────────────────────────────────────────────── - -## Forward a packet to the real peer immediately (no simulation). -func _send_to_real_peer(data: PackedByteArray, channel: int) -> void: - if _wrapped_peer and _wrapped_peer.get_connection_status() == MultiplayerPeer.CONNECTION_CONNECTED: - _wrapped_peer.put_packet(data) - - -# ─── Latency queue (outbound) ──────────────────────────── - -## Queue a packet for delayed delivery to the real network peer. -func _queue_delayed_outbound(data: PackedByteArray, channel: int) -> void: - var delay_ms = latency_ms - if jitter_ms > 0.0: - delay_ms += _rng.randf_range(-jitter_ms, jitter_ms) - delay_ms = max(0.0, delay_ms) - - var deliver_at = Time.get_ticks_msec() + delay_ms - - var entry := { - "time": deliver_at, - "packet": data, - "channel": channel, - } - - if delay_ms > 0: - _total_delayed += 1 - - _outbound_queue.append(entry) - _outbound_queue.sort_custom(_sort_by_time) - - -# ─── Latency queue (inbound) ───────────────────────────── - -## Queue a packet for delayed delivery to the game (from the real network). -func _queue_delayed_inbound(data: PackedByteArray, channel: int) -> void: - var delay_ms = 0.0 - if jitter_ms > 0.0: - delay_ms = _rng.randf_range(-jitter_ms, jitter_ms) - delay_ms = max(0.0, delay_ms) - - var deliver_at = Time.get_ticks_msec() + delay_ms - - var entry := { - "time": deliver_at, - "packet": data, - "channel": channel, - } - - if delay_ms > 0: - _total_delayed += 1 - - _inbound_queue.append(entry) - _inbound_queue.sort_custom(_sort_by_time) - - -# ─── Utility ────────────────────────────────────────────────────────────── - -## Generate a test packet with the given sequence data. -static func make_test_packet(seq: int, data: String = "") -> PackedByteArray: - var payload = { "seq": seq, "data": data, "time": Time.get_ticks_usec() } - var json_str = JSON.stringify(payload) - return json_str.to_utf8_buffer() - - -## Decode a test packet from the simulator. -static func decode_test_packet(data: PackedByteArray) -> Dictionary: - var text = data.get_string_from_utf8() - var json = JSON.new() - var err = json.parse(text) - if err == OK and json.data is Dictionary: - return json.data - return {} - - -## Generate a packet loss report as a formatted string. -static func format_test_report(results: Array) -> String: - var lines: PackedStringArray = [] - var total = results.size() - var received = 0 - var min_seq = 0 - var max_seq = 0 - var gaps: Array[int] = [] - - for r in results: - if r.get("received", false): - received += 1 - - var loss_pct = 0.0 if total == 0 else (1.0 - float(received) / float(total)) * 100.0 - lines.append("=== Test Report ===") - lines.append(" Sent: %d" % total) - lines.append(" Received: %d (%.1f%%)" % [received, 100.0 - loss_pct]) - lines.append(" Lost: %d" % (total - received)) - lines.append(" Loss rate: %.1f%%" % loss_pct) - return "\n".join(lines) diff --git a/server/scripts/net_sim.gd.uid b/server/scripts/net_sim.gd.uid deleted file mode 100644 index 370a618..0000000 --- a/server/scripts/net_sim.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://booj2l3cle8xp diff --git a/server/scripts/objectives/bomb_objective.gd b/server/scripts/objectives/bomb_objective.gd deleted file mode 100644 index 665f71b..0000000 --- a/server/scripts/objectives/bomb_objective.gd +++ /dev/null @@ -1,534 +0,0 @@ -## BombObjective — Server-authoritative bomb plant/defuse logic. -## -## Manages the bomb lifecycle for competitive search & destroy rounds. -## Owned by GameServer; wired to RoundManager for round-end outcomes. -## -## Bomb state machine: -## IDLE → PLANTED → EXPLODED -## → DEFUSED -## -## Usage (GameServer._ready()): -## var bomb = BombObjective.new() -## add_child(bomb) -## bomb.round_manager = round_manager_ref -## bomb.team_manager = team_manager_ref -## bomb.damage_processor = damage_processor_ref -## bomb.entity_to_peer = entity_to_peer_ref -## bomb.peer_to_entity = peer_to_entity_ref -## bomb.register_bomb_sites(get_tree().get_nodes_in_group("bomb_sites")) -## round_manager.round_ended.connect(bomb.reset) -## -## Bomb sites are Area3D nodes with group "bomb_sites" in the map scene. -## Each bombsite should have a Marker3D child named "PlantPosition". - -extends Node -class_name BombObjective - -# Preload for headless compat -const _td = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when the bomb is planted by a T player. -signal bomb_planted(player_id: int, position: Vector3) - -## Emitted when the bomb is defused by a CT player. -signal bomb_defused(player_id: int) - -## Emitted when the bomb explodes. -signal bomb_exploded(position: Vector3) - -## Emitted when a CT player starts defusing. -signal defuse_started(player_id: int) - -## Emitted when a CT player cancels defuse (moves, killed, or interrupted). -signal defuse_cancelled(player_id: int) - -# --------------------------------------------------------------------------- -# Bomb State enum -# --------------------------------------------------------------------------- - -enum BombState { - IDLE = 0, # No bomb active - PLANTED = 1, # Bomb is planted, timer counting down - EXPLODED = 2, # Bomb has exploded - DEFUSED = 3, # Bomb was successfully defused -} - -# --------------------------------------------------------------------------- -# Constants — defaults -# --------------------------------------------------------------------------- - -## Default bomb timer duration in seconds (from plant to explosion). -const DEFAULT_BOMB_TIMER: float = 40.0 - -## Default defuse time in seconds. -const DEFAULT_DEFUSE_TIME: float = 5.0 - -## Default lethal radius in Godot units (full damage). -const DEFAULT_LETHAL_RADIUS: float = 10.0 - -## Default half-damage radius (50% damage). -const DEFAULT_HALF_RADIUS: float = 15.0 - -## Default explosion damage at center. -const DEFAULT_EXPLOSION_DAMAGE: float = 500.0 - -# --------------------------------------------------------------------------- -# Dependencies (set by GameServer before use) -# --------------------------------------------------------------------------- - -## Reference to the RoundManager node. -var round_manager = null - -## Reference to the TeamManager for checking player teams. -var team_manager = null - -## Reference to the DamageProcessor for applying explosion damage. -var damage_processor = null # DamageProcessor — untyped for headless compat - -## Mapping: entity_id → peer_id (from GameServer). -var entity_to_peer: Dictionary = {} - -## Mapping: peer_id → entity_id (from GameServer). -var peer_to_entity: Dictionary = {} - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -## Seconds from plant to explosion. -var bomb_timer_duration: float = DEFAULT_BOMB_TIMER - -## Seconds required to defuse. -var defuse_time: float = DEFAULT_DEFUSE_TIME - -## Radius within which explosion deals lethal (full) damage. -var lethal_radius: float = DEFAULT_LETHAL_RADIUS - -## Radius within which explosion deals half damage. -var half_radius: float = DEFAULT_HALF_RADIUS - -## Base explosion damage dealt at center (scales with distance). -var explosion_damage: float = DEFAULT_EXPLOSION_DAMAGE - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Current bomb state. -var _state: BombState = BombState.IDLE - -## The entity ID (peer ID) of the player who planted the bomb. -var _planter_id: int = -1 - -## World position where the bomb is planted. -var _bomb_position: Vector3 = Vector3.ZERO - -## Remaining time on the bomb timer (counts down when PLANTED). -var _bomb_timer: float = 0.0 - -## The entity ID (peer ID) of the player currently defusing. -var _defuser_id: int = -1 - -## Time remaining for the current defuse attempt. -var _defuse_timer: float = 0.0 - -## Registered bomb sites: Array of Area3D nodes with "bomb_sites" group. -var _bomb_sites: Array[Area3D] = [] - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _state = BombState.IDLE - print("[BombObjective] Initialised — state: IDLE") - -func _process(delta: float) -> void: - match _state: - BombState.PLANTED: - # Count down bomb timer - _bomb_timer -= delta - if _bomb_timer <= 0.0: - _bomb_timer = 0.0 - bomb_explode() - - # Count down defuse timer if defusing - if _defuser_id >= 0: - _defuse_timer -= delta - if _defuse_timer <= 0.0: - _defuse_timer = 0.0 - _complete_defuse() - - BombState.IDLE, BombState.EXPLODED, BombState.DEFUSED: - pass - -# --------------------------------------------------------------------------- -# Public API — Site registration -# --------------------------------------------------------------------------- - -## Register bomb site Area3D nodes. These are typically found via -## get_tree().get_nodes_in_group("bomb_sites"). -## Each bombsite should have a Marker3D child named "PlantPosition". -func register_bomb_sites(sites: Array[Area3D]) -> void: - _bomb_sites = sites - print("[BombObjective] Registered %d bomb site(s)" % sites.size()) - -## Get all registered bomb site areas. -func get_bomb_sites() -> Array[Area3D]: - return _bomb_sites.duplicate() - -# --------------------------------------------------------------------------- -# Public API — Bomb actions -# --------------------------------------------------------------------------- - -## Plant the bomb at the given world position. -## Only allowed for T-side players during the LIVE phase. -## Returns true if the bomb was planted, false otherwise. -func plant_bomb(player_id: int, position: Vector3) -> bool: - if _state != BombState.IDLE: - push_warning("[BombObjective] Cannot plant — bomb state is %d" % _state) - return false - - if not _is_round_live(): - push_warning("[BombObjective] Cannot plant — round is not LIVE") - return false - - if not _is_player_terrorist(player_id): - push_warning("[BombObjective] Cannot plant — player %d is not on T side" % player_id) - return false - - if not _is_player_in_bombsite(player_id): - push_warning("[BombObjective] Cannot plant — player %d is not in a bombsite" % player_id) - return false - - _state = BombState.PLANTED - _planter_id = player_id - _bomb_position = position - _bomb_timer = bomb_timer_duration - _defuser_id = -1 - _defuse_timer = 0.0 - - print("[BombObjective] Bomb planted by player %d at (%.1f, %.1f, %.1f) — % .1fs timer" % - [player_id, position.x, position.y, position.z, _bomb_timer]) - - bomb_planted.emit(player_id, position) - return true - -## Start defusing the bomb (CT-side only, must be near the bomb). -## Returns true if defuse started, false otherwise. -func defuse_bomb(player_id: int) -> bool: - if _state != BombState.PLANTED: - push_warning("[BombObjective] Cannot defuse — bomb state is %d" % _state) - return false - - if not _is_player_counter_terrorist(player_id): - push_warning("[BombObjective] Cannot defuse — player %d is not on CT side" % player_id) - return false - - if not _is_player_near_bomb(player_id): - push_warning("[BombObjective] Cannot defuse — player %d is not near the bomb" % player_id) - return false - - if _defuser_id >= 0: - push_warning("[BombObjective] Cannot defuse — someone (%d) is already defusing" % _defuser_id) - return false - - _defuser_id = player_id - _defuse_timer = defuse_time - - print("[BombObjective] Defuse started by player %d — % .1fs" % [player_id, _defuse_timer]) - defuse_started.emit(player_id) - return true - -## Cancel an active defuse attempt (player moved, was killed, or interrupted). -func cancel_defuse(player_id: int) -> bool: - if _defuser_id != player_id: - return false - - _defuser_id = -1 - _defuse_timer = 0.0 - - print("[BombObjective] Defuse cancelled by player %d" % player_id) - defuse_cancelled.emit(player_id) - return true - -## Force the bomb to explode immediately. Called when the timer reaches zero. -func bomb_explode() -> void: - if _state != BombState.PLANTED: - return - - _state = BombState.EXPLODED - _defuser_id = -1 - _defuse_timer = 0.0 - - print("[BombObjective] Bomb EXPLODED at (%.1f, %.1f, %.1f)" % - [_bomb_position.x, _bomb_position.y, _bomb_position.z]) - - # Apply explosion damage to all players within radius - _apply_explosion_damage() - - bomb_exploded.emit(_bomb_position) - # (RoundManager notification is handled by GameServer via signal connection) - -# --------------------------------------------------------------------------- -# Public API — Query -# --------------------------------------------------------------------------- - -## Check if the bomb is currently planted and active. -func is_bomb_planted() -> bool: - return _state == BombState.PLANTED - -## Get the world position of the planted bomb. -## Returns Vector3.ZERO if not planted. -func get_bomb_position() -> Vector3: - return _bomb_position - -## Get the remaining time on the bomb timer (seconds). -## Returns 0.0 if not planted. -func get_bomb_timer() -> float: - return max(0.0, _bomb_timer) - -## Get the current bomb state. -func get_state() -> BombState: - return _state - -## Get the player ID of the planter. -## Returns -1 if no bomb is planted. -func get_planter_id() -> int: - return _planter_id - -## Get the player ID of the current defuser. -## Returns -1 if no one is defusing. -func get_defuser_id() -> int: - return _defuser_id - -## Get the remaining defuse time (seconds). -## Returns 0.0 if no one is defusing. -func get_defuse_timer() -> float: - return max(0.0, _defuse_timer) - -## Get the progress of the current defuse (0.0 to 1.0). -## Returns 0.0 if no one is defusing. -func get_defuse_progress() -> float: - if _defuser_id < 0 or defuse_time <= 0.0: - return 0.0 - return clamp(1.0 - (_defuse_timer / defuse_time), 0.0, 1.0) - -## Check if a specific player is currently defusing the bomb. -func is_player_defusing(player_id: int) -> bool: - return _defuser_id == player_id - -## Check if a specific player is near the bomb (within defuse radius). -func is_player_near_bomb(player_id: int, distance_threshold: float = 3.0) -> bool: - if _state != BombState.PLANTED: - return false - return _is_player_near_bomb(player_id, distance_threshold) - -## Check if a specific player is inside any bombsite. -func is_player_in_bombsite(player_id: int) -> bool: - return _is_player_in_bombsite(player_id) - -# --------------------------------------------------------------------------- -# Public API — Reset -# --------------------------------------------------------------------------- - -## Reset the bomb to IDLE state (called on round end / new round). -func reset() -> void: - _state = BombState.IDLE - _planter_id = -1 - _bomb_position = Vector3.ZERO - _bomb_timer = 0.0 - _defuser_id = -1 - _defuse_timer = 0.0 - print("[BombObjective] Reset — state: IDLE") - -# --------------------------------------------------------------------------- -# Internal — Explosion damage -# --------------------------------------------------------------------------- - -## Apply damage to all players within the explosion radius. -## Deals lethal_radius damage within lethal_radius, and linear falloff -## from lethal_radius to half_radius (half damage at outer edge). -func _apply_explosion_damage() -> void: - if damage_processor == null: - print("[BombObjective] No damage processor — explosion deals no damage") - return - - if entity_to_peer.is_empty() or peer_to_entity.is_empty(): - return - - # Iterate over all tracked entity IDs (from GameServer.entity_to_peer) - for entity_id in entity_to_peer.keys(): - var health: float = damage_processor.get_health(entity_id) - if health <= 0.0: - continue # Already dead or not registered - - # Get the player's position via the registered node - var player_pos: Vector3 = _get_entity_position(entity_id) - - var distance: float = _bomb_position.distance_to(player_pos) - - # Determine damage multiplier based on distance - var damage_mult: float = 0.0 - if distance <= lethal_radius: - damage_mult = 1.0 # Full damage - elif distance <= half_radius: - # Linear falloff from full to half damage - var t: float = (distance - lethal_radius) / (half_radius - lethal_radius) if half_radius > lethal_radius else 1.0 - damage_mult = 1.0 - (t * 0.5) # 1.0 → 0.5 - else: - continue # Outside damage range - - var actual_damage: float = explosion_damage * damage_mult - - # Apply damage via DamageProcessor - # Use the planter's entity_id as the shooter for attribution - var planter_entity: int = peer_to_entity.get(_planter_id, -1) - var result: Dictionary = {"hit": true, "target_id": entity_id, "damage": actual_damage} - damage_processor.process_hit(result, planter_entity) - - print("[BombObjective] Explosion damaged entity %d — %.1f damage (dist=%.1f, mult=%.2f)" % - [entity_id, actual_damage, distance, damage_mult]) - -# --------------------------------------------------------------------------- -# Internal — Defuse completion -# --------------------------------------------------------------------------- - -func _complete_defuse() -> void: - if _state != BombState.PLANTED: - return - - var defuser: int = _defuser_id - _state = BombState.DEFUSED - _defuser_id = -1 - _defuse_timer = 0.0 - - print("[BombObjective] Bomb defused by player %d" % defuser) - bomb_defused.emit(defuser) - # (RoundManager notification is handled by GameServer via signal connection) - -# --------------------------------------------------------------------------- -# Internal — Helpers -# --------------------------------------------------------------------------- - -## Check if the current round phase is LIVE. -func _is_round_live() -> bool: - if round_manager == null: - return false - return round_manager.get_phase() == RoundManager.RoundPhase.LIVE - -## Check if a player (by peer ID) is on the Terrorist team. -func _is_player_terrorist(player_id: int) -> bool: - if team_manager == null: - return false - return team_manager.get_player_team(player_id) == _td.Team.TERRORIST - -## Check if a player (by peer ID) is on the Counter-Terrorist team. -func _is_player_counter_terrorist(player_id: int) -> bool: - if team_manager == null: - return false - return team_manager.get_player_team(player_id) == _td.Team.COUNTER_TERRORIST - -## Check if a player is inside any registered bombsite. -## Iterates bomb sites and checks if the player's body overlaps. -func _is_player_in_bombsite(player_id: int) -> bool: - if _bomb_sites.is_empty(): - return false - - var entity_id: int = peer_to_entity.get(player_id, -1) - if entity_id < 0: - return false - - # Get the player node from LagCompensation or scene tree - var player_node: Node3D = _get_entity_node(entity_id) - if player_node == null: - return false - - for site in _bomb_sites: - if site == null: - continue - # Check if the player's global position is within the site's Area3D bounds - var site_pos: Vector3 = site.global_position - var site_shape_extents: Vector3 = _get_area_extents(site) - var player_pos: Vector3 = player_node.global_position - - # Simple AABB check using the Area3D's extents - var half_size: Vector3 = site_shape_extents * 0.5 - var min_bounds: Vector3 = site_pos - half_size - var max_bounds: Vector3 = site_pos + half_size - - if player_pos.x >= min_bounds.x and player_pos.x <= max_bounds.x and \ - player_pos.y >= min_bounds.y and player_pos.y <= max_bounds.y and \ - player_pos.z >= min_bounds.z and player_pos.z <= max_bounds.z: - return true - - return false - -## Check if a player is near the planted bomb (within defuse range). -func _is_player_near_bomb(player_id: int, distance_threshold: float = 3.0) -> bool: - if _state != BombState.PLANTED: - return false - - var entity_id: int = peer_to_entity.get(player_id, -1) - if entity_id < 0: - return false - - var player_node: Node3D = _get_entity_node(entity_id) - if player_node == null: - return false - - var distance: float = player_node.global_position.distance_to(_bomb_position) - return distance <= distance_threshold - -## Get a player's world position via their registered node. -## Tries LagCompensation first, then direct node lookup. -func _get_entity_position(entity_id: int) -> Vector3: - var node: Node3D = _get_entity_node(entity_id) - if node: - return node.global_position - return Vector3.ZERO - -## Get the Node3D for a given entity_id. -## Tries to find via the scene tree or GameServer's entity→peer mapping. -func _get_entity_node(entity_id: int) -> Node3D: - # Fallback: search the scene tree for the entity (Player nodes) - var tree: SceneTree = get_tree() - if tree == null: - return null - - # Iterate all Player nodes in the tree (tagged with "players" group) - var players: Array[Node] = tree.get_nodes_in_group("players") - for p in players: - if p is Node3D and p.has_method(&"get_entity_id"): - if p.get_entity_id() == entity_id: - return p - - # Last resort: try to find by matching peer_id via entity_to_peer - var peer_id: int = entity_to_peer.get(entity_id, -1) - if peer_id >= 0: - for p in players: - if p is Node3D and p.has_method(&"get_peer_id"): - if p.get_peer_id() == peer_id: - return p - - return null - -## Get the approximate extents of an Area3D from its collision shapes. -func _get_area_extents(area: Area3D) -> Vector3: - var extents: Vector3 = Vector3(4.0, 2.0, 2.0) # Default fallback (8×4×4) - - for child in area.get_children(): - if child is CollisionShape3D and child.shape: - if child.shape is BoxShape3D: - extents = child.shape.size - break - elif child.shape is SphereShape3D: - var r: float = child.shape.radius - extents = Vector3(r * 2.0, r * 2.0, r * 2.0) - break - - return extents diff --git a/server/scripts/objectives/bomb_objective.gd.uid b/server/scripts/objectives/bomb_objective.gd.uid deleted file mode 100644 index 716656b..0000000 --- a/server/scripts/objectives/bomb_objective.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bxn8cn5v4rv0r diff --git a/server/scripts/plugin_api/plugin_base.gd b/server/scripts/plugin_api/plugin_base.gd deleted file mode 100644 index 10fbdf2..0000000 --- a/server/scripts/plugin_api/plugin_base.gd +++ /dev/null @@ -1,158 +0,0 @@ -## Plugin Base — Abstract plugin interface -## -## All server plugins must extend this class and may override any -## of the virtual hook methods. Hooks that return a bool act as -## filters/callbacks — return true to allow/accept the event, -## false to block/reject it (where the hook definition supports it). -## -## The base class provides a `plugin_name` property that is -## automatically populated at load time from the manifest, and a -## `log(msg)` convenience method for structured logging. -## -## Usage: -## extends PluginBase -## func on_server_start(): -## log_info("My plugin started!") -## -## func on_player_say(id, msg) -> bool: -## if "badword" in msg: -## return false # block the message -## return true - -extends Node -# class_name PluginBase — commented out for headless compat - -# --------------------------------------------------------------------------- -# Public properties — populated by PluginManager at load time -# --------------------------------------------------------------------------- - -## The canonical name of this plugin, set from the manifest at load time. -var plugin_name: String = &"" - -## The version string from the manifest (e.g. "1.0.0"). -var plugin_version: String = &"" - -## The author string from the manifest. -var plugin_author: String = &"" - -# --------------------------------------------------------------------------- -# Logging helpers -# --------------------------------------------------------------------------- - -## Log an informational message prefixed with the plugin name. -func log_info(msg: String) -> void: - print("[Plugin:%s] %s" % [plugin_name, msg]) - -## Log a warning message prefixed with the plugin name. -func log_warn(msg: String) -> void: - push_warning("[Plugin:%s] %s" % [plugin_name, msg]) - -## Log an error message prefixed with the plugin name. -func log_err(msg: String) -> void: - push_error("[Plugin:%s] %s" % [plugin_name, msg]) - -## Set metadata on this plugin from the manifest. -## Called automatically by PluginManager during load. -func set_plugin_meta(name: String, version: String, author: String) -> void: - plugin_name = name - plugin_version = version - plugin_author = author - -# --------------------------------------------------------------------------- -# Server lifecycle hooks -# --------------------------------------------------------------------------- - -## Called when the server starts (after all autoloads are ready). -## Use this to initialise timers, connect signals, or register cvars. -func on_server_start() -> void: - pass - -## Called when the server is shutting down. -## Use this to flush state, save data, or disconnect from external services. -func on_server_stop() -> void: - pass - -# --------------------------------------------------------------------------- -# Map lifecycle hooks -# --------------------------------------------------------------------------- - -## Called when a map starts loading. -## map_name: the resource path or identifier of the map. -func on_map_start(map_name: String) -> void: - pass - -## Called when a map ends (all players left, next map loading). -## map_name: the resource path or identifier of the map that ended. -func on_map_end(map_name: String) -> void: - pass - -# --------------------------------------------------------------------------- -# Player hooks -# --------------------------------------------------------------------------- - -## Called when a player attempts to connect to the server. -## id: the peer/connection id assigned by the network layer. -## name: the player's display name. -## steam_id: the player's unique platform identifier. -## -## Return true to allow the connection, false to reject it. -func on_player_connect(id: int, name: String, steam_id: String) -> bool: - return true - -## Called when a player disconnects from the server. -## id: the peer/connection id of the player. -## reason: a string describing why the player left (optional). -func on_player_disconnect(id: int, reason: String) -> void: - pass - -## Called when a player sends a chat message. -## id: the peer/connection id of the sender. -## msg: the plain-text chat message. -## -## Return true to allow the message through, false to suppress it. -func on_player_say(id: int, msg: String) -> bool: - return true - -## Called when a player spawns into the game world. -## id: the peer/connection id of the player. -func on_player_spawn(id: int) -> void: - pass - -## Called when a player is killed. -## victim: peer id of the killed player. -## killer: peer id of the killer (may equal victim for suicide). -## weapon: weapon name/identifier string (e.g. "rifle", "pistol"). -func on_player_killed(victim: int, killer: int, weapon: String) -> void: - pass - -# --------------------------------------------------------------------------- -# Round hooks -# --------------------------------------------------------------------------- - -## Called when a new round begins. -## number: the round number (1-based, increments each round). -func on_round_start(number: int) -> void: - pass - -## Called when a round ends. -## winner_team: 0 = draw/stalemate, 1 = team A, 2 = team B. -## reason: a string describing the end condition ("time_limit", "all_dead", etc.). -func on_round_end(winner_team: int, reason: String) -> void: - pass - -## Called when the team scores change. -## team_a_score and team_b_score reflect the current match state. -func on_score_changed(team_a_score: int, team_b_score: int) -> void: - pass - -# --------------------------------------------------------------------------- -# Per-tick hook -# --------------------------------------------------------------------------- - -## Called every physics tick (at the configured tick rate, typically 128 Hz). -## delta: time elapsed since last tick in seconds (approximately 1/tickrate). -## -## WARNING: This is called at high frequency — keep implementations cheap -## to avoid impacting server performance. -func on_tick(delta: float) -> void: - pass diff --git a/server/scripts/plugin_api/plugin_base.gd.uid b/server/scripts/plugin_api/plugin_base.gd.uid deleted file mode 100644 index 1617ff0..0000000 --- a/server/scripts/plugin_api/plugin_base.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b7p2vpaanma77 diff --git a/server/scripts/plugin_api/plugin_manager.gd b/server/scripts/plugin_api/plugin_manager.gd deleted file mode 100644 index f65f27b..0000000 --- a/server/scripts/plugin_api/plugin_manager.gd +++ /dev/null @@ -1,582 +0,0 @@ -## Plugin Manager — Autoload Singleton -## -## Scans the server/plugins/ directory for plugin manifests -## (plugin.tres), loads enabled plugins, and dispatches engine -## events to every loaded plugin via their hook methods. -## -## This singleton must be registered in project.godot under [autoload]: -## PluginManager="*res://server/scripts/plugin_api/plugin_manager.gd" -## -## Usage from game code: -## var pm: PluginManager = get_node("/root/PluginManager") -## pm.load_plugin("res://server/plugins/my_plugin/") -## pm.dispatch_hook("on_server_start") -## -## RCON integration (commands handled via PluginManager.rcon_command()): -## plugin list — list all discovered and loaded plugins -## plugin load — load a discovered plugin by name -## plugin unload — unload a running plugin -## plugin reload — reload a plugin (re-compiles its script) -## plugin info — show detailed information about a plugin -## plugin rescan — re-scan the plugins directory - -extends Node -## Duplicate class_name removed — already registered as autoload singleton. -## class_name PluginManager - -# Force dependency scripts to load (headless compat) -const _pm_manifest_ref = preload("res://server/scripts/plugin_api/plugin_manifest.gd") -const _pm_base_ref = preload("res://server/scripts/plugin_api/plugin_base.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when a plugin is successfully loaded. -signal plugin_loaded(name: String) -## Emitted when a plugin is unloaded. -signal plugin_unloaded(name: String) -## Emitted when a plugin is reloaded (load after unload). -signal plugin_reloaded(name: String) -## Emitted when a plugin hook call fails with an error. -signal plugin_error(name: String, hook: String, message: String) - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Directory under res:// where plugin subdirectories live. -## Each subdirectory should contain a plugin.tres manifest + .gd script(s). -@export var plugins_root: String = "res://server/plugins" - -## When true, the manager periodically re-scans the plugins directory -## for new or removed plugins. Enable for development convenience; -## disable in production to avoid filesystem overhead. -@export var auto_rescan: bool = false - -## Interval in seconds between auto-rescan passes -## (only applies when auto_rescan is true). -@export var rescan_interval: float = 10.0 - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -## Current API version of the PluginManager. -## Bump the MAJOR version when breaking hook signature changes are made. -## Bump the MINOR version when new hooks are added (non-breaking). -## Bump the PATCH version for bug fixes and internal changes. -const API_VERSION: String = "1.0.0" - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Dictionary of loaded plugins: plugin_name (String) -> Node (plugin instance). -var loaded_plugins: Dictionary = {} - -## Dictionary of all discovered manifests: plugin_name -> PluginManifest resource. -var discovered_manifests: Dictionary = {} - -## Internal metadata store: plugin_name -> {path, manifest, tres_path, ...}. -var _plugin_info: Dictionary = {} - -## Timer accumulator for auto-rescan. -var _rescan_timer: float = 0.0 - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Discover and load all enabled plugins from the plugins directory. - rescan() - log_info("PluginManager ready — %d plugin(s) loaded, %d discovered total" % - [loaded_plugins.size(), discovered_manifests.size()]) - log_info("PluginManager API version: %s" % API_VERSION) - -func _exit_tree() -> void: - # Gracefully shut down all plugins before the tree exits. - unload_all() - -func _process(delta: float) -> void: - if not auto_rescan: - return - _rescan_timer += delta - if _rescan_timer >= rescan_interval: - _rescan_timer = 0.0 - rescan() - -# --------------------------------------------------------------------------- -# Discovery — scan filesystem for plugin manifests -# --------------------------------------------------------------------------- - -## Scan the plugins_root directory for plugin.tres files. -## Populates discovered_manifests and automatically loads enabled ones. -## Returns the total number of manifests found. -func rescan() -> int: - var previous_count: int = discovered_manifests.size() - discovered_manifests.clear() - _plugin_info.clear() - - var root: String = plugins_root - if not ResourceLoader.exists(root): - log_warn("Plugins root does not exist: %s" % root) - return 0 - - var dir: DirAccess = DirAccess.open(root) - if not dir: - log_err("Cannot open plugins root directory: %s" % root) - return 0 - - # Walk one level deep (plugin directories) - dir.list_dir_begin() - var entry: String = dir.get_next() - while entry != &"": - if entry.begins_with("."): - entry = dir.get_next() - continue - if dir.current_is_dir(): - _process_plugin_directory(root, entry) - entry = dir.get_next() - dir.list_dir_end() - - # Auto-load newly discovered enabled plugins that aren't already loaded. - for pname in discovered_manifests: - if pname not in loaded_plugins: - var manifest = discovered_manifests[pname] - if manifest.enabled: - _load_plugin_from_manifest(pname, manifest) - - var new_count: int = discovered_manifests.size() - var delta_count: int = new_count - previous_count - log_info("Rescan complete: %d manifest(s) found (+%d new)" % - [new_count, delta_count]) - return new_count - -## Inspect a single subdirectory for a plugin.tres file and, -## if valid, record it in the discovered manifests. -func _process_plugin_directory(root: String, dir_name: String) -> void: - var tres_path: String = root + "/" + dir_name + "/plugin.tres" - if not ResourceLoader.exists(tres_path): - return - - var manifest: Resource = ResourceLoader.load(tres_path) - if manifest == null or manifest.get_script() == null or not manifest.has_method(&"is_valid"): - log_warn("Invalid manifest (not a PluginManifest resource): %s" % tres_path) - return - - if not manifest.is_valid(): - log_warn("Invalid manifest (missing required fields 'name' or 'script_path'): %s" % tres_path) - return - - # Check API compatibility - if not manifest.is_api_compatible(API_VERSION): - log_warn("Plugin '%s' requires API version %s-%s, but current API is %s" % - [manifest.name, manifest.min_api_version, manifest.max_api_version, API_VERSION]) - return - - var pname: String = manifest.name - discovered_manifests[pname] = manifest - _plugin_info[pname] = { - "path": root + "/" + dir_name + "/", - "manifest": manifest, - "tres_path": tres_path, - "dir_name": dir_name - } - log_info("Discovered plugin: %s v%s at %s" % [pname, manifest.version, tres_path]) - -# --------------------------------------------------------------------------- -# Loading / Unloading -# --------------------------------------------------------------------------- - -## Load a specific plugin by name (from discovered manifests). -## Returns true on success, false on failure. -func load_plugin(name: String) -> bool: - if name in loaded_plugins: - log_warn("Plugin already loaded: %s" % name) - return false - - if name not in discovered_manifests: - log_err("Plugin not found: %s. Use 'plugin rescan' to scan for new plugins." % name) - return false - - var manifest = discovered_manifests[name] - return _load_plugin_from_manifest(name, manifest) - -## Internal: instantiate a plugin from its manifest and add it to the tree. -## Handles resource loading, instance creation, and metadata injection. -func _load_plugin_from_manifest(name: String, manifest) -> bool: - var info: Dictionary = _plugin_info.get(name, {}) - var plugin_dir: String = info.get("path", plugins_root + "/" + name + "/") - var script_path: String = plugin_dir + manifest.script_path - - if not ResourceLoader.exists(script_path): - log_err("Script not found for plugin '%s': %s" % [name, script_path]) - return false - - var script_res: Resource = ResourceLoader.load(script_path) - if not script_res is GDScript: - log_err("Script resource is not a GDScript for plugin '%s': got %s" % - [name, typeof(script_res)]) - return false - - # Attempt to instantiate the script - var script_class = load(script_path) - var instance: Node - var ok: bool = false - - # Try normal Node.new() pattern - if script_class.has_method(&"new"): - instance = script_class.new() - ok = true - else: - log_err("Cannot instantiate script for plugin '%s' — no 'new' method" % name) - return false - - if not instance: - log_err("Failed to create instance for plugin '%s'" % name) - return false - - # Warn if the plugin doesn't extend PluginBase (it'll still work, - # just won't have convenience methods). - if instance == null or not instance.has_method(&"log_info"): - log_warn("Plugin '%s' does not extend PluginBase — some features may be unavailable" % name) - - # Inject manifest metadata into the instance - if not instance: - push_error("[PluginManager] Plugin '%s' failed to instantiate (null)" % name) - return false - if instance.has_method(&"set_plugin_meta"): - instance.set_plugin_meta(name, manifest.version, manifest.author) - elif instance.has_method(&"set") or true: - # Fallback: assign properties directly - if "plugin_name" in instance: - instance.plugin_name = name - if "plugin_version" in instance: - instance.plugin_version = manifest.version - if "plugin_author" in instance: - instance.plugin_author = manifest.author - - instance.name = "Plugin_%s" % name - add_child(instance) - loaded_plugins[name] = instance - - # Notify the plugin that it's now active (server lifecycle) - if instance.has_method(&"on_server_start"): - _call_plugin_hook(name, instance, "on_server_start", []) - - plugin_loaded.emit(name) - log_info("Loaded plugin: %s v%s by %s" % [name, manifest.version, manifest.author]) - return true - -## Unload a plugin by name. -## Removes it from the tree and clears internal state. -## Returns true on success, false if the plugin wasn't loaded. -func unload_plugin(name: String) -> bool: - if name not in loaded_plugins: - log_warn("Plugin not loaded: %s" % name) - return false - - var instance: Node = loaded_plugins[name] - - # Notify the plugin of impending shutdown - if instance.has_method(&"on_server_stop"): - _call_plugin_hook(name, instance, "on_server_stop", []) - - # Remove from tree and free - remove_child(instance) - instance.queue_free() - loaded_plugins.erase(name) - plugin_unloaded.emit(name) - log_info("Unloaded plugin: %s" % name) - return true - -## Reload a plugin: unload, recompile script, then load again. -## Useful for development iteration without restarting the server. -## Returns true on success. -func reload_plugin(name: String) -> bool: - if name not in loaded_plugins: - log_warn("Cannot reload — plugin not loaded: %s" % name) - return false - - log_info("Reloading plugin: %s" % name) - unload_plugin(name) - - # Re-acquire manifest info - var manifest = discovered_manifests.get(name) - if not manifest: - log_err("Manifest lost for plugin '%s' during reload" % name) - return false - - var info: Dictionary = _plugin_info.get(name, {}) - var plugin_dir: String = info.get("path", plugins_root + "/" + name + "/") - var script_path: String = plugin_dir + manifest.script_path - - # Force GDScript recompile from disk - if ResourceLoader.exists(script_path): - var gdscript: GDScript = load(script_path) - if gdscript and gdscript.has_method(&"reload"): - gdscript.reload() - - var ok: bool = _load_plugin_from_manifest(name, manifest) - if ok: - plugin_reloaded.emit(name) - log_info("Reloaded plugin: %s" % name) - else: - log_err("Failed to reload plugin: %s" % name) - return ok - -## Unload all currently loaded plugins. Called automatically on exit. -func unload_all() -> void: - var names: Array = loaded_plugins.keys() - for name in names: - unload_plugin(name) - if names.size() > 0: - log_info("All plugins unloaded (%d total)" % names.size()) - -# --------------------------------------------------------------------------- -# Hook dispatch — call a named method on every loaded plugin -# --------------------------------------------------------------------------- - -## Dispatch a hook to all loaded plugins. -## Returns an array of return values (one per plugin that returned non-null). -func dispatch_hook(hook_name: String, args: Array = []) -> Array: - var results: Array = [] - for name in loaded_plugins: - var instance: Node = loaded_plugins[name] - if instance and instance.has_method(hook_name): - var result = _call_plugin_hook(name, instance, hook_name, args) - if result != null: - results.append(result) - return results - -## Dispatch a filter hook (bool-returning) and return true only if ALL -## plugins returned true. Short-circuits on the first false. -## This is used for on_player_connect and on_player_say. -func dispatch_filter_hook(hook_name: String, args: Array = []) -> bool: - for name in loaded_plugins: - var instance: Node = loaded_plugins[name] - if instance and instance.has_method(hook_name): - var result = _call_plugin_hook(name, instance, hook_name, args) - if result is bool and not result: - return false - return true - -## Safely call a hook on a single plugin instance, catching errors. -## If the call fails, a plugin_error signal is emitted and null is returned, -## allowing other plugins to continue processing. -func _call_plugin_hook(name: String, instance: Node, hook: String, args: Array): - if not instance or not is_instance_id_valid(instance.get_instance_id()): - return null - - var callable: Callable = Callable(instance, hook) - if callable.is_null(): - return null - - # Use callv for variadic argument passing - var result - result = callable.callv(args) - return result - -# --------------------------------------------------------------------------- -# Convenience dispatchers — called by game code (server_main.gd, etc.) -# --------------------------------------------------------------------------- - -func on_server_start() -> void: - dispatch_hook("on_server_start") - -func on_server_stop() -> void: - dispatch_hook("on_server_stop") - -func on_map_start(map_name: String) -> void: - dispatch_hook("on_map_start", [map_name]) - -func on_map_end(map_name: String) -> void: - dispatch_hook("on_map_end", [map_name]) - -func on_player_connect(id: int, name: String, steam_id: String) -> bool: - return dispatch_filter_hook("on_player_connect", [id, name, steam_id]) - -func on_player_disconnect(id: int, reason: String) -> void: - dispatch_hook("on_player_disconnect", [id, reason]) - -func on_player_say(id: int, msg: String) -> bool: - return dispatch_filter_hook("on_player_say", [id, msg]) - -func on_player_spawn(id: int) -> void: - dispatch_hook("on_player_spawn", [id]) - -func on_player_killed(victim: int, killer: int, weapon: String) -> void: - dispatch_hook("on_player_killed", [victim, killer, weapon]) - -func on_round_start(number: int) -> void: - dispatch_hook("on_round_start", [number]) - -func on_round_end(winner_team: int, reason: String) -> void: - dispatch_hook("on_round_end", [winner_team, reason]) - -func on_tick(delta: float) -> void: - dispatch_hook("on_tick", [delta]) - -# --------------------------------------------------------------------------- -# Cvar integration — register plugin state as server cvars -# --------------------------------------------------------------------------- - -## Register cvars so rcon/in-game can inspect plugin state. -## Called automatically when a CvarRegistry singleton is detected. -func _register_plugin_cvars() -> void: - if not has_node("/root/CvarRegistry"): - return - - var registry = get_node("/root/CvarRegistry") - if not registry or not registry.has_method(&"register"): - return - - # Register a cvar for each loaded plugin indicating its load status - for pname in loaded_plugins: - var cvar_name: String = "plugin_" + pname.to_lower().replace(" ", "_") + "_loaded" - if registry.has_method(&"register"): - registry.register(cvar_name, true, TYPE_BOOL, "Plugin '%s' loaded status" % pname) - - # Register API version for external inspection - if registry.has_method(&"register"): - registry.register("plugin_api_version", API_VERSION, TYPE_STRING, "PluginManager API version") - -# --------------------------------------------------------------------------- -# RCON command handler — subcommands for the rcon console -# --------------------------------------------------------------------------- - -## Handle a plugin-related RCON command. -## Matches the subcommands added to rcon_command_handler.gd. -## Returns a formatted response string suitable for RCON output. -func rcon_command(args: PackedStringArray) -> String: - if args.is_empty(): - return _rcon_help() - - var subcmd: String = args[0].to_lower() - var subargs: PackedStringArray = args.slice(1) - - match subcmd: - "list": - return _rcon_list(subargs) - "load": - return _rcon_load(subargs) - "unload": - return _rcon_unload(subargs) - "reload": - return _rcon_reload(subargs) - "info": - return _rcon_info(subargs) - "rescan": - return _rcon_rescan(subargs) - "help": - return _rcon_help() - _: - return "Unknown plugin subcommand: '%s'. Use 'plugin help'.\\r\\n" % subcmd - -func _rcon_help() -> String: - var lines: PackedStringArray = [ - "=== Plugin Commands ===", - " plugin list List all loaded/available plugins", - " plugin load Load a discovered plugin by name", - " plugin unload Unload a running plugin", - " plugin reload Reload a plugin (re-compiles script)", - " plugin info Show detailed info about a plugin", - " plugin rescan Re-scan the plugins directory for changes", - ] - return "\\r\\n".join(lines) + "\\r\\n" - -func _rcon_list(_args: PackedStringArray) -> String: - var lines: PackedStringArray = [] - lines.append("=== Plugins (%d loaded, %d discovered) ===" % - [loaded_plugins.size(), discovered_manifests.size()]) - lines.append(&"") - - var all_names: Array = discovered_manifests.keys() - all_names.sort() - - if all_names.is_empty(): - lines.append(" No plugins discovered. Use 'plugin rescan' to scan.") - else: - for pname in all_names: - var manifest = discovered_manifests[pname] - var status: String - if pname in loaded_plugins: - status = "LOADED" - elif not manifest.enabled: - status = "DISABLED" - else: - status = "AVAILABLE" - lines.append(" %s v%s [%s]" % [pname, manifest.version, status]) - - return "\\r\\n".join(lines) + "\\r\\n" - -func _rcon_load(args: PackedStringArray) -> String: - if args.is_empty(): - return "Usage: plugin load \\r\\n" - - var name: String = args[0] - if load_plugin(name): - return "Loaded plugin: %s\\r\\n" % name - return "Failed to load plugin: %s. Check server logs for details.\\r\\n" % name - -func _rcon_unload(args: PackedStringArray) -> String: - if args.is_empty(): - return "Usage: plugin unload \\r\\n" - - var name: String = args[0] - if unload_plugin(name): - return "Unloaded plugin: %s\\r\\n" % name - return "Failed to unload plugin: %s. Check server logs for details.\\r\\n" % name - -func _rcon_reload(args: PackedStringArray) -> String: - if args.is_empty(): - return "Usage: plugin reload \\r\\n" - - var name: String = args[0] - if reload_plugin(name): - return "Reloaded plugin: %s\\r\\n" % name - return "Failed to reload plugin: %s. Check server logs for details.\\r\\n" % name - -func _rcon_info(args: PackedStringArray) -> String: - if args.is_empty(): - return "Usage: plugin info \\r\\n" - - var name: String = args[0] - if name not in discovered_manifests: - return "Plugin not found: %s. Use 'plugin list' to see available plugins.\\r\\n" % name - - var manifest = discovered_manifests[name] - var info: Dictionary = _plugin_info.get(name, {}) - var full_script_path: String = info.get("path", "") + manifest.script_path - var lines: PackedStringArray = [] - lines.append("=== Plugin Info: %s ===" % name) - lines.append(" Name: %s" % name) - lines.append(" Version: %s" % manifest.version) - lines.append(" Author: %s" % manifest.author) - lines.append(" Script: %s" % full_script_path) - lines.append(" Enabled: %s" % str(manifest.enabled)) - lines.append(" Loaded: %s" % str(name in loaded_plugins)) - lines.append(" Min API: %s" % (manifest.min_api_version if manifest.min_api_version else "(none)")) - lines.append(" Max API: %s" % (manifest.max_api_version if manifest.max_api_version else "(none)")) - lines.append(" Metadata: %s" % str(manifest.metadata)) - - return "\\r\\n".join(lines) + "\\r\\n" - -func _rcon_rescan(_args: PackedStringArray) -> String: - var count: int = rescan() - return "Rescan complete: %d manifest(s) found, %d plugin(s) loaded.\\r\\n" % [count, loaded_plugins.size()] - -# --------------------------------------------------------------------------- -# Utility / logging -# --------------------------------------------------------------------------- - -func log_info(msg: String) -> void: - print("[PluginManager] %s" % msg) - -func log_warn(msg: String) -> void: - push_warning("[PluginManager] %s" % msg) - -func log_err(msg: String) -> void: - push_error("[PluginManager] %s" % msg) diff --git a/server/scripts/plugin_api/plugin_manager.gd.uid b/server/scripts/plugin_api/plugin_manager.gd.uid deleted file mode 100644 index 9c10eb9..0000000 --- a/server/scripts/plugin_api/plugin_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bjfhqc378oifb diff --git a/server/scripts/plugin_api/plugin_manifest.gd b/server/scripts/plugin_api/plugin_manifest.gd deleted file mode 100644 index 18c72d5..0000000 --- a/server/scripts/plugin_api/plugin_manifest.gd +++ /dev/null @@ -1,80 +0,0 @@ -## Plugin Manifest — Custom Resource -## -## Each plugin directory must contain a plugin.tres file of this type. -## The PluginManager scans for these files when discovering plugins. -## -## Example plugin.tres: -## [gd_resource type="Resource" format=3] -## [ext_resource type="Script" id="1" path="res://server/scripts/plugin_api/plugin_manifest.gd"] -## [resource] -## script = ExtResource("1") -## name = "Hello World" -## version = "1.0.0" -## author = "Tactical Shooter Team" -## script_path = "hello_world.gd" -## enabled = true - -extends Resource -# class_name PluginManifest — commented out for headless compat - -# --------------------------------------------------------------------------- -# Exported fields -# --------------------------------------------------------------------------- - -## Human-readable plugin name (e.g. "Hello World"). -## This is used as the canonical identifier for load/unload/info commands. -@export var name: String = &"" - -## Plugin version string (e.g. "1.0.0"). -## Follows semver convention for compatibility checking. -@export var version: String = &"1.0.0" - -## Author name, handle, or team name. -@export var author: String = &"" - -## Path to the main GDScript file, relative to the plugin directory -## (e.g. "hello_world.gd" for a script in the same directory). -@export var script_path: String = &"" - -## Whether the plugin is enabled on initial load. -## Set to false to keep the plugin discovered but not auto-loaded. -@export var enabled: bool = true - -## Minimum required PluginManager API version (semver string). -## Leave empty if no minimum is required. -@export var min_api_version: String = &"" - -## Maximum allowed PluginManager API version (semver string). -## Leave empty if any version is accepted. -@export var max_api_version: String = &"" - -## Arbitrary key-value metadata (e.g. description, homepage, dependencies). -## Useful for plugin browsers and info commands. -@export var metadata: Dictionary = {} - -# --------------------------------------------------------------------------- -# Validation helpers -# --------------------------------------------------------------------------- - -## Returns true if the manifest fields are minimally valid and usable. -## -## A valid manifest must have: -## - A non-empty name -## - A non-empty script_path referencing the plugin's main script -func is_valid() -> bool: - return not name.is_empty() and not script_path.is_empty() - -## Returns true if this plugin is compatible with the given API version. -## Uses simple string comparison — extend with proper semver logic as needed. -func is_api_compatible(api_version: String) -> bool: - if not min_api_version.is_empty() and api_version < min_api_version: - return false - if not max_api_version.is_empty() and api_version > max_api_version: - return false - return true - -## Returns a human-readable summary of the manifest. -func to_summary() -> String: - return "%s v%s by %s (script: %s, enabled: %s)" % [ - name, version, author, script_path, str(enabled) - ] diff --git a/server/scripts/plugin_api/plugin_manifest.gd.uid b/server/scripts/plugin_api/plugin_manifest.gd.uid deleted file mode 100644 index 255b117..0000000 --- a/server/scripts/plugin_api/plugin_manifest.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://de5u8rubtedqh diff --git a/server/scripts/plugin_manager.gd b/server/scripts/plugin_manager.gd deleted file mode 100644 index f24177a..0000000 --- a/server/scripts/plugin_manager.gd +++ /dev/null @@ -1,539 +0,0 @@ -extends Node - -# ═══════════════════════════════════════════════════════════════════════════ -# PluginManager — Server plugin lifecycle & hook dispatch -# -# Architecture (SourceMod-inspired): -# Plugins extend PluginBase and provide hook overrides. The PluginManager -# discovers .tres manifests in the plugin directory, loads the referenced -# GDScripts, and dispatches hook events to all loaded plugins. -# -# Setup — Add as an autoload in project.godot: -# [autoload] -# PluginManager="*res://server/scripts/plugin_manager.gd" -# -# Game Integration — Connect signals to forward game events: -# PluginManager.signal_map_start.connect(_on_map_start) -# --- After calling your game logic, dispatch to plugins: -# PluginManager.dispatch_map_start("de_dust2") -# -# Hook Dispatch Flow: -# Game loop → (calls plugin_manager.dispatch_*) → PluginManager iterates -# loaded plugins → calls virtual method on each → collects results -# -# Thread Safety: -# Hook dispatch runs on the main thread. Plugin _ready() and _exit_tree() -# also run on the main thread. Plugins must not create threads without -# proper mutex handling. -# ═══════════════════════════════════════════════════════════════════════════ - -# ─── Signals (for game-logic integration) ──────────────────────────────── -# Game logic connects these to learn when plugins request actions. - -## Emitted when a plugin wants to broadcast a chat message. -signal plugin_broadcast_chat(message: String) - -## Emitted when a plugin requests a player be kicked. -signal plugin_request_kick(peer_id: int, reason: String) - -## Emitted when a plugin explicitly asks the server to change map. -signal plugin_request_changelevel(map_name: String) - - -# ─── Exports / Cvars ───────────────────────────────────────────────────── - -## Master enable/disable. When false, no plugins are loaded. -@export var sv_plugin_enabled: bool = true: - set = set_plugin_enabled - -## Directory to scan for plugin .tres manifests. -## Relative to user:// for runtime discovery (admins can FTP plugins in). -## Set to "res://plugins" for development / built-in plugins. -@export var sv_plugin_dir: String = "user://plugins" - -## Path separator pattern — subdirectories under sv_plugin_dir are scanned. -## Each subdirectory should contain a plugin.tres file. -@export var sv_plugin_rescan_on_map: bool = false - - -# ─── Internal State ────────────────────────────────────────────────────── - -## Loaded plugins keyed by plugin_name (lowercase). -var loaded_plugins: Dictionary = {} # "plugin_name_lower" → PluginBase - -## Registration order (for deterministic dispatch). -var _load_order: Array[PluginBase] = [] - -## Whether the server is currently running (set by dispatch_server_start). -var _server_running: bool = false - -## Reference to the CvarRegistry singleton (cached). -var _cvar_registry = null - - -# ═══════════════════════════════════════════════════════════════════════════ -# Initialization & Lifecycle -# ═══════════════════════════════════════════════════════════════════════════ - -func _ready() -> void: - """Called when the PluginManager is added to the scene tree (autoload).""" - # Cache CvarRegistry reference - if Engine.has_singleton("CvarRegistry"): - _cvar_registry = Engine.get_singleton("CvarRegistry") - - # Read cvar overrides - _apply_cvar_overrides() - - # Discover and load plugins - if sv_plugin_enabled: - _discover_plugins() - else: - print("[PluginManager] Plugin system disabled (sv_plugin_enabled=false)") - - -func _exit_tree() -> void: - """Clean shutdown — dispatch server_stop if not already done.""" - if _server_running: - dispatch_server_stop() - - -# ═══════════════════════════════════════════════════════════════════════════ -# Cvar Integration -# ═══════════════════════════════════════════════════════════════════════════ - -func _apply_cvar_overrides() -> void: - """Read overrides from the CvarRegistry (if available).""" - if not _cvar_registry: - return - - if _cvar_registry.has_method("get"): - var val = _cvar_registry.get("sv_plugin_enabled") - if val != null: - sv_plugin_enabled = bool(val) - - val = _cvar_registry.get("sv_plugin_dir") - if val != null and not str(val).is_empty(): - sv_plugin_dir = str(val) - - -func set_plugin_enabled(new_val: bool) -> void: - """Setter for sv_plugin_enabled — triggers load/unload if state changes.""" - if new_val == sv_plugin_enabled: - return - sv_plugin_enabled = new_val - - if sv_plugin_enabled: - print("[PluginManager] Enabling plugin system") - _discover_plugins() - else: - print("[PluginManager] Disabling plugin system — unloading all") - _unload_all() - - -# ═══════════════════════════════════════════════════════════════════════════ -# Plugin Discovery & Loading -# ═══════════════════════════════════════════════════════════════════════════ - -func discover_plugins() -> Dictionary: - """Force a re-scan of the plugin directory. Returns {loaded, failed, skipped} counts.""" - return _discover_plugins() - - -func _discover_plugins() -> Dictionary: - """Scan sv_plugin_dir for plugin.tres manifests and load new plugins. - - Returns a dict with: - loaded: int — plugins successfully loaded - failed: int — manifests found but failed to load - skipped: int — manifests skipped (already loaded, disabled, or invalid) - """ - var result = {"loaded": 0, "failed": 0, "skipped": 0} - - # Resolve the plugin directory path - var dir_path = _resolve_plugin_dir() - if dir_path.is_empty(): - push_warning("[PluginManager] Could not resolve plugin directory: " + sv_plugin_dir) - return result - - var dir = DirAccess.open(dir_path) - if not dir: - push_warning("[PluginManager] Plugin directory not found: " + dir_path) - return result - - # List subdirectories (each subdir = one plugin) - dir.list_dir_begin() - var entry = dir.get_next() - - while entry: - if entry != "." and entry != ".." and dir.current_is_dir(): - var sub_path = dir_path.path_join(entry) - var manifest_path = sub_path.path_join("plugin.tres") - - if FileAccess.file_exists(manifest_path): - var load_result = _load_plugin(manifest_path) - if load_result == OK: - result["loaded"] += 1 - elif load_result == ERR_SKIP: - result["skipped"] += 1 - else: - result["failed"] += 1 - else: - result["skipped"] += 1 - - entry = dir.get_next() - - dir.list_dir_end() - - print("[PluginManager] Discovery complete — loaded: " + str(result["loaded"]) + \ - ", failed: " + str(result["failed"]) + ", skipped: " + str(result["skipped"])) - - return result - - -func _load_plugin(manifest_path: String) -> int: - """Load a single plugin from its manifest path. - - Returns: - OK — loaded successfully - ERR_SKIP — skipped (already loaded, disabled, or invalid manifest) - ERR_FILE_CORRUPT — manifest couldn't be loaded - ERR_SCRIPT_FAILED — script failed to instantiate - """ - # Load the manifest Resource - var res = ResourceLoader.load(manifest_path, "Resource", ResourceLoader.CACHE_MODE_IGNORE) - if not res: - push_error("[PluginManager] Failed to load manifest: " + manifest_path) - return ERR_FILE_CORRUPT - - # The manifest is a PluginManifest if we loaded a custom Resource, or a - # plain Resource with export properties. - var manifest = res as PluginManifest - - # Validate - if not manifest or not manifest.is_valid(): - push_warning("[PluginManager] Skipping invalid manifest: " + manifest_path) - return ERR_SKIP - - if not manifest.plugin_enabled: - print("[PluginManager] Plugin '" + manifest.plugin_name + "' is disabled — skipping") - return ERR_SKIP - - var name_key = manifest.plugin_name.to_lower() - - # Check if already loaded - if loaded_plugins.has(name_key): - print("[PluginManager] Plugin '" + manifest.plugin_name + "' already loaded — skipping") - return ERR_SKIP - - # Check version compatibility - if not _check_version_compatibility(manifest): - push_warning("[PluginManager] Plugin '" + manifest.plugin_name + \ - "' version requirement not met — skipping") - return ERR_SKIP - - # Load the plugin script - if manifest.plugin_script_path.is_empty(): - push_error("[PluginManager] Plugin '" + manifest.plugin_name + "' has no script path") - return ERR_FILE_CORRUPT - - # Resolve the script path relative to the plugin directory - var script_path = manifest.plugin_script_path - if not script_path.begins_with("res://") and not script_path.begins_with("user://"): - # If relative, resolve relative to manifest location - var manifest_dir = manifest_path.get_base_dir() - script_path = manifest_dir.path_join(script_path) - - if not ResourceLoader.exists(script_path): - push_error("[PluginManager] Plugin script not found: " + script_path) - return ERR_FILE_CORRUPT - - var script_res = load(script_path) - if not script_res or not (script_res is GDScript): - push_error("[PluginManager] Plugin script is not a valid GDScript: " + script_path) - return ERR_SCRIPT_FAILED - - # Instantiate the plugin - var plugin_instance = script_res.new() - if not plugin_instance or not (plugin_instance is PluginBase): - push_error("[PluginManager] Plugin script must extend PluginBase: " + script_path) - if plugin_instance: - plugin_instance.free() - return ERR_SCRIPT_FAILED - - # Apply metadata from manifest - plugin_instance.plugin_name = manifest.plugin_name - plugin_instance.plugin_version = manifest.plugin_version - plugin_instance.plugin_author = manifest.plugin_author - plugin_instance.plugin_description = manifest.plugin_description - plugin_instance.plugin_manifest_path = manifest_path - - # Register - loaded_plugins[name_key] = plugin_instance - _load_order.append(plugin_instance) - - # Add to scene tree to enable _ready(), _process(), etc. - add_child(plugin_instance) - - print("[PluginManager] Loaded plugin: " + manifest.plugin_name + " v" + manifest.plugin_version) - return OK - - -func unload_plugin(name: String) -> bool: - """Unload a specific plugin by name. Returns true on success.""" - var name_key = name.to_lower() - if not loaded_plugins.has(name_key): - return false - - var plugin = loaded_plugins[name_key] as PluginBase - - # Remove from tracking first so dispatch doesn't hit it mid-unload - loaded_plugins.erase(name_key) - var idx = _load_order.find(plugin) - if idx >= 0: - _load_order.remove_at(idx) - - # Save state (call on_server_stop if server is running) - if _server_running: - plugin.on_server_stop() - - # Remove from scene tree - remove_child(plugin) - plugin.queue_free() - - print("[PluginManager] Unloaded plugin: " + plugin.plugin_name) - return true - - -func reload_plugin(name: String) -> bool: - """Reload a plugin by unloading it, then re-loading from its manifest. - Returns true if both unload and load succeeded. - """ - var name_key = name.to_lower() - if not loaded_plugins.has(name_key): - return false - - var plugin = loaded_plugins[name_key] as PluginBase - var manifest_path = plugin.plugin_manifest_path - - if not unload_plugin(name): - return false - - if manifest_path.is_empty(): - push_warning("[PluginManager] No manifest path to reload from for '" + name + "'") - return false - - var result = _load_plugin(manifest_path) - if result != OK: - push_error("[PluginManager] Failed to reload plugin '" + name + "'") - return false - - # If server is running, call on_server_start on the new instance - if _server_running: - var new_plugin = loaded_plugins.get(name_key) - if new_plugin: - new_plugin.on_server_start() - - return true - - -func _unload_all() -> void: - """Unload every loaded plugin.""" - for plugin in _load_order.duplicate(): - unload_plugin(plugin.plugin_name) - - -func get_plugin(name: String) -> PluginBase: - """Get a loaded plugin by name. Returns null if not found.""" - return loaded_plugins.get(name.to_lower()) - - -func get_plugin_count() -> int: - """Number of currently loaded plugins.""" - return _load_order.size() - - -func list_plugins() -> Array[Dictionary]: - """Return metadata for all loaded plugins (for admin display).""" - var result: Array[Dictionary] = [] - for plugin in _load_order: - result.append({ - "name": plugin.plugin_name, - "version": plugin.plugin_version, - "author": plugin.plugin_author, - "description": plugin.plugin_description, - "manifest_path": plugin.plugin_manifest_path, - }) - return result - - -# ═══════════════════════════════════════════════════════════════════════════ -# Hook Dispatch Methods -# ═══════════════════════════════════════════════════════════════════════════ - -# Each dispatch_* method iterates all loaded plugins and calls the -# corresponding virtual hook method. For hooks that return a bool, -# the method collects return values and decides: if ANY plugin returns -# true, the action is considered blocked. -# -# The game loop should call these at the appropriate points. - -func dispatch_server_start() -> void: - """Notify all plugins that the server has started.""" - _server_running = true - for plugin in _load_order: - plugin.on_server_start() - - -func dispatch_server_stop() -> void: - """Notify all plugins that the server is shutting down.""" - _server_running = false - # Iterate in reverse for clean shutdown - for i in range(_load_order.size() - 1, -1, -1): - _load_order[i].on_server_stop() - - -func dispatch_map_start(map_name: String) -> void: - """Notify plugins a new map has loaded.""" - for plugin in _load_order: - plugin.on_map_start(map_name) - - -func dispatch_map_end(map_name: String) -> void: - """Notify plugins the current map is ending.""" - for plugin in _load_order: - plugin.on_map_end(map_name) - - -func dispatch_player_connect(peer_id: int, name: String, steam_id: String) -> bool: - """Ask plugins if a player connection should be blocked. - - Returns true if ANY plugin blocked the connection. - """ - var blocked: bool = false - for plugin in _load_order: - if plugin.on_player_connect(peer_id, name, steam_id): - blocked = true - return blocked - - -func dispatch_player_disconnect(peer_id: int, reason: String) -> void: - """Notify plugins a player has disconnected.""" - for plugin in _load_order: - plugin.on_player_disconnect(peer_id, reason) - - -func dispatch_player_say(peer_id: int, message: String) -> bool: - """Ask plugins if a chat message should be blocked. - - Returns true if ANY plugin blocked the message. - """ - var blocked: bool = false - for plugin in _load_order: - if plugin.on_player_say(peer_id, message): - blocked = true - return blocked - - -func dispatch_player_spawn(peer_id: int) -> void: - """Notify plugins a player has spawned.""" - for plugin in _load_order: - plugin.on_player_spawn(peer_id) - - -func dispatch_player_killed(victim_id: int, killer_id: int, weapon: String) -> void: - """Notify plugins a player has been killed.""" - for plugin in _load_order: - plugin.on_player_killed(victim_id, killer_id, weapon) - - -func dispatch_round_start(round_number: int) -> void: - """Notify plugins a new round has started.""" - for plugin in _load_order: - plugin.on_round_start(round_number) - - -func dispatch_round_end(winner_team: int, reason: String) -> void: - """Notify plugins the current round has ended.""" - for plugin in _load_order: - plugin.on_round_end(winner_team, reason) - - -func dispatch_tick(delta: float) -> void: - """Dispatch per-tick hook. Call from _physics_process. - - This is potentially expensive with many plugins. Consider using - a pooling/tick budget approach if you have >20 plugins. - """ - for plugin in _load_order: - plugin.on_tick(delta) - - -# ═══════════════════════════════════════════════════════════════════════════ -# Helpers -# ═══════════════════════════════════════════════════════════════════════════ - -func _resolve_plugin_dir() -> String: - """Resolve the plugin directory path, handling res:// and user:// prefixes.""" - var path = sv_plugin_dir - - if path.begins_with("res://"): - # Convert to absolute filesystem path (DirAccess needs absolute paths) - return ProjectSettings.globalize_path(path) - elif path.begins_with("user://"): - return ProjectSettings.globalize_path(path) - else: - # Assume relative — prepend user:// - path = "user://" + path.trim_prefix("/") - return ProjectSettings.globalize_path(path) - - -func _check_version_compatibility(manifest: PluginManifest) -> bool: - """Check if this server version satisfies the plugin's version requirements.""" - # Get server version - var server_version = ProjectSettings.get_setting("application/config/version", "0.0.0") - - if not manifest.min_server_version.is_empty(): - if not _version_gte(server_version, manifest.min_server_version): - push_warning("[PluginManager] Plugin '" + manifest.plugin_name + \ - "' requires server >= " + manifest.min_server_version + \ - " (server: " + server_version + ")") - return false - - if not manifest.max_server_version.is_empty(): - if not _version_lte(server_version, manifest.max_server_version): - push_warning("[PluginManager] Plugin '" + manifest.plugin_name + \ - "' requires server <= " + manifest.max_server_version + \ - " (server: " + server_version + ")") - return false - - return true - - -static func _version_gte(version: String, min_version: String) -> bool: - """Simple semver comparison: version >= min_version.""" - var v_parts = version.split(".") - var m_parts = min_version.split(".") - - for i in range(max(v_parts.size(), m_parts.size())): - var v = int(v_parts[i]) if i < v_parts.size() else 0 - var m = int(m_parts[i]) if i < m_parts.size() else 0 - if v > m: - return true - if v < m: - return false - return true - - -static func _version_lte(version: String, max_version: String) -> bool: - """Simple semver comparison: version <= max_version.""" - var v_parts = version.split(".") - var m_parts = max_version.split(".") - - for i in range(max(v_parts.size(), m_parts.size())): - var v = int(v_parts[i]) if i < v_parts.size() else 0 - var m = int(m_parts[i]) if i < m_parts.size() else 0 - if v < m: - return true - if v > m: - return false - return true diff --git a/server/scripts/plugin_manager.gd.uid b/server/scripts/plugin_manager.gd.uid deleted file mode 100644 index f4f91a1..0000000 --- a/server/scripts/plugin_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://bt7le1vq5wvl4 diff --git a/server/scripts/rcon_command_handler.gd b/server/scripts/rcon_command_handler.gd deleted file mode 100644 index 4ea4b5f..0000000 --- a/server/scripts/rcon_command_handler.gd +++ /dev/null @@ -1,403 +0,0 @@ -extends Node - -# RCON Admin Console — Command Handler -# ============================================================================ -# Processes RCON commands, returns formatted response strings. -# Game-affecting commands (changelevel, kick, ban, say, players, etc.) -# are dispatched via the `rcon_command` signal so game logic can handle them -# without coupling RCON to game-specific systems. -# -# Commands handled inline (no game dependency): -# help, echo/ping, status (engine-level stats), quit -# cvarlist, cvar_get, cvar_set (via CvarRegistry singleton if available) -# -# Plugin commands are delegated to PluginManager singleton: -# plugin list, plugin load, plugin unload, plugin reload, -# plugin info, plugin rescan -# -# Commands dispatched via signal: -# changelevel, kick, ban, unban, say, msg, players, exec -# -# Connection pattern for game logic: -# func _ready(): -# var rcon = get_node("/root/RconServer/RconCommandHandler") -# if rcon: -# rcon.rcon_command.connect(_on_rcon_command) -# -# func _on_rcon_command(command: String, args: PackedStringArray): -# match command: -# "changelevel": -# $ServerManager.change_level(args[0]) -# "kick": -# $PlayerManager.kick_player(args[0]) - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- -signal rcon_command(command: String, args: PackedStringArray) - -# --------------------------------------------------------------------------- -# Public API — called by rcon_server.gd -# --------------------------------------------------------------------------- -func handle_command(cmd: String, args: PackedStringArray) -> String: - match cmd: - "help": - return _cmd_help(args) - "echo", "ping": - return _cmd_echo(args) - "status": - return _cmd_status(args) - "quit": - return _cmd_quit(args) - "cvarlist": - return _cmd_cvarlist(args) - "cvar_get": - return _cmd_cvar_get(args) - "cvar_set": - return _cmd_cvar_set(args) - "plugin": - return _cmd_plugin(args) - "say", "msg", "players", "changelevel", "kick", "ban", "unban", "exec", "start_match", "end_round": - return _cmd_dispatch(cmd, args) - _: - return "Unknown command: '" + cmd + "'. Type 'help' for available commands.\\r\\n" - -# --------------------------------------------------------------------------- -# Built-in commands -# --------------------------------------------------------------------------- -func _cmd_help(_args: PackedStringArray) -> String: - var lines: PackedStringArray = [ - "=== RCON Commands ===", - " help Show this help", - " echo [text] Echo text back (ping test)", - " status Show server engine status", - " players List connected players", - " say Broadcast chat to all players", - " msg Send private message", - " changelevel Load a new map", - " start_match Start the match (exit warmup)", - " end_round [reason] Force-end the current round", - " kick [reason] Remove a player", - " ban [duration] Ban a player from the server", - " unban Remove a ban", - " exec Execute a server config file", - " cvarlist [pattern] List cvars (optional filter)", - " cvar_get Get a cvar's value", - " cvar_set Set a writable cvar", - " plugin [args] Plugin management (list/load/unload/reload/info/rescan)", - " quit Shut down the server gracefully", - ] - return "\r\n".join(lines) + "\r\n" - -func _cmd_echo(args: PackedStringArray) -> String: - if args.is_empty(): - return "Pong\r\n" - return " ".join(args) + "\\r\\n" - -func _cmd_status(_args: PackedStringArray) -> String: - var lines: PackedStringArray = [] - lines.append("=== Server Status ===") - - # Engine version - var vi: Dictionary = Engine.get_version_info() - lines.append(" Engine: Godot " + str(vi.get("major", "?")) + "." + str(vi.get("minor", "?")) + "." + str(vi.get("patch", "?"))) - - # FPS - lines.append(" FPS: " + str(Engine.get_frames_per_second())) - - # Physics tick rate - lines.append(" Tickrate: " + str(Engine.physics_ticks_per_second) + " Hz") - - # Uptime - var uptime_ms: int = Time.get_ticks_msec() - var total_sec: int = uptime_ms / 1000 - var h: int = total_sec / 3600 - var m: int = (total_sec % 3600) / 60 - var s: int = total_sec % 60 - lines.append(" Uptime: " + str(h) + "h " + str(m) + "m " + str(s) + "s") - - # Server time - var dt: Dictionary = Time.get_datetime_dict_from_system() - lines.append(" Time: " + \ - str(dt.get("year", 0)) + "-" + str(dt.get("month", 1)).pad_zeros(2) + "-" + str(dt.get("day", 1)).pad_zeros(2) + " " + \ - str(dt.get("hour", 0)).pad_zeros(2) + ":" + str(dt.get("minute", 0)).pad_zeros(2) + ":" + str(dt.get("second", 0)).pad_zeros(2)) - - # Performance metrics - lines.append(" Objects: " + str(Performance.get_monitor(Performance.OBJECT_COUNT))) - var mem_kb: float = Performance.get_monitor(Performance.MEMORY_STATIC) - lines.append(" Memory: " + str(snapped(mem_kb / 1024.0, 0.1)) + " MB") - - # Node count (via SceneTree) - lines.append(" Nodes: " + str(get_tree().node_count)) - - # RCON info - lines.append(" RCON: enabled on port ? (see rcon_server)") - - # Try to get server name from engine - var server_name: String = ProjectSettings.get_setting("application/config/name", "Tactical Shooter") - lines.append(" Server: " + server_name) - - return "\r\n".join(lines) + "\r\n" - -func _cmd_quit(_args: PackedStringArray) -> String: - # Defer shutdown to next frame so the response can be sent - get_tree().call_deferred("quit") - return "Server shutting down...\r\n" - -func _cmd_cvarlist(args: PackedStringArray) -> String: - var pattern: String = args[0] if args.size() > 0 else "" - - if not has_node("/root/CvarRegistry"): - if pattern.is_empty() or "rcon" in pattern: - return "rcon_enabled: bool\r\nrcon_port: int\r\nrcon_password: string [PW]\r\n(Cvar registry not available — RCON cvars shown)\r\n" - return "Cvar registry not available. No cvars match '" + pattern + "'.\r\n" - - var registry = get_node("/root/CvarRegistry") - if not registry or not registry.has_method("list_cvars"): - return "Cvar registry available but incompatible.\r\n" - - var cvar_names: Array = registry.list_cvars() - var lines: PackedStringArray = [] - lines.append("=== Cvar List" + (" (filter: '" + pattern + "')" if pattern else "") + " ===") - - var found: int = 0 - for cvar_name in cvar_names: - if not pattern.is_empty() and pattern not in str(cvar_name): - continue - - var val = registry.get(cvar_name) - var flags: int = 0 - var cvar_type: String = "?" - - if registry.has_method("get_flags"): - flags = registry.get_flags(cvar_name) - if registry.has_method("get_type"): - cvar_type = str(registry.get_type(cvar_name)) - - var readonly: String = " [RO]" if (flags & 1) else "" - var passwd: String = " [PW]" if str(cvar_name).find("password") >= 0 else "" - lines.append(" " + str(cvar_name) + " = " + str(val) + " (" + cvar_type + ")" + readonly + passwd) - found += 1 - - if found == 0: - return "No cvars match '" + pattern + "'.\r\n" - - lines.append(str(found) + " cvars listed.") - return "\r\n".join(lines) + "\r\n" - -func _cmd_cvar_get(args: PackedStringArray) -> String: - if args.is_empty(): - return "Usage: cvar_get \r\n" - - var name: String = args[0] - - if has_node("/root/CvarRegistry"): - var registry = get_node("/root/CvarRegistry") - if registry and registry.has_method("get"): - var val = registry.get(name) - if val != null: - return name + " = " + str(val) + "\r\n" - return "Cvar not found: " + name + "\r\n" - - return "Cvar registry not available.\r\n" - -func _cmd_cvar_set(args: PackedStringArray) -> String: - if args.size() < 2: - return "Usage: cvar_set \r\n" - - var name: String = args[0] - var value: String = args[1] - - if has_node("/root/CvarRegistry"): - var registry = get_node("/root/CvarRegistry") - if registry and registry.has_method("set"): - # Use Callable to avoid compile-time void return detection on dynamic object - var fn = Callable(registry, "set") - var err = fn.call(name, value) - if err == OK: - return name + " = " + value + "\r\n" - match err: - ERR_INVALID_PARAMETER: - return "Cvar not found or read-only: " + name + "\r\n" - ERR_INVALID_DATA: - return "Invalid value for " + name + ": " + value + "\r\n" - _: - return "Failed to set " + name + " (error " + str(err) + ")\r\n" - - return "Cvar registry not available.\r\n" - -# --------------------------------------------------------------------------- -# Plugin management — delegates to PluginManager singleton -# --------------------------------------------------------------------------- -func _cmd_plugin(args: PackedStringArray) -> String: - # Try to find PluginManager singleton (autoload) - var pm = get_node("/root/PluginManager") - if not pm: - return "PluginManager not available. Ensure PluginManager is registered as an autoload in project.godot.\r\n" - - if not pm.has_method("rcon_command"): - return "PluginManager does not support RCON commands.\r\n" - - return pm.rcon_command(args) - -# --------------------------------------------------------------------------- -# Delegated commands — emit signal for game logic to handle -# --------------------------------------------------------------------------- -func _cmd_dispatch(cmd: String, args: PackedStringArray) -> String: - rcon_command.emit(cmd, args) - return "Command '" + cmd + "' dispatched to server.\r\n" - - -# --------------------------------------------------------------------------- -# Plugin management commands — interfaces with PluginManager singleton -# --------------------------------------------------------------------------- -func _cmd_plugins(args: PackedStringArray) -> String: - """Handle 'plugins' command with subcommands.""" - if args.is_empty(): - return _cmd_plugins_help() - - var subcmd: String = args[0].to_lower() - - match subcmd: - "list": - return _cmd_plugins_list() - "load": - if args.size() < 2: - return "Usage: plugins load \r\n" - return _cmd_plugins_load(args[1]) - "unload": - if args.size() < 2: - return "Usage: plugins unload \r\n" - return _cmd_plugins_unload(args[1]) - "reload": - if args.size() < 2: - return "Usage: plugins reload \r\n" - return _cmd_plugins_reload(args[1]) - "info": - if args.size() < 2: - return "Usage: plugins info \r\n" - return _cmd_plugins_info(args[1]) - "scan", "rescan": - return _cmd_plugins_rescan() - _: - return "Unknown plugins subcommand: '" + subcmd + "'\r\n" + _cmd_plugins_help() - - -func _cmd_plugins_help() -> String: - return "\r\n".join([ - "=== Plugin Management ===", - " plugins list List all loaded plugins", - " plugins load Load a plugin by name from disk", - " plugins unload Unload a running plugin", - " plugins reload Reload a plugin (hotswap)", - " plugins info Show metadata for a plugin", - " plugins rescan Rescan plugin directory for new manifests", - ]) + "\r\n" - - -func _cmd_plugins_list() -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available (no PluginManager singleton).\r\n" - - var plugins = mgr.list_plugins() - if plugins.is_empty(): - return "No plugins loaded.\r\n" - - var lines: PackedStringArray = [] - lines.append("=== Loaded Plugins (" + str(plugins.size()) + ") ===") - lines.append(" %-24s %-10s %s" % ["Name", "Version", "Author"]) - lines.append(" " + "-".repeat(50)) - - for p in plugins: - lines.append(" %-24s %-10s %s" % [p.name, p.version, p.author]) - - return "\r\n".join(lines) + "\r\n" - - -func _cmd_plugins_load(name: String) -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available.\r\n" - - if not mgr.has_method("discover_plugins"): - return "PluginManager does not support targeted loading yet — use 'plugins rescan' to reload all.\r\n" - - if mgr.get_plugin(name): - return "Plugin '" + name + "' is already loaded.\r\n" - - var result = mgr.discover_plugins() - if mgr.get_plugin(name): - return "Plugin '" + name + "' loaded successfully.\r\n" - else: - return "Failed to load '" + name + "'. Check that plugin.tres exists in user://plugins/" + name.to_lower() + "/\r\n" - - -func _cmd_plugins_unload(name: String) -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available.\r\n" - - if not mgr.has_method("unload_plugin"): - return "PluginManager does not support unloading.\r\n" - - if mgr.unload_plugin(name): - return "Plugin '" + name + "' unloaded.\r\n" - else: - return "Plugin '" + name + "' not found. Use 'plugins list' to see loaded plugins.\r\n" - - -func _cmd_plugins_reload(name: String) -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available.\r\n" - - if not mgr.has_method("reload_plugin"): - return "PluginManager does not support reloading.\r\n" - - if mgr.reload_plugin(name): - return "Plugin '" + name + "' reloaded.\r\n" - else: - return "Plugin '" + name + "' not found. Use 'plugins list' to see loaded plugins.\r\n" - - -func _cmd_plugins_info(name: String) -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available.\r\n" - - var plugin = mgr.get_plugin(name) - if not plugin: - return "Plugin '" + name + "' not found. Use 'plugins list' to see loaded plugins.\r\n" - - var lines: PackedStringArray = [] - lines.append("=== Plugin: " + plugin.plugin_name + " ===") - lines.append(" Name: " + plugin.plugin_name) - lines.append(" Version: " + plugin.plugin_version) - lines.append(" Author: " + plugin.plugin_author) - lines.append(" Description: " + plugin.plugin_description) - lines.append(" Manifest: " + plugin.plugin_manifest_path) - return "\r\n".join(lines) + "\r\n" - - -func _cmd_plugins_rescan() -> String: - var mgr = _get_plugin_manager() - if not mgr: - return "Plugin system not available.\r\n" - - var result = mgr.discover_plugins() - return "Rescan complete — loaded: " + str(result.get("loaded", 0)) + \ - ", failed: " + str(result.get("failed", 0)) + \ - ", skipped: " + str(result.get("skipped", 0)) + "\r\n" - - -# --------------------------------------------------------------------------- -# Helper to locate PluginManager singleton -# --------------------------------------------------------------------------- -func _get_plugin_manager(): - """Get the PluginManager singleton, or null if not available.""" - if Engine.has_singleton("PluginManager"): - return Engine.get_singleton("PluginManager") - if has_node("/root/PluginManager"): - return get_node("/root/PluginManager") - return null diff --git a/server/scripts/rcon_command_handler.gd.uid b/server/scripts/rcon_command_handler.gd.uid deleted file mode 100644 index 459dcf8..0000000 --- a/server/scripts/rcon_command_handler.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://d2jf8ky1luqdw diff --git a/server/scripts/rcon_server.gd b/server/scripts/rcon_server.gd deleted file mode 100644 index 93c0136..0000000 --- a/server/scripts/rcon_server.gd +++ /dev/null @@ -1,337 +0,0 @@ -extends Node - -# RCON Admin Console — TCP Listener & Auth Layer -# ============================================================================ -# TCP-based remote administration for the dedicated game server. -# Source-RCON-inspired protocol, lightweight custom implementation. -# -# Protocol: -# 1. Client connects, first message is the password -# 2. Server responds with "auth_ok\r\n" or "auth_fail\r\n" -# 3. After auth, client sends single-line commands, newline-terminated -# 4. Server responds with multi-line text, terminated by "END\r\n" -# 5. 3 failed auth attempts → disconnect with 5s reconnect penalty -# -# Integration: -# This is the network layer only. Auth and raw I/O live here. -# Incoming commands are forwarded to RconCommandHandler for processing. -# Connect to child node's `rcon_command` signal from game logic -# to handle game-affecting commands (changelevel, kick, ban, etc.). -# -# Usage (standalone): -# var rcon = RconServer.new() -# rcon.enabled = true -# rcon.port = 28960 -# rcon.password = "mysecret" -# add_child(rcon) -# -# Usage (with cvar registry — t_p4_config): -# # Config system reads server.cfg and sets RCON cvars via CvarRegistry -# # singleton. RconServer auto-detects and reads rcon_enabled, rcon_port, -# # and rcon_password from it on _ready(). -# -# Lifecycle (property-driven): -# rcon.enabled = true → calls _start_listening() via setter -# rcon.enabled = false → calls _stop_listening() via setter -# rcon.port = 28961 → re-binds on new port if currently listening - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- -var enabled: bool = false: - set = set_enabled -var port: int = 28960: - set = set_port -var password: String = "changeme": - set = set_password - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- -const AUTH_PENDING: int = 0 -const AUTHENTICATED: int = 1 -const MAX_AUTH_FAILS: int = 3 -const AUTH_PENALTY_SECONDS: float = 5.0 -const RESP_END: String = "END\r\n" -const MAX_BUFFER_SIZE: int = 4096 -const HEARTBEAT_INTERVAL: float = 30.0 - -# --------------------------------------------------------------------------- -# Internal state -# --------------------------------------------------------------------------- -var _tcp_server: TCPServer = TCPServer.new() -var _connections: Dictionary = {} # StreamPeerTCP -> ConnectionState -var _banned_ips: Dictionary = {} # "ip" -> float (unban timestamp) -var _command_handler: Node = null -var _heartbeat_timer: float = 0.0 - -# --------------------------------------------------------------------------- -# Initialization -# --------------------------------------------------------------------------- -func _ready() -> void: - # Try to load password from file - _load_password_from_file() - - # Children added in scene file take priority - for child in get_children(): - if child is Node and child.has_method("handle_command"): - _command_handler = child - break - - # Auto-load command handler if not already added as child - if not _command_handler: - var handler_path = "res://server/scripts/rcon_command_handler.gd" - if ResourceLoader.exists(handler_path): - var handler = load(handler_path).new() - add_child(handler) - _command_handler = handler - - # Apply overrides from CvarRegistry singleton (t_p4_config integration) - _apply_cvar_overrides() - - if enabled: - _start_listening() - -func _exit_tree() -> void: - _stop_listening() - -# --------------------------------------------------------------------------- -# Process loop — poll network, accept connections, handle I/O -# --------------------------------------------------------------------------- -func _process(delta: float) -> void: - if not enabled or not _tcp_server or not _tcp_server.is_listening(): - return - - _heartbeat_timer += delta - - # --- Accept new connections --- - while _tcp_server.is_connection_available(): - var stream: StreamPeerTCP = _tcp_server.take_connection() - if not stream: - continue - - var ip: String = stream.get_connected_address() - - # Check if IP is under auth penalty - if _is_ip_banned(ip): - _send_raw(stream, "Server busy — try again later.\r\n") - _send_end(stream) - stream.disconnect_from_host() - continue - - _connections[stream] = { - "state": AUTH_PENDING, - "buffer": "", - "fail_count": 0, - "ip": ip - } - - # --- Poll existing connections --- - var to_remove: Array = [] - for stream in _connections: - var conn = _connections[stream] - var status: int = stream.get_status() - - if status == StreamPeerTCP.STATUS_NONE or status == StreamPeerTCP.STATUS_ERROR: - to_remove.append(stream) - continue - - if status != StreamPeerTCP.STATUS_CONNECTED: - continue - - # Read available data - var avail: int = stream.get_available_bytes() - if avail <= 0: - continue - - var result: Array = stream.get_data(avail) - if result[0] != OK: - to_remove.append(stream) - continue - - conn["buffer"] += result[1].get_string_from_utf8() - - # Buffer overflow protection - if conn["buffer"].length() > MAX_BUFFER_SIZE: - _send_raw(stream, "Buffer overflow — disconnected.\r\n") - _send_end(stream) - to_remove.append(stream) - continue - - # Process complete lines - while "\n" in conn["buffer"]: - var idx: int = conn["buffer"].find("\n") - var line: String = conn["buffer"].substr(0, idx).strip_edges() - conn["buffer"] = conn["buffer"].substr(idx + 1) - - if line.is_empty(): - continue - - if conn["state"] == AUTH_PENDING: - _handle_auth(stream, conn, line) - else: - _handle_command(stream, line) - - # Cleanup disconnected clients - for stream in to_remove: - _cleanup_connection(stream) - -# --------------------------------------------------------------------------- -# Auth handling -# --------------------------------------------------------------------------- -func _handle_auth(stream: StreamPeerTCP, conn: Dictionary, line: String) -> void: - if line == password: - conn["state"] = AUTHENTICATED - _send_raw(stream, "auth_ok\r\n") - _send_end(stream) - else: - conn["fail_count"] += 1 - var remaining: int = MAX_AUTH_FAILS - conn["fail_count"] - _send_raw(stream, "auth_fail\r\n") - if remaining > 0: - _send_raw(stream, str(remaining) + " attempt(s) remaining.\r\n") - _send_end(stream) - - if conn["fail_count"] >= MAX_AUTH_FAILS: - # Ban IP temporarily - var ip: String = conn["ip"] - _banned_ips[ip] = Time.get_unix_time_from_system() + AUTH_PENALTY_SECONDS - stream.disconnect_from_host() - print("[RCON] Auth failed 3 times from " + ip + " — penalty for " + str(AUTH_PENALTY_SECONDS) + "s") - -# --------------------------------------------------------------------------- -# Command dispatch -# --------------------------------------------------------------------------- -func _handle_command(stream: StreamPeerTCP, line: String) -> void: - var parts: PackedStringArray = line.split(" ", false) - if parts.is_empty(): - return - - var cmd: String = parts[0].to_lower() - var args: PackedStringArray = parts.slice(1) - - # Route to command handler - if _command_handler and _command_handler.has_method("handle_command"): - var response: String = _command_handler.handle_command(cmd, args) - _send_raw(stream, response) - _send_end(stream) - else: - _send_raw(stream, "Command handler not available.\r\n") - _send_end(stream) - -# --------------------------------------------------------------------------- -# Response helpers -# --------------------------------------------------------------------------- -func _send_raw(stream: StreamPeerTCP, text: String) -> void: - var data: PackedByteArray = text.to_utf8_buffer() - stream.put_data(data) - -func _send_end(stream: StreamPeerTCP) -> void: - _send_raw(stream, RESP_END) - -# --------------------------------------------------------------------------- -# IP ban / penalty -# --------------------------------------------------------------------------- -func _is_ip_banned(ip: String) -> bool: - if not _banned_ips.has(ip): - return false - if Time.get_unix_time_from_system() >= _banned_ips[ip]: - _banned_ips.erase(ip) - return false - return true - -func _cleanup_connection(stream: StreamPeerTCP) -> void: - if _connections.has(stream): - _connections.erase(stream) - if stream.get_status() == StreamPeerTCP.STATUS_CONNECTED: - stream.disconnect_from_host() - -# --------------------------------------------------------------------------- -# Server lifecycle — called from setters, _ready(), and external code -# --------------------------------------------------------------------------- -func _start_listening() -> void: - if _tcp_server and _tcp_server.is_listening(): - return - - if not _tcp_server: - _tcp_server = TCPServer.new() - - var err: int = _tcp_server.listen(port) - if err != OK: - push_error("[RCON] Failed to listen on port " + str(port) + " (error " + str(err) + ")") - enabled = false - return - - print("[RCON] Listening on port " + str(port)) - -func _stop_listening() -> void: - if _tcp_server and _tcp_server.is_listening(): - _tcp_server.stop() - - # Disconnect all clients gracefully - for stream in _connections: - if stream.get_status() == StreamPeerTCP.STATUS_CONNECTED: - _send_raw(stream, "Server shutting down.\r\n") - _send_end(stream) - stream.disconnect_from_host() - _connections.clear() - - print("[RCON] Stopped") - -# --------------------------------------------------------------------------- -# Config file loading -# --------------------------------------------------------------------------- -func _load_password_from_file() -> void: - var pw_path: String = "res://server/data/rcon_password.cfg" - if not ResourceLoader.exists(pw_path): - return - - var file: FileAccess = FileAccess.open(pw_path, FileAccess.READ) - if not file: - return - - var line: String = file.get_line().strip_edges() - if not line.is_empty() and not line.begins_with("#"): - password = line - print("[RCON] Password loaded from " + pw_path) - file.close() - -# --------------------------------------------------------------------------- -# Config overrides from cvar registry (if available) -# --------------------------------------------------------------------------- -func _apply_cvar_overrides() -> void: - if not has_node("/root/CvarRegistry"): - return - - var registry = get_node("/root/CvarRegistry") - if registry and registry.has_method("get"): - var v = registry.get("rcon_enabled") - if v != null: - enabled = bool(v) - v = registry.get("rcon_port") - if v != null: - port = int(v) - v = registry.get("rcon_password") - if v != null: - password = str(v) - -# --------------------------------------------------------------------------- -# Setters — react to property changes -# --------------------------------------------------------------------------- -func set_enabled(val: bool) -> void: - enabled = val - if Engine.is_editor_hint(): - return - if enabled: - _start_listening() - else: - _stop_listening() - -func set_port(val: int) -> void: - port = clampi(val, 1024, 65535) - if enabled and _tcp_server and _tcp_server.is_listening(): - _stop_listening() - _start_listening() - -func set_password(val: String) -> void: - password = val diff --git a/server/scripts/rcon_server.gd.uid b/server/scripts/rcon_server.gd.uid deleted file mode 100644 index 927e8ff..0000000 --- a/server/scripts/rcon_server.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dien2h11upj8b diff --git a/server/scripts/round/round_manager.gd b/server/scripts/round/round_manager.gd deleted file mode 100644 index 4d4234a..0000000 --- a/server/scripts/round/round_manager.gd +++ /dev/null @@ -1,460 +0,0 @@ -## RoundManager — Match lifecycle singleton. -## -## Orchestrates warmup → live rounds → round end → next round. -## Owned by GameServer; wired to TeamManager + DamageProcessor. -## -## Architecture: -## GameServer -## ├── RoundManager (child) — round lifecycle, timers, phase tracking -## ├── SimulationServer (C++) — 128Hz tick loop -## ├── WeaponServer / LagCompensation / DamageProcessor -## └── (TeamManager / SpawnManager live outside but are referenced) -## -## Usage (inside GameServer._ready()): -## var rm = RoundManager.new() -## add_child(rm) -## rm.team_manager = team_manager_ref -## rm.damage_processor = damage_processor_ref -## -## Signals connect round events to economy, HUD, scoreboard, etc. - -extends Node -const _td_rm = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Round Phase enum -# --------------------------------------------------------------------------- -enum RoundPhase { - WARMUP = 0, # Pre-match free-move, no scoring, no economy - PREP = 1, # Freezetime / buy phase - LIVE = 2, # Round active - POST = 3, # Post-round scoreboard + transition -} - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted whenever the round phase transitions. -## phase: the new RoundPhase value (int for cross-script compatibility). -## round_num: the current round number. -signal round_phase_changed(phase: int, round_num: int) - -## Emitted when a PREP round begins. -signal round_started(round_num: int) - -## Emitted when a LIVE round ends. -## winning_team: the Team enum of the winning team. -## reason: string describing the reason (e.g. "elimination", "time_expired"). -signal round_ended(winning_team: int, reason: String) - -## Emitted when one team reaches match-win threshold. -## team: the Team enum of the team at match point. -signal match_point(team: int) - -## Emitted when warmup ends and the server is ready for competitive play. -signal warmup_ended() - -## Emitted to relay round end economy data to the economy system. -## winning_team: which team won the round. -## team_money: Dictionary mapping team enum → {win: int, loss: int} -signal round_economy_data(winning_team: int, team_money: Dictionary) - -# --------------------------------------------------------------------------- -# Constants — defaults -# --------------------------------------------------------------------------- - -## Default PREP (freeze-time + buy) duration in seconds. -const DEFAULT_PREP_DURATION: float = 15.0 - -## Default LIVE round duration in seconds. -const DEFAULT_LIVE_DURATION: float = 105.0 - -## Default POST (scoreboard) duration in seconds. -const DEFAULT_POST_DURATION: float = 8.0 - -## Default win money awarded to each player on the winning team. -const DEFAULT_WIN_MONEY: int = 3250 - -## Default base loss money. -const DEFAULT_LOSS_MONEY: int = 1900 - -## Default max loss money after consecutive losses. -const DEFAULT_LOSS_MONEY_MAX: int = 2900 - -## Default kill bonus awarded to the killer at round end. -const DEFAULT_KILL_BONUS: int = 300 - -## Default number of round wins required to win the match. -const DEFAULT_WIN_THRESHOLD: int = 16 - -# --------------------------------------------------------------------------- -# Dependencies (set by GameServer before use) -# --------------------------------------------------------------------------- - -## Reference to the TeamManager node/singleton. -var team_manager = null - -## Reference to the DamageProcessor node/singleton. -var damage_processor = null # DamageProcessor — untyped for headless compat - -# --------------------------------------------------------------------------- -# Configuration -# --------------------------------------------------------------------------- - -## Duration of the PREP (freeze-time + buy) phase in seconds. -var prep_duration: float = DEFAULT_PREP_DURATION - -## Duration of the LIVE round phase in seconds. -var live_duration: float = DEFAULT_LIVE_DURATION - -## Duration of the POST round (scoreboard) phase in seconds. -var post_duration: float = DEFAULT_POST_DURATION - -## Money awarded to each winning player at round end. -var win_money: int = DEFAULT_WIN_MONEY - -## Base money awarded to each losing player at round end. -var loss_money_base: int = DEFAULT_LOSS_MONEY - -## Maximum loss money after consecutive losses. -var loss_money_max: int = DEFAULT_LOSS_MONEY_MAX - -## Kill bonus per kill at round end. -var kill_bonus: int = DEFAULT_KILL_BONUS - -## Rounds needed to win the match (first to this many). -var win_threshold: int = DEFAULT_WIN_THRESHOLD - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Current round phase. -var _phase: RoundPhase = RoundPhase.WARMUP - -## Current round number (1-indexed, increments each round). -var _round_num: int = 0 - -## Timer tracking remaining seconds in the current phase. -var _phase_timer: float = 0.0 - -## Whether the match has started (exited warmup). -var _match_started: bool = false - -## Consecutive losses per team (team enum → int). -## Used for loss-money escalation. -var _consecutive_losses: Dictionary = {} # Team enum → int - -## Track kills per shooter per round (for round-end kill bonus). -## shooter_id (int) → kill_count (int) for the current round. -var _round_kills: Dictionary = {} - -## Track deaths per entity per round (for stats). -var _round_deaths: Dictionary = {} # entity_id (int) → death_count (int) - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - start_warmup() - -func _process(delta: float) -> void: - _advance_timer(delta) - -# --------------------------------------------------------------------------- -# Initialization -# --------------------------------------------------------------------------- - -## Start the server in WARMUP mode — players can move/shoot, -## no scoring, no economy. Called automatically on _ready(). -func start_warmup() -> void: - _phase = RoundPhase.WARMUP - _phase_timer = INF # Runs forever until admin starts match or enough players join - _round_num = 0 - _match_started = false - _round_kills.clear() - _round_deaths.clear() - _consecutive_losses = { - _td_rm.Team.COUNTER_TERRORIST: 0, - _td_rm.Team.TERRORIST: 0, - } - print("[RoundManager] Warmup started — infinite duration") - round_phase_changed.emit(RoundPhase.WARMUP, 0) - -# --------------------------------------------------------------------------- -# Match / Round Control -# --------------------------------------------------------------------------- - -## Begin a competitive match. Transitions from WARMUP to PREP for round 1. -## Called automatically when enough players join, or via RCON `start_match`. -func start_match() -> void: - if _phase != RoundPhase.WARMUP: - push_warning("[RoundManager] start_match called but not in WARMUP (phase=%d)" % _phase) - return - - print("[RoundManager] Match starting!") - warmup_ended.emit() - start_round(1) - -## Start a new round at the given round number. -## Transitions to PREP phase (freezetime + buy phase). -func start_round(round_num: int) -> void: - if not _match_started: - _match_started = true - - _round_num = round_num - _phase = RoundPhase.PREP - _phase_timer = prep_duration - - # Reset round-specific tracking - _round_kills.clear() - _round_deaths.clear() - - print("[RoundManager] Round %d started — PREP phase (% .1fs freezetime)" % [_round_num, _phase_timer]) - round_phase_changed.emit(RoundPhase.PREP, _round_num) - round_started.emit(_round_num) - -## Transition from PREP to LIVE. -## Called automatically when the PREP timer expires. -func start_live() -> void: - if _phase != RoundPhase.PREP: - push_warning("[RoundManager] start_live called but not in PREP (phase=%d)" % _phase) - return - - _phase = RoundPhase.LIVE - _phase_timer = live_duration - - print("[RoundManager] Round %d is LIVE — % .1fs remaining" % [_round_num, _phase_timer]) - round_phase_changed.emit(RoundPhase.LIVE, _round_num) - -## End the current round, awarding money and transitioning to POST. -## winning_team: int enum of the winner. -## reason: string describing the outcome (e.g. "elimination", "time_expired"). -func end_round(winning_team: int, reason: String) -> void: - if _phase != RoundPhase.LIVE: - push_warning("[RoundManager] end_round called but not in LIVE (phase=%d)" % _phase) - return - - _phase = RoundPhase.POST - _phase_timer = post_duration - - # --- Scoring --- - if team_manager: - team_manager.add_team_score(winning_team, 1) - - # --- Track consecutive losses --- - for team in [_td_rm.Team.COUNTER_TERRORIST, _td_rm.Team.TERRORIST]: - if team == winning_team: - _consecutive_losses[team] = 0 - else: - _consecutive_losses[team] = _consecutive_losses.get(team, 0) + 1 - - # --- Compute economy data --- - var team_money_data: Dictionary = {} - for team in [_td_rm.Team.COUNTER_TERRORIST, _td_rm.Team.TERRORIST]: - var is_winner: bool = (team == winning_team) - var money: int = 0 - if is_winner: - money = win_money - else: - var loss_streak: int = _consecutive_losses.get(team, 1) - money = min(loss_money_base + (loss_streak - 1) * 500, loss_money_max) - team_money_data[team] = { - "win": win_money if is_winner else 0, - "loss": money if not is_winner else 0, - "kill_bonus": kill_bonus, - "total": money, - } - - print("[RoundManager] Round %d ended — %s wins (%s)" % [_round_num, _td_rm.get_team_name(winning_team), reason]) - - # --- Match point / match win check --- - if team_manager: - var winner_score: int = team_manager.get_team_score(winning_team) - if winner_score >= win_threshold - 1: - # One more round wins the match - match_point.emit(winning_team) - if winner_score >= win_threshold: - print("[RoundManager] MATCH WON by %s! (Score: %d)" % [_td_rm.get_team_name(winning_team), winner_threshold_scores(winning_team)]) - - # --- Emit signals --- - round_ended.emit(winning_team, reason) - round_economy_data.emit(winning_team, team_money_data) - round_phase_changed.emit(RoundPhase.POST, _round_num) - -# --------------------------------------------------------------------------- -# Query -# --------------------------------------------------------------------------- - -## Get the current round phase as a RoundPhase enum value. -func get_phase() -> RoundPhase: - return _phase - -## Get the remaining time in seconds for the current phase. -## Returns INF for WARMUP, 0.0 if no active timer. -func get_round_time_remaining() -> float: - if _phase == RoundPhase.WARMUP: - return INF - return max(0.0, _phase_timer) - -## Get the current round number (1-indexed). -func get_round_num() -> int: - return _round_num - -## Check if the match has started (exited warmup). -func is_match_started() -> bool: - return _match_started - -## Get kill counts for the current round. -func get_round_kills() -> Dictionary: - return _round_kills.duplicate() - -## Get death counts for the current round. -func get_round_deaths() -> Dictionary: - return _round_deaths.duplicate() - -## Get consecutive losses for a team. -func get_consecutive_losses(team: int) -> int: - return _consecutive_losses.get(team, 0) - -# --------------------------------------------------------------------------- -# Internal — Timer / phase advancement -# --------------------------------------------------------------------------- - -func _advance_timer(delta: float) -> void: - match _phase: - RoundPhase.WARMUP: - # WARMUP runs indefinitely — no timer advancement - pass - - RoundPhase.PREP: - _phase_timer -= delta - if _phase_timer <= 0.0: - start_live() - - RoundPhase.LIVE: - _phase_timer -= delta - if _phase_timer <= 0.0: - # Time ran out — CT wins by default (bomb not planted / hostages not rescued) - # In CS-style, CT wins on time expire if bomb not planted. - # For now, the team with most alive players wins, else CT. - var time_expired_winner: int = _determine_time_expired_winner() - end_round(time_expired_winner, "time_expired") - - RoundPhase.POST: - _phase_timer -= delta - if _phase_timer <= 0.0: - # Auto-start next round - var next_round: int = _round_num + 1 - start_round(next_round) - -# --------------------------------------------------------------------------- -# Internal — Kill tracking -# --------------------------------------------------------------------------- - -## Called by GameServer when a kill occurs (connected to DamageProcessor.player_killed). -func on_player_killed(victim_id: int, shooter_id: int) -> void: - if _phase != RoundPhase.LIVE: - return - - # Track kills for round-end bonus - if shooter_id >= 0: - _round_kills[shooter_id] = _round_kills.get(shooter_id, 0) + 1 - - # Track deaths - _round_deaths[victim_id] = _round_deaths.get(victim_id, 0) + 1 - - # Check for team elimination - if team_manager and _is_team_eliminated_by_kill(shooter_id, victim_id): - var eliminated_team: int = _get_entity_team(victim_id) - if eliminated_team >= 0: - var winning_team: int = _get_entity_team(shooter_id) - if winning_team >= 0: - end_round(winning_team, "elimination") - -# --------------------------------------------------------------------------- -# Internal — Team elimination detection -# --------------------------------------------------------------------------- - -## Check if a kill has eliminated the victim's entire team. -func _is_team_eliminated_by_kill(_shooter_id: int, victim_id: int) -> bool: - if not team_manager or not damage_processor: - return false - - var victim_team: int = _get_entity_team(victim_id) - if victim_team < 0: - return false - - # Get all players on the victim's team - var team_entity_ids: Array[int] = _get_entity_ids_for_team(victim_team) - - # Check if all of them are dead (health <= 0 or not registered) - for eid in team_entity_ids: - var health: float = damage_processor.get_health(eid) - if health > 0.0: - return false # At least one teammate is alive - - return true - -## Get all entity IDs belonging to a given team. -func _get_entity_ids_for_team(team: int) -> Array[int]: - if not team_manager: - return [] - - var player_ids: Array[int] = team_manager.get_team_players(team) - var result: Array[int] = [] - - # We need a mapping from player_id → entity_id. - # This is stored in GameServer.entity_to_peer (inverted). - # For now, we check DamageProcessor directly if entities are tracked. - if damage_processor: - # We don't have a direct player→entity mapping here, so we iterate - # the damage processor's health dictionary and infer by entity_id - # naming convention or stored mapping. - # Since we don't have access to entity_to_peer here, we rely on - # the caller to check elimination via GameServer. - # For Phase 1, we return empty and elimination is checked externally. - pass - - return result - -## Determine the winner when time expires. -## Default: the team with alive players wins; if both alive, CT wins. -func _determine_time_expired_winner() -> int: - if not team_manager or not damage_processor: - return _td_rm.Team.COUNTER_TERRORIST - - var ct_alive: int = 0 - var t_alive: int = 0 - - # Count alive players per team - for team in [_td_rm.Team.COUNTER_TERRORIST, _td_rm.Team.TERRORIST]: - var player_ids: Array[int] = team_manager.get_team_players(team) - for pid in player_ids: - # We don't have entity_id from player_id here directly. - # Fallback: just check if team has any players alive - # This will be refined in future phases with proper entity mapping. - pass - - # Simple default: CT wins on time expiry - # (Conceptually, CT defends the site and time runs out = attackers failed) - return _td_rm.Team.COUNTER_TERRORIST - -## Resolve a player_id or entity_id to a team. -## For now, returns -1 if resolution fails. -func _get_entity_team(_entity_or_player_id: int) -> int: - # In Phase 1, this requires access to entity→peer→player→team mapping. - # GameServer.entity_to_peer maps entity_id → peer_id. - # We need peer_id → team from TeamManager. - # For now, return -1 and rely on GameServer-level elimination checks. - return -1 - -## Helper to format winner score description. -func winner_threshold_scores(winning_team: int) -> String: - if not team_manager: - return str(win_threshold) - var ct_score: int = team_manager.get_team_score(_td_rm.Team.COUNTER_TERRORIST) - var t_score: int = team_manager.get_team_score(_td_rm.Team.TERRORIST) - return "CT %d — %d T" % [ct_score, t_score] diff --git a/server/scripts/round/round_manager.gd.uid b/server/scripts/round/round_manager.gd.uid deleted file mode 100644 index 69fb0a3..0000000 --- a/server/scripts/round/round_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dukkopo6xcbn7 diff --git a/server/scripts/round_manager.gd b/server/scripts/round_manager.gd deleted file mode 100644 index 0a1933a..0000000 --- a/server/scripts/round_manager.gd +++ /dev/null @@ -1,694 +0,0 @@ -## RoundManager — Server-authoritative round state machine. -## -## Controls round lifecycle: INACTIVE → WAITING_FOR_PLAYERS → WARMUP → LIVE -## → POST_ROUND → (next round: WARMUP) or MATCH_END → INACTIVE. -## -## Win condition (elimination): -## The round ends when only one team has alive players. -## If the round timer expires, the team with more alive players wins. -## A draw occurs if both teams are eliminated simultaneously or have equal -## alive count at time limit. -## -## Match scoring: -## Best-of-N configured by ServerConfig.win_limit. -## First team to reach win_limit rounds wins the match. -## -## Respawn: -## Elimination mode: no mid-round respawns. All players respawn at round start. -## (Future: TDM/deathmatch modes may use respawn_time_seconds config.) -## -## Spectate: -## Dead players are moved to spectator mode. They can watch alive teammates -## via the spectate system. Spectating state is tracked per-player. -## -## Integration with PluginManager: -## RoundManager emits signals that PluginManager dispatches to all loaded -## plugins via their round hooks (on_round_start, on_round_end, etc.). -## -## ============================================================================= - -extends Node - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when the round state machine transitions to a new state. -## state: the new RoundState enum value. -signal round_state_changed(state: int) - -## Emitted at the start of each round. -## round_number: 1-based round number. -## warmup_time: warmup duration in seconds. -signal round_started(round_number: int) - -## Emitted when the round ends. -## winner_team: 0=draw, 1=TeamA, 2=TeamB. -## reason: string describing the end condition. -signal round_ended(winner_team: int, reason: String) - -## Emitted when a player dies. -## victim_id: peer id of the killed player. -## killer_id: peer id of the killer (may equal victim_id for suicide). -## weapon: weapon name string. -signal player_died(victim_id: int, killer_id: int, weapon: String) - -## Emitted when a player respawns at round start. -signal player_respawned(peer_id: int) - -## Emitted when a player enters spectator mode. -signal player_spectating(peer_id: int) - -## Emitted when a player exits spectator mode (respawned). -signal player_unspectated(peer_id: int) - -## Emitted when the match ends. -## winner_team: 0=draw, 1=TeamA, 2=TeamB. -signal match_ended(winner_team: int) - -## Emitted when team scores change. -signal score_changed(team_a_score: int, team_b_score: int) - -## Emitted when the spectate target for a player changes. -signal spectate_target_changed(viewer_id: int, target_id: int) - -# --------------------------------------------------------------------------- -# netfox Self-RPC methods — called via rpc() from server, execute on all peers -# --------------------------------------------------------------------------- - -## Replicate round state transition to all peers. -## Self-RPC pattern: server calls .rpc(), executes locally (call_local) and on clients. -@rpc("authority", "call_local", "reliable") -func _rpc_round_state(state: int) -> void: - round_state = state - round_state_changed.emit(state) - -## Replicate round start to all peers. -@rpc("authority", "call_local", "reliable") -func _rpc_round_started(round_num: int, time_seconds: int) -> void: - round_number = round_num - round_time_seconds = time_seconds - round_started.emit(round_num) - -## Replicate round end to all peers. Includes score snapshot for client UI. -@rpc("authority", "call_local", "reliable") -func _rpc_round_ended(winner_team: int, reason: String, a_score: int, b_score: int) -> void: - team_a_score = a_score - team_b_score = b_score - round_ended.emit(winner_team, reason) - -## Replicate match end to all peers. -@rpc("authority", "call_local", "reliable") -func _rpc_match_ended(winner_team: int, a_score: int, b_score: int) -> void: - team_a_score = a_score - team_b_score = b_score - match_ended.emit(winner_team) - -## Replicate score change to all peers. -@rpc("authority", "call_local", "reliable") -func _rpc_score_changed(a_score: int, b_score: int) -> void: - team_a_score = a_score - team_b_score = b_score - score_changed.emit(team_a_score, team_b_score) - -## Replicate player death to all peers. -@rpc("authority", "call_local", "reliable") -func _rpc_player_died(victim_id: int, killer_id: int, weapon: String) -> void: - player_died.emit(victim_id, killer_id, weapon) - -## Replicate player respawn to all peers. -@rpc("authority", "call_local", "reliable") -func _rpc_player_respawned(peer_id: int) -> void: - player_respawned.emit(peer_id) - -# --------------------------------------------------------------------------- -# Round state enum -# --------------------------------------------------------------------------- - -enum RoundState { - INACTIVE = 0, # Server starting up, no game running - WAITING_FOR_PLAYERS = 1, # Not enough players to start - WARMUP = 2, # Pre-round warmup period - LIVE = 3, # Round is active, players fighting - POST_ROUND = 4, # Brief result display period - MATCH_END = 5, # A team reached win_limit -} - -# --------------------------------------------------------------------------- -# Constants -# --------------------------------------------------------------------------- - -## Default post-round delay before next round starts (seconds). -const DEFAULT_POST_ROUND_DELAY: float = 5.0 - -## Minimum players per team required to start a round. -const MIN_PLAYERS_PER_TEAM: int = 1 - -## Minimum round number before match-end check activates. -const MIN_ROUNDS_FOR_MATCH_END: int = 1 - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -var round_state: int = RoundState.INACTIVE - -## Current round number (1-based, increments each round). -var round_number: int = 0 - -## Team A score (rounds won). -var team_a_score: int = 0 -## Team B score (rounds won). -var team_b_score: int = 0 - -## Dictionary of peer_id → player state dictionary. -## Each entry: { "team": int (0=A, 1=B), "alive": bool, "spectating": bool, -## "spectate_target": int (peer_id or 0), "spawn_pos": Vector3 } -var players: Dictionary = {} - -## Sequence of spawn positions for team A (cycled round-robin). -var spawn_points_a: Array[Vector3] = [] -## Sequence of spawn positions for team B (cycled round-robin). -var spawn_points_b: Array[Vector3] = [] - -## Internal timers -var _warmup_timer: float = 0.0 -var _round_timer: float = 0.0 -var _post_round_timer: float = 0.0 -var _elapsed_seconds: float = 0.0 - -## Config values cached from ServerConfig at init. -var round_time_seconds: int = 600 -var _warmup_time_seconds: int = 60 -var _win_limit: int = 3 -var _respawn_time_seconds: float = 5.0 -var _spectate_enabled: bool = true - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - _cache_config() - print("[RoundManager] Initialised. Win limit: %d, Round time: %ds, Warmup: %ds" % [ - _win_limit, round_time_seconds, _warmup_time_seconds - ]) - -func _exit_tree() -> void: - stop() - -## Cache config values from ServerConfig (if available). -func _cache_config() -> void: - if ServerConfig and ServerConfig.has_method(&"get_config_path"): - round_time_seconds = ServerConfig.round_time_seconds - _warmup_time_seconds = ServerConfig.warmup_time_seconds - _win_limit = ServerConfig.win_limit - _respawn_time_seconds = ServerConfig.respawn_time_seconds - _spectate_enabled = ServerConfig.spectate_enabled - else: - push_warning("[RoundManager] ServerConfig not available — using defaults") - -## Start the round manager. Must be called after spawn points are set. -func start() -> void: - _reset_all_state() - _set_state(RoundState.WAITING_FOR_PLAYERS) - print("[RoundManager] Started — waiting for players") - -## Stop the round manager and reset all state. -func stop() -> void: - _set_state(RoundState.INACTIVE) - _reset_all_state() - print("[RoundManager] Stopped") - -# --------------------------------------------------------------------------- -# Player management -# --------------------------------------------------------------------------- - -## Register a player with the round manager. -## team: 0 = Team A, 1 = Team B. -func register_player(peer_id: int, team: int) -> void: - if peer_id in players: - push_warning("[RoundManager] Player %d already registered, updating team" % peer_id) - - var spawn_pos: Vector3 = _get_spawn_position(peer_id, team) - players[peer_id] = { - "team": team, - "alive": true, - "spectating": false, - "spectate_target": 0, - "spawn_pos": spawn_pos, - } - print("[RoundManager] Registered player %d on team %s at (%.1f, %.1f)" % [ - peer_id, "A" if team == 0 else "B", spawn_pos.x, spawn_pos.z - ]) - - _check_start_condition() - -## Unregister a player (on disconnect). -func unregister_player(peer_id: int) -> void: - if peer_id in players: - var was_alive: bool = players[peer_id]["alive"] - players.erase(peer_id) - print("[RoundManager] Unregistered player %d" % peer_id) - - # If the round is LIVE and a team just lost all members, check win - if round_state == RoundState.LIVE and was_alive: - if _check_elimination(): - return # round ended, no further action - else: - push_warning("[RoundManager] Cannot unregister unknown player %d" % peer_id) - -## Set spawn points from the map. -func set_spawn_points(spawns_a: Array[Vector3], spawns_b: Array[Vector3]) -> void: - spawn_points_a = spawns_a.duplicate() - spawn_points_b = spawns_b.duplicate() - print("[RoundManager] Spawn points set: Team A=%d, Team B=%d" % [spawn_points_a.size(), spawn_points_b.size()]) - -## Get the spawn position for a player on a given team. -func _get_spawn_position(peer_id: int, team: int) -> Vector3: - var pool: Array[Vector3] = spawn_points_a if team == 0 else spawn_points_b - if pool.size() == 0: - return Vector3.ZERO - # Round-robin assignment based on peer_id for distribution - var idx: int = peer_id % pool.size() - var pos: Vector3 = pool[idx] - pos.y = 0.0 - return pos - -## Return the number of alive players on a given team. -func get_alive_count(team: int) -> int: - var count: int = 0 - for p in players.values(): - if p["team"] == team and p["alive"]: - count += 1 - return count - -## Return the total number of players registered. -func get_player_count() -> int: - return players.size() - -## Return the number of players on a given team. -func get_team_player_count(team: int) -> int: - var count: int = 0 - for p in players.values(): - if p["team"] == team: - count += 1 - return count - -## Return the team of a player (0=A, 1=B), or -1 if not registered. -func get_player_team(peer_id: int) -> int: - if peer_id in players: - return players[peer_id]["team"] - return -1 - -## Return whether a player is alive. -func is_player_alive(peer_id: int) -> bool: - if peer_id in players: - return players[peer_id]["alive"] - return false - -## Return whether a player is spectating. -func is_player_spectating(peer_id: int) -> bool: - if peer_id in players: - return players[peer_id]["spectating"] - return false - -## Return a list of alive peer IDs on a given team. -func get_alive_players_on_team(team: int) -> Array[int]: - var result: Array[int] = [] - for pid in players: - if players[pid]["team"] == team and players[pid]["alive"]: - result.append(pid) - return result - -## Return the spectate target for a player. -func get_spectate_target(peer_id: int) -> int: - if peer_id in players: - return players[peer_id]["spectate_target"] - return 0 - -# --------------------------------------------------------------------------- -# Death / Elimination -# --------------------------------------------------------------------------- - -## Called when a player dies. -## This is the main elimination detection entry point. -## Returns true if the round ended as a result. -func on_player_death(victim_id: int, killer_id: int, weapon: String) -> bool: - if not victim_id in players: - push_warning("[RoundManager] Death event for unknown player %d" % victim_id) - return false - - var victim_team: int = players[victim_id]["team"] - players[victim_id]["alive"] = false - - print("[RoundManager] Player %d (team %s) killed by %s with '%s'" % [ - victim_id, "A" if victim_team == 0 else "B", - "world" if killer_id == 0 else str(killer_id), - weapon - ]) - - # Self-RPC death notification (call_local ensures server signal too) - _rpc_player_died.rpc(victim_id, killer_id, weapon) - - # If spectate enabled, put the player in spectator mode - if _spectate_enabled: - _start_spectating(victim_id) - - # Check elimination — only when round is LIVE - if round_state == RoundState.LIVE: - return _check_elimination() - - return false - -## Check if a team has been eliminated. Ends the round if so. -## Returns true if the round ended. -func _check_elimination() -> bool: - var alive_a: int = get_alive_count(0) - var alive_b: int = get_alive_count(1) - - # Both teams alive — no win yet - if alive_a > 0 and alive_b > 0: - return false - - # Eliminate the possibility of "nobody alive" edge case - if alive_a == 0 and alive_b == 0: - _end_round(0, "all_dead_draw") - return true - - # One team is eliminated - if alive_a == 0 and alive_b > 0: - _end_round(2, "elimination") # Team B wins - return true - - if alive_b == 0 and alive_a > 0: - _end_round(1, "elimination") # Team A wins - return true - - return false - -# --------------------------------------------------------------------------- -# Spectate system -# --------------------------------------------------------------------------- - -## Start spectating for a dead player. Finds the best alive teammate to watch. -func _start_spectating(viewer_id: int) -> void: - if not _spectate_enabled: - return - if not viewer_id in players: - return - - var viewer_team: int = players[viewer_id]["team"] - var alive_teammates: Array[int] = get_alive_players_on_team(viewer_team) - - players[viewer_id]["spectating"] = true - - if alive_teammates.size() > 0: - # Target the first alive teammate (simple cycling later via RCON/UI) - var target_id: int = alive_teammates[0] - players[viewer_id]["spectate_target"] = target_id - spectate_target_changed.emit(viewer_id, target_id) - print("[RoundManager] Player %d now spectating %d" % [viewer_id, target_id]) - else: - # No alive teammates — spectate the map / overview - players[viewer_id]["spectate_target"] = 0 - spectate_target_changed.emit(viewer_id, 0) - print("[RoundManager] Player %d spectating (no alive teammates)" % viewer_id) - - player_spectating.emit(viewer_id) - -## Cycle to the next spectate target for a player. -func cycle_spectate_target(viewer_id: int) -> void: - if not viewer_id in players or not players[viewer_id]["spectating"]: - return - - var viewer_team: int = players[viewer_id]["team"] - var alive_teammates: Array[int] = get_alive_players_on_team(viewer_team) - - if alive_teammates.size() == 0: - players[viewer_id]["spectate_target"] = 0 - spectate_target_changed.emit(viewer_id, 0) - return - - # Find current target index and advance - var current_target: int = players[viewer_id]["spectate_target"] - var idx: int = alive_teammates.find(current_target) - var next_idx: int = (idx + 1) % alive_teammates.size() if idx >= 0 else 0 - var new_target: int = alive_teammates[next_idx] - - players[viewer_id]["spectate_target"] = new_target - spectate_target_changed.emit(viewer_id, new_target) - print("[RoundManager] Player %d now spectating %d (cycled)" % [viewer_id, new_target]) - -## Stop spectating for a player (on respawn). -func _stop_spectating(peer_id: int) -> void: - if peer_id in players: - players[peer_id]["spectating"] = false - players[peer_id]["spectate_target"] = 0 - player_unspectated.emit(peer_id) - -# --------------------------------------------------------------------------- -# Respawn system -# --------------------------------------------------------------------------- - -## Respawn all dead players on both teams at round start. -## Sets their position to their assigned spawn point and marks them alive. -func respawn_all_players() -> void: - for pid in players: - var state = players[pid] - state["alive"] = true - state["spawn_pos"] = _get_spawn_position(pid, state["team"]) - - if state["spectating"]: - _stop_spectating(pid) - - _rpc_player_respawned.rpc(pid) - - print("[RoundManager] Respawned all %d players for round %d" % [players.size(), round_number]) - -## Get the spawn position for a player (for the current round). -func get_player_spawn(peer_id: int) -> Vector3: - if peer_id in players: - return players[peer_id]["spawn_pos"] - return Vector3.ZERO - -# --------------------------------------------------------------------------- -# Round lifecycle -# --------------------------------------------------------------------------- - -## Check if we have enough players to start. Transitions from WAITING to WARMUP. -func _check_start_condition() -> void: - if round_state != RoundState.WAITING_FOR_PLAYERS: - return - - var team_a_count: int = get_team_player_count(0) - var team_b_count: int = get_team_player_count(1) - - if team_a_count >= MIN_PLAYERS_PER_TEAM and team_b_count >= MIN_PLAYERS_PER_TEAM: - _begin_warmup() - else: - print("[RoundManager] Waiting for players: A=%d, B=%d (need %d each)" % [ - team_a_count, team_b_count, MIN_PLAYERS_PER_TEAM - ]) - -## Begin the warmup phase. -func _begin_warmup() -> void: - round_number += 1 - _warmup_timer = float(_warmup_time_seconds) - _set_state(RoundState.WARMUP) - print("[RoundManager] Warmup started — round %d will begin in %ds" % [round_number, _warmup_time_seconds]) - -## Begin the live round. -func _begin_round() -> void: - # Respawn all players - respawn_all_players() - - _round_timer = float(round_time_seconds) - _elapsed_seconds = 0.0 - _set_state(RoundState.LIVE) - - _rpc_round_started.rpc(round_number, round_time_seconds) - print("[RoundManager] Round %d started! %ds time limit" % [round_number, round_time_seconds]) - -## End the current round with the given winner and reason. -func _end_round(winner_team: int, reason: String) -> void: - _set_state(RoundState.POST_ROUND) - - # Update score - if winner_team == 1: - team_a_score += 1 - elif winner_team == 2: - team_b_score += 1 - - _post_round_timer = DEFAULT_POST_ROUND_DELAY - - _rpc_round_ended.rpc(winner_team, reason, team_a_score, team_b_score) - _rpc_score_changed.rpc(team_a_score, team_b_score) - - var winner_name: String = "Draw" - if winner_team == 1: winner_name = "Team A" - elif winner_team == 2: winner_name = "Team B" - - print("[RoundManager] Round %d ended: %s wins (%s). Score: A=%d, B=%d" % [ - round_number, winner_name, reason, team_a_score, team_b_score - ]) - - # Check match end - if _check_match_end(): - return - - # Schedule next round via post-round timer (handled in _process) - # Actually we handle this in the state machine below — no need for separate logic - -## Check if a team has reached the win limit. Ends the match if so. -## Returns true if match ended. -func _check_match_end() -> bool: - if _win_limit <= 0: - return false # No win limit = infinite play - - if team_a_score >= _win_limit: - _end_match(1) - return true - elif team_b_score >= _win_limit: - _end_match(2) - return true - - return false - -## End the match with the given winning team. -func _end_match(winner_team: int) -> void: - _set_state(RoundState.MATCH_END) - _rpc_match_ended.rpc(winner_team, team_a_score, team_b_score) - - var winner: String = "Team A" if winner_team == 1 else "Team B" - print("[RoundManager] MATCH OVER! %s wins %d-%d" % [winner, team_a_score, team_b_score]) - -## Reset all per-match state (keeps the round manager alive for a new match). -func reset_for_new_match() -> void: - _reset_all_state() - _set_state(RoundState.WAITING_FOR_PLAYERS) - print("[RoundManager] Reset for new match") - -# --------------------------------------------------------------------------- -# Per-frame tick -# --------------------------------------------------------------------------- - -func _process(delta: float) -> void: - match round_state: - RoundState.WARMUP: - _warmup_timer -= delta - if _warmup_timer <= 0.0: - _warmup_timer = 0.0 - _begin_round() - - RoundState.LIVE: - _elapsed_seconds += delta - _round_timer -= delta - - # Time limit reached — end round - if _round_timer <= 0.0 and round_time_seconds > 0: - _round_timer = 0.0 - _handle_round_time_expiry() - - RoundState.POST_ROUND: - _post_round_timer -= delta - if _post_round_timer <= 0.0: - _post_round_timer = 0.0 - # Check if match ended (already checked in _end_round, but safeguard) - if _check_match_end(): - return - # Start next round - _begin_warmup() - -## Handle round time expiry — determine winner based on alive count. -func _handle_round_time_expiry() -> void: - var alive_a: int = get_alive_count(0) - var alive_b: int = get_alive_count(1) - - if alive_a > alive_b: - _end_round(1, "time_limit") - elif alive_b > alive_a: - _end_round(2, "time_limit") - else: - # Equal alive count or both zero — stalemate - _end_round(0, "time_limit_draw") - -# --------------------------------------------------------------------------- -# State management -# --------------------------------------------------------------------------- - -## Set the round state and emit the change signal. -func _set_state(new_state: int) -> void: - if round_state != new_state: - _rpc_round_state.rpc(new_state) - -## Reset all per-round state (scores, timers, player states). -func _reset_all_state() -> void: - round_number = 0 - team_a_score = 0 - team_b_score = 0 - _warmup_timer = 0.0 - _round_timer = 0.0 - _post_round_timer = 0.0 - _elapsed_seconds = 0.0 - - # Reset player states (but keep registrations) - for pid in players: - var state = players[pid] - state["alive"] = false - state["spectating"] = false - state["spectate_target"] = 0 - -# --------------------------------------------------------------------------- -# Public query API -# --------------------------------------------------------------------------- - -## Get the current round time remaining in seconds (0 if not LIVE). -func get_time_remaining() -> float: - if round_state == RoundState.LIVE: - return max(_round_timer, 0.0) - return 0.0 - -## Get the elapsed round time in seconds. -func get_elapsed_time() -> float: - return _elapsed_seconds - -## Get the formatted score string. -func get_score_string() -> String: - return "%d - %d" % [team_a_score, team_b_score] - -## Return a dictionary of current round state for network broadcast / RCON status. -func get_round_state_snapshot() -> Dictionary: - var state_name: String - match round_state: - RoundState.INACTIVE: state_name = "inactive" - RoundState.WAITING_FOR_PLAYERS: state_name = "waiting" - RoundState.WARMUP: state_name = "warmup" - RoundState.LIVE: state_name = "live" - RoundState.POST_ROUND: state_name = "post_round" - RoundState.MATCH_END: state_name = "match_end" - _: state_name = "unknown" - - return { - "state": state_name, - "round_number": round_number, - "team_a_score": team_a_score, - "team_b_score": team_b_score, - "win_limit": _win_limit, - "time_remaining": get_time_remaining(), - "elapsed": _elapsed_seconds, - "alive_a": get_alive_count(0), - "alive_b": get_alive_count(1), - "total_players": get_player_count(), - } - -## Return the current state as a human-readable string. -func get_state_name() -> String: - match round_state: - RoundState.INACTIVE: return "inactive" - RoundState.WAITING_FOR_PLAYERS: return "waiting_for_players" - RoundState.WARMUP: return "warmup" - RoundState.LIVE: return "live" - RoundState.POST_ROUND: return "post_round" - RoundState.MATCH_END: return "match_end" - _: return "unknown" diff --git a/server/scripts/round_manager.gd.uid b/server/scripts/round_manager.gd.uid deleted file mode 100644 index 9b48a99..0000000 --- a/server/scripts/round_manager.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cjs167lb51k1q diff --git a/server/scripts/server_browser.gd b/server/scripts/server_browser.gd deleted file mode 100644 index d9e8ed1..0000000 --- a/server/scripts/server_browser.gd +++ /dev/null @@ -1,213 +0,0 @@ -extends Node - -# ============================================================================= -# Server Browser — Heartbeat Sender -# ============================================================================= -# Periodically POSTs server state to the configured master server so the -# server appears in the public server browser. -# -# Relies on cvars defined by the config system: -# sv_master_server — Master server URL (e.g. "http://master.example.com:28961") -# sv_server_id — Unique server identifier (auto-generated if empty) -# sv_heartbeat_interval — Seconds between heartbeats (default 60, range [10,300]) -# sv_server_tags — Comma-separated tags for filtering -# sv_server_password — Whether the server requires a password -# -# Signals: -# heartbeat_sent(success: bool, server_id: String, http_code: int) -# master_connection_failed(error_message: String) -# ============================================================================= - -signal heartbeat_sent(success: bool, server_id: String, http_code: int) -signal master_connection_failed(error_message: String) - -const DEFAULT_HEARTBEAT_INTERVAL: float = 60.0 -const MIN_INTERVAL: float = 10.0 -const MAX_INTERVAL: float = 300.0 -const DEFAULT_MASTER_SERVER: String = "http://127.0.0.1:28961" - -# HTTP request node for async requests -var _http: HTTPRequest -var _timer: Timer -var _server_id: String = "" -var _enabled: bool = false - - -func _ready() -> void: - # Create HTTP request node - _http = HTTPRequest.new() - _http.name = "MasterServerHTTP" - _http.timeout = 10 - _http.use_threads = true - add_child(_http) - _http.request_completed.connect(_on_heartbeat_completed) - - # Create timer for periodic heartbeats - _timer = Timer.new() - _timer.name = "HeartbeatTimer" - _timer.one_shot = false - add_child(_timer) - _timer.timeout.connect(_send_heartbeat) - - -func start() -> void: - """Begin the heartbeat loop. Call after cvars are loaded and server is ready.""" - var master_url = _get_cvar_string("sv_master_server", "") - if master_url.is_empty(): - push_warning("[ServerBrowser] sv_master_server is empty — heartbeat disabled") - return - - # Strip trailing slash - master_url = master_url.trim_suffix("/") - if not master_url.begins_with("http"): - master_url = "http://" + master_url - - if not master_url.begins_with("http://") and not master_url.begins_with("https://"): - push_warning("[ServerBrowser] Invalid master server URL: ", master_url) - return - - _server_id = _get_cvar_string("sv_server_id", "") - _enabled = true - - var interval = _get_cvar_float("sv_heartbeat_interval", DEFAULT_HEARTBEAT_INTERVAL) - interval = clamp(interval, MIN_INTERVAL, MAX_INTERVAL) - - _timer.wait_time = interval - _timer.start() - - print("[ServerBrowser] Heartbeat enabled — master: ", master_url, " interval: ", interval, "s") - - # Send initial heartbeat immediately - _send_heartbeat() - - -func stop() -> void: - """Stop sending heartbeats.""" - _enabled = false - _timer.stop() - print("[ServerBrowser] Heartbeat disabled") - - -func set_server_id(new_id: String) -> void: - """Update the server id (e.g., after first heartbeat response).""" - _server_id = new_id - - -func _get_master_url() -> String: - var raw = _get_cvar_string("sv_master_server", DEFAULT_MASTER_SERVER).trim_suffix("/") - if raw.is_empty(): - return "" - if not raw.begins_with("http"): - raw = "http://" + raw - return raw - - -func _send_heartbeat() -> void: - if not _enabled: - return - - var master_url = _get_master_url() - if master_url.is_empty(): - return - - # Build heartbeat payload - var payload = { - "server_id": _server_id, - "name": _get_cvar_string("sv_server_name", "Tactical Shooter Server"), - "map": _get_cvar_string("sv_map", "unknown"), - "players": _get_player_count(), - "max_players": _get_cvar_int("sv_max_players", 16), - "game_mode": _get_cvar_string("sv_game_mode", "deathmatch"), - "version": _get_cvar_string("sv_version", "1.0.0"), - "tags": _get_cvar_string("sv_server_tags", ""), - "password": _get_cvar_int("sv_server_password", 0) != 0, - "host": _get_external_ip(), - "port": _get_cvar_int("sv_port", 0), - "steam_id": _get_cvar_string("sv_steam_id", ""), - } - - var json_string = JSON.stringify(payload) - var headers = ["Content-Type: application/json"] - - var endpoint = master_url + "/api/v1/heartbeat" - var err = _http.request(endpoint, headers, HTTPClient.METHOD_POST, json_string) - if err != OK: - push_error("[ServerBrowser] Failed to send heartbeat: HTTP request error ", err) - master_connection_failed.emit("HTTP request failed (code " + str(err) + ")") - - -func _on_heartbeat_completed(result: int, response_code: int, _headers: PackedStringArray, body: PackedByteArray) -> void: - if result != HTTPRequest.RESULT_SUCCESS: - var msg = "Heartbeat failed — network error " + str(result) - push_warning("[ServerBrowser] ", msg) - master_connection_failed.emit(msg) - heartbeat_sent.emit(false, _server_id, response_code) - return - - if response_code != 200: - var msg = "Heartbeat failed — HTTP " + str(response_code) - push_warning("[ServerBrowser] ", msg) - master_connection_failed.emit(msg) - heartbeat_sent.emit(false, _server_id, response_code) - return - - # Parse response for server_id (first heartbeat may get one assigned) - var body_text = body.get_string_from_utf8() - var json = JSON.new() - var parse_err = json.parse(body_text) - if parse_err == OK and json.data is Dictionary: - if json.data.has("server_id") and not json.data["server_id"].is_empty(): - _server_id = json.data["server_id"] - - heartbeat_sent.emit(true, _server_id, response_code) - - -# ------------------------------------------------------------------------- -# Helper: read cvars from the config system (if available) -# ------------------------------------------------------------------------- - -func _get_cvar_string(name: String, default_value: String) -> String: - """Try the CvarRegistry autoload first, fall back to ProjectSettings.""" - if Engine.has_singleton("CvarRegistry"): - var reg = Engine.get_singleton("CvarRegistry") - if reg.has_method("get_string"): - return reg.get_string(name, default_value) - # Fallback to ProjectSettings if no cvar registry exists - if ProjectSettings.has_setting(name): - return ProjectSettings.get_setting(name) - return default_value - - -func _get_cvar_int(name: String, default_value: int) -> int: - if Engine.has_singleton("CvarRegistry"): - var reg = Engine.get_singleton("CvarRegistry") - if reg.has_method("get_int"): - return reg.get_int(name, default_value) - if ProjectSettings.has_setting(name): - return ProjectSettings.get_setting(name) - return default_value - - -func _get_cvar_float(name: String, default_value: float) -> float: - if Engine.has_singleton("CvarRegistry"): - var reg = Engine.get_singleton("CvarRegistry") - if reg.has_method("get_float"): - return reg.get_float(name, default_value) - if ProjectSettings.has_setting(name): - return ProjectSettings.get_setting(name) - return default_value - - -func _get_player_count() -> int: - """Get current connected player count.""" - # Try to read from game's player manager singleton - if Engine.has_singleton("PlayerManager"): - var pm = Engine.get_singleton("PlayerManager") - if pm.has_method("get_player_count"): - return pm.get_player_count() - return 0 - - -func _get_external_ip() -> String: - """Return our public/external IP if known, or empty for auto-detect.""" - return _get_cvar_string("sv_external_ip", "") diff --git a/server/scripts/server_browser.gd.uid b/server/scripts/server_browser.gd.uid deleted file mode 100644 index 3c8e6b4..0000000 --- a/server/scripts/server_browser.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://pisglwxvlp6c diff --git a/server/scripts/simulation_server_stub.gd b/server/scripts/simulation_server_stub.gd deleted file mode 100644 index 337aea2..0000000 --- a/server/scripts/simulation_server_stub.gd +++ /dev/null @@ -1,123 +0,0 @@ -## SimulationServerStub — lightweight GDScript replacement for GDExtension C++ core. -## -## Provides the same API surface so game_server.gd and FPSCharacterController -## work without the compiled GDExtension library. No 128Hz simulation — just -## stores entity state and passes through input. Replace with the C++ -## SimulationServer once `scons` builds cleanly. -extends RefCounted - -# --------------------------------------------------------------------------- -# Nested: StubEntity state data -# --------------------------------------------------------------------------- -class StubEntity: - var id: int = -1 - var peer_id: int = -1 - var position: Vector3 = Vector3.ZERO - var rotation: Vector3 = Vector3.ZERO - var velocity: Vector3 = Vector3.ZERO - var alive: bool = true - var health: float = 100.0 - var input_sequence: int = 0 - - func is_alive() -> bool: - return alive - -# --------------------------------------------------------------------------- -# Config -# --------------------------------------------------------------------------- -var _tick_rate: int = 128 -var _movement_config: Dictionary = {} -var _weapon_config: Dictionary = {} -var _history_depth: int = 64 -var _next_entity_id: int = 1 -var _entities: Dictionary = {} # entity_id → StubEntity -var _running: bool = false -var _last_hit_result: Dictionary = {} - -# --------------------------------------------------------------------------- -# SimulationServer API -# --------------------------------------------------------------------------- -func set_tick_rate(hz: int) -> void: - _tick_rate = hz - -func get_tick_rate() -> int: - return _tick_rate - -func set_movement_config(cfg: Dictionary) -> void: - _movement_config = cfg - -func set_weapon_config(cfg: Dictionary) -> void: - _weapon_config = cfg - -func set_history_depth(depth: int) -> void: - _history_depth = depth - -func start() -> void: - _running = true - -func stop() -> void: - _running = false - -func can_tick(delta: float) -> bool: - return _running - -func tick() -> PackedByteArray: - # Stub: returns empty snapshot - return PackedByteArray() - -func get_stats() -> Dictionary: - return { - "tick_count": 0, - "entity_count": _entities.size(), - } - -func get_last_hit_result() -> Dictionary: - return _last_hit_result - -func apply_input(entity_id: int, input_dict: Dictionary) -> void: - var e: StubEntity = _entities.get(entity_id) - if e == null: - return - # Apply movement from input (simplified) - if input_dict.has("move_direction"): - var dir: Vector3 = input_dict["move_direction"] - var speed: float = 5.0 - if input_dict.get("sprint", false): - speed = 8.0 - elif input_dict.get("crouch", false): - speed = 2.5 - e.velocity = dir * speed - e.position += e.velocity * (1.0 / _tick_rate) - # Track input sequence - if input_dict.has("input_sequence"): - e.input_sequence = input_dict["input_sequence"] - -func fire_weapon(entity_id: int) -> void: - # Stub: log the event - pass - -func get_entity(entity_id: int) -> StubEntity: - return _entities.get(entity_id) - -func spawn_entity(pos: Vector3) -> int: - var e = StubEntity.new() - e.id = _next_entity_id - e.position = pos - e.alive = true - e.health = 100.0 - _entities[_next_entity_id] = e - _next_entity_id += 1 - return e.id - -func spawn_player_entity(peer_id: int, pos: Vector3) -> int: - var entity_id = spawn_entity(pos) - var e: StubEntity = _entities.get(entity_id) - if e: - e.peer_id = peer_id - return entity_id - -func despawn_entity(entity_id: int) -> void: - _entities.erase(entity_id) - -func get_entity_count() -> int: - return _entities.size() diff --git a/server/scripts/simulation_server_stub.gd.uid b/server/scripts/simulation_server_stub.gd.uid deleted file mode 100644 index be21be9..0000000 --- a/server/scripts/simulation_server_stub.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://b1lw5s1djwsqk diff --git a/server/scripts/weapons/weapon_server.gd b/server/scripts/weapons/weapon_server.gd deleted file mode 100644 index ff73e65..0000000 --- a/server/scripts/weapons/weapon_server.gd +++ /dev/null @@ -1,389 +0,0 @@ -## WeaponServer — Server-authoritative weapon logic. -## -## Manages per-player, per-weapon runtime state: fire rate cooldowns, -## magazine + reserve ammo, reload state machine, and hit-scan raycasting. -## -## This is the authoritative version; clients predict locally via -## WeaponManager and reconcile with server confirmations. -## -## Usage (add as child of GameServer or any server-side node): -## -## var ws = WeaponServer.new() -## add_child(ws) -## ws.initialise() -## ... -## if ws.can_fire(player_id, weapon_id): -## var result = ws.fire(player_id, weapon_id, origin, direction) -## if result.hit: -## apply_damage(result) -## -class_name WeaponServer -extends Node - -# Preload dependencies for headless compat -const _wd = preload("res://scripts/combat/weapon_definitions.gd") - -# --------------------------------------------------------------------------- -# State shape -# --------------------------------------------------------------------------- -# _state[player_id][weapon_id] = { -# ammo: int, # rounds left in magazine -# reserve: int, # rounds in reserve (total reserve) -# is_reloading: bool, # currently in reload animation -# reload_remaining: float, # seconds left on current reload -# last_fire_time: float, # time of last shot (cooldown check) -# } - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Per-player, per-weapon runtime state. -## Accessed via _get_state() / _ensure_state() helpers. -var _state: Dictionary = {} - -## Reference to the SceneTree's physics world for raycasting. -## Set automatically if the node enters the tree; can also be injected. -var physics_world: World3D = null - -## Optional LagCompensation controller for server-side rewinding. -## When set, _perform_hitscan uses lag-compensated raycasting; -## otherwise it uses the current-frame physics world directly. -var lag_compensation = null - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - if physics_world == null: - # Use the SceneTree's root world (Node3D.get_world_3d() isn't available on Node) - physics_world = get_tree().root.world_3d if get_tree() and get_tree().root else null - -## Public initialiser (call after adding to tree, or inject a World3D). -func initialise(world: World3D = null) -> void: - if world != null: - physics_world = world - elif physics_world == null: - physics_world = get_tree().root.world_3d if get_tree() and get_tree().root else null - -# --------------------------------------------------------------------------- -# Per-player state management -# --------------------------------------------------------------------------- - -## Ensure a player has an entry in the state dictionary. -## Called automatically by can_fire / fire. -func register_player(player_id: int) -> void: - if not _state.has(player_id): - _state[player_id] = {} - -## Remove a player's state (on disconnect / respawn). -func unregister_player(player_id: int) -> void: - _state.erase(player_id) - -## Give a player a weapon — allocates initial ammo for it. -## Also calls register_player implicitly. -func give_weapon(player_id: int, weapon_id: String) -> void: - register_player(player_id) - var data = _wd.get_weapon(weapon_id) - if data == null: - push_warning("WeaponServer: unknown weapon '%s'" % weapon_id) - return - var ws: Dictionary = _state[player_id] - ws[weapon_id] = { - ammo = data.mag_size, - reserve = data.mag_size * 3, # 3 spare magazines - is_reloading = false, - reload_remaining = 0.0, - last_fire_time = -INF, - } - -## Return the per-weapon state dictionary for a player+weapon, or null. -func get_weapon_state(player_id: int, weapon_id: String) -> Dictionary: - var ps: Dictionary = _state.get(player_id, {}) - return ps.get(weapon_id, {}) as Dictionary - -## Return the current ammo and reserve for a player's weapon. -## Returns {ammo: int, reserve: int, max_ammo: int} or null. -func get_ammo_info(player_id: int, weapon_id: String) -> Dictionary: - var st := get_weapon_state(player_id, weapon_id) - if st.is_empty(): - return {} - var data = _wd.get_weapon(weapon_id) - return { - ammo = st.get("ammo", 0), - reserve = st.get("reserve", 0), - max_ammo = data.mag_size if data else 0, - } - -# --------------------------------------------------------------------------- -# Can-fire check -# --------------------------------------------------------------------------- - -## Returns true if the player can fire the specified weapon right now. -## Checks: weapon known, ammo available, not reloading, cooldown elapsed. -func can_fire(player_id: int, weapon_id: String) -> bool: - var data = _wd.get_weapon(weapon_id) - if data == null: - return false - - var st := get_weapon_state(player_id, weapon_id) - if st.is_empty(): - # Player doesn't have this weapon yet — give it to them - give_weapon(player_id, weapon_id) - st = get_weapon_state(player_id, weapon_id) - - # Check reload - if st.get("is_reloading", false): - return false - - # Check ammo - if st.get("ammo", 0) <= 0: - return false - - # Check fire rate cooldown - var fire_interval: float = 1.0 / max(data.fire_rate, 0.001) - var last_fire: float = st.get("last_fire_time", -INF) - var now: float = Time.get_unix_time_from_system() - - if now - last_fire < fire_interval: - return false - - return true - -# --------------------------------------------------------------------------- -# Reload -# --------------------------------------------------------------------------- - -## Start reloading the player's weapon. Returns true if reload initiated. -func start_reload(player_id: int, weapon_id: String) -> bool: - var data = _wd.get_weapon(weapon_id) - if data == null: - return false - - var st := get_weapon_state(player_id, weapon_id) - if st.is_empty(): - return false - - # Already reloading - if st.get("is_reloading", false): - return false - - # Magazine already full - if st.get("ammo", 0) >= data.mag_size: - return false - - # No reserve ammo - if st.get("reserve", 0) <= 0: - return false - - st["is_reloading"] = true - st["reload_remaining"] = data.reload_time - return true - -## Process reload timers. Called each server tick with delta. -## Returns true if any reload completed this tick. -func process_reloads(player_id: int, delta: float) -> bool: - var any_completed: bool = false - var ps: Dictionary = _state.get(player_id, {}) - for weapon_id in ps.keys(): - var st: Dictionary = ps[weapon_id] - if not st.get("is_reloading", false): - continue - var remaining: float = st.get("reload_remaining", 0.0) - delta - if remaining <= 0.0: - # Reload complete - _complete_reload(player_id, weapon_id, st) - any_completed = true - else: - st["reload_remaining"] = remaining - return any_completed - -func _complete_reload(player_id: int, weapon_id: String, st: Dictionary) -> void: - var data = _wd.get_weapon(weapon_id) - if data == null: - return - - var needed: int = data.mag_size - st.get("ammo", 0) - var from_reserve: int = mini(needed, st.get("reserve", 0)) - - st["ammo"] = st.get("ammo", 0) + from_reserve - st["reserve"] = st.get("reserve", 0) - from_reserve - st["is_reloading"] = false - st["reload_remaining"] = 0.0 - -# --------------------------------------------------------------------------- -# Fire -# --------------------------------------------------------------------------- - -## Fire the weapon from the given origin along direction. -## Performs a hit-scan raycast through the physics world with optional -## server-side lag compensation rewinding. -## -## tick: server tick when the shot occurred (used for lag compensation). -## Pass -1 to skip lag compensation and use current-frame physics. -## hit_result = { -## hit: bool, -## position: Vector3, # world-space hit point -## target_id: int, # entity/node ID if hitting a collider, -1 otherwise -## damage: float, # total damage dealt this shot -## weapon_id: String, # the weapon used -## } -## -func fire(tick: int, player_id: int, weapon_id: String, origin: Vector3, direction: Vector3) -> Dictionary: - var data = _wd.get_weapon(weapon_id) - if data == null: - return _miss_result(weapon_id) - - var st := get_weapon_state(player_id, weapon_id) - if st.is_empty(): - return _miss_result(weapon_id) - - # Authoritative can-fire check (belt and suspenders) - if not _hard_can_fire(player_id, weapon_id, data, st): - return _miss_result(weapon_id) - - # Deduct ammo - st["ammo"] = st.get("ammo", 1) - 1 - st["last_fire_time"] = Time.get_unix_time_from_system() - - # Auto-reload if magazine empty - if st["ammo"] <= 0 and st.get("reserve", 0) > 0: - st["is_reloading"] = true - st["reload_remaining"] = data.reload_time - - # Perform hit-scan — supports multi-pellet weapons - return _perform_hitscan(tick, player_id, weapon_id, data, origin, direction, st) - -# --------------------------------------------------------------------------- -# Internal: hitscan -# --------------------------------------------------------------------------- - -func _perform_hitscan( - tick: int, - player_id: int, - weapon_id: String, - data, # WeaponData — untyped for headless compat (Resource class_name order) - origin: Vector3, - base_direction: Vector3, - st: Dictionary -) -> Dictionary: - var space_state: PhysicsDirectSpaceState3D = _get_space_state() - if space_state == null: - return _miss_result(weapon_id) - - var total_damage: float = 0.0 - var latest_hit_pos: Vector3 = Vector3.ZERO - var latest_target_id: int = -1 - var any_hit: bool = false - - var pellets: int = max(1, data.pellets_per_shot) - var max_range: float = max(1.0, data.range) - var spread_rad: float = deg_to_rad(data.spread_degrees) - - # Build a collision exception list so we don't hit the shooter - var exclude: Array[RID] = _get_shooter_exclusions(player_id) - - for i in range(pellets): - var dir: Vector3 = _apply_spread(base_direction, spread_rad) - - # --- Lag-compensated raycast --- - # If lag_compensation is available and a valid tick is provided, - # rewind to the target tick before raycasting. Otherwise fall - # back to the current-frame physics world. - var result: Dictionary = {} - if lag_compensation != null and tick >= 0: - result = lag_compensation.rewind_and_raycast( - tick, origin, dir, max_range, exclude - ) - else: - # Fallback: no lag compensation — raycast against current positions - var query := PhysicsRayQueryParameters3D.create( - origin, origin + dir * max_range - ) - query.exclude = exclude - query.collide_with_bodies = true - query.collide_with_areas = false - result = space_state.intersect_ray(query) - - if result.is_empty(): - continue - - any_hit = true - latest_hit_pos = result.get("position", Vector3.ZERO) - var collider: Object = result.get("collider", null) - if collider and collider.has_method(&"get_entity_id"): - latest_target_id = collider.get_entity_id() - elif collider: - latest_target_id = collider.get_instance_id() - - total_damage += data.damage - - if not any_hit: - return _miss_result(weapon_id) - - return { - hit = true, - position = latest_hit_pos, - target_id = latest_target_id, - damage = total_damage, - weapon_id = weapon_id, - } - -func _miss_result(weapon_id: String) -> Dictionary: - return { - hit = false, - position = Vector3.ZERO, - target_id = -1, - damage = 0.0, - weapon_id = weapon_id, - } - -# --------------------------------------------------------------------------- -# Internal: helpers -# --------------------------------------------------------------------------- - -## Strict can-fire that does NOT auto-grant the weapon. -func _hard_can_fire( - player_id: int, - weapon_id: String, - data, # WeaponData — untyped for headless compat (Resource class_name order) - st: Dictionary -) -> bool: - if st.is_empty(): - return false - if st.get("is_reloading", false): - return false - if st.get("ammo", 0) <= 0: - return false - - var fire_interval: float = 1.0 / max(data.fire_rate, 0.001) - var last_fire: float = st.get("last_fire_time", -INF) - var now: float = Time.get_unix_time_from_system() - if now - last_fire < fire_interval: - return false - return true - -func _get_space_state() -> PhysicsDirectSpaceState3D: - if physics_world != null: - return physics_world.direct_space_state - return null - -func _get_shooter_exclusions(player_id: int) -> Array[RID]: - # Try to find the player's collision body via the entity system - # For now, return an empty array (no self-exclusion beyond what Godot does) - return [] - -## Apply spread to a base direction vector. -func _apply_spread(base: Vector3, spread_rad: float) -> Vector3: - if spread_rad <= 0.001: - return base - var theta: float = randf() * TAU - var phi: float = randf() * spread_rad - var up := Vector3.UP - if abs(base.dot(up)) > 0.99: - up = Vector3.RIGHT - var right := base.cross(up).normalized() - up = right.cross(base).normalized() - var offset := right * sin(theta) * sin(phi) + up * cos(theta) * sin(phi) - return (base + offset).normalized() diff --git a/server/scripts/weapons/weapon_server.gd.uid b/server/scripts/weapons/weapon_server.gd.uid deleted file mode 100644 index bf87abe..0000000 --- a/server/scripts/weapons/weapon_server.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://dmvykm8r7koqv diff --git a/server/scripts/zones/buy_zone.gd b/server/scripts/zones/buy_zone.gd deleted file mode 100644 index 6a44852..0000000 --- a/server/scripts/zones/buy_zone.gd +++ /dev/null @@ -1,182 +0,0 @@ -## BuyZone — Area3D that defines where players can buy weapons/equipment. -## -## A trigger zone that tracks which players are inside it and emits -## enter/exit signals. Buy zones can be filtered by team, so only -## the appropriate team can purchase within a given zone. -## -## In the map scene, place BuyZone nodes (Area3D) near each team's -## spawn area. Set zone_team to restrict which team can use it. -## -## Usage (map tscn): -## [node name="BuyZone_CT" type="Area3D" parent="."] -## script = ExtResource("...buy_zone.gd") -## zone_team = 1 # Team.COUNTER_TERRORIST -## zone_radius = 10.0 -## -## (Add a CollisionShape3D child with a SphereShape3D for the trigger volume.) -## -## Signals: -## player_entered_buyzone(player_id) — emitted when a player enters the zone -## player_exited_buyzone(player_id) — emitted when a player leaves the zone -## -## Usage (server runtime): -## var bz: BuyZone = $BuyZone_CT -## if bz.is_in_buyzone(player_id): -## show_buy_menu(player_id) - -extends Area3D -class_name BuyZone -const _td_bz = preload("res://scripts/teams/team_data.gd") - -# --------------------------------------------------------------------------- -# Signals -# --------------------------------------------------------------------------- - -## Emitted when a player enters the buy zone. -signal player_entered_buyzone(player_id: int) - -## Emitted when a player exits the buy zone. -signal player_exited_buyzone(player_id: int) - - -# --------------------------------------------------------------------------- -# Exports -# --------------------------------------------------------------------------- - -## Which team(s) can use this buy zone. -## Team.COUNTER_TERRORIST = 1, Team.TERRORIST = 2, Team.SPECTATOR = 0. -## Use the Team enum: int.COUNTER_TERRORIST, etc. -@export var zone_team: int = _td_bz.Team.COUNTER_TERRORIST - -## Radius of the buy zone in Godot units (visual hint only; actual collision -## shape determines the trigger volume). -@export var zone_radius: float = 10.0 - -## If true, any team can use this zone (overrides zone_team). -@export var allow_all_teams: bool = false - - -# --------------------------------------------------------------------------- -# State -# --------------------------------------------------------------------------- - -## Set of player IDs currently inside this buy zone. -var _players_in_zone: Dictionary = {} # player_id (int) → true - - -# --------------------------------------------------------------------------- -# Lifecycle -# --------------------------------------------------------------------------- - -func _ready() -> void: - # Connect area signals - body_entered.connect(_on_body_entered) - body_exited.connect(_on_body_exited) - area_entered.connect(_on_area_entered) - area_exited.connect(_on_area_exited) - - # Set collision layer/mask for buy zones (layer 4 by convention) - collision_layer = 0 # Buy zones don't collide with physics - collision_mask = 0 # They detect bodies via signals only - - # Ensure we have at least a basic collision shape hint - _setup_collision_shape() - - -# --------------------------------------------------------------------------- -# Public API -# --------------------------------------------------------------------------- - -## Check if a specific player is inside this buy zone. -func is_in_buyzone(player_id: int) -> bool: - return _players_in_zone.has(player_id) - - -## Get an array of player IDs currently inside this buy zone. -func get_players_in_buyzone() -> Array[int]: - return _players_in_zone.keys() - - -## Check if the given team is allowed to use this buy zone. -func is_team_allowed(team: int) -> bool: - if allow_all_teams: - return true - return team == zone_team - - -## Get the number of players currently in the zone. -func get_player_count() -> int: - return _players_in_zone.size() - - -# --------------------------------------------------------------------------- -# Internal: Signal handlers -# --------------------------------------------------------------------------- - -func _on_body_entered(body: Node) -> void: - var player_id: int = _extract_player_id(body) - if player_id >= 0: - _players_in_zone[player_id] = true - player_entered_buyzone.emit(player_id) - - -func _on_body_exited(body: Node) -> void: - var player_id: int = _extract_player_id(body) - if player_id >= 0 and _players_in_zone.erase(player_id): - player_exited_buyzone.emit(player_id) - - -func _on_area_entered(_area: Area3D) -> void: - # Areas can also trigger if the player is an Area3D (e.g. a trigger zone - # on the player). For now, body detection is the primary path. - pass - - -func _on_area_exited(_area: Area3D) -> void: - pass - - -# --------------------------------------------------------------------------- -# Internal: helpers -# --------------------------------------------------------------------------- - -## Try to extract a multiplayer peer ID from a body node. -## The body is expected to be a Player node or have a "get_peer_id" method, -## or the body's owner is a Player node with multiplayer authority info. -func _extract_player_id(body: Node) -> int: - # If the body has a peer_id property or method - if body.has_method(&"get_peer_id"): - return body.get_peer_id() - - # If the body is a Player node with multiplayer authority - if body.has_method(&"get_multiplayer_authority"): - return body.get_multiplayer_authority() - - # Check for a direct peer_id variable - if "peer_id" in body and body.get("peer_id") is int: - return body.get("peer_id") - - # Try the body's owner - var owner_node: Node = body.owner if body.owner else body.get_parent() - if owner_node and owner_node != body: - return _extract_player_id(owner_node) - - return -1 - - -## Ensure there's a collision shape for the trigger volume. -## If no CollisionShape3D child exists, create a SphereShape3D one. -func _setup_collision_shape() -> void: - # Check if we already have a CollisionShape3D - for child in get_children(): - if child is CollisionShape3D: - return # Already have one - - # Create a default sphere shape - var shape := SphereShape3D.new() - shape.radius = zone_radius - - var col_shape := CollisionShape3D.new() - col_shape.shape = shape - add_child(col_shape) - col_shape.owner = get_tree().edited_scene_root if Engine.is_editor_hint() else owner diff --git a/server/scripts/zones/buy_zone.gd.uid b/server/scripts/zones/buy_zone.gd.uid deleted file mode 100644 index 50deac2..0000000 --- a/server/scripts/zones/buy_zone.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://c57s6fj8odgir diff --git a/server/server-browser-api/__pycache__/main.cpython-311.pyc b/server/server-browser-api/__pycache__/main.cpython-311.pyc deleted file mode 100644 index 3f19d9c..0000000 Binary files a/server/server-browser-api/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/main.py b/server/server-browser-api/main.py deleted file mode 100644 index 5033ce4..0000000 --- a/server/server-browser-api/main.py +++ /dev/null @@ -1,598 +0,0 @@ -""" -tactical-shooter — Master Server API -====================================== -Standalone REST service that receives heartbeat pings from game servers -and serves the server list to client browsers. - -Endpoints: - POST /api/v1/heartbeat — Register/refresh a game server - GET /api/v1/servers — List all active servers - GET /api/v1/servers/:id — Get a single server's details - GET /api/v1/status — Health check + stats - -Data: SQLite with TTL-based expiry (servers older than heartbeat_ttl are pruned). -""" - -from __future__ import annotations - -import hashlib -import json -import logging -import os -import time -import uuid -from collections.abc import AsyncIterator -from contextlib import asynccontextmanager -from datetime import datetime, timezone -from pathlib import Path - -import aiosqlite -import uvicorn -from fastapi import FastAPI, HTTPException, Request, UploadFile, File, Form -from fastapi.middleware.cors import CORSMiddleware -from fastapi.responses import JSONResponse, FileResponse -from pydantic import BaseModel, Field - -# --------------------------------------------------------------------------- -# Config -# --------------------------------------------------------------------------- - -CONFIG_PATH = Path(__file__).resolve().parent / "master_config.json" - -with open(CONFIG_PATH) as f: - _cfg = json.load(f) - -HOST: str = _cfg.get("host", "0.0.0.0") -PORT: int = _cfg.get("port", 28961) -DB_PATH: str = _cfg.get("database", "master_server.db") -HEARTBEAT_TTL: int = _cfg.get("heartbeat_ttl_seconds", 180) -MAX_SERVERS: int = _cfg.get("max_servers", 1000) -RATE_LIMIT: int = _cfg.get("rate_limit_per_ip", 30) -RATE_LIMIT_WINDOW: int = _cfg.get("rate_limit_window_seconds", 60) - -DB_PATH = os.environ.get("MASTER_DB_PATH", DB_PATH) - -log = logging.getLogger("master_server") -log.setLevel(_cfg.get("log_level", "info").upper()) - -# --------------------------------------------------------------------------- -# Schemas -# --------------------------------------------------------------------------- - - -class HeartbeatPayload(BaseModel): - """Payload sent by game servers via POST /heartbeat.""" - - server_id: str | None = None # auto-generated if missing - name: str = "Unnamed Server" - map: str = "unknown" - players: int = 0 - max_players: int = 16 - game_mode: str = "deathmatch" - version: str = "1.0.0" - tags: str = "" - password: bool = False - host: str = "" - port: int = 0 - steam_id: str = "" - - -class ServerInfo(BaseModel): - """Public server info returned to clients.""" - - server_id: str - name: str - map: str - players: int - max_players: int - game_mode: str - version: str - tags: list[str] - password: bool - host: str - port: int - steam_id: str - last_seen: str # ISO-8601 - uptime_seconds: int - - -class ServerListResponse(BaseModel): - count: int - servers: list[ServerInfo] - - -class StatusResponse(BaseModel): - status: str = "ok" - uptime_seconds: int - active_servers: int - total_heartbeats: int - version: str = "1.0.0" - - -# --------------------------------------------------------------------------- -# Map Registry Models -# --------------------------------------------------------------------------- - -# Directory where uploaded .pck files are stored -MAPS_DIR: str = _cfg.get("maps_dir", "workshop_maps") -os.makedirs(MAPS_DIR, exist_ok=True) - - -class MapInfo(BaseModel): - """Public map metadata returned to clients.""" - - name: str - size: int = 0 - version: int = 1 - description: str = "" - scene: str = "" - author: str = "" - checksum_sha256: str = "" - uploaded_at: str = "" - download_url: str = "" - - -class MapListResponse(BaseModel): - count: int - maps: list[MapInfo] - - -# --------------------------------------------------------------------------- -# Database -# --------------------------------------------------------------------------- - -CREATE_TABLE_SQL = """ -CREATE TABLE IF NOT EXISTS servers ( - server_id TEXT PRIMARY KEY, - name TEXT NOT NULL, - map TEXT NOT NULL DEFAULT 'unknown', - players INTEGER NOT NULL DEFAULT 0, - max_players INTEGER NOT NULL DEFAULT 16, - game_mode TEXT NOT NULL DEFAULT 'deathmatch', - version TEXT NOT NULL DEFAULT '1.0.0', - tags TEXT NOT NULL DEFAULT '', - password INTEGER NOT NULL DEFAULT 0, - host TEXT NOT NULL DEFAULT '', - port INTEGER NOT NULL DEFAULT 0, - steam_id TEXT NOT NULL DEFAULT '', - first_seen REAL NOT NULL, - last_seen REAL NOT NULL, - heartbeat_count INTEGER NOT NULL DEFAULT 1 -); -""" -CREATE_INDEX_SQL = "CREATE INDEX IF NOT EXISTS idx_servers_last_seen ON servers(last_seen);" - -CREATE_MAPS_SQL = """ -CREATE TABLE IF NOT EXISTS workshop_maps ( - name TEXT PRIMARY KEY, - size INTEGER NOT NULL DEFAULT 0, - version INTEGER NOT NULL DEFAULT 1, - description TEXT NOT NULL DEFAULT '', - scene TEXT NOT NULL DEFAULT '', - author TEXT NOT NULL DEFAULT '', - checksum_sha256 TEXT NOT NULL DEFAULT '', - filename TEXT NOT NULL, - uploaded_at REAL NOT NULL -); -""" - - -async def get_db() -> AsyncIterator[aiosqlite.Connection]: - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - await db.execute("PRAGMA journal_mode=WAL") - await db.execute("PRAGMA synchronous=NORMAL") - await db.execute(CREATE_TABLE_SQL) - await db.execute(CREATE_INDEX_SQL) - await db.commit() - yield db - - -async def _prune_expired(db: aiosqlite.Connection) -> int: - """Remove servers whose heartbeat has expired. Returns count pruned.""" - cutoff = time.time() - HEARTBEAT_TTL - db.row_factory = aiosqlite.Row - cursor = await db.execute("DELETE FROM servers WHERE last_seen < ?", (cutoff,)) - await db.commit() - return cursor.rowcount - - -def _row_to_server(row: aiosqlite.Row) -> ServerInfo: - now = time.time() - tags_list = [t.strip() for t in row["tags"].split(",") if t.strip()] if row["tags"] else [] - return ServerInfo( - server_id=row["server_id"], - name=row["name"], - map=row["map"], - players=row["players"], - max_players=row["max_players"], - game_mode=row["game_mode"], - version=row["version"], - tags=tags_list, - password=bool(row["password"]), - host=row["host"], - port=row["port"], - steam_id=row["steam_id"], - last_seen=datetime.fromtimestamp(row["last_seen"], tz=timezone.utc).isoformat(), - uptime_seconds=int(max(0, now - row["first_seen"])), - ) - - -# --------------------------------------------------------------------------- -# App -# --------------------------------------------------------------------------- - -_start_time = time.time() - - -@asynccontextmanager -async def lifespan(app: FastAPI) -> AsyncIterator[None]: - """Startup / shutdown — ensure DB schema exists.""" - async with aiosqlite.connect(DB_PATH) as db: - await db.execute("PRAGMA journal_mode=WAL") - await db.execute("PRAGMA synchronous=NORMAL") - await db.execute(CREATE_TABLE_SQL) - await db.execute(CREATE_INDEX_SQL) - await db.execute(CREATE_MAPS_SQL) - await db.commit() - # Ensure maps directory exists - os.makedirs(MAPS_DIR, exist_ok=True) - log.info("Master server ready on %s:%s", HOST, PORT) - log.info("Maps directory: %s (absolute: %s)", MAPS_DIR, os.path.abspath(MAPS_DIR)) - yield - - -app = FastAPI( - title="Tactical Shooter Master Server", - version="1.0.0", - lifespan=lifespan, -) - -# Allow cross-origin from any game client / browser -app.add_middleware( - CORSMiddleware, - allow_origins=["*"], - allow_credentials=False, - allow_methods=["*"], - allow_headers=["*"], -) - -# In-memory rate limiter: {ip: [timestamps]} -_rate_buckets: dict[str, list[float]] = {} - - -def _check_rate_limit(ip: str) -> None: - now = time.time() - window_start = now - RATE_LIMIT_WINDOW - timestamps = _rate_buckets.get(ip, []) - # Drop old entries - timestamps = [t for t in timestamps if t > window_start] - if len(timestamps) >= RATE_LIMIT: - raise HTTPException( - status_code=429, - detail=f"Rate limit exceeded: max {RATE_LIMIT} requests per {RATE_LIMIT_WINDOW}s", - ) - timestamps.append(now) - _rate_buckets[ip] = timestamps - - -# --------------------------------------------------------------------------- -# Routes -# --------------------------------------------------------------------------- - - -@app.get("/api/v1/status", response_model=StatusResponse) -async def get_status(): - """Health check and server stats.""" - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - cursor = await db.execute("SELECT COUNT(*) AS cnt FROM servers") - row = await cursor.fetchone() - active = row["cnt"] if row else 0 - cursor = await db.execute("SELECT COALESCE(SUM(heartbeat_count), 0) AS total FROM servers") - row = await cursor.fetchone() - total_heartbeats = row["total"] if row else 0 - - return StatusResponse( - uptime_seconds=int(time.time() - _start_time), - active_servers=active, - total_heartbeats=total_heartbeats, - ) - - -@app.post("/api/v1/heartbeat") -async def heartbeat(payload: HeartbeatPayload, request: Request): - """Register or refresh a game server. - - If server_id is not provided (or empty), one is auto-generated in the - response. The server should store the returned id and send it on - subsequent heartbeats. - """ - ip = request.client.host if request.client else "unknown" - _check_rate_limit(ip) - - # Generate id for new servers - server_id = payload.server_id or str(uuid.uuid4()) - now = time.time() - - async with aiosqlite.connect(DB_PATH) as db: - # Check if we're at capacity - db.row_factory = aiosqlite.Row - cursor = await db.execute("SELECT COUNT(*) AS cnt FROM servers") - row = await cursor.fetchone() - count = row["cnt"] if row else 0 - - if count >= MAX_SERVERS: - # Try to prune expired first - await _prune_expired(db) - cursor = await db.execute("SELECT COUNT(*) AS cnt FROM servers") - row = await cursor.fetchone() - count = row["cnt"] if row else 0 - if count >= MAX_SERVERS: - raise HTTPException(status_code=503, detail="Server registry full") - - # Upsert - await db.execute( - """ - INSERT INTO servers (server_id, name, map, players, max_players, - game_mode, version, tags, password, host, port, - steam_id, first_seen, last_seen, heartbeat_count) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 1) - ON CONFLICT(server_id) DO UPDATE SET - name = excluded.name, - map = excluded.map, - players = excluded.players, - max_players = excluded.max_players, - game_mode = excluded.game_mode, - version = excluded.version, - tags = excluded.tags, - password = excluded.password, - host = excluded.host, - port = excluded.port, - steam_id = excluded.steam_id, - last_seen = excluded.last_seen, - heartbeat_count = servers.heartbeat_count + 1 - """, - ( - server_id, - payload.name, - payload.map, - payload.players, - payload.max_players, - payload.game_mode, - payload.version, - payload.tags, - 1 if payload.password else 0, - payload.host or ip, - payload.port, - payload.steam_id, - now, - now, - ), - ) - await db.commit() - - log.info("Heartbeat from %s (%s) — %s/%s players on %s", - payload.name, server_id[:8], payload.players, payload.max_players, payload.map) - - return { - "status": "ok", - "server_id": server_id, - "registered": True, - } - - -@app.get("/api/v1/servers", response_model=ServerListResponse) -async def list_servers(request: Request, tags: str | None = None): - """List all active servers, optionally filtered by comma-separated tags.""" - _check_rate_limit(request.client.host if request.client else "unknown") - - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - await _prune_expired(db) - - if tags: - # Filter servers whose tags field contains any of the requested tags - tag_list = [t.strip() for t in tags.split(",") if t.strip()] - placeholders = ",".join("?" for _ in tag_list) - query = f""" - SELECT * FROM servers - WHERE last_seen > ? - AND ({' OR '.join(f"tags LIKE ?" for _ in tag_list)}) - ORDER BY players DESC - """ - params = [time.time() - HEARTBEAT_TTL] - for tg in tag_list: - params.append(f"%{tg}%") - cursor = await db.execute(query, params) - else: - cursor = await db.execute( - "SELECT * FROM servers WHERE last_seen > ? ORDER BY players DESC", - (time.time() - HEARTBEAT_TTL,), - ) - - rows = await cursor.fetchall() - servers = [_row_to_server(r) for r in rows] - - return ServerListResponse(count=len(servers), servers=servers) - - -@app.get("/api/v1/servers/{server_id}", response_model=ServerInfo) -async def get_server(server_id: str): - """Get details for a single server.""" - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - cursor = await db.execute("SELECT * FROM servers WHERE server_id = ?", (server_id,)) - row = await cursor.fetchone() - - if not row: - raise HTTPException(status_code=404, detail="Server not found") - - now = time.time() - if row["last_seen"] < now - HEARTBEAT_TTL: - raise HTTPException(status_code=410, detail="Server has expired (no recent heartbeat)") - - return _row_to_server(row) - - -# --------------------------------------------------------------------------- -# Map Registry — Workshop API -# --------------------------------------------------------------------------- - -def _compute_sha256(filepath: str) -> str: - """Compute SHA-256 checksum of a file.""" - try: - h = hashlib.sha256() - with open(filepath, "rb") as f: - while True: - chunk = f.read(65536) - if not chunk: - break - h.update(chunk) - return h.hexdigest() - except OSError: - return "" - - -def _row_to_map_info(row: aiosqlite.Row) -> MapInfo: - """Convert a DB row to a MapInfo response model.""" - return MapInfo( - name=row["name"], - size=row["size"], - version=row["version"], - description=row["description"], - scene=row["scene"], - author=row["author"], - checksum_sha256=row["checksum_sha256"], - uploaded_at=datetime.fromtimestamp(row["uploaded_at"], tz=timezone.utc).isoformat(), - download_url=f"/api/v1/maps/{row['name']}.pck", - ) - - -@app.get("/api/v1/maps", response_model=MapListResponse) -async def list_workshop_maps(): - """List all community maps available for download.""" - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - cursor = await db.execute( - "SELECT * FROM workshop_maps ORDER BY name ASC" - ) - rows = await cursor.fetchall() - maps = [_row_to_map_info(r) for r in rows] - - return MapListResponse(count=len(maps), maps=maps) - - -@app.get("/api/v1/maps/{map_name}") -async def get_workshop_map(map_name: str): - """Get metadata for a specific workshop map.""" - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - cursor = await db.execute( - "SELECT * FROM workshop_maps WHERE name = ?", (map_name,) - ) - row = await cursor.fetchone() - - if not row: - raise HTTPException(status_code=404, detail=f"Map '{map_name}' not found") - - return _row_to_map_info(row) - - -@app.get("/api/v1/maps/{map_name}.pck") -async def download_workshop_map(map_name: str): - """Download a workshop map .pck file.""" - async with aiosqlite.connect(DB_PATH) as db: - db.row_factory = aiosqlite.Row - cursor = await db.execute( - "SELECT * FROM workshop_maps WHERE name = ?", (map_name,) - ) - row = await cursor.fetchone() - - if not row: - raise HTTPException(status_code=404, detail=f"Map '{map_name}' not found") - - filepath = os.path.join(MAPS_DIR, row["filename"]) - if not os.path.exists(filepath): - raise HTTPException(status_code=410, detail="Map file has been removed from storage") - - return FileResponse( - path=filepath, - filename=row["filename"], - media_type="application/octet-stream", - headers={ - "Access-Control-Allow-Origin": "*", - "X-Checksum-SHA256": row["checksum_sha256"], - }, - ) - - -@app.post("/api/v1/maps/upload") -async def upload_workshop_map( - request: Request, - file: UploadFile = File(...), - name: str = Form(...), - description: str = Form(""), - scene: str = Form(""), - author: str = Form(""), - version: int = Form(1), -): - """Upload a new workshop map .pck file.""" - ip = request.client.host if request.client else "unknown" - _check_rate_limit(ip) - - # Validate file extension - if not file.filename or not file.filename.endswith(".pck"): - raise HTTPException(status_code=400, detail="Only .pck files are accepted") - - # Save file to disk - filename = f"{name}.pck" - filepath = os.path.join(MAPS_DIR, filename) - - content = await file.read() - with open(filepath, "wb") as f: - f.write(content) - - file_size = os.path.getsize(filepath) - checksum = _compute_sha256(filepath) - now = time.time() - - async with aiosqlite.connect(DB_PATH) as db: - await db.execute("PRAGMA journal_mode=WAL") - await db.execute("PRAGMA synchronous=NORMAL") - - await db.execute( - """INSERT OR REPLACE INTO workshop_maps - (name, size, version, description, scene, author, checksum_sha256, filename, uploaded_at) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)""", - (name, file_size, version, description, scene, author, checksum, filename, now), - ) - await db.commit() - - log.info("Map uploaded: %s (%s, %d bytes, v%d)", name, filename, file_size, version) - - return { - "status": "ok", - "map": name, - "size": file_size, - "version": version, - "checksum_sha256": checksum, - } - - -# --------------------------------------------------------------------------- -# Entrypoint -# --------------------------------------------------------------------------- - -if __name__ == "__main__": - logging.basicConfig( - level=_cfg.get("log_level", "info").upper(), - format="%(asctime)s [%(levelname)s] %(name)s: %(message)s", - ) - uvicorn.run( - "main:app", - host=HOST, - port=PORT, - log_level=_cfg.get("log_level", "info"), - reload=False, - ) diff --git a/server/server-browser-api/master_config.json b/server/server-browser-api/master_config.json deleted file mode 100644 index 6e7f9e7..0000000 --- a/server/server-browser-api/master_config.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "host": "0.0.0.0", - "port": 28961, - "database": "master_server.db", - "heartbeat_ttl_seconds": 180, - "max_servers": 1000, - "log_level": "info", - "rate_limit_per_ip": 30, - "rate_limit_window_seconds": 60, - "maps_dir": "workshop_maps" -} diff --git a/server/server-browser-api/requirements.txt b/server/server-browser-api/requirements.txt deleted file mode 100644 index 24412c5..0000000 --- a/server/server-browser-api/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -fastapi>=0.109.0 -uvicorn[standard]>=0.27.0 -pydantic>=2.0.0 -aiosqlite>=0.19.0 diff --git a/server/server-browser-api/venv/bin/Activate.ps1 b/server/server-browser-api/venv/bin/Activate.ps1 deleted file mode 100644 index b49d77b..0000000 --- a/server/server-browser-api/venv/bin/Activate.ps1 +++ /dev/null @@ -1,247 +0,0 @@ -<# -.Synopsis -Activate a Python virtual environment for the current PowerShell session. - -.Description -Pushes the python executable for a virtual environment to the front of the -$Env:PATH environment variable and sets the prompt to signify that you are -in a Python virtual environment. Makes use of the command line switches as -well as the `pyvenv.cfg` file values present in the virtual environment. - -.Parameter VenvDir -Path to the directory that contains the virtual environment to activate. The -default value for this is the parent of the directory that the Activate.ps1 -script is located within. - -.Parameter Prompt -The prompt prefix to display when this virtual environment is activated. By -default, this prompt is the name of the virtual environment folder (VenvDir) -surrounded by parentheses and followed by a single space (ie. '(.venv) '). - -.Example -Activate.ps1 -Activates the Python virtual environment that contains the Activate.ps1 script. - -.Example -Activate.ps1 -Verbose -Activates the Python virtual environment that contains the Activate.ps1 script, -and shows extra information about the activation as it executes. - -.Example -Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv -Activates the Python virtual environment located in the specified location. - -.Example -Activate.ps1 -Prompt "MyPython" -Activates the Python virtual environment that contains the Activate.ps1 script, -and prefixes the current prompt with the specified string (surrounded in -parentheses) while the virtual environment is active. - -.Notes -On Windows, it may be required to enable this Activate.ps1 script by setting the -execution policy for the user. You can do this by issuing the following PowerShell -command: - -PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser - -For more information on Execution Policies: -https://go.microsoft.com/fwlink/?LinkID=135170 - -#> -Param( - [Parameter(Mandatory = $false)] - [String] - $VenvDir, - [Parameter(Mandatory = $false)] - [String] - $Prompt -) - -<# Function declarations --------------------------------------------------- #> - -<# -.Synopsis -Remove all shell session elements added by the Activate script, including the -addition of the virtual environment's Python executable from the beginning of -the PATH variable. - -.Parameter NonDestructive -If present, do not remove this function from the global namespace for the -session. - -#> -function global:deactivate ([switch]$NonDestructive) { - # Revert to original values - - # The prior prompt: - if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { - Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt - Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT - } - - # The prior PYTHONHOME: - if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { - Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME - Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME - } - - # The prior PATH: - if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { - Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH - Remove-Item -Path Env:_OLD_VIRTUAL_PATH - } - - # Just remove the VIRTUAL_ENV altogether: - if (Test-Path -Path Env:VIRTUAL_ENV) { - Remove-Item -Path env:VIRTUAL_ENV - } - - # Just remove VIRTUAL_ENV_PROMPT altogether. - if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { - Remove-Item -Path env:VIRTUAL_ENV_PROMPT - } - - # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: - if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { - Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force - } - - # Leave deactivate function in the global namespace if requested: - if (-not $NonDestructive) { - Remove-Item -Path function:deactivate - } -} - -<# -.Description -Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the -given folder, and returns them in a map. - -For each line in the pyvenv.cfg file, if that line can be parsed into exactly -two strings separated by `=` (with any amount of whitespace surrounding the =) -then it is considered a `key = value` line. The left hand string is the key, -the right hand is the value. - -If the value starts with a `'` or a `"` then the first and last character is -stripped from the value before being captured. - -.Parameter ConfigDir -Path to the directory that contains the `pyvenv.cfg` file. -#> -function Get-PyVenvConfig( - [String] - $ConfigDir -) { - Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" - - # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). - $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue - - # An empty map will be returned if no config file is found. - $pyvenvConfig = @{ } - - if ($pyvenvConfigPath) { - - Write-Verbose "File exists, parse `key = value` lines" - $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath - - $pyvenvConfigContent | ForEach-Object { - $keyval = $PSItem -split "\s*=\s*", 2 - if ($keyval[0] -and $keyval[1]) { - $val = $keyval[1] - - # Remove extraneous quotations around a string value. - if ("'""".Contains($val.Substring(0, 1))) { - $val = $val.Substring(1, $val.Length - 2) - } - - $pyvenvConfig[$keyval[0]] = $val - Write-Verbose "Adding Key: '$($keyval[0])'='$val'" - } - } - } - return $pyvenvConfig -} - - -<# Begin Activate script --------------------------------------------------- #> - -# Determine the containing directory of this script -$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition -$VenvExecDir = Get-Item -Path $VenvExecPath - -Write-Verbose "Activation script is located in path: '$VenvExecPath'" -Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" -Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" - -# Set values required in priority: CmdLine, ConfigFile, Default -# First, get the location of the virtual environment, it might not be -# VenvExecDir if specified on the command line. -if ($VenvDir) { - Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" -} -else { - Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." - $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") - Write-Verbose "VenvDir=$VenvDir" -} - -# Next, read the `pyvenv.cfg` file to determine any required value such -# as `prompt`. -$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir - -# Next, set the prompt from the command line, or the config file, or -# just use the name of the virtual environment folder. -if ($Prompt) { - Write-Verbose "Prompt specified as argument, using '$Prompt'" -} -else { - Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" - if ($pyvenvCfg -and $pyvenvCfg['prompt']) { - Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" - $Prompt = $pyvenvCfg['prompt']; - } - else { - Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" - Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" - $Prompt = Split-Path -Path $venvDir -Leaf - } -} - -Write-Verbose "Prompt = '$Prompt'" -Write-Verbose "VenvDir='$VenvDir'" - -# Deactivate any currently active virtual environment, but leave the -# deactivate function in place. -deactivate -nondestructive - -# Now set the environment variable VIRTUAL_ENV, used by many tools to determine -# that there is an activated venv. -$env:VIRTUAL_ENV = $VenvDir - -if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { - - Write-Verbose "Setting prompt to '$Prompt'" - - # Set the prompt to include the env name - # Make sure _OLD_VIRTUAL_PROMPT is global - function global:_OLD_VIRTUAL_PROMPT { "" } - Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT - New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt - - function global:prompt { - Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " - _OLD_VIRTUAL_PROMPT - } - $env:VIRTUAL_ENV_PROMPT = $Prompt -} - -# Clear PYTHONHOME -if (Test-Path -Path Env:PYTHONHOME) { - Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME - Remove-Item -Path Env:PYTHONHOME -} - -# Add the venv to the PATH -Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH -$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/server/server-browser-api/venv/bin/activate b/server/server-browser-api/venv/bin/activate deleted file mode 100644 index 22945d4..0000000 --- a/server/server-browser-api/venv/bin/activate +++ /dev/null @@ -1,63 +0,0 @@ -# This file must be used with "source bin/activate" *from bash* -# you cannot run it directly - -deactivate () { - # reset old environment variables - if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then - PATH="${_OLD_VIRTUAL_PATH:-}" - export PATH - unset _OLD_VIRTUAL_PATH - fi - if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then - PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" - export PYTHONHOME - unset _OLD_VIRTUAL_PYTHONHOME - fi - - # Call hash to forget past commands. Without forgetting - # past commands the $PATH changes we made may not be respected - hash -r 2> /dev/null - - if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then - PS1="${_OLD_VIRTUAL_PS1:-}" - export PS1 - unset _OLD_VIRTUAL_PS1 - fi - - unset VIRTUAL_ENV - unset VIRTUAL_ENV_PROMPT - if [ ! "${1:-}" = "nondestructive" ] ; then - # Self destruct! - unset -f deactivate - fi -} - -# unset irrelevant variables -deactivate nondestructive - -VIRTUAL_ENV=/home/oplabs/tactical-shooter/server/server-browser-api/venv -export VIRTUAL_ENV - -_OLD_VIRTUAL_PATH="$PATH" -PATH="$VIRTUAL_ENV/"bin":$PATH" -export PATH - -# unset PYTHONHOME if set -# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) -# could use `if (set -u; : $PYTHONHOME) ;` in bash -if [ -n "${PYTHONHOME:-}" ] ; then - _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" - unset PYTHONHOME -fi - -if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then - _OLD_VIRTUAL_PS1="${PS1:-}" - PS1='(venv) '"${PS1:-}" - export PS1 - VIRTUAL_ENV_PROMPT='(venv) ' - export VIRTUAL_ENV_PROMPT -fi - -# Call hash to forget past commands. Without forgetting -# past commands the $PATH changes we made may not be respected -hash -r 2> /dev/null diff --git a/server/server-browser-api/venv/bin/activate.csh b/server/server-browser-api/venv/bin/activate.csh deleted file mode 100644 index 4911297..0000000 --- a/server/server-browser-api/venv/bin/activate.csh +++ /dev/null @@ -1,26 +0,0 @@ -# This file must be used with "source bin/activate.csh" *from csh*. -# You cannot run it directly. -# Created by Davide Di Blasi . -# Ported to Python 3.3 venv by Andrew Svetlov - -alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' - -# Unset irrelevant variables. -deactivate nondestructive - -setenv VIRTUAL_ENV /home/oplabs/tactical-shooter/server/server-browser-api/venv - -set _OLD_VIRTUAL_PATH="$PATH" -setenv PATH "$VIRTUAL_ENV/"bin":$PATH" - - -set _OLD_VIRTUAL_PROMPT="$prompt" - -if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then - set prompt = '(venv) '"$prompt" - setenv VIRTUAL_ENV_PROMPT '(venv) ' -endif - -alias pydoc python -m pydoc - -rehash diff --git a/server/server-browser-api/venv/bin/activate.fish b/server/server-browser-api/venv/bin/activate.fish deleted file mode 100644 index ff7571c..0000000 --- a/server/server-browser-api/venv/bin/activate.fish +++ /dev/null @@ -1,69 +0,0 @@ -# This file must be used with "source /bin/activate.fish" *from fish* -# (https://fishshell.com/); you cannot run it directly. - -function deactivate -d "Exit virtual environment and return to normal shell environment" - # reset old environment variables - if test -n "$_OLD_VIRTUAL_PATH" - set -gx PATH $_OLD_VIRTUAL_PATH - set -e _OLD_VIRTUAL_PATH - end - if test -n "$_OLD_VIRTUAL_PYTHONHOME" - set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME - set -e _OLD_VIRTUAL_PYTHONHOME - end - - if test -n "$_OLD_FISH_PROMPT_OVERRIDE" - set -e _OLD_FISH_PROMPT_OVERRIDE - # prevents error when using nested fish instances (Issue #93858) - if functions -q _old_fish_prompt - functions -e fish_prompt - functions -c _old_fish_prompt fish_prompt - functions -e _old_fish_prompt - end - end - - set -e VIRTUAL_ENV - set -e VIRTUAL_ENV_PROMPT - if test "$argv[1]" != "nondestructive" - # Self-destruct! - functions -e deactivate - end -end - -# Unset irrelevant variables. -deactivate nondestructive - -set -gx VIRTUAL_ENV /home/oplabs/tactical-shooter/server/server-browser-api/venv - -set -gx _OLD_VIRTUAL_PATH $PATH -set -gx PATH "$VIRTUAL_ENV/"bin $PATH - -# Unset PYTHONHOME if set. -if set -q PYTHONHOME - set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME - set -e PYTHONHOME -end - -if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" - # fish uses a function instead of an env var to generate the prompt. - - # Save the current fish_prompt function as the function _old_fish_prompt. - functions -c fish_prompt _old_fish_prompt - - # With the original prompt function renamed, we can override with our own. - function fish_prompt - # Save the return status of the last command. - set -l old_status $status - - # Output the venv prompt; color taken from the blue of the Python logo. - printf "%s%s%s" (set_color 4B8BBE) '(venv) ' (set_color normal) - - # Restore the return status of the previous command. - echo "exit $old_status" | . - # Output the original/"old" prompt. - _old_fish_prompt - end - - set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" - set -gx VIRTUAL_ENV_PROMPT '(venv) ' -end diff --git a/server/server-browser-api/venv/bin/dotenv b/server/server-browser-api/venv/bin/dotenv deleted file mode 100755 index d7b6b98..0000000 --- a/server/server-browser-api/venv/bin/dotenv +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from dotenv.__main__ import cli -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(cli()) diff --git a/server/server-browser-api/venv/bin/fastapi b/server/server-browser-api/venv/bin/fastapi deleted file mode 100755 index 47424c2..0000000 --- a/server/server-browser-api/venv/bin/fastapi +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from fastapi.cli import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/idna b/server/server-browser-api/venv/bin/idna deleted file mode 100755 index 60ceaaf..0000000 --- a/server/server-browser-api/venv/bin/idna +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from idna.cli import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/pip b/server/server-browser-api/venv/bin/pip deleted file mode 100755 index 973b426..0000000 --- a/server/server-browser-api/venv/bin/pip +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from pip._internal.cli.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/pip3 b/server/server-browser-api/venv/bin/pip3 deleted file mode 100755 index 973b426..0000000 --- a/server/server-browser-api/venv/bin/pip3 +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from pip._internal.cli.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/pip3.11 b/server/server-browser-api/venv/bin/pip3.11 deleted file mode 100755 index 973b426..0000000 --- a/server/server-browser-api/venv/bin/pip3.11 +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from pip._internal.cli.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/python b/server/server-browser-api/venv/bin/python deleted file mode 120000 index 6e7f3c7..0000000 --- a/server/server-browser-api/venv/bin/python +++ /dev/null @@ -1 +0,0 @@ -python3.11 \ No newline at end of file diff --git a/server/server-browser-api/venv/bin/python3 b/server/server-browser-api/venv/bin/python3 deleted file mode 120000 index 6e7f3c7..0000000 --- a/server/server-browser-api/venv/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -python3.11 \ No newline at end of file diff --git a/server/server-browser-api/venv/bin/python3.11 b/server/server-browser-api/venv/bin/python3.11 deleted file mode 120000 index 9802a97..0000000 --- a/server/server-browser-api/venv/bin/python3.11 +++ /dev/null @@ -1 +0,0 @@ -/home/oplabs/.local/share/uv/python/cpython-3.11-linux-x86_64-gnu/bin/python3.11 \ No newline at end of file diff --git a/server/server-browser-api/venv/bin/uvicorn b/server/server-browser-api/venv/bin/uvicorn deleted file mode 100755 index 82eef66..0000000 --- a/server/server-browser-api/venv/bin/uvicorn +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from uvicorn.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/bin/watchfiles b/server/server-browser-api/venv/bin/watchfiles deleted file mode 100755 index c35a953..0000000 --- a/server/server-browser-api/venv/bin/watchfiles +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from watchfiles.cli import cli -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(cli()) diff --git a/server/server-browser-api/venv/bin/websockets b/server/server-browser-api/venv/bin/websockets deleted file mode 100755 index a3fe3d0..0000000 --- a/server/server-browser-api/venv/bin/websockets +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/oplabs/tactical-shooter/server/server-browser-api/venv/bin/python3.11 -# -*- coding: utf-8 -*- -import re -import sys -from websockets.cli import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/__pycache__/typing_extensions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/__pycache__/typing_extensions.cpython-311.pyc deleted file mode 100644 index db56122..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/__pycache__/typing_extensions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__init__.py deleted file mode 100644 index 94f71b9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__init__.py +++ /dev/null @@ -1,239 +0,0 @@ -# don't import any costly modules -import os -import sys - -report_url = ( - "https://github.com/pypa/setuptools/issues/new?template=distutils-deprecation.yml" -) - - -def warn_distutils_present(): - if 'distutils' not in sys.modules: - return - import warnings - - warnings.warn( - "Distutils was imported before Setuptools, but importing Setuptools " - "also replaces the `distutils` module in `sys.modules`. This may lead " - "to undesirable behaviors or errors. To avoid these issues, avoid " - "using distutils directly, ensure that setuptools is installed in the " - "traditional way (e.g. not an editable install), and/or make sure " - "that setuptools is always imported before distutils." - ) - - -def clear_distutils(): - if 'distutils' not in sys.modules: - return - import warnings - - warnings.warn( - "Setuptools is replacing distutils. Support for replacing " - "an already imported distutils is deprecated. In the future, " - "this condition will fail. " - f"Register concerns at {report_url}" - ) - mods = [ - name - for name in sys.modules - if name == "distutils" or name.startswith("distutils.") - ] - for name in mods: - del sys.modules[name] - - -def enabled(): - """ - Allow selection of distutils by environment variable. - """ - which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local') - if which == 'stdlib': - import warnings - - warnings.warn( - "Reliance on distutils from stdlib is deprecated. Users " - "must rely on setuptools to provide the distutils module. " - "Avoid importing distutils or import setuptools first, " - "and avoid setting SETUPTOOLS_USE_DISTUTILS=stdlib. " - f"Register concerns at {report_url}" - ) - return which == 'local' - - -def ensure_local_distutils(): - import importlib - - clear_distutils() - - # With the DistutilsMetaFinder in place, - # perform an import to cause distutils to be - # loaded from setuptools._distutils. Ref #2906. - with shim(): - importlib.import_module('distutils') - - # check that submodules load as expected - core = importlib.import_module('distutils.core') - assert '_distutils' in core.__file__, core.__file__ - assert 'setuptools._distutils.log' not in sys.modules - - -def do_override(): - """ - Ensure that the local copy of distutils is preferred over stdlib. - - See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 - for more motivation. - """ - if enabled(): - warn_distutils_present() - ensure_local_distutils() - - -class _TrivialRe: - def __init__(self, *patterns) -> None: - self._patterns = patterns - - def match(self, string): - return all(pat in string for pat in self._patterns) - - -class DistutilsMetaFinder: - def find_spec(self, fullname, path, target=None): - # optimization: only consider top level modules and those - # found in the CPython test suite. - if path is not None and not fullname.startswith('test.'): - return None - - method_name = 'spec_for_{fullname}'.format(**locals()) - method = getattr(self, method_name, lambda: None) - return method() - - def spec_for_distutils(self): - if self.is_cpython(): - return None - - import importlib - import importlib.abc - import importlib.util - - try: - mod = importlib.import_module('setuptools._distutils') - except Exception: - # There are a couple of cases where setuptools._distutils - # may not be present: - # - An older Setuptools without a local distutils is - # taking precedence. Ref #2957. - # - Path manipulation during sitecustomize removes - # setuptools from the path but only after the hook - # has been loaded. Ref #2980. - # In either case, fall back to stdlib behavior. - return None - - class DistutilsLoader(importlib.abc.Loader): - def create_module(self, spec): - mod.__name__ = 'distutils' - return mod - - def exec_module(self, module): - pass - - return importlib.util.spec_from_loader( - 'distutils', DistutilsLoader(), origin=mod.__file__ - ) - - @staticmethod - def is_cpython(): - """ - Suppress supplying distutils for CPython (build and tests). - Ref #2965 and #3007. - """ - return os.path.isfile('pybuilddir.txt') - - def spec_for_pip(self): - """ - Ensure stdlib distutils when running under pip. - See pypa/pip#8761 for rationale. - """ - if sys.version_info >= (3, 12) or self.pip_imported_during_build(): - return - clear_distutils() - self.spec_for_distutils = lambda: None - - @classmethod - def pip_imported_during_build(cls): - """ - Detect if pip is being imported in a build script. Ref #2355. - """ - import traceback - - return any( - cls.frame_file_is_setup(frame) for frame, line in traceback.walk_stack(None) - ) - - @staticmethod - def frame_file_is_setup(frame): - """ - Return True if the indicated frame suggests a setup.py file. - """ - # some frames may not have __file__ (#2940) - return frame.f_globals.get('__file__', '').endswith('setup.py') - - def spec_for_sensitive_tests(self): - """ - Ensure stdlib distutils when running select tests under CPython. - - python/cpython#91169 - """ - clear_distutils() - self.spec_for_distutils = lambda: None - - sensitive_tests = ( - [ - 'test.test_distutils', - 'test.test_peg_generator', - 'test.test_importlib', - ] - if sys.version_info < (3, 10) - else [ - 'test.test_distutils', - ] - ) - - -for name in DistutilsMetaFinder.sensitive_tests: - setattr( - DistutilsMetaFinder, - f'spec_for_{name}', - DistutilsMetaFinder.spec_for_sensitive_tests, - ) - - -DISTUTILS_FINDER = DistutilsMetaFinder() - - -def add_shim(): - DISTUTILS_FINDER in sys.meta_path or insert_shim() - - -class shim: - def __enter__(self) -> None: - insert_shim() - - def __exit__(self, exc: object, value: object, tb: object) -> None: - _remove_shim() - - -def insert_shim(): - sys.meta_path.insert(0, DISTUTILS_FINDER) - - -def _remove_shim(): - try: - sys.meta_path.remove(DISTUTILS_FINDER) - except ValueError: - pass - - -if sys.version_info < (3, 12): - # DistutilsMetaFinder can only be disabled in Python < 3.12 (PEP 632) - remove_shim = _remove_shim diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 8f14cf5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc deleted file mode 100644 index f637c2a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/override.py b/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/override.py deleted file mode 100644 index 2cc433a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/_distutils_hack/override.py +++ /dev/null @@ -1 +0,0 @@ -__import__('_distutils_hack').do_override() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__init__.py deleted file mode 100644 index 7baa8c4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -# This is a stub package designed to roughly emulate the _yaml -# extension module, which previously existed as a standalone module -# and has been moved into the `yaml` package namespace. -# It does not perfectly mimic its old counterpart, but should get -# close enough for anyone who's relying on it even when they shouldn't. -import yaml - -# in some circumstances, the yaml module we imoprted may be from a different version, so we need -# to tread carefully when poking at it here (it may not have the attributes we expect) -if not getattr(yaml, '__with_libyaml__', False): - from sys import version_info - - exc = ModuleNotFoundError if version_info >= (3, 6) else ImportError - raise exc("No module named '_yaml'") -else: - from yaml._yaml import * - import warnings - warnings.warn( - 'The _yaml extension module is now located at yaml._yaml' - ' and its location is subject to change. To use the' - ' LibYAML-based parser and emitter, import from `yaml`:' - ' `from yaml import CLoader as Loader, CDumper as Dumper`.', - DeprecationWarning - ) - del warnings - # Don't `del yaml` here because yaml is actually an existing - # namespace member of _yaml. - -__name__ = '_yaml' -# If the module is top-level (i.e. not a part of any specific package) -# then the attribute should be set to ''. -# https://docs.python.org/3.8/library/types.html -__package__ = '' diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ce88e4b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/_yaml/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/METADATA deleted file mode 100644 index d5356ba..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/METADATA +++ /dev/null @@ -1,123 +0,0 @@ -Metadata-Version: 2.4 -Name: aiosqlite -Version: 0.22.1 -Summary: asyncio bridge to the standard sqlite3 module -Author-email: Amethyst Reese -Requires-Python: >=3.9 -Description-Content-Type: text/x-rst -Classifier: Development Status :: 5 - Production/Stable -Classifier: Framework :: AsyncIO -Classifier: Intended Audience :: Developers -Classifier: License :: OSI Approved :: MIT License -Classifier: Topic :: Software Development :: Libraries -License-File: LICENSE -Requires-Dist: attribution==1.8.0 ; extra == "dev" -Requires-Dist: black==25.11.0 ; extra == "dev" -Requires-Dist: build>=1.2 ; extra == "dev" -Requires-Dist: coverage[toml]==7.10.7 ; extra == "dev" -Requires-Dist: flake8==7.3.0 ; extra == "dev" -Requires-Dist: flake8-bugbear==24.12.12 ; extra == "dev" -Requires-Dist: flit==3.12.0 ; extra == "dev" -Requires-Dist: mypy==1.19.0 ; extra == "dev" -Requires-Dist: ufmt==2.8.0 ; extra == "dev" -Requires-Dist: usort==1.0.8.post1 ; extra == "dev" -Requires-Dist: sphinx==8.1.3 ; extra == "docs" -Requires-Dist: sphinx-mdinclude==0.6.2 ; extra == "docs" -Project-URL: Documentation, https://aiosqlite.omnilib.dev -Project-URL: Github, https://github.com/omnilib/aiosqlite -Provides-Extra: dev -Provides-Extra: docs - -aiosqlite\: Sqlite for AsyncIO -============================== - -.. image:: https://readthedocs.org/projects/aiosqlite/badge/?version=latest - :target: https://aiosqlite.omnilib.dev/en/latest/?badge=latest - :alt: Documentation Status -.. image:: https://img.shields.io/pypi/v/aiosqlite.svg - :target: https://pypi.org/project/aiosqlite - :alt: PyPI Release -.. image:: https://img.shields.io/badge/change-log-blue - :target: https://github.com/omnilib/aiosqlite/blob/master/CHANGELOG.md - :alt: Changelog -.. image:: https://img.shields.io/pypi/l/aiosqlite.svg - :target: https://github.com/omnilib/aiosqlite/blob/master/LICENSE - :alt: MIT Licensed - -aiosqlite provides a friendly, async interface to sqlite databases. - -It replicates the standard ``sqlite3`` module, but with async versions -of all the standard connection and cursor methods, plus context managers for -automatically closing connections and cursors: - -.. code-block:: python - - async with aiosqlite.connect(...) as db: - await db.execute("INSERT INTO some_table ...") - await db.commit() - - async with db.execute("SELECT * FROM some_table") as cursor: - async for row in cursor: - ... - -It can also be used in the traditional, procedural manner: - -.. code-block:: python - - db = await aiosqlite.connect(...) - cursor = await db.execute('SELECT * FROM some_table') - row = await cursor.fetchone() - rows = await cursor.fetchall() - await cursor.close() - await db.close() - -aiosqlite also replicates most of the advanced features of ``sqlite3``: - -.. code-block:: python - - async with aiosqlite.connect(...) as db: - db.row_factory = aiosqlite.Row - async with db.execute('SELECT * FROM some_table') as cursor: - async for row in cursor: - value = row['column'] - - await db.execute('INSERT INTO foo some_table') - assert db.total_changes > 0 - - -Install -------- - -aiosqlite is compatible with Python 3.8 and newer. -You can install it from PyPI: - -.. code-block:: console - - $ pip install aiosqlite - - -Details -------- - -aiosqlite allows interaction with SQLite databases on the main AsyncIO event -loop without blocking execution of other coroutines while waiting for queries -or data fetches. It does this by using a single, shared thread per connection. -This thread executes all actions within a shared request queue to prevent -overlapping actions. - -Connection objects are proxies to the real connections, contain the shared -execution thread, and provide context managers to handle automatically closing -connections. Cursors are similarly proxies to the real cursors, and provide -async iterators to query results. - - -License -------- - -aiosqlite is copyright `Amethyst Reese `_, and licensed under the -MIT license. I am providing code in this repository to you under an open source -license. This is my personal repository; the license you receive to my code -is from me and not from my employer. See the `LICENSE`_ file for details. - -.. _LICENSE: https://github.com/omnilib/aiosqlite/blob/master/LICENSE - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/RECORD deleted file mode 100644 index 15e2be5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/RECORD +++ /dev/null @@ -1,27 +0,0 @@ -aiosqlite-0.22.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -aiosqlite-0.22.1.dist-info/METADATA,sha256=zzyMxzl2h_dGAlV6Pk9c4YBlkaYsgv6UybOW_YDRs5o,4311 -aiosqlite-0.22.1.dist-info/RECORD,, -aiosqlite-0.22.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -aiosqlite-0.22.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 -aiosqlite-0.22.1.dist-info/licenses/LICENSE,sha256=qwwXHcPvi_MlqEu3fYVUIfJhEzXd9uCIFrKSLE7cD3Y,1071 -aiosqlite/__init__.py,sha256=kjZKcYP2eZ3IbBEHQ0D_Owsk_-FlRGEjQWlbybOs8jk,888 -aiosqlite/__pycache__/__init__.cpython-311.pyc,, -aiosqlite/__pycache__/__version__.cpython-311.pyc,, -aiosqlite/__pycache__/context.cpython-311.pyc,, -aiosqlite/__pycache__/core.cpython-311.pyc,, -aiosqlite/__pycache__/cursor.cpython-311.pyc,, -aiosqlite/__version__.py,sha256=sEM7xBU6e8WQYHe3ESoQmkEbXGKrqXjrQ5ujl5zpyV0,157 -aiosqlite/context.py,sha256=9jJcPG_SGSshzNUwXy87C1__mrKGFbToX0UuOQ1uItQ,1448 -aiosqlite/core.py,sha256=eXar7Bxr1pQz3VShCD0t6zGpp_bwwvFtVzVdzS2opII,15095 -aiosqlite/cursor.py,sha256=X3k2gYJeo3yB84scDEAPFZpsC_rzjT8dT4p6W3MeezM,3476 -aiosqlite/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -aiosqlite/tests/__init__.py,sha256=sp0-HYboM6gOYrUxWy8xna-hdJyMUtKBvAKrpRBcDCE,90 -aiosqlite/tests/__main__.py,sha256=eZRuAxr1bwF9xAAqVjCi4vd1WFsFO35uyhtuVO0GjmY,162 -aiosqlite/tests/__pycache__/__init__.cpython-311.pyc,, -aiosqlite/tests/__pycache__/__main__.cpython-311.pyc,, -aiosqlite/tests/__pycache__/helpers.cpython-311.pyc,, -aiosqlite/tests/__pycache__/perf.cpython-311.pyc,, -aiosqlite/tests/__pycache__/smoke.cpython-311.pyc,, -aiosqlite/tests/helpers.py,sha256=MWC839FiX63TBmFiIjabXNx-4G5eWYnE5MiInKIAdJw,722 -aiosqlite/tests/perf.py,sha256=-ipnXSHidO6VBKEdLAOcGa3cKHU5ul1w8-ifDNtGbfA,7249 -aiosqlite/tests/smoke.py,sha256=k5mp4AOHheOO6wKL_bgdH1fenY6-ve6aew19ifmcIWA,19851 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/WHEEL deleted file mode 100644 index d8b9936..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: flit 3.12.0 -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/licenses/LICENSE deleted file mode 100644 index bbb5ba0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite-0.22.1.dist-info/licenses/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 Amethyst Reese - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__init__.py deleted file mode 100644 index 6e4ccb2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__init__.py +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -"""asyncio bridge to the standard sqlite3 module""" - -from sqlite3 import ( # pylint: disable=redefined-builtin - DatabaseError, - Error, - IntegrityError, - NotSupportedError, - OperationalError, - paramstyle, - ProgrammingError, - register_adapter, - register_converter, - Row, - sqlite_version, - sqlite_version_info, - Warning, -) - -__author__ = "Amethyst Reese" -from .__version__ import __version__ -from .core import connect, Connection, Cursor - -__all__ = [ - "__version__", - "paramstyle", - "register_adapter", - "register_converter", - "sqlite_version", - "sqlite_version_info", - "connect", - "Connection", - "Cursor", - "Row", - "Warning", - "Error", - "DatabaseError", - "IntegrityError", - "ProgrammingError", - "OperationalError", - "NotSupportedError", -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 75b91e9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__version__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__version__.cpython-311.pyc deleted file mode 100644 index 3d4c7d2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/__version__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/context.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/context.cpython-311.pyc deleted file mode 100644 index c3b8484..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/context.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/core.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/core.cpython-311.pyc deleted file mode 100644 index f6c7655..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/core.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/cursor.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/cursor.cpython-311.pyc deleted file mode 100644 index ac69bf9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__pycache__/cursor.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__version__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__version__.py deleted file mode 100644 index 4adc274..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/__version__.py +++ /dev/null @@ -1,7 +0,0 @@ -""" -This file is automatically generated by attribution. - -Do not edit manually. Get more info at https://attribution.omnilib.dev -""" - -__version__ = "0.22.1" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/context.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/context.py deleted file mode 100644 index 5afbaef..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/context.py +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - - -from collections.abc import Coroutine, Generator -from contextlib import AbstractAsyncContextManager -from functools import wraps -from typing import Any, Callable, TypeVar - -from .cursor import Cursor - -_T = TypeVar("_T") - - -class Result(AbstractAsyncContextManager[_T], Coroutine[Any, Any, _T]): - __slots__ = ("_coro", "_obj") - - def __init__(self, coro: Coroutine[Any, Any, _T]): - self._coro = coro - self._obj: _T - - def send(self, value) -> None: - return self._coro.send(value) - - def throw(self, typ, val=None, tb=None) -> None: - if val is None: - return self._coro.throw(typ) - - if tb is None: - return self._coro.throw(typ, val) - - return self._coro.throw(typ, val, tb) - - def close(self) -> None: - return self._coro.close() - - def __await__(self) -> Generator[Any, None, _T]: - return self._coro.__await__() - - async def __aenter__(self) -> _T: - self._obj = await self._coro - return self._obj - - async def __aexit__(self, exc_type, exc, tb) -> None: - if isinstance(self._obj, Cursor): - await self._obj.close() - - -def contextmanager( - method: Callable[..., Coroutine[Any, Any, _T]], -) -> Callable[..., Result[_T]]: - @wraps(method) - def wrapper(self, *args, **kwargs) -> Result[_T]: - return Result(method(self, *args, **kwargs)) - - return wrapper diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/core.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/core.py deleted file mode 100644 index fc2b79b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/core.py +++ /dev/null @@ -1,468 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -""" -Core implementation of aiosqlite proxies -""" - -import asyncio -import logging -import sqlite3 -from collections.abc import AsyncIterator, Generator, Iterable -from functools import partial -from pathlib import Path -from queue import Empty, Queue, SimpleQueue -from threading import Thread -from typing import Any, Callable, Literal, Optional, Union -from warnings import warn - -from .context import contextmanager -from .cursor import Cursor - -__all__ = ["connect", "Connection", "Cursor"] - -AuthorizerCallback = Callable[[int, str, str, str, str], int] - -LOG = logging.getLogger("aiosqlite") - - -IsolationLevel = Optional[Literal["DEFERRED", "IMMEDIATE", "EXCLUSIVE"]] - - -def set_result(fut: asyncio.Future, result: Any) -> None: - """Set the result of a future if it hasn't been set already.""" - if not fut.done(): - fut.set_result(result) - - -def set_exception(fut: asyncio.Future, e: BaseException) -> None: - """Set the exception of a future if it hasn't been set already.""" - if not fut.done(): - fut.set_exception(e) - - -_STOP_RUNNING_SENTINEL = object() -_TxQueue = SimpleQueue[tuple[Optional[asyncio.Future], Callable[[], Any]]] - - -def _connection_worker_thread(tx: _TxQueue): - """ - Execute function calls on a separate thread. - - :meta private: - """ - while True: - # Continues running until all queue items are processed, - # even after connection is closed (so we can finalize all - # futures) - - future, function = tx.get() - - try: - LOG.debug("executing %s", function) - result = function() - - if future: - future.get_loop().call_soon_threadsafe(set_result, future, result) - LOG.debug("operation %s completed", function) - - if result is _STOP_RUNNING_SENTINEL: - break - - except BaseException as e: # noqa B036 - LOG.debug("returning exception %s", e) - if future: - future.get_loop().call_soon_threadsafe(set_exception, future, e) - - -class Connection: - def __init__( - self, - connector: Callable[[], sqlite3.Connection], - iter_chunk_size: int, - loop: Optional[asyncio.AbstractEventLoop] = None, - ) -> None: - self._running = True - self._connection: Optional[sqlite3.Connection] = None - self._connector = connector - self._tx: _TxQueue = SimpleQueue() - self._iter_chunk_size = iter_chunk_size - self._thread = Thread(target=_connection_worker_thread, args=(self._tx,)) - - if loop is not None: - warn( - "aiosqlite.Connection no longer uses the `loop` parameter", - DeprecationWarning, - ) - - def __del__(self): - if self._connection is None: - return - - warn( - ( - f"{self!r} was deleted before being closed. " - "Please use 'async with' or '.close()' to close the connection properly." - ), - ResourceWarning, - stacklevel=1, - ) - - # Don't try to be creative here, the event loop may have already been closed. - # Simply stop the worker thread, and let the underlying sqlite3 connection - # be finalized by its own __del__. - self.stop() - - def stop(self) -> Optional[asyncio.Future]: - """Stop the background thread. Prefer `async with` or `await close()`""" - self._running = False - - def close_and_stop(): - if self._connection is not None: - self._connection.close() - self._connection = None - return _STOP_RUNNING_SENTINEL - - try: - future = asyncio.get_event_loop().create_future() - except Exception: - future = None - - self._tx.put_nowait((future, close_and_stop)) - return future - - @property - def _conn(self) -> sqlite3.Connection: - if self._connection is None: - raise ValueError("no active connection") - - return self._connection - - def _execute_insert(self, sql: str, parameters: Any) -> Optional[sqlite3.Row]: - cursor = self._conn.execute(sql, parameters) - cursor.execute("SELECT last_insert_rowid()") - return cursor.fetchone() - - def _execute_fetchall(self, sql: str, parameters: Any) -> Iterable[sqlite3.Row]: - cursor = self._conn.execute(sql, parameters) - return cursor.fetchall() - - async def _execute(self, fn, *args, **kwargs): - """Queue a function with the given arguments for execution.""" - if not self._running or not self._connection: - raise ValueError("Connection closed") - - function = partial(fn, *args, **kwargs) - future = asyncio.get_event_loop().create_future() - - self._tx.put_nowait((future, function)) - - return await future - - async def _connect(self) -> "Connection": - """Connect to the actual sqlite database.""" - if self._connection is None: - try: - future = asyncio.get_event_loop().create_future() - self._tx.put_nowait((future, self._connector)) - self._connection = await future - except BaseException: - self.stop() - self._connection = None - raise - - return self - - def __await__(self) -> Generator[Any, None, "Connection"]: - self._thread.start() - return self._connect().__await__() - - async def __aenter__(self) -> "Connection": - return await self - - async def __aexit__(self, exc_type, exc_val, exc_tb) -> None: - await self.close() - - @contextmanager - async def cursor(self) -> Cursor: - """Create an aiosqlite cursor wrapping a sqlite3 cursor object.""" - return Cursor(self, await self._execute(self._conn.cursor)) - - async def commit(self) -> None: - """Commit the current transaction.""" - await self._execute(self._conn.commit) - - async def rollback(self) -> None: - """Roll back the current transaction.""" - await self._execute(self._conn.rollback) - - async def close(self) -> None: - """Complete queued queries/cursors and close the connection.""" - - if self._connection is None: - return - - try: - await self._execute(self._conn.close) - except Exception: - LOG.info("exception occurred while closing connection") - raise - finally: - self._connection = None - future = self.stop() - if future: - await future - - @contextmanager - async def execute( - self, sql: str, parameters: Optional[Iterable[Any]] = None - ) -> Cursor: - """Helper to create a cursor and execute the given query.""" - if parameters is None: - parameters = [] - cursor = await self._execute(self._conn.execute, sql, parameters) - return Cursor(self, cursor) - - @contextmanager - async def execute_insert( - self, sql: str, parameters: Optional[Iterable[Any]] = None - ) -> Optional[sqlite3.Row]: - """Helper to insert and get the last_insert_rowid.""" - if parameters is None: - parameters = [] - return await self._execute(self._execute_insert, sql, parameters) - - @contextmanager - async def execute_fetchall( - self, sql: str, parameters: Optional[Iterable[Any]] = None - ) -> Iterable[sqlite3.Row]: - """Helper to execute a query and return all the data.""" - if parameters is None: - parameters = [] - return await self._execute(self._execute_fetchall, sql, parameters) - - @contextmanager - async def executemany( - self, sql: str, parameters: Iterable[Iterable[Any]] - ) -> Cursor: - """Helper to create a cursor and execute the given multiquery.""" - cursor = await self._execute(self._conn.executemany, sql, parameters) - return Cursor(self, cursor) - - @contextmanager - async def executescript(self, sql_script: str) -> Cursor: - """Helper to create a cursor and execute a user script.""" - cursor = await self._execute(self._conn.executescript, sql_script) - return Cursor(self, cursor) - - async def interrupt(self) -> None: - """Interrupt pending queries.""" - return self._conn.interrupt() - - async def create_function( - self, name: str, num_params: int, func: Callable, deterministic: bool = False - ) -> None: - """ - Create user-defined function that can be later used - within SQL statements. Must be run within the same thread - that query executions take place so instead of executing directly - against the connection, we defer this to `run` function. - - If ``deterministic`` is true, the created function is marked as deterministic, - which allows SQLite to perform additional optimizations. This flag is supported - by SQLite 3.8.3 or higher, ``NotSupportedError`` will be raised if used with - older versions. - """ - await self._execute( - self._conn.create_function, - name, - num_params, - func, - deterministic=deterministic, - ) - - @property - def in_transaction(self) -> bool: - return self._conn.in_transaction - - @property - def isolation_level(self) -> Optional[str]: - return self._conn.isolation_level - - @isolation_level.setter - def isolation_level(self, value: IsolationLevel) -> None: - self._conn.isolation_level = value - - @property - def row_factory(self) -> Optional[type]: - return self._conn.row_factory - - @row_factory.setter - def row_factory(self, factory: Optional[type]) -> None: - self._conn.row_factory = factory - - @property - def text_factory(self) -> Callable[[bytes], Any]: - return self._conn.text_factory - - @text_factory.setter - def text_factory(self, factory: Callable[[bytes], Any]) -> None: - self._conn.text_factory = factory - - @property - def total_changes(self) -> int: - return self._conn.total_changes - - async def enable_load_extension(self, value: bool) -> None: - await self._execute(self._conn.enable_load_extension, value) # type: ignore - - async def load_extension(self, path: str): - await self._execute(self._conn.load_extension, path) # type: ignore - - async def set_progress_handler( - self, handler: Callable[[], Optional[int]], n: int - ) -> None: - await self._execute(self._conn.set_progress_handler, handler, n) - - async def set_trace_callback(self, handler: Callable) -> None: - await self._execute(self._conn.set_trace_callback, handler) - - async def set_authorizer( - self, authorizer_callback: Optional[AuthorizerCallback] - ) -> None: - """ - Set an authorizer callback to control database access. - - The authorizer callback is invoked for each SQL statement that is prepared, - and controls whether specific operations are permitted. - - Example:: - - import sqlite3 - - def restrict_drops(action_code, arg1, arg2, db_name, trigger_name): - # Deny all DROP operations - if action_code == sqlite3.SQLITE_DROP_TABLE: - return sqlite3.SQLITE_DENY - # Allow everything else - return sqlite3.SQLITE_OK - - await conn.set_authorizer(restrict_drops) - - See ``sqlite3`` documentation for details: - https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.set_authorizer - - :param authorizer_callback: An optional callable that receives five arguments: - - - ``action_code`` (int): The action to be authorized (e.g., ``SQLITE_READ``) - - ``arg1`` (str): First argument, meaning depends on ``action_code`` - - ``arg2`` (str): Second argument, meaning depends on ``action_code`` - - ``db_name`` (str): Database name (e.g., ``"main"``, ``"temp"``) - - ``trigger_name`` (str): Name of trigger or view that is doing the access, - or ``None`` - - The callback should return: - - - ``SQLITE_OK`` (0): Allow the operation - - ``SQLITE_DENY`` (1): Deny the operation, raise ``sqlite3.DatabaseError`` - - ``SQLITE_IGNORE`` (2): Treat operation as no-op - - Pass ``None`` to remove the authorizer. - """ - await self._execute(self._conn.set_authorizer, authorizer_callback) - - async def iterdump(self) -> AsyncIterator[str]: - """ - Return an async iterator to dump the database in SQL text format. - - Example:: - - async for line in db.iterdump(): - ... - - """ - dump_queue: Queue = Queue() - - def dumper(): - try: - for line in self._conn.iterdump(): - dump_queue.put_nowait(line) - dump_queue.put_nowait(None) - - except Exception: - LOG.exception("exception while dumping db") - dump_queue.put_nowait(None) - raise - - fut = self._execute(dumper) - task = asyncio.ensure_future(fut) - - while True: - try: - line: Optional[str] = dump_queue.get_nowait() - if line is None: - break - yield line - - except Empty: - if task.done(): - LOG.warning("iterdump completed unexpectedly") - break - - await asyncio.sleep(0.01) - - await task - - async def backup( - self, - target: Union["Connection", sqlite3.Connection], - *, - pages: int = 0, - progress: Optional[Callable[[int, int, int], None]] = None, - name: str = "main", - sleep: float = 0.250, - ) -> None: - """ - Make a backup of the current database to the target database. - - Takes either a standard sqlite3 or aiosqlite Connection object as the target. - """ - if isinstance(target, Connection): - target = target._conn - - await self._execute( - self._conn.backup, - target, - pages=pages, - progress=progress, - name=name, - sleep=sleep, - ) - - -def connect( - database: Union[str, Path], - *, - iter_chunk_size=64, - loop: Optional[asyncio.AbstractEventLoop] = None, - **kwargs: Any, -) -> Connection: - """Create and return a connection proxy to the sqlite database.""" - - if loop is not None: - warn( - "aiosqlite.connect() no longer uses the `loop` parameter", - DeprecationWarning, - ) - - def connector() -> sqlite3.Connection: - if isinstance(database, str): - loc = database - elif isinstance(database, bytes): - loc = database.decode("utf-8") - else: - loc = str(database) - - return sqlite3.connect(loc, **kwargs) - - return Connection(connector, iter_chunk_size) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/cursor.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/cursor.py deleted file mode 100644 index 6932874..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/cursor.py +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -import sqlite3 -from collections.abc import AsyncIterator, Iterable -from typing import Any, Callable, Optional, TYPE_CHECKING - -if TYPE_CHECKING: - from .core import Connection - - -class Cursor: - def __init__(self, conn: "Connection", cursor: sqlite3.Cursor) -> None: - self.iter_chunk_size = conn._iter_chunk_size - self._conn = conn - self._cursor = cursor - - def __aiter__(self) -> AsyncIterator[sqlite3.Row]: - """The cursor proxy is also an async iterator.""" - return self._fetch_chunked() - - async def _fetch_chunked(self): - while True: - rows = await self.fetchmany(self.iter_chunk_size) - if not rows: - return - for row in rows: - yield row - - async def _execute(self, fn, *args, **kwargs): - """Execute the given function on the shared connection's thread.""" - return await self._conn._execute(fn, *args, **kwargs) - - async def execute( - self, sql: str, parameters: Optional[Iterable[Any]] = None - ) -> "Cursor": - """Execute the given query.""" - if parameters is None: - parameters = [] - await self._execute(self._cursor.execute, sql, parameters) - return self - - async def executemany( - self, sql: str, parameters: Iterable[Iterable[Any]] - ) -> "Cursor": - """Execute the given multiquery.""" - await self._execute(self._cursor.executemany, sql, parameters) - return self - - async def executescript(self, sql_script: str) -> "Cursor": - """Execute a user script.""" - await self._execute(self._cursor.executescript, sql_script) - return self - - async def fetchone(self) -> Optional[sqlite3.Row]: - """Fetch a single row.""" - return await self._execute(self._cursor.fetchone) - - async def fetchmany(self, size: Optional[int] = None) -> Iterable[sqlite3.Row]: - """Fetch up to `cursor.arraysize` number of rows.""" - args: tuple[int, ...] = () - if size is not None: - args = (size,) - return await self._execute(self._cursor.fetchmany, *args) - - async def fetchall(self) -> Iterable[sqlite3.Row]: - """Fetch all remaining rows.""" - return await self._execute(self._cursor.fetchall) - - async def close(self) -> None: - """Close the cursor.""" - await self._execute(self._cursor.close) - - @property - def rowcount(self) -> int: - return self._cursor.rowcount - - @property - def lastrowid(self) -> Optional[int]: - return self._cursor.lastrowid - - @property - def arraysize(self) -> int: - return self._cursor.arraysize - - @arraysize.setter - def arraysize(self, value: int) -> None: - self._cursor.arraysize = value - - @property - def description(self) -> tuple[tuple[str, None, None, None, None, None, None], ...]: - return self._cursor.description - - @property - def row_factory(self) -> Optional[Callable[[sqlite3.Cursor, sqlite3.Row], object]]: - return self._cursor.row_factory - - @row_factory.setter - def row_factory(self, factory: Optional[type]) -> None: - self._cursor.row_factory = factory - - @property - def connection(self) -> sqlite3.Connection: - return self._cursor.connection - - async def __aenter__(self): - return self - - async def __aexit__(self, exc_type, exc_val, exc_tb): - await self.close() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__init__.py deleted file mode 100644 index 8fc25e7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -from .smoke import SmokeTest diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__main__.py deleted file mode 100644 index 6c37ff1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__main__.py +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -import unittest - -if __name__ == "__main__": - unittest.main(module="aiosqlite.tests", verbosity=2) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0f549e5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index 05a5e4f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/helpers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/helpers.cpython-311.pyc deleted file mode 100644 index 193b25c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/helpers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/perf.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/perf.cpython-311.pyc deleted file mode 100644 index d3b92c1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/perf.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/smoke.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/smoke.cpython-311.pyc deleted file mode 100644 index 26f7baa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/__pycache__/smoke.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/helpers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/helpers.py deleted file mode 100644 index 06f32dc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/helpers.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -import logging -import sys - - -def setup_logger(): - log = logging.getLogger("") - log.setLevel(logging.INFO) - - logging.addLevelName(logging.ERROR, "E") - logging.addLevelName(logging.WARNING, "W") - logging.addLevelName(logging.INFO, "I") - logging.addLevelName(logging.DEBUG, "V") - - date_fmt = r"%H:%M:%S" - verbose_fmt = ( - "%(asctime)s,%(msecs)d %(levelname)s " - "%(module)s:%(funcName)s():%(lineno)d " - "%(message)s" - ) - - handler = logging.StreamHandler(sys.stdout) - handler.setLevel(logging.INFO) - handler.setFormatter(logging.Formatter(verbose_fmt, date_fmt)) - log.addHandler(handler) - - return log diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/perf.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/perf.py deleted file mode 100644 index 5cd13db..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/perf.py +++ /dev/null @@ -1,221 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -""" -Simple perf tests for aiosqlite and the asyncio run loop. -""" -import sqlite3 -import string -import tempfile -import time - -from unittest import IsolatedAsyncioTestCase as TestCase - -import aiosqlite -from .smoke import setup_logger - -TEST_DB = ":memory:" -TARGET = 2.0 -RESULTS = {} - - -def timed(fn, name=None): - """ - Decorator for perf testing a block of async code. - - Expects the wrapped function to return an async generator. - The generator should do setup, then yield when ready to start perf testing. - The decorator will then pump the generator repeatedly until the target - time has been reached, then close the generator and print perf results. - """ - - name = name or fn.__name__ - - async def wrapper(*args, **kwargs): - gen = fn(*args, **kwargs) - - await gen.asend(None) - count = 0 - before = time.time() - - while True: - count += 1 - value = time.time() - before < TARGET - try: - if value: - await gen.asend(value) - else: - await gen.aclose() - break - - except StopAsyncIteration: - break - - except Exception as e: - print(f"exception occurred: {e}") - return - - duration = time.time() - before - - RESULTS[name] = (count, duration) - - return wrapper - - -class PerfTest(TestCase): - @classmethod - def setUpClass(cls): - print(f"Running perf tests for at least {TARGET:.1f}s each...") - setup_logger() - - @classmethod - def tearDownClass(cls): - print(f"\n{'Perf Test':<25} Iterations Duration {'Rate':>11}") - for name in sorted(RESULTS): - count, duration = RESULTS[name] - rate = count / duration - name = name.replace("test_", "") - print(f"{name:<25} {count:>10} {duration:>7.1f}s {rate:>9.1f}/s") - - @timed - async def test_connection_memory(self): - while True: - yield - async with aiosqlite.connect(TEST_DB): - pass - - @timed - async def test_connection_file(self): - with tempfile.NamedTemporaryFile(delete=False) as tf: - path = tf.name - tf.close() - - async with aiosqlite.connect(path) as db: - await db.execute( - "create table perf (i integer primary key asc, k integer)" - ) - await db.execute("insert into perf (k) values (2), (3)") - await db.commit() - - while True: - yield - async with aiosqlite.connect(path): - pass - - @timed - async def test_atomics(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - await db.execute("insert into perf (k) values (2), (3)") - await db.commit() - - while True: - yield - async with db.execute("select last_insert_rowid()") as cursor: - await cursor.fetchone() - - @timed - async def test_inserts(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - await db.commit() - - while True: - yield - await db.execute("insert into perf (k) values (1), (2), (3)") - await db.commit() - - @timed - async def test_inserts_authorized(self): - def deny_drops(action_code, arg1, arg2, db_name, trigger_name): - if action_code == sqlite3.SQLITE_DROP_TABLE: - return sqlite3.SQLITE_DENY - return sqlite3.SQLITE_OK - - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - await db.set_authorizer(deny_drops) - await db.commit() - - while True: - yield - await db.execute("insert into perf (k) values (1), (2), (3)") - await db.commit() - - @timed - async def test_insert_ids(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - await db.commit() - - while True: - yield - cursor = await db.execute("insert into perf (k) values (1)") - await cursor.execute("select last_insert_rowid()") - await cursor.fetchone() - await db.commit() - - @timed - async def test_insert_macro_ids(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - await db.commit() - - while True: - yield - await db.execute_insert("insert into perf (k) values (1)") - await db.commit() - - @timed - async def test_select(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - for i in range(100): - await db.execute("insert into perf (k) values (%d)" % (i,)) - await db.commit() - - while True: - yield - cursor = await db.execute("select i, k from perf") - assert len(await cursor.fetchall()) == 100 - - @timed - async def test_select_macro(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute("create table perf (i integer primary key asc, k integer)") - for i in range(100): - await db.execute("insert into perf (k) values (%d)" % (i,)) - await db.commit() - - while True: - yield - assert len(await db.execute_fetchall("select i, k from perf")) == 100 - - async def test_iterable_cursor_perf(self): - async with aiosqlite.connect(TEST_DB) as db: - await db.execute( - "create table ic_perf (" - "i integer primary key asc, k integer, a integer, b integer, c char(16))" - ) - for batch in range(128): # add 128k rows - r_start = batch * 1024 - await db.executemany( - "insert into ic_perf (k, a, b, c) values(?, 1, 2, ?)", - [ - *[ - (i, string.ascii_lowercase) - for i in range(r_start, r_start + 1024) - ] - ], - ) - await db.commit() - - async def test_perf(chunk_size: int): - while True: - async with db.execute("SELECT * FROM ic_perf") as cursor: - cursor.iter_chunk_size = chunk_size - async for _ in cursor: - yield - - for chunk_size in [2**i for i in range(4, 11)]: - await timed(test_perf, f"iterable_cursor @ {chunk_size}")(chunk_size) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/smoke.py b/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/smoke.py deleted file mode 100644 index 046f9b7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/aiosqlite/tests/smoke.py +++ /dev/null @@ -1,537 +0,0 @@ -# Copyright Amethyst Reese -# Licensed under the MIT license - -import asyncio -import sqlite3 -import sys -from pathlib import Path -from sqlite3 import OperationalError -from tempfile import TemporaryDirectory -from threading import Thread -from unittest import IsolatedAsyncioTestCase, SkipTest -from unittest.mock import patch - -import aiosqlite -from .helpers import setup_logger - - -class SmokeTest(IsolatedAsyncioTestCase): - @classmethod - def setUpClass(cls): - setup_logger() - - def setUp(self): - td = TemporaryDirectory() - self.addCleanup(td.cleanup) - self.db = Path(td.name).resolve() / "test.db" - - async def test_connection_await(self): - db = await aiosqlite.connect(self.db) - self.assertIsInstance(db, aiosqlite.Connection) - - async with db.execute("select 1, 2") as cursor: - rows = await cursor.fetchall() - self.assertEqual(rows, [(1, 2)]) - - await db.close() - - async def test_connection_context(self): - async with aiosqlite.connect(self.db) as db: - self.assertIsInstance(db, aiosqlite.Connection) - - async with db.execute("select 1, 2") as cursor: - rows = await cursor.fetchall() - self.assertEqual(rows, [(1, 2)]) - - async def test_connection_locations(self): - TEST_DB = self.db.as_posix() - - class Fake: # pylint: disable=too-few-public-methods - def __str__(self): - return TEST_DB - - locs = (Path(TEST_DB), TEST_DB, TEST_DB.encode(), Fake()) - - async with aiosqlite.connect(locs[0]) as db: - await db.execute("create table foo (i integer, k integer)") - await db.execute("insert into foo (i, k) values (1, 5)") - await db.commit() - - cursor = await db.execute("select * from foo") - rows = await cursor.fetchall() - - for loc in locs: - async with aiosqlite.connect(loc) as db: - cursor = await db.execute("select * from foo") - self.assertEqual(await cursor.fetchall(), rows) - - async def test_multiple_connections(self): - async with aiosqlite.connect(self.db) as db: - await db.execute( - "create table multiple_connections " - "(i integer primary key asc, k integer)" - ) - - async def do_one_conn(i): - async with aiosqlite.connect(self.db) as db: - await db.execute("insert into multiple_connections (k) values (?)", [i]) - await db.commit() - - await asyncio.gather(*[do_one_conn(i) for i in range(10)]) - - async with aiosqlite.connect(self.db) as db: - cursor = await db.execute("select * from multiple_connections") - rows = await cursor.fetchall() - - assert len(rows) == 10 - - async def test_multiple_queries(self): - async with aiosqlite.connect(self.db) as db: - await db.execute( - "create table multiple_queries " - "(i integer primary key asc, k integer)" - ) - - await asyncio.gather( - *[ - db.execute("insert into multiple_queries (k) values (?)", [i]) - for i in range(10) - ] - ) - - await db.commit() - - async with aiosqlite.connect(self.db) as db: - cursor = await db.execute("select * from multiple_queries") - rows = await cursor.fetchall() - - assert len(rows) == 10 - - async def test_iterable_cursor(self): - async with aiosqlite.connect(self.db) as db: - cursor = await db.cursor() - await cursor.execute( - "create table iterable_cursor " "(i integer primary key asc, k integer)" - ) - await cursor.executemany( - "insert into iterable_cursor (k) values (?)", [[i] for i in range(10)] - ) - await db.commit() - - async with aiosqlite.connect(self.db) as db: - cursor = await db.execute("select * from iterable_cursor") - rows = [] - async for row in cursor: - rows.append(row) - - assert len(rows) == 10 - - async def test_multi_loop_usage(self): - results = {} - - def runner(k, conn): - async def query(): - async with conn.execute("select * from foo") as cursor: - rows = await cursor.fetchall() - self.assertEqual(len(rows), 2) - return rows - - with self.subTest(k): - loop = asyncio.new_event_loop() - rows = loop.run_until_complete(query()) - loop.close() - results[k] = rows - - async with aiosqlite.connect(":memory:") as db: - await db.execute("create table foo (id int, name varchar)") - await db.execute( - "insert into foo values (?, ?), (?, ?)", (1, "Sally", 2, "Janet") - ) - await db.commit() - - threads = [Thread(target=runner, args=(k, db)) for k in range(4)] - for thread in threads: - thread.start() - for thread in threads: - thread.join() - - self.assertEqual(len(results), 4) - for rows in results.values(): - self.assertEqual(len(rows), 2) - - async def test_context_cursor(self): - async with aiosqlite.connect(self.db) as db: - async with db.cursor() as cursor: - await cursor.execute( - "create table context_cursor " - "(i integer primary key asc, k integer)" - ) - await cursor.executemany( - "insert into context_cursor (k) values (?)", - [[i] for i in range(10)], - ) - await db.commit() - - async with aiosqlite.connect(self.db) as db: - async with db.execute("select * from context_cursor") as cursor: - rows = [] - async for row in cursor: - rows.append(row) - - assert len(rows) == 10 - - async def test_cursor_return_self(self): - async with aiosqlite.connect(self.db) as db: - cursor = await db.cursor() - - result = await cursor.execute( - "create table test_cursor_return_self (i integer, k integer)" - ) - self.assertEqual(result, cursor, "cursor execute returns itself") - - result = await cursor.executemany( - "insert into test_cursor_return_self values (?, ?)", [(1, 1), (2, 2)] - ) - self.assertEqual(result, cursor) - - result = await cursor.executescript( - "insert into test_cursor_return_self values (3, 3);" - "insert into test_cursor_return_self values (4, 4);" - "insert into test_cursor_return_self values (5, 5);" - ) - self.assertEqual(result, cursor) - - async def test_connection_properties(self): - async with aiosqlite.connect(self.db) as db: - self.assertEqual(db.total_changes, 0) - - async with db.cursor() as cursor: - self.assertFalse(db.in_transaction) - await cursor.execute( - "create table test_properties " - "(i integer primary key asc, k integer, d text)" - ) - await cursor.execute( - "insert into test_properties (k, d) values (1, 'hi')" - ) - self.assertTrue(db.in_transaction) - await db.commit() - self.assertFalse(db.in_transaction) - - self.assertEqual(db.total_changes, 1) - - self.assertIsNone(db.row_factory) - self.assertEqual(db.text_factory, str) - - async with db.cursor() as cursor: - await cursor.execute("select * from test_properties") - row = await cursor.fetchone() - self.assertIsInstance(row, tuple) - self.assertEqual(row, (1, 1, "hi")) - with self.assertRaises(TypeError): - _ = row["k"] - - async with db.cursor() as cursor: - cursor.row_factory = aiosqlite.Row - self.assertEqual(cursor.row_factory, aiosqlite.Row) - await cursor.execute("select * from test_properties") - row = await cursor.fetchone() - self.assertIsInstance(row, aiosqlite.Row) - self.assertEqual(row[1], 1) - self.assertEqual(row[2], "hi") - self.assertEqual(row["k"], 1) - self.assertEqual(row["d"], "hi") - - db.row_factory = aiosqlite.Row - db.text_factory = bytes - self.assertEqual(db.row_factory, aiosqlite.Row) - self.assertEqual(db.text_factory, bytes) - - async with db.cursor() as cursor: - await cursor.execute("select * from test_properties") - row = await cursor.fetchone() - self.assertIsInstance(row, aiosqlite.Row) - self.assertEqual(row[1], 1) - self.assertEqual(row[2], b"hi") - self.assertEqual(row["k"], 1) - self.assertEqual(row["d"], b"hi") - - async def test_fetch_all(self): - async with aiosqlite.connect(self.db) as db: - await db.execute( - "create table test_fetch_all (i integer primary key asc, k integer)" - ) - await db.execute( - "insert into test_fetch_all (k) values (10), (24), (16), (32)" - ) - await db.commit() - - async with aiosqlite.connect(self.db) as db: - cursor = await db.execute("select k from test_fetch_all where k < 30") - rows = await cursor.fetchall() - self.assertEqual(rows, [(10,), (24,), (16,)]) - - async def test_enable_load_extension(self): - """Assert that after enabling extension loading, they can be loaded""" - async with aiosqlite.connect(self.db) as db: - try: - await db.enable_load_extension(True) - await db.load_extension("test") - except OperationalError as e: - assert "not authorized" not in e.args - except AttributeError as e: - raise SkipTest( - "python was not compiled with sqlite3 " - "extension support, so we can't test it" - ) from e - - async def test_set_progress_handler(self): - """ - Assert that after setting a progress handler returning 1, DB operations are aborted - """ - async with aiosqlite.connect(self.db) as db: - await db.set_progress_handler(lambda: 1, 1) - with self.assertRaises(OperationalError): - await db.execute( - "create table test_progress_handler (i integer primary key asc, k integer)" - ) - - async def test_create_function(self): - """Assert that after creating a custom function, it can be used""" - - def no_arg(): - return "no arg" - - def one_arg(num): - return num * 2 - - async with aiosqlite.connect(self.db) as db: - await db.create_function("no_arg", 0, no_arg) - await db.create_function("one_arg", 1, one_arg) - - async with db.execute("SELECT no_arg();") as res: - row = await res.fetchone() - self.assertEqual(row[0], "no arg") - - async with db.execute("SELECT one_arg(10);") as res: - row = await res.fetchone() - self.assertEqual(row[0], 20) - - async def test_create_function_deterministic(self): - """Assert that after creating a deterministic custom function, it can be used. - - https://sqlite.org/deterministic.html - """ - - def one_arg(num): - return num * 2 - - async with aiosqlite.connect(self.db) as db: - await db.create_function("one_arg", 1, one_arg, deterministic=True) - await db.execute("create table foo (id int, bar int)") - - # Non-deterministic functions cannot be used in indexes - await db.execute("create index t on foo(one_arg(bar))") - - async def test_set_trace_callback(self): - statements = [] - - def callback(statement: str): - statements.append(statement) - - async with aiosqlite.connect(self.db) as db: - await db.set_trace_callback(callback) - - await db.execute("select 10") - self.assertIn("select 10", statements) - - async def test_set_authorizer_deny_drops(self): - """Test authorizer that denies DROP operations""" - - def deny_drops(action_code, arg1, arg2, db_name, trigger_name): - if action_code == sqlite3.SQLITE_DROP_TABLE: - return sqlite3.SQLITE_DENY - return sqlite3.SQLITE_OK - - async with aiosqlite.connect(self.db) as db: - await db.set_authorizer(deny_drops) - - # Other operations should succeed - await db.execute("CREATE TABLE test_drop (id INTEGER)") - await db.execute("INSERT INTO test_drop VALUES (1)") - await db.execute("SELECT * FROM test_drop") - - # DROP should fail - with self.assertRaises(sqlite3.DatabaseError): - await db.execute("DROP TABLE test_drop") - - if sys.version_info >= (3, 11): - # Disabling the authorizer re-enables DROP - await db.set_authorizer(None) - await db.execute("DROP TABLE test_drop") - - async def test_set_authorizer_exception_propagation(self): - """Test that exceptions raised in authorizer callback are caught by SQLite""" - - def raise_exception(action_code, arg1, arg2, db_name, trigger_name): - raise ValueError("Test exception from authorizer") - - async with aiosqlite.connect(self.db) as db: - await db.set_authorizer(raise_exception) - with self.assertRaises(sqlite3.DatabaseError): - await db.execute("CREATE TABLE test_exception (id INTEGER)") - - async def test_connect_error(self): - bad_db = Path("/something/that/shouldnt/exist.db") - with self.assertRaisesRegex(OperationalError, "unable to open database"): - async with aiosqlite.connect(bad_db) as db: - self.assertIsNone(db) # should never be reached - - with self.assertRaisesRegex(OperationalError, "unable to open database"): - await aiosqlite.connect(bad_db) - - async def test_connect_base_exception(self): - # Check if connect task is cancelled, thread is properly closed. - def _raise_cancelled_error(*_, **__): - raise asyncio.CancelledError("I changed my mind") - - connection = aiosqlite.Connection(lambda: sqlite3.connect(":memory:"), 64) - with ( - patch.object(sqlite3, "connect", side_effect=_raise_cancelled_error), - self.assertRaisesRegex(asyncio.CancelledError, "I changed my mind"), - ): - async with connection: - ... - # Terminate the thread here if the test fails to have a clear error. - if connection._running: - connection.stop() - raise AssertionError("connection thread was not stopped") - - async def test_iterdump(self): - async with aiosqlite.connect(":memory:") as db: - await db.execute("create table foo (i integer, k charvar(250))") - await db.executemany( - "insert into foo values (?, ?)", [(1, "hello"), (2, "world")] - ) - - lines = [line async for line in db.iterdump()] - self.assertEqual( - lines, - [ - "BEGIN TRANSACTION;", - "CREATE TABLE foo (i integer, k charvar(250));", - "INSERT INTO \"foo\" VALUES(1,'hello');", - "INSERT INTO \"foo\" VALUES(2,'world');", - "COMMIT;", - ], - ) - - async def test_cursor_on_closed_connection(self): - db = await aiosqlite.connect(self.db) - - cursor = await db.execute("select 1, 2") - await db.close() - with self.assertRaisesRegex(ValueError, "Connection closed"): - await cursor.fetchall() - with self.assertRaisesRegex(ValueError, "Connection closed"): - await cursor.fetchall() - - async def test_cursor_on_closed_connection_loop(self): - db = await aiosqlite.connect(self.db) - - cursor = await db.execute("select 1, 2") - tasks = [] - for i in range(100): - if i == 50: - tasks.append(asyncio.ensure_future(db.close())) - tasks.append(asyncio.ensure_future(cursor.fetchall())) - for task in tasks: - try: - await task - except sqlite3.ProgrammingError: - pass - - async def test_close_blocking_until_transaction_queue_empty(self): - db = await aiosqlite.connect(self.db) - # Insert transactions into the - # transaction queue '_tx' - for i in range(1000): - await db.execute(f"select 1, {i}") - # Wait for all transactions to complete - await db.close() - # Check no more transaction pending - self.assertEqual(db._tx.empty(), True) - - async def test_close_twice(self): - db = await aiosqlite.connect(self.db) - - await db.close() - - # no error - await db.close() - - async def test_backup_aiosqlite(self): - def progress(a, b, c): - print(a, b, c) - - async with ( - aiosqlite.connect(":memory:") as db1, - aiosqlite.connect(":memory:") as db2, - ): - await db1.execute("create table foo (i integer, k charvar(250))") - await db1.executemany( - "insert into foo values (?, ?)", [(1, "hello"), (2, "world")] - ) - await db1.commit() - - with self.assertRaisesRegex(OperationalError, "no such table: foo"): - await db2.execute("select * from foo") - - await db1.backup(db2, progress=progress) - - async with db2.execute("select * from foo") as cursor: - rows = await cursor.fetchall() - self.assertEqual(rows, [(1, "hello"), (2, "world")]) - - async def test_backup_sqlite(self): - async with aiosqlite.connect(":memory:") as db1: - with sqlite3.connect(":memory:") as db2: - await db1.execute("create table foo (i integer, k charvar(250))") - await db1.executemany( - "insert into foo values (?, ?)", [(1, "hello"), (2, "world")] - ) - await db1.commit() - - with self.assertRaisesRegex(OperationalError, "no such table: foo"): - db2.execute("select * from foo") - - await db1.backup(db2) - - cursor = db2.execute("select * from foo") - rows = cursor.fetchall() - self.assertEqual(rows, [(1, "hello"), (2, "world")]) - - async def test_emits_warning_when_left_open(self): - db = await aiosqlite.connect(":memory:") - - with self.assertWarnsRegex( - ResourceWarning, r".*was deleted before being closed.*" - ): - del db - - async def test_stop_without_close(self): - db = await aiosqlite.connect(":memory:") - await db.stop() - - def test_stop_after_event_loop_closed(self): - db = None - - async def inner(): - nonlocal db - db = await aiosqlite.connect(":memory:") - - loop = asyncio.new_event_loop() - loop.run_until_complete(inner()) - loop.close() - - db.stop() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/METADATA deleted file mode 100644 index 9bf7a9e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/METADATA +++ /dev/null @@ -1,145 +0,0 @@ -Metadata-Version: 2.4 -Name: annotated-doc -Version: 0.0.4 -Summary: Document parameters, class attributes, return types, and variables inline, with Annotated. -Author-Email: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= -License-Expression: MIT -License-File: LICENSE -Classifier: Intended Audience :: Information Technology -Classifier: Intended Audience :: System Administrators -Classifier: Operating System :: OS Independent -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python -Classifier: Topic :: Internet -Classifier: Topic :: Software Development :: Libraries :: Application Frameworks -Classifier: Topic :: Software Development :: Libraries :: Python Modules -Classifier: Topic :: Software Development :: Libraries -Classifier: Topic :: Software Development -Classifier: Typing :: Typed -Classifier: Development Status :: 4 - Beta -Classifier: Intended Audience :: Developers -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.8 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: Programming Language :: Python :: 3.14 -Project-URL: Homepage, https://github.com/fastapi/annotated-doc -Project-URL: Documentation, https://github.com/fastapi/annotated-doc -Project-URL: Repository, https://github.com/fastapi/annotated-doc -Project-URL: Issues, https://github.com/fastapi/annotated-doc/issues -Project-URL: Changelog, https://github.com/fastapi/annotated-doc/release-notes.md -Requires-Python: >=3.8 -Description-Content-Type: text/markdown - -# Annotated Doc - -Document parameters, class attributes, return types, and variables inline, with `Annotated`. - - - Test - - - Coverage - - - Package version - - - Supported Python versions - - -## Installation - -```bash -pip install annotated-doc -``` - -Or with `uv`: - -```Python -uv add annotated-doc -``` - -## Usage - -Import `Doc` and pass a single literal string with the documentation for the specific parameter, class attribute, return type, or variable. - -For example, to document a parameter `name` in a function `hi` you could do: - -```Python -from typing import Annotated - -from annotated_doc import Doc - -def hi(name: Annotated[str, Doc("Who to say hi to")]) -> None: - print(f"Hi, {name}!") -``` - -You can also use it to document class attributes: - -```Python -from typing import Annotated - -from annotated_doc import Doc - -class User: - name: Annotated[str, Doc("The user's name")] - age: Annotated[int, Doc("The user's age")] -``` - -The same way, you could document return types and variables, or anything that could have a type annotation with `Annotated`. - -## Who Uses This - -`annotated-doc` was made for: - -* [FastAPI](https://fastapi.tiangolo.com/) -* [Typer](https://typer.tiangolo.com/) -* [SQLModel](https://sqlmodel.tiangolo.com/) -* [Asyncer](https://asyncer.tiangolo.com/) - -`annotated-doc` is supported by [griffe-typingdoc](https://github.com/mkdocstrings/griffe-typingdoc), which powers reference documentation like the one in the [FastAPI Reference](https://fastapi.tiangolo.com/reference/). - -## Reasons not to use `annotated-doc` - -You are already comfortable with one of the existing docstring formats, like: - -* Sphinx -* numpydoc -* Google -* Keras - -Your team is already comfortable using them. - -You prefer having the documentation about parameters all together in a docstring, separated from the code defining them. - -You care about a specific set of users, using one specific editor, and that editor already has support for the specific docstring format you use. - -## Reasons to use `annotated-doc` - -* No micro-syntax to learn for newcomers, it’s **just Python** syntax. -* **Editing** would be already fully supported by default by any editor (current or future) supporting Python syntax, including syntax errors, syntax highlighting, etc. -* **Rendering** would be relatively straightforward to implement by static tools (tools that don't need runtime execution), as the information can be extracted from the AST they normally already create. -* **Deduplication of information**: the name of a parameter would be defined in a single place, not duplicated inside of a docstring. -* **Elimination** of the possibility of having **inconsistencies** when removing a parameter or class variable and **forgetting to remove** its documentation. -* **Minimization** of the probability of adding a new parameter or class variable and **forgetting to add its documentation**. -* **Elimination** of the possibility of having **inconsistencies** between the **name** of a parameter in the **signature** and the name in the docstring when it is renamed. -* **Access** to the documentation string for each symbol at **runtime**, including existing (older) Python versions. -* A more formalized way to document other symbols, like type aliases, that could use Annotated. -* **Support** for apps using FastAPI, Typer and others. -* **AI Accessibility**: AI tools will have an easier way understanding each parameter as the distance from documentation to parameter is much closer. - -## History - -I ([@tiangolo](https://github.com/tiangolo)) originally wanted for this to be part of the Python standard library (in [PEP 727](https://peps.python.org/pep-0727/)), but the proposal was withdrawn as there was a fair amount of negative feedback and opposition. - -The conclusion was that this was better done as an external effort, in a third-party library. - -So, here it is, with a simpler approach, as a third-party library, in a way that can be used by others, starting with FastAPI and friends. - -## License - -This project is licensed under the terms of the MIT license. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/RECORD deleted file mode 100644 index e46a002..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/RECORD +++ /dev/null @@ -1,11 +0,0 @@ -annotated_doc-0.0.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -annotated_doc-0.0.4.dist-info/METADATA,sha256=Irm5KJua33dY2qKKAjJ-OhKaVBVIfwFGej_dSe3Z1TU,6566 -annotated_doc-0.0.4.dist-info/RECORD,, -annotated_doc-0.0.4.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90 -annotated_doc-0.0.4.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34 -annotated_doc-0.0.4.dist-info/licenses/LICENSE,sha256=__Fwd5pqy_ZavbQFwIfxzuF4ZpHkqWpANFF-SlBKDN8,1086 -annotated_doc/__init__.py,sha256=VuyxxUe80kfEyWnOrCx_Bk8hybo3aKo6RYBlkBBYW8k,52 -annotated_doc/__pycache__/__init__.cpython-311.pyc,, -annotated_doc/__pycache__/main.cpython-311.pyc,, -annotated_doc/main.py,sha256=5Zfvxv80SwwLqpRW73AZyZyiM4bWma9QWRbp_cgD20s,1075 -annotated_doc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/WHEEL deleted file mode 100644 index 045c8ac..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: pdm-backend (2.4.5) -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/entry_points.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/entry_points.txt deleted file mode 100644 index c3ad472..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/entry_points.txt +++ /dev/null @@ -1,4 +0,0 @@ -[console_scripts] - -[gui_scripts] - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/licenses/LICENSE deleted file mode 100644 index 7a25446..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc-0.0.4.dist-info/licenses/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2025 Sebastián Ramírez - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__init__.py deleted file mode 100644 index a0152a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from .main import Doc as Doc - -__version__ = "0.0.4" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4934473..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/main.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/main.cpython-311.pyc deleted file mode 100644 index f232391..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/main.py b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/main.py deleted file mode 100644 index 7063c59..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/main.py +++ /dev/null @@ -1,36 +0,0 @@ -class Doc: - """Define the documentation of a type annotation using `Annotated`, to be - used in class attributes, function and method parameters, return values, - and variables. - - The value should be a positional-only string literal to allow static tools - like editors and documentation generators to use it. - - This complements docstrings. - - The string value passed is available in the attribute `documentation`. - - Example: - - ```Python - from typing import Annotated - from annotated_doc import Doc - - def hi(name: Annotated[str, Doc("Who to say hi to")]) -> None: - print(f"Hi, {name}!") - ``` - """ - - def __init__(self, documentation: str, /) -> None: - self.documentation = documentation - - def __repr__(self) -> str: - return f"Doc({self.documentation!r})" - - def __hash__(self) -> int: - return hash(self.documentation) - - def __eq__(self, other: object) -> bool: - if not isinstance(other, Doc): - return NotImplemented - return self.documentation == other.documentation diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_doc/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA deleted file mode 100644 index 3ac05cf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA +++ /dev/null @@ -1,295 +0,0 @@ -Metadata-Version: 2.3 -Name: annotated-types -Version: 0.7.0 -Summary: Reusable constraint types to use with typing.Annotated -Project-URL: Homepage, https://github.com/annotated-types/annotated-types -Project-URL: Source, https://github.com/annotated-types/annotated-types -Project-URL: Changelog, https://github.com/annotated-types/annotated-types/releases -Author-email: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin , Zac Hatfield-Dodds -License-File: LICENSE -Classifier: Development Status :: 4 - Beta -Classifier: Environment :: Console -Classifier: Environment :: MacOS X -Classifier: Intended Audience :: Developers -Classifier: Intended Audience :: Information Technology -Classifier: License :: OSI Approved :: MIT License -Classifier: Operating System :: POSIX :: Linux -Classifier: Operating System :: Unix -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.8 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Topic :: Software Development :: Libraries :: Python Modules -Classifier: Typing :: Typed -Requires-Python: >=3.8 -Requires-Dist: typing-extensions>=4.0.0; python_version < '3.9' -Description-Content-Type: text/markdown - -# annotated-types - -[![CI](https://github.com/annotated-types/annotated-types/workflows/CI/badge.svg?event=push)](https://github.com/annotated-types/annotated-types/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) -[![pypi](https://img.shields.io/pypi/v/annotated-types.svg)](https://pypi.python.org/pypi/annotated-types) -[![versions](https://img.shields.io/pypi/pyversions/annotated-types.svg)](https://github.com/annotated-types/annotated-types) -[![license](https://img.shields.io/github/license/annotated-types/annotated-types.svg)](https://github.com/annotated-types/annotated-types/blob/main/LICENSE) - -[PEP-593](https://peps.python.org/pep-0593/) added `typing.Annotated` as a way of -adding context-specific metadata to existing types, and specifies that -`Annotated[T, x]` _should_ be treated as `T` by any tool or library without special -logic for `x`. - -This package provides metadata objects which can be used to represent common -constraints such as upper and lower bounds on scalar values and collection sizes, -a `Predicate` marker for runtime checks, and -descriptions of how we intend these metadata to be interpreted. In some cases, -we also note alternative representations which do not require this package. - -## Install - -```bash -pip install annotated-types -``` - -## Examples - -```python -from typing import Annotated -from annotated_types import Gt, Len, Predicate - -class MyClass: - age: Annotated[int, Gt(18)] # Valid: 19, 20, ... - # Invalid: 17, 18, "19", 19.0, ... - factors: list[Annotated[int, Predicate(is_prime)]] # Valid: 2, 3, 5, 7, 11, ... - # Invalid: 4, 8, -2, 5.0, "prime", ... - - my_list: Annotated[list[int], Len(0, 10)] # Valid: [], [10, 20, 30, 40, 50] - # Invalid: (1, 2), ["abc"], [0] * 20 -``` - -## Documentation - -_While `annotated-types` avoids runtime checks for performance, users should not -construct invalid combinations such as `MultipleOf("non-numeric")` or `Annotated[int, Len(3)]`. -Downstream implementors may choose to raise an error, emit a warning, silently ignore -a metadata item, etc., if the metadata objects described below are used with an -incompatible type - or for any other reason!_ - -### Gt, Ge, Lt, Le - -Express inclusive and/or exclusive bounds on orderable values - which may be numbers, -dates, times, strings, sets, etc. Note that the boundary value need not be of the -same type that was annotated, so long as they can be compared: `Annotated[int, Gt(1.5)]` -is fine, for example, and implies that the value is an integer x such that `x > 1.5`. - -We suggest that implementors may also interpret `functools.partial(operator.le, 1.5)` -as being equivalent to `Gt(1.5)`, for users who wish to avoid a runtime dependency on -the `annotated-types` package. - -To be explicit, these types have the following meanings: - -* `Gt(x)` - value must be "Greater Than" `x` - equivalent to exclusive minimum -* `Ge(x)` - value must be "Greater than or Equal" to `x` - equivalent to inclusive minimum -* `Lt(x)` - value must be "Less Than" `x` - equivalent to exclusive maximum -* `Le(x)` - value must be "Less than or Equal" to `x` - equivalent to inclusive maximum - -### Interval - -`Interval(gt, ge, lt, le)` allows you to specify an upper and lower bound with a single -metadata object. `None` attributes should be ignored, and non-`None` attributes -treated as per the single bounds above. - -### MultipleOf - -`MultipleOf(multiple_of=x)` might be interpreted in two ways: - -1. Python semantics, implying `value % multiple_of == 0`, or -2. [JSONschema semantics](https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.2.1), - where `int(value / multiple_of) == value / multiple_of`. - -We encourage users to be aware of these two common interpretations and their -distinct behaviours, especially since very large or non-integer numbers make -it easy to cause silent data corruption due to floating-point imprecision. - -We encourage libraries to carefully document which interpretation they implement. - -### MinLen, MaxLen, Len - -`Len()` implies that `min_length <= len(value) <= max_length` - lower and upper bounds are inclusive. - -As well as `Len()` which can optionally include upper and lower bounds, we also -provide `MinLen(x)` and `MaxLen(y)` which are equivalent to `Len(min_length=x)` -and `Len(max_length=y)` respectively. - -`Len`, `MinLen`, and `MaxLen` may be used with any type which supports `len(value)`. - -Examples of usage: - -* `Annotated[list, MaxLen(10)]` (or `Annotated[list, Len(max_length=10))`) - list must have a length of 10 or less -* `Annotated[str, MaxLen(10)]` - string must have a length of 10 or less -* `Annotated[list, MinLen(3))` (or `Annotated[list, Len(min_length=3))`) - list must have a length of 3 or more -* `Annotated[list, Len(4, 6)]` - list must have a length of 4, 5, or 6 -* `Annotated[list, Len(8, 8)]` - list must have a length of exactly 8 - -#### Changed in v0.4.0 - -* `min_inclusive` has been renamed to `min_length`, no change in meaning -* `max_exclusive` has been renamed to `max_length`, upper bound is now **inclusive** instead of **exclusive** -* The recommendation that slices are interpreted as `Len` has been removed due to ambiguity and different semantic - meaning of the upper bound in slices vs. `Len` - -See [issue #23](https://github.com/annotated-types/annotated-types/issues/23) for discussion. - -### Timezone - -`Timezone` can be used with a `datetime` or a `time` to express which timezones -are allowed. `Annotated[datetime, Timezone(None)]` must be a naive datetime. -`Timezone[...]` ([literal ellipsis](https://docs.python.org/3/library/constants.html#Ellipsis)) -expresses that any timezone-aware datetime is allowed. You may also pass a specific -timezone string or [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) -object such as `Timezone(timezone.utc)` or `Timezone("Africa/Abidjan")` to express that you only -allow a specific timezone, though we note that this is often a symptom of fragile design. - -#### Changed in v0.x.x - -* `Timezone` accepts [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) objects instead of - `timezone`, extending compatibility to [`zoneinfo`](https://docs.python.org/3/library/zoneinfo.html) and third party libraries. - -### Unit - -`Unit(unit: str)` expresses that the annotated numeric value is the magnitude of -a quantity with the specified unit. For example, `Annotated[float, Unit("m/s")]` -would be a float representing a velocity in meters per second. - -Please note that `annotated_types` itself makes no attempt to parse or validate -the unit string in any way. That is left entirely to downstream libraries, -such as [`pint`](https://pint.readthedocs.io) or -[`astropy.units`](https://docs.astropy.org/en/stable/units/). - -An example of how a library might use this metadata: - -```python -from annotated_types import Unit -from typing import Annotated, TypeVar, Callable, Any, get_origin, get_args - -# given a type annotated with a unit: -Meters = Annotated[float, Unit("m")] - - -# you can cast the annotation to a specific unit type with any -# callable that accepts a string and returns the desired type -T = TypeVar("T") -def cast_unit(tp: Any, unit_cls: Callable[[str], T]) -> T | None: - if get_origin(tp) is Annotated: - for arg in get_args(tp): - if isinstance(arg, Unit): - return unit_cls(arg.unit) - return None - - -# using `pint` -import pint -pint_unit = cast_unit(Meters, pint.Unit) - - -# using `astropy.units` -import astropy.units as u -astropy_unit = cast_unit(Meters, u.Unit) -``` - -### Predicate - -`Predicate(func: Callable)` expresses that `func(value)` is truthy for valid values. -Users should prefer the statically inspectable metadata above, but if you need -the full power and flexibility of arbitrary runtime predicates... here it is. - -For some common constraints, we provide generic types: - -* `IsLower = Annotated[T, Predicate(str.islower)]` -* `IsUpper = Annotated[T, Predicate(str.isupper)]` -* `IsDigit = Annotated[T, Predicate(str.isdigit)]` -* `IsFinite = Annotated[T, Predicate(math.isfinite)]` -* `IsNotFinite = Annotated[T, Predicate(Not(math.isfinite))]` -* `IsNan = Annotated[T, Predicate(math.isnan)]` -* `IsNotNan = Annotated[T, Predicate(Not(math.isnan))]` -* `IsInfinite = Annotated[T, Predicate(math.isinf)]` -* `IsNotInfinite = Annotated[T, Predicate(Not(math.isinf))]` - -so that you can write e.g. `x: IsFinite[float] = 2.0` instead of the longer -(but exactly equivalent) `x: Annotated[float, Predicate(math.isfinite)] = 2.0`. - -Some libraries might have special logic to handle known or understandable predicates, -for example by checking for `str.isdigit` and using its presence to both call custom -logic to enforce digit-only strings, and customise some generated external schema. -Users are therefore encouraged to avoid indirection like `lambda s: s.lower()`, in -favor of introspectable methods such as `str.lower` or `re.compile("pattern").search`. - -To enable basic negation of commonly used predicates like `math.isnan` without introducing introspection that makes it impossible for implementers to introspect the predicate we provide a `Not` wrapper that simply negates the predicate in an introspectable manner. Several of the predicates listed above are created in this manner. - -We do not specify what behaviour should be expected for predicates that raise -an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently -skip invalid constraints, or statically raise an error; or it might try calling it -and then propagate or discard the resulting -`TypeError: descriptor 'isdigit' for 'str' objects doesn't apply to a 'int' object` -exception. We encourage libraries to document the behaviour they choose. - -### Doc - -`doc()` can be used to add documentation information in `Annotated`, for function and method parameters, variables, class attributes, return types, and any place where `Annotated` can be used. - -It expects a value that can be statically analyzed, as the main use case is for static analysis, editors, documentation generators, and similar tools. - -It returns a `DocInfo` class with a single attribute `documentation` containing the value passed to `doc()`. - -This is the early adopter's alternative form of the [`typing-doc` proposal](https://github.com/tiangolo/fastapi/blob/typing-doc/typing_doc.md). - -### Integrating downstream types with `GroupedMetadata` - -Implementers may choose to provide a convenience wrapper that groups multiple pieces of metadata. -This can help reduce verbosity and cognitive overhead for users. -For example, an implementer like Pydantic might provide a `Field` or `Meta` type that accepts keyword arguments and transforms these into low-level metadata: - -```python -from dataclasses import dataclass -from typing import Iterator -from annotated_types import GroupedMetadata, Ge - -@dataclass -class Field(GroupedMetadata): - ge: int | None = None - description: str | None = None - - def __iter__(self) -> Iterator[object]: - # Iterating over a GroupedMetadata object should yield annotated-types - # constraint metadata objects which describe it as fully as possible, - # and may include other unknown objects too. - if self.ge is not None: - yield Ge(self.ge) - if self.description is not None: - yield Description(self.description) -``` - -Libraries consuming annotated-types constraints should check for `GroupedMetadata` and unpack it by iterating over the object and treating the results as if they had been "unpacked" in the `Annotated` type. The same logic should be applied to the [PEP 646 `Unpack` type](https://peps.python.org/pep-0646/), so that `Annotated[T, Field(...)]`, `Annotated[T, Unpack[Field(...)]]` and `Annotated[T, *Field(...)]` are all treated consistently. - -Libraries consuming annotated-types should also ignore any metadata they do not recongize that came from unpacking a `GroupedMetadata`, just like they ignore unrecognized metadata in `Annotated` itself. - -Our own `annotated_types.Interval` class is a `GroupedMetadata` which unpacks itself into `Gt`, `Lt`, etc., so this is not an abstract concern. Similarly, `annotated_types.Len` is a `GroupedMetadata` which unpacks itself into `MinLen` (optionally) and `MaxLen`. - -### Consuming metadata - -We intend to not be prescriptive as to _how_ the metadata and constraints are used, but as an example of how one might parse constraints from types annotations see our [implementation in `test_main.py`](https://github.com/annotated-types/annotated-types/blob/f59cf6d1b5255a0fe359b93896759a180bec30ae/tests/test_main.py#L94-L103). - -It is up to the implementer to determine how this metadata is used. -You could use the metadata for runtime type checking, for generating schemas or to generate example data, amongst other use cases. - -## Design & History - -This package was designed at the PyCon 2022 sprints by the maintainers of Pydantic -and Hypothesis, with the goal of making it as easy as possible for end-users to -provide more informative annotations for use by runtime libraries. - -It is deliberately minimal, and following PEP-593 allows considerable downstream -discretion in what (if anything!) they choose to support. Nonetheless, we expect -that staying simple and covering _only_ the most common use-cases will give users -and maintainers the best experience we can. If you'd like more constraints for your -types - follow our lead, by defining them and documenting them downstream! diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD deleted file mode 100644 index cb983b0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD +++ /dev/null @@ -1,10 +0,0 @@ -annotated_types-0.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -annotated_types-0.7.0.dist-info/METADATA,sha256=7ltqxksJJ0wCYFGBNIQCWTlWQGeAH0hRFdnK3CB895E,15046 -annotated_types-0.7.0.dist-info/RECORD,, -annotated_types-0.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87 -annotated_types-0.7.0.dist-info/licenses/LICENSE,sha256=_hBJiEsaDZNCkB6I4H8ykl0ksxIdmXK2poBfuYJLCV0,1083 -annotated_types/__init__.py,sha256=RynLsRKUEGI0KimXydlD1fZEfEzWwDo0Uon3zOKhG1Q,13819 -annotated_types/__pycache__/__init__.cpython-311.pyc,, -annotated_types/__pycache__/test_cases.cpython-311.pyc,, -annotated_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -annotated_types/test_cases.py,sha256=zHFX6EpcMbGJ8FzBYDbO56bPwx_DYIVSKbZM-4B3_lg,6421 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL deleted file mode 100644 index 516596c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: hatchling 1.24.2 -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE deleted file mode 100644 index d99323a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2022 the contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__init__.py deleted file mode 100644 index 74e0dee..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__init__.py +++ /dev/null @@ -1,432 +0,0 @@ -import math -import sys -import types -from dataclasses import dataclass -from datetime import tzinfo -from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, SupportsFloat, SupportsIndex, TypeVar, Union - -if sys.version_info < (3, 8): - from typing_extensions import Protocol, runtime_checkable -else: - from typing import Protocol, runtime_checkable - -if sys.version_info < (3, 9): - from typing_extensions import Annotated, Literal -else: - from typing import Annotated, Literal - -if sys.version_info < (3, 10): - EllipsisType = type(Ellipsis) - KW_ONLY = {} - SLOTS = {} -else: - from types import EllipsisType - - KW_ONLY = {"kw_only": True} - SLOTS = {"slots": True} - - -__all__ = ( - 'BaseMetadata', - 'GroupedMetadata', - 'Gt', - 'Ge', - 'Lt', - 'Le', - 'Interval', - 'MultipleOf', - 'MinLen', - 'MaxLen', - 'Len', - 'Timezone', - 'Predicate', - 'LowerCase', - 'UpperCase', - 'IsDigits', - 'IsFinite', - 'IsNotFinite', - 'IsNan', - 'IsNotNan', - 'IsInfinite', - 'IsNotInfinite', - 'doc', - 'DocInfo', - '__version__', -) - -__version__ = '0.7.0' - - -T = TypeVar('T') - - -# arguments that start with __ are considered -# positional only -# see https://peps.python.org/pep-0484/#positional-only-arguments - - -class SupportsGt(Protocol): - def __gt__(self: T, __other: T) -> bool: - ... - - -class SupportsGe(Protocol): - def __ge__(self: T, __other: T) -> bool: - ... - - -class SupportsLt(Protocol): - def __lt__(self: T, __other: T) -> bool: - ... - - -class SupportsLe(Protocol): - def __le__(self: T, __other: T) -> bool: - ... - - -class SupportsMod(Protocol): - def __mod__(self: T, __other: T) -> T: - ... - - -class SupportsDiv(Protocol): - def __div__(self: T, __other: T) -> T: - ... - - -class BaseMetadata: - """Base class for all metadata. - - This exists mainly so that implementers - can do `isinstance(..., BaseMetadata)` while traversing field annotations. - """ - - __slots__ = () - - -@dataclass(frozen=True, **SLOTS) -class Gt(BaseMetadata): - """Gt(gt=x) implies that the value must be greater than x. - - It can be used with any type that supports the ``>`` operator, - including numbers, dates and times, strings, sets, and so on. - """ - - gt: SupportsGt - - -@dataclass(frozen=True, **SLOTS) -class Ge(BaseMetadata): - """Ge(ge=x) implies that the value must be greater than or equal to x. - - It can be used with any type that supports the ``>=`` operator, - including numbers, dates and times, strings, sets, and so on. - """ - - ge: SupportsGe - - -@dataclass(frozen=True, **SLOTS) -class Lt(BaseMetadata): - """Lt(lt=x) implies that the value must be less than x. - - It can be used with any type that supports the ``<`` operator, - including numbers, dates and times, strings, sets, and so on. - """ - - lt: SupportsLt - - -@dataclass(frozen=True, **SLOTS) -class Le(BaseMetadata): - """Le(le=x) implies that the value must be less than or equal to x. - - It can be used with any type that supports the ``<=`` operator, - including numbers, dates and times, strings, sets, and so on. - """ - - le: SupportsLe - - -@runtime_checkable -class GroupedMetadata(Protocol): - """A grouping of multiple objects, like typing.Unpack. - - `GroupedMetadata` on its own is not metadata and has no meaning. - All of the constraints and metadata should be fully expressable - in terms of the `BaseMetadata`'s returned by `GroupedMetadata.__iter__()`. - - Concrete implementations should override `GroupedMetadata.__iter__()` - to add their own metadata. - For example: - - >>> @dataclass - >>> class Field(GroupedMetadata): - >>> gt: float | None = None - >>> description: str | None = None - ... - >>> def __iter__(self) -> Iterable[object]: - >>> if self.gt is not None: - >>> yield Gt(self.gt) - >>> if self.description is not None: - >>> yield Description(self.gt) - - Also see the implementation of `Interval` below for an example. - - Parsers should recognize this and unpack it so that it can be used - both with and without unpacking: - - - `Annotated[int, Field(...)]` (parser must unpack Field) - - `Annotated[int, *Field(...)]` (PEP-646) - """ # noqa: trailing-whitespace - - @property - def __is_annotated_types_grouped_metadata__(self) -> Literal[True]: - return True - - def __iter__(self) -> Iterator[object]: - ... - - if not TYPE_CHECKING: - __slots__ = () # allow subclasses to use slots - - def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None: - # Basic ABC like functionality without the complexity of an ABC - super().__init_subclass__(*args, **kwargs) - if cls.__iter__ is GroupedMetadata.__iter__: - raise TypeError("Can't subclass GroupedMetadata without implementing __iter__") - - def __iter__(self) -> Iterator[object]: # noqa: F811 - raise NotImplementedError # more helpful than "None has no attribute..." type errors - - -@dataclass(frozen=True, **KW_ONLY, **SLOTS) -class Interval(GroupedMetadata): - """Interval can express inclusive or exclusive bounds with a single object. - - It accepts keyword arguments ``gt``, ``ge``, ``lt``, and/or ``le``, which - are interpreted the same way as the single-bound constraints. - """ - - gt: Union[SupportsGt, None] = None - ge: Union[SupportsGe, None] = None - lt: Union[SupportsLt, None] = None - le: Union[SupportsLe, None] = None - - def __iter__(self) -> Iterator[BaseMetadata]: - """Unpack an Interval into zero or more single-bounds.""" - if self.gt is not None: - yield Gt(self.gt) - if self.ge is not None: - yield Ge(self.ge) - if self.lt is not None: - yield Lt(self.lt) - if self.le is not None: - yield Le(self.le) - - -@dataclass(frozen=True, **SLOTS) -class MultipleOf(BaseMetadata): - """MultipleOf(multiple_of=x) might be interpreted in two ways: - - 1. Python semantics, implying ``value % multiple_of == 0``, or - 2. JSONschema semantics, where ``int(value / multiple_of) == value / multiple_of`` - - We encourage users to be aware of these two common interpretations, - and libraries to carefully document which they implement. - """ - - multiple_of: Union[SupportsDiv, SupportsMod] - - -@dataclass(frozen=True, **SLOTS) -class MinLen(BaseMetadata): - """ - MinLen() implies minimum inclusive length, - e.g. ``len(value) >= min_length``. - """ - - min_length: Annotated[int, Ge(0)] - - -@dataclass(frozen=True, **SLOTS) -class MaxLen(BaseMetadata): - """ - MaxLen() implies maximum inclusive length, - e.g. ``len(value) <= max_length``. - """ - - max_length: Annotated[int, Ge(0)] - - -@dataclass(frozen=True, **SLOTS) -class Len(GroupedMetadata): - """ - Len() implies that ``min_length <= len(value) <= max_length``. - - Upper bound may be omitted or ``None`` to indicate no upper length bound. - """ - - min_length: Annotated[int, Ge(0)] = 0 - max_length: Optional[Annotated[int, Ge(0)]] = None - - def __iter__(self) -> Iterator[BaseMetadata]: - """Unpack a Len into zone or more single-bounds.""" - if self.min_length > 0: - yield MinLen(self.min_length) - if self.max_length is not None: - yield MaxLen(self.max_length) - - -@dataclass(frozen=True, **SLOTS) -class Timezone(BaseMetadata): - """Timezone(tz=...) requires a datetime to be aware (or ``tz=None``, naive). - - ``Annotated[datetime, Timezone(None)]`` must be a naive datetime. - ``Timezone[...]`` (the ellipsis literal) expresses that the datetime must be - tz-aware but any timezone is allowed. - - You may also pass a specific timezone string or tzinfo object such as - ``Timezone(timezone.utc)`` or ``Timezone("Africa/Abidjan")`` to express that - you only allow a specific timezone, though we note that this is often - a symptom of poor design. - """ - - tz: Union[str, tzinfo, EllipsisType, None] - - -@dataclass(frozen=True, **SLOTS) -class Unit(BaseMetadata): - """Indicates that the value is a physical quantity with the specified unit. - - It is intended for usage with numeric types, where the value represents the - magnitude of the quantity. For example, ``distance: Annotated[float, Unit('m')]`` - or ``speed: Annotated[float, Unit('m/s')]``. - - Interpretation of the unit string is left to the discretion of the consumer. - It is suggested to follow conventions established by python libraries that work - with physical quantities, such as - - - ``pint`` : - - ``astropy.units``: - - For indicating a quantity with a certain dimensionality but without a specific unit - it is recommended to use square brackets, e.g. `Annotated[float, Unit('[time]')]`. - Note, however, ``annotated_types`` itself makes no use of the unit string. - """ - - unit: str - - -@dataclass(frozen=True, **SLOTS) -class Predicate(BaseMetadata): - """``Predicate(func: Callable)`` implies `func(value)` is truthy for valid values. - - Users should prefer statically inspectable metadata, but if you need the full - power and flexibility of arbitrary runtime predicates... here it is. - - We provide a few predefined predicates for common string constraints: - ``IsLower = Predicate(str.islower)``, ``IsUpper = Predicate(str.isupper)``, and - ``IsDigits = Predicate(str.isdigit)``. Users are encouraged to use methods which - can be given special handling, and avoid indirection like ``lambda s: s.lower()``. - - Some libraries might have special logic to handle certain predicates, e.g. by - checking for `str.isdigit` and using its presence to both call custom logic to - enforce digit-only strings, and customise some generated external schema. - - We do not specify what behaviour should be expected for predicates that raise - an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently - skip invalid constraints, or statically raise an error; or it might try calling it - and then propagate or discard the resulting exception. - """ - - func: Callable[[Any], bool] - - def __repr__(self) -> str: - if getattr(self.func, "__name__", "") == "": - return f"{self.__class__.__name__}({self.func!r})" - if isinstance(self.func, (types.MethodType, types.BuiltinMethodType)) and ( - namespace := getattr(self.func.__self__, "__name__", None) - ): - return f"{self.__class__.__name__}({namespace}.{self.func.__name__})" - if isinstance(self.func, type(str.isascii)): # method descriptor - return f"{self.__class__.__name__}({self.func.__qualname__})" - return f"{self.__class__.__name__}({self.func.__name__})" - - -@dataclass -class Not: - func: Callable[[Any], bool] - - def __call__(self, __v: Any) -> bool: - return not self.func(__v) - - -_StrType = TypeVar("_StrType", bound=str) - -LowerCase = Annotated[_StrType, Predicate(str.islower)] -""" -Return True if the string is a lowercase string, False otherwise. - -A string is lowercase if all cased characters in the string are lowercase and there is at least one cased character in the string. -""" # noqa: E501 -UpperCase = Annotated[_StrType, Predicate(str.isupper)] -""" -Return True if the string is an uppercase string, False otherwise. - -A string is uppercase if all cased characters in the string are uppercase and there is at least one cased character in the string. -""" # noqa: E501 -IsDigit = Annotated[_StrType, Predicate(str.isdigit)] -IsDigits = IsDigit # type: ignore # plural for backwards compatibility, see #63 -""" -Return True if the string is a digit string, False otherwise. - -A string is a digit string if all characters in the string are digits and there is at least one character in the string. -""" # noqa: E501 -IsAscii = Annotated[_StrType, Predicate(str.isascii)] -""" -Return True if all characters in the string are ASCII, False otherwise. - -ASCII characters have code points in the range U+0000-U+007F. Empty string is ASCII too. -""" - -_NumericType = TypeVar('_NumericType', bound=Union[SupportsFloat, SupportsIndex]) -IsFinite = Annotated[_NumericType, Predicate(math.isfinite)] -"""Return True if x is neither an infinity nor a NaN, and False otherwise.""" -IsNotFinite = Annotated[_NumericType, Predicate(Not(math.isfinite))] -"""Return True if x is one of infinity or NaN, and False otherwise""" -IsNan = Annotated[_NumericType, Predicate(math.isnan)] -"""Return True if x is a NaN (not a number), and False otherwise.""" -IsNotNan = Annotated[_NumericType, Predicate(Not(math.isnan))] -"""Return True if x is anything but NaN (not a number), and False otherwise.""" -IsInfinite = Annotated[_NumericType, Predicate(math.isinf)] -"""Return True if x is a positive or negative infinity, and False otherwise.""" -IsNotInfinite = Annotated[_NumericType, Predicate(Not(math.isinf))] -"""Return True if x is neither a positive or negative infinity, and False otherwise.""" - -try: - from typing_extensions import DocInfo, doc # type: ignore [attr-defined] -except ImportError: - - @dataclass(frozen=True, **SLOTS) - class DocInfo: # type: ignore [no-redef] - """ " - The return value of doc(), mainly to be used by tools that want to extract the - Annotated documentation at runtime. - """ - - documentation: str - """The documentation string passed to doc().""" - - def doc( - documentation: str, - ) -> DocInfo: - """ - Add documentation to a type annotation inside of Annotated. - - For example: - - >>> def hi(name: Annotated[int, doc("The name of the user")]) -> None: ... - """ - return DocInfo(documentation) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4547837..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/test_cases.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/test_cases.cpython-311.pyc deleted file mode 100644 index 2415b31..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/__pycache__/test_cases.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/test_cases.py b/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/test_cases.py deleted file mode 100644 index d9164d6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/annotated_types/test_cases.py +++ /dev/null @@ -1,151 +0,0 @@ -import math -import sys -from datetime import date, datetime, timedelta, timezone -from decimal import Decimal -from typing import Any, Dict, Iterable, Iterator, List, NamedTuple, Set, Tuple - -if sys.version_info < (3, 9): - from typing_extensions import Annotated -else: - from typing import Annotated - -import annotated_types as at - - -class Case(NamedTuple): - """ - A test case for `annotated_types`. - """ - - annotation: Any - valid_cases: Iterable[Any] - invalid_cases: Iterable[Any] - - -def cases() -> Iterable[Case]: - # Gt, Ge, Lt, Le - yield Case(Annotated[int, at.Gt(4)], (5, 6, 1000), (4, 0, -1)) - yield Case(Annotated[float, at.Gt(0.5)], (0.6, 0.7, 0.8, 0.9), (0.5, 0.0, -0.1)) - yield Case( - Annotated[datetime, at.Gt(datetime(2000, 1, 1))], - [datetime(2000, 1, 2), datetime(2000, 1, 3)], - [datetime(2000, 1, 1), datetime(1999, 12, 31)], - ) - yield Case( - Annotated[datetime, at.Gt(date(2000, 1, 1))], - [date(2000, 1, 2), date(2000, 1, 3)], - [date(2000, 1, 1), date(1999, 12, 31)], - ) - yield Case( - Annotated[datetime, at.Gt(Decimal('1.123'))], - [Decimal('1.1231'), Decimal('123')], - [Decimal('1.123'), Decimal('0')], - ) - - yield Case(Annotated[int, at.Ge(4)], (4, 5, 6, 1000, 4), (0, -1)) - yield Case(Annotated[float, at.Ge(0.5)], (0.5, 0.6, 0.7, 0.8, 0.9), (0.4, 0.0, -0.1)) - yield Case( - Annotated[datetime, at.Ge(datetime(2000, 1, 1))], - [datetime(2000, 1, 2), datetime(2000, 1, 3)], - [datetime(1998, 1, 1), datetime(1999, 12, 31)], - ) - - yield Case(Annotated[int, at.Lt(4)], (0, -1), (4, 5, 6, 1000, 4)) - yield Case(Annotated[float, at.Lt(0.5)], (0.4, 0.0, -0.1), (0.5, 0.6, 0.7, 0.8, 0.9)) - yield Case( - Annotated[datetime, at.Lt(datetime(2000, 1, 1))], - [datetime(1999, 12, 31), datetime(1999, 12, 31)], - [datetime(2000, 1, 2), datetime(2000, 1, 3)], - ) - - yield Case(Annotated[int, at.Le(4)], (4, 0, -1), (5, 6, 1000)) - yield Case(Annotated[float, at.Le(0.5)], (0.5, 0.0, -0.1), (0.6, 0.7, 0.8, 0.9)) - yield Case( - Annotated[datetime, at.Le(datetime(2000, 1, 1))], - [datetime(2000, 1, 1), datetime(1999, 12, 31)], - [datetime(2000, 1, 2), datetime(2000, 1, 3)], - ) - - # Interval - yield Case(Annotated[int, at.Interval(gt=4)], (5, 6, 1000), (4, 0, -1)) - yield Case(Annotated[int, at.Interval(gt=4, lt=10)], (5, 6), (4, 10, 1000, 0, -1)) - yield Case(Annotated[float, at.Interval(ge=0.5, le=1)], (0.5, 0.9, 1), (0.49, 1.1)) - yield Case( - Annotated[datetime, at.Interval(gt=datetime(2000, 1, 1), le=datetime(2000, 1, 3))], - [datetime(2000, 1, 2), datetime(2000, 1, 3)], - [datetime(2000, 1, 1), datetime(2000, 1, 4)], - ) - - yield Case(Annotated[int, at.MultipleOf(multiple_of=3)], (0, 3, 9), (1, 2, 4)) - yield Case(Annotated[float, at.MultipleOf(multiple_of=0.5)], (0, 0.5, 1, 1.5), (0.4, 1.1)) - - # lengths - - yield Case(Annotated[str, at.MinLen(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) - yield Case(Annotated[str, at.Len(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) - yield Case(Annotated[List[int], at.MinLen(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) - yield Case(Annotated[List[int], at.Len(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) - - yield Case(Annotated[str, at.MaxLen(4)], ('', '1234'), ('12345', 'x' * 10)) - yield Case(Annotated[str, at.Len(0, 4)], ('', '1234'), ('12345', 'x' * 10)) - yield Case(Annotated[List[str], at.MaxLen(4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) - yield Case(Annotated[List[str], at.Len(0, 4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) - - yield Case(Annotated[str, at.Len(3, 5)], ('123', '12345'), ('', '1', '12', '123456', 'x' * 10)) - yield Case(Annotated[str, at.Len(3, 3)], ('123',), ('12', '1234')) - - yield Case(Annotated[Dict[int, int], at.Len(2, 3)], [{1: 1, 2: 2}], [{}, {1: 1}, {1: 1, 2: 2, 3: 3, 4: 4}]) - yield Case(Annotated[Set[int], at.Len(2, 3)], ({1, 2}, {1, 2, 3}), (set(), {1}, {1, 2, 3, 4})) - yield Case(Annotated[Tuple[int, ...], at.Len(2, 3)], ((1, 2), (1, 2, 3)), ((), (1,), (1, 2, 3, 4))) - - # Timezone - - yield Case( - Annotated[datetime, at.Timezone(None)], [datetime(2000, 1, 1)], [datetime(2000, 1, 1, tzinfo=timezone.utc)] - ) - yield Case( - Annotated[datetime, at.Timezone(...)], [datetime(2000, 1, 1, tzinfo=timezone.utc)], [datetime(2000, 1, 1)] - ) - yield Case( - Annotated[datetime, at.Timezone(timezone.utc)], - [datetime(2000, 1, 1, tzinfo=timezone.utc)], - [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], - ) - yield Case( - Annotated[datetime, at.Timezone('Europe/London')], - [datetime(2000, 1, 1, tzinfo=timezone(timedelta(0), name='Europe/London'))], - [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], - ) - - # Quantity - - yield Case(Annotated[float, at.Unit(unit='m')], (5, 4.2), ('5m', '4.2m')) - - # predicate types - - yield Case(at.LowerCase[str], ['abc', 'foobar'], ['', 'A', 'Boom']) - yield Case(at.UpperCase[str], ['ABC', 'DEFO'], ['', 'a', 'abc', 'AbC']) - yield Case(at.IsDigit[str], ['123'], ['', 'ab', 'a1b2']) - yield Case(at.IsAscii[str], ['123', 'foo bar'], ['£100', '😊', 'whatever 👀']) - - yield Case(Annotated[int, at.Predicate(lambda x: x % 2 == 0)], [0, 2, 4], [1, 3, 5]) - - yield Case(at.IsFinite[float], [1.23], [math.nan, math.inf, -math.inf]) - yield Case(at.IsNotFinite[float], [math.nan, math.inf], [1.23]) - yield Case(at.IsNan[float], [math.nan], [1.23, math.inf]) - yield Case(at.IsNotNan[float], [1.23, math.inf], [math.nan]) - yield Case(at.IsInfinite[float], [math.inf], [math.nan, 1.23]) - yield Case(at.IsNotInfinite[float], [math.nan, 1.23], [math.inf]) - - # check stacked predicates - yield Case(at.IsInfinite[Annotated[float, at.Predicate(lambda x: x > 0)]], [math.inf], [-math.inf, 1.23, math.nan]) - - # doc - yield Case(Annotated[int, at.doc("A number")], [1, 2], []) - - # custom GroupedMetadata - class MyCustomGroupedMetadata(at.GroupedMetadata): - def __iter__(self) -> Iterator[at.Predicate]: - yield at.Predicate(lambda x: float(x).is_integer()) - - yield Case(Annotated[float, MyCustomGroupedMetadata()], [0, 2.0], [0.01, 1.5]) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/METADATA deleted file mode 100644 index 73ee491..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/METADATA +++ /dev/null @@ -1,107 +0,0 @@ -Metadata-Version: 2.4 -Name: anyio -Version: 4.14.1 -Summary: High-level concurrency and networking framework on top of asyncio or Trio -Author-email: Alex Grönholm -License-Expression: MIT -Project-URL: Documentation, https://anyio.readthedocs.io/en/latest/ -Project-URL: Changelog, https://anyio.readthedocs.io/en/stable/versionhistory.html -Project-URL: Source code, https://github.com/agronholm/anyio -Project-URL: Issue tracker, https://github.com/agronholm/anyio/issues -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: Framework :: AnyIO -Classifier: Typing :: Typed -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: Programming Language :: Python :: 3.14 -Classifier: Programming Language :: Python :: 3.15 -Requires-Python: >=3.10 -Description-Content-Type: text/x-rst -License-File: LICENSE -Requires-Dist: exceptiongroup>=1.0.2; python_version < "3.11" -Requires-Dist: idna>=2.8 -Requires-Dist: typing_extensions>=4.5; python_version < "3.13" -Provides-Extra: trio -Requires-Dist: trio>=0.32.0; extra == "trio" -Dynamic: license-file - -.. image:: https://github.com/agronholm/anyio/actions/workflows/test.yml/badge.svg - :target: https://github.com/agronholm/anyio/actions/workflows/test.yml - :alt: Build Status -.. image:: https://coveralls.io/repos/github/agronholm/anyio/badge.svg?branch=master - :target: https://coveralls.io/github/agronholm/anyio?branch=master - :alt: Code Coverage -.. image:: https://readthedocs.org/projects/anyio/badge/?version=latest - :target: https://anyio.readthedocs.io/en/latest/?badge=latest - :alt: Documentation -.. image:: https://badges.gitter.im/gitterHQ/gitter.svg - :target: https://gitter.im/python-trio/AnyIO - :alt: Gitter chat -.. image:: https://tidelift.com/badges/package/pypi/anyio - :target: https://tidelift.com/subscription/pkg/pypi-anyio - :alt: Tidelift - -AnyIO is an asynchronous networking and concurrency library that works on top of either asyncio_ or -Trio_. It implements Trio-like `structured concurrency`_ (SC) on top of asyncio and works in harmony -with the native SC of Trio itself. - -Applications and libraries written against AnyIO's API will run unmodified on either asyncio_ or -Trio_. AnyIO can also be adopted into a library or application incrementally – bit by bit, no full -refactoring necessary. It will blend in with the native libraries of your chosen backend. - -To find out why you might want to use AnyIO's APIs instead of asyncio's, you can read about it -`here `_. - -Documentation -------------- - -View full documentation at: https://anyio.readthedocs.io/ - -Features --------- - -AnyIO offers the following functionality: - -* Task groups (nurseries_ in trio terminology) -* High-level networking (TCP, UDP and UNIX sockets) - - * `Happy eyeballs`_ algorithm for TCP connections (more robust than that of asyncio on Python - 3.8) - * async/await style UDP sockets (unlike asyncio where you still have to use Transports and - Protocols) - -* A versatile API for byte streams and object streams -* Inter-task synchronization and communication (locks, conditions, events, semaphores, object - streams) -* Worker threads -* Subprocesses -* Subinterpreter support for code parallelization (on Python 3.13 and later) -* Asynchronous file I/O (using worker threads) -* Signal handling -* Asynchronous versions of the functools_ and itertools_ modules - -AnyIO also comes with its own pytest_ plugin which also supports asynchronous fixtures. -It even works with the popular Hypothesis_ library. - -.. _asyncio: https://docs.python.org/3/library/asyncio.html -.. _Trio: https://github.com/python-trio/trio -.. _structured concurrency: https://en.wikipedia.org/wiki/Structured_concurrency -.. _nurseries: https://trio.readthedocs.io/en/stable/reference-core.html#nurseries-and-spawning -.. _Happy eyeballs: https://en.wikipedia.org/wiki/Happy_Eyeballs -.. _pytest: https://docs.pytest.org/en/latest/ -.. _functools: https://docs.python.org/3/library/functools.html -.. _itertools: https://docs.python.org/3/library/itertools.html -.. _Hypothesis: https://hypothesis.works/ - -Security contact information ----------------------------- - -To report a security vulnerability, please use the `Tidelift security contact`_. -Tidelift will coordinate the fix and disclosure. - -.. _Tidelift security contact: https://tidelift.com/security diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/RECORD deleted file mode 100644 index 1525f9b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/RECORD +++ /dev/null @@ -1,96 +0,0 @@ -anyio-4.14.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -anyio-4.14.1.dist-info/METADATA,sha256=bfkjYaZLYPsPI5JV_Gn7HYF65mteyE8nhjaI0ZqC4L4,4645 -anyio-4.14.1.dist-info/RECORD,, -anyio-4.14.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91 -anyio-4.14.1.dist-info/entry_points.txt,sha256=_d6Yu6uiaZmNe0CydowirE9Cmg7zUL2g08tQpoS3Qvc,39 -anyio-4.14.1.dist-info/licenses/LICENSE,sha256=U2GsncWPLvX9LpsJxoKXwX8ElQkJu8gCO9uC6s8iwrA,1081 -anyio-4.14.1.dist-info/scm_file_list.json,sha256=wDSXGv8Ehn5ZW5BhB-RlaAc16zY_OfO27qrlMfMMZy8,3654 -anyio-4.14.1.dist-info/scm_version.json,sha256=gw22Q2aBbdiYhyMbObTYNN7BN-wSpzOCktNiAuulRN8,161 -anyio-4.14.1.dist-info/top_level.txt,sha256=QglSMiWX8_5dpoVAEIHdEYzvqFMdSYWmCj6tYw2ITkQ,6 -anyio/__init__.py,sha256=HitUIfzvAojSeaHVmJ9rFn8k_yI63G6s_jUL2QChf4U,6405 -anyio/__pycache__/__init__.cpython-311.pyc,, -anyio/__pycache__/from_thread.cpython-311.pyc,, -anyio/__pycache__/functools.cpython-311.pyc,, -anyio/__pycache__/itertools.cpython-311.pyc,, -anyio/__pycache__/lowlevel.cpython-311.pyc,, -anyio/__pycache__/pytest_plugin.cpython-311.pyc,, -anyio/__pycache__/to_interpreter.cpython-311.pyc,, -anyio/__pycache__/to_process.cpython-311.pyc,, -anyio/__pycache__/to_thread.cpython-311.pyc,, -anyio/_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -anyio/_backends/__pycache__/__init__.cpython-311.pyc,, -anyio/_backends/__pycache__/_asyncio.cpython-311.pyc,, -anyio/_backends/__pycache__/_trio.cpython-311.pyc,, -anyio/_backends/_asyncio.py,sha256=-q-5gUYg_r5SsN-OYbQnF_lvtW0v51-dFlsU8_gduWA,102077 -anyio/_backends/_trio.py,sha256=vR0ZgxVnOo4AHhHcHVG0worMc-3ZNpAZ6Vxh0m0ZZC0,45189 -anyio/_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -anyio/_core/__pycache__/__init__.cpython-311.pyc,, -anyio/_core/__pycache__/_asyncio_selector_thread.cpython-311.pyc,, -anyio/_core/__pycache__/_contextmanagers.cpython-311.pyc,, -anyio/_core/__pycache__/_eventloop.cpython-311.pyc,, -anyio/_core/__pycache__/_exceptions.cpython-311.pyc,, -anyio/_core/__pycache__/_fileio.cpython-311.pyc,, -anyio/_core/__pycache__/_resources.cpython-311.pyc,, -anyio/_core/__pycache__/_signals.cpython-311.pyc,, -anyio/_core/__pycache__/_sockets.cpython-311.pyc,, -anyio/_core/__pycache__/_streams.cpython-311.pyc,, -anyio/_core/__pycache__/_subprocesses.cpython-311.pyc,, -anyio/_core/__pycache__/_synchronization.cpython-311.pyc,, -anyio/_core/__pycache__/_tasks.cpython-311.pyc,, -anyio/_core/__pycache__/_tempfile.cpython-311.pyc,, -anyio/_core/__pycache__/_testing.cpython-311.pyc,, -anyio/_core/__pycache__/_typedattr.cpython-311.pyc,, -anyio/_core/_asyncio_selector_thread.py,sha256=2PdxFM3cs02Kp6BSppbvmRT7q7asreTW5FgBxEsflBo,5626 -anyio/_core/_contextmanagers.py,sha256=YInBCabiEeS-UaP_Jdxa1CaFC71ETPW8HZTHIM8Rsc8,7215 -anyio/_core/_eventloop.py,sha256=ByZUeJD9alMfcyTseRo5IzTO0IltEul_Gyq9iqSjqDk,6658 -anyio/_core/_exceptions.py,sha256=OfzLO4Z3Hog1TnipbIn72YNtkoYxS4lHW9MqKDeGc88,4936 -anyio/_core/_fileio.py,sha256=hHfyV0bXDL-R2ZNnInwse3nmTAd36AIz1cBxgmAwzAQ,31358 -anyio/_core/_resources.py,sha256=NbmU5O5UX3xEyACnkmYX28Fmwdl-f-ny0tHym26e0w0,435 -anyio/_core/_signals.py,sha256=mjTBB2hTKNPRlU0IhnijeQedpWOGERDiMjSlJQsFrug,1016 -anyio/_core/_sockets.py,sha256=9FU423j52XBBfGVr6MdzPTdyw8bGrzApZ5m338-AtsY,35286 -anyio/_core/_streams.py,sha256=FczFwIgDpnkK0bODWJXMpsUJYdvAD04kaUaGzJU8DK0,1806 -anyio/_core/_subprocesses.py,sha256=tkmkPKEkEaiMD8C9WRZBlmgjOYRDRbZdte6e-unay2E,7916 -anyio/_core/_synchronization.py,sha256=jn2nIbTRlBAUXL-mx_a3I_VnasF8GbVFpBRp2-YwCx0,21591 -anyio/_core/_tasks.py,sha256=ELL2jscaSW0Jw_xA6MtQlm3xwvFEzjTbc1u9Tteyt0I,13244 -anyio/_core/_tempfile.py,sha256=jE2w59FRF3yRo4vjkjfZF2YcqsBZvc66VWRwrJGDYGk,19624 -anyio/_core/_testing.py,sha256=u7MPqGXwpTxqI7hclSdNA30z2GH1Nw258uwKvy_RfBg,2340 -anyio/_core/_typedattr.py,sha256=P4ozZikn3-DbpoYcvyghS_FOYAgbmUxeoU8-L_07pZM,2508 -anyio/abc/__init__.py,sha256=6mWhcl_pGXhrgZVHP_TCfMvIXIOp9mroEFM90fYCU_U,2869 -anyio/abc/__pycache__/__init__.cpython-311.pyc,, -anyio/abc/__pycache__/_eventloop.cpython-311.pyc,, -anyio/abc/__pycache__/_resources.cpython-311.pyc,, -anyio/abc/__pycache__/_sockets.cpython-311.pyc,, -anyio/abc/__pycache__/_streams.cpython-311.pyc,, -anyio/abc/__pycache__/_subprocesses.cpython-311.pyc,, -anyio/abc/__pycache__/_tasks.cpython-311.pyc,, -anyio/abc/__pycache__/_testing.cpython-311.pyc,, -anyio/abc/_eventloop.py,sha256=OqWYSEj0TmwL_xniCJt3_jHFWsuMk9THk8tCTGsKapI,10681 -anyio/abc/_resources.py,sha256=DrYvkNN1hH6Uvv5_5uKySvDsnknGVDe8FCKfko0VtN8,783 -anyio/abc/_sockets.py,sha256=OmVDrfemVvF9c5K1tpBgQyV6fn5v0XyCExLAqBOGz9o,13124 -anyio/abc/_streams.py,sha256=HYvna1iZbWcwLROTO6IhLX79RTRLPShZMWe0sG1q54I,7481 -anyio/abc/_subprocesses.py,sha256=cumAPJTktOQtw63IqG0lDpyZqu_l1EElvQHMiwJgL08,2067 -anyio/abc/_tasks.py,sha256=m-FtE4phxeNIELSG7A3H7VUz3jA2Ib5J2JIew8-PS6o,6642 -anyio/abc/_testing.py,sha256=9YYM2AXsYFvf4PLjUEr6yRxDiUeB5QbY_gOg0X_C6lY,2034 -anyio/from_thread.py,sha256=JYsbaCaIB_Iit6kNhtXSteJGt4PcQ7ncq0nIpcelIrg,19265 -anyio/functools.py,sha256=T4JS8IXq-x1S0Lbo2owF8l9fza2KypO147QLeyz4cjs,11797 -anyio/itertools.py,sha256=QV-9mnRCr2yBph8g01QFvN-bQ_Yle-8Sl13YSydBlMI,16168 -anyio/lowlevel.py,sha256=WPtppHfI2qs1nokzjn8elL8LvyqI05AK5Zslhlo71A4,6242 -anyio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -anyio/pytest_plugin.py,sha256=paMpI_VMNQf2bir0LfvgMpXSiYJoHDzWdKUVTyoHmvQ,13609 -anyio/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -anyio/streams/__pycache__/__init__.cpython-311.pyc,, -anyio/streams/__pycache__/buffered.cpython-311.pyc,, -anyio/streams/__pycache__/file.cpython-311.pyc,, -anyio/streams/__pycache__/memory.cpython-311.pyc,, -anyio/streams/__pycache__/stapled.cpython-311.pyc,, -anyio/streams/__pycache__/text.cpython-311.pyc,, -anyio/streams/__pycache__/tls.cpython-311.pyc,, -anyio/streams/buffered.py,sha256=v3xKtjFHgNV41g2SvMAkA_qd2t9WYlCI1_lNGCAatw0,6650 -anyio/streams/file.py,sha256=msnrotVKGMQomUu_Rj2qz9MvIdUp6d3JGr7MOEO8kV4,4428 -anyio/streams/memory.py,sha256=F0zwzvFJKAhX_LRZGoKzzqDC2oMM-f-yyTBrEYEGOaU,10740 -anyio/streams/stapled.py,sha256=T8Xqwf8K6EgURPxbt1N4i7A8BAk-gScv-GRhjLXIf_o,4390 -anyio/streams/text.py,sha256=BcVAGJw1VRvtIqnv-o0Rb0pwH7p8vwlvl21xHq522ag,5765 -anyio/streams/tls.py,sha256=DQVkXUvsTEYKkBO8dlVU7j_5H8QOtLy4sGi1Wrjqevo,15303 -anyio/to_interpreter.py,sha256=_mLngrMy97TMR6VbW4Y6YzDUk9ZuPcQMPlkuyRh3C9k,7100 -anyio/to_process.py,sha256=68qhLfce7MeXysid4fOpmhfWkgdo7Z7-9BC0VyUciIE,9809 -anyio/to_thread.py,sha256=f6h_k2d743GBv9FhAnhM_YpTvWgIrzBy9cOE0eJ1UJw,2693 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/WHEEL deleted file mode 100644 index 14a883f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: setuptools (82.0.1) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/entry_points.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/entry_points.txt deleted file mode 100644 index 44dd9bd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/entry_points.txt +++ /dev/null @@ -1,2 +0,0 @@ -[pytest11] -anyio = anyio.pytest_plugin diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/licenses/LICENSE deleted file mode 100644 index 104eebf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/licenses/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2018 Alex Grönholm - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_file_list.json b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_file_list.json deleted file mode 100644 index 72a4814..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_file_list.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "files": [ - ".pre-commit-config.yaml", - "LICENSE", - "pyproject.toml", - "AGENTS.md", - "README.rst", - "CLAUDE.md", - ".readthedocs.yml", - ".gitignore", - "docs/tempfile.rst", - "docs/signals.rst", - "docs/synchronization.rst", - "docs/contextmanagers.rst", - "docs/testing.rst", - "docs/networking.rst", - "docs/contributing.rst", - "docs/index.rst", - "docs/versionhistory.rst", - "docs/threads.rst", - "docs/api.rst", - "docs/typedattrs.rst", - "docs/basics.rst", - "docs/fileio.rst", - "docs/cancellation.rst", - "docs/support.rst", - "docs/streams.rst", - "docs/why.rst", - "docs/tasks.rst", - "docs/migration.rst", - "docs/conf.py", - "docs/subprocesses.rst", - "docs/faq.rst", - "docs/subinterpreters.rst", - "src/anyio/functools.py", - "src/anyio/py.typed", - "src/anyio/__init__.py", - "src/anyio/pytest_plugin.py", - "src/anyio/itertools.py", - "src/anyio/to_interpreter.py", - "src/anyio/from_thread.py", - "src/anyio/to_process.py", - "src/anyio/to_thread.py", - "src/anyio/lowlevel.py", - "src/anyio/_backends/_trio.py", - "src/anyio/_backends/__init__.py", - "src/anyio/_backends/_asyncio.py", - "src/anyio/streams/memory.py", - "src/anyio/streams/__init__.py", - "src/anyio/streams/tls.py", - "src/anyio/streams/file.py", - "src/anyio/streams/text.py", - "src/anyio/streams/stapled.py", - "src/anyio/streams/buffered.py", - "src/anyio/abc/_eventloop.py", - "src/anyio/abc/__init__.py", - "src/anyio/abc/_sockets.py", - "src/anyio/abc/_tasks.py", - "src/anyio/abc/_subprocesses.py", - "src/anyio/abc/_resources.py", - "src/anyio/abc/_streams.py", - "src/anyio/abc/_testing.py", - "src/anyio/_core/_typedattr.py", - "src/anyio/_core/_eventloop.py", - "src/anyio/_core/__init__.py", - "src/anyio/_core/_tempfile.py", - "src/anyio/_core/_sockets.py", - "src/anyio/_core/_tasks.py", - "src/anyio/_core/_fileio.py", - "src/anyio/_core/_synchronization.py", - "src/anyio/_core/_subprocesses.py", - "src/anyio/_core/_resources.py", - "src/anyio/_core/_contextmanagers.py", - "src/anyio/_core/_exceptions.py", - "src/anyio/_core/_streams.py", - "src/anyio/_core/_signals.py", - "src/anyio/_core/_asyncio_selector_thread.py", - "src/anyio/_core/_testing.py", - "tests/test_itertools.py", - "tests/test_functools.py", - "tests/test_eventloop.py", - "tests/__init__.py", - "tests/test_to_thread.py", - "tests/test_from_thread.py", - "tests/test_lowlevel.py", - "tests/test_to_interpreter.py", - "tests/test_sockets.py", - "tests/test_typedattr.py", - "tests/test_to_process.py", - "tests/test_all_attributes.py", - "tests/test_synchronization.py", - "tests/test_debugging.py", - "tests/test_contextmanagers.py", - "tests/test_fileio.py", - "tests/conftest.py", - "tests/test_signals.py", - "tests/test_deprecations.py", - "tests/test_tempfile.py", - "tests/test_taskgroups.py", - "tests/test_pytest_plugin.py", - "tests/test_subprocesses.py", - "tests/streams/test_text.py", - "tests/streams/test_memory.py", - "tests/streams/__init__.py", - "tests/streams/test_file.py", - "tests/streams/test_stapled.py", - "tests/streams/test_tls.py", - "tests/streams/test_buffered.py", - ".github/pull_request_template.md", - ".github/dependabot.yml", - ".github/FUNDING.yml", - ".github/ISSUE_TEMPLATE/features_request.yaml", - ".github/ISSUE_TEMPLATE/bug_report.yaml", - ".github/ISSUE_TEMPLATE/config.yml", - ".github/workflows/test.yml", - ".github/workflows/test-downstream.yml", - ".github/workflows/publish.yml" - ] -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_version.json b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_version.json deleted file mode 100644 index 17978b3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/scm_version.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "tag": "4.14.1", - "distance": 0, - "node": "g149b9e907618fadf6840a4d3cebad533b0c7d033", - "dirty": false, - "branch": "HEAD", - "node_date": "2026-06-24" -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/top_level.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/top_level.txt deleted file mode 100644 index c77c069..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio-4.14.1.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -anyio diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__init__.py deleted file mode 100644 index 2502c76..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__init__.py +++ /dev/null @@ -1,115 +0,0 @@ -from __future__ import annotations - -from ._core._contextmanagers import AsyncContextManagerMixin as AsyncContextManagerMixin -from ._core._contextmanagers import ContextManagerMixin as ContextManagerMixin -from ._core._eventloop import current_time as current_time -from ._core._eventloop import get_all_backends as get_all_backends -from ._core._eventloop import get_available_backends as get_available_backends -from ._core._eventloop import get_cancelled_exc_class as get_cancelled_exc_class -from ._core._eventloop import run as run -from ._core._eventloop import sleep as sleep -from ._core._eventloop import sleep_forever as sleep_forever -from ._core._eventloop import sleep_until as sleep_until -from ._core._exceptions import BrokenResourceError as BrokenResourceError -from ._core._exceptions import BrokenWorkerInterpreter as BrokenWorkerInterpreter -from ._core._exceptions import BrokenWorkerProcess as BrokenWorkerProcess -from ._core._exceptions import BusyResourceError as BusyResourceError -from ._core._exceptions import ClosedResourceError as ClosedResourceError -from ._core._exceptions import ConnectionFailed as ConnectionFailed -from ._core._exceptions import DelimiterNotFound as DelimiterNotFound -from ._core._exceptions import EndOfStream as EndOfStream -from ._core._exceptions import IncompleteRead as IncompleteRead -from ._core._exceptions import NoEventLoopError as NoEventLoopError -from ._core._exceptions import RunFinishedError as RunFinishedError -from ._core._exceptions import TaskCancelled as TaskCancelled -from ._core._exceptions import TaskFailed as TaskFailed -from ._core._exceptions import TaskNotFinished as TaskNotFinished -from ._core._exceptions import TypedAttributeLookupError as TypedAttributeLookupError -from ._core._exceptions import WouldBlock as WouldBlock -from ._core._fileio import AsyncFile as AsyncFile -from ._core._fileio import Path as Path -from ._core._fileio import open_file as open_file -from ._core._fileio import wrap_file as wrap_file -from ._core._resources import aclose_forcefully as aclose_forcefully -from ._core._signals import open_signal_receiver as open_signal_receiver -from ._core._sockets import TCPConnectable as TCPConnectable -from ._core._sockets import UNIXConnectable as UNIXConnectable -from ._core._sockets import as_connectable as as_connectable -from ._core._sockets import connect_tcp as connect_tcp -from ._core._sockets import connect_unix as connect_unix -from ._core._sockets import create_connected_udp_socket as create_connected_udp_socket -from ._core._sockets import ( - create_connected_unix_datagram_socket as create_connected_unix_datagram_socket, -) -from ._core._sockets import create_tcp_listener as create_tcp_listener -from ._core._sockets import create_udp_socket as create_udp_socket -from ._core._sockets import create_unix_datagram_socket as create_unix_datagram_socket -from ._core._sockets import create_unix_listener as create_unix_listener -from ._core._sockets import getaddrinfo as getaddrinfo -from ._core._sockets import getnameinfo as getnameinfo -from ._core._sockets import notify_closing as notify_closing -from ._core._sockets import wait_readable as wait_readable -from ._core._sockets import wait_socket_readable as wait_socket_readable -from ._core._sockets import wait_socket_writable as wait_socket_writable -from ._core._sockets import wait_writable as wait_writable -from ._core._streams import create_memory_object_stream as create_memory_object_stream -from ._core._subprocesses import open_process as open_process -from ._core._subprocesses import run_process as run_process -from ._core._synchronization import CapacityLimiter as CapacityLimiter -from ._core._synchronization import ( - CapacityLimiterStatistics as CapacityLimiterStatistics, -) -from ._core._synchronization import Condition as Condition -from ._core._synchronization import ConditionStatistics as ConditionStatistics -from ._core._synchronization import Event as Event -from ._core._synchronization import EventStatistics as EventStatistics -from ._core._synchronization import Lock as Lock -from ._core._synchronization import LockStatistics as LockStatistics -from ._core._synchronization import ResourceGuard as ResourceGuard -from ._core._synchronization import Semaphore as Semaphore -from ._core._synchronization import SemaphoreStatistics as SemaphoreStatistics -from ._core._tasks import TASK_STATUS_IGNORED as TASK_STATUS_IGNORED -from ._core._tasks import CancelScope as CancelScope -from ._core._tasks import TaskHandle as TaskHandle -from ._core._tasks import create_task_group as create_task_group -from ._core._tasks import current_effective_deadline as current_effective_deadline -from ._core._tasks import fail_after as fail_after -from ._core._tasks import move_on_after as move_on_after -from ._core._tempfile import NamedTemporaryFile as NamedTemporaryFile -from ._core._tempfile import SpooledTemporaryFile as SpooledTemporaryFile -from ._core._tempfile import TemporaryDirectory as TemporaryDirectory -from ._core._tempfile import TemporaryFile as TemporaryFile -from ._core._tempfile import gettempdir as gettempdir -from ._core._tempfile import gettempdirb as gettempdirb -from ._core._tempfile import mkdtemp as mkdtemp -from ._core._tempfile import mkstemp as mkstemp -from ._core._testing import TaskInfo as TaskInfo -from ._core._testing import get_current_task as get_current_task -from ._core._testing import get_running_tasks as get_running_tasks -from ._core._testing import wait_all_tasks_blocked as wait_all_tasks_blocked -from ._core._typedattr import TypedAttributeProvider as TypedAttributeProvider -from ._core._typedattr import TypedAttributeSet as TypedAttributeSet -from ._core._typedattr import typed_attribute as typed_attribute - -# Re-export imports so they look like they live directly in this package -for __value in list(locals().values()): - if getattr(__value, "__module__", "").startswith("anyio."): - __value.__module__ = __name__ - - -del __value - - -def __getattr__(attr: str) -> type[BrokenWorkerInterpreter]: - """Support deprecated aliases.""" - if attr == "BrokenWorkerIntepreter": - import warnings - - warnings.warn( - "The 'BrokenWorkerIntepreter' alias is deprecated, use 'BrokenWorkerInterpreter' instead.", - DeprecationWarning, - stacklevel=2, - ) - return BrokenWorkerInterpreter - - raise AttributeError(f"module {__name__!r} has no attribute {attr!r}") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index efffa8e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/from_thread.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/from_thread.cpython-311.pyc deleted file mode 100644 index 57771b5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/from_thread.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/functools.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/functools.cpython-311.pyc deleted file mode 100644 index 56c69fc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/functools.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/itertools.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/itertools.cpython-311.pyc deleted file mode 100644 index 28e578c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/itertools.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/lowlevel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/lowlevel.cpython-311.pyc deleted file mode 100644 index f88b798..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/lowlevel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/pytest_plugin.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/pytest_plugin.cpython-311.pyc deleted file mode 100644 index ef3f25c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/pytest_plugin.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_interpreter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_interpreter.cpython-311.pyc deleted file mode 100644 index 0236144..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_interpreter.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_process.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_process.cpython-311.pyc deleted file mode 100644 index 7db350c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_process.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_thread.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_thread.cpython-311.pyc deleted file mode 100644 index 76c217b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/__pycache__/to_thread.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 80cfe9d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-311.pyc deleted file mode 100644 index 5b067a7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_trio.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_trio.cpython-311.pyc deleted file mode 100644 index 30cb573..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/__pycache__/_trio.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_asyncio.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_asyncio.py deleted file mode 100644 index e6fd955..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_asyncio.py +++ /dev/null @@ -1,3077 +0,0 @@ -from __future__ import annotations - -import array -import asyncio -import concurrent.futures -import contextvars -import math -import os -import socket -import sys -import threading -import weakref -from asyncio import ( - AbstractEventLoop, - CancelledError, - all_tasks, - create_task, - current_task, - get_running_loop, - sleep, -) -from asyncio.base_events import _run_until_complete_cb # type: ignore[attr-defined] -from collections import OrderedDict, deque -from collections.abc import ( - AsyncGenerator, - AsyncIterator, - Awaitable, - Callable, - Collection, - Coroutine, - Iterable, - Sequence, -) -from concurrent.futures import Future -from contextlib import AbstractContextManager -from contextvars import Context, copy_context -from dataclasses import dataclass, field -from functools import partial, wraps -from inspect import ( - CORO_RUNNING, - CORO_SUSPENDED, - getcoroutinestate, -) -from io import IOBase -from os import PathLike -from queue import Queue -from signal import Signals -from socket import AddressFamily, SocketKind -from threading import Thread -from types import CodeType, TracebackType -from typing import ( - IO, - TYPE_CHECKING, - Any, - Literal, - ParamSpec, - TypeVar, - cast, -) -from weakref import WeakKeyDictionary - -from .. import ( - CapacityLimiterStatistics, - EventStatistics, - LockStatistics, - TaskInfo, - abc, -) -from .._core._eventloop import ( - claim_worker_thread, - set_current_async_library, - threadlocals, -) -from .._core._exceptions import ( - BrokenResourceError, - BusyResourceError, - ClosedResourceError, - EndOfStream, - RunFinishedError, - WouldBlock, -) -from .._core._sockets import convert_ipv6_sockaddr -from .._core._streams import create_memory_object_stream -from .._core._synchronization import ( - CapacityLimiter as BaseCapacityLimiter, -) -from .._core._synchronization import Event as BaseEvent -from .._core._synchronization import Lock as BaseLock -from .._core._synchronization import ( - ResourceGuard, - SemaphoreStatistics, -) -from .._core._synchronization import Semaphore as BaseSemaphore -from .._core._tasks import CancelScope as BaseCancelScope -from .._core._tasks import TaskHandle -from ..abc import ( - AsyncBackend, - IPSockAddrType, - SocketListener, - UDPPacketType, - UNIXDatagramPacketType, -) -from ..abc._eventloop import StrOrBytesPath -from ..abc._tasks import call_for_coroutine, get_callable_name -from ..lowlevel import RunVar -from ..streams.memory import MemoryObjectReceiveStream, MemoryObjectSendStream - -if TYPE_CHECKING: - from _typeshed import FileDescriptorLike -else: - FileDescriptorLike = object - -if sys.version_info >= (3, 11): - from asyncio import Runner - from typing import TypeVarTuple, Unpack -else: - import contextvars - import enum - import signal - from asyncio import coroutines, events, exceptions, tasks - - from exceptiongroup import BaseExceptionGroup - from typing_extensions import TypeVarTuple, Unpack - - class _State(enum.Enum): - CREATED = "created" - INITIALIZED = "initialized" - CLOSED = "closed" - - class Runner: - # Copied from CPython 3.11 - def __init__( - self, - *, - debug: bool | None = None, - loop_factory: Callable[[], AbstractEventLoop] | None = None, - ): - self._state = _State.CREATED - self._debug = debug - self._loop_factory = loop_factory - self._loop: AbstractEventLoop | None = None - self._context = None - self._interrupt_count = 0 - self._set_event_loop = False - - def __enter__(self) -> Runner: - self._lazy_init() - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.close() - - def close(self) -> None: - """Shutdown and close event loop.""" - loop = self._loop - if self._state is not _State.INITIALIZED or loop is None: - return - try: - _cancel_all_tasks(loop) - loop.run_until_complete(loop.shutdown_asyncgens()) - if hasattr(loop, "shutdown_default_executor"): - loop.run_until_complete(loop.shutdown_default_executor()) - else: - loop.run_until_complete(_shutdown_default_executor(loop)) - finally: - if self._set_event_loop: - events.set_event_loop(None) - loop.close() - self._loop = None - self._state = _State.CLOSED - - def get_loop(self) -> AbstractEventLoop: - """Return embedded event loop.""" - self._lazy_init() - return self._loop - - def run(self, coro: Coroutine[T_Retval], *, context=None) -> T_Retval: - """Run a coroutine inside the embedded event loop.""" - if not coroutines.iscoroutine(coro): - raise ValueError(f"a coroutine was expected, got {coro!r}") - - if events._get_running_loop() is not None: - # fail fast with short traceback - raise RuntimeError( - "Runner.run() cannot be called from a running event loop" - ) - - self._lazy_init() - - if context is None: - context = self._context - task = context.run(self._loop.create_task, coro) - - if ( - threading.current_thread() is threading.main_thread() - and signal.getsignal(signal.SIGINT) is signal.default_int_handler - ): - sigint_handler = partial(self._on_sigint, main_task=task) - try: - signal.signal(signal.SIGINT, sigint_handler) - except ValueError: - # `signal.signal` may throw if `threading.main_thread` does - # not support signals (e.g. embedded interpreter with signals - # not registered - see gh-91880) - sigint_handler = None - else: - sigint_handler = None - - self._interrupt_count = 0 - try: - return self._loop.run_until_complete(task) - except exceptions.CancelledError: - if self._interrupt_count > 0: - uncancel = getattr(task, "uncancel", None) - if uncancel is not None and uncancel() == 0: - raise KeyboardInterrupt # noqa: B904 - raise # CancelledError - finally: - if ( - sigint_handler is not None - and signal.getsignal(signal.SIGINT) is sigint_handler - ): - signal.signal(signal.SIGINT, signal.default_int_handler) - - def _lazy_init(self) -> None: - if self._state is _State.CLOSED: - raise RuntimeError("Runner is closed") - if self._state is _State.INITIALIZED: - return - if self._loop_factory is None: - self._loop = events.new_event_loop() - if not self._set_event_loop: - # Call set_event_loop only once to avoid calling - # attach_loop multiple times on child watchers - events.set_event_loop(self._loop) - self._set_event_loop = True - else: - self._loop = self._loop_factory() - if self._debug is not None: - self._loop.set_debug(self._debug) - self._context = contextvars.copy_context() - self._state = _State.INITIALIZED - - def _on_sigint(self, signum, frame, main_task: asyncio.Task) -> None: - self._interrupt_count += 1 - if self._interrupt_count == 1 and not main_task.done(): - main_task.cancel() - # wakeup loop if it is blocked by select() with long timeout - self._loop.call_soon_threadsafe(lambda: None) - return - raise KeyboardInterrupt() - - def _cancel_all_tasks(loop: AbstractEventLoop) -> None: - to_cancel = tasks.all_tasks(loop) - if not to_cancel: - return - - for task in to_cancel: - task.cancel() - - loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True)) - - for task in to_cancel: - if task.cancelled(): - continue - if task.exception() is not None: - loop.call_exception_handler( - { - "message": "unhandled exception during asyncio.run() shutdown", - "exception": task.exception(), - "task": task, - } - ) - - async def _shutdown_default_executor(loop: AbstractEventLoop) -> None: - """Schedule the shutdown of the default executor.""" - - def _do_shutdown(future: asyncio.futures.Future) -> None: - try: - loop._default_executor.shutdown(wait=True) # type: ignore[attr-defined] - loop.call_soon_threadsafe(future.set_result, None) - except Exception as ex: - loop.call_soon_threadsafe(future.set_exception, ex) - - loop._executor_shutdown_called = True - if loop._default_executor is None: - return - future = loop.create_future() - thread = threading.Thread(target=_do_shutdown, args=(future,)) - thread.start() - try: - await future - finally: - thread.join() - - -T_Retval = TypeVar("T_Retval") -T_co = TypeVar("T_co", covariant=True) -T_contra = TypeVar("T_contra", contravariant=True) -PosArgsT = TypeVarTuple("PosArgsT") -P = ParamSpec("P") - -_root_task: RunVar[asyncio.Task | None] = RunVar("_root_task") - - -def find_root_task() -> asyncio.Task: - root_task = _root_task.get(None) - if root_task is not None and not root_task.done(): - return root_task - - # Look for a task that has been started via run_until_complete() - for task in all_tasks(): - if task._callbacks and not task.done(): - callbacks = [cb for cb, context in task._callbacks] - for cb in callbacks: - if ( - cb is _run_until_complete_cb - or getattr(cb, "__module__", None) == "uvloop.loop" - ): - _root_task.set(task) - return task - - # Look up the topmost task in the AnyIO task tree, if possible - task = cast(asyncio.Task, current_task()) - state = _task_states.get(task) - if state: - cancel_scope = state.cancel_scope - while cancel_scope and cancel_scope._parent_scope is not None: - cancel_scope = cancel_scope._parent_scope - - if cancel_scope is not None: - return cast(asyncio.Task, cancel_scope._host_task) - - return task - - -# -# Event loop -# - -_run_vars: WeakKeyDictionary[asyncio.AbstractEventLoop, Any] = WeakKeyDictionary() - - -def _task_started(task: asyncio.Task) -> bool: - """Return ``True`` if the task has been started and has not finished.""" - # The task coro should never be None here, as we never add finished tasks to the - # task list - coro = task.get_coro() - assert coro is not None - return getcoroutinestate(coro) in (CORO_RUNNING, CORO_SUSPENDED) - - -# -# Timeouts and cancellation -# - - -def is_anyio_cancellation(exc: CancelledError) -> bool: - # Sometimes third party frameworks catch a CancelledError and raise a new one, so as - # a workaround we have to look at the previous ones in __context__ too for a - # matching cancel message - while True: - if ( - exc.args - and isinstance(exc.args[0], str) - and exc.args[0].startswith("Cancelled via cancel scope ") - ): - return True - - if isinstance(exc.__context__, CancelledError): - exc = exc.__context__ - continue - - return False - - -class CancelScope(BaseCancelScope): - __slots__ = ( - "_active", - "_cancel_called", - "_cancel_handle", - "_cancel_reason", - "_cancelled_caught", - "_child_scopes", - "_deadline", - "_host_task", - "_parent_scope", - "_pending_uncancellations", - "_shield", - "_tasks", - "_timeout_handle", - ) - - def __new__( - cls, *, deadline: float = math.inf, shield: bool = False - ) -> CancelScope: - return object.__new__(cls) - - def __init__(self, deadline: float = math.inf, shield: bool = False): - self._deadline = deadline - self._shield = shield - self._parent_scope: CancelScope | None = None - self._child_scopes: set[CancelScope] = set() - self._cancel_called = False - self._cancel_reason: str | None = None - self._cancelled_caught = False - self._active = False - self._timeout_handle: asyncio.TimerHandle | None = None - self._cancel_handle: asyncio.Handle | None = None - self._tasks: set[asyncio.Task] = set() - self._host_task: asyncio.Task | None = None - if sys.version_info >= (3, 11): - self._pending_uncancellations: int | None = 0 - else: - self._pending_uncancellations = None - - def __enter__(self) -> CancelScope: - if self._active: - raise RuntimeError( - "Each CancelScope may only be used for a single 'with' block" - ) - - self._host_task = host_task = cast(asyncio.Task, current_task()) - self._tasks.add(host_task) - try: - task_state = _task_states[host_task] - except KeyError: - task_state = TaskState(None, self) - _task_states[host_task] = task_state - else: - self._parent_scope = task_state.cancel_scope - task_state.cancel_scope = self - if self._parent_scope is not None: - # If using an eager task factory, the parent scope may not even contain - # the host task - self._parent_scope._child_scopes.add(self) - self._parent_scope._tasks.discard(host_task) - - self._timeout() - self._active = True - - # Start cancelling the host task if the scope was cancelled before entering - if self._cancel_called: - self._deliver_cancellation(self) - - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - del exc_tb - - if not self._active: - raise RuntimeError("This cancel scope is not active") - if current_task() is not self._host_task: - raise RuntimeError( - "Attempted to exit cancel scope in a different task than it was " - "entered in" - ) - - assert self._host_task is not None - host_task_state = _task_states.get(self._host_task) - if host_task_state is None or host_task_state.cancel_scope is not self: - raise RuntimeError( - "Attempted to exit a cancel scope that isn't the current tasks's " - "current cancel scope" - ) - - try: - self._active = False - if self._timeout_handle: - self._timeout_handle.cancel() - self._timeout_handle = None - - self._tasks.remove(self._host_task) - if self._parent_scope is not None: - self._parent_scope._child_scopes.remove(self) - self._parent_scope._tasks.add(self._host_task) - - host_task_state.cancel_scope = self._parent_scope - - # Restart the cancellation effort in the closest visible, cancelled parent - # scope if necessary - self._restart_cancellation_in_parent() - - # We only swallow the exception iff it was an AnyIO CancelledError, either - # directly as exc_val or inside an exception group and there are no cancelled - # parent cancel scopes visible to us here - if self._cancel_called and not self._parent_cancellation_is_visible_to_us: - # For each level-cancel() call made on the host task, call uncancel() - while self._pending_uncancellations: - self._host_task.uncancel() - self._pending_uncancellations -= 1 - - # Update cancelled_caught and check for exceptions we must not swallow - if isinstance(exc_val, BaseExceptionGroup): - cancelleds_caught, remaining = exc_val.split( - lambda exc: ( - isinstance(exc, CancelledError) - and is_anyio_cancellation(exc) - ) - ) - - if cancelleds_caught is None: - return False - - self._cancelled_caught = True - - if remaining is None: - return True - - context = remaining.__context__ - try: - # Preserve __cause__ and __suppress_context__ by avoiding `raise - # ... from ...` - raise remaining - finally: - # Preserve __context__ - remaining.__context__ = context - del context - else: - if isinstance(exc_val, CancelledError) and is_anyio_cancellation( - exc_val - ): - self._cancelled_caught = True - return True - else: - return False - else: - if self._pending_uncancellations: - assert self._parent_scope is not None - assert self._parent_scope._pending_uncancellations is not None - self._parent_scope._pending_uncancellations += ( - self._pending_uncancellations - ) - self._pending_uncancellations = 0 - - return False - finally: - self._host_task = None - del exc_val - - @property - def _effectively_cancelled(self) -> bool: - cancel_scope: CancelScope | None = self - while cancel_scope is not None: - if cancel_scope._cancel_called: - return True - - if cancel_scope.shield: - return False - - cancel_scope = cancel_scope._parent_scope - - return False - - @property - def _parent_cancellation_is_visible_to_us(self) -> bool: - return ( - self._parent_scope is not None - and not self.shield - and self._parent_scope._effectively_cancelled - ) - - def _timeout(self) -> None: - if self._deadline != math.inf: - loop = get_running_loop() - if loop.time() >= self._deadline: - self.cancel("deadline exceeded") - else: - self._timeout_handle = loop.call_at(self._deadline, self._timeout) - - def _deliver_cancellation(self, origin: CancelScope) -> bool: - """ - Deliver cancellation to directly contained tasks and nested cancel scopes. - - Schedule another run at the end if we still have tasks eligible for - cancellation. - - :param origin: the cancel scope that originated the cancellation - :return: ``True`` if the delivery needs to be retried on the next cycle - - """ - should_retry = False - current = current_task() - for task in self._tasks: - should_retry = True - if task._must_cancel: # type: ignore[attr-defined] - continue - - # The task is eligible for cancellation if it has started - if task is not current and (task is self._host_task or _task_started(task)): - waiter = task._fut_waiter # type: ignore[attr-defined] - if not isinstance(waiter, asyncio.Future) or not waiter.done(): - task.cancel(origin._cancel_reason) - if ( - task is origin._host_task - and origin._pending_uncancellations is not None - ): - origin._pending_uncancellations += 1 - - # Deliver cancellation to child scopes that aren't shielded or running their own - # cancellation callbacks - for scope in self._child_scopes: - if not scope._shield and not scope.cancel_called: - should_retry = scope._deliver_cancellation(origin) or should_retry - - # Schedule another callback if there are still tasks left - if origin is self: - if should_retry: - self._cancel_handle = get_running_loop().call_soon( - self._deliver_cancellation, origin - ) - else: - self._cancel_handle = None - - return should_retry - - def _restart_cancellation_in_parent(self) -> None: - """ - Restart the cancellation effort in the closest directly cancelled parent scope. - - """ - scope = self._parent_scope - while scope is not None: - if scope._cancel_called: - if scope._cancel_handle is None: - scope._deliver_cancellation(scope) - - break - - # No point in looking beyond any shielded scope - if scope._shield: - break - - scope = scope._parent_scope - - def cancel(self, reason: str | None = None) -> None: - if not self._cancel_called: - if self._timeout_handle: - self._timeout_handle.cancel() - self._timeout_handle = None - - self._cancel_called = True - self._cancel_reason = f"Cancelled via cancel scope {id(self):x}" - if task := current_task(): - self._cancel_reason += f" by {task}" - - if reason: - self._cancel_reason += f"; reason: {reason}" - - if self._host_task is not None: - self._deliver_cancellation(self) - - @property - def deadline(self) -> float: - return self._deadline - - @deadline.setter - def deadline(self, value: float) -> None: - self._deadline = float(value) - if self._timeout_handle is not None: - self._timeout_handle.cancel() - self._timeout_handle = None - - if self._active and not self._cancel_called: - self._timeout() - - @property - def cancel_called(self) -> bool: - return self._cancel_called - - @property - def cancelled_caught(self) -> bool: - return self._cancelled_caught - - @property - def shield(self) -> bool: - return self._shield - - @shield.setter - def shield(self, value: bool) -> None: - if self._shield != value: - self._shield = value - if not value: - self._restart_cancellation_in_parent() - - -# -# Task states -# - - -class TaskState: - """ - Encapsulates auxiliary task information that cannot be added to the Task instance - itself because there are no guarantees about its implementation. - """ - - __slots__ = "parent_id", "cancel_scope", "__weakref__" - - def __init__(self, parent_id: int | None, cancel_scope: CancelScope | None): - self.parent_id = parent_id - self.cancel_scope = cancel_scope - - -_task_states: WeakKeyDictionary[asyncio.Task, TaskState] = WeakKeyDictionary() - - -# -# Task groups -# - - -class _AsyncioTaskStatus(abc.TaskStatus): - def __init__(self, future: asyncio.Future, parent_id: int): - self._future = future - self._parent_id = parent_id - - def started(self, value: T_contra | None = None) -> None: - try: - self._future.set_result(value) - except asyncio.InvalidStateError: - if not self._future.cancelled(): - raise RuntimeError( - "called 'started' twice on the same task status" - ) from None - - task = cast(asyncio.Task, current_task()) - _task_states[task].parent_id = self._parent_id - - -if sys.version_info >= (3, 12): - _eager_task_factory_code: CodeType | None = asyncio.eager_task_factory.__code__ -else: - _eager_task_factory_code = None - - -class TaskGroup(abc.TaskGroup): - def __init__(self) -> None: - self.cancel_scope: CancelScope = CancelScope() - self._entered = False - self._exceptions: list[BaseException] = [] - self._tasks: set[asyncio.Task] = set() - self._on_completed_fut: asyncio.Future[None] | None = None - - async def __aenter__(self) -> TaskGroup: - if self._entered: - raise RuntimeError("TaskGroup cannot be entered more than once") - - self._entered = True - - self.cancel_scope.__enter__() - return self - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - try: - if exc_val is not None: - self.cancel_scope.cancel() - if not isinstance(exc_val, CancelledError): - self._exceptions.append(exc_val) - - loop = get_running_loop() - try: - if self._tasks: - with CancelScope() as wait_scope: - while self._tasks: - self._on_completed_fut = loop.create_future() - - try: - await self._on_completed_fut - except CancelledError as exc: - # Shield the scope against further cancellation attempts, - # as they're not productive (#695) - wait_scope.shield = True - self.cancel_scope.cancel() - - # Set exc_val from the cancellation exception if it was - # previously unset. However, we should not replace a native - # cancellation exception with one raise by a cancel scope. - if exc_val is None or ( - isinstance(exc_val, CancelledError) - and not is_anyio_cancellation(exc) - ): - exc_val = exc - - self._on_completed_fut = None - else: - # If there are no child tasks to wait on, run at least one checkpoint - # anyway - await AsyncIOBackend.cancel_shielded_checkpoint() - - if self._exceptions: - # The exception that got us here should already have been - # added to self._exceptions so it's ok to break exception - # chaining and avoid adding a "During handling of above..." - # for each nesting level. - raise BaseExceptionGroup( - "unhandled errors in a TaskGroup", self._exceptions - ) from None - elif exc_val: - raise exc_val - except BaseException as exc: - if self.cancel_scope.__exit__(type(exc), exc, exc.__traceback__): - return True - - raise - - return self.cancel_scope.__exit__(exc_type, exc_val, exc_tb) - finally: - del exc_val, exc_tb, self._exceptions - - def _spawn( - self, - coro: Coroutine[Any, Any, T_co], - name: object, - task_status_future: asyncio.Future | None = None, - ) -> TaskHandle[T_co]: - def task_done(_task: asyncio.Task) -> None: - if sys.version_info >= (3, 14) and self.cancel_scope._host_task is not None: - asyncio.future_discard_from_awaited_by( - _task, self.cancel_scope._host_task - ) - - task_state = _task_states[_task] - assert task_state.cancel_scope is not None - assert _task in task_state.cancel_scope._tasks - task_state.cancel_scope._tasks.remove(_task) - self._tasks.remove(task) - del _task_states[_task] - - if self._on_completed_fut is not None and not self._tasks: - try: - self._on_completed_fut.set_result(None) - except asyncio.InvalidStateError: - pass - - try: - exc = _task.exception() - except CancelledError as e: - while isinstance(e.__context__, CancelledError): - e = e.__context__ - - exc = e - - if exc is not None: - # The future can only be in the cancelled state if the host task was - # cancelled, so return immediately instead of adding one more - # CancelledError to the exceptions list - if task_status_future is not None and task_status_future.cancelled(): - return - - if task_status_future is None or task_status_future.done(): - if not isinstance(exc, CancelledError): - self._exceptions.append(exc) - - if not self.cancel_scope._effectively_cancelled: - self.cancel_scope.cancel() - else: - task_status_future.set_exception(exc) - elif task_status_future is not None and not task_status_future.done(): - task_status_future.set_exception( - RuntimeError("Child exited without calling task_status.started()") - ) - - if task_status_future: - parent_id = id(current_task()) - else: - parent_id = id(self.cancel_scope._host_task) - - handle = TaskHandle(coro, name) - loop = asyncio.get_running_loop() - wrapper_coro = handle._run_coro() - if ( - (factory := loop.get_task_factory()) - and getattr(factory, "__code__", None) is _eager_task_factory_code - and (closure := getattr(factory, "__closure__", None)) - ): - custom_task_constructor = closure[0].cell_contents - task = custom_task_constructor(wrapper_coro, loop=loop, name=handle.name) - else: - task = loop.create_task(wrapper_coro, name=handle.name) - - # Make the spawned task inherit the task group's cancel scope - _task_states[task] = TaskState( - parent_id=parent_id, cancel_scope=self.cancel_scope - ) - self.cancel_scope._tasks.add(task) - self._tasks.add(task) - if sys.version_info >= (3, 14) and self.cancel_scope._host_task is not None: - asyncio.future_add_to_awaited_by(task, self.cancel_scope._host_task) - - task.add_done_callback(task_done) - return handle - - def create_task( - self, - coro: Coroutine[Any, Any, T_co], - *, - name: object = None, - context: Context | None = None, - ) -> TaskHandle[T_co]: - if not isinstance(coro, Coroutine): - raise TypeError(f"expected a coroutine, got {coro.__class__.__qualname__}") - - if not self._entered or not self.cancel_scope._active: - coro.close() - raise RuntimeError( - "This task group is not active; no new tasks can be started." - ) - - if context is not None: - return context.run(self._spawn, coro, name=name) - else: - return self._spawn(coro, name=name) - - async def start( - self, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - *args: Unpack[PosArgsT], - name: object = None, - return_handle: Literal[False] | Literal[True] = False, - ) -> Any: - if not self._entered or not self.cancel_scope._active: - raise RuntimeError( - "This task group is not active; no new tasks can be started." - ) - - future: asyncio.Future = asyncio.Future() - final_name = get_callable_name(func, name) - task_status = _AsyncioTaskStatus(future, id(self.cancel_scope._host_task)) - coro = call_for_coroutine(func, args, task_status=task_status) - handle = self._spawn(coro, final_name, future) - - # If the task raises an exception after sending a start value without a switch - # point between, the task group is cancelled and this method never proceeds to - # process the completed future. That's why we have to have a shielded cancel - # scope here. - try: - await future - except BaseException: - if handle.status is TaskHandle.Status.PENDING: - # Cancel the task and wait for it to exit before returning - handle.cancel() - with CancelScope(shield=True): - await handle.wait() - - raise - - if return_handle: - handle._start_value = future.result() - return handle - else: - return future.result() - - -# -# Threads -# - -_Retval_Queue_Type = tuple[T_Retval | None, BaseException | None] - - -class WorkerThread(Thread): - MAX_IDLE_TIME = 10 # seconds - - def __init__( - self, - root_task: asyncio.Task, - workers: set[WorkerThread], - idle_workers: deque[WorkerThread], - ): - super().__init__(name="AnyIO worker thread") - self.root_task = root_task - self.workers = workers - self.idle_workers = idle_workers - self.loop = root_task._loop - self.queue: Queue[ - tuple[Context, Callable, tuple, asyncio.Future, CancelScope] | None - ] = Queue(2) - self.idle_since = AsyncIOBackend.current_time() - self.stopping = False - - def _report_result( - self, future: asyncio.Future, result: Any, exc: BaseException | None - ) -> None: - self.idle_since = AsyncIOBackend.current_time() - if not self.stopping: - self.idle_workers.append(self) - - if not future.cancelled(): - if exc is not None: - if isinstance(exc, StopIteration): - new_exc = RuntimeError("coroutine raised StopIteration") - new_exc.__cause__ = exc - exc = new_exc - - future.set_exception(exc) - else: - future.set_result(result) - - def run(self) -> None: - with claim_worker_thread(AsyncIOBackend, self.loop): - while True: - item = self.queue.get() - if item is None: - # Shutdown command received - return - - context, func, args, future, cancel_scope = item - if not future.cancelled(): - result = None - exception: BaseException | None = None - threadlocals.current_cancel_scope = cancel_scope - try: - result = context.run(func, *args) - except BaseException as exc: - exception = exc - finally: - del threadlocals.current_cancel_scope - - if not self.loop.is_closed(): - self.loop.call_soon_threadsafe( - self._report_result, future, result, exception - ) - - del result, exception - - self.queue.task_done() - del item, context, func, args, future, cancel_scope - - def stop(self, f: asyncio.Task | None = None) -> None: - self.stopping = True - self.queue.put_nowait(None) - self.workers.discard(self) - try: - self.idle_workers.remove(self) - except ValueError: - pass - - -_threadpool_idle_workers: RunVar[deque[WorkerThread]] = RunVar( - "_threadpool_idle_workers" -) -_threadpool_workers: RunVar[set[WorkerThread]] = RunVar("_threadpool_workers") - - -# -# Subprocesses -# - - -@dataclass(eq=False) -class StreamReaderWrapper(abc.ByteReceiveStream): - _stream: asyncio.StreamReader - - async def receive(self, max_bytes: int = 65536) -> bytes: - data = await self._stream.read(max_bytes) - if data: - return data - else: - raise EndOfStream - - async def aclose(self) -> None: - self._stream.set_exception(ClosedResourceError()) - await AsyncIOBackend.checkpoint() - - -@dataclass(eq=False) -class StreamWriterWrapper(abc.ByteSendStream): - _stream: asyncio.StreamWriter - _closed: bool = field(init=False, default=False) - - async def send(self, item: bytes) -> None: - await AsyncIOBackend.checkpoint_if_cancelled() - stream_paused = self._stream._protocol._paused # type: ignore[attr-defined] - try: - self._stream.write(item) - await self._stream.drain() - except (ConnectionResetError, BrokenPipeError, RuntimeError) as exc: - # If closed by us and/or the peer: - # * on stdlib, drain() raises ConnectionResetError or BrokenPipeError - # * on uvloop and Winloop, write() eventually starts raising RuntimeError - if self._closed: - raise ClosedResourceError from exc - elif self._stream.is_closing(): - raise BrokenResourceError from exc - - raise - - if not stream_paused: - await AsyncIOBackend.cancel_shielded_checkpoint() - - async def aclose(self) -> None: - self._closed = True - self._stream.close() - await AsyncIOBackend.checkpoint() - - -@dataclass(eq=False) -class Process(abc.Process): - _process: asyncio.subprocess.Process - _stdin: StreamWriterWrapper | None - _stdout: StreamReaderWrapper | None - _stderr: StreamReaderWrapper | None - - async def aclose(self) -> None: - with CancelScope(shield=True) as scope: - if self._stdin: - await self._stdin.aclose() - if self._stdout: - await self._stdout.aclose() - if self._stderr: - await self._stderr.aclose() - - scope.shield = False - try: - await self.wait() - except BaseException: - scope.shield = True - self.kill() - await self.wait() - raise - - async def wait(self) -> int: - return await self._process.wait() - - def terminate(self) -> None: - self._process.terminate() - - def kill(self) -> None: - self._process.kill() - - def send_signal(self, signal: int) -> None: - self._process.send_signal(signal) - - @property - def pid(self) -> int: - return self._process.pid - - @property - def returncode(self) -> int | None: - return self._process.returncode - - @property - def stdin(self) -> abc.ByteSendStream | None: - return self._stdin - - @property - def stdout(self) -> abc.ByteReceiveStream | None: - return self._stdout - - @property - def stderr(self) -> abc.ByteReceiveStream | None: - return self._stderr - - -def _forcibly_shutdown_process_pool_on_exit( - workers: set[Process], _task: object -) -> None: - """ - Forcibly shuts down worker processes belonging to this event loop.""" - child_watcher: asyncio.AbstractChildWatcher | None = None # type: ignore[name-defined] - if sys.version_info < (3, 12): - try: - child_watcher = asyncio.get_event_loop_policy().get_child_watcher() - except NotImplementedError: - pass - - # Close as much as possible (w/o async/await) to avoid warnings - for process in workers.copy(): - if process.returncode is not None: - continue - - process._stdin._stream._transport.close() # type: ignore[union-attr] - process._stdout._stream._transport.close() # type: ignore[union-attr] - process._stderr._stream._transport.close() # type: ignore[union-attr] - process.kill() - if child_watcher: - child_watcher.remove_child_handler(process.pid) - - -async def _shutdown_process_pool_on_exit(workers: set[abc.Process]) -> None: - """ - Shuts down worker processes belonging to this event loop. - - NOTE: this only works when the event loop was started using asyncio.run() or - anyio.run(). - - """ - process: abc.Process - try: - await sleep(math.inf) - except asyncio.CancelledError: - workers = workers.copy() - for process in workers: - if process.returncode is None: - process.kill() - - for process in workers: - await process.aclose() - - -# -# Sockets and networking -# - - -class StreamProtocol(asyncio.Protocol): - read_queue: deque[bytes] - read_event: asyncio.Event - write_event: asyncio.Event - exception: Exception | None = None - is_at_eof: bool = False - - def connection_made(self, transport: asyncio.BaseTransport) -> None: - self.read_queue = deque() - self.read_event = asyncio.Event() - self.write_event = asyncio.Event() - self.write_event.set() - cast(asyncio.Transport, transport).set_write_buffer_limits(0) - - def connection_lost(self, exc: Exception | None) -> None: - if exc: - self.exception = exc - - self.read_event.set() - self.write_event.set() - - def data_received(self, data: bytes) -> None: - # ProactorEventloop sometimes sends bytearray instead of bytes - self.read_queue.append(bytes(data)) - self.read_event.set() - - def eof_received(self) -> bool | None: - self.is_at_eof = True - self.read_event.set() - return True - - def pause_writing(self) -> None: - self.write_event = asyncio.Event() - - def resume_writing(self) -> None: - self.write_event.set() - - -class DatagramProtocol(asyncio.DatagramProtocol): - read_queue: deque[tuple[bytes, IPSockAddrType]] - read_event: asyncio.Event - write_event: asyncio.Event - closed_event: asyncio.Event - exception: Exception | None = None - - def connection_made(self, transport: asyncio.BaseTransport) -> None: - self.read_queue = deque(maxlen=100) # arbitrary value - self.read_event = asyncio.Event() - self.write_event = asyncio.Event() - self.closed_event = asyncio.Event() - self.write_event.set() - - def connection_lost(self, exc: Exception | None) -> None: - self.read_event.set() - self.write_event.set() - self.closed_event.set() - - def datagram_received(self, data: bytes, addr: IPSockAddrType) -> None: - addr = convert_ipv6_sockaddr(addr) - self.read_queue.append((data, addr)) - self.read_event.set() - - def error_received(self, exc: Exception) -> None: - self.exception = exc - - def pause_writing(self) -> None: - self.write_event.clear() - - def resume_writing(self) -> None: - self.write_event.set() - - -class SocketStream(abc.SocketStream): - def __init__(self, transport: asyncio.Transport, protocol: StreamProtocol): - self._transport = transport - self._protocol = protocol - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - self._closed = False - - @property - def _raw_socket(self) -> socket.socket: - return self._transport.get_extra_info("socket") - - async def receive(self, max_bytes: int = 65536) -> bytes: - with self._receive_guard: - if ( - not self._protocol.read_event.is_set() - and not self._transport.is_closing() - and not self._protocol.is_at_eof - ): - self._transport.resume_reading() - await self._protocol.read_event.wait() - self._transport.pause_reading() - else: - await AsyncIOBackend.checkpoint() - - try: - chunk = self._protocol.read_queue.popleft() - except IndexError: - if self._closed: - raise ClosedResourceError from None - elif self._protocol.exception: - raise BrokenResourceError from self._protocol.exception - else: - raise EndOfStream from None - - if len(chunk) > max_bytes: - # Split the oversized chunk - chunk, leftover = chunk[:max_bytes], chunk[max_bytes:] - self._protocol.read_queue.appendleft(leftover) - - # If the read queue is empty, clear the flag so that the next call will - # block until data is available - if not self._protocol.read_queue: - self._protocol.read_event.clear() - - return chunk - - async def send(self, item: bytes) -> None: - with self._send_guard: - await AsyncIOBackend.checkpoint() - - if self._closed: - raise ClosedResourceError - elif self._protocol.exception is not None: - raise BrokenResourceError from self._protocol.exception - - try: - self._transport.write(item) - except RuntimeError as exc: - if self._transport.is_closing(): - raise BrokenResourceError from exc - else: - raise - - await self._protocol.write_event.wait() - - async def send_eof(self) -> None: - try: - self._transport.write_eof() - except OSError: - pass - - async def aclose(self) -> None: - self._closed = True - if not self._transport.is_closing(): - try: - self._transport.write_eof() - except OSError: - pass - - self._transport.close() - await sleep(0) - self._transport.abort() - - -class _RawSocketMixin: - _receive_future: asyncio.Future | None = None - _send_future: asyncio.Future | None = None - _closing = False - - def __init__(self, raw_socket: socket.socket): - self.__raw_socket = raw_socket - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - @property - def _raw_socket(self) -> socket.socket: - return self.__raw_socket - - def _wait_until_readable(self, loop: asyncio.AbstractEventLoop) -> asyncio.Future: - def callback(f: object) -> None: - del self._receive_future - loop.remove_reader(self.__raw_socket) - - f = self._receive_future = asyncio.Future() - loop.add_reader(self.__raw_socket, f.set_result, None) - f.add_done_callback(callback) - return f - - def _wait_until_writable(self, loop: asyncio.AbstractEventLoop) -> asyncio.Future: - def callback(f: object) -> None: - del self._send_future - loop.remove_writer(self.__raw_socket) - - f = self._send_future = asyncio.Future() - loop.add_writer(self.__raw_socket, f.set_result, None) - f.add_done_callback(callback) - return f - - async def aclose(self) -> None: - if not self._closing: - self._closing = True - if self.__raw_socket.fileno() != -1: - self.__raw_socket.close() - - if self._receive_future: - self._receive_future.set_result(None) - if self._send_future: - self._send_future.set_result(None) - - -class UNIXSocketStream(_RawSocketMixin, abc.UNIXSocketStream): - async def send_eof(self) -> None: - with self._send_guard: - self._raw_socket.shutdown(socket.SHUT_WR) - - async def receive(self, max_bytes: int = 65536) -> bytes: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._receive_guard: - while True: - try: - data = self._raw_socket.recv(max_bytes) - except BlockingIOError: - await self._wait_until_readable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - if not data: - raise EndOfStream - - return data - - async def send(self, item: bytes) -> None: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._send_guard: - view = memoryview(item) - while view: - try: - bytes_sent = self._raw_socket.send(view) - except BlockingIOError: - await self._wait_until_writable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - view = view[bytes_sent:] - - async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: - if not isinstance(msglen, int) or msglen < 0: - raise ValueError("msglen must be a non-negative integer") - if not isinstance(maxfds, int) or maxfds < 1: - raise ValueError("maxfds must be a positive integer") - - loop = get_running_loop() - fds = array.array("i") - await AsyncIOBackend.checkpoint() - with self._receive_guard: - while True: - try: - message, ancdata, flags, addr = self._raw_socket.recvmsg( - msglen, socket.CMSG_LEN(maxfds * fds.itemsize) - ) - except BlockingIOError: - await self._wait_until_readable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - if not message and not ancdata: - raise EndOfStream - - break - - for cmsg_level, cmsg_type, cmsg_data in ancdata: - if cmsg_level != socket.SOL_SOCKET or cmsg_type != socket.SCM_RIGHTS: - raise RuntimeError( - f"Received unexpected ancillary data; message = {message!r}, " - f"cmsg_level = {cmsg_level}, cmsg_type = {cmsg_type}" - ) - - fds.frombytes(cmsg_data[: len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) - - return message, list(fds) - - async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: - if not message: - raise ValueError("message must not be empty") - if not fds: - raise ValueError("fds must not be empty") - - loop = get_running_loop() - filenos: list[int] = [] - for fd in fds: - if isinstance(fd, int): - filenos.append(fd) - elif isinstance(fd, IOBase): - filenos.append(fd.fileno()) - - fdarray = array.array("i", filenos) - await AsyncIOBackend.checkpoint() - with self._send_guard: - while True: - try: - # The ignore can be removed after mypy picks up - # https://github.com/python/typeshed/pull/5545 - self._raw_socket.sendmsg( - [message], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, fdarray)] - ) - break - except BlockingIOError: - await self._wait_until_writable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - - -class TCPSocketListener(abc.SocketListener): - _accept_scope: CancelScope | None = None - _closed = False - - def __init__(self, raw_socket: socket.socket): - self.__raw_socket = raw_socket - self._loop = cast(asyncio.BaseEventLoop, get_running_loop()) - self._accept_guard = ResourceGuard("accepting connections from") - - @property - def _raw_socket(self) -> socket.socket: - return self.__raw_socket - - async def accept(self) -> abc.SocketStream: - if self._closed: - raise ClosedResourceError - - with self._accept_guard: - await AsyncIOBackend.checkpoint() - with CancelScope() as self._accept_scope: - try: - client_sock, _addr = await self._loop.sock_accept(self._raw_socket) - except asyncio.CancelledError: - # Workaround for https://bugs.python.org/issue41317 - try: - self._loop.remove_reader(self._raw_socket) - except (ValueError, NotImplementedError): - pass - - if self._closed: - raise ClosedResourceError from None - - raise - finally: - self._accept_scope = None - - client_sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) - transport, protocol = await self._loop.connect_accepted_socket( - StreamProtocol, client_sock - ) - return SocketStream(transport, protocol) - - async def aclose(self) -> None: - if self._closed: - return - - self._closed = True - if self._accept_scope: - # Workaround for https://bugs.python.org/issue41317 - try: - self._loop.remove_reader(self._raw_socket) - except (ValueError, NotImplementedError): - pass - - self._accept_scope.cancel() - await sleep(0) - - self._raw_socket.close() - - -class UNIXSocketListener(abc.SocketListener): - def __init__(self, raw_socket: socket.socket): - self.__raw_socket = raw_socket - self._loop = get_running_loop() - self._accept_guard = ResourceGuard("accepting connections from") - self._closed = False - - async def accept(self) -> abc.SocketStream: - await AsyncIOBackend.checkpoint() - with self._accept_guard: - while True: - try: - client_sock, _ = self.__raw_socket.accept() - client_sock.setblocking(False) - return UNIXSocketStream(client_sock) - except BlockingIOError: - f: asyncio.Future = asyncio.Future() - self._loop.add_reader(self.__raw_socket, f.set_result, None) - f.add_done_callback( - lambda _: self._loop.remove_reader(self.__raw_socket) - ) - await f - except OSError as exc: - if self._closed: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - - async def aclose(self) -> None: - self._closed = True - self.__raw_socket.close() - - @property - def _raw_socket(self) -> socket.socket: - return self.__raw_socket - - -class UDPSocket(abc.UDPSocket): - def __init__( - self, transport: asyncio.DatagramTransport, protocol: DatagramProtocol - ): - self._transport = transport - self._protocol = protocol - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - self._closed = False - - @property - def _raw_socket(self) -> socket.socket: - return self._transport.get_extra_info("socket") - - async def aclose(self) -> None: - self._closed = True - if not self._transport.is_closing(): - self._transport.close() - - await self._protocol.closed_event.wait() - - async def receive(self) -> tuple[bytes, IPSockAddrType]: - with self._receive_guard: - await AsyncIOBackend.checkpoint() - - # If the buffer is empty, ask for more data - if not self._protocol.read_queue and not self._transport.is_closing(): - self._protocol.read_event.clear() - await self._protocol.read_event.wait() - - try: - return self._protocol.read_queue.popleft() - except IndexError: - if self._closed: - raise ClosedResourceError from None - else: - raise BrokenResourceError from None - - async def send(self, item: UDPPacketType) -> None: - with self._send_guard: - await AsyncIOBackend.checkpoint() - await self._protocol.write_event.wait() - if self._closed: - raise ClosedResourceError - elif self._transport.is_closing(): - raise BrokenResourceError - else: - self._transport.sendto(*item) - - -class ConnectedUDPSocket(abc.ConnectedUDPSocket): - def __init__( - self, transport: asyncio.DatagramTransport, protocol: DatagramProtocol - ): - self._transport = transport - self._protocol = protocol - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - self._closed = False - - @property - def _raw_socket(self) -> socket.socket: - return self._transport.get_extra_info("socket") - - async def aclose(self) -> None: - self._closed = True - if not self._transport.is_closing(): - self._transport.close() - - await self._protocol.closed_event.wait() - - async def receive(self) -> bytes: - with self._receive_guard: - await AsyncIOBackend.checkpoint() - - # If the buffer is empty, ask for more data - if not self._protocol.read_queue and not self._transport.is_closing(): - self._protocol.read_event.clear() - await self._protocol.read_event.wait() - - try: - packet = self._protocol.read_queue.popleft() - except IndexError: - if self._closed: - raise ClosedResourceError from None - else: - raise BrokenResourceError from None - - return packet[0] - - async def send(self, item: bytes) -> None: - with self._send_guard: - await AsyncIOBackend.checkpoint() - await self._protocol.write_event.wait() - if self._closed: - raise ClosedResourceError - elif self._transport.is_closing(): - raise BrokenResourceError - else: - self._transport.sendto(item) - - -class UNIXDatagramSocket(_RawSocketMixin, abc.UNIXDatagramSocket): - async def receive(self) -> UNIXDatagramPacketType: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._receive_guard: - while True: - try: - data = self._raw_socket.recvfrom(65536) - except BlockingIOError: - await self._wait_until_readable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - return data - - async def send(self, item: UNIXDatagramPacketType) -> None: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._send_guard: - while True: - try: - self._raw_socket.sendto(*item) - except BlockingIOError: - await self._wait_until_writable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - return - - -class ConnectedUNIXDatagramSocket(_RawSocketMixin, abc.ConnectedUNIXDatagramSocket): - async def receive(self) -> bytes: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._receive_guard: - while True: - try: - data = self._raw_socket.recv(65536) - except BlockingIOError: - await self._wait_until_readable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - return data - - async def send(self, item: bytes) -> None: - loop = get_running_loop() - await AsyncIOBackend.checkpoint() - with self._send_guard: - while True: - try: - self._raw_socket.send(item) - except BlockingIOError: - await self._wait_until_writable(loop) - except OSError as exc: - if self._closing: - raise ClosedResourceError from None - else: - raise BrokenResourceError from exc - else: - return - - -_read_events: RunVar[dict[int, asyncio.Future[bool]]] = RunVar("read_events") -_write_events: RunVar[dict[int, asyncio.Future[bool]]] = RunVar("write_events") - - -# -# Synchronization -# - - -class Event(BaseEvent): - __slots__ = ("_event",) - - def __new__(cls) -> Event: - return object.__new__(cls) - - def __init__(self) -> None: - self._event = asyncio.Event() - - def set(self) -> None: - self._event.set() - - def is_set(self) -> bool: - return self._event.is_set() - - async def wait(self) -> None: - if self.is_set(): - await AsyncIOBackend.checkpoint() - else: - await self._event.wait() - - def statistics(self) -> EventStatistics: - return EventStatistics(len(self._event._waiters)) - - -class Lock(BaseLock): - __slots__ = "_fast_acquire", "_owner_task", "_waiters" - - def __new__(cls, *, fast_acquire: bool = False) -> Lock: - return object.__new__(cls) - - def __init__(self, *, fast_acquire: bool = False) -> None: - self._fast_acquire = fast_acquire - self._owner_task: asyncio.Task | None = None - self._waiters: deque[tuple[asyncio.Task, asyncio.Future]] = deque() - - async def acquire(self) -> None: - task = cast(asyncio.Task, current_task()) - if self._owner_task is None and not self._waiters: - await AsyncIOBackend.checkpoint_if_cancelled() - self._owner_task = task - - # Unless on the "fast path", yield control of the event loop so that other - # tasks can run too - if not self._fast_acquire: - try: - await AsyncIOBackend.cancel_shielded_checkpoint() - except CancelledError: - self.release() - raise - - return - - if self._owner_task == task: - raise RuntimeError("Attempted to acquire an already held Lock") - - fut: asyncio.Future[None] = asyncio.Future() - item = task, fut - self._waiters.append(item) - try: - await fut - except CancelledError: - if fut.cancelled(): - try: - self._waiters.remove(item) - except ValueError: - pass - else: - self.release() - - raise - - def acquire_nowait(self) -> None: - task = cast(asyncio.Task, current_task()) - if self._owner_task is None and not self._waiters: - self._owner_task = task - return - - if self._owner_task is task: - raise RuntimeError("Attempted to acquire an already held Lock") - - raise WouldBlock - - def locked(self) -> bool: - return self._owner_task is not None - - def release(self) -> None: - if self._owner_task != current_task(): - raise RuntimeError("The current task is not holding this lock") - - # A cancelled waiter that already received ownership removes itself from - # _waiters before calling release(); any cancelled waiter still queued here - # was cancelled before being woken, so drop it. - while self._waiters: - task, fut = self._waiters.popleft() - if fut.cancelled(): - continue - - self._owner_task = task - fut.set_result(None) - return - - self._owner_task = None - - def statistics(self) -> LockStatistics: - task_info = AsyncIOTaskInfo(self._owner_task) if self._owner_task else None - return LockStatistics(self.locked(), task_info, len(self._waiters)) - - -class Semaphore(BaseSemaphore): - __slots__ = "_value", "_max_value", "_fast_acquire", "_waiters" - - def __new__( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> Semaphore: - return object.__new__(cls) - - def __init__( - self, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ): - super().__init__(initial_value, max_value=max_value) - self._value = initial_value - self._max_value = max_value - self._fast_acquire = fast_acquire - self._waiters: deque[asyncio.Future[None]] = deque() - - async def acquire(self) -> None: - if self._value > 0 and not self._waiters: - await AsyncIOBackend.checkpoint_if_cancelled() - self._value -= 1 - - # Unless on the "fast path", yield control of the event loop so that other - # tasks can run too - if not self._fast_acquire: - try: - await AsyncIOBackend.cancel_shielded_checkpoint() - except CancelledError: - self.release() - raise - - return - - fut: asyncio.Future[None] = asyncio.Future() - self._waiters.append(fut) - try: - await fut - except CancelledError: - if fut.cancelled(): - try: - self._waiters.remove(fut) - except ValueError: - pass - else: - self.release() - - raise - - def acquire_nowait(self) -> None: - if self._value == 0: - raise WouldBlock - - self._value -= 1 - - def release(self) -> None: - if self._max_value is not None and self._value == self._max_value: - raise ValueError("semaphore released too many times") - - while self._waiters: - fut = self._waiters.popleft() - if fut.cancelled(): - continue - - fut.set_result(None) - return - - self._value += 1 - - @property - def value(self) -> int: - return self._value - - @property - def max_value(self) -> int | None: - return self._max_value - - def statistics(self) -> SemaphoreStatistics: - return SemaphoreStatistics(len(self._waiters)) - - -class CapacityLimiter(BaseCapacityLimiter): - __slots__ = "_total_tokens", "_borrowers", "_wait_queue" - - def __new__(cls, total_tokens: float) -> CapacityLimiter: - return object.__new__(cls) - - def __init__(self, total_tokens: float): - self._total_tokens: float = 0 - self._borrowers: set[Any] = set() - self._wait_queue: OrderedDict[Any, asyncio.Event] = OrderedDict() - self.total_tokens = total_tokens - - async def __aenter__(self) -> None: - await self.acquire() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.release() - - @property - def total_tokens(self) -> float: - return self._total_tokens - - @total_tokens.setter - def total_tokens(self, value: float) -> None: - if not isinstance(value, int) and not math.isinf(value): - raise TypeError("total_tokens must be an int or math.inf") - - if value < 0: - raise ValueError("total_tokens must be >= 0") - - waiters_to_notify = max(value - self._total_tokens, 0) - self._total_tokens = value - - # Notify waiting tasks that they have acquired the limiter - while self._wait_queue and waiters_to_notify: - event = self._wait_queue.popitem(last=False)[1] - event.set() - waiters_to_notify -= 1 - - @property - def borrowed_tokens(self) -> int: - return len(self._borrowers) - - @property - def available_tokens(self) -> float: - return self._total_tokens - len(self._borrowers) - - def _notify_next_waiter(self) -> None: - """Notify the next task in line if this limiter has free capacity now.""" - if self._wait_queue and len(self._borrowers) < self._total_tokens: - event = self._wait_queue.popitem(last=False)[1] - event.set() - - def acquire_nowait(self) -> None: - self.acquire_on_behalf_of_nowait(current_task()) - - def acquire_on_behalf_of_nowait(self, borrower: object) -> None: - if borrower in self._borrowers: - raise RuntimeError( - "this borrower is already holding one of this CapacityLimiter's tokens" - ) - - if self._wait_queue or len(self._borrowers) >= self._total_tokens: - raise WouldBlock - - self._borrowers.add(borrower) - - async def acquire(self) -> None: - return await self.acquire_on_behalf_of(current_task()) - - async def acquire_on_behalf_of(self, borrower: object) -> None: - await AsyncIOBackend.checkpoint_if_cancelled() - try: - self.acquire_on_behalf_of_nowait(borrower) - except WouldBlock: - event = asyncio.Event() - self._wait_queue[borrower] = event - try: - await event.wait() - except BaseException: - self._wait_queue.pop(borrower, None) - if event.is_set(): - self._notify_next_waiter() - - raise - - self._borrowers.add(borrower) - else: - try: - await AsyncIOBackend.cancel_shielded_checkpoint() - except BaseException: - self.release() - raise - - def release(self) -> None: - self.release_on_behalf_of(current_task()) - - def release_on_behalf_of(self, borrower: object) -> None: - try: - self._borrowers.remove(borrower) - except KeyError: - raise RuntimeError( - "this borrower isn't holding any of this CapacityLimiter's tokens" - ) from None - - self._notify_next_waiter() - - def statistics(self) -> CapacityLimiterStatistics: - return CapacityLimiterStatistics( - self.borrowed_tokens, - self.total_tokens, - tuple(self._borrowers), - len(self._wait_queue), - ) - - -_default_thread_limiter: RunVar[CapacityLimiter] = RunVar("_default_thread_limiter") - - -# -# Operating system signals -# - - -class _SignalReceiver: - def __init__(self, signals: tuple[Signals, ...]): - self._signals = signals - self._loop = get_running_loop() - self._signal_queue: deque[Signals] = deque() - self._future: asyncio.Future = asyncio.Future() - self._handled_signals: set[Signals] = set() - - def _deliver(self, signum: Signals) -> None: - self._signal_queue.append(signum) - if not self._future.done(): - self._future.set_result(None) - - def __enter__(self) -> _SignalReceiver: - for sig in set(self._signals): - self._loop.add_signal_handler(sig, self._deliver, sig) - self._handled_signals.add(sig) - - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - for sig in self._handled_signals: - self._loop.remove_signal_handler(sig) - - def __aiter__(self) -> _SignalReceiver: - return self - - async def __anext__(self) -> Signals: - await AsyncIOBackend.checkpoint() - if not self._signal_queue: - self._future = asyncio.Future() - await self._future - - return self._signal_queue.popleft() - - -# -# Testing and debugging -# - - -class AsyncIOTaskInfo(TaskInfo): - def __init__(self, task: asyncio.Task): - task_state = _task_states.get(task) - if task_state is None: - parent_id = None - else: - parent_id = task_state.parent_id - - coro = task.get_coro() - assert coro is not None, "created TaskInfo from a completed Task" - super().__init__(id(task), parent_id, task.get_name(), coro) - self._task = weakref.ref(task) - - def has_pending_cancellation(self) -> bool: - if not (task := self._task()): - # If the task isn't around anymore, it won't have a pending cancellation - return False - - if task._must_cancel: # type: ignore[attr-defined] - return True - elif ( - isinstance(task._fut_waiter, asyncio.Future) # type: ignore[attr-defined] - and task._fut_waiter.cancelled() # type: ignore[attr-defined] - ): - return True - - if task_state := _task_states.get(task): - if cancel_scope := task_state.cancel_scope: - return cancel_scope._effectively_cancelled - - return False - - -class TestRunner(abc.TestRunner): - _send_stream: MemoryObjectSendStream[tuple[Awaitable[Any], asyncio.Future[Any]]] - - def __init__( - self, - *, - debug: bool | None = None, - use_uvloop: bool = False, - loop_factory: Callable[[], AbstractEventLoop] | None = None, - ) -> None: - if use_uvloop and loop_factory is None: - if sys.platform != "win32": - import uvloop - - loop_factory = uvloop.new_event_loop - else: - import winloop - - loop_factory = winloop.new_event_loop - - self._runner = Runner(debug=debug, loop_factory=loop_factory) - self._exceptions: list[BaseException] = [] - self._runner_task: asyncio.Task | None = None - - def __enter__(self) -> TestRunner: - self._runner.__enter__() - self.get_loop().set_exception_handler(self._exception_handler) - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self._runner.__exit__(exc_type, exc_val, exc_tb) - - def get_loop(self) -> AbstractEventLoop: - return self._runner.get_loop() - - def is_running(self) -> bool: - try: - asyncio.get_running_loop() - return True - except RuntimeError: - return False - - def _exception_handler( - self, loop: asyncio.AbstractEventLoop, context: dict[str, Any] - ) -> None: - if isinstance(context.get("exception"), Exception): - self._exceptions.append(context["exception"]) - else: - loop.default_exception_handler(context) - - def _raise_async_exceptions(self) -> None: - # Re-raise any exceptions raised in asynchronous callbacks - if self._exceptions: - exceptions, self._exceptions = self._exceptions, [] - if len(exceptions) == 1: - raise exceptions[0] - elif exceptions: - raise BaseExceptionGroup( - "Multiple exceptions occurred in asynchronous callbacks", exceptions - ) - - async def _run_tests_and_fixtures( - self, - receive_stream: MemoryObjectReceiveStream[ - tuple[Awaitable[T_Retval], asyncio.Future[T_Retval]] - ], - ) -> None: - from _pytest.outcomes import OutcomeException - - with receive_stream, self._send_stream: - async for coro, future in receive_stream: - try: - retval = await coro - except CancelledError as exc: - if not future.cancelled(): - future.cancel(*exc.args) - - raise - except BaseException as exc: - if not future.cancelled(): - future.set_exception(exc) - - if not isinstance(exc, (Exception, OutcomeException)): - raise - else: - if not future.cancelled(): - future.set_result(retval) - - async def _call_in_runner_task( - self, - func: Callable[P, Awaitable[T_Retval]], - /, - *args: P.args, - **kwargs: P.kwargs, - ) -> T_Retval: - if not self._runner_task: - self._send_stream, receive_stream = create_memory_object_stream[ - tuple[Awaitable[Any], asyncio.Future] - ](1) - self._runner_task = self.get_loop().create_task( - self._run_tests_and_fixtures(receive_stream) - ) - - coro = func(*args, **kwargs) - future: asyncio.Future[T_Retval] = self.get_loop().create_future() - self._send_stream.send_nowait((coro, future)) - return await future - - def run_asyncgen_fixture( - self, - fixture_func: Callable[..., AsyncGenerator[T_Retval, Any]], - kwargs: dict[str, Any], - ) -> Iterable[T_Retval]: - asyncgen = fixture_func(**kwargs) - fixturevalue: T_Retval = self.get_loop().run_until_complete( - self._call_in_runner_task(asyncgen.asend, None) - ) - self._raise_async_exceptions() - - yield fixturevalue - - try: - self.get_loop().run_until_complete( - self._call_in_runner_task(asyncgen.asend, None) - ) - except StopAsyncIteration: - self._raise_async_exceptions() - else: - self.get_loop().run_until_complete(asyncgen.aclose()) - raise RuntimeError("Async generator fixture did not stop") - - def run_fixture( - self, - fixture_func: Callable[..., Coroutine[Any, Any, T_Retval]], - kwargs: dict[str, Any], - ) -> T_Retval: - retval = self.get_loop().run_until_complete( - self._call_in_runner_task(fixture_func, **kwargs) - ) - self._raise_async_exceptions() - return retval - - def run_test( - self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] - ) -> None: - from _pytest.outcomes import OutcomeException - - try: - self.get_loop().run_until_complete( - self._call_in_runner_task(test_func, **kwargs) - ) - except Exception as exc: - self._exceptions.append(exc) - except OutcomeException: - raise - except BaseException: - # A BaseException (e.g. KeyboardInterrupt, SystemExit) interrupted the event loop before - # the test completed. Cancel _runner_task so it does not resume when the event - # loop is re-entered during async generator fixture teardown. - if self._runner_task is not None and not self._runner_task.done(): - self._runner_task.cancel() - self._send_stream.close() - try: - self.get_loop().run_until_complete(self._runner_task) - except CancelledError: - pass - finally: - self._runner_task = None - raise - self._raise_async_exceptions() - - -class AsyncIOBackend(AsyncBackend): - @classmethod - def run( - cls, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - args: tuple[Unpack[PosArgsT]], - kwargs: dict[str, Any], - options: dict[str, Any], - ) -> T_Retval: - @wraps(func) - async def wrapper() -> T_Retval: - task = cast(asyncio.Task, current_task()) - task.set_name(get_callable_name(func)) - _task_states[task] = TaskState(None, None) - - try: - return await func(*args) - finally: - del _task_states[task] - - debug = options.get("debug", None) - loop_factory = options.get("loop_factory", None) - if loop_factory is None and options.get("use_uvloop", False): - if sys.platform != "win32": - import uvloop - - loop_factory = uvloop.new_event_loop - else: - import winloop - - loop_factory = winloop.new_event_loop - - with Runner(debug=debug, loop_factory=loop_factory) as runner: - return runner.run(wrapper()) - - @classmethod - def current_token(cls) -> object: - return get_running_loop() - - @classmethod - def current_time(cls) -> float: - return get_running_loop().time() - - @classmethod - def cancelled_exception_class(cls) -> type[BaseException]: - return CancelledError - - @classmethod - async def checkpoint(cls) -> None: - await sleep(0) - - @classmethod - async def checkpoint_if_cancelled(cls) -> None: - task = current_task() - if task is None: - return - - try: - cancel_scope = _task_states[task].cancel_scope - except KeyError: - return - - while cancel_scope: - if cancel_scope.cancel_called: - await sleep(0) - elif cancel_scope.shield: - break - else: - cancel_scope = cancel_scope._parent_scope - - @classmethod - async def cancel_shielded_checkpoint(cls) -> None: - with CancelScope(shield=True): - await sleep(0) - - @classmethod - async def sleep(cls, delay: float) -> None: - await sleep(delay) - - @classmethod - def create_cancel_scope( - cls, *, deadline: float = math.inf, shield: bool = False - ) -> CancelScope: - return CancelScope(deadline=deadline, shield=shield) - - @classmethod - def current_effective_deadline(cls) -> float: - if (task := current_task()) is None: - return math.inf - - try: - cancel_scope = _task_states[task].cancel_scope - except KeyError: - return math.inf - - deadline = math.inf - while cancel_scope: - deadline = min(deadline, cancel_scope.deadline) - if cancel_scope._cancel_called: - deadline = -math.inf - break - elif cancel_scope.shield: - break - else: - cancel_scope = cancel_scope._parent_scope - - return deadline - - @classmethod - def create_task_group(cls) -> abc.TaskGroup: - return TaskGroup() - - @classmethod - def create_event(cls) -> abc.Event: - return Event() - - @classmethod - def create_lock(cls, *, fast_acquire: bool) -> abc.Lock: - return Lock(fast_acquire=fast_acquire) - - @classmethod - def create_semaphore( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> abc.Semaphore: - return Semaphore(initial_value, max_value=max_value, fast_acquire=fast_acquire) - - @classmethod - def create_capacity_limiter(cls, total_tokens: float) -> abc.CapacityLimiter: - return CapacityLimiter(total_tokens) - - @classmethod - async def run_sync_in_worker_thread( # type: ignore[return] - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - abandon_on_cancel: bool = False, - limiter: abc.CapacityLimiter | None = None, - ) -> T_Retval: - await cls.checkpoint() - - # If this is the first run in this event loop thread, set up the necessary - # variables - try: - idle_workers = _threadpool_idle_workers.get() - workers = _threadpool_workers.get() - except LookupError: - idle_workers = deque() - workers = set() - _threadpool_idle_workers.set(idle_workers) - _threadpool_workers.set(workers) - - async with limiter or cls.current_default_thread_limiter(): - with CancelScope(shield=not abandon_on_cancel) as scope: - future = asyncio.Future[T_Retval]() - root_task = find_root_task() - if not idle_workers: - worker = WorkerThread(root_task, workers, idle_workers) - worker.start() - workers.add(worker) - root_task.add_done_callback( - worker.stop, context=contextvars.Context() - ) - else: - worker = idle_workers.pop() - - # Prune any other workers that have been idle for MAX_IDLE_TIME - # seconds or longer - now = cls.current_time() - while idle_workers: - if ( - now - idle_workers[0].idle_since - < WorkerThread.MAX_IDLE_TIME - ): - break - - expired_worker = idle_workers.popleft() - expired_worker.root_task.remove_done_callback( - expired_worker.stop - ) - expired_worker.stop() - - context = copy_context() - context.run(set_current_async_library, None) - if abandon_on_cancel or scope._parent_scope is None: - worker_scope = scope - else: - worker_scope = scope._parent_scope - - worker.queue.put_nowait((context, func, args, future, worker_scope)) - return await future - - @classmethod - def check_cancelled(cls) -> None: - scope: CancelScope | None = threadlocals.current_cancel_scope - while scope is not None: - if scope.cancel_called: - raise CancelledError(f"Cancelled via cancel scope {id(scope):x}") - - if scope.shield: - return - - scope = scope._parent_scope - - @classmethod - def run_async_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_co: - async def task_wrapper() -> T_co: - __tracebackhide__ = True - if scope is not None: - task = cast(asyncio.Task, current_task()) - _task_states[task] = TaskState(None, scope) - scope._tasks.add(task) - try: - return await func(*args) - except CancelledError as exc: - raise concurrent.futures.CancelledError(str(exc)) from None - finally: - if scope is not None: - scope._tasks.discard(task) - - loop = cast( - "AbstractEventLoop", token or threadlocals.current_token.native_token - ) - if loop.is_closed(): - raise RunFinishedError - - context = copy_context() - context.run(set_current_async_library, "asyncio") - scope = getattr(threadlocals, "current_cancel_scope", None) - f: concurrent.futures.Future[T_co] = context.run( - asyncio.run_coroutine_threadsafe, task_wrapper(), loop=loop - ) - return f.result() - - @classmethod - def run_sync_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_Retval: - @wraps(func) - def wrapper() -> None: - try: - set_current_async_library("asyncio") - f.set_result(func(*args)) - except BaseException as exc: - f.set_exception(exc) - if not isinstance(exc, Exception): - raise - - loop = cast( - "AbstractEventLoop", token or threadlocals.current_token.native_token - ) - if loop.is_closed(): - raise RunFinishedError - - f: concurrent.futures.Future[T_Retval] = Future() - loop.call_soon_threadsafe(wrapper) - return f.result() - - @classmethod - async def open_process( - cls, - command: StrOrBytesPath | Sequence[StrOrBytesPath], - *, - stdin: int | IO[Any] | None, - stdout: int | IO[Any] | None, - stderr: int | IO[Any] | None, - **kwargs: Any, - ) -> Process: - await cls.checkpoint() - if isinstance(command, PathLike): - command = os.fspath(command) - - if isinstance(command, (str, bytes)): - process = await asyncio.create_subprocess_shell( - command, - stdin=stdin, - stdout=stdout, - stderr=stderr, - **kwargs, - ) - else: - process = await asyncio.create_subprocess_exec( - *command, - stdin=stdin, - stdout=stdout, - stderr=stderr, - **kwargs, - ) - - stdin_stream = StreamWriterWrapper(process.stdin) if process.stdin else None - stdout_stream = StreamReaderWrapper(process.stdout) if process.stdout else None - stderr_stream = StreamReaderWrapper(process.stderr) if process.stderr else None - return Process(process, stdin_stream, stdout_stream, stderr_stream) - - @classmethod - def setup_process_pool_exit_at_shutdown(cls, workers: set[abc.Process]) -> None: - create_task( - _shutdown_process_pool_on_exit(workers), - name="AnyIO process pool shutdown task", - ) - find_root_task().add_done_callback( - partial(_forcibly_shutdown_process_pool_on_exit, workers) # type:ignore[arg-type] - ) - - @classmethod - async def connect_tcp( - cls, host: str, port: int, local_address: IPSockAddrType | None = None - ) -> abc.SocketStream: - transport, protocol = cast( - tuple[asyncio.Transport, StreamProtocol], - await get_running_loop().create_connection( - StreamProtocol, host, port, local_addr=local_address - ), - ) - transport.pause_reading() - return SocketStream(transport, protocol) - - @classmethod - async def connect_unix(cls, path: str | bytes) -> abc.UNIXSocketStream: - await cls.checkpoint() - loop = get_running_loop() - raw_socket = socket.socket(socket.AF_UNIX) - raw_socket.setblocking(False) - while True: - try: - raw_socket.connect(path) - except BlockingIOError: - f: asyncio.Future = asyncio.Future() - loop.add_writer(raw_socket, f.set_result, None) - f.add_done_callback(lambda _: loop.remove_writer(raw_socket)) - await f - except BaseException: - raw_socket.close() - raise - else: - return UNIXSocketStream(raw_socket) - - @classmethod - def create_tcp_listener(cls, sock: socket.socket) -> SocketListener: - return TCPSocketListener(sock) - - @classmethod - def create_unix_listener(cls, sock: socket.socket) -> SocketListener: - return UNIXSocketListener(sock) - - @classmethod - async def create_udp_socket( - cls, - family: AddressFamily, - local_address: IPSockAddrType | None, - remote_address: IPSockAddrType | None, - reuse_port: bool, - ) -> UDPSocket | ConnectedUDPSocket: - transport, protocol = await get_running_loop().create_datagram_endpoint( - DatagramProtocol, - local_addr=local_address, - remote_addr=remote_address, - family=family, - reuse_port=reuse_port, - ) - if protocol.exception: - transport.close() - raise protocol.exception - - if not remote_address: - return UDPSocket(transport, protocol) - else: - return ConnectedUDPSocket(transport, protocol) - - @classmethod - async def create_unix_datagram_socket( # type: ignore[override] - cls, raw_socket: socket.socket, remote_path: str | bytes | None - ) -> abc.UNIXDatagramSocket | abc.ConnectedUNIXDatagramSocket: - await cls.checkpoint() - loop = get_running_loop() - - if remote_path: - while True: - try: - raw_socket.connect(remote_path) - except BlockingIOError: - f: asyncio.Future = asyncio.Future() - loop.add_writer(raw_socket, f.set_result, None) - f.add_done_callback(lambda _: loop.remove_writer(raw_socket)) - await f - except BaseException: - raw_socket.close() - raise - else: - return ConnectedUNIXDatagramSocket(raw_socket) - else: - return UNIXDatagramSocket(raw_socket) - - @classmethod - async def getaddrinfo( - cls, - host: bytes | str | None, - port: str | int | None, - *, - family: int | AddressFamily = 0, - type: int | SocketKind = 0, - proto: int = 0, - flags: int = 0, - ) -> Sequence[ - tuple[ - AddressFamily, - SocketKind, - int, - str, - tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], - ] - ]: - return await get_running_loop().getaddrinfo( - host, port, family=family, type=type, proto=proto, flags=flags - ) - - @classmethod - async def getnameinfo( - cls, sockaddr: IPSockAddrType, flags: int = 0 - ) -> tuple[str, str]: - return await get_running_loop().getnameinfo(sockaddr, flags) - - @classmethod - async def wait_readable(cls, obj: FileDescriptorLike) -> None: - try: - read_events = _read_events.get() - except LookupError: - read_events = {} - _read_events.set(read_events) - - fd = obj if isinstance(obj, int) else obj.fileno() - if read_events.get(fd): - raise BusyResourceError("reading from") - - loop = get_running_loop() - fut: asyncio.Future[bool] = loop.create_future() - - def cb() -> None: - try: - del read_events[fd] - except KeyError: - pass - else: - remove_reader(fd) - - try: - fut.set_result(True) - except asyncio.InvalidStateError: - pass - - try: - loop.add_reader(fd, cb) - except NotImplementedError: - from anyio._core._asyncio_selector_thread import get_selector - - selector = get_selector() - selector.add_reader(fd, cb) - remove_reader = selector.remove_reader - else: - remove_reader = loop.remove_reader - - read_events[fd] = fut - try: - success = await fut - finally: - try: - del read_events[fd] - except KeyError: - pass - else: - remove_reader(fd) - - if not success: - raise ClosedResourceError - - @classmethod - async def wait_writable(cls, obj: FileDescriptorLike) -> None: - try: - write_events = _write_events.get() - except LookupError: - write_events = {} - _write_events.set(write_events) - - fd = obj if isinstance(obj, int) else obj.fileno() - if write_events.get(fd): - raise BusyResourceError("writing to") - - loop = get_running_loop() - fut: asyncio.Future[bool] = loop.create_future() - - def cb() -> None: - try: - del write_events[fd] - except KeyError: - pass - else: - remove_writer(fd) - - try: - fut.set_result(True) - except asyncio.InvalidStateError: - pass - - try: - loop.add_writer(fd, cb) - except NotImplementedError: - from anyio._core._asyncio_selector_thread import get_selector - - selector = get_selector() - selector.add_writer(fd, cb) - remove_writer = selector.remove_writer - else: - remove_writer = loop.remove_writer - - write_events[fd] = fut - try: - success = await fut - finally: - try: - del write_events[fd] - except KeyError: - pass - else: - remove_writer(fd) - - if not success: - raise ClosedResourceError - - @classmethod - def notify_closing(cls, obj: FileDescriptorLike) -> None: - fd = obj if isinstance(obj, int) else obj.fileno() - loop = get_running_loop() - - try: - write_events = _write_events.get() - except LookupError: - pass - else: - try: - fut = write_events.pop(fd) - except KeyError: - pass - else: - try: - fut.set_result(False) - except asyncio.InvalidStateError: - pass - - try: - loop.remove_writer(fd) - except NotImplementedError: - from anyio._core._asyncio_selector_thread import get_selector - - get_selector().remove_writer(fd) - - try: - read_events = _read_events.get() - except LookupError: - pass - else: - try: - fut = read_events.pop(fd) - except KeyError: - pass - else: - try: - fut.set_result(False) - except asyncio.InvalidStateError: - pass - - try: - loop.remove_reader(fd) - except NotImplementedError: - from anyio._core._asyncio_selector_thread import get_selector - - get_selector().remove_reader(fd) - - @classmethod - async def wrap_listener_socket(cls, sock: socket.socket) -> SocketListener: - if hasattr(socket, "AF_UNIX") and sock.family == socket.AF_UNIX: - return UNIXSocketListener(sock) - - return TCPSocketListener(sock) - - @classmethod - async def wrap_stream_socket(cls, sock: socket.socket) -> SocketStream: - transport, protocol = await get_running_loop().create_connection( - StreamProtocol, sock=sock - ) - return SocketStream(transport, protocol) - - @classmethod - async def wrap_unix_stream_socket(cls, sock: socket.socket) -> UNIXSocketStream: - return UNIXSocketStream(sock) - - @classmethod - async def wrap_udp_socket(cls, sock: socket.socket) -> UDPSocket: - transport, protocol = await get_running_loop().create_datagram_endpoint( - DatagramProtocol, sock=sock - ) - return UDPSocket(transport, protocol) - - @classmethod - async def wrap_connected_udp_socket(cls, sock: socket.socket) -> ConnectedUDPSocket: - transport, protocol = await get_running_loop().create_datagram_endpoint( - DatagramProtocol, sock=sock - ) - return ConnectedUDPSocket(transport, protocol) - - @classmethod - async def wrap_unix_datagram_socket(cls, sock: socket.socket) -> UNIXDatagramSocket: - return UNIXDatagramSocket(sock) - - @classmethod - async def wrap_connected_unix_datagram_socket( - cls, sock: socket.socket - ) -> ConnectedUNIXDatagramSocket: - return ConnectedUNIXDatagramSocket(sock) - - @classmethod - def current_default_thread_limiter(cls) -> CapacityLimiter: - try: - return _default_thread_limiter.get() - except LookupError: - limiter = CapacityLimiter(40) - _default_thread_limiter.set(limiter) - return limiter - - @classmethod - def open_signal_receiver( - cls, *signals: Signals - ) -> AbstractContextManager[AsyncIterator[Signals]]: - return _SignalReceiver(signals) - - @classmethod - def get_current_task(cls) -> TaskInfo: - return AsyncIOTaskInfo(current_task()) # type: ignore[arg-type] - - @classmethod - def get_running_tasks(cls) -> Sequence[TaskInfo]: - return [AsyncIOTaskInfo(task) for task in all_tasks() if not task.done()] - - @classmethod - async def wait_all_tasks_blocked(cls) -> None: - await cls.checkpoint() - this_task = current_task() - while True: - for task in all_tasks(): - if task is this_task: - continue - - waiter = task._fut_waiter # type: ignore[attr-defined] - if waiter is None or waiter.done(): - await sleep(0.1) - break - else: - return - - @classmethod - def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: - return TestRunner(**options) - - -backend_class = AsyncIOBackend diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_trio.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_trio.py deleted file mode 100644 index 091c78c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_backends/_trio.py +++ /dev/null @@ -1,1456 +0,0 @@ -from __future__ import annotations - -import array -import math -import os -import socket -import sys -import types -import weakref -from collections.abc import ( - AsyncGenerator, - AsyncIterator, - Awaitable, - Callable, - Collection, - Coroutine, - Iterable, - Sequence, -) -from contextlib import AbstractContextManager -from contextvars import Context -from dataclasses import dataclass -from functools import partial, wraps -from io import IOBase -from os import PathLike -from signal import Signals -from socket import AddressFamily, SocketKind -from types import TracebackType -from typing import ( - IO, - TYPE_CHECKING, - Any, - Generic, - Literal, - NoReturn, - ParamSpec, - TypeVar, - cast, - overload, -) - -import trio.from_thread -import trio.lowlevel -from outcome import Error, Outcome, Value -from trio.lowlevel import ( - current_root_task, - current_task, - notify_closing, - wait_readable, - wait_writable, -) -from trio.socket import SocketType as TrioSocketType -from trio.to_thread import run_sync - -from .. import ( - CapacityLimiterStatistics, - EventStatistics, - LockStatistics, - RunFinishedError, - TaskInfo, - WouldBlock, - abc, -) -from .._core._eventloop import claim_worker_thread -from .._core._exceptions import ( - BrokenResourceError, - BusyResourceError, - ClosedResourceError, - EndOfStream, -) -from .._core._sockets import convert_ipv6_sockaddr -from .._core._streams import create_memory_object_stream -from .._core._synchronization import ( - CapacityLimiter as BaseCapacityLimiter, -) -from .._core._synchronization import Event as BaseEvent -from .._core._synchronization import Lock as BaseLock -from .._core._synchronization import ( - ResourceGuard, - SemaphoreStatistics, -) -from .._core._synchronization import Semaphore as BaseSemaphore -from .._core._tasks import CancelScope as BaseCancelScope -from .._core._tasks import TaskHandle -from ..abc import IPSockAddrType, UDPPacketType, UNIXDatagramPacketType -from ..abc._eventloop import AsyncBackend, StrOrBytesPath -from ..abc._tasks import T_contra, call_for_coroutine, get_callable_name -from ..streams.memory import MemoryObjectSendStream - -if TYPE_CHECKING: - from _typeshed import FileDescriptorLike - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from exceptiongroup import BaseExceptionGroup - from typing_extensions import TypeVarTuple, Unpack - -T = TypeVar("T") -T_Retval = TypeVar("T_Retval") -T_co = TypeVar("T_co", covariant=True) -T_SockAddr = TypeVar("T_SockAddr", str, IPSockAddrType) -PosArgsT = TypeVarTuple("PosArgsT") -P = ParamSpec("P") - - -def ensure_returns_coro( - func: Callable[P, Awaitable[T_Retval]], -) -> Callable[P, Coroutine[Any, Any, T_Retval]]: - @wraps(func) - def wrapper(*args: P.args, **kwargs: P.kwargs) -> Coroutine[Any, Any, T_Retval]: - awaitable = func(*args, **kwargs) - # Check the common case first. - if isinstance(awaitable, Coroutine): - return awaitable - elif not isinstance(awaitable, Awaitable): - # The user violated the type annotations. Still, we should pass this on to - # Trio so it can raise with an appropriate message. - return awaitable - else: - - @wraps(func) - async def inner_wrapper() -> T_Retval: - return await awaitable - - return inner_wrapper() - - return wrapper - - -# -# Event loop -# - -RunVar = trio.lowlevel.RunVar - - -# -# Timeouts and cancellation -# - - -class CancelScope(BaseCancelScope): - __slots__ = ("__original",) - - def __new__( - cls, original: trio.CancelScope | None = None, **kwargs: object - ) -> CancelScope: - return object.__new__(cls) - - def __init__(self, original: trio.CancelScope | None = None, **kwargs: Any) -> None: - self.__original = original or trio.CancelScope(**kwargs) - - def __enter__(self) -> CancelScope: - self.__original.__enter__() - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - return self.__original.__exit__(exc_type, exc_val, exc_tb) - - def cancel(self, reason: str | None = None) -> None: - self.__original.cancel(reason) - - @property - def deadline(self) -> float: - return self.__original.deadline - - @deadline.setter - def deadline(self, value: float) -> None: - self.__original.deadline = value - - @property - def cancel_called(self) -> bool: - return self.__original.cancel_called - - @property - def cancelled_caught(self) -> bool: - return self.__original.cancelled_caught - - @property - def shield(self) -> bool: - return self.__original.shield - - @shield.setter - def shield(self, value: bool) -> None: - self.__original.shield = value - - -# -# Task groups -# - -empty_start_value = object() - - -class _TrioTaskStatus(Generic[T_contra], abc.TaskStatus[T_contra]): - early_start_value: T_contra | object = empty_start_value - real_task_status: trio.TaskStatus[T_contra | None] | None = None - - def started(self, value: T_contra | None = None) -> None: - if self.real_task_status is None: - if self.early_start_value is not empty_start_value: - raise RuntimeError("called 'started' twice on the same task status") - - self.early_start_value = value - else: - self.real_task_status.started(value) - - -class TaskGroup(abc.TaskGroup): - def __init__(self) -> None: - self._entered = False - self._active = False - self._nursery_manager = trio.open_nursery(strict_exception_groups=True) - self.cancel_scope = None # type: ignore[assignment] - - async def __aenter__(self) -> TaskGroup: - if self._entered: - raise RuntimeError("TaskGroup cannot be entered more than once") - - self._entered = True - self._active = True - self._nursery = await self._nursery_manager.__aenter__() - self.cancel_scope = CancelScope(self._nursery.cancel_scope) - return self - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - try: - # trio.Nursery.__exit__ returns bool; .open_nursery has wrong type - return await self._nursery_manager.__aexit__(exc_type, exc_val, exc_tb) # type: ignore[return-value] - except BaseExceptionGroup as exc: - if not exc.split(trio.Cancelled)[1]: - raise trio.Cancelled._create() from exc - - raise - finally: - del exc_val, exc_tb - self._active = False - - def _check_active(self, coro: Coroutine | None = None) -> None: - if not self._active: - if coro is not None: - coro.close() - - raise RuntimeError( - "This task group is not active; no new tasks can be started." - ) - - def create_task( - self, - coro: Coroutine[Any, Any, T_co], - *, - name: object = None, - context: Context | None = None, - ) -> TaskHandle[T_co]: - if not isinstance(coro, Coroutine): - raise TypeError(f"expected a coroutine, got {coro.__class__.__qualname__}") - - self._check_active(coro) - handle = TaskHandle(coro, name) - if context is not None: - context.run( - partial(self._nursery.start_soon, handle._run_coro, name=handle.name) - ) - else: - self._nursery.start_soon(handle._run_coro, name=handle.name) - - return handle - - async def start( - self, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - *args: Unpack[PosArgsT], - name: object = None, - return_handle: Literal[False] | Literal[True] = False, - ) -> Any: - handle: TaskHandle[T_co] - - async def run_coro_with_task_status( - *, task_status: trio.TaskStatus[Any] - ) -> None: - nonlocal handle - wrapper_task_status = _TrioTaskStatus() - coro = call_for_coroutine(func, args, task_status=wrapper_task_status) - if wrapper_task_status.early_start_value is not empty_start_value: - task_status.started(wrapper_task_status.early_start_value) - else: - wrapper_task_status.real_task_status = task_status - - handle = TaskHandle(coro, name) - await handle._run_coro() - - self._check_active() - final_name = get_callable_name(func, name) - start_value = await self._nursery.start( - run_coro_with_task_status, name=final_name - ) - if return_handle: - handle._start_value = start_value - return handle - else: - return start_value - - -# -# Subprocesses -# - - -@dataclass(eq=False) -class ReceiveStreamWrapper(abc.ByteReceiveStream): - _stream: trio.abc.ReceiveStream - - async def receive(self, max_bytes: int | None = None) -> bytes: - try: - data = await self._stream.receive_some(max_bytes) - except trio.ClosedResourceError as exc: - raise ClosedResourceError from exc.__cause__ - except trio.BrokenResourceError as exc: - raise BrokenResourceError from exc.__cause__ - - if data: - return bytes(data) - else: - raise EndOfStream - - async def aclose(self) -> None: - await self._stream.aclose() - - -@dataclass(eq=False) -class SendStreamWrapper(abc.ByteSendStream): - _stream: trio.abc.SendStream - - async def send(self, item: bytes) -> None: - try: - await self._stream.send_all(item) - except trio.ClosedResourceError as exc: - raise ClosedResourceError from exc.__cause__ - except trio.BrokenResourceError as exc: - raise BrokenResourceError from exc.__cause__ - - async def aclose(self) -> None: - await self._stream.aclose() - - -@dataclass(eq=False) -class Process(abc.Process): - _process: trio.Process - _stdin: abc.ByteSendStream | None - _stdout: abc.ByteReceiveStream | None - _stderr: abc.ByteReceiveStream | None - - async def aclose(self) -> None: - with CancelScope(shield=True): - if self._stdin: - await self._stdin.aclose() - if self._stdout: - await self._stdout.aclose() - if self._stderr: - await self._stderr.aclose() - - try: - await self.wait() - except BaseException: - self.kill() - with CancelScope(shield=True): - await self.wait() - raise - - async def wait(self) -> int: - return await self._process.wait() - - def terminate(self) -> None: - self._process.terminate() - - def kill(self) -> None: - self._process.kill() - - def send_signal(self, signal: Signals) -> None: - self._process.send_signal(signal) - - @property - def pid(self) -> int: - return self._process.pid - - @property - def returncode(self) -> int | None: - return self._process.returncode - - @property - def stdin(self) -> abc.ByteSendStream | None: - return self._stdin - - @property - def stdout(self) -> abc.ByteReceiveStream | None: - return self._stdout - - @property - def stderr(self) -> abc.ByteReceiveStream | None: - return self._stderr - - -class _ProcessPoolShutdownInstrument(trio.abc.Instrument): - def after_run(self) -> None: - super().after_run() - - -current_default_worker_process_limiter: trio.lowlevel.RunVar = RunVar( - "current_default_worker_process_limiter" -) - - -async def _shutdown_process_pool(workers: set[abc.Process]) -> None: - try: - await trio.sleep(math.inf) - except trio.Cancelled: - for process in workers: - if process.returncode is None: - process.kill() - - with CancelScope(shield=True): - for process in workers: - await process.aclose() - - -# -# Sockets and networking -# - - -class _TrioSocketMixin(Generic[T_SockAddr]): - def __init__(self, trio_socket: TrioSocketType) -> None: - self._trio_socket = trio_socket - self._closed = False - - def _check_closed(self) -> None: - if self._closed: - raise ClosedResourceError - if self._trio_socket.fileno() < 0: - raise BrokenResourceError - - @property - def _raw_socket(self) -> socket.socket: - return self._trio_socket._sock # type: ignore[attr-defined] - - async def aclose(self) -> None: - if self._trio_socket.fileno() >= 0: - self._closed = True - self._trio_socket.close() - - def _convert_socket_error(self, exc: BaseException) -> NoReturn: - if isinstance(exc, trio.ClosedResourceError): - raise ClosedResourceError from exc - elif self._trio_socket.fileno() < 0 and self._closed: - raise ClosedResourceError from None - elif isinstance(exc, OSError): - raise BrokenResourceError from exc - else: - raise exc - - -class SocketStream(_TrioSocketMixin, abc.SocketStream): - def __init__(self, trio_socket: TrioSocketType) -> None: - super().__init__(trio_socket) - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - async def receive(self, max_bytes: int = 65536) -> bytes: - with self._receive_guard: - try: - data = await self._trio_socket.recv(max_bytes) - except BaseException as exc: - self._convert_socket_error(exc) - - if data: - return data - else: - raise EndOfStream - - async def send(self, item: bytes) -> None: - with self._send_guard: - view = memoryview(item) - while view: - try: - bytes_sent = await self._trio_socket.send(view) - except BaseException as exc: - self._convert_socket_error(exc) - - view = view[bytes_sent:] - - async def send_eof(self) -> None: - self._trio_socket.shutdown(socket.SHUT_WR) - - -class UNIXSocketStream(SocketStream, abc.UNIXSocketStream): - async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: - if not isinstance(msglen, int) or msglen < 0: - raise ValueError("msglen must be a non-negative integer") - if not isinstance(maxfds, int) or maxfds < 1: - raise ValueError("maxfds must be a positive integer") - - fds = array.array("i") - await trio.lowlevel.checkpoint() - with self._receive_guard: - while True: - try: - message, ancdata, flags, addr = await self._trio_socket.recvmsg( - msglen, socket.CMSG_LEN(maxfds * fds.itemsize) - ) - except BaseException as exc: - self._convert_socket_error(exc) - else: - if not message and not ancdata: - raise EndOfStream - - break - - for cmsg_level, cmsg_type, cmsg_data in ancdata: - if cmsg_level != socket.SOL_SOCKET or cmsg_type != socket.SCM_RIGHTS: - raise RuntimeError( - f"Received unexpected ancillary data; message = {message!r}, " - f"cmsg_level = {cmsg_level}, cmsg_type = {cmsg_type}" - ) - - fds.frombytes(cmsg_data[: len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) - - return message, list(fds) - - async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: - if not message: - raise ValueError("message must not be empty") - if not fds: - raise ValueError("fds must not be empty") - - filenos: list[int] = [] - for fd in fds: - if isinstance(fd, int): - filenos.append(fd) - elif isinstance(fd, IOBase): - filenos.append(fd.fileno()) - - fdarray = array.array("i", filenos) - await trio.lowlevel.checkpoint() - with self._send_guard: - while True: - try: - await self._trio_socket.sendmsg( - [message], - [ - ( - socket.SOL_SOCKET, - socket.SCM_RIGHTS, - fdarray, - ) - ], - ) - break - except BaseException as exc: - self._convert_socket_error(exc) - - -class TCPSocketListener(_TrioSocketMixin, abc.SocketListener): - def __init__(self, raw_socket: socket.socket): - super().__init__(trio.socket.from_stdlib_socket(raw_socket)) - self._accept_guard = ResourceGuard("accepting connections from") - - async def accept(self) -> SocketStream: - with self._accept_guard: - try: - trio_socket, _addr = await self._trio_socket.accept() - except BaseException as exc: - self._convert_socket_error(exc) - - trio_socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) - return SocketStream(trio_socket) - - -class UNIXSocketListener(_TrioSocketMixin, abc.SocketListener): - def __init__(self, raw_socket: socket.socket): - super().__init__(trio.socket.from_stdlib_socket(raw_socket)) - self._accept_guard = ResourceGuard("accepting connections from") - - async def accept(self) -> UNIXSocketStream: - with self._accept_guard: - try: - trio_socket, _addr = await self._trio_socket.accept() - except BaseException as exc: - self._convert_socket_error(exc) - - return UNIXSocketStream(trio_socket) - - -class UDPSocket(_TrioSocketMixin[IPSockAddrType], abc.UDPSocket): - def __init__(self, trio_socket: TrioSocketType) -> None: - super().__init__(trio_socket) - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - async def receive(self) -> tuple[bytes, IPSockAddrType]: - with self._receive_guard: - try: - data, addr = await self._trio_socket.recvfrom(65536) - return data, convert_ipv6_sockaddr(addr) - except BaseException as exc: - self._convert_socket_error(exc) - - async def send(self, item: UDPPacketType) -> None: - with self._send_guard: - try: - await self._trio_socket.sendto(*item) - except BaseException as exc: - self._convert_socket_error(exc) - - -class ConnectedUDPSocket(_TrioSocketMixin[IPSockAddrType], abc.ConnectedUDPSocket): - def __init__(self, trio_socket: TrioSocketType) -> None: - super().__init__(trio_socket) - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - async def receive(self) -> bytes: - with self._receive_guard: - try: - return await self._trio_socket.recv(65536) - except BaseException as exc: - self._convert_socket_error(exc) - - async def send(self, item: bytes) -> None: - with self._send_guard: - try: - await self._trio_socket.send(item) - except BaseException as exc: - self._convert_socket_error(exc) - - -class UNIXDatagramSocket(_TrioSocketMixin[str], abc.UNIXDatagramSocket): - def __init__(self, trio_socket: TrioSocketType) -> None: - super().__init__(trio_socket) - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - async def receive(self) -> UNIXDatagramPacketType: - with self._receive_guard: - try: - data, addr = await self._trio_socket.recvfrom(65536) - return data, addr - except BaseException as exc: - self._convert_socket_error(exc) - - async def send(self, item: UNIXDatagramPacketType) -> None: - with self._send_guard: - try: - await self._trio_socket.sendto(*item) - except BaseException as exc: - self._convert_socket_error(exc) - - -class ConnectedUNIXDatagramSocket( - _TrioSocketMixin[str], abc.ConnectedUNIXDatagramSocket -): - def __init__(self, trio_socket: TrioSocketType) -> None: - super().__init__(trio_socket) - self._receive_guard = ResourceGuard("reading from") - self._send_guard = ResourceGuard("writing to") - - async def receive(self) -> bytes: - with self._receive_guard: - try: - return await self._trio_socket.recv(65536) - except BaseException as exc: - self._convert_socket_error(exc) - - async def send(self, item: bytes) -> None: - with self._send_guard: - try: - await self._trio_socket.send(item) - except BaseException as exc: - self._convert_socket_error(exc) - - -# -# Synchronization -# - - -class Event(BaseEvent): - __slots__ = ("__original",) - - def __new__(cls) -> Event: - return object.__new__(cls) - - def __init__(self) -> None: - self.__original = trio.Event() - - def is_set(self) -> bool: - return self.__original.is_set() - - async def wait(self) -> None: - return await self.__original.wait() - - def statistics(self) -> EventStatistics: - orig_statistics = self.__original.statistics() - return EventStatistics(tasks_waiting=orig_statistics.tasks_waiting) - - def set(self) -> None: - self.__original.set() - - -class Lock(BaseLock): - __slots__ = "_fast_acquire", "__original" - - def __new__(cls, *, fast_acquire: bool = False) -> Lock: - return object.__new__(cls) - - def __init__(self, *, fast_acquire: bool = False) -> None: - self._fast_acquire = fast_acquire - self.__original = trio.Lock() - - @staticmethod - def _convert_runtime_error_msg(exc: RuntimeError) -> None: - if exc.args == ("attempt to re-acquire an already held Lock",): - exc.args = ("Attempted to acquire an already held Lock",) - - async def acquire(self) -> None: - if not self._fast_acquire: - try: - await self.__original.acquire() - except RuntimeError as exc: - self._convert_runtime_error_msg(exc) - raise - - return - - # This is the "fast path" where we don't let other tasks run - await trio.lowlevel.checkpoint_if_cancelled() - try: - self.__original.acquire_nowait() - except trio.WouldBlock: - await self.__original._lot.park() - except RuntimeError as exc: - self._convert_runtime_error_msg(exc) - raise - - def acquire_nowait(self) -> None: - try: - self.__original.acquire_nowait() - except trio.WouldBlock: - raise WouldBlock from None - except RuntimeError as exc: - self._convert_runtime_error_msg(exc) - raise - - def locked(self) -> bool: - return self.__original.locked() - - def release(self) -> None: - self.__original.release() - - def statistics(self) -> LockStatistics: - orig_statistics = self.__original.statistics() - owner = TrioTaskInfo(orig_statistics.owner) if orig_statistics.owner else None - return LockStatistics( - orig_statistics.locked, owner, orig_statistics.tasks_waiting - ) - - -class Semaphore(BaseSemaphore): - __slots__ = ("__original",) - - def __new__( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> Semaphore: - return object.__new__(cls) - - def __init__( - self, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> None: - super().__init__(initial_value, max_value=max_value, fast_acquire=fast_acquire) - self.__original = trio.Semaphore(initial_value, max_value=max_value) - - async def acquire(self) -> None: - if not self._fast_acquire: - await self.__original.acquire() - return - - # This is the "fast path" where we don't let other tasks run - await trio.lowlevel.checkpoint_if_cancelled() - try: - self.__original.acquire_nowait() - except trio.WouldBlock: - await self.__original._lot.park() - - def acquire_nowait(self) -> None: - try: - self.__original.acquire_nowait() - except trio.WouldBlock: - raise WouldBlock from None - - @property - def max_value(self) -> int | None: - return self.__original.max_value - - @property - def value(self) -> int: - return self.__original.value - - def release(self) -> None: - self.__original.release() - - def statistics(self) -> SemaphoreStatistics: - orig_statistics = self.__original.statistics() - return SemaphoreStatistics(orig_statistics.tasks_waiting) - - -class CapacityLimiter(BaseCapacityLimiter): - __slots__ = ("__original",) - - def __new__( - cls, - total_tokens: float | None = None, - *, - original: trio.CapacityLimiter | None = None, - ) -> CapacityLimiter: - return object.__new__(cls) - - def __init__( - self, - total_tokens: float | None = None, - *, - original: trio.CapacityLimiter | None = None, - ) -> None: - if original is not None: - self.__original = original - else: - assert total_tokens is not None - self.__original = trio.CapacityLimiter(total_tokens) - - async def __aenter__(self) -> None: - return await self.__original.__aenter__() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - await self.__original.__aexit__(exc_type, exc_val, exc_tb) - - @property - def total_tokens(self) -> float: - return self.__original.total_tokens - - @total_tokens.setter - def total_tokens(self, value: float) -> None: - self.__original.total_tokens = value - - @property - def borrowed_tokens(self) -> int: - return self.__original.borrowed_tokens - - @property - def available_tokens(self) -> float: - return self.__original.available_tokens - - def acquire_nowait(self) -> None: - self.__original.acquire_nowait() - - def acquire_on_behalf_of_nowait(self, borrower: object) -> None: - self.__original.acquire_on_behalf_of_nowait(borrower) - - async def acquire(self) -> None: - await self.__original.acquire() - - async def acquire_on_behalf_of(self, borrower: object) -> None: - await self.__original.acquire_on_behalf_of(borrower) - - def release(self) -> None: - return self.__original.release() - - def release_on_behalf_of(self, borrower: object) -> None: - return self.__original.release_on_behalf_of(borrower) - - def statistics(self) -> CapacityLimiterStatistics: - orig = self.__original.statistics() - return CapacityLimiterStatistics( - borrowed_tokens=orig.borrowed_tokens, - total_tokens=orig.total_tokens, - borrowers=tuple(orig.borrowers), - tasks_waiting=orig.tasks_waiting, - ) - - -_capacity_limiter_wrapper: trio.lowlevel.RunVar = RunVar("_capacity_limiter_wrapper") - - -# -# Signal handling -# - - -class _SignalReceiver: - _iterator: AsyncIterator[int] - - def __init__(self, signals: tuple[Signals, ...]): - self._signals = signals - - def __enter__(self) -> _SignalReceiver: - self._cm = trio.open_signal_receiver(*self._signals) - self._iterator = self._cm.__enter__() - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool | None: - return self._cm.__exit__(exc_type, exc_val, exc_tb) - - def __aiter__(self) -> _SignalReceiver: - return self - - async def __anext__(self) -> Signals: - signum = await self._iterator.__anext__() - return Signals(signum) - - -# -# Testing and debugging -# - - -class TestRunner(abc.TestRunner): - def __init__(self, **options: Any) -> None: - from queue import Queue - - self._call_queue: Queue[Callable[[], object]] = Queue() - self._send_stream: ( - MemoryObjectSendStream[tuple[Awaitable[Any], list[Outcome]]] | None - ) = None - self._options = options - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: types.TracebackType | None, - ) -> None: - if self._send_stream: - self._send_stream.close() - while self._send_stream is not None: - self._call_queue.get()() - - def is_running(self) -> bool: - return trio.lowlevel.in_trio_task() - - async def _run_tests_and_fixtures(self) -> None: - self._send_stream, receive_stream = create_memory_object_stream[ - tuple[Awaitable[Any], list[Outcome]] - ](1) - with receive_stream: - async for awaitable, outcome_holder in receive_stream: - try: - retval = await awaitable - except BaseException as exc: - outcome_holder.append(Error(exc)) - else: - outcome_holder.append(Value(retval)) - - def _main_task_finished(self, outcome: object) -> None: - self._send_stream = None - - def _call_in_runner_task( - self, - func: Callable[P, Awaitable[T_Retval]], - /, - *args: P.args, - **kwargs: P.kwargs, - ) -> T_Retval: - if self._send_stream is None: - trio.lowlevel.start_guest_run( - self._run_tests_and_fixtures, - run_sync_soon_threadsafe=self._call_queue.put, - done_callback=self._main_task_finished, - **self._options, - ) - while self._send_stream is None: - self._call_queue.get()() - - outcome_holder: list[Outcome] = [] - self._send_stream.send_nowait((func(*args, **kwargs), outcome_holder)) - while not outcome_holder: - self._call_queue.get()() - - return outcome_holder[0].unwrap() - - def run_asyncgen_fixture( - self, - fixture_func: Callable[..., AsyncGenerator[T_Retval, Any]], - kwargs: dict[str, Any], - ) -> Iterable[T_Retval]: - asyncgen = fixture_func(**kwargs) - fixturevalue: T_Retval = self._call_in_runner_task(asyncgen.asend, None) - - yield fixturevalue - - try: - self._call_in_runner_task(asyncgen.asend, None) - except StopAsyncIteration: - pass - else: - self._call_in_runner_task(asyncgen.aclose) - raise RuntimeError("Async generator fixture did not stop") - - def run_fixture( - self, - fixture_func: Callable[..., Coroutine[Any, Any, T_Retval]], - kwargs: dict[str, Any], - ) -> T_Retval: - return self._call_in_runner_task(fixture_func, **kwargs) - - def run_test( - self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] - ) -> None: - self._call_in_runner_task(test_func, **kwargs) - - -class TrioTaskInfo(TaskInfo): - def __init__(self, task: trio.lowlevel.Task): - parent_id = None - if task.parent_nursery and task.parent_nursery.parent_task: - parent_id = id(task.parent_nursery.parent_task) - - super().__init__(id(task), parent_id, task.name, task.coro) - self._task = weakref.proxy(task) - - def has_pending_cancellation(self) -> bool: - try: - return self._task._cancel_status.effectively_cancelled - except ReferenceError: - # If the task is no longer around, it surely doesn't have a cancellation - # pending - return False - - -class TrioBackend(AsyncBackend): - @classmethod - def run( - cls, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - args: tuple[Unpack[PosArgsT]], - kwargs: dict[str, Any], - options: dict[str, Any], - ) -> T_Retval: - assert not kwargs, "unreachable, and not supported by Trio" - return trio.run(ensure_returns_coro(func), *args, **options) - - @classmethod - def current_token(cls) -> object: - return trio.lowlevel.current_trio_token() - - @classmethod - def current_time(cls) -> float: - return trio.current_time() - - @classmethod - def cancelled_exception_class(cls) -> type[BaseException]: - return trio.Cancelled - - @classmethod - async def checkpoint(cls) -> None: - await trio.lowlevel.checkpoint() - - @classmethod - async def checkpoint_if_cancelled(cls) -> None: - await trio.lowlevel.checkpoint_if_cancelled() - - @classmethod - async def cancel_shielded_checkpoint(cls) -> None: - await trio.lowlevel.cancel_shielded_checkpoint() - - @classmethod - async def sleep(cls, delay: float) -> None: - await trio.sleep(delay) - - @classmethod - def create_cancel_scope( - cls, *, deadline: float = math.inf, shield: bool = False - ) -> abc.CancelScope: - return CancelScope(deadline=deadline, shield=shield) - - @classmethod - def current_effective_deadline(cls) -> float: - return trio.current_effective_deadline() - - @classmethod - def create_task_group(cls) -> abc.TaskGroup: - return TaskGroup() - - @classmethod - def create_event(cls) -> abc.Event: - return Event() - - @classmethod - def create_lock(cls, *, fast_acquire: bool) -> Lock: - return Lock(fast_acquire=fast_acquire) - - @classmethod - def create_semaphore( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> abc.Semaphore: - return Semaphore(initial_value, max_value=max_value, fast_acquire=fast_acquire) - - @classmethod - def create_capacity_limiter(cls, total_tokens: float) -> CapacityLimiter: - return CapacityLimiter(total_tokens) - - @classmethod - async def run_sync_in_worker_thread( - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - abandon_on_cancel: bool = False, - limiter: abc.CapacityLimiter | None = None, - ) -> T_Retval: - def wrapper() -> T_Retval: - with claim_worker_thread(TrioBackend, token): - return func(*args) - - token = TrioBackend.current_token() - return await run_sync( - wrapper, - abandon_on_cancel=abandon_on_cancel, - limiter=cast(trio.CapacityLimiter, limiter), - ) - - @classmethod - def check_cancelled(cls) -> None: - trio.from_thread.check_cancelled() - - @classmethod - def run_async_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_co: - trio_token = cast("trio.lowlevel.TrioToken | None", token) - try: - return trio.from_thread.run(func, *args, trio_token=trio_token) - except trio.RunFinishedError: - raise RunFinishedError from None - - @classmethod - def run_sync_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_Retval: - trio_token = cast("trio.lowlevel.TrioToken | None", token) - try: - return trio.from_thread.run_sync(func, *args, trio_token=trio_token) - except trio.RunFinishedError: - raise RunFinishedError from None - - @classmethod - async def open_process( - cls, - command: StrOrBytesPath | Sequence[StrOrBytesPath], - *, - stdin: int | IO[Any] | None, - stdout: int | IO[Any] | None, - stderr: int | IO[Any] | None, - **kwargs: Any, - ) -> Process: - def convert_item(item: StrOrBytesPath) -> str: - str_or_bytes = os.fspath(item) - if isinstance(str_or_bytes, str): - return str_or_bytes - else: - return os.fsdecode(str_or_bytes) - - if isinstance(command, (str, bytes, PathLike)): - process = await trio.lowlevel.open_process( - convert_item(command), - stdin=stdin, - stdout=stdout, - stderr=stderr, - shell=True, - **kwargs, - ) - else: - process = await trio.lowlevel.open_process( - [convert_item(item) for item in command], - stdin=stdin, - stdout=stdout, - stderr=stderr, - shell=False, - **kwargs, - ) - - stdin_stream = SendStreamWrapper(process.stdin) if process.stdin else None - stdout_stream = ReceiveStreamWrapper(process.stdout) if process.stdout else None - stderr_stream = ReceiveStreamWrapper(process.stderr) if process.stderr else None - return Process(process, stdin_stream, stdout_stream, stderr_stream) - - @classmethod - def setup_process_pool_exit_at_shutdown(cls, workers: set[abc.Process]) -> None: - trio.lowlevel.spawn_system_task(_shutdown_process_pool, workers) - - @classmethod - async def connect_tcp( - cls, host: str, port: int, local_address: IPSockAddrType | None = None - ) -> SocketStream: - family = socket.AF_INET6 if ":" in host else socket.AF_INET - trio_socket = trio.socket.socket(family) - trio_socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) - if local_address: - await trio_socket.bind(local_address) - - try: - await trio_socket.connect((host, port)) - except BaseException: - trio_socket.close() - raise - - return SocketStream(trio_socket) - - @classmethod - async def connect_unix(cls, path: str | bytes) -> abc.UNIXSocketStream: - trio_socket = trio.socket.socket(socket.AF_UNIX) - try: - await trio_socket.connect(path) - except BaseException: - trio_socket.close() - raise - - return UNIXSocketStream(trio_socket) - - @classmethod - def create_tcp_listener(cls, sock: socket.socket) -> abc.SocketListener: - return TCPSocketListener(sock) - - @classmethod - def create_unix_listener(cls, sock: socket.socket) -> abc.SocketListener: - return UNIXSocketListener(sock) - - @classmethod - async def create_udp_socket( - cls, - family: socket.AddressFamily, - local_address: IPSockAddrType | None, - remote_address: IPSockAddrType | None, - reuse_port: bool, - ) -> UDPSocket | ConnectedUDPSocket: - trio_socket = trio.socket.socket(family=family, type=socket.SOCK_DGRAM) - - if reuse_port: - trio_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) - - if local_address: - await trio_socket.bind(local_address) - - if remote_address: - await trio_socket.connect(remote_address) - return ConnectedUDPSocket(trio_socket) - else: - return UDPSocket(trio_socket) - - @classmethod - @overload - async def create_unix_datagram_socket( - cls, raw_socket: socket.socket, remote_path: None - ) -> abc.UNIXDatagramSocket: ... - - @classmethod - @overload - async def create_unix_datagram_socket( - cls, raw_socket: socket.socket, remote_path: str | bytes - ) -> abc.ConnectedUNIXDatagramSocket: ... - - @classmethod - async def create_unix_datagram_socket( - cls, raw_socket: socket.socket, remote_path: str | bytes | None - ) -> abc.UNIXDatagramSocket | abc.ConnectedUNIXDatagramSocket: - trio_socket = trio.socket.from_stdlib_socket(raw_socket) - - if remote_path: - await trio_socket.connect(remote_path) - return ConnectedUNIXDatagramSocket(trio_socket) - else: - return UNIXDatagramSocket(trio_socket) - - @classmethod - async def getaddrinfo( - cls, - host: bytes | str | None, - port: str | int | None, - *, - family: int | AddressFamily = 0, - type: int | SocketKind = 0, - proto: int = 0, - flags: int = 0, - ) -> Sequence[ - tuple[ - AddressFamily, - SocketKind, - int, - str, - tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], - ] - ]: - return await trio.socket.getaddrinfo(host, port, family, type, proto, flags) - - @classmethod - async def getnameinfo( - cls, sockaddr: IPSockAddrType, flags: int = 0 - ) -> tuple[str, str]: - return await trio.socket.getnameinfo(sockaddr, flags) - - @classmethod - async def wait_readable(cls, obj: FileDescriptorLike) -> None: - try: - await wait_readable(obj) - except trio.ClosedResourceError as exc: - raise ClosedResourceError().with_traceback(exc.__traceback__) from None - except trio.BusyResourceError: - raise BusyResourceError("reading from") from None - - @classmethod - async def wait_writable(cls, obj: FileDescriptorLike) -> None: - try: - await wait_writable(obj) - except trio.ClosedResourceError as exc: - raise ClosedResourceError().with_traceback(exc.__traceback__) from None - except trio.BusyResourceError: - raise BusyResourceError("writing to") from None - - @classmethod - def notify_closing(cls, obj: FileDescriptorLike) -> None: - notify_closing(obj) - - @classmethod - async def wrap_listener_socket(cls, sock: socket.socket) -> abc.SocketListener: - if hasattr(socket, "AF_UNIX") and sock.family == socket.AF_UNIX: - return UNIXSocketListener(sock) - - return TCPSocketListener(sock) - - @classmethod - async def wrap_stream_socket(cls, sock: socket.socket) -> SocketStream: - trio_sock = trio.socket.from_stdlib_socket(sock) - return SocketStream(trio_sock) - - @classmethod - async def wrap_unix_stream_socket(cls, sock: socket.socket) -> UNIXSocketStream: - trio_sock = trio.socket.from_stdlib_socket(sock) - return UNIXSocketStream(trio_sock) - - @classmethod - async def wrap_udp_socket(cls, sock: socket.socket) -> UDPSocket: - trio_sock = trio.socket.from_stdlib_socket(sock) - return UDPSocket(trio_sock) - - @classmethod - async def wrap_connected_udp_socket(cls, sock: socket.socket) -> ConnectedUDPSocket: - trio_sock = trio.socket.from_stdlib_socket(sock) - return ConnectedUDPSocket(trio_sock) - - @classmethod - async def wrap_unix_datagram_socket(cls, sock: socket.socket) -> UNIXDatagramSocket: - trio_sock = trio.socket.from_stdlib_socket(sock) - return UNIXDatagramSocket(trio_sock) - - @classmethod - async def wrap_connected_unix_datagram_socket( - cls, sock: socket.socket - ) -> ConnectedUNIXDatagramSocket: - trio_sock = trio.socket.from_stdlib_socket(sock) - return ConnectedUNIXDatagramSocket(trio_sock) - - @classmethod - def current_default_thread_limiter(cls) -> CapacityLimiter: - try: - return _capacity_limiter_wrapper.get() - except LookupError: - limiter = CapacityLimiter( - original=trio.to_thread.current_default_thread_limiter() - ) - _capacity_limiter_wrapper.set(limiter) - return limiter - - @classmethod - def open_signal_receiver( - cls, *signals: Signals - ) -> AbstractContextManager[AsyncIterator[Signals]]: - return _SignalReceiver(signals) - - @classmethod - def get_current_task(cls) -> TaskInfo: - task = current_task() - return TrioTaskInfo(task) - - @classmethod - def get_running_tasks(cls) -> Sequence[TaskInfo]: - root_task = current_root_task() - assert root_task - task_infos = [TrioTaskInfo(root_task)] - nurseries = root_task.child_nurseries - while nurseries: - new_nurseries: list[trio.Nursery] = [] - for nursery in nurseries: - for task in nursery.child_tasks: - task_infos.append(TrioTaskInfo(task)) - new_nurseries.extend(task.child_nurseries) - - nurseries = new_nurseries - - return task_infos - - @classmethod - async def wait_all_tasks_blocked(cls) -> None: - from trio.testing import wait_all_tasks_blocked - - await wait_all_tasks_blocked() - - @classmethod - def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: - return TestRunner(**options) - - -backend_class = TrioBackend diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3f7e163..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-311.pyc deleted file mode 100644 index 132efdb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-311.pyc deleted file mode 100644 index a6b48b2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_eventloop.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_eventloop.cpython-311.pyc deleted file mode 100644 index 6113c77..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_eventloop.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_exceptions.cpython-311.pyc deleted file mode 100644 index b1199a9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_fileio.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_fileio.cpython-311.pyc deleted file mode 100644 index f6b042e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_fileio.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_resources.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_resources.cpython-311.pyc deleted file mode 100644 index 74416b4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_resources.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_signals.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_signals.cpython-311.pyc deleted file mode 100644 index bf0c2b7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_signals.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_sockets.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_sockets.cpython-311.pyc deleted file mode 100644 index cc708e3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_sockets.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_streams.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_streams.cpython-311.pyc deleted file mode 100644 index 20adf19..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_streams.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-311.pyc deleted file mode 100644 index b249455..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_synchronization.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_synchronization.cpython-311.pyc deleted file mode 100644 index 093ce2e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_synchronization.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tasks.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tasks.cpython-311.pyc deleted file mode 100644 index 5e5ec40..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tasks.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tempfile.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tempfile.cpython-311.pyc deleted file mode 100644 index d067a5d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_tempfile.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_testing.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_testing.cpython-311.pyc deleted file mode 100644 index 1afbfbd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_testing.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_typedattr.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_typedattr.cpython-311.pyc deleted file mode 100644 index 4ec23c1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/__pycache__/_typedattr.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_asyncio_selector_thread.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_asyncio_selector_thread.py deleted file mode 100644 index 9f35bae..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_asyncio_selector_thread.py +++ /dev/null @@ -1,167 +0,0 @@ -from __future__ import annotations - -import asyncio -import socket -import threading -from collections.abc import Callable -from selectors import EVENT_READ, EVENT_WRITE, DefaultSelector -from typing import TYPE_CHECKING, Any - -if TYPE_CHECKING: - from _typeshed import FileDescriptorLike - -_selector_lock = threading.Lock() -_selector: Selector | None = None - - -class Selector: - def __init__(self) -> None: - self._thread = threading.Thread(target=self.run, name="AnyIO socket selector") - self._selector = DefaultSelector() - self._send, self._receive = socket.socketpair() - self._send.setblocking(False) - self._receive.setblocking(False) - # This somewhat reduces the amount of memory wasted queueing up data - # for wakeups. With these settings, maximum number of 1-byte sends - # before getting BlockingIOError: - # Linux 4.8: 6 - # macOS (darwin 15.5): 1 - # Windows 10: 525347 - # Windows you're weird. (And on Windows setting SNDBUF to 0 makes send - # blocking, even on non-blocking sockets, so don't do that.) - self._receive.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 1) - self._send.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 1) - # On Windows this is a TCP socket so this might matter. On other - # platforms this fails b/c AF_UNIX sockets aren't actually TCP. - try: - self._send.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) - except OSError: - pass - - self._selector.register(self._receive, EVENT_READ) - self._closed = False - - def start(self) -> None: - self._thread.start() - threading._register_atexit(self._stop) # type: ignore[attr-defined] - - def _stop(self) -> None: - global _selector - self._closed = True - self._notify_self() - self._send.close() - self._thread.join() - self._selector.unregister(self._receive) - self._receive.close() - self._selector.close() - _selector = None - assert not self._selector.get_map(), ( - "selector still has registered file descriptors after shutdown" - ) - - def _notify_self(self) -> None: - try: - self._send.send(b"\x00") - except BlockingIOError: - pass - - def add_reader(self, fd: FileDescriptorLike, callback: Callable[[], Any]) -> None: - loop = asyncio.get_running_loop() - try: - key = self._selector.get_key(fd) - except KeyError: - self._selector.register(fd, EVENT_READ, {EVENT_READ: (loop, callback)}) - else: - if EVENT_READ in key.data: - raise ValueError( - "this file descriptor is already registered for reading" - ) - - key.data[EVENT_READ] = loop, callback - self._selector.modify(fd, key.events | EVENT_READ, key.data) - - self._notify_self() - - def add_writer(self, fd: FileDescriptorLike, callback: Callable[[], Any]) -> None: - loop = asyncio.get_running_loop() - try: - key = self._selector.get_key(fd) - except KeyError: - self._selector.register(fd, EVENT_WRITE, {EVENT_WRITE: (loop, callback)}) - else: - if EVENT_WRITE in key.data: - raise ValueError( - "this file descriptor is already registered for writing" - ) - - key.data[EVENT_WRITE] = loop, callback - self._selector.modify(fd, key.events | EVENT_WRITE, key.data) - - self._notify_self() - - def remove_reader(self, fd: FileDescriptorLike) -> bool: - try: - key = self._selector.get_key(fd) - except KeyError: - return False - - if new_events := key.events ^ EVENT_READ: - del key.data[EVENT_READ] - self._selector.modify(fd, new_events, key.data) - else: - self._selector.unregister(fd) - - return True - - def remove_writer(self, fd: FileDescriptorLike) -> bool: - try: - key = self._selector.get_key(fd) - except KeyError: - return False - - if new_events := key.events ^ EVENT_WRITE: - del key.data[EVENT_WRITE] - self._selector.modify(fd, new_events, key.data) - else: - self._selector.unregister(fd) - - return True - - def run(self) -> None: - while not self._closed: - for key, events in self._selector.select(): - if key.fileobj is self._receive: - try: - while self._receive.recv(4096): - pass - except BlockingIOError: - pass - - continue - - if events & EVENT_READ: - loop, callback = key.data[EVENT_READ] - self.remove_reader(key.fd) - try: - loop.call_soon_threadsafe(callback) - except RuntimeError: - pass # the loop was already closed - - if events & EVENT_WRITE: - loop, callback = key.data[EVENT_WRITE] - self.remove_writer(key.fd) - try: - loop.call_soon_threadsafe(callback) - except RuntimeError: - pass # the loop was already closed - - -def get_selector() -> Selector: - global _selector - - with _selector_lock: - if _selector is None: - _selector = Selector() - _selector.start() - - return _selector diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_contextmanagers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_contextmanagers.py deleted file mode 100644 index 302f32b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_contextmanagers.py +++ /dev/null @@ -1,200 +0,0 @@ -from __future__ import annotations - -from abc import abstractmethod -from contextlib import AbstractAsyncContextManager, AbstractContextManager -from inspect import isasyncgen, iscoroutine, isgenerator -from types import TracebackType -from typing import Protocol, TypeVar, cast, final - -_T_co = TypeVar("_T_co", covariant=True) -_ExitT_co = TypeVar("_ExitT_co", covariant=True, bound="bool | None") - - -class _SupportsCtxMgr(Protocol[_T_co, _ExitT_co]): - def __contextmanager__(self) -> AbstractContextManager[_T_co, _ExitT_co]: ... - - -class _SupportsAsyncCtxMgr(Protocol[_T_co, _ExitT_co]): - def __asynccontextmanager__( - self, - ) -> AbstractAsyncContextManager[_T_co, _ExitT_co]: ... - - -class ContextManagerMixin: - """ - Mixin class providing context manager functionality via a generator-based - implementation. - - This class allows you to implement a context manager via :meth:`__contextmanager__` - which should return a generator. The mechanics are meant to mirror those of - :func:`@contextmanager `. - - .. note:: Classes using this mix-in are not reentrant as context managers, meaning - that once you enter it, you can't re-enter before first exiting it. - - .. seealso:: :doc:`contextmanagers` - """ - - __cm: AbstractContextManager[object, bool | None] | None = None - - @final - def __enter__(self: _SupportsCtxMgr[_T_co, bool | None]) -> _T_co: - # Needed for mypy to assume self still has the __cm member - assert isinstance(self, ContextManagerMixin) - if self.__cm is not None: - raise RuntimeError( - f"this {self.__class__.__qualname__} has already been entered" - ) - - cm = self.__contextmanager__() - if not isinstance(cm, AbstractContextManager): - if isgenerator(cm): - raise TypeError( - "__contextmanager__() returned a generator object instead of " - "a context manager. Did you forget to add the @contextmanager " - "decorator?" - ) - - raise TypeError( - f"__contextmanager__() did not return a context manager object, " - f"but {cm.__class__!r}" - ) - - if cm is self: - raise TypeError( - f"{self.__class__.__qualname__}.__contextmanager__() returned " - f"self. Did you forget to add the @contextmanager decorator and a " - f"'yield' statement?" - ) - - value = cm.__enter__() - self.__cm = cm - return value - - @final - def __exit__( - self: _SupportsCtxMgr[object, _ExitT_co], - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> _ExitT_co: - # Needed for mypy to assume self still has the __cm member - assert isinstance(self, ContextManagerMixin) - if self.__cm is None: - raise RuntimeError( - f"this {self.__class__.__qualname__} has not been entered yet" - ) - - # Prevent circular references - cm = self.__cm - del self.__cm - - return cast(_ExitT_co, cm.__exit__(exc_type, exc_val, exc_tb)) - - @abstractmethod - def __contextmanager__(self) -> AbstractContextManager[object, bool | None]: - """ - Implement your context manager logic here. - - This method **must** be decorated with - :func:`@contextmanager `. - - .. note:: Remember that the ``yield`` will raise any exception raised in the - enclosed context block, so use a ``finally:`` block to clean up resources! - - :return: a context manager object - """ - - -class AsyncContextManagerMixin: - """ - Mixin class providing async context manager functionality via a generator-based - implementation. - - This class allows you to implement a context manager via - :meth:`__asynccontextmanager__`. The mechanics are meant to mirror those of - :func:`@asynccontextmanager `. - - .. note:: Classes using this mix-in are not reentrant as context managers, meaning - that once you enter it, you can't re-enter before first exiting it. - - .. seealso:: :doc:`contextmanagers` - """ - - __cm: AbstractAsyncContextManager[object, bool | None] | None = None - - @final - async def __aenter__(self: _SupportsAsyncCtxMgr[_T_co, bool | None]) -> _T_co: - # Needed for mypy to assume self still has the __cm member - assert isinstance(self, AsyncContextManagerMixin) - if self.__cm is not None: - raise RuntimeError( - f"this {self.__class__.__qualname__} has already been entered" - ) - - cm = self.__asynccontextmanager__() - if not isinstance(cm, AbstractAsyncContextManager): - if isasyncgen(cm): - raise TypeError( - "__asynccontextmanager__() returned an async generator instead of " - "an async context manager. Did you forget to add the " - "@asynccontextmanager decorator?" - ) - elif iscoroutine(cm): - cm.close() - raise TypeError( - "__asynccontextmanager__() returned a coroutine object instead of " - "an async context manager. Did you forget to add the " - "@asynccontextmanager decorator and a 'yield' statement?" - ) - - raise TypeError( - f"__asynccontextmanager__() did not return an async context manager, " - f"but {cm.__class__!r}" - ) - - if cm is self: - raise TypeError( - f"{self.__class__.__qualname__}.__asynccontextmanager__() returned " - f"self. Did you forget to add the @asynccontextmanager decorator and a " - f"'yield' statement?" - ) - - value = await cm.__aenter__() - self.__cm = cm - return value - - @final - async def __aexit__( - self: _SupportsAsyncCtxMgr[object, _ExitT_co], - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> _ExitT_co: - assert isinstance(self, AsyncContextManagerMixin) - if self.__cm is None: - raise RuntimeError( - f"this {self.__class__.__qualname__} has not been entered yet" - ) - - # Prevent circular references - cm = self.__cm - del self.__cm - - return cast(_ExitT_co, await cm.__aexit__(exc_type, exc_val, exc_tb)) - - @abstractmethod - def __asynccontextmanager__( - self, - ) -> AbstractAsyncContextManager[object, bool | None]: - """ - Implement your async context manager logic here. - - This method **must** be decorated with - :func:`@asynccontextmanager `. - - .. note:: Remember that the ``yield`` will raise any exception raised in the - enclosed context block, so use a ``finally:`` block to clean up resources! - - :return: an async context manager object - """ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_eventloop.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_eventloop.py deleted file mode 100644 index a3e2ab1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_eventloop.py +++ /dev/null @@ -1,240 +0,0 @@ -from __future__ import annotations - -import math -import sys -import threading -from collections.abc import Awaitable, Callable, Generator -from contextlib import contextmanager -from contextvars import Token -from importlib import import_module -from typing import TYPE_CHECKING, Any, TypeVar - -from ._exceptions import NoEventLoopError - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -sniffio: Any -try: - import sniffio -except ModuleNotFoundError: - sniffio = None - -if TYPE_CHECKING: - from ..abc import AsyncBackend - -# This must be updated when new backends are introduced -BACKENDS = "asyncio", "trio" - -T_Retval = TypeVar("T_Retval") -PosArgsT = TypeVarTuple("PosArgsT") - -threadlocals = threading.local() -loaded_backends: dict[str, type[AsyncBackend]] = {} - - -def run( - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - *args: Unpack[PosArgsT], - backend: str = "asyncio", - backend_options: dict[str, Any] | None = None, -) -> T_Retval: - """ - Run the given coroutine function in an asynchronous event loop. - - The current thread must not be already running an event loop. - - :param func: a coroutine function - :param args: positional arguments to ``func`` - :param backend: name of the asynchronous event loop implementation – currently - either ``asyncio`` or ``trio`` - :param backend_options: keyword arguments to call the backend ``run()`` - implementation with (documented :ref:`here `) - :return: the return value of the coroutine function - :raises RuntimeError: if an asynchronous event loop is already running in this - thread - :raises LookupError: if the named backend is not found - - """ - if asynclib_name := current_async_library(): - raise RuntimeError(f"Already running {asynclib_name} in this thread") - - try: - async_backend = get_async_backend(backend) - except ImportError as exc: - if backend in BACKENDS: - raise LookupError( - f"Backend {backend!r} is not available. " - f"Install it with: pip install anyio[{backend}]" - ) from exc - - raise LookupError(f"No such backend: {backend}") from exc - - token = None - if asynclib_name is None: - # Since we're in control of the event loop, we can cache the name of the async - # library - token = set_current_async_library(backend) - - try: - backend_options = backend_options or {} - return async_backend.run(func, args, {}, backend_options) - finally: - reset_current_async_library(token) - - -async def sleep(delay: float) -> None: - """ - Pause the current task for the specified duration. - - :param delay: the duration, in seconds - - """ - return await get_async_backend().sleep(delay) - - -async def sleep_forever() -> None: - """ - Pause the current task until it's cancelled. - - This is a shortcut for ``sleep(math.inf)``. - - .. versionadded:: 3.1 - - """ - await sleep(math.inf) - - -async def sleep_until(deadline: float) -> None: - """ - Pause the current task until the given time. - - :param deadline: the absolute time to wake up at (according to the internal - monotonic clock of the event loop) - - .. versionadded:: 3.1 - - """ - now = current_time() - await sleep(max(deadline - now, 0)) - - -def current_time() -> float: - """ - Return the current value of the event loop's internal clock. - - :return: the clock value (seconds) - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().current_time() - - -def get_all_backends() -> tuple[str, ...]: - """Return a tuple of the names of all built-in backends.""" - return BACKENDS - - -def get_available_backends() -> tuple[str, ...]: - """ - Test for the availability of built-in backends. - - :return a tuple of the built-in backend names that were successfully imported - - .. versionadded:: 4.12 - - """ - available_backends: list[str] = [] - for backend_name in get_all_backends(): - try: - get_async_backend(backend_name) - except ImportError: - continue - - available_backends.append(backend_name) - - return tuple(available_backends) - - -def get_cancelled_exc_class() -> type[BaseException]: - """ - Return the current async library's cancellation exception class. - - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().cancelled_exception_class() - - -# -# Private API -# - - -@contextmanager -def claim_worker_thread( - backend_class: type[AsyncBackend], token: object -) -> Generator[Any, None, None]: - from ..lowlevel import EventLoopToken - - threadlocals.current_token = EventLoopToken(backend_class, token) - try: - yield - finally: - del threadlocals.current_token - - -def get_async_backend(asynclib_name: str | None = None) -> type[AsyncBackend]: - if asynclib_name is None: - asynclib_name = current_async_library() - if not asynclib_name: - raise NoEventLoopError( - f"Not currently running on any asynchronous event loop. " - f"Available async backends: {', '.join(get_all_backends())}" - ) - - # We use our own dict instead of sys.modules to get the already imported back-end - # class because the appropriate modules in sys.modules could potentially be only - # partially initialized - try: - return loaded_backends[asynclib_name] - except KeyError: - module = import_module(f"anyio._backends._{asynclib_name}") - loaded_backends[asynclib_name] = module.backend_class - return module.backend_class - - -def current_async_library() -> str | None: - if sniffio is None: - # If sniffio is not installed, we assume we're either running asyncio or nothing - import asyncio - - try: - asyncio.get_running_loop() - return "asyncio" - except RuntimeError: - pass - else: - try: - return sniffio.current_async_library() - except sniffio.AsyncLibraryNotFoundError: - pass - - return None - - -def set_current_async_library(asynclib_name: str | None) -> Token | None: - # no-op if sniffio is not installed - if sniffio is None: - return None - - return sniffio.current_async_library_cvar.set(asynclib_name) - - -def reset_current_async_library(token: Token | None) -> None: - if token is not None: - sniffio.current_async_library_cvar.reset(token) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_exceptions.py deleted file mode 100644 index cd6eb9b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_exceptions.py +++ /dev/null @@ -1,177 +0,0 @@ -from __future__ import annotations - -import sys -from collections.abc import Generator -from textwrap import dedent -from typing import Any - -if sys.version_info < (3, 11): - from exceptiongroup import BaseExceptionGroup - - -class BrokenResourceError(Exception): - """ - Raised when trying to use a resource that has been rendered unusable due to external - causes (e.g. a send stream whose peer has disconnected). - """ - - -class BrokenWorkerProcess(Exception): - """ - Raised by :meth:`~anyio.to_process.run_sync` if the worker process terminates abruptly or - otherwise misbehaves. - """ - - -class BrokenWorkerInterpreter(Exception): - """ - Raised by :meth:`~anyio.to_interpreter.run_sync` if an unexpected exception is - raised in the subinterpreter. - """ - - def __init__(self, excinfo: Any): - # This was adapted from concurrent.futures.interpreter.ExecutionFailed - msg = excinfo.formatted - if not msg: - if excinfo.type and excinfo.msg: - msg = f"{excinfo.type.__name__}: {excinfo.msg}" - else: - msg = excinfo.type.__name__ or excinfo.msg - - super().__init__(msg) - self.excinfo = excinfo - - def __str__(self) -> str: - try: - formatted = self.excinfo.errdisplay - except Exception: - return super().__str__() - else: - return dedent( - f""" - {super().__str__()} - - Uncaught in the interpreter: - - {formatted} - """.strip() - ) - - -class BusyResourceError(Exception): - """ - Raised when two tasks are trying to read from or write to the same resource - concurrently. - """ - - def __init__(self, action: str): - super().__init__(f"Another task is already {action} this resource") - - -class ClosedResourceError(Exception): - """Raised when trying to use a resource that has been closed.""" - - -class ConnectionFailed(OSError): - """ - Raised when a connection attempt fails. - - .. note:: This class inherits from :exc:`OSError` for backwards compatibility. - """ - - -def iterate_exceptions( - exception: BaseException, -) -> Generator[BaseException, None, None]: - if isinstance(exception, BaseExceptionGroup): - for exc in exception.exceptions: - yield from iterate_exceptions(exc) - else: - yield exception - - -class DelimiterNotFound(Exception): - """ - Raised during - :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the - maximum number of bytes has been read without the delimiter being found. - """ - - def __init__(self, max_bytes: int) -> None: - super().__init__( - f"The delimiter was not found among the first {max_bytes} bytes" - ) - - -class EndOfStream(Exception): - """ - Raised when trying to read from a stream that has been closed from the other end. - """ - - -class IncompleteRead(Exception): - """ - Raised during - :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_exactly` or - :meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the - connection is closed before the requested amount of bytes has been read. - """ - - def __init__(self) -> None: - super().__init__( - "The stream was closed before the read operation could be completed" - ) - - -class TypedAttributeLookupError(LookupError): - """ - Raised by :meth:`~anyio.TypedAttributeProvider.extra` when the given typed attribute - is not found and no default value has been given. - """ - - -class WouldBlock(Exception): - """Raised by ``X_nowait`` functions if ``X()`` would block.""" - - -class NoEventLoopError(RuntimeError): - """ - Raised by several functions that require an event loop to be running in the current - thread when there is no running event loop. - - This is also raised by :func:`.from_thread.run` and :func:`.from_thread.run_sync` - if not calling from an AnyIO worker thread, and no ``token`` was passed. - """ - - -class RunFinishedError(RuntimeError): - """ - Raised by :func:`.from_thread.run` and :func:`.from_thread.run_sync` if the event - loop associated with the explicitly passed token has already finished. - """ - - def __init__(self) -> None: - super().__init__( - "The event loop associated with the given token has already finished" - ) - - -class TaskFailed(Exception): - """ - Raised when awaiting on, or attempting to access the return value of, a - :class:`.TaskHandle` that raised an exception. - """ - - -class TaskCancelled(TaskFailed): - """ - Raised when awaiting on, or attempting to access the return value of, a - :class:`.TaskHandle` that was cancelled. - """ - - -class TaskNotFinished(Exception): - """ - Raised when attempting to access the return value or exception of a - :class:`.TaskHandle` that is still pending completion. - """ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_fileio.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_fileio.py deleted file mode 100644 index 692c754..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_fileio.py +++ /dev/null @@ -1,960 +0,0 @@ -from __future__ import annotations - -import os -import pathlib -import sys -from collections.abc import ( - AsyncIterator, - Callable, - Iterable, - Iterator, - Sequence, -) -from dataclasses import dataclass -from functools import partial -from os import PathLike -from typing import ( - IO, - TYPE_CHECKING, - Any, - AnyStr, - ClassVar, - Final, - Generic, - TypeVar, - overload, -) - -from .. import to_thread -from ..abc import AsyncResource -from ._synchronization import CapacityLimiter - -if sys.version_info >= (3, 11): - from typing import Self -else: - from typing_extensions import Self - -if sys.version_info >= (3, 14): - from pathlib.types import PathInfo - -if TYPE_CHECKING: - from types import ModuleType - - from _typeshed import OpenBinaryMode, OpenTextMode, ReadableBuffer, WriteableBuffer -else: - ReadableBuffer = OpenBinaryMode = OpenTextMode = WriteableBuffer = object - - -T = TypeVar("T", bound="Path") - - -class AsyncFile(AsyncResource, Generic[AnyStr]): - """ - An asynchronous file object. - - This class wraps a standard file object and provides async friendly versions of the - following blocking methods (where available on the original file object): - - * read - * read1 - * readline - * readlines - * readinto - * readinto1 - * write - * writelines - * truncate - * seek - * tell - * flush - - All other methods are directly passed through. - - This class supports the asynchronous context manager protocol which closes the - underlying file at the end of the context block. - - This class also supports asynchronous iteration:: - - async with await open_file(...) as f: - async for line in f: - print(line) - """ - - def __init__( - self, fp: IO[AnyStr], *, limiter: CapacityLimiter | None = None - ) -> None: - if limiter is not None and not isinstance(limiter, CapacityLimiter): - raise TypeError( - f"limiter must be a CapacityLimiter or None, not " - f"{limiter.__class__.__name__}" - ) - - self._fp: Any = fp - self._limiter = limiter - - def __getattr__(self, name: str) -> object: - return getattr(self._fp, name) - - @property - def limiter(self) -> CapacityLimiter | None: - """The capacity limiter used by this file object, if not the global limiter.""" - return self._limiter - - @property - def wrapped(self) -> IO[AnyStr]: - """The wrapped file object.""" - return self._fp - - async def __aiter__(self) -> AsyncIterator[AnyStr]: - while True: - line = await self.readline() - if line: - yield line - else: - break - - async def aclose(self) -> None: - return await to_thread.run_sync(self._fp.close, limiter=self._limiter) - - async def read(self, size: int = -1) -> AnyStr: - return await to_thread.run_sync(self._fp.read, size, limiter=self._limiter) - - async def read1(self: AsyncFile[bytes], size: int = -1) -> bytes: - return await to_thread.run_sync(self._fp.read1, size, limiter=self._limiter) - - async def readline(self) -> AnyStr: - return await to_thread.run_sync(self._fp.readline, limiter=self._limiter) - - async def readlines(self) -> list[AnyStr]: - return await to_thread.run_sync(self._fp.readlines, limiter=self._limiter) - - async def readinto(self: AsyncFile[bytes], b: WriteableBuffer) -> int: - return await to_thread.run_sync(self._fp.readinto, b, limiter=self._limiter) - - async def readinto1(self: AsyncFile[bytes], b: WriteableBuffer) -> int: - return await to_thread.run_sync(self._fp.readinto1, b, limiter=self._limiter) - - @overload - async def write(self: AsyncFile[bytes], b: ReadableBuffer) -> int: ... - - @overload - async def write(self: AsyncFile[str], b: str) -> int: ... - - async def write(self, b: ReadableBuffer | str) -> int: - return await to_thread.run_sync(self._fp.write, b, limiter=self._limiter) - - @overload - async def writelines( - self: AsyncFile[bytes], lines: Iterable[ReadableBuffer] - ) -> None: ... - - @overload - async def writelines(self: AsyncFile[str], lines: Iterable[str]) -> None: ... - - async def writelines(self, lines: Iterable[ReadableBuffer] | Iterable[str]) -> None: - return await to_thread.run_sync( - self._fp.writelines, lines, limiter=self._limiter - ) - - async def truncate(self, size: int | None = None) -> int: - return await to_thread.run_sync(self._fp.truncate, size, limiter=self._limiter) - - async def seek(self, offset: int, whence: int | None = os.SEEK_SET) -> int: - return await to_thread.run_sync( - self._fp.seek, offset, whence, limiter=self._limiter - ) - - async def tell(self) -> int: - return await to_thread.run_sync(self._fp.tell, limiter=self._limiter) - - async def flush(self) -> None: - return await to_thread.run_sync(self._fp.flush, limiter=self._limiter) - - -@overload -async def open_file( - file: str | PathLike[str] | int, - mode: OpenBinaryMode, - buffering: int = ..., - encoding: str | None = ..., - errors: str | None = ..., - newline: str | None = ..., - closefd: bool = ..., - opener: Callable[[str, int], int] | None = ..., - *, - limiter: CapacityLimiter | None = ..., -) -> AsyncFile[bytes]: ... - - -@overload -async def open_file( - file: str | PathLike[str] | int, - mode: OpenTextMode = ..., - buffering: int = ..., - encoding: str | None = ..., - errors: str | None = ..., - newline: str | None = ..., - closefd: bool = ..., - opener: Callable[[str, int], int] | None = ..., - *, - limiter: CapacityLimiter | None = ..., -) -> AsyncFile[str]: ... - - -async def open_file( - file: str | PathLike[str] | int, - mode: str = "r", - buffering: int = -1, - encoding: str | None = None, - errors: str | None = None, - newline: str | None = None, - closefd: bool = True, - opener: Callable[[str, int], int] | None = None, - *, - limiter: CapacityLimiter | None = None, -) -> AsyncFile[Any]: - """ - Open a file asynchronously. - - Except for ``limiter``, the arguments are exactly the same as for the builtin :func:`open`. - - :param limiter: an optional capacity limiter to use with the file - instead of the default one - :return: an asynchronous file object - - .. versionchanged:: 4.14.0 - Added the ``limiter`` keyword argument. - - """ - fp = await to_thread.run_sync( - open, - file, - mode, - buffering, - encoding, - errors, - newline, - closefd, - opener, - limiter=limiter, - ) - return AsyncFile(fp, limiter=limiter) - - -def wrap_file( - file: IO[AnyStr], *, limiter: CapacityLimiter | None = None -) -> AsyncFile[AnyStr]: - """ - Wrap an existing file as an asynchronous file. - - :param file: an existing file-like object - :param limiter: an optional capacity limiter to use with the file - instead of the default one - :return: an asynchronous file object - - .. versionchanged:: 4.14.0 - Added the ``limiter`` keyword argument. - - """ - return AsyncFile(file, limiter=limiter) - - -@dataclass(eq=False) -class _PathIterator(AsyncIterator[T]): - iterator: Iterator[PathLike[str]] - limiter: CapacityLimiter | None - # This was added to ensure that iterating over a subclass of Path yields instances - # of that subclass rather than the base Path class. - path_cls: type[T] - - async def __anext__(self) -> T: - nextval = await to_thread.run_sync( - next, self.iterator, None, abandon_on_cancel=True, limiter=self.limiter - ) - if nextval is None: - raise StopAsyncIteration from None - - return self.path_cls(nextval, limiter=self.limiter) - - -class Path: - """ - An asynchronous version of :class:`pathlib.Path`. - - This class cannot be substituted for :class:`pathlib.Path` or - :class:`pathlib.PurePath`, but it is compatible with the :class:`os.PathLike` - interface. - - It implements the Python 3.10 version of :class:`pathlib.Path` interface, except for - the deprecated :meth:`~pathlib.Path.link_to` method. - - Some methods may be unavailable or have limited functionality, based on the Python - version: - - * :meth:`~pathlib.Path.copy` (available on Python 3.14 or later) - * :meth:`~pathlib.Path.copy_into` (available on Python 3.14 or later) - * :meth:`~pathlib.Path.from_uri` (available on Python 3.13 or later) - * :meth:`~pathlib.PurePath.full_match` (available on Python 3.13 or later) - * :attr:`~pathlib.Path.info` (available on Python 3.14 or later) - * :meth:`~pathlib.Path.is_junction` (available on Python 3.12 or later) - * :meth:`~pathlib.PurePath.match` (the ``case_sensitive`` parameter is only - available on Python 3.13 or later) - * :meth:`~pathlib.Path.move` (available on Python 3.14 or later) - * :meth:`~pathlib.Path.move_into` (available on Python 3.14 or later) - * :meth:`~pathlib.PurePath.relative_to` (the ``walk_up`` parameter is only available - on Python 3.12 or later) - * :meth:`~pathlib.Path.walk` (available on Python 3.12 or later) - - Any methods that do disk I/O need to be awaited on. These methods are: - - * :meth:`~pathlib.Path.absolute` - * :meth:`~pathlib.Path.chmod` - * :meth:`~pathlib.Path.cwd` - * :meth:`~pathlib.Path.exists` - * :meth:`~pathlib.Path.expanduser` - * :meth:`~pathlib.Path.group` - * :meth:`~pathlib.Path.hardlink_to` - * :meth:`~pathlib.Path.home` - * :meth:`~pathlib.Path.is_block_device` - * :meth:`~pathlib.Path.is_char_device` - * :meth:`~pathlib.Path.is_dir` - * :meth:`~pathlib.Path.is_fifo` - * :meth:`~pathlib.Path.is_file` - * :meth:`~pathlib.Path.is_junction` - * :meth:`~pathlib.Path.is_mount` - * :meth:`~pathlib.Path.is_socket` - * :meth:`~pathlib.Path.is_symlink` - * :meth:`~pathlib.Path.lchmod` - * :meth:`~pathlib.Path.lstat` - * :meth:`~pathlib.Path.mkdir` - * :meth:`~pathlib.Path.open` - * :meth:`~pathlib.Path.owner` - * :meth:`~pathlib.Path.read_bytes` - * :meth:`~pathlib.Path.read_text` - * :meth:`~pathlib.Path.readlink` - * :meth:`~pathlib.Path.rename` - * :meth:`~pathlib.Path.replace` - * :meth:`~pathlib.Path.resolve` - * :meth:`~pathlib.Path.rmdir` - * :meth:`~pathlib.Path.samefile` - * :meth:`~pathlib.Path.stat` - * :meth:`~pathlib.Path.symlink_to` - * :meth:`~pathlib.Path.touch` - * :meth:`~pathlib.Path.unlink` - * :meth:`~pathlib.Path.walk` - * :meth:`~pathlib.Path.write_bytes` - * :meth:`~pathlib.Path.write_text` - - Additionally, the following methods return an async iterator yielding - :class:`~.Path` objects: - - * :meth:`~pathlib.Path.glob` - * :meth:`~pathlib.Path.iterdir` - * :meth:`~pathlib.Path.rglob` - - .. versionchanged:: 4.14.0 - Added the ``limiter`` keyword argument. - """ - - __slots__ = "_path", "_limiter", "__weakref__" - - __weakref__: Any - - def __init__( - self, *args: str | PathLike[str], limiter: CapacityLimiter | None = None - ) -> None: - if limiter is not None and not isinstance(limiter, CapacityLimiter): - raise TypeError( - f"limiter must be a CapacityLimiter or None, not " - f"{limiter.__class__.__name__}" - ) - - self._path: Final[pathlib.Path] = pathlib.Path(*args) - self._limiter = limiter - - def __fspath__(self) -> str: - return self._path.__fspath__() - - if sys.version_info >= (3, 15): - - def __vfspath__(self) -> str: - return self._path.__vfspath__() - - def __str__(self) -> str: - return self._path.__str__() - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.as_posix()!r})" - - def __bytes__(self) -> bytes: - return self._path.__bytes__() - - def __hash__(self) -> int: - return self._path.__hash__() - - def __eq__(self, other: object) -> bool: - target = other._path if isinstance(other, Path) else other - return self._path.__eq__(target) - - def __lt__(self, other: pathlib.PurePath | Path) -> bool: - target = other._path if isinstance(other, Path) else other - return self._path.__lt__(target) - - def __le__(self, other: pathlib.PurePath | Path) -> bool: - target = other._path if isinstance(other, Path) else other - return self._path.__le__(target) - - def __gt__(self, other: pathlib.PurePath | Path) -> bool: - target = other._path if isinstance(other, Path) else other - return self._path.__gt__(target) - - def __ge__(self, other: pathlib.PurePath | Path) -> bool: - target = other._path if isinstance(other, Path) else other - return self._path.__ge__(target) - - def __truediv__(self, other: str | PathLike[str]) -> Self: - return type(self)(self._path / other, limiter=self._limiter) - - def __rtruediv__(self, other: str | PathLike[str]) -> Self: - return type(self)(other, limiter=self._limiter) / self - - @property - def limiter(self) -> CapacityLimiter | None: - """The capacity limiter used by this path, if not the global limiter.""" - return self._limiter - - @property - def parts(self) -> tuple[str, ...]: - return self._path.parts - - @property - def drive(self) -> str: - return self._path.drive - - @property - def root(self) -> str: - return self._path.root - - @property - def anchor(self) -> str: - return self._path.anchor - - @property - def parents(self) -> Sequence[Self]: - return tuple(type(self)(p, limiter=self._limiter) for p in self._path.parents) - - @property - def parent(self) -> Self: - return type(self)(self._path.parent, limiter=self._limiter) - - @property - def name(self) -> str: - return self._path.name - - @property - def suffix(self) -> str: - return self._path.suffix - - @property - def suffixes(self) -> list[str]: - return self._path.suffixes - - @property - def stem(self) -> str: - return self._path.stem - - async def absolute(self) -> Self: - path = await to_thread.run_sync(self._path.absolute, limiter=self._limiter) - return type(self)(path, limiter=self._limiter) - - def as_posix(self) -> str: - return self._path.as_posix() - - def as_uri(self) -> str: - return self._path.as_uri() - - if sys.version_info >= (3, 13): - parser: ClassVar[ModuleType] = pathlib.Path.parser - - @classmethod - def from_uri(cls, uri: str, *, limiter: CapacityLimiter | None = None) -> Self: - return cls(pathlib.Path.from_uri(uri), limiter=limiter) - - def full_match( - self, path_pattern: str, *, case_sensitive: bool | None = None - ) -> bool: - return self._path.full_match(path_pattern, case_sensitive=case_sensitive) - - def match( - self, path_pattern: str, *, case_sensitive: bool | None = None - ) -> bool: - return self._path.match(path_pattern, case_sensitive=case_sensitive) - else: - - def match(self, path_pattern: str) -> bool: - return self._path.match(path_pattern) - - if sys.version_info >= (3, 14): - - @property - def info(self) -> PathInfo: - return self._path.info - - async def copy( - self, - target: str | os.PathLike[str], - *, - follow_symlinks: bool = True, - preserve_metadata: bool = False, - ) -> Self: - func = partial( - self._path.copy, - follow_symlinks=follow_symlinks, - preserve_metadata=preserve_metadata, - ) - return type(self)( - await to_thread.run_sync( - func, pathlib.Path(target), limiter=self._limiter - ), - limiter=self._limiter, - ) - - async def copy_into( - self, - target_dir: str | os.PathLike[str], - *, - follow_symlinks: bool = True, - preserve_metadata: bool = False, - ) -> Self: - func = partial( - self._path.copy_into, - follow_symlinks=follow_symlinks, - preserve_metadata=preserve_metadata, - ) - return type(self)( - await to_thread.run_sync( - func, pathlib.Path(target_dir), limiter=self._limiter - ), - limiter=self._limiter, - ) - - async def move(self, target: str | os.PathLike[str]) -> Self: - # Upstream does not handle anyio.Path properly as a PathLike - target = pathlib.Path(target) - return type(self)( - await to_thread.run_sync( - self._path.move, target, limiter=self._limiter - ), - limiter=self._limiter, - ) - - async def move_into( - self, - target_dir: str | os.PathLike[str], - ) -> Self: - return type(self)( - await to_thread.run_sync( - self._path.move_into, target_dir, limiter=self._limiter - ), - limiter=self._limiter, - ) - - def is_relative_to(self, other: str | PathLike[str]) -> bool: - try: - self.relative_to(other) - return True - except ValueError: - return False - - async def chmod(self, mode: int, *, follow_symlinks: bool = True) -> None: - func = partial(os.chmod, follow_symlinks=follow_symlinks) - return await to_thread.run_sync(func, self._path, mode, limiter=self._limiter) - - @classmethod - async def cwd(cls, *, limiter: CapacityLimiter | None = None) -> Self: - path = await to_thread.run_sync(pathlib.Path.cwd, limiter=limiter) - return cls(path, limiter=limiter) - - async def exists(self) -> bool: - return await to_thread.run_sync( - self._path.exists, abandon_on_cancel=True, limiter=self._limiter - ) - - async def expanduser(self) -> Self: - return type(self)( - await to_thread.run_sync( - self._path.expanduser, abandon_on_cancel=True, limiter=self._limiter - ), - limiter=self._limiter, - ) - - if sys.version_info < (3, 12): - # Python 3.11 and earlier - def glob(self, pattern: str) -> AsyncIterator[Self]: - gen = self._path.glob(pattern) - return _PathIterator(gen, self._limiter, type(self)) - elif (3, 12) <= sys.version_info < (3, 13): - # changed in Python 3.12: - # - The case_sensitive parameter was added. - def glob( - self, - pattern: str, - *, - case_sensitive: bool | None = None, - ) -> AsyncIterator[Self]: - gen = self._path.glob(pattern, case_sensitive=case_sensitive) - return _PathIterator(gen, self._limiter, type(self)) - elif sys.version_info >= (3, 13): - # Changed in Python 3.13: - # - The recurse_symlinks parameter was added. - # - The pattern parameter accepts a path-like object. - def glob( # type: ignore[misc] # mypy doesn't allow for differing signatures in a conditional block - self, - pattern: str | PathLike[str], - *, - case_sensitive: bool | None = None, - recurse_symlinks: bool = False, - ) -> AsyncIterator[Self]: - gen = self._path.glob( - pattern, # type: ignore[arg-type] - case_sensitive=case_sensitive, - recurse_symlinks=recurse_symlinks, - ) - return _PathIterator(gen, self._limiter, type(self)) - - async def group(self) -> str: - return await to_thread.run_sync( - self._path.group, abandon_on_cancel=True, limiter=self._limiter - ) - - async def hardlink_to( - self, target: str | bytes | PathLike[str] | PathLike[bytes] - ) -> None: - if isinstance(target, Path): - target = target._path - - await to_thread.run_sync(os.link, target, self, limiter=self._limiter) - - @classmethod - async def home(cls, *, limiter: CapacityLimiter | None = None) -> Self: - home_path = await to_thread.run_sync(pathlib.Path.home, limiter=limiter) - return cls(home_path, limiter=limiter) - - def is_absolute(self) -> bool: - return self._path.is_absolute() - - async def is_block_device(self) -> bool: - return await to_thread.run_sync( - self._path.is_block_device, abandon_on_cancel=True, limiter=self._limiter - ) - - async def is_char_device(self) -> bool: - return await to_thread.run_sync( - self._path.is_char_device, abandon_on_cancel=True, limiter=self._limiter - ) - - async def is_dir(self) -> bool: - return await to_thread.run_sync( - self._path.is_dir, abandon_on_cancel=True, limiter=self._limiter - ) - - async def is_fifo(self) -> bool: - return await to_thread.run_sync( - self._path.is_fifo, abandon_on_cancel=True, limiter=self._limiter - ) - - async def is_file(self) -> bool: - return await to_thread.run_sync( - self._path.is_file, abandon_on_cancel=True, limiter=self._limiter - ) - - if sys.version_info >= (3, 12): - - async def is_junction(self) -> bool: - return await to_thread.run_sync( - self._path.is_junction, limiter=self._limiter - ) - - async def is_mount(self) -> bool: - return await to_thread.run_sync( - os.path.ismount, self._path, abandon_on_cancel=True, limiter=self._limiter - ) - - if sys.version_info < (3, 15): - - def is_reserved(self) -> bool: - return self._path.is_reserved() - - async def is_socket(self) -> bool: - return await to_thread.run_sync( - self._path.is_socket, abandon_on_cancel=True, limiter=self._limiter - ) - - async def is_symlink(self) -> bool: - return await to_thread.run_sync( - self._path.is_symlink, abandon_on_cancel=True, limiter=self._limiter - ) - - async def iterdir(self) -> AsyncIterator[Self]: - gen = ( - self._path.iterdir() - if sys.version_info < (3, 13) - else await to_thread.run_sync( - self._path.iterdir, abandon_on_cancel=True, limiter=self._limiter - ) - ) - async for path in _PathIterator(gen, self._limiter, type(self)): - yield path - - def joinpath(self, *args: str | PathLike[str]) -> Self: - return type(self)(self._path.joinpath(*args), limiter=self._limiter) - - async def lchmod(self, mode: int) -> None: - await to_thread.run_sync(self._path.lchmod, mode, limiter=self._limiter) - - async def lstat(self) -> os.stat_result: - return await to_thread.run_sync( - self._path.lstat, abandon_on_cancel=True, limiter=self._limiter - ) - - async def mkdir( - self, mode: int = 0o777, parents: bool = False, exist_ok: bool = False - ) -> None: - await to_thread.run_sync( - self._path.mkdir, mode, parents, exist_ok, limiter=self._limiter - ) - - @overload - async def open( - self, - mode: OpenBinaryMode, - buffering: int = ..., - encoding: str | None = ..., - errors: str | None = ..., - newline: str | None = ..., - ) -> AsyncFile[bytes]: ... - - @overload - async def open( - self, - mode: OpenTextMode = ..., - buffering: int = ..., - encoding: str | None = ..., - errors: str | None = ..., - newline: str | None = ..., - ) -> AsyncFile[str]: ... - - async def open( - self, - mode: str = "r", - buffering: int = -1, - encoding: str | None = None, - errors: str | None = None, - newline: str | None = None, - ) -> AsyncFile[Any]: - fp = await to_thread.run_sync( - self._path.open, - mode, - buffering, - encoding, - errors, - newline, - limiter=self._limiter, - ) - return AsyncFile(fp, limiter=self._limiter) - - async def owner(self) -> str: - return await to_thread.run_sync( - self._path.owner, abandon_on_cancel=True, limiter=self._limiter - ) - - async def read_bytes(self) -> bytes: - return await to_thread.run_sync(self._path.read_bytes, limiter=self._limiter) - - async def read_text( - self, encoding: str | None = None, errors: str | None = None - ) -> str: - return await to_thread.run_sync( - self._path.read_text, encoding, errors, limiter=self._limiter - ) - - if sys.version_info >= (3, 12): - - def relative_to( - self, *other: str | PathLike[str], walk_up: bool = False - ) -> Self: - # relative_to() should work with any PathLike but it doesn't - others = [pathlib.Path(other) for other in other] - return type(self)( - self._path.relative_to(*others, walk_up=walk_up), limiter=self._limiter - ) - - else: - - def relative_to(self, *other: str | PathLike[str]) -> Self: - return type(self)(self._path.relative_to(*other), limiter=self._limiter) - - async def readlink(self) -> Self: - target = await to_thread.run_sync( - os.readlink, self._path, limiter=self._limiter - ) - return type(self)(target, limiter=self._limiter) - - async def rename(self, target: str | pathlib.PurePath | Path) -> Self: - if isinstance(target, Path): - target = target._path - - await to_thread.run_sync(self._path.rename, target, limiter=self._limiter) - return type(self)(target, limiter=self._limiter) - - async def replace(self, target: str | pathlib.PurePath | Path) -> Self: - if isinstance(target, Path): - target = target._path - - await to_thread.run_sync(self._path.replace, target, limiter=self._limiter) - return type(self)(target, limiter=self._limiter) - - async def resolve(self, strict: bool = False) -> Self: - func = partial(self._path.resolve, strict=strict) - return type(self)( - await to_thread.run_sync( - func, abandon_on_cancel=True, limiter=self._limiter - ), - limiter=self._limiter, - ) - - if sys.version_info < (3, 12): - # Pre Python 3.12 - def rglob(self, pattern: str) -> AsyncIterator[Self]: - gen = self._path.rglob(pattern) - return _PathIterator(gen, self._limiter, type(self)) - elif (3, 12) <= sys.version_info < (3, 13): - # Changed in Python 3.12: - # - The case_sensitive parameter was added. - def rglob( - self, pattern: str, *, case_sensitive: bool | None = None - ) -> AsyncIterator[Self]: - gen = self._path.rglob(pattern, case_sensitive=case_sensitive) - return _PathIterator(gen, self._limiter, type(self)) - elif sys.version_info >= (3, 13): - # Changed in Python 3.13: - # - The recurse_symlinks parameter was added. - # - The pattern parameter accepts a path-like object. - def rglob( # type: ignore[misc] # mypy doesn't allow for differing signatures in a conditional block - self, - pattern: str | PathLike[str], - *, - case_sensitive: bool | None = None, - recurse_symlinks: bool = False, - ) -> AsyncIterator[Self]: - gen = self._path.rglob( - pattern, # type: ignore[arg-type] - case_sensitive=case_sensitive, - recurse_symlinks=recurse_symlinks, - ) - return _PathIterator(gen, self._limiter, type(self)) - - async def rmdir(self) -> None: - await to_thread.run_sync(self._path.rmdir, limiter=self._limiter) - - async def samefile(self, other_path: str | PathLike[str]) -> bool: - if isinstance(other_path, Path): - other_path = other_path._path - - return await to_thread.run_sync( - self._path.samefile, - other_path, - abandon_on_cancel=True, - limiter=self._limiter, - ) - - async def stat(self, *, follow_symlinks: bool = True) -> os.stat_result: - func = partial(os.stat, follow_symlinks=follow_symlinks) - return await to_thread.run_sync( - func, self._path, abandon_on_cancel=True, limiter=self._limiter - ) - - async def symlink_to( - self, - target: str | bytes | PathLike[str] | PathLike[bytes], - target_is_directory: bool = False, - ) -> None: - if isinstance(target, Path): - target = target._path - - await to_thread.run_sync( - self._path.symlink_to, target, target_is_directory, limiter=self._limiter - ) - - async def touch(self, mode: int = 0o666, exist_ok: bool = True) -> None: - await to_thread.run_sync( - self._path.touch, mode, exist_ok, limiter=self._limiter - ) - - async def unlink(self, missing_ok: bool = False) -> None: - try: - await to_thread.run_sync(self._path.unlink, limiter=self._limiter) - except FileNotFoundError: - if not missing_ok: - raise - - if sys.version_info >= (3, 12): - - async def walk( - self, - top_down: bool = True, - on_error: Callable[[OSError], object] | None = None, - follow_symlinks: bool = False, - ) -> AsyncIterator[tuple[Self, list[str], list[str]]]: - def get_next_value() -> tuple[pathlib.Path, list[str], list[str]] | None: - try: - return next(gen) - except StopIteration: - return None - - gen = self._path.walk(top_down, on_error, follow_symlinks) - while True: - value = await to_thread.run_sync(get_next_value, limiter=self._limiter) - if value is None: - return - - root, dirs, paths = value - yield type(self)(root, limiter=self._limiter), dirs, paths - - def with_name(self, name: str) -> Self: - return type(self)(self._path.with_name(name), limiter=self._limiter) - - def with_stem(self, stem: str) -> Self: - return type(self)( - self._path.with_name(stem + self._path.suffix), limiter=self._limiter - ) - - def with_suffix(self, suffix: str) -> Self: - return type(self)(self._path.with_suffix(suffix), limiter=self._limiter) - - def with_segments(self, *pathsegments: str | PathLike[str]) -> Self: - return type(self)(*pathsegments, limiter=self._limiter) - - async def write_bytes(self, data: ReadableBuffer) -> int: - return await to_thread.run_sync( - self._path.write_bytes, data, limiter=self._limiter - ) - - async def write_text( - self, - data: str, - encoding: str | None = None, - errors: str | None = None, - newline: str | None = None, - ) -> int: - return await to_thread.run_sync( - self._path.write_text, - data, - encoding, - errors, - newline, - limiter=self._limiter, - ) - - -PathLike.register(Path) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_resources.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_resources.py deleted file mode 100644 index b9a5344..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_resources.py +++ /dev/null @@ -1,18 +0,0 @@ -from __future__ import annotations - -from ..abc import AsyncResource -from ._tasks import CancelScope - - -async def aclose_forcefully(resource: AsyncResource) -> None: - """ - Close an asynchronous resource in a cancelled scope. - - Doing this closes the resource without waiting on anything. - - :param resource: the resource to close - - """ - with CancelScope() as scope: - scope.cancel() - await resource.aclose() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_signals.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_signals.py deleted file mode 100644 index e24c79e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_signals.py +++ /dev/null @@ -1,29 +0,0 @@ -from __future__ import annotations - -from collections.abc import AsyncIterator -from contextlib import AbstractContextManager -from signal import Signals - -from ._eventloop import get_async_backend - - -def open_signal_receiver( - *signals: Signals, -) -> AbstractContextManager[AsyncIterator[Signals]]: - """ - Start receiving operating system signals. - - :param signals: signals to receive (e.g. ``signal.SIGINT``) - :return: an asynchronous context manager for an asynchronous iterator which yields - signal numbers - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - .. warning:: Windows does not support signals natively so it is best to avoid - relying on this in cross-platform applications. - - .. warning:: On asyncio, this permanently replaces any previous signal handler for - the given signals, as set via :meth:`~asyncio.loop.add_signal_handler`. - - """ - return get_async_backend().open_signal_receiver(*signals) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_sockets.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_sockets.py deleted file mode 100644 index 29f7332..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_sockets.py +++ /dev/null @@ -1,1011 +0,0 @@ -from __future__ import annotations - -import errno -import os -import socket -import ssl -import stat -import sys -from collections.abc import Awaitable -from dataclasses import dataclass -from ipaddress import IPv4Address, IPv6Address, ip_address -from os import PathLike, chmod -from socket import AddressFamily, SocketKind -from typing import TYPE_CHECKING, Any, Literal, cast, overload - -from .. import ConnectionFailed, to_thread -from ..abc import ( - ByteStreamConnectable, - ConnectedUDPSocket, - ConnectedUNIXDatagramSocket, - IPAddressType, - IPSockAddrType, - SocketListener, - SocketStream, - UDPSocket, - UNIXDatagramSocket, - UNIXSocketStream, -) -from ..streams.stapled import MultiListener -from ..streams.tls import TLSConnectable, TLSStream -from ._eventloop import get_async_backend -from ._resources import aclose_forcefully -from ._synchronization import Event -from ._tasks import create_task_group, move_on_after - -if TYPE_CHECKING: - from _typeshed import FileDescriptorLike -else: - FileDescriptorLike = object - -if sys.version_info < (3, 11): - from exceptiongroup import ExceptionGroup - -if sys.version_info >= (3, 12): - from typing import override -else: - from typing_extensions import override - -if sys.version_info < (3, 13): - from typing_extensions import deprecated -else: - from warnings import deprecated - -IPPROTO_IPV6 = getattr(socket, "IPPROTO_IPV6", 41) # https://bugs.python.org/issue29515 - -AnyIPAddressFamily = Literal[ - AddressFamily.AF_UNSPEC, AddressFamily.AF_INET, AddressFamily.AF_INET6 -] -IPAddressFamily = Literal[AddressFamily.AF_INET, AddressFamily.AF_INET6] - - -# tls_hostname given -@overload -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = ..., - local_port: int | None = ..., - ssl_context: ssl.SSLContext | None = ..., - tls_standard_compatible: bool = ..., - tls_hostname: str, - happy_eyeballs_delay: float = ..., -) -> TLSStream: ... - - -# ssl_context given -@overload -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = ..., - local_port: int | None = ..., - ssl_context: ssl.SSLContext, - tls_standard_compatible: bool = ..., - tls_hostname: str | None = ..., - happy_eyeballs_delay: float = ..., -) -> TLSStream: ... - - -# tls=True -@overload -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = ..., - local_port: int | None = ..., - tls: Literal[True], - ssl_context: ssl.SSLContext | None = ..., - tls_standard_compatible: bool = ..., - tls_hostname: str | None = ..., - happy_eyeballs_delay: float = ..., -) -> TLSStream: ... - - -# tls=False -@overload -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = ..., - local_port: int | None = ..., - tls: Literal[False], - ssl_context: ssl.SSLContext | None = ..., - tls_standard_compatible: bool = ..., - tls_hostname: str | None = ..., - happy_eyeballs_delay: float = ..., -) -> SocketStream: ... - - -# No TLS arguments -@overload -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = ..., - local_port: int | None = ..., - happy_eyeballs_delay: float = ..., -) -> SocketStream: ... - - -async def connect_tcp( - remote_host: IPAddressType, - remote_port: int, - *, - local_host: IPAddressType | None = None, - local_port: int | None = None, - tls: bool = False, - ssl_context: ssl.SSLContext | None = None, - tls_standard_compatible: bool = True, - tls_hostname: str | None = None, - happy_eyeballs_delay: float = 0.25, -) -> SocketStream | TLSStream: - """ - Connect to a host using the TCP protocol. - - This function implements the stateless version of the Happy Eyeballs algorithm (RFC - 6555). If ``remote_host`` is a host name that resolves to multiple IP addresses, - each one is tried until one connection attempt succeeds. If the first attempt does - not connected within 250 milliseconds, a second attempt is started using the next - address in the list, and so on. On IPv6 enabled systems, an IPv6 address (if - available) is tried first. - - When the connection has been established, a TLS handshake will be done if either - ``ssl_context`` or ``tls_hostname`` is not ``None``, or if ``tls`` is ``True``. - - :param remote_host: the IP address or host name to connect to - :param remote_port: port on the target host to connect to - :param local_host: the interface address or name to bind the socket to before - connecting - :param local_port: the local port to bind to (requires ``local_host`` to also be - set) - :param tls: ``True`` to do a TLS handshake with the connected stream and return a - :class:`~anyio.streams.tls.TLSStream` instead - :param ssl_context: the SSL context object to use (if omitted, a default context is - created) - :param tls_standard_compatible: If ``True``, performs the TLS shutdown handshake - before closing the stream and requires that the server does this as well. - Otherwise, :exc:`~ssl.SSLEOFError` may be raised during reads from the stream. - Some protocols, such as HTTP, require this option to be ``False``. - See :meth:`~ssl.SSLContext.wrap_socket` for details. - :param tls_hostname: host name to check the server certificate against (defaults to - the value of ``remote_host``) - :param happy_eyeballs_delay: delay (in seconds) before starting the next connection - attempt - :return: a socket stream object if no TLS handshake was done, otherwise a TLS stream - :raises ConnectionFailed: if the connection fails - - """ - # Placed here due to https://github.com/python/mypy/issues/7057 - connected_stream: SocketStream | None = None - - async def try_connect(remote_host: str, event: Event) -> None: - nonlocal connected_stream - try: - stream = await asynclib.connect_tcp(remote_host, remote_port, local_address) - except OSError as exc: - oserrors.append(exc) - return - else: - if connected_stream is None: - connected_stream = stream - tg.cancel_scope.cancel() - else: - await stream.aclose() - finally: - event.set() - - asynclib = get_async_backend() - local_address: IPSockAddrType | None = None - family = socket.AF_UNSPEC - if local_host: - gai_res = await getaddrinfo(str(local_host), local_port) - family, *_, local_address = gai_res[0] - - target_host = str(remote_host) - try: - addr_obj = ip_address(remote_host) - except ValueError: - addr_obj = None - - if addr_obj is not None: - if isinstance(addr_obj, IPv6Address): - target_addrs = [(socket.AF_INET6, addr_obj.compressed)] - else: - target_addrs = [(socket.AF_INET, addr_obj.compressed)] - else: - # getaddrinfo() will raise an exception if name resolution fails - gai_res = await getaddrinfo( - target_host, remote_port, family=family, type=socket.SOCK_STREAM - ) - - # Organize the list so that the first address is an IPv6 address (if available) - # and the second one is an IPv4 addresses. The rest can be in whatever order. - v6_found = v4_found = False - target_addrs = [] - for af, *_, sa in gai_res: - if af == socket.AF_INET6 and not v6_found: - v6_found = True - target_addrs.insert(0, (af, sa[0])) - elif af == socket.AF_INET and not v4_found and v6_found: - v4_found = True - target_addrs.insert(1, (af, sa[0])) - else: - target_addrs.append((af, sa[0])) - - oserrors: list[OSError] = [] - try: - async with create_task_group() as tg: - for _af, addr in target_addrs: - event = Event() - tg.start_soon(try_connect, addr, event) - with move_on_after(happy_eyeballs_delay): - await event.wait() - - if connected_stream is None: - cause = ( - oserrors[0] - if len(oserrors) == 1 - else ExceptionGroup("multiple connection attempts failed", oserrors) - ) - raise OSError("All connection attempts failed") from cause - finally: - oserrors.clear() - - if tls or tls_hostname or ssl_context: - try: - return await TLSStream.wrap( - connected_stream, - server_side=False, - hostname=tls_hostname or str(remote_host), - ssl_context=ssl_context, - standard_compatible=tls_standard_compatible, - ) - except BaseException: - await aclose_forcefully(connected_stream) - raise - - return connected_stream - - -async def connect_unix(path: str | bytes | PathLike[Any]) -> UNIXSocketStream: - """ - Connect to the given UNIX socket. - - Not available on Windows. - - :param path: path to the socket - :return: a socket stream object - :raises ConnectionFailed: if the connection fails - - """ - path = os.fspath(path) - return await get_async_backend().connect_unix(path) - - -async def create_tcp_listener( - *, - local_host: IPAddressType | None = None, - local_port: int = 0, - family: AnyIPAddressFamily = socket.AddressFamily.AF_UNSPEC, - backlog: int = 65536, - reuse_port: bool = False, -) -> MultiListener[SocketStream]: - """ - Create a TCP socket listener. - - :param local_port: port number to listen on - :param local_host: IP address of the interface to listen on. If omitted, listen on - all IPv4 and IPv6 interfaces. To listen on all interfaces on a specific address - family, use ``0.0.0.0`` for IPv4 or ``::`` for IPv6. - :param family: address family (used if ``local_host`` was omitted) - :param backlog: maximum number of queued incoming connections (up to a maximum of - 2**16, or 65536) - :param reuse_port: ``True`` to allow multiple sockets to bind to the same - address/port (not supported on Windows) - :return: a multi-listener object containing one or more socket listeners - :raises OSError: if there's an error creating a socket, or binding to one or more - interfaces failed - - """ - asynclib = get_async_backend() - backlog = min(backlog, 65536) - local_host = str(local_host) if local_host is not None else None - - def setup_raw_socket( - fam: AddressFamily, - bind_addr: tuple[str, int] | tuple[str, int, int, int], - *, - v6only: bool = True, - ) -> socket.socket: - sock = socket.socket(fam) - try: - sock.setblocking(False) - - if fam == AddressFamily.AF_INET6: - sock.setsockopt(IPPROTO_IPV6, socket.IPV6_V6ONLY, v6only) - - # For Windows, enable exclusive address use. For others, enable address - # reuse. - if sys.platform == "win32": - sock.setsockopt(socket.SOL_SOCKET, socket.SO_EXCLUSIVEADDRUSE, 1) - else: - sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - - if reuse_port: - sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) - - # Workaround for #554 - if fam == socket.AF_INET6 and "%" in bind_addr[0]: - addr, scope_id = bind_addr[0].split("%", 1) - bind_addr = (addr, bind_addr[1], 0, int(scope_id)) - - sock.bind(bind_addr) - sock.listen(backlog) - except BaseException: - sock.close() - raise - - return sock - - # We passing type=0 on non-Windows platforms as a workaround for a uvloop bug - # where we don't get the correct scope ID for IPv6 link-local addresses when passing - # type=socket.SOCK_STREAM to getaddrinfo(): - # https://github.com/MagicStack/uvloop/issues/539 - gai_res = await getaddrinfo( - local_host, - local_port, - family=family, - type=socket.SOCK_STREAM if sys.platform == "win32" else 0, - flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, - ) - - # The set comprehension is here to work around a glibc bug: - # https://sourceware.org/bugzilla/show_bug.cgi?id=14969 - sockaddrs = sorted({res for res in gai_res if res[1] == SocketKind.SOCK_STREAM}) - - # Special case for dual-stack binding on the "any" interface - if ( - local_host is None - and family == AddressFamily.AF_UNSPEC - and socket.has_dualstack_ipv6() - and any(fam == AddressFamily.AF_INET6 for fam, *_ in gai_res) - ): - raw_socket = setup_raw_socket( - AddressFamily.AF_INET6, ("::", local_port), v6only=False - ) - listener = asynclib.create_tcp_listener(raw_socket) - return MultiListener([listener]) - - errors: list[OSError] = [] - try: - for _ in range(len(sockaddrs)): - listeners: list[SocketListener] = [] - bound_ephemeral_port = local_port - try: - for fam, *_, sockaddr in sockaddrs: - sockaddr = sockaddr[0], bound_ephemeral_port, *sockaddr[2:] - raw_socket = setup_raw_socket(fam, sockaddr) - - # Store the assigned port if an ephemeral port was requested, so - # we'll bind to the same port on all interfaces - if local_port == 0 and len(gai_res) > 1: - bound_ephemeral_port = raw_socket.getsockname()[1] - - listeners.append(asynclib.create_tcp_listener(raw_socket)) - except BaseException as exc: - for listener in listeners: - await listener.aclose() - - # If an ephemeral port was requested but binding the assigned port - # failed for another interface, rotate the address list and try again - if ( - isinstance(exc, OSError) - and exc.errno == errno.EADDRINUSE - and local_port == 0 - and bound_ephemeral_port - ): - errors.append(exc) - sockaddrs.append(sockaddrs.pop(0)) - continue - - raise - - return MultiListener(listeners) - - raise OSError( - f"Could not create {len(sockaddrs)} listeners with a consistent port" - ) from ExceptionGroup("Several bind attempts failed", errors) - finally: - del errors # Prevent reference cycles - - -async def create_unix_listener( - path: str | bytes | PathLike[Any], - *, - mode: int | None = None, - backlog: int = 65536, -) -> SocketListener: - """ - Create a UNIX socket listener. - - Not available on Windows. - - :param path: path of the socket - :param mode: permissions to set on the socket - :param backlog: maximum number of queued incoming connections (up to a maximum of - 2**16, or 65536) - :return: a listener object - - .. versionchanged:: 3.0 - If a socket already exists on the file system in the given path, it will be - removed first. - - """ - backlog = min(backlog, 65536) - raw_socket = await setup_unix_local_socket(path, mode, socket.SOCK_STREAM) - try: - raw_socket.listen(backlog) - return get_async_backend().create_unix_listener(raw_socket) - except BaseException: - raw_socket.close() - raise - - -async def create_udp_socket( - family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC, - *, - local_host: IPAddressType | None = None, - local_port: int = 0, - reuse_port: bool = False, -) -> UDPSocket: - """ - Create a UDP socket. - - If ``port`` has been given, the socket will be bound to this port on the local - machine, making this socket suitable for providing UDP based services. - - :param family: address family (``AF_INET`` or ``AF_INET6``) – automatically - determined from ``local_host`` if omitted - :param local_host: IP address or host name of the local interface to bind to - :param local_port: local port to bind to - :param reuse_port: ``True`` to allow multiple sockets to bind to the same - address/port (not supported on Windows) - :return: a UDP socket - - """ - if family is AddressFamily.AF_UNSPEC and not local_host: - raise ValueError('Either "family" or "local_host" must be given') - - if local_host: - gai_res = await getaddrinfo( - str(local_host), - local_port, - family=family, - type=socket.SOCK_DGRAM, - flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, - ) - family = cast(AnyIPAddressFamily, gai_res[0][0]) - local_address = gai_res[0][-1] - elif family is AddressFamily.AF_INET6: - local_address = ("::", 0) - else: - local_address = ("0.0.0.0", 0) - - sock = await get_async_backend().create_udp_socket( - family, local_address, None, reuse_port - ) - return cast(UDPSocket, sock) - - -async def create_connected_udp_socket( - remote_host: IPAddressType, - remote_port: int, - *, - family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC, - local_host: IPAddressType | None = None, - local_port: int = 0, - reuse_port: bool = False, -) -> ConnectedUDPSocket: - """ - Create a connected UDP socket. - - Connected UDP sockets can only communicate with the specified remote host/port, an - any packets sent from other sources are dropped. - - :param remote_host: remote host to set as the default target - :param remote_port: port on the remote host to set as the default target - :param family: address family (``AF_INET`` or ``AF_INET6``) – automatically - determined from ``local_host`` or ``remote_host`` if omitted - :param local_host: IP address or host name of the local interface to bind to - :param local_port: local port to bind to - :param reuse_port: ``True`` to allow multiple sockets to bind to the same - address/port (not supported on Windows) - :return: a connected UDP socket - - """ - local_address = None - if local_host: - gai_res = await getaddrinfo( - str(local_host), - local_port, - family=family, - type=socket.SOCK_DGRAM, - flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG, - ) - family = cast(AnyIPAddressFamily, gai_res[0][0]) - local_address = gai_res[0][-1] - - gai_res = await getaddrinfo( - str(remote_host), remote_port, family=family, type=socket.SOCK_DGRAM - ) - family = cast(AnyIPAddressFamily, gai_res[0][0]) - remote_address = gai_res[0][-1] - - sock = await get_async_backend().create_udp_socket( - family, local_address, remote_address, reuse_port - ) - return cast(ConnectedUDPSocket, sock) - - -async def create_unix_datagram_socket( - *, - local_path: None | str | bytes | PathLike[Any] = None, - local_mode: int | None = None, -) -> UNIXDatagramSocket: - """ - Create a UNIX datagram socket. - - Not available on Windows. - - If ``local_path`` has been given, the socket will be bound to this path, making this - socket suitable for receiving datagrams from other processes. Other processes can - send datagrams to this socket only if ``local_path`` is set. - - If a socket already exists on the file system in the ``local_path``, it will be - removed first. - - :param local_path: the path on which to bind to - :param local_mode: permissions to set on the local socket - :return: a UNIX datagram socket - - """ - raw_socket = await setup_unix_local_socket( - local_path, local_mode, socket.SOCK_DGRAM - ) - return await get_async_backend().create_unix_datagram_socket(raw_socket, None) - - -async def create_connected_unix_datagram_socket( - remote_path: str | bytes | PathLike[Any], - *, - local_path: None | str | bytes | PathLike[Any] = None, - local_mode: int | None = None, -) -> ConnectedUNIXDatagramSocket: - """ - Create a connected UNIX datagram socket. - - Connected datagram sockets can only communicate with the specified remote path. - - If ``local_path`` has been given, the socket will be bound to this path, making - this socket suitable for receiving datagrams from other processes. Other processes - can send datagrams to this socket only if ``local_path`` is set. - - If a socket already exists on the file system in the ``local_path``, it will be - removed first. - - :param remote_path: the path to set as the default target - :param local_path: the path on which to bind to - :param local_mode: permissions to set on the local socket - :return: a connected UNIX datagram socket - - """ - remote_path = os.fspath(remote_path) - raw_socket = await setup_unix_local_socket( - local_path, local_mode, socket.SOCK_DGRAM - ) - return await get_async_backend().create_unix_datagram_socket( - raw_socket, remote_path - ) - - -async def getaddrinfo( - host: bytes | str | None, - port: str | int | None, - *, - family: int | AddressFamily = 0, - type: int | SocketKind = 0, - proto: int = 0, - flags: int = 0, -) -> list[tuple[AddressFamily, SocketKind, int, str, tuple[str, int]]]: - """ - Look up a numeric IP address given a host name. - - Internationalized domain names are translated according to the (non-transitional) - IDNA 2008 standard. - - .. note:: 4-tuple IPv6 socket addresses are automatically converted to 2-tuples of - (host, port), unlike what :func:`socket.getaddrinfo` does. - - :param host: host name - :param port: port number - :param family: socket family (`'AF_INET``, ...) - :param type: socket type (``SOCK_STREAM``, ...) - :param proto: protocol number - :param flags: flags to pass to upstream ``getaddrinfo()`` - :return: list of tuples containing (family, type, proto, canonname, sockaddr) - - .. seealso:: :func:`socket.getaddrinfo` - - """ - # Handle unicode hostnames - if isinstance(host, str): - try: - encoded_host: bytes | None = host.encode("ascii") - except UnicodeEncodeError: - import idna - - encoded_host = idna.encode(host, uts46=True) - else: - encoded_host = host - - gai_res = await get_async_backend().getaddrinfo( - encoded_host, port, family=family, type=type, proto=proto, flags=flags - ) - return [ - (family, type, proto, canonname, convert_ipv6_sockaddr(sockaddr)) - for family, type, proto, canonname, sockaddr in gai_res - # filter out IPv6 results when IPv6 is disabled - if not isinstance(sockaddr[0], int) - ] - - -def getnameinfo(sockaddr: IPSockAddrType, flags: int = 0) -> Awaitable[tuple[str, str]]: - """ - Look up the host name of an IP address. - - :param sockaddr: socket address (e.g. (ipaddress, port) for IPv4) - :param flags: flags to pass to upstream ``getnameinfo()`` - :return: a tuple of (host name, service name) - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - .. seealso:: :func:`socket.getnameinfo` - - """ - return get_async_backend().getnameinfo(sockaddr, flags) - - -@deprecated("This function is deprecated; use `wait_readable` instead") -def wait_socket_readable(sock: socket.socket) -> Awaitable[None]: - """ - .. deprecated:: 4.7.0 - Use :func:`wait_readable` instead. - - Wait until the given socket has data to be read. - - .. warning:: Only use this on raw sockets that have not been wrapped by any higher - level constructs like socket streams! - - :param sock: a socket object - :raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the - socket to become readable - :raises ~anyio.BusyResourceError: if another task is already waiting for the socket - to become readable - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().wait_readable(sock.fileno()) - - -@deprecated("This function is deprecated; use `wait_writable` instead") -def wait_socket_writable(sock: socket.socket) -> Awaitable[None]: - """ - .. deprecated:: 4.7.0 - Use :func:`wait_writable` instead. - - Wait until the given socket can be written to. - - This does **NOT** work on Windows when using the asyncio backend with a proactor - event loop (default on py3.8+). - - .. warning:: Only use this on raw sockets that have not been wrapped by any higher - level constructs like socket streams! - - :param sock: a socket object - :raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the - socket to become writable - :raises ~anyio.BusyResourceError: if another task is already waiting for the socket - to become writable - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().wait_writable(sock.fileno()) - - -def wait_readable(obj: FileDescriptorLike) -> Awaitable[None]: - """ - Wait until the given object has data to be read. - - On Unix systems, ``obj`` must either be an integer file descriptor, or else an - object with a ``.fileno()`` method which returns an integer file descriptor. Any - kind of file descriptor can be passed, though the exact semantics will depend on - your kernel. For example, this probably won't do anything useful for on-disk files. - - On Windows systems, ``obj`` must either be an integer ``SOCKET`` handle, or else an - object with a ``.fileno()`` method which returns an integer ``SOCKET`` handle. File - descriptors aren't supported, and neither are handles that refer to anything besides - a ``SOCKET``. - - On backends where this functionality is not natively provided (asyncio - ``ProactorEventLoop`` on Windows), it is provided using a separate selector thread - which is set to shut down when the interpreter shuts down. - - .. warning:: Don't use this on raw sockets that have been wrapped by any higher - level constructs like socket streams! - - :param obj: an object with a ``.fileno()`` method or an integer handle - :raises ~anyio.ClosedResourceError: if the object was closed while waiting for the - object to become readable - :raises ~anyio.BusyResourceError: if another task is already waiting for the object - to become readable - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().wait_readable(obj) - - -def wait_writable(obj: FileDescriptorLike) -> Awaitable[None]: - """ - Wait until the given object can be written to. - - :param obj: an object with a ``.fileno()`` method or an integer handle - :raises ~anyio.ClosedResourceError: if the object was closed while waiting for the - object to become writable - :raises ~anyio.BusyResourceError: if another task is already waiting for the object - to become writable - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - .. seealso:: See the documentation of :func:`wait_readable` for the definition of - ``obj`` and notes on backend compatibility. - - .. warning:: Don't use this on raw sockets that have been wrapped by any higher - level constructs like socket streams! - - """ - return get_async_backend().wait_writable(obj) - - -def notify_closing(obj: FileDescriptorLike) -> None: - """ - Call this before closing a file descriptor (on Unix) or socket (on - Windows). This will cause any `wait_readable` or `wait_writable` - calls on the given object to immediately wake up and raise - `~anyio.ClosedResourceError`. - - This doesn't actually close the object – you still have to do that - yourself afterwards. Also, you want to be careful to make sure no - new tasks start waiting on the object in between when you call this - and when it's actually closed. So to close something properly, you - usually want to do these steps in order: - - 1. Explicitly mark the object as closed, so that any new attempts - to use it will abort before they start. - 2. Call `notify_closing` to wake up any already-existing users. - 3. Actually close the object. - - It's also possible to do them in a different order if that's more - convenient, *but only if* you make sure not to have any checkpoints in - between the steps. This way they all happen in a single atomic - step, so other tasks won't be able to tell what order they happened - in anyway. - - :param obj: an object with a ``.fileno()`` method or an integer handle - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - get_async_backend().notify_closing(obj) - - -# -# Private API -# - - -def convert_ipv6_sockaddr( - sockaddr: tuple[str, int, int, int] | tuple[str, int], -) -> tuple[str, int]: - """ - Convert a 4-tuple IPv6 socket address to a 2-tuple (address, port) format. - - If the scope ID is nonzero, it is added to the address, separated with ``%``. - Otherwise the flow id and scope id are simply cut off from the tuple. - Any other kinds of socket addresses are returned as-is. - - :param sockaddr: the result of :meth:`~socket.socket.getsockname` - :return: the converted socket address - - """ - # This is more complicated than it should be because of MyPy - if isinstance(sockaddr, tuple) and len(sockaddr) == 4: - host, port, flowinfo, scope_id = sockaddr - if scope_id: - # PyPy (as of v7.3.11) leaves the interface name in the result, so - # we discard it and only get the scope ID from the end - # (https://foss.heptapod.net/pypy/pypy/-/issues/3938) - host = host.split("%")[0] - - # Add scope_id to the address - return f"{host}%{scope_id}", port - else: - return host, port - else: - return sockaddr - - -async def setup_unix_local_socket( - path: None | str | bytes | PathLike[Any], - mode: int | None, - socktype: int, -) -> socket.socket: - """ - Create a UNIX local socket object, deleting the socket at the given path if it - exists. - - Not available on Windows. - - :param path: path of the socket - :param mode: permissions to set on the socket - :param socktype: socket.SOCK_STREAM or socket.SOCK_DGRAM - - """ - path_str: str | None - if path is not None: - path_str = os.fsdecode(path) - - # Linux abstract namespace sockets aren't backed by a concrete file so skip stat call - if not path_str.startswith("\0"): - # Copied from pathlib... - try: - stat_result = os.stat(path) - except OSError as e: - if e.errno not in ( - errno.ENOENT, - errno.ENOTDIR, - errno.EBADF, - errno.ELOOP, - ): - raise - else: - if stat.S_ISSOCK(stat_result.st_mode): - os.unlink(path) - else: - path_str = None - - raw_socket = socket.socket(socket.AF_UNIX, socktype) - raw_socket.setblocking(False) - - if path_str is not None: - try: - await to_thread.run_sync(raw_socket.bind, path_str, abandon_on_cancel=True) - if mode is not None: - await to_thread.run_sync(chmod, path_str, mode, abandon_on_cancel=True) - except BaseException: - raw_socket.close() - raise - - return raw_socket - - -@dataclass -class TCPConnectable(ByteStreamConnectable): - """ - Connects to a TCP server at the given host and port. - - :param host: host name or IP address of the server - :param port: TCP port number of the server - """ - - host: str | IPv4Address | IPv6Address - port: int - - def __post_init__(self) -> None: - if self.port < 1 or self.port > 65535: - raise ValueError("TCP port number out of range") - - @override - async def connect(self) -> SocketStream: - try: - return await connect_tcp(self.host, self.port) - except OSError as exc: - raise ConnectionFailed( - f"error connecting to {self.host}:{self.port}: {exc}" - ) from exc - - -@dataclass -class UNIXConnectable(ByteStreamConnectable): - """ - Connects to a UNIX domain socket at the given path. - - :param path: the file system path of the socket - """ - - path: str | bytes | PathLike[str] | PathLike[bytes] - - @override - async def connect(self) -> UNIXSocketStream: - try: - return await connect_unix(self.path) - except OSError as exc: - raise ConnectionFailed(f"error connecting to {self.path!r}: {exc}") from exc - - -def as_connectable( - remote: ByteStreamConnectable - | tuple[str | IPv4Address | IPv6Address, int] - | str - | bytes - | PathLike[str], - /, - *, - tls: bool = False, - ssl_context: ssl.SSLContext | None = None, - tls_hostname: str | None = None, - tls_standard_compatible: bool = True, -) -> ByteStreamConnectable: - """ - Return a byte stream connectable from the given object. - - If a bytestream connectable is given, it is returned unchanged. - If a tuple of (host, port) is given, a TCP connectable is returned. - If a string or bytes path is given, a UNIX connectable is returned. - - If ``tls=True``, the connectable will be wrapped in a - :class:`~.streams.tls.TLSConnectable`. - - :param remote: a connectable, a tuple of (host, port) or a path to a UNIX socket - :param tls: if ``True``, wrap the plaintext connectable in a - :class:`~.streams.tls.TLSConnectable`, using the provided TLS settings) - :param ssl_context: if ``tls=True``, the SSLContext object to use (if not provided, - a secure default will be created) - :param tls_hostname: if ``tls=True``, host name of the server to use for checking - the server certificate (defaults to the host portion of the address for TCP - connectables) - :param tls_standard_compatible: if ``False`` and ``tls=True``, makes the TLS stream - skip the closing handshake when closing the connection, so it won't raise an - exception if the server does the same - - """ - connectable: TCPConnectable | UNIXConnectable | TLSConnectable - if isinstance(remote, ByteStreamConnectable): - return remote - elif isinstance(remote, tuple) and len(remote) == 2: - connectable = TCPConnectable(*remote) - elif isinstance(remote, (str, bytes, PathLike)): - connectable = UNIXConnectable(remote) - else: - raise TypeError(f"cannot convert {remote!r} to a connectable") - - if tls: - if not tls_hostname and isinstance(connectable, TCPConnectable): - tls_hostname = str(connectable.host) - - connectable = TLSConnectable( - connectable, - ssl_context=ssl_context, - hostname=tls_hostname, - standard_compatible=tls_standard_compatible, - ) - - return connectable diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_streams.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_streams.py deleted file mode 100644 index 2b9c7df..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_streams.py +++ /dev/null @@ -1,52 +0,0 @@ -from __future__ import annotations - -import math -from typing import TypeVar -from warnings import warn - -from ..streams.memory import ( - MemoryObjectReceiveStream, - MemoryObjectSendStream, - _MemoryObjectStreamState, -) - -T_Item = TypeVar("T_Item") - - -class create_memory_object_stream( - tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]], -): - """ - Create a memory object stream. - - The stream's item type can be annotated like - :func:`create_memory_object_stream[T_Item]`. - - :param max_buffer_size: number of items held in the buffer until ``send()`` starts - blocking - :param item_type: old way of marking the streams with the right generic type for - static typing (does nothing on AnyIO 4) - - .. deprecated:: 4.0 - Use ``create_memory_object_stream[YourItemType](...)`` instead. - :return: a tuple of (send stream, receive stream) - - """ - - def __new__( # type: ignore[misc] - cls, max_buffer_size: float = 0, item_type: object = None - ) -> tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]]: - if max_buffer_size != math.inf and not isinstance(max_buffer_size, int): - raise ValueError("max_buffer_size must be either an integer or math.inf") - if max_buffer_size < 0: - raise ValueError("max_buffer_size cannot be negative") - if item_type is not None: - warn( - "The item_type argument has been deprecated in AnyIO 4.0. " - "Use create_memory_object_stream[YourItemType](...) instead.", - DeprecationWarning, - stacklevel=2, - ) - - state = _MemoryObjectStreamState[T_Item](max_buffer_size) - return (MemoryObjectSendStream(state), MemoryObjectReceiveStream(state)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_subprocesses.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_subprocesses.py deleted file mode 100644 index 9796f8b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_subprocesses.py +++ /dev/null @@ -1,196 +0,0 @@ -from __future__ import annotations - -from collections.abc import AsyncIterable, Iterable, Mapping, Sequence -from io import BytesIO -from os import PathLike -from subprocess import PIPE, CalledProcessError, CompletedProcess -from typing import IO, Any, TypeAlias, cast - -from ..abc import Process -from ._eventloop import get_async_backend -from ._tasks import create_task_group - -StrOrBytesPath: TypeAlias = str | bytes | PathLike[str] | PathLike[bytes] - - -async def run_process( - command: StrOrBytesPath | Sequence[StrOrBytesPath], - *, - input: bytes | None = None, - stdin: int | IO[Any] | None = None, - stdout: int | IO[Any] | None = PIPE, - stderr: int | IO[Any] | None = PIPE, - check: bool = True, - cwd: StrOrBytesPath | None = None, - env: Mapping[str, str] | None = None, - startupinfo: Any = None, - creationflags: int = 0, - start_new_session: bool = False, - pass_fds: Sequence[int] = (), - user: str | int | None = None, - group: str | int | None = None, - extra_groups: Iterable[str | int] | None = None, - umask: int = -1, -) -> CompletedProcess[bytes]: - """ - Run an external command in a subprocess and wait until it completes. - - .. seealso:: :func:`subprocess.run` - - :param command: either a string to pass to the shell, or an iterable of strings - containing the executable name or path and its arguments - :param input: bytes passed to the standard input of the subprocess - :param stdin: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, - a file-like object, or `None`; ``input`` overrides this - :param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, - a file-like object, or `None` - :param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, - :data:`subprocess.STDOUT`, a file-like object, or `None` - :param check: if ``True``, raise :exc:`~subprocess.CalledProcessError` if the - process terminates with a return code other than 0 - :param cwd: If not ``None``, change the working directory to this before running the - command - :param env: if not ``None``, this mapping replaces the inherited environment - variables from the parent process - :param startupinfo: an instance of :class:`subprocess.STARTUPINFO` that can be used - to specify process startup parameters (Windows only) - :param creationflags: flags that can be used to control the creation of the - subprocess (see :class:`subprocess.Popen` for the specifics) - :param start_new_session: if ``true`` the setsid() system call will be made in the - child process prior to the execution of the subprocess. (POSIX only) - :param pass_fds: sequence of file descriptors to keep open between the parent and - child processes. (POSIX only) - :param user: effective user to run the process as (Python >= 3.9, POSIX only) - :param group: effective group to run the process as (Python >= 3.9, POSIX only) - :param extra_groups: supplementary groups to set in the subprocess (Python >= 3.9, - POSIX only) - :param umask: if not negative, this umask is applied in the child process before - running the given command (Python >= 3.9, POSIX only) - :return: an object representing the completed process - :raises ~subprocess.CalledProcessError: if ``check`` is ``True`` and the process - exits with a nonzero return code - - """ - - async def drain_stream(stream: AsyncIterable[bytes], index: int) -> None: - buffer = BytesIO() - async for chunk in stream: - buffer.write(chunk) - - stream_contents[index] = buffer.getvalue() - - if stdin is not None and input is not None: - raise ValueError("only one of stdin and input is allowed") - - async with await open_process( - command, - stdin=PIPE if input else stdin, - stdout=stdout, - stderr=stderr, - cwd=cwd, - env=env, - startupinfo=startupinfo, - creationflags=creationflags, - start_new_session=start_new_session, - pass_fds=pass_fds, - user=user, - group=group, - extra_groups=extra_groups, - umask=umask, - ) as process: - stream_contents: list[bytes | None] = [None, None] - async with create_task_group() as tg: - if process.stdout: - tg.start_soon(drain_stream, process.stdout, 0) - - if process.stderr: - tg.start_soon(drain_stream, process.stderr, 1) - - if process.stdin and input: - await process.stdin.send(input) - await process.stdin.aclose() - - await process.wait() - - output, errors = stream_contents - if check and process.returncode != 0: - raise CalledProcessError(cast(int, process.returncode), command, output, errors) - - return CompletedProcess(command, cast(int, process.returncode), output, errors) - - -async def open_process( - command: StrOrBytesPath | Sequence[StrOrBytesPath], - *, - stdin: int | IO[Any] | None = PIPE, - stdout: int | IO[Any] | None = PIPE, - stderr: int | IO[Any] | None = PIPE, - cwd: StrOrBytesPath | None = None, - env: Mapping[str, str] | None = None, - startupinfo: Any = None, - creationflags: int = 0, - start_new_session: bool = False, - pass_fds: Sequence[int] = (), - user: str | int | None = None, - group: str | int | None = None, - extra_groups: Iterable[str | int] | None = None, - umask: int = -1, -) -> Process: - """ - Start an external command in a subprocess. - - .. seealso:: :class:`subprocess.Popen` - - :param command: either a string to pass to the shell, or an iterable of strings - containing the executable name or path and its arguments - :param stdin: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, a - file-like object, or ``None`` - :param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, - a file-like object, or ``None`` - :param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, - :data:`subprocess.STDOUT`, a file-like object, or ``None`` - :param cwd: If not ``None``, the working directory is changed before executing - :param env: If env is not ``None``, it must be a mapping that defines the - environment variables for the new process - :param creationflags: flags that can be used to control the creation of the - subprocess (see :class:`subprocess.Popen` for the specifics) - :param startupinfo: an instance of :class:`subprocess.STARTUPINFO` that can be used - to specify process startup parameters (Windows only) - :param start_new_session: if ``true`` the setsid() system call will be made in the - child process prior to the execution of the subprocess. (POSIX only) - :param pass_fds: sequence of file descriptors to keep open between the parent and - child processes. (POSIX only) - :param user: effective user to run the process as (POSIX only) - :param group: effective group to run the process as (POSIX only) - :param extra_groups: supplementary groups to set in the subprocess (POSIX only) - :param umask: if not negative, this umask is applied in the child process before - running the given command (POSIX only) - :return: an asynchronous process object - - """ - kwargs: dict[str, Any] = {} - if user is not None: - kwargs["user"] = user - - if group is not None: - kwargs["group"] = group - - if extra_groups is not None: - kwargs["extra_groups"] = group - - if umask >= 0: - kwargs["umask"] = umask - - return await get_async_backend().open_process( - command, - stdin=stdin, - stdout=stdout, - stderr=stderr, - cwd=cwd, - env=env, - startupinfo=startupinfo, - creationflags=creationflags, - start_new_session=start_new_session, - pass_fds=pass_fds, - **kwargs, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_synchronization.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_synchronization.py deleted file mode 100644 index 9098bee..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_synchronization.py +++ /dev/null @@ -1,772 +0,0 @@ -from __future__ import annotations - -import math -from collections import deque -from collections.abc import Callable -from dataclasses import dataclass -from types import TracebackType -from typing import TypeVar - -from ..lowlevel import checkpoint_if_cancelled -from ._eventloop import get_async_backend -from ._exceptions import BusyResourceError, NoEventLoopError -from ._tasks import CancelScope -from ._testing import TaskInfo, get_current_task - -T = TypeVar("T") - - -@dataclass(frozen=True) -class EventStatistics: - """ - :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Event.wait` - """ - - tasks_waiting: int - - -@dataclass(frozen=True) -class CapacityLimiterStatistics: - """ - :ivar int borrowed_tokens: number of tokens currently borrowed by tasks - :ivar float total_tokens: total number of available tokens - :ivar tuple borrowers: tasks or other objects currently holding tokens borrowed from - this limiter - :ivar int tasks_waiting: number of tasks waiting on - :meth:`~.CapacityLimiter.acquire` or - :meth:`~.CapacityLimiter.acquire_on_behalf_of` - """ - - borrowed_tokens: int - total_tokens: float - borrowers: tuple[object, ...] - tasks_waiting: int - - -@dataclass(frozen=True) -class LockStatistics: - """ - :ivar bool locked: flag indicating if this lock is locked or not - :ivar ~anyio.TaskInfo owner: task currently holding the lock (or ``None`` if the - lock is not held by any task) - :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Lock.acquire` - """ - - locked: bool - owner: TaskInfo | None - tasks_waiting: int - - -@dataclass(frozen=True) -class ConditionStatistics: - """ - :ivar int tasks_waiting: number of tasks blocked on :meth:`~.Condition.wait` - :ivar ~anyio.LockStatistics lock_statistics: statistics of the underlying - :class:`~.Lock` - """ - - tasks_waiting: int - lock_statistics: LockStatistics - - -@dataclass(frozen=True) -class SemaphoreStatistics: - """ - :ivar int tasks_waiting: number of tasks waiting on :meth:`~.Semaphore.acquire` - - """ - - tasks_waiting: int - - -class Event: - __slots__ = ("__weakref__",) - - def __new__(cls) -> Event: - try: - return get_async_backend().create_event() - except NoEventLoopError: - return EventAdapter() - - def set(self) -> None: - """Set the flag, notifying all listeners.""" - raise NotImplementedError - - def is_set(self) -> bool: - """Return ``True`` if the flag is set, ``False`` if not.""" - raise NotImplementedError - - async def wait(self) -> None: - """ - Wait until the flag has been set. - - If the flag has already been set when this method is called, it returns - immediately. - - """ - raise NotImplementedError - - def statistics(self) -> EventStatistics: - """Return statistics about the current state of this event.""" - raise NotImplementedError - - -class EventAdapter(Event): - __slots__ = "_internal_event", "_is_set" - - def __new__(cls) -> EventAdapter: - return object.__new__(cls) - - def __init__(self) -> None: - self._internal_event: Event | None = None - self._is_set = False - - @property - def _event(self) -> Event: - if self._internal_event is None: - self._internal_event = get_async_backend().create_event() - if self._is_set: - self._internal_event.set() - - return self._internal_event - - def set(self) -> None: - if self._internal_event is None: - self._is_set = True - else: - self._event.set() - - def is_set(self) -> bool: - if self._internal_event is None: - return self._is_set - - return self._internal_event.is_set() - - async def wait(self) -> None: - await self._event.wait() - - def statistics(self) -> EventStatistics: - if self._internal_event is None: - return EventStatistics(tasks_waiting=0) - - return self._internal_event.statistics() - - -class Lock: - __slots__ = ("__weakref__",) - - def __new__(cls, *, fast_acquire: bool = False) -> Lock: - try: - return get_async_backend().create_lock(fast_acquire=fast_acquire) - except NoEventLoopError: - return LockAdapter(fast_acquire=fast_acquire) - - async def __aenter__(self) -> None: - await self.acquire() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.release() - - async def acquire(self) -> None: - """Acquire the lock.""" - raise NotImplementedError - - def acquire_nowait(self) -> None: - """ - Acquire the lock, without blocking. - - :raises ~anyio.WouldBlock: if the operation would block - - """ - raise NotImplementedError - - def release(self) -> None: - """Release the lock.""" - raise NotImplementedError - - def locked(self) -> bool: - """Return True if the lock is currently held.""" - raise NotImplementedError - - def statistics(self) -> LockStatistics: - """ - Return statistics about the current state of this lock. - - .. versionadded:: 3.0 - """ - raise NotImplementedError - - -class LockAdapter(Lock): - __slots__ = "_internal_lock", "_fast_acquire" - - def __new__(cls, *, fast_acquire: bool = False) -> LockAdapter: - return object.__new__(cls) - - def __init__(self, *, fast_acquire: bool = False): - self._internal_lock: Lock | None = None - self._fast_acquire = fast_acquire - - @property - def _lock(self) -> Lock: - if self._internal_lock is None: - self._internal_lock = get_async_backend().create_lock( - fast_acquire=self._fast_acquire - ) - - return self._internal_lock - - async def __aenter__(self) -> None: - await self._lock.acquire() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - if self._internal_lock is not None: - self._internal_lock.release() - - async def acquire(self) -> None: - """Acquire the lock.""" - await self._lock.acquire() - - def acquire_nowait(self) -> None: - """ - Acquire the lock, without blocking. - - :raises ~anyio.WouldBlock: if the operation would block - - """ - self._lock.acquire_nowait() - - def release(self) -> None: - """Release the lock.""" - self._lock.release() - - def locked(self) -> bool: - """Return True if the lock is currently held.""" - return self._lock.locked() - - def statistics(self) -> LockStatistics: - """ - Return statistics about the current state of this lock. - - .. versionadded:: 3.0 - - """ - if self._internal_lock is None: - return LockStatistics(False, None, 0) - - return self._internal_lock.statistics() - - -class Condition: - __slots__ = "__weakref__", "_owner_task", "_lock", "_waiters" - - def __init__(self, lock: Lock | None = None): - self._owner_task: TaskInfo | None = None - self._lock = lock or Lock() - self._waiters: deque[Event] = deque() - - async def __aenter__(self) -> None: - await self.acquire() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.release() - - def _check_acquired(self) -> None: - if self._owner_task != get_current_task(): - raise RuntimeError("The current task is not holding the underlying lock") - - async def acquire(self) -> None: - """Acquire the underlying lock.""" - await self._lock.acquire() - self._owner_task = get_current_task() - - def acquire_nowait(self) -> None: - """ - Acquire the underlying lock, without blocking. - - :raises ~anyio.WouldBlock: if the operation would block - - """ - self._lock.acquire_nowait() - self._owner_task = get_current_task() - - def release(self) -> None: - """Release the underlying lock.""" - self._lock.release() - - def locked(self) -> bool: - """Return True if the lock is set.""" - return self._lock.locked() - - def notify(self, n: int = 1) -> None: - """Notify exactly n listeners.""" - self._check_acquired() - for _ in range(n): - try: - event = self._waiters.popleft() - except IndexError: - break - - event.set() - - def notify_all(self) -> None: - """Notify all the listeners.""" - self._check_acquired() - for event in self._waiters: - event.set() - - self._waiters.clear() - - async def wait(self) -> None: - """Wait for a notification.""" - await checkpoint_if_cancelled() - self._check_acquired() - event = Event() - self._waiters.append(event) - self.release() - try: - await event.wait() - except BaseException: - if not event.is_set(): - self._waiters.remove(event) - elif self._waiters: - # This task was notified by could not act on it, so pass - # it on to the next task - self._waiters.popleft().set() - - raise - finally: - with CancelScope(shield=True): - await self.acquire() - - async def wait_for(self, predicate: Callable[[], T]) -> T: - """ - Wait until a predicate becomes true. - - :param predicate: a callable that returns a truthy value when the condition is - met - :return: the result of the predicate - - .. versionadded:: 4.11.0 - - """ - while not (result := predicate()): - await self.wait() - - return result - - def statistics(self) -> ConditionStatistics: - """ - Return statistics about the current state of this condition. - - .. versionadded:: 3.0 - """ - return ConditionStatistics(len(self._waiters), self._lock.statistics()) - - -class Semaphore: - __slots__ = "__weakref__", "_fast_acquire" - - def __new__( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> Semaphore: - try: - return get_async_backend().create_semaphore( - initial_value, max_value=max_value, fast_acquire=fast_acquire - ) - except NoEventLoopError: - return SemaphoreAdapter(initial_value, max_value=max_value) - - def __init__( - self, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ): - if not isinstance(initial_value, int): - raise TypeError("initial_value must be an integer") - if initial_value < 0: - raise ValueError("initial_value must be >= 0") - if max_value is not None: - if not isinstance(max_value, int): - raise TypeError("max_value must be an integer or None") - if max_value < initial_value: - raise ValueError( - "max_value must be equal to or higher than initial_value" - ) - - self._fast_acquire = fast_acquire - - async def __aenter__(self) -> Semaphore: - await self.acquire() - return self - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.release() - - async def acquire(self) -> None: - """Decrement the semaphore value, blocking if necessary.""" - raise NotImplementedError - - def acquire_nowait(self) -> None: - """ - Acquire the underlying lock, without blocking. - - :raises ~anyio.WouldBlock: if the operation would block - - """ - raise NotImplementedError - - def release(self) -> None: - """Increment the semaphore value.""" - raise NotImplementedError - - @property - def value(self) -> int: - """The current value of the semaphore.""" - raise NotImplementedError - - @property - def max_value(self) -> int | None: - """The maximum value of the semaphore.""" - raise NotImplementedError - - def statistics(self) -> SemaphoreStatistics: - """ - Return statistics about the current state of this semaphore. - - .. versionadded:: 3.0 - """ - raise NotImplementedError - - -class SemaphoreAdapter(Semaphore): - __slots__ = "_internal_semaphore", "_initial_value", "_max_value" - - def __new__( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> SemaphoreAdapter: - return object.__new__(cls) - - def __init__( - self, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> None: - super().__init__(initial_value, max_value=max_value, fast_acquire=fast_acquire) - self._internal_semaphore: Semaphore | None = None - self._initial_value = initial_value - self._max_value = max_value - - @property - def _semaphore(self) -> Semaphore: - if self._internal_semaphore is None: - self._internal_semaphore = get_async_backend().create_semaphore( - self._initial_value, max_value=self._max_value - ) - - return self._internal_semaphore - - async def acquire(self) -> None: - await self._semaphore.acquire() - - def acquire_nowait(self) -> None: - self._semaphore.acquire_nowait() - - def release(self) -> None: - self._semaphore.release() - - @property - def value(self) -> int: - if self._internal_semaphore is None: - return self._initial_value - - return self._semaphore.value - - @property - def max_value(self) -> int | None: - return self._max_value - - def statistics(self) -> SemaphoreStatistics: - if self._internal_semaphore is None: - return SemaphoreStatistics(tasks_waiting=0) - - return self._semaphore.statistics() - - -class CapacityLimiter: - __slots__ = ("__weakref__",) - - def __new__(cls, total_tokens: float) -> CapacityLimiter: - try: - return get_async_backend().create_capacity_limiter(total_tokens) - except NoEventLoopError: - return CapacityLimiterAdapter(total_tokens) - - async def __aenter__(self) -> None: - raise NotImplementedError - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - raise NotImplementedError - - @property - def total_tokens(self) -> float: - """ - The total number of tokens available for borrowing. - - This is a read-write property. If the total number of tokens is increased, the - proportionate number of tasks waiting on this limiter will be granted their - tokens. - - .. versionchanged:: 3.0 - The property is now writable. - .. versionchanged:: 4.12 - The value can now be set to 0. - - """ - raise NotImplementedError - - @total_tokens.setter - def total_tokens(self, value: float) -> None: - raise NotImplementedError - - @property - def borrowed_tokens(self) -> int: - """The number of tokens that have currently been borrowed.""" - raise NotImplementedError - - @property - def available_tokens(self) -> float: - """The number of tokens currently available to be borrowed""" - raise NotImplementedError - - def acquire_nowait(self) -> None: - """ - Acquire a token for the current task without waiting for one to become - available. - - :raises ~anyio.WouldBlock: if there are no tokens available for borrowing - - """ - raise NotImplementedError - - def acquire_on_behalf_of_nowait(self, borrower: object) -> None: - """ - Acquire a token without waiting for one to become available. - - :param borrower: the entity borrowing a token - :raises ~anyio.WouldBlock: if there are no tokens available for borrowing - - """ - raise NotImplementedError - - async def acquire(self) -> None: - """ - Acquire a token for the current task, waiting if necessary for one to become - available. - - """ - raise NotImplementedError - - async def acquire_on_behalf_of(self, borrower: object) -> None: - """ - Acquire a token, waiting if necessary for one to become available. - - :param borrower: the entity borrowing a token - - """ - raise NotImplementedError - - def release(self) -> None: - """ - Release the token held by the current task. - - :raises RuntimeError: if the current task has not borrowed a token from this - limiter. - - """ - raise NotImplementedError - - def release_on_behalf_of(self, borrower: object) -> None: - """ - Release the token held by the given borrower. - - :raises RuntimeError: if the borrower has not borrowed a token from this - limiter. - - """ - raise NotImplementedError - - def statistics(self) -> CapacityLimiterStatistics: - """ - Return statistics about the current state of this limiter. - - .. versionadded:: 3.0 - - """ - raise NotImplementedError - - -class CapacityLimiterAdapter(CapacityLimiter): - __slots__ = "_internal_limiter", "_total_tokens" - - def __new__(cls, total_tokens: float) -> CapacityLimiterAdapter: - return object.__new__(cls) - - def __init__(self, total_tokens: float) -> None: - self._internal_limiter: CapacityLimiter | None = None - self.total_tokens = total_tokens - - @property - def _limiter(self) -> CapacityLimiter: - if self._internal_limiter is None: - self._internal_limiter = get_async_backend().create_capacity_limiter( - self._total_tokens - ) - - return self._internal_limiter - - async def __aenter__(self) -> None: - await self._limiter.__aenter__() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - return await self._limiter.__aexit__(exc_type, exc_val, exc_tb) - - @property - def total_tokens(self) -> float: - if self._internal_limiter is None: - return self._total_tokens - - return self._internal_limiter.total_tokens - - @total_tokens.setter - def total_tokens(self, value: float) -> None: - if not isinstance(value, int) and value is not math.inf: - raise TypeError("total_tokens must be an int or math.inf") - elif value < 0: - raise ValueError("total_tokens must be >= 0") - - if self._internal_limiter is None: - self._total_tokens = value - return - - self._limiter.total_tokens = value - - @property - def borrowed_tokens(self) -> int: - if self._internal_limiter is None: - return 0 - - return self._internal_limiter.borrowed_tokens - - @property - def available_tokens(self) -> float: - if self._internal_limiter is None: - return self._total_tokens - - return self._internal_limiter.available_tokens - - def acquire_nowait(self) -> None: - self._limiter.acquire_nowait() - - def acquire_on_behalf_of_nowait(self, borrower: object) -> None: - self._limiter.acquire_on_behalf_of_nowait(borrower) - - async def acquire(self) -> None: - await self._limiter.acquire() - - async def acquire_on_behalf_of(self, borrower: object) -> None: - await self._limiter.acquire_on_behalf_of(borrower) - - def release(self) -> None: - self._limiter.release() - - def release_on_behalf_of(self, borrower: object) -> None: - self._limiter.release_on_behalf_of(borrower) - - def statistics(self) -> CapacityLimiterStatistics: - if self._internal_limiter is None: - return CapacityLimiterStatistics( - borrowed_tokens=0, - total_tokens=self.total_tokens, - borrowers=(), - tasks_waiting=0, - ) - - return self._internal_limiter.statistics() - - -class ResourceGuard: - """ - A context manager for ensuring that a resource is only used by a single task at a - time. - - Entering this context manager while the previous has not exited it yet will trigger - :exc:`BusyResourceError`. - - :param action: the action to guard against (visible in the :exc:`BusyResourceError` - when triggered, e.g. "Another task is already {action} this resource") - - .. versionadded:: 4.1 - """ - - __slots__ = "__weakref__", "action", "_guarded" - - def __init__(self, action: str = "using"): - self.action: str = action - self._guarded = False - - def __enter__(self) -> None: - if self._guarded: - raise BusyResourceError(self.action) - - self._guarded = True - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self._guarded = False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tasks.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tasks.py deleted file mode 100644 index 108393e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tasks.py +++ /dev/null @@ -1,415 +0,0 @@ -from __future__ import annotations - -import math -import sys -from collections.abc import ( - Coroutine, - Generator, -) -from contextlib import ( - contextmanager, -) -from contextvars import ContextVar -from enum import Enum, auto -from inspect import iscoroutine -from types import TracebackType -from typing import Any, Generic, final - -from ..abc import TaskGroup, TaskStatus -from ._eventloop import get_async_backend, get_cancelled_exc_class -from ._exceptions import TaskCancelled, TaskFailed, TaskNotFinished - -if sys.version_info >= (3, 13): - from typing import TypeVar -else: - from typing_extensions import TypeVar - -if sys.version_info >= (3, 11): - from typing import Never, TypeVarTuple -else: - from typing_extensions import Never, TypeVarTuple - -T = TypeVar("T") -T_co = TypeVar("T_co", covariant=True) -T_startval = TypeVar("T_startval", covariant=True, default=Never) -PosArgsT = TypeVarTuple("PosArgsT") - -_current_task_handle: ContextVar[TaskHandle] = ContextVar("_current_task_handle") - - -class _IgnoredTaskStatus(TaskStatus[object]): - def started(self, value: object = None) -> None: - pass - - -TASK_STATUS_IGNORED = _IgnoredTaskStatus() - - -class CancelScope: - """ - Wraps a unit of work that can be made separately cancellable. - - :param deadline: The time (clock value) when this scope is cancelled automatically - :param shield: ``True`` to shield the cancel scope from external cancellation - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - """ - - __slots__ = ("__weakref__",) - - def __new__( - cls, *, deadline: float = math.inf, shield: bool = False - ) -> CancelScope: - return get_async_backend().create_cancel_scope(shield=shield, deadline=deadline) - - def cancel(self, reason: str | None = None) -> None: - """ - Cancel this scope immediately. - - :param reason: a message describing the reason for the cancellation - - """ - raise NotImplementedError - - @property - def deadline(self) -> float: - """ - The time (clock value) when this scope is cancelled automatically. - - Will be ``float('inf')`` if no timeout has been set. - - """ - raise NotImplementedError - - @deadline.setter - def deadline(self, value: float) -> None: - raise NotImplementedError - - @property - def cancel_called(self) -> bool: - """``True`` if :meth:`cancel` has been called.""" - raise NotImplementedError - - @property - def cancelled_caught(self) -> bool: - """ - ``True`` if this scope suppressed a cancellation exception it itself raised. - - This is typically used to check if any work was interrupted, or to see if the - scope was cancelled due to its deadline being reached. The value will, however, - only be ``True`` if the cancellation was triggered by the scope itself (and not - an outer scope). - - """ - raise NotImplementedError - - @property - def shield(self) -> bool: - """ - ``True`` if this scope is shielded from external cancellation. - - While a scope is shielded, it will not receive cancellations from outside. - - """ - raise NotImplementedError - - @shield.setter - def shield(self, value: bool) -> None: - raise NotImplementedError - - def __enter__(self) -> CancelScope: - raise NotImplementedError - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - raise NotImplementedError - - -@contextmanager -def fail_after( - delay: float | None, shield: bool = False -) -> Generator[CancelScope, None, None]: - """ - Create a context manager which raises a :class:`TimeoutError` if does not finish in - time. - - :param delay: maximum allowed time (in seconds) before raising the exception, or - ``None`` to disable the timeout - :param shield: ``True`` to shield the cancel scope from external cancellation - :return: a context manager that yields a cancel scope - :rtype: :class:`~typing.ContextManager`\\[:class:`~anyio.CancelScope`\\] - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - current_time = get_async_backend().current_time - deadline = (current_time() + delay) if delay is not None else math.inf - with get_async_backend().create_cancel_scope( - deadline=deadline, shield=shield - ) as cancel_scope: - yield cancel_scope - - if cancel_scope.cancelled_caught and current_time() >= cancel_scope.deadline: - raise TimeoutError - - -def move_on_after(delay: float | None, shield: bool = False) -> CancelScope: - """ - Create a cancel scope with a deadline that expires after the given delay. - - :param delay: maximum allowed time (in seconds) before exiting the context block, or - ``None`` to disable the timeout - :param shield: ``True`` to shield the cancel scope from external cancellation - :return: a cancel scope - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - deadline = ( - (get_async_backend().current_time() + delay) if delay is not None else math.inf - ) - return get_async_backend().create_cancel_scope(deadline=deadline, shield=shield) - - -def current_effective_deadline() -> float: - """ - Return the nearest deadline among all the cancel scopes effective for the current - task. - - :return: a clock value from the event loop's internal clock (or ``float('inf')`` if - there is no deadline in effect, or ``float('-inf')`` if the current scope has - been cancelled) - :rtype: float - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().current_effective_deadline() - - -def create_task_group() -> TaskGroup: - """ - Create a task group. - - :return: a task group - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().create_task_group() - - -@final -class TaskHandle(Generic[T_co, T_startval]): - """ - Returned from the task-spawning methods of :class:`TaskGroup`. Can be awaited on to - get the return value of the task (or the raised exception). If the task was - terminated by a :exc:`BaseException`, :exc:`TaskFailed` will be raised (or its - subclass :exc:`TaskCancelled` if the task was cancelled). - - .. versionadded:: 4.14.0 - """ - - class Status(Enum): - """ - The status of a task handle. - - .. attribute:: PENDING - - The task has not finished yet. - .. attribute:: FINISHED - - The task has finished with a return value. - .. attribute:: CANCELLING - - The task has been cancelled but has not finished yet. - .. attribute:: CANCELLED - - The task was cancelled and has finished since. - .. attribute:: FAILED - - The task raised an exception. - """ - - PENDING = auto() - FINISHED = auto() - CANCELLING = auto() - CANCELLED = auto() - FAILED = auto() - - __slots__ = ( - "__weakref__", - "_coro", - "_name", - "_cancel_scope", - "_finished_event", - "_return_value", - "_start_value", - "_exception", - ) - - _return_value: T_co - _start_value: T_startval - - def __init__(self, coro: Coroutine[Any, Any, T_co], name: object) -> None: - from ._synchronization import Event - - self._coro = coro - self._cancel_scope = CancelScope() - self._finished_event = Event() - self._exception: BaseException | None = None - - if name is not None: - self._name = str(name) - elif iscoroutine(coro): - self._name = coro.__qualname__ - else: - self._name = str(coro) # coroutine-like object (e.g. asend() objects) - - async def _run_coro(self) -> None: - __tracebackhide__ = True - - with self._cancel_scope: - try: - retval = await self._coro - except BaseException as exc: - self._exception = exc - raise - else: - self._return_value = retval - finally: - self._finished_event.set() - del self # Break the reference cycle - - def cancel(self) -> None: - """ - Set the task to a cancelled state. - - This will interrupt any interruptible asynchronous operation, and will cause - any further awaits on this task to get immediately cancelled, unless done in - a shielded cancel scope. - - If the task has already finished, this method has no effect. - """ - if not self._finished_event.is_set(): - self._cancel_scope.cancel() - - @property - def coro(self) -> Coroutine[Any, Any, T_co]: - """ - The coroutine object that was passed to one of the task-spawning methods in - :class:`TaskGroup`. - """ - return self._coro - - @property - def status(self) -> TaskHandle.Status: - """ - The current status of the task. - - Every task starts in the :attr:`~TaskHandle.Status.PENDING` state. - If a task is cancelled while in this state, it will transition to the - :attr:`~TaskHandle.Status.CANCELLING` state. When the task finishes, it will - transition to one of the three final states ( - :attr:`~TaskHandle.Status.FINISHED`, :attr:`~TaskHandle.Status.FAILED`, or - :attr:`~TaskHandle.Status.CANCELLING`) depending on the exception the task - raised, if any. No other status transitions will happen. - """ - if not self._finished_event.is_set(): - if self._cancel_scope.cancel_called: - return TaskHandle.Status.CANCELLING - else: - return TaskHandle.Status.PENDING - elif self._exception is not None: - if isinstance(self._exception, get_cancelled_exc_class()): - return TaskHandle.Status.CANCELLED - else: - return TaskHandle.Status.FAILED - else: - return TaskHandle.Status.FINISHED - - @property - def name(self) -> str: - """The name of the task.""" - return self._name - - @property - def exception(self) -> BaseException | None: - """ - The exception raised by the task, or ``None`` if it finished without raising. - - :raises TaskNotFinished: if the task has not finished yet - :raises TaskCancelled: if the task was cancelled - - """ - match self.status: - case TaskHandle.Status.PENDING: - raise TaskNotFinished("the task has not finished yet") - case TaskHandle.Status.FINISHED: - return None - case TaskHandle.Status.CANCELLING: - raise TaskCancelled("the task was cancelled") - case TaskHandle.Status.CANCELLED: - raise TaskCancelled("the task was cancelled") from self._exception - case TaskHandle.Status.FAILED: - return self._exception - - @property - def return_value(self) -> T_co: - """ - The return value of the task. - - :raises TaskNotFinished: if the task has not finished yet - :raises TaskCancelled: if the task was cancelled - :raises TaskFailed: if the task raised an exception - - """ - match self.status: - case TaskHandle.Status.PENDING: - raise TaskNotFinished("the task has not finished yet") - case TaskHandle.Status.FINISHED: - return self._return_value - case TaskHandle.Status.CANCELLING: - raise TaskCancelled("the task was cancelled") - case TaskHandle.Status.CANCELLED: - raise TaskCancelled("the task was cancelled") from self._exception - case TaskHandle.Status.FAILED: - raise TaskFailed("the task raised an exception") from self._exception - - @property - def start_value(self) -> T_startval: - """ - The value passed to :meth:`task_status.started() <.abc.TaskStatus.started>`, - - :raises RuntimeError: if the task was not started with :meth:`TaskGroup.start() - <.abc.TaskGroup.start>` - """ - try: - return self._start_value - except AttributeError: - raise RuntimeError( - "the task was not started with TaskGroup.start()" - ) from None - - async def wait(self) -> None: - """ - Wait for the task to finish. - - This method will return as soon as the task has finished, no matter how it - happened. - """ - await self._finished_event.wait() - - def __await__(self) -> Generator[Any, Any, T_co]: - yield from self._finished_event.wait().__await__() - return self.return_value - - def __repr__(self) -> str: - return ( - f"<{self.__class__.__name__} {self.status.name.lower()} " - f"name={self._name!r} coro={self._coro!r}>" - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tempfile.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tempfile.py deleted file mode 100644 index 75a09f7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_tempfile.py +++ /dev/null @@ -1,613 +0,0 @@ -from __future__ import annotations - -import os -import sys -import tempfile -from collections.abc import Iterable -from io import BytesIO, TextIOWrapper -from types import TracebackType -from typing import ( - TYPE_CHECKING, - Any, - AnyStr, - Generic, - overload, -) - -from .. import to_thread -from .._core._fileio import AsyncFile -from ..lowlevel import checkpoint_if_cancelled - -if TYPE_CHECKING: - from _typeshed import OpenBinaryMode, OpenTextMode, ReadableBuffer, WriteableBuffer - - -class TemporaryFile(Generic[AnyStr]): - """ - An asynchronous temporary file that is automatically created and cleaned up. - - This class provides an asynchronous context manager interface to a temporary file. - The file is created using Python's standard `tempfile.TemporaryFile` function in a - background thread, and is wrapped as an asynchronous file using `AsyncFile`. - - :param mode: The mode in which the file is opened. Defaults to "w+b". - :param buffering: The buffering policy (-1 means the default buffering). - :param encoding: The encoding used to decode or encode the file. Only applicable in - text mode. - :param newline: Controls how universal newlines mode works (only applicable in text - mode). - :param suffix: The suffix for the temporary file name. - :param prefix: The prefix for the temporary file name. - :param dir: The directory in which the temporary file is created. - :param errors: The error handling scheme used for encoding/decoding errors. - """ - - _async_file: AsyncFile[AnyStr] - - @overload - def __init__( - self: TemporaryFile[bytes], - mode: OpenBinaryMode = ..., - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - *, - errors: str | None = ..., - ): ... - @overload - def __init__( - self: TemporaryFile[str], - mode: OpenTextMode, - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - *, - errors: str | None = ..., - ): ... - - def __init__( - self, - mode: OpenTextMode | OpenBinaryMode = "w+b", - buffering: int = -1, - encoding: str | None = None, - newline: str | None = None, - suffix: str | None = None, - prefix: str | None = None, - dir: str | None = None, - *, - errors: str | None = None, - ) -> None: - self.mode = mode - self.buffering = buffering - self.encoding = encoding - self.newline = newline - self.suffix: str | None = suffix - self.prefix: str | None = prefix - self.dir: str | None = dir - self.errors = errors - - async def __aenter__(self) -> AsyncFile[AnyStr]: - fp = await to_thread.run_sync( - lambda: tempfile.TemporaryFile( - self.mode, - self.buffering, - self.encoding, - self.newline, - self.suffix, - self.prefix, - self.dir, - errors=self.errors, - ) - ) - self._async_file = AsyncFile(fp) - return self._async_file - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - traceback: TracebackType | None, - ) -> None: - await self._async_file.aclose() - - -class NamedTemporaryFile(Generic[AnyStr]): - """ - An asynchronous named temporary file that is automatically created and cleaned up. - - This class provides an asynchronous context manager for a temporary file with a - visible name in the file system. It uses Python's standard - :func:`~tempfile.NamedTemporaryFile` function and wraps the file object with - :class:`AsyncFile` for asynchronous operations. - - :param mode: The mode in which the file is opened. Defaults to "w+b". - :param buffering: The buffering policy (-1 means the default buffering). - :param encoding: The encoding used to decode or encode the file. Only applicable in - text mode. - :param newline: Controls how universal newlines mode works (only applicable in text - mode). - :param suffix: The suffix for the temporary file name. - :param prefix: The prefix for the temporary file name. - :param dir: The directory in which the temporary file is created. - :param delete: Whether to delete the file when it is closed. - :param errors: The error handling scheme used for encoding/decoding errors. - :param delete_on_close: (Python 3.12+) Whether to delete the file on close. - """ - - _async_file: AsyncFile[AnyStr] - - @overload - def __init__( - self: NamedTemporaryFile[bytes], - mode: OpenBinaryMode = ..., - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - delete: bool = ..., - *, - errors: str | None = ..., - delete_on_close: bool = ..., - ): ... - @overload - def __init__( - self: NamedTemporaryFile[str], - mode: OpenTextMode, - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - delete: bool = ..., - *, - errors: str | None = ..., - delete_on_close: bool = ..., - ): ... - - def __init__( - self, - mode: OpenBinaryMode | OpenTextMode = "w+b", - buffering: int = -1, - encoding: str | None = None, - newline: str | None = None, - suffix: str | None = None, - prefix: str | None = None, - dir: str | None = None, - delete: bool = True, - *, - errors: str | None = None, - delete_on_close: bool = True, - ) -> None: - self._params: dict[str, Any] = { - "mode": mode, - "buffering": buffering, - "encoding": encoding, - "newline": newline, - "suffix": suffix, - "prefix": prefix, - "dir": dir, - "delete": delete, - "errors": errors, - } - if sys.version_info >= (3, 12): - self._params["delete_on_close"] = delete_on_close - - async def __aenter__(self) -> AsyncFile[AnyStr]: - fp = await to_thread.run_sync( - lambda: tempfile.NamedTemporaryFile(**self._params) - ) - self._async_file = AsyncFile(fp) - return self._async_file - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - traceback: TracebackType | None, - ) -> None: - await self._async_file.aclose() - - -class SpooledTemporaryFile(AsyncFile[AnyStr]): - """ - An asynchronous spooled temporary file that starts in memory and is spooled to disk. - - This class provides an asynchronous interface to a spooled temporary file, much like - Python's standard :class:`~tempfile.SpooledTemporaryFile`. It supports asynchronous - write operations and provides a method to force a rollover to disk. - - :param max_size: Maximum size in bytes before the file is rolled over to disk. - :param mode: The mode in which the file is opened. Defaults to "w+b". - :param buffering: The buffering policy (-1 means the default buffering). - :param encoding: The encoding used to decode or encode the file (text mode only). - :param newline: Controls how universal newlines mode works (text mode only). - :param suffix: The suffix for the temporary file name. - :param prefix: The prefix for the temporary file name. - :param dir: The directory in which the temporary file is created. - :param errors: The error handling scheme used for encoding/decoding errors. - """ - - _rolled: bool = False - - @overload - def __init__( - self: SpooledTemporaryFile[bytes], - max_size: int = ..., - mode: OpenBinaryMode = ..., - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - *, - errors: str | None = ..., - ): ... - @overload - def __init__( - self: SpooledTemporaryFile[str], - max_size: int = ..., - mode: OpenTextMode = ..., - buffering: int = ..., - encoding: str | None = ..., - newline: str | None = ..., - suffix: str | None = ..., - prefix: str | None = ..., - dir: str | None = ..., - *, - errors: str | None = ..., - ): ... - - def __init__( - self, - max_size: int = 0, - mode: OpenBinaryMode | OpenTextMode = "w+b", - buffering: int = -1, - encoding: str | None = None, - newline: str | None = None, - suffix: str | None = None, - prefix: str | None = None, - dir: str | None = None, - *, - errors: str | None = None, - ) -> None: - self._tempfile_params: dict[str, Any] = { - "mode": mode, - "buffering": buffering, - "encoding": encoding, - "newline": newline, - "suffix": suffix, - "prefix": prefix, - "dir": dir, - "errors": errors, - } - self._max_size = max_size - if "b" in mode: - super().__init__(BytesIO()) # type: ignore[arg-type] - else: - super().__init__( - TextIOWrapper( # type: ignore[arg-type] - BytesIO(), - encoding=encoding, - errors=errors, - newline=newline, - write_through=True, - ) - ) - - async def aclose(self) -> None: - if not self._rolled: - self._fp.close() - return - - await super().aclose() - - async def _check(self) -> None: - if self._rolled or self._fp.tell() <= self._max_size: - return - - await self.rollover() - - async def rollover(self) -> None: - if self._rolled: - return - - self._rolled = True - buffer = self._fp - buffer.seek(0) - self._fp = await to_thread.run_sync( - lambda: tempfile.TemporaryFile(**self._tempfile_params) - ) - await self.write(buffer.read()) - buffer.close() - - @property - def closed(self) -> bool: - return self._fp.closed - - async def read(self, size: int = -1) -> AnyStr: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.read(size) - - return await super().read(size) # type: ignore[return-value] - - async def read1(self: SpooledTemporaryFile[bytes], size: int = -1) -> bytes: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.read1(size) - - return await super().read1(size) - - async def readline(self) -> AnyStr: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.readline() - - return await super().readline() # type: ignore[return-value] - - async def readlines(self) -> list[AnyStr]: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.readlines() - - return await super().readlines() # type: ignore[return-value] - - async def readinto(self: SpooledTemporaryFile[bytes], b: WriteableBuffer) -> int: - if not self._rolled: - await checkpoint_if_cancelled() - self._fp.readinto(b) - - return await super().readinto(b) - - async def readinto1(self: SpooledTemporaryFile[bytes], b: WriteableBuffer) -> int: - if not self._rolled: - await checkpoint_if_cancelled() - self._fp.readinto(b) - - return await super().readinto1(b) - - async def seek(self, offset: int, whence: int | None = os.SEEK_SET) -> int: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.seek(offset, whence) - - return await super().seek(offset, whence) - - async def tell(self) -> int: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.tell() - - return await super().tell() - - async def truncate(self, size: int | None = None) -> int: - if not self._rolled: - await checkpoint_if_cancelled() - return self._fp.truncate(size) - - return await super().truncate(size) - - @overload - async def write(self: SpooledTemporaryFile[bytes], b: ReadableBuffer) -> int: ... - @overload - async def write(self: SpooledTemporaryFile[str], b: str) -> int: ... - - async def write(self, b: ReadableBuffer | str) -> int: - """ - Asynchronously write data to the spooled temporary file. - - If the file has not yet been rolled over, the data is written synchronously, - and a rollover is triggered if the size exceeds the maximum size. - - :param s: The data to write. - :return: The number of bytes written. - :raises RuntimeError: If the underlying file is not initialized. - - """ - if not self._rolled: - await checkpoint_if_cancelled() - result = self._fp.write(b) - await self._check() - return result - - return await super().write(b) # type: ignore[misc] - - @overload - async def writelines( - self: SpooledTemporaryFile[bytes], lines: Iterable[ReadableBuffer] - ) -> None: ... - @overload - async def writelines( - self: SpooledTemporaryFile[str], lines: Iterable[str] - ) -> None: ... - - async def writelines(self, lines: Iterable[str] | Iterable[ReadableBuffer]) -> None: - """ - Asynchronously write a list of lines to the spooled temporary file. - - If the file has not yet been rolled over, the lines are written synchronously, - and a rollover is triggered if the size exceeds the maximum size. - - :param lines: An iterable of lines to write. - :raises RuntimeError: If the underlying file is not initialized. - - """ - if not self._rolled: - await checkpoint_if_cancelled() - result = self._fp.writelines(lines) - await self._check() - return result - - return await super().writelines(lines) # type: ignore[misc] - - -class TemporaryDirectory(Generic[AnyStr]): - """ - An asynchronous temporary directory that is created and cleaned up automatically. - - This class provides an asynchronous context manager for creating a temporary - directory. It wraps Python's standard :class:`~tempfile.TemporaryDirectory` to - perform directory creation and cleanup operations in a background thread. - - :param suffix: Suffix to be added to the temporary directory name. - :param prefix: Prefix to be added to the temporary directory name. - :param dir: The parent directory where the temporary directory is created. - :param ignore_cleanup_errors: Whether to ignore errors during cleanup - :param delete: Whether to delete the directory upon closing (Python 3.12+). - """ - - def __init__( - self, - suffix: AnyStr | None = None, - prefix: AnyStr | None = None, - dir: AnyStr | None = None, - *, - ignore_cleanup_errors: bool = False, - delete: bool = True, - ) -> None: - self.suffix: AnyStr | None = suffix - self.prefix: AnyStr | None = prefix - self.dir: AnyStr | None = dir - self.ignore_cleanup_errors = ignore_cleanup_errors - self.delete = delete - - self._tempdir: tempfile.TemporaryDirectory | None = None - - async def __aenter__(self) -> str: - params: dict[str, Any] = { - "suffix": self.suffix, - "prefix": self.prefix, - "dir": self.dir, - "ignore_cleanup_errors": self.ignore_cleanup_errors, - } - if sys.version_info >= (3, 12): - params["delete"] = self.delete - - self._tempdir = await to_thread.run_sync( - lambda: tempfile.TemporaryDirectory(**params) - ) - return await to_thread.run_sync(self._tempdir.__enter__) - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - traceback: TracebackType | None, - ) -> None: - if self._tempdir is not None: - await to_thread.run_sync( - self._tempdir.__exit__, exc_type, exc_value, traceback - ) - - async def cleanup(self) -> None: - if self._tempdir is not None: - await to_thread.run_sync(self._tempdir.cleanup) - - -@overload -async def mkstemp( - suffix: str | None = None, - prefix: str | None = None, - dir: str | None = None, - text: bool = False, -) -> tuple[int, str]: ... - - -@overload -async def mkstemp( - suffix: bytes | None = None, - prefix: bytes | None = None, - dir: bytes | None = None, - text: bool = False, -) -> tuple[int, bytes]: ... - - -async def mkstemp( - suffix: AnyStr | None = None, - prefix: AnyStr | None = None, - dir: AnyStr | None = None, - text: bool = False, -) -> tuple[int, str | bytes]: - """ - Asynchronously create a temporary file and return an OS-level handle and the file - name. - - This function wraps `tempfile.mkstemp` and executes it in a background thread. - - :param suffix: Suffix to be added to the file name. - :param prefix: Prefix to be added to the file name. - :param dir: Directory in which the temporary file is created. - :param text: Whether the file is opened in text mode. - :return: A tuple containing the file descriptor and the file name. - - """ - return await to_thread.run_sync(tempfile.mkstemp, suffix, prefix, dir, text) - - -@overload -async def mkdtemp( - suffix: str | None = None, - prefix: str | None = None, - dir: str | None = None, -) -> str: ... - - -@overload -async def mkdtemp( - suffix: bytes | None = None, - prefix: bytes | None = None, - dir: bytes | None = None, -) -> bytes: ... - - -async def mkdtemp( - suffix: AnyStr | None = None, - prefix: AnyStr | None = None, - dir: AnyStr | None = None, -) -> str | bytes: - """ - Asynchronously create a temporary directory and return its path. - - This function wraps `tempfile.mkdtemp` and executes it in a background thread. - - :param suffix: Suffix to be added to the directory name. - :param prefix: Prefix to be added to the directory name. - :param dir: Parent directory where the temporary directory is created. - :return: The path of the created temporary directory. - - """ - return await to_thread.run_sync(tempfile.mkdtemp, suffix, prefix, dir) - - -async def gettempdir() -> str: - """ - Asynchronously return the name of the directory used for temporary files. - - This function wraps `tempfile.gettempdir` and executes it in a background thread. - - :return: The path of the temporary directory as a string. - - """ - return await to_thread.run_sync(tempfile.gettempdir) - - -async def gettempdirb() -> bytes: - """ - Asynchronously return the name of the directory used for temporary files in bytes. - - This function wraps `tempfile.gettempdirb` and executes it in a background thread. - - :return: The path of the temporary directory as bytes. - - """ - return await to_thread.run_sync(tempfile.gettempdirb) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_testing.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_testing.py deleted file mode 100644 index 369e65c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_testing.py +++ /dev/null @@ -1,82 +0,0 @@ -from __future__ import annotations - -from collections.abc import Awaitable, Generator -from typing import Any, cast - -from ._eventloop import get_async_backend - - -class TaskInfo: - """ - Represents an asynchronous task. - - :ivar int id: the unique identifier of the task - :ivar parent_id: the identifier of the parent task, if any - :vartype parent_id: Optional[int] - :ivar str name: the description of the task (if any) - :ivar ~collections.abc.Coroutine coro: the coroutine object of the task - """ - - __slots__ = "_name", "id", "parent_id", "name", "coro" - - def __init__( - self, - id: int, - parent_id: int | None, - name: str | None, - coro: Generator[Any, Any, Any] | Awaitable[Any], - ): - func = get_current_task - self._name = f"{func.__module__}.{func.__qualname__}" - self.id: int = id - self.parent_id: int | None = parent_id - self.name: str | None = name - self.coro: Generator[Any, Any, Any] | Awaitable[Any] = coro - - def __eq__(self, other: object) -> bool: - if isinstance(other, TaskInfo): - return self.id == other.id - - return NotImplemented - - def __hash__(self) -> int: - return hash(self.id) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}(id={self.id!r}, name={self.name!r})" - - def has_pending_cancellation(self) -> bool: - """ - Return ``True`` if the task has a cancellation pending, ``False`` otherwise. - - """ - return False - - -def get_current_task() -> TaskInfo: - """ - Return the current task. - - :return: a representation of the current task - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().get_current_task() - - -def get_running_tasks() -> list[TaskInfo]: - """ - Return a list of running tasks in the current event loop. - - :return: a list of task info objects - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return cast("list[TaskInfo]", get_async_backend().get_running_tasks()) - - -async def wait_all_tasks_blocked() -> None: - """Wait until all other tasks are waiting for something.""" - await get_async_backend().wait_all_tasks_blocked() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_typedattr.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_typedattr.py deleted file mode 100644 index f358a44..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/_core/_typedattr.py +++ /dev/null @@ -1,81 +0,0 @@ -from __future__ import annotations - -from collections.abc import Callable, Mapping -from typing import Any, TypeVar, final, overload - -from ._exceptions import TypedAttributeLookupError - -T_Attr = TypeVar("T_Attr") -T_Default = TypeVar("T_Default") -undefined = object() - - -def typed_attribute() -> Any: - """Return a unique object, used to mark typed attributes.""" - return object() - - -class TypedAttributeSet: - """ - Superclass for typed attribute collections. - - Checks that every public attribute of every subclass has a type annotation. - """ - - def __init_subclass__(cls) -> None: - annotations: dict[str, Any] = getattr(cls, "__annotations__", {}) - for attrname in dir(cls): - if not attrname.startswith("_") and attrname not in annotations: - raise TypeError( - f"Attribute {attrname!r} is missing its type annotation" - ) - - super().__init_subclass__() - - -class TypedAttributeProvider: - """Base class for classes that wish to provide typed extra attributes.""" - - @property - def extra_attributes(self) -> Mapping[T_Attr, Callable[[], T_Attr]]: - """ - A mapping of the extra attributes to callables that return the corresponding - values. - - If the provider wraps another provider, the attributes from that wrapper should - also be included in the returned mapping (but the wrapper may override the - callables from the wrapped instance). - - """ - return {} - - @overload - def extra(self, attribute: T_Attr) -> T_Attr: ... - - @overload - def extra(self, attribute: T_Attr, default: T_Default) -> T_Attr | T_Default: ... - - @final - def extra(self, attribute: Any, default: object = undefined) -> object: - """ - extra(attribute, default=undefined) - - Return the value of the given typed extra attribute. - - :param attribute: the attribute (member of a :class:`~TypedAttributeSet`) to - look for - :param default: the value that should be returned if no value is found for the - attribute - :raises ~anyio.TypedAttributeLookupError: if the search failed and no default - value was given - - """ - try: - getter = self.extra_attributes[attribute] - except KeyError: - if default is undefined: - raise TypedAttributeLookupError("Attribute not found") from None - else: - return default - - return getter() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__init__.py deleted file mode 100644 index d560ce3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__init__.py +++ /dev/null @@ -1,58 +0,0 @@ -from __future__ import annotations - -from ._eventloop import AsyncBackend as AsyncBackend -from ._resources import AsyncResource as AsyncResource -from ._sockets import ConnectedUDPSocket as ConnectedUDPSocket -from ._sockets import ConnectedUNIXDatagramSocket as ConnectedUNIXDatagramSocket -from ._sockets import IPAddressType as IPAddressType -from ._sockets import IPSockAddrType as IPSockAddrType -from ._sockets import SocketAttribute as SocketAttribute -from ._sockets import SocketListener as SocketListener -from ._sockets import SocketStream as SocketStream -from ._sockets import UDPPacketType as UDPPacketType -from ._sockets import UDPSocket as UDPSocket -from ._sockets import UNIXDatagramPacketType as UNIXDatagramPacketType -from ._sockets import UNIXDatagramSocket as UNIXDatagramSocket -from ._sockets import UNIXSocketStream as UNIXSocketStream -from ._streams import AnyByteReceiveStream as AnyByteReceiveStream -from ._streams import AnyByteSendStream as AnyByteSendStream -from ._streams import AnyByteStream as AnyByteStream -from ._streams import AnyByteStreamConnectable as AnyByteStreamConnectable -from ._streams import AnyUnreliableByteReceiveStream as AnyUnreliableByteReceiveStream -from ._streams import AnyUnreliableByteSendStream as AnyUnreliableByteSendStream -from ._streams import AnyUnreliableByteStream as AnyUnreliableByteStream -from ._streams import ByteReceiveStream as ByteReceiveStream -from ._streams import ByteSendStream as ByteSendStream -from ._streams import ByteStream as ByteStream -from ._streams import ByteStreamConnectable as ByteStreamConnectable -from ._streams import Listener as Listener -from ._streams import ObjectReceiveStream as ObjectReceiveStream -from ._streams import ObjectSendStream as ObjectSendStream -from ._streams import ObjectStream as ObjectStream -from ._streams import ObjectStreamConnectable as ObjectStreamConnectable -from ._streams import UnreliableObjectReceiveStream as UnreliableObjectReceiveStream -from ._streams import UnreliableObjectSendStream as UnreliableObjectSendStream -from ._streams import UnreliableObjectStream as UnreliableObjectStream -from ._subprocesses import Process as Process -from ._tasks import TaskGroup as TaskGroup -from ._tasks import TaskStatus as TaskStatus -from ._testing import TestRunner as TestRunner - -# Re-exported here, for backwards compatibility -# isort: off -from .._core._synchronization import ( - CapacityLimiter as CapacityLimiter, - Condition as Condition, - Event as Event, - Lock as Lock, - Semaphore as Semaphore, -) -from .._core._tasks import CancelScope as CancelScope -from ..from_thread import BlockingPortal as BlockingPortal - -# Re-export imports so they look like they live directly in this package -for __value in list(locals().values()): - if getattr(__value, "__module__", "").startswith("anyio.abc."): - __value.__module__ = __name__ - -del __value diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f6c84ec..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_eventloop.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_eventloop.cpython-311.pyc deleted file mode 100644 index b1d475c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_eventloop.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_resources.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_resources.cpython-311.pyc deleted file mode 100644 index f12a8fc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_resources.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_sockets.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_sockets.cpython-311.pyc deleted file mode 100644 index a897847..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_sockets.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_streams.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_streams.cpython-311.pyc deleted file mode 100644 index f918613..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_streams.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-311.pyc deleted file mode 100644 index 027a7a2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_tasks.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_tasks.cpython-311.pyc deleted file mode 100644 index bdc203b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_tasks.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_testing.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_testing.cpython-311.pyc deleted file mode 100644 index 2cb18b9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/__pycache__/_testing.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_eventloop.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_eventloop.py deleted file mode 100644 index cad3fa7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_eventloop.py +++ /dev/null @@ -1,410 +0,0 @@ -from __future__ import annotations - -import math -import sys -from abc import ABCMeta, abstractmethod -from collections.abc import AsyncIterator, Awaitable, Callable, Coroutine, Sequence -from contextlib import AbstractContextManager -from os import PathLike -from signal import Signals -from socket import AddressFamily, SocketKind, socket -from typing import ( - IO, - TYPE_CHECKING, - Any, - TypeAlias, - TypeVar, - overload, -) - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -if TYPE_CHECKING: - from _typeshed import FileDescriptorLike - - from .._core._synchronization import CapacityLimiter, Event, Lock, Semaphore - from .._core._tasks import CancelScope - from .._core._testing import TaskInfo - from ._sockets import ( - ConnectedUDPSocket, - ConnectedUNIXDatagramSocket, - IPSockAddrType, - SocketListener, - SocketStream, - UDPSocket, - UNIXDatagramSocket, - UNIXSocketStream, - ) - from ._subprocesses import Process - from ._tasks import TaskGroup - from ._testing import TestRunner - -T_Retval = TypeVar("T_Retval") -T_co = TypeVar("T_co", covariant=True) -PosArgsT = TypeVarTuple("PosArgsT") -StrOrBytesPath: TypeAlias = str | bytes | PathLike[str] | PathLike[bytes] - - -class AsyncBackend(metaclass=ABCMeta): - @classmethod - @abstractmethod - def run( - cls, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - args: tuple[Unpack[PosArgsT]], - kwargs: dict[str, Any], - options: dict[str, Any], - ) -> T_Retval: - """ - Run the given coroutine function in an asynchronous event loop. - - The current thread must not be already running an event loop. - - :param func: a coroutine function - :param args: positional arguments to ``func`` - :param kwargs: positional arguments to ``func`` - :param options: keyword arguments to call the backend ``run()`` implementation - with - :return: the return value of the coroutine function - """ - - @classmethod - @abstractmethod - def current_token(cls) -> object: - """ - Return an object that allows other threads to run code inside the event loop. - - :return: a token object, specific to the event loop running in the current - thread - """ - - @classmethod - @abstractmethod - def current_time(cls) -> float: - """ - Return the current value of the event loop's internal clock. - - :return: the clock value (seconds) - """ - - @classmethod - @abstractmethod - def cancelled_exception_class(cls) -> type[BaseException]: - """Return the exception class that is raised in a task if it's cancelled.""" - - @classmethod - @abstractmethod - async def checkpoint(cls) -> None: - """ - Check if the task has been cancelled, and allow rescheduling of other tasks. - - This is effectively the same as running :meth:`checkpoint_if_cancelled` and then - :meth:`cancel_shielded_checkpoint`. - """ - - @classmethod - async def checkpoint_if_cancelled(cls) -> None: - """ - Check if the current task group has been cancelled. - - This will check if the task has been cancelled, but will not allow other tasks - to be scheduled if not. - - """ - if cls.current_effective_deadline() == -math.inf: - await cls.checkpoint() - - @classmethod - async def cancel_shielded_checkpoint(cls) -> None: - """ - Allow the rescheduling of other tasks. - - This will give other tasks the opportunity to run, but without checking if the - current task group has been cancelled, unlike with :meth:`checkpoint`. - - """ - with cls.create_cancel_scope(shield=True): - await cls.sleep(0) - - @classmethod - @abstractmethod - async def sleep(cls, delay: float) -> None: - """ - Pause the current task for the specified duration. - - :param delay: the duration, in seconds - """ - - @classmethod - @abstractmethod - def create_cancel_scope( - cls, *, deadline: float = math.inf, shield: bool = False - ) -> CancelScope: - pass - - @classmethod - @abstractmethod - def current_effective_deadline(cls) -> float: - """ - Return the nearest deadline among all the cancel scopes effective for the - current task. - - :return: - - a clock value from the event loop's internal clock - - ``inf`` if there is no deadline in effect - - ``-inf`` if the current scope has been cancelled - :rtype: float - """ - - @classmethod - @abstractmethod - def create_task_group(cls) -> TaskGroup: - pass - - @classmethod - @abstractmethod - def create_event(cls) -> Event: - pass - - @classmethod - @abstractmethod - def create_lock(cls, *, fast_acquire: bool) -> Lock: - pass - - @classmethod - @abstractmethod - def create_semaphore( - cls, - initial_value: int, - *, - max_value: int | None = None, - fast_acquire: bool = False, - ) -> Semaphore: - pass - - @classmethod - @abstractmethod - def create_capacity_limiter(cls, total_tokens: float) -> CapacityLimiter: - pass - - @classmethod - @abstractmethod - async def run_sync_in_worker_thread( - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - abandon_on_cancel: bool = False, - limiter: CapacityLimiter | None = None, - ) -> T_Retval: - pass - - @classmethod - @abstractmethod - def check_cancelled(cls) -> None: - pass - - @classmethod - @abstractmethod - def run_async_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_co: - pass - - @classmethod - @abstractmethod - def run_sync_from_thread( - cls, - func: Callable[[Unpack[PosArgsT]], T_Retval], - args: tuple[Unpack[PosArgsT]], - token: object, - ) -> T_Retval: - pass - - @classmethod - @abstractmethod - async def open_process( - cls, - command: StrOrBytesPath | Sequence[StrOrBytesPath], - *, - stdin: int | IO[Any] | None, - stdout: int | IO[Any] | None, - stderr: int | IO[Any] | None, - **kwargs: Any, - ) -> Process: - pass - - @classmethod - @abstractmethod - def setup_process_pool_exit_at_shutdown(cls, workers: set[Process]) -> None: - pass - - @classmethod - @abstractmethod - async def connect_tcp( - cls, host: str, port: int, local_address: IPSockAddrType | None = None - ) -> SocketStream: - pass - - @classmethod - @abstractmethod - async def connect_unix(cls, path: str | bytes) -> UNIXSocketStream: - pass - - @classmethod - @abstractmethod - def create_tcp_listener(cls, sock: socket) -> SocketListener: - pass - - @classmethod - @abstractmethod - def create_unix_listener(cls, sock: socket) -> SocketListener: - pass - - @classmethod - @abstractmethod - async def create_udp_socket( - cls, - family: AddressFamily, - local_address: IPSockAddrType | None, - remote_address: IPSockAddrType | None, - reuse_port: bool, - ) -> UDPSocket | ConnectedUDPSocket: - pass - - @classmethod - @overload - async def create_unix_datagram_socket( - cls, raw_socket: socket, remote_path: None - ) -> UNIXDatagramSocket: ... - - @classmethod - @overload - async def create_unix_datagram_socket( - cls, raw_socket: socket, remote_path: str | bytes - ) -> ConnectedUNIXDatagramSocket: ... - - @classmethod - @abstractmethod - async def create_unix_datagram_socket( - cls, raw_socket: socket, remote_path: str | bytes | None - ) -> UNIXDatagramSocket | ConnectedUNIXDatagramSocket: - pass - - @classmethod - @abstractmethod - async def getaddrinfo( - cls, - host: bytes | str | None, - port: str | int | None, - *, - family: int | AddressFamily = 0, - type: int | SocketKind = 0, - proto: int = 0, - flags: int = 0, - ) -> Sequence[ - tuple[ - AddressFamily, - SocketKind, - int, - str, - tuple[str, int] | tuple[str, int, int, int] | tuple[int, bytes], - ] - ]: - pass - - @classmethod - @abstractmethod - async def getnameinfo( - cls, sockaddr: IPSockAddrType, flags: int = 0 - ) -> tuple[str, str]: - pass - - @classmethod - @abstractmethod - async def wait_readable(cls, obj: FileDescriptorLike) -> None: - pass - - @classmethod - @abstractmethod - async def wait_writable(cls, obj: FileDescriptorLike) -> None: - pass - - @classmethod - @abstractmethod - def notify_closing(cls, obj: FileDescriptorLike) -> None: - pass - - @classmethod - @abstractmethod - async def wrap_listener_socket(cls, sock: socket) -> SocketListener: - pass - - @classmethod - @abstractmethod - async def wrap_stream_socket(cls, sock: socket) -> SocketStream: - pass - - @classmethod - @abstractmethod - async def wrap_unix_stream_socket(cls, sock: socket) -> UNIXSocketStream: - pass - - @classmethod - @abstractmethod - async def wrap_udp_socket(cls, sock: socket) -> UDPSocket: - pass - - @classmethod - @abstractmethod - async def wrap_connected_udp_socket(cls, sock: socket) -> ConnectedUDPSocket: - pass - - @classmethod - @abstractmethod - async def wrap_unix_datagram_socket(cls, sock: socket) -> UNIXDatagramSocket: - pass - - @classmethod - @abstractmethod - async def wrap_connected_unix_datagram_socket( - cls, sock: socket - ) -> ConnectedUNIXDatagramSocket: - pass - - @classmethod - @abstractmethod - def current_default_thread_limiter(cls) -> CapacityLimiter: - pass - - @classmethod - @abstractmethod - def open_signal_receiver( - cls, *signals: Signals - ) -> AbstractContextManager[AsyncIterator[Signals]]: - pass - - @classmethod - @abstractmethod - def get_current_task(cls) -> TaskInfo: - pass - - @classmethod - @abstractmethod - def get_running_tasks(cls) -> Sequence[TaskInfo]: - pass - - @classmethod - @abstractmethod - async def wait_all_tasks_blocked(cls) -> None: - pass - - @classmethod - @abstractmethod - def create_test_runner(cls, options: dict[str, Any]) -> TestRunner: - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_resources.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_resources.py deleted file mode 100644 index 10df115..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_resources.py +++ /dev/null @@ -1,33 +0,0 @@ -from __future__ import annotations - -from abc import ABCMeta, abstractmethod -from types import TracebackType -from typing import TypeVar - -T = TypeVar("T") - - -class AsyncResource(metaclass=ABCMeta): - """ - Abstract base class for all closeable asynchronous resources. - - Works as an asynchronous context manager which returns the instance itself on enter, - and calls :meth:`aclose` on exit. - """ - - __slots__ = () - - async def __aenter__(self: T) -> T: - return self - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - await self.aclose() - - @abstractmethod - async def aclose(self) -> None: - """Close the resource.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_sockets.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_sockets.py deleted file mode 100644 index feb26bd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_sockets.py +++ /dev/null @@ -1,399 +0,0 @@ -from __future__ import annotations - -import errno -import socket -from abc import abstractmethod -from collections.abc import Callable, Collection, Mapping -from contextlib import AsyncExitStack -from io import IOBase -from ipaddress import IPv4Address, IPv6Address -from socket import AddressFamily -from typing import Any, TypeAlias, TypeVar - -from .._core._eventloop import get_async_backend -from .._core._typedattr import ( - TypedAttributeProvider, - TypedAttributeSet, - typed_attribute, -) -from ._streams import ByteStream, Listener, UnreliableObjectStream -from ._tasks import TaskGroup - -IPAddressType: TypeAlias = str | IPv4Address | IPv6Address -IPSockAddrType: TypeAlias = tuple[str, int] -SockAddrType: TypeAlias = IPSockAddrType | str -UDPPacketType: TypeAlias = tuple[bytes, IPSockAddrType] -UNIXDatagramPacketType: TypeAlias = tuple[bytes, str] -T_Retval = TypeVar("T_Retval") - - -def _validate_socket( - sock_or_fd: socket.socket | int, - sock_type: socket.SocketKind, - addr_family: socket.AddressFamily = socket.AF_UNSPEC, - *, - require_connected: bool = False, - require_bound: bool = False, -) -> socket.socket: - if isinstance(sock_or_fd, int): - try: - sock = socket.socket(fileno=sock_or_fd) - except OSError as exc: - if exc.errno == errno.ENOTSOCK: - raise ValueError( - "the file descriptor does not refer to a socket" - ) from exc - elif require_connected: - raise ValueError("the socket must be connected") from exc - elif require_bound: - raise ValueError("the socket must be bound to a local address") from exc - else: - raise - elif isinstance(sock_or_fd, socket.socket): - sock = sock_or_fd - else: - raise TypeError( - f"expected an int or socket, got {type(sock_or_fd).__qualname__} instead" - ) - - try: - if require_connected: - try: - sock.getpeername() - except OSError as exc: - raise ValueError("the socket must be connected") from exc - - if require_bound: - try: - if sock.family in (socket.AF_INET, socket.AF_INET6): - bound_addr = sock.getsockname()[1] - else: - bound_addr = sock.getsockname() - except OSError: - bound_addr = None - - if not bound_addr: - raise ValueError("the socket must be bound to a local address") - - if addr_family != socket.AF_UNSPEC and sock.family != addr_family: - raise ValueError( - f"address family mismatch: expected {addr_family.name}, got " - f"{sock.family.name}" - ) - - if sock.type != sock_type: - raise ValueError( - f"socket type mismatch: expected {sock_type.name}, got {sock.type.name}" - ) - except BaseException: - # Avoid ResourceWarning from the locally constructed socket object - if isinstance(sock_or_fd, int): - sock.detach() - - raise - - sock.setblocking(False) - return sock - - -class SocketAttribute(TypedAttributeSet): - """ - .. attribute:: family - :type: socket.AddressFamily - - the address family of the underlying socket - - .. attribute:: local_address - :type: tuple[str, int] | str - - the local address the underlying socket is connected to - - .. attribute:: local_port - :type: int - - for IP based sockets, the local port the underlying socket is bound to - - .. attribute:: raw_socket - :type: socket.socket - - the underlying stdlib socket object - - .. attribute:: remote_address - :type: tuple[str, int] | str - - the remote address the underlying socket is connected to - - .. attribute:: remote_port - :type: int - - for IP based sockets, the remote port the underlying socket is connected to - """ - - family: AddressFamily = typed_attribute() - local_address: SockAddrType = typed_attribute() - local_port: int = typed_attribute() - raw_socket: socket.socket = typed_attribute() - remote_address: SockAddrType = typed_attribute() - remote_port: int = typed_attribute() - - -class _SocketProvider(TypedAttributeProvider): - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - from .._core._sockets import convert_ipv6_sockaddr as convert - - attributes: dict[Any, Callable[[], Any]] = { - SocketAttribute.family: lambda: self._raw_socket.family, - SocketAttribute.local_address: lambda: convert( - self._raw_socket.getsockname() - ), - SocketAttribute.raw_socket: lambda: self._raw_socket, - } - try: - peername: tuple[str, int] | None = convert(self._raw_socket.getpeername()) - except OSError: - peername = None - - # Provide the remote address for connected sockets - if peername is not None: - attributes[SocketAttribute.remote_address] = lambda: peername - - # Provide local and remote ports for IP based sockets - if self._raw_socket.family in (AddressFamily.AF_INET, AddressFamily.AF_INET6): - attributes[SocketAttribute.local_port] = lambda: ( - self._raw_socket.getsockname()[1] - ) - if peername is not None: - remote_port = peername[1] - attributes[SocketAttribute.remote_port] = lambda: remote_port - - return attributes - - @property - @abstractmethod - def _raw_socket(self) -> socket.socket: - pass - - -class SocketStream(ByteStream, _SocketProvider): - """ - Transports bytes over a socket. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket(cls, sock_or_fd: socket.socket | int) -> SocketStream: - """ - Wrap an existing socket object or file descriptor as a socket stream. - - The newly created socket wrapper takes ownership of the socket being passed in. - The existing socket must already be connected. - - :param sock_or_fd: a socket object or file descriptor - :return: a socket stream - - """ - sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_connected=True) - return await get_async_backend().wrap_stream_socket(sock) - - -class UNIXSocketStream(SocketStream): - @classmethod - async def from_socket(cls, sock_or_fd: socket.socket | int) -> UNIXSocketStream: - """ - Wrap an existing socket object or file descriptor as a UNIX socket stream. - - The newly created socket wrapper takes ownership of the socket being passed in. - The existing socket must already be connected. - - :param sock_or_fd: a socket object or file descriptor - :return: a UNIX socket stream - - """ - sock = _validate_socket( - sock_or_fd, socket.SOCK_STREAM, socket.AF_UNIX, require_connected=True - ) - return await get_async_backend().wrap_unix_stream_socket(sock) - - @abstractmethod - async def send_fds(self, message: bytes, fds: Collection[int | IOBase]) -> None: - """ - Send file descriptors along with a message to the peer. - - :param message: a non-empty bytestring - :param fds: a collection of files (either numeric file descriptors or open file - or socket objects) - """ - - @abstractmethod - async def receive_fds(self, msglen: int, maxfds: int) -> tuple[bytes, list[int]]: - """ - Receive file descriptors along with a message from the peer. - - :param msglen: length of the message to expect from the peer - :param maxfds: maximum number of file descriptors to expect from the peer - :return: a tuple of (message, file descriptors) - """ - - -class SocketListener(Listener[SocketStream], _SocketProvider): - """ - Listens to incoming socket connections. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket( - cls, - sock_or_fd: socket.socket | int, - ) -> SocketListener: - """ - Wrap an existing socket object or file descriptor as a socket listener. - - The newly created listener takes ownership of the socket being passed in. - - :param sock_or_fd: a socket object or file descriptor - :return: a socket listener - - """ - sock = _validate_socket(sock_or_fd, socket.SOCK_STREAM, require_bound=True) - return await get_async_backend().wrap_listener_socket(sock) - - @abstractmethod - async def accept(self) -> SocketStream: - """Accept an incoming connection.""" - - async def serve( - self, - handler: Callable[[SocketStream], Any], - task_group: TaskGroup | None = None, - ) -> None: - from .. import create_task_group - - async with AsyncExitStack() as stack: - if task_group is None: - task_group = await stack.enter_async_context(create_task_group()) - - while True: - stream = await self.accept() - task_group.start_soon(handler, stream) - - -class UDPSocket(UnreliableObjectStream[UDPPacketType], _SocketProvider): - """ - Represents an unconnected UDP socket. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket(cls, sock_or_fd: socket.socket | int) -> UDPSocket: - """ - Wrap an existing socket object or file descriptor as a UDP socket. - - The newly created socket wrapper takes ownership of the socket being passed in. - The existing socket must be bound to a local address. - - :param sock_or_fd: a socket object or file descriptor - :return: a UDP socket - - """ - sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, require_bound=True) - return await get_async_backend().wrap_udp_socket(sock) - - async def sendto(self, data: bytes, host: str, port: int) -> None: - """ - Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, (host, port))). - - """ - return await self.send((data, (host, port))) - - -class ConnectedUDPSocket(UnreliableObjectStream[bytes], _SocketProvider): - """ - Represents an connected UDP socket. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket(cls, sock_or_fd: socket.socket | int) -> ConnectedUDPSocket: - """ - Wrap an existing socket object or file descriptor as a connected UDP socket. - - The newly created socket wrapper takes ownership of the socket being passed in. - The existing socket must already be connected. - - :param sock_or_fd: a socket object or file descriptor - :return: a connected UDP socket - - """ - sock = _validate_socket( - sock_or_fd, - socket.SOCK_DGRAM, - require_connected=True, - ) - return await get_async_backend().wrap_connected_udp_socket(sock) - - -class UNIXDatagramSocket( - UnreliableObjectStream[UNIXDatagramPacketType], _SocketProvider -): - """ - Represents an unconnected Unix datagram socket. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket( - cls, - sock_or_fd: socket.socket | int, - ) -> UNIXDatagramSocket: - """ - Wrap an existing socket object or file descriptor as a UNIX datagram - socket. - - The newly created socket wrapper takes ownership of the socket being passed in. - - :param sock_or_fd: a socket object or file descriptor - :return: a UNIX datagram socket - - """ - sock = _validate_socket(sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX) - return await get_async_backend().wrap_unix_datagram_socket(sock) - - async def sendto(self, data: bytes, path: str) -> None: - """Alias for :meth:`~.UnreliableObjectSendStream.send` ((data, path)).""" - return await self.send((data, path)) - - -class ConnectedUNIXDatagramSocket(UnreliableObjectStream[bytes], _SocketProvider): - """ - Represents a connected Unix datagram socket. - - Supports all relevant extra attributes from :class:`~SocketAttribute`. - """ - - @classmethod - async def from_socket( - cls, - sock_or_fd: socket.socket | int, - ) -> ConnectedUNIXDatagramSocket: - """ - Wrap an existing socket object or file descriptor as a connected UNIX datagram - socket. - - The newly created socket wrapper takes ownership of the socket being passed in. - The existing socket must already be connected. - - :param sock_or_fd: a socket object or file descriptor - :return: a connected UNIX datagram socket - - """ - sock = _validate_socket( - sock_or_fd, socket.SOCK_DGRAM, socket.AF_UNIX, require_connected=True - ) - return await get_async_backend().wrap_connected_unix_datagram_socket(sock) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_streams.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_streams.py deleted file mode 100644 index 186e3f5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_streams.py +++ /dev/null @@ -1,233 +0,0 @@ -from __future__ import annotations - -from abc import ABCMeta, abstractmethod -from collections.abc import Callable -from typing import Any, Generic, TypeAlias, TypeVar - -from .._core._exceptions import EndOfStream -from .._core._typedattr import TypedAttributeProvider -from ._resources import AsyncResource -from ._tasks import TaskGroup - -T_Item = TypeVar("T_Item") -T_co = TypeVar("T_co", covariant=True) -T_contra = TypeVar("T_contra", contravariant=True) - - -class UnreliableObjectReceiveStream( - Generic[T_co], AsyncResource, TypedAttributeProvider -): - """ - An interface for receiving objects. - - This interface makes no guarantees that the received messages arrive in the order in - which they were sent, or that no messages are missed. - - Asynchronously iterating over objects of this type will yield objects matching the - given type parameter. - """ - - def __aiter__(self) -> UnreliableObjectReceiveStream[T_co]: - return self - - async def __anext__(self) -> T_co: - try: - return await self.receive() - except EndOfStream: - raise StopAsyncIteration from None - - @abstractmethod - async def receive(self) -> T_co: - """ - Receive the next item. - - :raises ~anyio.ClosedResourceError: if the receive stream has been explicitly - closed - :raises ~anyio.EndOfStream: if this stream has been closed from the other end - :raises ~anyio.BrokenResourceError: if this stream has been rendered unusable - due to external causes - """ - - -class UnreliableObjectSendStream( - Generic[T_contra], AsyncResource, TypedAttributeProvider -): - """ - An interface for sending objects. - - This interface makes no guarantees that the messages sent will reach the - recipient(s) in the same order in which they were sent, or at all. - """ - - @abstractmethod - async def send(self, item: T_contra) -> None: - """ - Send an item to the peer(s). - - :param item: the item to send - :raises ~anyio.ClosedResourceError: if the send stream has been explicitly - closed - :raises ~anyio.BrokenResourceError: if this stream has been rendered unusable - due to external causes - """ - - -class UnreliableObjectStream( - UnreliableObjectReceiveStream[T_Item], UnreliableObjectSendStream[T_Item] -): - """ - A bidirectional message stream which does not guarantee the order or reliability of - message delivery. - """ - - -class ObjectReceiveStream(UnreliableObjectReceiveStream[T_co]): - """ - A receive message stream which guarantees that messages are received in the same - order in which they were sent, and that no messages are missed. - """ - - -class ObjectSendStream(UnreliableObjectSendStream[T_contra]): - """ - A send message stream which guarantees that messages are delivered in the same order - in which they were sent, without missing any messages in the middle. - """ - - -class ObjectStream( - ObjectReceiveStream[T_Item], - ObjectSendStream[T_Item], - UnreliableObjectStream[T_Item], -): - """ - A bidirectional message stream which guarantees the order and reliability of message - delivery. - """ - - @abstractmethod - async def send_eof(self) -> None: - """ - Send an end-of-file indication to the peer. - - You should not try to send any further data to this stream after calling this - method. This method is idempotent (does nothing on successive calls). - """ - - -class ByteReceiveStream(AsyncResource, TypedAttributeProvider): - """ - An interface for receiving bytes from a single peer. - - Iterating this byte stream will yield a byte string of arbitrary length, but no more - than 65536 bytes. - """ - - def __aiter__(self) -> ByteReceiveStream: - return self - - async def __anext__(self) -> bytes: - try: - return await self.receive() - except EndOfStream: - raise StopAsyncIteration from None - - @abstractmethod - async def receive(self, max_bytes: int = 65536) -> bytes: - """ - Receive at most ``max_bytes`` bytes from the peer. - - .. note:: Implementers of this interface should not return an empty - :class:`bytes` object, and users should ignore them. - - :param max_bytes: maximum number of bytes to receive - :return: the received bytes - :raises ~anyio.EndOfStream: if this stream has been closed from the other end - """ - - -class ByteSendStream(AsyncResource, TypedAttributeProvider): - """An interface for sending bytes to a single peer.""" - - @abstractmethod - async def send(self, item: bytes) -> None: - """ - Send the given bytes to the peer. - - :param item: the bytes to send - """ - - -class ByteStream(ByteReceiveStream, ByteSendStream): - """A bidirectional byte stream.""" - - @abstractmethod - async def send_eof(self) -> None: - """ - Send an end-of-file indication to the peer. - - You should not try to send any further data to this stream after calling this - method. This method is idempotent (does nothing on successive calls). - """ - - -#: Type alias for all unreliable bytes-oriented receive streams. -AnyUnreliableByteReceiveStream: TypeAlias = ( - UnreliableObjectReceiveStream[bytes] | ByteReceiveStream -) -#: Type alias for all unreliable bytes-oriented send streams. -AnyUnreliableByteSendStream: TypeAlias = ( - UnreliableObjectSendStream[bytes] | ByteSendStream -) -#: Type alias for all unreliable bytes-oriented streams. -AnyUnreliableByteStream: TypeAlias = UnreliableObjectStream[bytes] | ByteStream -#: Type alias for all bytes-oriented receive streams. -AnyByteReceiveStream: TypeAlias = ObjectReceiveStream[bytes] | ByteReceiveStream -#: Type alias for all bytes-oriented send streams. -AnyByteSendStream: TypeAlias = ObjectSendStream[bytes] | ByteSendStream -#: Type alias for all bytes-oriented streams. -AnyByteStream: TypeAlias = ObjectStream[bytes] | ByteStream - - -class Listener(Generic[T_co], AsyncResource, TypedAttributeProvider): - """An interface for objects that let you accept incoming connections.""" - - @abstractmethod - async def serve( - self, handler: Callable[[T_co], Any], task_group: TaskGroup | None = None - ) -> None: - """ - Accept incoming connections as they come in and start tasks to handle them. - - :param handler: a callable that will be used to handle each accepted connection - :param task_group: the task group that will be used to start tasks for handling - each accepted connection (if omitted, an ad-hoc task group will be created) - """ - - -class ObjectStreamConnectable(Generic[T_co], metaclass=ABCMeta): - @abstractmethod - async def connect(self) -> ObjectStream[T_co]: - """ - Connect to the remote endpoint. - - :return: an object stream connected to the remote end - :raises ConnectionFailed: if the connection fails - """ - - -class ByteStreamConnectable(metaclass=ABCMeta): - @abstractmethod - async def connect(self) -> ByteStream: - """ - Connect to the remote endpoint. - - :return: a bytestream connected to the remote end - :raises ConnectionFailed: if the connection fails - """ - - -#: Type alias for all connectables returning bytestreams or bytes-oriented object streams -AnyByteStreamConnectable: TypeAlias = ( - ObjectStreamConnectable[bytes] | ByteStreamConnectable -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_subprocesses.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_subprocesses.py deleted file mode 100644 index ce0564c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_subprocesses.py +++ /dev/null @@ -1,79 +0,0 @@ -from __future__ import annotations - -from abc import abstractmethod -from signal import Signals - -from ._resources import AsyncResource -from ._streams import ByteReceiveStream, ByteSendStream - - -class Process(AsyncResource): - """An asynchronous version of :class:`subprocess.Popen`.""" - - @abstractmethod - async def wait(self) -> int: - """ - Wait until the process exits. - - :return: the exit code of the process - """ - - @abstractmethod - def terminate(self) -> None: - """ - Terminates the process, gracefully if possible. - - On Windows, this calls ``TerminateProcess()``. - On POSIX systems, this sends ``SIGTERM`` to the process. - - .. seealso:: :meth:`subprocess.Popen.terminate` - """ - - @abstractmethod - def kill(self) -> None: - """ - Kills the process. - - On Windows, this calls ``TerminateProcess()``. - On POSIX systems, this sends ``SIGKILL`` to the process. - - .. seealso:: :meth:`subprocess.Popen.kill` - """ - - @abstractmethod - def send_signal(self, signal: Signals) -> None: - """ - Send a signal to the subprocess. - - .. seealso:: :meth:`subprocess.Popen.send_signal` - - :param signal: the signal number (e.g. :data:`signal.SIGHUP`) - """ - - @property - @abstractmethod - def pid(self) -> int: - """The process ID of the process.""" - - @property - @abstractmethod - def returncode(self) -> int | None: - """ - The return code of the process. If the process has not yet terminated, this will - be ``None``. - """ - - @property - @abstractmethod - def stdin(self) -> ByteSendStream | None: - """The stream for the standard input of the process.""" - - @property - @abstractmethod - def stdout(self) -> ByteReceiveStream | None: - """The stream for the standard output of the process.""" - - @property - @abstractmethod - def stderr(self) -> ByteReceiveStream | None: - """The stream for the standard error output of the process.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_tasks.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_tasks.py deleted file mode 100644 index 44ee3a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_tasks.py +++ /dev/null @@ -1,209 +0,0 @@ -from __future__ import annotations - -import sys -from abc import ABCMeta, abstractmethod -from collections.abc import Callable, Coroutine -from contextvars import Context -from types import TracebackType -from typing import TYPE_CHECKING, Any, Literal, Protocol, final, overload - -if sys.version_info >= (3, 13): - from typing import TypeVar -else: - from typing_extensions import TypeVar - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -if TYPE_CHECKING: - from .._core._tasks import CancelScope, TaskHandle - -T_co = TypeVar("T_co", covariant=True) -T_contra = TypeVar("T_contra", contravariant=True, default=None) -PosArgsT = TypeVarTuple("PosArgsT") - - -def get_callable_name(func: Callable, override: object = None) -> str: - if override is not None: - return str(override) - - module = getattr(func, "__module__", None) - qualname = getattr(func, "__qualname__", None) - return ".".join([x for x in (module, qualname) if x]) - - -def call_for_coroutine( - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - args: tuple[Unpack[PosArgsT]], - **kwargs: Any, -) -> Coroutine[Any, Any, T_co]: - """ - Call the given function with the given positional and keyword arguments. - - :return: the resulting coroutine - :raises TypeError: if the return value was not a coroutine object - - """ - coro = func(*args, **kwargs) - if not isinstance(coro, Coroutine): - prefix = f"{func.__module__}." if hasattr(func, "__module__") else "" - raise TypeError( - f"Expected {prefix}{func.__qualname__}() to return a coroutine, but " - f"the return value ({coro!r}) is not a coroutine object" - ) - - return coro - - -class TaskStatus(Protocol[T_contra]): - @overload - def started(self: TaskStatus[None]) -> None: ... - - @overload - def started(self, value: T_contra) -> None: ... - - def started(self, value: T_contra | None = None) -> None: - """ - Signal that the task has started. - - :param value: object passed back to the starter of the task - """ - - -class TaskGroup(metaclass=ABCMeta): - """ - Groups several asynchronous tasks together. - - :ivar cancel_scope: the cancel scope inherited by all child tasks - :vartype cancel_scope: CancelScope - - .. note:: On asyncio, support for eager task factories is considered to be - **experimental**. In particular, they don't follow the usual semantics of new - tasks being scheduled on the next iteration of the event loop, and may thus - cause unexpected behavior in code that wasn't written with such semantics in - mind. - """ - - cancel_scope: CancelScope - - def cancel(self, reason: str | None = None) -> None: - """ - Cancel this task group's cancel scope immediately. - - This is a shortcut for calling ``.cancel_scope.cancel()`` on the task group. - - :param reason: a message describing the reason for the cancellation - - .. versionadded:: 4.14.0 - - """ - self.cancel_scope.cancel(reason) - - @abstractmethod - def create_task( - self, - coro: Coroutine[Any, Any, T_co], - *, - name: object = None, - context: Context | None = None, - ) -> TaskHandle[T_co]: - """ - Create a new task from a coroutine object and schedule it to run. - - :param coro: a coroutine object - :param name: optional name to give the task - :param context: optional context to run the task in - :return: a task handle - - .. versionadded:: 4.14.0 - """ - - @final - def start_soon( - self, - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - *args: Unpack[PosArgsT], - name: object = None, - ) -> TaskHandle[T_co]: - """ - Start a new task in this task group. - - :param func: a coroutine function - :param args: positional arguments to call the function with - :param name: name of the task, for the purposes of introspection and debugging - :return: a task handle - - .. versionadded:: 3.0 - .. versionchanged:: 4.14.0 - This method now returns a task handle. - - """ - final_name = get_callable_name(func, name) - return self.create_task(call_for_coroutine(func, args), name=final_name) - - @overload - async def start( - self, - func: Callable[..., Coroutine[Any, Any, T_co]], - *args: object, - name: object = None, - return_handle: Literal[False] = ..., - ) -> Any: ... - - @overload - async def start( - self, - func: Callable[..., Coroutine[Any, Any, T_co]], - *args: object, - name: object = None, - return_handle: Literal[True], - ) -> TaskHandle[T_co, Any]: ... - - @abstractmethod - async def start( - self, - func: Callable[..., Coroutine[Any, Any, T_co]], - *args: object, - name: object = None, - return_handle: Literal[False] | Literal[True] = False, - ) -> Any: - """ - Start a new task and wait until it signals for readiness. - - The target callable must accept a keyword argument ``task_status`` (of type - :class:`TaskStatus`). Awaiting on this method will return whatever was passed to - ``task_status.started()`` (``None`` by default). - - .. note:: The :class:`TaskStatus` class is generic, and the type argument should - indicate the type of the value that will be passed to - ``task_status.started()``. - - :param func: a coroutine function that accepts the ``task_status`` keyword - argument - :param args: positional arguments to call the function with - :param name: an optional name for the task, for introspection and debugging - :param return_handle: if ``True``, return a :class:`TaskHandle` which also - contains the start value in ``start_value`` - :return: the value passed to ``task_status.started()`` - :raises RuntimeError: if the task finishes without calling - ``task_status.started()`` - - .. seealso:: :ref:`start_initialize` - - .. versionadded:: 3.0 - """ - - @abstractmethod - async def __aenter__(self) -> TaskGroup: - """Enter the task group context and allow starting new tasks.""" - - @abstractmethod - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - """Exit the task group context waiting for all tasks to finish.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_testing.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_testing.py deleted file mode 100644 index 2a93fb7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/abc/_testing.py +++ /dev/null @@ -1,73 +0,0 @@ -from __future__ import annotations - -import types -from abc import ABCMeta, abstractmethod -from collections.abc import AsyncGenerator, Callable, Coroutine, Iterable -from typing import Any, TypeVar - -_T = TypeVar("_T") - - -class TestRunner(metaclass=ABCMeta): - """ - Encapsulates a running event loop. Every call made through this object will use the - same event loop. - """ - - def __enter__(self) -> TestRunner: - return self - - @abstractmethod - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: types.TracebackType | None, - ) -> bool | None: ... - - @abstractmethod - def run_asyncgen_fixture( - self, - fixture_func: Callable[..., AsyncGenerator[_T, Any]], - kwargs: dict[str, Any], - ) -> Iterable[_T]: - """ - Run an async generator fixture. - - :param fixture_func: the fixture function - :param kwargs: keyword arguments to call the fixture function with - :return: an iterator yielding the value yielded from the async generator - """ - - @abstractmethod - def run_fixture( - self, - fixture_func: Callable[..., Coroutine[Any, Any, _T]], - kwargs: dict[str, Any], - ) -> _T: - """ - Run an async fixture. - - :param fixture_func: the fixture function - :param kwargs: keyword arguments to call the fixture function with - :return: the return value of the fixture function - """ - - @abstractmethod - def run_test( - self, test_func: Callable[..., Coroutine[Any, Any, Any]], kwargs: dict[str, Any] - ) -> None: - """ - Run an async test function. - - :param test_func: the test function - :param kwargs: keyword arguments to call the test function with - """ - - @abstractmethod - def is_running(self) -> bool: - """ - Check if the test runner is running. - - :return: ``True`` if the coroutine is currently being run, ``False`` otherwise. - """ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/from_thread.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/from_thread.py deleted file mode 100644 index 8c7914c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/from_thread.py +++ /dev/null @@ -1,582 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "BlockingPortal", - "BlockingPortalProvider", - "check_cancelled", - "run", - "run_sync", - "start_blocking_portal", -) - -import sys -from collections.abc import Awaitable, Callable, Coroutine, Generator -from concurrent.futures import Future -from contextlib import ( - AbstractAsyncContextManager, - AbstractContextManager, - contextmanager, -) -from dataclasses import dataclass, field -from functools import partial -from inspect import isawaitable -from threading import Lock, Thread, current_thread, get_ident -from types import TracebackType -from typing import ( - Any, - Generic, - TypeVar, - cast, - overload, -) - -from ._core._eventloop import ( - get_cancelled_exc_class, - threadlocals, -) -from ._core._eventloop import run as run_eventloop -from ._core._exceptions import NoEventLoopError -from ._core._synchronization import Event -from ._core._tasks import CancelScope, create_task_group -from .abc._tasks import TaskStatus -from .lowlevel import EventLoopToken, current_token - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -T_Retval = TypeVar("T_Retval") -T_co = TypeVar("T_co", covariant=True) -PosArgsT = TypeVarTuple("PosArgsT") - - -def _token_or_error(token: EventLoopToken | None) -> EventLoopToken: - if token is not None: - return token - - try: - return threadlocals.current_token - except AttributeError: - raise NoEventLoopError( - "Not running inside an AnyIO worker thread, and no event loop token was " - "provided" - ) from None - - -def run( - func: Callable[[Unpack[PosArgsT]], Coroutine[Any, Any, T_co]], - *args: Unpack[PosArgsT], - token: EventLoopToken | None = None, -) -> T_co: - """ - Call a coroutine function from a worker thread. - - :param func: a coroutine function - :param args: positional arguments for the callable - :param token: an event loop token to use to get back to the event loop thread - (required if calling this function from outside an AnyIO worker thread) - :return: the return value of the coroutine function - :raises MissingTokenError: if no token was provided and called from outside an - AnyIO worker thread - :raises RunFinishedError: if the event loop tied to ``token`` is no longer running - - .. versionchanged:: 4.11.0 - Added the ``token`` parameter. - - """ - explicit_token = token is not None - token = _token_or_error(token) - return token.backend_class.run_async_from_thread( - func, args, token=token.native_token if explicit_token else None - ) - - -def run_sync( - func: Callable[[Unpack[PosArgsT]], T_Retval], - *args: Unpack[PosArgsT], - token: EventLoopToken | None = None, -) -> T_Retval: - """ - Call a function in the event loop thread from a worker thread. - - :param func: a callable - :param args: positional arguments for the callable - :param token: an event loop token to use to get back to the event loop thread - (required if calling this function from outside an AnyIO worker thread) - :return: the return value of the callable - :raises MissingTokenError: if no token was provided and called from outside an - AnyIO worker thread - :raises RunFinishedError: if the event loop tied to ``token`` is no longer running - - .. versionchanged:: 4.11.0 - Added the ``token`` parameter. - - """ - explicit_token = token is not None - token = _token_or_error(token) - return token.backend_class.run_sync_from_thread( - func, args, token=token.native_token if explicit_token else None - ) - - -class _BlockingAsyncContextManager(Generic[T_co], AbstractContextManager): - _enter_future: Future[T_co] - _exit_future: Future[bool | None] - _exit_event: Event - _exit_exc_info: tuple[ - type[BaseException] | None, BaseException | None, TracebackType | None - ] = (None, None, None) - - def __init__( - self, async_cm: AbstractAsyncContextManager[T_co], portal: BlockingPortal - ): - self._async_cm = async_cm - self._portal = portal - - async def run_async_cm(self) -> bool | None: - try: - self._exit_event = Event() - value = await self._async_cm.__aenter__() - except BaseException as exc: - self._enter_future.set_exception(exc) - raise - else: - self._enter_future.set_result(value) - - try: - # Wait for the sync context manager to exit. - # This next statement can raise `get_cancelled_exc_class()` if - # something went wrong in a task group in this async context - # manager. - await self._exit_event.wait() - finally: - # In case of cancellation, it could be that we end up here before - # `_BlockingAsyncContextManager.__exit__` is called, and an - # `_exit_exc_info` has been set. - result = await self._async_cm.__aexit__(*self._exit_exc_info) - - return result - - def __enter__(self) -> T_co: - self._enter_future = Future() - self._exit_future = self._portal.start_task_soon(self.run_async_cm) - return self._enter_future.result() - - def __exit__( - self, - __exc_type: type[BaseException] | None, - __exc_value: BaseException | None, - __traceback: TracebackType | None, - ) -> bool | None: - self._exit_exc_info = __exc_type, __exc_value, __traceback - self._portal.call(self._exit_event.set) - return self._exit_future.result() - - -class _BlockingPortalTaskStatus(TaskStatus): - def __init__(self, future: Future): - self._future = future - - def started(self, value: object = None) -> None: - self._future.set_result(value) - - -class BlockingPortal: - """ - An object that lets external threads run code in an asynchronous event loop. - - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - """ - - def __init__(self) -> None: - self._token = current_token() - self._event_loop_thread_id: int | None = get_ident() - self._stop_event = Event() - self._task_group = create_task_group() - - async def __aenter__(self) -> BlockingPortal: - await self._task_group.__aenter__() - return self - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> bool: - await self.stop() - return await self._task_group.__aexit__(exc_type, exc_val, exc_tb) - - def _check_running(self) -> None: - if self._event_loop_thread_id is None: - raise RuntimeError("This portal is not running") - if self._event_loop_thread_id == get_ident(): - raise RuntimeError( - "This method cannot be called from the event loop thread" - ) - - async def sleep_until_stopped(self) -> None: - """Sleep until :meth:`stop` is called.""" - await self._stop_event.wait() - - async def stop(self, cancel_remaining: bool = False) -> None: - """ - Signal the portal to shut down. - - This marks the portal as no longer accepting new calls and exits from - :meth:`sleep_until_stopped`. - - :param cancel_remaining: ``True`` to cancel all the remaining tasks, ``False`` - to let them finish before returning - - """ - self._event_loop_thread_id = None - self._stop_event.set() - if cancel_remaining: - self._task_group.cancel_scope.cancel("the blocking portal is shutting down") - - async def _call_func( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], - args: tuple[Unpack[PosArgsT]], - kwargs: dict[str, Any], - future: Future[T_Retval], - ) -> None: - event_loop_thread_id = self._event_loop_thread_id - - def callback(f: Future[T_Retval]) -> None: - if f.cancelled(): - if event_loop_thread_id == get_ident(): - scope.cancel("the future was cancelled") - elif event_loop_thread_id is not None: - run_sync( - scope.cancel, "the future was cancelled", token=self._token - ) - - try: - retval_or_awaitable = func(*args, **kwargs) - if isawaitable(retval_or_awaitable): - with CancelScope() as scope: - future.add_done_callback(callback) - retval = await retval_or_awaitable - else: - retval = retval_or_awaitable - except get_cancelled_exc_class(): - future.cancel() - future.set_running_or_notify_cancel() - except BaseException as exc: - if not future.cancelled(): - future.set_exception(exc) - - # Let base exceptions fall through - if not isinstance(exc, Exception): - raise - else: - if not future.cancelled(): - future.set_result(retval) - finally: - scope = None # type: ignore[assignment] - - def _spawn_task_from_thread( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], - args: tuple[Unpack[PosArgsT]], - kwargs: dict[str, Any], - name: object, - future: Future[T_Retval], - ) -> None: - """ - Spawn a new task using the given callable. - - :param func: a callable - :param args: positional arguments to be passed to the callable - :param kwargs: keyword arguments to be passed to the callable - :param name: name of the task (will be coerced to a string if not ``None``) - :param future: a future that will resolve to the return value of the callable, - or the exception raised during its execution - - """ - run_sync( - partial(self._task_group.start_soon, name=name), - self._call_func, - func, - args, - kwargs, - future, - token=self._token, - ) - - @overload - def call( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - *args: Unpack[PosArgsT], - ) -> T_Retval: ... - - @overload - def call( - self, func: Callable[[Unpack[PosArgsT]], T_Retval], *args: Unpack[PosArgsT] - ) -> T_Retval: ... - - def call( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], - *args: Unpack[PosArgsT], - ) -> T_Retval: - """ - Call the given function in the event loop thread. - - If the callable returns a coroutine object, it is awaited on. - - :param func: any callable - :raises RuntimeError: if the portal is not running or if this method is called - from within the event loop thread - - """ - return cast(T_Retval, self.start_task_soon(func, *args).result()) - - @overload - def start_task_soon( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]], - *args: Unpack[PosArgsT], - name: object = None, - ) -> Future[T_Retval]: ... - - @overload - def start_task_soon( - self, - func: Callable[[Unpack[PosArgsT]], T_Retval], - *args: Unpack[PosArgsT], - name: object = None, - ) -> Future[T_Retval]: ... - - def start_task_soon( - self, - func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval] | T_Retval], - *args: Unpack[PosArgsT], - name: object = None, - ) -> Future[T_Retval]: - """ - Start a task in the portal's task group. - - The task will be run inside a cancel scope which can be cancelled by cancelling - the returned future. - - :param func: the target function - :param args: positional arguments passed to ``func`` - :param name: name of the task (will be coerced to a string if not ``None``) - :return: a future that resolves with the return value of the callable if the - task completes successfully, or with the exception raised in the task - :raises RuntimeError: if the portal is not running or if this method is called - from within the event loop thread - :rtype: concurrent.futures.Future[T_Retval] - - .. versionadded:: 3.0 - - """ - self._check_running() - f: Future[T_Retval] = Future() - self._spawn_task_from_thread(func, args, {}, name, f) - return f - - def start_task( - self, - func: Callable[..., Awaitable[T_Retval]], - *args: object, - name: object = None, - ) -> tuple[Future[T_Retval], Any]: - """ - Start a task in the portal's task group and wait until it signals for readiness. - - This method works the same way as :meth:`.abc.TaskGroup.start`. - - :param func: the target function - :param args: positional arguments passed to ``func`` - :param name: name of the task (will be coerced to a string if not ``None``) - :return: a tuple of (future, task_status_value) where the ``task_status_value`` - is the value passed to ``task_status.started()`` from within the target - function - :rtype: tuple[concurrent.futures.Future[T_Retval], Any] - - .. versionadded:: 3.0 - - """ - - def task_done(future: Future[T_Retval]) -> None: - if not task_status_future.done(): - if future.cancelled(): - task_status_future.cancel() - elif future.exception(): - task_status_future.set_exception(future.exception()) - else: - exc = RuntimeError( - "Task exited without calling task_status.started()" - ) - task_status_future.set_exception(exc) - - self._check_running() - task_status_future: Future = Future() - task_status = _BlockingPortalTaskStatus(task_status_future) - f: Future = Future() - f.add_done_callback(task_done) - self._spawn_task_from_thread(func, args, {"task_status": task_status}, name, f) - return f, task_status_future.result() - - def wrap_async_context_manager( - self, cm: AbstractAsyncContextManager[T_co] - ) -> AbstractContextManager[T_co]: - """ - Wrap an async context manager as a synchronous context manager via this portal. - - Spawns a task that will call both ``__aenter__()`` and ``__aexit__()``, stopping - in the middle until the synchronous context manager exits. - - :param cm: an asynchronous context manager - :return: a synchronous context manager - - .. versionadded:: 2.1 - - """ - return _BlockingAsyncContextManager(cm, self) - - -@dataclass -class BlockingPortalProvider: - """ - A manager for a blocking portal. Used as a context manager. The first thread to - enter this context manager causes a blocking portal to be started with the specific - parameters, and the last thread to exit causes the portal to be shut down. Thus, - there will be exactly one blocking portal running in this context as long as at - least one thread has entered this context manager. - - The parameters are the same as for :func:`~anyio.run`. - - :param backend: name of the backend - :param backend_options: backend options - - .. versionadded:: 4.4 - """ - - backend: str = "asyncio" - backend_options: dict[str, Any] | None = None - _lock: Lock = field(init=False, default_factory=Lock) - _leases: int = field(init=False, default=0) - _portal: BlockingPortal = field(init=False) - _portal_cm: AbstractContextManager[BlockingPortal] | None = field( - init=False, default=None - ) - - def __enter__(self) -> BlockingPortal: - with self._lock: - if self._portal_cm is None: - self._portal_cm = start_blocking_portal( - self.backend, self.backend_options - ) - self._portal = self._portal_cm.__enter__() - - self._leases += 1 - return self._portal - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - portal_cm: AbstractContextManager[BlockingPortal] | None = None - with self._lock: - assert self._portal_cm - assert self._leases > 0 - self._leases -= 1 - if not self._leases: - portal_cm = self._portal_cm - self._portal_cm = None - del self._portal - - if portal_cm: - portal_cm.__exit__(None, None, None) - - -@contextmanager -def start_blocking_portal( - backend: str = "asyncio", - backend_options: dict[str, Any] | None = None, - *, - name: str | None = None, -) -> Generator[BlockingPortal, Any, None]: - """ - Start a new event loop in a new thread and run a blocking portal in its main task. - - The parameters are the same as for :func:`~anyio.run`. - - :param backend: name of the backend - :param backend_options: backend options - :param name: name of the thread - :return: a context manager that yields a blocking portal - - .. versionchanged:: 3.0 - Usage as a context manager is now required. - - """ - - async def run_portal() -> None: - async with BlockingPortal() as portal_: - if name is None: - current_thread().name = f"{backend}-portal-{id(portal_):x}" - - future.set_result(portal_) - await portal_.sleep_until_stopped() - - def run_blocking_portal() -> None: - if future.set_running_or_notify_cancel(): - try: - run_eventloop( - run_portal, backend=backend, backend_options=backend_options - ) - except BaseException as exc: - if not future.done(): - future.set_exception(exc) - - future: Future[BlockingPortal] = Future() - thread = Thread(target=run_blocking_portal, daemon=True, name=name) - thread.start() - try: - cancel_remaining_tasks = False - portal = future.result() - try: - yield portal - except BaseException: - cancel_remaining_tasks = True - raise - finally: - try: - portal.call(portal.stop, cancel_remaining_tasks) - except RuntimeError: - pass - finally: - thread.join() - - -def check_cancelled() -> None: - """ - Check if the cancel scope of the host task's running the current worker thread has - been cancelled. - - If the host task's current cancel scope has indeed been cancelled, the - backend-specific cancellation exception will be raised. - - :raises RuntimeError: if the current thread was not spawned by - :func:`.to_thread.run_sync` - - """ - try: - token: EventLoopToken = threadlocals.current_token - except AttributeError: - raise NoEventLoopError( - "This function can only be called inside an AnyIO worker thread" - ) from None - - token.backend_class.check_cancelled() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/functools.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/functools.py deleted file mode 100644 index b0bdfb4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/functools.py +++ /dev/null @@ -1,400 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "AsyncCacheInfo", - "AsyncCacheParameters", - "AsyncLRUCacheWrapper", - "cache", - "lru_cache", - "reduce", -) - -import functools -from collections import OrderedDict -from collections.abc import ( - AsyncIterable, - Awaitable, - Callable, - Coroutine, - Hashable, - Iterable, -) -from functools import update_wrapper -from inspect import iscoroutinefunction -from typing import ( - Any, - Generic, - NamedTuple, - ParamSpec, - TypedDict, - TypeVar, - cast, - final, - overload, -) -from weakref import WeakKeyDictionary - -from ._core._eventloop import current_time -from ._core._synchronization import Lock -from .lowlevel import RunVar, checkpoint - -T = TypeVar("T") -S = TypeVar("S") -P = ParamSpec("P") -lru_cache_items: RunVar[ - WeakKeyDictionary[ - AsyncLRUCacheWrapper[Any, Any], - OrderedDict[ - Hashable, - tuple[_InitialMissingType, Lock, float | None] - | tuple[Any, None, float | None], - ], - ] -] = RunVar("lru_cache_items") - - -class _InitialMissingType: - pass - - -initial_missing: _InitialMissingType = _InitialMissingType() - - -class AsyncCacheInfo(NamedTuple): - hits: int - misses: int - maxsize: int | None - currsize: int - ttl: int | None - - -class AsyncCacheParameters(TypedDict): - maxsize: int | None - typed: bool - always_checkpoint: bool - ttl: int | None - - -class _LRUMethodWrapper(Generic[T]): - def __init__(self, wrapper: AsyncLRUCacheWrapper[..., T], instance: object): - self.__wrapper = wrapper - self.__instance = instance - - def cache_info(self) -> AsyncCacheInfo: - return self.__wrapper.cache_info() - - def cache_parameters(self) -> AsyncCacheParameters: - return self.__wrapper.cache_parameters() - - def cache_clear(self) -> None: - self.__wrapper.cache_clear() - - async def __call__(self, *args: Any, **kwargs: Any) -> T: - if self.__instance is None: - return await self.__wrapper(*args, **kwargs) - - return await self.__wrapper(self.__instance, *args, **kwargs) - - -@final -class AsyncLRUCacheWrapper(Generic[P, T]): - def __init__( - self, - func: Callable[P, Awaitable[T]], - maxsize: int | None, - typed: bool, - always_checkpoint: bool, - ttl: int | None, - ): - self.__wrapped__ = func - self._hits: int = 0 - self._misses: int = 0 - self._maxsize = max(maxsize, 0) if maxsize is not None else None - self._currsize: int = 0 - self._typed = typed - self._always_checkpoint = always_checkpoint - self._ttl = ttl - update_wrapper(self, func) - - def cache_info(self) -> AsyncCacheInfo: - return AsyncCacheInfo( - self._hits, self._misses, self._maxsize, self._currsize, self._ttl - ) - - def cache_parameters(self) -> AsyncCacheParameters: - return { - "maxsize": self._maxsize, - "typed": self._typed, - "always_checkpoint": self._always_checkpoint, - "ttl": self._ttl, - } - - def cache_clear(self) -> None: - if cache := lru_cache_items.get(None): - cache.pop(self, None) - self._hits = self._misses = self._currsize = 0 - - async def __call__(self, *args: P.args, **kwargs: P.kwargs) -> T: - # Easy case first: if maxsize == 0, no caching is done - if self._maxsize == 0: - value = await self.__wrapped__(*args, **kwargs) - self._misses += 1 - return value - - # The key is constructed as a flat tuple to avoid memory overhead - key: tuple[Any, ...] = args - if kwargs: - # initial_missing is used as a separator - key += (initial_missing,) + sum(kwargs.items(), ()) - - if self._typed: - key += tuple(type(arg) for arg in args) - if kwargs: - key += (initial_missing,) + tuple(type(val) for val in kwargs.values()) - - try: - cache = lru_cache_items.get() - except LookupError: - cache = WeakKeyDictionary() - lru_cache_items.set(cache) - - try: - cache_entry = cache[self] - except KeyError: - cache_entry = cache[self] = OrderedDict() - - cached_value: T | _InitialMissingType - try: - cached_value, lock, expires_at = cache_entry[key] - except KeyError: - # We're the first task to call this function - cached_value, lock, expires_at = ( - initial_missing, - Lock(fast_acquire=not self._always_checkpoint), - None, - ) - cache_entry[key] = cached_value, lock, expires_at - - if lock is None: - if expires_at is not None and current_time() >= expires_at: - self._currsize -= 1 - cached_value, lock, expires_at = ( - initial_missing, - Lock(fast_acquire=not self._always_checkpoint), - None, - ) - cache_entry[key] = cached_value, lock, expires_at - else: - # The value was already cached - self._hits += 1 - cache_entry.move_to_end(key) - if self._always_checkpoint: - await checkpoint() - - return cast(T, cached_value) - - async with lock: - # Check if another task filled the cache while we acquired the lock - if (cached_value := cache_entry[key][0]) is initial_missing: - self._misses += 1 - if self._maxsize is not None and self._currsize >= self._maxsize: - cache_entry.popitem(last=False) - else: - self._currsize += 1 - - value = await self.__wrapped__(*args, **kwargs) - expires_at = ( - current_time() + self._ttl if self._ttl is not None else None - ) - cache_entry[key] = value, None, expires_at - else: - # Another task filled the cache while we were waiting for the lock - self._hits += 1 - cache_entry.move_to_end(key) - value = cast(T, cached_value) - - return value - - def __get__( - self, instance: object, owner: type | None = None - ) -> _LRUMethodWrapper[T]: - wrapper = _LRUMethodWrapper(self, instance) - update_wrapper(wrapper, self.__wrapped__) - return wrapper - - -class _LRUCacheWrapper: - def __init__( - self, maxsize: int | None, typed: bool, always_checkpoint: bool, ttl: int | None - ): - self._maxsize = maxsize - self._typed = typed - self._always_checkpoint = always_checkpoint - self._ttl = ttl - - @overload - def __call__( # type: ignore[overload-overlap] - self, func: Callable[P, Coroutine[Any, Any, T]], / - ) -> AsyncLRUCacheWrapper[P, T]: ... - - @overload - def __call__( - self, func: Callable[..., T], / - ) -> functools._lru_cache_wrapper[T]: ... - - def __call__( - self, f: Callable[P, Coroutine[Any, Any, T]] | Callable[..., T], / - ) -> AsyncLRUCacheWrapper[P, T] | functools._lru_cache_wrapper[T]: - if iscoroutinefunction(f): - return AsyncLRUCacheWrapper( - f, self._maxsize, self._typed, self._always_checkpoint, self._ttl - ) - - return functools.lru_cache(maxsize=self._maxsize, typed=self._typed)(f) # type: ignore[arg-type] - - -@overload -def cache( # type: ignore[overload-overlap] - func: Callable[P, Coroutine[Any, Any, T]], / -) -> AsyncLRUCacheWrapper[P, T]: ... - - -@overload -def cache(func: Callable[..., T], /) -> functools._lru_cache_wrapper[T]: ... - - -def cache(func: Callable[..., Any] | Callable[P, Coroutine[Any, Any, Any]], /) -> Any: - """ - A convenient shortcut for :func:`lru_cache` with ``maxsize=None``. - - This is the asynchronous equivalent to :func:`functools.cache`. - - """ - return lru_cache(maxsize=None)(func) - - -@overload -def lru_cache( - *, - maxsize: int | None = ..., - typed: bool = ..., - always_checkpoint: bool = ..., - ttl: int | None = ..., -) -> _LRUCacheWrapper: ... - - -@overload -def lru_cache( # type: ignore[overload-overlap] - func: Callable[P, Coroutine[Any, Any, T]], / -) -> AsyncLRUCacheWrapper[P, T]: ... - - -@overload -def lru_cache(func: Callable[..., T], /) -> functools._lru_cache_wrapper[T]: ... - - -def lru_cache( - func: Callable[..., Coroutine[Any, Any, Any]] | Callable[..., Any] | None = None, - /, - *, - maxsize: int | None = 128, - typed: bool = False, - always_checkpoint: bool = False, - ttl: int | None = None, -) -> Any: - """ - An asynchronous version of :func:`functools.lru_cache`. - - If a synchronous function is passed, the standard library - :func:`functools.lru_cache` is applied instead. - - :param always_checkpoint: if ``True``, every call to the cached function will be - guaranteed to yield control to the event loop at least once - :param ttl: time in seconds after which to invalidate cache entries - - .. note:: Caches and locks are managed on a per-event loop basis. - - """ - if func is None: - return _LRUCacheWrapper(maxsize, typed, always_checkpoint, ttl) - - if not callable(func): - raise TypeError("the first argument must be callable") - - return _LRUCacheWrapper(maxsize, typed, always_checkpoint, ttl)(func) - - -@overload -async def reduce( - function: Callable[[T, S], Awaitable[T]], - iterable: Iterable[S] | AsyncIterable[S], - /, - initial: T, -) -> T: ... - - -@overload -async def reduce( - function: Callable[[T, T], Awaitable[T]], - iterable: Iterable[T] | AsyncIterable[T], - /, -) -> T: ... - - -async def reduce( # type: ignore[misc] - function: Callable[[T, T], Awaitable[T]] | Callable[[T, S], Awaitable[T]], - iterable: Iterable[T] | Iterable[S] | AsyncIterable[T] | AsyncIterable[S], - /, - initial: T | _InitialMissingType = initial_missing, -) -> T: - """ - Asynchronous version of :func:`functools.reduce`. - - :param function: a coroutine function that takes two arguments: the accumulated - value and the next element from the iterable - :param iterable: an iterable or async iterable - :param initial: the initial value (if missing, the first element of the iterable is - used as the initial value) - - """ - element: Any - function_called = False - if isinstance(iterable, AsyncIterable): - async_it = iterable.__aiter__() - if initial is initial_missing: - try: - value = cast(T, await async_it.__anext__()) - except StopAsyncIteration: - raise TypeError( - "reduce() of empty sequence with no initial value" - ) from None - else: - value = cast(T, initial) - - async for element in async_it: - value = await function(value, element) - function_called = True - elif isinstance(iterable, Iterable): - it = iter(iterable) - if initial is initial_missing: - try: - value = cast(T, next(it)) - except StopIteration: - raise TypeError( - "reduce() of empty sequence with no initial value" - ) from None - else: - value = cast(T, initial) - - for element in it: - value = await function(value, element) - function_called = True - else: - raise TypeError("reduce() argument 2 must be an iterable or async iterable") - - # Make sure there is at least one checkpoint, even if an empty iterable and an - # initial value were given - if not function_called: - await checkpoint() - - return value diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/itertools.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/itertools.py deleted file mode 100644 index 7e5248e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/itertools.py +++ /dev/null @@ -1,626 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "accumulate", - "batched", - "Chain", - "combinations", - "combinations_with_replacement", - "compress", - "count", - "cycle", - "dropwhile", - "filterfalse", - "groupby", - "islice", - "pairwise", - "permutations", - "product", - "repeat", - "starmap", - "tee", - "takewhile", - "zip_longest", -) - -import itertools -import operator -import sys -from collections.abc import ( - AsyncGenerator, - AsyncIterable, - AsyncIterator, - Awaitable, - Callable, - Iterable, - Iterator, -) -from dataclasses import dataclass, field -from typing import Any, Generic, TypeVar, cast, overload - -from ._core._synchronization import Lock -from ._core._tasks import CancelScope -from .lowlevel import cancel_shielded_checkpoint, checkpoint, checkpoint_if_cancelled - -T = TypeVar("T") -R = TypeVar("R") -_tee_end = object() - - -@dataclass(eq=False) -class _IterableAsyncIterator(AsyncIterator[T]): - iterator: Iterator[T] - - async def __anext__(self) -> T: - await checkpoint_if_cancelled() - try: - result = next(self.iterator) - except StopIteration: - await cancel_shielded_checkpoint() - raise StopAsyncIteration from None - - await cancel_shielded_checkpoint() - return result - - -def _iterate(iterable: Iterable[T] | AsyncIterable[T]) -> AsyncIterator[T]: - if isinstance(iterable, AsyncIterator): - return iterable - - if isinstance(iterable, AsyncIterable): - return iterable.__aiter__() - - return _IterableAsyncIterator(iter(iterable)) - - -@dataclass(eq=False) -class _TeeLink(Generic[T]): - value: object | None = None - next: _TeeLink[T] | None = None - filled: bool = False - - -@dataclass(eq=False) -class _TeeState(Generic[T]): - iterator: AsyncIterator[T] - lock: Lock = field(default_factory=Lock) - - async def fill(self, link: _TeeLink[T]) -> bool: - if link.filled: - return False - - async with self.lock: - if link.filled: - return True - - link.value = await anext(self.iterator, _tee_end) - if link.value is not _tee_end: - link.next = _TeeLink() - - link.filled = True - return True - - -class _TeeAsyncIterator(AsyncIterator[T]): - _state: _TeeState[T] - _link: _TeeLink[T] - _element_yielded: bool - - def __init__( - self, iterable: Iterable[T] | AsyncIterable[T] | _TeeAsyncIterator[T] - ) -> None: - if isinstance(iterable, _TeeAsyncIterator): - self._state = iterable._state - self._link = iterable._link - else: - self._state = _TeeState(_iterate(iterable)) - self._link = _TeeLink() - - self._element_yielded = False - - async def __anext__(self) -> T: - had_yieldpoint = await self._state.fill(self._link) - if self._link.value is _tee_end: - if not self._element_yielded: - await checkpoint() - - raise StopAsyncIteration - - if not had_yieldpoint: - await checkpoint_if_cancelled() - - self._element_yielded = True - value = cast(T, self._link.value) - next_link = self._link.next - assert next_link is not None - self._link = next_link - if not had_yieldpoint: - await cancel_shielded_checkpoint() - - return value - - -async def _operator_add(x: T, y: T) -> T: - return operator.add(x, y) - - -async def accumulate( - iterable: Iterable[T] | AsyncIterable[T], - function: Callable[[T, T], Awaitable[T]] = _operator_add, - *, - initial: T | None = None, -) -> AsyncGenerator[T, None]: - iterator = _iterate(iterable) - if initial is None: - try: - total = await anext(iterator) - except StopAsyncIteration: - await checkpoint() - return - else: - await checkpoint_if_cancelled() - total = initial - await cancel_shielded_checkpoint() - - yield total - - async for element in iterator: - total = await function(total, element) - yield total - - -async def batched( - iterable: Iterable[T] | AsyncIterable[T], n: int, *, strict: bool = False -) -> AsyncGenerator[tuple[T, ...], None]: - if n < 1: - raise ValueError("n must be at least one") - - iterator = _iterate(iterable) - - while True: - batch: list[T] = [] - for _ in range(n): - try: - batch.append(await anext(iterator)) - except StopAsyncIteration: - if not batch: - await checkpoint() - return - if strict: - raise ValueError("batched(): incomplete batch") from None - - yield tuple(batch) - return - - yield tuple(batch) - - -class Chain: - def __call__( - self, *iterables: Iterable[T] | AsyncIterable[T] - ) -> AsyncGenerator[T, None]: - return self.from_iterable(iterables) - - async def from_iterable( - self, - iterables: ( - Iterable[Iterable[T] | AsyncIterable[T]] - | AsyncIterable[Iterable[T] | AsyncIterable[T]] - ), - ) -> AsyncGenerator[T, None]: - element_yielded = False - outer_iter = _iterate(iterables) - - try: - async for iterable in outer_iter: - async for element in _iterate(iterable): - element_yielded = True - yield element - finally: - aclose = getattr(outer_iter, "aclose", None) - if aclose is not None: - with CancelScope(shield=True): - await aclose() - - if not element_yielded: - await checkpoint() - - -chain: Chain = Chain() - - -async def combinations( - iterable: Iterable[T] | AsyncIterable[T], r: int -) -> AsyncGenerator[tuple[T, ...], None]: - pool: list[T] = [element async for element in _iterate(iterable)] - async for combination in _iterate(itertools.combinations(pool, r)): - yield combination - - -async def combinations_with_replacement( - iterable: Iterable[T] | AsyncIterable[T], r: int -) -> AsyncGenerator[tuple[T, ...], None]: - pool: list[T] = [element async for element in _iterate(iterable)] - async for combination in _iterate(itertools.combinations_with_replacement(pool, r)): - yield combination - - -async def compress( - data: Iterable[T] | AsyncIterable[T], - selectors: Iterable[object] | AsyncIterable[object], -) -> AsyncGenerator[T, None]: - data_iterator = _iterate(data) - selector_iterator = _iterate(selectors) - element_yielded = False - - while True: - try: - datum = await anext(data_iterator) - selector = await anext(selector_iterator) - except StopAsyncIteration: - if not element_yielded: - await checkpoint() - - return - - if selector: - element_yielded = True - yield datum - - -async def count(start: int = 0, step: int = 1) -> AsyncGenerator[int, None]: - n = start - while True: - await checkpoint_if_cancelled() - value = n - n += step - await cancel_shielded_checkpoint() - yield value - - -async def cycle( - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[T, None]: - saved: list[T] = [] - async for element in _iterate(iterable): - saved.append(element) - yield element - - if not saved: - await checkpoint() - return - - while True: - for element in saved: - await checkpoint() - yield element - - -async def dropwhile( - predicate: Callable[[T], Awaitable[object]], - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[T, None]: - element_yielded = False - dropping = True - - async for element in _iterate(iterable): - if dropping and await predicate(element): - continue - - dropping = False - element_yielded = True - yield element - - if not element_yielded: - await checkpoint() - - -async def filterfalse( - predicate: Callable[[T], Awaitable[object]], - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[T, None]: - element_yielded = False - - async for element in _iterate(iterable): - if not await predicate(element): - element_yielded = True - yield element - - if not element_yielded: - await checkpoint() - - -@overload -def groupby( - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[tuple[T, list[T]], None]: ... - - -@overload -def groupby( - iterable: Iterable[T] | AsyncIterable[T], - key: Callable[[T], Awaitable[R]], -) -> AsyncGenerator[tuple[R, list[T]], None]: ... - - -async def groupby( - iterable: Iterable[T] | AsyncIterable[T], - key: Callable[[T], Awaitable[object]] | None = None, -) -> AsyncGenerator[tuple[object, list[T]], None]: - iterator = _iterate(iterable) - try: - element = await anext(iterator) - except StopAsyncIteration: - await checkpoint() - return - - group_key = element if key is None else await key(element) - values = [element] - - async for element in iterator: - next_key = element if key is None else await key(element) - if next_key != group_key: - completed_group = group_key, values - group_key = next_key - values = [element] - yield completed_group - else: - values.append(element) - - yield group_key, values - - -@overload -def islice( - iterable: Iterable[T] | AsyncIterable[T], - stop: int | None, - /, -) -> AsyncGenerator[T, None]: ... - - -@overload -def islice( - iterable: Iterable[T] | AsyncIterable[T], - start: int | None, - stop: int | None, - step: int | None = 1, - /, -) -> AsyncGenerator[T, None]: ... - - -async def islice( - iterable: Iterable[T] | AsyncIterable[T], - *args: int | None, -) -> AsyncGenerator[T, None]: - if not args: - raise TypeError("islice expected at least 2 arguments, got 1") - if len(args) > 3: - raise TypeError(f"islice expected at most 4 arguments, got {len(args) + 1}") - - slice_args = slice(*args) - - start_message = ( - "Indices for islice() must be None or an integer: 0 <= x <= sys.maxsize." - ) - stop_message = ( - "Stop argument for islice() must be None or an integer: 0 <= x <= sys.maxsize." - ) - step_message = "Step for islice() must be a positive integer or None." - - def normalize_index(value: object, message: str) -> int: - try: - index = operator.index(cast(Any, value)) - except TypeError: - raise ValueError(message) from None - - if index < 0 or index > sys.maxsize: - raise ValueError(message) - - return index - - start = ( - 0 - if slice_args.start is None - else normalize_index(slice_args.start, start_message) - ) - stop = ( - None - if slice_args.stop is None - else normalize_index(slice_args.stop, stop_message) - ) - step = ( - 1 if slice_args.step is None else normalize_index(slice_args.step, step_message) - ) - - if step <= 0: - raise ValueError(step_message) - - if stop == 0 or start == stop: - await checkpoint() - return - - iterator = _iterate(iterable) - index = 0 - element_yielded = False - - while stop is None or index < stop: - try: - element = await anext(iterator) - except StopAsyncIteration: - if not element_yielded: - await checkpoint() - - return - - if index >= start and (index - start) % step == 0: - index += 1 - element_yielded = True - yield element - else: - index += 1 - - if not element_yielded: - await checkpoint() - - -async def pairwise( - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[tuple[T, T], None]: - iterator = _iterate(iterable) - try: - previous = await anext(iterator) - except StopAsyncIteration: - await checkpoint() - return - - element_yielded = False - async for element in iterator: - element_yielded = True - pair = (previous, element) - previous = element - yield pair - - if not element_yielded: - await checkpoint() - - -async def permutations( - iterable: Iterable[T] | AsyncIterable[T], r: int | None = None -) -> AsyncGenerator[tuple[T, ...], None]: - pool: list[T] = [element async for element in _iterate(iterable)] - n = len(pool) - if r is None: - r = n - elif not isinstance(r, int): - raise TypeError("Expected int as r") - elif r < 0: - raise ValueError("r must be non-negative") - - async for permutation in _iterate(itertools.permutations(pool, r)): - yield permutation - - -async def product( - *iterables: Iterable[T] | AsyncIterable[T], repeat: int = 1 -) -> AsyncGenerator[tuple[T, ...], None]: - repeat = operator.index(repeat) - if repeat < 0: - raise ValueError("repeat argument cannot be negative") - - pools: list[tuple[T, ...]] = [] - for iterable in iterables: - pool: list[T] = [element async for element in _iterate(iterable)] - pools.append(tuple(pool)) - - async for value in _iterate(itertools.product(*pools, repeat=repeat)): - yield value - - -async def repeat(element: T, times: int | None = None) -> AsyncGenerator[T, None]: - if times is None: - while True: - await checkpoint() - yield element - - remaining = operator.index(cast(Any, times)) - if remaining <= 0: - await checkpoint() - return - - while remaining > 0: - await checkpoint_if_cancelled() - remaining -= 1 - await cancel_shielded_checkpoint() - yield element - - -async def starmap( - function: Callable[..., Awaitable[R]], - iterable: ( - Iterable[Iterable[object] | AsyncIterable[object]] - | AsyncIterable[Iterable[object] | AsyncIterable[object]] - ), -) -> AsyncGenerator[R, None]: - result_yielded = False - - async for args_iterable in _iterate(iterable): - args = [element async for element in _iterate(args_iterable)] - result_yielded = True - yield await function(*args) - - if not result_yielded: - await checkpoint() - - -def tee( - iterable: Iterable[T] | AsyncIterable[T], n: int = 2 -) -> tuple[AsyncIterator[T], ...]: - n = operator.index(cast(Any, n)) - if n < 0: - raise ValueError("n must be >= 0") - if n == 0: - return () - - iterator = _TeeAsyncIterator(iterable) - iterators: list[AsyncIterator[T]] = [iterator] - iterators.extend(_TeeAsyncIterator(iterator) for _ in range(n - 1)) - return tuple(iterators) - - -async def takewhile( - predicate: Callable[[T], Awaitable[object]], - iterable: Iterable[T] | AsyncIterable[T], -) -> AsyncGenerator[T, None]: - element_yielded = False - - async for element in _iterate(iterable): - if not await predicate(element): - if not element_yielded: - await checkpoint() - - return - - element_yielded = True - yield element - - if not element_yielded: - await checkpoint() - - -async def zip_longest( - *iterables: Iterable[object] | AsyncIterable[object], - fillvalue: object = None, -) -> AsyncGenerator[tuple[object, ...], None]: - iterators = [_iterate(iterable) for iterable in iterables] - num_active = len(iterators) - if not num_active: - await checkpoint() - return - - active = [True] * num_active - tuple_yielded = False - - while True: - values: list[object] = [] - for index, iterator in enumerate(iterators): - if not active[index]: - values.append(fillvalue) - continue - - try: - value = await anext(iterator) - except StopAsyncIteration: - active[index] = False - num_active -= 1 - if not num_active: - if not tuple_yielded: - await checkpoint() - - return - - value = fillvalue - - values.append(value) - - tuple_yielded = True - yield tuple(values) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/lowlevel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/lowlevel.py deleted file mode 100644 index d045791..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/lowlevel.py +++ /dev/null @@ -1,226 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "EventLoopToken", - "RunvarToken", - "RunVar", - "checkpoint", - "checkpoint_if_cancelled", - "cancel_shielded_checkpoint", - "current_token", -) - -import enum -from dataclasses import dataclass -from types import TracebackType -from typing import Any, Generic, Literal, TypeVar, final, overload -from weakref import WeakKeyDictionary - -from ._core._eventloop import get_async_backend -from .abc import AsyncBackend - -T = TypeVar("T") -D = TypeVar("D") - - -async def checkpoint() -> None: - """ - Check for cancellation and allow the scheduler to switch to another task. - - Equivalent to (but more efficient than):: - - await checkpoint_if_cancelled() - await cancel_shielded_checkpoint() - - .. versionadded:: 3.0 - - """ - await get_async_backend().checkpoint() - - -async def checkpoint_if_cancelled() -> None: - """ - Enter a checkpoint if the enclosing cancel scope has been cancelled. - - This does not allow the scheduler to switch to a different task. - - .. versionadded:: 3.0 - - """ - await get_async_backend().checkpoint_if_cancelled() - - -async def cancel_shielded_checkpoint() -> None: - """ - Allow the scheduler to switch to another task but without checking for cancellation. - - Equivalent to (but potentially more efficient than):: - - with CancelScope(shield=True): - await checkpoint() - - .. versionadded:: 3.0 - - """ - await get_async_backend().cancel_shielded_checkpoint() - - -@final -@dataclass(frozen=True, repr=False) -class EventLoopToken: - """ - An opaque object that holds a reference to an event loop. - - .. versionadded:: 4.11.0 - """ - - backend_class: type[AsyncBackend] - native_token: object - - -def current_token() -> EventLoopToken: - """ - Return a token object that can be used to call code in the current event loop from - another thread. - - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - .. versionadded:: 4.11.0 - - """ - backend_class = get_async_backend() - raw_token = backend_class.current_token() - return EventLoopToken(backend_class, raw_token) - - -_run_vars: WeakKeyDictionary[object, dict[RunVar[Any], Any]] = WeakKeyDictionary() - - -class _NoValueSet(enum.Enum): - NO_VALUE_SET = enum.auto() - - -class RunvarToken(Generic[T]): - """ - A token that can be used to restore a :class:`RunVar` to its previous value. - - Returned by :meth:`RunVar.set`. Can be used as a context manager to automatically - reset the variable on exit, or passed directly to :meth:`RunVar.reset`. - """ - - __slots__ = "_var", "_value", "_redeemed" - - def __init__(self, var: RunVar[T], value: T | Literal[_NoValueSet.NO_VALUE_SET]): - self._var = var - self._value: T | Literal[_NoValueSet.NO_VALUE_SET] = value - self._redeemed = False - - def __enter__(self) -> RunvarToken[T]: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self._var.reset(self) - - -class RunVar(Generic[T]): - """ - Like a :class:`~contextvars.ContextVar`, except scoped to the running event loop. - - Can be used as a context manager, Just like :class:`~contextvars.ContextVar`, that - will reset the variable to its previous value when the context block is exited. - """ - - __slots__ = "_name", "_default" - - NO_VALUE_SET: Literal[_NoValueSet.NO_VALUE_SET] = _NoValueSet.NO_VALUE_SET - - def __init__( - self, name: str, default: T | Literal[_NoValueSet.NO_VALUE_SET] = NO_VALUE_SET - ): - self._name = name - self._default = default - - @property - def _current_vars(self) -> dict[RunVar[T], T]: - native_token = current_token().native_token - try: - return _run_vars[native_token] - except KeyError: - run_vars = _run_vars[native_token] = {} - return run_vars - - @overload - def get(self, default: D) -> T | D: ... - - @overload - def get(self) -> T: ... - - def get( - self, default: D | Literal[_NoValueSet.NO_VALUE_SET] = NO_VALUE_SET - ) -> T | D: - """ - Return the current value of this run variable. - - :param default: a fallback value to return if no value has been set - :return: the current value, the provided default, or the variable's own default - :raises LookupError: if no value is set and no default is available - - """ - try: - return self._current_vars[self] - except KeyError: - if default is not RunVar.NO_VALUE_SET: - return default - elif self._default is not RunVar.NO_VALUE_SET: - return self._default - - raise LookupError( - f'Run variable "{self._name}" has no value and no default set' - ) - - def set(self, value: T) -> RunvarToken[T]: - """ - Set the value of this run variable for the current event loop. - - :param value: the new value - :return: a token that can be used to restore the previous value - - """ - current_vars = self._current_vars - token = RunvarToken(self, current_vars.get(self, RunVar.NO_VALUE_SET)) - current_vars[self] = value - return token - - def reset(self, token: RunvarToken[T]) -> None: - """ - Restore this run variable to the value it held before the matching :meth:`set`. - - :param token: the token returned by :meth:`set` - :raises ValueError: if the token belongs to a different :class:`RunVar` or the token - has already been used - - """ - if token._var is not self: - raise ValueError("This token does not belong to this RunVar") - - if token._redeemed: - raise ValueError("This token has already been used") - - if token._value is _NoValueSet.NO_VALUE_SET: - try: - del self._current_vars[self] - except KeyError: - pass - else: - self._current_vars[self] = token._value - - token._redeemed = True - - def __repr__(self) -> str: - return f"" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/pytest_plugin.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/pytest_plugin.py deleted file mode 100644 index 5c66759..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/pytest_plugin.py +++ /dev/null @@ -1,375 +0,0 @@ -from __future__ import annotations - -import dataclasses -import socket -import sys -from collections.abc import Callable, Generator, Iterator -from contextlib import ExitStack, contextmanager -from inspect import isasyncgenfunction, iscoroutinefunction, ismethod -from typing import Any, cast - -import pytest -from _pytest.fixtures import FuncFixtureInfo, SubRequest -from _pytest.outcomes import Exit -from _pytest.python import CallSpec2 -from _pytest.scope import Scope - -from . import get_available_backends -from ._core._eventloop import ( - current_async_library, - get_async_backend, - reset_current_async_library, - set_current_async_library, -) -from ._core._exceptions import iterate_exceptions -from .abc import TestRunner - -if sys.version_info < (3, 11): - from exceptiongroup import ExceptionGroup - -_current_runner: TestRunner | None = None -_runner_stack: ExitStack | None = None -_runner_leases = 0 - - -def extract_backend_and_options(backend: object) -> tuple[str, dict[str, Any]]: - if isinstance(backend, str): - return backend, {} - elif isinstance(backend, tuple) and len(backend) == 2: - if isinstance(backend[0], str) and isinstance(backend[1], dict): - return cast(tuple[str, dict[str, Any]], backend) - - raise TypeError("anyio_backend must be either a string or tuple of (string, dict)") - - -@contextmanager -def get_runner( - backend_name: str, backend_options: dict[str, Any] -) -> Iterator[TestRunner]: - global _current_runner, _runner_leases, _runner_stack - if _current_runner is None: - asynclib = get_async_backend(backend_name) - _runner_stack = ExitStack() - if current_async_library() is None: - # Since we're in control of the event loop, we can cache the name of the - # async library - token = set_current_async_library(backend_name) - _runner_stack.callback(reset_current_async_library, token) - - backend_options = backend_options or {} - _current_runner = _runner_stack.enter_context( - asynclib.create_test_runner(backend_options) - ) - - _runner_leases += 1 - try: - yield _current_runner - finally: - _runner_leases -= 1 - if not _runner_leases: - assert _runner_stack is not None - _runner_stack.close() - _runner_stack = _current_runner = None - - -def pytest_addoption(parser: pytest.Parser) -> None: - parser.addini( - "anyio_mode", - default="strict", - help='AnyIO plugin mode (either "strict" or "auto")', - ) - - -def pytest_configure(config: pytest.Config) -> None: - config.addinivalue_line( - "markers", - "anyio: mark the (coroutine function) test to be run asynchronously via anyio.", - ) - if ( - config.getini("anyio_mode") == "auto" - and config.pluginmanager.has_plugin("asyncio") - and config.getini("asyncio_mode") == "auto" - ): - config.issue_config_time_warning( - pytest.PytestConfigWarning( - "AnyIO auto mode has been enabled together with pytest-asyncio auto " - "mode. This may cause unexpected behavior." - ), - 1, - ) - - -@pytest.hookimpl(hookwrapper=True) -def pytest_fixture_setup(fixturedef: Any, request: Any) -> Generator[Any]: - def wrapper(anyio_backend: Any, request: SubRequest, **kwargs: Any) -> Any: - # Rebind any fixture methods to the request instance - if ( - request.instance - and ismethod(func) - and type(func.__self__) is type(request.instance) - ): - local_func = func.__func__.__get__(request.instance) - else: - local_func = func - - backend_name, backend_options = extract_backend_and_options(anyio_backend) - if has_backend_arg: - kwargs["anyio_backend"] = anyio_backend - - if has_request_arg: - kwargs["request"] = request - - with get_runner(backend_name, backend_options) as runner: - # re-entrant call into the test runner detected. this happens when an async fixture - # is dynamically requested via request.getfixturevalue() from inside a running async - # test or fixture. on asyncio this raises RuntimeError: This event loop is already - # running, on trio the runner deadlocks - the host loop blocks waiting for the - # coroutine to return, but the coroutine is waiting for the host loop. raising here - # prevents the hang and gives a consistent error across backends. - if runner.is_running(): - raise RuntimeError( - "Cannot schedule a coroutine in the test runner while another is already running; " - "likely caused by request.getfixturevalue() on an async fixture." - ) - - if isasyncgenfunction(local_func): - yield from runner.run_asyncgen_fixture(local_func, kwargs) - else: - yield runner.run_fixture(local_func, kwargs) - - # Only apply this to coroutine functions and async generator functions in requests - # that involve the anyio_backend fixture - func = fixturedef.func - if isasyncgenfunction(func) or iscoroutinefunction(func): - if "anyio_backend" in request.fixturenames: - fixturedef.func = wrapper - original_argname = fixturedef.argnames - - if not (has_backend_arg := "anyio_backend" in fixturedef.argnames): - fixturedef.argnames += ("anyio_backend",) - - if not (has_request_arg := "request" in fixturedef.argnames): - fixturedef.argnames += ("request",) - - try: - return (yield) - finally: - fixturedef.func = func - fixturedef.argnames = original_argname - - return (yield) - - -@pytest.hookimpl(tryfirst=True) -def pytest_pycollect_makeitem( - collector: pytest.Module | pytest.Class, name: str, obj: object -) -> None: - if collector.istestfunction(obj, name): - inner_func = obj.hypothesis.inner_test if hasattr(obj, "hypothesis") else obj - if iscoroutinefunction(inner_func): - anyio_auto_mode = collector.config.getini("anyio_mode") == "auto" - marker = collector.get_closest_marker("anyio") - own_markers = getattr(obj, "pytestmark", ()) - if ( - anyio_auto_mode - or marker - or any(marker.name == "anyio" for marker in own_markers) - ): - pytest.mark.usefixtures("anyio_backend")(obj) - - -def pytest_collection_finish(session: pytest.Session) -> None: - for i, item in reversed(list(enumerate(session.items))): - if ( - isinstance(item, pytest.Function) - and iscoroutinefunction(item.function) - and item.get_closest_marker("anyio") is not None - and "anyio_backend" not in item.fixturenames - ): - new_items = [] - try: - cs_fields = {f.name for f in dataclasses.fields(CallSpec2)} - except TypeError: - cs_fields = set() - - for param_index, backend in enumerate(get_available_backends()): - if "_arg2scope" in cs_fields: # pytest >= 8 - callspec = CallSpec2( - params={"anyio_backend": backend}, - indices={"anyio_backend": param_index}, - _arg2scope={"anyio_backend": Scope.Module}, - _idlist=[backend], - marks=[], - ) - else: # pytest 7.x - callspec = CallSpec2( # type: ignore[call-arg] - funcargs={}, - params={"anyio_backend": backend}, - indices={"anyio_backend": param_index}, - arg2scope={"anyio_backend": Scope.Module}, - idlist=[backend], - marks=[], - ) - - fi = item._fixtureinfo - new_names_closure = list(fi.names_closure) - if "anyio_backend" not in new_names_closure: - new_names_closure.append("anyio_backend") - - new_fixtureinfo = FuncFixtureInfo( - argnames=fi.argnames, - initialnames=fi.initialnames, - names_closure=new_names_closure, - name2fixturedefs=fi.name2fixturedefs, - ) - new_item = pytest.Function.from_parent( - item.parent, - name=f"{item.originalname}[{backend}]", - callspec=callspec, - callobj=item.obj, - fixtureinfo=new_fixtureinfo, - keywords=item.keywords, - originalname=item.originalname, - ) - new_items.append(new_item) - - session.items[i : i + 1] = new_items - - -@pytest.hookimpl(tryfirst=True) -def pytest_pyfunc_call(pyfuncitem: Any) -> bool | None: - def run_with_hypothesis(**kwargs: Any) -> None: - with get_runner(backend_name, backend_options) as runner: - runner.run_test(original_func, kwargs) - - backend = pyfuncitem.funcargs.get("anyio_backend") - if backend: - backend_name, backend_options = extract_backend_and_options(backend) - - if hasattr(pyfuncitem.obj, "hypothesis"): - # Wrap the inner test function unless it's already wrapped - original_func = pyfuncitem.obj.hypothesis.inner_test - if original_func.__qualname__ != run_with_hypothesis.__qualname__: - if iscoroutinefunction(original_func): - pyfuncitem.obj.hypothesis.inner_test = run_with_hypothesis - - return None - - if iscoroutinefunction(pyfuncitem.obj): - funcargs = pyfuncitem.funcargs - testargs = {arg: funcargs[arg] for arg in pyfuncitem._fixtureinfo.argnames} - with get_runner(backend_name, backend_options) as runner: - try: - runner.run_test(pyfuncitem.obj, testargs) - except ExceptionGroup as excgrp: - for exc in iterate_exceptions(excgrp): - if isinstance(exc, (Exit, KeyboardInterrupt, SystemExit)): - raise exc from excgrp - - raise - - return True - - return None - - -@pytest.fixture(scope="module", params=get_available_backends()) -def anyio_backend(request: Any) -> Any: - return request.param - - -@pytest.fixture -def anyio_backend_name(anyio_backend: Any) -> str: - if isinstance(anyio_backend, str): - return anyio_backend - else: - return anyio_backend[0] - - -@pytest.fixture -def anyio_backend_options(anyio_backend: Any) -> dict[str, Any]: - if isinstance(anyio_backend, str): - return {} - else: - return anyio_backend[1] - - -class FreePortFactory: - """ - Manages port generation based on specified socket kind, ensuring no duplicate - ports are generated. - - This class provides functionality for generating available free ports on the - system. It is initialized with a specific socket kind and can generate ports - for given address families while avoiding reuse of previously generated ports. - - Users should not instantiate this class directly, but use the - ``free_tcp_port_factory`` and ``free_udp_port_factory`` fixtures instead. For simple - uses cases, ``free_tcp_port`` and ``free_udp_port`` can be used instead. - """ - - def __init__(self, kind: socket.SocketKind) -> None: - self._kind = kind - self._generated = set[int]() - - @property - def kind(self) -> socket.SocketKind: - """ - The type of socket connection (e.g., :data:`~socket.SOCK_STREAM` or - :data:`~socket.SOCK_DGRAM`) used to bind for checking port availability - - """ - return self._kind - - def __call__(self, family: socket.AddressFamily | None = None) -> int: - """ - Return an unbound port for the given address family. - - :param family: if omitted, both IPv4 and IPv6 addresses will be tried - :return: a port number - - """ - if family is not None: - families = [family] - else: - families = [socket.AF_INET] - if socket.has_ipv6: - families.append(socket.AF_INET6) - - while True: - port = 0 - with ExitStack() as stack: - for family in families: - sock = stack.enter_context(socket.socket(family, self._kind)) - addr = "::1" if family == socket.AF_INET6 else "127.0.0.1" - try: - sock.bind((addr, port)) - except OSError: - break - - if not port: - port = sock.getsockname()[1] - else: - if port not in self._generated: - self._generated.add(port) - return port - - -@pytest.fixture(scope="session") -def free_tcp_port_factory() -> FreePortFactory: - return FreePortFactory(socket.SOCK_STREAM) - - -@pytest.fixture(scope="session") -def free_udp_port_factory() -> FreePortFactory: - return FreePortFactory(socket.SOCK_DGRAM) - - -@pytest.fixture -def free_tcp_port(free_tcp_port_factory: Callable[[], int]) -> int: - return free_tcp_port_factory() - - -@pytest.fixture -def free_udp_port(free_udp_port_factory: Callable[[], int]) -> int: - return free_udp_port_factory() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b3a90df..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/buffered.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/buffered.cpython-311.pyc deleted file mode 100644 index af0eeb3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/buffered.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/file.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/file.cpython-311.pyc deleted file mode 100644 index 490ec2a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/file.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/memory.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/memory.cpython-311.pyc deleted file mode 100644 index 6a290b5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/memory.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/stapled.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/stapled.cpython-311.pyc deleted file mode 100644 index 0ed8d09..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/stapled.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/text.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/text.cpython-311.pyc deleted file mode 100644 index 679397e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/text.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/tls.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/tls.cpython-311.pyc deleted file mode 100644 index 8b2f30b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/__pycache__/tls.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/buffered.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/buffered.py deleted file mode 100644 index acf312b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/buffered.py +++ /dev/null @@ -1,198 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "BufferedByteReceiveStream", - "BufferedByteStream", - "BufferedConnectable", -) - -import sys -from collections.abc import Callable, Iterable, Mapping -from dataclasses import dataclass, field -from typing import Any, SupportsIndex - -from .. import ClosedResourceError, DelimiterNotFound, EndOfStream, IncompleteRead -from ..abc import ( - AnyByteReceiveStream, - AnyByteStream, - AnyByteStreamConnectable, - ByteReceiveStream, - ByteStream, - ByteStreamConnectable, -) - -if sys.version_info >= (3, 12): - from typing import override -else: - from typing_extensions import override - - -@dataclass(eq=False) -class BufferedByteReceiveStream(ByteReceiveStream): - """ - Wraps any bytes-based receive stream and uses a buffer to provide sophisticated - receiving capabilities in the form of a byte stream. - """ - - receive_stream: AnyByteReceiveStream - _buffer: bytearray = field(init=False, default_factory=bytearray) - _closed: bool = field(init=False, default=False) - - async def aclose(self) -> None: - await self.receive_stream.aclose() - self._closed = True - - @property - def buffer(self) -> bytes: - """The bytes currently in the buffer.""" - return bytes(self._buffer) - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return self.receive_stream.extra_attributes - - def feed_data(self, data: Iterable[SupportsIndex], /) -> None: - """ - Append data directly into the buffer. - - Any data in the buffer will be consumed by receive operations before receiving - anything from the wrapped stream. - - :param data: the data to append to the buffer (can be bytes or anything else - that supports ``__index__()``) - - """ - self._buffer.extend(data) - - async def receive(self, max_bytes: int = 65536) -> bytes: - if self._closed: - raise ClosedResourceError - - if self._buffer: - chunk = bytes(self._buffer[:max_bytes]) - del self._buffer[:max_bytes] - return chunk - elif isinstance(self.receive_stream, ByteReceiveStream): - return await self.receive_stream.receive(max_bytes) - else: - # With a bytes-oriented object stream, we need to handle any surplus bytes - # we get from the receive() call - chunk = await self.receive_stream.receive() - if len(chunk) > max_bytes: - # Save the surplus bytes in the buffer - self._buffer.extend(chunk[max_bytes:]) - return chunk[:max_bytes] - else: - return chunk - - async def receive_exactly(self, nbytes: int) -> bytes: - """ - Read exactly the given amount of bytes from the stream. - - :param nbytes: the number of bytes to read - :return: the bytes read - :raises ~anyio.IncompleteRead: if the stream was closed before the requested - amount of bytes could be read from the stream - - """ - while True: - remaining = nbytes - len(self._buffer) - if remaining <= 0: - retval = self._buffer[:nbytes] - del self._buffer[:nbytes] - return bytes(retval) - - try: - if isinstance(self.receive_stream, ByteReceiveStream): - chunk = await self.receive_stream.receive(remaining) - else: - chunk = await self.receive_stream.receive() - except EndOfStream as exc: - raise IncompleteRead from exc - - self._buffer.extend(chunk) - - async def receive_until(self, delimiter: bytes, max_bytes: int) -> bytes: - """ - Read from the stream until the delimiter is found or max_bytes have been read. - - :param delimiter: the marker to look for in the stream - :param max_bytes: maximum number of bytes that will be read before raising - :exc:`~anyio.DelimiterNotFound` - :return: the bytes read (not including the delimiter) - :raises ~anyio.IncompleteRead: if the stream was closed before the delimiter - was found - :raises ~anyio.DelimiterNotFound: if the delimiter is not found within the - bytes read up to the maximum allowed - - """ - delimiter_size = len(delimiter) - offset = 0 - while True: - # Check if the delimiter can be found in the current buffer - index = self._buffer.find(delimiter, offset) - if index >= 0: - found = self._buffer[:index] - del self._buffer[: index + len(delimiter) :] - return bytes(found) - - # Check if the buffer is already at or over the limit - if len(self._buffer) >= max_bytes: - raise DelimiterNotFound(max_bytes) - - # Read more data into the buffer from the socket - try: - data = await self.receive_stream.receive() - except EndOfStream as exc: - raise IncompleteRead from exc - - # Move the offset forward and add the new data to the buffer - offset = max(len(self._buffer) - delimiter_size + 1, 0) - self._buffer.extend(data) - - -class BufferedByteStream(BufferedByteReceiveStream, ByteStream): - """ - A full-duplex variant of :class:`BufferedByteReceiveStream`. All writes are passed - through to the wrapped stream as-is. - """ - - def __init__(self, stream: AnyByteStream): - """ - :param stream: the stream to be wrapped - - """ - super().__init__(stream) - self._stream = stream - - @override - async def send_eof(self) -> None: - await self._stream.send_eof() - - @override - async def send(self, item: bytes) -> None: - await self._stream.send(item) - - -class BufferedConnectable(ByteStreamConnectable): - """ - Wraps a byte stream connectable to produce :class:`BufferedByteStream` connections. - - Use this when you want the streams returned by :meth:`connect` to have the buffered - receive API (e.g. :meth:`~BufferedByteReceiveStream.receive_exactly` and - :meth:`~BufferedByteReceiveStream.receive_until`). - - :param connectable: the byte stream connectable to wrap - """ - - def __init__(self, connectable: AnyByteStreamConnectable): - """ - :param connectable: the connectable to wrap - - """ - self.connectable = connectable - - @override - async def connect(self) -> BufferedByteStream: - stream = await self.connectable.connect() - return BufferedByteStream(stream) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/file.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/file.py deleted file mode 100644 index 79c3d50..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/file.py +++ /dev/null @@ -1,154 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "FileReadStream", - "FileStreamAttribute", - "FileWriteStream", -) - -from collections.abc import Callable, Mapping -from io import SEEK_SET, UnsupportedOperation -from os import PathLike -from pathlib import Path -from typing import IO, Any - -from .. import ( - BrokenResourceError, - ClosedResourceError, - EndOfStream, - TypedAttributeSet, - to_thread, - typed_attribute, -) -from ..abc import ByteReceiveStream, ByteSendStream - - -class FileStreamAttribute(TypedAttributeSet): - #: the open file descriptor - file: IO[bytes] = typed_attribute() - #: the path of the file on the file system, if available (file must be a real file) - path: Path = typed_attribute() - #: the file number, if available (file must be a real file or a TTY) - fileno: int = typed_attribute() - - -class _BaseFileStream: - def __init__(self, file: IO[bytes]): - self._file = file - - async def aclose(self) -> None: - await to_thread.run_sync(self._file.close) - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - attributes: dict[Any, Callable[[], Any]] = { - FileStreamAttribute.file: lambda: self._file, - } - - if hasattr(self._file, "name"): - attributes[FileStreamAttribute.path] = lambda: Path(self._file.name) - - try: - self._file.fileno() - except UnsupportedOperation: - pass - else: - attributes[FileStreamAttribute.fileno] = lambda: self._file.fileno() - - return attributes - - -class FileReadStream(_BaseFileStream, ByteReceiveStream): - """ - A byte stream that reads from a file in the file system. - - :param file: a file that has been opened for reading in binary mode - - .. versionadded:: 3.0 - """ - - @classmethod - async def from_path(cls, path: str | PathLike[str]) -> FileReadStream: - """ - Create a file read stream by opening the given file. - - :param path: path of the file to read from - - """ - file = await to_thread.run_sync(Path(path).open, "rb") - return cls(file) - - async def receive(self, max_bytes: int = 65536) -> bytes: - try: - data = await to_thread.run_sync(self._file.read, max_bytes) - except ValueError: - raise ClosedResourceError from None - except OSError as exc: - raise BrokenResourceError from exc - - if data: - return data - else: - raise EndOfStream - - async def seek(self, position: int, whence: int = SEEK_SET) -> int: - """ - Seek the file to the given position. - - .. seealso:: :meth:`io.IOBase.seek` - - .. note:: Not all file descriptors are seekable. - - :param position: position to seek the file to - :param whence: controls how ``position`` is interpreted - :return: the new absolute position - :raises OSError: if the file is not seekable - - """ - return await to_thread.run_sync(self._file.seek, position, whence) - - async def tell(self) -> int: - """ - Return the current stream position. - - .. note:: Not all file descriptors are seekable. - - :return: the current absolute position - :raises OSError: if the file is not seekable - - """ - return await to_thread.run_sync(self._file.tell) - - -class FileWriteStream(_BaseFileStream, ByteSendStream): - """ - A byte stream that writes to a file in the file system. - - :param file: a file that has been opened for writing in binary mode - - .. versionadded:: 3.0 - """ - - @classmethod - async def from_path( - cls, path: str | PathLike[str], append: bool = False - ) -> FileWriteStream: - """ - Create a file write stream by opening the given file for writing. - - :param path: path of the file to write to - :param append: if ``True``, open the file for appending; if ``False``, any - existing file at the given path will be truncated - - """ - mode = "ab" if append else "wb" - file = await to_thread.run_sync(Path(path).open, mode) - return cls(file) - - async def send(self, item: bytes) -> None: - try: - await to_thread.run_sync(self._file.write, item) - except ValueError: - raise ClosedResourceError from None - except OSError as exc: - raise BrokenResourceError from exc diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/memory.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/memory.py deleted file mode 100644 index a3fa0c3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/memory.py +++ /dev/null @@ -1,325 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "MemoryObjectReceiveStream", - "MemoryObjectSendStream", - "MemoryObjectStreamStatistics", -) - -import warnings -from collections import OrderedDict, deque -from dataclasses import dataclass, field -from types import TracebackType -from typing import Generic, NamedTuple, TypeVar - -from .. import ( - BrokenResourceError, - ClosedResourceError, - EndOfStream, - WouldBlock, -) -from .._core._testing import TaskInfo, get_current_task -from ..abc import Event, ObjectReceiveStream, ObjectSendStream -from ..lowlevel import checkpoint - -T_Item = TypeVar("T_Item") -T_co = TypeVar("T_co", covariant=True) -T_contra = TypeVar("T_contra", contravariant=True) - - -class MemoryObjectStreamStatistics(NamedTuple): - current_buffer_used: int #: number of items stored in the buffer - #: maximum number of items that can be stored on this stream (or :data:`math.inf`) - max_buffer_size: float - open_send_streams: int #: number of unclosed clones of the send stream - open_receive_streams: int #: number of unclosed clones of the receive stream - #: number of tasks blocked on :meth:`MemoryObjectSendStream.send` - tasks_waiting_send: int - #: number of tasks blocked on :meth:`MemoryObjectReceiveStream.receive` - tasks_waiting_receive: int - - -@dataclass(eq=False) -class _MemoryObjectItemReceiver(Generic[T_Item]): - task_info: TaskInfo = field(init=False, default_factory=get_current_task) - item: T_Item = field(init=False) - - def __repr__(self) -> str: - # When item is not defined, we get following error with default __repr__: - # AttributeError: 'MemoryObjectItemReceiver' object has no attribute 'item' - item = getattr(self, "item", None) - return f"{self.__class__.__name__}(task_info={self.task_info}, item={item!r})" - - -@dataclass(eq=False) -class _MemoryObjectStreamState(Generic[T_Item]): - max_buffer_size: float = field() - buffer: deque[T_Item] = field(init=False, default_factory=deque) - open_send_channels: int = field(init=False, default=0) - open_receive_channels: int = field(init=False, default=0) - waiting_receivers: OrderedDict[Event, _MemoryObjectItemReceiver[T_Item]] = field( - init=False, default_factory=OrderedDict - ) - waiting_senders: OrderedDict[Event, T_Item] = field( - init=False, default_factory=OrderedDict - ) - - def statistics(self) -> MemoryObjectStreamStatistics: - return MemoryObjectStreamStatistics( - len(self.buffer), - self.max_buffer_size, - self.open_send_channels, - self.open_receive_channels, - len(self.waiting_senders), - len(self.waiting_receivers), - ) - - -@dataclass(eq=False) -class MemoryObjectReceiveStream(Generic[T_co], ObjectReceiveStream[T_co]): - _state: _MemoryObjectStreamState[T_co] - _closed: bool = field(init=False, default=False) - - def __post_init__(self) -> None: - self._state.open_receive_channels += 1 - - def receive_nowait(self) -> T_co: - """ - Receive the next item if it can be done without waiting. - - :return: the received item - :raises ~anyio.ClosedResourceError: if this send stream has been closed - :raises ~anyio.EndOfStream: if the buffer is empty and this stream has been - closed from the sending end - :raises ~anyio.WouldBlock: if there are no items in the buffer and no tasks - waiting to send - - """ - if self._closed: - raise ClosedResourceError - - if self._state.waiting_senders: - # Get the item from the next sender - send_event, item = self._state.waiting_senders.popitem(last=False) - self._state.buffer.append(item) - send_event.set() - - if self._state.buffer: - return self._state.buffer.popleft() - elif not self._state.open_send_channels: - raise EndOfStream - - raise WouldBlock - - async def receive(self) -> T_co: - await checkpoint() - try: - return self.receive_nowait() - except WouldBlock: - # Add ourselves in the queue - receive_event = Event() - receiver = _MemoryObjectItemReceiver[T_co]() - self._state.waiting_receivers[receive_event] = receiver - - try: - await receive_event.wait() - finally: - self._state.waiting_receivers.pop(receive_event, None) - - try: - return receiver.item - except AttributeError: - raise EndOfStream from None - - def clone(self) -> MemoryObjectReceiveStream[T_co]: - """ - Create a clone of this receive stream. - - Each clone can be closed separately. Only when all clones have been closed will - the receiving end of the memory stream be considered closed by the sending ends. - - :return: the cloned stream - - """ - if self._closed: - raise ClosedResourceError - - return MemoryObjectReceiveStream(_state=self._state) - - def close(self) -> None: - """ - Close the stream. - - This works the exact same way as :meth:`aclose`, but is provided as a special - case for the benefit of synchronous callbacks. - - """ - if not self._closed: - self._closed = True - self._state.open_receive_channels -= 1 - if self._state.open_receive_channels == 0: - send_events = list(self._state.waiting_senders.keys()) - for event in send_events: - event.set() - - async def aclose(self) -> None: - self.close() - - def statistics(self) -> MemoryObjectStreamStatistics: - """ - Return statistics about the current state of this stream. - - .. versionadded:: 3.0 - """ - return self._state.statistics() - - def __enter__(self) -> MemoryObjectReceiveStream[T_co]: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.close() - - def __del__(self) -> None: - if not self._closed: - warnings.warn( - f"Unclosed <{self.__class__.__name__} at {id(self):x}>", - ResourceWarning, - stacklevel=1, - source=self, - ) - - -@dataclass(eq=False) -class MemoryObjectSendStream(Generic[T_contra], ObjectSendStream[T_contra]): - _state: _MemoryObjectStreamState[T_contra] - _closed: bool = field(init=False, default=False) - - def __post_init__(self) -> None: - self._state.open_send_channels += 1 - - def send_nowait(self, item: T_contra) -> None: - """ - Send an item immediately if it can be done without waiting. - - :param item: the item to send - :raises ~anyio.ClosedResourceError: if this send stream has been closed - :raises ~anyio.BrokenResourceError: if the stream has been closed from the - receiving end - :raises ~anyio.WouldBlock: if the buffer is full and there are no tasks waiting - to receive - - """ - if self._closed: - raise ClosedResourceError - if not self._state.open_receive_channels: - raise BrokenResourceError - - while self._state.waiting_receivers: - receive_event, receiver = self._state.waiting_receivers.popitem(last=False) - if not receiver.task_info.has_pending_cancellation(): - receiver.item = item - receive_event.set() - return - - if len(self._state.buffer) < self._state.max_buffer_size: - self._state.buffer.append(item) - else: - raise WouldBlock - - async def send(self, item: T_contra) -> None: - """ - Send an item to the stream. - - If the buffer is full, this method blocks until there is again room in the - buffer or the item can be sent directly to a receiver. - - :param item: the item to send - :raises ~anyio.ClosedResourceError: if this send stream has been closed - :raises ~anyio.BrokenResourceError: if the stream has been closed from the - receiving end - - """ - await checkpoint() - try: - self.send_nowait(item) - except WouldBlock: - # Wait until there's someone on the receiving end - send_event = Event() - self._state.waiting_senders[send_event] = item - try: - await send_event.wait() - except BaseException: - self._state.waiting_senders.pop(send_event, None) - raise - - if send_event in self._state.waiting_senders: - del self._state.waiting_senders[send_event] - raise BrokenResourceError from None - - def clone(self) -> MemoryObjectSendStream[T_contra]: - """ - Create a clone of this send stream. - - Each clone can be closed separately. Only when all clones have been closed will - the sending end of the memory stream be considered closed by the receiving ends. - - :return: the cloned stream - - """ - if self._closed: - raise ClosedResourceError - - return MemoryObjectSendStream(_state=self._state) - - def close(self) -> None: - """ - Close the stream. - - This works the exact same way as :meth:`aclose`, but is provided as a special - case for the benefit of synchronous callbacks. - - """ - if not self._closed: - self._closed = True - self._state.open_send_channels -= 1 - if self._state.open_send_channels == 0: - receive_events = list(self._state.waiting_receivers.keys()) - self._state.waiting_receivers.clear() - for event in receive_events: - event.set() - - async def aclose(self) -> None: - self.close() - - def statistics(self) -> MemoryObjectStreamStatistics: - """ - Return statistics about the current state of this stream. - - .. versionadded:: 3.0 - """ - return self._state.statistics() - - def __enter__(self) -> MemoryObjectSendStream[T_contra]: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_val: BaseException | None, - exc_tb: TracebackType | None, - ) -> None: - self.close() - - def __del__(self) -> None: - if not self._closed: - warnings.warn( - f"Unclosed <{self.__class__.__name__} at {id(self):x}>", - ResourceWarning, - stacklevel=1, - source=self, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/stapled.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/stapled.py deleted file mode 100644 index 9248b68..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/stapled.py +++ /dev/null @@ -1,147 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "MultiListener", - "StapledByteStream", - "StapledObjectStream", -) - -from collections.abc import Callable, Mapping, Sequence -from dataclasses import dataclass -from typing import Any, Generic, TypeVar - -from ..abc import ( - ByteReceiveStream, - ByteSendStream, - ByteStream, - Listener, - ObjectReceiveStream, - ObjectSendStream, - ObjectStream, - TaskGroup, -) - -T_Item = TypeVar("T_Item") -T_Stream = TypeVar("T_Stream") - - -@dataclass(eq=False) -class StapledByteStream(ByteStream): - """ - Combines two byte streams into a single, bidirectional byte stream. - - Extra attributes will be provided from both streams, with the receive stream - providing the values in case of a conflict. - - :param ByteSendStream send_stream: the sending byte stream - :param ByteReceiveStream receive_stream: the receiving byte stream - """ - - send_stream: ByteSendStream - receive_stream: ByteReceiveStream - - async def receive(self, max_bytes: int = 65536) -> bytes: - return await self.receive_stream.receive(max_bytes) - - async def send(self, item: bytes) -> None: - await self.send_stream.send(item) - - async def send_eof(self) -> None: - await self.send_stream.aclose() - - async def aclose(self) -> None: - await self.send_stream.aclose() - await self.receive_stream.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return { - **self.send_stream.extra_attributes, - **self.receive_stream.extra_attributes, - } - - -@dataclass(eq=False) -class StapledObjectStream(Generic[T_Item], ObjectStream[T_Item]): - """ - Combines two object streams into a single, bidirectional object stream. - - Extra attributes will be provided from both streams, with the receive stream - providing the values in case of a conflict. - - :param ObjectSendStream send_stream: the sending object stream - :param ObjectReceiveStream receive_stream: the receiving object stream - """ - - send_stream: ObjectSendStream[T_Item] - receive_stream: ObjectReceiveStream[T_Item] - - async def receive(self) -> T_Item: - return await self.receive_stream.receive() - - async def send(self, item: T_Item) -> None: - await self.send_stream.send(item) - - async def send_eof(self) -> None: - await self.send_stream.aclose() - - async def aclose(self) -> None: - await self.send_stream.aclose() - await self.receive_stream.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return { - **self.send_stream.extra_attributes, - **self.receive_stream.extra_attributes, - } - - -@dataclass(eq=False) -class MultiListener(Generic[T_Stream], Listener[T_Stream]): - """ - Combines multiple listeners into one, serving connections from all of them at once. - - Any MultiListeners in the given collection of listeners will have their listeners - moved into this one. - - Extra attributes are provided from each listener, with each successive listener - overriding any conflicting attributes from the previous one. - - :param listeners: listeners to serve - :type listeners: Sequence[Listener[T_Stream]] - """ - - listeners: Sequence[Listener[T_Stream]] - - def __post_init__(self) -> None: - listeners: list[Listener[T_Stream]] = [] - for listener in self.listeners: - if isinstance(listener, MultiListener): - listeners.extend(listener.listeners) - del listener.listeners[:] # type: ignore[attr-defined] - else: - listeners.append(listener) - - self.listeners = listeners - - async def serve( - self, handler: Callable[[T_Stream], Any], task_group: TaskGroup | None = None - ) -> None: - from .. import create_task_group - - async with create_task_group() as tg: - for listener in self.listeners: - tg.start_soon(listener.serve, handler, task_group) - - async def aclose(self) -> None: - for listener in self.listeners: - await listener.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - attributes: dict = {} - for listener in self.listeners: - attributes.update(listener.extra_attributes) - - return attributes diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/text.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/text.py deleted file mode 100644 index 296cd25..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/text.py +++ /dev/null @@ -1,176 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "TextConnectable", - "TextReceiveStream", - "TextSendStream", - "TextStream", -) - -import codecs -import sys -from collections.abc import Callable, Mapping -from dataclasses import InitVar, dataclass, field -from typing import Any - -from ..abc import ( - AnyByteReceiveStream, - AnyByteSendStream, - AnyByteStream, - AnyByteStreamConnectable, - ObjectReceiveStream, - ObjectSendStream, - ObjectStream, - ObjectStreamConnectable, -) - -if sys.version_info >= (3, 12): - from typing import override -else: - from typing_extensions import override - - -@dataclass(eq=False) -class TextReceiveStream(ObjectReceiveStream[str]): - """ - Stream wrapper that decodes bytes to strings using the given encoding. - - Decoding is done using :class:`~codecs.IncrementalDecoder` which returns any - completely received unicode characters as soon as they come in. - - :param transport_stream: any bytes-based receive stream - :param encoding: character encoding to use for decoding bytes to strings (defaults - to ``utf-8``) - :param errors: handling scheme for decoding errors (defaults to ``strict``; see the - `codecs module documentation`_ for a comprehensive list of options) - - .. _codecs module documentation: - https://docs.python.org/3/library/codecs.html#codec-objects - """ - - transport_stream: AnyByteReceiveStream - encoding: InitVar[str] = "utf-8" - errors: InitVar[str] = "strict" - _decoder: codecs.IncrementalDecoder = field(init=False) - - def __post_init__(self, encoding: str, errors: str) -> None: - decoder_class = codecs.getincrementaldecoder(encoding) - self._decoder = decoder_class(errors=errors) - - async def receive(self) -> str: - while True: - chunk = await self.transport_stream.receive() - decoded = self._decoder.decode(chunk) - if decoded: - return decoded - - async def aclose(self) -> None: - await self.transport_stream.aclose() - self._decoder.reset() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return self.transport_stream.extra_attributes - - -@dataclass(eq=False) -class TextSendStream(ObjectSendStream[str]): - """ - Sends strings to the wrapped stream as bytes using the given encoding. - - :param AnyByteSendStream transport_stream: any bytes-based send stream - :param str encoding: character encoding to use for encoding strings to bytes - (defaults to ``utf-8``) - :param str errors: handling scheme for encoding errors (defaults to ``strict``; see - the `codecs module documentation`_ for a comprehensive list of options) - - .. _codecs module documentation: - https://docs.python.org/3/library/codecs.html#codec-objects - """ - - transport_stream: AnyByteSendStream - encoding: InitVar[str] = "utf-8" - errors: str = "strict" - _encoder: Callable[..., tuple[bytes, int]] = field(init=False) - - def __post_init__(self, encoding: str) -> None: - self._encoder = codecs.getencoder(encoding) - - async def send(self, item: str) -> None: - encoded = self._encoder(item, self.errors)[0] - await self.transport_stream.send(encoded) - - async def aclose(self) -> None: - await self.transport_stream.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return self.transport_stream.extra_attributes - - -@dataclass(eq=False) -class TextStream(ObjectStream[str]): - """ - A bidirectional stream that decodes bytes to strings on receive and encodes strings - to bytes on send. - - Extra attributes will be provided from both streams, with the receive stream - providing the values in case of a conflict. - - :param AnyByteStream transport_stream: any bytes-based stream - :param str encoding: character encoding to use for encoding/decoding strings to/from - bytes (defaults to ``utf-8``) - :param str errors: handling scheme for encoding errors (defaults to ``strict``; see - the `codecs module documentation`_ for a comprehensive list of options) - - .. _codecs module documentation: - https://docs.python.org/3/library/codecs.html#codec-objects - """ - - transport_stream: AnyByteStream - encoding: InitVar[str] = "utf-8" - errors: InitVar[str] = "strict" - _receive_stream: TextReceiveStream = field(init=False) - _send_stream: TextSendStream = field(init=False) - - def __post_init__(self, encoding: str, errors: str) -> None: - self._receive_stream = TextReceiveStream( - self.transport_stream, encoding=encoding, errors=errors - ) - self._send_stream = TextSendStream( - self.transport_stream, encoding=encoding, errors=errors - ) - - async def receive(self) -> str: - return await self._receive_stream.receive() - - async def send(self, item: str) -> None: - await self._send_stream.send(item) - - async def send_eof(self) -> None: - await self.transport_stream.send_eof() - - async def aclose(self) -> None: - await self._send_stream.aclose() - await self._receive_stream.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return { - **self._send_stream.extra_attributes, - **self._receive_stream.extra_attributes, - } - - -class TextConnectable(ObjectStreamConnectable[str]): - def __init__(self, connectable: AnyByteStreamConnectable): - """ - :param connectable: the bytestream endpoint to wrap - - """ - self.connectable = connectable - - @override - async def connect(self) -> TextStream: - stream = await self.connectable.connect() - return TextStream(stream) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/tls.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/tls.py deleted file mode 100644 index e2a7ca5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/streams/tls.py +++ /dev/null @@ -1,421 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "TLSAttribute", - "TLSConnectable", - "TLSListener", - "TLSStream", -) - -import logging -import re -import ssl -import sys -from collections.abc import Callable, Mapping -from dataclasses import dataclass -from functools import wraps -from ssl import SSLContext -from typing import Any, TypeAlias, TypeVar - -from .. import ( - BrokenResourceError, - EndOfStream, - aclose_forcefully, - get_cancelled_exc_class, - to_thread, -) -from .._core._typedattr import TypedAttributeSet, typed_attribute -from ..abc import ( - AnyByteStream, - AnyByteStreamConnectable, - ByteStream, - ByteStreamConnectable, - Listener, - TaskGroup, -) - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -if sys.version_info >= (3, 12): - from typing import override -else: - from typing_extensions import override - -T_Retval = TypeVar("T_Retval") -PosArgsT = TypeVarTuple("PosArgsT") -_PCTRTT: TypeAlias = tuple[tuple[str, str], ...] -_PCTRTTT: TypeAlias = tuple[_PCTRTT, ...] - - -class TLSAttribute(TypedAttributeSet): - """Contains Transport Layer Security related attributes.""" - - #: the selected ALPN protocol - alpn_protocol: str | None = typed_attribute() - #: the channel binding for type ``tls-unique`` - channel_binding_tls_unique: bytes = typed_attribute() - #: the selected cipher - cipher: tuple[str, str, int] = typed_attribute() - #: the peer certificate in dictionary form (see :meth:`ssl.SSLSocket.getpeercert` - # for more information) - peer_certificate: None | (dict[str, str | _PCTRTTT | _PCTRTT]) = typed_attribute() - #: the peer certificate in binary form - peer_certificate_binary: bytes | None = typed_attribute() - #: ``True`` if this is the server side of the connection - server_side: bool = typed_attribute() - #: ciphers shared by the client during the TLS handshake (``None`` if this is the - #: client side) - shared_ciphers: list[tuple[str, str, int]] | None = typed_attribute() - #: the :class:`~ssl.SSLObject` used for encryption - ssl_object: ssl.SSLObject = typed_attribute() - #: ``True`` if this stream does (and expects) a closing TLS handshake when the - #: stream is being closed - standard_compatible: bool = typed_attribute() - #: the TLS protocol version (e.g. ``TLSv1.2``) - tls_version: str = typed_attribute() - - -@dataclass(eq=False) -class TLSStream(ByteStream): - """ - A stream wrapper that encrypts all sent data and decrypts received data. - - This class has no public initializer; use :meth:`wrap` instead. - All extra attributes from :class:`~TLSAttribute` are supported. - - :var AnyByteStream transport_stream: the wrapped stream - - """ - - transport_stream: AnyByteStream - standard_compatible: bool - _ssl_object: ssl.SSLObject - _read_bio: ssl.MemoryBIO - _write_bio: ssl.MemoryBIO - - @classmethod - async def wrap( - cls, - transport_stream: AnyByteStream, - *, - server_side: bool | None = None, - hostname: str | None = None, - ssl_context: ssl.SSLContext | None = None, - standard_compatible: bool = True, - ) -> TLSStream: - """ - Wrap an existing stream with Transport Layer Security. - - This performs a TLS handshake with the peer. - - :param transport_stream: a bytes-transporting stream to wrap - :param server_side: ``True`` if this is the server side of the connection, - ``False`` if this is the client side (if omitted, will be set to ``False`` - if ``hostname`` has been provided, ``False`` otherwise). Used only to create - a default context when an explicit context has not been provided. - :param hostname: host name of the peer (if host name checking is desired) - :param ssl_context: the SSLContext object to use (if not provided, a secure - default will be created) - :param standard_compatible: if ``False``, skip the closing handshake when - closing the connection, and don't raise an exception if the peer does the - same - :raises ~ssl.SSLError: if the TLS handshake fails - - """ - if server_side is None: - server_side = not hostname - - if not ssl_context: - purpose = ( - ssl.Purpose.CLIENT_AUTH if server_side else ssl.Purpose.SERVER_AUTH - ) - ssl_context = ssl.create_default_context(purpose) - - # Re-enable detection of unexpected EOFs if it was disabled by Python - if hasattr(ssl, "OP_IGNORE_UNEXPECTED_EOF"): - ssl_context.options &= ~ssl.OP_IGNORE_UNEXPECTED_EOF - - bio_in = ssl.MemoryBIO() - bio_out = ssl.MemoryBIO() - - # External SSLContext implementations may do blocking I/O in wrap_bio(), - # but the standard library implementation won't - if type(ssl_context) is ssl.SSLContext: - ssl_object = ssl_context.wrap_bio( - bio_in, bio_out, server_side=server_side, server_hostname=hostname - ) - else: - ssl_object = await to_thread.run_sync( - ssl_context.wrap_bio, - bio_in, - bio_out, - server_side, - hostname, - None, - ) - - wrapper = cls( - transport_stream=transport_stream, - standard_compatible=standard_compatible, - _ssl_object=ssl_object, - _read_bio=bio_in, - _write_bio=bio_out, - ) - await wrapper._call_sslobject_method(ssl_object.do_handshake) - return wrapper - - async def _call_sslobject_method( - self, func: Callable[[Unpack[PosArgsT]], T_Retval], *args: Unpack[PosArgsT] - ) -> T_Retval: - while True: - try: - result = func(*args) - except ssl.SSLWantReadError: - try: - # Flush any pending writes first - if self._write_bio.pending: - await self.transport_stream.send(self._write_bio.read()) - - data = await self.transport_stream.receive() - except EndOfStream: - self._read_bio.write_eof() - except OSError as exc: - self._read_bio.write_eof() - self._write_bio.write_eof() - raise BrokenResourceError from exc - else: - self._read_bio.write(data) - except ssl.SSLWantWriteError: - await self.transport_stream.send(self._write_bio.read()) - except ssl.SSLSyscallError as exc: - self._read_bio.write_eof() - self._write_bio.write_eof() - raise BrokenResourceError from exc - except ssl.SSLError as exc: - self._read_bio.write_eof() - self._write_bio.write_eof() - if isinstance(exc, ssl.SSLEOFError) or ( - exc.strerror and "UNEXPECTED_EOF_WHILE_READING" in exc.strerror - ): - if self.standard_compatible: - raise BrokenResourceError from exc - else: - raise EndOfStream from None - - raise - else: - # Flush any pending writes first - if self._write_bio.pending: - await self.transport_stream.send(self._write_bio.read()) - - return result - - async def unwrap(self) -> tuple[AnyByteStream, bytes]: - """ - Does the TLS closing handshake. - - :return: a tuple of (wrapped byte stream, bytes left in the read buffer) - - """ - await self._call_sslobject_method(self._ssl_object.unwrap) - self._read_bio.write_eof() - self._write_bio.write_eof() - return self.transport_stream, self._read_bio.read() - - async def aclose(self) -> None: - if self.standard_compatible: - try: - await self.unwrap() - except BaseException: - await aclose_forcefully(self.transport_stream) - raise - - await self.transport_stream.aclose() - - async def receive(self, max_bytes: int = 65536) -> bytes: - data = await self._call_sslobject_method(self._ssl_object.read, max_bytes) - if not data: - raise EndOfStream - - return data - - async def send(self, item: bytes) -> None: - await self._call_sslobject_method(self._ssl_object.write, item) - - async def send_eof(self) -> None: - tls_version = self.extra(TLSAttribute.tls_version) - match = re.match(r"TLSv(\d+)(?:\.(\d+))?", tls_version) - if match: - major, minor = int(match.group(1)), int(match.group(2) or 0) - if (major, minor) < (1, 3): - raise NotImplementedError( - f"send_eof() requires at least TLSv1.3; current " - f"session uses {tls_version}" - ) - - raise NotImplementedError( - "send_eof() has not yet been implemented for TLS streams" - ) - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return { - **self.transport_stream.extra_attributes, - TLSAttribute.alpn_protocol: self._ssl_object.selected_alpn_protocol, - TLSAttribute.channel_binding_tls_unique: ( - self._ssl_object.get_channel_binding - ), - TLSAttribute.cipher: self._ssl_object.cipher, - TLSAttribute.peer_certificate: lambda: self._ssl_object.getpeercert(False), - TLSAttribute.peer_certificate_binary: lambda: self._ssl_object.getpeercert( - True - ), - TLSAttribute.server_side: lambda: self._ssl_object.server_side, - TLSAttribute.shared_ciphers: lambda: ( - self._ssl_object.shared_ciphers() - if self._ssl_object.server_side - else None - ), - TLSAttribute.standard_compatible: lambda: self.standard_compatible, - TLSAttribute.ssl_object: lambda: self._ssl_object, - TLSAttribute.tls_version: self._ssl_object.version, - } - - -@dataclass(eq=False) -class TLSListener(Listener[TLSStream]): - """ - A convenience listener that wraps another listener and auto-negotiates a TLS session - on every accepted connection. - - If the TLS handshake times out or raises an exception, - :meth:`handle_handshake_error` is called to do whatever post-mortem processing is - deemed necessary. - - Supports only the :attr:`~TLSAttribute.standard_compatible` extra attribute. - - :param Listener listener: the listener to wrap - :param ssl_context: the SSL context object - :param standard_compatible: a flag passed through to :meth:`TLSStream.wrap` - :param handshake_timeout: time limit for the TLS handshake - (passed to :func:`~anyio.fail_after`) - """ - - listener: Listener[Any] - ssl_context: ssl.SSLContext - standard_compatible: bool = True - handshake_timeout: float = 30 - - @staticmethod - async def handle_handshake_error(exc: BaseException, stream: AnyByteStream) -> None: - """ - Handle an exception raised during the TLS handshake. - - This method does 3 things: - - #. Forcefully closes the original stream - #. Logs the exception (unless it was a cancellation exception) using the - ``anyio.streams.tls`` logger - #. Reraises the exception if it was a base exception or a cancellation exception - - :param exc: the exception - :param stream: the original stream - - """ - await aclose_forcefully(stream) - - # Log all except cancellation exceptions - if not isinstance(exc, get_cancelled_exc_class()): - # CPython (as of 3.11.5) returns incorrect `sys.exc_info()` here when using - # any asyncio implementation, so we explicitly pass the exception to log - # (https://github.com/python/cpython/issues/108668). Trio does not have this - # issue because it works around the CPython bug. - logging.getLogger(__name__).exception( - "Error during TLS handshake", exc_info=exc - ) - - # Only reraise base exceptions and cancellation exceptions - if not isinstance(exc, Exception) or isinstance(exc, get_cancelled_exc_class()): - raise - - async def serve( - self, - handler: Callable[[TLSStream], Any], - task_group: TaskGroup | None = None, - ) -> None: - @wraps(handler) - async def handler_wrapper(stream: AnyByteStream) -> None: - from .. import fail_after - - try: - with fail_after(self.handshake_timeout): - wrapped_stream = await TLSStream.wrap( - stream, - ssl_context=self.ssl_context, - standard_compatible=self.standard_compatible, - ) - except BaseException as exc: - await self.handle_handshake_error(exc, stream) - else: - await handler(wrapped_stream) - - await self.listener.serve(handler_wrapper, task_group) - - async def aclose(self) -> None: - await self.listener.aclose() - - @property - def extra_attributes(self) -> Mapping[Any, Callable[[], Any]]: - return { - TLSAttribute.standard_compatible: lambda: self.standard_compatible, - } - - -class TLSConnectable(ByteStreamConnectable): - """ - Wraps another connectable and does TLS negotiation after a successful connection. - - :param connectable: the connectable to wrap - :param hostname: host name of the server (if host name checking is desired) - :param ssl_context: the SSLContext object to use (if not provided, a secure default - will be created) - :param standard_compatible: if ``False``, skip the closing handshake when closing - the connection, and don't raise an exception if the server does the same - """ - - def __init__( - self, - connectable: AnyByteStreamConnectable, - *, - hostname: str | None = None, - ssl_context: ssl.SSLContext | None = None, - standard_compatible: bool = True, - ) -> None: - self.connectable = connectable - self.ssl_context: SSLContext = ssl_context or ssl.create_default_context( - ssl.Purpose.SERVER_AUTH - ) - if not isinstance(self.ssl_context, ssl.SSLContext): - raise TypeError( - "ssl_context must be an instance of ssl.SSLContext, not " - f"{type(self.ssl_context).__name__}" - ) - self.hostname = hostname - self.standard_compatible = standard_compatible - - @override - async def connect(self) -> TLSStream: - stream = await self.connectable.connect() - try: - return await TLSStream.wrap( - stream, - hostname=self.hostname, - ssl_context=self.ssl_context, - standard_compatible=self.standard_compatible, - ) - except BaseException: - await aclose_forcefully(stream) - raise diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_interpreter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_interpreter.py deleted file mode 100644 index 694dbe7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_interpreter.py +++ /dev/null @@ -1,246 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "run_sync", - "current_default_interpreter_limiter", -) - -import atexit -import os -import sys -from collections import deque -from collections.abc import Callable -from typing import Any, Final, TypeVar - -from . import current_time, to_thread -from ._core._exceptions import BrokenWorkerInterpreter -from ._core._synchronization import CapacityLimiter -from .lowlevel import RunVar - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -if sys.version_info >= (3, 14): - from concurrent.interpreters import ExecutionFailed, create - - def _interp_call( - func: Callable[..., Any], args: tuple[Any, ...] - ) -> tuple[Any, bool]: - try: - retval = func(*args) - except BaseException as exc: - return exc, True - else: - return retval, False - - class _Worker: - last_used: float = 0 - - def __init__(self) -> None: - self._interpreter = create() - - def destroy(self) -> None: - self._interpreter.close() - - def call( - self, - func: Callable[..., T_Retval], - args: tuple[Any, ...], - ) -> T_Retval: - try: - res, is_exception = self._interpreter.call(_interp_call, func, args) - except ExecutionFailed as exc: - raise BrokenWorkerInterpreter(exc.excinfo) from exc - - if is_exception: - raise res - - return res -elif sys.version_info >= (3, 13): - import _interpqueues - import _interpreters - - UNBOUND: Final = 2 # I have no clue how this works, but it was used in the stdlib - FMT_UNPICKLED: Final = 0 - FMT_PICKLED: Final = 1 - QUEUE_PICKLE_ARGS: Final = (FMT_PICKLED, UNBOUND) - QUEUE_UNPICKLE_ARGS: Final = (FMT_UNPICKLED, UNBOUND) - - _run_func = compile( - """ -import _interpqueues -from _interpreters import NotShareableError -from pickle import loads, dumps, HIGHEST_PROTOCOL - -QUEUE_PICKLE_ARGS = (1, 2) -QUEUE_UNPICKLE_ARGS = (0, 2) - -item = _interpqueues.get(queue_id)[0] -try: - func, args = loads(item) - retval = func(*args) -except BaseException as exc: - is_exception = True - retval = exc -else: - is_exception = False - -try: - _interpqueues.put(queue_id, (retval, is_exception), *QUEUE_UNPICKLE_ARGS) -except NotShareableError: - retval = dumps(retval, HIGHEST_PROTOCOL) - _interpqueues.put(queue_id, (retval, is_exception), *QUEUE_PICKLE_ARGS) - """, - "", - "exec", - ) - - class _Worker: - last_used: float = 0 - - def __init__(self) -> None: - self._interpreter_id = _interpreters.create() - self._queue_id = _interpqueues.create(1, *QUEUE_UNPICKLE_ARGS) - _interpreters.set___main___attrs( - self._interpreter_id, {"queue_id": self._queue_id} - ) - - def destroy(self) -> None: - _interpqueues.destroy(self._queue_id) - _interpreters.destroy(self._interpreter_id) - - def call( - self, - func: Callable[..., T_Retval], - args: tuple[Any, ...], - ) -> T_Retval: - import pickle - - item = pickle.dumps((func, args), pickle.HIGHEST_PROTOCOL) - _interpqueues.put(self._queue_id, item, *QUEUE_PICKLE_ARGS) - exc_info = _interpreters.exec(self._interpreter_id, _run_func) - if exc_info: - raise BrokenWorkerInterpreter(exc_info) - - res = _interpqueues.get(self._queue_id) - (res, is_exception), fmt = res[:2] - if fmt == FMT_PICKLED: - res = pickle.loads(res) - - if is_exception: - raise res - - return res -else: - - class _Worker: - last_used: float = 0 - - def __init__(self) -> None: - raise RuntimeError("subinterpreters require at least Python 3.13") - - def call( - self, - func: Callable[..., T_Retval], - args: tuple[Any, ...], - ) -> T_Retval: - raise NotImplementedError - - def destroy(self) -> None: - pass - - -DEFAULT_CPU_COUNT: Final = 8 # this is just an arbitrarily selected value -MAX_WORKER_IDLE_TIME = ( - 30 # seconds a subinterpreter can be idle before becoming eligible for pruning -) - -T_Retval = TypeVar("T_Retval") -PosArgsT = TypeVarTuple("PosArgsT") - -_idle_workers = RunVar[deque[_Worker]]("_available_workers") -_default_interpreter_limiter = RunVar[CapacityLimiter]("_default_interpreter_limiter") - - -def _stop_workers(workers: deque[_Worker]) -> None: - for worker in workers: - worker.destroy() - - workers.clear() - - -async def run_sync( - func: Callable[[Unpack[PosArgsT]], T_Retval], - *args: Unpack[PosArgsT], - limiter: CapacityLimiter | None = None, -) -> T_Retval: - """ - Call the given function with the given arguments in a subinterpreter. - - .. warning:: On Python 3.13, the :mod:`concurrent.interpreters` module was not yet - available, so the code path for that Python version relies on an undocumented, - private API. As such, it is recommended to not rely on this function for anything - mission-critical on Python 3.13. - - :param func: a callable - :param args: the positional arguments for the callable - :param limiter: capacity limiter to use to limit the total number of subinterpreters - running (if omitted, the default limiter is used) - :return: the result of the call - :raises BrokenWorkerInterpreter: if there's an internal error in a subinterpreter - - """ - if limiter is None: - limiter = current_default_interpreter_limiter() - - try: - idle_workers = _idle_workers.get() - except LookupError: - idle_workers = deque() - _idle_workers.set(idle_workers) - atexit.register(_stop_workers, idle_workers) - - async with limiter: - try: - worker = idle_workers.pop() - except IndexError: - worker = _Worker() - - try: - return await to_thread.run_sync( - worker.call, - func, - args, - limiter=limiter, - ) - finally: - # Prune workers that have been idle for too long - now = current_time() - while idle_workers: - if now - idle_workers[0].last_used <= MAX_WORKER_IDLE_TIME: - break - - await to_thread.run_sync(idle_workers.popleft().destroy, limiter=limiter) - - worker.last_used = current_time() - idle_workers.append(worker) - - -def current_default_interpreter_limiter() -> CapacityLimiter: - """ - Return the capacity limiter used by default to limit the number of concurrently - running subinterpreters. - - Defaults to the number of CPU cores. - - :return: a capacity limiter object - - """ - try: - return _default_interpreter_limiter.get() - except LookupError: - limiter = CapacityLimiter(os.cpu_count() or DEFAULT_CPU_COUNT) - _default_interpreter_limiter.set(limiter) - return limiter diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_process.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_process.py deleted file mode 100644 index fd65b18..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_process.py +++ /dev/null @@ -1,268 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "current_default_process_limiter", - "process_worker", - "run_sync", -) - -import os -import pickle -import runpy -import subprocess -import sys -from collections import deque -from collections.abc import Callable -from types import ModuleType -from typing import TypeVar, cast - -from ._core._eventloop import current_time, get_async_backend, get_cancelled_exc_class -from ._core._exceptions import BrokenWorkerProcess -from ._core._subprocesses import open_process -from ._core._synchronization import CapacityLimiter -from ._core._tasks import CancelScope, fail_after -from .abc import ByteReceiveStream, ByteSendStream, Process -from .lowlevel import RunVar, checkpoint_if_cancelled -from .streams.buffered import BufferedByteReceiveStream - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -WORKER_MAX_IDLE_TIME = 300 # 5 minutes - -T_Retval = TypeVar("T_Retval") -PosArgsT = TypeVarTuple("PosArgsT") - -_process_pool_workers: RunVar[set[Process]] = RunVar("_process_pool_workers") -_process_pool_idle_workers: RunVar[deque[tuple[Process, float]]] = RunVar( - "_process_pool_idle_workers" -) -_default_process_limiter: RunVar[CapacityLimiter] = RunVar("_default_process_limiter") - - -async def run_sync( # type: ignore[return] - func: Callable[[Unpack[PosArgsT]], T_Retval], - *args: Unpack[PosArgsT], - cancellable: bool = False, - limiter: CapacityLimiter | None = None, -) -> T_Retval: - """ - Call the given function with the given arguments in a worker process. - - If the ``cancellable`` option is enabled and the task waiting for its completion is - cancelled, the worker process running it will be abruptly terminated using SIGKILL - (or ``terminateProcess()`` on Windows). - - :param func: a callable - :param args: positional arguments for the callable - :param cancellable: ``True`` to allow cancellation of the operation while it's - running - :param limiter: capacity limiter to use to limit the total amount of processes - running (if omitted, the default limiter is used) - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - :return: an awaitable that yields the return value of the function. - - """ - - async def send_raw_command(pickled_cmd: bytes) -> object: - try: - await stdin.send(pickled_cmd) - response = await buffered.receive_until(b"\n", 50) - status, length = response.split(b" ") - if status not in (b"RETURN", b"EXCEPTION"): - raise RuntimeError( - f"Worker process returned unexpected response: {response!r}" - ) - - pickled_response = await buffered.receive_exactly(int(length)) - except BaseException as exc: - workers.discard(process) - try: - process.kill() - with CancelScope(shield=True): - await process.aclose() - except ProcessLookupError: - pass - - if isinstance(exc, get_cancelled_exc_class()): - raise - else: - raise BrokenWorkerProcess from exc - - retval = pickle.loads(pickled_response) - if status == b"EXCEPTION": - assert isinstance(retval, BaseException) - raise retval - else: - return retval - - # First pickle the request before trying to reserve a worker process - await checkpoint_if_cancelled() - request = pickle.dumps(("run", func, args), protocol=pickle.HIGHEST_PROTOCOL) - - # If this is the first run in this event loop thread, set up the necessary variables - try: - workers = _process_pool_workers.get() - idle_workers = _process_pool_idle_workers.get() - except LookupError: - workers = set() - idle_workers = deque() - _process_pool_workers.set(workers) - _process_pool_idle_workers.set(idle_workers) - get_async_backend().setup_process_pool_exit_at_shutdown(workers) - - async with limiter or current_default_process_limiter(): - # Pop processes from the pool (starting from the most recently used) until we - # find one that hasn't exited yet - process: Process - while idle_workers: - process, idle_since = idle_workers.pop() - if process.returncode is None: - stdin = cast(ByteSendStream, process.stdin) - buffered = BufferedByteReceiveStream( - cast(ByteReceiveStream, process.stdout) - ) - - # Prune any other workers that have been idle for WORKER_MAX_IDLE_TIME - # seconds or longer - now = current_time() - killed_processes: list[Process] = [] - while idle_workers: - if now - idle_workers[0][1] < WORKER_MAX_IDLE_TIME: - break - - process_to_kill, idle_since = idle_workers.popleft() - process_to_kill.kill() - workers.remove(process_to_kill) - killed_processes.append(process_to_kill) - - with CancelScope(shield=True): - for killed_process in killed_processes: - await killed_process.aclose() - - break - - workers.remove(process) - else: - command = [sys.executable, "-u", "-m", __name__] - process = await open_process( - command, stdin=subprocess.PIPE, stdout=subprocess.PIPE - ) - try: - stdin = cast(ByteSendStream, process.stdin) - buffered = BufferedByteReceiveStream( - cast(ByteReceiveStream, process.stdout) - ) - with fail_after(20): - message = await buffered.receive(6) - - if message != b"READY\n": - raise BrokenWorkerProcess( - f"Worker process returned unexpected response: {message!r}" - ) - - main_module_path = getattr(sys.modules["__main__"], "__file__", None) - pickled = pickle.dumps( - ("init", sys.path, main_module_path), - protocol=pickle.HIGHEST_PROTOCOL, - ) - await send_raw_command(pickled) - except (BrokenWorkerProcess, get_cancelled_exc_class()): - raise - except BaseException as exc: - process.kill() - raise BrokenWorkerProcess( - "Error during worker process initialization" - ) from exc - - workers.add(process) - - with CancelScope(shield=not cancellable): - try: - return cast(T_Retval, await send_raw_command(request)) - finally: - if process in workers: - idle_workers.append((process, current_time())) - - -def current_default_process_limiter() -> CapacityLimiter: - """ - Return the capacity limiter that is used by default to limit the number of worker - processes. - - :return: a capacity limiter object - - """ - try: - return _default_process_limiter.get() - except LookupError: - limiter = CapacityLimiter(os.cpu_count() or 2) - _default_process_limiter.set(limiter) - return limiter - - -def process_worker() -> None: - # Redirect standard streams to os.devnull so that user code won't interfere with the - # parent-worker communication - stdin = sys.stdin - stdout = sys.stdout - sys.stdin = open(os.devnull) - sys.stdout = open(os.devnull, "w") - - stdout.buffer.write(b"READY\n") - while True: - retval = exception = None - try: - command, *args = pickle.load(stdin.buffer) - except EOFError: - return - except BaseException as exc: - exception = exc - else: - if command == "run": - func, args = args - try: - retval = func(*args) - except BaseException as exc: - exception = exc - elif command == "init": - main_module_path: str | None - sys.path, main_module_path = args - del sys.modules["__main__"] - if main_module_path and os.path.isfile(main_module_path): - # Load the parent's main module but as __mp_main__ instead of - # __main__ (like multiprocessing does) to avoid infinite recursion - try: - main = ModuleType("__mp_main__") - main_content = runpy.run_path( - main_module_path, run_name="__mp_main__" - ) - main.__dict__.update(main_content) - sys.modules["__main__"] = sys.modules["__mp_main__"] = main - except BaseException as exc: - exception = exc - try: - if exception is not None: - status = b"EXCEPTION" - pickled = pickle.dumps(exception, pickle.HIGHEST_PROTOCOL) - else: - status = b"RETURN" - pickled = pickle.dumps(retval, pickle.HIGHEST_PROTOCOL) - except BaseException as exc: - exception = exc - status = b"EXCEPTION" - pickled = pickle.dumps(exc, pickle.HIGHEST_PROTOCOL) - - stdout.buffer.write(b"%s %d\n" % (status, len(pickled))) - stdout.buffer.write(pickled) - - # Respect SIGTERM - if isinstance(exception, SystemExit): - raise exception - - -if __name__ == "__main__": - process_worker() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_thread.py b/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_thread.py deleted file mode 100644 index 83c79d1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/anyio/to_thread.py +++ /dev/null @@ -1,78 +0,0 @@ -from __future__ import annotations - -__all__ = ( - "run_sync", - "current_default_thread_limiter", -) - -import sys -from collections.abc import Callable -from typing import TypeVar -from warnings import warn - -from ._core._eventloop import get_async_backend -from .abc import CapacityLimiter - -if sys.version_info >= (3, 11): - from typing import TypeVarTuple, Unpack -else: - from typing_extensions import TypeVarTuple, Unpack - -T_Retval = TypeVar("T_Retval") -PosArgsT = TypeVarTuple("PosArgsT") - - -async def run_sync( - func: Callable[[Unpack[PosArgsT]], T_Retval], - *args: Unpack[PosArgsT], - abandon_on_cancel: bool = False, - cancellable: bool | None = None, - limiter: CapacityLimiter | None = None, -) -> T_Retval: - """ - Call the given function with the given arguments in a worker thread. - - If the ``abandon_on_cancel`` option is enabled and the task waiting for its - completion is cancelled, the thread will still run its course but its - return value (or any raised exception) will be ignored. - - :param func: a callable - :param args: positional arguments for the callable - :param abandon_on_cancel: ``True`` to abandon the thread (leaving it to run - unchecked on own) if the host task is cancelled, ``False`` to ignore - cancellations in the host task until the operation has completed in the worker - thread - :param cancellable: deprecated alias of ``abandon_on_cancel``; will override - ``abandon_on_cancel`` if both parameters are passed - :param limiter: capacity limiter to use to limit the total amount of threads running - (if omitted, the default limiter is used) - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - :return: an awaitable that yields the return value of the function. - - """ - if cancellable is not None: - abandon_on_cancel = cancellable - warn( - "The `cancellable=` keyword argument to `anyio.to_thread.run_sync` is " - "deprecated since AnyIO 4.1.0; use `abandon_on_cancel=` instead", - DeprecationWarning, - stacklevel=2, - ) - - return await get_async_backend().run_sync_in_worker_thread( - func, args, abandon_on_cancel=abandon_on_cancel, limiter=limiter - ) - - -def current_default_thread_limiter() -> CapacityLimiter: - """ - Return the capacity limiter that is used by default to limit the number of - concurrent threads. - - :return: a capacity limiter object - :raises NoEventLoopError: if no supported asynchronous event loop is running in the - current thread - - """ - return get_async_backend().current_default_thread_limiter() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/METADATA deleted file mode 100644 index 1fb06f0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/METADATA +++ /dev/null @@ -1,84 +0,0 @@ -Metadata-Version: 2.4 -Name: click -Version: 8.4.2 -Summary: Composable command line interface toolkit -Maintainer-email: Pallets -Requires-Python: >=3.10 -Description-Content-Type: text/markdown -License-Expression: BSD-3-Clause -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: Operating System :: OS Independent -Classifier: Programming Language :: Python -Classifier: Typing :: Typed -License-File: LICENSE.txt -Requires-Dist: colorama; platform_system == 'Windows' -Project-URL: Changes, https://click.palletsprojects.com/page/changes/ -Project-URL: Chat, https://discord.gg/pallets -Project-URL: Documentation, https://click.palletsprojects.com/ -Project-URL: Donate, https://palletsprojects.com/donate -Project-URL: Source, https://github.com/pallets/click/ - -
- -# Click - -Click is a Python package for creating beautiful command line interfaces -in a composable way with as little code as necessary. It's the "Command -Line Interface Creation Kit". It's highly configurable but comes with -sensible defaults out of the box. - -It aims to make the process of writing command line tools quick and fun -while also preventing any frustration caused by the inability to -implement an intended CLI API. - -Click in three points: - -- Arbitrary nesting of commands -- Automatic help page generation -- Supports lazy loading of subcommands at runtime - - -## A Simple Example - -```python -import click - -@click.command() -@click.option("--count", default=1, help="Number of greetings.") -@click.option("--name", prompt="Your name", help="The person to greet.") -def hello(count, name): - """Simple program that greets NAME for a total of COUNT times.""" - for _ in range(count): - click.echo(f"Hello, {name}!") - -if __name__ == '__main__': - hello() -``` - -``` -$ python hello.py --count=3 -Your name: Click -Hello, Click! -Hello, Click! -Hello, Click! -``` - - -## Donate - -The Pallets organization develops and supports Click and other popular -packages. In order to grow the community of contributors and users, and -allow the maintainers to devote more time to the projects, [please -donate today][]. - -[please donate today]: https://palletsprojects.com/donate - -## Contributing - -See our [detailed contributing documentation][contrib] for many ways to -contribute, including reporting issues, requesting features, asking or answering -questions, and making PRs. - -[contrib]: https://palletsprojects.com/contributing/ - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/RECORD deleted file mode 100644 index 63fd9fd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/RECORD +++ /dev/null @@ -1,40 +0,0 @@ -click-8.4.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -click-8.4.2.dist-info/METADATA,sha256=GUyd2B1Wf5CB8CbH5AEGD7r6e8FHyOClizZotApkwDE,2621 -click-8.4.2.dist-info/RECORD,, -click-8.4.2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 -click-8.4.2.dist-info/licenses/LICENSE.txt,sha256=morRBqOU6FO_4h9C9OctWSgZoigF2ZG18ydQKSkrZY0,1475 -click/__init__.py,sha256=FId2fXCSJB3yeWD-e2uON-mBhFa2Yc9MvXGmHu8OXG0,4634 -click/__pycache__/__init__.cpython-311.pyc,, -click/__pycache__/_compat.cpython-311.pyc,, -click/__pycache__/_termui_impl.cpython-311.pyc,, -click/__pycache__/_textwrap.cpython-311.pyc,, -click/__pycache__/_utils.cpython-311.pyc,, -click/__pycache__/_winconsole.cpython-311.pyc,, -click/__pycache__/core.cpython-311.pyc,, -click/__pycache__/decorators.cpython-311.pyc,, -click/__pycache__/exceptions.cpython-311.pyc,, -click/__pycache__/formatting.cpython-311.pyc,, -click/__pycache__/globals.cpython-311.pyc,, -click/__pycache__/parser.cpython-311.pyc,, -click/__pycache__/shell_completion.cpython-311.pyc,, -click/__pycache__/termui.cpython-311.pyc,, -click/__pycache__/testing.cpython-311.pyc,, -click/__pycache__/types.cpython-311.pyc,, -click/__pycache__/utils.cpython-311.pyc,, -click/_compat.py,sha256=gPNtXQ9q-G6Qil2b-MC5CsHsGGcQ4u6YSWy9_tlmuhc,18879 -click/_termui_impl.py,sha256=CGdg24AeXijeGSzbu0Z7x3c4aaahVFjVBpEbbjhQ5K4,31730 -click/_textwrap.py,sha256=7Z0N7Vmn-66TNSTUwp6OXJbcUXRmYET9h9c2ucD8oQQ,6270 -click/_utils.py,sha256=eCZCtwJtsYD5QYkkNWJ8MY_8ABIjy8MczgMMyVY32rQ,996 -click/_winconsole.py,sha256=KSxfNbMlYRa6GOJuCLgsg2Pb3dVkgJNPqLJPae-Pa10,8543 -click/core.py,sha256=rZz76ihNTFV4Y2sxp3H-m93GxL2acD5Pqs0IobEvmuk,140616 -click/decorators.py,sha256=9e1Ndu4jhGAcP6RGdNPAwAWtuP9hEs4ETp1u3lKmH1o,19709 -click/exceptions.py,sha256=HvSY34G4auj_bYRR8-T8CU8Jwq_1-OcsRU4ezfozeEk,11862 -click/formatting.py,sha256=8SW2KGkvjfz9Q1NbeojMHuZBN0cfnQJDs4mqDP6oXms,10444 -click/globals.py,sha256=gM-Nh6A4M0HB_SgkaF5M4ncGGMDHc_flHXu9_oh4GEU,1923 -click/parser.py,sha256=oJ-fU_3mvxugIuNtHaCATZ56lgEmHRggjJiSqEgYrjA,19052 -click/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -click/shell_completion.py,sha256=5tGGY5pV3mAZ17xT23OnuKrWqzEyyLVtrJ30npUxjkU,22618 -click/termui.py,sha256=Vn9ehmrQl92z2_6R4bVZOsHUI6j8LrT8u0RzNZUpCvY,33213 -click/testing.py,sha256=S9I-pspAlJH3RvZJWDQoJXb-M0nrAEJzXcUzrVXsT34,26458 -click/types.py,sha256=9G4DB-nBj-omA_XWsYwbQ3H9BkpH82wJj-kxIPScKmA,44788 -click/utils.py,sha256=XwrDxOzU__rnHn-rvJmJcD7ecbypUKMeDJQRjN2F-OA,20942 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/WHEEL deleted file mode 100644 index d8b9936..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: flit 3.12.0 -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/licenses/LICENSE.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/licenses/LICENSE.txt deleted file mode 100644 index d12a849..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click-8.4.2.dist-info/licenses/LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright 2014 Pallets - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__init__.py deleted file mode 100644 index 64be7e0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__init__.py +++ /dev/null @@ -1,126 +0,0 @@ -""" -Click is a simple Python module inspired by the stdlib optparse to make -writing command line scripts fun. Unlike other modules, it's based -around a simple API that does not come with too much magic and is -composable. -""" - -from __future__ import annotations - -from .core import Argument as Argument -from .core import Command as Command -from .core import CommandCollection as CommandCollection -from .core import Context as Context -from .core import Group as Group -from .core import Option as Option -from .core import Parameter as Parameter -from .core import ParameterSource as ParameterSource -from .decorators import argument as argument -from .decorators import command as command -from .decorators import confirmation_option as confirmation_option -from .decorators import group as group -from .decorators import help_option as help_option -from .decorators import make_pass_decorator as make_pass_decorator -from .decorators import option as option -from .decorators import pass_context as pass_context -from .decorators import pass_obj as pass_obj -from .decorators import password_option as password_option -from .decorators import version_option as version_option -from .exceptions import Abort as Abort -from .exceptions import BadArgumentUsage as BadArgumentUsage -from .exceptions import BadOptionUsage as BadOptionUsage -from .exceptions import BadParameter as BadParameter -from .exceptions import ClickException as ClickException -from .exceptions import FileError as FileError -from .exceptions import MissingParameter as MissingParameter -from .exceptions import NoSuchCommand as NoSuchCommand -from .exceptions import NoSuchOption as NoSuchOption -from .exceptions import UsageError as UsageError -from .formatting import HelpFormatter as HelpFormatter -from .formatting import wrap_text as wrap_text -from .globals import get_current_context as get_current_context -from .termui import clear as clear -from .termui import confirm as confirm -from .termui import echo_via_pager as echo_via_pager -from .termui import edit as edit -from .termui import get_pager_file as get_pager_file -from .termui import getchar as getchar -from .termui import launch as launch -from .termui import pause as pause -from .termui import progressbar as progressbar -from .termui import prompt as prompt -from .termui import secho as secho -from .termui import style as style -from .termui import unstyle as unstyle -from .types import BOOL as BOOL -from .types import Choice as Choice -from .types import DateTime as DateTime -from .types import File as File -from .types import FLOAT as FLOAT -from .types import FloatRange as FloatRange -from .types import INT as INT -from .types import IntRange as IntRange -from .types import ParamType as ParamType -from .types import Path as Path -from .types import STRING as STRING -from .types import Tuple as Tuple -from .types import UNPROCESSED as UNPROCESSED -from .types import UUID as UUID -from .utils import echo as echo -from .utils import format_filename as format_filename -from .utils import get_app_dir as get_app_dir -from .utils import get_binary_stream as get_binary_stream -from .utils import get_text_stream as get_text_stream -from .utils import open_file as open_file - - -def __getattr__(name: str) -> object: - import warnings - - if name == "BaseCommand": - from .core import _BaseCommand - - warnings.warn( - "'BaseCommand' is deprecated and will be removed in Click 9.0. Use" - " 'Command' instead.", - DeprecationWarning, - stacklevel=2, - ) - return _BaseCommand - - if name == "MultiCommand": - from .core import _MultiCommand - - warnings.warn( - "'MultiCommand' is deprecated and will be removed in Click 9.0. Use" - " 'Group' instead.", - DeprecationWarning, - stacklevel=2, - ) - return _MultiCommand - - if name == "OptionParser": - from .parser import _OptionParser - - warnings.warn( - "'OptionParser' is deprecated and will be removed in Click 9.0. The" - " old parser is available in 'optparse'.", - DeprecationWarning, - stacklevel=2, - ) - return _OptionParser - - if name == "__version__": - import importlib.metadata - import warnings - - warnings.warn( - "The '__version__' attribute is deprecated and will be removed in" - " Click 9.1. Use feature detection or" - " 'importlib.metadata.version(\"click\")' instead.", - DeprecationWarning, - stacklevel=2, - ) - return importlib.metadata.version("click") - - raise AttributeError(name) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a20fdef..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_compat.cpython-311.pyc deleted file mode 100644 index 689bce7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_termui_impl.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_termui_impl.cpython-311.pyc deleted file mode 100644 index 27c1d65..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_termui_impl.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_textwrap.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_textwrap.cpython-311.pyc deleted file mode 100644 index 1172e5b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_textwrap.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_utils.cpython-311.pyc deleted file mode 100644 index 5b80d3a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_winconsole.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_winconsole.cpython-311.pyc deleted file mode 100644 index c0a7308..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/_winconsole.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/core.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/core.cpython-311.pyc deleted file mode 100644 index 5285eab..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/core.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/decorators.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/decorators.cpython-311.pyc deleted file mode 100644 index a394ec8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/decorators.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/exceptions.cpython-311.pyc deleted file mode 100644 index a6ddf1b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/formatting.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/formatting.cpython-311.pyc deleted file mode 100644 index 074f500..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/formatting.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/globals.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/globals.cpython-311.pyc deleted file mode 100644 index 1b5802a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/globals.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/parser.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/parser.cpython-311.pyc deleted file mode 100644 index d2a8971..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/parser.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/shell_completion.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/shell_completion.cpython-311.pyc deleted file mode 100644 index 2599068..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/shell_completion.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/termui.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/termui.cpython-311.pyc deleted file mode 100644 index 8c8b0ba..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/termui.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/testing.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/testing.cpython-311.pyc deleted file mode 100644 index 5a5bbc3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/testing.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/types.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/types.cpython-311.pyc deleted file mode 100644 index 3153462..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/types.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index b7b26fd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/click/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/_compat.py deleted file mode 100644 index 134c4f3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_compat.py +++ /dev/null @@ -1,626 +0,0 @@ -from __future__ import annotations - -import codecs -import collections.abc as cabc -import io -import os -import re -import sys -import typing as t -from types import TracebackType -from weakref import WeakKeyDictionary - -CYGWIN = sys.platform.startswith("cygwin") -WIN = sys.platform.startswith("win") -auto_wrap_for_ansi: t.Callable[[t.TextIO], t.TextIO] | None = None -_ansi_re = re.compile(r"\033\[[;?0-9]*[a-zA-Z]") - - -def _make_text_stream( - stream: t.BinaryIO, - encoding: str | None, - errors: str | None, - force_readable: bool = False, - force_writable: bool = False, -) -> t.TextIO: - if encoding is None: - encoding = get_best_encoding(stream) - if errors is None: - errors = "replace" - return _NonClosingTextIOWrapper( - stream, - encoding, - errors, - line_buffering=True, - force_readable=force_readable, - force_writable=force_writable, - ) - - -def is_ascii_encoding(encoding: str) -> bool: - """Checks if a given encoding is ascii.""" - try: - return codecs.lookup(encoding).name == "ascii" - except LookupError: - return False - - -def get_best_encoding(stream: t.IO[t.Any]) -> str: - """Returns the default stream encoding if not found.""" - rv = getattr(stream, "encoding", None) or sys.getdefaultencoding() - if is_ascii_encoding(rv): - return "utf-8" - return rv - - -class _NonClosingTextIOWrapper(io.TextIOWrapper): - def __init__( - self, - stream: t.BinaryIO, - encoding: str | None, - errors: str | None, - force_readable: bool = False, - force_writable: bool = False, - **extra: t.Any, - ) -> None: - self._stream = stream = t.cast( - t.BinaryIO, _FixupStream(stream, force_readable, force_writable) - ) - super().__init__(stream, encoding, errors, **extra) - - def __del__(self) -> None: - try: - self.detach() - except Exception: - pass - - def isatty(self) -> bool: - # https://bitbucket.org/pypy/pypy/issue/1803 - return self._stream.isatty() - - -class _FixupStream: - """The new io interface needs more from streams than streams - traditionally implement. As such, this fix-up code is necessary in - some circumstances. - - The forcing of readable and writable flags are there because some tools - put badly patched objects on sys (one such offender are certain version - of jupyter notebook). - """ - - def __init__( - self, - stream: t.BinaryIO, - force_readable: bool = False, - force_writable: bool = False, - ): - self._stream = stream - self._force_readable = force_readable - self._force_writable = force_writable - - def __getattr__(self, name: str) -> t.Any: - return getattr(self._stream, name) - - def read1(self, size: int) -> bytes: - f = getattr(self._stream, "read1", None) - - if f is not None: - return t.cast(bytes, f(size)) - - return self._stream.read(size) - - def readable(self) -> bool: - if self._force_readable: - return True - x = getattr(self._stream, "readable", None) - if x is not None: - return t.cast(bool, x()) - try: - self._stream.read(0) - except Exception: - return False - return True - - def writable(self) -> bool: - if self._force_writable: - return True - x = getattr(self._stream, "writable", None) - if x is not None: - return t.cast(bool, x()) - try: - self._stream.write(b"") - except Exception: - try: - self._stream.write(b"") - except Exception: - return False - return True - - def seekable(self) -> bool: - x = getattr(self._stream, "seekable", None) - if x is not None: - return t.cast(bool, x()) - try: - self._stream.seek(self._stream.tell()) - except Exception: - return False - return True - - -def _is_binary_reader(stream: t.IO[t.Any], default: bool = False) -> bool: - try: - return isinstance(stream.read(0), bytes) - except Exception: - return default - # This happens in some cases where the stream was already - # closed. In this case, we assume the default. - - -def _is_binary_writer(stream: t.IO[t.Any], default: bool = False) -> bool: - try: - stream.write(b"") - except Exception: - try: - stream.write("") - return False - except Exception: - pass - return default - return True - - -def _find_binary_reader(stream: t.IO[t.Any]) -> t.BinaryIO | None: - # We need to figure out if the given stream is already binary. - # This can happen because the official docs recommend detaching - # the streams to get binary streams. Some code might do this, so - # we need to deal with this case explicitly. - if _is_binary_reader(stream, False): - return t.cast(t.BinaryIO, stream) - - buf = getattr(stream, "buffer", None) - - # Same situation here; this time we assume that the buffer is - # actually binary in case it's closed. - if buf is not None and _is_binary_reader(buf, True): - return t.cast(t.BinaryIO, buf) - - return None - - -def _find_binary_writer(stream: t.IO[t.Any]) -> t.BinaryIO | None: - # We need to figure out if the given stream is already binary. - # This can happen because the official docs recommend detaching - # the streams to get binary streams. Some code might do this, so - # we need to deal with this case explicitly. - if _is_binary_writer(stream, False): - return t.cast(t.BinaryIO, stream) - - buf = getattr(stream, "buffer", None) - - # Same situation here; this time we assume that the buffer is - # actually binary in case it's closed. - if buf is not None and _is_binary_writer(buf, True): - return t.cast(t.BinaryIO, buf) - - return None - - -def _stream_is_misconfigured(stream: t.TextIO) -> bool: - """A stream is misconfigured if its encoding is ASCII.""" - # If the stream does not have an encoding set, we assume it's set - # to ASCII. This appears to happen in certain unittest - # environments. It's not quite clear what the correct behavior is - # but this at least will force Click to recover somehow. - return is_ascii_encoding(getattr(stream, "encoding", None) or "ascii") - - -def _is_compat_stream_attr(stream: t.TextIO, attr: str, value: str | None) -> bool: - """A stream attribute is compatible if it is equal to the - desired value or the desired value is unset and the attribute - has a value. - """ - stream_value = getattr(stream, attr, None) - return stream_value == value or (value is None and stream_value is not None) - - -def _is_compatible_text_stream( - stream: t.TextIO, encoding: str | None, errors: str | None -) -> bool: - """Check if a stream's encoding and errors attributes are - compatible with the desired values. - """ - return _is_compat_stream_attr( - stream, "encoding", encoding - ) and _is_compat_stream_attr(stream, "errors", errors) - - -def _force_correct_text_stream( - text_stream: t.IO[t.Any], - encoding: str | None, - errors: str | None, - is_binary: t.Callable[[t.IO[t.Any], bool], bool], - find_binary: t.Callable[[t.IO[t.Any]], t.BinaryIO | None], - force_readable: bool = False, - force_writable: bool = False, -) -> t.TextIO: - if is_binary(text_stream, False): - binary_reader = t.cast(t.BinaryIO, text_stream) - else: - text_stream = t.cast(t.TextIO, text_stream) - # If the stream looks compatible, and won't default to a - # misconfigured ascii encoding, return it as-is. - if _is_compatible_text_stream(text_stream, encoding, errors) and not ( - encoding is None and _stream_is_misconfigured(text_stream) - ): - return text_stream - - # Otherwise, get the underlying binary reader. - possible_binary_reader = find_binary(text_stream) - - # If that's not possible, silently use the original reader - # and get mojibake instead of exceptions. - if possible_binary_reader is None: - return text_stream - - binary_reader = possible_binary_reader - - # Default errors to replace instead of strict in order to get - # something that works. - if errors is None: - errors = "replace" - - # Wrap the binary stream in a text stream with the correct - # encoding parameters. - return _make_text_stream( - binary_reader, - encoding, - errors, - force_readable=force_readable, - force_writable=force_writable, - ) - - -def _force_correct_text_reader( - text_reader: t.IO[t.Any], - encoding: str | None, - errors: str | None, - force_readable: bool = False, -) -> t.TextIO: - return _force_correct_text_stream( - text_reader, - encoding, - errors, - _is_binary_reader, - _find_binary_reader, - force_readable=force_readable, - ) - - -def _force_correct_text_writer( - text_writer: t.IO[t.Any], - encoding: str | None, - errors: str | None, - force_writable: bool = False, -) -> t.TextIO: - return _force_correct_text_stream( - text_writer, - encoding, - errors, - _is_binary_writer, - _find_binary_writer, - force_writable=force_writable, - ) - - -def get_binary_stdin() -> t.BinaryIO: - reader = _find_binary_reader(sys.stdin) - if reader is None: - raise RuntimeError("Was not able to determine binary stream for sys.stdin.") - return reader - - -def get_binary_stdout() -> t.BinaryIO: - writer = _find_binary_writer(sys.stdout) - if writer is None: - raise RuntimeError("Was not able to determine binary stream for sys.stdout.") - return writer - - -def get_binary_stderr() -> t.BinaryIO: - writer = _find_binary_writer(sys.stderr) - if writer is None: - raise RuntimeError("Was not able to determine binary stream for sys.stderr.") - return writer - - -def get_text_stdin(encoding: str | None = None, errors: str | None = None) -> t.TextIO: - rv = _get_windows_console_stream(sys.stdin, encoding, errors) - if rv is not None: - return rv - return _force_correct_text_reader(sys.stdin, encoding, errors, force_readable=True) - - -def get_text_stdout(encoding: str | None = None, errors: str | None = None) -> t.TextIO: - rv = _get_windows_console_stream(sys.stdout, encoding, errors) - if rv is not None: - return rv - return _force_correct_text_writer(sys.stdout, encoding, errors, force_writable=True) - - -def get_text_stderr(encoding: str | None = None, errors: str | None = None) -> t.TextIO: - rv = _get_windows_console_stream(sys.stderr, encoding, errors) - if rv is not None: - return rv - return _force_correct_text_writer(sys.stderr, encoding, errors, force_writable=True) - - -def _wrap_io_open( - file: str | os.PathLike[str] | int, - mode: str, - encoding: str | None, - errors: str | None, -) -> t.IO[t.Any]: - """Handles not passing ``encoding`` and ``errors`` in binary mode.""" - if "b" in mode: - return open(file, mode) - - return open(file, mode, encoding=encoding, errors=errors) - - -def open_stream( - filename: str | os.PathLike[str], - mode: str = "r", - encoding: str | None = None, - errors: str | None = "strict", - atomic: bool = False, -) -> tuple[t.IO[t.Any], bool]: - binary = "b" in mode - filename = os.fspath(filename) - - # Standard streams first. These are simple because they ignore the - # atomic flag. Use fsdecode to handle Path("-"). - if os.fsdecode(filename) == "-": - if any(m in mode for m in ["w", "a", "x"]): - if binary: - return get_binary_stdout(), False - return get_text_stdout(encoding=encoding, errors=errors), False - if binary: - return get_binary_stdin(), False - return get_text_stdin(encoding=encoding, errors=errors), False - - # Non-atomic writes directly go out through the regular open functions. - if not atomic: - return _wrap_io_open(filename, mode, encoding, errors), True - - # Some usability stuff for atomic writes - if "a" in mode: - raise ValueError( - "Appending to an existing file is not supported, because that" - " would involve an expensive `copy`-operation to a temporary" - " file. Open the file in normal `w`-mode and copy explicitly" - " if that's what you're after." - ) - if "x" in mode: - raise ValueError("Use the `overwrite`-parameter instead.") - if "w" not in mode: - raise ValueError("Atomic writes only make sense with `w`-mode.") - - # Atomic writes are more complicated. They work by opening a file - # as a proxy in the same folder and then using the fdopen - # functionality to wrap it in a Python file. Then we wrap it in an - # atomic file that moves the file over on close. - import errno - import random - - try: - perm: int | None = os.stat(filename).st_mode - except OSError: - perm = None - - flags = os.O_RDWR | os.O_CREAT | os.O_EXCL - - if binary: - flags |= getattr(os, "O_BINARY", 0) - - while True: - tmp_filename = os.path.join( - os.path.dirname(filename), - f".__atomic-write{random.randrange(1 << 32):08x}", - ) - try: - fd = os.open(tmp_filename, flags, 0o666 if perm is None else perm) - break - except OSError as e: - if e.errno == errno.EEXIST or ( - os.name == "nt" - and e.errno == errno.EACCES - and os.path.isdir(e.filename) - and os.access(e.filename, os.W_OK) - ): - continue - raise - - if perm is not None: - os.chmod(tmp_filename, perm) # in case perm includes bits in umask - - f = _wrap_io_open(fd, mode, encoding, errors) - af = _AtomicFile(f, tmp_filename, os.path.realpath(filename)) - return t.cast(t.IO[t.Any], af), True - - -class _AtomicFile: - def __init__(self, f: t.IO[t.Any], tmp_filename: str, real_filename: str) -> None: - self._f = f - self._tmp_filename = tmp_filename - self._real_filename = real_filename - self.closed = False - - @property - def name(self) -> str: - return self._real_filename - - def close(self, delete: bool = False) -> None: - if self.closed: - return - self._f.close() - os.replace(self._tmp_filename, self._real_filename) - self.closed = True - - def __getattr__(self, name: str) -> t.Any: - return getattr(self._f, name) - - def __enter__(self) -> _AtomicFile: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> None: - self.close(delete=exc_type is not None) - - def __repr__(self) -> str: - return repr(self._f) - - -def strip_ansi(value: str) -> str: - return _ansi_re.sub("", value) - - -def _is_jupyter_kernel_output(stream: t.IO[t.Any]) -> bool: - while isinstance(stream, (_FixupStream, _NonClosingTextIOWrapper)): - stream = stream._stream - - return stream.__class__.__module__.startswith("ipykernel.") - - -def should_strip_ansi( - stream: t.IO[t.Any] | None = None, color: bool | None = None -) -> bool: - if color is None: - if stream is None: - stream = sys.stdin - elif hasattr(stream, "color"): - # ._termui_impl.MaybeStripAnsi handles stripping ansi itself, - # so we don't need to strip it here - return False - return not isatty(stream) and not _is_jupyter_kernel_output(stream) - return not color - - -# On Windows, wrap the output streams with colorama to support ANSI -# color codes. -# NOTE: double check is needed so mypy does not analyze this on Linux -if sys.platform.startswith("win") and WIN: - from ._winconsole import _get_windows_console_stream - - def _get_argv_encoding() -> str: - import locale - - return locale.getpreferredencoding() - - _ansi_stream_wrappers: cabc.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() - - def auto_wrap_for_ansi(stream: t.TextIO, color: bool | None = None) -> t.TextIO: - """Support ANSI color and style codes on Windows by wrapping a - stream with colorama. - """ - try: - cached = _ansi_stream_wrappers.get(stream) - except Exception: - cached = None - - if cached is not None: - return cached - - import colorama - - strip = should_strip_ansi(stream, color) - ansi_wrapper = colorama.AnsiToWin32(stream, strip=strip) - rv = t.cast(t.TextIO, ansi_wrapper.stream) - _write = rv.write - - def _safe_write(s: str) -> int: - try: - return _write(s) - except BaseException: - ansi_wrapper.reset_all() - raise - - rv.write = _safe_write # type: ignore[method-assign] - - try: - _ansi_stream_wrappers[stream] = rv - except Exception: - pass - - return rv - -else: - - def _get_argv_encoding() -> str: - return getattr(sys.stdin, "encoding", None) or sys.getfilesystemencoding() - - def _get_windows_console_stream( - f: t.TextIO, encoding: str | None, errors: str | None - ) -> t.TextIO | None: - return None - - -def term_len(x: str) -> int: - return len(strip_ansi(x)) - - -def isatty(stream: t.IO[t.Any]) -> bool: - try: - return stream.isatty() - except Exception: - return False - - -def _make_cached_stream_func( - src_func: t.Callable[[], t.TextIO | None], - wrapper_func: t.Callable[[], t.TextIO], -) -> t.Callable[[], t.TextIO | None]: - cache: cabc.MutableMapping[t.TextIO, t.TextIO] = WeakKeyDictionary() - - def func() -> t.TextIO | None: - stream = src_func() - - if stream is None: - return None - - try: - rv = cache.get(stream) - except Exception: - rv = None - if rv is not None: - return rv - rv = wrapper_func() - try: - cache[stream] = rv - except Exception: - pass - return rv - - return func - - -_default_text_stdin = _make_cached_stream_func(lambda: sys.stdin, get_text_stdin) -_default_text_stdout = _make_cached_stream_func(lambda: sys.stdout, get_text_stdout) -_default_text_stderr = _make_cached_stream_func(lambda: sys.stderr, get_text_stderr) - - -binary_streams: cabc.Mapping[str, t.Callable[[], t.BinaryIO]] = { - "stdin": get_binary_stdin, - "stdout": get_binary_stdout, - "stderr": get_binary_stderr, -} - -text_streams: cabc.Mapping[str, t.Callable[[str | None, str | None], t.TextIO]] = { - "stdin": get_text_stdin, - "stdout": get_text_stdout, - "stderr": get_text_stderr, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_termui_impl.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/_termui_impl.py deleted file mode 100644 index fadae94..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_termui_impl.py +++ /dev/null @@ -1,945 +0,0 @@ -""" -This module contains implementations for the termui module. To keep the -import time of Click down, some infrequently used functionality is -placed in this module and only imported as needed. -""" - -from __future__ import annotations - -import collections.abc as cabc -import contextlib -import io -import math -import os -import shlex -import sys -import time -import typing as t -from gettext import gettext as _ -from io import StringIO -from pathlib import Path -from types import TracebackType - -from ._compat import _default_text_stdout -from ._compat import CYGWIN -from ._compat import get_best_encoding -from ._compat import isatty -from ._compat import strip_ansi -from ._compat import term_len -from ._compat import WIN -from .exceptions import ClickException -from .utils import echo -from .utils import KeepOpenFile - -V = t.TypeVar("V") - - -class _BufferedTextPagerStream(t.Protocol): - buffer: t.BinaryIO - - -def _has_binary_buffer( - stream: t.BinaryIO | t.TextIO, -) -> t.TypeGuard[_BufferedTextPagerStream]: - # TextIO is wider than TextIOWrapper; text-only streams such as StringIO - # are valid TextIO values but do not expose a binary buffer to wrap. - return getattr(stream, "buffer", None) is not None - - -if os.name == "nt": - BEFORE_BAR = "\r" - AFTER_BAR = "\n" -else: - BEFORE_BAR = "\r\033[?25l" - AFTER_BAR = "\033[?25h\n" - - -class ProgressBar(t.Generic[V]): - def __init__( - self, - iterable: cabc.Iterable[V] | None, - length: int | None = None, - fill_char: str = "#", - empty_char: str = " ", - bar_template: str = "%(bar)s", - info_sep: str = " ", - hidden: bool = False, - show_eta: bool = True, - show_percent: bool | None = None, - show_pos: bool = False, - item_show_func: t.Callable[[V | None], str | None] | None = None, - label: str | None = None, - file: t.TextIO | None = None, - color: bool | None = None, - update_min_steps: int = 1, - width: int = 30, - ) -> None: - self.fill_char = fill_char - self.empty_char = empty_char - self.bar_template = bar_template - self.info_sep = info_sep - self.hidden = hidden - self.show_eta = show_eta - self.show_percent = show_percent - self.show_pos = show_pos - self.item_show_func = item_show_func - self.label: str = label or "" - - if file is None: - file = _default_text_stdout() - - # There are no standard streams attached to write to. For example, - # pythonw on Windows. - if file is None: - file = StringIO() - - self.file = file - self.color = color - self.update_min_steps = update_min_steps - self._completed_intervals = 0 - self.width: int = width - self.autowidth: bool = width == 0 - - if length is None: - from operator import length_hint - - length = length_hint(iterable, -1) - - if length == -1: - length = None - if iterable is None: - if length is None: - raise TypeError("iterable or length is required") - iterable = t.cast("cabc.Iterable[V]", range(length)) - self.iter: cabc.Iterable[V] = iter(iterable) - self.length = length - self.pos: int = 0 - self.avg: list[float] = [] - self.last_eta: float - self.start: float - self.start = self.last_eta = time.time() - self.eta_known: bool = False - self.finished: bool = False - self.max_width: int | None = None - self.entered: bool = False - self.current_item: V | None = None - self._is_atty = isatty(self.file) - self._last_line: str | None = None - - def __enter__(self) -> ProgressBar[V]: - self.entered = True - self.render_progress() - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> None: - self.render_finish() - - def __iter__(self) -> cabc.Iterator[V]: - if not self.entered: - raise RuntimeError("You need to use progress bars in a with block.") - self.render_progress() - return self.generator() - - def __next__(self) -> V: - # Iteration is defined in terms of a generator function, - # returned by iter(self); use that to define next(). This works - # because `self.iter` is an iterable consumed by that generator, - # so it is re-entry safe. Calling `next(self.generator())` - # twice works and does "what you want". - return next(iter(self)) - - def render_finish(self) -> None: - if self.hidden or not self._is_atty: - return - self.file.write(AFTER_BAR) - self.file.flush() - - @property - def pct(self) -> float: - if self.finished: - return 1.0 - return min(self.pos / (float(self.length or 1) or 1), 1.0) - - @property - def time_per_iteration(self) -> float: - if not self.avg: - return 0.0 - return sum(self.avg) / float(len(self.avg)) - - @property - def eta(self) -> float: - if self.length is not None and not self.finished: - return self.time_per_iteration * (self.length - self.pos) - return 0.0 - - def format_eta(self) -> str: - if self.eta_known: - t = int(self.eta) - seconds = t % 60 - t //= 60 - minutes = t % 60 - t //= 60 - hours = t % 24 - t //= 24 - if t > 0: - return "{d}{day_label} {h:02}:{m:02}:{s:02}".format( - d=t, - day_label=_("d"), - h=hours, - m=minutes, - s=seconds, - ) - else: - return f"{hours:02}:{minutes:02}:{seconds:02}" - return "" - - def format_pos(self) -> str: - pos = str(self.pos) - if self.length is not None: - pos += f"/{self.length}" - return pos - - def format_pct(self) -> str: - return f"{int(self.pct * 100): 4}%"[1:] - - def format_bar(self) -> str: - if self.length is not None: - bar_length = int(self.pct * self.width) - bar = self.fill_char * bar_length - bar += self.empty_char * (self.width - bar_length) - elif self.finished: - bar = self.fill_char * self.width - else: - chars = list(self.empty_char * (self.width or 1)) - if self.time_per_iteration != 0: - chars[ - int( - (math.cos(self.pos * self.time_per_iteration) / 2.0 + 0.5) - * self.width - ) - ] = self.fill_char - bar = "".join(chars) - return bar - - def format_progress_line(self) -> str: - show_percent = self.show_percent - - info_bits = [] - if self.length is not None and show_percent is None: - show_percent = not self.show_pos - - if self.show_pos: - info_bits.append(self.format_pos()) - if show_percent: - info_bits.append(self.format_pct()) - if self.show_eta and self.eta_known and not self.finished: - info_bits.append(self.format_eta()) - if self.item_show_func is not None: - item_info = self.item_show_func(self.current_item) - if item_info is not None: - info_bits.append(item_info) - - return ( - self.bar_template - % { - "label": self.label, - "bar": self.format_bar(), - "info": self.info_sep.join(info_bits), - } - ).rstrip() - - def render_progress(self) -> None: - if self.hidden: - return - - if not self._is_atty: - # Only output the label once if the output is not a TTY. - if self._last_line != self.label: - self._last_line = self.label - echo(self.label, file=self.file, color=self.color) - return - - buf = [] - # Update width in case the terminal has been resized - if self.autowidth: - import shutil - - old_width = self.width - self.width = 0 - clutter_length = term_len(self.format_progress_line()) - new_width = max(0, shutil.get_terminal_size().columns - clutter_length) - if new_width < old_width and self.max_width is not None: - buf.append(BEFORE_BAR) - buf.append(" " * self.max_width) - self.max_width = new_width - self.width = new_width - - clear_width = self.width - if self.max_width is not None: - clear_width = self.max_width - - buf.append(BEFORE_BAR) - line = self.format_progress_line() - line_len = term_len(line) - if self.max_width is None or self.max_width < line_len: - self.max_width = line_len - - buf.append(line) - buf.append(" " * (clear_width - line_len)) - line = "".join(buf) - # Render the line only if it changed. - - if line != self._last_line: - self._last_line = line - echo(line, file=self.file, color=self.color, nl=False) - self.file.flush() - - def make_step(self, n_steps: int) -> None: - self.pos += n_steps - if self.length is not None and self.pos >= self.length: - self.finished = True - - if (time.time() - self.last_eta) < 1.0: - return - - self.last_eta = time.time() - - # self.avg is a rolling list of length <= 7 of steps where steps are - # defined as time elapsed divided by the total progress through - # self.length. - if self.pos: - step = (time.time() - self.start) / self.pos - else: - step = time.time() - self.start - - self.avg = self.avg[-6:] + [step] - - self.eta_known = self.length is not None - - def update(self, n_steps: int, current_item: V | None = None) -> None: - """Update the progress bar by advancing a specified number of - steps, and optionally set the ``current_item`` for this new - position. - - :param n_steps: Number of steps to advance. - :param current_item: Optional item to set as ``current_item`` - for the updated position. - - .. versionchanged:: 8.0 - Added the ``current_item`` optional parameter. - - .. versionchanged:: 8.0 - Only render when the number of steps meets the - ``update_min_steps`` threshold. - """ - if current_item is not None: - self.current_item = current_item - - self._completed_intervals += n_steps - - if self._completed_intervals >= self.update_min_steps: - self.make_step(self._completed_intervals) - self.render_progress() - self._completed_intervals = 0 - - def finish(self) -> None: - self.eta_known = False - self.current_item = None - self.finished = True - - def generator(self) -> cabc.Iterator[V]: - """Return a generator which yields the items added to the bar - during construction, and updates the progress bar *after* the - yielded block returns. - """ - # WARNING: the iterator interface for `ProgressBar` relies on - # this and only works because this is a simple generator which - # doesn't create or manage additional state. If this function - # changes, the impact should be evaluated both against - # `iter(bar)` and `next(bar)`. `next()` in particular may call - # `self.generator()` repeatedly, and this must remain safe in - # order for that interface to work. - if not self.entered: - raise RuntimeError("You need to use progress bars in a with block.") - - if not self._is_atty: - yield from self.iter - else: - for rv in self.iter: - self.current_item = rv - - # This allows show_item_func to be updated before the - # item is processed. Only trigger at the beginning of - # the update interval. - if self._completed_intervals == 0: - self.render_progress() - - yield rv - self.update(1) - - self.finish() - self.render_progress() - - -class MaybeStripAnsi(io.TextIOWrapper): - def __init__(self, stream: t.IO[bytes], *, color: bool, **kwargs: t.Any): - super().__init__(stream, **kwargs) - self.color = color - - def write(self, text: str) -> int: - if not self.color: - text = strip_ansi(text) - return super().write(text) - - -def _pager_contextmanager( - color: bool | None = None, -) -> t.ContextManager[tuple[t.BinaryIO | t.TextIO, str, bool]]: - """Decide what method to use for paging through text.""" - stdout = _default_text_stdout() - - # There are no standard streams attached to write to. For example, - # pythonw on Windows. - if stdout is None: - stdout = StringIO() - - if not isatty(sys.stdin) or not isatty(stdout): - return _nullpager(stdout, color) - - # Split using POSIX mode (the default) so that quote characters are - # stripped from tokens and quoted Windows paths are preserved. - # Non-POSIX mode retains quotes in tokens, and wrapping tokens - # with shlex.quote re-introduces quoting issues on Windows. - pager_cmd_parts = shlex.split(os.environ.get("PAGER", "")) - if pager_cmd_parts: - if WIN: - return _tempfilepager(pager_cmd_parts, color) - return _pipepager(pager_cmd_parts, color) - - if os.environ.get("TERM") in ("dumb", "emacs"): - return _nullpager(stdout, color) - if WIN or sys.platform.startswith("os2"): - return _tempfilepager(["more"], color) - return _pipepager(["less"], color) - - -@contextlib.contextmanager -def get_pager_file(color: bool | None = None) -> t.Generator[t.TextIO, None, None]: - """Context manager. - - Yields a writable file-like object which can be used as an output pager. - - .. versionadded:: 8.4.0 - - :param color: controls if the pager supports ANSI colors or not. The - default is autodetection. - """ - with _pager_contextmanager(color=color) as (stream, encoding, color): - # Split streams by capabilities rather than the abstract TextIO / - # BinaryIO annotations: buffered text streams can be unwrapped to bytes, - # while other streams are yielded as-is. - wrapper: MaybeStripAnsi | None = None - if _has_binary_buffer(stream): - # Text stream backed by a binary buffer. - wrapper = MaybeStripAnsi(stream.buffer, color=color, encoding=encoding) - stream = wrapper - try: - # Narrow the BinaryIO | TextIO union that _pager_contextmanager - # yields; the caller writes text to the pager. - yield t.cast(t.TextIO, stream) - finally: - try: - stream.flush() - finally: - # Hand the binary buffer back to the pager that produced it - # rather than letting this TextIOWrapper close it on garbage - # collection. The pager owns the buffer's lifecycle: subprocess - # pipes and temp files are closed by their own helpers, while a - # borrowed stdout must stay open for the caller. detach() runs - # even if flush() raised, so the buffer is never closed here. - if wrapper is not None: - wrapper.detach() - - -@contextlib.contextmanager -def _pipepager( - cmd_parts: list[str], color: bool | None = None -) -> t.Iterator[tuple[t.BinaryIO | t.TextIO, str, bool]]: - """Page through text by feeding it to another program. - - Invokes the pager via :class:`subprocess.Popen` with an ``argv`` list - produced by :func:`shlex.split`. The command is resolved to an absolute - path with :func:`shutil.which` as recommended by the - :mod:`subprocess` docs for Windows compatibility. - - Invoking a pager through this might support colors: if piping to - ``less`` and the user hasn't decided on colors, ``LESS=-R`` is set - automatically. - """ - # Split the command into the invoked CLI and its parameters. - if not cmd_parts: - # No usable pager: fall back to stdout through _nullpager so it gets the - # same borrowed-stream handling and the caller's stream is not closed. - stdout = _default_text_stdout() or StringIO() - with _nullpager(stdout, color) as rv: - yield rv - return - - import shutil - - cmd = cmd_parts[0] - cmd_params = cmd_parts[1:] - - cmd_filepath = shutil.which(cmd) - if not cmd_filepath: - # No usable pager: fall back to stdout through _nullpager so it gets the - # same borrowed-stream handling and the caller's stream is not closed. - stdout = _default_text_stdout() or StringIO() - with _nullpager(stdout, color) as rv: - yield rv - return - - # Produces a normalized absolute path string. - # multi-call binaries such as busybox derive their identity from the symlink - # less -> busybox. resolve() causes them to misbehave. (eg. less becomes busybox) - cmd_path = Path(cmd_filepath).absolute() - cmd_name = cmd_path.name - - import subprocess - - # Make a local copy of the environment to not affect the global one. - env = dict(os.environ) - - # If we're piping to less and the user hasn't decided on colors, we enable - # them by default we find the -R flag in the command line arguments. - if color is None and cmd_name == "less": - less_flags = f"{os.environ.get('LESS', '')}{' '.join(cmd_params)}" - if not less_flags: - env["LESS"] = "-R" - color = True - elif "r" in less_flags or "R" in less_flags: - color = True - - if color is None: - color = False - - c = subprocess.Popen( - [str(cmd_path)] + cmd_params, - shell=False, - stdin=subprocess.PIPE, - env=env, - errors="replace", - text=True, - ) - stdin = t.cast(t.BinaryIO, c.stdin) - encoding = get_best_encoding(stdin) - try: - yield stdin, encoding, color - except BrokenPipeError: - # In case the pager exited unexpectedly, ignore the broken pipe error. - pass - except Exception as e: - # In case there is an exception we want to close the pager immediately - # and let the caller handle it. - # Otherwise the pager will keep running, and the user may not notice - # the error message, or worse yet it may leave the terminal in a broken state. - c.terminate() - raise e - finally: - # We must close stdin and wait for the pager to exit before we continue - try: - stdin.close() - # Close implies flush, so it might throw a BrokenPipeError if the pager - # process exited already. - except BrokenPipeError: - pass - - # Less doesn't respect ^C, but catches it for its own UI purposes (aborting - # search or other commands inside less). - # - # That means when the user hits ^C, the parent process (click) terminates, - # but less is still alive, paging the output and messing up the terminal. - # - # If the user wants to make the pager exit on ^C, they should set - # `LESS='-K'`. It's not our decision to make. - while True: - try: - c.wait() - except KeyboardInterrupt: - pass - else: - break - - -@contextlib.contextmanager -def _tempfilepager( - cmd_parts: list[str], color: bool | None = None -) -> t.Iterator[tuple[t.BinaryIO | t.TextIO, str, bool]]: - """Page through text by invoking a program on a temporary file. - - Used as the primary pager strategy on Windows (where piping to - ``more`` adds spurious ``\\r\\n``), and as a fallback on other - platforms. The command is resolved to an absolute path with - :func:`shutil.which`. - """ - # Split the command into the invoked CLI and its parameters. - if not cmd_parts: - # No usable pager: fall back to stdout through _nullpager so it gets the - # same borrowed-stream handling and the caller's stream is not closed. - stdout = _default_text_stdout() or StringIO() - with _nullpager(stdout, color) as rv: - yield rv - return - - import shutil - import subprocess - - cmd = cmd_parts[0] - - cmd_filepath = shutil.which(cmd) - if not cmd_filepath: - # No usable pager: fall back to stdout through _nullpager so it gets the - # same borrowed-stream handling and the caller's stream is not closed. - stdout = _default_text_stdout() or StringIO() - with _nullpager(stdout, color) as rv: - yield rv - return - - # Produces a normalized absolute path string. - # multi-call binaries such as busybox derive their identity from the symlink - # less -> busybox. resolve() causes them to misbehave. (eg. less becomes busybox) - cmd_path = Path(cmd_filepath).absolute() - - import tempfile - - encoding = get_best_encoding(sys.stdout) - if color is None: - color = False - # On Windows, NamedTemporaryFile cannot be opened by another process - # while Python still has it open, so we use delete=False and clean up manually - # rather than using a contextmanager here. - f = tempfile.NamedTemporaryFile(mode="wb", delete=False) - try: - yield t.cast(t.BinaryIO, f), encoding, color - f.flush() - f.close() - subprocess.call([str(cmd_path), f.name]) - finally: - os.unlink(f.name) - - -@contextlib.contextmanager -def _nullpager( - stream: t.TextIO, color: bool | None = None -) -> t.Iterator[tuple[t.TextIO, str, bool]]: - """Simply print unformatted text. This is the ultimate fallback. Don't close the - output stream in this case, since it's coming from elsewhere rather than our - internal helpers. - - The stream is wrapped in :class:`~click.utils.KeepOpenFile` so that, as a - borrowed stream, it is not closed by a ``with`` block. The wrapper that - :func:`get_pager_file` builds around it is detached rather than closed. - """ - encoding = get_best_encoding(stream) - - if color is None: - color = False - - yield KeepOpenFile(stream), encoding, color # type: ignore[misc] - - -class Editor: - def __init__( - self, - editor: str | None = None, - env: cabc.Mapping[str, str] | None = None, - require_save: bool = True, - extension: str = ".txt", - ) -> None: - self.editor = editor - self.env = env - self.require_save = require_save - self.extension = extension - - def get_editor(self) -> str: - if self.editor is not None: - return self.editor - for key in "VISUAL", "EDITOR": - rv = os.environ.get(key) - if rv: - return rv - if WIN: - return "notepad" - - from shutil import which - - for editor in "sensible-editor", "vim", "nano": - if which(editor) is not None: - return editor - return "vi" - - def edit_files(self, filenames: cabc.Iterable[str]) -> None: - """Open files in the user's editor.""" - import shlex - import subprocess - - editor = self.get_editor() - environ: dict[str, str] | None = None - - if self.env: - environ = os.environ.copy() - environ.update(self.env) - - try: - # Split in POSIX mode (the default) for the same reasons as - # in pager(): strips quotes from tokens and preserves quoted - # Windows paths. - c = subprocess.Popen( - args=shlex.split(editor) + list(filenames), - env=environ, - ) - exit_code = c.wait() - if exit_code != 0: - raise ClickException( - _("{editor}: Editing failed").format(editor=editor) - ) - except OSError as e: - raise ClickException( - _("{editor}: Editing failed: {e}").format(editor=editor, e=e) - ) from e - - @t.overload - def edit(self, text: bytes | bytearray) -> bytes | None: ... - - # We cannot know whether or not the type expected is str or bytes when None - # is passed, so str is returned as that was what was done before. - @t.overload - def edit(self, text: str | None) -> str | None: ... - - def edit(self, text: str | bytes | bytearray | None) -> str | bytes | None: - import tempfile - - if text is None: - data: bytes | bytearray = b"" - elif isinstance(text, (bytes, bytearray)): - data = text - else: - if text and not text.endswith("\n"): - text += "\n" - - if WIN: - data = text.replace("\n", "\r\n").encode("utf-8-sig") - else: - data = text.encode("utf-8") - - fd, name = tempfile.mkstemp(prefix="editor-", suffix=self.extension) - f: t.BinaryIO - - try: - with os.fdopen(fd, "wb") as f: - f.write(data) - - # If the filesystem resolution is 1 second, like Mac OS - # 10.12 Extended, or 2 seconds, like FAT32, and the editor - # closes very fast, require_save can fail. Set the modified - # time to be 2 seconds in the past to work around this. - os.utime(name, (os.path.getatime(name), os.path.getmtime(name) - 2)) - # Depending on the resolution, the exact value might not be - # recorded, so get the new recorded value. - timestamp = os.path.getmtime(name) - - self.edit_files((name,)) - - if self.require_save and os.path.getmtime(name) == timestamp: - return None - - with open(name, "rb") as f: - rv = f.read() - - if isinstance(text, (bytes, bytearray)): - return rv - - return rv.decode("utf-8-sig").replace("\r\n", "\n") - finally: - os.unlink(name) - - -def open_url(url: str, wait: bool = False, locate: bool = False) -> int: - import subprocess - - def _unquote_file(url: str) -> str: - from urllib.parse import unquote - - if url.startswith("file://"): - url = unquote(url[7:]) - - return url - - if sys.platform == "darwin": - args = ["open"] - if wait: - args.append("-W") - if locate: - args.append("-R") - args.append(_unquote_file(url)) - null = open("/dev/null", "w") - try: - return subprocess.Popen(args, stderr=null).wait() - finally: - null.close() - elif WIN: - if locate: - url = _unquote_file(url) - args = ["explorer", "/select,", url] - try: - return subprocess.call(args) - except OSError: - return 127 - else: - try: - os.startfile(url) # type: ignore[attr-defined] - except OSError: - return 127 - return 0 - elif CYGWIN: - if locate: - url = _unquote_file(url) - args = ["cygstart", os.path.dirname(url)] - else: - args = ["cygstart"] - if wait: - args.append("-w") - args.append(url) - try: - return subprocess.call(args) - except OSError: - # Command not found - return 127 - - try: - if locate: - url = os.path.dirname(_unquote_file(url)) or "." - else: - url = _unquote_file(url) - c = subprocess.Popen(["xdg-open", url]) - if wait: - return c.wait() - return 0 - except OSError: - if url.startswith(("http://", "https://")) and not locate and not wait: - import webbrowser - - webbrowser.open(url) - return 0 - return 1 - - -def _translate_ch_to_exc(ch: str) -> None: - if ch == "\x03": - raise KeyboardInterrupt() - - if ch == "\x04" and not WIN: # Unix-like, Ctrl+D - raise EOFError() - - if ch == "\x1a" and WIN: # Windows, Ctrl+Z - raise EOFError() - - -if sys.platform == "win32": - import msvcrt - - @contextlib.contextmanager - def raw_terminal() -> cabc.Iterator[int]: - yield -1 - - def getchar(echo: bool) -> str: - # The function `getch` will return a bytes object corresponding to - # the pressed character. Since Windows 10 build 1803, it will also - # return \x00 when called a second time after pressing a regular key. - # - # `getwch` does not share this probably-bugged behavior. Moreover, it - # returns a Unicode object by default, which is what we want. - # - # Either of these functions will return \x00 or \xe0 to indicate - # a special key, and you need to call the same function again to get - # the "rest" of the code. The fun part is that \u00e0 is - # "latin small letter a with grave", so if you type that on a French - # keyboard, you _also_ get a \xe0. - # E.g., consider the Up arrow. This returns \xe0 and then \x48. The - # resulting Unicode string reads as "a with grave" + "capital H". - # This is indistinguishable from when the user actually types - # "a with grave" and then "capital H". - # - # When \xe0 is returned, we assume it's part of a special-key sequence - # and call `getwch` again, but that means that when the user types - # the \u00e0 character, `getchar` doesn't return until a second - # character is typed. - # The alternative is returning immediately, but that would mess up - # cross-platform handling of arrow keys and others that start with - # \xe0. Another option is using `getch`, but then we can't reliably - # read non-ASCII characters, because return values of `getch` are - # limited to the current 8-bit codepage. - # - # Anyway, Click doesn't claim to do this Right(tm), and using `getwch` - # is doing the right thing in more situations than with `getch`. - - if echo: - func = t.cast(t.Callable[[], str], msvcrt.getwche) - else: - func = t.cast(t.Callable[[], str], msvcrt.getwch) - - rv = func() - - if rv in ("\x00", "\xe0"): - # \x00 and \xe0 are control characters that indicate special key, - # see above. - rv += func() - - _translate_ch_to_exc(rv) - return rv - -else: - import termios - import tty - - @contextlib.contextmanager - def raw_terminal() -> cabc.Iterator[int]: - f: t.TextIO | None - fd: int - - if not isatty(sys.stdin): - f = open("/dev/tty") - fd = f.fileno() - else: - fd = sys.stdin.fileno() - f = None - - try: - old_settings = termios.tcgetattr(fd) - - try: - tty.setraw(fd) - yield fd - finally: - termios.tcsetattr(fd, termios.TCSADRAIN, old_settings) - sys.stdout.flush() - - if f is not None: - f.close() - except termios.error: - pass - - def getchar(echo: bool) -> str: - with raw_terminal() as fd: - ch = os.read(fd, 32).decode(get_best_encoding(sys.stdin), "replace") - - if echo and isatty(sys.stdout): - sys.stdout.write(ch) - - _translate_ch_to_exc(ch) - return ch diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_textwrap.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/_textwrap.py deleted file mode 100644 index 82840f2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_textwrap.py +++ /dev/null @@ -1,188 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import textwrap -from contextlib import contextmanager - -from ._compat import _ansi_re -from ._compat import term_len - - -def _truncate_visible(text: str, n: int) -> str: - """Return the longest prefix of ``text`` containing at most ``n`` visible - characters. - - ANSI escape sequences inside the prefix are kept intact and do not count - toward the visible width. A cut is never placed inside an escape sequence. - """ - if n <= 0: - return "" - - visible = 0 - i = 0 - cut = 0 - end = len(text) - while i < end: - m = _ansi_re.match(text, i) - if m is not None: - i = m.end() - continue - visible += 1 - i += 1 - cut = i - if visible >= n: - break - return text[:cut] - - -class TextWrapper(textwrap.TextWrapper): - """``textwrap.TextWrapper`` variant that measures widths by visible - character count. - - ANSI escape sequences embedded in chunks, indents, or the placeholder are - excluded from the width budget. Without this, styled help text (a styled - ``Usage:`` prefix, a colorized option name, ...) would be wrapped earlier - than its visible length warrants and tokens would split mid-word. - """ - - def _handle_long_word( - self, - reversed_chunks: list[str], - cur_line: list[str], - cur_len: int, - width: int, - ) -> None: - space_left = max(width - cur_len, 1) - - if self.break_long_words: - last = reversed_chunks[-1] - cut = _truncate_visible(last, space_left) - res = last[len(cut) :] - cur_line.append(cut) - reversed_chunks[-1] = res - elif not cur_line: - cur_line.append(reversed_chunks.pop()) - - def _wrap_chunks(self, chunks: list[str]) -> list[str]: - """Wrap chunks counting widths in visible characters. - - Mirrors the algorithm of :meth:`textwrap.TextWrapper._wrap_chunks` - with every width measurement routed through - :func:`click._compat.term_len` instead of :func:`len`, so ANSI escape - bytes in chunks, indents, or the placeholder do not inflate the count. - - .. seealso:: - :class:`textwrap.TextWrapper` in the Python standard library documentation: - https://docs.python.org/3/library/textwrap.html#textwrap.TextWrapper - - Reference implementation in CPython: - https://github.com/python/cpython/blob/main/Lib/textwrap.py - """ - lines: list[str] = [] - if self.width <= 0: - raise ValueError(f"invalid width {self.width!r} (must be > 0)") - if self.max_lines is not None: - if self.max_lines > 1: - indent = self.subsequent_indent - else: - indent = self.initial_indent - if term_len(indent) + term_len(self.placeholder.lstrip()) > self.width: - raise ValueError("placeholder too large for max width") - - chunks.reverse() - - while chunks: - cur_line: list[str] = [] - cur_len = 0 - - if lines: - indent = self.subsequent_indent - else: - indent = self.initial_indent - - width = self.width - term_len(indent) - - if self.drop_whitespace and chunks[-1].strip() == "" and lines: - del chunks[-1] - - while chunks: - n = term_len(chunks[-1]) - - if cur_len + n <= width: - cur_line.append(chunks.pop()) - cur_len += n - - else: - break - - if chunks and term_len(chunks[-1]) > width: - self._handle_long_word(chunks, cur_line, cur_len, width) - cur_len = sum(map(term_len, cur_line)) - - if self.drop_whitespace and cur_line and cur_line[-1].strip() == "": - cur_len -= term_len(cur_line[-1]) - del cur_line[-1] - - if cur_line: - if ( - self.max_lines is None - or len(lines) + 1 < self.max_lines - or ( - not chunks - or self.drop_whitespace - and len(chunks) == 1 - and not chunks[0].strip() - ) - and cur_len <= width - ): - lines.append(indent + "".join(cur_line)) - else: - while cur_line: - if ( - cur_line[-1].strip() - and cur_len + term_len(self.placeholder) <= width - ): - cur_line.append(self.placeholder) - lines.append(indent + "".join(cur_line)) - break - cur_len -= term_len(cur_line[-1]) - del cur_line[-1] - else: - if lines: - prev_line = lines[-1].rstrip() - if ( - term_len(prev_line) + term_len(self.placeholder) - <= self.width - ): - lines[-1] = prev_line + self.placeholder - break - lines.append(indent + self.placeholder.lstrip()) - break - - return lines - - @contextmanager - def extra_indent(self, indent: str) -> cabc.Iterator[None]: - old_initial_indent = self.initial_indent - old_subsequent_indent = self.subsequent_indent - self.initial_indent += indent - self.subsequent_indent += indent - - try: - yield - finally: - self.initial_indent = old_initial_indent - self.subsequent_indent = old_subsequent_indent - - def indent_only(self, text: str) -> str: - rv = [] - - for idx, line in enumerate(text.splitlines()): - indent = self.initial_indent - - if idx > 0: - indent = self.subsequent_indent - - rv.append(f"{indent}{line}") - - return "\n".join(rv) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/_utils.py deleted file mode 100644 index 05ee2e9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_utils.py +++ /dev/null @@ -1,36 +0,0 @@ -from __future__ import annotations - -import enum -import typing as t - - -class Sentinel(enum.Enum): - """Enum used to define sentinel values. - - .. seealso:: - - `PEP 661 - Sentinel Values `_. - """ - - UNSET = object() - FLAG_NEEDS_VALUE = object() - - def __repr__(self) -> str: - return f"{self.__class__.__name__}.{self.name}" - - -UNSET: t.Literal[Sentinel.UNSET] = Sentinel.UNSET -"""Sentinel used to indicate that a value is not set.""" - -FLAG_NEEDS_VALUE: t.Literal[Sentinel.FLAG_NEEDS_VALUE] = Sentinel.FLAG_NEEDS_VALUE -"""Sentinel used to indicate an option was passed as a flag without a -value but is not a flag option. - -``Option.consume_value`` uses this to prompt or use the ``flag_value``. -""" - -T_UNSET: t.TypeAlias = t.Literal[Sentinel.UNSET] -"""Type hint for the :data:`UNSET` sentinel value.""" - -T_FLAG_NEEDS_VALUE: t.TypeAlias = t.Literal[Sentinel.FLAG_NEEDS_VALUE] -"""Type hint for the :data:`FLAG_NEEDS_VALUE` sentinel value.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_winconsole.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/_winconsole.py deleted file mode 100644 index d25178d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/_winconsole.py +++ /dev/null @@ -1,297 +0,0 @@ -# This module is based on the excellent work by Adam Bartoš who -# provided a lot of what went into the implementation here in -# the discussion to issue1602 in the Python bug tracker. -# -# There are some general differences in regards to how this works -# compared to the original patches as we do not need to patch -# the entire interpreter but just work in our little world of -# echo and prompt. -from __future__ import annotations - -import collections.abc as cabc -import io -import sys -import time -import typing as t -from ctypes import Array -from ctypes import byref -from ctypes import c_char -from ctypes import c_char_p -from ctypes import c_int -from ctypes import c_ssize_t -from ctypes import c_ulong -from ctypes import c_void_p -from ctypes import POINTER -from ctypes import py_object -from ctypes import Structure -from ctypes.wintypes import DWORD -from ctypes.wintypes import HANDLE -from ctypes.wintypes import LPCWSTR -from ctypes.wintypes import LPWSTR -from gettext import gettext as _ - -from ._compat import _NonClosingTextIOWrapper - -assert sys.platform == "win32" -import msvcrt # noqa: E402 -from ctypes import windll # noqa: E402 -from ctypes import WINFUNCTYPE # noqa: E402 - -c_ssize_p = POINTER(c_ssize_t) - -kernel32 = windll.kernel32 -GetStdHandle = kernel32.GetStdHandle -ReadConsoleW = kernel32.ReadConsoleW -WriteConsoleW = kernel32.WriteConsoleW -GetConsoleMode = kernel32.GetConsoleMode -GetLastError = kernel32.GetLastError -GetCommandLineW = WINFUNCTYPE(LPWSTR)(("GetCommandLineW", windll.kernel32)) -CommandLineToArgvW = WINFUNCTYPE(POINTER(LPWSTR), LPCWSTR, POINTER(c_int))( - ("CommandLineToArgvW", windll.shell32) -) -LocalFree = WINFUNCTYPE(c_void_p, c_void_p)(("LocalFree", windll.kernel32)) - -STDIN_HANDLE = GetStdHandle(-10) -STDOUT_HANDLE = GetStdHandle(-11) -STDERR_HANDLE = GetStdHandle(-12) - -PyBUF_SIMPLE = 0 -PyBUF_WRITABLE = 1 - -ERROR_SUCCESS = 0 -ERROR_NOT_ENOUGH_MEMORY = 8 -ERROR_OPERATION_ABORTED = 995 - -STDIN_FILENO = 0 -STDOUT_FILENO = 1 -STDERR_FILENO = 2 - -EOF = b"\x1a" -MAX_BYTES_WRITTEN = 32767 - -if t.TYPE_CHECKING: - try: - # Using `typing_extensions.Buffer` instead of `collections.abc` - # on Windows for some reason does not have `Sized` implemented. - from collections.abc import Buffer # type: ignore - except ImportError: - from typing_extensions import Buffer - -try: - from ctypes import pythonapi -except ImportError: - # On PyPy we cannot get buffers so our ability to operate here is - # severely limited. - get_buffer = None -else: - - class Py_buffer(Structure): - _fields_ = [ # noqa: RUF012 - ("buf", c_void_p), - ("obj", py_object), - ("len", c_ssize_t), - ("itemsize", c_ssize_t), - ("readonly", c_int), - ("ndim", c_int), - ("format", c_char_p), - ("shape", c_ssize_p), - ("strides", c_ssize_p), - ("suboffsets", c_ssize_p), - ("internal", c_void_p), - ] - - PyObject_GetBuffer = pythonapi.PyObject_GetBuffer - PyBuffer_Release = pythonapi.PyBuffer_Release - - def get_buffer(obj: Buffer, writable: bool = False) -> Array[c_char]: - buf = Py_buffer() - flags: int = PyBUF_WRITABLE if writable else PyBUF_SIMPLE - PyObject_GetBuffer(py_object(obj), byref(buf), flags) - - try: - buffer_type = c_char * buf.len - out: Array[c_char] = buffer_type.from_address(buf.buf) - return out - finally: - PyBuffer_Release(byref(buf)) - - -class _WindowsConsoleRawIOBase(io.RawIOBase): - def __init__(self, handle: int | None) -> None: - self.handle = handle - - def isatty(self) -> t.Literal[True]: - super().isatty() - return True - - -class _WindowsConsoleReader(_WindowsConsoleRawIOBase): - def readable(self) -> t.Literal[True]: - return True - - def readinto(self, b: Buffer) -> int: - bytes_to_be_read = len(b) - if not bytes_to_be_read: - return 0 - elif bytes_to_be_read % 2: - raise ValueError( - "cannot read odd number of bytes from UTF-16-LE encoded console" - ) - - buffer = get_buffer(b, writable=True) - code_units_to_be_read = bytes_to_be_read // 2 - code_units_read = c_ulong() - - rv = ReadConsoleW( - HANDLE(self.handle), - buffer, - code_units_to_be_read, - byref(code_units_read), - None, - ) - if GetLastError() == ERROR_OPERATION_ABORTED: - # wait for KeyboardInterrupt - time.sleep(0.1) - if not rv: - raise OSError(_("Windows error: {error}").format(error=GetLastError())) - - if buffer[0] == EOF: - return 0 - return 2 * code_units_read.value - - -class _WindowsConsoleWriter(_WindowsConsoleRawIOBase): - def writable(self) -> t.Literal[True]: - return True - - @staticmethod - def _get_error_message(errno: int) -> str: - if errno == ERROR_SUCCESS: - return "ERROR_SUCCESS" - elif errno == ERROR_NOT_ENOUGH_MEMORY: - return "ERROR_NOT_ENOUGH_MEMORY" - return _("Windows error: {error}").format(error=errno) - - def write(self, b: Buffer) -> int: - bytes_to_be_written = len(b) - buf = get_buffer(b) - code_units_to_be_written = min(bytes_to_be_written, MAX_BYTES_WRITTEN) // 2 - code_units_written = c_ulong() - - WriteConsoleW( - HANDLE(self.handle), - buf, - code_units_to_be_written, - byref(code_units_written), - None, - ) - bytes_written = 2 * code_units_written.value - - if bytes_written == 0 and bytes_to_be_written > 0: - raise OSError(self._get_error_message(GetLastError())) - return bytes_written - - -class ConsoleStream: - def __init__(self, text_stream: t.TextIO, byte_stream: t.BinaryIO) -> None: - self._text_stream = text_stream - self.buffer = byte_stream - - @property - def name(self) -> str: - return self.buffer.name - - def write(self, x: t.AnyStr) -> int: - if isinstance(x, str): - return self._text_stream.write(x) - try: - self.flush() - except Exception: - pass - return self.buffer.write(x) - - def writelines(self, lines: cabc.Iterable[t.AnyStr]) -> None: - for line in lines: - self.write(line) - - def __getattr__(self, name: str) -> t.Any: - return getattr(self._text_stream, name) - - def isatty(self) -> bool: - return self.buffer.isatty() - - def __repr__(self) -> str: - return f"" - - -def _get_text_stdin(buffer_stream: t.BinaryIO) -> t.TextIO: - text_stream = _NonClosingTextIOWrapper( - io.BufferedReader(_WindowsConsoleReader(STDIN_HANDLE)), - "utf-16-le", - "strict", - line_buffering=True, - ) - return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) - - -def _get_text_stdout(buffer_stream: t.BinaryIO) -> t.TextIO: - text_stream = _NonClosingTextIOWrapper( - io.BufferedWriter(_WindowsConsoleWriter(STDOUT_HANDLE)), - "utf-16-le", - "strict", - line_buffering=True, - ) - return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) - - -def _get_text_stderr(buffer_stream: t.BinaryIO) -> t.TextIO: - text_stream = _NonClosingTextIOWrapper( - io.BufferedWriter(_WindowsConsoleWriter(STDERR_HANDLE)), - "utf-16-le", - "strict", - line_buffering=True, - ) - return t.cast(t.TextIO, ConsoleStream(text_stream, buffer_stream)) - - -_stream_factories: cabc.Mapping[int, t.Callable[[t.BinaryIO], t.TextIO]] = { - 0: _get_text_stdin, - 1: _get_text_stdout, - 2: _get_text_stderr, -} - - -def _is_console(f: t.TextIO) -> bool: - if not hasattr(f, "fileno"): - return False - - try: - fileno = f.fileno() - except (OSError, io.UnsupportedOperation): - return False - - handle = msvcrt.get_osfhandle(fileno) - return bool(GetConsoleMode(handle, byref(DWORD()))) - - -def _get_windows_console_stream( - f: t.TextIO, encoding: str | None, errors: str | None -) -> t.TextIO | None: - if ( - get_buffer is None - or encoding not in {"utf-16-le", None} - or errors not in {"strict", None} - or not _is_console(f) - ): - return None - - func = _stream_factories.get(f.fileno()) - if func is None: - return None - - b = getattr(f, "buffer", None) - - if b is None: - return None - - return func(b) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/core.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/core.py deleted file mode 100644 index d7ecbef..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/core.py +++ /dev/null @@ -1,3639 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import enum -import errno -import inspect -import os -import sys -import typing as t -from abc import ABC -from abc import abstractmethod -from collections import abc -from collections import Counter -from contextlib import AbstractContextManager -from contextlib import contextmanager -from contextlib import ExitStack -from functools import update_wrapper -from gettext import gettext as _ -from gettext import ngettext -from itertools import repeat -from types import TracebackType - -from . import types -from ._utils import FLAG_NEEDS_VALUE -from ._utils import UNSET -from .exceptions import Abort -from .exceptions import BadParameter -from .exceptions import ClickException -from .exceptions import Exit -from .exceptions import MissingParameter -from .exceptions import NoArgsIsHelpError -from .exceptions import NoSuchCommand -from .exceptions import UsageError -from .formatting import HelpFormatter -from .formatting import join_options -from .globals import pop_context -from .globals import push_context -from .parser import _OptionParser -from .parser import _split_opt -from .termui import confirm -from .termui import prompt -from .termui import style -from .utils import _detect_program_name -from .utils import _expand_args -from .utils import echo -from .utils import make_default_short_help -from .utils import make_str -from .utils import PacifyFlushWrapper - -if t.TYPE_CHECKING: - from typing_extensions import Self - - from .shell_completion import CompletionItem - -F = t.TypeVar("F", bound="t.Callable[..., t.Any]") -V = t.TypeVar("V") - - -def _complete_visible_commands( - ctx: Context, incomplete: str -) -> cabc.Iterator[tuple[str, Command]]: - """List all the subcommands of a group that start with the - incomplete value and aren't hidden. - - :param ctx: Invocation context for the group. - :param incomplete: Value being completed. May be empty. - """ - multi = t.cast(Group, ctx.command) - - for name in multi.list_commands(ctx): - if name.startswith(incomplete): - command = multi.get_command(ctx, name) - - if command is not None and not command.hidden: - yield name, command - - -def _check_nested_chain( - base_command: Group, cmd_name: str, cmd: Command, register: bool = False -) -> None: - if not base_command.chain or not isinstance(cmd, Group): - return - - if register: - message = ( - f"It is not possible to add the group {cmd_name!r} to another" - f" group {base_command.name!r} that is in chain mode." - ) - else: - message = ( - f"Found the group {cmd_name!r} as subcommand to another group " - f" {base_command.name!r} that is in chain mode. This is not supported." - ) - - raise RuntimeError(message) - - -def _format_deprecated_label(deprecated: bool | str) -> str: - """Return the parenthesized deprecation label shown in help text.""" - label = _("deprecated").upper() - if isinstance(deprecated, str): - return f"({label}: {deprecated})" - return f"({label})" - - -def _format_deprecated_suffix(deprecated: bool | str) -> str: - """Return the trailing reason for a ``DeprecationWarning`` message, - prefixed with a space, or an empty string when no reason was given. - """ - if isinstance(deprecated, str): - return f" {deprecated}" - return "" - - -def batch(iterable: cabc.Iterable[V], batch_size: int) -> list[tuple[V, ...]]: - return list(zip(*repeat(iter(iterable), batch_size), strict=False)) - - -@contextmanager -def augment_usage_errors( - ctx: Context, param: Parameter | None = None -) -> cabc.Generator[None]: - """Context manager that attaches extra information to exceptions.""" - try: - yield - except BadParameter as e: - if e.ctx is None: - e.ctx = ctx - if param is not None and e.param is None: - e.param = param - raise - except UsageError as e: - if e.ctx is None: - e.ctx = ctx - raise - - -def iter_params_for_processing( - invocation_order: cabc.Sequence[Parameter], - declaration_order: cabc.Sequence[Parameter], -) -> list[Parameter]: - """Returns all declared parameters in the order they should be processed. - - The declared parameters are re-shuffled depending on the order in which - they were invoked, as well as the eagerness of each parameters. - - The invocation order takes precedence over the declaration order. I.e. the - order in which the user provided them to the CLI is respected. - - This behavior and its effect on callback evaluation is detailed at: - https://click.palletsprojects.com/en/stable/advanced/#callback-evaluation-order - """ - - def sort_key(item: Parameter) -> tuple[bool, float]: - try: - idx: float = invocation_order.index(item) - except ValueError: - idx = float("inf") - - return not item.is_eager, idx - - return sorted(declaration_order, key=sort_key) - - -class ParameterSource(enum.IntEnum): - """This is an :class:`~enum.IntEnum` that indicates the source of a - parameter's value. - - Use :meth:`click.Context.get_parameter_source` to get the - source for a parameter by name. - - Members are ordered from most explicit to least explicit source. - This allows comparison to check if a value was explicitly provided: - - .. code-block:: python - - source = ctx.get_parameter_source("port") - if source < click.ParameterSource.DEFAULT_MAP: - ... # value was explicitly set - - .. versionchanged:: 8.3.3 - Use :class:`~enum.IntEnum` and reorder members from most to - least explicit. Supports comparison operators. - - .. versionchanged:: 8.0 - Use :class:`~enum.Enum` and drop the ``validate`` method. - - .. versionchanged:: 8.0 - Added the ``PROMPT`` value. - """ - - PROMPT = enum.auto() - """Used a prompt to confirm a default or provide a value.""" - COMMANDLINE = enum.auto() - """The value was provided by the command line args.""" - ENVIRONMENT = enum.auto() - """The value was provided with an environment variable.""" - DEFAULT_MAP = enum.auto() - """Used a default provided by :attr:`Context.default_map`.""" - DEFAULT = enum.auto() - """Used the default specified by the parameter.""" - - -class Context: - """The context is a special internal object that holds state relevant - for the script execution at every single level. It's normally invisible - to commands unless they opt-in to getting access to it. - - The context is useful as it can pass internal objects around and can - control special execution features such as reading data from - environment variables. - - A context can be used as context manager in which case it will call - :meth:`close` on teardown. - - :param command: the command class for this context. - :param parent: the parent context. - :param info_name: the info name for this invocation. Generally this - is the most descriptive name for the script or - command. For the toplevel script it is usually - the name of the script, for commands below that it's - the name of the script. - :param obj: an arbitrary object of user data. - :param auto_envvar_prefix: the prefix to use for automatic environment - variables. If this is `None` then reading - from environment variables is disabled. This - does not affect manually set environment - variables which are always read. - :param default_map: a dictionary (like object) with default values - for parameters. - :param terminal_width: the width of the terminal. The default is - inherit from parent context. If no context - defines the terminal width then auto - detection will be applied. - :param max_content_width: the maximum width for content rendered by - Click (this currently only affects help - pages). This defaults to 80 characters if - not overridden. In other words: even if the - terminal is larger than that, Click will not - format things wider than 80 characters by - default. In addition to that, formatters might - add some safety mapping on the right. - :param resilient_parsing: if this flag is enabled then Click will - parse without any interactivity or callback - invocation. Default values will also be - ignored. This is useful for implementing - things such as completion support. - :param allow_extra_args: if this is set to `True` then extra arguments - at the end will not raise an error and will be - kept on the context. The default is to inherit - from the command. - :param allow_interspersed_args: if this is set to `False` then options - and arguments cannot be mixed. The - default is to inherit from the command. - :param ignore_unknown_options: instructs click to ignore options it does - not know and keeps them for later - processing. - :param help_option_names: optionally a list of strings that define how - the default help parameter is named. The - default is ``['--help']``. - :param token_normalize_func: an optional function that is used to - normalize tokens (options, choices, - etc.). This for instance can be used to - implement case insensitive behavior. - :param color: controls if the terminal supports ANSI colors or not. The - default is autodetection. This is only needed if ANSI - codes are used in texts that Click prints which is by - default not the case. This for instance would affect - help output. - :param show_default: Show the default value for commands. If this - value is not set, it defaults to the value from the parent - context. ``Command.show_default`` overrides this default for the - specific command. - - .. versionchanged:: 8.2 - The ``protected_args`` attribute is deprecated and will be removed in - Click 9.0. ``args`` will contain remaining unparsed tokens. - - .. versionchanged:: 8.1 - The ``show_default`` parameter is overridden by - ``Command.show_default``, instead of the other way around. - - .. versionchanged:: 8.0 - The ``show_default`` parameter defaults to the value from the - parent context. - - .. versionchanged:: 7.1 - Added the ``show_default`` parameter. - - .. versionchanged:: 4.0 - Added the ``color``, ``ignore_unknown_options``, and - ``max_content_width`` parameters. - - .. versionchanged:: 3.0 - Added the ``allow_extra_args`` and ``allow_interspersed_args`` - parameters. - - .. versionchanged:: 2.0 - Added the ``resilient_parsing``, ``help_option_names``, and - ``token_normalize_func`` parameters. - """ - - #: The formatter class to create with :meth:`make_formatter`. - #: - #: .. versionadded:: 8.0 - formatter_class: type[HelpFormatter] = HelpFormatter - - parent: Context | None - command: Command - info_name: str | None - params: dict[str, t.Any] - args: list[str] - _protected_args: list[str] - _opt_prefixes: set[str] - obj: t.Any - _meta: dict[str, t.Any] - default_map: cabc.MutableMapping[str, t.Any] | None - invoked_subcommand: str | None - terminal_width: int | None - max_content_width: int | None - allow_extra_args: bool - allow_interspersed_args: bool - ignore_unknown_options: bool - help_option_names: list[str] - token_normalize_func: t.Callable[[str], str] | None - resilient_parsing: bool - auto_envvar_prefix: str | None - color: bool | None - show_default: bool | None - _close_callbacks: list[t.Callable[[], t.Any]] - _depth: int - _parameter_source: dict[str, ParameterSource] - _param_default_explicit: dict[str, bool] - _exit_stack: ExitStack - - def __init__( - self, - command: Command, - parent: Context | None = None, - info_name: str | None = None, - obj: t.Any | None = None, - auto_envvar_prefix: str | None = None, - default_map: cabc.MutableMapping[str, t.Any] | None = None, - terminal_width: int | None = None, - max_content_width: int | None = None, - resilient_parsing: bool = False, - allow_extra_args: bool | None = None, - allow_interspersed_args: bool | None = None, - ignore_unknown_options: bool | None = None, - help_option_names: list[str] | None = None, - token_normalize_func: t.Callable[[str], str] | None = None, - color: bool | None = None, - show_default: bool | None = None, - ) -> None: - #: the parent context or `None` if none exists. - self.parent = parent - #: the :class:`Command` for this context. - self.command = command - #: the descriptive information name - self.info_name = info_name - #: Map of parameter names to their parsed values. Parameters - #: with ``expose_value=False`` are not stored. - self.params = {} - #: the leftover arguments. - self.args = [] - #: protected arguments. These are arguments that are prepended - #: to `args` when certain parsing scenarios are encountered but - #: must be never propagated to another arguments. This is used - #: to implement nested parsing. - self._protected_args = [] - #: the collected prefixes of the command's options. - self._opt_prefixes = set(parent._opt_prefixes) if parent else set() - - if obj is None and parent is not None: - obj = parent.obj - - #: the user object stored. - self.obj = obj - self._meta = getattr(parent, "meta", {}) - - #: A dictionary (-like object) with defaults for parameters. - if ( - default_map is None - and info_name is not None - and parent is not None - and parent.default_map is not None - ): - default_map = parent.default_map.get(info_name) - - self.default_map = default_map - - #: This flag indicates if a subcommand is going to be executed. A - #: group callback can use this information to figure out if it's - #: being executed directly or because the execution flow passes - #: onwards to a subcommand. By default it's None, but it can be - #: the name of the subcommand to execute. - #: - #: If chaining is enabled this will be set to ``'*'`` in case - #: any commands are executed. It is however not possible to - #: figure out which ones. If you require this knowledge you - #: should use a :func:`result_callback`. - self.invoked_subcommand = None - - if terminal_width is None and parent is not None: - terminal_width = parent.terminal_width - - #: The width of the terminal (None is autodetection). - self.terminal_width = terminal_width - - if max_content_width is None and parent is not None: - max_content_width = parent.max_content_width - - #: The maximum width of formatted content (None implies a sensible - #: default which is 80 for most things). - self.max_content_width = max_content_width - - if allow_extra_args is None: - allow_extra_args = command.allow_extra_args - - #: Indicates if the context allows extra args or if it should - #: fail on parsing. - #: - #: .. versionadded:: 3.0 - self.allow_extra_args = allow_extra_args - - if allow_interspersed_args is None: - allow_interspersed_args = command.allow_interspersed_args - - #: Indicates if the context allows mixing of arguments and - #: options or not. - #: - #: .. versionadded:: 3.0 - self.allow_interspersed_args = allow_interspersed_args - - if ignore_unknown_options is None: - ignore_unknown_options = command.ignore_unknown_options - - #: Instructs click to ignore options that a command does not - #: understand and will store it on the context for later - #: processing. This is primarily useful for situations where you - #: want to call into external programs. Generally this pattern is - #: strongly discouraged because it's not possibly to losslessly - #: forward all arguments. - #: - #: .. versionadded:: 4.0 - self.ignore_unknown_options = ignore_unknown_options - - if help_option_names is None: - if parent is not None: - help_option_names = parent.help_option_names - else: - help_option_names = ["--help"] - - #: The names for the help options. - self.help_option_names = help_option_names - - if token_normalize_func is None and parent is not None: - token_normalize_func = parent.token_normalize_func - - #: An optional normalization function for tokens. This is - #: options, choices, commands etc. - self.token_normalize_func = token_normalize_func - - #: Indicates if resilient parsing is enabled. In that case Click - #: will do its best to not cause any failures and default values - #: will be ignored. Useful for completion. - self.resilient_parsing = resilient_parsing - - # If there is no envvar prefix yet, but the parent has one and - # the command on this level has a name, we can expand the envvar - # prefix automatically. - if auto_envvar_prefix is None: - if ( - parent is not None - and parent.auto_envvar_prefix is not None - and self.info_name is not None - ): - auto_envvar_prefix = ( - f"{parent.auto_envvar_prefix}_{self.info_name.upper()}" - ) - else: - auto_envvar_prefix = auto_envvar_prefix.upper() - - if auto_envvar_prefix is not None: - auto_envvar_prefix = auto_envvar_prefix.replace("-", "_") - - self.auto_envvar_prefix = auto_envvar_prefix - - if color is None and parent is not None: - color = parent.color - - #: Controls if styling output is wanted or not. - self.color = color - - if show_default is None and parent is not None: - show_default = parent.show_default - - #: Show option default values when formatting help text. - self.show_default = show_default - - self._close_callbacks = [] - self._depth = 0 - self._parameter_source = {} - # Tracks whether the option that currently owns each parameter slot in - # :attr:`params` had its ``default`` set explicitly by the user. Used - # to tie-break feature-switch groups where multiple options share a - # parameter name and both fall back to their default value. - # Refs: https://github.com/pallets/click/issues/3403 - self._param_default_explicit = {} - self._exit_stack = ExitStack() - - @property - def protected_args(self) -> list[str]: - import warnings - - warnings.warn( - "'protected_args' is deprecated and will be removed in Click 9.0." - " 'args' will contain remaining unparsed tokens.", - DeprecationWarning, - stacklevel=2, - ) - return self._protected_args - - def to_info_dict(self) -> dict[str, t.Any]: - """Gather information that could be useful for a tool generating - user-facing documentation. This traverses the entire CLI - structure. - - .. code-block:: python - - with Context(cli) as ctx: - info = ctx.to_info_dict() - - .. versionadded:: 8.0 - """ - return { - "command": self.command.to_info_dict(self), - "info_name": self.info_name, - "allow_extra_args": self.allow_extra_args, - "allow_interspersed_args": self.allow_interspersed_args, - "ignore_unknown_options": self.ignore_unknown_options, - "auto_envvar_prefix": self.auto_envvar_prefix, - } - - def __enter__(self) -> Self: - self._depth += 1 - push_context(self) - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> bool | None: - self._depth -= 1 - exit_result: bool | None = None - if self._depth == 0: - exit_result = self._close_with_exception_info(exc_type, exc_value, tb) - pop_context() - - return exit_result - - @contextmanager - def scope(self, cleanup: bool = True) -> cabc.Generator[Context]: - """This helper method can be used with the context object to promote - it to the current thread local (see :func:`get_current_context`). - The default behavior of this is to invoke the cleanup functions which - can be disabled by setting `cleanup` to `False`. The cleanup - functions are typically used for things such as closing file handles. - - If the cleanup is intended the context object can also be directly - used as a context manager. - - Example usage:: - - with ctx.scope(): - assert get_current_context() is ctx - - This is equivalent:: - - with ctx: - assert get_current_context() is ctx - - .. versionadded:: 5.0 - - :param cleanup: controls if the cleanup functions should be run or - not. The default is to run these functions. In - some situations the context only wants to be - temporarily pushed in which case this can be disabled. - Nested pushes automatically defer the cleanup. - """ - if not cleanup: - self._depth += 1 - try: - with self as rv: - yield rv - finally: - if not cleanup: - self._depth -= 1 - - @property - def meta(self) -> dict[str, t.Any]: - """This is a dictionary which is shared with all the contexts - that are nested. It exists so that click utilities can store some - state here if they need to. It is however the responsibility of - that code to manage this dictionary well. - - The keys are supposed to be unique dotted strings. For instance - module paths are a good choice for it. What is stored in there is - irrelevant for the operation of click. However what is important is - that code that places data here adheres to the general semantics of - the system. - - Example usage:: - - LANG_KEY = f'{__name__}.lang' - - def set_language(value): - ctx = get_current_context() - ctx.meta[LANG_KEY] = value - - def get_language(): - return get_current_context().meta.get(LANG_KEY, 'en_US') - - .. versionadded:: 5.0 - """ - return self._meta - - def make_formatter(self) -> HelpFormatter: - """Creates the :class:`~click.HelpFormatter` for the help and - usage output. - - To quickly customize the formatter class used without overriding - this method, set the :attr:`formatter_class` attribute. - - .. versionchanged:: 8.0 - Added the :attr:`formatter_class` attribute. - """ - return self.formatter_class( - width=self.terminal_width, max_width=self.max_content_width - ) - - def with_resource(self, context_manager: AbstractContextManager[V]) -> V: - """Register a resource as if it were used in a ``with`` - statement. The resource will be cleaned up when the context is - popped. - - Uses :meth:`contextlib.ExitStack.enter_context`. It calls the - resource's ``__enter__()`` method and returns the result. When - the context is popped, it closes the stack, which calls the - resource's ``__exit__()`` method. - - To register a cleanup function for something that isn't a - context manager, use :meth:`call_on_close`. Or use something - from :mod:`contextlib` to turn it into a context manager first. - - .. code-block:: python - - @click.group() - @click.option("--name") - @click.pass_context - def cli(ctx): - ctx.obj = ctx.with_resource(connect_db(name)) - - :param context_manager: The context manager to enter. - :return: Whatever ``context_manager.__enter__()`` returns. - - .. versionadded:: 8.0 - """ - return self._exit_stack.enter_context(context_manager) - - def call_on_close(self, f: t.Callable[..., t.Any]) -> t.Callable[..., t.Any]: - """Register a function to be called when the context tears down. - - This can be used to close resources opened during the script - execution. Resources that support Python's context manager - protocol which would be used in a ``with`` statement should be - registered with :meth:`with_resource` instead. - - :param f: The function to execute on teardown. - """ - return self._exit_stack.callback(f) - - def close(self) -> None: - """Invoke all close callbacks registered with - :meth:`call_on_close`, and exit all context managers entered - with :meth:`with_resource`. - """ - self._close_with_exception_info(None, None, None) - - def _close_with_exception_info( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> bool | None: - """Unwind the exit stack by calling its :meth:`__exit__` providing the exception - information to allow for exception handling by the various resources registered - using :meth;`with_resource` - - :return: Whatever ``exit_stack.__exit__()`` returns. - """ - exit_result = self._exit_stack.__exit__(exc_type, exc_value, tb) - # In case the context is reused, create a new exit stack. - self._exit_stack = ExitStack() - - return exit_result - - @property - def command_path(self) -> str: - """The computed command path. This is used for the ``usage`` - information on the help page. It's automatically created by - combining the info names of the chain of contexts to the root. - """ - rv = "" - if self.info_name is not None: - rv = self.info_name - if self.parent is not None: - parent_command_path = [self.parent.command_path] - - if isinstance(self.parent.command, Command): - for param in self.parent.command.get_params(self): - parent_command_path.extend(param.get_usage_pieces(self)) - - rv = f"{' '.join(parent_command_path)} {rv}" - return rv.lstrip() - - def find_root(self) -> Context: - """Finds the outermost context.""" - node = self - while node.parent is not None: - node = node.parent - return node - - def find_object(self, object_type: type[V]) -> V | None: - """Finds the closest object of a given type.""" - node: Context | None = self - - while node is not None: - if isinstance(node.obj, object_type): - return node.obj - - node = node.parent - - return None - - def ensure_object(self, object_type: type[V]) -> V: - """Like :meth:`find_object` but sets the innermost object to a - new instance of `object_type` if it does not exist. - """ - rv = self.find_object(object_type) - if rv is None: - self.obj = rv = object_type() - return rv - - def _default_map_has(self, name: str | None) -> bool: - """Check if :attr:`default_map` contains a real value for ``name``. - - Returns ``False`` when the key is absent, the map is ``None``, - ``name`` is ``None``, or the stored value is the internal - :data:`UNSET` sentinel. - """ - return ( - name is not None - and self.default_map is not None - and name in self.default_map - and self.default_map[name] is not UNSET - ) - - @t.overload - def lookup_default( - self, name: str, call: t.Literal[True] = True - ) -> t.Any | None: ... - - @t.overload - def lookup_default( - self, name: str, call: t.Literal[False] = ... - ) -> t.Any | t.Callable[[], t.Any] | None: ... - - def lookup_default(self, name: str, call: bool = True) -> t.Any | None: - """Get the default for a parameter from :attr:`default_map`. - - :param name: Name of the parameter. - :param call: If the default is a callable, call it. Disable to - return the callable instead. - - .. versionchanged:: 8.0 - Added the ``call`` parameter. - """ - if not self._default_map_has(name): - return None - - # Assert to make the type checker happy. - assert self.default_map is not None - value = self.default_map[name] - - if call and callable(value): - return value() - - return value - - def fail(self, message: str) -> t.NoReturn: - """Aborts the execution of the program with a specific error - message. - - :param message: the error message to fail with. - """ - raise UsageError(message, self) - - def abort(self) -> t.NoReturn: - """Aborts the script.""" - raise Abort() - - def exit(self, code: int = 0) -> t.NoReturn: - """Exits the application with a given exit code. - - .. versionchanged:: 8.2 - Callbacks and context managers registered with :meth:`call_on_close` - and :meth:`with_resource` are closed before exiting. - """ - self.close() - raise Exit(code) - - def get_usage(self) -> str: - """Helper method to get formatted usage string for the current - context and command. - """ - return self.command.get_usage(self) - - def get_help(self) -> str: - """Helper method to get formatted help page for the current - context and command. - """ - return self.command.get_help(self) - - def _make_sub_context(self, command: Command) -> Context: - """Create a new context of the same type as this context, but - for a new command. - - :meta private: - """ - return type(self)(command, info_name=command.name, parent=self) - - @t.overload - def invoke( - self, callback: t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any - ) -> V: ... - - @t.overload - def invoke(self, callback: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: ... - - def invoke( - self, callback: Command | t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any - ) -> t.Any | V: - """Invokes a command callback in exactly the way it expects. There - are two ways to invoke this method: - - 1. the first argument can be a callback and all other arguments and - keyword arguments are forwarded directly to the function. - 2. the first argument is a click command object. In that case all - arguments are forwarded as well but proper click parameters - (options and click arguments) must be keyword arguments and Click - will fill in defaults. - - .. versionchanged:: 8.0 - All ``kwargs`` are tracked in :attr:`params` so they will be - passed if :meth:`forward` is called at multiple levels. - - .. versionchanged:: 3.2 - A new context is created, and missing arguments use default values. - """ - if isinstance(callback, Command): - other_cmd = callback - - if other_cmd.callback is None: - raise TypeError( - "The given command does not have a callback that can be invoked." - ) - else: - callback = t.cast("t.Callable[..., V]", other_cmd.callback) - - ctx = self._make_sub_context(other_cmd) - - for param in other_cmd.params: - if param.name not in kwargs and param.expose_value: - default_value = param.get_default(ctx) - # We explicitly hide the :attr:`UNSET` value to the user, as we - # choose to make it an implementation detail. And because ``invoke`` - # has been designed as part of Click public API, we return ``None`` - # instead. Refs: - # https://github.com/pallets/click/issues/3066 - # https://github.com/pallets/click/issues/3065 - # https://github.com/pallets/click/pull/3068 - if default_value is UNSET: - default_value = None - kwargs[param.name] = param.type_cast_value(ctx, default_value) - - # Track all kwargs as params, so that forward() will pass - # them on in subsequent calls. - ctx.params.update(kwargs) - else: - ctx = self - - with augment_usage_errors(self): - with ctx: - return callback(*args, **kwargs) - - def forward(self, cmd: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: - """Similar to :meth:`invoke` but fills in default keyword - arguments from the current context if the other command expects - it. This cannot invoke callbacks directly, only other commands. - - .. versionchanged:: 8.0 - All ``kwargs`` are tracked in :attr:`params` so they will be - passed if ``forward`` is called at multiple levels. - """ - # Can only forward to other commands, not direct callbacks. - if not isinstance(cmd, Command): - raise TypeError("Callback is not a command.") - - for param in self.params: - if param not in kwargs: - kwargs[param] = self.params[param] - - return self.invoke(cmd, *args, **kwargs) - - def set_parameter_source(self, name: str, source: ParameterSource) -> None: - """Set the source of a parameter. This indicates the location - from which the value of the parameter was obtained. - - :param name: The name of the parameter. - :param source: A member of :class:`~click.core.ParameterSource`. - """ - self._parameter_source[name] = source - - def get_parameter_source(self, name: str) -> ParameterSource | None: - """Get the source of a parameter. This indicates the location - from which the value of the parameter was obtained. - - This can be useful for determining when a user specified a value - on the command line that is the same as the default value. It - will be :attr:`~click.core.ParameterSource.DEFAULT` only if the - value was actually taken from the default. - - :param name: The name of the parameter. - :rtype: ParameterSource - - .. versionchanged:: 8.0 - Returns ``None`` if the parameter was not provided from any - source. - """ - return self._parameter_source.get(name) - - -class Command: - """Commands are the basic building block of command line interfaces in - Click. A basic command handles command line parsing and might dispatch - more parsing to commands nested below it. - - :param name: the name of the command to use unless a group overrides it. - :param context_settings: an optional dictionary with defaults that are - passed to the context object. - :param callback: the callback to invoke. This is optional. - :param params: the parameters to register with this command. This can - be either :class:`Option` or :class:`Argument` objects. - :param help: the help string to use for this command. - :param epilog: like the help string but it's printed at the end of the - help page after everything else. - :param short_help: the short help to use for this command. This is - shown on the command listing of the parent command. - :param add_help_option: by default each command registers a ``--help`` - option. This can be disabled by this parameter. - :param no_args_is_help: this controls what happens if no arguments are - provided. This option is disabled by default. - If enabled this will add ``--help`` as argument - if no arguments are passed - :param hidden: hide this command from help outputs. - :param deprecated: If ``True`` or non-empty string, issues a message - indicating that the command is deprecated and highlights - its deprecation in --help. The message can be customized - by using a string as the value. - - .. versionchanged:: 8.2 - This is the base class for all commands, not ``BaseCommand``. - ``deprecated`` can be set to a string as well to customize the - deprecation message. - - .. versionchanged:: 8.1 - ``help``, ``epilog``, and ``short_help`` are stored unprocessed, - all formatting is done when outputting help text, not at init, - and is done even if not using the ``@command`` decorator. - - .. versionchanged:: 8.0 - Added a ``repr`` showing the command name. - - .. versionchanged:: 7.1 - Added the ``no_args_is_help`` parameter. - - .. versionchanged:: 2.0 - Added the ``context_settings`` parameter. - """ - - #: The context class to create with :meth:`make_context`. - #: - #: .. versionadded:: 8.0 - context_class: type[Context] = Context - - #: the default for the :attr:`Context.allow_extra_args` flag. - allow_extra_args = False - - #: the default for the :attr:`Context.allow_interspersed_args` flag. - allow_interspersed_args = True - - #: the default for the :attr:`Context.ignore_unknown_options` flag. - ignore_unknown_options = False - - name: str | None - context_settings: cabc.MutableMapping[str, t.Any] - callback: t.Callable[..., t.Any] | None - params: list[Parameter] - help: str | None - epilog: str | None - options_metavar: str | None - short_help: str | None - add_help_option: bool - _help_option: Option | None - no_args_is_help: bool - hidden: bool - deprecated: bool | str - - def __init__( - self, - name: str | None, - context_settings: cabc.MutableMapping[str, t.Any] | None = None, - callback: t.Callable[..., t.Any] | None = None, - params: list[Parameter] | None = None, - help: str | None = None, - epilog: str | None = None, - short_help: str | None = None, - options_metavar: str | None = "[OPTIONS]", - add_help_option: bool = True, - no_args_is_help: bool = False, - hidden: bool = False, - deprecated: bool | str = False, - ) -> None: - #: the name the command thinks it has. Upon registering a command - #: on a :class:`Group` the group will default the command name - #: with this information. You should instead use the - #: :class:`Context`\'s :attr:`~Context.info_name` attribute. - self.name = name - - if context_settings is None: - context_settings = {} - - #: an optional dictionary with defaults passed to the context. - self.context_settings = context_settings - - #: the callback to execute when the command fires. This might be - #: `None` in which case nothing happens. - self.callback = callback - #: the list of parameters for this command in the order they - #: should show up in the help page and execute. Eager parameters - #: will automatically be handled before non eager ones. - self.params = params or [] - self.help = help - self.epilog = epilog - self.options_metavar = options_metavar - self.short_help = short_help - self.add_help_option = add_help_option - self._help_option = None - self.no_args_is_help = no_args_is_help - self.hidden = hidden - self.deprecated = deprecated - - def to_info_dict(self, ctx: Context) -> dict[str, t.Any]: - return { - "name": self.name, - "params": [param.to_info_dict() for param in self.get_params(ctx)], - "help": self.help, - "epilog": self.epilog, - "short_help": self.short_help, - "hidden": self.hidden, - "deprecated": self.deprecated, - } - - def __repr__(self) -> str: - return f"<{self.__class__.__name__} {self.name}>" - - def get_usage(self, ctx: Context) -> str: - """Formats the usage line into a string and returns it. - - Calls :meth:`format_usage` internally. - """ - formatter = ctx.make_formatter() - self.format_usage(ctx, formatter) - return formatter.getvalue().rstrip("\n") - - def get_params(self, ctx: Context) -> list[Parameter]: - params = self.params - help_option = self.get_help_option(ctx) - - if help_option is not None: - params = [*params, help_option] - - if __debug__: - import warnings - - opts = [opt for param in params for opt in param.opts] - opts_counter = Counter(opts) - duplicate_opts = (opt for opt, count in opts_counter.items() if count > 1) - - for duplicate_opt in duplicate_opts: - warnings.warn( - ( - f"The parameter {duplicate_opt} is used more than once. " - "Remove its duplicate as parameters should be unique." - ), - stacklevel=3, - ) - - return params - - def format_usage(self, ctx: Context, formatter: HelpFormatter) -> None: - """Writes the usage line into the formatter. - - This is a low-level method called by :meth:`get_usage`. - """ - pieces = self.collect_usage_pieces(ctx) - formatter.write_usage(ctx.command_path, " ".join(pieces)) - - def collect_usage_pieces(self, ctx: Context) -> list[str]: - """Returns all the pieces that go into the usage line and returns - it as a list of strings. - """ - rv = [self.options_metavar] if self.options_metavar else [] - - for param in self.get_params(ctx): - rv.extend(param.get_usage_pieces(ctx)) - - return rv - - def get_help_option_names(self, ctx: Context) -> list[str]: - """Returns the names for the help option.""" - all_names = set(ctx.help_option_names) - for param in self.params: - all_names.difference_update(param.opts) - all_names.difference_update(param.secondary_opts) - return list(all_names) - - def get_help_option(self, ctx: Context) -> Option | None: - """Returns the help option object. - - Skipped if :attr:`add_help_option` is ``False``. - - .. versionchanged:: 8.1.8 - The help option is now cached to avoid creating it multiple times. - """ - help_option_names = self.get_help_option_names(ctx) - - if not help_option_names or not self.add_help_option: - return None - - # Cache the help option object in private _help_option attribute to - # avoid creating it multiple times. Not doing this will break the - # callback ordering by iter_params_for_processing(), which relies on - # object comparison. - if self._help_option is None: - # Avoid circular import. - from .decorators import help_option - - # Apply help_option decorator and pop resulting option - help_option(*help_option_names)(self) - self._help_option = self.params.pop() # type: ignore[assignment] - - return self._help_option - - def make_parser(self, ctx: Context) -> _OptionParser: - """Creates the underlying option parser for this command.""" - parser = _OptionParser(ctx) - for param in self.get_params(ctx): - param.add_to_parser(parser, ctx) - return parser - - def get_help(self, ctx: Context) -> str: - """Formats the help into a string and returns it. - - Calls :meth:`format_help` internally. - """ - formatter = ctx.make_formatter() - self.format_help(ctx, formatter) - return formatter.getvalue().rstrip("\n") - - def get_short_help_str(self, limit: int = 45) -> str: - """Gets short help for the command or makes it by shortening the - long help string. - """ - if self.short_help: - text = inspect.cleandoc(self.short_help) - elif self.help: - text = make_default_short_help(self.help, limit) - else: - text = "" - - if self.deprecated: - text = f"{_(text)} {_format_deprecated_label(self.deprecated)}" - - return text.strip() - - def format_help(self, ctx: Context, formatter: HelpFormatter) -> None: - """Writes the help into the formatter if it exists. - - This is a low-level method called by :meth:`get_help`. - - This calls the following methods: - - - :meth:`format_usage` - - :meth:`format_help_text` - - :meth:`format_options` - - :meth:`format_epilog` - """ - self.format_usage(ctx, formatter) - self.format_help_text(ctx, formatter) - self.format_options(ctx, formatter) - self.format_epilog(ctx, formatter) - - def format_help_text(self, ctx: Context, formatter: HelpFormatter) -> None: - """Writes the help text to the formatter if it exists.""" - if self.help is not None: - # truncate the help text to the first form feed - text = inspect.cleandoc(self.help).partition("\f")[0] - else: - text = "" - - if self.deprecated: - label = _format_deprecated_label(self.deprecated) - text = f"{_(text)} {label}" if text else label - - if text: - formatter.write_paragraph() - - with formatter.indentation(): - formatter.write_text(text) - - def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: - """Writes all the options into the formatter if they exist.""" - opts = [] - for param in self.get_params(ctx): - rv = param.get_help_record(ctx) - if rv is not None: - opts.append(rv) - - if opts: - with formatter.section(_("Options")): - formatter.write_dl(opts) - - def format_epilog(self, ctx: Context, formatter: HelpFormatter) -> None: - """Writes the epilog into the formatter if it exists.""" - if self.epilog: - epilog = inspect.cleandoc(self.epilog) - formatter.write_paragraph() - - with formatter.indentation(): - formatter.write_text(epilog) - - def make_context( - self, - info_name: str | None, - args: list[str], - parent: Context | None = None, - **extra: t.Any, - ) -> Context: - """This function when given an info name and arguments will kick - off the parsing and create a new :class:`Context`. It does not - invoke the actual command callback though. - - To quickly customize the context class used without overriding - this method, set the :attr:`context_class` attribute. - - :param info_name: the info name for this invocation. Generally this - is the most descriptive name for the script or - command. For the toplevel script it's usually - the name of the script, for commands below it's - the name of the command. - :param args: the arguments to parse as list of strings. - :param parent: the parent context if available. - :param extra: extra keyword arguments forwarded to the context - constructor. - - .. versionchanged:: 8.0 - Added the :attr:`context_class` attribute. - """ - for key, value in self.context_settings.items(): - if key not in extra: - extra[key] = value - - ctx = self.context_class(self, info_name=info_name, parent=parent, **extra) - - with ctx.scope(cleanup=False): - self.parse_args(ctx, args) - return ctx - - def parse_args(self, ctx: Context, args: list[str]) -> list[str]: - if not args and self.no_args_is_help and not ctx.resilient_parsing: - raise NoArgsIsHelpError(ctx) - - parser = self.make_parser(ctx) - opts, args, param_order = parser.parse_args(args=args) - - for param in iter_params_for_processing(param_order, self.get_params(ctx)): - _, args = param.handle_parse_result(ctx, opts, args) - - # We now have all parameters' values into `ctx.params`, but the data may contain - # the `UNSET` sentinel. - # Convert `UNSET` to `None` to ensure that the user doesn't see `UNSET`. - # - # Waiting until after the initial parse to convert allows us to treat `UNSET` - # more like a missing value when multiple params use the same name. - # Refs: - # https://github.com/pallets/click/issues/3071 - # https://github.com/pallets/click/pull/3079 - for name, value in ctx.params.items(): - if value is UNSET: - ctx.params[name] = None - - if args and not ctx.allow_extra_args and not ctx.resilient_parsing: - ctx.fail( - ngettext( - "Got unexpected extra argument ({args})", - "Got unexpected extra arguments ({args})", - len(args), - ).format(args=" ".join(map(str, args))) - ) - - ctx.args = args - ctx._opt_prefixes.update(parser._opt_prefixes) - return args - - def invoke(self, ctx: Context) -> t.Any: - """Given a context, this invokes the attached callback (if it exists) - in the right way. - """ - if self.deprecated: - message = _( - "DeprecationWarning: The command {name!r} is deprecated.{extra_message}" - ).format( - name=self.name, - extra_message=_format_deprecated_suffix(self.deprecated), - ) - echo(style(message, fg="red"), err=True) - - if self.callback is not None: - return ctx.invoke(self.callback, **ctx.params) - - def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: - """Return a list of completions for the incomplete value. Looks - at the names of options and chained multi-commands. - - Any command could be part of a chained multi-command, so sibling - commands are valid at any point during command completion. - - :param ctx: Invocation context for this command. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - from click.shell_completion import CompletionItem - - results: list[CompletionItem] = [] - - if incomplete and not incomplete[0].isalnum(): - for param in self.get_params(ctx): - if ( - not isinstance(param, Option) - or param.hidden - or ( - not param.multiple - and ctx.get_parameter_source(param.name) - is ParameterSource.COMMANDLINE - ) - ): - continue - - results.extend( - CompletionItem(name, help=param.help) - for name in [*param.opts, *param.secondary_opts] - if name.startswith(incomplete) - ) - - while ctx.parent is not None: - ctx = ctx.parent - - if isinstance(ctx.command, Group) and ctx.command.chain: - results.extend( - CompletionItem(name, help=command.get_short_help_str()) - for name, command in _complete_visible_commands(ctx, incomplete) - if name not in ctx._protected_args - ) - - return results - - @t.overload - def main( - self, - args: cabc.Sequence[str] | None = None, - prog_name: str | None = None, - complete_var: str | None = None, - standalone_mode: t.Literal[True] = True, - **extra: t.Any, - ) -> t.NoReturn: ... - - @t.overload - def main( - self, - args: cabc.Sequence[str] | None = None, - prog_name: str | None = None, - complete_var: str | None = None, - standalone_mode: bool = ..., - **extra: t.Any, - ) -> t.Any: ... - - def main( - self, - args: cabc.Sequence[str] | None = None, - prog_name: str | None = None, - complete_var: str | None = None, - standalone_mode: bool = True, - windows_expand_args: bool = True, - **extra: t.Any, - ) -> t.Any: - """This is the way to invoke a script with all the bells and - whistles as a command line application. This will always terminate - the application after a call. If this is not wanted, ``SystemExit`` - needs to be caught. - - This method is also available by directly calling the instance of - a :class:`Command`. - - :param args: the arguments that should be used for parsing. If not - provided, ``sys.argv[1:]`` is used. - :param prog_name: the program name that should be used. By default - the program name is constructed by taking the file - name from ``sys.argv[0]``. - :param complete_var: the environment variable that controls the - bash completion support. The default is - ``"__COMPLETE"`` with prog_name in - uppercase. - :param standalone_mode: the default behavior is to invoke the script - in standalone mode. Click will then - handle exceptions and convert them into - error messages and the function will never - return but shut down the interpreter. If - this is set to `False` they will be - propagated to the caller and the return - value of this function is the return value - of :meth:`invoke`. - :param windows_expand_args: Expand glob patterns, user dir, and - env vars in command line args on Windows. - :param extra: extra keyword arguments are forwarded to the context - constructor. See :class:`Context` for more information. - - .. versionchanged:: 8.0.1 - Added the ``windows_expand_args`` parameter to allow - disabling command line arg expansion on Windows. - - .. versionchanged:: 8.0 - When taking arguments from ``sys.argv`` on Windows, glob - patterns, user dir, and env vars are expanded. - - .. versionchanged:: 3.0 - Added the ``standalone_mode`` parameter. - """ - if args is None: - args = sys.argv[1:] - - if os.name == "nt" and windows_expand_args: - args = _expand_args(args) - else: - args = list(args) - - if prog_name is None: - prog_name = _detect_program_name() - - # Process shell completion requests and exit early. - self._main_shell_completion(extra, prog_name, complete_var) - - try: - try: - with self.make_context(prog_name, args, **extra) as ctx: - rv = self.invoke(ctx) - if not standalone_mode: - return rv - # it's not safe to `ctx.exit(rv)` here! - # note that `rv` may actually contain data like "1" which - # has obvious effects - # more subtle case: `rv=[None, None]` can come out of - # chained commands which all returned `None` -- so it's not - # even always obvious that `rv` indicates success/failure - # by its truthiness/falsiness - ctx.exit() - except (EOFError, KeyboardInterrupt) as e: - echo(file=sys.stderr) - raise Abort() from e - except ClickException as e: - if not standalone_mode: - raise - e.show() - sys.exit(e.exit_code) - except OSError as e: - if e.errno == errno.EPIPE: - sys.stdout = t.cast(t.TextIO, PacifyFlushWrapper(sys.stdout)) - sys.stderr = t.cast(t.TextIO, PacifyFlushWrapper(sys.stderr)) - sys.exit(1) - else: - raise - except Exit as e: - if standalone_mode: - sys.exit(e.exit_code) - else: - # in non-standalone mode, return the exit code - # note that this is only reached if `self.invoke` above raises - # an Exit explicitly -- thus bypassing the check there which - # would return its result - # the results of non-standalone execution may therefore be - # somewhat ambiguous: if there are codepaths which lead to - # `ctx.exit(1)` and to `return 1`, the caller won't be able to - # tell the difference between the two - return e.exit_code - except Abort: - if not standalone_mode: - raise - echo(_("Aborted!"), file=sys.stderr) - sys.exit(1) - - def _main_shell_completion( - self, - ctx_args: cabc.MutableMapping[str, t.Any], - prog_name: str, - complete_var: str | None = None, - ) -> None: - """Check if the shell is asking for tab completion, process - that, then exit early. Called from :meth:`main` before the - program is invoked. - - :param prog_name: Name of the executable in the shell. - :param complete_var: Name of the environment variable that holds - the completion instruction. Defaults to - ``_{PROG_NAME}_COMPLETE``. - - .. versionchanged:: 8.2.0 - Dots (``.``) in ``prog_name`` are replaced with underscores (``_``). - """ - if complete_var is None: - complete_name = prog_name.replace("-", "_").replace(".", "_") - complete_var = f"_{complete_name}_COMPLETE".upper() - - instruction = os.environ.get(complete_var) - - if not instruction: - return - - from .shell_completion import shell_complete - - rv = shell_complete(self, ctx_args, prog_name, complete_var, instruction) - sys.exit(rv) - - def __call__(self, *args: t.Any, **kwargs: t.Any) -> t.Any: - """Alias for :meth:`main`.""" - return self.main(*args, **kwargs) - - -class _FakeSubclassCheck(type): - def __subclasscheck__(cls, subclass: type) -> bool: - return issubclass(subclass, cls.__bases__[0]) - - def __instancecheck__(cls, instance: t.Any) -> bool: - return isinstance(instance, cls.__bases__[0]) - - -class _BaseCommand(Command, metaclass=_FakeSubclassCheck): - """ - .. deprecated:: 8.2 - Will be removed in Click 9.0. Use ``Command`` instead. - """ - - -class Group(Command): - """A group is a command that nests other commands (or more groups). - - :param name: The name of the group command. - :param commands: Map names to :class:`Command` objects. Can be a list, which - will use :attr:`Command.name` as the keys. - :param invoke_without_command: Invoke the group's callback even if a - subcommand is not given. - :param no_args_is_help: If no arguments are given, show the group's help and - exit. Defaults to the opposite of ``invoke_without_command``. - :param subcommand_metavar: How to represent the subcommand argument in help. - The default will represent whether ``chain`` is set or not. - :param chain: Allow passing more than one subcommand argument. After parsing - a command's arguments, if any arguments remain another command will be - matched, and so on. - :param result_callback: A function to call after the group's and - subcommand's callbacks. The value returned by the subcommand is passed. - If ``chain`` is enabled, the value will be a list of values returned by - all the commands. If ``invoke_without_command`` is enabled, the value - will be the value returned by the group's callback, or an empty list if - ``chain`` is enabled. - :param kwargs: Other arguments passed to :class:`Command`. - - .. versionchanged:: 8.0 - The ``commands`` argument can be a list of command objects. - - .. versionchanged:: 8.2 - Merged with and replaces the ``MultiCommand`` base class. - """ - - allow_extra_args = True - allow_interspersed_args = False - - #: If set, this is used by the group's :meth:`command` decorator - #: as the default :class:`Command` class. This is useful to make all - #: subcommands use a custom command class. - #: - #: .. versionadded:: 8.0 - command_class: type[Command] | None = None - - #: If set, this is used by the group's :meth:`group` decorator - #: as the default :class:`Group` class. This is useful to make all - #: subgroups use a custom group class. - #: - #: If set to the special value :class:`type` (literally - #: ``group_class = type``), this group's class will be used as the - #: default class. This makes a custom group class continue to make - #: custom groups. - #: - #: .. versionadded:: 8.0 - group_class: type[Group] | type[type] | None = None - # Literal[type] isn't valid, so use Type[type] - - commands: cabc.MutableMapping[str, Command] - invoke_without_command: bool - subcommand_metavar: str - chain: bool - _result_callback: t.Callable[..., t.Any] | None - - def __init__( - self, - name: str | None = None, - commands: cabc.MutableMapping[str, Command] - | cabc.Sequence[Command] - | None = None, - invoke_without_command: bool = False, - no_args_is_help: bool | None = None, - subcommand_metavar: str | None = None, - chain: bool = False, - result_callback: t.Callable[..., t.Any] | None = None, - **kwargs: t.Any, - ) -> None: - super().__init__(name, **kwargs) - - if commands is None: - commands = {} - elif isinstance(commands, abc.Sequence): - commands = {c.name: c for c in commands if c.name is not None} - - #: The registered subcommands by their exported names. - self.commands = commands - - if no_args_is_help is None: - no_args_is_help = not invoke_without_command - - self.no_args_is_help = no_args_is_help - self.invoke_without_command = invoke_without_command - - if subcommand_metavar is None: - # When the group can run without a subcommand, the leading command - # token is optional, so wrap it in brackets to reflect that. - if chain: - if invoke_without_command: - subcommand_metavar = "[COMMAND1] [ARGS]... [COMMAND2 [ARGS]...]..." - else: - subcommand_metavar = "COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]..." - elif invoke_without_command: - subcommand_metavar = "[COMMAND] [ARGS]..." - else: - subcommand_metavar = "COMMAND [ARGS]..." - - self.subcommand_metavar = subcommand_metavar - self.chain = chain - # The result callback that is stored. This can be set or - # overridden with the :func:`result_callback` decorator. - self._result_callback = result_callback - - if self.chain: - for param in self.params: - if isinstance(param, Argument) and not param.required: - raise RuntimeError( - "A group in chain mode cannot have optional arguments." - ) - - def to_info_dict(self, ctx: Context) -> dict[str, t.Any]: - info_dict = super().to_info_dict(ctx) - commands = {} - - for name in self.list_commands(ctx): - command = self.get_command(ctx, name) - - if command is None: - continue - - sub_ctx = ctx._make_sub_context(command) - - with sub_ctx.scope(cleanup=False): - commands[name] = command.to_info_dict(sub_ctx) - - info_dict.update(commands=commands, chain=self.chain) - return info_dict - - def add_command(self, cmd: Command, name: str | None = None) -> None: - """Registers another :class:`Command` with this group. If the name - is not provided, the name of the command is used. - """ - name = name or cmd.name - if name is None: - raise TypeError("Command has no name.") - _check_nested_chain(self, name, cmd, register=True) - self.commands[name] = cmd - - @t.overload - def command(self, __func: t.Callable[..., t.Any]) -> Command: ... - - @t.overload - def command( - self, *args: t.Any, **kwargs: t.Any - ) -> t.Callable[[t.Callable[..., t.Any]], Command]: ... - - def command( - self, *args: t.Any, **kwargs: t.Any - ) -> t.Callable[[t.Callable[..., t.Any]], Command] | Command: - """A shortcut decorator for declaring and attaching a command to - the group. This takes the same arguments as :func:`command` and - immediately registers the created command with this group by - calling :meth:`add_command`. - - To customize the command class used, set the - :attr:`command_class` attribute. - - .. versionchanged:: 8.1 - This decorator can be applied without parentheses. - - .. versionchanged:: 8.0 - Added the :attr:`command_class` attribute. - """ - from .decorators import command - - func: t.Callable[..., t.Any] | None = None - - if args and callable(args[0]): - assert len(args) == 1 and not kwargs, ( - "Use 'command(**kwargs)(callable)' to provide arguments." - ) - (func,) = args - args = () - - if self.command_class and kwargs.get("cls") is None: - kwargs["cls"] = self.command_class - - def decorator(f: t.Callable[..., t.Any]) -> Command: - cmd: Command = command(*args, **kwargs)(f) - self.add_command(cmd) - return cmd - - if func is not None: - return decorator(func) - - return decorator - - @t.overload - def group(self, __func: t.Callable[..., t.Any]) -> Group: ... - - @t.overload - def group( - self, *args: t.Any, **kwargs: t.Any - ) -> t.Callable[[t.Callable[..., t.Any]], Group]: ... - - def group( - self, *args: t.Any, **kwargs: t.Any - ) -> t.Callable[[t.Callable[..., t.Any]], Group] | Group: - """A shortcut decorator for declaring and attaching a group to - the group. This takes the same arguments as :func:`group` and - immediately registers the created group with this group by - calling :meth:`add_command`. - - To customize the group class used, set the :attr:`group_class` - attribute. - - .. versionchanged:: 8.1 - This decorator can be applied without parentheses. - - .. versionchanged:: 8.0 - Added the :attr:`group_class` attribute. - """ - from .decorators import group - - func: t.Callable[..., t.Any] | None = None - - if args and callable(args[0]): - assert len(args) == 1 and not kwargs, ( - "Use 'group(**kwargs)(callable)' to provide arguments." - ) - (func,) = args - args = () - - if self.group_class is not None and kwargs.get("cls") is None: - if self.group_class is type: - kwargs["cls"] = type(self) - else: - kwargs["cls"] = self.group_class - - def decorator(f: t.Callable[..., t.Any]) -> Group: - cmd: Group = group(*args, **kwargs)(f) - self.add_command(cmd) - return cmd - - if func is not None: - return decorator(func) - - return decorator - - def result_callback(self, replace: bool = False) -> t.Callable[[F], F]: - """Adds a result callback to the command. By default if a - result callback is already registered this will chain them but - this can be disabled with the `replace` parameter. The result - callback is invoked with the return value of the subcommand - (or the list of return values from all subcommands if chaining - is enabled) as well as the parameters as they would be passed - to the main callback. - - Example:: - - @click.group() - @click.option('-i', '--input', default=23) - def cli(input): - return 42 - - @cli.result_callback() - def process_result(result, input): - return result + input - - :param replace: if set to `True` an already existing result - callback will be removed. - - .. versionchanged:: 8.0 - Renamed from ``resultcallback``. - - .. versionadded:: 3.0 - """ - - def decorator(f: F) -> F: - old_callback = self._result_callback - - if old_callback is None or replace: - self._result_callback = f - return f - - def function(value: t.Any, /, *args: t.Any, **kwargs: t.Any) -> t.Any: - inner = old_callback(value, *args, **kwargs) - return f(inner, *args, **kwargs) - - self._result_callback = rv = update_wrapper(t.cast(F, function), f) - return rv # type: ignore[return-value] - - return decorator - - def get_command(self, ctx: Context, cmd_name: str) -> Command | None: - """Given a context and a command name, this returns a :class:`Command` - object if it exists or returns ``None``. - """ - return self.commands.get(cmd_name) - - def list_commands(self, ctx: Context) -> list[str]: - """Returns a list of subcommand names in the order they should appear.""" - return sorted(self.commands) - - def collect_usage_pieces(self, ctx: Context) -> list[str]: - rv = super().collect_usage_pieces(ctx) - rv.append(self.subcommand_metavar) - return rv - - def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: - super().format_options(ctx, formatter) - self.format_commands(ctx, formatter) - - def format_commands(self, ctx: Context, formatter: HelpFormatter) -> None: - """Extra format methods for multi methods that adds all the commands - after the options. - """ - commands = [] - for subcommand in self.list_commands(ctx): - cmd = self.get_command(ctx, subcommand) - # What is this, the tool lied about a command. Ignore it - if cmd is None: - continue - if cmd.hidden: - continue - - commands.append((subcommand, cmd)) - - # allow for 3 times the default spacing - if len(commands): - limit = formatter.width - 6 - max(len(cmd[0]) for cmd in commands) - - rows = [] - for subcommand, cmd in commands: - help = cmd.get_short_help_str(limit) - rows.append((subcommand, help)) - - if rows: - with formatter.section(_("Commands")): - formatter.write_dl(rows) - - def parse_args(self, ctx: Context, args: list[str]) -> list[str]: - if not args and self.no_args_is_help and not ctx.resilient_parsing: - raise NoArgsIsHelpError(ctx) - - rest = super().parse_args(ctx, args) - - if self.chain: - ctx._protected_args = rest - ctx.args = [] - elif rest: - ctx._protected_args, ctx.args = rest[:1], rest[1:] - - return ctx.args - - def invoke(self, ctx: Context) -> t.Any: - def _process_result(value: t.Any) -> t.Any: - if self._result_callback is not None: - value = ctx.invoke(self._result_callback, value, **ctx.params) - return value - - if not ctx._protected_args: - if self.invoke_without_command: - # No subcommand was invoked, so the result callback is - # invoked with the group return value for regular - # groups, or an empty list for chained groups. - with ctx: - rv = super().invoke(ctx) - return _process_result([] if self.chain else rv) - ctx.fail(_("Missing command.")) - - # Fetch args back out - args = [*ctx._protected_args, *ctx.args] - ctx.args = [] - ctx._protected_args = [] - - # If we're not in chain mode, we only allow the invocation of a - # single command but we also inform the current context about the - # name of the command to invoke. - if not self.chain: - # Make sure the context is entered so we do not clean up - # resources until the result processor has worked. - with ctx: - cmd_name, cmd, args = self.resolve_command(ctx, args) - assert cmd is not None - ctx.invoked_subcommand = cmd_name - super().invoke(ctx) - sub_ctx = cmd.make_context(cmd_name, args, parent=ctx) - with sub_ctx: - return _process_result(sub_ctx.command.invoke(sub_ctx)) - - # In chain mode we create the contexts step by step, but after the - # base command has been invoked. Because at that point we do not - # know the subcommands yet, the invoked subcommand attribute is - # set to ``*`` to inform the command that subcommands are executed - # but nothing else. - with ctx: - ctx.invoked_subcommand = "*" if args else None - super().invoke(ctx) - - # Otherwise we make every single context and invoke them in a - # chain. In that case the return value to the result processor - # is the list of all invoked subcommand's results. - contexts = [] - while args: - cmd_name, cmd, args = self.resolve_command(ctx, args) - assert cmd is not None - sub_ctx = cmd.make_context( - cmd_name, - args, - parent=ctx, - allow_extra_args=True, - allow_interspersed_args=False, - ) - contexts.append(sub_ctx) - args, sub_ctx.args = sub_ctx.args, [] - - rv = [] - for sub_ctx in contexts: - with sub_ctx: - rv.append(sub_ctx.command.invoke(sub_ctx)) - return _process_result(rv) - - def resolve_command( - self, ctx: Context, args: list[str] - ) -> tuple[str | None, Command | None, list[str]]: - cmd_name = make_str(args[0]) - - # Get the command - cmd = self.get_command(ctx, cmd_name) - - # If we can't find the command but there is a normalization - # function available, we try with that one. - if cmd is None and ctx.token_normalize_func is not None: - cmd_name = ctx.token_normalize_func(cmd_name) - cmd = self.get_command(ctx, cmd_name) - - # If we don't find the command we want to show an error message - # to the user that it was not provided. However, there is - # something else we should do: if the first argument looks like - # an option we want to kick off parsing again for arguments to - # resolve things like --help which now should go to the main - # place. - if cmd is None and not ctx.resilient_parsing: - if _split_opt(cmd_name)[0]: - self.parse_args(ctx, args) - raise NoSuchCommand(cmd_name, possibilities=self.commands, ctx=ctx) - return cmd_name if cmd else None, cmd, args[1:] - - def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: - """Return a list of completions for the incomplete value. Looks - at the names of options, subcommands, and chained - multi-commands. - - :param ctx: Invocation context for this command. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - from click.shell_completion import CompletionItem - - results = [ - CompletionItem(name, help=command.get_short_help_str()) - for name, command in _complete_visible_commands(ctx, incomplete) - ] - results.extend(super().shell_complete(ctx, incomplete)) - return results - - -class _MultiCommand(Group, metaclass=_FakeSubclassCheck): - """ - .. deprecated:: 8.2 - Will be removed in Click 9.0. Use ``Group`` instead. - """ - - -class CommandCollection(Group): - """A :class:`Group` that looks up subcommands on other groups. If a command - is not found on this group, each registered source is checked in order. - Parameters on a source are not added to this group, and a source's callback - is not invoked when invoking its commands. In other words, this "flattens" - commands in many groups into this one group. - - :param name: The name of the group command. - :param sources: A list of :class:`Group` objects to look up commands from. - :param kwargs: Other arguments passed to :class:`Group`. - - .. versionchanged:: 8.2 - This is a subclass of ``Group``. Commands are looked up first on this - group, then each of its sources. - """ - - sources: list[Group] - - def __init__( - self, - name: str | None = None, - sources: list[Group] | None = None, - **kwargs: t.Any, - ) -> None: - super().__init__(name, **kwargs) - #: The list of registered groups. - self.sources = sources or [] - - def add_source(self, group: Group) -> None: - """Add a group as a source of commands.""" - self.sources.append(group) - - def get_command(self, ctx: Context, cmd_name: str) -> Command | None: - rv = super().get_command(ctx, cmd_name) - - if rv is not None: - return rv - - for source in self.sources: - rv = source.get_command(ctx, cmd_name) - - if rv is not None: - if self.chain: - _check_nested_chain(self, cmd_name, rv) - - return rv - - return None - - def list_commands(self, ctx: Context) -> list[str]: - rv: set[str] = set(super().list_commands(ctx)) - - for source in self.sources: - rv.update(source.list_commands(ctx)) - - return sorted(rv) - - -def _check_iter(value: cabc.Iterable[V]) -> cabc.Iterator[V]: - """Check if the value is iterable but not a string. Raises a type - error, or return an iterator over the value. - """ - if isinstance(value, str): - raise TypeError - - return iter(value) - - -class Parameter(ABC): - r"""A parameter to a command comes in two versions: they are either - :class:`Option`\s or :class:`Argument`\s. Other subclasses are currently - not supported by design as some of the internals for parsing are - intentionally not finalized. - - Some settings are supported by both options and arguments. - - :param param_decls: the parameter declarations for this option or - argument. This is a list of flags or argument - names. - :param type: the type that should be used. Either a :class:`ParamType` - or a Python type. The latter is converted into the former - automatically if supported. - :param required: controls if this is optional or not. - :param default: the default value if omitted. This can also be a callable, - in which case it's invoked when the default is needed - without any arguments. - :param callback: A function to further process or validate the value - after type conversion. It is called as ``f(ctx, param, value)`` - and must return the value. It is called for all sources, - including prompts. - :param nargs: the number of arguments to match. If not ``1`` the return - value is a tuple instead of single value. The default for - nargs is ``1`` (except if the type is a tuple, then it's - the arity of the tuple). If ``nargs=-1``, all remaining - parameters are collected. - :param metavar: how the value is represented in the help page. - :param expose_value: if this is `True` then the value is passed onwards - to the command callback and stored on the context, - otherwise it's skipped. - :param is_eager: eager values are processed before non eager ones. This - should not be set for arguments or it will inverse the - order of processing. - :param envvar: environment variable(s) that are used to provide a default value for - this parameter. This can be a string or a sequence of strings. If a sequence is - given, only the first non-empty environment variable is used for the parameter. - :param shell_complete: A function that returns custom shell - completions. Used instead of the param's type completion if - given. Takes ``ctx, param, incomplete`` and must return a list - of :class:`~click.shell_completion.CompletionItem` or a list of - strings. - :param deprecated: If ``True`` or non-empty string, issues a message - indicating that the argument is deprecated and highlights - its deprecation in --help. The message can be customized - by using a string as the value. A deprecated parameter - cannot be required, a ValueError will be raised otherwise. - - .. versionchanged:: 8.2.0 - Introduction of ``deprecated``. - - .. versionchanged:: 8.2 - Adding duplicate parameter names to a :class:`~click.core.Command` will - result in a ``UserWarning`` being shown. - - .. versionchanged:: 8.2 - Adding duplicate parameter names to a :class:`~click.core.Command` will - result in a ``UserWarning`` being shown. - - .. versionchanged:: 8.0 - ``process_value`` validates required parameters and bounded - ``nargs``, and invokes the parameter callback before returning - the value. This allows the callback to validate prompts. - ``full_process_value`` is removed. - - .. versionchanged:: 8.0 - ``autocompletion`` is renamed to ``shell_complete`` and has new - semantics described above. The old name is deprecated and will - be removed in 8.1, until then it will be wrapped to match the - new requirements. - - .. versionchanged:: 8.0 - For ``multiple=True, nargs>1``, the default must be a list of - tuples. - - .. versionchanged:: 8.0 - Setting a default is no longer required for ``nargs>1``, it will - default to ``None``. ``multiple=True`` or ``nargs=-1`` will - default to ``()``. - - .. versionchanged:: 7.1 - Empty environment variables are ignored rather than taking the - empty string value. This makes it possible for scripts to clear - variables if they can't unset them. - - .. versionchanged:: 2.0 - Changed signature for parameter callback to also be passed the - parameter. The old callback format will still work, but it will - raise a warning to give you a chance to migrate the code easier. - """ - - param_type_name = "parameter" - - name: str - opts: list[str] - secondary_opts: list[str] - # `Parameter.type` is annotated in `__init__` to avoid confusing mypy - required: bool - callback: t.Callable[[Context, Parameter, t.Any], t.Any] | None - nargs: int - multiple: bool - expose_value: bool - default: t.Any | t.Callable[[], t.Any] | None - _default_explicit: bool - is_eager: bool - metavar: str | None - envvar: str | cabc.Sequence[str] | None - _custom_shell_complete: ( - t.Callable[[Context, Parameter, str], list[CompletionItem] | list[str]] | None - ) - deprecated: bool | str - - def __init__( - self, - param_decls: cabc.Sequence[str] | None = None, - type: types.ParamType[t.Any] | t.Any | None = None, - required: bool = False, - # XXX The default historically embed two concepts: - # - the declaration of a Parameter object carrying the default (handy to - # arbitrage the default value of coupled Parameters sharing the same - # self.name, like flag options), - # - and the actual value of the default. - # It is confusing and is the source of many issues discussed in: - # https://github.com/pallets/click/pull/3030 - # In the future, we might think of splitting it in two, not unlike - # Option.is_flag and Option.flag_value: we could have something like - # Parameter.is_default and Parameter.default_value. - default: t.Any | t.Callable[[], t.Any] | None = UNSET, - callback: t.Callable[[Context, Parameter, t.Any], t.Any] | None = None, - nargs: int | None = None, - multiple: bool = False, - metavar: str | None = None, - expose_value: bool = True, - is_eager: bool = False, - envvar: str | cabc.Sequence[str] | None = None, - shell_complete: t.Callable[ - [Context, Parameter, str], list[CompletionItem] | list[str] - ] - | None = None, - deprecated: bool | str = False, - ) -> None: - self.name, self.opts, self.secondary_opts = self._parse_decls( - param_decls or (), expose_value - ) - self.type: types.ParamType[t.Any] = types.convert_type(type, default) - - # Default nargs to what the type tells us if we have that - # information available. - if nargs is None: - if self.type.is_composite: - nargs = self.type.arity - else: - nargs = 1 - - self.required = required - self.callback = callback - self.nargs = nargs - self.multiple = multiple - self.expose_value = expose_value - self.default = default - # Whether the user passed ``default`` explicitly to the constructor. - # Captured before any auto-derived default (like ``False`` for boolean - # flags in :class:`Option`) replaces the :data:`UNSET` sentinel, so it - # remains ``False`` when the default was inferred rather than chosen. - # Refs: https://github.com/pallets/click/issues/3403 - self._default_explicit = default is not UNSET - self.is_eager = is_eager - self.metavar = metavar - self.envvar = envvar - self._custom_shell_complete = shell_complete - self.deprecated = deprecated - - if __debug__: - if self.type.is_composite and nargs != self.type.arity: - raise ValueError( - f"'nargs' must be {self.type.arity} (or None) for" - f" type {self.type!r}, but it was {nargs}." - ) - - if required and deprecated: - raise ValueError( - f"The {self.param_type_name} '{self.human_readable_name}' " - "is deprecated and still required. A deprecated " - f"{self.param_type_name} cannot be required." - ) - - def to_info_dict(self) -> dict[str, t.Any]: - """Gather information that could be useful for a tool generating - user-facing documentation. - - Use :meth:`click.Context.to_info_dict` to traverse the entire - CLI structure. - - .. versionchanged:: 8.3.0 - Returns ``None`` for the :attr:`default` if it was not set. - - .. versionadded:: 8.0 - """ - return { - "name": self.name, - "param_type_name": self.param_type_name, - "opts": self.opts, - "secondary_opts": self.secondary_opts, - "type": self.type.to_info_dict(), - "required": self.required, - "nargs": self.nargs, - "multiple": self.multiple, - # We explicitly hide the :attr:`UNSET` value to the user, as we choose to - # make it an implementation detail. And because ``to_info_dict`` has been - # designed for documentation purposes, we return ``None`` instead. - "default": self.default if self.default is not UNSET else None, - "envvar": self.envvar, - } - - def __repr__(self) -> str: - return f"<{self.__class__.__name__} {self.name}>" - - @abstractmethod - def _parse_decls( - self, decls: cabc.Sequence[str], expose_value: bool - ) -> tuple[str, list[str], list[str]]: ... - - @property - def human_readable_name(self) -> str: - """Returns the human readable name of this parameter. This is the - same as the name for options, but the metavar for arguments. - """ - return self.name - - def make_metavar(self, ctx: Context) -> str: - if self.metavar is not None: - return self.metavar - - metavar = self.type.get_metavar(param=self, ctx=ctx) - - if metavar is None: - metavar = self.type.name.upper() - - if self.nargs != 1: - metavar += "..." - - return metavar - - @t.overload - def get_default( - self, ctx: Context, call: t.Literal[True] = True - ) -> t.Any | None: ... - - @t.overload - def get_default( - self, ctx: Context, call: bool = ... - ) -> t.Any | t.Callable[[], t.Any] | None: ... - - def get_default( - self, ctx: Context, call: bool = True - ) -> t.Any | t.Callable[[], t.Any] | None: - """Get the default for the parameter. Tries - :meth:`Context.lookup_default` first, then the local default. - - :param ctx: Current context. - :param call: If the default is a callable, call it. Disable to - return the callable instead. - - .. versionchanged:: 8.0.2 - Type casting is no longer performed when getting a default. - - .. versionchanged:: 8.0.1 - Type casting can fail in resilient parsing mode. Invalid - defaults will not prevent showing help text. - - .. versionchanged:: 8.0 - Looks at ``ctx.default_map`` first. - - .. versionchanged:: 8.0 - Added the ``call`` parameter. - """ - value = ctx.lookup_default(self.name, call=False) - - if value is None and not ctx._default_map_has(self.name): - value = self.default - - if call and callable(value): - value = value() - - return value - - @abstractmethod - def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: ... - - def consume_value( - self, ctx: Context, opts: cabc.Mapping[str, t.Any] - ) -> tuple[t.Any, ParameterSource]: - """Returns the parameter value produced by the parser. - - If the parser did not produce a value from user input, the value is either - sourced from the environment variable, the default map, or the parameter's - default value. In that order of precedence. - - If no value is found, an internal sentinel value is returned. - - :meta private: - """ - # Collect from the parse the value passed by the user to the CLI. - value = opts.get(self.name, UNSET) - # If the value is set, it means it was sourced from the command line by the - # parser, otherwise it left unset by default. - source = ( - ParameterSource.COMMANDLINE - if value is not UNSET - else ParameterSource.DEFAULT - ) - - if value is UNSET: - envvar_value = self.value_from_envvar(ctx) - if envvar_value is not None: - value = envvar_value - source = ParameterSource.ENVIRONMENT - - if value is UNSET: - default_map_value = ctx.lookup_default(self.name) - if default_map_value is not None or ctx._default_map_has(self.name): - value = default_map_value - source = ParameterSource.DEFAULT_MAP - - # A string from default_map must be split for multi-value - # parameters, matching value_from_envvar behavior. - if isinstance(value, str) and self.nargs != 1: - value = self.type.split_envvar_value(value) - - if value is UNSET: - default_value = self.get_default(ctx) - if default_value is not UNSET: - value = default_value - source = ParameterSource.DEFAULT - - return value, source - - def type_cast_value(self, ctx: Context, value: t.Any) -> t.Any: - """Convert and validate a value against the parameter's - :attr:`type`, :attr:`multiple`, and :attr:`nargs`. - """ - if value is None: - if self.multiple or self.nargs == -1: - return () - else: - return value - - def check_iter(value: t.Any) -> cabc.Iterator[t.Any]: - try: - return _check_iter(value) - except TypeError: - # This should only happen when passing in args manually, - # the parser should construct an iterable when parsing - # the command line. - raise BadParameter( - _("Value must be an iterable."), ctx=ctx, param=self - ) from None - - # Define the conversion function based on nargs and type. - - if self.nargs == 1 or self.type.is_composite: - - def convert(value: t.Any) -> t.Any: - return self.type(value, param=self, ctx=ctx) - - elif self.nargs == -1: - - def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...] - return tuple(self.type(x, self, ctx) for x in check_iter(value)) - - else: # nargs > 1 - - def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...] - value = tuple(check_iter(value)) - - if len(value) != self.nargs: - raise BadParameter( - ngettext( - "Takes {nargs} values but 1 was given.", - "Takes {nargs} values but {len} were given.", - len(value), - ).format(nargs=self.nargs, len=len(value)), - ctx=ctx, - param=self, - ) - - return tuple(self.type(x, self, ctx) for x in value) - - if self.multiple: - return tuple(convert(x) for x in check_iter(value)) - - return convert(value) - - def value_is_missing(self, value: t.Any) -> bool: - """A value is considered missing if: - - - it is :attr:`UNSET`, - - or if it is an empty sequence while the parameter is suppose to have - non-single value (i.e. :attr:`nargs` is not ``1`` or :attr:`multiple` is - set). - - :meta private: - """ - if value is UNSET: - return True - - if (self.nargs != 1 or self.multiple) and value == (): - return True - - return False - - def process_value(self, ctx: Context, value: t.Any) -> t.Any: - """Process the value of this parameter: - - 1. Type cast the value using :meth:`type_cast_value`. - 2. Check if the value is missing (see: :meth:`value_is_missing`), and raise - :exc:`MissingParameter` if it is required. - 3. If a :attr:`callback` is set, call it to have the value replaced by the - result of the callback. If the value was not set, the callback receive - ``None``. This keep the legacy behavior as it was before the introduction of - the :attr:`UNSET` sentinel. - - :meta private: - """ - # shelter `type_cast_value` from ever seeing an `UNSET` value by handling the - # cases in which `UNSET` gets special treatment explicitly at this layer - # - # Refs: - # https://github.com/pallets/click/issues/3069 - if value is UNSET: - if self.multiple or self.nargs == -1: - value = () - else: - value = self.type_cast_value(ctx, value) - - if self.required and self.value_is_missing(value): - raise MissingParameter(ctx=ctx, param=self) - - if self.callback is not None: - # Legacy case: UNSET is not exposed directly to the callback, but converted - # to None. - if value is UNSET: - value = None - - # Search for parameters with UNSET values in the context. - unset_keys = {k: None for k, v in ctx.params.items() if v is UNSET} - # No UNSET values, call the callback as usual. - if not unset_keys: - value = self.callback(ctx, self, value) - - # Legacy case: provide a temporarily manipulated context to the callback - # to hide UNSET values as None. - # - # Refs: - # https://github.com/pallets/click/issues/3136 - # https://github.com/pallets/click/pull/3137 - else: - # Add another layer to the context stack to clearly hint that the - # context is temporarily modified. - with ctx: - # Update the context parameters to replace UNSET with None. - ctx.params.update(unset_keys) - # Feed these fake context parameters to the callback. - value = self.callback(ctx, self, value) - # Restore the UNSET values in the context parameters. - ctx.params.update( - { - k: UNSET - for k in unset_keys - # Only restore keys that are present and still None, in case - # the callback modified other parameters. - if k in ctx.params and ctx.params[k] is None - } - ) - - return value - - def resolve_envvar_value(self, ctx: Context) -> str | None: - """Returns the value found in the environment variable(s) attached to this - parameter. - - Environment variables values are `always returned as strings - `_. - - This method returns ``None`` if: - - - the :attr:`envvar` property is not set on the :class:`Parameter`, - - the environment variable is not found in the environment, - - the variable is found in the environment but its value is empty (i.e. the - environment variable is present but has an empty string). - - If :attr:`envvar` is setup with multiple environment variables, - then only the first non-empty value is returned. - - .. caution:: - - The raw value extracted from the environment is not normalized and is - returned as-is. Any normalization or reconciliation is performed later by - the :class:`Parameter`'s :attr:`type`. - - :meta private: - """ - if not self.envvar: - return None - - if isinstance(self.envvar, str): - rv = os.environ.get(self.envvar) - - if rv: - return rv - else: - for envvar in self.envvar: - rv = os.environ.get(envvar) - - # Return the first non-empty value of the list of environment variables. - if rv: - return rv - # Else, absence of value is interpreted as an environment variable that - # is not set, so proceed to the next one. - - return None - - def value_from_envvar(self, ctx: Context) -> str | cabc.Sequence[str] | None: - """Process the raw environment variable string for this parameter. - - Returns the string as-is or splits it into a sequence of strings if the - parameter is expecting multiple values (i.e. its :attr:`nargs` property is set - to a value other than ``1``). - - :meta private: - """ - rv = self.resolve_envvar_value(ctx) - - if rv is not None and self.nargs != 1: - return self.type.split_envvar_value(rv) - - return rv - - def handle_parse_result( - self, ctx: Context, opts: cabc.Mapping[str, t.Any], args: list[str] - ) -> tuple[t.Any, list[str]]: - """Process the value produced by the parser from user input. - - Always process the value through the Parameter's :attr:`type`, wherever it - comes from. - - If the parameter is deprecated, this method warn the user about it. But only if - the value has been explicitly set by the user (and as such, is not coming from - a default). - - :meta private: - """ - # Capture the slot's existing state before we mutate - # ``_parameter_source`` so the write decision below can compare our - # incoming source against the source of the option that already wrote - # the slot (if any). - existing_value = ctx.params.get(self.name, UNSET) - existing_source = ctx.get_parameter_source(self.name) - existing_default_explicit = ctx._param_default_explicit.get(self.name, False) - - with augment_usage_errors(ctx, param=self): - value, source = self.consume_value(ctx, opts) - - # Record the source before processing so eager callbacks and type - # conversion can inspect it. Restored after arbitration if this - # option loses a feature-switch group. - ctx.set_parameter_source(self.name, source) - - # Display a deprecation warning if necessary. - if ( - self.deprecated - and value is not UNSET - and source < ParameterSource.DEFAULT_MAP - ): - message = _( - "DeprecationWarning: The {param_type} {name!r} is deprecated." - "{extra_message}" - ).format( - param_type=self.param_type_name, - name=self.human_readable_name, - extra_message=_format_deprecated_suffix(self.deprecated), - ) - echo(style(message, fg="red"), err=True) - - # Process the value through the parameter's type. - try: - value = self.process_value(ctx, value) - except Exception: - if not ctx.resilient_parsing: - raise - # In resilient parsing mode, we do not want to fail the command if the - # value is incompatible with the parameter type, so we reset the value - # to UNSET, which will be interpreted as a missing value. - value = UNSET - - # Arbitrate the slot when several parameters target the same variable - # name (feature-switch groups). See: https://github.com/pallets/click/issues/3403 - slot_empty = existing_value is UNSET - more_explicit = existing_source is not None and source < existing_source - same_source = existing_source is not None and source == existing_source - auto_would_downgrade_explicit = ( - same_source - and source == ParameterSource.DEFAULT - and existing_default_explicit - and not self._default_explicit - ) - is_winner = ( - slot_empty - or more_explicit - or (same_source and not auto_would_downgrade_explicit) - ) - - if is_winner: - if self.expose_value: - ctx.params[self.name] = value - ctx._param_default_explicit[self.name] = self._default_explicit - elif existing_source is not None: - # Lost arbitration; restore the winning option's source. - ctx.set_parameter_source(self.name, existing_source) - # else: ctx.params[self.name] was populated by code that bypassed - # handle_parse_result (from another option's callback for example). Keep - # the provisional source recorded before process_value so downstream - # lookups don't return ``None``. - - return value, args - - def get_help_record(self, ctx: Context) -> tuple[str, str] | None: - return None - - def get_usage_pieces(self, ctx: Context) -> list[str]: - return [] - - def get_error_hint(self, ctx: Context | None) -> str: - """Get a stringified version of the param for use in error messages to - indicate which param caused the error. - - .. versionchanged:: 8.4.0 - ``ctx`` can be ``None``. - """ - hint_list = self.opts or [self.human_readable_name] - return " / ".join(f"'{x}'" for x in hint_list) - - def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]: - """Return a list of completions for the incomplete value. If a - ``shell_complete`` function was given during init, it is used. - Otherwise, the :attr:`type` - :meth:`~click.types.ParamType[t.Any].shell_complete` function is used. - - :param ctx: Invocation context for this command. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - if self._custom_shell_complete is not None: - results = self._custom_shell_complete(ctx, self, incomplete) - - if results and isinstance(results[0], str): - from click.shell_completion import CompletionItem - - results = [CompletionItem(c) for c in results] - - return t.cast("list[CompletionItem]", results) - - return self.type.shell_complete(ctx, self, incomplete) - - -class Option(Parameter): - """Options are usually optional values on the command line and - have some extra features that arguments don't have. - - All other parameters are passed onwards to the parameter constructor. - - :param show_default: Show the default value for this option in its - help text. Values are not shown by default, unless - :attr:`Context.show_default` is ``True``. If this value is a - string, it shows that string in parentheses instead of the - actual value. This is particularly useful for dynamic options. - For single option boolean flags, the default remains hidden if - its value is ``False``. - :param show_envvar: Controls if an environment variable should be - shown on the help page and error messages. - Normally, environment variables are not shown. - :param prompt: If set to ``True`` or a non empty string then the - user will be prompted for input. If set to ``True`` the prompt - will be the option name capitalized. A deprecated option cannot be - prompted. - :param confirmation_prompt: Prompt a second time to confirm the - value if it was prompted for. Can be set to a string instead of - ``True`` to customize the message. - :param prompt_required: If set to ``False``, the user will be - prompted for input only when the option was specified as a flag - without a value. - :param hide_input: If this is ``True`` then the input on the prompt - will be hidden from the user. This is useful for password input. - :param is_flag: forces this option to act as a flag. The default is - auto detection. - :param flag_value: which value should be used for this flag if it's - enabled. This is set to a boolean automatically if - the option string contains a slash to mark two options. - :param multiple: if this is set to `True` then the argument is accepted - multiple times and recorded. This is similar to ``nargs`` - in how it works but supports arbitrary number of - arguments. - :param count: this flag makes an option increment an integer. - :param allow_from_autoenv: if this is enabled then the value of this - parameter will be pulled from an environment - variable in case a prefix is defined on the - context. - :param help: the help string. - :param hidden: hide this option from help outputs. - :param attrs: Other command arguments described in :class:`Parameter`. - - .. versionchanged:: 8.4.0 - Non-basic ``flag_value`` types (not ``str``, ``int``, ``float``, or - ``bool``) are passed through unchanged instead of being stringified. - Previously, ``type=click.UNPROCESSED`` was required to preserve them. - - .. versionchanged:: 8.2 - ``envvar`` used with ``flag_value`` will always use the ``flag_value``, - previously it would use the value of the environment variable. - - .. versionchanged:: 8.1 - Help text indentation is cleaned here instead of only in the - ``@option`` decorator. - - .. versionchanged:: 8.1 - The ``show_default`` parameter overrides - ``Context.show_default``. - - .. versionchanged:: 8.1 - The default of a single option boolean flag is not shown if the - default value is ``False``. - - .. versionchanged:: 8.0.1 - ``type`` is detected from ``flag_value`` if given, for basic Python - types (``str``, ``int``, ``float``, ``bool``). - """ - - param_type_name = "option" - - prompt: str | None - confirmation_prompt: bool | str - prompt_required: bool - hide_input: bool - hidden: bool - - _flag_needs_value: bool - is_flag: bool - is_bool_flag: bool - flag_value: t.Any - - count: bool - allow_from_autoenv: bool - help: str | None - show_default: bool | str | None - show_choices: bool - show_envvar: bool - - def __init__( - self, - param_decls: cabc.Sequence[str] | None = None, - show_default: bool | str | None = None, - prompt: bool | str = False, - confirmation_prompt: bool | str = False, - prompt_required: bool = True, - hide_input: bool = False, - is_flag: bool | None = None, - flag_value: t.Any = UNSET, - multiple: bool = False, - count: bool = False, - allow_from_autoenv: bool = True, - type: types.ParamType[t.Any] | t.Any | None = None, - help: str | None = None, - hidden: bool = False, - show_choices: bool = True, - show_envvar: bool = False, - deprecated: bool | str = False, - **attrs: t.Any, - ) -> None: - if help: - help = inspect.cleandoc(help) - - super().__init__( - param_decls, type=type, multiple=multiple, deprecated=deprecated, **attrs - ) - - if prompt is True: - if not self.name: - raise TypeError("'name' is required with 'prompt=True'.") - - prompt_text = self.name.replace("_", " ").capitalize() - elif prompt is False: - prompt_text = None - else: - prompt_text = prompt - - if deprecated: - label = _format_deprecated_label(deprecated) - help = f"{help} {label}" if help else label - - self.prompt = prompt_text - self.confirmation_prompt = confirmation_prompt - self.prompt_required = prompt_required - self.hide_input = hide_input - self.hidden = hidden - - # The _flag_needs_value property tells the parser that this option is a flag - # that cannot be used standalone and needs a value. With this information, the - # parser can determine whether to consider the next user-provided argument in - # the CLI as a value for this flag or as a new option. - # If prompt is enabled but not required, then it opens the possibility for the - # option to gets its value from the user. - self._flag_needs_value = self.prompt is not None and not self.prompt_required - - # Auto-detect if this is a flag or not. - if is_flag is None: - # Implicitly a flag because flag_value was set. - if flag_value is not UNSET: - is_flag = True - # Not a flag, but when used as a flag it shows a prompt. - elif self._flag_needs_value: - is_flag = False - # Implicitly a flag because secondary options names were given. - elif self.secondary_opts: - is_flag = True - - # The option is explicitly not a flag, but to determine whether or not it needs - # value, we need to check if `flag_value` or `default` was set. Either one is - # sufficient. - # Ref: https://github.com/pallets/click/issues/3084 - elif is_flag is False and not self._flag_needs_value: - self._flag_needs_value = flag_value is not UNSET or self.default is UNSET - - if is_flag: - # Set missing default for flags if not explicitly required or prompted. - if self.default is UNSET and not self.required and not self.prompt: - if multiple: - self.default = () - - # Auto-detect the type of the flag based on the flag_value. - if type is None: - # A flag without a flag_value is a boolean flag. - if flag_value is UNSET: - self.type: types.ParamType[t.Any] = types.BoolParamType() - # If the flag value is a boolean, use BoolParamType. - elif isinstance(flag_value, bool): - self.type = types.BoolParamType() - # Otherwise, guess the type from the flag value. - else: - guessed = types.convert_type(None, flag_value) - if ( - isinstance(guessed, types.StringParamType) - and not isinstance(flag_value, str) - and flag_value is not None - ): - # The flag_value type couldn't be auto-detected - # (not str, int, float, or bool). Since flag_value - # is a programmer-provided Python object, not CLI - # input, pass it through unchanged instead of - # stringifying it. - self.type = types.UNPROCESSED - else: - self.type = guessed - - self.is_flag = bool(is_flag) - self.is_bool_flag = self.is_flag and isinstance(self.type, types.BoolParamType) - self.flag_value = flag_value - - # Set boolean flag default to False if unset and not required. - if self.is_bool_flag: - if self.default is UNSET and not self.required: - self.default = False - - # The alignment of default to the flag_value is resolved lazily in - # get_default() to prevent callable flag_values (like classes) from - # being instantiated. Refs: - # https://github.com/pallets/click/issues/3121 - # https://github.com/pallets/click/issues/3024#issuecomment-3146199461 - # https://github.com/pallets/click/pull/3030/commits/06847da - - # Set the default flag_value if it is not set. - if self.flag_value is UNSET: - if self.is_flag: - self.flag_value = True - else: - self.flag_value = None - - # Counting. - self.count = count - if count: - if type is None: - self.type = types.IntRange(min=0) - if self.default is UNSET: - self.default = 0 - - self.allow_from_autoenv = allow_from_autoenv - self.help = help - self.show_default = show_default - self.show_choices = show_choices - self.show_envvar = show_envvar - - if __debug__: - if deprecated and prompt: - raise ValueError("`deprecated` options cannot use `prompt`.") - - if self.nargs == -1: - raise TypeError("nargs=-1 is not supported for options.") - - if not self.is_bool_flag and self.secondary_opts: - raise TypeError("Secondary flag is not valid for non-boolean flag.") - - if self.is_bool_flag and self.hide_input and self.prompt is not None: - raise TypeError( - "'prompt' with 'hide_input' is not valid for boolean flag." - ) - - if self.count: - if self.multiple: - raise TypeError("'count' is not valid with 'multiple'.") - - if self.is_flag: - raise TypeError("'count' is not valid with 'is_flag'.") - - def to_info_dict(self) -> dict[str, t.Any]: - """ - .. versionchanged:: 8.3.0 - Returns ``None`` for the :attr:`flag_value` if it was not set. - """ - info_dict = super().to_info_dict() - info_dict.update( - help=self.help, - prompt=self.prompt, - is_flag=self.is_flag, - # We explicitly hide the :attr:`UNSET` value to the user, as we choose to - # make it an implementation detail. And because ``to_info_dict`` has been - # designed for documentation purposes, we return ``None`` instead. - flag_value=self.flag_value if self.flag_value is not UNSET else None, - count=self.count, - hidden=self.hidden, - ) - return info_dict - - def get_default( - self, ctx: Context, call: bool = True - ) -> t.Any | t.Callable[[], t.Any] | None: - """Return the default value for this option. - - For non-boolean flag options, ``default=True`` is treated as a sentinel - meaning "activate this flag by default" and is resolved to - :attr:`flag_value`. For example, with ``--upper/--lower`` feature - switches where ``flag_value="upper"`` and ``default=True``, the default - resolves to ``"upper"``. - - .. caution:: - This substitution only applies to non-boolean flags - (:attr:`is_bool_flag` is ``False``). For boolean flags, ``True`` is - a legitimate Python value and ``default=True`` is returned as-is. - - .. versionchanged:: 8.3.3 - ``default=True`` is no longer substituted with ``flag_value`` for - boolean flags, fixing negative boolean flags like - ``flag_value=False, default=True``. - """ - value = super().get_default(ctx, call=False) - - # Resolve default=True to flag_value lazily (here instead of - # __init__) to prevent callable flag_values (like classes) from - # being instantiated by the callable check below. - if value is True and self.is_flag and not self.is_bool_flag: - value = self.flag_value - elif call and callable(value): - value = value() - - return value - - def get_error_hint(self, ctx: Context | None) -> str: - result = super().get_error_hint(ctx) - if self.show_envvar and self.envvar is not None: - result += f" (env var: '{self.envvar}')" - return result - - def _parse_decls( - self, decls: cabc.Sequence[str], expose_value: bool - ) -> tuple[str, list[str], list[str]]: - opts = [] - secondary_opts = [] - name = None - possible_names = [] - - for decl in decls: - if decl.isidentifier(): - if name is not None: - raise TypeError(_("Name '{name}' defined twice").format(name=name)) - name = decl - else: - split_char = ";" if decl[:1] == "/" else "/" - if split_char in decl: - first, second = decl.split(split_char, 1) - first = first.rstrip() - if first: - possible_names.append(_split_opt(first)) - opts.append(first) - second = second.lstrip() - if second: - secondary_opts.append(second.lstrip()) - if first == second: - raise ValueError( - _( - "Boolean option {decl!r} cannot use the" - " same flag for true/false." - ).format(decl=decl) - ) - else: - possible_names.append(_split_opt(decl)) - opts.append(decl) - - if name is None and possible_names: - possible_names.sort(key=lambda x: -len(x[0])) # group long options first - name = possible_names[0][1].replace("-", "_").lower() - if not name.isidentifier(): - name = None - - if name is None: - if not expose_value: - return "", opts, secondary_opts - raise TypeError( - _( - "Could not determine name for option with declarations {decls!r}" - ).format(decls=decls) - ) - - if not opts and not secondary_opts: - raise TypeError( - _( - "No options defined but a name was passed ({name})." - " Did you mean to declare an argument instead? Did" - " you mean to pass '--{name}'?" - ).format(name=name) - ) - - return name, opts, secondary_opts - - def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: - if self.multiple: - action = "append" - elif self.count: - action = "count" - else: - action = "store" - - if self.is_flag: - action = f"{action}_const" - - if self.is_bool_flag and self.secondary_opts: - parser.add_option( - obj=self, opts=self.opts, dest=self.name, action=action, const=True - ) - parser.add_option( - obj=self, - opts=self.secondary_opts, - dest=self.name, - action=action, - const=False, - ) - else: - parser.add_option( - obj=self, - opts=self.opts, - dest=self.name, - action=action, - const=self.flag_value, - ) - else: - parser.add_option( - obj=self, - opts=self.opts, - dest=self.name, - action=action, - nargs=self.nargs, - ) - - def get_help_record(self, ctx: Context) -> tuple[str, str] | None: - if self.hidden: - return None - - any_prefix_is_slash = False - - def _write_opts(opts: cabc.Sequence[str]) -> str: - nonlocal any_prefix_is_slash - - rv, any_slashes = join_options(opts) - - if any_slashes: - any_prefix_is_slash = True - - if not self.is_flag and not self.count: - rv += f" {self.make_metavar(ctx=ctx)}" - - return rv - - rv = [_write_opts(self.opts)] - - if self.secondary_opts: - rv.append(_write_opts(self.secondary_opts)) - - help = self.help or "" - - extra = self.get_help_extra(ctx) - extra_items = [] - if "envvars" in extra: - extra_items.append( - _("env var: {var}").format(var=", ".join(extra["envvars"])) - ) - if "default" in extra: - extra_items.append(_("default: {default}").format(default=extra["default"])) - if "range" in extra: - extra_items.append(extra["range"]) - if "required" in extra: - extra_items.append(_(extra["required"])) - - if extra_items: - extra_str = "; ".join(extra_items) - help = f"{help} [{extra_str}]" if help else f"[{extra_str}]" - - return ("; " if any_prefix_is_slash else " / ").join(rv), help - - def get_help_extra(self, ctx: Context) -> types.OptionHelpExtra: - extra: types.OptionHelpExtra = {} - - if self.show_envvar: - envvar = self.envvar - - if envvar is None: - if ( - self.allow_from_autoenv - and ctx.auto_envvar_prefix is not None - and self.name - ): - envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" - - if envvar is not None: - if isinstance(envvar, str): - extra["envvars"] = (envvar,) - else: - extra["envvars"] = tuple(str(d) for d in envvar) - - # Temporarily enable resilient parsing to avoid type casting - # failing for the default. Might be possible to extend this to - # help formatting in general. - resilient = ctx.resilient_parsing - ctx.resilient_parsing = True - - try: - default_value = self.get_default(ctx, call=False) - finally: - ctx.resilient_parsing = resilient - - show_default = False - show_default_is_str = False - - if self.show_default is not None: - if isinstance(self.show_default, str): - show_default_is_str = show_default = True - else: - show_default = self.show_default - elif ctx.show_default is not None: - show_default = ctx.show_default - - if show_default_is_str or ( - show_default and (default_value not in (None, UNSET)) - ): - if show_default_is_str: - default_string = f"({self.show_default})" - elif isinstance(default_value, (list, tuple)): - default_string = ", ".join(str(d) for d in default_value) - elif isinstance(default_value, enum.Enum): - default_string = default_value.name - elif inspect.isfunction(default_value): - default_string = _("(dynamic)") - elif self.is_bool_flag and self.secondary_opts: - # For boolean flags that have distinct True/False opts, - # use the opt without prefix instead of the value. - default_string = _split_opt( - (self.opts if default_value else self.secondary_opts)[0] - )[1] - elif self.is_bool_flag and not self.secondary_opts and not default_value: - default_string = "" - elif isinstance(default_value, str) and default_value == "": - default_string = '""' - else: - default_string = str(default_value) - - if default_string: - extra["default"] = default_string - - if ( - isinstance(self.type, types._NumberRangeBase) - # skip count with default range type - and not (self.count and self.type.min == 0 and self.type.max is None) - ): - range_str = self.type._describe_range() - - if range_str: - extra["range"] = range_str - - if self.required: - extra["required"] = "required" - - return extra - - def prompt_for_value(self, ctx: Context) -> t.Any: - """This is an alternative flow that can be activated in the full - value processing if a value does not exist. It will prompt the - user until a valid value exists and then returns the processed - value as result. - """ - assert self.prompt is not None - - # Calculate the default before prompting anything to lock in the value before - # attempting any user interaction. - default = self.get_default(ctx) - - # A boolean flag can use a simplified [y/n] confirmation prompt. - if self.is_bool_flag: - # If we have no boolean default, we force the user to explicitly provide - # one. - if default in (UNSET, None): - default = None - # Nothing prevent you to declare an option that is simultaneously: - # 1) auto-detected as a boolean flag, - # 2) allowed to prompt, and - # 3) still declare a non-boolean default. - # This forced casting into a boolean is necessary to align any non-boolean - # default to the prompt, which is going to be a [y/n]-style confirmation - # because the option is still a boolean flag. That way, instead of [y/n], - # we get [Y/n] or [y/N] depending on the truthy value of the default. - # Refs: https://github.com/pallets/click/pull/3030#discussion_r2289180249 - else: - default = bool(default) - return confirm(self.prompt, default) - - # If show_default is given, provide this to `prompt` as well, - # otherwise we use `prompt`'s default behavior - prompt_kwargs: t.Any = {} - if self.show_default is not None: - prompt_kwargs["show_default"] = self.show_default - - return prompt( - self.prompt, - # Use ``None`` to inform the prompt() function to reiterate until a valid - # value is provided by the user if we have no default. - default=None if default is UNSET else default, - type=self.type, - hide_input=self.hide_input, - show_choices=self.show_choices, - confirmation_prompt=self.confirmation_prompt, - value_proc=lambda x: self.process_value(ctx, x), - **prompt_kwargs, - ) - - def resolve_envvar_value(self, ctx: Context) -> str | None: - """:class:`Option` resolves its environment variable the same way as - :func:`Parameter.resolve_envvar_value`, but it also supports - :attr:`Context.auto_envvar_prefix`. If we could not find an environment from - the :attr:`envvar` property, we fallback on :attr:`Context.auto_envvar_prefix` - to build dynamiccaly the environment variable name using the - :python:`{ctx.auto_envvar_prefix}_{self.name.upper()}` template. - - :meta private: - """ - rv = super().resolve_envvar_value(ctx) - - if rv is not None: - return rv - - if self.allow_from_autoenv and ctx.auto_envvar_prefix is not None and self.name: - envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" - rv = os.environ.get(envvar) - - if rv: - return rv - - return None - - def value_from_envvar(self, ctx: Context) -> t.Any: - """For :class:`Option`, this method processes the raw environment variable - string the same way as :func:`Parameter.value_from_envvar` does. - - But in the case of non-boolean flags, the value is analyzed to determine if the - flag is activated or not, and returns a boolean of its activation, or the - :attr:`flag_value` if the latter is set. - - This method also takes care of repeated options (i.e. options with - :attr:`multiple` set to ``True``). - - :meta private: - """ - rv = self.resolve_envvar_value(ctx) - - # Absent environment variable or an empty string is interpreted as unset. - if rv is None: - return None - - # Non-boolean flags are more liberal in what they accept. But a flag being a - # flag, its envvar value still needs to be analyzed to determine if the flag is - # activated or not. - if self.is_flag and not self.is_bool_flag: - # If the flag_value is set and match the envvar value, return it - # directly. - if self.flag_value is not UNSET and rv == self.flag_value: - return self.flag_value - # Analyze the envvar value as a boolean to know if the flag is - # activated or not. - return types.BoolParamType.str_to_bool(rv) - - # Split the envvar value if it is allowed to be repeated. - value_depth = (self.nargs != 1) + bool(self.multiple) - if value_depth > 0: - multi_rv = self.type.split_envvar_value(rv) - if self.multiple and self.nargs != 1: - multi_rv = batch(multi_rv, self.nargs) # type: ignore[assignment] - - return multi_rv - - return rv - - def consume_value( - self, ctx: Context, opts: cabc.Mapping[str, Parameter] - ) -> tuple[t.Any, ParameterSource]: - """For :class:`Option`, the value can be collected from an interactive prompt - if the option is a flag that needs a value (and the :attr:`prompt` property is - set). - - Additionally, this method handles flag option that are activated without a - value, in which case the :attr:`flag_value` is returned. - - :meta private: - """ - value, source = super().consume_value(ctx, opts) - - # The parser will emit a sentinel value if the option is allowed to as a flag - # without a value. - if value is FLAG_NEEDS_VALUE: - # If the option allows for a prompt, we start an interaction with the user. - if self.prompt is not None and not ctx.resilient_parsing: - value = self.prompt_for_value(ctx) - source = ParameterSource.PROMPT - # Else the flag takes its flag_value as value. - else: - value = self.flag_value - source = ParameterSource.COMMANDLINE - - # A flag which is activated always returns the flag value, unless the value - # comes from the explicitly sets default. - elif ( - self.is_flag - and value is True - and not self.is_bool_flag - and source < ParameterSource.DEFAULT_MAP - ): - value = self.flag_value - - # Re-interpret a multiple option which has been sent as-is by the parser. - # Here we replace each occurrence of value-less flags (marked by the - # FLAG_NEEDS_VALUE sentinel) with the flag_value. - elif ( - self.multiple - and value is not UNSET - and isinstance(value, cabc.Iterable) - and source < ParameterSource.DEFAULT_MAP - and any(v is FLAG_NEEDS_VALUE for v in value) - ): - value = [self.flag_value if v is FLAG_NEEDS_VALUE else v for v in value] - source = ParameterSource.COMMANDLINE - - # The value wasn't set, or used the param's default, prompt for one to the user - # if prompting is enabled. - elif ( - (value is UNSET or source >= ParameterSource.DEFAULT_MAP) - and self.prompt is not None - and (self.required or self.prompt_required) - and not ctx.resilient_parsing - ): - value = self.prompt_for_value(ctx) - source = ParameterSource.PROMPT - - return value, source - - def process_value(self, ctx: Context, value: t.Any) -> t.Any: - # process_value has to be overridden on Options in order to capture - # `value == UNSET` cases before `type_cast_value()` gets called. - # - # Refs: - # https://github.com/pallets/click/issues/3069 - if self.is_flag and not self.required and self.is_bool_flag and value is UNSET: - value = False - - if self.callback is not None: - value = self.callback(ctx, self, value) - - return value - - # in the normal case, rely on Parameter.process_value - return super().process_value(ctx, value) - - -class Argument(Parameter): - """Arguments are positional parameters to a command. They generally - provide fewer features than options but can have infinite ``nargs`` - and are required by default. - - All parameters are passed onwards to the constructor of :class:`Parameter`. - """ - - param_type_name = "argument" - - def __init__( - self, - param_decls: cabc.Sequence[str], - required: bool | None = None, - **attrs: t.Any, - ) -> None: - # Auto-detect the requirement status of the argument if not explicitly set. - if required is None: - # The argument gets automatically required if it has no explicit default - # value set and is setup to match at least one value. - if attrs.get("default", UNSET) is UNSET: - required = attrs.get("nargs", 1) > 0 - # If the argument has a default value, it is not required. - else: - required = False - - if "multiple" in attrs: - raise TypeError("__init__() got an unexpected keyword argument 'multiple'.") - - super().__init__(param_decls, required=required, **attrs) - - @property - def human_readable_name(self) -> str: - if self.metavar is not None: - return self.metavar - return self.name.upper() - - def make_metavar(self, ctx: Context) -> str: - if self.metavar is not None: - return self.metavar - var = self.type.get_metavar(param=self, ctx=ctx) - if not var: - var = self.name.upper() - # Types like ``Choice`` and ``DateTime`` already surround their metavar - # with square brackets to enumerate the allowed values. Reuse those - # outer brackets as the optional-argument indicator instead of wrapping - # the metavar in a second pair, which would produce ``[[a|b|c]]``. - already_bracketed = var.startswith("[") and var.endswith("]") - if self.deprecated: - var += "!" - if not self.required and not already_bracketed: - var = f"[{var}]" - if self.nargs != 1: - var += "..." - return var - - def _parse_decls( - self, decls: cabc.Sequence[str], expose_value: bool - ) -> tuple[str, list[str], list[str]]: - if not decls: - if not expose_value: - return "", [], [] - raise TypeError("Argument is marked as exposed, but does not have a name.") - if len(decls) == 1: - name = arg = decls[0] - name = name.replace("-", "_").lower() - else: - raise TypeError( - _( - "Arguments take exactly one parameter declaration, got" - " {length}: {decls}." - ).format(length=len(decls), decls=decls) - ) - return name, [arg], [] - - def get_usage_pieces(self, ctx: Context) -> list[str]: - return [self.make_metavar(ctx)] - - def get_error_hint(self, ctx: Context | None) -> str: - if ctx is not None: - return f"'{self.make_metavar(ctx)}'" - return f"'{self.human_readable_name}'" - - def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None: - parser.add_argument(dest=self.name, nargs=self.nargs, obj=self) - - -def __getattr__(name: str) -> object: - import warnings - - if name == "BaseCommand": - warnings.warn( - "'BaseCommand' is deprecated and will be removed in Click 9.0. Use" - " 'Command' instead.", - DeprecationWarning, - stacklevel=2, - ) - return _BaseCommand - - if name == "MultiCommand": - warnings.warn( - "'MultiCommand' is deprecated and will be removed in Click 9.0. Use" - " 'Group' instead.", - DeprecationWarning, - stacklevel=2, - ) - return _MultiCommand - - raise AttributeError(name) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/decorators.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/decorators.py deleted file mode 100644 index db6a45e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/decorators.py +++ /dev/null @@ -1,575 +0,0 @@ -from __future__ import annotations - -import inspect -import typing as t -from functools import update_wrapper -from gettext import gettext as _ - -from .core import Argument -from .core import Command -from .core import Context -from .core import Group -from .core import Option -from .core import Parameter -from .globals import get_current_context -from .utils import echo - -if t.TYPE_CHECKING: - import typing_extensions as te - - P = te.ParamSpec("P") - -R = t.TypeVar("R") -T = t.TypeVar("T") -_AnyCallable = t.Callable[..., t.Any] -FC = t.TypeVar("FC", bound="_AnyCallable | Command") - - -def pass_context(f: t.Callable[te.Concatenate[Context, P], R]) -> t.Callable[P, R]: - """Marks a callback as wanting to receive the current context - object as first argument. - """ - - def new_func(*args: P.args, **kwargs: P.kwargs) -> R: - return f(get_current_context(), *args, **kwargs) - - return update_wrapper(new_func, f) - - -def pass_obj(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: - """Similar to :func:`pass_context`, but only pass the object on the - context onwards (:attr:`Context.obj`). This is useful if that object - represents the state of a nested system. - """ - - def new_func(*args: P.args, **kwargs: P.kwargs) -> R: - return f(get_current_context().obj, *args, **kwargs) - - return update_wrapper(new_func, f) - - -def make_pass_decorator( - object_type: type[T], ensure: bool = False -) -> t.Callable[[t.Callable[te.Concatenate[T, P], R]], t.Callable[P, R]]: - """Given an object type this creates a decorator that will work - similar to :func:`pass_obj` but instead of passing the object of the - current context, it will find the innermost context of type - :func:`object_type`. - - This generates a decorator that works roughly like this:: - - from functools import update_wrapper - - def decorator(f): - @pass_context - def new_func(ctx, *args, **kwargs): - obj = ctx.find_object(object_type) - return ctx.invoke(f, obj, *args, **kwargs) - return update_wrapper(new_func, f) - return decorator - - :param object_type: the type of the object to pass. - :param ensure: if set to `True`, a new object will be created and - remembered on the context if it's not there yet. - """ - - def decorator(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: - def new_func(*args: P.args, **kwargs: P.kwargs) -> R: - ctx = get_current_context() - - obj: T | None - if ensure: - obj = ctx.ensure_object(object_type) - else: - obj = ctx.find_object(object_type) - - if obj is None: - raise RuntimeError( - "Managed to invoke callback without a context" - f" object of type {object_type.__name__!r}" - " existing." - ) - - return ctx.invoke(f, obj, *args, **kwargs) - - return update_wrapper(new_func, f) - - return decorator - - -def pass_meta_key( - key: str, *, doc_description: str | None = None -) -> t.Callable[[t.Callable[te.Concatenate[T, P], R]], t.Callable[P, R]]: - """Create a decorator that passes a key from - :attr:`click.Context.meta` as the first argument to the decorated - function. - - :param key: Key in ``Context.meta`` to pass. - :param doc_description: Description of the object being passed, - inserted into the decorator's docstring. Defaults to "the 'key' - key from Context.meta". - - .. versionadded:: 8.0 - """ - - def decorator(f: t.Callable[te.Concatenate[T, P], R]) -> t.Callable[P, R]: - def new_func(*args: P.args, **kwargs: P.kwargs) -> R: - ctx = get_current_context() - obj = ctx.meta[key] - return ctx.invoke(f, obj, *args, **kwargs) - - return update_wrapper(new_func, f) - - if doc_description is None: - doc_description = f"the {key!r} key from :attr:`click.Context.meta`" - - decorator.__doc__ = ( - f"Decorator that passes {doc_description} as the first argument" - " to the decorated function." - ) - return decorator - - -CmdType = t.TypeVar("CmdType", bound=Command) - - -# variant: no call, directly as decorator for a function. -@t.overload -def command(name: _AnyCallable) -> Command: ... - - -# variant: with positional name and with positional or keyword cls argument: -# @command(namearg, CommandCls, ...) or @command(namearg, cls=CommandCls, ...) -@t.overload -def command( - name: str | None, - cls: type[CmdType], - **attrs: t.Any, -) -> t.Callable[[_AnyCallable], CmdType]: ... - - -# variant: name omitted, cls _must_ be a keyword argument, @command(cls=CommandCls, ...) -@t.overload -def command( - name: None = None, - *, - cls: type[CmdType], - **attrs: t.Any, -) -> t.Callable[[_AnyCallable], CmdType]: ... - - -# variant: with optional string name, no cls argument provided. -@t.overload -def command( - name: str | None = ..., cls: None = None, **attrs: t.Any -) -> t.Callable[[_AnyCallable], Command]: ... - - -def command( - name: str | _AnyCallable | None = None, - cls: type[CmdType] | None = None, - **attrs: t.Any, -) -> Command | t.Callable[[_AnyCallable], Command | CmdType]: - r"""Creates a new :class:`Command` and uses the decorated function as - callback. This will also automatically attach all decorated - :func:`option`\s and :func:`argument`\s as parameters to the command. - - The name of the command defaults to the name of the function, converted to - lowercase, with underscores ``_`` replaced by dashes ``-``, and the suffixes - ``_command``, ``_cmd``, ``_group``, and ``_grp`` are removed. For example, - ``init_data_command`` becomes ``init-data``. - - All keyword arguments are forwarded to the underlying command class. - For the ``params`` argument, any decorated params are appended to - the end of the list. - - Once decorated the function turns into a :class:`Command` instance - that can be invoked as a command line utility or be attached to a - command :class:`Group`. - - :param name: The name of the command. Defaults to modifying the function's - name as described above. - :param cls: The command class to create. Defaults to :class:`Command`. - - .. versionchanged:: 8.2 - The suffixes ``_command``, ``_cmd``, ``_group``, and ``_grp`` are - removed when generating the name. - - .. versionchanged:: 8.1 - This decorator can be applied without parentheses. - - .. versionchanged:: 8.1 - The ``params`` argument can be used. Decorated params are - appended to the end of the list. - """ - - func: t.Callable[[_AnyCallable], t.Any] | None = None - - if callable(name): - func = name - name = None - assert cls is None, "Use 'command(cls=cls)(callable)' to specify a class." - assert not attrs, "Use 'command(**kwargs)(callable)' to provide arguments." - - if cls is None: - cls = t.cast("type[CmdType]", Command) - - def decorator(f: _AnyCallable) -> CmdType: - if isinstance(f, Command): - raise TypeError("Attempted to convert a callback into a command twice.") - - attr_params = attrs.pop("params", None) - params = attr_params if attr_params is not None else [] - - try: - decorator_params = f.__click_params__ # type: ignore - except AttributeError: - pass - else: - del f.__click_params__ # type: ignore - params.extend(reversed(decorator_params)) - - if attrs.get("help") is None: - attrs["help"] = f.__doc__ - - if t.TYPE_CHECKING: - assert cls is not None - assert not callable(name) - - if name is not None: - cmd_name = name - else: - cmd_name = f.__name__.lower().replace("_", "-") - cmd_left, sep, suffix = cmd_name.rpartition("-") - - if sep and suffix in {"command", "cmd", "group", "grp"}: - cmd_name = cmd_left - - cmd = cls(name=cmd_name, callback=f, params=params, **attrs) - cmd.__doc__ = f.__doc__ - return cmd - - if func is not None: - return decorator(func) - - return decorator - - -GrpType = t.TypeVar("GrpType", bound=Group) - - -# variant: no call, directly as decorator for a function. -@t.overload -def group(name: _AnyCallable) -> Group: ... - - -# variant: with positional name and with positional or keyword cls argument: -# @group(namearg, GroupCls, ...) or @group(namearg, cls=GroupCls, ...) -@t.overload -def group( - name: str | None, - cls: type[GrpType], - **attrs: t.Any, -) -> t.Callable[[_AnyCallable], GrpType]: ... - - -# variant: name omitted, cls _must_ be a keyword argument, @group(cmd=GroupCls, ...) -@t.overload -def group( - name: None = None, - *, - cls: type[GrpType], - **attrs: t.Any, -) -> t.Callable[[_AnyCallable], GrpType]: ... - - -# variant: with optional string name, no cls argument provided. -@t.overload -def group( - name: str | None = ..., cls: None = None, **attrs: t.Any -) -> t.Callable[[_AnyCallable], Group]: ... - - -def group( - name: str | _AnyCallable | None = None, - cls: type[GrpType] | None = None, - **attrs: t.Any, -) -> Group | t.Callable[[_AnyCallable], Group | GrpType]: - """Creates a new :class:`Group` with a function as callback. This - works otherwise the same as :func:`command` just that the `cls` - parameter is set to :class:`Group`. - - .. versionchanged:: 8.1 - This decorator can be applied without parentheses. - """ - if cls is None: - cls = t.cast("type[GrpType]", Group) - - if callable(name): - return command(cls=cls, **attrs)(name) - - return command(name, cls, **attrs) - - -def _param_memo(f: t.Callable[..., t.Any], param: Parameter) -> None: - if isinstance(f, Command): - f.params.append(param) - else: - if not hasattr(f, "__click_params__"): - f.__click_params__ = [] # type: ignore - - f.__click_params__.append(param) # type: ignore - - -def argument( - *param_decls: str, cls: type[Argument] | None = None, **attrs: t.Any -) -> t.Callable[[FC], FC]: - """Attaches an argument to the command. All positional arguments are - passed as parameter declarations to :class:`Argument`; all keyword - arguments are forwarded unchanged (except ``cls``). - This is equivalent to creating an :class:`Argument` instance manually - and attaching it to the :attr:`Command.params` list. - - For the default argument class, refer to :class:`Argument` and - :class:`Parameter` for descriptions of parameters. - - :param cls: the argument class to instantiate. This defaults to - :class:`Argument`. - :param param_decls: Passed as positional arguments to the constructor of - ``cls``. - :param attrs: Passed as keyword arguments to the constructor of ``cls``. - """ - if cls is None: - cls = Argument - - def decorator(f: FC) -> FC: - _param_memo(f, cls(param_decls, **attrs)) - return f - - return decorator - - -def option( - *param_decls: str, cls: type[Option] | None = None, **attrs: t.Any -) -> t.Callable[[FC], FC]: - """Attaches an option to the command. All positional arguments are - passed as parameter declarations to :class:`Option`; all keyword - arguments are forwarded unchanged (except ``cls``). - This is equivalent to creating an :class:`Option` instance manually - and attaching it to the :attr:`Command.params` list. - - For the default option class, refer to :class:`Option` and - :class:`Parameter` for descriptions of parameters. - - :param cls: the option class to instantiate. This defaults to - :class:`Option`. - :param param_decls: Passed as positional arguments to the constructor of - ``cls``. - :param attrs: Passed as keyword arguments to the constructor of ``cls``. - """ - if cls is None: - cls = Option - - def decorator(f: FC) -> FC: - _param_memo(f, cls(param_decls, **attrs)) - return f - - return decorator - - -def confirmation_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: - """Add a ``--yes`` option which shows a prompt before continuing if - not passed. If the prompt is declined, the program will exit. - - :param param_decls: One or more option names. Defaults to the single - value ``"--yes"``. - :param kwargs: Extra arguments are passed to :func:`option`. - """ - - def callback(ctx: Context, param: Parameter, value: bool) -> None: - if not value: - ctx.abort() - - if not param_decls: - param_decls = ("--yes",) - - kwargs.setdefault("is_flag", True) - kwargs.setdefault("callback", callback) - kwargs.setdefault("expose_value", False) - kwargs.setdefault("prompt", _("Do you want to continue?")) - kwargs.setdefault("help", _("Confirm the action without prompting.")) - return option(*param_decls, **kwargs) - - -def password_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: - """Add a ``--password`` option which prompts for a password, hiding - input and asking to enter the value again for confirmation. - - :param param_decls: One or more option names. Defaults to the single - value ``"--password"``. - :param kwargs: Extra arguments are passed to :func:`option`. - """ - if not param_decls: - param_decls = ("--password",) - - kwargs.setdefault("prompt", True) - kwargs.setdefault("confirmation_prompt", True) - kwargs.setdefault("hide_input", True) - return option(*param_decls, **kwargs) - - -def version_option( - version: str | None = None, - *param_decls: str, - package_name: str | None = None, - prog_name: str | None = None, - message: str | None = None, - **kwargs: t.Any, -) -> t.Callable[[FC], FC]: - """Add a ``--version`` option which immediately prints the version - number and exits the program. - - If ``version`` is not provided, Click will try to detect it using - :func:`importlib.metadata.version` to get the version for the - ``package_name``. - - If ``package_name`` is not provided, Click will try to detect it by - inspecting the stack frames. If the detected (or given) name does - not match an installed distribution, Click resolves it as an import - (top-level module) name via - :func:`importlib.metadata.packages_distributions`, so e.g. ``PIL`` - resolves to the ``Pillow`` distribution. - - :param version: The version number to show. If not provided, Click - will try to detect it. - :param param_decls: One or more option names. Defaults to the single - value ``"--version"``. - :param package_name: The package name to detect the version from. If - not provided, Click will try to detect it. - :param prog_name: The name of the CLI to show in the message. If not - provided, it will be detected from the command. - :param message: The message to show. The values ``%(prog)s``, - ``%(package)s``, and ``%(version)s`` are available. Defaults to - ``"%(prog)s, version %(version)s"``. - :param kwargs: Extra arguments are passed to :func:`option`. - :raise RuntimeError: ``version`` could not be detected. - - .. versionchanged:: 8.0 - Add the ``package_name`` parameter, and the ``%(package)s`` - value for messages. - - .. versionchanged:: 8.0 - Use :mod:`importlib.metadata` instead of ``pkg_resources``. The - version is detected based on the package name, not the entry - point name. The Python package name must match the installed - package name, or be passed with ``package_name=``. - - .. versionchanged:: 8.4.2 - When ``package_name`` does not match an installed distribution, - Click now resolves it as an import (top-level module). - """ - if message is None: - message = _("%(prog)s, version %(version)s") - - if version is None and package_name is None: - frame = inspect.currentframe() - f_back = frame.f_back if frame is not None else None - f_globals = f_back.f_globals if f_back is not None else None - # break reference cycle - # https://docs.python.org/3/library/inspect.html#the-interpreter-stack - del frame - - if f_globals is not None: - package_name = f_globals.get("__name__") - - if package_name == "__main__": - package_name = f_globals.get("__package__") - - if package_name: - package_name = package_name.partition(".")[0] - - def callback(ctx: Context, param: Parameter, value: bool) -> None: - if not value or ctx.resilient_parsing: - return - - nonlocal prog_name - nonlocal version - nonlocal package_name - - if prog_name is None: - prog_name = ctx.find_root().info_name - - if version is None and package_name is not None: - import importlib.metadata - - try: - version = importlib.metadata.version(package_name) - except importlib.metadata.PackageNotFoundError: - # The given name didn't match an installed distribution. - # Try resolving it as an import (top-level module) name, - # e.g. ``PIL`` is provided by the ``Pillow`` distribution. - distributions = importlib.metadata.packages_distributions().get( - package_name, [] - ) - if len(distributions) == 1: - package_name = distributions[0] - version = importlib.metadata.version(package_name) - elif len(distributions) > 1: - raise RuntimeError( - f"{package_name!r} maps to multiple installed" - f" distributions ({', '.join(distributions)})." - " Pass 'package_name' to disambiguate." - ) from None - else: - raise RuntimeError( - f"{package_name!r} is not installed. Try passing" - " 'package_name' instead." - ) from None - - if version is None: - raise RuntimeError( - f"Could not determine the version for {package_name!r} automatically." - ) - - echo( - message % {"prog": prog_name, "package": package_name, "version": version}, - color=ctx.color, - ) - ctx.exit() - - if not param_decls: - param_decls = ("--version",) - - kwargs.setdefault("is_flag", True) - kwargs.setdefault("expose_value", False) - kwargs.setdefault("is_eager", True) - kwargs.setdefault("help", _("Show the version and exit.")) - kwargs["callback"] = callback - return option(*param_decls, **kwargs) - - -def help_option(*param_decls: str, **kwargs: t.Any) -> t.Callable[[FC], FC]: - """Pre-configured ``--help`` option which immediately prints the help page - and exits the program. - - :param param_decls: One or more option names. Defaults to the single - value ``"--help"``. - :param kwargs: Extra arguments are passed to :func:`option`. - """ - - def show_help(ctx: Context, param: Parameter, value: bool) -> None: - """Callback that print the help page on ```` and exits.""" - if value and not ctx.resilient_parsing: - echo(ctx.get_help(), color=ctx.color) - ctx.exit() - - if not param_decls: - param_decls = ("--help",) - - kwargs.setdefault("is_flag", True) - kwargs.setdefault("expose_value", False) - kwargs.setdefault("is_eager", True) - kwargs.setdefault("help", _("Show this message and exit.")) - kwargs.setdefault("callback", show_help) - - return option(*param_decls, **kwargs) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/exceptions.py deleted file mode 100644 index 6272c38..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/exceptions.py +++ /dev/null @@ -1,378 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import typing as t -from gettext import gettext as _ -from gettext import ngettext - -from ._compat import get_text_stderr -from .globals import resolve_color_default -from .utils import echo -from .utils import format_filename - -if t.TYPE_CHECKING: - from .core import Command - from .core import Context - from .core import Parameter - - -def _join_param_hints(param_hint: cabc.Sequence[str] | str | None) -> str | None: - if param_hint is not None and not isinstance(param_hint, str): - return " / ".join(repr(x) for x in param_hint) - - return param_hint - - -def _format_possibilities(possibilities: list[str]) -> str: - possibility_str = ", ".join(repr(p) for p in sorted(possibilities)) - return ngettext( - "Did you mean {possibility}?", - "(Did you mean one of: {possibilities}?)", - len(possibilities), - ).format(possibility=possibility_str, possibilities=possibility_str) - - -class ClickException(Exception): - """An exception that Click can handle and show to the user.""" - - #: The exit code for this exception. - exit_code: t.ClassVar[int] = 1 - - show_color: t.Final[bool | None] - message: t.Final[str] - - def __init__(self, message: str) -> None: - super().__init__(message) - # The context will be removed by the time we print the message, so cache - # the color settings here to be used later on (in `show`) - self.show_color = resolve_color_default() - self.message = message - - def format_message(self) -> str: - return self.message - - def __str__(self) -> str: - return self.message - - def show(self, file: t.IO[t.Any] | None = None) -> None: - if file is None: - file = get_text_stderr() - - echo( - _("Error: {message}").format(message=self.format_message()), - file=file, - color=self.show_color, - ) - - -class UsageError(ClickException): - """An internal exception that signals a usage error. This typically - aborts any further handling. - - :param message: the error message to display. - :param ctx: optionally the context that caused this error. Click will - fill in the context automatically in some situations. - """ - - exit_code: t.ClassVar[int] = 2 - - ctx: Context | None - cmd: t.Final[Command | None] - - def __init__(self, message: str, ctx: Context | None = None) -> None: - super().__init__(message) - self.ctx = ctx - self.cmd = self.ctx.command if self.ctx else None - - def show(self, file: t.IO[t.Any] | None = None) -> None: - if file is None: - file = get_text_stderr() - color = None - hint = "" - if ( - self.ctx is not None - and self.ctx.command.get_help_option(self.ctx) is not None - ): - help_names = self.ctx.command.get_help_option_names(self.ctx) - # Pick the longest name (like ``--help`` over ``-h``) for - # readability in error messages. - hint = _("Try '{command} {option}' for help.").format( - command=self.ctx.command_path, - option=max(help_names, key=len), - ) - hint = f"{hint}\n" - if self.ctx is not None: - color = self.ctx.color - echo(f"{self.ctx.get_usage()}\n{hint}", file=file, color=color) - echo( - _("Error: {message}").format(message=self.format_message()), - file=file, - color=color, - ) - - -class BadParameter(UsageError): - """An exception that formats out a standardized error message for a - bad parameter. This is useful when thrown from a callback or type as - Click will attach contextual information to it (for instance, which - parameter it is). - - .. versionadded:: 2.0 - - :param param: the parameter object that caused this error. This can - be left out, and Click will attach this info itself - if possible. - :param param_hint: a string that shows up as parameter name. This - can be used as alternative to `param` in cases - where custom validation should happen. If it is - a string it's used as such, if it's a list then - each item is quoted and separated. - """ - - param: Parameter | None - param_hint: cabc.Sequence[str] | str | None - - def __init__( - self, - message: str, - ctx: Context | None = None, - param: Parameter | None = None, - param_hint: cabc.Sequence[str] | str | None = None, - ) -> None: - super().__init__(message, ctx) - self.param = param - self.param_hint = param_hint - - def format_message(self) -> str: - if self.param_hint is not None: - param_hint = self.param_hint - elif self.param is not None: - param_hint = self.param.get_error_hint(self.ctx) - else: - return _("Invalid value: {message}").format(message=self.message) - - return _("Invalid value for {param_hint}: {message}").format( - param_hint=_join_param_hints(param_hint), message=self.message - ) - - -class MissingParameter(BadParameter): - """Raised if click required an option or argument but it was not - provided when invoking the script. - - .. versionadded:: 4.0 - - :param param_type: a string that indicates the type of the parameter. - The default is to inherit the parameter type from - the given `param`. Valid values are ``'parameter'``, - ``'option'`` or ``'argument'``. - """ - - param_type: t.Final[str | None] - - def __init__( - self, - message: str | None = None, - ctx: Context | None = None, - param: Parameter | None = None, - param_hint: cabc.Sequence[str] | str | None = None, - param_type: str | None = None, - ) -> None: - super().__init__(message or "", ctx, param, param_hint) - self.param_type = param_type - - def format_message(self) -> str: - if self.param_hint is not None: - param_hint: cabc.Sequence[str] | str | None = self.param_hint - elif self.param is not None: - param_hint = self.param.get_error_hint(self.ctx) - else: - param_hint = None - - param_hint = _join_param_hints(param_hint) - param_hint = f" {param_hint}" if param_hint else "" - - param_type = self.param_type - if param_type is None and self.param is not None: - param_type = self.param.param_type_name - - msg = self.message - if self.param is not None: - msg_extra = self.param.type.get_missing_message( - param=self.param, ctx=self.ctx - ) - if msg_extra: - if msg: - msg += f". {msg_extra}" - else: - msg = msg_extra - - msg = f" {msg}" if msg else "" - - # Translate param_type for known types. - if param_type == "argument": - missing = _("Missing argument") - elif param_type == "option": - missing = _("Missing option") - elif param_type == "parameter": - missing = _("Missing parameter") - else: - missing = _("Missing {param_type}").format(param_type=param_type) - - return f"{missing}{param_hint}.{msg}" - - def __str__(self) -> str: - if not self.message: - param_name = self.param.name if self.param else None - return _("Missing parameter: {param_name}").format(param_name=param_name) - else: - return self.message - - -class NoSuchOption(UsageError): - """Raised if Click attempted to handle an option that does not exist. - - .. versionadded:: 4.0 - """ - - option_name: t.Final[str] - possibilities: t.Final[list[str] | None] - - def __init__( - self, - option_name: str, - message: str | None = None, - possibilities: cabc.Iterable[str] | None = None, - ctx: Context | None = None, - ) -> None: - if message is None: - message = _("No such option {name!r}.").format(name=option_name) - - super().__init__(message, ctx) - self.option_name = option_name - - if possibilities: - from difflib import get_close_matches - - possibilities_ = get_close_matches(option_name, possibilities) - else: - possibilities_ = None - self.possibilities = possibilities_ - - def format_message(self) -> str: - if not self.possibilities: - return self.message - return f"{self.message} {_format_possibilities(self.possibilities)}" - - -class NoSuchCommand(UsageError): - """Raised if Click attempted to handle a command that does not exist. - - .. versionadded:: 8.4.0 - """ - - command_name: t.Final[str] - possibilities: t.Final[list[str] | None] - - def __init__( - self, - command_name: str, - message: str | None = None, - possibilities: cabc.Iterable[str] | None = None, - ctx: Context | None = None, - ) -> None: - if message is None: - message = _("No such command {name!r}.").format(name=command_name) - - super().__init__(message, ctx) - self.command_name = command_name - - if possibilities: - from difflib import get_close_matches - - possibilities_ = get_close_matches(command_name, possibilities) - else: - possibilities_ = None - self.possibilities = possibilities_ - - def format_message(self) -> str: - if not self.possibilities: - return self.message - return f"{self.message} {_format_possibilities(self.possibilities)}" - - -class BadOptionUsage(UsageError): - """Raised if an option is generally supplied but the use of the option - was incorrect. This is for instance raised if the number of arguments - for an option is not correct. - - .. versionadded:: 4.0 - - :param option_name: the name of the option being used incorrectly. - """ - - option_name: t.Final[str] - - def __init__( - self, option_name: str, message: str, ctx: Context | None = None - ) -> None: - super().__init__(message, ctx) - self.option_name = option_name - - -class BadArgumentUsage(UsageError): - """Raised if an argument is generally supplied but the use of the argument - was incorrect. This is for instance raised if the number of values - for an argument is not correct. - - .. versionadded:: 6.0 - """ - - -class NoArgsIsHelpError(UsageError): - ctx: Context - - def __init__(self, ctx: Context) -> None: - super().__init__(ctx.get_help(), ctx=ctx) - - def show(self, file: t.IO[t.Any] | None = None) -> None: - echo(self.format_message(), file=file, err=True, color=self.ctx.color) - - -class FileError(ClickException): - """Raised if a file cannot be opened.""" - - ui_filename: t.Final[str] - filename: t.Final[str] - - def __init__(self, filename: str, hint: str | None = None) -> None: - if hint is None: - hint = _("unknown error") - - super().__init__(hint) - self.ui_filename = format_filename(filename) - self.filename = filename - - def format_message(self) -> str: - return _("Could not open file {filename!r}: {message}").format( - filename=self.ui_filename, message=self.message - ) - - -class Abort(RuntimeError): - """An internal signalling exception that signals Click to abort.""" - - -class Exit(RuntimeError): - """An exception that indicates that the application should exit with some - status code. - - :param code: the status code to exit with. - """ - - __slots__ = ("exit_code",) - - exit_code: t.Final[int] - - def __init__(self, code: int = 0) -> None: - self.exit_code = code diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/formatting.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/formatting.py deleted file mode 100644 index c4aa2de..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/formatting.py +++ /dev/null @@ -1,320 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -from contextlib import contextmanager -from gettext import gettext as _ - -from ._compat import term_len -from .parser import _split_opt - -# Can force a width. This is used by the test system -FORCED_WIDTH: int | None = None - - -def measure_table(rows: cabc.Iterable[tuple[str, str]]) -> tuple[int, ...]: - widths: dict[int, int] = {} - - for row in rows: - for idx, col in enumerate(row): - widths[idx] = max(widths.get(idx, 0), term_len(col)) - - return tuple(y for x, y in sorted(widths.items())) - - -def iter_rows( - rows: cabc.Iterable[tuple[str, str]], col_count: int -) -> cabc.Iterator[tuple[str, ...]]: - for row in rows: - yield row + ("",) * (col_count - len(row)) - - -def wrap_text( - text: str, - width: int = 78, - initial_indent: str = "", - subsequent_indent: str = "", - preserve_paragraphs: bool = False, -) -> str: - """A helper function that intelligently wraps text. By default, it - assumes that it operates on a single paragraph of text but if the - `preserve_paragraphs` parameter is provided it will intelligently - handle paragraphs (defined by two empty lines). - - If paragraphs are handled, a paragraph can be prefixed with an empty - line containing the ``\\b`` character (``\\x08``) to indicate that - no rewrapping should happen in that block. - - :param text: the text that should be rewrapped. - :param width: the maximum width for the text. - :param initial_indent: the initial indent that should be placed on the - first line as a string. - :param subsequent_indent: the indent string that should be placed on - each consecutive line. - :param preserve_paragraphs: if this flag is set then the wrapping will - intelligently handle paragraphs. - - .. versionchanged:: 8.4.0 - Width is measured in visible characters. ANSI escape sequences in - ``text``, ``initial_indent``, or ``subsequent_indent`` no longer - count toward the width budget, so styled input wraps based on what - the user sees instead of raw byte length. - """ - from ._textwrap import TextWrapper - - text = text.expandtabs() - wrapper = TextWrapper( - width, - initial_indent=initial_indent, - subsequent_indent=subsequent_indent, - replace_whitespace=False, - ) - if not preserve_paragraphs: - return wrapper.fill(text) - - p: list[tuple[int, bool, str]] = [] - buf: list[str] = [] - indent = None - - def _flush_par() -> None: - if not buf: - return - if buf[0].strip() == "\b": - p.append((indent or 0, True, "\n".join(buf[1:]))) - else: - p.append((indent or 0, False, " ".join(buf))) - del buf[:] - - for line in text.splitlines(): - if not line: - _flush_par() - indent = None - else: - if indent is None: - orig_len = term_len(line) - line = line.lstrip() - indent = orig_len - term_len(line) - buf.append(line) - _flush_par() - - rv = [] - for indent, raw, text in p: - with wrapper.extra_indent(" " * indent): - if raw: - rv.append(wrapper.indent_only(text)) - else: - rv.append(wrapper.fill(text)) - - return "\n\n".join(rv) - - -class HelpFormatter: - """This class helps with formatting text-based help pages. It's - usually just needed for very special internal cases, but it's also - exposed so that developers can write their own fancy outputs. - - At present, it always writes into memory. - - :param indent_increment: the additional increment for each level. - :param width: the width for the text. This defaults to the terminal - width clamped to a maximum of 78. - """ - - indent_increment: int - width: int - current_indent: int - buffer: list[str] - - def __init__( - self, - indent_increment: int = 2, - width: int | None = None, - max_width: int | None = None, - ) -> None: - self.indent_increment = indent_increment - if max_width is None: - max_width = 80 - if width is None: - import shutil - - width = FORCED_WIDTH - if width is None: - width = max(min(shutil.get_terminal_size().columns, max_width) - 2, 50) - self.width = width - self.current_indent = 0 - self.buffer = [] - - def write(self, string: str) -> None: - """Writes a unicode string into the internal buffer.""" - self.buffer.append(string) - - def indent(self) -> None: - """Increases the indentation.""" - self.current_indent += self.indent_increment - - def dedent(self) -> None: - """Decreases the indentation.""" - self.current_indent -= self.indent_increment - - def write_usage(self, prog: str, args: str = "", prefix: str | None = None) -> None: - """Writes a usage line into the buffer. - - :param prog: the program name. - :param args: whitespace separated list of arguments. - :param prefix: The prefix for the first line. Defaults to - ``"Usage: "``. - """ - if prefix is None: - prefix = "{usage} ".format(usage=_("Usage:")) - - usage_prefix = f"{prefix:>{self.current_indent}}{prog} " - text_width = self.width - self.current_indent - - if not args: - # Without args, the prefix's trailing space and the wrap_text - # call that would normally place args on the line are both - # unnecessary. Emit just the prefix line. - self.write(usage_prefix.rstrip(" ")) - self.write("\n") - return - - if text_width >= (term_len(usage_prefix) + 20): - # The arguments will fit to the right of the prefix. - indent = " " * term_len(usage_prefix) - self.write( - wrap_text( - args, - text_width, - initial_indent=usage_prefix, - subsequent_indent=indent, - ) - ) - else: - # The prefix is too long, put the arguments on the next line. - self.write(usage_prefix) - self.write("\n") - indent = " " * (max(self.current_indent, term_len(prefix)) + 4) - self.write( - wrap_text( - args, text_width, initial_indent=indent, subsequent_indent=indent - ) - ) - - self.write("\n") - - def write_heading(self, heading: str) -> None: - """Writes a heading into the buffer.""" - self.write(f"{'':>{self.current_indent}}{heading}:\n") - - def write_paragraph(self) -> None: - """Writes a paragraph into the buffer.""" - if self.buffer: - self.write("\n") - - def write_text(self, text: str) -> None: - """Writes re-indented text into the buffer. This rewraps and - preserves paragraphs. - """ - indent = " " * self.current_indent - self.write( - wrap_text( - text, - self.width, - initial_indent=indent, - subsequent_indent=indent, - preserve_paragraphs=True, - ) - ) - self.write("\n") - - def write_dl( - self, - rows: cabc.Iterable[tuple[str, str]], - col_max: int = 30, - col_spacing: int = 2, - ) -> None: - """Writes a definition list into the buffer. This is how options - and commands are usually formatted. - - :param rows: a list of two item tuples for the terms and values. - :param col_max: the maximum width of the first column. - :param col_spacing: the number of spaces between the first and - second column. - """ - rows = list(rows) - widths = measure_table(rows) - if len(widths) != 2: - raise TypeError("Expected two columns for definition list") - - first_col = min(widths[0], col_max) + col_spacing - - for first, second in iter_rows(rows, len(widths)): - self.write(f"{'':>{self.current_indent}}{first}") - if not second: - self.write("\n") - continue - if term_len(first) <= first_col - col_spacing: - self.write(" " * (first_col - term_len(first))) - else: - self.write("\n") - self.write(" " * (first_col + self.current_indent)) - - text_width = max(self.width - first_col - 2, 10) - wrapped_text = wrap_text(second, text_width, preserve_paragraphs=True) - lines = wrapped_text.splitlines() - - if lines: - self.write(f"{lines[0]}\n") - - for line in lines[1:]: - self.write(f"{'':>{first_col + self.current_indent}}{line}\n") - else: - self.write("\n") - - @contextmanager - def section(self, name: str) -> cabc.Generator[None]: - """Helpful context manager that writes a paragraph, a heading, - and the indents. - - :param name: the section name that is written as heading. - """ - self.write_paragraph() - self.write_heading(name) - self.indent() - try: - yield - finally: - self.dedent() - - @contextmanager - def indentation(self) -> cabc.Generator[None]: - """A context manager that increases the indentation.""" - self.indent() - try: - yield - finally: - self.dedent() - - def getvalue(self) -> str: - """Returns the buffer contents.""" - return "".join(self.buffer) - - -def join_options(options: cabc.Iterable[str]) -> tuple[str, bool]: - """Given a list of option strings this joins them in the most appropriate - way and returns them in the form ``(formatted_string, - any_prefix_is_slash)`` where the second item in the tuple is a flag that - indicates if any of the option prefixes was a slash. - """ - rv = [] - any_prefix_is_slash = False - - for opt in options: - prefix = _split_opt(opt)[0] - - if prefix == "/": - any_prefix_is_slash = True - - rv.append((len(prefix), opt)) - - rv.sort(key=lambda x: x[0]) - return ", ".join(x[1] for x in rv), any_prefix_is_slash diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/globals.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/globals.py deleted file mode 100644 index a2f9172..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/globals.py +++ /dev/null @@ -1,67 +0,0 @@ -from __future__ import annotations - -import typing as t -from threading import local - -if t.TYPE_CHECKING: - from .core import Context - -_local = local() - - -@t.overload -def get_current_context(silent: t.Literal[False] = False) -> Context: ... - - -@t.overload -def get_current_context(silent: bool = ...) -> Context | None: ... - - -def get_current_context(silent: bool = False) -> Context | None: - """Returns the current click context. This can be used as a way to - access the current context object from anywhere. This is a more implicit - alternative to the :func:`pass_context` decorator. This function is - primarily useful for helpers such as :func:`echo` which might be - interested in changing its behavior based on the current context. - - To push the current context, :meth:`Context.scope` can be used. - - .. versionadded:: 5.0 - - :param silent: if set to `True` the return value is `None` if no context - is available. The default behavior is to raise a - :exc:`RuntimeError`. - """ - try: - return t.cast("Context", _local.stack[-1]) - except (AttributeError, IndexError) as e: - if not silent: - raise RuntimeError("There is no active click context.") from e - - return None - - -def push_context(ctx: Context) -> None: - """Pushes a new context to the current stack.""" - _local.__dict__.setdefault("stack", []).append(ctx) - - -def pop_context() -> None: - """Removes the top level from the stack.""" - _local.stack.pop() - - -def resolve_color_default(color: bool | None = None) -> bool | None: - """Internal helper to get the default value of the color flag. If a - value is passed it's returned unchanged, otherwise it's looked up from - the current context. - """ - if color is not None: - return color - - ctx = get_current_context(silent=True) - - if ctx is not None: - return ctx.color - - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/parser.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/parser.py deleted file mode 100644 index 4fcbf7c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/parser.py +++ /dev/null @@ -1,533 +0,0 @@ -""" -This module started out as largely a copy paste from the stdlib's -optparse module with the features removed that we do not need from -optparse because we implement them in Click on a higher level (for -instance type handling, help formatting and a lot more). - -The plan is to remove more and more from here over time. - -The reason this is a different module and not optparse from the stdlib -is that there are differences in 2.x and 3.x about the error messages -generated and optparse in the stdlib uses gettext for no good reason -and might cause us issues. - -Click uses parts of optparse written by Gregory P. Ward and maintained -by the Python Software Foundation. This is limited to code in parser.py. - -Copyright 2001-2006 Gregory P. Ward. All rights reserved. -Copyright 2002-2006 Python Software Foundation. All rights reserved. -""" - -# This code uses parts of optparse written by Gregory P. Ward and -# maintained by the Python Software Foundation. -# Copyright 2001-2006 Gregory P. Ward -# Copyright 2002-2006 Python Software Foundation -from __future__ import annotations - -import collections.abc as cabc -import typing as t -from collections import deque -from gettext import gettext as _ -from gettext import ngettext - -from ._utils import FLAG_NEEDS_VALUE -from ._utils import UNSET -from .exceptions import BadArgumentUsage -from .exceptions import BadOptionUsage -from .exceptions import NoSuchOption -from .exceptions import UsageError - -if t.TYPE_CHECKING: - from ._utils import T_FLAG_NEEDS_VALUE - from ._utils import T_UNSET - from .core import Argument as CoreArgument - from .core import Context - from .core import Option as CoreOption - from .core import Parameter as CoreParameter - -V = t.TypeVar("V") - - -def _unpack_args( - args: cabc.Sequence[str], nargs_spec: cabc.Sequence[int] -) -> tuple[cabc.Sequence[str | cabc.Sequence[str | T_UNSET] | T_UNSET], list[str]]: - """Given an iterable of arguments and an iterable of nargs specifications, - it returns a tuple with all the unpacked arguments at the first index - and all remaining arguments as the second. - - The nargs specification is the number of arguments that should be consumed - or `-1` to indicate that this position should eat up all the remainders. - - Missing items are filled with ``UNSET``. - """ - args = deque(args) - nargs_spec = deque(nargs_spec) - rv: list[str | tuple[str | T_UNSET, ...] | T_UNSET] = [] - spos: int | None = None - - def _fetch(c: deque[str]) -> str | T_UNSET: - try: - if spos is None: - return c.popleft() - else: - return c.pop() - except IndexError: - return UNSET - - while nargs_spec: - if spos is None: - nargs = nargs_spec.popleft() - else: - nargs = nargs_spec.pop() - - if nargs == 1: - rv.append(_fetch(args)) - elif nargs > 1: - x: list[str | T_UNSET] = [_fetch(args) for _ in range(nargs)] - - # If we're reversed, we're pulling in the arguments in reverse, - # so we need to turn them around. - if spos is not None: - x.reverse() - - rv.append(tuple(x)) - elif nargs < 0: - if spos is not None: - raise TypeError("Cannot have two nargs < 0") - - spos = len(rv) - rv.append(UNSET) - - # spos is the position of the wildcard (star). If it's not `None`, - # we fill it with the remainder. - if spos is not None: - rv[spos] = tuple(args) - args = [] - rv[spos + 1 :] = reversed(rv[spos + 1 :]) - - return tuple(rv), list(args) - - -def _split_opt(opt: str) -> tuple[str, str]: - first = opt[:1] - if first.isalnum(): - return "", opt - if opt[1:2] == first: - return opt[:2], opt[2:] - return first, opt[1:] - - -def _normalize_opt(opt: str, ctx: Context | None) -> str: - if ctx is None or ctx.token_normalize_func is None: - return opt - prefix, opt = _split_opt(opt) - return f"{prefix}{ctx.token_normalize_func(opt)}" - - -class _Option: - def __init__( - self, - obj: CoreOption, - opts: cabc.Sequence[str], - dest: str | None, - action: str | None = None, - nargs: int = 1, - const: t.Any | None = None, - ): - self._short_opts = [] - self._long_opts = [] - self.prefixes: set[str] = set() - - for opt in opts: - prefix, value = _split_opt(opt) - if not prefix: - raise ValueError( - _("Invalid start character for option ({option})").format( - option=opt - ) - ) - self.prefixes.add(prefix[0]) - if len(prefix) == 1 and len(value) == 1: - self._short_opts.append(opt) - else: - self._long_opts.append(opt) - self.prefixes.add(prefix) - - if action is None: - action = "store" - - self.dest = dest - self.action = action - self.nargs = nargs - self.const = const - self.obj = obj - - @property - def takes_value(self) -> bool: - return self.action in ("store", "append") - - def process(self, value: t.Any, state: _ParsingState) -> None: - if self.action == "store": - state.opts[self.dest] = value # type: ignore - elif self.action == "store_const": - state.opts[self.dest] = self.const # type: ignore - elif self.action == "append": - state.opts.setdefault(self.dest, []).append(value) # type: ignore - elif self.action == "append_const": - state.opts.setdefault(self.dest, []).append(self.const) # type: ignore - elif self.action == "count": - state.opts[self.dest] = state.opts.get(self.dest, 0) + 1 # type: ignore - else: - raise ValueError(f"unknown action '{self.action}'") - state.order.append(self.obj) - - -class _Argument: - def __init__(self, obj: CoreArgument, dest: str | None, nargs: int = 1): - self.dest = dest - self.nargs = nargs - self.obj = obj - - def process( - self, - value: str | cabc.Sequence[str | T_UNSET] | T_UNSET, - state: _ParsingState, - ) -> None: - if self.nargs > 1: - assert isinstance(value, cabc.Sequence) - holes = sum(x is UNSET for x in value) - if holes == len(value): - value = UNSET - elif holes != 0: - raise BadArgumentUsage( - _("Argument {name!r} takes {nargs} values.").format( - name=self.dest, nargs=self.nargs - ) - ) - - # We failed to collect any argument value so we consider the argument as unset. - if value == (): - value = UNSET - - state.opts[self.dest] = value # type: ignore - state.order.append(self.obj) - - -class _ParsingState: - def __init__(self, rargs: list[str]) -> None: - self.opts: dict[str, t.Any] = {} - self.largs: list[str] = [] - self.rargs = rargs - self.order: list[CoreParameter] = [] - - -class _OptionParser: - """The option parser is an internal class that is ultimately used to - parse options and arguments. It's modelled after optparse and brings - a similar but vastly simplified API. It should generally not be used - directly as the high level Click classes wrap it for you. - - It's not nearly as extensible as optparse or argparse as it does not - implement features that are implemented on a higher level (such as - types or defaults). - - :param ctx: optionally the :class:`~click.Context` where this parser - should go with. - - .. deprecated:: 8.2 - Will be removed in Click 9.0. - """ - - def __init__(self, ctx: Context | None = None) -> None: - #: The :class:`~click.Context` for this parser. This might be - #: `None` for some advanced use cases. - self.ctx = ctx - #: This controls how the parser deals with interspersed arguments. - #: If this is set to `False`, the parser will stop on the first - #: non-option. Click uses this to implement nested subcommands - #: safely. - self.allow_interspersed_args: bool = True - #: This tells the parser how to deal with unknown options. By - #: default it will error out (which is sensible), but there is a - #: second mode where it will ignore it and continue processing - #: after shifting all the unknown options into the resulting args. - self.ignore_unknown_options: bool = False - - if ctx is not None: - self.allow_interspersed_args = ctx.allow_interspersed_args - self.ignore_unknown_options = ctx.ignore_unknown_options - - self._short_opt: dict[str, _Option] = {} - self._long_opt: dict[str, _Option] = {} - self._opt_prefixes = {"-", "--"} - self._args: list[_Argument] = [] - - def add_option( - self, - obj: CoreOption, - opts: cabc.Sequence[str], - dest: str | None, - action: str | None = None, - nargs: int = 1, - const: t.Any | None = None, - ) -> None: - """Adds a new option named `dest` to the parser. The destination - is not inferred (unlike with optparse) and needs to be explicitly - provided. Action can be any of ``store``, ``store_const``, - ``append``, ``append_const`` or ``count``. - - The `obj` can be used to identify the option in the order list - that is returned from the parser. - """ - opts = [_normalize_opt(opt, self.ctx) for opt in opts] - option = _Option(obj, opts, dest, action=action, nargs=nargs, const=const) - self._opt_prefixes.update(option.prefixes) - for opt in option._short_opts: - self._short_opt[opt] = option - for opt in option._long_opts: - self._long_opt[opt] = option - - def add_argument(self, obj: CoreArgument, dest: str | None, nargs: int = 1) -> None: - """Adds a positional argument named `dest` to the parser. - - The `obj` can be used to identify the option in the order list - that is returned from the parser. - """ - self._args.append(_Argument(obj, dest=dest, nargs=nargs)) - - def parse_args( - self, args: list[str] - ) -> tuple[dict[str, t.Any], list[str], list[CoreParameter]]: - """Parses positional arguments and returns ``(values, args, order)`` - for the parsed options and arguments as well as the leftover - arguments if there are any. The order is a list of objects as they - appear on the command line. If arguments appear multiple times they - will be memorized multiple times as well. - """ - state = _ParsingState(args) - try: - self._process_args_for_options(state) - self._process_args_for_args(state) - except UsageError: - if self.ctx is None or not self.ctx.resilient_parsing: - raise - return state.opts, state.largs, state.order - - def _process_args_for_args(self, state: _ParsingState) -> None: - pargs, args = _unpack_args( - state.largs + state.rargs, [x.nargs for x in self._args] - ) - - for idx, arg in enumerate(self._args): - arg.process(pargs[idx], state) - - state.largs = args - state.rargs = [] - - def _process_args_for_options(self, state: _ParsingState) -> None: - while state.rargs: - arg = state.rargs.pop(0) - arglen = len(arg) - # Double dashes always handled explicitly regardless of what - # prefixes are valid. - if arg == "--": - return - elif arg[:1] in self._opt_prefixes and arglen > 1: - self._process_opts(arg, state) - elif self.allow_interspersed_args: - state.largs.append(arg) - else: - state.rargs.insert(0, arg) - return - - # Say this is the original argument list: - # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)] - # ^ - # (we are about to process arg(i)). - # - # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of - # [arg0, ..., arg(i-1)] (any options and their arguments will have - # been removed from largs). - # - # The while loop will usually consume 1 or more arguments per pass. - # If it consumes 1 (eg. arg is an option that takes no arguments), - # then after _process_arg() is done the situation is: - # - # largs = subset of [arg0, ..., arg(i)] - # rargs = [arg(i+1), ..., arg(N-1)] - # - # If allow_interspersed_args is false, largs will always be - # *empty* -- still a subset of [arg0, ..., arg(i-1)], but - # not a very interesting subset! - - def _match_long_opt( - self, opt: str, explicit_value: str | None, state: _ParsingState - ) -> None: - if opt not in self._long_opt: - raise NoSuchOption(opt, possibilities=self._long_opt, ctx=self.ctx) - - option = self._long_opt[opt] - if option.takes_value: - # At this point it's safe to modify rargs by injecting the - # explicit value, because no exception is raised in this - # branch. This means that the inserted value will be fully - # consumed. - if explicit_value is not None: - state.rargs.insert(0, explicit_value) - - value = self._get_value_from_state(opt, option, state) - - elif explicit_value is not None: - raise BadOptionUsage( - opt, _("Option {name!r} does not take a value.").format(name=opt) - ) - - else: - value = UNSET - - option.process(value, state) - - def _match_short_opt(self, arg: str, state: _ParsingState) -> None: - stop = False - i = 1 - prefix = arg[0] - unknown_options = [] - - for ch in arg[1:]: - opt = _normalize_opt(f"{prefix}{ch}", self.ctx) - option = self._short_opt.get(opt) - i += 1 - - if not option: - if self.ignore_unknown_options: - unknown_options.append(ch) - continue - raise NoSuchOption(opt, ctx=self.ctx) - if option.takes_value: - # Any characters left in arg? Pretend they're the - # next arg, and stop consuming characters of arg. - if i < len(arg): - state.rargs.insert(0, arg[i:]) - stop = True - - value = self._get_value_from_state(opt, option, state) - - else: - value = UNSET - - option.process(value, state) - - if stop: - break - - # If we got any unknown options we recombine the string of the - # remaining options and re-attach the prefix, then report that - # to the state as new large. This way there is basic combinatorics - # that can be achieved while still ignoring unknown arguments. - if self.ignore_unknown_options and unknown_options: - state.largs.append(f"{prefix}{''.join(unknown_options)}") - - def _get_value_from_state( - self, option_name: str, option: _Option, state: _ParsingState - ) -> str | cabc.Sequence[str] | T_UNSET | T_FLAG_NEEDS_VALUE: - nargs = option.nargs - - value: str | cabc.Sequence[str] | T_UNSET | T_FLAG_NEEDS_VALUE - - if len(state.rargs) < nargs: - if option.obj._flag_needs_value: - # Option allows omitting the value. - value = FLAG_NEEDS_VALUE - else: - raise BadOptionUsage( - option_name, - ngettext( - "Option {name!r} requires an argument.", - "Option {name!r} requires {nargs} arguments.", - nargs, - ).format(name=option_name, nargs=nargs), - ) - elif nargs == 1: - next_rarg = state.rargs[0] - - if ( - option.obj._flag_needs_value - and isinstance(next_rarg, str) - and next_rarg[:1] in self._opt_prefixes - and len(next_rarg) > 1 - ): - # The next arg looks like the start of an option, don't - # use it as the value if omitting the value is allowed. - value = FLAG_NEEDS_VALUE - else: - value = state.rargs.pop(0) - else: - value = tuple(state.rargs[:nargs]) - del state.rargs[:nargs] - - return value - - def _process_opts(self, arg: str, state: _ParsingState) -> None: - explicit_value = None - # Long option handling happens in two parts. The first part is - # supporting explicitly attached values. In any case, we will try - # to long match the option first. - if "=" in arg: - long_opt, explicit_value = arg.split("=", 1) - else: - long_opt = arg - norm_long_opt = _normalize_opt(long_opt, self.ctx) - - # At this point we will match the (assumed) long option through - # the long option matching code. Note that this allows options - # like "-foo" to be matched as long options. - try: - self._match_long_opt(norm_long_opt, explicit_value, state) - except NoSuchOption: - # At this point the long option matching failed, and we need - # to try with short options. However there is a special rule - # which says, that if we have a two character options prefix - # (applies to "--foo" for instance), we do not dispatch to the - # short option code and will instead raise the no option - # error. - if arg[:2] not in self._opt_prefixes: - self._match_short_opt(arg, state) - return - - if not self.ignore_unknown_options: - raise - - state.largs.append(arg) - - -def __getattr__(name: str) -> object: - import warnings - - if name in { - "OptionParser", - "Argument", - "Option", - "split_opt", - "normalize_opt", - "ParsingState", - }: - warnings.warn( - f"'parser.{name}' is deprecated and will be removed in Click 9.0." - " The old parser is available in 'optparse'.", - DeprecationWarning, - stacklevel=2, - ) - return globals()[f"_{name}"] - - if name == "split_arg_string": - from .shell_completion import split_arg_string - - warnings.warn( - "Importing 'parser.split_arg_string' is deprecated, it will only be" - " available in 'shell_completion' in Click 9.0.", - DeprecationWarning, - stacklevel=2, - ) - return split_arg_string - - raise AttributeError(name) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/click/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/shell_completion.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/shell_completion.py deleted file mode 100644 index 468ee77..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/shell_completion.py +++ /dev/null @@ -1,705 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import os -import re -import typing as t -from gettext import gettext as _ - -from .core import Argument -from .core import Command -from .core import Context -from .core import Group -from .core import Option -from .core import Parameter -from .core import ParameterSource -from .utils import echo - - -def shell_complete( - cli: Command, - ctx_args: cabc.MutableMapping[str, t.Any], - prog_name: str, - complete_var: str, - instruction: str, -) -> t.Literal[0, 1]: - """Perform shell completion for the given CLI program. - - :param cli: Command being called. - :param ctx_args: Extra arguments to pass to - ``cli.make_context``. - :param prog_name: Name of the executable in the shell. - :param complete_var: Name of the environment variable that holds - the completion instruction. - :param instruction: Value of ``complete_var`` with the completion - instruction and shell, in the form ``instruction_shell``. - :return: Status code to exit with. - """ - shell, _, instruction = instruction.partition("_") - comp_cls = get_completion_class(shell) - - if comp_cls is None: - return 1 - - comp = comp_cls(cli, ctx_args, prog_name, complete_var) - - # Write bytes, otherwise Windows text stdout translates LF to CRLF and breaks. - if instruction == "source": - echo(comp.source().encode(), nl=False) - return 0 - - if instruction == "complete": - echo(comp.complete().encode()) - return 0 - - return 1 - - -if t.TYPE_CHECKING: - from typing_extensions import TypeVar - - # `Any` is used as default for backwards compatibility (instead of e.g. `str`) - _ValueT_co = TypeVar("_ValueT_co", covariant=True, default=t.Any) -else: - _ValueT_co = t.TypeVar("_ValueT_co", covariant=True) - - -class CompletionItem(t.Generic[_ValueT_co]): - """Represents a completion value and metadata about the value. The - default metadata is ``type`` to indicate special shell handling, - and ``help`` if a shell supports showing a help string next to the - value. - - Arbitrary parameters can be passed when creating the object, and - accessed using ``item.attr``. If an attribute wasn't passed, - accessing it returns ``None``. - - :param value: The completion suggestion. - :param type: Tells the shell script to provide special completion - support for the type. Click uses ``"dir"`` and ``"file"``. - :param help: String shown next to the value if supported. - :param kwargs: Arbitrary metadata. The built-in implementations - don't use this, but custom type completions paired with custom - shell support could use it. - """ - - __slots__ = ("value", "type", "help", "_info") - - def __init__( - self, - value: _ValueT_co, - type: str = "plain", - help: str | None = None, - **kwargs: t.Any, - ) -> None: - self.value: _ValueT_co = value - self.type: str = type - self.help: str | None = help - self._info = kwargs - - def __getattr__(self, name: str) -> t.Any: - return self._info.get(name) - - -# Only Bash >= 4.4 has the nosort option. -_SOURCE_BASH = """\ -%(complete_func)s() { - local IFS=$'\\n' - local response - - response=$(env COMP_WORDS="${COMP_WORDS[*]}" COMP_CWORD=$COMP_CWORD \ -%(complete_var)s=bash_complete $1) - - for completion in $response; do - IFS=',' read type value <<< "$completion" - - if [[ $type == 'dir' ]]; then - COMPREPLY=() - compopt -o dirnames - elif [[ $type == 'file' ]]; then - COMPREPLY=() - compopt -o default - elif [[ $type == 'plain' ]]; then - COMPREPLY+=($value) - fi - done - - return 0 -} - -%(complete_func)s_setup() { - complete -o nosort -F %(complete_func)s %(prog_name)s -} - -%(complete_func)s_setup; -""" - -# See ZshComplete.format_completion below, and issue #2703, before -# changing this script. -# -# (TL;DR: _describe is picky about the format, but this Zsh script snippet -# is already widely deployed. So freeze this script, and use clever-ish -# handling of colons in ZshComplet.format_completion.) -_SOURCE_ZSH = """\ -#compdef %(prog_name)s - -%(complete_func)s() { - local -a completions - local -a completions_with_descriptions - local -a response - (( ! $+commands[%(prog_name)s] )) && return 1 - - response=("${(@f)$(env COMP_WORDS="${words[*]}" COMP_CWORD=$((CURRENT-1)) \ -%(complete_var)s=zsh_complete %(prog_name)s)}") - - for type key descr in ${response}; do - if [[ "$type" == "plain" ]]; then - if [[ "$descr" == "_" ]]; then - completions+=("$key") - else - completions_with_descriptions+=("$key":"$descr") - fi - elif [[ "$type" == "dir" ]]; then - _path_files -/ - elif [[ "$type" == "file" ]]; then - _path_files -f - fi - done - - if [ -n "$completions_with_descriptions" ]; then - _describe -V unsorted completions_with_descriptions -U - fi - - if [ -n "$completions" ]; then - compadd -U -V unsorted -a completions - fi -} - -if [[ $zsh_eval_context[-1] == loadautofunc ]]; then - # autoload from fpath, call function directly - %(complete_func)s "$@" -else - # eval/source/. command, register function for later - compdef %(complete_func)s %(prog_name)s -fi -""" - -_SOURCE_FISH = """\ -function %(complete_func)s; - set -l response (env %(complete_var)s=fish_complete COMP_WORDS=(commandline -cp) \ -COMP_CWORD=(commandline -t) %(prog_name)s); - - for completion in $response; - set -l metadata (string split "," $completion); - - if test $metadata[1] = "dir"; - __fish_complete_directories $metadata[2]; - else if test $metadata[1] = "file"; - __fish_complete_path $metadata[2]; - else if test $metadata[1] = "plain"; - echo $metadata[2]; - end; - end; -end; - -complete --no-files --command %(prog_name)s --arguments \ -"(%(complete_func)s)"; -""" - - -class _SourceVarsDict(t.TypedDict): - complete_func: str - complete_var: str - prog_name: str - - -class ShellComplete: - """Base class for providing shell completion support. A subclass for - a given shell will override attributes and methods to implement the - completion instructions (``source`` and ``complete``). - - :param cli: Command being called. - :param prog_name: Name of the executable in the shell. - :param complete_var: Name of the environment variable that holds - the completion instruction. - - .. versionadded:: 8.0 - """ - - name: t.ClassVar[str] - """Name to register the shell as with :func:`add_completion_class`. - This is used in completion instructions (``{name}_source`` and - ``{name}_complete``). - """ - - source_template: t.ClassVar[str] - """Completion script template formatted by :meth:`source`. This must - be provided by subclasses. - """ - - cli: Command - ctx_args: cabc.MutableMapping[str, t.Any] - prog_name: str - complete_var: str - - def __init__( - self, - cli: Command, - ctx_args: cabc.MutableMapping[str, t.Any], - prog_name: str, - complete_var: str, - ) -> None: - self.cli = cli - self.ctx_args = ctx_args - self.prog_name = prog_name - self.complete_var = complete_var - - @property - def func_name(self) -> str: - """The name of the shell function defined by the completion - script. - """ - safe_name = re.sub(r"\W*", "", self.prog_name.replace("-", "_"), flags=re.ASCII) - return f"_{safe_name}_completion" - - def source_vars(self) -> _SourceVarsDict: - """Vars for formatting :attr:`source_template`. - - By default this provides ``complete_func``, ``complete_var``, - and ``prog_name``. - """ - return { - "complete_func": self.func_name, - "complete_var": self.complete_var, - "prog_name": self.prog_name, - } - - def source(self) -> str: - """Produce the shell script that defines the completion - function. By default this ``%``-style formats - :attr:`source_template` with the dict returned by - :meth:`source_vars`. - """ - return self.source_template % self.source_vars() - - def get_completion_args(self) -> tuple[list[str], str]: - """Use the env vars defined by the shell script to return a - tuple of ``args, incomplete``. This must be implemented by - subclasses. - """ - raise NotImplementedError - - def get_completions( - self, args: list[str], incomplete: str - ) -> list[CompletionItem[str]]: - """Determine the context and last complete command or parameter - from the complete args. Call that object's ``shell_complete`` - method to get the completions for the incomplete value. - - :param args: List of complete args before the incomplete value. - :param incomplete: Value being completed. May be empty. - """ - ctx = _resolve_context(self.cli, self.ctx_args, self.prog_name, args) - obj, incomplete = _resolve_incomplete(ctx, args, incomplete) - return obj.shell_complete(ctx, incomplete) - - def format_completion(self, item: CompletionItem[str]) -> str: - """Format a completion item into the form recognized by the - shell script. This must be implemented by subclasses. - - :param item: Completion item to format. - """ - raise NotImplementedError - - def complete(self) -> str: - """Produce the completion data to send back to the shell. - - By default this calls :meth:`get_completion_args`, gets the - completions, then calls :meth:`format_completion` for each - completion. - """ - args, incomplete = self.get_completion_args() - completions = self.get_completions(args, incomplete) - out = [self.format_completion(item) for item in completions] - return "\n".join(out) - - -class BashComplete(ShellComplete): - """Shell completion for Bash.""" - - name: t.ClassVar[str] = "bash" - source_template: t.ClassVar[str] = _SOURCE_BASH - - @staticmethod - def _check_version() -> None: - import shutil - import subprocess - - bash_exe = shutil.which("bash") - - if bash_exe is None: - match = None - else: - output = subprocess.run( - [bash_exe, "--norc", "-c", 'echo "${BASH_VERSION}"'], - stdout=subprocess.PIPE, - ) - match = re.search(r"^(\d+)\.(\d+)\.\d+", output.stdout.decode()) - - if match is not None: - major, minor = match.groups() - - if major < "4" or major == "4" and minor < "4": - echo( - _( - "Shell completion is not supported for Bash" - " versions older than 4.4." - ), - err=True, - ) - else: - echo( - _("Couldn't detect Bash version, shell completion is not supported."), - err=True, - ) - - def source(self) -> str: - self._check_version() - return super().source() - - def get_completion_args(self) -> tuple[list[str], str]: - cwords = split_arg_string(os.environ["COMP_WORDS"]) - cword = int(os.environ["COMP_CWORD"]) - args = cwords[1:cword] - - try: - incomplete = cwords[cword] - except IndexError: - incomplete = "" - - return args, incomplete - - def format_completion(self, item: CompletionItem[t.Any]) -> str: - return f"{item.type},{item.value}" - - -class ZshComplete(ShellComplete): - """Shell completion for Zsh.""" - - name: t.ClassVar[str] = "zsh" - source_template: t.ClassVar[str] = _SOURCE_ZSH - - def get_completion_args(self) -> tuple[list[str], str]: - cwords = split_arg_string(os.environ["COMP_WORDS"]) - cword = int(os.environ["COMP_CWORD"]) - args = cwords[1:cword] - - try: - incomplete = cwords[cword] - except IndexError: - incomplete = "" - - return args, incomplete - - def format_completion(self, item: CompletionItem[str]) -> str: - help_ = item.help or "_" - # The zsh completion script uses `_describe` on items with help - # texts (which splits the item help from the item value at the - # first unescaped colon) and `compadd` on items without help - # text (which uses the item value as-is and does not support - # colon escaping). So escape colons in the item value if and - # only if the item help is not the sentinel "_" value, as used - # by the completion script. - # - # (The zsh completion script is potentially widely deployed, and - # thus harder to fix than this method.) - # - # See issue #1812 and issue #2703 for further context. - value = item.value.replace(":", r"\:") if help_ != "_" else item.value - return f"{item.type}\n{value}\n{help_}" - - -class FishComplete(ShellComplete): - """Shell completion for Fish.""" - - name: t.ClassVar[str] = "fish" - source_template: t.ClassVar[str] = _SOURCE_FISH - - def get_completion_args(self) -> tuple[list[str], str]: - cwords = split_arg_string(os.environ["COMP_WORDS"]) - incomplete = os.environ["COMP_CWORD"] - if incomplete: - incomplete = split_arg_string(incomplete)[0] - args = cwords[1:] - - # Fish stores the partial word in both COMP_WORDS and - # COMP_CWORD, remove it from complete args. - if incomplete and args and args[-1] == incomplete: - args.pop() - - return args, incomplete - - def format_completion(self, item: CompletionItem[str]) -> str: - """ - .. versionchanged:: 8.4.2 - Escape newlines and replace tabs with spaces in the help text to - fix completion errors with multi-line help strings. - """ - # According to https://fishshell.com/docs/current/cmds/complete.html - # Command substitutions found in ARGUMENTS should return a newline- - # separated list of arguments, and each argument may optionally have a tab - # character followed by the argument description. - if item.help: - help_ = item.help.replace("\n", "\\n").replace("\t", " ") - return f"{item.type},{item.value}\t{help_}" - - return f"{item.type},{item.value}" - - -_available_shells: t.Final[dict[str, type[ShellComplete]]] = { - "bash": BashComplete, - "fish": FishComplete, - "zsh": ZshComplete, -} - -_ShellCompleteT = t.TypeVar("_ShellCompleteT", bound="ShellComplete") - - -def add_completion_class( - cls: type[_ShellCompleteT], name: str | None = None -) -> type[_ShellCompleteT]: - """Register a :class:`ShellComplete` subclass under the given name. - The name will be provided by the completion instruction environment - variable during completion. - - :param cls: The completion class that will handle completion for the - shell. - :param name: Name to register the class under. Defaults to the - class's ``name`` attribute. - """ - if name is None: - name = cls.name - - _available_shells[name] = cls - - return cls - - -@t.overload -def get_completion_class(shell: t.Literal["bash"]) -> type[BashComplete]: ... -@t.overload -def get_completion_class(shell: t.Literal["fish"]) -> type[FishComplete]: ... -@t.overload -def get_completion_class(shell: t.Literal["zsh"]) -> type[ZshComplete]: ... -@t.overload -def get_completion_class(shell: str) -> type[ShellComplete] | None: ... -def get_completion_class(shell: str) -> type[ShellComplete] | None: - """Look up a registered :class:`ShellComplete` subclass by the name - provided by the completion instruction environment variable. If the - name isn't registered, returns ``None``. - - :param shell: Name the class is registered under. - """ - return _available_shells.get(shell) - - -def split_arg_string(string: str) -> list[str]: - """Split an argument string as with :func:`shlex.split`, but don't - fail if the string is incomplete. Ignores a missing closing quote or - incomplete escape sequence and uses the partial token as-is. - - .. code-block:: python - - split_arg_string("example 'my file") - ["example", "my file"] - - split_arg_string("example my\\") - ["example", "my"] - - :param string: String to split. - - .. versionchanged:: 8.2 - Moved to ``shell_completion`` from ``parser``. - """ - import shlex - - lex = shlex.shlex(string, posix=True) - lex.whitespace_split = True - lex.commenters = "" - out = [] - - try: - for token in lex: - out.append(token) - except ValueError: - # Raised when end-of-string is reached in an invalid state. Use - # the partial token as-is. The quote or escape character is in - # lex.state, not lex.token. - out.append(lex.token) - - return out - - -def _is_incomplete_argument(ctx: Context, param: Parameter) -> bool: - """Determine if the given parameter is an argument that can still - accept values. - - :param ctx: Invocation context for the command represented by the - parsed complete args. - :param param: Argument object being checked. - """ - if not isinstance(param, Argument): - return False - - value = ctx.params.get(param.name) - return ( - param.nargs == -1 - or ctx.get_parameter_source(param.name) is not ParameterSource.COMMANDLINE - or ( - param.nargs > 1 - and isinstance(value, (tuple, list)) - and len(value) < param.nargs - ) - ) - - -def _start_of_option(ctx: Context, value: str) -> bool: - """Check if the value looks like the start of an option.""" - if not value: - return False - - c = value[0] - return c in ctx._opt_prefixes - - -def _is_incomplete_option(ctx: Context, args: list[str], param: Parameter) -> bool: - """Determine if the given parameter is an option that needs a value. - - :param args: List of complete args before the incomplete value. - :param param: Option object being checked. - """ - if not isinstance(param, Option): - return False - - if param.is_flag or param.count: - return False - - last_option = None - - for index, arg in enumerate(reversed(args)): - if index + 1 > param.nargs: - break - - if _start_of_option(ctx, arg): - last_option = arg - break - - return last_option is not None and last_option in param.opts - - -def _resolve_context( - cli: Command, - ctx_args: cabc.MutableMapping[str, t.Any], - prog_name: str, - args: list[str], -) -> Context: - """Produce the context hierarchy starting with the command and - traversing the complete arguments. This only follows the commands, - it doesn't trigger input prompts or callbacks. - - :param cli: Command being called. - :param prog_name: Name of the executable in the shell. - :param args: List of complete args before the incomplete value. - """ - ctx_args["resilient_parsing"] = True - with cli.make_context(prog_name, args.copy(), **ctx_args) as ctx: - args = ctx._protected_args + ctx.args - - while args: - command = ctx.command - - if isinstance(command, Group): - if not command.chain: - name, cmd, args = command.resolve_command(ctx, args) - - if cmd is None: - return ctx - - with cmd.make_context( - name, args, parent=ctx, resilient_parsing=True - ) as sub_ctx: - ctx = sub_ctx - args = ctx._protected_args + ctx.args - else: - sub_ctx = ctx - - while args: - name, cmd, args = command.resolve_command(ctx, args) - - if cmd is None: - return ctx - - with cmd.make_context( - name, - args, - parent=ctx, - allow_extra_args=True, - allow_interspersed_args=False, - resilient_parsing=True, - ) as sub_sub_ctx: - sub_ctx = sub_sub_ctx - args = sub_ctx.args - - ctx = sub_ctx - args = [*sub_ctx._protected_args, *sub_ctx.args] - else: - break - - return ctx - - -def _resolve_incomplete( - ctx: Context, args: list[str], incomplete: str -) -> tuple[Command | Parameter, str]: - """Find the Click object that will handle the completion of the - incomplete value. Return the object and the incomplete value. - - :param ctx: Invocation context for the command represented by - the parsed complete args. - :param args: List of complete args before the incomplete value. - :param incomplete: Value being completed. May be empty. - """ - # Different shells treat an "=" between a long option name and - # value differently. Might keep the value joined, return the "=" - # as a separate item, or return the split name and value. Always - # split and discard the "=" to make completion easier. - if incomplete == "=": - incomplete = "" - elif "=" in incomplete and _start_of_option(ctx, incomplete): - name, _, incomplete = incomplete.partition("=") - args.append(name) - - # The "--" marker tells Click to stop treating values as options - # even if they start with the option character. If it hasn't been - # given and the incomplete arg looks like an option, the current - # command will provide option name completions. - if "--" not in args and _start_of_option(ctx, incomplete): - return ctx.command, incomplete - - params = ctx.command.get_params(ctx) - - # If the last complete arg is an option name with an incomplete - # value, the option will provide value completions. - for param in params: - if _is_incomplete_option(ctx, args, param): - return param, incomplete - - # It's not an option name or value. The first argument without a - # parsed value will provide value completions. - for param in params: - if _is_incomplete_argument(ctx, param): - return param, incomplete - - # There were no unparsed arguments, the command may be a group that - # will provide command name completions. - return ctx.command, incomplete diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/termui.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/termui.py deleted file mode 100644 index 9bc88db..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/termui.py +++ /dev/null @@ -1,945 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import inspect -import io -import itertools -import re -import sys -import typing as t -from contextlib import AbstractContextManager -from contextlib import redirect_stdout -from gettext import gettext as _ - -from ._compat import isatty -from ._compat import strip_ansi -from ._compat import WIN -from .exceptions import Abort -from .exceptions import UsageError -from .globals import resolve_color_default -from .types import Choice -from .types import convert_type -from .types import ParamType -from .utils import echo -from .utils import LazyFile - -if t.TYPE_CHECKING: - from ._termui_impl import ProgressBar - -V = t.TypeVar("V") - -# The prompt functions to use. The doc tools currently override these -# functions to customize how they work. -visible_prompt_func: t.Callable[[str], str] = input - -_ansi_colors = { - "black": 30, - "red": 31, - "green": 32, - "yellow": 33, - "blue": 34, - "magenta": 35, - "cyan": 36, - "white": 37, - "reset": 39, - "bright_black": 90, - "bright_red": 91, - "bright_green": 92, - "bright_yellow": 93, - "bright_blue": 94, - "bright_magenta": 95, - "bright_cyan": 96, - "bright_white": 97, -} -_ansi_reset_all = "\033[0m" - - -_HIDDEN_INPUT_MASK = "'***'" - - -def _mask_hidden_input(message: str, value: str) -> str: - """Replace occurrences of ``value`` in ``message`` with a fixed mask. - - Both ``repr(value)`` (the form built-in :class:`ParamType` errors use - via ``{value!r}``) and the raw value are masked. The raw-value pass - uses word-boundary lookarounds so a substring like ``"1"`` does not - match inside ``"10"``, and ``"ent"`` does not match inside - ``"Authentication"``. The empty string is skipped to avoid matching - at every boundary. - """ - message = message.replace(repr(value), _HIDDEN_INPUT_MASK) - if value: - message = re.sub( - rf"(? str: - import getpass - - return getpass.getpass(prompt) - - -def _readline_prompt(func: t.Callable[[str], str], text: str, err: bool) -> str: - """Call a prompt function, passing the full prompt on non-Windows so - readline can handle line editing and cursor positioning correctly. - - On Windows the prompt is written separately via :func:`echo` for - colorama support, with only the last character passed to *func*. - """ - if WIN: - # Write the prompt separately so that we get nice coloring - # through colorama on Windows. - echo(text[:-1], nl=False, err=err) - # Echo the last character to stdout to work around an issue - # where readline causes backspace to clear the whole line. - return func(text[-1:]) - if err: - with redirect_stdout(sys.stderr): - return func(text) - return func(text) - - -def _build_prompt( - text: str, - suffix: str, - show_default: bool | str = False, - default: t.Any | None = None, - show_choices: bool = True, - type: ParamType[t.Any] | None = None, -) -> str: - prompt = text - if type is not None and show_choices and isinstance(type, Choice): - prompt += f" ({', '.join(map(str, type.choices))})" - if isinstance(show_default, str): - default = f"({show_default})" - if default is not None and show_default: - prompt = f"{prompt} [{_format_default(default)}]" - return f"{prompt}{suffix}" - - -def _format_default(default: t.Any) -> t.Any: - if isinstance(default, (io.IOBase, LazyFile)) and hasattr(default, "name"): - return default.name - - return default - - -def prompt( - text: str, - default: t.Any | None = None, - hide_input: bool = False, - confirmation_prompt: bool | str = False, - type: ParamType[t.Any] | t.Any | None = None, - value_proc: t.Callable[[str], t.Any] | None = None, - prompt_suffix: str = ": ", - show_default: bool | str = True, - err: bool = False, - show_choices: bool = True, -) -> t.Any: - """Prompts a user for input. This is a convenience function that can - be used to prompt a user for input later. - - If the user aborts the input by sending an interrupt signal, this - function will catch it and raise a :exc:`Abort` exception. - - :param text: the text to show for the prompt. - :param default: the default value to use if no input happens. If this - is not given it will prompt until it's aborted. - :param hide_input: if this is set to true then the input value will - be hidden. - :param confirmation_prompt: Prompt a second time to confirm the - value. Can be set to a string instead of ``True`` to customize - the message. - :param type: the type to use to check the value against. - :param value_proc: if this parameter is provided it's a function that - is invoked instead of the type conversion to - convert a value. - :param prompt_suffix: a suffix that should be added to the prompt. - :param show_default: shows or hides the default value in the prompt. - If this value is a string, it shows that string - in parentheses instead of the actual value. - :param err: if set to true the file defaults to ``stderr`` instead of - ``stdout``, the same as with echo. - :param show_choices: Show or hide choices if the passed type is a Choice. - For example if type is a Choice of either day or week, - show_choices is true and text is "Group by" then the - prompt will be "Group by (day, week): ". - - .. versionchanged:: 8.3.3 - ``show_default`` can be a string to show a custom value instead - of the actual default, matching the help text behavior. - - .. versionchanged:: 8.3.1 - A space is no longer appended to the prompt. - - .. versionadded:: 8.0 - ``confirmation_prompt`` can be a custom string. - - .. versionadded:: 7.0 - Added the ``show_choices`` parameter. - - .. versionadded:: 6.0 - Added unicode support for cmd.exe on Windows. - - .. versionadded:: 4.0 - Added the `err` parameter. - - """ - - def prompt_func(text: str) -> str: - f = hidden_prompt_func if hide_input else visible_prompt_func - try: - return _readline_prompt(f, text, err) - except (KeyboardInterrupt, EOFError): - # getpass doesn't print a newline if the user aborts input with ^C. - # Allegedly this behavior is inherited from getpass(3). - # A doc bug has been filed at https://bugs.python.org/issue24711 - if hide_input: - echo(None, err=err) - raise Abort() from None - - if value_proc is None: - value_proc = convert_type(type, default) - - prompt = _build_prompt( - text, prompt_suffix, show_default, default, show_choices, type - ) - - if confirmation_prompt: - if confirmation_prompt is True: - confirmation_prompt = _("Repeat for confirmation") - - confirmation_prompt = _build_prompt(confirmation_prompt, prompt_suffix) - - while True: - while True: - value = prompt_func(prompt) - if value: - break - elif default is not None: - value = default - break - try: - result = value_proc(value) - except UsageError as e: - message = _mask_hidden_input(e.message, value) if hide_input else e.message - echo(_("Error: {message}").format(message=message), err=err) - continue - if not confirmation_prompt: - return result - while True: - value2 = prompt_func(confirmation_prompt) - is_empty = not value and not value2 - if value2 or is_empty: - break - if value == value2: - return result - echo(_("Error: The two entered values do not match."), err=err) - - -def confirm( - text: str, - default: bool | None = False, - abort: bool = False, - prompt_suffix: str = ": ", - show_default: bool = True, - err: bool = False, -) -> bool: - """Prompts for confirmation (yes/no question). - - If the user aborts the input by sending a interrupt signal this - function will catch it and raise a :exc:`Abort` exception. - - :param text: the question to ask. - :param default: The default value to use when no input is given. If - ``None``, repeat until input is given. - :param abort: if this is set to `True` a negative answer aborts the - exception by raising :exc:`Abort`. - :param prompt_suffix: a suffix that should be added to the prompt. - :param show_default: shows or hides the default value in the prompt. - :param err: if set to true the file defaults to ``stderr`` instead of - ``stdout``, the same as with echo. - - .. versionchanged:: 8.3.1 - A space is no longer appended to the prompt. - - .. versionchanged:: 8.0 - Repeat until input is given if ``default`` is ``None``. - - .. versionadded:: 4.0 - Added the ``err`` parameter. - """ - prompt = _build_prompt( - text, - prompt_suffix, - show_default, - "y/n" if default is None else ("Y/n" if default else "y/N"), - ) - - while True: - try: - value = _readline_prompt(visible_prompt_func, prompt, err).lower().strip() - except (KeyboardInterrupt, EOFError): - raise Abort() from None - if value in ("y", "yes"): - rv = True - elif value in ("n", "no"): - rv = False - elif default is not None and value == "": - rv = default - else: - echo(_("Error: invalid input"), err=err) - continue - break - if abort and not rv: - raise Abort() - return rv - - -def get_pager_file( - color: bool | None = None, -) -> t.ContextManager[t.TextIO]: - """Context manager. - - Yields a writable file-like object which can be used as an output pager. - - .. versionadded:: 8.4.0 - - :param color: controls if the pager supports ANSI colors or not. The - default is autodetection. - """ - from ._termui_impl import get_pager_file - - color = resolve_color_default(color) - - return get_pager_file(color=color) - - -def echo_via_pager( - text_or_generator: cabc.Iterable[str] | t.Callable[[], cabc.Iterable[str]] | str, - color: bool | None = None, -) -> None: - """This function takes a text and shows it via an environment specific - pager on stdout. - - .. versionchanged:: 3.0 - Added the `color` flag. - - :param text_or_generator: the text to page, or alternatively, a - generator emitting the text to page. - :param color: controls if the pager supports ANSI colors or not. The - default is autodetection. - """ - - if inspect.isgeneratorfunction(text_or_generator): - i = t.cast("t.Callable[[], cabc.Iterable[str]]", text_or_generator)() - elif isinstance(text_or_generator, str): - i = [text_or_generator] - else: - i = iter(t.cast("cabc.Iterable[str]", text_or_generator)) - - # convert every element of i to a text type if necessary - text_generator = (el if isinstance(el, str) else str(el) for el in i) - - with get_pager_file(color=color) as pager: - for text in itertools.chain(text_generator, "\n"): - pager.write(text) - # Flush after each write so a slow generator streams to the pager - # incrementally rather than staying invisible until the pipe buffer - # fills (~8 KB). - pager.flush() - - -@t.overload -def progressbar( - *, - length: int, - label: str | None = None, - hidden: bool = False, - show_eta: bool = True, - show_percent: bool | None = None, - show_pos: bool = False, - fill_char: str = "#", - empty_char: str = "-", - bar_template: str = "%(label)s [%(bar)s] %(info)s", - info_sep: str = " ", - width: int = 36, - file: t.TextIO | None = None, - color: bool | None = None, - update_min_steps: int = 1, -) -> ProgressBar[int]: ... - - -@t.overload -def progressbar( - iterable: cabc.Iterable[V] | None = None, - length: int | None = None, - label: str | None = None, - hidden: bool = False, - show_eta: bool = True, - show_percent: bool | None = None, - show_pos: bool = False, - item_show_func: t.Callable[[V | None], str | None] | None = None, - fill_char: str = "#", - empty_char: str = "-", - bar_template: str = "%(label)s [%(bar)s] %(info)s", - info_sep: str = " ", - width: int = 36, - file: t.TextIO | None = None, - color: bool | None = None, - update_min_steps: int = 1, -) -> ProgressBar[V]: ... - - -def progressbar( - iterable: cabc.Iterable[V] | None = None, - length: int | None = None, - label: str | None = None, - hidden: bool = False, - show_eta: bool = True, - show_percent: bool | None = None, - show_pos: bool = False, - item_show_func: t.Callable[[V | None], str | None] | None = None, - fill_char: str = "#", - empty_char: str = "-", - bar_template: str = "%(label)s [%(bar)s] %(info)s", - info_sep: str = " ", - width: int = 36, - file: t.TextIO | None = None, - color: bool | None = None, - update_min_steps: int = 1, -) -> ProgressBar[V]: - """This function creates an iterable context manager that can be used - to iterate over something while showing a progress bar. It will - either iterate over the `iterable` or `length` items (that are counted - up). While iteration happens, this function will print a rendered - progress bar to the given `file` (defaults to stdout) and will attempt - to calculate remaining time and more. By default, this progress bar - will not be rendered if the file is not a terminal. - - The context manager creates the progress bar. When the context - manager is entered the progress bar is already created. With every - iteration over the progress bar, the iterable passed to the bar is - advanced and the bar is updated. When the context manager exits, - a newline is printed and the progress bar is finalized on screen. - - Note: The progress bar is currently designed for use cases where the - total progress can be expected to take at least several seconds. - Because of this, the ProgressBar class object won't display - progress that is considered too fast, and progress where the time - between steps is less than a second. - - No printing must happen or the progress bar will be unintentionally - destroyed. - - Example usage:: - - with progressbar(items) as bar: - for item in bar: - do_something_with(item) - - Alternatively, if no iterable is specified, one can manually update the - progress bar through the `update()` method instead of directly - iterating over the progress bar. The update method accepts the number - of steps to increment the bar with:: - - with progressbar(length=chunks.total_bytes) as bar: - for chunk in chunks: - process_chunk(chunk) - bar.update(chunks.bytes) - - The ``update()`` method also takes an optional value specifying the - ``current_item`` at the new position. This is useful when used - together with ``item_show_func`` to customize the output for each - manual step:: - - with click.progressbar( - length=total_size, - label='Unzipping archive', - item_show_func=lambda a: a.filename - ) as bar: - for archive in zip_file: - archive.extract() - bar.update(archive.size, archive) - - :param iterable: an iterable to iterate over. If not provided the length - is required. - :param length: the number of items to iterate over. By default the - progressbar will attempt to ask the iterator about its - length, which might or might not work. If an iterable is - also provided this parameter can be used to override the - length. If an iterable is not provided the progress bar - will iterate over a range of that length. - :param label: the label to show next to the progress bar. - :param hidden: hide the progressbar. Defaults to ``False``. When no tty is - detected, it will only print the progressbar label. Setting this to - ``False`` also disables that. - :param show_eta: enables or disables the estimated time display. This is - automatically disabled if the length cannot be - determined. - :param show_percent: enables or disables the percentage display. The - default is `True` if the iterable has a length or - `False` if not. - :param show_pos: enables or disables the absolute position display. The - default is `False`. - :param item_show_func: A function called with the current item which - can return a string to show next to the progress bar. If the - function returns ``None`` nothing is shown. The current item can - be ``None``, such as when entering and exiting the bar. - :param fill_char: the character to use to show the filled part of the - progress bar. - :param empty_char: the character to use to show the non-filled part of - the progress bar. - :param bar_template: the format string to use as template for the bar. - The parameters in it are ``label`` for the label, - ``bar`` for the progress bar and ``info`` for the - info section. - :param info_sep: the separator between multiple info items (eta etc.) - :param width: the width of the progress bar in characters, 0 means full - terminal width - :param file: The file to write to. If this is not a terminal then - only the label is printed. - :param color: controls if the terminal supports ANSI colors or not. The - default is autodetection. This is only needed if ANSI - codes are included anywhere in the progress bar output - which is not the case by default. - :param update_min_steps: Render only when this many updates have - completed. This allows tuning for very fast iterators. - - .. versionadded:: 8.2 - The ``hidden`` argument. - - .. versionchanged:: 8.0 - Output is shown even if execution time is less than 0.5 seconds. - - .. versionchanged:: 8.0 - ``item_show_func`` shows the current item, not the previous one. - - .. versionchanged:: 8.0 - Labels are echoed if the output is not a TTY. Reverts a change - in 7.0 that removed all output. - - .. versionadded:: 8.0 - The ``update_min_steps`` parameter. - - .. versionadded:: 4.0 - The ``color`` parameter and ``update`` method. - - .. versionadded:: 2.0 - """ - from ._termui_impl import ProgressBar - - color = resolve_color_default(color) - return ProgressBar( - iterable=iterable, - length=length, - hidden=hidden, - show_eta=show_eta, - show_percent=show_percent, - show_pos=show_pos, - item_show_func=item_show_func, - fill_char=fill_char, - empty_char=empty_char, - bar_template=bar_template, - info_sep=info_sep, - file=file, - label=label, - width=width, - color=color, - update_min_steps=update_min_steps, - ) - - -def clear() -> None: - """Clears the terminal screen. This will have the effect of clearing - the whole visible space of the terminal and moving the cursor to the - top left. This does not do anything if not connected to a terminal. - - .. versionadded:: 2.0 - """ - if not isatty(sys.stdout): - return - - # ANSI escape \033[2J clears the screen, \033[1;1H moves the cursor - echo("\033[2J\033[1;1H", nl=False) - - -def _interpret_color(color: int | tuple[int, int, int] | str, offset: int = 0) -> str: - if isinstance(color, int): - return f"{38 + offset};5;{color:d}" - - if isinstance(color, (tuple, list)): - r, g, b = color - return f"{38 + offset};2;{r:d};{g:d};{b:d}" - - return str(_ansi_colors[color] + offset) - - -def style( - text: t.Any, - fg: int | tuple[int, int, int] | str | None = None, - bg: int | tuple[int, int, int] | str | None = None, - bold: bool | None = None, - dim: bool | None = None, - underline: bool | None = None, - overline: bool | None = None, - italic: bool | None = None, - blink: bool | None = None, - reverse: bool | None = None, - strikethrough: bool | None = None, - reset: bool = True, -) -> str: - """Styles a text with ANSI styles and returns the new string. By - default the styling is self contained which means that at the end - of the string a reset code is issued. This can be prevented by - passing ``reset=False``. - - Examples:: - - click.echo(click.style('Hello World!', fg='green')) - click.echo(click.style('ATTENTION!', blink=True)) - click.echo(click.style('Some things', reverse=True, fg='cyan')) - click.echo(click.style('More colors', fg=(255, 12, 128), bg=117)) - - Supported color names: - - * ``black`` (might be a gray) - * ``red`` - * ``green`` - * ``yellow`` (might be an orange) - * ``blue`` - * ``magenta`` - * ``cyan`` - * ``white`` (might be light gray) - * ``bright_black`` - * ``bright_red`` - * ``bright_green`` - * ``bright_yellow`` - * ``bright_blue`` - * ``bright_magenta`` - * ``bright_cyan`` - * ``bright_white`` - * ``reset`` (reset the color code only) - - If the terminal supports it, color may also be specified as: - - - An integer in the interval [0, 255]. The terminal must support - 8-bit/256-color mode. - - An RGB tuple of three integers in [0, 255]. The terminal must - support 24-bit/true-color mode. - - See https://en.wikipedia.org/wiki/ANSI_color and - https://gist.github.com/XVilka/8346728 for more information. - - :param text: the string to style with ansi codes. - :param fg: if provided this will become the foreground color. - :param bg: if provided this will become the background color. - :param bold: if provided this will enable or disable bold mode. - :param dim: if provided this will enable or disable dim mode. This is - badly supported. - :param underline: if provided this will enable or disable underline. - :param overline: if provided this will enable or disable overline. - :param italic: if provided this will enable or disable italic. - :param blink: if provided this will enable or disable blinking. - :param reverse: if provided this will enable or disable inverse - rendering (foreground becomes background and the - other way round). - :param strikethrough: if provided this will enable or disable - striking through text. - :param reset: by default a reset-all code is added at the end of the - string which means that styles do not carry over. This - can be disabled to compose styles. - - .. versionchanged:: 8.0 - A non-string ``message`` is converted to a string. - - .. versionchanged:: 8.0 - Added support for 256 and RGB color codes. - - .. versionchanged:: 8.0 - Added the ``strikethrough``, ``italic``, and ``overline`` - parameters. - - .. versionchanged:: 7.0 - Added support for bright colors. - - .. versionadded:: 2.0 - """ - if not isinstance(text, str): - text = str(text) - - bits = [] - - if fg: - try: - bits.append(f"\033[{_interpret_color(fg)}m") - except KeyError: - raise TypeError(_("Unknown color {colour!r}").format(colour=fg)) from None - - if bg: - try: - bits.append(f"\033[{_interpret_color(bg, 10)}m") - except KeyError: - raise TypeError(_("Unknown color {colour!r}").format(colour=bg)) from None - - if bold is not None: - bits.append(f"\033[{1 if bold else 22}m") - if dim is not None: - bits.append(f"\033[{2 if dim else 22}m") - if underline is not None: - bits.append(f"\033[{4 if underline else 24}m") - if overline is not None: - bits.append(f"\033[{53 if overline else 55}m") - if italic is not None: - bits.append(f"\033[{3 if italic else 23}m") - if blink is not None: - bits.append(f"\033[{5 if blink else 25}m") - if reverse is not None: - bits.append(f"\033[{7 if reverse else 27}m") - if strikethrough is not None: - bits.append(f"\033[{9 if strikethrough else 29}m") - bits.append(text) - if reset: - bits.append(_ansi_reset_all) - return "".join(bits) - - -def unstyle(text: str) -> str: - """Removes ANSI styling information from a string. Usually it's not - necessary to use this function as Click's echo function will - automatically remove styling if necessary. - - .. versionadded:: 2.0 - - :param text: the text to remove style information from. - """ - return strip_ansi(text) - - -def secho( - message: t.Any | None = None, - file: t.IO[t.AnyStr] | None = None, - nl: bool = True, - err: bool = False, - color: bool | None = None, - **styles: t.Any, -) -> None: - """This function combines :func:`echo` and :func:`style` into one - call. As such the following two calls are the same:: - - click.secho('Hello World!', fg='green') - click.echo(click.style('Hello World!', fg='green')) - - All keyword arguments are forwarded to the underlying functions - depending on which one they go with. - - Non-string types will be converted to :class:`str`. However, - :class:`bytes` are passed directly to :meth:`echo` without applying - style. If you want to style bytes that represent text, call - :meth:`bytes.decode` first. - - .. versionchanged:: 8.0 - A non-string ``message`` is converted to a string. Bytes are - passed through without style applied. - - .. versionadded:: 2.0 - """ - if message is not None and not isinstance(message, (bytes, bytearray)): - message = style(message, **styles) - - return echo(message, file=file, nl=nl, err=err, color=color) - - -@t.overload -def edit( - text: bytes | bytearray, - editor: str | None = None, - env: cabc.Mapping[str, str] | None = None, - require_save: bool = False, - extension: str = ".txt", -) -> bytes | None: ... - - -@t.overload -def edit( - text: str, - editor: str | None = None, - env: cabc.Mapping[str, str] | None = None, - require_save: bool = True, - extension: str = ".txt", -) -> str | None: ... - - -@t.overload -def edit( - text: None = None, - editor: str | None = None, - env: cabc.Mapping[str, str] | None = None, - require_save: bool = True, - extension: str = ".txt", - filename: str | cabc.Iterable[str] | None = None, -) -> None: ... - - -def edit( - text: str | bytes | bytearray | None = None, - editor: str | None = None, - env: cabc.Mapping[str, str] | None = None, - require_save: bool = True, - extension: str = ".txt", - filename: str | cabc.Iterable[str] | None = None, -) -> str | bytes | bytearray | None: - r"""Edits the given text in the defined editor. If an editor is given - (should be the full path to the executable but the regular operating - system search path is used for finding the executable) it overrides - the detected editor. Optionally, some environment variables can be - used. If the editor is closed without changes, `None` is returned. In - case a file is edited directly the return value is always `None` and - `require_save` and `extension` are ignored. - - If the editor cannot be opened a :exc:`UsageError` is raised. - - Note for Windows: to simplify cross-platform usage, the newlines are - automatically converted from POSIX to Windows and vice versa. As such, - the message here will have ``\n`` as newline markers. - - :param text: the text to edit. - :param editor: optionally the editor to use. Defaults to automatic - detection. - :param env: environment variables to forward to the editor. - :param require_save: if this is true, then not saving in the editor - will make the return value become `None`. - :param extension: the extension to tell the editor about. This defaults - to `.txt` but changing this might change syntax - highlighting. - :param filename: if provided it will edit this file instead of the - provided text contents. It will not use a temporary - file as an indirection in that case. If the editor supports - editing multiple files at once, a sequence of files may be - passed as well. Invoke `click.file` once per file instead - if multiple files cannot be managed at once or editing the - files serially is desired. - - .. versionchanged:: 8.2.0 - ``filename`` now accepts any ``Iterable[str]`` in addition to a ``str`` - if the ``editor`` supports editing multiple files at once. - - """ - from ._termui_impl import Editor - - ed = Editor(editor=editor, env=env, require_save=require_save, extension=extension) - - if filename is None: - return ed.edit(text) - - if isinstance(filename, str): - filename = (filename,) - - ed.edit_files(filenames=filename) - return None - - -def launch(url: str, wait: bool = False, locate: bool = False) -> int: - """This function launches the given URL (or filename) in the default - viewer application for this file type. If this is an executable, it - might launch the executable in a new session. The return value is - the exit code of the launched application. Usually, ``0`` indicates - success. - - Examples:: - - click.launch('https://click.palletsprojects.com/') - click.launch('/my/downloaded/file', locate=True) - - .. versionadded:: 2.0 - - :param url: URL or filename of the thing to launch. - :param wait: Wait for the program to exit before returning. This - only works if the launched program blocks. In particular, - ``xdg-open`` on Linux does not block. - :param locate: if this is set to `True` then instead of launching the - application associated with the URL it will attempt to - launch a file manager with the file located. This - might have weird effects if the URL does not point to - the filesystem. - """ - from ._termui_impl import open_url - - return open_url(url, wait=wait, locate=locate) - - -# If this is provided, getchar() calls into this instead. This is used -# for unittesting purposes. -_getchar: t.Callable[[bool], str] | None = None - - -def getchar(echo: bool = False) -> str: - """Fetches a single character from the terminal and returns it. This - will always return a unicode character and under certain rare - circumstances this might return more than one character. The - situations which more than one character is returned is when for - whatever reason multiple characters end up in the terminal buffer or - standard input was not actually a terminal. - - Note that this will always read from the terminal, even if something - is piped into the standard input. - - Note for Windows: in rare cases when typing non-ASCII characters, this - function might wait for a second character and then return both at once. - This is because certain Unicode characters look like special-key markers. - - .. versionadded:: 2.0 - - :param echo: if set to `True`, the character read will also show up on - the terminal. The default is to not show it. - """ - global _getchar - - if _getchar is None: - from ._termui_impl import getchar as f - - _getchar = f - - return _getchar(echo) - - -def raw_terminal() -> AbstractContextManager[int]: - from ._termui_impl import raw_terminal as f - - return f() - - -def pause(info: str | None = None, err: bool = False) -> None: - """This command stops execution and waits for the user to press any - key to continue. This is similar to the Windows batch "pause" - command. If the program is not run through a terminal, this command - will instead do nothing. - - .. versionadded:: 2.0 - - .. versionadded:: 4.0 - Added the `err` parameter. - - :param info: The message to print before pausing. Defaults to - ``"Press any key to continue..."``. - :param err: if set to message goes to ``stderr`` instead of - ``stdout``, the same as with echo. - """ - if not isatty(sys.stdin) or not isatty(sys.stdout): - return - - if info is None: - info = _("Press any key to continue...") - - try: - if info: - echo(info, nl=False, err=err) - try: - getchar() - except (KeyboardInterrupt, EOFError): - pass - finally: - if info: - echo(err=err) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/testing.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/testing.py deleted file mode 100644 index 19fae4a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/testing.py +++ /dev/null @@ -1,772 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import contextlib -import io -import os -import pdb -import shlex -import sys -import tempfile -import typing as t -from types import TracebackType - -from . import _compat -from . import formatting -from . import termui -from . import utils -from ._compat import _find_binary_reader - -if t.TYPE_CHECKING: - from _typeshed import ReadableBuffer - - from .core import Command - -if sys.platform == "win32": - CaptureMode: t.TypeAlias = t.Literal["sys"] # pyright: ignore[reportRedeclaration] -else: - CaptureMode: t.TypeAlias = t.Literal["sys", "fd"] # pyright: ignore[reportRedeclaration] -ExceptionInfo: t.TypeAlias = tuple[type[BaseException], BaseException, TracebackType] - - -class EchoingStdin: - _input: t.BinaryIO - _output: t.BinaryIO - _paused: bool - - def __init__(self, input: t.BinaryIO, output: t.BinaryIO) -> None: - self._input = input - self._output = output - self._paused = False - - def __getattr__(self, x: str) -> t.Any: - return getattr(self._input, x) - - def _echo(self, rv: bytes) -> bytes: - if not self._paused: - self._output.write(rv) - - return rv - - def read(self, n: int = -1) -> bytes: - return self._echo(self._input.read(n)) - - def read1(self, n: int = -1) -> bytes: - return self._echo(self._input.read1(n)) # type: ignore - - def readline(self, n: int = -1) -> bytes: - return self._echo(self._input.readline(n)) - - def readlines(self) -> list[bytes]: - return [self._echo(x) for x in self._input.readlines()] - - def __iter__(self) -> cabc.Iterator[bytes]: - return iter(self._echo(x) for x in self._input) - - def __repr__(self) -> str: - return repr(self._input) - - -@contextlib.contextmanager -def _pause_echo(stream: EchoingStdin | None) -> cabc.Generator[None]: - if stream is None: - yield - else: - stream._paused = True - yield - stream._paused = False - - -class _FDCapture: - """Redirect a file descriptor to a temporary file for capture. - - Saves the current target of *targetfd* via :func:`os.dup`, then - redirects it to a temporary file via :func:`os.dup2`. On - :meth:`stop`, restores the original ``fd`` and returns the captured - bytes. Inspired by Pytest's ``FDCapture``. - - .. versionadded:: 8.4.0 - """ - - _targetfd: int - saved_fd: int - _tmpfile: t.BinaryIO | None - - def __init__(self, targetfd: int) -> None: - self._targetfd = targetfd - self.saved_fd = -1 - self._tmpfile = None - - def start(self) -> None: - self.saved_fd = os.dup(self._targetfd) - self._tmpfile = tempfile.TemporaryFile(buffering=0) - os.dup2(self._tmpfile.fileno(), self._targetfd) - - def stop(self) -> bytes: - assert self._tmpfile is not None, "_FDCapture.start() was not called" - os.dup2(self.saved_fd, self._targetfd) - os.close(self.saved_fd) - self.saved_fd = -1 - self._tmpfile.seek(0) - data = self._tmpfile.read() - self._tmpfile.close() - self._tmpfile = None - return data - - -class BytesIOCopy(io.BytesIO): - """Patch ``io.BytesIO`` to let the written stream be copied to another. - - .. versionadded:: 8.2 - """ - - copy_to: io.BytesIO - - def __init__(self, copy_to: io.BytesIO) -> None: - super().__init__() - self.copy_to = copy_to - - def flush(self) -> None: - super().flush() - self.copy_to.flush() - - def write(self, b: ReadableBuffer) -> int: - self.copy_to.write(b) - return super().write(b) - - -class StreamMixer: - """Mixes `` and `` streams. - - The result is available in the ``output`` attribute. - - .. versionadded:: 8.2 - """ - - output: io.BytesIO - stdout: BytesIOCopy - stderr: BytesIOCopy - - def __init__(self) -> None: - self.output = io.BytesIO() - self.stdout = BytesIOCopy(copy_to=self.output) - self.stderr = BytesIOCopy(copy_to=self.output) - - -class _NamedTextIOWrapper(io.TextIOWrapper): - """A :class:`~io.TextIOWrapper` with custom ``name`` and ``mode`` - that does not close its underlying buffer. - - When ``CliRunner`` runs in ``fd`` mode, ``_original_fd`` is patched to - point at the saved (pre-redirection) ``fd``, so C-level consumers that call - :meth:`fileno` (like ``faulthandler`` or ``subprocess``) keep working. In - the default ``sys`` mode ``_original_fd`` stays at ``-1`` and - :meth:`fileno` raises :exc:`io.UnsupportedOperation`, matching the - pre-``8.3.3`` behavior. - """ - - _name: str - _mode: str - _original_fd: int - - def __init__( - self, - buffer: t.BinaryIO, - name: str, - mode: str, - **kwargs: t.Any, - ) -> None: - super().__init__(buffer, **kwargs) - self._name = name - self._mode = mode - self._original_fd = -1 - - def close(self) -> None: - """The buffer this object contains belongs to some other object, - so prevent the default ``__del__`` implementation from closing - that buffer. - - .. versionadded:: 8.3.2 - """ - - def fileno(self) -> int: - """Return the file descriptor of the saved original stream when - ``CliRunner`` runs in ``fd`` mode. Otherwise delegate to - :class:`~io.TextIOWrapper`, which raises - :exc:`io.UnsupportedOperation` for a ``BytesIO``-backed buffer. - """ - if self._original_fd >= 0: - return self._original_fd - return super().fileno() - - @property - def name(self) -> str: - return self._name - - @property - def mode(self) -> str: - return self._mode - - -def make_input_stream( - input: str | bytes | t.IO[t.Any] | None, charset: str -) -> t.BinaryIO: - # Is already an input stream. - if hasattr(input, "read"): - rv = _find_binary_reader(t.cast("t.IO[t.Any]", input)) - - if rv is not None: - return rv - - raise TypeError("Could not find binary reader for input stream.") - - if input is None: - input = b"" - elif isinstance(input, str): - input = input.encode(charset) - - return io.BytesIO(input) - - -class Result: - """Holds the captured result of an invoked CLI script. - - :param runner: The runner that created the result - :param stdout_bytes: The standard output as bytes. - :param stderr_bytes: The standard error as bytes. - :param output_bytes: A mix of ``stdout_bytes`` and ``stderr_bytes``, as the - user would see it in its terminal. - :param return_value: The value returned from the invoked command. - :param exit_code: The exit code as integer. - :param exception: The exception that happened if one did. - :param exc_info: Exception information (exception type, exception instance, - traceback type). - - .. versionchanged:: 8.2 - ``stderr_bytes`` no longer optional, ``output_bytes`` introduced and - ``mix_stderr`` has been removed. - - .. versionadded:: 8.0 - Added ``return_value``. - """ - - runner: CliRunner - stdout_bytes: bytes - stderr_bytes: bytes - output_bytes: bytes - return_value: t.Any - exit_code: int - exception: BaseException | None - exc_info: ExceptionInfo | None - - def __init__( - self, - runner: CliRunner, - stdout_bytes: bytes, - stderr_bytes: bytes, - output_bytes: bytes, - return_value: t.Any, - exit_code: int, - exception: BaseException | None, - exc_info: ExceptionInfo | None = None, - ) -> None: - self.runner = runner - self.stdout_bytes = stdout_bytes - self.stderr_bytes = stderr_bytes - self.output_bytes = output_bytes - self.return_value = return_value - self.exit_code = exit_code - self.exception = exception - self.exc_info = exc_info - - @property - def output(self) -> str: - """The terminal output as unicode string, as the user would see it. - - .. versionchanged:: 8.2 - No longer a proxy for ``self.stdout``. Now has its own independent stream - that is mixing `` and ``, in the order they were written. - """ - return self.output_bytes.decode(self.runner.charset, "replace").replace( - "\r\n", "\n" - ) - - @property - def stdout(self) -> str: - """The standard output as unicode string.""" - return self.stdout_bytes.decode(self.runner.charset, "replace").replace( - "\r\n", "\n" - ) - - @property - def stderr(self) -> str: - """The standard error as unicode string. - - .. versionchanged:: 8.2 - No longer raise an exception, always returns the `` string. - """ - return self.stderr_bytes.decode(self.runner.charset, "replace").replace( - "\r\n", "\n" - ) - - def __repr__(self) -> str: - exc_str = repr(self.exception) if self.exception else "okay" - return f"<{type(self).__name__} {exc_str}>" - - -class CliRunner: - """The CLI runner provides functionality to invoke a Click command line - script for unittesting purposes in a isolated environment. This only - works in single-threaded systems without any concurrency as it changes the - global interpreter state. - - :param charset: the character set for the input and output data. - :param env: a dictionary with environment variables for overriding. - :param echo_stdin: if this is set to `True`, then reading from `` writes - to ``. This is useful for showing examples in - some circumstances. Note that regular prompts - will automatically echo the input. - :param catch_exceptions: Whether to catch any exceptions other than - ``SystemExit`` when running :meth:`~CliRunner.invoke`. - :param capture: Selects the output capture strategy. ``sys`` (default) - captures Python-level writes only and leaves - :meth:`sys.stdout.fileno` raising :exc:`io.UnsupportedOperation`, so - user code that calls :func:`os.dup2` on ``sys.stdout.fileno()`` cannot - clobber the host runner's stdout. ``fd`` redirects file descriptors - ``1`` and ``2`` via :func:`os.dup2` to a temporary file, also catching - output from stale stream references, C extensions, and subprocesses. - ``fd`` is not supported on Windows. - - .. versionchanged:: 8.4.0 - Added the ``capture`` parameter. The default ``sys`` mode no longer - exposes the original fd through :meth:`fileno`, reverting the change - introduced in ``8.3.3`` that broke Pytest's ``fd``-level capture - teardown. Use ``capture="fd"`` to restore that behavior with proper - isolation. :issue:`3384` - - .. versionchanged:: 8.2 - Added the ``catch_exceptions`` parameter. - - .. versionchanged:: 8.2 - ``mix_stderr`` parameter has been removed. - """ - - charset: str - env: cabc.Mapping[str, str | None] - echo_stdin: bool - catch_exceptions: bool - capture: CaptureMode - - def __init__( - self, - charset: str = "utf-8", - env: cabc.Mapping[str, str | None] | None = None, - echo_stdin: bool = False, - catch_exceptions: bool = True, - capture: CaptureMode = "sys", - ) -> None: - if capture not in {"sys", "fd"}: - raise ValueError( - f"capture={capture!r} is not valid. Choose from 'sys' or 'fd'." - ) - if capture == "fd" and sys.platform == "win32": - raise ValueError( - f"capture={capture!r} is not supported on Windows. Use 'sys'." - ) - self.charset = charset - self.env = env or {} - self.echo_stdin = echo_stdin - self.catch_exceptions = catch_exceptions - self.capture = capture - - def get_default_prog_name(self, cli: Command) -> str: - """Given a command object it will return the default program name - for it. The default is the `name` attribute or ``"root"`` if not - set. - """ - return cli.name or "root" - - def make_env( - self, overrides: cabc.Mapping[str, str | None] | None = None - ) -> cabc.Mapping[str, str | None]: - """Returns the environment overrides for invoking a script.""" - rv = dict(self.env) - if overrides: - rv.update(overrides) - return rv - - @contextlib.contextmanager - def isolation( - self, - input: str | bytes | t.IO[t.Any] | None = None, - env: cabc.Mapping[str, str | None] | None = None, - color: bool = False, - ) -> cabc.Generator[tuple[io.BytesIO, io.BytesIO, io.BytesIO]]: - """A context manager that sets up the isolation for invoking of a - command line tool. This sets up `` with the given input data - and `os.environ` with the overrides from the given dictionary. - This also rebinds some internals in Click to be mocked (like the - prompt functionality). - - This is automatically done in the :meth:`invoke` method. - - :param input: the input stream to put into `sys.stdin`. - :param env: the environment overrides as dictionary. - :param color: whether the output should contain color codes. The - application can still override this explicitly. - - .. versionadded:: 8.2 - An additional output stream is returned, which is a mix of - `` and `` streams. - - .. versionchanged:: 8.2 - Always returns the `` stream. - - .. versionchanged:: 8.0 - `` is opened with ``errors="backslashreplace"`` - instead of the default ``"strict"``. - - .. versionchanged:: 4.0 - Added the ``color`` parameter. - """ - bytes_input = make_input_stream(input, self.charset) - echo_input = None - - old_stdin = sys.stdin - old_stdout = sys.stdout - old_stderr = sys.stderr - old_forced_width = formatting.FORCED_WIDTH - formatting.FORCED_WIDTH = 80 - - env = self.make_env(env) - - stream_mixer = StreamMixer() - - if self.echo_stdin: - bytes_input = echo_input = t.cast( - t.BinaryIO, EchoingStdin(bytes_input, stream_mixer.stdout) - ) - - sys.stdin = text_input = _NamedTextIOWrapper( - bytes_input, encoding=self.charset, name="", mode="r" - ) - - if self.echo_stdin: - # Force unbuffered reads, otherwise TextIOWrapper reads a - # large chunk which is echoed early. - text_input._CHUNK_SIZE = 1 # type: ignore - - sys.stdout = _NamedTextIOWrapper( - stream_mixer.stdout, - encoding=self.charset, - name="", - mode="w", - ) - - sys.stderr = _NamedTextIOWrapper( - stream_mixer.stderr, - encoding=self.charset, - name="", - mode="w", - errors="backslashreplace", - ) - - @_pause_echo(echo_input) # type: ignore - def visible_input(prompt: str | None = None) -> str: - sys.stdout.write(prompt or "") - try: - val = next(text_input).rstrip("\r\n") - except StopIteration as e: - raise EOFError() from e - sys.stdout.write(f"{val}\n") - sys.stdout.flush() - return val - - @_pause_echo(echo_input) # type: ignore - def hidden_input(prompt: str | None = None) -> str: - sys.stdout.write(f"{prompt or ''}\n") - sys.stdout.flush() - try: - return next(text_input).rstrip("\r\n") - except StopIteration as e: - raise EOFError() from e - - @_pause_echo(echo_input) # type: ignore - def _getchar(echo: bool) -> str: - char = sys.stdin.read(1) - - if echo: - sys.stdout.write(char) - - sys.stdout.flush() - return char - - default_color = color - - def should_strip_ansi( - stream: t.IO[t.Any] | None = None, color: bool | None = None - ) -> bool: - if color is None: - return not default_color - return not color - - old_visible_prompt_func = termui.visible_prompt_func - old_hidden_prompt_func = termui.hidden_prompt_func - old__getchar_func = termui._getchar - old_should_strip_ansi = utils.should_strip_ansi # type: ignore - old__compat_should_strip_ansi = _compat.should_strip_ansi - old_pdb_init = pdb.Pdb.__init__ - termui.visible_prompt_func = visible_input - termui.hidden_prompt_func = hidden_input - termui._getchar = _getchar - utils.should_strip_ansi = should_strip_ansi # type: ignore - _compat.should_strip_ansi = should_strip_ansi - - def _patched_pdb_init( - self: pdb.Pdb, - completekey: str = "tab", - stdin: t.IO[str] | None = None, - stdout: t.IO[str] | None = None, - **kwargs: t.Any, - ) -> None: - """Default ``pdb.Pdb`` to real terminal streams during - ``CliRunner`` isolation. - - Without this patch, ``pdb.Pdb.__init__`` inherits from - ``cmd.Cmd`` which falls back to ``sys.stdin``/``sys.stdout`` - when no explicit streams are provided. During isolation - those are ``BytesIO``-backed wrappers, so the debugger - reads from an empty buffer and writes to captured output, - making interactive debugging impossible. - - By defaulting to ``sys.__stdin__``/``sys.__stdout__`` (the - original terminal streams Python preserves regardless of - redirection), debuggers can interact with the user while - ``click.echo`` output is still captured normally. - - This covers ``pdb.set_trace()``, ``breakpoint()``, - ``pdb.post_mortem()``, and debuggers that subclass - ``pdb.Pdb`` (ipdb, pdbpp). Explicit ``stdin``/``stdout`` - arguments are honored and not overridden. Debuggers that - do not subclass ``pdb.Pdb`` (pudb, debugpy) are not - covered. - """ - if stdin is None: - stdin = sys.__stdin__ - if stdout is None: - stdout = sys.__stdout__ - old_pdb_init( - self, completekey=completekey, stdin=stdin, stdout=stdout, **kwargs - ) - - pdb.Pdb.__init__ = _patched_pdb_init # type: ignore[assignment] - - old_env = {} - try: - for key, value in env.items(): - old_env[key] = os.environ.get(key) - if value is None: - try: - del os.environ[key] - except Exception: - pass - else: - os.environ[key] = value - yield (stream_mixer.stdout, stream_mixer.stderr, stream_mixer.output) - finally: - for key, value in old_env.items(): - if value is None: - try: - del os.environ[key] - except Exception: - pass - else: - os.environ[key] = value - sys.stdout = old_stdout - sys.stderr = old_stderr - sys.stdin = old_stdin - termui.visible_prompt_func = old_visible_prompt_func - termui.hidden_prompt_func = old_hidden_prompt_func - termui._getchar = old__getchar_func - utils.should_strip_ansi = old_should_strip_ansi # type: ignore - _compat.should_strip_ansi = old__compat_should_strip_ansi - formatting.FORCED_WIDTH = old_forced_width - pdb.Pdb.__init__ = old_pdb_init # type: ignore[method-assign] - - def invoke( - self, - cli: Command, - args: str | cabc.Sequence[str] | None = None, - input: str | bytes | t.IO[t.Any] | None = None, - env: cabc.Mapping[str, str | None] | None = None, - catch_exceptions: bool | None = None, - color: bool = False, - **extra: t.Any, - ) -> Result: - """Invokes a command in an isolated environment. The arguments are - forwarded directly to the command line script, the `extra` keyword - arguments are passed to the :meth:`~clickpkg.Command.main` function of - the command. - - This returns a :class:`Result` object. - - :param cli: the command to invoke - :param args: the arguments to invoke. It may be given as an iterable - or a string. When given as string it will be interpreted - as a Unix shell command. More details at - :func:`shlex.split`. - :param input: the input data for `sys.stdin`. - :param env: the environment overrides. - :param catch_exceptions: Whether to catch any other exceptions than - ``SystemExit``. If :data:`None`, the value - from :class:`CliRunner` is used. - :param extra: the keyword arguments to pass to :meth:`main`. - :param color: whether the output should contain color codes. The - application can still override this explicitly. - - .. versionadded:: 8.2 - The result object has the ``output_bytes`` attribute with - the mix of ``stdout_bytes`` and ``stderr_bytes``, as the user would - see it in its terminal. - - .. versionchanged:: 8.2 - The result object always returns the ``stderr_bytes`` stream. - - .. versionchanged:: 8.0 - The result object has the ``return_value`` attribute with - the value returned from the invoked command. - - .. versionchanged:: 4.0 - Added the ``color`` parameter. - - .. versionchanged:: 3.0 - Added the ``catch_exceptions`` parameter. - - .. versionchanged:: 3.0 - The result object has the ``exc_info`` attribute with the - traceback if available. - """ - exc_info = None - if catch_exceptions is None: - catch_exceptions = self.catch_exceptions - - # Set up fd capture before isolation replaces sys.stdout and sys.stderr. - cap_out: _FDCapture | None = None - cap_err: _FDCapture | None = None - - if self.capture == "fd": - cap_out = _FDCapture(1) - cap_err = _FDCapture(2) - try: - cap_out.start() - cap_err.start() - except OSError: - cap_out = cap_err = None - - with self.isolation(input=input, env=env, color=color) as outstreams: - # Point the captured streams' fileno() at the saved (original) - # fd so that C-level consumers like faulthandler keep working - # while fd 1/2 are redirected to the capture tmpfile. - if cap_out is not None and cap_err is not None: - sys.stdout._original_fd = cap_out.saved_fd # type: ignore[union-attr] - sys.stderr._original_fd = cap_err.saved_fd # type: ignore[union-attr] - - return_value = None - exception: BaseException | None = None - exit_code = 0 - - if isinstance(args, str): - args = shlex.split(args) - - try: - prog_name = extra.pop("prog_name") - except KeyError: - prog_name = self.get_default_prog_name(cli) - - try: - return_value = cli.main(args=args or (), prog_name=prog_name, **extra) - except SystemExit as e: - exc_info = sys.exc_info() - e_code = t.cast("int | t.Any | None", e.code) - - if e_code is None: - e_code = 0 - - if e_code != 0: - exception = e - - if not isinstance(e_code, int): - sys.stdout.write(str(e_code)) - sys.stdout.write("\n") - e_code = 1 - - exit_code = e_code - - except Exception as e: - if not catch_exceptions: - raise - exception = e - exit_code = 1 - exc_info = sys.exc_info() - finally: - sys.stdout.flush() - sys.stderr.flush() - - # Stop fd capture and merge the captured bytes into - # the stdout/stderr BytesIO streams. BytesIOCopy mirrors - # those writes into outstreams[2] automatically. - if cap_out is not None and cap_err is not None: - fd_out = cap_out.stop() - fd_err = cap_err.stop() - if fd_out: - outstreams[0].write(fd_out) - if fd_err: - outstreams[1].write(fd_err) - - stdout = outstreams[0].getvalue() - stderr = outstreams[1].getvalue() - output = outstreams[2].getvalue() - - return Result( - runner=self, - stdout_bytes=stdout, - stderr_bytes=stderr, - output_bytes=output, - return_value=return_value, - exit_code=exit_code, - exception=exception, - exc_info=exc_info, # type: ignore - ) - - @contextlib.contextmanager - def isolated_filesystem( - self, temp_dir: str | os.PathLike[str] | None = None - ) -> cabc.Generator[str]: - """A context manager that creates a temporary directory and - changes the current working directory to it. This isolates tests - that affect the contents of the CWD to prevent them from - interfering with each other. - - :param temp_dir: Create the temporary directory under this - directory. If given, the created directory is not removed - when exiting. - - .. versionchanged:: 8.0 - Added the ``temp_dir`` parameter. - """ - cwd = os.getcwd() - dt = tempfile.mkdtemp(dir=temp_dir) - os.chdir(dt) - - try: - yield dt - finally: - os.chdir(cwd) - - if temp_dir is None: - import shutil - - try: - shutil.rmtree(dt) - except OSError: - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/types.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/types.py deleted file mode 100644 index 1e9872e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/types.py +++ /dev/null @@ -1,1374 +0,0 @@ -from __future__ import annotations - -import abc -import collections.abc as cabc -import enum -import os -import stat -import sys -import typing as t -import uuid -from datetime import datetime -from gettext import gettext as _ -from gettext import ngettext - -from ._compat import _get_argv_encoding -from ._compat import open_stream -from .exceptions import BadParameter -from .utils import format_filename -from .utils import LazyFile -from .utils import safecall - -if t.TYPE_CHECKING: - import typing_extensions as te - - from .core import Context - from .core import Parameter - from .shell_completion import CompletionItem - -_ValueT = t.TypeVar("_ValueT") -_ValueT_contra = t.TypeVar("_ValueT_contra", contravariant=True) -_ValueT_co = t.TypeVar("_ValueT_co", covariant=True) - -_FloatValueT = t.TypeVar("_FloatValueT", bound=float) -_FloatValueT_co = t.TypeVar("_FloatValueT_co", bound=float, covariant=True) - - -class ParamTypeInfoDict(t.TypedDict): - param_type: str - name: str - - -class ParamType(t.Generic[_ValueT_co], abc.ABC): - """Represents the type of a parameter. Validates and converts values - from the command line or Python into the correct type. - - To implement a custom type, subclass and implement at least the - following: - - - The :attr:`name` class attribute must be set. - - Calling an instance of the type with ``None`` must return - ``None``. This is already implemented by default. - - :meth:`convert` must convert string values to the correct type. - - :meth:`convert` must accept values that are already the correct - type. - - It must be able to convert a value if the ``ctx`` and ``param`` - arguments are ``None``. This can occur when converting prompt - input. - - .. versionchanged:: 8.4.0 - Now a generic abstract base class. Parameterize with the - converted value type (``ParamType[int]`` for an integer-returning - type) so that :meth:`convert` and downstream consumers carry the - narrowed return type. - """ - - is_composite: t.ClassVar[bool] = False - arity: int = 1 # read-only - - #: the descriptive name of this type - name: str - - #: if a list of this type is expected and the value is pulled from a - #: string environment variable, this is what splits it up. `None` - #: means any whitespace. For all parameters the general rule is that - #: whitespace splits them up. The exception are paths and files which - #: are split by ``os.path.pathsep`` by default (":" on Unix and ";" on - #: Windows). - envvar_list_splitter: t.ClassVar[str | None] = None - - def to_info_dict(self) -> ParamTypeInfoDict: - """Gather information that could be useful for a tool generating - user-facing documentation. - - Use :meth:`click.Context.to_info_dict` to traverse the entire - CLI structure. - - .. versionadded:: 8.0 - """ - # The class name without the "ParamType" suffix. - param_type = type(self).__name__.partition("ParamType")[0] - param_type = param_type.partition("ParameterType")[0] - - # Custom subclasses might not remember to set a name. - if hasattr(self, "name"): - name = self.name - else: - name = param_type - - return {"param_type": param_type, "name": name} - - def __call__( - self, - value: t.Any, - param: Parameter | None = None, - ctx: Context | None = None, - ) -> _ValueT_co | None: - if value is not None: - return self.convert(value, param, ctx) - return None - - def get_metavar(self, param: Parameter, ctx: Context) -> str | None: - """Returns the metavar default for this param if it provides one.""" - - def get_missing_message(self, param: Parameter, ctx: Context | None) -> str | None: - """Optionally might return extra information about a missing - parameter. - - .. versionadded:: 2.0 - """ - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> _ValueT_co: - """Convert the value to the correct type. This is not called if - the value is ``None`` (the missing value). - - This must accept string values from the command line, as well as - values that are already the correct type. It may also convert - other compatible types. - - The ``param`` and ``ctx`` arguments may be ``None`` in certain - situations, such as when converting prompt input. - - If the value cannot be converted, call :meth:`fail` with a - descriptive message. - - :param value: The value to convert. - :param param: The parameter that is using this type to convert - its value. May be ``None``. - :param ctx: The current context that arrived at this value. May - be ``None``. - """ - # The default returns the value as-is so subclasses that only customize - # metadata are not forced to redeclare ``convert``. - return t.cast("_ValueT_co", value) - - def split_envvar_value(self, rv: str) -> cabc.Sequence[str]: - """Given a value from an environment variable this splits it up - into small chunks depending on the defined envvar list splitter. - - If the splitter is set to `None`, which means that whitespace splits, - then leading and trailing whitespace is ignored. Otherwise, leading - and trailing splitters usually lead to empty items being included. - """ - return (rv or "").split(self.envvar_list_splitter) - - def fail( - self, - message: str, - param: Parameter | None = None, - ctx: Context | None = None, - ) -> t.NoReturn: - """Helper method to fail with an invalid value message.""" - raise BadParameter(message, ctx=ctx, param=param) - - def shell_complete( - self, ctx: Context, param: Parameter, incomplete: str - ) -> list[CompletionItem]: - """Return a list of - :class:`~click.shell_completion.CompletionItem` objects for the - incomplete value. Most types do not provide completions, but - some do, and this allows custom types to provide custom - completions as well. - - :param ctx: Invocation context for this command. - :param param: The parameter that is requesting completion. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - return [] - - -class CompositeParamType(ParamType[_ValueT_co]): - is_composite: t.ClassVar[bool] = True - - @property - @abc.abstractmethod - def arity(self) -> int: ... # type: ignore[override] - - -if t.TYPE_CHECKING: - # on Python 3.10 this will raise a TypeError - - class FuncParamTypeInfoDict( - ParamTypeInfoDict, - t.Generic[_ValueT_contra, _ValueT_co], - ): - func: t.Callable[[_ValueT_contra], _ValueT_co] -else: - - class FuncParamTypeInfoDict(ParamTypeInfoDict): - func: t.Callable[[t.Any], t.Any] - - -class FuncParamType(ParamType[_ValueT_co], t.Generic[_ValueT_contra, _ValueT_co]): - name: str - func: t.Callable[[_ValueT_contra], _ValueT_co] - - def __init__(self, func: t.Callable[[_ValueT_contra], _ValueT_co]) -> None: - self.name = func.__name__ - self.func = func - - def to_info_dict(self) -> FuncParamTypeInfoDict[_ValueT_contra, _ValueT_co]: - return {"func": self.func, **super().to_info_dict()} - - def convert( - self, value: _ValueT_contra, param: Parameter | None, ctx: Context | None - ) -> _ValueT_co: - try: - return self.func(value) - except ValueError as exc: - message = str(exc) - - if not message: - try: - message = str(value) - except UnicodeError: - message = t.cast("bytes", value).decode("utf-8", "replace") - - self.fail(message, param, ctx) - - -class UnprocessedParamType(ParamType[t.Any]): - name = "text" - - def convert( - self, value: _ValueT, param: Parameter | None, ctx: Context | None - ) -> _ValueT: - return value - - def __repr__(self) -> str: - return "UNPROCESSED" - - -class StringParamType(ParamType[str]): - name = "text" - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> str: - if isinstance(value, bytes): - enc = _get_argv_encoding() - try: - return value.decode(enc) - except UnicodeError: - fs_enc = sys.getfilesystemencoding() - if fs_enc != enc: - try: - return value.decode(fs_enc) - except UnicodeError: - return value.decode("utf-8", "replace") - else: - return value.decode("utf-8", "replace") - return str(value) - - def __repr__(self) -> str: - return "STRING" - - -if t.TYPE_CHECKING: - # on Python 3.10 this will raise a TypeError - - class ChoiceInfoDict(ParamTypeInfoDict, t.Generic[_ValueT_co]): - choices: tuple[_ValueT_co, ...] - case_sensitive: bool -else: - - class ChoiceInfoDict(ParamTypeInfoDict): - choices: tuple[t.Any, ...] - case_sensitive: bool - - -class Choice(ParamType[_ValueT_co], t.Generic[_ValueT_co]): - """The choice type allows a value to be checked against a fixed set - of supported values. - - You may pass any iterable value which will be converted to a tuple - and thus will only be iterated once. - - The resulting value will always be one of the originally passed choices. - See :meth:`normalize_choice` for more info on the mapping of strings - to choices. See :ref:`choice-opts` for an example. - - :param case_sensitive: Set to false to make choices case - insensitive. Defaults to true. - - .. versionchanged:: 8.4.0 - Now generic in the choice value type. Parameterize with the type of - the choice values (``Choice[HashType]`` for an enum, ``Choice[str]`` - for plain strings) to enable type-checked consumers. - - .. versionchanged:: 8.2.0 - Non-``str`` ``choices`` are now supported. It can additionally be any - iterable. Before you were not recommended to pass anything but a list or - tuple. - - .. versionadded:: 8.2.0 - Choice normalization can be overridden via :meth:`normalize_choice`. - """ - - name: str = "choice" - - choices: tuple[_ValueT_co, ...] - case_sensitive: bool - - def __init__( - self, choices: cabc.Iterable[_ValueT_co], case_sensitive: bool = True - ) -> None: - self.choices = tuple(choices) - self.case_sensitive = case_sensitive - - def to_info_dict(self) -> ChoiceInfoDict[_ValueT_co]: - return { - "choices": self.choices, - "case_sensitive": self.case_sensitive, - **super().to_info_dict(), - } - - def _normalized_mapping( - self, ctx: Context | None = None - ) -> cabc.Mapping[_ValueT_co, str]: - """ - Returns mapping where keys are the original choices and the values are - the normalized values that are accepted via the command line. - - This is a simple wrapper around :meth:`normalize_choice`, use that - instead which is supported. - """ - return { - choice: self.normalize_choice( - choice=choice, - ctx=ctx, - ) - for choice in self.choices - } - - def normalize_choice(self, choice: object, ctx: Context | None) -> str: - """ - Normalize a choice value, used to map a passed string to a choice. - Each choice must have a unique normalized value. - - By default uses :meth:`Context.token_normalize_func` and if not case - sensitive, convert it to a casefolded value. - - .. versionadded:: 8.2.0 - """ - normed_value = choice.name if isinstance(choice, enum.Enum) else str(choice) - - if ctx is not None and ctx.token_normalize_func is not None: - normed_value = ctx.token_normalize_func(normed_value) - - if not self.case_sensitive: - normed_value = normed_value.casefold() - - return normed_value - - def get_metavar(self, param: Parameter, ctx: Context) -> str | None: - if param.param_type_name == "option" and not param.show_choices: # type: ignore[attr-defined] - choice_metavars = [ - convert_type(type(choice)).name.upper() for choice in self.choices - ] - choices_str = "|".join([*dict.fromkeys(choice_metavars)]) - else: - choices_str = "|".join( - [str(i) for i in self._normalized_mapping(ctx=ctx).values()] - ) - - # Use curly braces to indicate a required argument. - if param.required and param.param_type_name == "argument": - return f"{{{choices_str}}}" - - # Use square braces to indicate an option or optional argument. - return f"[{choices_str}]" - - def get_missing_message(self, param: Parameter, ctx: Context | None) -> str: - """ - Message shown when no choice is passed. - - .. versionchanged:: 8.2.0 Added ``ctx`` argument. - """ - return _("Choose from:\n\t{choices}").format( - choices=",\n\t".join(self._normalized_mapping(ctx=ctx).values()) - ) - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> _ValueT_co: - """ - For a given value from the parser, normalize it and find its - matching normalized value in the list of choices. Then return the - matched "original" choice. - """ - normed_value = self.normalize_choice(choice=value, ctx=ctx) - normalized_mapping = self._normalized_mapping(ctx=ctx) - - try: - return next( - original - for original, normalized in normalized_mapping.items() - if normalized == normed_value - ) - except StopIteration: - self.fail( - self.get_invalid_choice_message(value=value, ctx=ctx), - param=param, - ctx=ctx, - ) - - def get_invalid_choice_message(self, value: t.Any, ctx: Context | None) -> str: - """Get the error message when the given choice is invalid. - - :param value: The invalid value. - - .. versionadded:: 8.2 - """ - choices_str = ", ".join(map(repr, self._normalized_mapping(ctx=ctx).values())) - return ngettext( - "{value!r} is not {choice}.", - "{value!r} is not one of {choices}.", - len(self.choices), - ).format(value=value, choice=choices_str, choices=choices_str) - - def __repr__(self) -> str: - return _("Choice({choices})").format(choices=list(self.choices)) - - def shell_complete( - self, ctx: Context, param: Parameter, incomplete: str - ) -> list[CompletionItem]: - """Complete choices that start with the incomplete value. - - :param ctx: Invocation context for this command. - :param param: The parameter that is requesting completion. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - from click.shell_completion import CompletionItem - - str_choices = [self.normalize_choice(choice, ctx) for choice in self.choices] - if self.case_sensitive: - matched = (c for c in str_choices if c.startswith(incomplete)) - else: - incomplete = incomplete.lower() - matched = (c for c in str_choices if c.lower().startswith(incomplete)) - - return [CompletionItem(c) for c in matched] - - -class DateTimeInfoDict(ParamTypeInfoDict): - formats: cabc.Sequence[str] - - -class DateTime(ParamType[datetime]): - """The DateTime type converts date strings into `datetime` objects. - - The format strings which are checked are configurable, but default to some - common (non-timezone aware) ISO 8601 formats. - - When specifying *DateTime* formats, you should only pass a list or a tuple. - Other iterables, like generators, may lead to surprising results. - - The format strings are processed using ``datetime.strptime``, and this - consequently defines the format strings which are allowed. - - Parsing is tried using each format, in order, and the first format which - parses successfully is used. - - :param formats: A list or tuple of date format strings, in the order in - which they should be tried. Defaults to - ``'%Y-%m-%d'``, ``'%Y-%m-%dT%H:%M:%S'``, - ``'%Y-%m-%d %H:%M:%S'``. - """ - - name = "datetime" - - formats: cabc.Sequence[str] - - def __init__(self, formats: cabc.Sequence[str] | None = None): - self.formats = formats or [ - "%Y-%m-%d", - "%Y-%m-%dT%H:%M:%S", - "%Y-%m-%d %H:%M:%S", - ] - - def to_info_dict(self) -> DateTimeInfoDict: - return {"formats": self.formats, **super().to_info_dict()} - - def get_metavar(self, param: Parameter, ctx: Context) -> str: - return f"[{'|'.join(self.formats)}]" - - def _try_to_convert_date(self, value: t.Any, format: str) -> datetime | None: - try: - return datetime.strptime(value, format) - except ValueError: - return None - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> datetime: - if isinstance(value, datetime): - return value - - for format in self.formats: - converted = self._try_to_convert_date(value, format) - - if converted is not None: - return converted - - formats_str = ", ".join(map(repr, self.formats)) - self.fail( - ngettext( - "{value!r} does not match the format {format}.", - "{value!r} does not match the formats {formats}.", - len(self.formats), - ).format(value=value, format=formats_str, formats=formats_str), - param, - ctx, - ) - - def __repr__(self) -> str: - return "DateTime" - - -class _NumberParamTypeBase( - ParamType[_ValueT_co], t.Generic[_ValueT_contra, _ValueT_co] -): - _number_class: t.Callable[[_ValueT_contra], _ValueT_co] - - def convert( - self, value: _ValueT_contra, param: Parameter | None, ctx: Context | None - ) -> _ValueT_co: - try: - return self._number_class(value) - except ValueError: - self.fail( - _("{value!r} is not a valid {number_type}.").format( - value=value, number_type=self.name - ), - param, - ctx, - ) - - -if t.TYPE_CHECKING: - # on Python 3.10 this will raise a TypeError - - class NumberRangeInfoDict(ParamTypeInfoDict, t.Generic[_FloatValueT_co]): - min: _FloatValueT_co | None - max: _FloatValueT_co | None - min_open: bool - max_open: bool - clamp: bool -else: - - class NumberRangeInfoDict(ParamTypeInfoDict): - min: t.Any | None - max: t.Any | None - min_open: bool - max_open: bool - clamp: bool - - -class _NumberRangeBase( - _NumberParamTypeBase[_ValueT_contra, _FloatValueT_co], - t.Generic[_ValueT_contra, _FloatValueT_co], -): - min: _FloatValueT_co | None - max: _FloatValueT_co | None - min_open: bool - max_open: bool - clamp: bool - - def __init__( - self, - min: _FloatValueT_co | None = None, - max: _FloatValueT_co | None = None, - min_open: bool = False, - max_open: bool = False, - clamp: bool = False, - ) -> None: - self.min = min - self.max = max - self.min_open = min_open - self.max_open = max_open - self.clamp = clamp - - def to_info_dict(self) -> NumberRangeInfoDict[_FloatValueT_co]: - return { - "min": self.min, - "max": self.max, - "min_open": self.min_open, - "max_open": self.max_open, - "clamp": self.clamp, - **super().to_info_dict(), - } - - def convert( - self, value: _ValueT_contra, param: Parameter | None, ctx: Context | None - ) -> _FloatValueT_co: - import operator - - rv = super().convert(value, param, ctx) - min = self.min - max = self.max - lt_min: bool = min is not None and ( - operator.le if self.min_open else operator.lt - )(rv, min) - gt_max: bool = max is not None and ( - operator.ge if self.max_open else operator.gt - )(rv, max) - - if self.clamp: - if min is not None and lt_min: - return self._clamp(min, 1, self.min_open) - - if max is not None and gt_max: - return self._clamp(max, -1, self.max_open) - - if lt_min or gt_max: - self.fail( - _("{value} is not in the range {range}.").format( - value=rv, range=self._describe_range() - ), - param, - ctx, - ) - - return rv - - @abc.abstractmethod - def _clamp( - # Covariant type variables cannot be used in input positions, so we use a - # separate method-scoped type variable instead. - self: _NumberRangeBase[t.Any, _FloatValueT], - bound: _FloatValueT, - dir: t.Literal[1, -1], - open: bool, - ) -> _FloatValueT: - """Find the valid value to clamp to bound in the given - direction. - - :param bound: The boundary value. - :param dir: 1 or -1 indicating the direction to move. - :param open: If true, the range does not include the bound. - """ - ... - - def _describe_range(self) -> str: - """Describe the range for use in help text.""" - if self.min is None: - op = "<" if self.max_open else "<=" - return f"x{op}{self.max}" - - if self.max is None: - op = ">" if self.min_open else ">=" - return f"x{op}{self.min}" - - lop = "<" if self.min_open else "<=" - rop = "<" if self.max_open else "<=" - return f"{self.min}{lop}x{rop}{self.max}" - - def __repr__(self) -> str: - clamp = " clamped" if self.clamp else "" - return f"<{type(self).__name__} {self._describe_range()}{clamp}>" - - -class IntParamType(_NumberParamTypeBase[t.SupportsInt | t.SupportsIndex, int]): - name = "integer" - _number_class = int - - def __repr__(self) -> str: - return "INT" - - -class IntRange(_NumberRangeBase[int, int], IntParamType): - """Restrict an :data:`click.INT` value to a range of accepted - values. See :ref:`ranges`. - - If ``min`` or ``max`` are not passed, any value is accepted in that - direction. If ``min_open`` or ``max_open`` are enabled, the - corresponding boundary is not included in the range. - - If ``clamp`` is enabled, a value outside the range is clamped to the - boundary instead of failing. - - .. versionchanged:: 8.0 - Added the ``min_open`` and ``max_open`` parameters. - """ - - name = "integer range" - - def _clamp(self, bound: int, dir: t.Literal[1, -1], open: bool) -> int: - if not open: - return bound - - return bound + dir - - -class FloatParamType(_NumberParamTypeBase[t.SupportsFloat | t.SupportsIndex, float]): - name = "float" - _number_class = float - - def __repr__(self) -> str: - return "FLOAT" - - -class FloatRange(_NumberRangeBase[float, float], FloatParamType): - """Restrict a :data:`click.FLOAT` value to a range of accepted - values. See :ref:`ranges`. - - If ``min`` or ``max`` are not passed, any value is accepted in that - direction. If ``min_open`` or ``max_open`` are enabled, the - corresponding boundary is not included in the range. - - If ``clamp`` is enabled, a value outside the range is clamped to the - boundary instead of failing. This is not supported if either - boundary is marked ``open``. - - .. versionchanged:: 8.0 - Added the ``min_open`` and ``max_open`` parameters. - """ - - name = "float range" - - def __init__( - self, - min: float | None = None, - max: float | None = None, - min_open: bool = False, - max_open: bool = False, - clamp: bool = False, - ) -> None: - super().__init__( - min=min, max=max, min_open=min_open, max_open=max_open, clamp=clamp - ) - - if (min_open or max_open) and clamp: - raise TypeError("Clamping is not supported for open bounds.") - - def _clamp(self, bound: float, dir: t.Literal[1, -1], open: bool) -> float: - if not open: - return bound - - # Could use math.nextafter here, but clamping an - # open float range doesn't seem to be particularly useful. It's - # left up to the user to write a callback to do it if needed. - raise RuntimeError("Clamping is not supported for open bounds.") - - -class BoolParamType(ParamType[bool]): - name = "boolean" - - bool_states: dict[str, bool] = { - "1": True, - "0": False, - "yes": True, - "no": False, - "true": True, - "false": False, - "on": True, - "off": False, - "t": True, - "f": False, - "y": True, - "n": False, - # Absence of value is considered False. - "": False, - } - """A mapping of string values to boolean states. - - Mapping is inspired by :py:attr:`configparser.ConfigParser.BOOLEAN_STATES` - and extends it. - - .. caution:: - String values are lower-cased, as the ``str_to_bool`` comparison function - below is case-insensitive. - - .. warning:: - The mapping is not exhaustive, and does not cover all possible boolean strings - representations. It will remains as it is to avoid endless bikeshedding. - - Future work my be considered to make this mapping user-configurable from public - API. - """ - - @staticmethod - def str_to_bool(value: str | bool) -> bool | None: - """Convert a string to a boolean value. - - If the value is already a boolean, it is returned as-is. If the value is a - string, it is stripped of whitespaces and lower-cased, then checked against - the known boolean states pre-defined in the `BoolParamType.bool_states` mapping - above. - - Returns `None` if the value does not match any known boolean state. - """ - if isinstance(value, bool): - return value - return BoolParamType.bool_states.get(value.strip().lower()) - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> bool: - normalized = self.str_to_bool(value) - if normalized is None: - self.fail( - _( - "{value!r} is not a valid boolean. Recognized values: {states}" - ).format(value=value, states=", ".join(sorted(self.bool_states))), - param, - ctx, - ) - return normalized - - def __repr__(self) -> str: - return "BOOL" - - -class UUIDParameterType(ParamType[uuid.UUID]): - name = "uuid" - - def convert( - self, value: uuid.UUID | str, param: Parameter | None, ctx: Context | None - ) -> uuid.UUID: - if isinstance(value, uuid.UUID): - return value - - value = value.strip() - - try: - return uuid.UUID(value) - except ValueError: - self.fail( - _("{value!r} is not a valid UUID.").format(value=value), param, ctx - ) - - def __repr__(self) -> str: - return "UUID" - - -class FileInfoDict(ParamTypeInfoDict): - mode: str - encoding: str | None - - -class File(ParamType[t.IO[t.Any]]): - """Declares a parameter to be a file for reading or writing. The file - is automatically closed once the context tears down (after the command - finished working). - - Files can be opened for reading or writing. The special value ``-`` - indicates stdin or stdout depending on the mode. - - By default, the file is opened for reading text data, but it can also be - opened in binary mode or for writing. The encoding parameter can be used - to force a specific encoding. - - The `lazy` flag controls if the file should be opened immediately or upon - first IO. The default is to be non-lazy for standard input and output - streams as well as files opened for reading, `lazy` otherwise. When opening a - file lazily for reading, it is still opened temporarily for validation, but - will not be held open until first IO. lazy is mainly useful when opening - for writing to avoid creating the file until it is needed. - - Files can also be opened atomically in which case all writes go into a - separate file in the same folder and upon completion the file will - be moved over to the original location. This is useful if a file - regularly read by other users is modified. - - See :ref:`file-args` for more information. - - .. versionchanged:: 2.0 - Added the ``atomic`` parameter. - """ - - name = "filename" - envvar_list_splitter: t.ClassVar[str] = os.path.pathsep - - mode: str - encoding: str | None - errors: str | None - lazy: bool | None - atomic: bool - - def __init__( - self, - mode: str = "r", - encoding: str | None = None, - errors: str | None = "strict", - lazy: bool | None = None, - atomic: bool = False, - ) -> None: - self.mode = mode - self.encoding = encoding - self.errors = errors - self.lazy = lazy - self.atomic = atomic - - def to_info_dict(self) -> FileInfoDict: - return { - "mode": self.mode, - "encoding": self.encoding, - **super().to_info_dict(), - } - - def resolve_lazy_flag(self, value: str | os.PathLike[str]) -> bool: - if self.lazy is not None: - return self.lazy - if os.fspath(value) == "-": - return False - elif "w" in self.mode: - return True - return False - - def convert( - self, - value: str | os.PathLike[str] | t.IO[t.Any], - param: Parameter | None, - ctx: Context | None, - ) -> t.IO[t.Any]: - if _is_file_like(value): - return value - - try: - lazy = self.resolve_lazy_flag(value) - - if lazy: - lf = LazyFile( - value, self.mode, self.encoding, self.errors, atomic=self.atomic - ) - - if ctx is not None: - ctx.call_on_close(lf.close_intelligently) - - return t.cast("t.IO[t.Any]", lf) - - f, should_close = open_stream( - value, self.mode, self.encoding, self.errors, atomic=self.atomic - ) - - # If a context is provided, we automatically close the file - # at the end of the context execution (or flush out). If a - # context does not exist, it's the caller's responsibility to - # properly close the file. This for instance happens when the - # type is used with prompts. - if ctx is not None: - if should_close: - ctx.call_on_close(safecall(f.close)) - else: - ctx.call_on_close(safecall(f.flush)) - - return f - except OSError as e: - self.fail( - f"'{format_filename(value)}': {e.strerror}", - param, - ctx, - ) - - def shell_complete( - self, ctx: Context, param: Parameter, incomplete: str - ) -> list[CompletionItem]: - """Return a special completion marker that tells the completion - system to use the shell to provide file path completions. - - :param ctx: Invocation context for this command. - :param param: The parameter that is requesting completion. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - from click.shell_completion import CompletionItem - - return [CompletionItem(incomplete, type="file")] - - -def _is_file_like(value: t.Any) -> te.TypeIs[t.IO[t.Any]]: - return hasattr(value, "read") or hasattr(value, "write") - - -class PathInfoDict(ParamTypeInfoDict): - exists: bool - file_okay: bool - dir_okay: bool - writable: bool - readable: bool - allow_dash: bool - - -class Path(ParamType[str | bytes | os.PathLike[str]]): - """The ``Path`` type is similar to the :class:`File` type, but - returns the filename instead of an open file. Various checks can be - enabled to validate the type of file and permissions. - - :param exists: The file or directory needs to exist for the value to - be valid. If this is not set to ``True``, and the file does not - exist, then all further checks are silently skipped. - :param file_okay: Allow a file as a value. - :param dir_okay: Allow a directory as a value. - :param readable: if true, a readable check is performed. - :param writable: if true, a writable check is performed. - :param executable: if true, an executable check is performed. - :param resolve_path: Make the value absolute and resolve any - symlinks. A ``~`` is not expanded, as this is supposed to be - done by the shell only. - :param allow_dash: Allow a single dash as a value, which indicates - a standard stream (but does not open it). Use - :func:`~click.open_file` to handle opening this value. - :param path_type: Convert the incoming path value to this type. If - ``None``, keep Python's default, which is ``str``. Useful to - convert to :class:`pathlib.Path`. - - .. versionchanged:: 8.1 - Added the ``executable`` parameter. - - .. versionchanged:: 8.0 - Allow passing ``path_type=pathlib.Path``. - - .. versionchanged:: 6.0 - Added the ``allow_dash`` parameter. - """ - - envvar_list_splitter: t.ClassVar[str] = os.path.pathsep - - exists: bool - file_okay: bool - dir_okay: bool - readable: bool - writable: bool - executable: bool - resolve_path: bool - allow_dash: bool - name: str - - def __init__( - self, - exists: bool = False, - file_okay: bool = True, - dir_okay: bool = True, - writable: bool = False, - readable: bool = True, - resolve_path: bool = False, - allow_dash: bool = False, - path_type: type | None = None, - executable: bool = False, - ) -> None: - self.exists = exists - self.file_okay = file_okay - self.dir_okay = dir_okay - self.readable = readable - self.writable = writable - self.executable = executable - self.resolve_path = resolve_path - self.allow_dash = allow_dash - self.type: type | None = path_type - - if self.file_okay and not self.dir_okay: - self.name = _("file") - elif self.dir_okay and not self.file_okay: - self.name = _("directory") - else: - self.name = _("path") - - def to_info_dict(self) -> PathInfoDict: - return { - "exists": self.exists, - "file_okay": self.file_okay, - "dir_okay": self.dir_okay, - "writable": self.writable, - "readable": self.readable, - "allow_dash": self.allow_dash, - **super().to_info_dict(), - } - - def coerce_path_result( - self, value: str | os.PathLike[str] - ) -> str | bytes | os.PathLike[str]: - if self.type is not None and not isinstance(value, self.type): - if self.type is str: - return os.fsdecode(value) - elif self.type is bytes: - return os.fsencode(value) - else: - return t.cast("os.PathLike[str]", self.type(value)) - - return value - - def convert( - self, - value: str | os.PathLike[str], - param: Parameter | None, - ctx: Context | None, - ) -> str | bytes | os.PathLike[str]: - rv = value - - is_dash = self.file_okay and self.allow_dash and rv in (b"-", "-") - - if not is_dash: - if self.resolve_path: - rv = os.path.realpath(rv) - - try: - st = os.stat(rv) - except OSError: - if not self.exists: - return self.coerce_path_result(rv) - self.fail( - _("{name} {filename!r} does not exist.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - - if not self.file_okay and stat.S_ISREG(st.st_mode): - self.fail( - _("{name} {filename!r} is a file.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - if not self.dir_okay and stat.S_ISDIR(st.st_mode): - self.fail( - _("{name} {filename!r} is a directory.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - - if self.readable and not os.access(rv, os.R_OK): - self.fail( - _("{name} {filename!r} is not readable.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - - if self.writable and not os.access(rv, os.W_OK): - self.fail( - _("{name} {filename!r} is not writable.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - - if self.executable and not os.access(value, os.X_OK): - self.fail( - _("{name} {filename!r} is not executable.").format( - name=self.name.title(), filename=format_filename(value) - ), - param, - ctx, - ) - - return self.coerce_path_result(rv) - - def shell_complete( - self, ctx: Context, param: Parameter, incomplete: str - ) -> list[CompletionItem]: - """Return a special completion marker that tells the completion - system to use the shell to provide path completions for only - directories or any paths. - - :param ctx: Invocation context for this command. - :param param: The parameter that is requesting completion. - :param incomplete: Value being completed. May be empty. - - .. versionadded:: 8.0 - """ - from click.shell_completion import CompletionItem - - type = "dir" if self.dir_okay and not self.file_okay else "file" - return [CompletionItem(incomplete, type=type)] - - -class TupleInfoDict(ParamTypeInfoDict): - types: cabc.Sequence[ParamTypeInfoDict] - - -class Tuple(CompositeParamType[tuple[t.Any, ...]]): - """The default behavior of Click is to apply a type on a value directly. - This works well in most cases, except for when `nargs` is set to a fixed - count and different types should be used for different items. In this - case the :class:`Tuple` type can be used. This type can only be used - if `nargs` is set to a fixed number. - - For more information see :ref:`tuple-type`. - - This can be selected by using a Python tuple literal as a type. - - :param types: a list of types that should be used for the tuple items. - """ - - def __init__(self, types: cabc.Sequence[type[t.Any] | ParamType[t.Any]]) -> None: - self.types: cabc.Sequence[ParamType[t.Any]] = [convert_type(ty) for ty in types] - - def to_info_dict(self) -> TupleInfoDict: - return { - "types": [ty.to_info_dict() for ty in self.types], - **super().to_info_dict(), - } - - @property - def name(self) -> str: # type: ignore[override] - return f"<{' '.join(ty.name for ty in self.types)}>" - - @property - def arity(self) -> int: # type: ignore[override] - return len(self.types) - - def convert( - self, value: t.Any, param: Parameter | None, ctx: Context | None - ) -> tuple[t.Any, ...]: - len_type = len(self.types) - len_value = len(value) - - if len_value != len_type: - self.fail( - ngettext( - "{len_type} values are required, but {len_value} was given.", - "{len_type} values are required, but {len_value} were given.", - len_value, - ).format(len_type=len_type, len_value=len_value), - param=param, - ctx=ctx, - ) - - return tuple( - ty(x, param, ctx) for ty, x in zip(self.types, value, strict=False) - ) - - -def _guess_type( - ty: type[t.Any] | ParamType[t.Any] | None, - default: t.Any | None, -) -> type[t.Any] | tuple[type[t.Any], ...] | ParamType[t.Any] | None: - """Infer a type from *ty* or *default*. - - Returns *ty* unchanged when it is not ``None``. Otherwise inspects - *default* to produce a ``type``, a ``tuple`` of types (for tuple - defaults), or ``None``. - """ - if ty is not None: - return ty - - if default is None: - return None - - if not isinstance(default, (tuple, list)): - return type(default) - - # If the default is empty, return None so convert_type falls - # through to STRING. - if not default: - return None - - item = default[0] - - # A sequence of iterables needs to detect the inner types. - # Can't call convert_type recursively because that would - # incorrectly unwind the tuple to a single type. - if isinstance(item, (tuple, list)): - return tuple(map(type, item)) - - return type(item) - - -@t.overload -def convert_type(ty: None, default: None = None) -> StringParamType: ... -@t.overload -def convert_type( - ty: type | ParamType[t.Any], default: t.Any | None = None -) -> ParamType[t.Any]: ... -@t.overload -def convert_type( - ty: t.Any | None, default: t.Any | None = None -) -> ParamType[t.Any]: ... -def convert_type( - ty: t.Any | None = None, default: t.Any | None = None -) -> ParamType[t.Any]: - """Find the most appropriate :class:`ParamType` for the given Python - type. If the type isn't provided, it can be inferred from a default - value. - """ - guessed = _guess_type(ty, default) - is_guessed = guessed is not ty - - if isinstance(guessed, tuple): - return Tuple(guessed) - - if isinstance(guessed, ParamType): - return guessed - - if guessed is str or guessed is None: - return STRING - - if guessed is int: - return INT - - if guessed is float: - return FLOAT - - if guessed is bool: - return BOOL - - if is_guessed: - return STRING - - if __debug__: - try: - if issubclass(guessed, ParamType): - raise AssertionError( - f"Attempted to use an uninstantiated parameter type ({guessed})." - ) - except TypeError: - # guessed is an instance (correct), so issubclass fails. - pass - - return FuncParamType(guessed) - - -#: A dummy parameter type that just does nothing. From a user's -#: perspective this appears to just be the same as `STRING` but -#: internally no string conversion takes place if the input was bytes. -#: This is usually useful when working with file paths as they can -#: appear in bytes and unicode. -#: -#: For path related uses the :class:`Path` type is a better choice but -#: there are situations where an unprocessed type is useful which is why -#: it is provided. -#: -#: .. versionadded:: 4.0 -UNPROCESSED: t.Final[UnprocessedParamType] = UnprocessedParamType() - -#: A unicode string parameter type which is the implicit default. This -#: can also be selected by using ``str`` as type. -STRING: t.Final[StringParamType] = StringParamType() - -#: An integer parameter. This can also be selected by using ``int`` as -#: type. -INT: t.Final[IntParamType] = IntParamType() - -#: A floating point value parameter. This can also be selected by using -#: ``float`` as type. -FLOAT: t.Final[FloatParamType] = FloatParamType() - -#: A boolean parameter. This is the default for boolean flags. This can -#: also be selected by using ``bool`` as a type. -BOOL: t.Final[BoolParamType] = BoolParamType() - -#: A UUID parameter. -UUID: t.Final[UUIDParameterType] = UUIDParameterType() - - -class OptionHelpExtra(t.TypedDict, total=False): - envvars: tuple[str, ...] - default: str - range: str - required: str diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/click/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/click/utils.py deleted file mode 100644 index c0cb22d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/click/utils.py +++ /dev/null @@ -1,653 +0,0 @@ -from __future__ import annotations - -import collections.abc as cabc -import os -import re -import sys -import typing as t -from functools import update_wrapper -from gettext import gettext as _ -from types import ModuleType -from types import TracebackType - -from ._compat import _default_text_stderr -from ._compat import _default_text_stdout -from ._compat import _find_binary_writer -from ._compat import auto_wrap_for_ansi -from ._compat import binary_streams -from ._compat import open_stream -from ._compat import should_strip_ansi -from ._compat import strip_ansi -from ._compat import text_streams -from ._compat import WIN -from .globals import resolve_color_default - -if t.TYPE_CHECKING: - import typing_extensions as te - - P = te.ParamSpec("P") - -R = t.TypeVar("R") - - -def _posixify(name: str) -> str: - return "-".join(name.split()).lower() - - -def safecall(func: t.Callable[P, R]) -> t.Callable[P, R | None]: - """Wraps a function so that it swallows exceptions.""" - - def wrapper(*args: P.args, **kwargs: P.kwargs) -> R | None: - try: - return func(*args, **kwargs) - except Exception: - pass - return None - - return update_wrapper(wrapper, func) - - -def make_str(value: t.Any) -> str: - """Converts a value into a valid string.""" - if isinstance(value, bytes): - try: - return value.decode(sys.getfilesystemencoding()) - except UnicodeError: - return value.decode("utf-8", "replace") - return str(value) - - -def make_default_short_help(help: str, max_length: int = 45) -> str: - """Returns a condensed version of help string. - - :meta private: - """ - # Consider only the first paragraph. - paragraph_end = help.find("\n\n") - - if paragraph_end != -1: - help = help[:paragraph_end] - - # Collapse newlines, tabs, and spaces. - words = help.split() - - if not words: - return "" - - # The first paragraph started with a "no rewrap" marker, ignore it. - if words[0] == "\b": - words = words[1:] - - total_length = 0 - last_index = len(words) - 1 - - for i, word in enumerate(words): - total_length += len(word) + (i > 0) - - if total_length > max_length: # too long, truncate - break - - if word[-1] == ".": # sentence end, truncate without "..." - return " ".join(words[: i + 1]) - - if total_length == max_length and i != last_index: - break # not at sentence end, truncate with "..." - else: - return " ".join(words) # no truncation needed - - # Account for the length of the suffix. - total_length += len("...") - - # remove words until the length is short enough - while i > 0: - total_length -= len(words[i]) + (i > 0) - - if total_length <= max_length: - break - - i -= 1 - - return " ".join(words[:i]) + "..." - - -class LazyFile: - """A lazy file works like a regular file but it does not fully open - the file but it does perform some basic checks early to see if the - filename parameter does make sense. This is useful for safely opening - files for writing. - """ - - name: str - mode: str - encoding: str | None - errors: str | None - atomic: bool - _f: t.IO[t.Any] | None - should_close: bool - - def __init__( - self, - filename: str | os.PathLike[str], - mode: str = "r", - encoding: str | None = None, - errors: str | None = "strict", - atomic: bool = False, - ) -> None: - self.name = os.fspath(filename) - self.mode = mode - self.encoding = encoding - self.errors = errors - self.atomic = atomic - - if self.name == "-": - self._f, self.should_close = open_stream(filename, mode, encoding, errors) - else: - if "r" in mode: - # Open and close the file in case we're opening it for - # reading so that we can catch at least some errors in - # some cases early. - open(filename, mode).close() - self._f = None - self.should_close = True - - def __getattr__(self, name: str) -> t.Any: - return getattr(self.open(), name) - - def __repr__(self) -> str: - if self._f is not None: - return repr(self._f) - return f"" - - def open(self) -> t.IO[t.Any]: - """Opens the file if it's not yet open. This call might fail with - a :exc:`FileError`. Not handling this error will produce an error - that Click shows. - """ - if self._f is not None: - return self._f - try: - rv, self.should_close = open_stream( - self.name, self.mode, self.encoding, self.errors, atomic=self.atomic - ) - except OSError as e: - from .exceptions import FileError - - raise FileError(self.name, hint=e.strerror) from e - self._f = rv - return rv - - def close(self) -> None: - """Closes the underlying file, no matter what.""" - if self._f is not None: - self._f.close() - - def close_intelligently(self) -> None: - """This function only closes the file if it was opened by the lazy - file wrapper. For instance this will never close stdin. - """ - if self.should_close: - self.close() - - def __enter__(self) -> LazyFile: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> None: - self.close_intelligently() - - def __iter__(self) -> cabc.Iterator[t.AnyStr]: - self.open() - return iter(self._f) # type: ignore - - -class KeepOpenFile: - """Proxy a file object but keep it open across a ``with`` block. - - Wraps a borrowed file (such as ``sys.stdin`` or ``sys.stdout``) so that - leaving a ``with`` block does not close it, as used by :func:`open_file` - for the ``-`` filename. The caller stays responsible for the file: an - explicit :meth:`close` still passes through to the wrapped object. - - Dunder methods are proxied explicitly: implicit special-method lookups - bypass :meth:`__getattr__`, because Python resolves them on the type rather - than the instance. - """ - - _file: t.IO[t.Any] - - def __init__(self, file: t.IO[t.Any]) -> None: - self._file = file - - def __getattr__(self, name: str) -> t.Any: - return getattr(self._file, name) - - def __enter__(self) -> KeepOpenFile: - return self - - def __exit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - tb: TracebackType | None, - ) -> None: - pass - - def __repr__(self) -> str: - return repr(self._file) - - def __iter__(self) -> cabc.Iterator[t.AnyStr]: - return iter(self._file) - - -def echo( - message: object = None, - file: t.IO[t.Any] | None = None, - nl: bool = True, - err: bool = False, - color: bool | None = None, -) -> None: - """Print a message and newline to stdout or a file. This should be - used instead of :func:`print` because it provides better support - for different data, files, and environments. - - Compared to :func:`print`, this does the following: - - - Ensures that the output encoding is not misconfigured on Linux. - - Supports Unicode in the Windows console. - - Supports writing to binary outputs, and supports writing bytes - to text outputs. - - Supports colors and styles on Windows. - - Removes ANSI color and style codes if the output does not look - like an interactive terminal. - - Always flushes the output. - - :param message: The string or bytes to output. Other objects are - converted to strings. - :param file: The file to write to. Defaults to ``stdout``. - :param err: Write to ``stderr`` instead of ``stdout``. - :param nl: Print a newline after the message. Enabled by default. - :param color: Force showing or hiding colors and other styles. By - default Click will remove color if the output does not look like - an interactive terminal. - - .. versionchanged:: 6.0 - Support Unicode output on the Windows console. Click does not - modify ``sys.stdout``, so ``sys.stdout.write()`` and ``print()`` - will still not support Unicode. - - .. versionchanged:: 4.0 - Added the ``color`` parameter. - - .. versionadded:: 3.0 - Added the ``err`` parameter. - - .. versionchanged:: 2.0 - Support colors on Windows if colorama is installed. - """ - if file is None: - if err: - file = _default_text_stderr() - else: - file = _default_text_stdout() - - # There are no standard streams attached to write to. For example, - # pythonw on Windows. - if file is None: - return - - match message: - case str() | bytes() | bytearray(): - out = message - case None: - out = "" - case _: - out = str(message) - - if nl: - if isinstance(out, str): - out += "\n" - else: - out += b"\n" - - if not out: - file.flush() - return - - # If there is a message and the value looks like bytes, we manually - # need to find the binary stream and write the message in there. - # This is done separately so that most stream types will work as you - # would expect. Eg: you can write to StringIO for other cases. - if isinstance(out, (bytes, bytearray)): - binary_file = _find_binary_writer(file) - if binary_file is not None: - file.flush() - binary_file.write(out) - binary_file.flush() - return - - # ANSI style code support. For no message or bytes, nothing happens. - # When outputting to a file instead of a terminal, strip codes. - else: - color = resolve_color_default(color) - - if should_strip_ansi(file, color): - out = strip_ansi(out) - elif WIN: - if auto_wrap_for_ansi is not None: - file = auto_wrap_for_ansi(file, color) # type: ignore - elif not color: - out = strip_ansi(out) - - file.write(out) # type: ignore - file.flush() - - -def get_binary_stream(name: t.Literal["stdin", "stdout", "stderr"]) -> t.BinaryIO: - """Returns a system stream for byte processing. - - :param name: the name of the stream to open. Valid names are ``'stdin'``, - ``'stdout'`` and ``'stderr'`` - """ - opener = binary_streams.get(name) - if opener is None: - raise TypeError(_("Unknown standard stream '{name}'").format(name=name)) - return opener() - - -def get_text_stream( - name: t.Literal["stdin", "stdout", "stderr"], - encoding: str | None = None, - errors: str | None = "strict", -) -> t.TextIO: - """Returns a system stream for text processing. This usually returns - a wrapped stream around a binary stream returned from - :func:`get_binary_stream` but it also can take shortcuts for already - correctly configured streams. - - :param name: the name of the stream to open. Valid names are ``'stdin'``, - ``'stdout'`` and ``'stderr'`` - :param encoding: overrides the detected default encoding. - :param errors: overrides the default error mode. - """ - opener = text_streams.get(name) - if opener is None: - raise TypeError(_("Unknown standard stream '{name}'").format(name=name)) - return opener(encoding, errors) - - -def open_file( - filename: str | os.PathLike[str], - mode: str = "r", - encoding: str | None = None, - errors: str | None = "strict", - lazy: bool = False, - atomic: bool = False, -) -> t.IO[t.Any]: - """Open a file, with extra behavior to handle ``'-'`` to indicate - a standard stream, lazy open on write, and atomic write. Similar to - the behavior of the :class:`~click.File` param type. - - If ``'-'`` is given to open ``stdout`` or ``stdin``, the stream is - wrapped so that using it in a context manager will not close it. - This makes it possible to use the function without accidentally - closing a standard stream: - - .. code-block:: python - - with open_file(filename) as f: - ... - - :param filename: The name or Path of the file to open, or ``'-'`` for - ``stdin``/``stdout``. - :param mode: The mode in which to open the file. - :param encoding: The encoding to decode or encode a file opened in - text mode. - :param errors: The error handling mode. - :param lazy: Wait to open the file until it is accessed. For read - mode, the file is temporarily opened to raise access errors - early, then closed until it is read again. - :param atomic: Write to a temporary file and replace the given file - on close. - - .. versionadded:: 3.0 - """ - if lazy: - return t.cast( - "t.IO[t.Any]", LazyFile(filename, mode, encoding, errors, atomic=atomic) - ) - - f, should_close = open_stream(filename, mode, encoding, errors, atomic=atomic) - - if not should_close: - f = t.cast("t.IO[t.Any]", KeepOpenFile(f)) - - return f - - -def format_filename( - filename: str | bytes | os.PathLike[str] | os.PathLike[bytes], - shorten: bool = False, -) -> str: - """Format a filename as a string for display. Ensures the filename can be - displayed by replacing any invalid bytes or surrogate escapes in the name - with the replacement character ``�``. - - Invalid bytes or surrogate escapes will raise an error when written to a - stream with ``errors="strict"``. This will typically happen with ``stdout`` - when the locale is something like ``en_GB.UTF-8``. - - Many scenarios *are* safe to write surrogates though, due to PEP 538 and - PEP 540, including: - - - Writing to ``stderr``, which uses ``errors="backslashreplace"``. - - The system has ``LANG=C.UTF-8``, ``C``, or ``POSIX``. Python opens - stdout and stderr with ``errors="surrogateescape"``. - - None of ``LANG/LC_*`` are set. Python assumes ``LANG=C.UTF-8``. - - Python is started in UTF-8 mode with ``PYTHONUTF8=1`` or ``-X utf8``. - Python opens stdout and stderr with ``errors="surrogateescape"``. - - :param filename: formats a filename for UI display. This will also convert - the filename into unicode without failing. - :param shorten: this optionally shortens the filename to strip of the - path that leads up to it. - """ - if shorten: - filename = os.path.basename(filename) - else: - filename = os.fspath(filename) - - if isinstance(filename, bytes): - filename = filename.decode(sys.getfilesystemencoding(), "replace") - else: - filename = filename.encode("utf-8", "surrogateescape").decode( - "utf-8", "replace" - ) - - return filename - - -def get_app_dir(app_name: str, roaming: bool = True, force_posix: bool = False) -> str: - r"""Returns the config folder for the application. The default behavior - is to return whatever is most appropriate for the operating system. - - To give you an idea, for an app called ``"Foo Bar"``, something like - the following folders could be returned: - - Mac OS X: - ``~/Library/Application Support/Foo Bar`` - Mac OS X (POSIX): - ``~/.foo-bar`` - Unix: - ``~/.config/foo-bar`` - Unix (POSIX): - ``~/.foo-bar`` - Windows (roaming): - ``C:\Users\\AppData\Roaming\Foo Bar`` - Windows (not roaming): - ``C:\Users\\AppData\Local\Foo Bar`` - - .. versionadded:: 2.0 - - :param app_name: the application name. This should be properly capitalized - and can contain whitespace. - :param roaming: controls if the folder should be roaming or not on Windows. - Has no effect otherwise. - :param force_posix: if this is set to `True` then on any POSIX system the - folder will be stored in the home folder with a leading - dot instead of the XDG config home or darwin's - application support folder. - """ - if WIN: - key = "APPDATA" if roaming else "LOCALAPPDATA" - folder = os.environ.get(key) - if folder is None: - folder = os.path.expanduser("~") - return os.path.join(folder, app_name) - if force_posix: - return os.path.join(os.path.expanduser(f"~/.{_posixify(app_name)}")) - if sys.platform == "darwin": - return os.path.join( - os.path.expanduser("~/Library/Application Support"), app_name - ) - return os.path.join( - os.environ.get("XDG_CONFIG_HOME", os.path.expanduser("~/.config")), - _posixify(app_name), - ) - - -class PacifyFlushWrapper: - """This wrapper is used to catch and suppress BrokenPipeErrors resulting - from ``.flush()`` being called on broken pipe during the shutdown/final-GC - of the Python interpreter. Notably ``.flush()`` is always called on - ``sys.stdout`` and ``sys.stderr``. So as to have minimal impact on any - other cleanup code, and the case where the underlying file is not a broken - pipe, all calls and attributes are proxied. - """ - - wrapped: t.IO[t.Any] - - def __init__(self, wrapped: t.IO[t.Any]) -> None: - self.wrapped = wrapped - - def flush(self) -> None: - try: - self.wrapped.flush() - except OSError as e: - import errno - - if e.errno != errno.EPIPE: - raise - - def __getattr__(self, attr: str) -> t.Any: - return getattr(self.wrapped, attr) - - -def _detect_program_name( - path: str | None = None, _main: ModuleType | None = None -) -> str: - """Determine the command used to run the program, for use in help - text. If a file or entry point was executed, the file name is - returned. If ``python -m`` was used to execute a module or package, - ``python -m name`` is returned. - - This doesn't try to be too precise, the goal is to give a concise - name for help text. Files are only shown as their name without the - path. ``python`` is only shown for modules, and the full path to - ``sys.executable`` is not shown. - - :param path: The Python file being executed. Python puts this in - ``sys.argv[0]``, which is used by default. - :param _main: The ``__main__`` module. This should only be passed - during internal testing. - - .. versionadded:: 8.0 - Based on command args detection in the Werkzeug reloader. - - :meta private: - """ - if _main is None: - _main = sys.modules["__main__"] - - if not path: - path = sys.argv[0] - - # The value of __package__ indicates how Python was called. It may - # not exist if a setuptools script is installed as an egg. It may be - # set incorrectly for entry points created with pip on Windows. - # It is set to "" inside a Shiv or PEX zipapp. - if getattr(_main, "__package__", None) in {None, ""} or ( - os.name == "nt" - and _main.__package__ == "" - and not os.path.exists(path) - and os.path.exists(f"{path}.exe") - ): - # Executed a file, like "python app.py". - return os.path.basename(path) - - # Executed a module, like "python -m example". - # Rewritten by Python from "-m script" to "/path/to/script.py". - # Need to look at main module to determine how it was executed. - py_module = t.cast(str, _main.__package__) - name = os.path.splitext(os.path.basename(path))[0] - - # A submodule like "example.cli". - if name != "__main__": - py_module = f"{py_module}.{name}" - - return f"python -m {py_module.lstrip('.')}" - - -def _expand_args( - args: cabc.Iterable[str], - *, - user: bool = True, - env: bool = True, - glob_recursive: bool = True, -) -> list[str]: - """Simulate Unix shell expansion with Python functions. - - See :func:`glob.glob`, :func:`os.path.expanduser`, and - :func:`os.path.expandvars`. - - This is intended for use on Windows, where the shell does not do any - expansion. It may not exactly match what a Unix shell would do. - - :param args: List of command line arguments to expand. - :param user: Expand user home directory. - :param env: Expand environment variables. - :param glob_recursive: ``**`` matches directories recursively. - - .. versionchanged:: 8.1 - Invalid glob patterns are treated as empty expansions rather - than raising an error. - - .. versionadded:: 8.0 - - :meta private: - """ - from glob import glob - - out = [] - - for arg in args: - if user: - arg = os.path.expanduser(arg) - - if env: - arg = os.path.expandvars(arg) - - try: - matches = glob(arg, recursive=glob_recursive) - except re.error: - matches = [] - - if not matches: - out.append(arg) - else: - out.extend(matches) - - return out diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/distutils-precedence.pth b/server/server-browser-api/venv/lib/python3.11/site-packages/distutils-precedence.pth deleted file mode 100644 index 7f009fe..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/distutils-precedence.pth +++ /dev/null @@ -1 +0,0 @@ -import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__init__.py deleted file mode 100644 index dde24a0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__init__.py +++ /dev/null @@ -1,51 +0,0 @@ -from typing import Any, Optional - -from .main import dotenv_values, find_dotenv, get_key, load_dotenv, set_key, unset_key - - -def load_ipython_extension(ipython: Any) -> None: - from .ipython import load_ipython_extension - - load_ipython_extension(ipython) - - -def get_cli_string( - path: Optional[str] = None, - action: Optional[str] = None, - key: Optional[str] = None, - value: Optional[str] = None, - quote: Optional[str] = None, -): - """Returns a string suitable for running as a shell script. - - Useful for converting a arguments passed to a fabric task - to be passed to a `local` or `run` command. - """ - command = ["dotenv"] - if quote: - command.append(f"-q {quote}") - if path: - command.append(f"-f {path}") - if action: - command.append(action) - if key: - command.append(key) - if value: - if " " in value: - command.append(f'"{value}"') - else: - command.append(value) - - return " ".join(command).strip() - - -__all__ = [ - "get_cli_string", - "load_dotenv", - "dotenv_values", - "get_key", - "set_key", - "unset_key", - "find_dotenv", - "load_ipython_extension", -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__main__.py deleted file mode 100644 index 3977f55..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__main__.py +++ /dev/null @@ -1,6 +0,0 @@ -"""Entry point for cli, enables execution with `python -m dotenv`""" - -from .cli import cli - -if __name__ == "__main__": - cli() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c7e2312..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index 4cb592d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/cli.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/cli.cpython-311.pyc deleted file mode 100644 index 4fa048f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/cli.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/ipython.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/ipython.cpython-311.pyc deleted file mode 100644 index 689f449..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/ipython.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/main.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/main.cpython-311.pyc deleted file mode 100644 index e279617..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/parser.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/parser.cpython-311.pyc deleted file mode 100644 index 3fb7f68..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/parser.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/variables.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/variables.cpython-311.pyc deleted file mode 100644 index 4dfc36d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/variables.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/version.cpython-311.pyc deleted file mode 100644 index 1346bbf..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/__pycache__/version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/cli.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/cli.py deleted file mode 100644 index 47eec04..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/cli.py +++ /dev/null @@ -1,236 +0,0 @@ -import json -import os -import shlex -import sys -from contextlib import contextmanager -from typing import IO, Any, Dict, Iterator, List, Optional - -if sys.platform == "win32": - from subprocess import Popen - -try: - import click -except ImportError: - sys.stderr.write( - "It seems python-dotenv is not installed with cli option. \n" - 'Run pip install "python-dotenv[cli]" to fix this.' - ) - sys.exit(1) - -from .main import dotenv_values, set_key, unset_key -from .version import __version__ - - -def enumerate_env() -> Optional[str]: - """ - Return a path for the ${pwd}/.env file. - - If pwd does not exist, return None. - """ - try: - cwd = os.getcwd() - except FileNotFoundError: - return None - path = os.path.join(cwd, ".env") - return path - - -@click.group() -@click.option( - "-f", - "--file", - default=enumerate_env(), - type=click.Path(file_okay=True), - help="Location of the .env file, defaults to .env file in current working directory.", -) -@click.option( - "-q", - "--quote", - default="always", - type=click.Choice(["always", "never", "auto"]), - help="Whether to quote or not the variable values. Default mode is always. This does not affect parsing.", -) -@click.option( - "-e", - "--export", - default=False, - type=click.BOOL, - help="Whether to write the dot file as an executable bash script.", -) -@click.version_option(version=__version__) -@click.pass_context -def cli(ctx: click.Context, file: Any, quote: Any, export: Any) -> None: - """This script is used to set, get or unset values from a .env file.""" - ctx.obj = {"QUOTE": quote, "EXPORT": export, "FILE": file} - - -@contextmanager -def stream_file(path: os.PathLike) -> Iterator[IO[str]]: - """ - Open a file and yield the corresponding (decoded) stream. - - Exits with error code 2 if the file cannot be opened. - """ - - try: - with open(path) as stream: - yield stream - except OSError as exc: - print(f"Error opening env file: {exc}", file=sys.stderr) - sys.exit(2) - - -@cli.command(name="list") -@click.pass_context -@click.option( - "--format", - "output_format", - default="simple", - type=click.Choice(["simple", "json", "shell", "export"]), - help="The format in which to display the list. Default format is simple, " - "which displays name=value without quotes.", -) -def list_values(ctx: click.Context, output_format: str) -> None: - """Display all the stored key/value.""" - file = ctx.obj["FILE"] - - with stream_file(file) as stream: - values = dotenv_values(stream=stream) - - if output_format == "json": - click.echo(json.dumps(values, indent=2, sort_keys=True)) - else: - prefix = "export " if output_format == "export" else "" - for k in sorted(values): - v = values[k] - if v is not None: - if output_format in ("export", "shell"): - v = shlex.quote(v) - click.echo(f"{prefix}{k}={v}") - - -@cli.command(name="set") -@click.pass_context -@click.argument("key", required=True) -@click.argument("value", required=True) -def set_value(ctx: click.Context, key: Any, value: Any) -> None: - """ - Store the given key/value. - - This doesn't follow symlinks, to avoid accidentally modifying a file at a - potentially untrusted path. - """ - - file = ctx.obj["FILE"] - quote = ctx.obj["QUOTE"] - export = ctx.obj["EXPORT"] - success, key, value = set_key(file, key, value, quote, export) - if success: - click.echo(f"{key}={value}") - else: - sys.exit(1) - - -@cli.command() -@click.pass_context -@click.argument("key", required=True) -def get(ctx: click.Context, key: Any) -> None: - """Retrieve the value for the given key.""" - file = ctx.obj["FILE"] - - with stream_file(file) as stream: - values = dotenv_values(stream=stream) - - stored_value = values.get(key) - if stored_value: - click.echo(stored_value) - else: - sys.exit(1) - - -@cli.command() -@click.pass_context -@click.argument("key", required=True) -def unset(ctx: click.Context, key: Any) -> None: - """ - Removes the given key. - - This doesn't follow symlinks, to avoid accidentally modifying a file at a - potentially untrusted path. - """ - file = ctx.obj["FILE"] - quote = ctx.obj["QUOTE"] - success, key = unset_key(file, key, quote) - if success: - click.echo(f"Successfully removed {key}") - else: - sys.exit(1) - - -@cli.command( - context_settings={ - "allow_extra_args": True, - "allow_interspersed_args": False, - "ignore_unknown_options": True, - } -) -@click.pass_context -@click.option( - "--override/--no-override", - default=True, - help="Override variables from the environment file with those from the .env file.", -) -@click.argument("commandline", nargs=-1, type=click.UNPROCESSED) -def run(ctx: click.Context, override: bool, commandline: tuple[str, ...]) -> None: - """Run command with environment variables present.""" - file = ctx.obj["FILE"] - if not os.path.isfile(file): - raise click.BadParameter( - f"Invalid value for '-f' \"{file}\" does not exist.", ctx=ctx - ) - dotenv_as_dict = { - k: v - for (k, v) in dotenv_values(file).items() - if v is not None and (override or k not in os.environ) - } - - if not commandline: - click.echo("No command given.") - sys.exit(1) - - run_command([*commandline, *ctx.args], dotenv_as_dict) - - -def run_command(command: List[str], env: Dict[str, str]) -> None: - """Replace the current process with the specified command. - - Replaces the current process with the specified command and the variables from `env` - added in the current environment variables. - - Parameters - ---------- - command: List[str] - The command and it's parameters - env: Dict - The additional environment variables - - Returns - ------- - None - This function does not return any value. It replaces the current process with the new one. - - """ - # copy the current environment variables and add the vales from - # `env` - cmd_env = os.environ.copy() - cmd_env.update(env) - - if sys.platform == "win32": - # execvpe on Windows returns control immediately - # rather than once the command has finished. - p = Popen(command, universal_newlines=True, bufsize=0, shell=False, env=cmd_env) - _, _ = p.communicate() - - sys.exit(p.returncode) - else: - os.execvpe(command[0], args=command, env=cmd_env) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/ipython.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/ipython.py deleted file mode 100644 index 4e7edbb..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/ipython.py +++ /dev/null @@ -1,50 +0,0 @@ -from IPython.core.magic import Magics, line_magic, magics_class # type: ignore -from IPython.core.magic_arguments import ( - argument, - magic_arguments, - parse_argstring, -) # type: ignore - -from .main import find_dotenv, load_dotenv - - -@magics_class -class IPythonDotEnv(Magics): - @magic_arguments() - @argument( - "-o", - "--override", - action="store_true", - help="Indicate to override existing variables", - ) - @argument( - "-v", - "--verbose", - action="store_true", - help="Indicate function calls to be verbose", - ) - @argument( - "dotenv_path", - nargs="?", - type=str, - default=".env", - help="Search in increasingly higher folders for the `dotenv_path`", - ) - @line_magic - def dotenv(self, line): - args = parse_argstring(self.dotenv, line) - # Locate the .env file - dotenv_path = args.dotenv_path - try: - dotenv_path = find_dotenv(dotenv_path, True, True) - except IOError: - print("cannot find .env file") - return - - # Load the .env file - load_dotenv(dotenv_path, verbose=args.verbose, override=args.override) - - -def load_ipython_extension(ipython): - """Register the %dotenv magic.""" - ipython.register_magics(IPythonDotEnv) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/main.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/main.py deleted file mode 100644 index 48e5245..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/main.py +++ /dev/null @@ -1,480 +0,0 @@ -import io -import logging -import os -import pathlib -import stat -import sys -import tempfile -from collections import OrderedDict -from contextlib import contextmanager -from typing import IO, Dict, Iterable, Iterator, Mapping, Optional, Tuple, Union - -from .parser import Binding, parse_stream -from .variables import parse_variables - -# A type alias for a string path to be used for the paths in this file. -# These paths may flow to `open()` and `os.replace()`. -StrPath = Union[str, "os.PathLike[str]"] - -logger = logging.getLogger(__name__) - - -def _load_dotenv_disabled() -> bool: - """ - Determine if dotenv loading has been disabled. - """ - if "PYTHON_DOTENV_DISABLED" not in os.environ: - return False - value = os.environ["PYTHON_DOTENV_DISABLED"].casefold() - return value in {"1", "true", "t", "yes", "y"} - - -def with_warn_for_invalid_lines(mappings: Iterator[Binding]) -> Iterator[Binding]: - for mapping in mappings: - if mapping.error: - logger.warning( - "python-dotenv could not parse statement starting at line %s", - mapping.original.line, - ) - yield mapping - - -class DotEnv: - def __init__( - self, - dotenv_path: Optional[StrPath], - stream: Optional[IO[str]] = None, - verbose: bool = False, - encoding: Optional[str] = None, - interpolate: bool = True, - override: bool = True, - ) -> None: - self.dotenv_path: Optional[StrPath] = dotenv_path - self.stream: Optional[IO[str]] = stream - self._dict: Optional[Dict[str, Optional[str]]] = None - self.verbose: bool = verbose - self.encoding: Optional[str] = encoding - self.interpolate: bool = interpolate - self.override: bool = override - - @contextmanager - def _get_stream(self) -> Iterator[IO[str]]: - if self.dotenv_path and _is_file_or_fifo(self.dotenv_path): - with open(self.dotenv_path, encoding=self.encoding) as stream: - yield stream - elif self.stream is not None: - yield self.stream - else: - if self.verbose: - logger.info( - "python-dotenv could not find configuration file %s.", - self.dotenv_path or ".env", - ) - yield io.StringIO("") - - def dict(self) -> Dict[str, Optional[str]]: - """Return dotenv as dict""" - if self._dict: - return self._dict - - raw_values = self.parse() - - if self.interpolate: - self._dict = OrderedDict( - resolve_variables(raw_values, override=self.override) - ) - else: - self._dict = OrderedDict(raw_values) - - return self._dict - - def parse(self) -> Iterator[Tuple[str, Optional[str]]]: - with self._get_stream() as stream: - for mapping in with_warn_for_invalid_lines(parse_stream(stream)): - if mapping.key is not None: - yield mapping.key, mapping.value - - def set_as_environment_variables(self) -> bool: - """ - Load the current dotenv as system environment variable. - """ - if not self.dict(): - return False - - for k, v in self.dict().items(): - if k in os.environ and not self.override: - continue - if v is not None: - os.environ[k] = v - - return True - - def get(self, key: str) -> Optional[str]: - """ """ - data = self.dict() - - if key in data: - return data[key] - - if self.verbose: - logger.warning("Key %s not found in %s.", key, self.dotenv_path) - - return None - - -def get_key( - dotenv_path: StrPath, - key_to_get: str, - encoding: Optional[str] = "utf-8", -) -> Optional[str]: - """ - Get the value of a given key from the given .env. - - Returns `None` if the key isn't found or doesn't have a value. - """ - return DotEnv(dotenv_path, verbose=True, encoding=encoding).get(key_to_get) - - -@contextmanager -def rewrite( - path: StrPath, - encoding: Optional[str], - follow_symlinks: bool = False, -) -> Iterator[Tuple[IO[str], IO[str]]]: - if follow_symlinks: - path = os.path.realpath(path) - - try: - source: IO[str] = open(path, encoding=encoding) - try: - path_stat = os.lstat(path) - original_mode: Optional[int] = ( - stat.S_IMODE(path_stat.st_mode) - if stat.S_ISREG(path_stat.st_mode) - else None - ) - except BaseException: - source.close() - raise - except FileNotFoundError: - source = io.StringIO("") - original_mode = None - - with tempfile.NamedTemporaryFile( - mode="w", - encoding=encoding, - delete=False, - prefix=".tmp_", - dir=os.path.dirname(os.path.abspath(path)), - ) as dest: - dest_path = pathlib.Path(dest.name) - error = None - - try: - with source: - yield (source, dest) - except BaseException as err: - error = err - - if error is None: - try: - if original_mode is not None: - os.chmod(dest_path, original_mode) - - os.replace(dest_path, path) - except BaseException: - dest_path.unlink(missing_ok=True) - raise - else: - dest_path.unlink(missing_ok=True) - raise error from None - - -def set_key( - dotenv_path: StrPath, - key_to_set: str, - value_to_set: str, - quote_mode: str = "always", - export: bool = False, - encoding: Optional[str] = "utf-8", - follow_symlinks: bool = False, -) -> Tuple[Optional[bool], str, str]: - """ - Adds or Updates a key/value to the given .env - - The target .env file is created if it doesn't exist. - - This function doesn't follow symlinks by default, to avoid accidentally - modifying a file at a potentially untrusted path. If you don't need this - protection and need symlinks to be followed, use `follow_symlinks`. - """ - if quote_mode not in ("always", "auto", "never"): - raise ValueError(f"Unknown quote_mode: {quote_mode}") - - quote = quote_mode == "always" or ( - quote_mode == "auto" and not value_to_set.isalnum() - ) - - if quote: - value_out = "'{}'".format(value_to_set.replace("'", "\\'")) - else: - value_out = value_to_set - if export: - line_out = f"export {key_to_set}={value_out}\n" - else: - line_out = f"{key_to_set}={value_out}\n" - - with rewrite(dotenv_path, encoding=encoding, follow_symlinks=follow_symlinks) as ( - source, - dest, - ): - replaced = False - missing_newline = False - for mapping in with_warn_for_invalid_lines(parse_stream(source)): - if mapping.key == key_to_set: - dest.write(line_out) - replaced = True - else: - dest.write(mapping.original.string) - missing_newline = not mapping.original.string.endswith("\n") - if not replaced: - if missing_newline: - dest.write("\n") - dest.write(line_out) - - return True, key_to_set, value_to_set - - -def unset_key( - dotenv_path: StrPath, - key_to_unset: str, - quote_mode: str = "always", - encoding: Optional[str] = "utf-8", - follow_symlinks: bool = False, -) -> Tuple[Optional[bool], str]: - """ - Removes a given key from the given `.env` file. - - If the .env path given doesn't exist, fails. - If the given key doesn't exist in the .env, fails. - - This function doesn't follow symlinks by default, to avoid accidentally - modifying a file at a potentially untrusted path. If you don't need this - protection and need symlinks to be followed, use `follow_symlinks`. - """ - if not os.path.exists(dotenv_path): - logger.warning("Can't delete from %s - it doesn't exist.", dotenv_path) - return None, key_to_unset - - removed = False - with rewrite(dotenv_path, encoding=encoding, follow_symlinks=follow_symlinks) as ( - source, - dest, - ): - for mapping in with_warn_for_invalid_lines(parse_stream(source)): - if mapping.key == key_to_unset: - removed = True - else: - dest.write(mapping.original.string) - - if not removed: - logger.warning( - "Key %s not removed from %s - key doesn't exist.", key_to_unset, dotenv_path - ) - return None, key_to_unset - - return removed, key_to_unset - - -def resolve_variables( - values: Iterable[Tuple[str, Optional[str]]], - override: bool, -) -> Mapping[str, Optional[str]]: - new_values: Dict[str, Optional[str]] = {} - - for name, value in values: - if value is None: - result = None - else: - atoms = parse_variables(value) - env: Dict[str, Optional[str]] = {} - if override: - env.update(os.environ) # type: ignore - env.update(new_values) - else: - env.update(new_values) - env.update(os.environ) # type: ignore - result = "".join(atom.resolve(env) for atom in atoms) - - new_values[name] = result - - return new_values - - -def _walk_to_root(path: str) -> Iterator[str]: - """ - Yield directories starting from the given directory up to the root - """ - if not os.path.exists(path): - raise IOError("Starting path not found") - - if os.path.isfile(path): - path = os.path.dirname(path) - - last_dir = None - current_dir = os.path.abspath(path) - while last_dir != current_dir: - yield current_dir - parent_dir = os.path.abspath(os.path.join(current_dir, os.path.pardir)) - last_dir, current_dir = current_dir, parent_dir - - -def find_dotenv( - filename: str = ".env", - raise_error_if_not_found: bool = False, - usecwd: bool = False, -) -> str: - """ - Search in increasingly higher folders for the given file - - Returns path to the file if found, or an empty string otherwise - """ - - def _is_interactive(): - """Decide whether this is running in a REPL or IPython notebook""" - if hasattr(sys, "ps1") or hasattr(sys, "ps2"): - return True - try: - main = __import__("__main__", None, None, fromlist=["__file__"]) - except ModuleNotFoundError: - return False - return not hasattr(main, "__file__") - - def _is_debugger(): - return sys.gettrace() is not None - - if usecwd or _is_interactive() or _is_debugger() or getattr(sys, "frozen", False): - # Should work without __file__, e.g. in REPL or IPython notebook. - path = os.getcwd() - else: - # will work for .py files - frame = sys._getframe() - current_file = __file__ - - while frame.f_code.co_filename == current_file or not os.path.exists( - frame.f_code.co_filename - ): - assert frame.f_back is not None - frame = frame.f_back - frame_filename = frame.f_code.co_filename - path = os.path.dirname(os.path.abspath(frame_filename)) - - for dirname in _walk_to_root(path): - check_path = os.path.join(dirname, filename) - if _is_file_or_fifo(check_path): - return check_path - - if raise_error_if_not_found: - raise IOError("File not found") - - return "" - - -def load_dotenv( - dotenv_path: Optional[StrPath] = None, - stream: Optional[IO[str]] = None, - verbose: bool = False, - override: bool = False, - interpolate: bool = True, - encoding: Optional[str] = "utf-8", -) -> bool: - """Parse a .env file and then load all the variables found as environment variables. - - Parameters: - dotenv_path: Absolute or relative path to .env file. - stream: Text stream (such as `io.StringIO`) with .env content, used if - `dotenv_path` is `None`. - verbose: Whether to output a warning the .env file is missing. - override: Whether to override the system environment variables with the variables - from the `.env` file. - encoding: Encoding to be used to read the file. - Returns: - Bool: True if at least one environment variable is set else False - - If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the - .env file with it's default parameters. If you need to change the default parameters - of `find_dotenv()`, you can explicitly call `find_dotenv()` and pass the result - to this function as `dotenv_path`. - - If the environment variable `PYTHON_DOTENV_DISABLED` is set to a truthy value, - .env loading is disabled. - """ - if _load_dotenv_disabled(): - logger.debug( - "python-dotenv: .env loading disabled by PYTHON_DOTENV_DISABLED environment variable" - ) - return False - - if dotenv_path is None and stream is None: - dotenv_path = find_dotenv() - - dotenv = DotEnv( - dotenv_path=dotenv_path, - stream=stream, - verbose=verbose, - interpolate=interpolate, - override=override, - encoding=encoding, - ) - return dotenv.set_as_environment_variables() - - -def dotenv_values( - dotenv_path: Optional[StrPath] = None, - stream: Optional[IO[str]] = None, - verbose: bool = False, - interpolate: bool = True, - encoding: Optional[str] = "utf-8", -) -> Dict[str, Optional[str]]: - """ - Parse a .env file and return its content as a dict. - - The returned dict will have `None` values for keys without values in the .env file. - For example, `foo=bar` results in `{"foo": "bar"}` whereas `foo` alone results in - `{"foo": None}` - - Parameters: - dotenv_path: Absolute or relative path to the .env file. - stream: `StringIO` object with .env content, used if `dotenv_path` is `None`. - verbose: Whether to output a warning if the .env file is missing. - encoding: Encoding to be used to read the file. - - If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the - .env file. - """ - if dotenv_path is None and stream is None: - dotenv_path = find_dotenv() - - return DotEnv( - dotenv_path=dotenv_path, - stream=stream, - verbose=verbose, - interpolate=interpolate, - override=True, - encoding=encoding, - ).dict() - - -def _is_file_or_fifo(path: StrPath) -> bool: - """ - Return True if `path` exists and is either a regular file or a FIFO. - """ - if os.path.isfile(path): - return True - - try: - st = os.stat(path) - except (FileNotFoundError, OSError): - return False - - return stat.S_ISFIFO(st.st_mode) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/parser.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/parser.py deleted file mode 100644 index eb100b4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/parser.py +++ /dev/null @@ -1,182 +0,0 @@ -import codecs -import re -from typing import ( - IO, - Iterator, - Match, - NamedTuple, - Optional, - Pattern, - Sequence, -) - - -def make_regex(string: str, extra_flags: int = 0) -> Pattern[str]: - return re.compile(string, re.UNICODE | extra_flags) - - -_newline = make_regex(r"(\r\n|\n|\r)") -_multiline_whitespace = make_regex(r"\s*", extra_flags=re.MULTILINE) -_whitespace = make_regex(r"[^\S\r\n]*") -_export = make_regex(r"(?:export[^\S\r\n]+)?") -_single_quoted_key = make_regex(r"'([^']+)'") -_unquoted_key = make_regex(r"([^=\#\s]+)") -_equal_sign = make_regex(r"(=[^\S\r\n]*)") -_single_quoted_value = make_regex(r"'((?:\\'|[^'])*)'") -_double_quoted_value = make_regex(r'"((?:\\"|[^"])*)"') -_unquoted_value = make_regex(r"([^\r\n]*)") -_comment = make_regex(r"(?:[^\S\r\n]*#[^\r\n]*)?") -_end_of_line = make_regex(r"[^\S\r\n]*(?:\r\n|\n|\r|$)") -_rest_of_line = make_regex(r"[^\r\n]*(?:\r|\n|\r\n)?") -_double_quote_escapes = make_regex(r"\\[\\'\"abfnrtv]") -_single_quote_escapes = make_regex(r"\\[\\']") - - -class Original(NamedTuple): - string: str - line: int - - -class Binding(NamedTuple): - key: Optional[str] - value: Optional[str] - original: Original - error: bool - - -class Position: - def __init__(self, chars: int, line: int) -> None: - self.chars = chars - self.line = line - - @classmethod - def start(cls) -> "Position": - return cls(chars=0, line=1) - - def set(self, other: "Position") -> None: - self.chars = other.chars - self.line = other.line - - def advance(self, string: str) -> None: - self.chars += len(string) - self.line += len(re.findall(_newline, string)) - - -class Error(Exception): - pass - - -class Reader: - def __init__(self, stream: IO[str]) -> None: - self.string = stream.read() - self.position = Position.start() - self.mark = Position.start() - - def has_next(self) -> bool: - return self.position.chars < len(self.string) - - def set_mark(self) -> None: - self.mark.set(self.position) - - def get_marked(self) -> Original: - return Original( - string=self.string[self.mark.chars : self.position.chars], - line=self.mark.line, - ) - - def peek(self, count: int) -> str: - return self.string[self.position.chars : self.position.chars + count] - - def read(self, count: int) -> str: - result = self.string[self.position.chars : self.position.chars + count] - if len(result) < count: - raise Error("read: End of string") - self.position.advance(result) - return result - - def read_regex(self, regex: Pattern[str]) -> Sequence[str]: - match = regex.match(self.string, self.position.chars) - if match is None: - raise Error("read_regex: Pattern not found") - self.position.advance(self.string[match.start() : match.end()]) - return match.groups() - - -def decode_escapes(regex: Pattern[str], string: str) -> str: - def decode_match(match: Match[str]) -> str: - return codecs.decode(match.group(0), "unicode-escape") # type: ignore - - return regex.sub(decode_match, string) - - -def parse_key(reader: Reader) -> Optional[str]: - char = reader.peek(1) - if char == "#": - return None - elif char == "'": - (key,) = reader.read_regex(_single_quoted_key) - else: - (key,) = reader.read_regex(_unquoted_key) - return key - - -def parse_unquoted_value(reader: Reader) -> str: - (part,) = reader.read_regex(_unquoted_value) - return re.sub(r"\s+#.*", "", part).rstrip() - - -def parse_value(reader: Reader) -> str: - char = reader.peek(1) - if char == "'": - (value,) = reader.read_regex(_single_quoted_value) - return decode_escapes(_single_quote_escapes, value) - elif char == '"': - (value,) = reader.read_regex(_double_quoted_value) - return decode_escapes(_double_quote_escapes, value) - elif char in ("", "\n", "\r"): - return "" - else: - return parse_unquoted_value(reader) - - -def parse_binding(reader: Reader) -> Binding: - reader.set_mark() - try: - reader.read_regex(_multiline_whitespace) - if not reader.has_next(): - return Binding( - key=None, - value=None, - original=reader.get_marked(), - error=False, - ) - reader.read_regex(_export) - key = parse_key(reader) - reader.read_regex(_whitespace) - if reader.peek(1) == "=": - reader.read_regex(_equal_sign) - value: Optional[str] = parse_value(reader) - else: - value = None - reader.read_regex(_comment) - reader.read_regex(_end_of_line) - return Binding( - key=key, - value=value, - original=reader.get_marked(), - error=False, - ) - except Error: - reader.read_regex(_rest_of_line) - return Binding( - key=None, - value=None, - original=reader.get_marked(), - error=True, - ) - - -def parse_stream(stream: IO[str]) -> Iterator[Binding]: - reader = Reader(stream) - while reader.has_next(): - yield parse_binding(reader) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/py.typed deleted file mode 100644 index 7632ecf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/py.typed +++ /dev/null @@ -1 +0,0 @@ -# Marker file for PEP 561 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/variables.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/variables.py deleted file mode 100644 index 667f2f2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/variables.py +++ /dev/null @@ -1,86 +0,0 @@ -import re -from abc import ABCMeta, abstractmethod -from typing import Iterator, Mapping, Optional, Pattern - -_posix_variable: Pattern[str] = re.compile( - r""" - \$\{ - (?P[^\}:]*) - (?::- - (?P[^\}]*) - )? - \} - """, - re.VERBOSE, -) - - -class Atom(metaclass=ABCMeta): - def __ne__(self, other: object) -> bool: - result = self.__eq__(other) - if result is NotImplemented: - return NotImplemented - return not result - - @abstractmethod - def resolve(self, env: Mapping[str, Optional[str]]) -> str: ... - - -class Literal(Atom): - def __init__(self, value: str) -> None: - self.value = value - - def __repr__(self) -> str: - return f"Literal(value={self.value})" - - def __eq__(self, other: object) -> bool: - if not isinstance(other, self.__class__): - return NotImplemented - return self.value == other.value - - def __hash__(self) -> int: - return hash((self.__class__, self.value)) - - def resolve(self, env: Mapping[str, Optional[str]]) -> str: - return self.value - - -class Variable(Atom): - def __init__(self, name: str, default: Optional[str]) -> None: - self.name = name - self.default = default - - def __repr__(self) -> str: - return f"Variable(name={self.name}, default={self.default})" - - def __eq__(self, other: object) -> bool: - if not isinstance(other, self.__class__): - return NotImplemented - return (self.name, self.default) == (other.name, other.default) - - def __hash__(self) -> int: - return hash((self.__class__, self.name, self.default)) - - def resolve(self, env: Mapping[str, Optional[str]]) -> str: - default = self.default if self.default is not None else "" - result = env.get(self.name, default) - return result if result is not None else "" - - -def parse_variables(value: str) -> Iterator[Atom]: - cursor = 0 - - for match in _posix_variable.finditer(value): - (start, end) = match.span() - name = match["name"] - default = match["default"] - - if start > cursor: - yield Literal(value=value[cursor:start]) - - yield Variable(name=name, default=default) - cursor = end - - length = len(value) - if cursor < length: - yield Literal(value=value[cursor:length]) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/version.py deleted file mode 100644 index bc86c94..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/dotenv/version.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.2.2" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/METADATA deleted file mode 100644 index 564aa96..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/METADATA +++ /dev/null @@ -1,615 +0,0 @@ -Metadata-Version: 2.4 -Name: fastapi -Version: 0.138.2 -Summary: FastAPI framework, high performance, easy to learn, fast to code, ready for production -Author-Email: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= -License-Expression: MIT -License-File: LICENSE -Classifier: Intended Audience :: Information Technology -Classifier: Intended Audience :: System Administrators -Classifier: Operating System :: OS Independent -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python -Classifier: Topic :: Internet -Classifier: Topic :: Software Development :: Libraries :: Application Frameworks -Classifier: Topic :: Software Development :: Libraries :: Python Modules -Classifier: Topic :: Software Development :: Libraries -Classifier: Topic :: Software Development -Classifier: Typing :: Typed -Classifier: Development Status :: 4 - Beta -Classifier: Environment :: Web Environment -Classifier: Framework :: AsyncIO -Classifier: Framework :: FastAPI -Classifier: Framework :: Pydantic -Classifier: Framework :: Pydantic :: 2 -Classifier: Intended Audience :: Developers -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: Programming Language :: Python :: 3.14 -Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers -Classifier: Topic :: Internet :: WWW/HTTP -Project-URL: Homepage, https://github.com/fastapi/fastapi -Project-URL: Documentation, https://fastapi.tiangolo.com/ -Project-URL: Repository, https://github.com/fastapi/fastapi -Project-URL: Issues, https://github.com/fastapi/fastapi/issues -Project-URL: Changelog, https://fastapi.tiangolo.com/release-notes/ -Requires-Python: >=3.10 -Requires-Dist: starlette>=0.46.0 -Requires-Dist: pydantic>=2.9.0 -Requires-Dist: typing-extensions>=4.8.0 -Requires-Dist: typing-inspection>=0.4.2 -Requires-Dist: annotated-doc>=0.0.2 -Provides-Extra: standard -Requires-Dist: fastapi-cli[standard]>=0.0.8; extra == "standard" -Requires-Dist: fastar>=0.9.0; extra == "standard" -Requires-Dist: httpx<1.0.0,>=0.23.0; extra == "standard" -Requires-Dist: jinja2>=3.1.5; extra == "standard" -Requires-Dist: python-multipart>=0.0.18; extra == "standard" -Requires-Dist: email-validator>=2.0.0; extra == "standard" -Requires-Dist: uvicorn[standard]>=0.12.0; extra == "standard" -Requires-Dist: pydantic-settings>=2.0.0; extra == "standard" -Requires-Dist: pydantic-extra-types>=2.0.0; extra == "standard" -Provides-Extra: standard-no-fastapi-cloud-cli -Requires-Dist: fastapi-cli[standard-no-fastapi-cloud-cli]>=0.0.8; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: httpx<1.0.0,>=0.23.0; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: jinja2>=3.1.5; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: python-multipart>=0.0.18; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: email-validator>=2.0.0; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: uvicorn[standard]>=0.12.0; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: pydantic-settings>=2.0.0; extra == "standard-no-fastapi-cloud-cli" -Requires-Dist: pydantic-extra-types>=2.0.0; extra == "standard-no-fastapi-cloud-cli" -Provides-Extra: all -Requires-Dist: fastapi-cli[standard]>=0.0.8; extra == "all" -Requires-Dist: httpx<1.0.0,>=0.23.0; extra == "all" -Requires-Dist: jinja2>=3.1.5; extra == "all" -Requires-Dist: python-multipart>=0.0.18; extra == "all" -Requires-Dist: itsdangerous>=1.1.0; extra == "all" -Requires-Dist: pyyaml>=5.3.1; extra == "all" -Requires-Dist: email-validator>=2.0.0; extra == "all" -Requires-Dist: uvicorn[standard]>=0.12.0; extra == "all" -Requires-Dist: pydantic-settings>=2.0.0; extra == "all" -Requires-Dist: pydantic-extra-types>=2.0.0; extra == "all" -Description-Content-Type: text/markdown - -

- FastAPI -

-

- FastAPI framework, high performance, easy to learn, fast to code, ready for production -

-

- - Test - - - Coverage - - - Package version - - - Supported Python versions - -

- ---- - -**Documentation**: [https://fastapi.tiangolo.com](https://fastapi.tiangolo.com) - -**Source Code**: [https://github.com/fastapi/fastapi](https://github.com/fastapi/fastapi) - ---- - -FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints. - -The key features are: - -* **Fast**: Very high performance, on par with **NodeJS** and **Go** (thanks to Starlette and Pydantic). [One of the fastest Python frameworks available](#performance). -* **Fast to code**: Increase the speed to develop features by about 200% to 300%. * -* **Fewer bugs**: Reduce about 40% of human (developer) induced errors. * -* **Intuitive**: Great editor support. Completion everywhere. Less time debugging. -* **Easy**: Designed to be easy to use and learn. Less time reading docs. -* **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs. -* **Robust**: Get production-ready code. With automatic interactive documentation. -* **Standards-based**: Based on (and fully compatible with) the open standards for APIs: [OpenAPI](https://github.com/OAI/OpenAPI-Specification) (previously known as Swagger) and [JSON Schema](https://json-schema.org/). - -* estimation based on tests conducted by an internal development team, building production applications. - -## Sponsors - - -### Keystone Sponsor - - - -### Gold Sponsors - - - - - - - - - - -### Silver Sponsors - - - - - - - - - - -[Other sponsors](https://fastapi.tiangolo.com/fastapi-people/#sponsors) - -## Opinions - - - -
- -"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" - -
Kabir Khan - Microsoft (ref)
- ---- - -"_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_" - -
Piero Molino, Yaroslav Dudin, and Sai Sumanth Miryala - Uber (ref)
- ---- - -"_**Netflix** is pleased to announce the open-source release of our **crisis management** orchestration framework: **Dispatch**! [built with **FastAPI**]_" - -
Kevin Glisson, Marc Vilanova, Forest Monsen - Netflix (ref)
- ---- - -"_If anyone is looking to build a production Python API, I would highly recommend **FastAPI**. It is **beautifully designed**, **simple to use** and **highly scalable**, it has become a **key component** in our API first development strategy and is driving many automations and services such as our Virtual TAC Engineer._" - -
Deon Pillsbury - Cisco (ref)
- ---- - -
- -## FastAPI Conf - -[**FastAPI Conf '26**](https://fastapiconf.com) is happening on **October 28, 2026** in **Amsterdam, NL**. All about FastAPI, right from the source. 🎤 - -FastAPI Conf '26 - October 28, 2026 - Amsterdam, NL - -## FastAPI mini documentary - -There's a [FastAPI mini documentary](https://www.youtube.com/watch?v=mpR8ngthqiE) released at the end of 2025, you can watch it online: - -FastAPI Mini Documentary - -## **Typer**, the FastAPI of CLIs - - - -If you are building a CLI app to be used in the terminal instead of a web API, check out [**Typer**](https://typer.tiangolo.com/). - -**Typer** is FastAPI's little sibling. And it's intended to be the **FastAPI of CLIs**. ⌨️ 🚀 - -## Requirements - -FastAPI stands on the shoulders of giants: - -* [Starlette](https://www.starlette.dev/) for the web parts. -* [Pydantic](https://docs.pydantic.dev/) for the data parts. - -## Installation - -Create and activate a [virtual environment](https://fastapi.tiangolo.com/virtual-environments/) and then install FastAPI: - -
- -```console -$ pip install "fastapi[standard]" - ----> 100% -``` - -
- -**Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals. - -## Example - -### Create it - -Create a file `main.py` with: - -```Python -from fastapi import FastAPI - -app = FastAPI() - - -@app.get("/") -def read_root(): - return {"Hello": "World"} - - -@app.get("/items/{item_id}") -def read_item(item_id: int, q: str | None = None): - return {"item_id": item_id, "q": q} -``` - -
-Or use async def... - -If your code uses `async` / `await`, use `async def`: - -```Python hl_lines="7 12" -from fastapi import FastAPI - -app = FastAPI() - - -@app.get("/") -async def read_root(): - return {"Hello": "World"} - - -@app.get("/items/{item_id}") -async def read_item(item_id: int, q: str | None = None): - return {"item_id": item_id, "q": q} -``` - -**Note**: - -If you don't know, check the _"In a hurry?"_ section about [`async` and `await` in the docs](https://fastapi.tiangolo.com/async/#in-a-hurry). - -
- -### Run it - -Run the server with: - -
- -```console -$ fastapi dev - - ╭────────── FastAPI CLI - Development mode ───────────╮ - │ │ - │ Serving at: http://127.0.0.1:8000 │ - │ │ - │ API docs: http://127.0.0.1:8000/docs │ - │ │ - │ Running in development mode, for production use: │ - │ │ - │ fastapi run │ - │ │ - ╰─────────────────────────────────────────────────────╯ - -INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp'] -INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) -INFO: Started reloader process [2248755] using WatchFiles -INFO: Started server process [2248757] -INFO: Waiting for application startup. -INFO: Application startup complete. -``` - -
- -
-About the command fastapi dev... - -The command `fastapi dev` reads your `main.py` file automatically, detects the **FastAPI** app in it, and starts a server using [Uvicorn](https://www.uvicorn.dev). - -By default, `fastapi dev` will start with auto-reload enabled for local development. - -You can read more about it in the [FastAPI CLI docs](https://fastapi.tiangolo.com/fastapi-cli/). - -
- -### Check it - -Open your browser at [http://127.0.0.1:8000/items/5?q=somequery](http://127.0.0.1:8000/items/5?q=somequery). - -You will see the JSON response as: - -```JSON -{"item_id": 5, "q": "somequery"} -``` - -You already created an API that: - -* Receives HTTP requests in the _paths_ `/` and `/items/{item_id}`. -* Both _paths_ take `GET` operations (also known as HTTP _methods_). -* The _path_ `/items/{item_id}` has a _path parameter_ `item_id` that should be an `int`. -* The _path_ `/items/{item_id}` has an optional `str` _query parameter_ `q`. - -### Interactive API docs - -Now go to [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs). - -You will see the automatic interactive API documentation (provided by [Swagger UI](https://github.com/swagger-api/swagger-ui)): - -![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) - -### Alternative API docs - -And now, go to [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc). - -You will see the alternative automatic documentation (provided by [ReDoc](https://github.com/Rebilly/ReDoc)): - -![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) - -## Example upgrade - -Now modify the file `main.py` to receive a body from a `PUT` request. - -Declare the body using standard Python types, thanks to Pydantic. - -```Python hl_lines="2 7-10 23-25" -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - price: float - is_offer: bool | None = None - - -@app.get("/") -def read_root(): - return {"Hello": "World"} - - -@app.get("/items/{item_id}") -def read_item(item_id: int, q: str | None = None): - return {"item_id": item_id, "q": q} - - -@app.put("/items/{item_id}") -def update_item(item_id: int, item: Item): - return {"item_name": item.name, "item_id": item_id} -``` - -The `fastapi dev` server should reload automatically. - -### Interactive API docs upgrade - -Now go to [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs). - -* The interactive API documentation will be automatically updated, including the new body: - -![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png) - -* Click on the button "Try it out", it allows you to fill the parameters and directly interact with the API: - -![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png) - -* Then click on the "Execute" button, the user interface will communicate with your API, send the parameters, get the results and show them on the screen: - -![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png) - -### Alternative API docs upgrade - -And now, go to [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc). - -* The alternative documentation will also reflect the new query parameter and body: - -![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png) - -### Recap - -In summary, you declare **once** the types of parameters, body, etc. as function parameters. - -You do that with standard modern Python types. - -You don't have to learn a new syntax, the methods or classes of a specific library, etc. - -Just standard **Python**. - -For example, for an `int`: - -```Python -item_id: int -``` - -or for a more complex `Item` model: - -```Python -item: Item -``` - -...and with that single declaration you get: - -* Editor support, including: - * Completion. - * Type checks. -* Validation of data: - * Automatic and clear errors when the data is invalid. - * Validation even for deeply nested JSON objects. -* Conversion of input data: coming from the network to Python data and types. Reading from: - * JSON. - * Path parameters. - * Query parameters. - * Cookies. - * Headers. - * Forms. - * Files. -* Conversion of output data: converting from Python data and types to network data (as JSON): - * Convert Python types (`str`, `int`, `float`, `bool`, `list`, etc). - * `datetime` objects. - * `UUID` objects. - * Database models. - * ...and many more. -* Automatic interactive API documentation, including 2 alternative user interfaces: - * Swagger UI. - * ReDoc. - ---- - -Coming back to the previous code example, **FastAPI** will: - -* Validate that there is an `item_id` in the path for `GET` and `PUT` requests. -* Validate that the `item_id` is of type `int` for `GET` and `PUT` requests. - * If it is not, the client will see a useful, clear error. -* Check if there is an optional query parameter named `q` (as in `http://127.0.0.1:8000/items/foo?q=somequery`) for `GET` requests. - * As the `q` parameter is declared with `= None`, it is optional. - * Without the `None` it would be required (as is the body in the case with `PUT`). -* For `PUT` requests to `/items/{item_id}`, read the body as JSON: - * Check that it has a required attribute `name` that should be a `str`. - * Check that it has a required attribute `price` that has to be a `float`. - * Check that it has an optional attribute `is_offer`, that should be a `bool`, if present. - * All this would also work for deeply nested JSON objects. -* Convert from and to JSON automatically. -* Document everything with OpenAPI, that can be used by: - * Interactive documentation systems. - * Automatic client code generation systems, for many languages. -* Provide 2 interactive documentation web interfaces directly. - ---- - -We just scratched the surface, but you already get the idea of how it all works. - -Try changing the line with: - -```Python - return {"item_name": item.name, "item_id": item_id} -``` - -...from: - -```Python - ... "item_name": item.name ... -``` - -...to: - -```Python - ... "item_price": item.price ... -``` - -...and see how your editor will auto-complete the attributes and know their types: - -![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png) - -For a more complete example including more features, see the Tutorial - User Guide. - -**Spoiler alert**: the tutorial - user guide includes: - -* Declaration of **parameters** from other different places such as: **headers**, **cookies**, **form fields** and **files**. -* How to set **validation constraints** such as `maximum_length` or `regex`. -* A very powerful and easy to use **Dependency Injection** system. -* Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. -* More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). -* **GraphQL** integration with [Strawberry](https://strawberry.rocks) and other libraries. -* Many extra features (thanks to Starlette) such as: - * **WebSockets** - * extremely easy tests based on HTTPX and `pytest` - * **CORS** - * **Cookie Sessions** - * ...and more. - -### Deploy your app (optional) - -You can optionally deploy your FastAPI app to [FastAPI Cloud](https://fastapicloud.com) with a single command. 🚀 - -
- -```console -$ fastapi deploy - -Deploying to FastAPI Cloud... - -✅ Deployment successful! - -🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev -``` - -
- -The CLI will automatically detect your FastAPI application and deploy it to the cloud. If you are not logged in, your browser will open to complete the authentication process. - -That's it! Now you can access your app at that URL. ✨ - -#### About FastAPI Cloud - -**[FastAPI Cloud](https://fastapicloud.com)** is built by the same author and team behind **FastAPI**. - -It streamlines the process of **building**, **deploying**, and **accessing** an API with minimal effort. - -It brings the same **developer experience** of building apps with FastAPI to **deploying** them to the cloud. 🎉 - -FastAPI Cloud is the primary sponsor and funding provider for the *FastAPI and friends* open source projects. ✨ - -#### Deploy to other cloud providers - -FastAPI is open source and based on standards. You can deploy FastAPI apps to any cloud provider you choose. - -Follow your cloud provider's guides to deploy FastAPI apps with them. 🤓 - -## Performance - -Independent TechEmpower benchmarks show **FastAPI** applications running under Uvicorn as [one of the fastest Python frameworks available](https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7), only below Starlette and Uvicorn themselves (used internally by FastAPI). (*) - -To understand more about it, see the section [Benchmarks](https://fastapi.tiangolo.com/benchmarks/). - -## Dependencies - -FastAPI depends on Pydantic and Starlette. - -### `standard` Dependencies - -When you install FastAPI with `pip install "fastapi[standard]"` it comes with the `standard` group of optional dependencies: - -Used by Pydantic: - -* [`email-validator`](https://github.com/JoshData/python-email-validator) - for email validation. - -Used by Starlette: - -* [`httpx`](https://www.python-httpx.org) - Required if you want to use the `TestClient`. -* [`jinja2`](https://jinja.palletsprojects.com) - Required if you want to use the default template configuration. -* [`python-multipart`](https://github.com/Kludex/python-multipart) - Required if you want to support form "parsing", with `request.form()`. - -Used by FastAPI: - -* [`uvicorn`](https://www.uvicorn.dev) - for the server that loads and serves your application. This includes `uvicorn[standard]`, which includes some dependencies (e.g. `uvloop`) needed for high performance serving. -* `fastapi-cli[standard]` - to provide the `fastapi` command. - * This includes `fastapi-cloud-cli`, which allows you to deploy your FastAPI application to [FastAPI Cloud](https://fastapicloud.com). - -### Without `standard` Dependencies - -If you don't want to include the `standard` optional dependencies, you can install with `pip install fastapi` instead of `pip install "fastapi[standard]"`. - -### Without `fastapi-cloud-cli` - -If you want to install FastAPI with the standard dependencies but without the `fastapi-cloud-cli`, you can install with `pip install "fastapi[standard-no-fastapi-cloud-cli]"`. - -### Additional Optional Dependencies - -There are some additional dependencies you might want to install. - -Additional optional Pydantic dependencies: - -* [`pydantic-settings`](https://docs.pydantic.dev/latest/usage/pydantic_settings/) - for settings management. -* [`pydantic-extra-types`](https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/) - for extra types to be used with Pydantic. - -Additional optional FastAPI dependencies: - -* [`orjson`](https://github.com/ijl/orjson) - Required if you want to use `ORJSONResponse`. -* [`ujson`](https://github.com/esnme/ultrajson) - Required if you want to use `UJSONResponse`. - -## License - -This project is licensed under the terms of the MIT license. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/RECORD deleted file mode 100644 index 604934e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/RECORD +++ /dev/null @@ -1,112 +0,0 @@ -../../../bin/fastapi,sha256=Br2QCK0vpTm2Z2wb3fUZlJZ8uuJMudTIpDG8s1XOXqI,269 -fastapi-0.138.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -fastapi-0.138.2.dist-info/METADATA,sha256=lu4gWfzWmv7-YwbeDUI-3ZWS2ZBfdlXetEkoPOqGYcQ,26993 -fastapi-0.138.2.dist-info/RECORD,, -fastapi-0.138.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -fastapi-0.138.2.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90 -fastapi-0.138.2.dist-info/entry_points.txt,sha256=GCf-WbIZxyGT4MUmrPGj1cOHYZoGsNPHAvNkT6hnGeA,61 -fastapi-0.138.2.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086 -fastapi/.agents/skills/fastapi/SKILL.md,sha256=mJ5RNq0BXBdcyihmnQUb_vLiDa0TqDhTg4hWSGB_XrY,10111 -fastapi/.agents/skills/fastapi/references/dependencies.md,sha256=i2txoD-hRoCQWoH1PxiDuQwqt6xl7vp3wmZMLQON5Gk,3268 -fastapi/.agents/skills/fastapi/references/other-tools.md,sha256=oskZlYkCdGgezS9mIfqW5kImCGtOsgPUa46Sd81H-P0,1527 -fastapi/.agents/skills/fastapi/references/path-operations.md,sha256=7Y0qIRI7z2PdHpqmHMjk4zqHjLvx0JSYpVakIDAplco,1583 -fastapi/.agents/skills/fastapi/references/pydantic.md,sha256=hAq5YnOYYa7S6neAXcRpecmpar2PwAQ_GXs71dY46Es,1844 -fastapi/.agents/skills/fastapi/references/responses.md,sha256=fJIVCLvQk2lzAcqWEgOJds-1tlvcLcQqDALigJ02Uqc,1856 -fastapi/.agents/skills/fastapi/references/streaming.md,sha256=bHaIKnwbTkd7TUVQm_uxapUnAlEG4rdvALV9koD5ypI,2581 -fastapi/__init__.py,sha256=9P87NF-iKI19klm4q-YxFfvfR_z4pSQbtdga-3lqxQQ,1081 -fastapi/__main__.py,sha256=bKePXLdO4SsVSM6r9SVoLickJDcR2c0cTOxZRKq26YQ,37 -fastapi/__pycache__/__init__.cpython-311.pyc,, -fastapi/__pycache__/__main__.cpython-311.pyc,, -fastapi/__pycache__/applications.cpython-311.pyc,, -fastapi/__pycache__/background.cpython-311.pyc,, -fastapi/__pycache__/cli.cpython-311.pyc,, -fastapi/__pycache__/concurrency.cpython-311.pyc,, -fastapi/__pycache__/datastructures.cpython-311.pyc,, -fastapi/__pycache__/encoders.cpython-311.pyc,, -fastapi/__pycache__/exception_handlers.cpython-311.pyc,, -fastapi/__pycache__/exceptions.cpython-311.pyc,, -fastapi/__pycache__/logger.cpython-311.pyc,, -fastapi/__pycache__/param_functions.cpython-311.pyc,, -fastapi/__pycache__/params.cpython-311.pyc,, -fastapi/__pycache__/requests.cpython-311.pyc,, -fastapi/__pycache__/responses.cpython-311.pyc,, -fastapi/__pycache__/routing.cpython-311.pyc,, -fastapi/__pycache__/sse.cpython-311.pyc,, -fastapi/__pycache__/staticfiles.cpython-311.pyc,, -fastapi/__pycache__/templating.cpython-311.pyc,, -fastapi/__pycache__/testclient.cpython-311.pyc,, -fastapi/__pycache__/types.cpython-311.pyc,, -fastapi/__pycache__/utils.cpython-311.pyc,, -fastapi/__pycache__/websockets.cpython-311.pyc,, -fastapi/_compat/__init__.py,sha256=PYOR-8vJ5va4Qjl810FcQmJbqmpyyeQMoZ9R86CeE2U,2095 -fastapi/_compat/__pycache__/__init__.cpython-311.pyc,, -fastapi/_compat/__pycache__/shared.cpython-311.pyc,, -fastapi/_compat/__pycache__/v2.cpython-311.pyc,, -fastapi/_compat/shared.py,sha256=XJl8cVYOTSgfK-1fiJHLeHHeSGLfC00H7MrtpyYpQgU,7118 -fastapi/_compat/v2.py,sha256=sDGyi1iKSFW9LuJ7n4B61-1yrQI1NHRSwsFRRLuFJ8k,17601 -fastapi/applications.py,sha256=hf4vGBWMU5nEkHmeqQutYBIK3AsnhEwcVF2wIvegekc,183452 -fastapi/background.py,sha256=TADzAethOAaqpVvckYuTT3c4O9N1HaFQysFCPt0MsgU,1820 -fastapi/cli.py,sha256=OYhZb0NR_deuT5ofyPF2NoNBzZDNOP8Salef2nk-HqA,418 -fastapi/concurrency.py,sha256=xHGDEOQAA6cvFEDX46oq3r2t1Zd4sVvreaRgdIE4juM,1489 -fastapi/datastructures.py,sha256=XPugnojHc4N07eF5Xp1TTndP2gMv1fG4k-0L4Vdr7Kc,5321 -fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -fastapi/dependencies/__pycache__/__init__.cpython-311.pyc,, -fastapi/dependencies/__pycache__/models.cpython-311.pyc,, -fastapi/dependencies/__pycache__/utils.cpython-311.pyc,, -fastapi/dependencies/models.py,sha256=XPIkEaukHaTaFz9LoeI9f_T-3otOAVkoOC113TpFbWI,7250 -fastapi/dependencies/utils.py,sha256=XIpRML7ttx5EhmchgWz6R5CMsBuepx7KHdmi38F_e_s,39728 -fastapi/encoders.py,sha256=m2OGnq9k94Alcd6UQM8r7iwn-cjvJdpOKRVJuQR68T8,11603 -fastapi/exception_handlers.py,sha256=YVcT8Zy021VYYeecgdyh5YEUjEIHKcLspbkSf4OfbJI,1275 -fastapi/exceptions.py,sha256=fUNOBRdIsULU0TnO8aNBg3HoJeyJxXp9UV6D8wYu9lI,7453 -fastapi/logger.py,sha256=I9NNi3ov8AcqbsbC9wl1X-hdItKgYt2XTrx1f99Zpl4,54 -fastapi/middleware/__init__.py,sha256=oQDxiFVcc1fYJUOIFvphnK7pTT5kktmfL32QXpBFvvo,58 -fastapi/middleware/__pycache__/__init__.cpython-311.pyc,, -fastapi/middleware/__pycache__/asyncexitstack.cpython-311.pyc,, -fastapi/middleware/__pycache__/cors.cpython-311.pyc,, -fastapi/middleware/__pycache__/gzip.cpython-311.pyc,, -fastapi/middleware/__pycache__/httpsredirect.cpython-311.pyc,, -fastapi/middleware/__pycache__/trustedhost.cpython-311.pyc,, -fastapi/middleware/__pycache__/wsgi.cpython-311.pyc,, -fastapi/middleware/asyncexitstack.py,sha256=RKGlQpGzg3GLosqVhrxBy_NCZ9qJS7zQeNHt5Y3x-00,637 -fastapi/middleware/cors.py,sha256=ynwjWQZoc_vbhzZ3_ZXceoaSrslHFHPdoM52rXr0WUU,79 -fastapi/middleware/gzip.py,sha256=xM5PcsH8QlAimZw4VDvcmTnqQamslThsfe3CVN2voa0,79 -fastapi/middleware/httpsredirect.py,sha256=rL8eXMnmLijwVkH7_400zHri1AekfeBd6D6qs8ix950,115 -fastapi/middleware/trustedhost.py,sha256=eE5XGRxGa7c5zPnMJDGp3BxaL25k5iVQlhnv-Pk0Pss,109 -fastapi/middleware/wsgi.py,sha256=a_FMDoeTwcdig9wdAGumIH82oDFfuj4pxtQxLbAw2Ns,107 -fastapi/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -fastapi/openapi/__pycache__/__init__.cpython-311.pyc,, -fastapi/openapi/__pycache__/constants.cpython-311.pyc,, -fastapi/openapi/__pycache__/docs.cpython-311.pyc,, -fastapi/openapi/__pycache__/models.cpython-311.pyc,, -fastapi/openapi/__pycache__/utils.cpython-311.pyc,, -fastapi/openapi/constants.py,sha256=adGzmis1L1HJRTE3kJ5fmHS_Noq6tIY6pWv_SFzoFDU,153 -fastapi/openapi/docs.py,sha256=PcjH0Sn-yp97O0exXincG8epsY7ATyJC5662bK1DRao,12425 -fastapi/openapi/models.py,sha256=twjJWGf6lcKRJZgaZCcnQ0Ten1hDhcyCLgbr7tXIP30,14608 -fastapi/openapi/utils.py,sha256=-Haf16aXydAE-IVwloo5_MVBp0l0fi_F9er5wKeKbZ8,26916 -fastapi/param_functions.py,sha256=4fTCVlvEDbAQr7gvWYkOX8hktdl2Iwk-kv4FaTz7P8w,69596 -fastapi/params.py,sha256=1fNNSK5J7PM5Fw-F5_9uOysA2NgC-61mb3LlrBWpqJM,26205 -fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -fastapi/requests.py,sha256=zayepKFcienBllv3snmWI20Gk0oHNVLU4DDhqXBb4LU,142 -fastapi/responses.py,sha256=BM7JtiZ_G4j2Z7QvHUzV1KtZPnjOoCfX35RqYXlZDh0,4144 -fastapi/routing.py,sha256=hFoeLHvP8QEnu46wLuC_t2rCPgK255BYtb8vwI-IEVU,247166 -fastapi/security/__init__.py,sha256=bO8pNmxqVRXUjfl2mOKiVZLn0FpBQ61VUYVjmppnbJw,881 -fastapi/security/__pycache__/__init__.cpython-311.pyc,, -fastapi/security/__pycache__/api_key.cpython-311.pyc,, -fastapi/security/__pycache__/base.cpython-311.pyc,, -fastapi/security/__pycache__/http.cpython-311.pyc,, -fastapi/security/__pycache__/oauth2.cpython-311.pyc,, -fastapi/security/__pycache__/open_id_connect_url.cpython-311.pyc,, -fastapi/security/__pycache__/utils.cpython-311.pyc,, -fastapi/security/api_key.py,sha256=4CNLNVAStOsMhytH9C5EOUEOZrtLg_IpMQS_HcRDP4M,9793 -fastapi/security/base.py,sha256=dl4pvbC-RxjfbWgPtCWd8MVU-7CB2SZ22rJDXVCXO6c,141 -fastapi/security/http.py,sha256=Z0xALDqwgJZRAaDs40Sa68rAnjFzEL99UEmO5PJzTKA,13410 -fastapi/security/oauth2.py,sha256=sSqW4tbvoHaWNld46TYatta5rgFfjod4LhxmedXzkI8,24178 -fastapi/security/open_id_connect_url.py,sha256=V8WLPEsEq_WJlIjPwJO2vCoJWGLu-VTt1-N2H7aV-D4,3136 -fastapi/security/utils.py,sha256=E9YIoez-H2k1oBLEdxqJEi8sV1umunJYKjQHvZG3FRY,261 -fastapi/sse.py,sha256=adtwP03ePndMQOuRCNRHrTfFQxMpRwrSUoRMHyB8OvA,6848 -fastapi/staticfiles.py,sha256=iirGIt3sdY2QZXd36ijs3Cj-T0FuGFda3cd90kM9Ikw,69 -fastapi/templating.py,sha256=4zsuTWgcjcEainMJFAlW6-gnslm6AgOS1SiiDWfmQxk,76 -fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66 -fastapi/types.py,sha256=g2tD842BUHC2C3_P8P06albQ4MhCb9RybrSmp5rODgU,438 -fastapi/utils.py,sha256=DX0VrnMwfVsZxRz8IitQ42c2---fDzmFZkeRMZR2UMo,4341 -fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/REQUESTED b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/REQUESTED deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/WHEEL deleted file mode 100644 index e651d8e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: pdm-backend (2.4.9) -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/entry_points.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/entry_points.txt deleted file mode 100644 index b81849e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/entry_points.txt +++ /dev/null @@ -1,5 +0,0 @@ -[console_scripts] -fastapi = fastapi.cli:main - -[gui_scripts] - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/licenses/LICENSE deleted file mode 100644 index 3e92463..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi-0.138.2.dist-info/licenses/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2018 Sebastián Ramírez - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/SKILL.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/SKILL.md deleted file mode 100644 index fc35b97..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/SKILL.md +++ /dev/null @@ -1,321 +0,0 @@ ---- -name: fastapi -description: FastAPI best practices and conventions. Use when working with FastAPI APIs, Pydantic models, dependencies, streaming responses including Server-Sent Events (SSE), and serving frontend apps. Keeps FastAPI code clean and up to date with the latest features and patterns. ---- - -# FastAPI - -Official FastAPI skill to write code with best practices, keeping up to date with new versions and features. - -## Quick Reference - -* Serve frontend apps: use `app.frontend()` or `router.frontend()` for built frontend assets; see [Serve Frontend Apps](#serve-frontend-apps). -* Server-Sent Events (SSE): use `response_class=EventSourceResponse` and `yield`; see [Streaming](#streaming-json-lines-sse-bytes) and [the streaming reference](references/streaming.md). -* JSON Lines and byte streaming: see [the streaming reference](references/streaming.md). -* Dependencies: use `Annotated[..., Depends(...)]`; see [Dependency Injection](#dependency-injection) and [the dependency injection reference](references/dependencies.md) for `yield`, scopes, and class dependencies. -* Response models: prefer return types; use `response_model` when the public response schema differs from the internal return value; see [the response reference](references/responses.md). -* Pydantic models: do not use ellipsis or `RootModel`; see [the Pydantic reference](references/pydantic.md). -* Routing: declare router-level prefix, tags, and shared dependencies on the `APIRouter`; see [the path operation reference](references/path-operations.md). -* Tooling and related libraries: use uv, Ruff, ty, Asyncer, SQLModel, and HTTPX when applicable; see [the other tools reference](references/other-tools.md). - -## Use the `fastapi` CLI - -Run the development server on localhost with reload: - -```bash -fastapi dev -``` - -Run the production server: - -```bash -fastapi run -``` - -Prefer declaring the entrypoint in `pyproject.toml`: - -```toml -[tool.fastapi] -entrypoint = "my_app.main:app" -``` - -When adding the entrypoint is not possible, or the user explicitly asks not to, pass the app file path: - -```bash -fastapi dev my_app/main.py -``` - -## Use `Annotated` - -Always prefer the `Annotated` style for parameter and dependency declarations. It keeps function signatures working in other contexts, respects the types, and allows reusability. - -Use `Annotated` for parameter declarations, including `Path`, `Query`, `Header`, etc.: - -```python -from typing import Annotated - -from fastapi import FastAPI, Path, Query - -app = FastAPI() - - -@app.get("/items/{item_id}") -async def read_item( - item_id: Annotated[int, Path(ge=1, description="The item ID")], - q: Annotated[str | None, Query(max_length=50)] = None, -): - return {"message": "Hello World"} -``` - -Use `Annotated` for dependencies with `Depends()`. Unless asked not to, create a new type alias for the dependency to allow reusing it: - -```python -from typing import Annotated - -from fastapi import Depends, FastAPI - -app = FastAPI() - - -def get_current_user(): - return {"username": "johndoe"} - - -CurrentUserDep = Annotated[dict, Depends(get_current_user)] - - -@app.get("/items/") -async def read_item(current_user: CurrentUserDep): - return {"message": "Hello World"} -``` - -## Do not use Ellipsis for *path operations* or Pydantic models - -Do not use `...` as a default value for required parameters or model fields. It's not needed and not recommended. - -```python -from typing import Annotated - -from fastapi import FastAPI, Query -from pydantic import BaseModel, Field - -app = FastAPI() - - -class Item(BaseModel): - name: str - description: str | None = None - price: float = Field(gt=0) - - -@app.post("/items/") -async def create_item(item: Item, project_id: Annotated[int, Query()]): - return item -``` - -See [the Pydantic reference](references/pydantic.md) for more details. - -## Return Type or Response Model - -When possible, include a return type. It will be used to validate, filter, document, and serialize the response. - -```python -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - description: str | None = None - - -@app.get("/items/me") -async def get_item() -> Item: - return Item(name="Plumbus", description="All-purpose home device") -``` - -Return types or response models filter data to avoid exposing sensitive information, and they let Pydantic serialize the data on the Rust side for performance. - -Use `response_model` when the type you return is not the same as the public schema you want to validate, filter, document, and serialize. See [the response reference](references/responses.md). - -## Performance - -Do not use `ORJSONResponse` or `UJSONResponse`, they are deprecated. - -Instead, declare a return type or response model. Pydantic will handle the data serialization on the Rust side. - -## Including Routers - -When declaring routers, prefer to add router-level parameters like prefix, tags, and shared dependencies to the router itself instead of in `include_router()`. - -```python -from fastapi import APIRouter, Depends, FastAPI - -app = FastAPI() - - -def get_current_user(): - return {"username": "johndoe"} - - -router = APIRouter( - prefix="/items", - tags=["items"], - dependencies=[Depends(get_current_user)], -) - - -@router.get("/") -async def list_items(): - return [] - - -app.include_router(router) -``` - -See [the path operation reference](references/path-operations.md) for more routing patterns. - -## Serve Frontend Apps - -Use `app.frontend()` to serve a built static frontend app, for example a directory generated by Vite, Astro, Angular, Svelte, Vue, or a similar tool. - -```python -from fastapi import FastAPI - -app = FastAPI() - -app.frontend("/", directory="dist") -``` - -Use `router.frontend()` when the frontend belongs to an `APIRouter`; normal router prefix behavior applies when the router is included. - -```python -from fastapi import APIRouter, FastAPI - -app = FastAPI() -router = APIRouter(prefix="/admin") - -router.frontend("/", directory="admin-dist") -app.include_router(router) -``` - -`app.frontend()` and `router.frontend()` are low-priority routes: regular API routes are matched first, then frontend files and client-side routing fallbacks. Use this for single-page apps and built frontend assets instead of mounting `StaticFiles` manually. - -## Dependency Injection - -Use dependencies when the logic can't be declared in Pydantic validation, depends on external resources, needs cleanup with `yield`, or is shared across endpoints. - -Apply shared dependencies at the router level via `dependencies=[Depends(...)]`. - -See [the dependency injection reference](references/dependencies.md) for detailed patterns including `yield` with `scope`, and class dependencies. - -## Async vs Sync *path operations* - -Use `async` *path operations* only when fully certain that the logic called inside is compatible with async and await, and that it doesn't block. - -```python -from fastapi import FastAPI - -app = FastAPI() - - -@app.get("/async-items/") -async def read_async_items(): - data = await some_async_library.fetch_items() - return data - - -@app.get("/items/") -def read_items(): - data = some_blocking_library.fetch_items() - return data -``` - -In case of doubt, or by default, use regular `def` functions. They will be run in a threadpool so they don't block the event loop. The same rules apply to dependencies. - -Make sure blocking code is not run inside of `async` functions. The logic will work, but will damage performance heavily. - -When needing to mix blocking and async code, see Asyncer in [the other tools reference](references/other-tools.md). - -## Streaming (JSON Lines, SSE, bytes) - -To stream Server-Sent Events, use `response_class=EventSourceResponse` and `yield` items from the endpoint. - -```python -from collections.abc import AsyncIterable - -from fastapi import FastAPI -from fastapi.sse import EventSourceResponse, ServerSentEvent - -app = FastAPI() - - -@app.get("/events", response_class=EventSourceResponse) -async def stream_events() -> AsyncIterable[ServerSentEvent]: - yield ServerSentEvent(data={"status": "started"}, event="status", id="1") -``` - -Plain objects are automatically JSON-serialized as `data:` fields. Use `ServerSentEvent` for full control over SSE fields (`event`, `id`, `retry`, `comment`) and `raw_data` for pre-formatted strings. - -See [the streaming reference](references/streaming.md) for JSON Lines, Server-Sent Events (`EventSourceResponse`, `ServerSentEvent`), and byte streaming (`StreamingResponse`) patterns. - -## Tooling - -See [the other tools reference](references/other-tools.md) for details on uv, Ruff, ty for package management, linting, type checking, formatting, etc. - -## Other Libraries - -See [the other tools reference](references/other-tools.md) for details on other libraries: - -* Asyncer for handling async and await, concurrency, mixing async and blocking code, prefer it over AnyIO or asyncio. -* SQLModel for working with SQL databases, prefer it over SQLAlchemy. -* HTTPX for interacting with HTTP (other APIs), prefer it over Requests. - -## Do not use Pydantic RootModels - -Do not use Pydantic `RootModel`; instead use regular type annotations with `Annotated` and Pydantic validation utilities. - -```python -from typing import Annotated - -from fastapi import Body, FastAPI -from pydantic import Field - -app = FastAPI() - - -@app.post("/items/") -async def create_items(items: Annotated[list[int], Field(min_length=1), Body()]): - return items -``` - -FastAPI supports these type annotations and will create a Pydantic `TypeAdapter` for them, so types work normally without custom wrapper models. See [the Pydantic reference](references/pydantic.md). - -## Use one HTTP operation per function - -Don't mix HTTP operations in a single function. Having one function per HTTP operation helps separate concerns and organize the code. - -```python -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - - -@app.get("/items/") -async def list_items(): - return [] - - -@app.post("/items/") -async def create_item(item: Item): - return item -``` - -See [the path operation reference](references/path-operations.md) for more examples. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/dependencies.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/dependencies.md deleted file mode 100644 index a562dd9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/dependencies.md +++ /dev/null @@ -1,142 +0,0 @@ -# Dependency Injection - -Use dependencies when: - -* They can't be declared in Pydantic validation and require additional logic -* The logic depends on external resources or could block in any other way -* Other dependencies need their results (it's a sub-dependency) -* The logic can be shared by multiple endpoints to do things like error early, handle authentication, etc. -* They need to handle cleanup (e.g., DB sessions, file handles), using dependencies with `yield` -* Their logic needs input data from the request, like headers, query parameters, etc. - -## Dependencies with `yield` and `scope` - -When using dependencies with `yield`, they can have a `scope` that defines when the exit code is run. - -Use the default scope `"request"` to run the exit code after the response is sent back. - -```python -from typing import Annotated - -from fastapi import Depends, FastAPI - -app = FastAPI() - - -def get_db(): - db = DBSession() - try: - yield db - finally: - db.close() - - -DBDep = Annotated[DBSession, Depends(get_db)] - - -@app.get("/items/") -async def read_items(db: DBDep): - return db.query(Item).all() -``` - -Use the scope `"function"` when they should run the exit code after the response data is generated but before the response is sent back to the client. - -```python -from typing import Annotated - -from fastapi import Depends, FastAPI - -app = FastAPI() - - -def get_username(): - try: - yield "Rick" - finally: - print("Clean up before response is sent") - -UserNameDep = Annotated[str, Depends(get_username, scope="function")] - -@app.get("/users/me") -def get_user_me(username: UserNameDep): - return username -``` - -## Class Dependencies - -Avoid creating class dependencies when possible. - -If a class is needed, instead create a regular function dependency that returns a class instance. - -Do this: - -```python -from dataclasses import dataclass -from typing import Annotated - -from fastapi import Depends, FastAPI - -app = FastAPI() - - -@dataclass -class DatabasePaginator: - offset: int = 0 - limit: int = 100 - q: str | None = None - - def get_page(self) -> dict: - # Simulate a page of data - return { - "offset": self.offset, - "limit": self.limit, - "q": self.q, - "items": [], - } - - -def get_db_paginator( - offset: int = 0, limit: int = 100, q: str | None = None -) -> DatabasePaginator: - return DatabasePaginator(offset=offset, limit=limit, q=q) - - -PaginatorDep = Annotated[DatabasePaginator, Depends(get_db_paginator)] - - -@app.get("/items/") -async def read_items(paginator: PaginatorDep): - return paginator.get_page() -``` - -instead of this: - -```python -# DO NOT DO THIS -from typing import Annotated - -from fastapi import Depends, FastAPI - -app = FastAPI() - - -class DatabasePaginator: - def __init__(self, offset: int = 0, limit: int = 100, q: str | None = None): - self.offset = offset - self.limit = limit - self.q = q - - def get_page(self) -> dict: - # Simulate a page of data - return { - "offset": self.offset, - "limit": self.limit, - "q": self.q, - "items": [], - } - - -@app.get("/items/") -async def read_items(paginator: Annotated[DatabasePaginator, Depends()]): - return paginator.get_page() -``` diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/other-tools.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/other-tools.md deleted file mode 100644 index b5b58cf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/other-tools.md +++ /dev/null @@ -1,76 +0,0 @@ -# Other Tools - -## uv - -If uv is available, use it to manage dependencies. - -## Ruff - -If Ruff is available, use it to lint and format the code. Consider enabling the FastAPI rules. - -## ty - -If ty is available, use it to check types. - -## Asyncer - -When needing to run blocking code inside of async functions, or async code inside of blocking functions, suggest using Asyncer. - -Prefer it over AnyIO or asyncio. - -Install: - -```bash -uv add asyncer -``` - -Run blocking sync code inside of async with `asyncify()`: - -```python -from asyncer import asyncify -from fastapi import FastAPI - -app = FastAPI() - - -def do_blocking_work(name: str) -> str: - # Some blocking I/O operation - return f"Hello {name}" - - -@app.get("/items/") -async def read_items(): - result = await asyncify(do_blocking_work)(name="World") - return {"message": result} -``` - -And run async code inside of blocking sync code with `syncify()`: - -```python -from asyncer import syncify -from fastapi import FastAPI - -app = FastAPI() - - -async def do_async_work(name: str) -> str: - return f"Hello {name}" - - -@app.get("/items/") -def read_items(): - result = syncify(do_async_work)(name="World") - return {"message": result} -``` - -## SQLModel for SQL databases - -When working with SQL databases, prefer using SQLModel as it is integrated with Pydantic and will allow declaring data validation with the same models. - -Prefer it over SQLAlchemy. - -## HTTPX - -Use HTTPX for handling HTTP communication (e.g. with other APIs). It supports sync and async usage. - -Prefer it over Requests. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/path-operations.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/path-operations.md deleted file mode 100644 index 1292c17..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/path-operations.md +++ /dev/null @@ -1,93 +0,0 @@ -# Path Operations and Routing - -## Including Routers - -When declaring routers, prefer to add router-level parameters like prefix, tags, and shared dependencies to the router itself instead of in `include_router()`. - -Do this: - -```python -from fastapi import APIRouter, FastAPI - -app = FastAPI() - -router = APIRouter(prefix="/items", tags=["items"]) - - -@router.get("/") -async def list_items(): - return [] - - -app.include_router(router) -``` - -Instead of: - -```python -# DO NOT DO THIS -from fastapi import APIRouter, FastAPI - -app = FastAPI() - -router = APIRouter() - - -@router.get("/") -async def list_items(): - return [] - - -app.include_router(router, prefix="/items", tags=["items"]) -``` - -There could be exceptions, but try to follow this convention. - -Apply shared dependencies at the router level via `dependencies=[Depends(...)]`. - -## Use one HTTP operation per function - -Don't mix HTTP operations in a single function. Having one function per HTTP operation helps separate concerns and organize the code. - -Do this: - -```python -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - - -@app.get("/items/") -async def list_items(): - return [] - - -@app.post("/items/") -async def create_item(item: Item): - return item -``` - -Instead of: - -```python -# DO NOT DO THIS -from fastapi import FastAPI, Request -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - - -@app.api_route("/items/", methods=["GET", "POST"]) -async def handle_items(request: Request): - if request.method == "GET": - return [] -``` diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/pydantic.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/pydantic.md deleted file mode 100644 index fadf99c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/pydantic.md +++ /dev/null @@ -1,93 +0,0 @@ -# Pydantic - -## Do not use Ellipsis - -Do not use `...` as a default value for required parameters or model fields. It's not needed and not recommended. - -Do this, without Ellipsis (`...`): - -```python -from typing import Annotated - -from fastapi import FastAPI, Query -from pydantic import BaseModel, Field - -app = FastAPI() - - -class Item(BaseModel): - name: str - description: str | None = None - price: float = Field(gt=0) - - -@app.post("/items/") -async def create_item(item: Item, project_id: Annotated[int, Query()]): - return item -``` - -Instead of: - -```python -# DO NOT DO THIS -from typing import Annotated - -from fastapi import FastAPI, Query -from pydantic import BaseModel, Field - -app = FastAPI() - - -class Item(BaseModel): - name: str = ... - description: str | None = None - price: float = Field(..., gt=0) - - -@app.post("/items/") -async def create_item(item: Item, project_id: Annotated[int, Query(...)]): - return item -``` - -## Do not use Pydantic RootModels - -Do not use Pydantic `RootModel`; instead use regular type annotations with `Annotated` and Pydantic validation utilities. - -For example, for a list with validations: - -```python -from typing import Annotated - -from fastapi import Body, FastAPI -from pydantic import Field - -app = FastAPI() - - -@app.post("/items/") -async def create_items(items: Annotated[list[int], Field(min_length=1), Body()]): - return items -``` - -Instead of: - -```python -# DO NOT DO THIS -from typing import Annotated - -from fastapi import FastAPI -from pydantic import Field, RootModel - -app = FastAPI() - - -class ItemList(RootModel[Annotated[list[int], Field(min_length=1)]]): - pass - - -@app.post("/items/") -async def create_items(items: ItemList): - return items -``` - -FastAPI supports these type annotations and will create a Pydantic `TypeAdapter` for them, so types work normally without custom wrapper models. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/responses.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/responses.md deleted file mode 100644 index 0908123..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/responses.md +++ /dev/null @@ -1,79 +0,0 @@ -# Responses - -## Return Type or Response Model - -When possible, include a return type. It will be used to validate, filter, document, and serialize the response. - -```python -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - description: str | None = None - - -@app.get("/items/me") -async def get_item() -> Item: - return Item(name="Plumbus", description="All-purpose home device") -``` - -Return types or response models filter data to avoid exposing sensitive information. They also let Pydantic serialize data on the Rust side for performance. - -The return type doesn't have to be a Pydantic model. It can be a different type, like a list of integers, a dict, etc. - -## When to use `response_model` - -If the return type is not the same as the type that you want to use to validate, filter, or serialize, use the `response_model` parameter on the decorator. - -```python -from typing import Any - -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - description: str | None = None - - -@app.get("/items/me", response_model=Item) -async def get_item() -> Any: - return {"name": "Foo", "description": "A very nice Item"} -``` - -This is particularly useful when filtering data to expose only the public fields and avoid exposing sensitive information. - -```python -from typing import Any - -from fastapi import FastAPI -from pydantic import BaseModel - -app = FastAPI() - - -class InternalItem(BaseModel): - name: str - description: str | None = None - secret_key: str - - -class Item(BaseModel): - name: str - description: str | None = None - - -@app.get("/items/me", response_model=Item) -async def get_item() -> Any: - item = InternalItem( - name="Foo", description="A very nice Item", secret_key="supersecret" - ) - return item -``` diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/streaming.md b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/streaming.md deleted file mode 100644 index 0832eed..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/.agents/skills/fastapi/references/streaming.md +++ /dev/null @@ -1,105 +0,0 @@ -# Streaming - -## Stream JSON Lines - -To stream JSON Lines, declare the return type and use `yield` to return the data. - -```python -@app.get("/items/stream") -async def stream_items() -> AsyncIterable[Item]: - for item in items: - yield item -``` - -## Server-Sent Events (SSE) - -To stream Server-Sent Events, use `response_class=EventSourceResponse` and `yield` items from the endpoint. - -Plain objects are automatically JSON-serialized as `data:` fields, declare the return type so the serialization is done by Pydantic: - -```python -from collections.abc import AsyncIterable - -from fastapi import FastAPI -from fastapi.sse import EventSourceResponse -from pydantic import BaseModel - -app = FastAPI() - - -class Item(BaseModel): - name: str - price: float - - -@app.get("/items/stream", response_class=EventSourceResponse) -async def stream_items() -> AsyncIterable[Item]: - yield Item(name="Plumbus", price=32.99) - yield Item(name="Portal Gun", price=999.99) -``` - -For full control over SSE fields (`event`, `id`, `retry`, `comment`), yield `ServerSentEvent` instances: - -```python -from collections.abc import AsyncIterable - -from fastapi import FastAPI -from fastapi.sse import EventSourceResponse, ServerSentEvent - -app = FastAPI() - - -@app.get("/events", response_class=EventSourceResponse) -async def stream_events() -> AsyncIterable[ServerSentEvent]: - yield ServerSentEvent(data={"status": "started"}, event="status", id="1") - yield ServerSentEvent(data={"progress": 50}, event="progress", id="2") -``` - -Use `raw_data` instead of `data` to send pre-formatted strings without JSON encoding: - -```python -yield ServerSentEvent(raw_data="plain text line", event="log") -``` - -## Stream bytes - -To stream bytes, declare a `response_class=` of `StreamingResponse` or a sub-class, and use `yield` to return the data. - -```python -from fastapi import FastAPI -from fastapi.responses import StreamingResponse -from app.utils import read_image - -app = FastAPI() - - -class PNGStreamingResponse(StreamingResponse): - media_type = "image/png" - -@app.get("/image", response_class=PNGStreamingResponse) -def stream_image_no_async_no_annotation(): - with read_image() as image_file: - yield from image_file -``` - -prefer this over returning a `StreamingResponse` directly: - -```python -# DO NOT DO THIS - -import anyio -from fastapi import FastAPI -from fastapi.responses import StreamingResponse -from app.utils import read_image - -app = FastAPI() - - -class PNGStreamingResponse(StreamingResponse): - media_type = "image/png" - - -@app.get("/") -async def main(): - return PNGStreamingResponse(read_image()) -``` diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__init__.py deleted file mode 100644 index af5117a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" - -__version__ = "0.138.2" - -from starlette import status as status - -from .applications import FastAPI as FastAPI -from .background import BackgroundTasks as BackgroundTasks -from .datastructures import UploadFile as UploadFile -from .exceptions import HTTPException as HTTPException -from .exceptions import WebSocketException as WebSocketException -from .param_functions import Body as Body -from .param_functions import Cookie as Cookie -from .param_functions import Depends as Depends -from .param_functions import File as File -from .param_functions import Form as Form -from .param_functions import Header as Header -from .param_functions import Path as Path -from .param_functions import Query as Query -from .param_functions import Security as Security -from .requests import Request as Request -from .responses import Response as Response -from .routing import APIRouter as APIRouter -from .websockets import WebSocket as WebSocket -from .websockets import WebSocketDisconnect as WebSocketDisconnect diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__main__.py deleted file mode 100644 index fc36465..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__main__.py +++ /dev/null @@ -1,3 +0,0 @@ -from fastapi.cli import main - -main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 8a8212f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index bc32f2c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/applications.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/applications.cpython-311.pyc deleted file mode 100644 index c5ec98f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/applications.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/background.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/background.cpython-311.pyc deleted file mode 100644 index f827c50..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/background.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/cli.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/cli.cpython-311.pyc deleted file mode 100644 index 1e658e1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/cli.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/concurrency.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/concurrency.cpython-311.pyc deleted file mode 100644 index ebc14d0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/concurrency.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/datastructures.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/datastructures.cpython-311.pyc deleted file mode 100644 index 1bb9382..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/datastructures.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/encoders.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/encoders.cpython-311.pyc deleted file mode 100644 index b4dd3f7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/encoders.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exception_handlers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exception_handlers.cpython-311.pyc deleted file mode 100644 index 0bcaa77..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exception_handlers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exceptions.cpython-311.pyc deleted file mode 100644 index 6c7f7d8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/logger.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/logger.cpython-311.pyc deleted file mode 100644 index 8d32e2a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/logger.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/param_functions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/param_functions.cpython-311.pyc deleted file mode 100644 index f2ad0c1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/param_functions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/params.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/params.cpython-311.pyc deleted file mode 100644 index a998aa8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/params.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/requests.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/requests.cpython-311.pyc deleted file mode 100644 index eee29a2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/requests.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/responses.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/responses.cpython-311.pyc deleted file mode 100644 index dd83d27..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/responses.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/routing.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/routing.cpython-311.pyc deleted file mode 100644 index f7a98a4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/routing.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/sse.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/sse.cpython-311.pyc deleted file mode 100644 index 1c7449d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/sse.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/staticfiles.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/staticfiles.cpython-311.pyc deleted file mode 100644 index 7c86e2b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/staticfiles.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/templating.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/templating.cpython-311.pyc deleted file mode 100644 index 125a27b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/templating.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/testclient.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/testclient.cpython-311.pyc deleted file mode 100644 index 65d1302..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/testclient.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/types.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/types.cpython-311.pyc deleted file mode 100644 index 9e7cda4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/types.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 4700125..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/websockets.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/websockets.cpython-311.pyc deleted file mode 100644 index 09ef9e8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/__pycache__/websockets.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__init__.py deleted file mode 100644 index 4581c38..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__init__.py +++ /dev/null @@ -1,40 +0,0 @@ -from .shared import PYDANTIC_VERSION_MINOR_TUPLE as PYDANTIC_VERSION_MINOR_TUPLE -from .shared import annotation_is_pydantic_v1 as annotation_is_pydantic_v1 -from .shared import field_annotation_is_scalar as field_annotation_is_scalar -from .shared import ( - field_annotation_is_scalar_sequence as field_annotation_is_scalar_sequence, -) -from .shared import field_annotation_is_sequence as field_annotation_is_sequence -from .shared import ( - is_bytes_or_nonable_bytes_annotation as is_bytes_or_nonable_bytes_annotation, -) -from .shared import is_bytes_sequence_annotation as is_bytes_sequence_annotation -from .shared import is_pydantic_v1_model_instance as is_pydantic_v1_model_instance -from .shared import ( - is_uploadfile_or_nonable_uploadfile_annotation as is_uploadfile_or_nonable_uploadfile_annotation, -) -from .shared import ( - is_uploadfile_sequence_annotation as is_uploadfile_sequence_annotation, -) -from .shared import lenient_issubclass as lenient_issubclass -from .shared import sequence_types as sequence_types -from .shared import value_is_sequence as value_is_sequence -from .v2 import ModelField as ModelField -from .v2 import PydanticSchemaGenerationError as PydanticSchemaGenerationError -from .v2 import RequiredParam as RequiredParam -from .v2 import Undefined as Undefined -from .v2 import Url as Url -from .v2 import copy_field_info as copy_field_info -from .v2 import create_body_model as create_body_model -from .v2 import evaluate_forwardref as evaluate_forwardref -from .v2 import get_cached_model_fields as get_cached_model_fields -from .v2 import get_definitions as get_definitions -from .v2 import get_flat_models_from_fields as get_flat_models_from_fields -from .v2 import get_missing_field_error as get_missing_field_error -from .v2 import get_model_name_map as get_model_name_map -from .v2 import get_schema_from_model_field as get_schema_from_model_field -from .v2 import is_scalar_field as is_scalar_field -from .v2 import serialize_sequence_value as serialize_sequence_value -from .v2 import ( - with_info_plain_validator_function as with_info_plain_validator_function, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e4b985d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/shared.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/shared.cpython-311.pyc deleted file mode 100644 index f816723..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/shared.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/v2.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/v2.cpython-311.pyc deleted file mode 100644 index f3f6782..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/__pycache__/v2.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/shared.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/shared.py deleted file mode 100644 index bd38c55..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/shared.py +++ /dev/null @@ -1,214 +0,0 @@ -import types -import typing -import warnings -from collections import deque -from collections.abc import Mapping, Sequence -from dataclasses import is_dataclass -from typing import ( - Annotated, - Any, - TypeGuard, - TypeVar, - Union, - get_args, - get_origin, -) - -from fastapi.types import UnionType -from pydantic import BaseModel -from pydantic.version import VERSION as PYDANTIC_VERSION -from starlette.datastructures import UploadFile - -_T = TypeVar("_T") - -# Copy from Pydantic: pydantic/_internal/_typing_extra.py -WithArgsTypes: tuple[Any, ...] = ( - typing._GenericAlias, # type: ignore[attr-defined] # ty: ignore[unresolved-attribute] - types.GenericAlias, - types.UnionType, -) # pyright: ignore[reportAttributeAccessIssue] - -PYDANTIC_VERSION_MINOR_TUPLE = tuple(int(x) for x in PYDANTIC_VERSION.split(".")[:2]) - - -sequence_annotation_to_type = { - Sequence: list, - list: list, - tuple: tuple, - set: set, - frozenset: frozenset, - deque: deque, -} - -sequence_types: tuple[type[Any], ...] = tuple(sequence_annotation_to_type.keys()) - - -# Copy of Pydantic: pydantic/_internal/_utils.py with added TypeGuard -def lenient_issubclass( - cls: Any, class_or_tuple: type[_T] | tuple[type[_T], ...] | None -) -> TypeGuard[type[_T]]: - try: - return isinstance(cls, type) and issubclass(cls, class_or_tuple) # type: ignore[arg-type] # ty: ignore[invalid-argument-type] - except TypeError: # pragma: no cover - if isinstance(cls, WithArgsTypes): - return False - raise # pragma: no cover - - -def _annotation_is_sequence(annotation: type[Any] | None) -> bool: - if lenient_issubclass(annotation, (str, bytes)): - return False - return lenient_issubclass(annotation, sequence_types) - - -def field_annotation_is_sequence(annotation: type[Any] | None) -> bool: - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - for arg in get_args(annotation): - if field_annotation_is_sequence(arg): - return True - return False - return _annotation_is_sequence(annotation) or _annotation_is_sequence( - get_origin(annotation) - ) - - -def value_is_sequence(value: Any) -> bool: - return isinstance(value, sequence_types) and not isinstance(value, (str, bytes)) - - -def _annotation_is_complex(annotation: type[Any] | None) -> bool: - return ( - lenient_issubclass(annotation, (BaseModel, Mapping, UploadFile)) - or _annotation_is_sequence(annotation) - or is_dataclass(annotation) - ) - - -def field_annotation_is_complex(annotation: type[Any] | None) -> bool: - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - return any(field_annotation_is_complex(arg) for arg in get_args(annotation)) - - if origin is Annotated: - return field_annotation_is_complex(get_args(annotation)[0]) - - return ( - _annotation_is_complex(annotation) - or _annotation_is_complex(origin) - or hasattr(origin, "__pydantic_core_schema__") - or hasattr(origin, "__get_pydantic_core_schema__") - ) - - -def field_annotation_is_scalar(annotation: Any) -> bool: - # handle Ellipsis here to make tuple[int, ...] work nicely - return annotation is Ellipsis or not field_annotation_is_complex(annotation) - - -def field_annotation_is_scalar_sequence(annotation: type[Any] | None) -> bool: - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - at_least_one_scalar_sequence = False - for arg in get_args(annotation): - if field_annotation_is_scalar_sequence(arg): - at_least_one_scalar_sequence = True - continue - elif not field_annotation_is_scalar(arg): - return False - return at_least_one_scalar_sequence - return field_annotation_is_sequence(annotation) and all( - field_annotation_is_scalar(sub_annotation) - for sub_annotation in get_args(annotation) - ) - - -def is_bytes_or_nonable_bytes_annotation(annotation: Any) -> bool: - if lenient_issubclass(annotation, bytes): - return True - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - for arg in get_args(annotation): - if lenient_issubclass(arg, bytes): - return True - return False - - -def is_uploadfile_or_nonable_uploadfile_annotation(annotation: Any) -> bool: - if lenient_issubclass(annotation, UploadFile): - return True - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - for arg in get_args(annotation): - if lenient_issubclass(arg, UploadFile): - return True - return False - - -def is_bytes_sequence_annotation(annotation: Any) -> bool: - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - at_least_one = False - for arg in get_args(annotation): - if is_bytes_sequence_annotation(arg): - at_least_one = True - continue - return at_least_one - return field_annotation_is_sequence(annotation) and all( - is_bytes_or_nonable_bytes_annotation(sub_annotation) - for sub_annotation in get_args(annotation) - ) - - -def is_uploadfile_sequence_annotation(annotation: Any) -> bool: - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - at_least_one = False - for arg in get_args(annotation): - if is_uploadfile_sequence_annotation(arg): - at_least_one = True - continue - return at_least_one - return field_annotation_is_sequence(annotation) and all( - is_uploadfile_or_nonable_uploadfile_annotation(sub_annotation) - for sub_annotation in get_args(annotation) - ) - - -def is_pydantic_v1_model_instance(obj: Any) -> bool: - # TODO: remove this function once the required version of Pydantic fully - # removes pydantic.v1 - try: - with warnings.catch_warnings(): - warnings.simplefilter("ignore", UserWarning) - from pydantic import v1 - except ImportError: # pragma: no cover - return False - return isinstance(obj, v1.BaseModel) - - -def is_pydantic_v1_model_class(cls: Any) -> bool: - # TODO: remove this function once the required version of Pydantic fully - # removes pydantic.v1 - try: - with warnings.catch_warnings(): - warnings.simplefilter("ignore", UserWarning) - from pydantic import v1 - except ImportError: # pragma: no cover - return False - return lenient_issubclass(cls, v1.BaseModel) - - -def annotation_is_pydantic_v1(annotation: Any) -> bool: - if is_pydantic_v1_model_class(annotation): - return True - origin = get_origin(annotation) - if origin is Union or origin is UnionType: - for arg in get_args(annotation): - if is_pydantic_v1_model_class(arg): - return True - if field_annotation_is_sequence(annotation): - for sub_annotation in get_args(annotation): - if annotation_is_pydantic_v1(sub_annotation): - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/v2.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/v2.py deleted file mode 100644 index 7be686d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/_compat/v2.py +++ /dev/null @@ -1,493 +0,0 @@ -import re -import warnings -from collections.abc import Sequence -from copy import copy -from dataclasses import dataclass, is_dataclass -from enum import Enum -from functools import lru_cache -from typing import ( - Annotated, - Any, - Literal, - Union, - cast, - get_args, - get_origin, -) - -from fastapi._compat import lenient_issubclass, shared -from fastapi.openapi.constants import REF_TEMPLATE -from fastapi.types import IncEx, ModelNameMap, UnionType -from pydantic import BaseModel, ConfigDict, Field, TypeAdapter, create_model -from pydantic import PydanticSchemaGenerationError as PydanticSchemaGenerationError -from pydantic import PydanticUndefinedAnnotation as PydanticUndefinedAnnotation -from pydantic import ValidationError as ValidationError -from pydantic._internal import _typing_extra as _pydantic_typing_extra -from pydantic._internal._schema_generation_shared import ( # type: ignore[attr-defined] - GetJsonSchemaHandler as GetJsonSchemaHandler, -) -from pydantic.fields import FieldInfo as FieldInfo -from pydantic.json_schema import GenerateJsonSchema as _GenerateJsonSchema -from pydantic.json_schema import JsonSchemaValue as JsonSchemaValue -from pydantic_core import CoreSchema as CoreSchema -from pydantic_core import PydanticUndefined -from pydantic_core import Url as Url -from pydantic_core.core_schema import ( - with_info_plain_validator_function as with_info_plain_validator_function, -) - -RequiredParam = PydanticUndefined -Undefined = PydanticUndefined - - -def evaluate_forwardref( - value: Any, - globalns: dict[str, Any] | None = None, - localns: dict[str, Any] | None = None, -) -> Any: - # eval_type_lenient has been deprecated since Pydantic v2.10.0b1 (PR #10530) - try_eval_type = getattr(_pydantic_typing_extra, "try_eval_type", None) - if try_eval_type is not None: - return try_eval_type(value, globalns, localns)[0] - return _pydantic_typing_extra.eval_type_lenient( # ty: ignore[deprecated] - value, globalns, localns - ) - - -class GenerateJsonSchema(_GenerateJsonSchema): - # TODO: remove when this is merged (or equivalent): https://github.com/pydantic/pydantic/pull/12841 - # and dropping support for any version of Pydantic before that one (so, in a very long time) - def bytes_schema(self, schema: CoreSchema) -> JsonSchemaValue: - json_schema = {"type": "string", "contentMediaType": "application/octet-stream"} - bytes_mode = ( - self._config.ser_json_bytes - if self.mode == "serialization" - else self._config.val_json_bytes - ) - if bytes_mode == "base64": - json_schema["contentEncoding"] = "base64" - self.update_with_validations(json_schema, schema, self.ValidationsMapping.bytes) - return json_schema - - -# TODO: remove when dropping support for Pydantic < v2.12.3 -_Attrs = { - "default": ..., - "default_factory": None, - "alias": None, - "alias_priority": None, - "validation_alias": None, - "serialization_alias": None, - "title": None, - "field_title_generator": None, - "description": None, - "examples": None, - "exclude": None, - "exclude_if": None, - "discriminator": None, - "deprecated": None, - "json_schema_extra": None, - "frozen": None, - "validate_default": None, - "repr": True, - "init": None, - "init_var": None, - "kw_only": None, -} - - -# TODO: remove when dropping support for Pydantic < v2.12.3 -def asdict(field_info: FieldInfo) -> dict[str, Any]: - attributes = {} - for attr in _Attrs: - value = getattr(field_info, attr, Undefined) - if value is not Undefined: - attributes[attr] = value - return { - "annotation": field_info.annotation, - "metadata": field_info.metadata, - "attributes": attributes, - } - - -@dataclass -class ModelField: - field_info: FieldInfo - name: str - mode: Literal["validation", "serialization"] = "validation" - config: ConfigDict | None = None - - @property - def alias(self) -> str: - a = self.field_info.alias - return a if a is not None else self.name - - @property - def validation_alias(self) -> str | None: - va = self.field_info.validation_alias - if isinstance(va, str) and va: - return va - return None - - @property - def serialization_alias(self) -> str | None: - sa = self.field_info.serialization_alias - return sa or None - - @property - def default(self) -> Any: - return self.get_default() - - def __post_init__(self) -> None: - with warnings.catch_warnings(): - # Pydantic >= 2.12.0 warns about field specific metadata that is unused - # (e.g. `TypeAdapter(Annotated[int, Field(alias='b')])`). In some cases, we - # end up building the type adapter from a model field annotation so we - # need to ignore the warning: - if shared.PYDANTIC_VERSION_MINOR_TUPLE >= (2, 12): - from pydantic.warnings import UnsupportedFieldAttributeWarning - - warnings.simplefilter( - "ignore", category=UnsupportedFieldAttributeWarning - ) - # TODO: remove after setting the min Pydantic to v2.12.3 - # that adds asdict(), and use self.field_info.asdict() instead - field_dict = asdict(self.field_info) - annotated_args = ( - field_dict["annotation"], - *field_dict["metadata"], - # this FieldInfo needs to be created again so that it doesn't include - # the old field info metadata and only the rest of the attributes - Field(**field_dict["attributes"]), - ) - self._type_adapter: TypeAdapter[Any] = TypeAdapter( - Annotated[annotated_args], # ty: ignore[invalid-type-form] - config=self.config, - ) - - def get_default(self) -> Any: - if self.field_info.is_required(): - return Undefined - return self.field_info.get_default(call_default_factory=True) - - def validate( - self, - value: Any, - values: dict[str, Any] = {}, # noqa: B006 - *, - loc: tuple[int | str, ...] = (), - ) -> tuple[Any, list[dict[str, Any]]]: - try: - return ( - self._type_adapter.validate_python(value, from_attributes=True), - [], - ) - except ValidationError as exc: - return None, _regenerate_error_with_loc( - errors=exc.errors(include_url=False), loc_prefix=loc - ) - - def serialize( - self, - value: Any, - *, - mode: Literal["json", "python"] = "json", - include: IncEx | None = None, - exclude: IncEx | None = None, - by_alias: bool = True, - exclude_unset: bool = False, - exclude_defaults: bool = False, - exclude_none: bool = False, - ) -> Any: - # What calls this code passes a value that already called - # self._type_adapter.validate_python(value) - return self._type_adapter.dump_python( - value, - mode=mode, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - ) - - def serialize_json( - self, - value: Any, - *, - include: IncEx | None = None, - exclude: IncEx | None = None, - by_alias: bool = True, - exclude_unset: bool = False, - exclude_defaults: bool = False, - exclude_none: bool = False, - ) -> bytes: - # What calls this code passes a value that already called - # self._type_adapter.validate_python(value) - # This uses Pydantic's dump_json() which serializes directly to JSON - # bytes in one pass (via Rust), avoiding the intermediate Python dict - # step of dump_python(mode="json") + json.dumps(). - return self._type_adapter.dump_json( - value, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - ) - - def __hash__(self) -> int: - # Each ModelField is unique for our purposes, to allow making a dict from - # ModelField to its JSON Schema. - return id(self) - - -def _has_computed_fields(field: ModelField) -> bool: - computed_fields = field._type_adapter.core_schema.get("schema", {}).get( - "computed_fields", [] - ) - return len(computed_fields) > 0 - - -def get_schema_from_model_field( - *, - field: ModelField, - model_name_map: ModelNameMap, - field_mapping: dict[ - tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue - ], - separate_input_output_schemas: bool = True, -) -> dict[str, Any]: - override_mode: Literal["validation"] | None = ( - None - if (separate_input_output_schemas or _has_computed_fields(field)) - else "validation" - ) - field_alias = ( - (field.validation_alias or field.alias) - if field.mode == "validation" - else (field.serialization_alias or field.alias) - ) - - # This expects that GenerateJsonSchema was already used to generate the definitions - json_schema = field_mapping[(field, override_mode or field.mode)] - if "$ref" not in json_schema: - # TODO remove when deprecating Pydantic v1 - # Ref: https://github.com/pydantic/pydantic/blob/d61792cc42c80b13b23e3ffa74bc37ec7c77f7d1/pydantic/schema.py#L207 - json_schema["title"] = field.field_info.title or field_alias.title().replace( - "_", " " - ) - return json_schema - - -def get_definitions( - *, - fields: Sequence[ModelField], - model_name_map: ModelNameMap, - separate_input_output_schemas: bool = True, -) -> tuple[ - dict[tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue], - dict[str, dict[str, Any]], -]: - schema_generator = GenerateJsonSchema(ref_template=REF_TEMPLATE) - validation_fields = [field for field in fields if field.mode == "validation"] - serialization_fields = [field for field in fields if field.mode == "serialization"] - flat_validation_models = get_flat_models_from_fields( - validation_fields, known_models=set() - ) - flat_serialization_models = get_flat_models_from_fields( - serialization_fields, known_models=set() - ) - flat_validation_model_fields = [ - ModelField( - field_info=FieldInfo(annotation=model), - name=model.__name__, - mode="validation", - ) - for model in flat_validation_models - ] - flat_serialization_model_fields = [ - ModelField( - field_info=FieldInfo(annotation=model), - name=model.__name__, - mode="serialization", - ) - for model in flat_serialization_models - ] - flat_model_fields = flat_validation_model_fields + flat_serialization_model_fields - input_types = {f.field_info.annotation for f in fields} - unique_flat_model_fields = { - f for f in flat_model_fields if f.field_info.annotation not in input_types - } - inputs = [ - ( - field, - ( - field.mode - if (separate_input_output_schemas or _has_computed_fields(field)) - else "validation" - ), - field._type_adapter.core_schema, - ) - for field in list(fields) + list(unique_flat_model_fields) - ] - field_mapping, definitions = schema_generator.generate_definitions(inputs=inputs) - for item_def in cast(dict[str, dict[str, Any]], definitions).values(): - if "description" in item_def: - item_description = cast(str, item_def["description"]).split("\f")[0] - item_def["description"] = item_description - # definitions: dict[DefsRef, dict[str, Any]] - # but mypy complains about general str in other places that are not declared as - # DefsRef, although DefsRef is just str: - # DefsRef = NewType('DefsRef', str) - # So, a cast to simplify the types here - return field_mapping, cast(dict[str, dict[str, Any]], definitions) - - -def is_scalar_field(field: ModelField) -> bool: - from fastapi import params - - return shared.field_annotation_is_scalar( - field.field_info.annotation - ) and not isinstance(field.field_info, params.Body) - - -def copy_field_info(*, field_info: FieldInfo, annotation: Any) -> FieldInfo: - cls = type(field_info) - merged_field_info = cls.from_annotation(annotation) - new_field_info = copy(field_info) - new_field_info.metadata = merged_field_info.metadata - new_field_info.annotation = merged_field_info.annotation - return new_field_info - - -def serialize_sequence_value(*, field: ModelField, value: Any) -> Sequence[Any]: - origin_type = get_origin(field.field_info.annotation) or field.field_info.annotation - if origin_type is Union or origin_type is UnionType: # Handle optional sequences - union_args = get_args(field.field_info.annotation) - for union_arg in union_args: - if union_arg is type(None): - continue - origin_type = get_origin(union_arg) or union_arg - break - assert issubclass(origin_type, shared.sequence_types) # type: ignore[arg-type] # ty: ignore[invalid-argument-type] - return shared.sequence_annotation_to_type[origin_type](value) # type: ignore[no-any-return,index] # ty: ignore[invalid-return-type] - - -def get_missing_field_error(loc: tuple[int | str, ...]) -> dict[str, Any]: - error = ValidationError.from_exception_data( - "Field required", [{"type": "missing", "loc": loc, "input": {}}] - ).errors(include_url=False)[0] - error["input"] = None - return error # type: ignore[return-value] # ty: ignore[invalid-return-type] - - -def create_body_model( - *, fields: Sequence[ModelField], model_name: str -) -> type[BaseModel]: - field_params = {f.name: (f.field_info.annotation, f.field_info) for f in fields} - BodyModel: type[BaseModel] = create_model(model_name, **field_params) # type: ignore[call-overload] # ty: ignore[no-matching-overload] - return BodyModel - - -def get_model_fields(model: type[BaseModel]) -> list[ModelField]: - model_fields: list[ModelField] = [] - for name, field_info in model.model_fields.items(): - type_ = field_info.annotation - if lenient_issubclass(type_, (BaseModel, dict)) or is_dataclass(type_): - model_config = None - else: - model_config = model.model_config - model_fields.append( - ModelField( - field_info=field_info, - name=name, - config=model_config, - ) - ) - return model_fields - - -@lru_cache -def get_cached_model_fields(model: type[BaseModel]) -> list[ModelField]: - return get_model_fields(model) - - -# Duplicate of several schema functions from Pydantic v1 to make them compatible with -# Pydantic v2 and allow mixing the models - -TypeModelOrEnum = type["BaseModel"] | type[Enum] -TypeModelSet = set[TypeModelOrEnum] - - -def normalize_name(name: str) -> str: - return re.sub(r"[^a-zA-Z0-9.\-_]", "_", name) - - -def get_model_name_map(unique_models: TypeModelSet) -> dict[TypeModelOrEnum, str]: - name_model_map = {} - for model in unique_models: - model_name = normalize_name(model.__name__) - name_model_map[model_name] = model - return {v: k for k, v in name_model_map.items()} - - -def get_flat_models_from_model( - model: type["BaseModel"], known_models: TypeModelSet | None = None -) -> TypeModelSet: - known_models = known_models or set() - fields = get_model_fields(model) - get_flat_models_from_fields(fields, known_models=known_models) - return known_models - - -def get_flat_models_from_annotation( - annotation: Any, known_models: TypeModelSet -) -> TypeModelSet: - origin = get_origin(annotation) - if origin is not None: - for arg in get_args(annotation): - if lenient_issubclass(arg, (BaseModel, Enum)): - if arg not in known_models: - known_models.add(arg) # type: ignore[arg-type] - if lenient_issubclass(arg, BaseModel): - get_flat_models_from_model(arg, known_models=known_models) - else: - get_flat_models_from_annotation(arg, known_models=known_models) - return known_models - - -def get_flat_models_from_field( - field: ModelField, known_models: TypeModelSet -) -> TypeModelSet: - field_type = field.field_info.annotation - if lenient_issubclass(field_type, BaseModel): - if field_type in known_models: - return known_models - known_models.add(field_type) - get_flat_models_from_model(field_type, known_models=known_models) - elif lenient_issubclass(field_type, Enum): - known_models.add(field_type) - else: - get_flat_models_from_annotation(field_type, known_models=known_models) - return known_models - - -def get_flat_models_from_fields( - fields: Sequence[ModelField], known_models: TypeModelSet -) -> TypeModelSet: - for field in fields: - get_flat_models_from_field(field, known_models=known_models) - return known_models - - -def _regenerate_error_with_loc( - *, errors: Sequence[Any], loc_prefix: tuple[str | int, ...] -) -> list[dict[str, Any]]: - updated_loc_errors: list[Any] = [ - {**err, "loc": loc_prefix + err.get("loc", ())} for err in errors - ] - - return updated_loc_errors diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/applications.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/applications.py deleted file mode 100644 index 56e1a3e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/applications.py +++ /dev/null @@ -1,4768 +0,0 @@ -import os -from collections.abc import Awaitable, Callable, Coroutine, Sequence -from enum import Enum -from typing import Annotated, Any, Literal, TypeVar - -from annotated_doc import Doc -from fastapi import routing -from fastapi.datastructures import Default, DefaultPlaceholder -from fastapi.exception_handlers import ( - http_exception_handler, - request_validation_exception_handler, - websocket_request_validation_exception_handler, -) -from fastapi.exceptions import RequestValidationError, WebSocketRequestValidationError -from fastapi.logger import logger -from fastapi.middleware.asyncexitstack import AsyncExitStackMiddleware -from fastapi.openapi.docs import ( - get_redoc_html, - get_swagger_ui_html, - get_swagger_ui_oauth2_redirect_html, -) -from fastapi.openapi.utils import get_openapi -from fastapi.params import Depends -from fastapi.types import DecoratedCallable, IncEx -from fastapi.utils import generate_unique_id -from starlette.applications import Starlette -from starlette.datastructures import State -from starlette.exceptions import HTTPException -from starlette.middleware import Middleware -from starlette.middleware.base import BaseHTTPMiddleware -from starlette.middleware.errors import ServerErrorMiddleware -from starlette.middleware.exceptions import ExceptionMiddleware -from starlette.requests import Request -from starlette.responses import HTMLResponse, JSONResponse, Response -from starlette.routing import BaseRoute -from starlette.types import ASGIApp, ExceptionHandler, Lifespan, Receive, Scope, Send -from typing_extensions import deprecated - -AppType = TypeVar("AppType", bound="FastAPI") - - -class FastAPI(Starlette): - """ - `FastAPI` app class, the main entrypoint to use FastAPI. - - Read more in the - [FastAPI docs for First Steps](https://fastapi.tiangolo.com/tutorial/first-steps/). - - ## Example - - ```python - from fastapi import FastAPI - - app = FastAPI() - ``` - """ - - def __init__( - self: AppType, - *, - debug: Annotated[ - bool, - Doc( - """ - Boolean indicating if debug tracebacks should be returned on server - errors. - - Read more in the - [Starlette docs for Applications](https://www.starlette.dev/applications/#instantiating-the-application). - """ - ), - ] = False, - routes: Annotated[ - list[BaseRoute] | None, - Doc( - """ - **Note**: you probably shouldn't use this parameter, it is inherited - from Starlette and supported for compatibility. - - --- - - A list of routes to serve incoming HTTP and WebSocket requests. - """ - ), - deprecated( - """ - You normally wouldn't use this parameter with FastAPI, it is inherited - from Starlette and supported for compatibility. - - In FastAPI, you normally would use the *path operation methods*, - like `app.get()`, `app.post()`, etc. - """ - ), - ] = None, - title: Annotated[ - str, - Doc( - """ - The title of the API. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(title="ChimichangApp") - ``` - """ - ), - ] = "FastAPI", - summary: Annotated[ - str | None, - Doc( - """ - A short summary of the API. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(summary="Deadpond's favorite app. Nuff said.") - ``` - """ - ), - ] = None, - description: Annotated[ - str, - Doc( - ''' - A description of the API. Supports Markdown (using - [CommonMark syntax](https://commonmark.org/)). - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI( - description=""" - ChimichangApp API helps you do awesome stuff. 🚀 - - ## Items - - You can **read items**. - - ## Users - - You will be able to: - - * **Create users** (_not implemented_). - * **Read users** (_not implemented_). - - """ - ) - ``` - ''' - ), - ] = "", - version: Annotated[ - str, - Doc( - """ - The version of the API. - - **Note** This is the version of your application, not the version of - the OpenAPI specification nor the version of FastAPI being used. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(version="0.0.1") - ``` - """ - ), - ] = "0.1.0", - openapi_url: Annotated[ - str | None, - Doc( - """ - The URL where the OpenAPI schema will be served from. - - If you set it to `None`, no OpenAPI schema will be served publicly, and - the default automatic endpoints `/docs` and `/redoc` will also be - disabled. - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#openapi-url). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(openapi_url="/api/v1/openapi.json") - ``` - """ - ), - ] = "/openapi.json", - openapi_tags: Annotated[ - list[dict[str, Any]] | None, - Doc( - """ - A list of tags used by OpenAPI, these are the same `tags` you can set - in the *path operations*, like: - - * `@app.get("/users/", tags=["users"])` - * `@app.get("/items/", tags=["items"])` - - The order of the tags can be used to specify the order shown in - tools like Swagger UI, used in the automatic path `/docs`. - - It's not required to specify all the tags used. - - The tags that are not declared MAY be organized randomly or based - on the tools' logic. Each tag name in the list MUST be unique. - - The value of each item is a `dict` containing: - - * `name`: The name of the tag. - * `description`: A short description of the tag. - [CommonMark syntax](https://commonmark.org/) MAY be used for rich - text representation. - * `externalDocs`: Additional external documentation for this tag. If - provided, it would contain a `dict` with: - * `description`: A short description of the target documentation. - [CommonMark syntax](https://commonmark.org/) MAY be used for - rich text representation. - * `url`: The URL for the target documentation. Value MUST be in - the form of a URL. - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-tags). - - **Example** - - ```python - from fastapi import FastAPI - - tags_metadata = [ - { - "name": "users", - "description": "Operations with users. The **login** logic is also here.", - }, - { - "name": "items", - "description": "Manage items. So _fancy_ they have their own docs.", - "externalDocs": { - "description": "Items external docs", - "url": "https://fastapi.tiangolo.com/", - }, - }, - ] - - app = FastAPI(openapi_tags=tags_metadata) - ``` - """ - ), - ] = None, - servers: Annotated[ - list[dict[str, str | Any]] | None, - Doc( - """ - A `list` of `dict`s with connectivity information to a target server. - - You would use it, for example, if your application is served from - different domains and you want to use the same Swagger UI in the - browser to interact with each of them (instead of having multiple - browser tabs open). Or if you want to leave fixed the possible URLs. - - If the servers `list` is not provided, or is an empty `list`, the - `servers` property in the generated OpenAPI will be: - - * a `dict` with a `url` value of the application's mounting point - (`root_path`) if it's different from `/`. - * otherwise, the `servers` property will be omitted from the OpenAPI - schema. - - Each item in the `list` is a `dict` containing: - - * `url`: A URL to the target host. This URL supports Server Variables - and MAY be relative, to indicate that the host location is relative - to the location where the OpenAPI document is being served. Variable - substitutions will be made when a variable is named in `{`brackets`}`. - * `description`: An optional string describing the host designated by - the URL. [CommonMark syntax](https://commonmark.org/) MAY be used for - rich text representation. - * `variables`: A `dict` between a variable name and its value. The value - is used for substitution in the server's URL template. - - Read more in the - [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/#additional-servers). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI( - servers=[ - {"url": "https://stag.example.com", "description": "Staging environment"}, - {"url": "https://prod.example.com", "description": "Production environment"}, - ] - ) - ``` - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of global dependencies, they will be applied to each - *path operation*, including in sub-routers. - - Read more about it in the - [FastAPI docs for Global Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/global-dependencies/). - - **Example** - - ```python - from fastapi import Depends, FastAPI - - from .dependencies import func_dep_1, func_dep_2 - - app = FastAPI(dependencies=[Depends(func_dep_1), Depends(func_dep_2)]) - ``` - """ - ), - ] = None, - default_response_class: Annotated[ - type[Response], - Doc( - """ - The default response class to be used. - - Read more in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). - - **Example** - - ```python - from fastapi import FastAPI - from fastapi.responses import ORJSONResponse - - app = FastAPI(default_response_class=ORJSONResponse) - ``` - """ - ), - ] = Default(JSONResponse), - redirect_slashes: Annotated[ - bool, - Doc( - """ - Whether to detect and redirect slashes in URLs when the client doesn't - use the same format. - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(redirect_slashes=True) # the default - - @app.get("/items/") - async def read_items(): - return [{"item_id": "Foo"}] - ``` - - With this app, if a client goes to `/items` (without a trailing slash), - they will be automatically redirected with an HTTP status code of 307 - to `/items/`. - """ - ), - ] = True, - docs_url: Annotated[ - str | None, - Doc( - """ - The path to the automatic interactive API documentation. - It is handled in the browser by Swagger UI. - - The default URL is `/docs`. You can disable it by setting it to `None`. - - If `openapi_url` is set to `None`, this will be automatically disabled. - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(docs_url="/documentation", redoc_url=None) - ``` - """ - ), - ] = "/docs", - redoc_url: Annotated[ - str | None, - Doc( - """ - The path to the alternative automatic interactive API documentation - provided by ReDoc. - - The default URL is `/redoc`. You can disable it by setting it to `None`. - - If `openapi_url` is set to `None`, this will be automatically disabled. - - Read more in the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(docs_url="/documentation", redoc_url="redocumentation") - ``` - """ - ), - ] = "/redoc", - swagger_ui_oauth2_redirect_url: Annotated[ - str | None, - Doc( - """ - The OAuth2 redirect endpoint for the Swagger UI. - - By default it is `/docs/oauth2-redirect`. - - This is only used if you use OAuth2 (with the "Authorize" button) - with Swagger UI. - """ - ), - ] = "/docs/oauth2-redirect", - swagger_ui_init_oauth: Annotated[ - dict[str, Any] | None, - Doc( - """ - OAuth2 configuration for the Swagger UI, by default shown at `/docs`. - - Read more about the available configuration options in the - [Swagger UI docs](https://swagger.io/docs/open-source-tools/swagger-ui/usage/oauth2/). - """ - ), - ] = None, - middleware: Annotated[ - Sequence[Middleware] | None, - Doc( - """ - List of middleware to be added when creating the application. - - In FastAPI you would normally do this with `app.add_middleware()` - instead. - - Read more in the - [FastAPI docs for Middleware](https://fastapi.tiangolo.com/tutorial/middleware/). - """ - ), - ] = None, - exception_handlers: Annotated[ - dict[ - int | type[Exception], - Callable[[Request, Any], Coroutine[Any, Any, Response]], - ] - | None, - Doc( - """ - A dictionary with handlers for exceptions. - - In FastAPI, you would normally use the decorator - `@app.exception_handler()`. - - Read more in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). - """ - ), - ] = None, - on_startup: Annotated[ - Sequence[Callable[[], Any]] | None, - Doc( - """ - A list of startup event handler functions. - - You should instead use the `lifespan` handlers. - - Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - on_shutdown: Annotated[ - Sequence[Callable[[], Any]] | None, - Doc( - """ - A list of shutdown event handler functions. - - You should instead use the `lifespan` handlers. - - Read more in the - [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - lifespan: Annotated[ - Lifespan[AppType] | None, - Doc( - """ - A `Lifespan` context manager handler. This replaces `startup` and - `shutdown` functions with a single context manager. - - Read more in the - [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - terms_of_service: Annotated[ - str | None, - Doc( - """ - A URL to the Terms of Service for your API. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more at the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - app = FastAPI(terms_of_service="http://example.com/terms/") - ``` - """ - ), - ] = None, - contact: Annotated[ - dict[str, str | Any] | None, - Doc( - """ - A dictionary with the contact information for the exposed API. - - It can contain several fields. - - * `name`: (`str`) The name of the contact person/organization. - * `url`: (`str`) A URL pointing to the contact information. MUST be in - the format of a URL. - * `email`: (`str`) The email address of the contact person/organization. - MUST be in the format of an email address. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more at the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - app = FastAPI( - contact={ - "name": "Deadpoolio the Amazing", - "url": "http://x-force.example.com/contact/", - "email": "dp@x-force.example.com", - } - ) - ``` - """ - ), - ] = None, - license_info: Annotated[ - dict[str, str | Any] | None, - Doc( - """ - A dictionary with the license information for the exposed API. - - It can contain several fields. - - * `name`: (`str`) **REQUIRED** (if a `license_info` is set). The - license name used for the API. - * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression - for the API. The `identifier` field is mutually exclusive of the `url` - field. Available since OpenAPI 3.1.0, FastAPI 0.99.0. - * `url`: (`str`) A URL to the license used for the API. This MUST be - the format of a URL. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more at the - [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-api). - - **Example** - - ```python - app = FastAPI( - license_info={ - "name": "Apache 2.0", - "url": "https://www.apache.org/licenses/LICENSE-2.0.html", - } - ) - ``` - """ - ), - ] = None, - openapi_prefix: Annotated[ - str, - Doc( - """ - A URL prefix for the OpenAPI URL. - """ - ), - deprecated( - """ - "openapi_prefix" has been deprecated in favor of "root_path", which - follows more closely the ASGI standard, is simpler, and more - automatic. - """ - ), - ] = "", - root_path: Annotated[ - str, - Doc( - """ - A path prefix handled by a proxy that is not seen by the application - but is seen by external clients, which affects things like Swagger UI. - - Read more about it at the - [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(root_path="/api/v1") - ``` - """ - ), - ] = "", - root_path_in_servers: Annotated[ - bool, - Doc( - """ - To disable automatically generating the URLs in the `servers` field - in the autogenerated OpenAPI using the `root_path`. - - Read more about it in the - [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/#disable-automatic-server-from-root-path). - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI(root_path_in_servers=False) - ``` - """ - ), - ] = True, - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses to be shown in OpenAPI. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). - - And in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - OpenAPI callbacks that should apply to all *path operations*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - webhooks: Annotated[ - routing.APIRouter | None, - Doc( - """ - Add OpenAPI webhooks. This is similar to `callbacks` but it doesn't - depend on specific *path operations*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - **Note**: This is available since OpenAPI 3.1.0, FastAPI 0.99.0. - - Read more about it in the - [FastAPI docs for OpenAPI Webhooks](https://fastapi.tiangolo.com/advanced/openapi-webhooks/). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark all *path operations* as deprecated. You probably don't need it, - but it's available. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#deprecate-a-path-operation). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) all the *path operations* in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - swagger_ui_parameters: Annotated[ - dict[str, Any] | None, - Doc( - """ - Parameters to configure Swagger UI, the autogenerated interactive API - documentation (by default at `/docs`). - - Read more about it in the - [FastAPI docs about how to Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - separate_input_output_schemas: Annotated[ - bool, - Doc( - """ - Whether to generate separate OpenAPI schemas for request body and - response body when the results would be more precise. - - This is particularly useful when automatically generating clients. - - For example, if you have a model like: - - ```python - from pydantic import BaseModel - - class Item(BaseModel): - name: str - tags: list[str] = [] - ``` - - When `Item` is used for input, a request body, `tags` is not required, - the client doesn't have to provide it. - - But when using `Item` for output, for a response body, `tags` is always - available because it has a default value, even if it's just an empty - list. So, the client should be able to always expect it. - - In this case, there would be two different schemas, one for input and - another one for output. - - Read more about it in the - [FastAPI docs about how to separate schemas for input and output](https://fastapi.tiangolo.com/how-to/separate-openapi-schemas) - """ - ), - ] = True, - openapi_external_docs: Annotated[ - dict[str, Any] | None, - Doc( - """ - This field allows you to provide additional external documentation links. - If provided, it must be a dictionary containing: - - * `description`: A brief description of the external documentation. - * `url`: The URL pointing to the external documentation. The value **MUST** - be a valid URL format. - - **Example**: - - ```python - from fastapi import FastAPI - - external_docs = { - "description": "Detailed API Reference", - "url": "https://example.com/api-docs", - } - - app = FastAPI(openapi_external_docs=external_docs) - ``` - """ - ), - ] = None, - strict_content_type: Annotated[ - bool, - Doc( - """ - Enable strict checking for request Content-Type headers. - - When `True` (the default), requests with a body that do not include - a `Content-Type` header will **not** be parsed as JSON. - - This prevents potential cross-site request forgery (CSRF) attacks - that exploit the browser's ability to send requests without a - Content-Type header, bypassing CORS preflight checks. In particular - applicable for apps that need to be run locally (in localhost). - - When `False`, requests without a `Content-Type` header will have - their body parsed as JSON, which maintains compatibility with - certain clients that don't send `Content-Type` headers. - - Read more about it in the - [FastAPI docs for Strict Content-Type](https://fastapi.tiangolo.com/advanced/strict-content-type/). - """ - ), - ] = True, - **extra: Annotated[ - Any, - Doc( - """ - Extra keyword arguments to be stored in the app, not used by FastAPI - anywhere. - """ - ), - ], - ) -> None: - self.debug = debug - self.title = title - self.summary = summary - self.description = description - self.version = version - self.terms_of_service = terms_of_service - self.contact = contact - self.license_info = license_info - self.openapi_url = openapi_url - self.openapi_tags = openapi_tags - self.root_path_in_servers = root_path_in_servers - self.docs_url = docs_url - self.redoc_url = redoc_url - self.swagger_ui_oauth2_redirect_url = swagger_ui_oauth2_redirect_url - self.swagger_ui_init_oauth = swagger_ui_init_oauth - self.swagger_ui_parameters = swagger_ui_parameters - self.servers = servers or [] - self.separate_input_output_schemas = separate_input_output_schemas - self.openapi_external_docs = openapi_external_docs - self.extra = extra - self.openapi_version: Annotated[ - str, - Doc( - """ - The version string of OpenAPI. - - FastAPI will generate OpenAPI version 3.1.0, and will output that as - the OpenAPI version. But some tools, even though they might be - compatible with OpenAPI 3.1.0, might not recognize it as a valid. - - So you could override this value to trick those tools into using - the generated OpenAPI. Have in mind that this is a hack. But if you - avoid using features added in OpenAPI 3.1.0, it might work for your - use case. - - This is not passed as a parameter to the `FastAPI` class to avoid - giving the false idea that FastAPI would generate a different OpenAPI - schema. It is only available as an attribute. - - **Example** - - ```python - from fastapi import FastAPI - - app = FastAPI() - - app.openapi_version = "3.0.2" - ``` - """ - ), - ] = "3.1.0" - self.openapi_schema: dict[str, Any] | None = None - self._openapi_routes_version: int | None = None - if self.openapi_url: - assert self.title, "A title must be provided for OpenAPI, e.g.: 'My API'" - assert self.version, "A version must be provided for OpenAPI, e.g.: '2.1.0'" - # TODO: remove when discarding the openapi_prefix parameter - if openapi_prefix: - logger.warning( - '"openapi_prefix" has been deprecated in favor of "root_path", which ' - "follows more closely the ASGI standard, is simpler, and more " - "automatic. Check the docs at " - "https://fastapi.tiangolo.com/advanced/sub-applications/" - ) - self.webhooks: Annotated[ - routing.APIRouter, - Doc( - """ - The `app.webhooks` attribute is an `APIRouter` with the *path - operations* that will be used just for documentation of webhooks. - - Read more about it in the - [FastAPI docs for OpenAPI Webhooks](https://fastapi.tiangolo.com/advanced/openapi-webhooks/). - """ - ), - ] = webhooks or routing.APIRouter() - self.root_path = root_path or openapi_prefix - self.state: Annotated[ - State, - Doc( - """ - A state object for the application. This is the same object for the - entire application, it doesn't change from request to request. - - You normally wouldn't use this in FastAPI, for most of the cases you - would instead use FastAPI dependencies. - - This is simply inherited from Starlette. - - Read more about it in the - [Starlette docs for Applications](https://www.starlette.dev/applications/#storing-state-on-the-app-instance). - """ - ), - ] = State() - self.dependency_overrides: Annotated[ - dict[Callable[..., Any], Callable[..., Any]], - Doc( - """ - A dictionary with overrides for the dependencies. - - Each key is the original dependency callable, and the value is the - actual dependency that should be called. - - This is for testing, to replace expensive dependencies with testing - versions. - - Read more about it in the - [FastAPI docs for Testing Dependencies with Overrides](https://fastapi.tiangolo.com/advanced/testing-dependencies/). - """ - ), - ] = {} - self.router: routing.APIRouter = routing.APIRouter( - routes=routes, - redirect_slashes=redirect_slashes, - dependency_overrides_provider=self, - on_startup=on_startup, - on_shutdown=on_shutdown, - lifespan=lifespan, - default_response_class=default_response_class, - dependencies=dependencies, - callbacks=callbacks, - deprecated=deprecated, - include_in_schema=include_in_schema, - responses=responses, - generate_unique_id_function=generate_unique_id_function, - strict_content_type=strict_content_type, - ) - self.exception_handlers: dict[ - Any, Callable[[Request, Any], Response | Awaitable[Response]] - ] = {} if exception_handlers is None else dict(exception_handlers) - self.exception_handlers.setdefault(HTTPException, http_exception_handler) - self.exception_handlers.setdefault( - RequestValidationError, request_validation_exception_handler - ) - - # Starlette still has incorrect type specification for the handlers - self.exception_handlers.setdefault( - WebSocketRequestValidationError, - websocket_request_validation_exception_handler, # type: ignore[arg-type] - ) # ty: ignore[no-matching-overload] - - self.user_middleware: list[Middleware] = ( - [] if middleware is None else list(middleware) - ) - self.middleware_stack: ASGIApp | None = None - self.setup() - - def build_middleware_stack(self) -> ASGIApp: - # Duplicate/override from Starlette to add AsyncExitStackMiddleware - # inside of ExceptionMiddleware, inside of custom user middlewares - debug = self.debug - error_handler = None - exception_handlers: dict[Any, ExceptionHandler] = {} - - for key, value in self.exception_handlers.items(): - if key in (500, Exception): - error_handler = value - else: - exception_handlers[key] = value - - middleware = ( - [Middleware(ServerErrorMiddleware, handler=error_handler, debug=debug)] - + self.user_middleware - + [ - Middleware( - ExceptionMiddleware, - handlers=exception_handlers, - debug=debug, - ), - # Add FastAPI-specific AsyncExitStackMiddleware for closing files. - # Before this was also used for closing dependencies with yield but - # those now have their own AsyncExitStack, to properly support - # streaming responses while keeping compatibility with the previous - # versions (as of writing 0.117.1) that allowed doing - # except HTTPException inside a dependency with yield. - # This needs to happen after user middlewares because those create a - # new contextvars context copy by using a new AnyIO task group. - # This AsyncExitStack preserves the context for contextvars, not - # strictly necessary for closing files but it was one of the original - # intentions. - # If the AsyncExitStack lived outside of the custom middlewares and - # contextvars were set, for example in a dependency with 'yield' - # in that internal contextvars context, the values would not be - # available in the outer context of the AsyncExitStack. - # By placing the middleware and the AsyncExitStack here, inside all - # user middlewares, the same context is used. - # This is currently not needed, only for closing files, but used to be - # important when dependencies with yield were closed here. - Middleware(AsyncExitStackMiddleware), - ] - ) - - app = self.router - for cls, args, kwargs in reversed(middleware): - app = cls(app, *args, **kwargs) - return app - - def openapi(self) -> dict[str, Any]: - """ - Generate the OpenAPI schema of the application. This is called by FastAPI - internally. - - The first time it is called it stores the result in the attribute - `app.openapi_schema`, and next times it is called, it just returns that same - result. To avoid the cost of generating the schema every time. - - If you need to modify the generated OpenAPI schema, you could modify it. - - Read more in the - [FastAPI docs for OpenAPI](https://fastapi.tiangolo.com/how-to/extending-openapi/). - """ - routes_version = self.router._get_routes_version() - if not self.openapi_schema or self._openapi_routes_version != routes_version: - self.openapi_schema = get_openapi( - title=self.title, - version=self.version, - openapi_version=self.openapi_version, - summary=self.summary, - description=self.description, - terms_of_service=self.terms_of_service, - contact=self.contact, - license_info=self.license_info, - routes=self.routes, - webhooks=self.webhooks.routes, - tags=self.openapi_tags, - servers=self.servers, - separate_input_output_schemas=self.separate_input_output_schemas, - external_docs=self.openapi_external_docs, - ) - self._openapi_routes_version = routes_version - return self.openapi_schema - - def setup(self) -> None: - if self.openapi_url: - - async def openapi(req: Request) -> JSONResponse: - root_path = req.scope.get("root_path", "").rstrip("/") - schema = self.openapi() - if root_path and self.root_path_in_servers: - server_urls = {s.get("url") for s in schema.get("servers", [])} - if root_path not in server_urls: - schema = dict(schema) - schema["servers"] = [{"url": root_path}] + schema.get( - "servers", [] - ) - return JSONResponse(schema) - - self.add_route(self.openapi_url, openapi, include_in_schema=False) - if self.openapi_url and self.docs_url: - - async def swagger_ui_html(req: Request) -> HTMLResponse: - root_path = req.scope.get("root_path", "").rstrip("/") - openapi_url = root_path + self.openapi_url - oauth2_redirect_url = self.swagger_ui_oauth2_redirect_url - if oauth2_redirect_url: - oauth2_redirect_url = root_path + oauth2_redirect_url - return get_swagger_ui_html( - openapi_url=openapi_url, - title=f"{self.title} - Swagger UI", - oauth2_redirect_url=oauth2_redirect_url, - init_oauth=self.swagger_ui_init_oauth, - swagger_ui_parameters=self.swagger_ui_parameters, - ) - - self.add_route(self.docs_url, swagger_ui_html, include_in_schema=False) - - if self.swagger_ui_oauth2_redirect_url: - - async def swagger_ui_redirect(req: Request) -> HTMLResponse: - return get_swagger_ui_oauth2_redirect_html() - - self.add_route( - self.swagger_ui_oauth2_redirect_url, - swagger_ui_redirect, - include_in_schema=False, - ) - if self.openapi_url and self.redoc_url: - - async def redoc_html(req: Request) -> HTMLResponse: - root_path = req.scope.get("root_path", "").rstrip("/") - openapi_url = root_path + self.openapi_url - return get_redoc_html( - openapi_url=openapi_url, title=f"{self.title} - ReDoc" - ) - - self.add_route(self.redoc_url, redoc_html, include_in_schema=False) - - async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: - if self.root_path: - scope["root_path"] = self.root_path - await super().__call__(scope, receive, send) - - def add_api_route( - self, - path: str, - endpoint: Callable[..., Any], - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - methods: list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] | DefaultPlaceholder = Default(JSONResponse), - name: str | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[[routing.APIRoute], str] = Default( - generate_unique_id - ), - ) -> None: - self.router.add_api_route( - path, - endpoint=endpoint, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=methods, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def frontend( - self, - path: Annotated[ - str, - Doc( - """ - The URL path prefix where the frontend build should be served. - """ - ), - ], - *, - directory: Annotated[ - str | os.PathLike[str], - Doc( - """ - The directory containing the static frontend build output. - """ - ), - ], - fallback: Annotated[ - Literal["auto", "index.html", "404.html"] | None, - Doc( - """ - The fallback file behavior for missing frontend paths. - """ - ), - ] = "auto", - check_dir: Annotated[ - bool, - Doc( - """ - Check that the frontend directory exists when the app is created. - """ - ), - ] = True, - ) -> None: - """ - Serve a static frontend build as low-priority routes. - - Use this for frontend tools that build static files into a directory, - such as `dist`. **FastAPI** path operations are checked first, and - the frontend files are checked only if no normal route matched. - - A typical project could look like this: - - ```text - . - ├── pyproject.toml - ├── app - │ ├── __init__.py - │ └── main.py - └── dist - ├── index.html - └── assets - └── app.js - ``` - - Then in `app/main.py`: - - ```python - from fastapi import FastAPI - - app = FastAPI() - app.frontend("/", directory="dist") - ``` - """ - self.router.frontend( - path, - directory=directory, - fallback=fallback, - check_dir=check_dir, - ) - - def api_route( - self, - path: str, - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - methods: list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] = Default(JSONResponse), - name: str | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[[routing.APIRoute], str] = Default( - generate_unique_id - ), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.router.add_api_route( - path, - func, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=methods, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - return func - - return decorator - - def add_api_websocket_route( - self, - path: str, - endpoint: Callable[..., Any], - name: str | None = None, - *, - dependencies: Sequence[Depends] | None = None, - ) -> None: - self.router.add_api_websocket_route( - path, - endpoint, - name=name, - dependencies=dependencies, - ) - - def websocket( - self, - path: Annotated[ - str, - Doc( - """ - WebSocket path. - """ - ), - ], - name: Annotated[ - str | None, - Doc( - """ - A name for the WebSocket. Only used internally. - """ - ), - ] = None, - *, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be used for this - WebSocket. - - Read more about it in the - [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). - """ - ), - ] = None, - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Decorate a WebSocket function. - - Read more about it in the - [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). - - **Example** - - ```python - from fastapi import FastAPI, WebSocket - - app = FastAPI() - - @app.websocket("/ws") - async def websocket_endpoint(websocket: WebSocket): - await websocket.accept() - while True: - data = await websocket.receive_text() - await websocket.send_text(f"Message text was: {data}") - ``` - """ - - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_api_websocket_route( - path, - func, - name=name, - dependencies=dependencies, - ) - return func - - return decorator - - def include_router( - self, - router: Annotated[routing.APIRouter, Doc("The `APIRouter` to include.")], - *, - prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to all the *path operations* in this - router. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to all the - *path operations* in this router. - - Read more about it in the - [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - - **Example** - - ```python - from fastapi import Depends, FastAPI - - from .dependencies import get_token_header - from .internal import admin - - app = FastAPI() - - app.include_router( - admin.router, - dependencies=[Depends(get_token_header)], - ) - ``` - """ - ), - ] = None, - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses to be shown in OpenAPI. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). - - And in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark all the *path operations* in this router as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - **Example** - - ```python - from fastapi import FastAPI - - from .internal import old_api - - app = FastAPI() - - app.include_router( - old_api.router, - deprecated=True, - ) - ``` - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include (or not) all the *path operations* in this router in the - generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - **Example** - - ```python - from fastapi import FastAPI - - from .internal import old_api - - app = FastAPI() - - app.include_router( - old_api.router, - include_in_schema=False, - ) - ``` - """ - ), - ] = True, - default_response_class: Annotated[ - type[Response], - Doc( - """ - Default response class to be used for the *path operations* in this - router. - - Read more in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). - - **Example** - - ```python - from fastapi import FastAPI - from fastapi.responses import ORJSONResponse - - from .internal import old_api - - app = FastAPI() - - app.include_router( - old_api.router, - default_response_class=ORJSONResponse, - ) - ``` - """ - ), - ] = Default(JSONResponse), - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> None: - """ - Include an `APIRouter` in the same app. - - Read more about it in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/). - - ## Example - - ```python - from fastapi import FastAPI - - from .users import users_router - - app = FastAPI() - - app.include_router(users_router) - ``` - """ - self.router.include_router( - router, - prefix=prefix, - tags=tags, - dependencies=dependencies, - responses=responses, - deprecated=deprecated, - include_in_schema=include_in_schema, - default_response_class=default_response_class, - callbacks=callbacks, - generate_unique_id_function=generate_unique_id_function, - ) - - def get( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP GET operation. - - ## Example - - ```python - from fastapi import FastAPI - - app = FastAPI() - - @app.get("/items/") - def read_items(): - return [{"name": "Empanada"}, {"name": "Arepa"}] - ``` - """ - return self.router.get( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def put( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP PUT operation. - - ## Example - - ```python - from fastapi import FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - - @app.put("/items/{item_id}") - def replace_item(item_id: str, item: Item): - return {"message": "Item replaced", "id": item_id} - ``` - """ - return self.router.put( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def post( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP POST operation. - - ## Example - - ```python - from fastapi import FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - - @app.post("/items/") - def create_item(item: Item): - return {"message": "Item created"} - ``` - """ - return self.router.post( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def delete( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP DELETE operation. - - ## Example - - ```python - from fastapi import FastAPI - - app = FastAPI() - - @app.delete("/items/{item_id}") - def delete_item(item_id: str): - return {"message": "Item deleted"} - ``` - """ - return self.router.delete( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def options( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP OPTIONS operation. - - ## Example - - ```python - from fastapi import FastAPI - - app = FastAPI() - - @app.options("/items/") - def get_item_options(): - return {"additions": ["Aji", "Guacamole"]} - ``` - """ - return self.router.options( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def head( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP HEAD operation. - - ## Example - - ```python - from fastapi import FastAPI, Response - - app = FastAPI() - - @app.head("/items/", status_code=204) - def get_items_headers(response: Response): - response.headers["X-Cat-Dog"] = "Alone in the world" - ``` - """ - return self.router.head( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def patch( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP PATCH operation. - - ## Example - - ```python - from fastapi import FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - - @app.patch("/items/") - def update_item(item: Item): - return {"message": "Item updated in place"} - ``` - """ - return self.router.patch( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def trace( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[routing.APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP TRACE operation. - - ## Example - - ```python - from fastapi import FastAPI - - app = FastAPI() - - @app.trace("/items/{item_id}") - def trace_item(item_id: str): - return None - ``` - """ - return self.router.trace( - path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def websocket_route( - self, path: str, name: str | None = None - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.router.add_websocket_route(path, func, name=name) - return func - - return decorator - - @deprecated( - """ - on_event is deprecated, use lifespan event handlers instead. - - Read more about it in the - [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/). - """ - ) - def on_event( - self, - event_type: Annotated[ - str, - Doc( - """ - The type of event. `startup` or `shutdown`. - """ - ), - ], - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add an event handler for the application. - - `on_event` is deprecated, use `lifespan` event handlers instead. - - Read more about it in the - [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/#alternative-events-deprecated). - """ - return self.router.on_event(event_type) # ty: ignore[deprecated] - - def middleware( - self, - middleware_type: Annotated[ - str, - Doc( - """ - The type of middleware. Currently only supports `http`. - """ - ), - ], - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a middleware to the application. - - Read more about it in the - [FastAPI docs for Middleware](https://fastapi.tiangolo.com/tutorial/middleware/). - - ## Example - - ```python - import time - from typing import Awaitable, Callable - - from fastapi import FastAPI, Request, Response - - app = FastAPI() - - - @app.middleware("http") - async def add_process_time_header( - request: Request, call_next: Callable[[Request], Awaitable[Response]] - ) -> Response: - start_time = time.time() - response = await call_next(request) - process_time = time.time() - start_time - response.headers["X-Process-Time"] = str(process_time) - return response - ``` - """ - - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_middleware(BaseHTTPMiddleware, dispatch=func) - return func - - return decorator - - def exception_handler( - self, - exc_class_or_status_code: Annotated[ - int | type[Exception], - Doc( - """ - The Exception class this would handle, or a status code. - """ - ), - ], - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add an exception handler to the app. - - Read more about it in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). - - ## Example - - ```python - from fastapi import FastAPI, Request - from fastapi.responses import JSONResponse - - - class UnicornException(Exception): - def __init__(self, name: str): - self.name = name - - - app = FastAPI() - - - @app.exception_handler(UnicornException) - async def unicorn_exception_handler(request: Request, exc: UnicornException): - return JSONResponse( - status_code=418, - content={"message": f"Oops! {exc.name} did something. There goes a rainbow..."}, - ) - ``` - """ - - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_exception_handler(exc_class_or_status_code, func) - return func - - return decorator diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/background.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/background.py deleted file mode 100644 index 7677058..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/background.py +++ /dev/null @@ -1,61 +0,0 @@ -from collections.abc import Callable -from typing import Annotated, Any - -from annotated_doc import Doc -from starlette.background import BackgroundTasks as StarletteBackgroundTasks -from typing_extensions import ParamSpec - -P = ParamSpec("P") - - -class BackgroundTasks(StarletteBackgroundTasks): - """ - A collection of background tasks that will be called after a response has been - sent to the client. - - Read more about it in the - [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/). - - ## Example - - ```python - from fastapi import BackgroundTasks, FastAPI - - app = FastAPI() - - - def write_notification(email: str, message=""): - with open("log.txt", mode="w") as email_file: - content = f"notification for {email}: {message}" - email_file.write(content) - - - @app.post("/send-notification/{email}") - async def send_notification(email: str, background_tasks: BackgroundTasks): - background_tasks.add_task(write_notification, email, message="some notification") - return {"message": "Notification sent in the background"} - ``` - """ - - def add_task( - self, - func: Annotated[ - Callable[P, Any], - Doc( - """ - The function to call after the response is sent. - - It can be a regular `def` function or an `async def` function. - """ - ), - ], - *args: P.args, - **kwargs: P.kwargs, - ) -> None: - """ - Add a function to be called in the background after the response is sent. - - Read more about it in the - [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/). - """ - return super().add_task(func, *args, **kwargs) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/cli.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/cli.py deleted file mode 100644 index 8d3301e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/cli.py +++ /dev/null @@ -1,13 +0,0 @@ -try: - from fastapi_cli.cli import main as cli_main - -except ImportError: # pragma: no cover - cli_main = None # type: ignore - - -def main() -> None: - if not cli_main: # type: ignore[truthy-function] - message = 'To use the fastapi command, please install "fastapi[standard]":\n\n\tpip install "fastapi[standard]"\n' - print(message) - raise RuntimeError(message) # noqa: B904 - cli_main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/concurrency.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/concurrency.py deleted file mode 100644 index 76a5a2e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/concurrency.py +++ /dev/null @@ -1,41 +0,0 @@ -from collections.abc import AsyncGenerator -from contextlib import AbstractContextManager -from contextlib import asynccontextmanager as asynccontextmanager -from typing import TypeVar - -import anyio.to_thread -from anyio import CapacityLimiter -from starlette.concurrency import iterate_in_threadpool as iterate_in_threadpool # noqa -from starlette.concurrency import run_in_threadpool as run_in_threadpool # noqa -from starlette.concurrency import ( # noqa - run_until_first_complete as run_until_first_complete, -) - -_T = TypeVar("_T") - - -@asynccontextmanager -async def contextmanager_in_threadpool( - cm: AbstractContextManager[_T], -) -> AsyncGenerator[_T, None]: - # blocking __exit__ from running waiting on a free thread - # can create race conditions/deadlocks if the context manager itself - # has its own internal pool (e.g. a database connection pool) - # to avoid this we let __exit__ run without a capacity limit - # since we're creating a new limiter for each call, any non-zero limit - # works (1 is arbitrary) - exit_limiter = CapacityLimiter(1) - try: - yield await run_in_threadpool(cm.__enter__) - except Exception as e: - ok = bool( - await anyio.to_thread.run_sync( - cm.__exit__, type(e), e, e.__traceback__, limiter=exit_limiter - ) - ) - if not ok: - raise e - else: - await anyio.to_thread.run_sync( - cm.__exit__, None, None, None, limiter=exit_limiter - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/datastructures.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/datastructures.py deleted file mode 100644 index 1da784c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/datastructures.py +++ /dev/null @@ -1,186 +0,0 @@ -from collections.abc import Callable, Mapping -from typing import ( - Annotated, - Any, - BinaryIO, - TypeVar, - cast, -) - -from annotated_doc import Doc -from pydantic import GetJsonSchemaHandler -from starlette.datastructures import URL as URL # noqa: F401 -from starlette.datastructures import Address as Address # noqa: F401 -from starlette.datastructures import FormData as FormData # noqa: F401 -from starlette.datastructures import Headers as Headers # noqa: F401 -from starlette.datastructures import QueryParams as QueryParams # noqa: F401 -from starlette.datastructures import State as State # noqa: F401 -from starlette.datastructures import UploadFile as StarletteUploadFile - - -class UploadFile(StarletteUploadFile): - """ - A file uploaded in a request. - - Define it as a *path operation function* (or dependency) parameter. - - If you are using a regular `def` function, you can use the `upload_file.file` - attribute to access the raw standard Python file (blocking, not async), useful and - needed for non-async code. - - Read more about it in the - [FastAPI docs for Request Files](https://fastapi.tiangolo.com/tutorial/request-files/). - - ## Example - - ```python - from typing import Annotated - - from fastapi import FastAPI, File, UploadFile - - app = FastAPI() - - - @app.post("/files/") - async def create_file(file: Annotated[bytes, File()]): - return {"file_size": len(file)} - - - @app.post("/uploadfile/") - async def create_upload_file(file: UploadFile): - return {"filename": file.filename} - ``` - """ - - file: Annotated[ - BinaryIO, - Doc("The standard Python file object (non-async)."), - ] - filename: Annotated[str | None, Doc("The original file name.")] - size: Annotated[int | None, Doc("The size of the file in bytes.")] - headers: Annotated[Headers, Doc("The headers of the request.")] - content_type: Annotated[ - str | None, Doc("The content type of the request, from the headers.") - ] - - async def write( - self, - data: Annotated[ - bytes, - Doc( - """ - The bytes to write to the file. - """ - ), - ], - ) -> None: - """ - Write some bytes to the file. - - You normally wouldn't use this from a file you read in a request. - - To be awaitable, compatible with async, this is run in threadpool. - """ - return await super().write(data) - - async def read( - self, - size: Annotated[ - int, - Doc( - """ - The number of bytes to read from the file. - """ - ), - ] = -1, - ) -> bytes: - """ - Read some bytes from the file. - - To be awaitable, compatible with async, this is run in threadpool. - """ - return await super().read(size) - - async def seek( - self, - offset: Annotated[ - int, - Doc( - """ - The position in bytes to seek to in the file. - """ - ), - ], - ) -> None: - """ - Move to a position in the file. - - Any next read or write will be done from that position. - - To be awaitable, compatible with async, this is run in threadpool. - """ - return await super().seek(offset) - - async def close(self) -> None: - """ - Close the file. - - To be awaitable, compatible with async, this is run in threadpool. - """ - return await super().close() - - @classmethod - def _validate(cls, __input_value: Any, _: Any) -> "UploadFile": - if not isinstance(__input_value, StarletteUploadFile): - raise ValueError(f"Expected UploadFile, received: {type(__input_value)}") - return cast(UploadFile, __input_value) - - @classmethod - def __get_pydantic_json_schema__( - cls, core_schema: Mapping[str, Any], handler: GetJsonSchemaHandler - ) -> dict[str, Any]: - return {"type": "string", "contentMediaType": "application/octet-stream"} - - @classmethod - def __get_pydantic_core_schema__( - cls, source: type[Any], handler: Callable[[Any], Mapping[str, Any]] - ) -> Mapping[str, Any]: - from ._compat.v2 import with_info_plain_validator_function - - return with_info_plain_validator_function(cls._validate) - - -class DefaultPlaceholder: - """ - You shouldn't use this class directly. - - It's used internally to recognize when a default value has been overwritten, even - if the overridden default value was truthy. - """ - - def __init__(self, value: Any): - self.value = value - - def __bool__(self) -> bool: - return bool(self.value) - - def __eq__(self, o: object) -> bool: - return isinstance(o, DefaultPlaceholder) and o.value == self.value - - -DefaultType = TypeVar("DefaultType") - - -def Default(value: DefaultType) -> DefaultType: - """ - You shouldn't use this function directly. - - It's used internally to recognize when a default value has been overwritten, even - if the overridden default value was truthy. - """ - return DefaultPlaceholder(value) # type: ignore - - -# Sentinel for "parameter not provided" in Param/FieldInfo. -# Typed as None to satisfy ty -_Unset = Default(None) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index d667197..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/models.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/models.cpython-311.pyc deleted file mode 100644 index dbae2cc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 6de372a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/models.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/models.py deleted file mode 100644 index 25ffb0d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/models.py +++ /dev/null @@ -1,193 +0,0 @@ -import inspect -import sys -from collections.abc import Callable -from dataclasses import dataclass, field -from functools import cached_property, partial -from typing import Any, Literal - -from fastapi._compat import ModelField -from fastapi.security.base import SecurityBase -from fastapi.types import DependencyCacheKey - -if sys.version_info >= (3, 13): # pragma: no cover - from inspect import iscoroutinefunction -else: # pragma: no cover - from asyncio import iscoroutinefunction - - -def _unwrapped_call(call: Callable[..., Any] | None) -> Any: - if call is None: - return call # pragma: no cover - unwrapped = inspect.unwrap(_impartial(call)) - return unwrapped - - -def _impartial(func: Callable[..., Any]) -> Callable[..., Any]: - while isinstance(func, partial): - func = func.func - return func - - -@dataclass -class Dependant: - path_params: list[ModelField] = field(default_factory=list) - query_params: list[ModelField] = field(default_factory=list) - header_params: list[ModelField] = field(default_factory=list) - cookie_params: list[ModelField] = field(default_factory=list) - body_params: list[ModelField] = field(default_factory=list) - dependencies: list["Dependant"] = field(default_factory=list) - name: str | None = None - call: Callable[..., Any] | None = None - request_param_name: str | None = None - websocket_param_name: str | None = None - http_connection_param_name: str | None = None - response_param_name: str | None = None - background_tasks_param_name: str | None = None - security_scopes_param_name: str | None = None - own_oauth_scopes: list[str] | None = None - parent_oauth_scopes: list[str] | None = None - use_cache: bool = True - path: str | None = None - scope: Literal["function", "request"] | None = None - - @cached_property - def oauth_scopes(self) -> list[str]: - scopes = self.parent_oauth_scopes.copy() if self.parent_oauth_scopes else [] - # This doesn't use a set to preserve order, just in case - for scope in self.own_oauth_scopes or []: - if scope not in scopes: - scopes.append(scope) - return scopes - - @cached_property - def cache_key(self) -> DependencyCacheKey: - scopes_for_cache = ( - tuple(sorted(set(self.oauth_scopes or []))) if self._uses_scopes else () - ) - return ( - self.call, - scopes_for_cache, - self.computed_scope or "", - ) - - @cached_property - def _uses_scopes(self) -> bool: - if self.own_oauth_scopes: - return True - if self.security_scopes_param_name is not None: - return True - if self._is_security_scheme: - return True - for sub_dep in self.dependencies: - if sub_dep._uses_scopes: - return True - return False - - @cached_property - def _is_security_scheme(self) -> bool: - if self.call is None: - return False # pragma: no cover - unwrapped = _unwrapped_call(self.call) - return isinstance(unwrapped, SecurityBase) - - # Mainly to get the type of SecurityBase, but it's the same self.call - @cached_property - def _security_scheme(self) -> SecurityBase: - unwrapped = _unwrapped_call(self.call) - assert isinstance(unwrapped, SecurityBase) - return unwrapped - - @cached_property - def _security_dependencies(self) -> list["Dependant"]: - security_deps = [dep for dep in self.dependencies if dep._is_security_scheme] - return security_deps - - @cached_property - def is_gen_callable(self) -> bool: - if self.call is None: - return False # pragma: no cover - if inspect.isgeneratorfunction( - _impartial(self.call) - ) or inspect.isgeneratorfunction(_unwrapped_call(self.call)): - return True - if inspect.isclass(_unwrapped_call(self.call)): - return False - dunder_call = getattr(_impartial(self.call), "__call__", None) # noqa: B004 - if dunder_call is None: - return False # pragma: no cover - if inspect.isgeneratorfunction( - _impartial(dunder_call) - ) or inspect.isgeneratorfunction(_unwrapped_call(dunder_call)): - return True - dunder_unwrapped_call = getattr(_unwrapped_call(self.call), "__call__", None) # noqa: B004 - if dunder_unwrapped_call is None: - return False # pragma: no cover - if inspect.isgeneratorfunction( - _impartial(dunder_unwrapped_call) - ) or inspect.isgeneratorfunction(_unwrapped_call(dunder_unwrapped_call)): - return True - return False - - @cached_property - def is_async_gen_callable(self) -> bool: - if self.call is None: - return False # pragma: no cover - if inspect.isasyncgenfunction( - _impartial(self.call) - ) or inspect.isasyncgenfunction(_unwrapped_call(self.call)): - return True - if inspect.isclass(_unwrapped_call(self.call)): - return False - dunder_call = getattr(_impartial(self.call), "__call__", None) # noqa: B004 - if dunder_call is None: - return False # pragma: no cover - if inspect.isasyncgenfunction( - _impartial(dunder_call) - ) or inspect.isasyncgenfunction(_unwrapped_call(dunder_call)): - return True - dunder_unwrapped_call = getattr(_unwrapped_call(self.call), "__call__", None) # noqa: B004 - if dunder_unwrapped_call is None: - return False # pragma: no cover - if inspect.isasyncgenfunction( - _impartial(dunder_unwrapped_call) - ) or inspect.isasyncgenfunction(_unwrapped_call(dunder_unwrapped_call)): - return True - return False - - @cached_property - def is_coroutine_callable(self) -> bool: - if self.call is None: - return False # pragma: no cover - if inspect.isroutine(_impartial(self.call)) and iscoroutinefunction( - _impartial(self.call) - ): - return True - if inspect.isroutine(_unwrapped_call(self.call)) and iscoroutinefunction( - _unwrapped_call(self.call) - ): - return True - if inspect.isclass(_unwrapped_call(self.call)): - return False - dunder_call = getattr(_impartial(self.call), "__call__", None) # noqa: B004 - if dunder_call is None: - return False # pragma: no cover - if iscoroutinefunction(_impartial(dunder_call)) or iscoroutinefunction( - _unwrapped_call(dunder_call) - ): - return True - dunder_unwrapped_call = getattr(_unwrapped_call(self.call), "__call__", None) # noqa: B004 - if dunder_unwrapped_call is None: - return False # pragma: no cover - if iscoroutinefunction( - _impartial(dunder_unwrapped_call) - ) or iscoroutinefunction(_unwrapped_call(dunder_unwrapped_call)): - return True - return False - - @cached_property - def computed_scope(self) -> str | None: - if self.scope: - return self.scope - if self.is_gen_callable or self.is_async_gen_callable: - return "request" - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/utils.py deleted file mode 100644 index 40dffba..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/dependencies/utils.py +++ /dev/null @@ -1,1061 +0,0 @@ -import dataclasses -import inspect -import sys -from collections.abc import ( - AsyncGenerator, - AsyncIterable, - AsyncIterator, - Callable, - Generator, - Iterable, - Iterator, - Mapping, - Sequence, -) -from contextlib import AsyncExitStack, contextmanager -from copy import copy, deepcopy -from dataclasses import dataclass -from typing import ( - Annotated, - Any, - ForwardRef, - Literal, - Union, - cast, - get_args, - get_origin, -) - -from fastapi import params -from fastapi._compat import ( - ModelField, - RequiredParam, - Undefined, - copy_field_info, - create_body_model, - evaluate_forwardref, - field_annotation_is_scalar, - field_annotation_is_scalar_sequence, - field_annotation_is_sequence, - get_cached_model_fields, - get_missing_field_error, - is_bytes_or_nonable_bytes_annotation, - is_bytes_sequence_annotation, - is_scalar_field, - is_uploadfile_or_nonable_uploadfile_annotation, - is_uploadfile_sequence_annotation, - lenient_issubclass, - sequence_types, - serialize_sequence_value, - value_is_sequence, -) -from fastapi.background import BackgroundTasks -from fastapi.concurrency import ( - asynccontextmanager, - contextmanager_in_threadpool, -) -from fastapi.dependencies.models import Dependant -from fastapi.exceptions import DependencyScopeError -from fastapi.logger import logger -from fastapi.security.oauth2 import SecurityScopes -from fastapi.types import DependencyCacheKey -from fastapi.utils import create_model_field, get_path_param_names -from pydantic import BaseModel, Json -from pydantic.fields import FieldInfo -from starlette.background import BackgroundTasks as StarletteBackgroundTasks -from starlette.concurrency import run_in_threadpool -from starlette.datastructures import ( - FormData, - Headers, - ImmutableMultiDict, - QueryParams, - UploadFile, -) -from starlette.requests import HTTPConnection, Request -from starlette.responses import Response -from starlette.websockets import WebSocket -from typing_inspection.typing_objects import is_typealiastype - -multipart_not_installed_error = ( - 'Form data requires "python-multipart" to be installed. \n' - 'You can install "python-multipart" with: \n\n' - "pip install python-multipart\n" -) -multipart_incorrect_install_error = ( - 'Form data requires "python-multipart" to be installed. ' - 'It seems you installed "multipart" instead. \n' - 'You can remove "multipart" with: \n\n' - "pip uninstall multipart\n\n" - 'And then install "python-multipart" with: \n\n' - "pip install python-multipart\n" -) - - -def ensure_multipart_is_installed() -> None: - try: - from python_multipart import __version__ - - # Import an attribute that can be mocked/deleted in testing - assert __version__ > "0.0.12" - except (ImportError, AssertionError): - try: - # __version__ is available in both multiparts, and can be mocked - from multipart import ( # type: ignore[no-redef,import-untyped] - __version__, - ) - - assert __version__ - try: - # parse_options_header is only available in the right multipart - from multipart.multipart import ( # type: ignore[import-untyped] - parse_options_header, - ) - - assert parse_options_header - except ImportError: - logger.error(multipart_incorrect_install_error) - raise RuntimeError(multipart_incorrect_install_error) from None - except ImportError: - logger.error(multipart_not_installed_error) - raise RuntimeError(multipart_not_installed_error) from None - - -def get_parameterless_sub_dependant(*, depends: params.Depends, path: str) -> Dependant: - assert callable(depends.dependency), ( - "A parameter-less dependency must have a callable dependency" - ) - own_oauth_scopes: list[str] = [] - if isinstance(depends, params.Security) and depends.scopes: - own_oauth_scopes.extend(depends.scopes) - return get_dependant( - path=path, - call=depends.dependency, - scope=depends.scope, - own_oauth_scopes=own_oauth_scopes, - ) - - -def get_flat_dependant( - dependant: Dependant, - *, - skip_repeats: bool = False, - visited: list[DependencyCacheKey] | None = None, - parent_oauth_scopes: list[str] | None = None, -) -> Dependant: - if visited is None: - visited = [] - visited.append(dependant.cache_key) - use_parent_oauth_scopes = (parent_oauth_scopes or []) + ( - dependant.oauth_scopes or [] - ) - - flat_dependant = Dependant( - path_params=dependant.path_params.copy(), - query_params=dependant.query_params.copy(), - header_params=dependant.header_params.copy(), - cookie_params=dependant.cookie_params.copy(), - body_params=dependant.body_params.copy(), - name=dependant.name, - call=dependant.call, - request_param_name=dependant.request_param_name, - websocket_param_name=dependant.websocket_param_name, - http_connection_param_name=dependant.http_connection_param_name, - response_param_name=dependant.response_param_name, - background_tasks_param_name=dependant.background_tasks_param_name, - security_scopes_param_name=dependant.security_scopes_param_name, - own_oauth_scopes=dependant.own_oauth_scopes, - parent_oauth_scopes=use_parent_oauth_scopes, - use_cache=dependant.use_cache, - path=dependant.path, - scope=dependant.scope, - ) - for sub_dependant in dependant.dependencies: - if skip_repeats and sub_dependant.cache_key in visited: - continue - flat_sub = get_flat_dependant( - sub_dependant, - skip_repeats=skip_repeats, - visited=visited, - parent_oauth_scopes=flat_dependant.oauth_scopes, - ) - flat_dependant.dependencies.append(flat_sub) - flat_dependant.path_params.extend(flat_sub.path_params) - flat_dependant.query_params.extend(flat_sub.query_params) - flat_dependant.header_params.extend(flat_sub.header_params) - flat_dependant.cookie_params.extend(flat_sub.cookie_params) - flat_dependant.body_params.extend(flat_sub.body_params) - flat_dependant.dependencies.extend(flat_sub.dependencies) - - return flat_dependant - - -def _get_flat_fields_from_params(fields: list[ModelField]) -> list[ModelField]: - if not fields: - return fields - first_field = fields[0] - if len(fields) == 1 and lenient_issubclass( - first_field.field_info.annotation, BaseModel - ): - fields_to_extract = get_cached_model_fields(first_field.field_info.annotation) - return fields_to_extract - return fields - - -def get_flat_params(dependant: Dependant) -> list[ModelField]: - flat_dependant = get_flat_dependant(dependant, skip_repeats=True) - path_params = _get_flat_fields_from_params(flat_dependant.path_params) - query_params = _get_flat_fields_from_params(flat_dependant.query_params) - header_params = _get_flat_fields_from_params(flat_dependant.header_params) - cookie_params = _get_flat_fields_from_params(flat_dependant.cookie_params) - return path_params + query_params + header_params + cookie_params - - -def _get_signature(call: Callable[..., Any]) -> inspect.Signature: - try: - signature = inspect.signature(call, eval_str=True) - except NameError: - # Handle type annotations with if TYPE_CHECKING, not used by FastAPI - # e.g. dependency return types - if sys.version_info >= (3, 14): - from annotationlib import Format - - signature = inspect.signature(call, annotation_format=Format.FORWARDREF) - else: - signature = inspect.signature(call) - return signature - - -def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature: - signature = _get_signature(call) - unwrapped = inspect.unwrap(call) - globalns = getattr(unwrapped, "__globals__", {}) - typed_params = [ - inspect.Parameter( - name=param.name, - kind=param.kind, - default=param.default, - annotation=get_typed_annotation(param.annotation, globalns), - ) - for param in signature.parameters.values() - ] - typed_signature = inspect.Signature(typed_params) - return typed_signature - - -def get_typed_annotation(annotation: Any, globalns: dict[str, Any]) -> Any: - if isinstance(annotation, str): - annotation = ForwardRef(annotation) - annotation = evaluate_forwardref(annotation, globalns, globalns) - if annotation is type(None): - return None - return annotation - - -def get_typed_return_annotation(call: Callable[..., Any]) -> Any: - signature = _get_signature(call) - unwrapped = inspect.unwrap(call) - annotation = signature.return_annotation - - if annotation is inspect.Signature.empty: - return None - - globalns = getattr(unwrapped, "__globals__", {}) - return get_typed_annotation(annotation, globalns) - - -_STREAM_ORIGINS = { - AsyncIterable, - AsyncIterator, - AsyncGenerator, - Iterable, - Iterator, - Generator, -} - - -def get_stream_item_type(annotation: Any) -> Any | None: - origin = get_origin(annotation) - if origin is not None and origin in _STREAM_ORIGINS: - type_args = get_args(annotation) - if type_args: - return type_args[0] - return Any - return None - - -def get_dependant( - *, - path: str, - call: Callable[..., Any], - name: str | None = None, - own_oauth_scopes: list[str] | None = None, - parent_oauth_scopes: list[str] | None = None, - use_cache: bool = True, - scope: Literal["function", "request"] | None = None, -) -> Dependant: - dependant = Dependant( - call=call, - name=name, - path=path, - use_cache=use_cache, - scope=scope, - own_oauth_scopes=own_oauth_scopes, - parent_oauth_scopes=parent_oauth_scopes, - ) - current_scopes = (parent_oauth_scopes or []) + (own_oauth_scopes or []) - path_param_names = get_path_param_names(path) - endpoint_signature = get_typed_signature(call) - signature_params = endpoint_signature.parameters - for param_name, param in signature_params.items(): - is_path_param = param_name in path_param_names - param_details = analyze_param( - param_name=param_name, - annotation=param.annotation, - value=param.default, - is_path_param=is_path_param, - ) - if param_details.depends is not None: - assert param_details.depends.dependency - if ( - (dependant.is_gen_callable or dependant.is_async_gen_callable) - and dependant.computed_scope == "request" - and param_details.depends.scope == "function" - ): - assert dependant.call - call_name = getattr(dependant.call, "__name__", "") - raise DependencyScopeError( - f'The dependency "{call_name}" has a scope of ' - '"request", it cannot depend on dependencies with scope "function".' - ) - sub_own_oauth_scopes: list[str] = [] - if isinstance(param_details.depends, params.Security): - if param_details.depends.scopes: - sub_own_oauth_scopes = list(param_details.depends.scopes) - sub_dependant = get_dependant( - path=path, - call=param_details.depends.dependency, - name=param_name, - own_oauth_scopes=sub_own_oauth_scopes, - parent_oauth_scopes=current_scopes, - use_cache=param_details.depends.use_cache, - scope=param_details.depends.scope, - ) - dependant.dependencies.append(sub_dependant) - continue - if add_non_field_param_to_dependency( - param_name=param_name, - type_annotation=param_details.type_annotation, - dependant=dependant, - ): - assert param_details.field is None, ( - f"Cannot specify multiple FastAPI annotations for {param_name!r}" - ) - continue - assert param_details.field is not None - if isinstance(param_details.field.field_info, params.Body): - dependant.body_params.append(param_details.field) - else: - add_param_to_fields(field=param_details.field, dependant=dependant) - return dependant - - -def add_non_field_param_to_dependency( - *, param_name: str, type_annotation: Any, dependant: Dependant -) -> bool | None: - if lenient_issubclass(type_annotation, Request): - dependant.request_param_name = param_name - return True - elif lenient_issubclass(type_annotation, WebSocket): - dependant.websocket_param_name = param_name - return True - elif lenient_issubclass(type_annotation, HTTPConnection): - dependant.http_connection_param_name = param_name - return True - elif lenient_issubclass(type_annotation, Response): - dependant.response_param_name = param_name - return True - elif lenient_issubclass(type_annotation, StarletteBackgroundTasks): - dependant.background_tasks_param_name = param_name - return True - elif lenient_issubclass(type_annotation, SecurityScopes): - dependant.security_scopes_param_name = param_name - return True - return None - - -@dataclass -class ParamDetails: - type_annotation: Any - depends: params.Depends | None - field: ModelField | None - - -def analyze_param( - *, - param_name: str, - annotation: Any, - value: Any, - is_path_param: bool, -) -> ParamDetails: - field_info = None - depends = None - type_annotation: Any = Any - use_annotation: Any = Any - if is_typealiastype(annotation): - # unpack in case PEP 695 type syntax is used - annotation = annotation.__value__ - if annotation is not inspect.Signature.empty: - use_annotation = annotation - type_annotation = annotation - # Extract Annotated info - if get_origin(use_annotation) is Annotated: - annotated_args = get_args(annotation) - type_annotation = annotated_args[0] - fastapi_annotations = [ - arg - for arg in annotated_args[1:] - if isinstance(arg, (FieldInfo, params.Depends)) - ] - fastapi_specific_annotations = [ - arg - for arg in fastapi_annotations - if isinstance( - arg, - ( - params.Param, - params.Body, - params.Depends, - ), - ) - ] - if fastapi_specific_annotations: - fastapi_annotation: FieldInfo | params.Depends | None = ( - fastapi_specific_annotations[-1] - ) - else: - fastapi_annotation = None - # Set default for Annotated FieldInfo - if isinstance(fastapi_annotation, FieldInfo): - # Copy `field_info` because we mutate `field_info.default` below. - field_info = copy_field_info( - field_info=fastapi_annotation, - annotation=use_annotation, - ) - assert ( - field_info.default == Undefined or field_info.default == RequiredParam - ), ( - f"`{field_info.__class__.__name__}` default value cannot be set in" - f" `Annotated` for {param_name!r}. Set the default value with `=` instead." - ) - if value is not inspect.Signature.empty: - assert not is_path_param, "Path parameters cannot have default values" - field_info.default = value - else: - field_info.default = RequiredParam - # Get Annotated Depends - elif isinstance(fastapi_annotation, params.Depends): - depends = fastapi_annotation - # Get Depends from default value - if isinstance(value, params.Depends): - assert depends is None, ( - "Cannot specify `Depends` in `Annotated` and default value" - f" together for {param_name!r}" - ) - assert field_info is None, ( - "Cannot specify a FastAPI annotation in `Annotated` and `Depends` as a" - f" default value together for {param_name!r}" - ) - depends = value - # Get FieldInfo from default value - elif isinstance(value, FieldInfo): - assert field_info is None, ( - "Cannot specify FastAPI annotations in `Annotated` and default value" - f" together for {param_name!r}" - ) - field_info = value - if isinstance(field_info, FieldInfo): - field_info.annotation = type_annotation - - # Get Depends from type annotation - if depends is not None and depends.dependency is None: - # Copy `depends` before mutating it - depends = copy(depends) - depends = dataclasses.replace(depends, dependency=type_annotation) - - # Handle non-param type annotations like Request - # Only apply special handling when there's no explicit Depends - if there's a Depends, - # the dependency will be called and its return value used instead of the special injection - if depends is None and lenient_issubclass( - type_annotation, - ( - Request, - WebSocket, - HTTPConnection, - Response, - StarletteBackgroundTasks, - SecurityScopes, - ), - ): - assert field_info is None, ( - f"Cannot specify FastAPI annotation for type {type_annotation!r}" - ) - # Handle default assignations, neither field_info nor depends was not found in Annotated nor default value - elif field_info is None and depends is None: - default_value = value if value is not inspect.Signature.empty else RequiredParam - if is_path_param: - # We might check here that `default_value is RequiredParam`, but the fact is that the same - # parameter might sometimes be a path parameter and sometimes not. See - # `tests/test_infer_param_optionality.py` for an example. - field_info = params.Path(annotation=use_annotation) - elif is_uploadfile_or_nonable_uploadfile_annotation( - type_annotation - ) or is_uploadfile_sequence_annotation(type_annotation): - field_info = params.File(annotation=use_annotation, default=default_value) - elif not field_annotation_is_scalar(annotation=type_annotation): - field_info = params.Body(annotation=use_annotation, default=default_value) - else: - field_info = params.Query(annotation=use_annotation, default=default_value) - - field = None - # It's a field_info, not a dependency - if field_info is not None: - # Handle field_info.in_ - if is_path_param: - assert isinstance(field_info, params.Path), ( - f"Cannot use `{field_info.__class__.__name__}` for path param" - f" {param_name!r}" - ) - elif ( - isinstance(field_info, params.Param) - and getattr(field_info, "in_", None) is None - ): - field_info.in_ = params.ParamTypes.query - use_annotation_from_field_info = use_annotation - if isinstance(field_info, params.Form): - ensure_multipart_is_installed() - if not field_info.alias and getattr(field_info, "convert_underscores", None): - alias = param_name.replace("_", "-") - else: - alias = field_info.alias or param_name - field_info.alias = alias - field = create_model_field( - name=param_name, - type_=use_annotation_from_field_info, - default=field_info.default, - alias=alias, - field_info=field_info, - ) - if is_path_param: - assert is_scalar_field(field=field), ( - "Path params must be of one of the supported types" - ) - elif isinstance(field_info, params.Query): - assert ( - is_scalar_field(field) - or field_annotation_is_scalar_sequence(field.field_info.annotation) - or lenient_issubclass(field.field_info.annotation, BaseModel) - ), f"Query parameter {param_name!r} must be one of the supported types" - - return ParamDetails(type_annotation=type_annotation, depends=depends, field=field) - - -def add_param_to_fields(*, field: ModelField, dependant: Dependant) -> None: - field_info = field.field_info - field_info_in = getattr(field_info, "in_", None) - if field_info_in == params.ParamTypes.path: - dependant.path_params.append(field) - elif field_info_in == params.ParamTypes.query: - dependant.query_params.append(field) - elif field_info_in == params.ParamTypes.header: - dependant.header_params.append(field) - else: - assert field_info_in == params.ParamTypes.cookie, ( - f"non-body parameters must be in path, query, header or cookie: {field.name}" - ) - dependant.cookie_params.append(field) - - -async def _solve_generator( - *, dependant: Dependant, stack: AsyncExitStack, sub_values: dict[str, Any] -) -> Any: - assert dependant.call - if dependant.is_async_gen_callable: - cm = asynccontextmanager(dependant.call)(**sub_values) - elif dependant.is_gen_callable: - cm = contextmanager_in_threadpool(contextmanager(dependant.call)(**sub_values)) - return await stack.enter_async_context(cm) - - -@dataclass -class SolvedDependency: - values: dict[str, Any] - errors: list[Any] - background_tasks: StarletteBackgroundTasks | None - response: Response - dependency_cache: dict[DependencyCacheKey, Any] - - -async def solve_dependencies( - *, - request: Request | WebSocket, - dependant: Dependant, - body: dict[str, Any] | FormData | bytes | None = None, - background_tasks: StarletteBackgroundTasks | None = None, - response: Response | None = None, - dependency_overrides_provider: Any | None = None, - dependency_cache: dict[DependencyCacheKey, Any] | None = None, - # TODO: remove this parameter later, no longer used, not removing it yet as some - # people might be monkey patching this function (although that's not supported) - async_exit_stack: AsyncExitStack, - embed_body_fields: bool, -) -> SolvedDependency: - request_astack = request.scope.get("fastapi_inner_astack") - assert isinstance(request_astack, AsyncExitStack), ( - "fastapi_inner_astack not found in request scope" - ) - function_astack = request.scope.get("fastapi_function_astack") - assert isinstance(function_astack, AsyncExitStack), ( - "fastapi_function_astack not found in request scope" - ) - values: dict[str, Any] = {} - errors: list[Any] = [] - if response is None: - response = Response() - del response.headers["content-length"] - response.status_code = None # type: ignore - if dependency_cache is None: - dependency_cache = {} - for sub_dependant in dependant.dependencies: - sub_dependant.call = cast(Callable[..., Any], sub_dependant.call) - call = sub_dependant.call - use_sub_dependant = sub_dependant - if ( - dependency_overrides_provider - and dependency_overrides_provider.dependency_overrides - ): - original_call = sub_dependant.call - call = getattr( - dependency_overrides_provider, "dependency_overrides", {} - ).get(original_call, original_call) - use_path: str = sub_dependant.path # type: ignore - use_sub_dependant = get_dependant( - path=use_path, - call=call, - name=sub_dependant.name, - parent_oauth_scopes=sub_dependant.oauth_scopes, - scope=sub_dependant.scope, - ) - - solved_result = await solve_dependencies( - request=request, - dependant=use_sub_dependant, - body=body, - background_tasks=background_tasks, - response=response, - dependency_overrides_provider=dependency_overrides_provider, - dependency_cache=dependency_cache, - async_exit_stack=async_exit_stack, - embed_body_fields=embed_body_fields, - ) - background_tasks = solved_result.background_tasks - if solved_result.errors: - errors.extend(solved_result.errors) - continue - if sub_dependant.use_cache and sub_dependant.cache_key in dependency_cache: - solved = dependency_cache[sub_dependant.cache_key] - elif ( - use_sub_dependant.is_gen_callable or use_sub_dependant.is_async_gen_callable - ): - use_astack = request_astack - if sub_dependant.scope == "function": - use_astack = function_astack - solved = await _solve_generator( - dependant=use_sub_dependant, - stack=use_astack, - sub_values=solved_result.values, - ) - elif use_sub_dependant.is_coroutine_callable: - solved = await call(**solved_result.values) - else: - solved = await run_in_threadpool(call, **solved_result.values) - if sub_dependant.name is not None: - values[sub_dependant.name] = solved - if sub_dependant.cache_key not in dependency_cache: - dependency_cache[sub_dependant.cache_key] = solved - path_values, path_errors = request_params_to_args( - dependant.path_params, request.path_params - ) - query_values, query_errors = request_params_to_args( - dependant.query_params, request.query_params - ) - header_values, header_errors = request_params_to_args( - dependant.header_params, request.headers - ) - cookie_values, cookie_errors = request_params_to_args( - dependant.cookie_params, request.cookies - ) - values.update(path_values) - values.update(query_values) - values.update(header_values) - values.update(cookie_values) - errors += path_errors + query_errors + header_errors + cookie_errors - if dependant.body_params: - ( - body_values, - body_errors, - ) = await request_body_to_args( # body_params checked above - body_fields=dependant.body_params, - received_body=body, - embed_body_fields=embed_body_fields, - ) - values.update(body_values) - errors.extend(body_errors) - if dependant.http_connection_param_name: - values[dependant.http_connection_param_name] = request - if dependant.request_param_name and isinstance(request, Request): - values[dependant.request_param_name] = request - elif dependant.websocket_param_name and isinstance(request, WebSocket): - values[dependant.websocket_param_name] = request - if dependant.background_tasks_param_name: - if background_tasks is None: - background_tasks = BackgroundTasks() - values[dependant.background_tasks_param_name] = background_tasks - if dependant.response_param_name: - values[dependant.response_param_name] = response - if dependant.security_scopes_param_name: - values[dependant.security_scopes_param_name] = SecurityScopes( - scopes=dependant.oauth_scopes - ) - return SolvedDependency( - values=values, - errors=errors, - background_tasks=background_tasks, - response=response, - dependency_cache=dependency_cache, - ) - - -def _validate_value_with_model_field( - *, field: ModelField, value: Any, values: dict[str, Any], loc: tuple[str, ...] -) -> tuple[Any, list[Any]]: - if value is None: - if field.field_info.is_required(): - return None, [get_missing_field_error(loc=loc)] - else: - return deepcopy(field.default), [] - return field.validate(value, values, loc=loc) - - -def _is_json_field(field: ModelField) -> bool: - return any(type(item) is Json for item in field.field_info.metadata) - - -def _get_multidict_value( - field: ModelField, values: Mapping[str, Any], alias: str | None = None -) -> Any: - alias = alias or get_validation_alias(field) - if ( - (not _is_json_field(field)) - and field_annotation_is_sequence(field.field_info.annotation) - and isinstance(values, (ImmutableMultiDict, Headers)) - ): - value = values.getlist(alias) - else: - value = values.get(alias, None) - if ( - value is None - or ( - isinstance(field.field_info, params.Form) - and isinstance(value, str) # For type checks - and value == "" - ) - or ( - field_annotation_is_sequence(field.field_info.annotation) - and len(value) == 0 - ) - ): - if field.field_info.is_required(): - return - else: - return deepcopy(field.default) - return value - - -def request_params_to_args( - fields: Sequence[ModelField], - received_params: Mapping[str, Any] | QueryParams | Headers, -) -> tuple[dict[str, Any], list[Any]]: - values: dict[str, Any] = {} - errors: list[dict[str, Any]] = [] - - if not fields: - return values, errors - - first_field = fields[0] - fields_to_extract = fields - single_not_embedded_field = False - default_convert_underscores = True - if len(fields) == 1 and lenient_issubclass( - first_field.field_info.annotation, BaseModel - ): - fields_to_extract = get_cached_model_fields(first_field.field_info.annotation) - single_not_embedded_field = True - # If headers are in a Pydantic model, the way to disable convert_underscores - # would be with Header(convert_underscores=False) at the Pydantic model level - default_convert_underscores = getattr( - first_field.field_info, "convert_underscores", True - ) - - params_to_process: dict[str, Any] = {} - - processed_keys = set() - - for field in fields_to_extract: - alias = None - if isinstance(received_params, Headers): - # Handle fields extracted from a Pydantic Model for a header, each field - # doesn't have a FieldInfo of type Header with the default convert_underscores=True - convert_underscores = getattr( - field.field_info, "convert_underscores", default_convert_underscores - ) - if convert_underscores: - alias = get_validation_alias(field) - if alias == field.name: - alias = alias.replace("_", "-") - value = _get_multidict_value(field, received_params, alias=alias) - if value is not None: - params_to_process[get_validation_alias(field)] = value - processed_keys.add(alias or get_validation_alias(field)) - # For headers with convert_underscores=True, mark both the converted - # header name and the original field alias as processed to avoid - # accepting the original alias as an extra header. - processed_keys.add(get_validation_alias(field)) - - for key in received_params.keys(): - if key not in processed_keys: - if isinstance(received_params, (ImmutableMultiDict, Headers)): - value = received_params.getlist(key) - if isinstance(value, list) and (len(value) == 1): - params_to_process[key] = value[0] - else: - params_to_process[key] = value - else: - params_to_process[key] = received_params.get(key) - - if single_not_embedded_field: - field_info = first_field.field_info - assert isinstance(field_info, params.Param), ( - "Params must be subclasses of Param" - ) - loc: tuple[str, ...] = (field_info.in_.value,) - v_, errors_ = _validate_value_with_model_field( - field=first_field, value=params_to_process, values=values, loc=loc - ) - return {first_field.name: v_}, errors_ - - for field in fields: - value = _get_multidict_value(field, received_params) - field_info = field.field_info - assert isinstance(field_info, params.Param), ( - "Params must be subclasses of Param" - ) - loc = (field_info.in_.value, get_validation_alias(field)) - v_, errors_ = _validate_value_with_model_field( - field=field, value=value, values=values, loc=loc - ) - if errors_: - errors.extend(errors_) - else: - values[field.name] = v_ - return values, errors - - -def is_union_of_base_models(field_type: Any) -> bool: - """Check if field type is a Union where all members are BaseModel subclasses.""" - from fastapi.types import UnionType - - origin = get_origin(field_type) - - # Check if it's a Union type (covers both typing.Union and types.UnionType in Python 3.10+) - if origin is not Union and origin is not UnionType: - return False - - union_args = get_args(field_type) - - for arg in union_args: - if not lenient_issubclass(arg, BaseModel): - return False - - return True - - -def _should_embed_body_fields(fields: list[ModelField]) -> bool: - if not fields: - return False - # More than one dependency could have the same field, it would show up as multiple - # fields but it's the same one, so count them by name - body_param_names_set = {field.name for field in fields} - # A top level field has to be a single field, not multiple - if len(body_param_names_set) > 1: - return True - first_field = fields[0] - # If it explicitly specifies it is embedded, it has to be embedded - if getattr(first_field.field_info, "embed", None): - return True - # If it's a Form (or File) field, it has to be a BaseModel (or a union of BaseModels) to be top level - # otherwise it has to be embedded, so that the key value pair can be extracted - if ( - isinstance(first_field.field_info, params.Form) - and not lenient_issubclass(first_field.field_info.annotation, BaseModel) - and not is_union_of_base_models(first_field.field_info.annotation) - ): - return True - return False - - -async def _extract_form_body( - body_fields: list[ModelField], - received_body: FormData, -) -> dict[str, Any]: - values = {} - - for field in body_fields: - value = _get_multidict_value(field, received_body) - field_info = field.field_info - if ( - isinstance(field_info, params.File) - and is_bytes_or_nonable_bytes_annotation(field.field_info.annotation) - and isinstance(value, UploadFile) - ): - value = await value.read() - elif ( - is_bytes_sequence_annotation(field.field_info.annotation) - and isinstance(field_info, params.File) - and value_is_sequence(value) - ): - # For types - assert isinstance(value, sequence_types) - results: list[bytes | str] = [] - for sub_value in value: - results.append(await sub_value.read()) - value = serialize_sequence_value(field=field, value=results) - if value is not None: - values[get_validation_alias(field)] = value - field_aliases = {get_validation_alias(field) for field in body_fields} - for key in received_body.keys(): - if key not in field_aliases: - param_values = received_body.getlist(key) - if len(param_values) == 1: - values[key] = param_values[0] - else: - values[key] = param_values - return values - - -async def request_body_to_args( - body_fields: list[ModelField], - received_body: dict[str, Any] | FormData | bytes | None, - embed_body_fields: bool, -) -> tuple[dict[str, Any], list[dict[str, Any]]]: - values: dict[str, Any] = {} - errors: list[dict[str, Any]] = [] - assert body_fields, "request_body_to_args() should be called with fields" - single_not_embedded_field = len(body_fields) == 1 and not embed_body_fields - first_field = body_fields[0] - body_to_process = received_body - - fields_to_extract: list[ModelField] = body_fields - - if ( - single_not_embedded_field - and lenient_issubclass(first_field.field_info.annotation, BaseModel) - and isinstance(received_body, FormData) - ): - fields_to_extract = get_cached_model_fields(first_field.field_info.annotation) - - if isinstance(received_body, FormData): - body_to_process = await _extract_form_body(fields_to_extract, received_body) - - if single_not_embedded_field: - loc: tuple[str, ...] = ("body",) - v_, errors_ = _validate_value_with_model_field( - field=first_field, value=body_to_process, values=values, loc=loc - ) - return {first_field.name: v_}, errors_ - for field in body_fields: - loc = ("body", get_validation_alias(field)) - value: Any | None = None - if body_to_process is not None and not isinstance(body_to_process, bytes): - try: - value = body_to_process.get(get_validation_alias(field)) - # If the received body is a list, not a dict - except AttributeError: - errors.append(get_missing_field_error(loc)) - continue - v_, errors_ = _validate_value_with_model_field( - field=field, value=value, values=values, loc=loc - ) - if errors_: - errors.extend(errors_) - else: - values[field.name] = v_ - return values, errors - - -def get_body_field( - *, flat_dependant: Dependant, name: str, embed_body_fields: bool -) -> ModelField | None: - """ - Get a ModelField representing the request body for a path operation, combining - all body parameters into a single field if necessary. - - Used to check if it's form data (with `isinstance(body_field, params.Form)`) - or JSON and to generate the JSON Schema for a request body. - - This is **not** used to validate/parse the request body, that's done with each - individual body parameter. - """ - if not flat_dependant.body_params: - return None - first_param = flat_dependant.body_params[0] - if not embed_body_fields: - return first_param - model_name = "Body_" + name - BodyModel = create_body_model( - fields=flat_dependant.body_params, model_name=model_name - ) - required = any( - True for f in flat_dependant.body_params if f.field_info.is_required() - ) - BodyFieldInfo_kwargs: dict[str, Any] = { - "annotation": BodyModel, - "alias": "body", - } - if not required: - BodyFieldInfo_kwargs["default"] = None - if any(isinstance(f.field_info, params.File) for f in flat_dependant.body_params): - BodyFieldInfo: type[params.Body] = params.File - elif any(isinstance(f.field_info, params.Form) for f in flat_dependant.body_params): - BodyFieldInfo = params.Form - else: - BodyFieldInfo = params.Body - - body_param_media_types = [ - f.field_info.media_type - for f in flat_dependant.body_params - if isinstance(f.field_info, params.Body) - ] - if len(set(body_param_media_types)) == 1: - BodyFieldInfo_kwargs["media_type"] = body_param_media_types[0] - final_field = create_model_field( - name="body", - type_=BodyModel, - alias="body", - field_info=BodyFieldInfo(**BodyFieldInfo_kwargs), - ) - return final_field - - -def get_validation_alias(field: ModelField) -> str: - va = getattr(field, "validation_alias", None) - return va or field.alias diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/encoders.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/encoders.py deleted file mode 100644 index c9f882d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/encoders.py +++ /dev/null @@ -1,364 +0,0 @@ -import dataclasses -import datetime -from collections import defaultdict, deque -from collections.abc import Callable -from decimal import Decimal -from enum import Enum -from ipaddress import ( - IPv4Address, - IPv4Interface, - IPv4Network, - IPv6Address, - IPv6Interface, - IPv6Network, -) -from pathlib import Path, PurePath -from re import Pattern -from types import GeneratorType -from typing import Annotated, Any -from uuid import UUID - -from annotated_doc import Doc -from fastapi.exceptions import PydanticV1NotSupportedError -from fastapi.types import IncEx -from pydantic import BaseModel -from pydantic.networks import AnyUrl, NameEmail -from pydantic.types import SecretBytes, SecretStr -from pydantic_core import PydanticUndefinedType - -from ._compat import ( - Url, - is_pydantic_v1_model_instance, -) - -try: - # pydantic.color.Color is deprecated since v2.0b3, but supporting for bwd-compat - from pydantic.color import Color # ty: ignore[deprecated] -except ImportError: # pragma: no cover - - class Color: # type: ignore[no-redef] - pass - - -try: - # Supporting the new Color format for newer versions of Pydantic - from pydantic_extra_types.color import Color as PyExtraColor -except ImportError: # pragma: no cover - - class PyExtraColor: # type: ignore[no-redef] - pass - - -# Taken from Pydantic v1 as is -def isoformat(o: datetime.date | datetime.time) -> str: - return o.isoformat() - - -# Adapted from Pydantic v1 -# TODO: pv2 should this return strings instead? -def decimal_encoder(dec_value: Decimal) -> int | float: - """ - Encodes a Decimal as int if there's no exponent, otherwise float - - This is useful when we use ConstrainedDecimal to represent Numeric(x,0) - where an integer (but not int typed) is used. Encoding this as a float - results in failed round-tripping between encode and parse. - Our Id type is a prime example of this. - - >>> decimal_encoder(Decimal("1.0")) - 1.0 - - >>> decimal_encoder(Decimal("1")) - 1 - - >>> decimal_encoder(Decimal("NaN")) - nan - """ - exponent = dec_value.as_tuple().exponent - if isinstance(exponent, int) and exponent >= 0: - return int(dec_value) - else: - return float(dec_value) - - -ENCODERS_BY_TYPE: dict[type[Any], Callable[[Any], Any]] = { - bytes: lambda o: o.decode(), - Color: str, - PyExtraColor: str, - datetime.date: isoformat, - datetime.datetime: isoformat, - datetime.time: isoformat, - datetime.timedelta: lambda td: td.total_seconds(), - Decimal: decimal_encoder, - Enum: lambda o: o.value, - frozenset: list, - deque: list, - GeneratorType: list, - IPv4Address: str, - IPv4Interface: str, - IPv4Network: str, - IPv6Address: str, - IPv6Interface: str, - IPv6Network: str, - NameEmail: str, - Path: str, - Pattern: lambda o: o.pattern, - SecretBytes: str, - SecretStr: str, - set: list, - UUID: str, - Url: str, - AnyUrl: str, -} - - -def generate_encoders_by_class_tuples( - type_encoder_map: dict[Any, Callable[[Any], Any]], -) -> dict[Callable[[Any], Any], tuple[Any, ...]]: - encoders_by_class_tuples: dict[Callable[[Any], Any], tuple[Any, ...]] = defaultdict( - tuple - ) - for type_, encoder in type_encoder_map.items(): - encoders_by_class_tuples[encoder] += (type_,) - return encoders_by_class_tuples - - -encoders_by_class_tuples = generate_encoders_by_class_tuples(ENCODERS_BY_TYPE) - - -def jsonable_encoder( - obj: Annotated[ - Any, - Doc( - """ - The input object to convert to JSON. - """ - ), - ], - include: Annotated[ - IncEx | None, - Doc( - """ - Pydantic's `include` parameter, passed to Pydantic models to set the - fields to include. - """ - ), - ] = None, - exclude: Annotated[ - IncEx | None, - Doc( - """ - Pydantic's `exclude` parameter, passed to Pydantic models to set the - fields to exclude. - """ - ), - ] = None, - by_alias: Annotated[ - bool, - Doc( - """ - Pydantic's `by_alias` parameter, passed to Pydantic models to define if - the output should use the alias names (when provided) or the Python - attribute names. In an API, if you set an alias, it's probably because you - want to use it in the result, so you probably want to leave this set to - `True`. - """ - ), - ] = True, - exclude_unset: Annotated[ - bool, - Doc( - """ - Pydantic's `exclude_unset` parameter, passed to Pydantic models to define - if it should exclude from the output the fields that were not explicitly - set (and that only had their default values). - """ - ), - ] = False, - exclude_defaults: Annotated[ - bool, - Doc( - """ - Pydantic's `exclude_defaults` parameter, passed to Pydantic models to define - if it should exclude from the output the fields that had the same default - value, even when they were explicitly set. - """ - ), - ] = False, - exclude_none: Annotated[ - bool, - Doc( - """ - Pydantic's `exclude_none` parameter, passed to Pydantic models to define - if it should exclude from the output any fields that have a `None` value. - """ - ), - ] = False, - custom_encoder: Annotated[ - dict[Any, Callable[[Any], Any]] | None, - Doc( - """ - Pydantic's `custom_encoder` parameter, passed to Pydantic models to define - a custom encoder. - """ - ), - ] = None, - sqlalchemy_safe: Annotated[ - bool, - Doc( - """ - Exclude from the output any fields that start with the name `_sa`. - - This is mainly a hack for compatibility with SQLAlchemy objects, they - store internal SQLAlchemy-specific state in attributes named with `_sa`, - and those objects can't (and shouldn't be) serialized to JSON. - """ - ), - ] = True, -) -> Any: - """ - Convert any object to something that can be encoded in JSON. - - This is used internally by FastAPI to make sure anything you return can be - encoded as JSON before it is sent to the client. - - You can also use it yourself, for example to convert objects before saving them - in a database that supports only JSON. - - Read more about it in the - [FastAPI docs for JSON Compatible Encoder](https://fastapi.tiangolo.com/tutorial/encoder/). - """ - custom_encoder = custom_encoder or {} - if custom_encoder: - if type(obj) in custom_encoder: - return custom_encoder[type(obj)](obj) - else: - for encoder_type, encoder_instance in custom_encoder.items(): - if isinstance(obj, encoder_type): - return encoder_instance(obj) - if include is not None and not isinstance(include, (set, dict)): - include = set(include) # type: ignore[assignment] # ty: ignore[invalid-assignment] - if exclude is not None and not isinstance(exclude, (set, dict)): - exclude = set(exclude) # type: ignore[assignment] # ty: ignore[invalid-assignment] - if isinstance(obj, BaseModel): - obj_dict = obj.model_dump( - mode="json", - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_none=exclude_none, - exclude_defaults=exclude_defaults, - ) - return jsonable_encoder( - obj_dict, - exclude_none=exclude_none, - exclude_defaults=exclude_defaults, - sqlalchemy_safe=sqlalchemy_safe, - ) - if dataclasses.is_dataclass(obj): - assert not isinstance(obj, type) - obj_dict = dataclasses.asdict(obj) - return jsonable_encoder( - obj_dict, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - custom_encoder=custom_encoder, - sqlalchemy_safe=sqlalchemy_safe, - ) - if isinstance(obj, Enum): - return obj.value - if isinstance(obj, PurePath): - return str(obj) - if isinstance(obj, (str, int, float, type(None))): - return obj - if isinstance(obj, PydanticUndefinedType): - return None - if isinstance(obj, dict): - encoded_dict = {} - allowed_keys = set(obj.keys()) - if include is not None: - allowed_keys &= set(include) - if exclude is not None: - allowed_keys -= set(exclude) - for key, value in obj.items(): - if ( - ( - not sqlalchemy_safe - or (not isinstance(key, str)) - or (not key.startswith("_sa")) - ) - and (value is not None or not exclude_none) - and key in allowed_keys - ): - encoded_key = jsonable_encoder( - key, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_none=exclude_none, - custom_encoder=custom_encoder, - sqlalchemy_safe=sqlalchemy_safe, - ) - encoded_value = jsonable_encoder( - value, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_none=exclude_none, - custom_encoder=custom_encoder, - sqlalchemy_safe=sqlalchemy_safe, - ) - encoded_dict[encoded_key] = encoded_value - return encoded_dict - if isinstance(obj, (list, set, frozenset, GeneratorType, tuple, deque)): - encoded_list = [] - for item in obj: - encoded_list.append( - jsonable_encoder( - item, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - custom_encoder=custom_encoder, - sqlalchemy_safe=sqlalchemy_safe, - ) - ) - return encoded_list - - if type(obj) in ENCODERS_BY_TYPE: - return ENCODERS_BY_TYPE[type(obj)](obj) - for encoder, classes_tuple in encoders_by_class_tuples.items(): - if isinstance(obj, classes_tuple): - return encoder(obj) - if is_pydantic_v1_model_instance(obj): - raise PydanticV1NotSupportedError( - "pydantic.v1 models are no longer supported by FastAPI." - f" Please update the model {obj!r}." - ) - try: - data = dict(obj) - except Exception as e: - errors: list[Exception] = [] - errors.append(e) - try: - data = vars(obj) - except Exception as e: - errors.append(e) - raise ValueError(errors) from e - return jsonable_encoder( - data, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - custom_encoder=custom_encoder, - sqlalchemy_safe=sqlalchemy_safe, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exception_handlers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exception_handlers.py deleted file mode 100644 index 475dd7b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exception_handlers.py +++ /dev/null @@ -1,34 +0,0 @@ -from fastapi.encoders import jsonable_encoder -from fastapi.exceptions import RequestValidationError, WebSocketRequestValidationError -from fastapi.utils import is_body_allowed_for_status_code -from fastapi.websockets import WebSocket -from starlette.exceptions import HTTPException -from starlette.requests import Request -from starlette.responses import JSONResponse, Response -from starlette.status import WS_1008_POLICY_VIOLATION - - -async def http_exception_handler(request: Request, exc: HTTPException) -> Response: - headers = getattr(exc, "headers", None) - if not is_body_allowed_for_status_code(exc.status_code): - return Response(status_code=exc.status_code, headers=headers) - return JSONResponse( - {"detail": exc.detail}, status_code=exc.status_code, headers=headers - ) - - -async def request_validation_exception_handler( - request: Request, exc: RequestValidationError -) -> JSONResponse: - return JSONResponse( - status_code=422, - content={"detail": jsonable_encoder(exc.errors())}, - ) - - -async def websocket_request_validation_exception_handler( - websocket: WebSocket, exc: WebSocketRequestValidationError -) -> None: - await websocket.close( - code=WS_1008_POLICY_VIOLATION, reason=jsonable_encoder(exc.errors()) - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exceptions.py deleted file mode 100644 index d7065c5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/exceptions.py +++ /dev/null @@ -1,256 +0,0 @@ -from collections.abc import Mapping, Sequence -from typing import Annotated, Any, TypedDict - -from annotated_doc import Doc -from pydantic import BaseModel, create_model -from starlette.exceptions import HTTPException as StarletteHTTPException -from starlette.exceptions import WebSocketException as StarletteWebSocketException - - -class EndpointContext(TypedDict, total=False): - function: str - path: str - file: str - line: int - - -class HTTPException(StarletteHTTPException): - """ - An HTTP exception you can raise in your own code to show errors to the client. - - This is for client errors, invalid authentication, invalid data, etc. Not for server - errors in your code. - - Read more about it in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/). - - ## Example - - ```python - from fastapi import FastAPI, HTTPException - - app = FastAPI() - - items = {"foo": "The Foo Wrestlers"} - - - @app.get("/items/{item_id}") - async def read_item(item_id: str): - if item_id not in items: - raise HTTPException(status_code=404, detail="Item not found") - return {"item": items[item_id]} - ``` - """ - - def __init__( - self, - status_code: Annotated[ - int, - Doc( - """ - HTTP status code to send to the client. - - Read more about it in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/#use-httpexception) - """ - ), - ], - detail: Annotated[ - Any, - Doc( - """ - Any data to be sent to the client in the `detail` key of the JSON - response. - - Read more about it in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/#use-httpexception) - """ - ), - ] = None, - headers: Annotated[ - Mapping[str, str] | None, - Doc( - """ - Any headers to send to the client in the response. - - Read more about it in the - [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/#add-custom-headers) - - """ - ), - ] = None, - ) -> None: - super().__init__(status_code=status_code, detail=detail, headers=headers) - - -class WebSocketException(StarletteWebSocketException): - """ - A WebSocket exception you can raise in your own code to show errors to the client. - - This is for client errors, invalid authentication, invalid data, etc. Not for server - errors in your code. - - Read more about it in the - [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). - - ## Example - - ```python - from typing import Annotated - - from fastapi import ( - Cookie, - FastAPI, - WebSocket, - WebSocketException, - status, - ) - - app = FastAPI() - - @app.websocket("/items/{item_id}/ws") - async def websocket_endpoint( - *, - websocket: WebSocket, - session: Annotated[str | None, Cookie()] = None, - item_id: str, - ): - if session is None: - raise WebSocketException(code=status.WS_1008_POLICY_VIOLATION) - await websocket.accept() - while True: - data = await websocket.receive_text() - await websocket.send_text(f"Session cookie is: {session}") - await websocket.send_text(f"Message text was: {data}, for item ID: {item_id}") - ``` - """ - - def __init__( - self, - code: Annotated[ - int, - Doc( - """ - A closing code from the - [valid codes defined in the specification](https://datatracker.ietf.org/doc/html/rfc6455#section-7.4.1). - """ - ), - ], - reason: Annotated[ - str | None, - Doc( - """ - The reason to close the WebSocket connection. - - It is UTF-8-encoded data. The interpretation of the reason is up to the - application, it is not specified by the WebSocket specification. - - It could contain text that could be human-readable or interpretable - by the client code, etc. - """ - ), - ] = None, - ) -> None: - super().__init__(code=code, reason=reason) - - -RequestErrorModel: type[BaseModel] = create_model("Request") -WebSocketErrorModel: type[BaseModel] = create_model("WebSocket") - - -class FastAPIError(RuntimeError): - """ - A generic, FastAPI-specific error. - """ - - -class DependencyScopeError(FastAPIError): - """ - A dependency declared that it depends on another dependency with an invalid - (narrower) scope. - """ - - -class ValidationException(Exception): - def __init__( - self, - errors: Sequence[Any], - *, - endpoint_ctx: EndpointContext | None = None, - ) -> None: - self._errors = errors - self.endpoint_ctx = endpoint_ctx - - ctx = endpoint_ctx or {} - self.endpoint_function = ctx.get("function") - self.endpoint_path = ctx.get("path") - self.endpoint_file = ctx.get("file") - self.endpoint_line = ctx.get("line") - - def errors(self) -> Sequence[Any]: - return self._errors - - def _format_endpoint_context(self) -> str: - if not (self.endpoint_file and self.endpoint_line and self.endpoint_function): - if self.endpoint_path: - return f"\n Endpoint: {self.endpoint_path}" - return "" - - context = f'\n File "{self.endpoint_file}", line {self.endpoint_line}, in {self.endpoint_function}' - if self.endpoint_path: - context += f"\n {self.endpoint_path}" - return context - - def __str__(self) -> str: - message = f"{len(self._errors)} validation error{'s' if len(self._errors) != 1 else ''}:\n" - for err in self._errors: - message += f" {err}\n" - message += self._format_endpoint_context() - return message.rstrip() - - -class RequestValidationError(ValidationException): - def __init__( - self, - errors: Sequence[Any], - *, - body: Any = None, - endpoint_ctx: EndpointContext | None = None, - ) -> None: - super().__init__(errors, endpoint_ctx=endpoint_ctx) - self.body = body - - -class WebSocketRequestValidationError(ValidationException): - def __init__( - self, - errors: Sequence[Any], - *, - endpoint_ctx: EndpointContext | None = None, - ) -> None: - super().__init__(errors, endpoint_ctx=endpoint_ctx) - - -class ResponseValidationError(ValidationException): - def __init__( - self, - errors: Sequence[Any], - *, - body: Any = None, - endpoint_ctx: EndpointContext | None = None, - ) -> None: - super().__init__(errors, endpoint_ctx=endpoint_ctx) - self.body = body - - -class PydanticV1NotSupportedError(FastAPIError): - """ - A pydantic.v1 model is used, which is no longer supported. - """ - - -class FastAPIDeprecationWarning(UserWarning): - """ - A custom deprecation warning as DeprecationWarning is ignored - Ref: https://sethmlarson.dev/deprecations-via-warnings-dont-work-for-python-libraries - """ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/logger.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/logger.py deleted file mode 100644 index 5b2c4ad..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/logger.py +++ /dev/null @@ -1,3 +0,0 @@ -import logging - -logger = logging.getLogger("fastapi") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__init__.py deleted file mode 100644 index 620296d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.middleware import Middleware as Middleware diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3ee7d53..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/asyncexitstack.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/asyncexitstack.cpython-311.pyc deleted file mode 100644 index 3941517..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/asyncexitstack.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/cors.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/cors.cpython-311.pyc deleted file mode 100644 index 0522480..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/cors.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/gzip.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/gzip.cpython-311.pyc deleted file mode 100644 index e01e150..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/gzip.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-311.pyc deleted file mode 100644 index e3a1699..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/httpsredirect.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-311.pyc deleted file mode 100644 index af0683c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/trustedhost.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-311.pyc deleted file mode 100644 index 60ed486..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/__pycache__/wsgi.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py deleted file mode 100644 index 4ce3f5a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py +++ /dev/null @@ -1,18 +0,0 @@ -from contextlib import AsyncExitStack - -from starlette.types import ASGIApp, Receive, Scope, Send - - -# Used mainly to close files after the request is done, dependencies are closed -# in their own AsyncExitStack -class AsyncExitStackMiddleware: - def __init__( - self, app: ASGIApp, context_name: str = "fastapi_middleware_astack" - ) -> None: - self.app = app - self.context_name = context_name - - async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: - async with AsyncExitStack() as stack: - scope[self.context_name] = stack - await self.app(scope, receive, send) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/cors.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/cors.py deleted file mode 100644 index 8dfaad0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/cors.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.middleware.cors import CORSMiddleware as CORSMiddleware # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/gzip.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/gzip.py deleted file mode 100644 index bbeb2cc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/gzip.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.middleware.gzip import GZipMiddleware as GZipMiddleware # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/httpsredirect.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/httpsredirect.py deleted file mode 100644 index b7a3d8e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/httpsredirect.py +++ /dev/null @@ -1,3 +0,0 @@ -from starlette.middleware.httpsredirect import ( # noqa - HTTPSRedirectMiddleware as HTTPSRedirectMiddleware, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/trustedhost.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/trustedhost.py deleted file mode 100644 index 08d7e03..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/trustedhost.py +++ /dev/null @@ -1,3 +0,0 @@ -from starlette.middleware.trustedhost import ( # noqa - TrustedHostMiddleware as TrustedHostMiddleware, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/wsgi.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/wsgi.py deleted file mode 100644 index 69e4dca..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/middleware/wsgi.py +++ /dev/null @@ -1,3 +0,0 @@ -from starlette.middleware.wsgi import ( - WSGIMiddleware as WSGIMiddleware, -) # pragma: no cover # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b9e7132..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/constants.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/constants.cpython-311.pyc deleted file mode 100644 index f1371df..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/constants.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/docs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/docs.cpython-311.pyc deleted file mode 100644 index 3576ce0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/docs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/models.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/models.cpython-311.pyc deleted file mode 100644 index 17dcb3a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index b0d1575..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/constants.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/constants.py deleted file mode 100644 index d724ee3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/constants.py +++ /dev/null @@ -1,3 +0,0 @@ -METHODS_WITH_BODY = {"GET", "HEAD", "POST", "PUT", "DELETE", "PATCH"} -REF_PREFIX = "#/components/schemas/" -REF_TEMPLATE = "#/components/schemas/{model}" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/docs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/docs.py deleted file mode 100644 index 0d9242f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/docs.py +++ /dev/null @@ -1,389 +0,0 @@ -import json -from typing import Annotated, Any - -from annotated_doc import Doc -from fastapi.encoders import jsonable_encoder -from starlette.responses import HTMLResponse - - -def _html_safe_json(value: Any) -> str: - """Serialize a value to JSON with HTML special characters escaped. - - This prevents injection when the JSON is embedded inside a - - - - - """ - return HTMLResponse(html) - - -def get_redoc_html( - *, - openapi_url: Annotated[ - str, - Doc( - """ - The OpenAPI URL that ReDoc should load and use. - - This is normally done automatically by FastAPI using the default URL - `/openapi.json`. - - Read more about it in the - [FastAPI docs for Conditional OpenAPI](https://fastapi.tiangolo.com/how-to/conditional-openapi/#conditional-openapi-from-settings-and-env-vars) - """ - ), - ], - title: Annotated[ - str, - Doc( - """ - The HTML `` content, normally shown in the browser tab. - - Read more about it in the - [FastAPI docs for Custom Docs UI Static Assets](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/) - """ - ), - ], - redoc_js_url: Annotated[ - str, - Doc( - """ - The URL to use to load the ReDoc JavaScript. - - It is normally set to a CDN URL. - - Read more about it in the - [FastAPI docs for Custom Docs UI Static Assets](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/) - """ - ), - ] = "https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js", - redoc_favicon_url: Annotated[ - str, - Doc( - """ - The URL of the favicon to use. It is normally shown in the browser tab. - """ - ), - ] = "https://fastapi.tiangolo.com/img/favicon.png", - with_google_fonts: Annotated[ - bool, - Doc( - """ - Load and use Google Fonts. - """ - ), - ] = True, -) -> HTMLResponse: - """ - Generate and return the HTML response that loads ReDoc for the alternative - API docs (normally served at `/redoc`). - - You would only call this function yourself if you needed to override some parts, - for example the URLs to use to load ReDoc's JavaScript and CSS. - - Read more about it in the - [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/). - """ - html = f""" - <!DOCTYPE html> - <html> - <head> - <title>{title} - - - - """ - if with_google_fonts: - html += """ - - """ - html += f""" - - - - - - - - - - - """ - return HTMLResponse(html) - - -def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse: - """ - Generate the HTML response with the OAuth2 redirection for Swagger UI. - - You normally don't need to use or change this. - """ - # copied from https://github.com/swagger-api/swagger-ui/blob/v4.14.0/dist/oauth2-redirect.html - html = """ - - - - Swagger UI: OAuth2 Redirect - - - - - - """ - return HTMLResponse(content=html) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/models.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/models.py deleted file mode 100644 index ca26bf9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/models.py +++ /dev/null @@ -1,435 +0,0 @@ -from collections.abc import Callable, Iterable, Mapping -from enum import Enum -from typing import Annotated, Any, Literal, Optional, Union - -from fastapi._compat import with_info_plain_validator_function -from fastapi.logger import logger -from pydantic import ( - AnyUrl, - BaseModel, - Field, - GetJsonSchemaHandler, -) -from typing_extensions import TypedDict -from typing_extensions import deprecated as typing_deprecated - -try: - import email_validator - - assert email_validator # make autoflake ignore the unused import - from pydantic import EmailStr -except ImportError: # pragma: no cover - - class EmailStr(str): # type: ignore[no-redef] - @classmethod - def __get_validators__(cls) -> Iterable[Callable[..., Any]]: - yield cls.validate - - @classmethod - def validate(cls, v: Any) -> str: - logger.warning( - "email-validator not installed, email fields will be treated as str.\n" - "To install, run: pip install email-validator" - ) - return str(v) - - @classmethod - def _validate(cls, __input_value: Any, _: Any) -> str: - logger.warning( - "email-validator not installed, email fields will be treated as str.\n" - "To install, run: pip install email-validator" - ) - return str(__input_value) - - @classmethod - def __get_pydantic_json_schema__( - cls, core_schema: Mapping[str, Any], handler: GetJsonSchemaHandler - ) -> dict[str, Any]: - return {"type": "string", "format": "email"} - - @classmethod - def __get_pydantic_core_schema__( - cls, source: type[Any], handler: Callable[[Any], Mapping[str, Any]] - ) -> Mapping[str, Any]: - return with_info_plain_validator_function(cls._validate) - - -class BaseModelWithConfig(BaseModel): - model_config = {"extra": "allow"} - - -class Contact(BaseModelWithConfig): - name: str | None = None - url: AnyUrl | None = None - email: EmailStr | None = None - - -class License(BaseModelWithConfig): - name: str - identifier: str | None = None - url: AnyUrl | None = None - - -class Info(BaseModelWithConfig): - title: str - summary: str | None = None - description: str | None = None - termsOfService: str | None = None - contact: Contact | None = None - license: License | None = None - version: str - - -class ServerVariable(BaseModelWithConfig): - enum: Annotated[list[str] | None, Field(min_length=1)] = None - default: str - description: str | None = None - - -class Server(BaseModelWithConfig): - url: AnyUrl | str - description: str | None = None - variables: dict[str, ServerVariable] | None = None - - -class Reference(BaseModel): - ref: str = Field(alias="$ref") - - -class Discriminator(BaseModel): - propertyName: str - mapping: dict[str, str] | None = None - - -class XML(BaseModelWithConfig): - name: str | None = None - namespace: str | None = None - prefix: str | None = None - attribute: bool | None = None - wrapped: bool | None = None - - -class ExternalDocumentation(BaseModelWithConfig): - description: str | None = None - url: AnyUrl - - -# Ref JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation#name-type -SchemaType = Literal[ - "array", "boolean", "integer", "null", "number", "object", "string" -] - - -class Schema(BaseModelWithConfig): - # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-the-json-schema-core-vocabu - # Core Vocabulary - schema_: str | None = Field(default=None, alias="$schema") - vocabulary: str | None = Field(default=None, alias="$vocabulary") - id: str | None = Field(default=None, alias="$id") - anchor: str | None = Field(default=None, alias="$anchor") - dynamicAnchor: str | None = Field(default=None, alias="$dynamicAnchor") - ref: str | None = Field(default=None, alias="$ref") - dynamicRef: str | None = Field(default=None, alias="$dynamicRef") - defs: dict[str, "SchemaOrBool"] | None = Field(default=None, alias="$defs") - comment: str | None = Field(default=None, alias="$comment") - # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s - # A Vocabulary for Applying Subschemas - allOf: list["SchemaOrBool"] | None = None - anyOf: list["SchemaOrBool"] | None = None - oneOf: list["SchemaOrBool"] | None = None - not_: Optional["SchemaOrBool"] = Field(default=None, alias="not") - if_: Optional["SchemaOrBool"] = Field(default=None, alias="if") - then: Optional["SchemaOrBool"] = None - else_: Optional["SchemaOrBool"] = Field(default=None, alias="else") - dependentSchemas: dict[str, "SchemaOrBool"] | None = None - prefixItems: list["SchemaOrBool"] | None = None - items: Optional["SchemaOrBool"] = None - contains: Optional["SchemaOrBool"] = None - properties: dict[str, "SchemaOrBool"] | None = None - patternProperties: dict[str, "SchemaOrBool"] | None = None - additionalProperties: Optional["SchemaOrBool"] = None - propertyNames: Optional["SchemaOrBool"] = None - unevaluatedItems: Optional["SchemaOrBool"] = None - unevaluatedProperties: Optional["SchemaOrBool"] = None - # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-structural - # A Vocabulary for Structural Validation - type: SchemaType | list[SchemaType] | None = None - enum: list[Any] | None = None - const: Any | None = None - multipleOf: float | None = Field(default=None, gt=0) - maximum: float | None = None - exclusiveMaximum: float | None = None - minimum: float | None = None - exclusiveMinimum: float | None = None - maxLength: int | None = Field(default=None, ge=0) - minLength: int | None = Field(default=None, ge=0) - pattern: str | None = None - maxItems: int | None = Field(default=None, ge=0) - minItems: int | None = Field(default=None, ge=0) - uniqueItems: bool | None = None - maxContains: int | None = Field(default=None, ge=0) - minContains: int | None = Field(default=None, ge=0) - maxProperties: int | None = Field(default=None, ge=0) - minProperties: int | None = Field(default=None, ge=0) - required: list[str] | None = None - dependentRequired: dict[str, set[str]] | None = None - # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-vocabularies-for-semantic-c - # Vocabularies for Semantic Content With "format" - format: str | None = None - # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-the-conten - # A Vocabulary for the Contents of String-Encoded Data - contentEncoding: str | None = None - contentMediaType: str | None = None - contentSchema: Optional["SchemaOrBool"] = None - # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-basic-meta - # A Vocabulary for Basic Meta-Data Annotations - title: str | None = None - description: str | None = None - default: Any | None = None - deprecated: bool | None = None - readOnly: bool | None = None - writeOnly: bool | None = None - examples: list[Any] | None = None - # Ref: OpenAPI 3.1.0: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#schema-object - # Schema Object - discriminator: Discriminator | None = None - xml: XML | None = None - externalDocs: ExternalDocumentation | None = None - example: Annotated[ - Any | None, - typing_deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = None - - -# Ref: https://json-schema.org/draft/2020-12/json-schema-core.html#name-json-schema-documents -# A JSON Schema MUST be an object or a boolean. -SchemaOrBool = Schema | bool - - -class Example(TypedDict, total=False): - summary: str | None - description: str | None - value: Any | None - externalValue: AnyUrl | None - - __pydantic_config__ = {"extra": "allow"} # type: ignore[misc] # ty: ignore[invalid-typed-dict-statement] - - -class ParameterInType(Enum): - query = "query" - header = "header" - path = "path" - cookie = "cookie" - - -class Encoding(BaseModelWithConfig): - contentType: str | None = None - headers: dict[str, Union["Header", Reference]] | None = None - style: str | None = None - explode: bool | None = None - allowReserved: bool | None = None - - -class MediaType(BaseModelWithConfig): - schema_: Schema | Reference | None = Field(default=None, alias="schema") - example: Any | None = None - examples: dict[str, Example | Reference] | None = None - encoding: dict[str, Encoding] | None = None - - -class ParameterBase(BaseModelWithConfig): - description: str | None = None - required: bool | None = None - deprecated: bool | None = None - # Serialization rules for simple scenarios - style: str | None = None - explode: bool | None = None - allowReserved: bool | None = None - schema_: Schema | Reference | None = Field(default=None, alias="schema") - example: Any | None = None - examples: dict[str, Example | Reference] | None = None - # Serialization rules for more complex scenarios - content: dict[str, MediaType] | None = None - - -class Parameter(ParameterBase): - name: str - in_: ParameterInType = Field(alias="in") - - -class Header(ParameterBase): - pass - - -class RequestBody(BaseModelWithConfig): - description: str | None = None - content: dict[str, MediaType] - required: bool | None = None - - -class Link(BaseModelWithConfig): - operationRef: str | None = None - operationId: str | None = None - parameters: dict[str, Any | str] | None = None - requestBody: Any | str | None = None - description: str | None = None - server: Server | None = None - - -class Response(BaseModelWithConfig): - description: str - headers: dict[str, Header | Reference] | None = None - content: dict[str, MediaType] | None = None - links: dict[str, Link | Reference] | None = None - - -class Operation(BaseModelWithConfig): - tags: list[str] | None = None - summary: str | None = None - description: str | None = None - externalDocs: ExternalDocumentation | None = None - operationId: str | None = None - parameters: list[Parameter | Reference] | None = None - requestBody: RequestBody | Reference | None = None - # Using Any for Specification Extensions - responses: dict[str, Response | Any] | None = None - callbacks: dict[str, dict[str, "PathItem"] | Reference] | None = None - deprecated: bool | None = None - security: list[dict[str, list[str]]] | None = None - servers: list[Server] | None = None - - -class PathItem(BaseModelWithConfig): - ref: str | None = Field(default=None, alias="$ref") - summary: str | None = None - description: str | None = None - get: Operation | None = None - put: Operation | None = None - post: Operation | None = None - delete: Operation | None = None - options: Operation | None = None - head: Operation | None = None - patch: Operation | None = None - trace: Operation | None = None - servers: list[Server] | None = None - parameters: list[Parameter | Reference] | None = None - - -class SecuritySchemeType(Enum): - apiKey = "apiKey" - http = "http" - oauth2 = "oauth2" - openIdConnect = "openIdConnect" - - -class SecurityBase(BaseModelWithConfig): - type_: SecuritySchemeType = Field(alias="type") - description: str | None = None - - -class APIKeyIn(Enum): - query = "query" - header = "header" - cookie = "cookie" - - -class APIKey(SecurityBase): - type_: SecuritySchemeType = Field(default=SecuritySchemeType.apiKey, alias="type") - in_: APIKeyIn = Field(alias="in") - name: str - - -class HTTPBase(SecurityBase): - type_: SecuritySchemeType = Field(default=SecuritySchemeType.http, alias="type") - scheme: str - - -class HTTPBearer(HTTPBase): - scheme: Literal["bearer"] = "bearer" - bearerFormat: str | None = None - - -class OAuthFlow(BaseModelWithConfig): - refreshUrl: str | None = None - scopes: dict[str, str] = {} - - -class OAuthFlowImplicit(OAuthFlow): - authorizationUrl: str - - -class OAuthFlowPassword(OAuthFlow): - tokenUrl: str - - -class OAuthFlowClientCredentials(OAuthFlow): - tokenUrl: str - - -class OAuthFlowAuthorizationCode(OAuthFlow): - authorizationUrl: str - tokenUrl: str - - -class OAuthFlows(BaseModelWithConfig): - implicit: OAuthFlowImplicit | None = None - password: OAuthFlowPassword | None = None - clientCredentials: OAuthFlowClientCredentials | None = None - authorizationCode: OAuthFlowAuthorizationCode | None = None - - -class OAuth2(SecurityBase): - type_: SecuritySchemeType = Field(default=SecuritySchemeType.oauth2, alias="type") - flows: OAuthFlows - - -class OpenIdConnect(SecurityBase): - type_: SecuritySchemeType = Field( - default=SecuritySchemeType.openIdConnect, alias="type" - ) - openIdConnectUrl: str - - -SecurityScheme = APIKey | HTTPBase | OAuth2 | OpenIdConnect | HTTPBearer - - -class Components(BaseModelWithConfig): - schemas: dict[str, Schema | Reference] | None = None - responses: dict[str, Response | Reference] | None = None - parameters: dict[str, Parameter | Reference] | None = None - examples: dict[str, Example | Reference] | None = None - requestBodies: dict[str, RequestBody | Reference] | None = None - headers: dict[str, Header | Reference] | None = None - securitySchemes: dict[str, SecurityScheme | Reference] | None = None - links: dict[str, Link | Reference] | None = None - # Using Any for Specification Extensions - callbacks: dict[str, dict[str, PathItem] | Reference | Any] | None = None - pathItems: dict[str, PathItem | Reference] | None = None - - -class Tag(BaseModelWithConfig): - name: str - description: str | None = None - externalDocs: ExternalDocumentation | None = None - - -class OpenAPI(BaseModelWithConfig): - openapi: str - info: Info - jsonSchemaDialect: str | None = None - servers: list[Server] | None = None - # Using Any for Specification Extensions - paths: dict[str, PathItem | Any] | None = None - webhooks: dict[str, PathItem | Reference] | None = None - components: Components | None = None - security: list[dict[str, list[str]]] | None = None - tags: list[Tag] | None = None - externalDocs: ExternalDocumentation | None = None - - -Schema.model_rebuild() -Operation.model_rebuild() -Encoding.model_rebuild() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/utils.py deleted file mode 100644 index 2e0aca1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/openapi/utils.py +++ /dev/null @@ -1,617 +0,0 @@ -import copy -import http.client -import inspect -import warnings -from collections.abc import Sequence -from typing import Any, Literal, cast - -from fastapi import routing -from fastapi._compat import ( - ModelField, - get_definitions, - get_flat_models_from_fields, - get_model_name_map, - get_schema_from_model_field, - lenient_issubclass, -) -from fastapi.datastructures import DefaultPlaceholder, _Unset -from fastapi.dependencies.models import Dependant -from fastapi.dependencies.utils import ( - _get_flat_fields_from_params, - get_flat_dependant, - get_flat_params, - get_validation_alias, -) -from fastapi.encoders import jsonable_encoder -from fastapi.exceptions import FastAPIDeprecationWarning -from fastapi.openapi.constants import METHODS_WITH_BODY, REF_PREFIX -from fastapi.openapi.models import OpenAPI -from fastapi.params import Body, ParamTypes -from fastapi.responses import Response -from fastapi.sse import _SSE_EVENT_SCHEMA -from fastapi.types import ModelNameMap -from fastapi.utils import ( - deep_dict_update, - generate_operation_id_for_path, - is_body_allowed_for_status_code, -) -from pydantic import BaseModel -from starlette.responses import JSONResponse -from starlette.routing import BaseRoute - -validation_error_definition = { - "title": "ValidationError", - "type": "object", - "properties": { - "loc": { - "title": "Location", - "type": "array", - "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, - }, - "msg": {"title": "Message", "type": "string"}, - "type": {"title": "Error Type", "type": "string"}, - "input": {"title": "Input"}, - "ctx": {"title": "Context", "type": "object"}, - }, - "required": ["loc", "msg", "type"], -} - -validation_error_response_definition = { - "title": "HTTPValidationError", - "type": "object", - "properties": { - "detail": { - "title": "Detail", - "type": "array", - "items": {"$ref": REF_PREFIX + "ValidationError"}, - } - }, -} - -status_code_ranges: dict[str, str] = { - "1XX": "Information", - "2XX": "Success", - "3XX": "Redirection", - "4XX": "Client Error", - "5XX": "Server Error", - "DEFAULT": "Default Response", -} - - -def get_openapi_security_definitions( - flat_dependant: Dependant, -) -> tuple[dict[str, Any], list[dict[str, Any]]]: - security_definitions = {} - # Use a dict to merge scopes for same security scheme - operation_security_dict: dict[str, list[str]] = {} - for security_dependency in flat_dependant._security_dependencies: - security_definition = jsonable_encoder( - security_dependency._security_scheme.model, - by_alias=True, - exclude_none=True, - ) - security_name = security_dependency._security_scheme.scheme_name - security_definitions[security_name] = security_definition - # Merge scopes for the same security scheme - if security_name not in operation_security_dict: - operation_security_dict[security_name] = [] - for scope in security_dependency.oauth_scopes or []: - if scope not in operation_security_dict[security_name]: - operation_security_dict[security_name].append(scope) - operation_security = [ - {name: scopes} for name, scopes in operation_security_dict.items() - ] - return security_definitions, operation_security - - -def _get_openapi_operation_parameters( - *, - dependant: Dependant, - model_name_map: ModelNameMap, - field_mapping: dict[ - tuple[ModelField, Literal["validation", "serialization"]], dict[str, Any] - ], - separate_input_output_schemas: bool = True, -) -> list[dict[str, Any]]: - parameters = [] - flat_dependant = get_flat_dependant(dependant, skip_repeats=True) - path_params = _get_flat_fields_from_params(flat_dependant.path_params) - query_params = _get_flat_fields_from_params(flat_dependant.query_params) - header_params = _get_flat_fields_from_params(flat_dependant.header_params) - cookie_params = _get_flat_fields_from_params(flat_dependant.cookie_params) - parameter_groups = [ - (ParamTypes.path, path_params), - (ParamTypes.query, query_params), - (ParamTypes.header, header_params), - (ParamTypes.cookie, cookie_params), - ] - default_convert_underscores = True - if len(flat_dependant.header_params) == 1: - first_field = flat_dependant.header_params[0] - if lenient_issubclass(first_field.field_info.annotation, BaseModel): - default_convert_underscores = getattr( - first_field.field_info, "convert_underscores", True - ) - for param_type, param_group in parameter_groups: - for param in param_group: - field_info = param.field_info - # field_info = cast(Param, field_info) - if not getattr(field_info, "include_in_schema", True): - continue - param_schema = get_schema_from_model_field( - field=param, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - name = get_validation_alias(param) - convert_underscores = getattr( - param.field_info, - "convert_underscores", - default_convert_underscores, - ) - if ( - param_type == ParamTypes.header - and name == param.name - and convert_underscores - ): - name = param.name.replace("_", "-") - - parameter = { - "name": name, - "in": param_type.value, - "required": param.field_info.is_required(), - "schema": param_schema, - } - if field_info.description: - parameter["description"] = field_info.description - openapi_examples = getattr(field_info, "openapi_examples", None) - example = getattr(field_info, "example", None) - if openapi_examples: - parameter["examples"] = jsonable_encoder(openapi_examples) - elif example is not _Unset: - parameter["example"] = jsonable_encoder(example) - if getattr(field_info, "deprecated", None): - parameter["deprecated"] = True - parameters.append(parameter) - return parameters - - -def get_openapi_operation_request_body( - *, - body_field: ModelField | None, - model_name_map: ModelNameMap, - field_mapping: dict[ - tuple[ModelField, Literal["validation", "serialization"]], dict[str, Any] - ], - separate_input_output_schemas: bool = True, -) -> dict[str, Any] | None: - if not body_field: - return None - assert isinstance(body_field, ModelField) - body_schema = get_schema_from_model_field( - field=body_field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - field_info = cast(Body, body_field.field_info) - request_media_type = field_info.media_type - required = body_field.field_info.is_required() - request_body_oai: dict[str, Any] = {} - if required: - request_body_oai["required"] = required - request_media_content: dict[str, Any] = {"schema": body_schema} - if field_info.openapi_examples: - request_media_content["examples"] = jsonable_encoder( - field_info.openapi_examples - ) - elif field_info.example is not _Unset: - request_media_content["example"] = jsonable_encoder(field_info.example) - request_body_oai["content"] = {request_media_type: request_media_content} - return request_body_oai - - -def generate_operation_id( - *, route: routing._APIRouteLike, method: str -) -> str: # pragma: nocover - warnings.warn( - message="fastapi.openapi.utils.generate_operation_id() was deprecated, " - "it is not used internally, and will be removed soon", - category=FastAPIDeprecationWarning, - stacklevel=2, - ) - if route.operation_id: - return route.operation_id - path: str = route.path_format - return generate_operation_id_for_path(name=route.name, path=path, method=method) - - -def generate_operation_summary(*, route: routing._APIRouteLike, method: str) -> str: - if route.summary: - return route.summary - return route.name.replace("_", " ").title() - - -def get_openapi_operation_metadata( - *, route: routing._APIRouteLike, method: str, operation_ids: set[str] -) -> dict[str, Any]: - operation: dict[str, Any] = {} - if route.tags: - operation["tags"] = route.tags - operation["summary"] = generate_operation_summary(route=route, method=method) - if route.description: - operation["description"] = route.description - operation_id = route.operation_id or route.unique_id - if operation_id in operation_ids: - endpoint_name = getattr(route.endpoint, "__name__", "") - message = f"Duplicate Operation ID {operation_id} for function {endpoint_name}" - file_name = getattr(route.endpoint, "__globals__", {}).get("__file__") - if file_name: - message += f" at {file_name}" - warnings.warn(message, stacklevel=1) - operation_ids.add(operation_id) - operation["operationId"] = operation_id - if route.deprecated: - operation["deprecated"] = route.deprecated - return operation - - -def get_openapi_path( - *, - route: routing._APIRouteLike, - operation_ids: set[str], - model_name_map: ModelNameMap, - field_mapping: dict[ - tuple[ModelField, Literal["validation", "serialization"]], dict[str, Any] - ], - separate_input_output_schemas: bool = True, -) -> tuple[dict[str, Any], dict[str, Any], dict[str, Any]]: - path = {} - security_schemes: dict[str, Any] = {} - definitions: dict[str, Any] = {} - assert route.methods is not None, "Methods must be a list" - if isinstance(route.response_class, DefaultPlaceholder): - current_response_class: type[Response] = route.response_class.value - else: - current_response_class = route.response_class - assert current_response_class, "A response class is needed to generate OpenAPI" - route_response_media_type: str | None = current_response_class.media_type - if route.include_in_schema: - for method in route.methods: - operation = get_openapi_operation_metadata( - route=route, method=method, operation_ids=operation_ids - ) - parameters: list[dict[str, Any]] = [] - flat_dependant = get_flat_dependant(route.dependant, skip_repeats=True) - security_definitions, operation_security = get_openapi_security_definitions( - flat_dependant=flat_dependant - ) - if operation_security: - operation.setdefault("security", []).extend(operation_security) - if security_definitions: - security_schemes.update(security_definitions) - operation_parameters = _get_openapi_operation_parameters( - dependant=route.dependant, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - parameters.extend(operation_parameters) - if parameters: - all_parameters = { - (param["in"], param["name"]): param for param in parameters - } - required_parameters = { - (param["in"], param["name"]): param - for param in parameters - if param.get("required") - } - # Make sure required definitions of the same parameter take precedence - # over non-required definitions - all_parameters.update(required_parameters) - operation["parameters"] = list(all_parameters.values()) - if method in METHODS_WITH_BODY: - request_body_oai = get_openapi_operation_request_body( - body_field=route.body_field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - if request_body_oai: - operation["requestBody"] = request_body_oai - if route.callbacks: - callbacks = {} - for callback in route.callbacks: - if isinstance(callback, routing.APIRoute): - ( - cb_path, - cb_security_schemes, - cb_definitions, - ) = get_openapi_path( - route=cast(routing._APIRouteLike, callback), - operation_ids=operation_ids, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - callbacks[callback.name] = {callback.path: cb_path} - operation["callbacks"] = callbacks - if route.status_code is not None: - status_code = str(route.status_code) - else: - # It would probably make more sense for all response classes to have an - # explicit default status_code, and to extract it from them, instead of - # doing this inspection tricks, that would probably be in the future - # TODO: probably make status_code a default class attribute for all - # responses in Starlette - response_signature = inspect.signature(current_response_class.__init__) - status_code_param = response_signature.parameters.get("status_code") - if status_code_param is not None: - if isinstance(status_code_param.default, int): - status_code = str(status_code_param.default) - operation.setdefault("responses", {}).setdefault(status_code, {})[ - "description" - ] = route.response_description - if is_body_allowed_for_status_code(route.status_code): - # Check for JSONL streaming (generator endpoints) - if route.is_json_stream: - jsonl_content: dict[str, Any] = {} - if route.stream_item_field: - item_schema = get_schema_from_model_field( - field=route.stream_item_field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - jsonl_content["itemSchema"] = item_schema - else: - jsonl_content["itemSchema"] = {} - operation.setdefault("responses", {}).setdefault( - status_code, {} - ).setdefault("content", {})["application/jsonl"] = jsonl_content - elif route.is_sse_stream: - sse_content: dict[str, Any] = {} - item_schema = copy.deepcopy(_SSE_EVENT_SCHEMA) - if route.stream_item_field: - content_schema = get_schema_from_model_field( - field=route.stream_item_field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - item_schema["required"] = ["data"] - item_schema["properties"]["data"] = { - "type": "string", - "contentMediaType": "application/json", - "contentSchema": content_schema, - } - sse_content["itemSchema"] = item_schema - operation.setdefault("responses", {}).setdefault( - status_code, {} - ).setdefault("content", {})["text/event-stream"] = sse_content - elif route_response_media_type: - response_schema = {"type": "string"} - if lenient_issubclass(current_response_class, JSONResponse): - if route.response_field: - response_schema = get_schema_from_model_field( - field=route.response_field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - else: - response_schema = {} - operation.setdefault("responses", {}).setdefault( - status_code, {} - ).setdefault("content", {}).setdefault( - route_response_media_type, {} - )["schema"] = response_schema - if route.responses: - operation_responses = operation.setdefault("responses", {}) - for ( - additional_status_code, - additional_response, - ) in route.responses.items(): - process_response = copy.deepcopy(additional_response) - process_response.pop("model", None) - status_code_key = str(additional_status_code).upper() - if status_code_key == "DEFAULT": - status_code_key = "default" - openapi_response = operation_responses.setdefault( - status_code_key, {} - ) - assert isinstance(process_response, dict), ( - "An additional response must be a dict" - ) - field = route.response_fields.get(additional_status_code) - additional_field_schema: dict[str, Any] | None = None - if field: - additional_field_schema = get_schema_from_model_field( - field=field, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - media_type = route_response_media_type or "application/json" - additional_schema = ( - process_response.setdefault("content", {}) - .setdefault(media_type, {}) - .setdefault("schema", {}) - ) - deep_dict_update(additional_schema, additional_field_schema) - status_text: str | None = status_code_ranges.get( - str(additional_status_code).upper() - ) or http.client.responses.get(int(additional_status_code)) - description = ( - process_response.get("description") - or openapi_response.get("description") - or status_text - or "Additional Response" - ) - deep_dict_update(openapi_response, process_response) - openapi_response["description"] = description - http422 = "422" - all_route_params = get_flat_params(route.dependant) - if (all_route_params or route.body_field) and not any( - status in operation["responses"] - for status in [http422, "4XX", "default"] - ): - operation["responses"][http422] = { - "description": "Validation Error", - "content": { - "application/json": { - "schema": {"$ref": REF_PREFIX + "HTTPValidationError"} - } - }, - } - if "ValidationError" not in definitions: - definitions.update( - { - "ValidationError": validation_error_definition, - "HTTPValidationError": validation_error_response_definition, - } - ) - if route.openapi_extra: - deep_dict_update(operation, route.openapi_extra) - path[method.lower()] = operation - return path, security_schemes, definitions - - -def _get_api_route_for_openapi( - route_context: routing.RouteContext, -) -> routing._APIRouteLike | None: - if isinstance(route_context.original_route, routing.APIRoute): - return cast(routing._APIRouteLike, route_context) - return None - - -def get_fields_from_routes( - routes: Sequence[BaseRoute | routing.RouteContext], -) -> list[ModelField]: - body_fields_from_routes: list[ModelField] = [] - responses_from_routes: list[ModelField] = [] - request_fields_from_routes: list[ModelField] = [] - callback_flat_models: list[ModelField] = [] - for route_context in routing.iter_route_contexts(routes): - api_route = _get_api_route_for_openapi(route_context) - if api_route is None: - continue - if api_route.include_in_schema: - if api_route.body_field: - assert isinstance(api_route.body_field, ModelField), ( - "A request body must be a Pydantic Field" - ) - body_fields_from_routes.append(api_route.body_field) - if api_route.response_field: - responses_from_routes.append(api_route.response_field) - if api_route.response_fields: - responses_from_routes.extend(api_route.response_fields.values()) - if api_route.stream_item_field: - responses_from_routes.append(api_route.stream_item_field) - if api_route.callbacks: - callback_flat_models.extend(get_fields_from_routes(api_route.callbacks)) - params = get_flat_params(api_route.dependant) - request_fields_from_routes.extend(params) - - flat_models = callback_flat_models + list( - body_fields_from_routes + responses_from_routes + request_fields_from_routes - ) - return flat_models - - -def get_openapi( - *, - title: str, - version: str, - openapi_version: str = "3.1.0", - summary: str | None = None, - description: str | None = None, - routes: Sequence[BaseRoute | routing.RouteContext], - webhooks: Sequence[BaseRoute | routing.RouteContext] | None = None, - tags: list[dict[str, Any]] | None = None, - servers: list[dict[str, str | Any]] | None = None, - terms_of_service: str | None = None, - contact: dict[str, str | Any] | None = None, - license_info: dict[str, str | Any] | None = None, - separate_input_output_schemas: bool = True, - external_docs: dict[str, Any] | None = None, -) -> dict[str, Any]: - info: dict[str, Any] = {"title": title, "version": version} - if summary: - info["summary"] = summary - if description: - info["description"] = description - if terms_of_service: - info["termsOfService"] = terms_of_service - if contact: - info["contact"] = contact - if license_info: - info["license"] = license_info - output: dict[str, Any] = {"openapi": openapi_version, "info": info} - if servers: - output["servers"] = servers - components: dict[str, dict[str, Any]] = {} - paths: dict[str, dict[str, Any]] = {} - webhook_paths: dict[str, dict[str, Any]] = {} - operation_ids: set[str] = set() - all_fields = get_fields_from_routes(list(routes) + list(webhooks or [])) - flat_models = get_flat_models_from_fields(all_fields, known_models=set()) - model_name_map = get_model_name_map(flat_models) - field_mapping, definitions = get_definitions( - fields=all_fields, - model_name_map=model_name_map, - separate_input_output_schemas=separate_input_output_schemas, - ) - for route_context in routing.iter_route_contexts(routes): - api_route = _get_api_route_for_openapi(route_context) - if api_route is not None: - result = get_openapi_path( - route=api_route, - operation_ids=operation_ids, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - if result: - path, security_schemes, path_definitions = result - if path: - paths.setdefault(api_route.path_format, {}).update(path) - if security_schemes: - components.setdefault("securitySchemes", {}).update( - security_schemes - ) - if path_definitions: - definitions.update(path_definitions) - for webhook_context in routing.iter_route_contexts(webhooks or []): - api_webhook = _get_api_route_for_openapi(webhook_context) - if api_webhook is not None: - result = get_openapi_path( - route=api_webhook, - operation_ids=operation_ids, - model_name_map=model_name_map, - field_mapping=field_mapping, - separate_input_output_schemas=separate_input_output_schemas, - ) - if result: - path, security_schemes, path_definitions = result - if path: - webhook_paths.setdefault(api_webhook.path_format, {}).update(path) - if security_schemes: - components.setdefault("securitySchemes", {}).update( - security_schemes - ) - if path_definitions: - definitions.update(path_definitions) - if definitions: - components["schemas"] = {k: definitions[k] for k in sorted(definitions)} - if components: - output["components"] = components - output["paths"] = paths - if webhook_paths: - output["webhooks"] = webhook_paths - if tags: - output["tags"] = tags - if external_docs: - output["externalDocs"] = external_docs - return jsonable_encoder(OpenAPI(**output), by_alias=True, exclude_none=True) # type: ignore[no-any-return] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/param_functions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/param_functions.py deleted file mode 100644 index 1856178..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/param_functions.py +++ /dev/null @@ -1,2460 +0,0 @@ -from collections.abc import Callable, Sequence -from typing import Annotated, Any, Literal - -from annotated_doc import Doc -from fastapi import params -from fastapi._compat import Undefined -from fastapi.datastructures import _Unset -from fastapi.openapi.models import Example -from pydantic import AliasChoices, AliasPath -from typing_extensions import deprecated - - -def Path( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = ..., - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - - Read more about it in the - [FastAPI docs for Path Parameters and Numeric Validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#declare-metadata) - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - """ - Declare a path parameter for a *path operation*. - - Read more about it in the - [FastAPI docs for Path Parameters and Numeric Validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/). - - ```python - from typing import Annotated - - from fastapi import FastAPI, Path - - app = FastAPI() - - - @app.get("/items/{item_id}") - async def read_items( - item_id: Annotated[int, Path(title="The ID of the item to get")], - ): - return {"item_id": item_id} - ``` - """ - return params.Path( - default=default, - default_factory=default_factory, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Query( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#alternative-old-query-as-the-default-value) - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#alias-parameters) - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#declare-more-metadata) - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#declare-more-metadata) - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - - Read more about it in the - [FastAPI docs about Path parameters numeric validations](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#number-validations-greater-than-and-less-than-or-equal) - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/) - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/) - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#add-regular-expressions - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#deprecating-parameters) - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs about Query parameters](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.Query( - default=default, - default_factory=default_factory, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Header( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - convert_underscores: Annotated[ - bool, - Doc( - """ - Automatically convert underscores to hyphens in the parameter field name. - - Read more about it in the - [FastAPI docs for Header Parameters](https://fastapi.tiangolo.com/tutorial/header-params/#automatic-conversion) - """ - ), - ] = True, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.Header( - default=default, - default_factory=default_factory, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - convert_underscores=convert_underscores, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Cookie( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.Cookie( - default=default, - default_factory=default_factory, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Body( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - embed: Annotated[ - bool | None, - Doc( - """ - When `embed` is `True`, the parameter will be expected in a JSON body as a - key instead of being the JSON body itself. - - This happens automatically when more than one `Body` parameter is declared. - - Read more about it in the - [FastAPI docs for Body - Multiple Parameters](https://fastapi.tiangolo.com/tutorial/body-multiple-params/#embed-a-single-body-parameter). - """ - ), - ] = None, - media_type: Annotated[ - str, - Doc( - """ - The media type of this parameter field. Changing it would affect the - generated OpenAPI, but currently it doesn't affect the parsing of the data. - """ - ), - ] = "application/json", - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.Body( - default=default, - default_factory=default_factory, - embed=embed, - media_type=media_type, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Form( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - media_type: Annotated[ - str, - Doc( - """ - The media type of this parameter field. Changing it would affect the - generated OpenAPI, but currently it doesn't affect the parsing of the data. - """ - ), - ] = "application/x-www-form-urlencoded", - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.Form( - default=default, - default_factory=default_factory, - media_type=media_type, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def File( # noqa: N802 - default: Annotated[ - Any, - Doc( - """ - Default value if the parameter field is not set. - """ - ), - ] = Undefined, - *, - default_factory: Annotated[ - Callable[[], Any] | None, - Doc( - """ - A callable to generate the default value. - - This doesn't affect `Path` parameters as the value is always required. - The parameter is available only for compatibility. - """ - ), - ] = _Unset, - media_type: Annotated[ - str, - Doc( - """ - The media type of this parameter field. Changing it would affect the - generated OpenAPI, but currently it doesn't affect the parsing of the data. - """ - ), - ] = "multipart/form-data", - alias: Annotated[ - str | None, - Doc( - """ - An alternative name for the parameter field. - - This will be used to extract the data and for the generated OpenAPI. - It is particularly useful when you can't use the name you want because it - is a Python reserved keyword or similar. - """ - ), - ] = None, - alias_priority: Annotated[ - int | None, - Doc( - """ - Priority of the alias. This affects whether an alias generator is used. - """ - ), - ] = _Unset, - validation_alias: Annotated[ - str | AliasPath | AliasChoices | None, - Doc( - """ - 'Whitelist' validation step. The parameter field will be the single one - allowed by the alias or set of aliases defined. - """ - ), - ] = None, - serialization_alias: Annotated[ - str | None, - Doc( - """ - 'Blacklist' validation step. The vanilla parameter field will be the - single one of the alias' or set of aliases' fields and all the other - fields will be ignored at serialization time. - """ - ), - ] = None, - title: Annotated[ - str | None, - Doc( - """ - Human-readable title. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Human-readable description. - """ - ), - ] = None, - gt: Annotated[ - float | None, - Doc( - """ - Greater than. If set, value must be greater than this. Only applicable to - numbers. - """ - ), - ] = None, - ge: Annotated[ - float | None, - Doc( - """ - Greater than or equal. If set, value must be greater than or equal to - this. Only applicable to numbers. - """ - ), - ] = None, - lt: Annotated[ - float | None, - Doc( - """ - Less than. If set, value must be less than this. Only applicable to numbers. - """ - ), - ] = None, - le: Annotated[ - float | None, - Doc( - """ - Less than or equal. If set, value must be less than or equal to this. - Only applicable to numbers. - """ - ), - ] = None, - min_length: Annotated[ - int | None, - Doc( - """ - Minimum length for strings. - """ - ), - ] = None, - max_length: Annotated[ - int | None, - Doc( - """ - Maximum length for strings. - """ - ), - ] = None, - pattern: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - ] = None, - regex: Annotated[ - str | None, - Doc( - """ - RegEx pattern for strings. - """ - ), - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: Annotated[ - str | None, - Doc( - """ - Parameter field name for discriminating the type in a tagged union. - """ - ), - ] = None, - strict: Annotated[ - bool | None, - Doc( - """ - If `True`, strict validation is applied to the field. - """ - ), - ] = _Unset, - multiple_of: Annotated[ - float | None, - Doc( - """ - Value must be a multiple of this. Only applicable to numbers. - """ - ), - ] = _Unset, - allow_inf_nan: Annotated[ - bool | None, - Doc( - """ - Allow `inf`, `-inf`, `nan`. Only applicable to numbers. - """ - ), - ] = _Unset, - max_digits: Annotated[ - int | None, - Doc( - """ - Maximum number of digits allowed for decimal values. - """ - ), - ] = _Unset, - decimal_places: Annotated[ - int | None, - Doc( - """ - Maximum number of decimal places allowed for decimal values. - """ - ), - ] = _Unset, - examples: Annotated[ - list[Any] | None, - Doc( - """ - Example values for this field. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/) - """ - ), - ] = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: Annotated[ - dict[str, Example] | None, - Doc( - """ - OpenAPI-specific examples. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Swagger UI (that provides the `/docs` interface) has better support for the - OpenAPI-specific examples than the JSON Schema `examples`, that's the main - use case for this. - - Read more about it in the - [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter). - """ - ), - ] = None, - deprecated: Annotated[ - deprecated | str | bool | None, - Doc( - """ - Mark this parameter field as deprecated. - - It will affect the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) this parameter field in the generated OpenAPI. - You probably don't need it, but it's available. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - json_schema_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Any additional JSON schema data. - """ - ), - ] = None, - **extra: Annotated[ - Any, - Doc( - """ - Include extra fields used by the JSON Schema. - """ - ), - deprecated( - """ - The `extra` kwargs is deprecated. Use `json_schema_extra` instead. - """ - ), - ], -) -> Any: - return params.File( - default=default, - default_factory=default_factory, - media_type=media_type, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - example=example, - examples=examples, - openapi_examples=openapi_examples, - deprecated=deprecated, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -def Depends( # noqa: N802 - dependency: Annotated[ - Callable[..., Any] | None, - Doc( - """ - A "dependable" callable (like a function). - - Don't call it directly, FastAPI will call it for you, just pass the object - directly. - - Read more about it in the - [FastAPI docs for Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/) - """ - ), - ] = None, - *, - use_cache: Annotated[ - bool, - Doc( - """ - By default, after a dependency is called the first time in a request, if - the dependency is declared again for the rest of the request (for example - if the dependency is needed by several dependencies), the value will be - re-used for the rest of the request. - - Set `use_cache` to `False` to disable this behavior and ensure the - dependency is called again (if declared more than once) in the same request. - - Read more about it in the - [FastAPI docs about sub-dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/sub-dependencies/#using-the-same-dependency-multiple-times) - """ - ), - ] = True, - scope: Annotated[ - Literal["function", "request"] | None, - Doc( - """ - Mainly for dependencies with `yield`, define when the dependency function - should start (the code before `yield`) and when it should end (the code - after `yield`). - - * `"function"`: start the dependency before the *path operation function* - that handles the request, end the dependency after the *path operation - function* ends, but **before** the response is sent back to the client. - So, the dependency function will be executed **around** the *path operation - **function***. - * `"request"`: start the dependency before the *path operation function* - that handles the request (similar to when using `"function"`), but end - **after** the response is sent back to the client. So, the dependency - function will be executed **around** the **request** and response cycle. - - Read more about it in the - [FastAPI docs for FastAPI Dependencies with yield](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#early-exit-and-scope) - """ - ), - ] = None, -) -> Any: - """ - Declare a FastAPI dependency. - - It takes a single "dependable" callable (like a function). - - Don't call it directly, FastAPI will call it for you. - - Read more about it in the - [FastAPI docs for Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/). - - **Example** - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - - app = FastAPI() - - - async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100): - return {"q": q, "skip": skip, "limit": limit} - - - @app.get("/items/") - async def read_items(commons: Annotated[dict, Depends(common_parameters)]): - return commons - ``` - """ - return params.Depends(dependency=dependency, use_cache=use_cache, scope=scope) - - -def Security( # noqa: N802 - dependency: Annotated[ - Callable[..., Any] | None, - Doc( - """ - A "dependable" callable (like a function). - - Don't call it directly, FastAPI will call it for you, just pass the object - directly. - - Read more about it in the - [FastAPI docs for Dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/) - """ - ), - ] = None, - *, - scopes: Annotated[ - Sequence[str] | None, - Doc( - """ - OAuth2 scopes required for the *path operation* that uses this Security - dependency. - - The term "scope" comes from the OAuth2 specification, it seems to be - intentionally vague and interpretable. It normally refers to permissions, - in cases to roles. - - These scopes are integrated with OpenAPI (and the API docs at `/docs`). - So they are visible in the OpenAPI specification. - - Read more about it in the - [FastAPI docs about OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/) - """ - ), - ] = None, - use_cache: Annotated[ - bool, - Doc( - """ - By default, after a dependency is called the first time in a request, if - the dependency is declared again for the rest of the request (for example - if the dependency is needed by several dependencies), the value will be - re-used for the rest of the request. - - Set `use_cache` to `False` to disable this behavior and ensure the - dependency is called again (if declared more than once) in the same request. - - Read more about it in the - [FastAPI docs about sub-dependencies](https://fastapi.tiangolo.com/tutorial/dependencies/sub-dependencies/#using-the-same-dependency-multiple-times) - """ - ), - ] = True, -) -> Any: - """ - Declare a FastAPI Security dependency. - - The only difference with a regular dependency is that it can declare OAuth2 - scopes that will be integrated with OpenAPI and the automatic UI docs (by default - at `/docs`). - - It takes a single "dependable" callable (like a function). - - Don't call it directly, FastAPI will call it for you. - - Read more about it in the - [FastAPI docs for Security](https://fastapi.tiangolo.com/tutorial/security/) and - in the - [FastAPI docs for OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/). - - **Example** - - ```python - from typing import Annotated - - from fastapi import Security, FastAPI - - from .db import User - from .security import get_current_active_user - - app = FastAPI() - - @app.get("/users/me/items/") - async def read_own_items( - current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])] - ): - return [{"item_id": "Foo", "owner": current_user.username}] - ``` - """ - return params.Security(dependency=dependency, scopes=scopes, use_cache=use_cache) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/params.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/params.py deleted file mode 100644 index d3f2ae1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/params.py +++ /dev/null @@ -1,754 +0,0 @@ -import warnings -from collections.abc import Callable, Sequence -from dataclasses import dataclass -from enum import Enum -from typing import Annotated, Any, Literal - -from fastapi.exceptions import FastAPIDeprecationWarning -from fastapi.openapi.models import Example -from pydantic import AliasChoices, AliasPath -from pydantic.fields import FieldInfo -from typing_extensions import deprecated - -from ._compat import ( - Undefined, -) -from .datastructures import _Unset - - -class ParamTypes(Enum): - query = "query" - header = "header" - path = "path" - cookie = "cookie" - - -class Param(FieldInfo): # type: ignore[misc] # ty: ignore[subclass-of-final-class] - in_: ParamTypes - - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - if example is not _Unset: - warnings.warn( - "`example` has been deprecated, please use `examples` instead", - category=FastAPIDeprecationWarning, - stacklevel=4, - ) - self.example = example - self.include_in_schema = include_in_schema - self.openapi_examples = openapi_examples - kwargs = dict( - default=default, - default_factory=default_factory, - alias=alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - discriminator=discriminator, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - **extra, - ) - if examples is not None: - kwargs["examples"] = examples - if regex is not None: - warnings.warn( - "`regex` has been deprecated, please use `pattern` instead", - category=FastAPIDeprecationWarning, - stacklevel=4, - ) - current_json_schema_extra = json_schema_extra or extra - kwargs["deprecated"] = deprecated - - if serialization_alias in (_Unset, None) and isinstance(alias, str): - serialization_alias = alias - if validation_alias in (_Unset, None): - validation_alias = alias - kwargs.update( - { - "annotation": annotation, - "alias_priority": alias_priority, - "validation_alias": validation_alias, - "serialization_alias": serialization_alias, - "strict": strict, - "json_schema_extra": current_json_schema_extra, - } - ) - kwargs["pattern"] = pattern or regex - - use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset} - - super().__init__(**use_kwargs) # ty: ignore[invalid-argument-type] - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.default})" - - -class Path(Param): # type: ignore[misc] - in_ = ParamTypes.path - - def __init__( - self, - default: Any = ..., - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - assert default is ..., "Path parameters cannot have a default value" - self.in_ = self.in_ - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -class Query(Param): # type: ignore[misc] - in_ = ParamTypes.query - - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -class Header(Param): # type: ignore[misc] - in_ = ParamTypes.header - - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - convert_underscores: bool = True, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - self.convert_underscores = convert_underscores - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -class Cookie(Param): # type: ignore[misc] - in_ = ParamTypes.cookie - - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -class Body(FieldInfo): # type: ignore[misc] # ty: ignore[subclass-of-final-class] - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - embed: bool | None = None, - media_type: str = "application/json", - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - self.embed = embed - self.media_type = media_type - if example is not _Unset: - warnings.warn( - "`example` has been deprecated, please use `examples` instead", - category=FastAPIDeprecationWarning, - stacklevel=4, - ) - self.example = example - self.include_in_schema = include_in_schema - self.openapi_examples = openapi_examples - kwargs = dict( - default=default, - default_factory=default_factory, - alias=alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - discriminator=discriminator, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - **extra, - ) - if examples is not None: - kwargs["examples"] = examples - if regex is not None: - warnings.warn( - "`regex` has been deprecated, please use `pattern` instead", - category=FastAPIDeprecationWarning, - stacklevel=4, - ) - current_json_schema_extra = json_schema_extra or extra - kwargs["deprecated"] = deprecated - if serialization_alias in (_Unset, None) and isinstance(alias, str): - serialization_alias = alias - if validation_alias in (_Unset, None): - validation_alias = alias - kwargs.update( - { - "annotation": annotation, - "alias_priority": alias_priority, - "validation_alias": validation_alias, - "serialization_alias": serialization_alias, - "strict": strict, - "json_schema_extra": current_json_schema_extra, - } - ) - kwargs["pattern"] = pattern or regex - - use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset} - - super().__init__(**use_kwargs) # ty: ignore[invalid-argument-type] - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.default})" - - -class Form(Body): # type: ignore[misc] - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - media_type: str = "application/x-www-form-urlencoded", - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - media_type=media_type, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -class File(Form): # type: ignore[misc] - def __init__( - self, - default: Any = Undefined, - *, - default_factory: Callable[[], Any] | None = _Unset, - annotation: Any | None = None, - media_type: str = "multipart/form-data", - alias: str | None = None, - alias_priority: int | None = _Unset, - validation_alias: str | AliasPath | AliasChoices | None = None, - serialization_alias: str | None = None, - title: str | None = None, - description: str | None = None, - gt: float | None = None, - ge: float | None = None, - lt: float | None = None, - le: float | None = None, - min_length: int | None = None, - max_length: int | None = None, - pattern: str | None = None, - regex: Annotated[ - str | None, - deprecated( - "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead." - ), - ] = None, - discriminator: str | None = None, - strict: bool | None = _Unset, - multiple_of: float | None = _Unset, - allow_inf_nan: bool | None = _Unset, - max_digits: int | None = _Unset, - decimal_places: int | None = _Unset, - examples: list[Any] | None = None, - example: Annotated[ - Any | None, - deprecated( - "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, " - "although still supported. Use examples instead." - ), - ] = _Unset, - openapi_examples: dict[str, Example] | None = None, - deprecated: deprecated | str | bool | None = None, - include_in_schema: bool = True, - json_schema_extra: dict[str, Any] | None = None, - **extra: Any, - ): - super().__init__( - default=default, - default_factory=default_factory, - annotation=annotation, - media_type=media_type, - alias=alias, - alias_priority=alias_priority, - validation_alias=validation_alias, - serialization_alias=serialization_alias, - title=title, - description=description, - gt=gt, - ge=ge, - lt=lt, - le=le, - min_length=min_length, - max_length=max_length, - pattern=pattern, - regex=regex, - discriminator=discriminator, - strict=strict, - multiple_of=multiple_of, - allow_inf_nan=allow_inf_nan, - max_digits=max_digits, - decimal_places=decimal_places, - deprecated=deprecated, - example=example, - examples=examples, - openapi_examples=openapi_examples, - include_in_schema=include_in_schema, - json_schema_extra=json_schema_extra, - **extra, - ) - - -@dataclass(frozen=True) -class Depends: - dependency: Callable[..., Any] | None = None - use_cache: bool = True - scope: Literal["function", "request"] | None = None - - -@dataclass(frozen=True) -class Security(Depends): - scopes: Sequence[str] | None = None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/requests.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/requests.py deleted file mode 100644 index d16552c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/requests.py +++ /dev/null @@ -1,2 +0,0 @@ -from starlette.requests import HTTPConnection as HTTPConnection # noqa: F401 -from starlette.requests import Request as Request # noqa: F401 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/responses.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/responses.py deleted file mode 100644 index 29df4b7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/responses.py +++ /dev/null @@ -1,98 +0,0 @@ -import importlib -from typing import Any, Protocol, cast - -from fastapi.exceptions import FastAPIDeprecationWarning -from fastapi.sse import EventSourceResponse as EventSourceResponse # noqa -from starlette.responses import FileResponse as FileResponse # noqa -from starlette.responses import HTMLResponse as HTMLResponse # noqa -from starlette.responses import JSONResponse as JSONResponse # noqa -from starlette.responses import PlainTextResponse as PlainTextResponse # noqa -from starlette.responses import RedirectResponse as RedirectResponse # noqa -from starlette.responses import Response as Response # noqa -from starlette.responses import StreamingResponse as StreamingResponse # noqa -from typing_extensions import deprecated - - -class _UjsonModule(Protocol): - def dumps(self, __obj: Any, *, ensure_ascii: bool = ...) -> str: ... - - -class _OrjsonModule(Protocol): - OPT_NON_STR_KEYS: int - OPT_SERIALIZE_NUMPY: int - - def dumps(self, __obj: Any, *, option: int = ...) -> bytes: ... - - -try: - ujson = cast(_UjsonModule, importlib.import_module("ujson")) -except ModuleNotFoundError: # pragma: nocover - ujson = None # type: ignore[assignment] - - -try: - orjson = cast(_OrjsonModule, importlib.import_module("orjson")) -except ModuleNotFoundError: # pragma: nocover - orjson = None # type: ignore[assignment] - - -@deprecated( - "UJSONResponse is deprecated, FastAPI now serializes data directly to JSON " - "bytes via Pydantic when a return type or response model is set, which is " - "faster and doesn't need a custom response class. Read more in the FastAPI " - "docs: https://fastapi.tiangolo.com/advanced/custom-response/#orjson-or-response-model " - "and https://fastapi.tiangolo.com/tutorial/response-model/", - category=FastAPIDeprecationWarning, - stacklevel=2, -) -class UJSONResponse(JSONResponse): - """JSON response using the ujson library to serialize data to JSON. - - **Deprecated**: `UJSONResponse` is deprecated. FastAPI now serializes data - directly to JSON bytes via Pydantic when a return type or response model is - set, which is faster and doesn't need a custom response class. - - Read more in the - [FastAPI docs for Custom Response](https://fastapi.tiangolo.com/advanced/custom-response/#orjson-or-response-model) - and the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - - **Note**: `ujson` is not included with FastAPI and must be installed - separately, e.g. `pip install ujson`. - """ - - def render(self, content: Any) -> bytes: - assert ujson is not None, "ujson must be installed to use UJSONResponse" - return ujson.dumps(content, ensure_ascii=False).encode("utf-8") - - -@deprecated( - "ORJSONResponse is deprecated, FastAPI now serializes data directly to JSON " - "bytes via Pydantic when a return type or response model is set, which is " - "faster and doesn't need a custom response class. Read more in the FastAPI " - "docs: https://fastapi.tiangolo.com/advanced/custom-response/#orjson-or-response-model " - "and https://fastapi.tiangolo.com/tutorial/response-model/", - category=FastAPIDeprecationWarning, - stacklevel=2, -) -class ORJSONResponse(JSONResponse): - """JSON response using the orjson library to serialize data to JSON. - - **Deprecated**: `ORJSONResponse` is deprecated. FastAPI now serializes data - directly to JSON bytes via Pydantic when a return type or response model is - set, which is faster and doesn't need a custom response class. - - Read more in the - [FastAPI docs for Custom Response](https://fastapi.tiangolo.com/advanced/custom-response/#orjson-or-response-model) - and the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - - **Note**: `orjson` is not included with FastAPI and must be installed - separately, e.g. `pip install orjson`. - """ - - def render(self, content: Any) -> bytes: - assert orjson is not None, "orjson must be installed to use ORJSONResponse" - return orjson.dumps( - content, option=orjson.OPT_NON_STR_KEYS | orjson.OPT_SERIALIZE_NUMPY - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/routing.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/routing.py deleted file mode 100644 index e41ef6a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/routing.py +++ /dev/null @@ -1,6243 +0,0 @@ -import contextlib -import copy -import email.message -import errno -import functools -import inspect -import json -import os -import stat -import types -from collections.abc import ( - AsyncIterator, - Awaitable, - Callable, - Collection, - Coroutine, - Generator, - Iterator, - Mapping, - Sequence, -) -from contextlib import ( - AbstractAsyncContextManager, - AbstractContextManager, - AsyncExitStack, - asynccontextmanager, -) -from contextvars import ContextVar -from dataclasses import dataclass, field -from enum import Enum, IntEnum -from typing import ( - Annotated, - Any, - Literal, - Protocol, - TypeVar, - cast, -) - -import anyio -from annotated_doc import Doc -from anyio.abc import ObjectReceiveStream -from fastapi import params -from fastapi._compat import ( - ModelField, - Undefined, - lenient_issubclass, -) -from fastapi.datastructures import Default, DefaultPlaceholder -from fastapi.dependencies.models import Dependant -from fastapi.dependencies.utils import ( - _should_embed_body_fields, - get_body_field, - get_dependant, - get_flat_dependant, - get_parameterless_sub_dependant, - get_stream_item_type, - get_typed_return_annotation, - solve_dependencies, -) -from fastapi.encoders import jsonable_encoder -from fastapi.exceptions import ( - EndpointContext, - FastAPIError, - RequestValidationError, - ResponseValidationError, - WebSocketRequestValidationError, -) -from fastapi.sse import ( - _PING_INTERVAL, - KEEPALIVE_COMMENT, - EventSourceResponse, - ServerSentEvent, - format_sse_event, -) -from fastapi.types import DecoratedCallable, IncEx -from fastapi.utils import ( - create_model_field, - generate_unique_id, - get_value_or_default, - is_body_allowed_for_status_code, -) -from starlette import routing -from starlette._exception_handler import wrap_app_handling_exceptions -from starlette._utils import get_route_path, is_async_callable -from starlette.concurrency import iterate_in_threadpool, run_in_threadpool -from starlette.datastructures import URL, FormData, URLPath -from starlette.exceptions import HTTPException -from starlette.requests import Request -from starlette.responses import ( - JSONResponse, - PlainTextResponse, - RedirectResponse, - Response, - StreamingResponse, -) -from starlette.routing import ( - BaseRoute, - Match, - NoMatchFound, - compile_path, - get_name, -) -from starlette.routing import Mount as Mount # noqa -from starlette.staticfiles import StaticFiles -from starlette.types import AppType, ASGIApp, Lifespan, Receive, Scope, Send -from starlette.websockets import WebSocket -from typing_extensions import deprecated - - -# Copy of starlette.routing.request_response modified to include the -# dependencies' AsyncExitStack -def request_response( - func: Callable[[Request], Awaitable[Response] | Response], -) -> ASGIApp: - """ - Takes a function or coroutine `func(request) -> response`, - and returns an ASGI application. - """ - f: Callable[[Request], Awaitable[Response]] = ( - func # type: ignore[assignment] - if is_async_callable(func) - else functools.partial(run_in_threadpool, func) # type: ignore[call-arg] - ) # ty: ignore[invalid-assignment] - - async def app(scope: Scope, receive: Receive, send: Send) -> None: - request = Request(scope, receive, send) - - async def app(scope: Scope, receive: Receive, send: Send) -> None: - # Starts customization - response_awaited = False - async with AsyncExitStack() as request_stack: - scope["fastapi_inner_astack"] = request_stack - async with AsyncExitStack() as function_stack: - scope["fastapi_function_astack"] = function_stack - response = await f(request) - await response(scope, receive, send) - # Continues customization - response_awaited = True - if not response_awaited: - raise FastAPIError( - "Response not awaited. There's a high chance that the " - "application code is raising an exception and a dependency with yield " - "has a block with a bare except, or a block with except Exception, " - "and is not raising the exception again. Read more about it in the " - "docs: https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#dependencies-with-yield-and-except" - ) - - # Same as in Starlette - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - - return app - - -# Copy of starlette.routing.websocket_session modified to include the -# dependencies' AsyncExitStack -def websocket_session( - func: Callable[[WebSocket], Awaitable[None]], -) -> ASGIApp: - """ - Takes a coroutine `func(session)`, and returns an ASGI application. - """ - # assert asyncio.iscoroutinefunction(func), "WebSocket endpoints must be async" - - async def app(scope: Scope, receive: Receive, send: Send) -> None: - session = WebSocket(scope, receive=receive, send=send) - - async def app(scope: Scope, receive: Receive, send: Send) -> None: - async with AsyncExitStack() as request_stack: - scope["fastapi_inner_astack"] = request_stack - async with AsyncExitStack() as function_stack: - scope["fastapi_function_astack"] = function_stack - await func(session) - - # Same as in Starlette - await wrap_app_handling_exceptions(app, session)(scope, receive, send) - - return app - - -_T = TypeVar("_T") - - -# Vendored from starlette.routing to avoid importing private symbols -class _AsyncLiftContextManager(AbstractAsyncContextManager[_T]): - """ - Wraps a synchronous context manager to make it async. - - This is vendored from Starlette to avoid importing private symbols. - """ - - def __init__(self, cm: AbstractContextManager[_T]) -> None: - self._cm = cm - - async def __aenter__(self) -> _T: - return self._cm.__enter__() - - async def __aexit__( - self, - exc_type: type[BaseException] | None, - exc_value: BaseException | None, - traceback: types.TracebackType | None, - ) -> bool | None: - return self._cm.__exit__(exc_type, exc_value, traceback) - - -# Vendored from starlette.routing to avoid importing private symbols -def _wrap_gen_lifespan_context( - lifespan_context: Callable[[Any], Generator[Any, Any, Any]], -) -> Callable[[Any], AbstractAsyncContextManager[Any]]: - """ - Wrap a generator-based lifespan context into an async context manager. - - This is vendored from Starlette to avoid importing private symbols. - """ - cmgr = contextlib.contextmanager(lifespan_context) - - @functools.wraps(cmgr) - def wrapper(app: Any) -> _AsyncLiftContextManager[Any]: - return _AsyncLiftContextManager(cmgr(app)) - - return wrapper - - -def _merge_lifespan_context( - original_context: Lifespan[Any], nested_context: Lifespan[Any] -) -> Lifespan[Any]: - @asynccontextmanager - async def merged_lifespan( - app: AppType, - ) -> AsyncIterator[Mapping[str, Any] | None]: - async with original_context(app) as maybe_original_state: - async with nested_context(app) as maybe_nested_state: - if maybe_nested_state is None and maybe_original_state is None: - yield None # old ASGI compatibility - else: - yield {**(maybe_nested_state or {}), **(maybe_original_state or {})} - - return merged_lifespan # type: ignore[return-value] # ty: ignore[invalid-return-type] - - -class _DefaultLifespan: - """ - Default lifespan context manager that runs on_startup and on_shutdown handlers. - - This is a copy of the Starlette _DefaultLifespan class that was removed - in Starlette. FastAPI keeps it to maintain backward compatibility with - on_startup and on_shutdown event handlers. - - Ref: https://github.com/Kludex/starlette/pull/3117 - """ - - def __init__(self, router: "APIRouter") -> None: - self._router = router - - async def __aenter__(self) -> None: - await self._router._startup() - - async def __aexit__(self, *exc_info: object) -> None: - await self._router._shutdown() - - def __call__(self: _T, app: object) -> _T: - return self - - -# Cache for endpoint context to avoid re-extracting on every request -_endpoint_context_cache: dict[int, EndpointContext] = {} - - -def _extract_endpoint_context(func: Any) -> EndpointContext: - """Extract endpoint context with caching to avoid repeated file I/O.""" - func_id = id(func) - - if func_id in _endpoint_context_cache: - return _endpoint_context_cache[func_id] - - try: - ctx: EndpointContext = {} - - if (source_file := inspect.getsourcefile(func)) is not None: - ctx["file"] = source_file - if (line_number := inspect.getsourcelines(func)[1]) is not None: - ctx["line"] = line_number - if (func_name := getattr(func, "__name__", None)) is not None: - ctx["function"] = func_name - except Exception: - ctx = EndpointContext() - - _endpoint_context_cache[func_id] = ctx - return ctx - - -async def serialize_response( - *, - field: ModelField | None = None, - response_content: Any, - include: IncEx | None = None, - exclude: IncEx | None = None, - by_alias: bool = True, - exclude_unset: bool = False, - exclude_defaults: bool = False, - exclude_none: bool = False, - is_coroutine: bool = True, - endpoint_ctx: EndpointContext | None = None, - dump_json: bool = False, -) -> Any: - if field: - if is_coroutine: - value, errors = field.validate(response_content, {}, loc=("response",)) - else: - value, errors = await run_in_threadpool( - field.validate, response_content, {}, loc=("response",) - ) - if errors: - ctx = endpoint_ctx or EndpointContext() - raise ResponseValidationError( - errors=errors, - body=response_content, - endpoint_ctx=ctx, - ) - serializer = field.serialize_json if dump_json else field.serialize - return serializer( - value, - include=include, - exclude=exclude, - by_alias=by_alias, - exclude_unset=exclude_unset, - exclude_defaults=exclude_defaults, - exclude_none=exclude_none, - ) - - else: - return jsonable_encoder(response_content) - - -async def run_endpoint_function( - *, dependant: Dependant, values: dict[str, Any], is_coroutine: bool -) -> Any: - # Only called by get_request_handler. Has been split into its own function to - # facilitate profiling endpoints, since inner functions are harder to profile. - assert dependant.call is not None, "dependant.call must be a function" - - if is_coroutine: - return await dependant.call(**values) - else: - return await run_in_threadpool(dependant.call, **values) - - -def _build_response_args( - *, status_code: int | None, solved_result: Any -) -> dict[str, Any]: - response_args: dict[str, Any] = { - "background": solved_result.background_tasks, - } - # If status_code was set, use it, otherwise use the default from the - # response class, in the case of redirect it's 307 - current_status_code = ( - status_code if status_code else solved_result.response.status_code - ) - if current_status_code is not None: - response_args["status_code"] = current_status_code - if solved_result.response.status_code: - response_args["status_code"] = solved_result.response.status_code - return response_args - - -def get_request_handler( - dependant: Dependant, - body_field: ModelField | None = None, - status_code: int | None = None, - response_class: type[Response] | DefaultPlaceholder = Default(JSONResponse), - response_field: ModelField | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - dependency_overrides_provider: Any | None = None, - embed_body_fields: bool = False, - strict_content_type: bool | DefaultPlaceholder = Default(True), - stream_item_field: ModelField | None = None, - is_json_stream: bool = False, -) -> Callable[[Request], Coroutine[Any, Any, Response]]: - assert dependant.call is not None, "dependant.call must be a function" - is_coroutine = dependant.is_coroutine_callable - is_body_form = body_field and isinstance(body_field.field_info, params.Form) - if isinstance(response_class, DefaultPlaceholder): - actual_response_class: type[Response] = response_class.value - else: - actual_response_class = response_class - is_sse_stream = lenient_issubclass(actual_response_class, EventSourceResponse) - if isinstance(strict_content_type, DefaultPlaceholder): - actual_strict_content_type: bool = strict_content_type.value - else: - actual_strict_content_type = strict_content_type - - async def app(request: Request) -> Response: - response: Response | None = None - file_stack = request.scope.get("fastapi_middleware_astack") - assert isinstance(file_stack, AsyncExitStack), ( - "fastapi_middleware_astack not found in request scope" - ) - - # Extract endpoint context for error messages - endpoint_ctx = ( - _extract_endpoint_context(dependant.call) - if dependant.call - else EndpointContext() - ) - - if dependant.path: - # For mounted sub-apps, include the mount path prefix - mount_path = request.scope.get("root_path", "").rstrip("/") - endpoint_ctx["path"] = f"{request.method} {mount_path}{dependant.path}" - - # Read body and auto-close files - try: - body: Any = None - if body_field: - if is_body_form: - body = await request.form() - file_stack.push_async_callback(body.close) - else: - body_bytes = await request.body() - if body_bytes: - json_body: Any = Undefined - content_type_value = request.headers.get("content-type") - if not content_type_value: - if not actual_strict_content_type: - json_body = await request.json() - else: - message = email.message.Message() - message["content-type"] = content_type_value - if message.get_content_maintype() == "application": - subtype = message.get_content_subtype() - if subtype == "json" or subtype.endswith("+json"): - json_body = await request.json() - if json_body != Undefined: - body = json_body - else: - body = body_bytes - except json.JSONDecodeError as e: - validation_error = RequestValidationError( - [ - { - "type": "json_invalid", - "loc": ("body", e.pos), - "msg": "JSON decode error", - "input": {}, - "ctx": {"error": e.msg}, - } - ], - body=e.doc, - endpoint_ctx=endpoint_ctx, - ) - raise validation_error from e - except HTTPException: - # If a middleware raises an HTTPException, it should be raised again - raise - except Exception as e: - http_error = HTTPException( - status_code=400, detail="There was an error parsing the body" - ) - raise http_error from e - - # Solve dependencies and run path operation function, auto-closing dependencies - errors: list[Any] = [] - async_exit_stack = request.scope.get("fastapi_inner_astack") - assert isinstance(async_exit_stack, AsyncExitStack), ( - "fastapi_inner_astack not found in request scope" - ) - solved_result = await solve_dependencies( - request=request, - dependant=dependant, - body=cast(dict[str, Any] | FormData | bytes | None, body), - dependency_overrides_provider=dependency_overrides_provider, - async_exit_stack=async_exit_stack, - embed_body_fields=embed_body_fields, - ) - errors = solved_result.errors - assert dependant.call # For types - if not errors: - # Shared serializer for stream items (JSONL and SSE). - # Validates against stream_item_field when set, then - # serializes to JSON bytes. - def _serialize_data(data: Any) -> bytes: - if stream_item_field: - value, errors_ = stream_item_field.validate( - data, {}, loc=("response",) - ) - if errors_: - ctx = endpoint_ctx or EndpointContext() - raise ResponseValidationError( - errors=errors_, - body=data, - endpoint_ctx=ctx, - ) - return stream_item_field.serialize_json( - value, - include=response_model_include, - exclude=response_model_exclude, - by_alias=response_model_by_alias, - exclude_unset=response_model_exclude_unset, - exclude_defaults=response_model_exclude_defaults, - exclude_none=response_model_exclude_none, - ) - else: - data = jsonable_encoder(data) - return json.dumps(data).encode("utf-8") - - if is_sse_stream: - # Generator endpoint: stream as Server-Sent Events - gen = dependant.call(**solved_result.values) - - def _serialize_sse_item(item: Any) -> bytes: - if isinstance(item, ServerSentEvent): - # User controls the event structure. - # Serialize the data payload if present. - # For ServerSentEvent items we skip stream_item_field - # validation (the user may mix types intentionally). - if item.raw_data is not None: - data_str: str | None = item.raw_data - elif item.data is not None: - if hasattr(item.data, "model_dump_json"): - data_str = item.data.model_dump_json() - else: - data_str = json.dumps(jsonable_encoder(item.data)) - else: - data_str = None - return format_sse_event( - data_str=data_str, - event=item.event, - id=item.id, - retry=item.retry, - comment=item.comment, - ) - else: - # Plain object: validate + serialize via - # stream_item_field (if set) and wrap in data field - return format_sse_event( - data_str=_serialize_data(item).decode("utf-8") - ) - - if dependant.is_async_gen_callable: - sse_aiter: AsyncIterator[Any] = gen.__aiter__() - else: - sse_aiter = iterate_in_threadpool(gen) - - @asynccontextmanager - async def _sse_producer_cm() -> AsyncIterator[ - ObjectReceiveStream[bytes] - ]: - # Use a memory stream to decouple generator iteration - # from the keepalive timer. A producer task pulls items - # from the generator independently, so - # `anyio.fail_after` never wraps the generator's - # `__anext__` directly - avoiding CancelledError that - # would finalize the generator and also working for sync - # generators running in a thread pool. - # - # This context manager is entered on the request-scoped - # AsyncExitStack so its __aexit__ (which cancels the - # task group) is called by the exit stack after the - # streaming response completes — not by async generator - # finalization via GeneratorExit. - # Ref: https://peps.python.org/pep-0789/ - send_stream, receive_stream = anyio.create_memory_object_stream[ - bytes - ](max_buffer_size=1) - - async def _producer() -> None: - async with send_stream: - async for raw_item in sse_aiter: - await send_stream.send(_serialize_sse_item(raw_item)) - - send_keepalive, receive_keepalive = ( - anyio.create_memory_object_stream[bytes](max_buffer_size=1) - ) - - async def _keepalive_inserter() -> None: - """Read from the producer and forward to the output, - inserting keepalive comments on timeout.""" - async with send_keepalive, receive_stream: - try: - while True: - try: - with anyio.fail_after(_PING_INTERVAL): - data = await receive_stream.receive() - await send_keepalive.send(data) - except TimeoutError: - await send_keepalive.send(KEEPALIVE_COMMENT) - except anyio.EndOfStream: - pass - - async with anyio.create_task_group() as tg: - tg.start_soon(_producer) - tg.start_soon(_keepalive_inserter) - yield receive_keepalive - tg.cancel_scope.cancel() - - # Enter the SSE context manager on the request-scoped - # exit stack. The stack outlives the streaming response, - # so __aexit__ runs via proper structured teardown, not - # via GeneratorExit thrown into an async generator. - sse_receive_stream = await async_exit_stack.enter_async_context( - _sse_producer_cm() - ) - # Ensure the receive stream is closed when the exit stack - # unwinds, preventing ResourceWarning from __del__. - async_exit_stack.push_async_callback(sse_receive_stream.aclose) - - async def _sse_with_checkpoints( - stream: ObjectReceiveStream[bytes], - ) -> AsyncIterator[bytes]: - async for data in stream: - yield data - # Guarantee a checkpoint so cancellation can be - # delivered even when the producer is faster than - # the consumer and receive() never suspends. - await anyio.sleep(0) - - sse_stream_content: AsyncIterator[bytes] | Iterator[bytes] = ( - _sse_with_checkpoints(sse_receive_stream) - ) - - response = StreamingResponse( - sse_stream_content, - media_type="text/event-stream", - background=solved_result.background_tasks, - ) - response.headers["Cache-Control"] = "no-cache" - # For Nginx proxies to not buffer server sent events - response.headers["X-Accel-Buffering"] = "no" - response.headers.raw.extend(solved_result.response.headers.raw) - elif is_json_stream: - # Generator endpoint: stream as JSONL - gen = dependant.call(**solved_result.values) - - def _serialize_item(item: Any) -> bytes: - return _serialize_data(item) + b"\n" - - if dependant.is_async_gen_callable: - - async def _async_stream_jsonl() -> AsyncIterator[bytes]: - async for item in gen: - yield _serialize_item(item) - # To allow for cancellation to trigger - # Ref: https://github.com/fastapi/fastapi/issues/14680 - await anyio.sleep(0) - - jsonl_stream_content: AsyncIterator[bytes] | Iterator[bytes] = ( - _async_stream_jsonl() - ) - else: - - def _sync_stream_jsonl() -> Iterator[bytes]: - for item in gen: # ty: ignore[not-iterable] - yield _serialize_item(item) - - jsonl_stream_content = _sync_stream_jsonl() - - response = StreamingResponse( - jsonl_stream_content, - media_type="application/jsonl", - background=solved_result.background_tasks, - ) - response.headers.raw.extend(solved_result.response.headers.raw) - elif dependant.is_async_gen_callable or dependant.is_gen_callable: - # Raw streaming with explicit response_class (e.g. StreamingResponse) - gen = dependant.call(**solved_result.values) - if dependant.is_async_gen_callable: - - async def _async_stream_raw( - async_gen: AsyncIterator[Any], - ) -> AsyncIterator[Any]: - async for chunk in async_gen: - yield chunk - # To allow for cancellation to trigger - # Ref: https://github.com/fastapi/fastapi/issues/14680 - await anyio.sleep(0) - - gen = _async_stream_raw(gen) - response_args = _build_response_args( - status_code=status_code, solved_result=solved_result - ) - response = actual_response_class(content=gen, **response_args) - response.headers.raw.extend(solved_result.response.headers.raw) - else: - raw_response = await run_endpoint_function( - dependant=dependant, - values=solved_result.values, - is_coroutine=is_coroutine, - ) - if isinstance(raw_response, Response): - if raw_response.background is None: - raw_response.background = solved_result.background_tasks - response = raw_response - else: - response_args = _build_response_args( - status_code=status_code, solved_result=solved_result - ) - # Use the fast path (dump_json) when no custom response - # class was set and a response field with a TypeAdapter - # exists. Serializes directly to JSON bytes via Pydantic's - # Rust core, skipping the intermediate Python dict + - # json.dumps() step. - use_dump_json = response_field is not None and isinstance( - response_class, DefaultPlaceholder - ) - content = await serialize_response( - field=response_field, - response_content=raw_response, - include=response_model_include, - exclude=response_model_exclude, - by_alias=response_model_by_alias, - exclude_unset=response_model_exclude_unset, - exclude_defaults=response_model_exclude_defaults, - exclude_none=response_model_exclude_none, - is_coroutine=is_coroutine, - endpoint_ctx=endpoint_ctx, - dump_json=use_dump_json, - ) - if use_dump_json: - response = Response( - content=content, - media_type="application/json", - **response_args, - ) - else: - response = actual_response_class(content, **response_args) - if not is_body_allowed_for_status_code(response.status_code): - response.body = b"" - response.headers.raw.extend(solved_result.response.headers.raw) - if errors: - validation_error = RequestValidationError( - errors, body=body, endpoint_ctx=endpoint_ctx - ) - raise validation_error - - # Return response - assert response - return response - - return app - - -def get_websocket_app( - dependant: Dependant, - dependency_overrides_provider: Any | None = None, - embed_body_fields: bool = False, -) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]: - async def app(websocket: WebSocket) -> None: - endpoint_ctx = ( - _extract_endpoint_context(dependant.call) - if dependant.call - else EndpointContext() - ) - if dependant.path: - # For mounted sub-apps, include the mount path prefix - mount_path = websocket.scope.get("root_path", "").rstrip("/") - endpoint_ctx["path"] = f"WS {mount_path}{dependant.path}" - async_exit_stack = websocket.scope.get("fastapi_inner_astack") - assert isinstance(async_exit_stack, AsyncExitStack), ( - "fastapi_inner_astack not found in request scope" - ) - solved_result = await solve_dependencies( - request=websocket, - dependant=dependant, - dependency_overrides_provider=dependency_overrides_provider, - async_exit_stack=async_exit_stack, - embed_body_fields=embed_body_fields, - ) - if solved_result.errors: - raise WebSocketRequestValidationError( - solved_result.errors, - endpoint_ctx=endpoint_ctx, - ) - assert dependant.call is not None, "dependant.call must be a function" - await dependant.call(**solved_result.values) - - return app - - -class APIWebSocketRoute(routing.WebSocketRoute): - def __init__( - self, - path: str, - endpoint: Callable[..., Any], - *, - name: str | None = None, - dependencies: Sequence[params.Depends] | None = None, - dependency_overrides_provider: Any | None = None, - ) -> None: - self.path = path - self.endpoint = endpoint - self.name = get_name(endpoint) if name is None else name - self.dependencies = list(dependencies or []) - self.path_regex, self.path_format, self.param_convertors = compile_path(path) - self.dependant = get_dependant( - path=self.path_format, call=self.endpoint, scope="function" - ) - for depends in self.dependencies[::-1]: - self.dependant.dependencies.insert( - 0, - get_parameterless_sub_dependant(depends=depends, path=self.path_format), - ) - self._flat_dependant = get_flat_dependant(self.dependant) - self._embed_body_fields = _should_embed_body_fields( - self._flat_dependant.body_params - ) - self.app = websocket_session( - get_websocket_app( - dependant=self.dependant, - dependency_overrides_provider=dependency_overrides_provider, - embed_body_fields=self._embed_body_fields, - ) - ) - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - match, child_scope = super().matches(scope) - if match != Match.NONE: - child_scope["route"] = self - return match, child_scope - - -_FASTAPI_SCOPE_KEY = "fastapi" -_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY = "effective_route_context" -_FASTAPI_FRONTEND_PATH_KEY = "frontend_path" -_FASTAPI_INCLUDED_ROUTER_KEY = "included_router" -_effective_route_context_var: ContextVar[Any | None] = ContextVar( - "fastapi_effective_route_context", default=None -) -_SCOPE_MISSING = object() - - -class _RouteWithPath(Protocol): - path: str - - -def _get_fastapi_scope(scope: Scope) -> dict[str, Any]: - fastapi_scope = scope.setdefault(_FASTAPI_SCOPE_KEY, {}) - assert isinstance(fastapi_scope, dict) - return fastapi_scope - - -def _update_scope(scope: Scope, child_scope: Scope) -> None: - fastapi_child_scope = child_scope.get(_FASTAPI_SCOPE_KEY) - for key, value in child_scope.items(): - if key != _FASTAPI_SCOPE_KEY: - scope[key] = value - if isinstance(fastapi_child_scope, dict): - _get_fastapi_scope(scope).update(fastapi_child_scope) - - -def _get_scope_effective_route_context(scope: Scope) -> Any | None: - return scope.get(_FASTAPI_SCOPE_KEY, {}).get(_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY) - - -def _get_scope_included_router(scope: Scope) -> Any | None: - return scope.get(_FASTAPI_SCOPE_KEY, {}).get(_FASTAPI_INCLUDED_ROUTER_KEY) - - -def _restore_fastapi_scope_key(scope: Scope, key: str, previous: Any) -> None: - fastapi_scope = scope.get(_FASTAPI_SCOPE_KEY) - if not isinstance(fastapi_scope, dict): - return - if previous is _SCOPE_MISSING: - fastapi_scope.pop(key, None) - else: - fastapi_scope[key] = previous - - -class _APIRouteLike(Protocol): - path: str - endpoint: Callable[..., Any] - stream_item_type: Any | None - response_model: Any - summary: str | None - response_description: str - deprecated: bool | None - operation_id: str | None - response_model_include: IncEx | None - response_model_exclude: IncEx | None - response_model_by_alias: bool - response_model_exclude_unset: bool - response_model_exclude_defaults: bool - response_model_exclude_none: bool - include_in_schema: bool - response_class: type[Response] | DefaultPlaceholder - dependency_overrides_provider: Any | None - callbacks: list[BaseRoute] | None - openapi_extra: dict[str, Any] | None - generate_unique_id_function: Callable[[Any], str] | DefaultPlaceholder - strict_content_type: bool | DefaultPlaceholder - tags: list[str | Enum] - responses: dict[int | str, dict[str, Any]] - name: str - path_regex: Any - path_format: str - param_convertors: dict[str, Any] - methods: set[str] - unique_id: str - status_code: int | None - response_field: ModelField | None - stream_item_field: ModelField | None - dependencies: list[params.Depends] - description: str - response_fields: dict[int | str, ModelField] - dependant: Dependant - _flat_dependant: Dependant - _embed_body_fields: bool - body_field: ModelField | None - is_sse_stream: bool - is_json_stream: bool - - -def _populate_api_route_state( - route: _APIRouteLike, - path: str, - endpoint: Callable[..., Any], - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[params.Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - name: str | None = None, - methods: set[str] | list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] | DefaultPlaceholder = Default(JSONResponse), - dependency_overrides_provider: Any | None = None, - callbacks: list[BaseRoute] | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[[Any], str] | DefaultPlaceholder = Default( - generate_unique_id - ), - strict_content_type: bool | DefaultPlaceholder = Default(True), -) -> None: - route.path = path - route.endpoint = endpoint - route.stream_item_type = None - if isinstance(response_model, DefaultPlaceholder): - return_annotation = get_typed_return_annotation(endpoint) - if lenient_issubclass(return_annotation, Response): - response_model = None - else: - stream_item = get_stream_item_type(return_annotation) - if stream_item is not None: - # Extract item type for JSONL or SSE streaming when - # response_class is DefaultPlaceholder (JSONL) or - # EventSourceResponse (SSE). - # ServerSentEvent is excluded: it's a transport - # wrapper, not a data model, so it shouldn't feed - # into validation or OpenAPI schema generation. - if ( - isinstance(response_class, DefaultPlaceholder) - or lenient_issubclass(response_class, EventSourceResponse) - ) and not lenient_issubclass(stream_item, ServerSentEvent): - route.stream_item_type = stream_item - response_model = None - else: - response_model = return_annotation - route.response_model = response_model - route.summary = summary - route.response_description = response_description - route.deprecated = deprecated - route.operation_id = operation_id - route.response_model_include = response_model_include - route.response_model_exclude = response_model_exclude - route.response_model_by_alias = response_model_by_alias - route.response_model_exclude_unset = response_model_exclude_unset - route.response_model_exclude_defaults = response_model_exclude_defaults - route.response_model_exclude_none = response_model_exclude_none - route.include_in_schema = include_in_schema - route.response_class = response_class - route.dependency_overrides_provider = dependency_overrides_provider - route.callbacks = callbacks - route.openapi_extra = openapi_extra - route.generate_unique_id_function = generate_unique_id_function - route.strict_content_type = strict_content_type - route.tags = tags or [] - route.responses = responses or {} - route.name = get_name(endpoint) if name is None else name - route.path_regex, route.path_format, route.param_convertors = compile_path(path) - if methods is None: - methods = ["GET"] - route.methods = {method.upper() for method in methods} - if isinstance(generate_unique_id_function, DefaultPlaceholder): - current_generate_unique_id: Callable[[Any], str] = ( - generate_unique_id_function.value - ) - else: - current_generate_unique_id = generate_unique_id_function - route.unique_id = route.operation_id or current_generate_unique_id(route) - # normalize enums e.g. http.HTTPStatus - if isinstance(status_code, IntEnum): - status_code = int(status_code) - route.status_code = status_code - if route.response_model: - assert is_body_allowed_for_status_code(status_code), ( - f"Status code {status_code} must not have a response body" - ) - response_name = "Response_" + route.unique_id - route.response_field = create_model_field( - name=response_name, - type_=route.response_model, - mode="serialization", - ) - else: - route.response_field = None - if route.stream_item_type: - stream_item_name = "StreamItem_" + route.unique_id - route.stream_item_field = create_model_field( - name=stream_item_name, - type_=route.stream_item_type, - mode="serialization", - ) - else: - route.stream_item_field = None - route.dependencies = list(dependencies or []) - route.description = description or inspect.cleandoc(route.endpoint.__doc__ or "") - # if a "form feed" character (page break) is found in the description text, - # truncate description text to the content preceding the first "form feed" - route.description = route.description.split("\f")[0].strip() - response_fields = {} - for additional_status_code, response in route.responses.items(): - assert isinstance(response, dict), "An additional response must be a dict" - model = response.get("model") - if model: - assert is_body_allowed_for_status_code(additional_status_code), ( - f"Status code {additional_status_code} must not have a response body" - ) - response_name = f"Response_{additional_status_code}_{route.unique_id}" - response_field = create_model_field( - name=response_name, type_=model, mode="serialization" - ) - response_fields[additional_status_code] = response_field - if response_fields: - route.response_fields = response_fields - else: - route.response_fields = {} - - assert callable(endpoint), "An endpoint must be a callable" - route.dependant = get_dependant( - path=route.path_format, call=route.endpoint, scope="function" - ) - for depends in route.dependencies[::-1]: - route.dependant.dependencies.insert( - 0, - get_parameterless_sub_dependant(depends=depends, path=route.path_format), - ) - route._flat_dependant = get_flat_dependant(route.dependant) - route._embed_body_fields = _should_embed_body_fields( - route._flat_dependant.body_params - ) - route.body_field = get_body_field( - flat_dependant=route._flat_dependant, - name=route.unique_id, - embed_body_fields=route._embed_body_fields, - ) - # Detect generator endpoints that should stream as JSONL or SSE - is_generator = ( - route.dependant.is_async_gen_callable or route.dependant.is_gen_callable - ) - route.is_sse_stream = is_generator and lenient_issubclass( - response_class, EventSourceResponse - ) - route.is_json_stream = is_generator and isinstance( - response_class, DefaultPlaceholder - ) - - -class APIRoute(routing.Route): - stream_item_type: Any | None - response_model: Any - summary: str | None - response_description: str - deprecated: bool | None - operation_id: str | None - response_model_include: IncEx | None - response_model_exclude: IncEx | None - response_model_by_alias: bool - response_model_exclude_unset: bool - response_model_exclude_defaults: bool - response_model_exclude_none: bool - include_in_schema: bool - response_class: type[Response] | DefaultPlaceholder - dependency_overrides_provider: Any | None - callbacks: list[BaseRoute] | None - openapi_extra: dict[str, Any] | None - generate_unique_id_function: Callable[[Any], str] | DefaultPlaceholder - strict_content_type: bool | DefaultPlaceholder - tags: list[str | Enum] - responses: dict[int | str, dict[str, Any]] - unique_id: str - status_code: int | None - response_field: ModelField | None - stream_item_field: ModelField | None - dependencies: list[params.Depends] - description: str - response_fields: dict[int | str, ModelField] - dependant: Dependant - _flat_dependant: Dependant - _embed_body_fields: bool - body_field: ModelField | None - is_sse_stream: bool - is_json_stream: bool - - def __init__( - self, - path: str, - endpoint: Callable[..., Any], - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[params.Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - name: str | None = None, - methods: set[str] | list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] | DefaultPlaceholder = Default(JSONResponse), - dependency_overrides_provider: Any | None = None, - callbacks: list[BaseRoute] | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[["APIRoute"], str] - | DefaultPlaceholder = Default(generate_unique_id), - strict_content_type: bool | DefaultPlaceholder = Default(True), - ) -> None: - _populate_api_route_state( - cast(_APIRouteLike, self), - path, - endpoint, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - name=name, - methods=methods, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - dependency_overrides_provider=dependency_overrides_provider, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - strict_content_type=strict_content_type, - ) - self.app = request_response(self.get_route_handler()) - - def get_route_handler(self) -> Callable[[Request], Coroutine[Any, Any, Response]]: - route = cast(_APIRouteLike, self) - # TODO: Replace or deprecate this no-scope hook so included-route - # effective context can be passed explicitly instead of via ContextVar. - effective_context = _effective_route_context_var.get() - if effective_context is not None and effective_context.original_route is self: - route = cast(_APIRouteLike, effective_context) - return get_request_handler( - dependant=route.dependant, - body_field=route.body_field, - status_code=route.status_code, - response_class=route.response_class, - response_field=route.response_field, - response_model_include=route.response_model_include, - response_model_exclude=route.response_model_exclude, - response_model_by_alias=route.response_model_by_alias, - response_model_exclude_unset=route.response_model_exclude_unset, - response_model_exclude_defaults=route.response_model_exclude_defaults, - response_model_exclude_none=route.response_model_exclude_none, - dependency_overrides_provider=route.dependency_overrides_provider, - embed_body_fields=route._embed_body_fields, - strict_content_type=route.strict_content_type, - stream_item_field=route.stream_item_field, - is_json_stream=route.is_json_stream, - ) - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - effective_context = _get_scope_effective_route_context(scope) - if effective_context is not None and effective_context.original_route is self: - match, child_scope = effective_context.matches(scope) - else: - match, child_scope = super().matches(scope) - if match != Match.NONE: - child_scope["route"] = self - return match, child_scope - - async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: - effective_context = _get_scope_effective_route_context(scope) - if effective_context is not None and effective_context.original_route is self: - methods = effective_context.methods - if methods and scope["method"] not in methods: - headers = {"Allow": ", ".join(methods)} - if "app" in scope: - raise HTTPException(status_code=405, headers=headers) - response = PlainTextResponse( - "Method Not Allowed", status_code=405, headers=headers - ) - await response(scope, receive, send) - return - token = _effective_route_context_var.set(effective_context) - try: - app = request_response(self.get_route_handler()) - finally: - _effective_route_context_var.reset(token) - await app(scope, receive, send) - return - await super().handle(scope, receive, send) - - -@dataclass -class _RouterIncludeContext: - included_router: "APIRouter" - prefix: str = "" - tags: list[str | Enum] = field(default_factory=list) - dependencies: list[params.Depends] = field(default_factory=list) - default_response_class: type[Response] | DefaultPlaceholder = field( - default_factory=lambda: Default(JSONResponse) - ) - responses: dict[int | str, dict[str, Any]] = field(default_factory=dict) - callbacks: list[BaseRoute] = field(default_factory=list) - deprecated: bool | None = None - include_in_schema: bool = True - generate_unique_id_function: Callable[[APIRoute], str] | DefaultPlaceholder = field( - default_factory=lambda: Default(generate_unique_id) - ) - strict_content_type: bool | DefaultPlaceholder = field( - default_factory=lambda: Default(True) - ) - dependency_overrides_provider: Any | None = None - - @classmethod - def for_include( - cls, - *, - parent_router: "APIRouter", - included_router: "APIRouter", - prefix: str = "", - tags: list[str | Enum] | None = None, - dependencies: Sequence[params.Depends] | None = None, - default_response_class: type[Response] | DefaultPlaceholder = Default( - JSONResponse - ), - responses: dict[int | str, dict[str, Any]] | None = None, - callbacks: list[BaseRoute] | None = None, - deprecated: bool | None = None, - include_in_schema: bool = True, - generate_unique_id_function: Callable[[APIRoute], str] - | DefaultPlaceholder = Default(generate_unique_id), - ) -> "_RouterIncludeContext": - return cls( - included_router=included_router, - prefix=parent_router.prefix + prefix, - tags=[*parent_router.tags, *(tags or [])], - dependencies=[*parent_router.dependencies, *(dependencies or [])], - default_response_class=get_value_or_default( - default_response_class, parent_router.default_response_class - ), - responses={**parent_router.responses, **(responses or {})}, - callbacks=[*parent_router.callbacks, *(callbacks or [])], - deprecated=deprecated or parent_router.deprecated, - include_in_schema=parent_router.include_in_schema and include_in_schema, - generate_unique_id_function=get_value_or_default( - generate_unique_id_function, parent_router.generate_unique_id_function - ), - strict_content_type=parent_router.strict_content_type, - dependency_overrides_provider=parent_router.dependency_overrides_provider, - ) - - def combine( - self, child_context: "_RouterIncludeContext" - ) -> "_RouterIncludeContext": - return _RouterIncludeContext( - included_router=child_context.included_router, - prefix=self.prefix + child_context.prefix, - tags=[*self.tags, *child_context.tags], - dependencies=[*self.dependencies, *child_context.dependencies], - default_response_class=get_value_or_default( - child_context.default_response_class, self.default_response_class - ), - responses={**self.responses, **child_context.responses}, - callbacks=[*self.callbacks, *child_context.callbacks], - deprecated=self.deprecated or child_context.deprecated, - include_in_schema=self.include_in_schema - and child_context.include_in_schema, - generate_unique_id_function=get_value_or_default( - child_context.generate_unique_id_function, - self.generate_unique_id_function, - ), - strict_content_type=get_value_or_default( - child_context.strict_content_type, self.strict_content_type - ), - dependency_overrides_provider=self.dependency_overrides_provider, - ) - - def path_for(self, route: _RouteWithPath) -> str: - return self.prefix + route.path - - -@dataclass -class _EffectiveRouteContext: - original_route: BaseRoute - starlette_route: BaseRoute | None = None - path: str = "" - endpoint: Callable[..., Any] | None = None - stream_item_type: Any | None = None - response_model: Any = None - summary: str | None = None - response_description: str = "Successful Response" - deprecated: bool | None = None - operation_id: str | None = None - response_model_include: IncEx | None = None - response_model_exclude: IncEx | None = None - response_model_by_alias: bool = True - response_model_exclude_unset: bool = False - response_model_exclude_defaults: bool = False - response_model_exclude_none: bool = False - include_in_schema: bool = True - response_class: type[Response] | DefaultPlaceholder = field( - default_factory=lambda: Default(JSONResponse) - ) - dependency_overrides_provider: Any | None = None - callbacks: list[BaseRoute] | None = None - openapi_extra: dict[str, Any] | None = None - generate_unique_id_function: Callable[[Any], str] | DefaultPlaceholder = field( - default_factory=lambda: Default(generate_unique_id) - ) - strict_content_type: bool | DefaultPlaceholder = field( - default_factory=lambda: Default(True) - ) - tags: list[str | Enum] = field(default_factory=list) - responses: dict[int | str, dict[str, Any]] = field(default_factory=dict) - name: str = "" - path_regex: Any = None - path_format: str = "" - param_convertors: dict[str, Any] = field(default_factory=dict) - methods: set[str] = field(default_factory=set) - unique_id: str = "" - status_code: int | None = None - response_field: ModelField | None = None - stream_item_field: ModelField | None = None - dependencies: list[params.Depends] = field(default_factory=list) - description: str = "" - response_fields: dict[int | str, ModelField] = field(default_factory=dict) - dependant: Dependant | None = None - _flat_dependant: Dependant | None = None - _embed_body_fields: bool = False - body_field: ModelField | None = None - is_sse_stream: bool = False - is_json_stream: bool = False - - @classmethod - def from_api_route( - cls, - *, - original_route: APIRoute, - include_context: _RouterIncludeContext, - ) -> "_EffectiveRouteContext": - route = cast(_APIRouteLike, original_route) - context = cls(original_route=original_route) - _populate_api_route_state( - cast(_APIRouteLike, context), - include_context.path_for(original_route), - route.endpoint, - response_model=route.response_model, - status_code=route.status_code, - tags=[*include_context.tags, *route.tags], - dependencies=[*include_context.dependencies, *route.dependencies], - summary=route.summary, - description=route.description, - response_description=route.response_description, - responses={**include_context.responses, **route.responses}, - deprecated=route.deprecated or include_context.deprecated, - methods=route.methods, - operation_id=route.operation_id, - response_model_include=route.response_model_include, - response_model_exclude=route.response_model_exclude, - response_model_by_alias=route.response_model_by_alias, - response_model_exclude_unset=route.response_model_exclude_unset, - response_model_exclude_defaults=route.response_model_exclude_defaults, - response_model_exclude_none=route.response_model_exclude_none, - include_in_schema=route.include_in_schema - and include_context.include_in_schema, - response_class=get_value_or_default( - route.response_class, - include_context.included_router.default_response_class, - include_context.default_response_class, - ), - name=route.name, - dependency_overrides_provider=include_context.dependency_overrides_provider, - callbacks=[*include_context.callbacks, *(route.callbacks or [])], - openapi_extra=route.openapi_extra, - generate_unique_id_function=get_value_or_default( - route.generate_unique_id_function, - include_context.included_router.generate_unique_id_function, - include_context.generate_unique_id_function, - ), - strict_content_type=get_value_or_default( - route.strict_content_type, - include_context.included_router.strict_content_type, - include_context.strict_content_type, - ), - ) - return context - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - if not isinstance(self.original_route, APIRoute): - assert self.starlette_route is not None - return self.starlette_route.matches(scope) - if scope["type"] != "http": - return Match.NONE, {} - route_path = get_route_path(scope) - match = self.path_regex.match(route_path) - if not match: - return Match.NONE, {} - matched_params = match.groupdict() - for key, value in matched_params.items(): - matched_params[key] = self.param_convertors[key].convert(value) - path_params = dict(scope.get("path_params", {})) - path_params.update(matched_params) - child_scope = {"endpoint": self.endpoint, "path_params": path_params} - methods = self.methods - if methods and scope["method"] not in methods: - return Match.PARTIAL, child_scope - return Match.FULL, child_scope - - def url_path_for(self, name: str, /, **path_params: Any) -> Any: - if not isinstance(self.original_route, APIRoute): - assert self.starlette_route is not None - return self.starlette_route.url_path_for(name, **path_params) - seen_params = set(path_params.keys()) - param_convertors = self.param_convertors - expected_params = set(param_convertors.keys()) - if name != self.name or seen_params != expected_params: - raise routing.NoMatchFound(name, path_params) - path, remaining_params = routing.replace_params( - self.path_format, param_convertors, path_params - ) - assert not remaining_params - return URLPath(path=path, protocol="http") - - -@dataclass(frozen=True) -class RouteContext: - route: BaseRoute - _route_context: _EffectiveRouteContext | None = field(default=None, repr=False) - - @property - def original_route(self) -> BaseRoute: - if self._route_context is not None: - return self._route_context.original_route - return self.route - - @property - def _effective_route(self) -> BaseRoute | _EffectiveRouteContext: - if self._route_context is not None: - return self._route_context - return self.route - - @property - def path(self) -> str | None: - return getattr(self._effective_route, "path", None) - - @property - def path_format(self) -> str | None: - return getattr(self._effective_route, "path_format", None) - - @property - def name(self) -> str | None: - return getattr(self._effective_route, "name", None) - - @property - def methods(self) -> set[str] | None: - return getattr(self._effective_route, "methods", None) - - @property - def endpoint(self) -> Callable[..., Any] | None: - return getattr(self._effective_route, "endpoint", None) - - def __getattr__(self, name: str) -> Any: - return getattr(self._effective_route, name) - - -@dataclass -class _IncludedRouter(BaseRoute): - original_router: "APIRouter" - include_context: _RouterIncludeContext - _effective_candidates: list["_EffectiveRouteContext | _IncludedRouter"] = field( - default_factory=list - ) - _effective_candidates_version: int | None = None - _effective_low_priority_routes: list["_EffectiveRouteContext"] = field( - default_factory=list - ) - _effective_low_priority_routes_version: int | None = None - - def effective_candidates(self) -> list["_EffectiveRouteContext | _IncludedRouter"]: - routes_version = self.original_router._get_routes_version() - if routes_version == self._effective_candidates_version: - return self._effective_candidates - self._effective_candidates = [] - candidates = self.original_router.routes - for route in candidates: - if isinstance(route, _IncludedRouter): - child_context = self.include_context.combine(route.include_context) - child_branch = _IncludedRouter( - original_router=route.original_router, - include_context=child_context, - ) - self._effective_candidates.append(child_branch) - continue - route_context = self._build_effective_context(route) - if route_context is not None: - self._effective_candidates.append(route_context) - self._effective_candidates_version = routes_version - return self._effective_candidates - - def effective_low_priority_routes(self) -> list["_EffectiveRouteContext"]: - routes_version = self.original_router._get_routes_version() - if routes_version == self._effective_low_priority_routes_version: - return self._effective_low_priority_routes - self._effective_low_priority_routes = [] - for route in self.original_router._low_priority_routes: - route_context = self._build_effective_context(route) - if route_context is not None: - self._effective_low_priority_routes.append(route_context) - for route in self.original_router.routes: - if isinstance(route, _IncludedRouter): - child_context = self.include_context.combine(route.include_context) - child_branch = _IncludedRouter( - original_router=route.original_router, - include_context=child_context, - ) - self._effective_low_priority_routes.extend( - child_branch.effective_low_priority_routes() - ) - self._effective_low_priority_routes_version = routes_version - return self._effective_low_priority_routes - - def _build_effective_context( - self, route: BaseRoute - ) -> _EffectiveRouteContext | None: - if isinstance(route, APIRoute): - return _EffectiveRouteContext.from_api_route( - original_route=route, - include_context=self.include_context, - ) - if isinstance(route, _FrontendRouteGroup): - return _EffectiveRouteContext( - original_route=route, - starlette_route=route.with_prefix(self.include_context.prefix), - ) - if isinstance(route, routing.Route): - starlette_route: BaseRoute = routing.Route( - self.include_context.path_for(route), - endpoint=route.endpoint, - methods=list(route.methods or []), - name=route.name, - include_in_schema=route.include_in_schema, - ) - return _EffectiveRouteContext( - original_route=route, - starlette_route=starlette_route, - ) - if isinstance(route, APIWebSocketRoute): - starlette_route = APIWebSocketRoute( - self.include_context.path_for(route), - endpoint=route.endpoint, - name=route.name, - dependencies=[*self.include_context.dependencies, *route.dependencies], - dependency_overrides_provider=( - self.include_context.dependency_overrides_provider - ), - ) - return _EffectiveRouteContext( - original_route=route, - starlette_route=starlette_route, - ) - if isinstance(route, routing.WebSocketRoute): - starlette_route = routing.WebSocketRoute( - self.include_context.path_for(route), route.endpoint, name=route.name - ) - return _EffectiveRouteContext( - original_route=route, - starlette_route=starlette_route, - ) - if isinstance(route, routing.Mount): - starlette_route = copy.copy(route) - starlette_route.path = self.include_context.path_for(route).rstrip("/") - ( - starlette_route.path_regex, - starlette_route.path_format, - starlette_route.param_convertors, - ) = compile_path(starlette_route.path + "/{path:path}") - return _EffectiveRouteContext( - original_route=route, - starlette_route=starlette_route, - ) - if isinstance(route, routing.Host): - if self.include_context.prefix: - prefixed_app: ASGIApp = routing.Router( - routes=[routing.Mount(self.include_context.prefix, app=route.app)] - ) - else: - prefixed_app = route.app - starlette_route = routing.Host( - route.host, app=prefixed_app, name=route.name - ) - return _EffectiveRouteContext( - original_route=route, - starlette_route=starlette_route, - ) - return None - - def _match( - self, scope: Scope - ) -> tuple[Match, Scope, BaseRoute | None, _EffectiveRouteContext | None]: - partial: tuple[Scope, BaseRoute, _EffectiveRouteContext | None] | None = None - for candidate in self.effective_candidates(): - if isinstance(candidate, _IncludedRouter): - match, child_scope = candidate.matches(scope) - route: BaseRoute = candidate - route_context = None - elif isinstance(candidate.original_route, APIRoute): - route_context = candidate - fastapi_scope = _get_fastapi_scope(scope) - previous_context = fastapi_scope.get( - _FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY, _SCOPE_MISSING - ) - fastapi_scope[_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY] = route_context - try: - match, child_scope = candidate.original_route.matches(scope) - finally: - _restore_fastapi_scope_key( - scope, _FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY, previous_context - ) - route = candidate.original_route - else: - route_context = candidate - match, child_scope = candidate.matches(scope) - route = candidate.starlette_route or candidate.original_route - if match == Match.FULL: - return match, child_scope, route, route_context - if match == Match.PARTIAL and partial is None: - partial = (child_scope, route, route_context) - if partial is not None: - child_scope, route, route_context = partial - return Match.PARTIAL, child_scope, route, route_context - return Match.NONE, {}, None, None - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - fastapi_scope = _get_fastapi_scope(scope) - previous_router = fastapi_scope.get( - _FASTAPI_INCLUDED_ROUTER_KEY, _SCOPE_MISSING - ) - fastapi_scope[_FASTAPI_INCLUDED_ROUTER_KEY] = self - try: - match, _ = self.original_router.matches(scope) - return match, {} - finally: - _restore_fastapi_scope_key( - scope, _FASTAPI_INCLUDED_ROUTER_KEY, previous_router - ) - - async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: - _get_fastapi_scope(scope)[_FASTAPI_INCLUDED_ROUTER_KEY] = self - await self.original_router.handle(scope, receive, send) - - async def _handle_selected( - self, scope: Scope, receive: Receive, send: Send - ) -> None: - match, child_scope, route, effective_context = self._match(scope) - if match == Match.NONE or route is None: - await self.original_router.default(scope, receive, send) - return - scope.update(child_scope) - if isinstance(route, _IncludedRouter): - await route.handle(scope, receive, send) - return - if effective_context is not None: - _get_fastapi_scope(scope)[_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY] = ( - effective_context - ) - original_route = effective_context.original_route - if isinstance(original_route, APIRoute): - scope["route"] = original_route - await original_route.handle(scope, receive, send) - return - await route.handle(scope, receive, send) - - def effective_route_contexts(self) -> Iterator[_EffectiveRouteContext]: - for candidate in self.effective_candidates(): - if isinstance(candidate, _IncludedRouter): - yield from candidate.effective_route_contexts() - else: - yield candidate - - def url_path_for(self, name: str, /, **path_params: Any) -> Any: - for route_context in self.effective_route_contexts(): - try: - return route_context.url_path_for(name, **path_params) - except routing.NoMatchFound: - pass - raise routing.NoMatchFound(name, path_params) - - -def _iter_included_route_candidates(routes: Sequence[BaseRoute]) -> Iterator[BaseRoute]: - for route, route_context in _iter_routes_with_context(routes): - if route_context is not None and route_context.starlette_route is not None: - yield route_context.starlette_route - else: - yield route - - -def iter_route_contexts( - routes: Sequence[BaseRoute | RouteContext], -) -> Iterator[RouteContext]: - for route in routes: - if isinstance(route, RouteContext): - yield route - continue - for original_route, route_context in _iter_routes_with_context([route]): - if route_context is None: - yield RouteContext(original_route) - else: - yield RouteContext(original_route, route_context) - - -def _iter_routes_with_context( - routes: Sequence[BaseRoute], -) -> Iterator[tuple[BaseRoute, _EffectiveRouteContext | None]]: - for route in routes: - if isinstance(route, _IncludedRouter): - for route_context in route.effective_route_contexts(): - yield route_context.original_route, route_context - else: - yield route, None - - -def _normalize_frontend_path(path: str) -> str: - if not path: - raise AssertionError("A frontend path cannot be empty") - if not path.startswith("/"): - raise AssertionError("A frontend path must start with '/'") - if path != "/": - path = path.rstrip("/") - return path - - -def _join_frontend_paths(prefix: str, path: str) -> str: - if not prefix: - return path - if path == "/": - return prefix - return prefix + path - - -def _frontend_path_specificity(path: str) -> int: - if path == "/": - return 0 - return len(path) - - -def _get_resolved_absolute_path(path: str | os.PathLike[str]) -> str: - return os.path.realpath(os.fspath(path)) - - -class _FrontendStaticFiles(StaticFiles): - def __init__( - self, - *, - directory: str | os.PathLike[str], - fallback: Literal["auto", "index.html", "404.html"] | None, - check_dir: bool = True, - ) -> None: - self.fallback = fallback - if check_dir and not os.path.isdir(directory): - raise RuntimeError( - f"Frontend directory '{directory}' does not exist. " - f"Resolved absolute path: '{_get_resolved_absolute_path(directory)}'" - ) - super().__init__( - directory=directory, - html=True, - check_dir=check_dir, - follow_symlink=False, - ) - if check_dir and fallback in {"index.html", "404.html"}: - self._check_fallback_file(fallback) - - def _check_fallback_file(self, fallback: str) -> None: - _, stat_result = self.lookup_path(fallback) - if stat_result is None or not stat.S_ISREG(stat_result.st_mode): - raise RuntimeError( - f"Frontend fallback file '{fallback}' does not exist in " - f"directory '{self.directory}'. Resolved absolute directory: " - f"'{self._get_resolved_directory()}'" - ) - - def _get_resolved_directory(self) -> str: - assert self.directory is not None - return _get_resolved_absolute_path(self.directory) - - def get_path(self, scope: Scope) -> str: - path = _get_fastapi_scope(scope).get(_FASTAPI_FRONTEND_PATH_KEY, "") - assert isinstance(path, str) - return os.path.normpath(os.path.join(*path.split("/"))) - - async def get_response(self, path: str, scope: Scope) -> Response: - if scope["method"] not in ("GET", "HEAD"): - if await self._lookup_static_resource(path) is not None: - raise HTTPException(status_code=405) - raise HTTPException(status_code=404) - - static_resource = await self._lookup_static_resource(path) - if static_resource is not None: - full_path, stat_result, is_directory_index = static_resource - if is_directory_index and not scope["path"].endswith("/"): - url = URL(scope=scope) - url = url.replace(path=url.path + "/") - return RedirectResponse(url=url) - return self.file_response(full_path, stat_result, scope) - - if self.fallback == "404.html" or ( - self.fallback == "auto" and self._fallback_file_exists("404.html") - ): - return await self._fallback_response("404.html", scope, status_code=404) - - if ( - self.fallback == "index.html" - or (self.fallback == "auto" and self._fallback_file_exists("index.html")) - ) and _is_frontend_navigation_request(scope): - return await self._fallback_response("index.html", scope, status_code=200) - - raise HTTPException(status_code=404) - - async def _lookup_path(self, path: str) -> tuple[str, os.stat_result | None]: - try: - return await run_in_threadpool(self.lookup_path, path) - except PermissionError: - raise HTTPException(status_code=401) from None - except OSError as exc: - if exc.errno == errno.ENAMETOOLONG: - raise HTTPException(status_code=404) from None - raise exc - except ValueError: - raise HTTPException(status_code=404) from None - - async def _lookup_static_resource( - self, path: str - ) -> tuple[str, os.stat_result, bool] | None: - full_path, stat_result = await self._lookup_path(path) - if stat_result is None: - return None - if stat.S_ISREG(stat_result.st_mode): - return full_path, stat_result, False - if stat.S_ISDIR(stat_result.st_mode): - index_path = os.path.join(path, "index.html") - full_path, stat_result = await self._lookup_path(index_path) - if stat_result is not None and stat.S_ISREG(stat_result.st_mode): - return full_path, stat_result, True - return None - - def _fallback_file_exists(self, fallback: str) -> bool: - _, stat_result = self.lookup_path(fallback) - return stat_result is not None and stat.S_ISREG(stat_result.st_mode) - - async def _fallback_response( - self, fallback: str, scope: Scope, *, status_code: int - ) -> Response: - full_path, stat_result = await run_in_threadpool(self.lookup_path, fallback) - if stat_result is None or not stat.S_ISREG(stat_result.st_mode): - raise RuntimeError( - f"Frontend fallback file '{fallback}' does not exist in " - f"directory '{self.directory}'. Resolved absolute directory: " - f"'{self._get_resolved_directory()}'" - ) - return self.file_response( - full_path, stat_result, scope, status_code=status_code - ) - - -def _iter_accept_media_types(accept: str) -> Iterator[tuple[str, float]]: - for raw_value in accept.split(","): - message = email.message.Message() - message["content-type"] = raw_value.strip() - q = message.get_param("q") - quality = 1.0 - if isinstance(q, str): - try: - quality = float(q) - except ValueError: - pass - yield ( - f"{message.get_content_maintype()}/{message.get_content_subtype()}", - quality, - ) - - -def _is_frontend_navigation_request(scope: Scope) -> bool: - route_path = get_route_path(scope) - final_segment = route_path.rsplit("/", 1)[-1] - if os.path.splitext(final_segment)[1]: - return False - request = Request(scope) - wildcard_accepted = False - html_rejected = False - for media_type, quality in _iter_accept_media_types( - request.headers.get("accept", "") - ): - if media_type in {"text/html", "application/xhtml+xml"}: - if quality == 0: - html_rejected = True - else: - return True - elif media_type == "*/*" and quality != 0: - wildcard_accepted = True - return wildcard_accepted and not html_rejected - - -class _FrontendRoute(BaseRoute): - def __init__( - self, - path: str, - *, - directory: str | os.PathLike[str], - fallback: Literal["auto", "index.html", "404.html"] | None = "auto", - check_dir: bool = True, - ) -> None: - if fallback not in {"auto", "index.html", "404.html", None}: - raise AssertionError( - "fallback must be 'auto', 'index.html', '404.html', or None" - ) - self.path = _normalize_frontend_path(path) - self.methods = {"GET", "HEAD"} - self.app = _FrontendStaticFiles( - directory=directory, fallback=fallback, check_dir=check_dir - ) - - def with_path(self, path: str) -> "_FrontendRoute": - route = copy.copy(self) - route.path = _normalize_frontend_path(path) - return route - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - if scope["type"] != "http": - return Match.NONE, {} - frontend_path = self._get_frontend_path(get_route_path(scope)) - if frontend_path is None: - return Match.NONE, {} - child_scope = {_FASTAPI_SCOPE_KEY: {_FASTAPI_FRONTEND_PATH_KEY: frontend_path}} - if scope["method"] not in self.methods: - return Match.PARTIAL, child_scope - return Match.FULL, child_scope - - def _get_frontend_path(self, route_path: str) -> str | None: - if self.path == "/": - return route_path.lstrip("/") - if route_path == self.path: - return "" - prefix = self.path + "/" - if route_path.startswith(prefix): - return route_path[len(prefix) :] - return None - - async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: - await self.app(scope, receive, send) - - def url_path_for(self, name: str, /, **path_params: Any) -> URLPath: - raise NoMatchFound(name, path_params) - - -class _FrontendRouteGroup(BaseRoute): - def __init__(self) -> None: - self.routes: list[_FrontendRoute] = [] - - def add_frontend_route( - self, - path: str, - *, - directory: str | os.PathLike[str], - fallback: Literal["auto", "index.html", "404.html"] | None = "auto", - check_dir: bool = True, - ) -> None: - self.routes.append( - _FrontendRoute( - path, - directory=directory, - fallback=fallback, - check_dir=check_dir, - ) - ) - - def with_prefix(self, prefix: str) -> "_FrontendRouteGroup": - route_group = copy.copy(self) - route_group.routes = [ - route.with_path(_join_frontend_paths(prefix, route.path)) - for route in self.routes - ] - return route_group - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - match, child_scope, _ = self._match(scope) - return match, child_scope - - def _match(self, scope: Scope) -> tuple[Match, Scope, _FrontendRoute | None]: - full: tuple[Scope, _FrontendRoute] | None = None - partial: tuple[Scope, _FrontendRoute] | None = None - for route in self.routes: - match, child_scope = route.matches(scope) - if match == Match.FULL: - if full is None or _frontend_path_specificity( - route.path - ) > _frontend_path_specificity(full[1].path): - full = (child_scope, route) - elif match == Match.PARTIAL: - if partial is None or _frontend_path_specificity( - route.path - ) > _frontend_path_specificity(partial[1].path): - partial = (child_scope, route) - if full is not None: - child_scope, route = full - return Match.FULL, child_scope, route - if partial is not None: - child_scope, route = partial - return Match.PARTIAL, child_scope, route - return Match.NONE, {}, None - - async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: - match, child_scope, route = self._match(scope) - if match == Match.NONE or route is None: - raise HTTPException(status_code=404) - _update_scope(scope, child_scope) - await route.handle(scope, receive, send) - - def url_path_for(self, name: str, /, **path_params: Any) -> URLPath: - raise NoMatchFound(name, path_params) - - -class APIRouter(routing.Router): - """ - `APIRouter` class, used to group *path operations*, for example to structure - an app in multiple files. It would then be included in the `FastAPI` app, or - in another `APIRouter` (ultimately included in the app). - - Read more about it in the - [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/). - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - router = APIRouter() - - - @router.get("/users/", tags=["users"]) - async def read_users(): - return [{"username": "Rick"}, {"username": "Morty"}] - - - app.include_router(router) - ``` - """ - - def __init__( - self, - *, - prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to all the *path operations* in this - router. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to all the - *path operations* in this router. - - Read more about it in the - [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - default_response_class: Annotated[ - type[Response], - Doc( - """ - The default response class to be used. - - Read more in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). - """ - ), - ] = Default(JSONResponse), - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses to be shown in OpenAPI. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). - - And in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - OpenAPI callbacks that should apply to all *path operations* in this - router. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - routes: Annotated[ - list[BaseRoute] | None, - Doc( - """ - **Note**: you probably shouldn't use this parameter, it is inherited - from Starlette and supported for compatibility. - - --- - - A list of routes to serve incoming HTTP and WebSocket requests. - """ - ), - deprecated( - """ - You normally wouldn't use this parameter with FastAPI, it is inherited - from Starlette and supported for compatibility. - - In FastAPI, you normally would use the *path operation methods*, - like `router.get()`, `router.post()`, etc. - """ - ), - ] = None, - redirect_slashes: Annotated[ - bool, - Doc( - """ - Whether to detect and redirect slashes in URLs when the client doesn't - use the same format. - """ - ), - ] = True, - default: Annotated[ - ASGIApp | None, - Doc( - """ - Default function handler for this router. Used to handle - 404 Not Found errors. - """ - ), - ] = None, - dependency_overrides_provider: Annotated[ - Any | None, - Doc( - """ - Only used internally by FastAPI to handle dependency overrides. - - You shouldn't need to use it. It normally points to the `FastAPI` app - object. - """ - ), - ] = None, - route_class: Annotated[ - type[APIRoute], - Doc( - """ - Custom route (*path operation*) class to be used by this router. - - Read more about it in the - [FastAPI docs for Custom Request and APIRoute class](https://fastapi.tiangolo.com/how-to/custom-request-and-route/#custom-apiroute-class-in-a-router). - """ - ), - ] = APIRoute, - on_startup: Annotated[ - Sequence[Callable[[], Any]] | None, - Doc( - """ - A list of startup event handler functions. - - You should instead use the `lifespan` handlers. - - Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - on_shutdown: Annotated[ - Sequence[Callable[[], Any]] | None, - Doc( - """ - A list of shutdown event handler functions. - - You should instead use the `lifespan` handlers. - - Read more in the - [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - # the generic to Lifespan[AppType] is the type of the top level application - # which the router cannot know statically, so we use typing.Any - lifespan: Annotated[ - Lifespan[Any] | None, - Doc( - """ - A `Lifespan` context manager handler. This replaces `startup` and - `shutdown` functions with a single context manager. - - Read more in the - [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark all *path operations* in this router as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - To include (or not) all the *path operations* in this router in the - generated OpenAPI. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - strict_content_type: Annotated[ - bool, - Doc( - """ - Enable strict checking for request Content-Type headers. - - When `True` (the default), requests with a body that do not include - a `Content-Type` header will **not** be parsed as JSON. - - This prevents potential cross-site request forgery (CSRF) attacks - that exploit the browser's ability to send requests without a - Content-Type header, bypassing CORS preflight checks. In particular - applicable for apps that need to be run locally (in localhost). - - When `False`, requests without a `Content-Type` header will have - their body parsed as JSON, which maintains compatibility with - certain clients that don't send `Content-Type` headers. - - Read more about it in the - [FastAPI docs for Strict Content-Type](https://fastapi.tiangolo.com/advanced/strict-content-type/). - """ - ), - ] = Default(True), - ) -> None: - # Determine the lifespan context to use - if lifespan is None: - # Use the default lifespan that runs on_startup/on_shutdown handlers - lifespan_context: Lifespan[Any] = _DefaultLifespan(self) - elif inspect.isasyncgenfunction(lifespan): - lifespan_context = asynccontextmanager(lifespan) - elif inspect.isgeneratorfunction(lifespan): - lifespan_context = _wrap_gen_lifespan_context(lifespan) - else: - lifespan_context = lifespan - self.lifespan_context = lifespan_context - - super().__init__( - routes=routes, - redirect_slashes=redirect_slashes, - default=default, - lifespan=lifespan_context, - ) - if prefix: - assert prefix.startswith("/"), "A path prefix must start with '/'" - assert not prefix.endswith("/"), ( - "A path prefix must not end with '/', as the routes will start with '/'" - ) - - # Handle on_startup/on_shutdown locally since Starlette removed support - # Ref: https://github.com/Kludex/starlette/pull/3117 - # TODO: deprecate this once the lifespan (or alternative) interface is improved - self.on_startup: list[Callable[[], Any]] = ( - [] if on_startup is None else list(on_startup) - ) - self.on_shutdown: list[Callable[[], Any]] = ( - [] if on_shutdown is None else list(on_shutdown) - ) - - self.prefix = prefix - self.tags: list[str | Enum] = tags or [] - self.dependencies = list(dependencies or []) - self.deprecated = deprecated - self.include_in_schema = include_in_schema - self.responses = responses or {} - self.callbacks = callbacks or [] - self.dependency_overrides_provider = dependency_overrides_provider - self.route_class = route_class - self.default_response_class = default_response_class - self.generate_unique_id_function = generate_unique_id_function - self.strict_content_type = strict_content_type - self._routes_version = 0 - self._low_priority_routes: list[BaseRoute] = [] - self._frontend_routes: _FrontendRouteGroup | None = None - - def _mark_routes_changed(self) -> None: - self._routes_version += 1 - - def _get_routes_version(self, seen: set[int] | None = None) -> int: - if seen is None: - seen = set() - router_id = id(self) - if router_id in seen: - return self._routes_version - seen.add(router_id) - version = self._routes_version - for route in self.routes: - if isinstance(route, _IncludedRouter): - version += route.original_router._get_routes_version(seen) - return version - - def _contains_router( - self, router: "APIRouter", seen: set[int] | None = None - ) -> bool: - if seen is None: - seen = set() - router_id = id(self) - if router_id in seen: - return False - seen.add(router_id) - for route in self.routes: - if not isinstance(route, _IncludedRouter): - continue - if route.original_router is router: - return True - if route.original_router._contains_router(router, seen): - return True - return False - - def add_route( - self, - path: str, - endpoint: Callable[[Request], Awaitable[Response] | Response], - methods: Collection[str] | None = None, - name: str | None = None, - include_in_schema: bool = True, - ) -> None: - super().add_route( - path, - endpoint, - methods=methods, - name=name, - include_in_schema=include_in_schema, - ) - self._mark_routes_changed() - - def add_websocket_route( - self, - path: str, - endpoint: Callable[[WebSocket], Awaitable[None]], - name: str | None = None, - ) -> None: - super().add_websocket_route(path, endpoint, name=name) - self._mark_routes_changed() - - def frontend( - self, - path: Annotated[ - str, - Doc( - """ - The URL path prefix where the frontend build should be served. - """ - ), - ], - *, - directory: Annotated[ - str | os.PathLike[str], - Doc( - """ - The directory containing the static frontend build output. - """ - ), - ], - fallback: Annotated[ - Literal["auto", "index.html", "404.html"] | None, - Doc( - """ - The fallback file behavior for missing frontend paths. - """ - ), - ] = "auto", - check_dir: Annotated[ - bool, - Doc( - """ - Check that the frontend directory exists when the app is created. - """ - ), - ] = True, - ) -> None: - """ - Serve a static frontend build as low-priority routes. - - Use this for frontend tools that build static files into a directory, - such as `dist`. **FastAPI** path operations are checked first, and - the frontend files are checked only if no normal route matched. - - A typical project could look like this: - - ```text - . - ├── pyproject.toml - ├── app - │ ├── __init__.py - │ └── main.py - └── dist - ├── index.html - └── assets - └── app.js - ``` - - Then in `app/main.py`: - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - router = APIRouter() - router.frontend("/", directory="dist") - app.include_router(router) - ``` - """ - normalized_path = _normalize_frontend_path(path) - if self._frontend_routes is None: - self._frontend_routes = _FrontendRouteGroup() - self._low_priority_routes.append(self._frontend_routes) - self._frontend_routes.add_frontend_route( - _join_frontend_paths(self.prefix, normalized_path), - directory=directory, - fallback=fallback, - check_dir=check_dir, - ) - self._mark_routes_changed() - - async def app(self, scope: Scope, receive: Receive, send: Send) -> None: - assert scope["type"] in ("http", "websocket", "lifespan") - - if "router" not in scope: - scope["router"] = self - - if scope["type"] == "lifespan": - await self.lifespan(scope, receive, send) - return - - partial: tuple[BaseRoute, Scope] | None = None - for route in self.routes: - match, child_scope = route.matches(scope) - if match == Match.FULL: - scope.update(child_scope) - await route.handle(scope, receive, send) - return - if match == Match.PARTIAL and partial is None: - partial = (route, child_scope) - - if partial is not None: - route, child_scope = partial - scope.update(child_scope) - await route.handle(scope, receive, send) - return - - route_path = get_route_path(scope) - if scope["type"] == "http" and self.redirect_slashes and route_path != "/": - redirect_scope = dict(scope) - if route_path.endswith("/"): - redirect_scope["path"] = redirect_scope["path"].rstrip("/") - else: - redirect_scope["path"] = redirect_scope["path"] + "/" - - for route in self.routes: - match, _ = route.matches(redirect_scope) - if match != Match.NONE: - redirect_url = URL(scope=redirect_scope) - response = RedirectResponse(url=str(redirect_url)) - await response(scope, receive, send) - return - - ( - low_priority_match, - low_priority_scope, - low_priority_route, - low_priority_context, - ) = self._match_low_priority(scope) - if low_priority_match != Match.NONE and low_priority_route is not None: - _update_scope(scope, low_priority_scope) - if low_priority_context is not None: - _get_fastapi_scope(scope)[_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY] = ( - low_priority_context - ) - original_route = low_priority_context.original_route - if isinstance(original_route, APIRoute): - scope["route"] = original_route - await original_route.handle(scope, receive, send) - return - await low_priority_route.handle(scope, receive, send) - return - - await self.default(scope, receive, send) - - async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: - included_router = _get_scope_included_router(scope) - if ( - isinstance(included_router, _IncludedRouter) - and included_router.original_router is self - ): - await included_router._handle_selected(scope, receive, send) - return - await self.app(scope, receive, send) - - def matches(self, scope: Scope) -> tuple[Match, Scope]: - included_router = _get_scope_included_router(scope) - if ( - isinstance(included_router, _IncludedRouter) - and included_router.original_router is self - ): - match, child_scope, _, _ = included_router._match(scope) - return match, child_scope - return Match.NONE, {} - - def _iter_low_priority_routes( - self, - ) -> Iterator[BaseRoute | _EffectiveRouteContext]: - yield from self._low_priority_routes - for route in self.routes: - if isinstance(route, _IncludedRouter): - yield from route.effective_low_priority_routes() - - def _match_low_priority( - self, scope: Scope - ) -> tuple[Match, Scope, BaseRoute | None, _EffectiveRouteContext | None]: - full: tuple[Scope, BaseRoute, _EffectiveRouteContext | None] | None = None - partial: tuple[Scope, BaseRoute, _EffectiveRouteContext | None] | None = None - for candidate in self._iter_low_priority_routes(): - route: BaseRoute - if isinstance(candidate, _EffectiveRouteContext): - route_context: _EffectiveRouteContext | None = candidate - original_route = candidate.original_route - if isinstance(original_route, APIRoute): - fastapi_scope = _get_fastapi_scope(scope) - previous_context = fastapi_scope.get( - _FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY, _SCOPE_MISSING - ) - fastapi_scope[_FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY] = route_context - try: - match, child_scope = original_route.matches(scope) - finally: - _restore_fastapi_scope_key( - scope, - _FASTAPI_EFFECTIVE_ROUTE_CONTEXT_KEY, - previous_context, - ) - route = original_route - else: - match, child_scope = candidate.matches(scope) - route = candidate.starlette_route or original_route - else: - route_context = None - match, child_scope = candidate.matches(scope) - route = candidate - if match == Match.FULL: - if full is None: - full = (child_scope, route, route_context) - elif match == Match.PARTIAL: - if partial is None: - partial = (child_scope, route, route_context) - if full is not None: - child_scope, route, route_context = full - return Match.FULL, child_scope, route, route_context - if partial is not None: - child_scope, route, route_context = partial - return Match.PARTIAL, child_scope, route, route_context - return Match.NONE, {}, None, None - - def route( - self, - path: str, - methods: Collection[str] | None = None, - name: str | None = None, - include_in_schema: bool = True, - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_route( - path, - func, - methods=methods, - name=name, - include_in_schema=include_in_schema, - ) - return func - - return decorator - - def add_api_route( - self, - path: str, - endpoint: Callable[..., Any], - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[params.Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - methods: set[str] | list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] | DefaultPlaceholder = Default(JSONResponse), - name: str | None = None, - route_class_override: type[APIRoute] | None = None, - callbacks: list[BaseRoute] | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[[APIRoute], str] - | DefaultPlaceholder = Default(generate_unique_id), - strict_content_type: bool | DefaultPlaceholder = Default(True), - ) -> None: - route_class = route_class_override or self.route_class - responses = responses or {} - combined_responses = {**self.responses, **responses} - current_response_class = get_value_or_default( - response_class, self.default_response_class - ) - current_tags = self.tags.copy() - if tags: - current_tags.extend(tags) - current_dependencies = self.dependencies.copy() - if dependencies: - current_dependencies.extend(dependencies) - current_callbacks = self.callbacks.copy() - if callbacks: - current_callbacks.extend(callbacks) - current_generate_unique_id = get_value_or_default( - generate_unique_id_function, self.generate_unique_id_function - ) - route = route_class( - self.prefix + path, - endpoint=endpoint, - response_model=response_model, - status_code=status_code, - tags=current_tags, - dependencies=current_dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=combined_responses, - deprecated=deprecated or self.deprecated, - methods=methods, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema and self.include_in_schema, - response_class=current_response_class, - name=name, - dependency_overrides_provider=self.dependency_overrides_provider, - callbacks=current_callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=current_generate_unique_id, - strict_content_type=get_value_or_default( - strict_content_type, self.strict_content_type - ), - ) - self.routes.append(route) - self._mark_routes_changed() - - def api_route( - self, - path: str, - *, - response_model: Any = Default(None), - status_code: int | None = None, - tags: list[str | Enum] | None = None, - dependencies: Sequence[params.Depends] | None = None, - summary: str | None = None, - description: str | None = None, - response_description: str = "Successful Response", - responses: dict[int | str, dict[str, Any]] | None = None, - deprecated: bool | None = None, - methods: list[str] | None = None, - operation_id: str | None = None, - response_model_include: IncEx | None = None, - response_model_exclude: IncEx | None = None, - response_model_by_alias: bool = True, - response_model_exclude_unset: bool = False, - response_model_exclude_defaults: bool = False, - response_model_exclude_none: bool = False, - include_in_schema: bool = True, - response_class: type[Response] = Default(JSONResponse), - name: str | None = None, - callbacks: list[BaseRoute] | None = None, - openapi_extra: dict[str, Any] | None = None, - generate_unique_id_function: Callable[[APIRoute], str] = Default( - generate_unique_id - ), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_api_route( - path, - func, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=methods, - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - return func - - return decorator - - def add_api_websocket_route( - self, - path: str, - endpoint: Callable[..., Any], - name: str | None = None, - *, - dependencies: Sequence[params.Depends] | None = None, - ) -> None: - current_dependencies = self.dependencies.copy() - if dependencies: - current_dependencies.extend(dependencies) - - route = APIWebSocketRoute( - self.prefix + path, - endpoint=endpoint, - name=name, - dependencies=current_dependencies, - dependency_overrides_provider=self.dependency_overrides_provider, - ) - self.routes.append(route) - self._mark_routes_changed() - - def websocket( - self, - path: Annotated[ - str, - Doc( - """ - WebSocket path. - """ - ), - ], - name: Annotated[ - str | None, - Doc( - """ - A name for the WebSocket. Only used internally. - """ - ), - ] = None, - *, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be used for this - WebSocket. - - Read more about it in the - [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). - """ - ), - ] = None, - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Decorate a WebSocket function. - - Read more about it in the - [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/). - - **Example** - - ## Example - - ```python - from fastapi import APIRouter, FastAPI, WebSocket - - app = FastAPI() - router = APIRouter() - - @router.websocket("/ws") - async def websocket_endpoint(websocket: WebSocket): - await websocket.accept() - while True: - data = await websocket.receive_text() - await websocket.send_text(f"Message text was: {data}") - - app.include_router(router) - ``` - """ - - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_api_websocket_route( - path, func, name=name, dependencies=dependencies - ) - return func - - return decorator - - def websocket_route( - self, path: str, name: str | None = None - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_websocket_route(path, func, name=name) - return func - - return decorator - - def include_router( - self, - router: Annotated["APIRouter", Doc("The `APIRouter` to include.")], - *, - prefix: Annotated[str, Doc("An optional path prefix for the router.")] = "", - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to all the *path operations* in this - router. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to all the - *path operations* in this router. - - Read more about it in the - [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - default_response_class: Annotated[ - type[Response], - Doc( - """ - The default response class to be used. - - Read more in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class). - """ - ), - ] = Default(JSONResponse), - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses to be shown in OpenAPI. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/). - - And in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-an-apirouter-with-a-custom-prefix-tags-responses-and-dependencies). - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - OpenAPI callbacks that should apply to all *path operations* in this - router. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark all *path operations* in this router as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include (or not) all the *path operations* in this router in the - generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = True, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> None: - """ - Include another `APIRouter` in the same current `APIRouter`. - - Read more about it in the - [FastAPI docs for Bigger Applications](https://fastapi.tiangolo.com/tutorial/bigger-applications/). - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - internal_router = APIRouter() - users_router = APIRouter() - - @users_router.get("/users/") - def read_users(): - return [{"name": "Rick"}, {"name": "Morty"}] - - internal_router.include_router(users_router) - app.include_router(internal_router) - ``` - """ - assert self is not router, ( - "Cannot include the same APIRouter instance into itself. " - "Did you mean to include a different router?" - ) - assert not router._contains_router(self), ( - "Cannot include an APIRouter instance that already includes this router. " - "Did you mean to include a different router?" - ) - if prefix: - assert prefix.startswith("/"), "A path prefix must start with '/'" - assert not prefix.endswith("/"), ( - "A path prefix must not end with '/', as the routes will start with '/'" - ) - else: - for route, route_context in _iter_routes_with_context(router.routes): - if route_context is None: - path = getattr(route, "path", None) - name = getattr(route, "name", "unknown") - elif route_context.starlette_route is not None: - path = getattr(route_context.starlette_route, "path", None) - name = getattr(route_context.starlette_route, "name", "unknown") - else: - path = route_context.path - name = route_context.name - if path is not None and not path: - raise FastAPIError( - f"Prefix and path cannot be both empty (path operation: {name})" - ) - include_context = _RouterIncludeContext.for_include( - parent_router=self, - included_router=router, - prefix=prefix, - tags=tags, - dependencies=dependencies, - default_response_class=default_response_class, - responses=responses, - callbacks=callbacks, - deprecated=deprecated, - include_in_schema=include_in_schema, - generate_unique_id_function=generate_unique_id_function, - ) - self.routes.append( - _IncludedRouter(original_router=router, include_context=include_context) - ) - self._mark_routes_changed() - for handler in router.on_startup: - self.add_event_handler("startup", handler) - for handler in router.on_shutdown: - self.add_event_handler("shutdown", handler) - self.lifespan_context = _merge_lifespan_context( - self.lifespan_context, - router.lifespan_context, - ) - - def get( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP GET operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - router = APIRouter() - - @router.get("/items/") - def read_items(): - return [{"name": "Empanada"}, {"name": "Arepa"}] - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["GET"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def put( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP PUT operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - router = APIRouter() - - @router.put("/items/{item_id}") - def replace_item(item_id: str, item: Item): - return {"message": "Item replaced", "id": item_id} - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["PUT"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def post( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP POST operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - router = APIRouter() - - @router.post("/items/") - def create_item(item: Item): - return {"message": "Item created"} - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["POST"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def delete( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP DELETE operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - router = APIRouter() - - @router.delete("/items/{item_id}") - def delete_item(item_id: str): - return {"message": "Item deleted"} - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["DELETE"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def options( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP OPTIONS operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - - app = FastAPI() - router = APIRouter() - - @router.options("/items/") - def get_item_options(): - return {"additions": ["Aji", "Guacamole"]} - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["OPTIONS"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def head( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP HEAD operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - router = APIRouter() - - @router.head("/items/", status_code=204) - def get_items_headers(response: Response): - response.headers["X-Cat-Dog"] = "Alone in the world" - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["HEAD"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def patch( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP PATCH operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - router = APIRouter() - - @router.patch("/items/") - def update_item(item: Item): - return {"message": "Item updated in place"} - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["PATCH"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - def trace( - self, - path: Annotated[ - str, - Doc( - """ - The URL path to be used for this *path operation*. - - For example, in `http://example.com/items`, the path is `/items`. - """ - ), - ], - *, - response_model: Annotated[ - Any, - Doc( - """ - The type to use for the response. - - It could be any valid Pydantic *field* type. So, it doesn't have to - be a Pydantic model, it could be other things, like a `list`, `dict`, - etc. - - It will be used for: - - * Documentation: the generated OpenAPI (and the UI at `/docs`) will - show it as the response (JSON Schema). - * Serialization: you could return an arbitrary object and the - `response_model` would be used to serialize that object into the - corresponding JSON. - * Filtering: the JSON sent to the client will only contain the data - (fields) defined in the `response_model`. If you returned an object - that contains an attribute `password` but the `response_model` does - not include that field, the JSON sent to the client would not have - that `password`. - * Validation: whatever you return will be serialized with the - `response_model`, converting any data as necessary to generate the - corresponding JSON. But if the data in the object returned is not - valid, that would mean a violation of the contract with the client, - so it's an error from the API developer. So, FastAPI will raise an - error and return a 500 error code (Internal Server Error). - - Read more about it in the - [FastAPI docs for Response Model](https://fastapi.tiangolo.com/tutorial/response-model/). - """ - ), - ] = Default(None), - status_code: Annotated[ - int | None, - Doc( - """ - The default status code to be used for the response. - - You could override the status code by returning a response directly. - - Read more about it in the - [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/). - """ - ), - ] = None, - tags: Annotated[ - list[str | Enum] | None, - Doc( - """ - A list of tags to be applied to the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags). - """ - ), - ] = None, - dependencies: Annotated[ - Sequence[params.Depends] | None, - Doc( - """ - A list of dependencies (using `Depends()`) to be applied to the - *path operation*. - - Read more about it in the - [FastAPI docs for Dependencies in path operation decorators](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/). - """ - ), - ] = None, - summary: Annotated[ - str | None, - Doc( - """ - A summary for the *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - A description for the *path operation*. - - If not provided, it will be extracted automatically from the docstring - of the *path operation function*. - - It can contain Markdown. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/). - """ - ), - ] = None, - response_description: Annotated[ - str, - Doc( - """ - The description for the default response. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = "Successful Response", - responses: Annotated[ - dict[int | str, dict[str, Any]] | None, - Doc( - """ - Additional responses that could be returned by this *path operation*. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - deprecated: Annotated[ - bool | None, - Doc( - """ - Mark this *path operation* as deprecated. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - operation_id: Annotated[ - str | None, - Doc( - """ - Custom operation ID to be used by this *path operation*. - - By default, it is generated automatically. - - If you provide a custom operation ID, you need to make sure it is - unique for the whole API. - - You can customize the - operation ID generation with the parameter - `generate_unique_id_function` in the `FastAPI` class. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = None, - response_model_include: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to include only certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_exclude: Annotated[ - IncEx | None, - Doc( - """ - Configuration passed to Pydantic to exclude certain fields in the - response data. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = None, - response_model_by_alias: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response model - should be serialized by alias when an alias is used. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude). - """ - ), - ] = True, - response_model_exclude_unset: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that were not set and - have their default values. This is different from - `response_model_exclude_defaults` in that if the fields are set, - they will be included in the response, even if the value is the same - as the default. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_defaults: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data - should have all the fields, including the ones that have the same value - as the default. This is different from `response_model_exclude_unset` - in that if the fields are set but contain the same default values, - they will be excluded from the response. - - When `True`, default values are omitted from the response. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter). - """ - ), - ] = False, - response_model_exclude_none: Annotated[ - bool, - Doc( - """ - Configuration passed to Pydantic to define if the response data should - exclude fields set to `None`. - - This is much simpler (less smart) than `response_model_exclude_unset` - and `response_model_exclude_defaults`. You probably want to use one of - those two instead of this one, as those allow returning `None` values - when it makes sense. - - Read more about it in the - [FastAPI docs for Response Model - Return Type](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_exclude_none). - """ - ), - ] = False, - include_in_schema: Annotated[ - bool, - Doc( - """ - Include this *path operation* in the generated OpenAPI schema. - - This affects the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for Query Parameters and String Validations](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#exclude-parameters-from-openapi). - """ - ), - ] = True, - response_class: Annotated[ - type[Response], - Doc( - """ - Response class to be used for this *path operation*. - - This will not be used if you return a response directly. - - Read more about it in the - [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#redirectresponse). - """ - ), - ] = Default(JSONResponse), - name: Annotated[ - str | None, - Doc( - """ - Name for this *path operation*. Only used internally. - """ - ), - ] = None, - callbacks: Annotated[ - list[BaseRoute] | None, - Doc( - """ - List of *path operations* that will be used as OpenAPI callbacks. - - This is only for OpenAPI documentation, the callbacks won't be used - directly. - - It will be added to the generated OpenAPI (e.g. visible at `/docs`). - - Read more about it in the - [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/). - """ - ), - ] = None, - openapi_extra: Annotated[ - dict[str, Any] | None, - Doc( - """ - Extra metadata to be included in the OpenAPI schema for this *path - operation*. - - Read more about it in the - [FastAPI docs for Path Operation Advanced Configuration](https://fastapi.tiangolo.com/advanced/path-operation-advanced-configuration/#custom-openapi-path-operation-schema). - """ - ), - ] = None, - generate_unique_id_function: Annotated[ - Callable[[APIRoute], str], - Doc( - """ - Customize the function used to generate unique IDs for the *path - operations* shown in the generated OpenAPI. - - This is particularly useful when automatically generating clients or - SDKs for your API. - - Read more about it in the - [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function). - """ - ), - ] = Default(generate_unique_id), - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add a *path operation* using an HTTP TRACE operation. - - ## Example - - ```python - from fastapi import APIRouter, FastAPI - from pydantic import BaseModel - - class Item(BaseModel): - name: str - description: str | None = None - - app = FastAPI() - router = APIRouter() - - @router.trace("/items/{item_id}") - def trace_item(item_id: str): - return None - - app.include_router(router) - ``` - """ - return self.api_route( - path=path, - response_model=response_model, - status_code=status_code, - tags=tags, - dependencies=dependencies, - summary=summary, - description=description, - response_description=response_description, - responses=responses, - deprecated=deprecated, - methods=["TRACE"], - operation_id=operation_id, - response_model_include=response_model_include, - response_model_exclude=response_model_exclude, - response_model_by_alias=response_model_by_alias, - response_model_exclude_unset=response_model_exclude_unset, - response_model_exclude_defaults=response_model_exclude_defaults, - response_model_exclude_none=response_model_exclude_none, - include_in_schema=include_in_schema, - response_class=response_class, - name=name, - callbacks=callbacks, - openapi_extra=openapi_extra, - generate_unique_id_function=generate_unique_id_function, - ) - - # TODO: remove this once the lifespan (or alternative) interface is improved - async def _startup(self) -> None: - """ - Run any `.on_startup` event handlers. - - This method is kept for backward compatibility after Starlette removed - support for on_startup/on_shutdown handlers. - - Ref: https://github.com/Kludex/starlette/pull/3117 - """ - for handler in self.on_startup: - if is_async_callable(handler): - await handler() - else: - handler() - - # TODO: remove this once the lifespan (or alternative) interface is improved - async def _shutdown(self) -> None: - """ - Run any `.on_shutdown` event handlers. - - This method is kept for backward compatibility after Starlette removed - support for on_startup/on_shutdown handlers. - - Ref: https://github.com/Kludex/starlette/pull/3117 - """ - for handler in self.on_shutdown: - if is_async_callable(handler): - await handler() - else: - handler() - - # TODO: remove this once the lifespan (or alternative) interface is improved - def add_event_handler( - self, - event_type: str, - func: Callable[[], Any], - ) -> None: - """ - Add an event handler function for startup or shutdown. - - This method is kept for backward compatibility after Starlette removed - support for on_startup/on_shutdown handlers. - - Ref: https://github.com/Kludex/starlette/pull/3117 - """ - assert event_type in ("startup", "shutdown") - if event_type == "startup": - self.on_startup.append(func) - else: - self.on_shutdown.append(func) - - @deprecated( - """ - on_event is deprecated, use lifespan event handlers instead. - - Read more about it in the - [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/). - """ - ) - def on_event( - self, - event_type: Annotated[ - str, - Doc( - """ - The type of event. `startup` or `shutdown`. - """ - ), - ], - ) -> Callable[[DecoratedCallable], DecoratedCallable]: - """ - Add an event handler for the router. - - `on_event` is deprecated, use `lifespan` event handlers instead. - - Read more about it in the - [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/#alternative-events-deprecated). - """ - - def decorator(func: DecoratedCallable) -> DecoratedCallable: - self.add_event_handler(event_type, func) - return func - - return decorator diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__init__.py deleted file mode 100644 index 3aa6bf2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -from .api_key import APIKeyCookie as APIKeyCookie -from .api_key import APIKeyHeader as APIKeyHeader -from .api_key import APIKeyQuery as APIKeyQuery -from .http import HTTPAuthorizationCredentials as HTTPAuthorizationCredentials -from .http import HTTPBasic as HTTPBasic -from .http import HTTPBasicCredentials as HTTPBasicCredentials -from .http import HTTPBearer as HTTPBearer -from .http import HTTPDigest as HTTPDigest -from .oauth2 import OAuth2 as OAuth2 -from .oauth2 import OAuth2AuthorizationCodeBearer as OAuth2AuthorizationCodeBearer -from .oauth2 import OAuth2PasswordBearer as OAuth2PasswordBearer -from .oauth2 import OAuth2PasswordRequestForm as OAuth2PasswordRequestForm -from .oauth2 import OAuth2PasswordRequestFormStrict as OAuth2PasswordRequestFormStrict -from .oauth2 import SecurityScopes as SecurityScopes -from .open_id_connect_url import OpenIdConnect as OpenIdConnect diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0e5f7aa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/api_key.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/api_key.cpython-311.pyc deleted file mode 100644 index 46ce777..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/api_key.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 4ab7605..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/http.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/http.cpython-311.pyc deleted file mode 100644 index 24f9cd4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/http.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/oauth2.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/oauth2.cpython-311.pyc deleted file mode 100644 index ebdfd42..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/oauth2.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-311.pyc deleted file mode 100644 index 2583c96..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/open_id_connect_url.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index db46c0a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/api_key.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/api_key.py deleted file mode 100644 index 83a4585..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/api_key.py +++ /dev/null @@ -1,320 +0,0 @@ -from typing import Annotated - -from annotated_doc import Doc -from fastapi.openapi.models import APIKey, APIKeyIn -from fastapi.security.base import SecurityBase -from starlette.exceptions import HTTPException -from starlette.requests import Request -from starlette.status import HTTP_401_UNAUTHORIZED - - -class APIKeyBase(SecurityBase): - model: APIKey - - def __init__( - self, - location: APIKeyIn, - name: str, - description: str | None, - scheme_name: str | None, - auto_error: bool, - ): - self.auto_error = auto_error - - self.model: APIKey = APIKey( - **{"in": location}, # ty: ignore[invalid-argument-type] - name=name, - description=description, - ) - self.scheme_name = scheme_name or self.__class__.__name__ - - def make_not_authenticated_error(self) -> HTTPException: - """ - The WWW-Authenticate header is not standardized for API Key authentication but - the HTTP specification requires that an error of 401 "Unauthorized" must - include a WWW-Authenticate header. - - Ref: https://datatracker.ietf.org/doc/html/rfc9110#name-401-unauthorized - - For this, this method sends a custom challenge `APIKey`. - """ - return HTTPException( - status_code=HTTP_401_UNAUTHORIZED, - detail="Not authenticated", - headers={"WWW-Authenticate": "APIKey"}, - ) - - def check_api_key(self, api_key: str | None) -> str | None: - if not api_key: - if self.auto_error: - raise self.make_not_authenticated_error() - return None - return api_key - - -class APIKeyQuery(APIKeyBase): - """ - API key authentication using a query parameter. - - This defines the name of the query parameter that should be provided in the request - with the API key and integrates that into the OpenAPI documentation. It extracts - the key value sent in the query parameter automatically and provides it as the - dependency result. But it doesn't define how to send that API key to the client. - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be a string containing the key value. - - ## Example - - ```python - from fastapi import Depends, FastAPI - from fastapi.security import APIKeyQuery - - app = FastAPI() - - query_scheme = APIKeyQuery(name="api_key") - - - @app.get("/items/") - async def read_items(api_key: str = Depends(query_scheme)): - return {"api_key": api_key} - ``` - """ - - def __init__( - self, - *, - name: Annotated[ - str, - Doc("Query parameter name."), - ], - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the query parameter is not provided, `APIKeyQuery` will - automatically cancel the request and send the client an error. - - If `auto_error` is set to `False`, when the query parameter is not - available, instead of erroring out, the dependency result will be - `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in a query - parameter or in an HTTP Bearer token). - """ - ), - ] = True, - ): - super().__init__( - location=APIKeyIn.query, - name=name, - scheme_name=scheme_name, - description=description, - auto_error=auto_error, - ) - - async def __call__(self, request: Request) -> str | None: - api_key = request.query_params.get(self.model.name) - return self.check_api_key(api_key) - - -class APIKeyHeader(APIKeyBase): - """ - API key authentication using a header. - - This defines the name of the header that should be provided in the request with - the API key and integrates that into the OpenAPI documentation. It extracts - the key value sent in the header automatically and provides it as the dependency - result. But it doesn't define how to send that key to the client. - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be a string containing the key value. - - ## Example - - ```python - from fastapi import Depends, FastAPI - from fastapi.security import APIKeyHeader - - app = FastAPI() - - header_scheme = APIKeyHeader(name="x-key") - - - @app.get("/items/") - async def read_items(key: str = Depends(header_scheme)): - return {"key": key} - ``` - """ - - def __init__( - self, - *, - name: Annotated[str, Doc("Header name.")], - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the header is not provided, `APIKeyHeader` will - automatically cancel the request and send the client an error. - - If `auto_error` is set to `False`, when the header is not available, - instead of erroring out, the dependency result will be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in a header or - in an HTTP Bearer token). - """ - ), - ] = True, - ): - super().__init__( - location=APIKeyIn.header, - name=name, - scheme_name=scheme_name, - description=description, - auto_error=auto_error, - ) - - async def __call__(self, request: Request) -> str | None: - api_key = request.headers.get(self.model.name) - return self.check_api_key(api_key) - - -class APIKeyCookie(APIKeyBase): - """ - API key authentication using a cookie. - - This defines the name of the cookie that should be provided in the request with - the API key and integrates that into the OpenAPI documentation. It extracts - the key value sent in the cookie automatically and provides it as the dependency - result. But it doesn't define how to set that cookie. - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be a string containing the key value. - - ## Example - - ```python - from fastapi import Depends, FastAPI - from fastapi.security import APIKeyCookie - - app = FastAPI() - - cookie_scheme = APIKeyCookie(name="session") - - - @app.get("/items/") - async def read_items(session: str = Depends(cookie_scheme)): - return {"session": session} - ``` - """ - - def __init__( - self, - *, - name: Annotated[str, Doc("Cookie name.")], - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the cookie is not provided, `APIKeyCookie` will - automatically cancel the request and send the client an error. - - If `auto_error` is set to `False`, when the cookie is not available, - instead of erroring out, the dependency result will be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in a cookie or - in an HTTP Bearer token). - """ - ), - ] = True, - ): - super().__init__( - location=APIKeyIn.cookie, - name=name, - scheme_name=scheme_name, - description=description, - auto_error=auto_error, - ) - - async def __call__(self, request: Request) -> str | None: - api_key = request.cookies.get(self.model.name) - return self.check_api_key(api_key) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/base.py deleted file mode 100644 index c43555d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/base.py +++ /dev/null @@ -1,6 +0,0 @@ -from fastapi.openapi.models import SecurityBase as SecurityBaseModel - - -class SecurityBase: - model: SecurityBaseModel - scheme_name: str diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/http.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/http.py deleted file mode 100644 index a32948e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/http.py +++ /dev/null @@ -1,417 +0,0 @@ -import binascii -from base64 import b64decode -from typing import Annotated - -from annotated_doc import Doc -from fastapi.exceptions import HTTPException -from fastapi.openapi.models import HTTPBase as HTTPBaseModel -from fastapi.openapi.models import HTTPBearer as HTTPBearerModel -from fastapi.security.base import SecurityBase -from fastapi.security.utils import get_authorization_scheme_param -from pydantic import BaseModel -from starlette.requests import Request -from starlette.status import HTTP_401_UNAUTHORIZED - - -class HTTPBasicCredentials(BaseModel): - """ - The HTTP Basic credentials given as the result of using `HTTPBasic` in a - dependency. - - Read more about it in the - [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/). - """ - - username: Annotated[str, Doc("The HTTP Basic username.")] - password: Annotated[str, Doc("The HTTP Basic password.")] - - -class HTTPAuthorizationCredentials(BaseModel): - """ - The HTTP authorization credentials in the result of using `HTTPBearer` or - `HTTPDigest` in a dependency. - - The HTTP authorization header value is split by the first space. - - The first part is the `scheme`, the second part is the `credentials`. - - For example, in an HTTP Bearer token scheme, the client will send a header - like: - - ``` - Authorization: Bearer deadbeef12346 - ``` - - In this case: - - * `scheme` will have the value `"Bearer"` - * `credentials` will have the value `"deadbeef12346"` - """ - - scheme: Annotated[ - str, - Doc( - """ - The HTTP authorization scheme extracted from the header value. - """ - ), - ] - credentials: Annotated[ - str, - Doc( - """ - The HTTP authorization credentials extracted from the header value. - """ - ), - ] - - -class HTTPBase(SecurityBase): - model: HTTPBaseModel - - def __init__( - self, - *, - scheme: str, - scheme_name: str | None = None, - description: str | None = None, - auto_error: bool = True, - ): - self.model = HTTPBaseModel(scheme=scheme, description=description) - self.scheme_name = scheme_name or self.__class__.__name__ - self.auto_error = auto_error - - def make_authenticate_headers(self) -> dict[str, str]: - return {"WWW-Authenticate": f"{self.model.scheme.title()}"} - - def make_not_authenticated_error(self) -> HTTPException: - return HTTPException( - status_code=HTTP_401_UNAUTHORIZED, - detail="Not authenticated", - headers=self.make_authenticate_headers(), - ) - - async def __call__(self, request: Request) -> HTTPAuthorizationCredentials | None: - authorization = request.headers.get("Authorization") - scheme, credentials = get_authorization_scheme_param(authorization) - if not (authorization and scheme and credentials): - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) - - -class HTTPBasic(HTTPBase): - """ - HTTP Basic authentication. - - Ref: https://datatracker.ietf.org/doc/html/rfc7617 - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be an `HTTPBasicCredentials` object containing the - `username` and the `password`. - - Read more about it in the - [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/). - - ## Example - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - from fastapi.security import HTTPBasic, HTTPBasicCredentials - - app = FastAPI() - - security = HTTPBasic() - - - @app.get("/users/me") - def read_current_user(credentials: Annotated[HTTPBasicCredentials, Depends(security)]): - return {"username": credentials.username, "password": credentials.password} - ``` - """ - - def __init__( - self, - *, - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - realm: Annotated[ - str | None, - Doc( - """ - HTTP Basic authentication realm. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the HTTP Basic authentication is not provided (a - header), `HTTPBasic` will automatically cancel the request and send the - client an error. - - If `auto_error` is set to `False`, when the HTTP Basic authentication - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in HTTP Basic - authentication or in an HTTP Bearer token). - """ - ), - ] = True, - ): - self.model = HTTPBaseModel(scheme="basic", description=description) - self.scheme_name = scheme_name or self.__class__.__name__ - self.realm = realm - self.auto_error = auto_error - - def make_authenticate_headers(self) -> dict[str, str]: - if self.realm: - return {"WWW-Authenticate": f'Basic realm="{self.realm}"'} - return {"WWW-Authenticate": "Basic"} - - async def __call__( # type: ignore - self, request: Request - ) -> HTTPBasicCredentials | None: - authorization = request.headers.get("Authorization") - scheme, param = get_authorization_scheme_param(authorization) - if not authorization or scheme.lower() != "basic": - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - try: - data = b64decode(param).decode("ascii") - except (ValueError, UnicodeDecodeError, binascii.Error) as e: - raise self.make_not_authenticated_error() from e - username, separator, password = data.partition(":") - if not separator: - raise self.make_not_authenticated_error() - return HTTPBasicCredentials(username=username, password=password) - - -class HTTPBearer(HTTPBase): - """ - HTTP Bearer token authentication. - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be an `HTTPAuthorizationCredentials` object containing - the `scheme` and the `credentials`. - - ## Example - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer - - app = FastAPI() - - security = HTTPBearer() - - - @app.get("/users/me") - def read_current_user( - credentials: Annotated[HTTPAuthorizationCredentials, Depends(security)] - ): - return {"scheme": credentials.scheme, "credentials": credentials.credentials} - ``` - """ - - def __init__( - self, - *, - bearerFormat: Annotated[str | None, Doc("Bearer token format.")] = None, - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the HTTP Bearer token is not provided (in an - `Authorization` header), `HTTPBearer` will automatically cancel the - request and send the client an error. - - If `auto_error` is set to `False`, when the HTTP Bearer token - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in an HTTP - Bearer token or in a cookie). - """ - ), - ] = True, - ): - self.model = HTTPBearerModel(bearerFormat=bearerFormat, description=description) - self.scheme_name = scheme_name or self.__class__.__name__ - self.auto_error = auto_error - - async def __call__(self, request: Request) -> HTTPAuthorizationCredentials | None: - authorization = request.headers.get("Authorization") - scheme, credentials = get_authorization_scheme_param(authorization) - if not (authorization and scheme and credentials): - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - if scheme.lower() != "bearer": - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) - - -class HTTPDigest(HTTPBase): - """ - HTTP Digest authentication. - - **Warning**: this is only a stub to connect the components with OpenAPI in FastAPI, - but it doesn't implement the full Digest scheme, you would need to subclass it - and implement it in your code. - - Ref: https://datatracker.ietf.org/doc/html/rfc7616 - - ## Usage - - Create an instance object and use that object as the dependency in `Depends()`. - - The dependency result will be an `HTTPAuthorizationCredentials` object containing - the `scheme` and the `credentials`. - - ## Example - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - from fastapi.security import HTTPAuthorizationCredentials, HTTPDigest - - app = FastAPI() - - security = HTTPDigest() - - - @app.get("/users/me") - def read_current_user( - credentials: Annotated[HTTPAuthorizationCredentials, Depends(security)] - ): - return {"scheme": credentials.scheme, "credentials": credentials.credentials} - ``` - """ - - def __init__( - self, - *, - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if the HTTP Digest is not provided, `HTTPDigest` will - automatically cancel the request and send the client an error. - - If `auto_error` is set to `False`, when the HTTP Digest is not - available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, in HTTP - Digest or in a cookie). - """ - ), - ] = True, - ): - self.model = HTTPBaseModel(scheme="digest", description=description) - self.scheme_name = scheme_name or self.__class__.__name__ - self.auto_error = auto_error - - async def __call__(self, request: Request) -> HTTPAuthorizationCredentials | None: - authorization = request.headers.get("Authorization") - scheme, credentials = get_authorization_scheme_param(authorization) - if not (authorization and scheme and credentials): - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - if scheme.lower() != "digest": - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/oauth2.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/oauth2.py deleted file mode 100644 index 3fd9e41..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/oauth2.py +++ /dev/null @@ -1,693 +0,0 @@ -from typing import Annotated, Any, cast - -from annotated_doc import Doc -from fastapi.exceptions import HTTPException -from fastapi.openapi.models import OAuth2 as OAuth2Model -from fastapi.openapi.models import OAuthFlows as OAuthFlowsModel -from fastapi.param_functions import Form -from fastapi.security.base import SecurityBase -from fastapi.security.utils import get_authorization_scheme_param -from starlette.requests import Request -from starlette.status import HTTP_401_UNAUTHORIZED - - -class OAuth2PasswordRequestForm: - """ - This is a dependency class to collect the `username` and `password` as form data - for an OAuth2 password flow. - - The OAuth2 specification dictates that for a password flow the data should be - collected using form data (instead of JSON) and that it should have the specific - fields `username` and `password`. - - All the initialization parameters are extracted from the request. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - - ## Example - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - from fastapi.security import OAuth2PasswordRequestForm - - app = FastAPI() - - - @app.post("/login") - def login(form_data: Annotated[OAuth2PasswordRequestForm, Depends()]): - data = {} - data["scopes"] = [] - for scope in form_data.scopes: - data["scopes"].append(scope) - if form_data.client_id: - data["client_id"] = form_data.client_id - if form_data.client_secret: - data["client_secret"] = form_data.client_secret - return data - ``` - - Note that for OAuth2 the scope `items:read` is a single scope in an opaque string. - You could have custom internal logic to separate it by colon characters (`:`) or - similar, and get the two parts `items` and `read`. Many applications do that to - group and organize permissions, you could do it as well in your application, just - know that it is application specific, it's not part of the specification. - """ - - def __init__( - self, - *, - grant_type: Annotated[ - str | None, - Form(pattern="^password$"), - Doc( - """ - The OAuth2 spec says it is required and MUST be the fixed string - "password". Nevertheless, this dependency class is permissive and - allows not passing it. If you want to enforce it, use instead the - `OAuth2PasswordRequestFormStrict` dependency. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ] = None, - username: Annotated[ - str, - Form(), - Doc( - """ - `username` string. The OAuth2 spec requires the exact field name - `username`. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - password: Annotated[ - str, - Form(json_schema_extra={"format": "password"}), - Doc( - """ - `password` string. The OAuth2 spec requires the exact field name - `password`. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - scope: Annotated[ - str, - Form(), - Doc( - """ - A single string with actually several scopes separated by spaces. Each - scope is also a string. - - For example, a single string with: - - ```python - "items:read items:write users:read profile openid" - ```` - - would represent the scopes: - - * `items:read` - * `items:write` - * `users:read` - * `profile` - * `openid` - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ] = "", - client_id: Annotated[ - str | None, - Form(), - Doc( - """ - If there's a `client_id`, it can be sent as part of the form fields. - But the OAuth2 specification recommends sending the `client_id` and - `client_secret` (if any) using HTTP Basic auth. - """ - ), - ] = None, - client_secret: Annotated[ - str | None, - Form(json_schema_extra={"format": "password"}), - Doc( - """ - If there's a `client_secret` (and a `client_id`), they can be sent - as part of the form fields. But the OAuth2 specification recommends - sending the `client_id` and `client_secret` (if any) using HTTP Basic - auth. - """ - ), - ] = None, - ): - self.grant_type = grant_type - self.username = username - self.password = password - self.scopes = scope.split() - self.client_id = client_id - self.client_secret = client_secret - - -class OAuth2PasswordRequestFormStrict(OAuth2PasswordRequestForm): - """ - This is a dependency class to collect the `username` and `password` as form data - for an OAuth2 password flow. - - The OAuth2 specification dictates that for a password flow the data should be - collected using form data (instead of JSON) and that it should have the specific - fields `username` and `password`. - - All the initialization parameters are extracted from the request. - - The only difference between `OAuth2PasswordRequestFormStrict` and - `OAuth2PasswordRequestForm` is that `OAuth2PasswordRequestFormStrict` requires the - client to send the form field `grant_type` with the value `"password"`, which - is required in the OAuth2 specification (it seems that for no particular reason), - while for `OAuth2PasswordRequestForm` `grant_type` is optional. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - - ## Example - - ```python - from typing import Annotated - - from fastapi import Depends, FastAPI - from fastapi.security import OAuth2PasswordRequestForm - - app = FastAPI() - - - @app.post("/login") - def login(form_data: Annotated[OAuth2PasswordRequestFormStrict, Depends()]): - data = {} - data["scopes"] = [] - for scope in form_data.scopes: - data["scopes"].append(scope) - if form_data.client_id: - data["client_id"] = form_data.client_id - if form_data.client_secret: - data["client_secret"] = form_data.client_secret - return data - ``` - - Note that for OAuth2 the scope `items:read` is a single scope in an opaque string. - You could have custom internal logic to separate it by colon characters (`:`) or - similar, and get the two parts `items` and `read`. Many applications do that to - group and organize permissions, you could do it as well in your application, just - know that it is application specific, it's not part of the specification. - - - grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password". - This dependency is strict about it. If you want to be permissive, use instead the - OAuth2PasswordRequestForm dependency class. - username: username string. The OAuth2 spec requires the exact field name "username". - password: password string. The OAuth2 spec requires the exact field name "password". - scope: Optional string. Several scopes (each one a string) separated by spaces. E.g. - "items:read items:write users:read profile openid" - client_id: optional string. OAuth2 recommends sending the client_id and client_secret (if any) - using HTTP Basic auth, as: client_id:client_secret - client_secret: optional string. OAuth2 recommends sending the client_id and client_secret (if any) - using HTTP Basic auth, as: client_id:client_secret - """ - - def __init__( - self, - grant_type: Annotated[ - str, - Form(pattern="^password$"), - Doc( - """ - The OAuth2 spec says it is required and MUST be the fixed string - "password". This dependency is strict about it. If you want to be - permissive, use instead the `OAuth2PasswordRequestForm` dependency - class. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - username: Annotated[ - str, - Form(), - Doc( - """ - `username` string. The OAuth2 spec requires the exact field name - `username`. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - password: Annotated[ - str, - Form(), - Doc( - """ - `password` string. The OAuth2 spec requires the exact field name - `password`. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - scope: Annotated[ - str, - Form(), - Doc( - """ - A single string with actually several scopes separated by spaces. Each - scope is also a string. - - For example, a single string with: - - ```python - "items:read items:write users:read profile openid" - ```` - - would represent the scopes: - - * `items:read` - * `items:write` - * `users:read` - * `profile` - * `openid` - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ] = "", - client_id: Annotated[ - str | None, - Form(), - Doc( - """ - If there's a `client_id`, it can be sent as part of the form fields. - But the OAuth2 specification recommends sending the `client_id` and - `client_secret` (if any) using HTTP Basic auth. - """ - ), - ] = None, - client_secret: Annotated[ - str | None, - Form(), - Doc( - """ - If there's a `client_secret` (and a `client_id`), they can be sent - as part of the form fields. But the OAuth2 specification recommends - sending the `client_id` and `client_secret` (if any) using HTTP Basic - auth. - """ - ), - ] = None, - ): - super().__init__( - grant_type=grant_type, - username=username, - password=password, - scope=scope, - client_id=client_id, - client_secret=client_secret, - ) - - -class OAuth2(SecurityBase): - """ - This is the base class for OAuth2 authentication, an instance of it would be used - as a dependency. All other OAuth2 classes inherit from it and customize it for - each OAuth2 flow. - - You normally would not create a new class inheriting from it but use one of the - existing subclasses, and maybe compose them if you want to support multiple flows. - - Read more about it in the - [FastAPI docs for Security](https://fastapi.tiangolo.com/tutorial/security/). - """ - - def __init__( - self, - *, - flows: Annotated[ - OAuthFlowsModel | dict[str, dict[str, Any]], - Doc( - """ - The dictionary of OAuth2 flows. - """ - ), - ] = OAuthFlowsModel(), - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if no HTTP Authorization header is provided, required for - OAuth2 authentication, it will automatically cancel the request and - send the client an error. - - If `auto_error` is set to `False`, when the HTTP Authorization header - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, with OAuth2 - or in a cookie). - """ - ), - ] = True, - ): - self.model = OAuth2Model( - flows=cast(OAuthFlowsModel, flows), description=description - ) - self.scheme_name = scheme_name or self.__class__.__name__ - self.auto_error = auto_error - - def make_not_authenticated_error(self) -> HTTPException: - """ - The OAuth 2 specification doesn't define the challenge that should be used, - because a `Bearer` token is not really the only option to authenticate. - - But declaring any other authentication challenge would be application-specific - as it's not defined in the specification. - - For practical reasons, this method uses the `Bearer` challenge by default, as - it's probably the most common one. - - If you are implementing an OAuth2 authentication scheme other than the provided - ones in FastAPI (based on bearer tokens), you might want to override this. - - Ref: https://datatracker.ietf.org/doc/html/rfc6749 - """ - return HTTPException( - status_code=HTTP_401_UNAUTHORIZED, - detail="Not authenticated", - headers={"WWW-Authenticate": "Bearer"}, - ) - - async def __call__(self, request: Request) -> str | None: - authorization = request.headers.get("Authorization") - if not authorization: - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return authorization - - -class OAuth2PasswordBearer(OAuth2): - """ - OAuth2 flow for authentication using a bearer token obtained with a password. - An instance of it would be used as a dependency. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - - def __init__( - self, - tokenUrl: Annotated[ - str, - Doc( - """ - The URL to obtain the OAuth2 token. This would be the *path operation* - that has `OAuth2PasswordRequestForm` as a dependency. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ], - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - scopes: Annotated[ - dict[str, str] | None, - Doc( - """ - The OAuth2 scopes that would be required by the *path operations* that - use this dependency. - - Read more about it in the - [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if no HTTP Authorization header is provided, required for - OAuth2 authentication, it will automatically cancel the request and - send the client an error. - - If `auto_error` is set to `False`, when the HTTP Authorization header - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, with OAuth2 - or in a cookie). - """ - ), - ] = True, - refreshUrl: Annotated[ - str | None, - Doc( - """ - The URL to refresh the token and obtain a new one. - """ - ), - ] = None, - ): - if not scopes: - scopes = {} - flows = OAuthFlowsModel( - password=cast( - Any, - { - "tokenUrl": tokenUrl, - "refreshUrl": refreshUrl, - "scopes": scopes, - }, - ) - ) - super().__init__( - flows=flows, - scheme_name=scheme_name, - description=description, - auto_error=auto_error, - ) - - async def __call__(self, request: Request) -> str | None: - authorization = request.headers.get("Authorization") - scheme, param = get_authorization_scheme_param(authorization) - if not authorization or scheme.lower() != "bearer": - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return param - - -class OAuth2AuthorizationCodeBearer(OAuth2): - """ - OAuth2 flow for authentication using a bearer token obtained with an OAuth2 code - flow. An instance of it would be used as a dependency. - """ - - def __init__( - self, - authorizationUrl: str, - tokenUrl: Annotated[ - str, - Doc( - """ - The URL to obtain the OAuth2 token. - """ - ), - ], - refreshUrl: Annotated[ - str | None, - Doc( - """ - The URL to refresh the token and obtain a new one. - """ - ), - ] = None, - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - scopes: Annotated[ - dict[str, str] | None, - Doc( - """ - The OAuth2 scopes that would be required by the *path operations* that - use this dependency. - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if no HTTP Authorization header is provided, required for - OAuth2 authentication, it will automatically cancel the request and - send the client an error. - - If `auto_error` is set to `False`, when the HTTP Authorization header - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, with OAuth2 - or in a cookie). - """ - ), - ] = True, - ): - if not scopes: - scopes = {} - flows = OAuthFlowsModel( - authorizationCode=cast( - Any, - { - "authorizationUrl": authorizationUrl, - "tokenUrl": tokenUrl, - "refreshUrl": refreshUrl, - "scopes": scopes, - }, - ) - ) - super().__init__( - flows=flows, - scheme_name=scheme_name, - description=description, - auto_error=auto_error, - ) - - async def __call__(self, request: Request) -> str | None: - authorization = request.headers.get("Authorization") - scheme, param = get_authorization_scheme_param(authorization) - if not authorization or scheme.lower() != "bearer": - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None # pragma: nocover - return param - - -class SecurityScopes: - """ - This is a special class that you can define in a parameter in a dependency to - obtain the OAuth2 scopes required by all the dependencies in the same chain. - - This way, multiple dependencies can have different scopes, even when used in the - same *path operation*. And with this, you can access all the scopes required in - all those dependencies in a single place. - - Read more about it in the - [FastAPI docs for OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/). - """ - - def __init__( - self, - scopes: Annotated[ - list[str] | None, - Doc( - """ - This will be filled by FastAPI. - """ - ), - ] = None, - ): - self.scopes: Annotated[ - list[str], - Doc( - """ - The list of all the scopes required by dependencies. - """ - ), - ] = scopes or [] - self.scope_str: Annotated[ - str, - Doc( - """ - All the scopes required by all the dependencies in a single string - separated by spaces, as defined in the OAuth2 specification. - """ - ), - ] = " ".join(self.scopes) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/open_id_connect_url.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/open_id_connect_url.py deleted file mode 100644 index 125a819..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/open_id_connect_url.py +++ /dev/null @@ -1,94 +0,0 @@ -from typing import Annotated - -from annotated_doc import Doc -from fastapi.openapi.models import OpenIdConnect as OpenIdConnectModel -from fastapi.security.base import SecurityBase -from starlette.exceptions import HTTPException -from starlette.requests import Request -from starlette.status import HTTP_401_UNAUTHORIZED - - -class OpenIdConnect(SecurityBase): - """ - OpenID Connect authentication class. An instance of it would be used as a - dependency. - - **Warning**: this is only a stub to connect the components with OpenAPI in FastAPI, - but it doesn't implement the full OpenIdConnect scheme, for example, it doesn't use - the OpenIDConnect URL. You would need to subclass it and implement it in your - code. - """ - - def __init__( - self, - *, - openIdConnectUrl: Annotated[ - str, - Doc( - """ - The OpenID Connect URL. - """ - ), - ], - scheme_name: Annotated[ - str | None, - Doc( - """ - Security scheme name. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - description: Annotated[ - str | None, - Doc( - """ - Security scheme description. - - It will be included in the generated OpenAPI (e.g. visible at `/docs`). - """ - ), - ] = None, - auto_error: Annotated[ - bool, - Doc( - """ - By default, if no HTTP Authorization header is provided, required for - OpenID Connect authentication, it will automatically cancel the request - and send the client an error. - - If `auto_error` is set to `False`, when the HTTP Authorization header - is not available, instead of erroring out, the dependency result will - be `None`. - - This is useful when you want to have optional authentication. - - It is also useful when you want to have authentication that can be - provided in one of multiple optional ways (for example, with OpenID - Connect or in a cookie). - """ - ), - ] = True, - ): - self.model = OpenIdConnectModel( - openIdConnectUrl=openIdConnectUrl, description=description - ) - self.scheme_name = scheme_name or self.__class__.__name__ - self.auto_error = auto_error - - def make_not_authenticated_error(self) -> HTTPException: - return HTTPException( - status_code=HTTP_401_UNAUTHORIZED, - detail="Not authenticated", - headers={"WWW-Authenticate": "Bearer"}, - ) - - async def __call__(self, request: Request) -> str | None: - authorization = request.headers.get("Authorization") - if not authorization: - if self.auto_error: - raise self.make_not_authenticated_error() - else: - return None - return authorization diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/utils.py deleted file mode 100644 index 8ee66fd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/security/utils.py +++ /dev/null @@ -1,7 +0,0 @@ -def get_authorization_scheme_param( - authorization_header_value: str | None, -) -> tuple[str, str]: - if not authorization_header_value: - return "", "" - scheme, _, param = authorization_header_value.partition(" ") - return scheme, param.strip() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/sse.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/sse.py deleted file mode 100644 index 1e2bd86..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/sse.py +++ /dev/null @@ -1,235 +0,0 @@ -from typing import Annotated, Any - -from annotated_doc import Doc -from pydantic import AfterValidator, BaseModel, Field, model_validator -from starlette.responses import StreamingResponse - -# Canonical SSE event schema matching the OpenAPI 3.2 spec -# (Section 4.14.4 "Special Considerations for Server-Sent Events") -_SSE_EVENT_SCHEMA: dict[str, Any] = { - "type": "object", - "properties": { - "data": {"type": "string"}, - "event": {"type": "string"}, - "id": {"type": "string"}, - "retry": {"type": "integer", "minimum": 0}, - }, -} - - -class EventSourceResponse(StreamingResponse): - """Streaming response with `text/event-stream` media type. - - Use as `response_class=EventSourceResponse` on a *path operation* that uses `yield` - to enable Server Sent Events (SSE) responses. - - Works with **any HTTP method** (`GET`, `POST`, etc.), which makes it compatible - with protocols like MCP that stream SSE over `POST`. - - The actual encoding logic lives in the FastAPI routing layer. This class - serves mainly as a marker and sets the correct `Content-Type`. - """ - - media_type = "text/event-stream" - - -def _check_single_line(v: str | None, field_name: str) -> str | None: - if v is not None and ("\r" in v or "\n" in v): - raise ValueError(f"SSE '{field_name}' must be a single line") - return v - - -def _check_event_single_line(v: str | None) -> str | None: - return _check_single_line(v, "event") - - -def _check_id_valid(v: str | None) -> str | None: - if v is not None and "\0" in v: - raise ValueError("SSE 'id' must not contain null characters") - return _check_single_line(v, "id") - - -class ServerSentEvent(BaseModel): - """Represents a single Server-Sent Event. - - When `yield`ed from a *path operation function* that uses - `response_class=EventSourceResponse`, each `ServerSentEvent` is encoded - into the [SSE wire format](https://html.spec.whatwg.org/multipage/server-sent-events.html#parsing-an-event-stream) - (`text/event-stream`). - - If you yield a plain object (dict, Pydantic model, etc.) instead, it is - automatically JSON-encoded and sent as the `data:` field. - - All `data` values **including plain strings** are JSON-serialized. - - For example, `data="hello"` produces `data: "hello"` on the wire (with - quotes). - """ - - data: Annotated[ - Any, - Doc( - """ - The event payload. - - Can be any JSON-serializable value: a Pydantic model, dict, list, - string, number, etc. It is **always** serialized to JSON: strings - are quoted (`"hello"` becomes `data: "hello"` on the wire). - - Mutually exclusive with `raw_data`. - """ - ), - ] = None - raw_data: Annotated[ - str | None, - Doc( - """ - Raw string to send as the `data:` field **without** JSON encoding. - - Use this when you need to send pre-formatted text, HTML fragments, - CSV lines, or any non-JSON payload. The string is placed directly - into the `data:` field as-is. - - Mutually exclusive with `data`. - """ - ), - ] = None - event: Annotated[ - str | None, - AfterValidator(_check_event_single_line), - Doc( - """ - Optional event type name. - - Maps to `addEventListener(event, ...)` on the browser. When omitted, - the browser dispatches on the generic `message` event. Must be a - single line. - """ - ), - ] = None - id: Annotated[ - str | None, - AfterValidator(_check_id_valid), - Doc( - """ - Optional event ID. - - The browser sends this value back as the `Last-Event-ID` header on - automatic reconnection. **Must be a single line** and must not contain - null (`\\0`) characters. - """ - ), - ] = None - retry: Annotated[ - int | None, - Field(ge=0), - Doc( - """ - Optional reconnection time in **milliseconds**. - - Tells the browser how long to wait before reconnecting after the - connection is lost. Must be a non-negative integer. - """ - ), - ] = None - comment: Annotated[ - str | None, - Doc( - """ - Optional comment line(s). - - Comment lines start with `:` in the SSE wire format and are ignored by - `EventSource` clients. Useful for keep-alive pings to prevent - proxy/load-balancer timeouts. - """ - ), - ] = None - - @model_validator(mode="after") - def _check_data_exclusive(self) -> "ServerSentEvent": - if self.data is not None and self.raw_data is not None: - raise ValueError( - "Cannot set both 'data' and 'raw_data' on the same " - "ServerSentEvent. Use 'data' for JSON-serialized payloads " - "or 'raw_data' for pre-formatted strings." - ) - return self - - -def format_sse_event( - *, - data_str: Annotated[ - str | None, - Doc( - """ - Pre-serialized data string to use as the `data:` field. - """ - ), - ] = None, - event: Annotated[ - str | None, - Doc( - """ - Optional event type name (`event:` field). - """ - ), - ] = None, - id: Annotated[ - str | None, - Doc( - """ - Optional event ID (`id:` field). - """ - ), - ] = None, - retry: Annotated[ - int | None, - Doc( - """ - Optional reconnection time in milliseconds (`retry:` field). - """ - ), - ] = None, - comment: Annotated[ - str | None, - Doc( - """ - Optional comment line(s) (`:` prefix). - """ - ), - ] = None, -) -> bytes: - """Build SSE wire-format bytes from **pre-serialized** data. - - The result always ends with `\n\n` (the event terminator). - """ - lines: list[str] = [] - - if comment is not None: - for line in comment.splitlines(): - lines.append(f": {line}") - - if event is not None: - lines.append(f"event: {event}") - - if data_str is not None: - for line in data_str.splitlines(): - lines.append(f"data: {line}") - - if id is not None: - lines.append(f"id: {id}") - - if retry is not None: - lines.append(f"retry: {retry}") - - lines.append("") - lines.append("") - return "\n".join(lines).encode("utf-8") - - -# Keep-alive comment, per the SSE spec recommendation -KEEPALIVE_COMMENT = b": ping\n\n" - -# Seconds between keep-alive pings when a generator is idle. -# Private but importable so tests can monkeypatch it. -_PING_INTERVAL: float = 15.0 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/staticfiles.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/staticfiles.py deleted file mode 100644 index 299015d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/staticfiles.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.staticfiles import StaticFiles as StaticFiles # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/templating.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/templating.py deleted file mode 100644 index 0cb8684..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/templating.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.templating import Jinja2Templates as Jinja2Templates # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/testclient.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/testclient.py deleted file mode 100644 index 4012406..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/testclient.py +++ /dev/null @@ -1 +0,0 @@ -from starlette.testclient import TestClient as TestClient # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/types.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/types.py deleted file mode 100644 index 1fb86e1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/types.py +++ /dev/null @@ -1,12 +0,0 @@ -import types -from collections.abc import Callable -from enum import Enum -from typing import Any, TypeVar, Union - -from pydantic import BaseModel -from pydantic.main import IncEx as IncEx - -DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any]) -UnionType = getattr(types, "UnionType", Union) -ModelNameMap = dict[type[BaseModel] | type[Enum], str] -DependencyCacheKey = tuple[Callable[..., Any] | None, tuple[str, ...], str] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/utils.py deleted file mode 100644 index 12eaa2b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/utils.py +++ /dev/null @@ -1,136 +0,0 @@ -import re -import warnings -from typing import ( - TYPE_CHECKING, - Any, - Literal, -) - -import fastapi -from fastapi._compat import ( - ModelField, - PydanticSchemaGenerationError, - Undefined, - annotation_is_pydantic_v1, -) -from fastapi.datastructures import DefaultPlaceholder, DefaultType -from fastapi.exceptions import FastAPIDeprecationWarning, PydanticV1NotSupportedError -from pydantic.fields import FieldInfo - -from ._compat import v2 - -if TYPE_CHECKING: # pragma: nocover - from .routing import APIRoute - - -def is_body_allowed_for_status_code(status_code: int | str | None) -> bool: - if status_code is None: - return True - # Ref: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#patterned-fields-1 - if status_code in { - "default", - "1XX", - "2XX", - "3XX", - "4XX", - "5XX", - }: - return True - current_status_code = int(status_code) - return not (current_status_code < 200 or current_status_code in {204, 205, 304}) - - -def get_path_param_names(path: str) -> set[str]: - return set(re.findall("{(.*?)}", path)) - - -_invalid_args_message = ( - "Invalid args for response field! Hint: " - "check that {type_} is a valid Pydantic field type. " - "If you are using a return type annotation that is not a valid Pydantic " - "field (e.g. Union[Response, dict, None]) you can disable generating the " - "response model from the type annotation with the path operation decorator " - "parameter response_model=None. Read more: " - "https://fastapi.tiangolo.com/tutorial/response-model/" -) - - -def create_model_field( - name: str, - type_: Any, - default: Any | None = Undefined, - field_info: FieldInfo | None = None, - alias: str | None = None, - mode: Literal["validation", "serialization"] = "validation", -) -> ModelField: - if annotation_is_pydantic_v1(type_): - raise PydanticV1NotSupportedError( - "pydantic.v1 models are no longer supported by FastAPI." - f" Please update the response model {type_!r}." - ) - field_info = field_info or FieldInfo(annotation=type_, default=default, alias=alias) - try: - return v2.ModelField(mode=mode, name=name, field_info=field_info) - except PydanticSchemaGenerationError: - raise fastapi.exceptions.FastAPIError( - _invalid_args_message.format(type_=type_) - ) from None - - -def generate_operation_id_for_path( - *, name: str, path: str, method: str -) -> str: # pragma: nocover - warnings.warn( - message="fastapi.utils.generate_operation_id_for_path() was deprecated, " - "it is not used internally, and will be removed soon", - category=FastAPIDeprecationWarning, - stacklevel=2, - ) - operation_id = f"{name}{path}" - operation_id = re.sub(r"\W", "_", operation_id) - operation_id = f"{operation_id}_{method.lower()}" - return operation_id - - -def generate_unique_id(route: "APIRoute") -> str: - operation_id = f"{route.name}{route.path_format}" - operation_id = re.sub(r"\W", "_", operation_id) - assert route.methods - operation_id = f"{operation_id}_{list(route.methods)[0].lower()}" - return operation_id - - -def deep_dict_update(main_dict: dict[Any, Any], update_dict: dict[Any, Any]) -> None: - for key, value in update_dict.items(): - if ( - key in main_dict - and isinstance(main_dict[key], dict) - and isinstance(value, dict) - ): - deep_dict_update(main_dict[key], value) - elif ( - key in main_dict - and isinstance(main_dict[key], list) - and isinstance(update_dict[key], list) - ): - main_dict[key] = main_dict[key] + update_dict[key] - else: - main_dict[key] = value - - -def get_value_or_default( - first_item: DefaultPlaceholder | DefaultType, - *extra_items: DefaultPlaceholder | DefaultType, -) -> DefaultPlaceholder | DefaultType: - """ - Pass items or `DefaultPlaceholder`s by descending priority. - - The first one to _not_ be a `DefaultPlaceholder` will be returned. - - Otherwise, the first item (a `DefaultPlaceholder`) will be returned. - """ - items = (first_item,) + extra_items - for item in items: - if not isinstance(item, DefaultPlaceholder): - return item - return first_item diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/websockets.py b/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/websockets.py deleted file mode 100644 index 55a4ac4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/fastapi/websockets.py +++ /dev/null @@ -1,3 +0,0 @@ -from starlette.websockets import WebSocket as WebSocket # noqa -from starlette.websockets import WebSocketDisconnect as WebSocketDisconnect # noqa -from starlette.websockets import WebSocketState as WebSocketState # noqa diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/METADATA deleted file mode 100644 index 8a2f639..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/METADATA +++ /dev/null @@ -1,202 +0,0 @@ -Metadata-Version: 2.4 -Name: h11 -Version: 0.16.0 -Summary: A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 -Home-page: https://github.com/python-hyper/h11 -Author: Nathaniel J. Smith -Author-email: njs@pobox.com -License: MIT -Classifier: Development Status :: 3 - Alpha -Classifier: Intended Audience :: Developers -Classifier: License :: OSI Approved :: MIT License -Classifier: Programming Language :: Python :: Implementation :: CPython -Classifier: Programming Language :: Python :: Implementation :: PyPy -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.8 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Topic :: Internet :: WWW/HTTP -Classifier: Topic :: System :: Networking -Requires-Python: >=3.8 -License-File: LICENSE.txt -Dynamic: author -Dynamic: author-email -Dynamic: classifier -Dynamic: description -Dynamic: home-page -Dynamic: license -Dynamic: license-file -Dynamic: requires-python -Dynamic: summary - -h11 -=== - -.. image:: https://travis-ci.org/python-hyper/h11.svg?branch=master - :target: https://travis-ci.org/python-hyper/h11 - :alt: Automated test status - -.. image:: https://codecov.io/gh/python-hyper/h11/branch/master/graph/badge.svg - :target: https://codecov.io/gh/python-hyper/h11 - :alt: Test coverage - -.. image:: https://readthedocs.org/projects/h11/badge/?version=latest - :target: http://h11.readthedocs.io/en/latest/?badge=latest - :alt: Documentation Status - -This is a little HTTP/1.1 library written from scratch in Python, -heavily inspired by `hyper-h2 `_. - -It's a "bring-your-own-I/O" library; h11 contains no IO code -whatsoever. This means you can hook h11 up to your favorite network -API, and that could be anything you want: synchronous, threaded, -asynchronous, or your own implementation of `RFC 6214 -`_ -- h11 won't judge you. -(Compare this to the current state of the art, where every time a `new -network API `_ comes along then someone -gets to start over reimplementing the entire HTTP protocol from -scratch.) Cory Benfield made an `excellent blog post describing the -benefits of this approach -`_, or if you like video -then here's his `PyCon 2016 talk on the same theme -`_. - -This also means that h11 is not immediately useful out of the box: -it's a toolkit for building programs that speak HTTP, not something -that could directly replace ``requests`` or ``twisted.web`` or -whatever. But h11 makes it much easier to implement something like -``requests`` or ``twisted.web``. - -At a high level, working with h11 goes like this: - -1) First, create an ``h11.Connection`` object to track the state of a - single HTTP/1.1 connection. - -2) When you read data off the network, pass it to - ``conn.receive_data(...)``; you'll get back a list of objects - representing high-level HTTP "events". - -3) When you want to send a high-level HTTP event, create the - corresponding "event" object and pass it to ``conn.send(...)``; - this will give you back some bytes that you can then push out - through the network. - -For example, a client might instantiate and then send a -``h11.Request`` object, then zero or more ``h11.Data`` objects for the -request body (e.g., if this is a POST), and then a -``h11.EndOfMessage`` to indicate the end of the message. Then the -server would then send back a ``h11.Response``, some ``h11.Data``, and -its own ``h11.EndOfMessage``. If either side violates the protocol, -you'll get a ``h11.ProtocolError`` exception. - -h11 is suitable for implementing both servers and clients, and has a -pleasantly symmetric API: the events you send as a client are exactly -the ones that you receive as a server and vice-versa. - -`Here's an example of a tiny HTTP client -`_ - -It also has `a fine manual `_. - -FAQ ---- - -*Whyyyyy?* - -I wanted to play with HTTP in `Curio -`__ and `Trio -`__, which at the time didn't have any -HTTP libraries. So I thought, no big deal, Python has, like, a dozen -different implementations of HTTP, surely I can find one that's -reusable. I didn't find one, but I did find Cory's call-to-arms -blog-post. So I figured, well, fine, if I have to implement HTTP from -scratch, at least I can make sure no-one *else* has to ever again. - -*Should I use it?* - -Maybe. You should be aware that it's a very young project. But, it's -feature complete and has an exhaustive test-suite and complete docs, -so the next step is for people to try using it and see how it goes -:-). If you do then please let us know -- if nothing else we'll want -to talk to you before making any incompatible changes! - -*What are the features/limitations?* - -Roughly speaking, it's trying to be a robust, complete, and non-hacky -implementation of the first "chapter" of the HTTP/1.1 spec: `RFC 7230: -HTTP/1.1 Message Syntax and Routing -`_. That is, it mostly focuses on -implementing HTTP at the level of taking bytes on and off the wire, -and the headers related to that, and tries to be anal about spec -conformance. It doesn't know about higher-level concerns like URL -routing, conditional GETs, cross-origin cookie policies, or content -negotiation. But it does know how to take care of framing, -cross-version differences in keep-alive handling, and the "obsolete -line folding" rule, so you can focus your energies on the hard / -interesting parts for your application, and it tries to support the -full specification in the sense that any useful HTTP/1.1 conformant -application should be able to use h11. - -It's pure Python, and has no dependencies outside of the standard -library. - -It has a test suite with 100.0% coverage for both statements and -branches. - -Currently it supports Python 3 (testing on 3.8-3.12) and PyPy 3. -The last Python 2-compatible version was h11 0.11.x. -(Originally it had a Cython wrapper for `http-parser -`_ and a beautiful nested state -machine implemented with ``yield from`` to postprocess the output. But -I had to take these out -- the new *parser* needs fewer lines-of-code -than the old *parser wrapper*, is written in pure Python, uses no -exotic language syntax, and has more features. It's sad, really; that -old state machine was really slick. I just need a few sentences here -to mourn that.) - -I don't know how fast it is. I haven't benchmarked or profiled it yet, -so it's probably got a few pointless hot spots, and I've been trying -to err on the side of simplicity and robustness instead of -micro-optimization. But at the architectural level I tried hard to -avoid fundamentally bad decisions, e.g., I believe that all the -parsing algorithms remain linear-time even in the face of pathological -input like slowloris, and there are no byte-by-byte loops. (I also -believe that it maintains bounded memory usage in the face of -arbitrary/pathological input.) - -The whole library is ~800 lines-of-code. You can read and understand -the whole thing in less than an hour. Most of the energy invested in -this so far has been spent on trying to keep things simple by -minimizing special-cases and ad hoc state manipulation; even though it -is now quite small and simple, I'm still annoyed that I haven't -figured out how to make it even smaller and simpler. (Unfortunately, -HTTP does not lend itself to simplicity.) - -The API is ~feature complete and I don't expect the general outlines -to change much, but you can't judge an API's ergonomics until you -actually document and use it, so I'd expect some changes in the -details. - -*How do I try it?* - -.. code-block:: sh - - $ pip install h11 - $ git clone git@github.com:python-hyper/h11 - $ cd h11/examples - $ python basic-client.py - -and go from there. - -*License?* - -MIT - -*Code of conduct?* - -Contributors are requested to follow our `code of conduct -`_ in -all project spaces. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/RECORD deleted file mode 100644 index 8768040..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/RECORD +++ /dev/null @@ -1,29 +0,0 @@ -h11-0.16.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -h11-0.16.0.dist-info/METADATA,sha256=KPMmCYrAn8unm48YD5YIfIQf4kViFct7hyqcfVzRnWQ,8348 -h11-0.16.0.dist-info/RECORD,, -h11-0.16.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91 -h11-0.16.0.dist-info/licenses/LICENSE.txt,sha256=N9tbuFkm2yikJ6JYZ_ELEjIAOuob5pzLhRE4rbjm82E,1124 -h11-0.16.0.dist-info/top_level.txt,sha256=F7dC4jl3zeh8TGHEPaWJrMbeuoWbS379Gwdi-Yvdcis,4 -h11/__init__.py,sha256=iO1KzkSO42yZ6ffg-VMgbx_ZVTWGUY00nRYEWn-s3kY,1507 -h11/__pycache__/__init__.cpython-311.pyc,, -h11/__pycache__/_abnf.cpython-311.pyc,, -h11/__pycache__/_connection.cpython-311.pyc,, -h11/__pycache__/_events.cpython-311.pyc,, -h11/__pycache__/_headers.cpython-311.pyc,, -h11/__pycache__/_readers.cpython-311.pyc,, -h11/__pycache__/_receivebuffer.cpython-311.pyc,, -h11/__pycache__/_state.cpython-311.pyc,, -h11/__pycache__/_util.cpython-311.pyc,, -h11/__pycache__/_version.cpython-311.pyc,, -h11/__pycache__/_writers.cpython-311.pyc,, -h11/_abnf.py,sha256=ybixr0xsupnkA6GFAyMubuXF6Tc1lb_hF890NgCsfNc,4815 -h11/_connection.py,sha256=k9YRVf6koZqbttBW36xSWaJpWdZwa-xQVU9AHEo9DuI,26863 -h11/_events.py,sha256=I97aXoal1Wu7dkL548BANBUCkOIbe-x5CioYA9IBY14,11792 -h11/_headers.py,sha256=P7D-lBNxHwdLZPLimmYwrPG-9ZkjElvvJZJdZAgSP-4,10412 -h11/_readers.py,sha256=a4RypORUCC3d0q_kxPuBIM7jTD8iLt5X91TH0FsduN4,8590 -h11/_receivebuffer.py,sha256=xrspsdsNgWFxRfQcTXxR8RrdjRXXTK0Io5cQYWpJ1Ws,5252 -h11/_state.py,sha256=_5LG_BGR8FCcFQeBPH-TMHgm_-B-EUcWCnQof_9XjFE,13231 -h11/_util.py,sha256=LWkkjXyJaFlAy6Lt39w73UStklFT5ovcvo0TkY7RYuk,4888 -h11/_version.py,sha256=GVSsbPSPDcOuF6ptfIiXnVJoaEm3ygXbMnqlr_Giahw,686 -h11/_writers.py,sha256=oFKm6PtjeHfbj4RLX7VB7KDc1gIY53gXG3_HR9ltmTA,5081 -h11/py.typed,sha256=sow9soTwP9T_gEAQSVh7Gb8855h04Nwmhs2We-JRgZM,7 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/WHEEL deleted file mode 100644 index 1eb3c49..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: setuptools (78.1.0) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt deleted file mode 100644 index 8f080ea..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +++ /dev/null @@ -1,22 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Nathaniel J. Smith and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/top_level.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/top_level.txt deleted file mode 100644 index 0d24def..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11-0.16.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -h11 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__init__.py deleted file mode 100644 index 989e92c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__init__.py +++ /dev/null @@ -1,62 +0,0 @@ -# A highish-level implementation of the HTTP/1.1 wire protocol (RFC 7230), -# containing no networking code at all, loosely modelled on hyper-h2's generic -# implementation of HTTP/2 (and in particular the h2.connection.H2Connection -# class). There's still a bunch of subtle details you need to get right if you -# want to make this actually useful, because it doesn't implement all the -# semantics to check that what you're asking to write to the wire is sensible, -# but at least it gets you out of dealing with the wire itself. - -from h11._connection import Connection, NEED_DATA, PAUSED -from h11._events import ( - ConnectionClosed, - Data, - EndOfMessage, - Event, - InformationalResponse, - Request, - Response, -) -from h11._state import ( - CLIENT, - CLOSED, - DONE, - ERROR, - IDLE, - MIGHT_SWITCH_PROTOCOL, - MUST_CLOSE, - SEND_BODY, - SEND_RESPONSE, - SERVER, - SWITCHED_PROTOCOL, -) -from h11._util import LocalProtocolError, ProtocolError, RemoteProtocolError -from h11._version import __version__ - -PRODUCT_ID = "python-h11/" + __version__ - - -__all__ = ( - "Connection", - "NEED_DATA", - "PAUSED", - "ConnectionClosed", - "Data", - "EndOfMessage", - "Event", - "InformationalResponse", - "Request", - "Response", - "CLIENT", - "CLOSED", - "DONE", - "ERROR", - "IDLE", - "MUST_CLOSE", - "SEND_BODY", - "SEND_RESPONSE", - "SERVER", - "SWITCHED_PROTOCOL", - "ProtocolError", - "LocalProtocolError", - "RemoteProtocolError", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b0e930b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_abnf.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_abnf.cpython-311.pyc deleted file mode 100644 index e34d83f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_abnf.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_connection.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_connection.cpython-311.pyc deleted file mode 100644 index 6e41c7a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_connection.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_events.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_events.cpython-311.pyc deleted file mode 100644 index 09babc5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_events.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_headers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_headers.cpython-311.pyc deleted file mode 100644 index 95cda69..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_headers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_readers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_readers.cpython-311.pyc deleted file mode 100644 index 1f9b4b4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_readers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_receivebuffer.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_receivebuffer.cpython-311.pyc deleted file mode 100644 index 1268f80..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_receivebuffer.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_state.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_state.cpython-311.pyc deleted file mode 100644 index 5cecc27..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_state.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_util.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_util.cpython-311.pyc deleted file mode 100644 index fdb7cc5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_util.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_version.cpython-311.pyc deleted file mode 100644 index 9305f38..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_writers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_writers.cpython-311.pyc deleted file mode 100644 index 9d03dff..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/__pycache__/_writers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_abnf.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_abnf.py deleted file mode 100644 index 933587f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_abnf.py +++ /dev/null @@ -1,132 +0,0 @@ -# We use native strings for all the re patterns, to take advantage of string -# formatting, and then convert to bytestrings when compiling the final re -# objects. - -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#whitespace -# OWS = *( SP / HTAB ) -# ; optional whitespace -OWS = r"[ \t]*" - -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#rule.token.separators -# token = 1*tchar -# -# tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" -# / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" -# / DIGIT / ALPHA -# ; any VCHAR, except delimiters -token = r"[-!#$%&'*+.^_`|~0-9a-zA-Z]+" - -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#header.fields -# field-name = token -field_name = token - -# The standard says: -# -# field-value = *( field-content / obs-fold ) -# field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] -# field-vchar = VCHAR / obs-text -# obs-fold = CRLF 1*( SP / HTAB ) -# ; obsolete line folding -# ; see Section 3.2.4 -# -# https://tools.ietf.org/html/rfc5234#appendix-B.1 -# -# VCHAR = %x21-7E -# ; visible (printing) characters -# -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#rule.quoted-string -# obs-text = %x80-FF -# -# However, the standard definition of field-content is WRONG! It disallows -# fields containing a single visible character surrounded by whitespace, -# e.g. "foo a bar". -# -# See: https://www.rfc-editor.org/errata_search.php?rfc=7230&eid=4189 -# -# So our definition of field_content attempts to fix it up... -# -# Also, we allow lots of control characters, because apparently people assume -# that they're legal in practice (e.g., google analytics makes cookies with -# \x01 in them!): -# https://github.com/python-hyper/h11/issues/57 -# We still don't allow NUL or whitespace, because those are often treated as -# meta-characters and letting them through can lead to nasty issues like SSRF. -vchar = r"[\x21-\x7e]" -vchar_or_obs_text = r"[^\x00\s]" -field_vchar = vchar_or_obs_text -field_content = r"{field_vchar}+(?:[ \t]+{field_vchar}+)*".format(**globals()) - -# We handle obs-fold at a different level, and our fixed-up field_content -# already grows to swallow the whole value, so ? instead of * -field_value = r"({field_content})?".format(**globals()) - -# header-field = field-name ":" OWS field-value OWS -header_field = ( - r"(?P{field_name})" - r":" - r"{OWS}" - r"(?P{field_value})" - r"{OWS}".format(**globals()) -) - -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#request.line -# -# request-line = method SP request-target SP HTTP-version CRLF -# method = token -# HTTP-version = HTTP-name "/" DIGIT "." DIGIT -# HTTP-name = %x48.54.54.50 ; "HTTP", case-sensitive -# -# request-target is complicated (see RFC 7230 sec 5.3) -- could be path, full -# URL, host+port (for connect), or even "*", but in any case we are guaranteed -# that it contists of the visible printing characters. -method = token -request_target = r"{vchar}+".format(**globals()) -http_version = r"HTTP/(?P[0-9]\.[0-9])" -request_line = ( - r"(?P{method})" - r" " - r"(?P{request_target})" - r" " - r"{http_version}".format(**globals()) -) - -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#status.line -# -# status-line = HTTP-version SP status-code SP reason-phrase CRLF -# status-code = 3DIGIT -# reason-phrase = *( HTAB / SP / VCHAR / obs-text ) -status_code = r"[0-9]{3}" -reason_phrase = r"([ \t]|{vchar_or_obs_text})*".format(**globals()) -status_line = ( - r"{http_version}" - r" " - r"(?P{status_code})" - # However, there are apparently a few too many servers out there that just - # leave out the reason phrase: - # https://github.com/scrapy/scrapy/issues/345#issuecomment-281756036 - # https://github.com/seanmonstar/httparse/issues/29 - # so make it optional. ?: is a non-capturing group. - r"(?: (?P{reason_phrase}))?".format(**globals()) -) - -HEXDIG = r"[0-9A-Fa-f]" -# Actually -# -# chunk-size = 1*HEXDIG -# -# but we impose an upper-limit to avoid ridiculosity. len(str(2**64)) == 20 -chunk_size = r"({HEXDIG}){{1,20}}".format(**globals()) -# Actually -# -# chunk-ext = *( ";" chunk-ext-name [ "=" chunk-ext-val ] ) -# -# but we aren't parsing the things so we don't really care. -chunk_ext = r";.*" -chunk_header = ( - r"(?P{chunk_size})" - r"(?P{chunk_ext})?" - r"{OWS}\r\n".format( - **globals() - ) # Even though the specification does not allow for extra whitespaces, - # we are lenient with trailing whitespaces because some servers on the wild use it. -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_connection.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_connection.py deleted file mode 100644 index e37d82a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_connection.py +++ /dev/null @@ -1,659 +0,0 @@ -# This contains the main Connection class. Everything in h11 revolves around -# this. -from typing import ( - Any, - Callable, - cast, - Dict, - List, - Optional, - overload, - Tuple, - Type, - Union, -) - -from ._events import ( - ConnectionClosed, - Data, - EndOfMessage, - Event, - InformationalResponse, - Request, - Response, -) -from ._headers import get_comma_header, has_expect_100_continue, set_comma_header -from ._readers import READERS, ReadersType -from ._receivebuffer import ReceiveBuffer -from ._state import ( - _SWITCH_CONNECT, - _SWITCH_UPGRADE, - CLIENT, - ConnectionState, - DONE, - ERROR, - MIGHT_SWITCH_PROTOCOL, - SEND_BODY, - SERVER, - SWITCHED_PROTOCOL, -) -from ._util import ( # Import the internal things we need - LocalProtocolError, - RemoteProtocolError, - Sentinel, -) -from ._writers import WRITERS, WritersType - -# Everything in __all__ gets re-exported as part of the h11 public API. -__all__ = ["Connection", "NEED_DATA", "PAUSED"] - - -class NEED_DATA(Sentinel, metaclass=Sentinel): - pass - - -class PAUSED(Sentinel, metaclass=Sentinel): - pass - - -# If we ever have this much buffered without it making a complete parseable -# event, we error out. The only time we really buffer is when reading the -# request/response line + headers together, so this is effectively the limit on -# the size of that. -# -# Some precedents for defaults: -# - node.js: 80 * 1024 -# - tomcat: 8 * 1024 -# - IIS: 16 * 1024 -# - Apache: <8 KiB per line> -DEFAULT_MAX_INCOMPLETE_EVENT_SIZE = 16 * 1024 - - -# RFC 7230's rules for connection lifecycles: -# - If either side says they want to close the connection, then the connection -# must close. -# - HTTP/1.1 defaults to keep-alive unless someone says Connection: close -# - HTTP/1.0 defaults to close unless both sides say Connection: keep-alive -# (and even this is a mess -- e.g. if you're implementing a proxy then -# sending Connection: keep-alive is forbidden). -# -# We simplify life by simply not supporting keep-alive with HTTP/1.0 peers. So -# our rule is: -# - If someone says Connection: close, we will close -# - If someone uses HTTP/1.0, we will close. -def _keep_alive(event: Union[Request, Response]) -> bool: - connection = get_comma_header(event.headers, b"connection") - if b"close" in connection: - return False - if getattr(event, "http_version", b"1.1") < b"1.1": - return False - return True - - -def _body_framing( - request_method: bytes, event: Union[Request, Response] -) -> Tuple[str, Union[Tuple[()], Tuple[int]]]: - # Called when we enter SEND_BODY to figure out framing information for - # this body. - # - # These are the only two events that can trigger a SEND_BODY state: - assert type(event) in (Request, Response) - # Returns one of: - # - # ("content-length", count) - # ("chunked", ()) - # ("http/1.0", ()) - # - # which are (lookup key, *args) for constructing body reader/writer - # objects. - # - # Reference: https://tools.ietf.org/html/rfc7230#section-3.3.3 - # - # Step 1: some responses always have an empty body, regardless of what the - # headers say. - if type(event) is Response: - if ( - event.status_code in (204, 304) - or request_method == b"HEAD" - or (request_method == b"CONNECT" and 200 <= event.status_code < 300) - ): - return ("content-length", (0,)) - # Section 3.3.3 also lists another case -- responses with status_code - # < 200. For us these are InformationalResponses, not Responses, so - # they can't get into this function in the first place. - assert event.status_code >= 200 - - # Step 2: check for Transfer-Encoding (T-E beats C-L): - transfer_encodings = get_comma_header(event.headers, b"transfer-encoding") - if transfer_encodings: - assert transfer_encodings == [b"chunked"] - return ("chunked", ()) - - # Step 3: check for Content-Length - content_lengths = get_comma_header(event.headers, b"content-length") - if content_lengths: - return ("content-length", (int(content_lengths[0]),)) - - # Step 4: no applicable headers; fallback/default depends on type - if type(event) is Request: - return ("content-length", (0,)) - else: - return ("http/1.0", ()) - - -################################################################ -# -# The main Connection class -# -################################################################ - - -class Connection: - """An object encapsulating the state of an HTTP connection. - - Args: - our_role: If you're implementing a client, pass :data:`h11.CLIENT`. If - you're implementing a server, pass :data:`h11.SERVER`. - - max_incomplete_event_size (int): - The maximum number of bytes we're willing to buffer of an - incomplete event. In practice this mostly sets a limit on the - maximum size of the request/response line + headers. If this is - exceeded, then :meth:`next_event` will raise - :exc:`RemoteProtocolError`. - - """ - - def __init__( - self, - our_role: Type[Sentinel], - max_incomplete_event_size: int = DEFAULT_MAX_INCOMPLETE_EVENT_SIZE, - ) -> None: - self._max_incomplete_event_size = max_incomplete_event_size - # State and role tracking - if our_role not in (CLIENT, SERVER): - raise ValueError(f"expected CLIENT or SERVER, not {our_role!r}") - self.our_role = our_role - self.their_role: Type[Sentinel] - if our_role is CLIENT: - self.their_role = SERVER - else: - self.their_role = CLIENT - self._cstate = ConnectionState() - - # Callables for converting data->events or vice-versa given the - # current state - self._writer = self._get_io_object(self.our_role, None, WRITERS) - self._reader = self._get_io_object(self.their_role, None, READERS) - - # Holds any unprocessed received data - self._receive_buffer = ReceiveBuffer() - # If this is true, then it indicates that the incoming connection was - # closed *after* the end of whatever's in self._receive_buffer: - self._receive_buffer_closed = False - - # Extra bits of state that don't fit into the state machine. - # - # These two are only used to interpret framing headers for figuring - # out how to read/write response bodies. their_http_version is also - # made available as a convenient public API. - self.their_http_version: Optional[bytes] = None - self._request_method: Optional[bytes] = None - # This is pure flow-control and doesn't at all affect the set of legal - # transitions, so no need to bother ConnectionState with it: - self.client_is_waiting_for_100_continue = False - - @property - def states(self) -> Dict[Type[Sentinel], Type[Sentinel]]: - """A dictionary like:: - - {CLIENT: , SERVER: } - - See :ref:`state-machine` for details. - - """ - return dict(self._cstate.states) - - @property - def our_state(self) -> Type[Sentinel]: - """The current state of whichever role we are playing. See - :ref:`state-machine` for details. - """ - return self._cstate.states[self.our_role] - - @property - def their_state(self) -> Type[Sentinel]: - """The current state of whichever role we are NOT playing. See - :ref:`state-machine` for details. - """ - return self._cstate.states[self.their_role] - - @property - def they_are_waiting_for_100_continue(self) -> bool: - return self.their_role is CLIENT and self.client_is_waiting_for_100_continue - - def start_next_cycle(self) -> None: - """Attempt to reset our connection state for a new request/response - cycle. - - If both client and server are in :data:`DONE` state, then resets them - both to :data:`IDLE` state in preparation for a new request/response - cycle on this same connection. Otherwise, raises a - :exc:`LocalProtocolError`. - - See :ref:`keepalive-and-pipelining`. - - """ - old_states = dict(self._cstate.states) - self._cstate.start_next_cycle() - self._request_method = None - # self.their_http_version gets left alone, since it presumably lasts - # beyond a single request/response cycle - assert not self.client_is_waiting_for_100_continue - self._respond_to_state_changes(old_states) - - def _process_error(self, role: Type[Sentinel]) -> None: - old_states = dict(self._cstate.states) - self._cstate.process_error(role) - self._respond_to_state_changes(old_states) - - def _server_switch_event(self, event: Event) -> Optional[Type[Sentinel]]: - if type(event) is InformationalResponse and event.status_code == 101: - return _SWITCH_UPGRADE - if type(event) is Response: - if ( - _SWITCH_CONNECT in self._cstate.pending_switch_proposals - and 200 <= event.status_code < 300 - ): - return _SWITCH_CONNECT - return None - - # All events go through here - def _process_event(self, role: Type[Sentinel], event: Event) -> None: - # First, pass the event through the state machine to make sure it - # succeeds. - old_states = dict(self._cstate.states) - if role is CLIENT and type(event) is Request: - if event.method == b"CONNECT": - self._cstate.process_client_switch_proposal(_SWITCH_CONNECT) - if get_comma_header(event.headers, b"upgrade"): - self._cstate.process_client_switch_proposal(_SWITCH_UPGRADE) - server_switch_event = None - if role is SERVER: - server_switch_event = self._server_switch_event(event) - self._cstate.process_event(role, type(event), server_switch_event) - - # Then perform the updates triggered by it. - - if type(event) is Request: - self._request_method = event.method - - if role is self.their_role and type(event) in ( - Request, - Response, - InformationalResponse, - ): - event = cast(Union[Request, Response, InformationalResponse], event) - self.their_http_version = event.http_version - - # Keep alive handling - # - # RFC 7230 doesn't really say what one should do if Connection: close - # shows up on a 1xx InformationalResponse. I think the idea is that - # this is not supposed to happen. In any case, if it does happen, we - # ignore it. - if type(event) in (Request, Response) and not _keep_alive( - cast(Union[Request, Response], event) - ): - self._cstate.process_keep_alive_disabled() - - # 100-continue - if type(event) is Request and has_expect_100_continue(event): - self.client_is_waiting_for_100_continue = True - if type(event) in (InformationalResponse, Response): - self.client_is_waiting_for_100_continue = False - if role is CLIENT and type(event) in (Data, EndOfMessage): - self.client_is_waiting_for_100_continue = False - - self._respond_to_state_changes(old_states, event) - - def _get_io_object( - self, - role: Type[Sentinel], - event: Optional[Event], - io_dict: Union[ReadersType, WritersType], - ) -> Optional[Callable[..., Any]]: - # event may be None; it's only used when entering SEND_BODY - state = self._cstate.states[role] - if state is SEND_BODY: - # Special case: the io_dict has a dict of reader/writer factories - # that depend on the request/response framing. - framing_type, args = _body_framing( - cast(bytes, self._request_method), cast(Union[Request, Response], event) - ) - return io_dict[SEND_BODY][framing_type](*args) # type: ignore[index] - else: - # General case: the io_dict just has the appropriate reader/writer - # for this state - return io_dict.get((role, state)) # type: ignore[return-value] - - # This must be called after any action that might have caused - # self._cstate.states to change. - def _respond_to_state_changes( - self, - old_states: Dict[Type[Sentinel], Type[Sentinel]], - event: Optional[Event] = None, - ) -> None: - # Update reader/writer - if self.our_state != old_states[self.our_role]: - self._writer = self._get_io_object(self.our_role, event, WRITERS) - if self.their_state != old_states[self.their_role]: - self._reader = self._get_io_object(self.their_role, event, READERS) - - @property - def trailing_data(self) -> Tuple[bytes, bool]: - """Data that has been received, but not yet processed, represented as - a tuple with two elements, where the first is a byte-string containing - the unprocessed data itself, and the second is a bool that is True if - the receive connection was closed. - - See :ref:`switching-protocols` for discussion of why you'd want this. - """ - return (bytes(self._receive_buffer), self._receive_buffer_closed) - - def receive_data(self, data: bytes) -> None: - """Add data to our internal receive buffer. - - This does not actually do any processing on the data, just stores - it. To trigger processing, you have to call :meth:`next_event`. - - Args: - data (:term:`bytes-like object`): - The new data that was just received. - - Special case: If *data* is an empty byte-string like ``b""``, - then this indicates that the remote side has closed the - connection (end of file). Normally this is convenient, because - standard Python APIs like :meth:`file.read` or - :meth:`socket.recv` use ``b""`` to indicate end-of-file, while - other failures to read are indicated using other mechanisms - like raising :exc:`TimeoutError`. When using such an API you - can just blindly pass through whatever you get from ``read`` - to :meth:`receive_data`, and everything will work. - - But, if you have an API where reading an empty string is a - valid non-EOF condition, then you need to be aware of this and - make sure to check for such strings and avoid passing them to - :meth:`receive_data`. - - Returns: - Nothing, but after calling this you should call :meth:`next_event` - to parse the newly received data. - - Raises: - RuntimeError: - Raised if you pass an empty *data*, indicating EOF, and then - pass a non-empty *data*, indicating more data that somehow - arrived after the EOF. - - (Calling ``receive_data(b"")`` multiple times is fine, - and equivalent to calling it once.) - - """ - if data: - if self._receive_buffer_closed: - raise RuntimeError("received close, then received more data?") - self._receive_buffer += data - else: - self._receive_buffer_closed = True - - def _extract_next_receive_event( - self, - ) -> Union[Event, Type[NEED_DATA], Type[PAUSED]]: - state = self.their_state - # We don't pause immediately when they enter DONE, because even in - # DONE state we can still process a ConnectionClosed() event. But - # if we have data in our buffer, then we definitely aren't getting - # a ConnectionClosed() immediately and we need to pause. - if state is DONE and self._receive_buffer: - return PAUSED - if state is MIGHT_SWITCH_PROTOCOL or state is SWITCHED_PROTOCOL: - return PAUSED - assert self._reader is not None - event = self._reader(self._receive_buffer) - if event is None: - if not self._receive_buffer and self._receive_buffer_closed: - # In some unusual cases (basically just HTTP/1.0 bodies), EOF - # triggers an actual protocol event; in that case, we want to - # return that event, and then the state will change and we'll - # get called again to generate the actual ConnectionClosed(). - if hasattr(self._reader, "read_eof"): - event = self._reader.read_eof() - else: - event = ConnectionClosed() - if event is None: - event = NEED_DATA - return event # type: ignore[no-any-return] - - def next_event(self) -> Union[Event, Type[NEED_DATA], Type[PAUSED]]: - """Parse the next event out of our receive buffer, update our internal - state, and return it. - - This is a mutating operation -- think of it like calling :func:`next` - on an iterator. - - Returns: - : One of three things: - - 1) An event object -- see :ref:`events`. - - 2) The special constant :data:`NEED_DATA`, which indicates that - you need to read more data from your socket and pass it to - :meth:`receive_data` before this method will be able to return - any more events. - - 3) The special constant :data:`PAUSED`, which indicates that we - are not in a state where we can process incoming data (usually - because the peer has finished their part of the current - request/response cycle, and you have not yet called - :meth:`start_next_cycle`). See :ref:`flow-control` for details. - - Raises: - RemoteProtocolError: - The peer has misbehaved. You should close the connection - (possibly after sending some kind of 4xx response). - - Once this method returns :class:`ConnectionClosed` once, then all - subsequent calls will also return :class:`ConnectionClosed`. - - If this method raises any exception besides :exc:`RemoteProtocolError` - then that's a bug -- if it happens please file a bug report! - - If this method raises any exception then it also sets - :attr:`Connection.their_state` to :data:`ERROR` -- see - :ref:`error-handling` for discussion. - - """ - - if self.their_state is ERROR: - raise RemoteProtocolError("Can't receive data when peer state is ERROR") - try: - event = self._extract_next_receive_event() - if event not in [NEED_DATA, PAUSED]: - self._process_event(self.their_role, cast(Event, event)) - if event is NEED_DATA: - if len(self._receive_buffer) > self._max_incomplete_event_size: - # 431 is "Request header fields too large" which is pretty - # much the only situation where we can get here - raise RemoteProtocolError( - "Receive buffer too long", error_status_hint=431 - ) - if self._receive_buffer_closed: - # We're still trying to complete some event, but that's - # never going to happen because no more data is coming - raise RemoteProtocolError("peer unexpectedly closed connection") - return event - except BaseException as exc: - self._process_error(self.their_role) - if isinstance(exc, LocalProtocolError): - exc._reraise_as_remote_protocol_error() - else: - raise - - @overload - def send(self, event: ConnectionClosed) -> None: - ... - - @overload - def send( - self, event: Union[Request, InformationalResponse, Response, Data, EndOfMessage] - ) -> bytes: - ... - - @overload - def send(self, event: Event) -> Optional[bytes]: - ... - - def send(self, event: Event) -> Optional[bytes]: - """Convert a high-level event into bytes that can be sent to the peer, - while updating our internal state machine. - - Args: - event: The :ref:`event ` to send. - - Returns: - If ``type(event) is ConnectionClosed``, then returns - ``None``. Otherwise, returns a :term:`bytes-like object`. - - Raises: - LocalProtocolError: - Sending this event at this time would violate our - understanding of the HTTP/1.1 protocol. - - If this method raises any exception then it also sets - :attr:`Connection.our_state` to :data:`ERROR` -- see - :ref:`error-handling` for discussion. - - """ - data_list = self.send_with_data_passthrough(event) - if data_list is None: - return None - else: - return b"".join(data_list) - - def send_with_data_passthrough(self, event: Event) -> Optional[List[bytes]]: - """Identical to :meth:`send`, except that in situations where - :meth:`send` returns a single :term:`bytes-like object`, this instead - returns a list of them -- and when sending a :class:`Data` event, this - list is guaranteed to contain the exact object you passed in as - :attr:`Data.data`. See :ref:`sendfile` for discussion. - - """ - if self.our_state is ERROR: - raise LocalProtocolError("Can't send data when our state is ERROR") - try: - if type(event) is Response: - event = self._clean_up_response_headers_for_sending(event) - # We want to call _process_event before calling the writer, - # because if someone tries to do something invalid then this will - # give a sensible error message, while our writers all just assume - # they will only receive valid events. But, _process_event might - # change self._writer. So we have to do a little dance: - writer = self._writer - self._process_event(self.our_role, event) - if type(event) is ConnectionClosed: - return None - else: - # In any situation where writer is None, process_event should - # have raised ProtocolError - assert writer is not None - data_list: List[bytes] = [] - writer(event, data_list.append) - return data_list - except: - self._process_error(self.our_role) - raise - - def send_failed(self) -> None: - """Notify the state machine that we failed to send the data it gave - us. - - This causes :attr:`Connection.our_state` to immediately become - :data:`ERROR` -- see :ref:`error-handling` for discussion. - - """ - self._process_error(self.our_role) - - # When sending a Response, we take responsibility for a few things: - # - # - Sometimes you MUST set Connection: close. We take care of those - # times. (You can also set it yourself if you want, and if you do then - # we'll respect that and close the connection at the right time. But you - # don't have to worry about that unless you want to.) - # - # - The user has to set Content-Length if they want it. Otherwise, for - # responses that have bodies (e.g. not HEAD), then we will automatically - # select the right mechanism for streaming a body of unknown length, - # which depends on depending on the peer's HTTP version. - # - # This function's *only* responsibility is making sure headers are set up - # right -- everything downstream just looks at the headers. There are no - # side channels. - def _clean_up_response_headers_for_sending(self, response: Response) -> Response: - assert type(response) is Response - - headers = response.headers - need_close = False - - # HEAD requests need some special handling: they always act like they - # have Content-Length: 0, and that's how _body_framing treats - # them. But their headers are supposed to match what we would send if - # the request was a GET. (Technically there is one deviation allowed: - # we're allowed to leave out the framing headers -- see - # https://tools.ietf.org/html/rfc7231#section-4.3.2 . But it's just as - # easy to get them right.) - method_for_choosing_headers = cast(bytes, self._request_method) - if method_for_choosing_headers == b"HEAD": - method_for_choosing_headers = b"GET" - framing_type, _ = _body_framing(method_for_choosing_headers, response) - if framing_type in ("chunked", "http/1.0"): - # This response has a body of unknown length. - # If our peer is HTTP/1.1, we use Transfer-Encoding: chunked - # If our peer is HTTP/1.0, we use no framing headers, and close the - # connection afterwards. - # - # Make sure to clear Content-Length (in principle user could have - # set both and then we ignored Content-Length b/c - # Transfer-Encoding overwrote it -- this would be naughty of them, - # but the HTTP spec says that if our peer does this then we have - # to fix it instead of erroring out, so we'll accord the user the - # same respect). - headers = set_comma_header(headers, b"content-length", []) - if self.their_http_version is None or self.their_http_version < b"1.1": - # Either we never got a valid request and are sending back an - # error (their_http_version is None), so we assume the worst; - # or else we did get a valid HTTP/1.0 request, so we know that - # they don't understand chunked encoding. - headers = set_comma_header(headers, b"transfer-encoding", []) - # This is actually redundant ATM, since currently we - # unconditionally disable keep-alive when talking to HTTP/1.0 - # peers. But let's be defensive just in case we add - # Connection: keep-alive support later: - if self._request_method != b"HEAD": - need_close = True - else: - headers = set_comma_header(headers, b"transfer-encoding", [b"chunked"]) - - if not self._cstate.keep_alive or need_close: - # Make sure Connection: close is set - connection = set(get_comma_header(headers, b"connection")) - connection.discard(b"keep-alive") - connection.add(b"close") - headers = set_comma_header(headers, b"connection", sorted(connection)) - - return Response( - headers=headers, - status_code=response.status_code, - http_version=response.http_version, - reason=response.reason, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_events.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_events.py deleted file mode 100644 index ca1c3ad..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_events.py +++ /dev/null @@ -1,369 +0,0 @@ -# High level events that make up HTTP/1.1 conversations. Loosely inspired by -# the corresponding events in hyper-h2: -# -# http://python-hyper.org/h2/en/stable/api.html#events -# -# Don't subclass these. Stuff will break. - -import re -from abc import ABC -from dataclasses import dataclass -from typing import List, Tuple, Union - -from ._abnf import method, request_target -from ._headers import Headers, normalize_and_validate -from ._util import bytesify, LocalProtocolError, validate - -# Everything in __all__ gets re-exported as part of the h11 public API. -__all__ = [ - "Event", - "Request", - "InformationalResponse", - "Response", - "Data", - "EndOfMessage", - "ConnectionClosed", -] - -method_re = re.compile(method.encode("ascii")) -request_target_re = re.compile(request_target.encode("ascii")) - - -class Event(ABC): - """ - Base class for h11 events. - """ - - __slots__ = () - - -@dataclass(init=False, frozen=True) -class Request(Event): - """The beginning of an HTTP request. - - Fields: - - .. attribute:: method - - An HTTP method, e.g. ``b"GET"`` or ``b"POST"``. Always a byte - string. :term:`Bytes-like objects ` and native - strings containing only ascii characters will be automatically - converted to byte strings. - - .. attribute:: target - - The target of an HTTP request, e.g. ``b"/index.html"``, or one of the - more exotic formats described in `RFC 7320, section 5.3 - `_. Always a byte - string. :term:`Bytes-like objects ` and native - strings containing only ascii characters will be automatically - converted to byte strings. - - .. attribute:: headers - - Request headers, represented as a list of (name, value) pairs. See - :ref:`the header normalization rules ` for details. - - .. attribute:: http_version - - The HTTP protocol version, represented as a byte string like - ``b"1.1"``. See :ref:`the HTTP version normalization rules - ` for details. - - """ - - __slots__ = ("method", "headers", "target", "http_version") - - method: bytes - headers: Headers - target: bytes - http_version: bytes - - def __init__( - self, - *, - method: Union[bytes, str], - headers: Union[Headers, List[Tuple[bytes, bytes]], List[Tuple[str, str]]], - target: Union[bytes, str], - http_version: Union[bytes, str] = b"1.1", - _parsed: bool = False, - ) -> None: - super().__init__() - if isinstance(headers, Headers): - object.__setattr__(self, "headers", headers) - else: - object.__setattr__( - self, "headers", normalize_and_validate(headers, _parsed=_parsed) - ) - if not _parsed: - object.__setattr__(self, "method", bytesify(method)) - object.__setattr__(self, "target", bytesify(target)) - object.__setattr__(self, "http_version", bytesify(http_version)) - else: - object.__setattr__(self, "method", method) - object.__setattr__(self, "target", target) - object.__setattr__(self, "http_version", http_version) - - # "A server MUST respond with a 400 (Bad Request) status code to any - # HTTP/1.1 request message that lacks a Host header field and to any - # request message that contains more than one Host header field or a - # Host header field with an invalid field-value." - # -- https://tools.ietf.org/html/rfc7230#section-5.4 - host_count = 0 - for name, value in self.headers: - if name == b"host": - host_count += 1 - if self.http_version == b"1.1" and host_count == 0: - raise LocalProtocolError("Missing mandatory Host: header") - if host_count > 1: - raise LocalProtocolError("Found multiple Host: headers") - - validate(method_re, self.method, "Illegal method characters") - validate(request_target_re, self.target, "Illegal target characters") - - # This is an unhashable type. - __hash__ = None # type: ignore - - -@dataclass(init=False, frozen=True) -class _ResponseBase(Event): - __slots__ = ("headers", "http_version", "reason", "status_code") - - headers: Headers - http_version: bytes - reason: bytes - status_code: int - - def __init__( - self, - *, - headers: Union[Headers, List[Tuple[bytes, bytes]], List[Tuple[str, str]]], - status_code: int, - http_version: Union[bytes, str] = b"1.1", - reason: Union[bytes, str] = b"", - _parsed: bool = False, - ) -> None: - super().__init__() - if isinstance(headers, Headers): - object.__setattr__(self, "headers", headers) - else: - object.__setattr__( - self, "headers", normalize_and_validate(headers, _parsed=_parsed) - ) - if not _parsed: - object.__setattr__(self, "reason", bytesify(reason)) - object.__setattr__(self, "http_version", bytesify(http_version)) - if not isinstance(status_code, int): - raise LocalProtocolError("status code must be integer") - # Because IntEnum objects are instances of int, but aren't - # duck-compatible (sigh), see gh-72. - object.__setattr__(self, "status_code", int(status_code)) - else: - object.__setattr__(self, "reason", reason) - object.__setattr__(self, "http_version", http_version) - object.__setattr__(self, "status_code", status_code) - - self.__post_init__() - - def __post_init__(self) -> None: - pass - - # This is an unhashable type. - __hash__ = None # type: ignore - - -@dataclass(init=False, frozen=True) -class InformationalResponse(_ResponseBase): - """An HTTP informational response. - - Fields: - - .. attribute:: status_code - - The status code of this response, as an integer. For an - :class:`InformationalResponse`, this is always in the range [100, - 200). - - .. attribute:: headers - - Request headers, represented as a list of (name, value) pairs. See - :ref:`the header normalization rules ` for - details. - - .. attribute:: http_version - - The HTTP protocol version, represented as a byte string like - ``b"1.1"``. See :ref:`the HTTP version normalization rules - ` for details. - - .. attribute:: reason - - The reason phrase of this response, as a byte string. For example: - ``b"OK"``, or ``b"Not Found"``. - - """ - - def __post_init__(self) -> None: - if not (100 <= self.status_code < 200): - raise LocalProtocolError( - "InformationalResponse status_code should be in range " - "[100, 200), not {}".format(self.status_code) - ) - - # This is an unhashable type. - __hash__ = None # type: ignore - - -@dataclass(init=False, frozen=True) -class Response(_ResponseBase): - """The beginning of an HTTP response. - - Fields: - - .. attribute:: status_code - - The status code of this response, as an integer. For an - :class:`Response`, this is always in the range [200, - 1000). - - .. attribute:: headers - - Request headers, represented as a list of (name, value) pairs. See - :ref:`the header normalization rules ` for details. - - .. attribute:: http_version - - The HTTP protocol version, represented as a byte string like - ``b"1.1"``. See :ref:`the HTTP version normalization rules - ` for details. - - .. attribute:: reason - - The reason phrase of this response, as a byte string. For example: - ``b"OK"``, or ``b"Not Found"``. - - """ - - def __post_init__(self) -> None: - if not (200 <= self.status_code < 1000): - raise LocalProtocolError( - "Response status_code should be in range [200, 1000), not {}".format( - self.status_code - ) - ) - - # This is an unhashable type. - __hash__ = None # type: ignore - - -@dataclass(init=False, frozen=True) -class Data(Event): - """Part of an HTTP message body. - - Fields: - - .. attribute:: data - - A :term:`bytes-like object` containing part of a message body. Or, if - using the ``combine=False`` argument to :meth:`Connection.send`, then - any object that your socket writing code knows what to do with, and for - which calling :func:`len` returns the number of bytes that will be - written -- see :ref:`sendfile` for details. - - .. attribute:: chunk_start - - A marker that indicates whether this data object is from the start of a - chunked transfer encoding chunk. This field is ignored when when a Data - event is provided to :meth:`Connection.send`: it is only valid on - events emitted from :meth:`Connection.next_event`. You probably - shouldn't use this attribute at all; see - :ref:`chunk-delimiters-are-bad` for details. - - .. attribute:: chunk_end - - A marker that indicates whether this data object is the last for a - given chunked transfer encoding chunk. This field is ignored when when - a Data event is provided to :meth:`Connection.send`: it is only valid - on events emitted from :meth:`Connection.next_event`. You probably - shouldn't use this attribute at all; see - :ref:`chunk-delimiters-are-bad` for details. - - """ - - __slots__ = ("data", "chunk_start", "chunk_end") - - data: bytes - chunk_start: bool - chunk_end: bool - - def __init__( - self, data: bytes, chunk_start: bool = False, chunk_end: bool = False - ) -> None: - object.__setattr__(self, "data", data) - object.__setattr__(self, "chunk_start", chunk_start) - object.__setattr__(self, "chunk_end", chunk_end) - - # This is an unhashable type. - __hash__ = None # type: ignore - - -# XX FIXME: "A recipient MUST ignore (or consider as an error) any fields that -# are forbidden to be sent in a trailer, since processing them as if they were -# present in the header section might bypass external security filters." -# https://svn.tools.ietf.org/svn/wg/httpbis/specs/rfc7230.html#chunked.trailer.part -# Unfortunately, the list of forbidden fields is long and vague :-/ -@dataclass(init=False, frozen=True) -class EndOfMessage(Event): - """The end of an HTTP message. - - Fields: - - .. attribute:: headers - - Default value: ``[]`` - - Any trailing headers attached to this message, represented as a list of - (name, value) pairs. See :ref:`the header normalization rules - ` for details. - - Must be empty unless ``Transfer-Encoding: chunked`` is in use. - - """ - - __slots__ = ("headers",) - - headers: Headers - - def __init__( - self, - *, - headers: Union[ - Headers, List[Tuple[bytes, bytes]], List[Tuple[str, str]], None - ] = None, - _parsed: bool = False, - ) -> None: - super().__init__() - if headers is None: - headers = Headers([]) - elif not isinstance(headers, Headers): - headers = normalize_and_validate(headers, _parsed=_parsed) - - object.__setattr__(self, "headers", headers) - - # This is an unhashable type. - __hash__ = None # type: ignore - - -@dataclass(frozen=True) -class ConnectionClosed(Event): - """This event indicates that the sender has closed their outgoing - connection. - - Note that this does not necessarily mean that they can't *receive* further - data, because TCP connections are composed to two one-way channels which - can be closed independently. See :ref:`closing` for details. - - No fields. - """ - - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_headers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_headers.py deleted file mode 100644 index 31da3e2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_headers.py +++ /dev/null @@ -1,282 +0,0 @@ -import re -from typing import AnyStr, cast, List, overload, Sequence, Tuple, TYPE_CHECKING, Union - -from ._abnf import field_name, field_value -from ._util import bytesify, LocalProtocolError, validate - -if TYPE_CHECKING: - from ._events import Request - -try: - from typing import Literal -except ImportError: - from typing_extensions import Literal # type: ignore - -CONTENT_LENGTH_MAX_DIGITS = 20 # allow up to 1 billion TB - 1 - - -# Facts -# ----- -# -# Headers are: -# keys: case-insensitive ascii -# values: mixture of ascii and raw bytes -# -# "Historically, HTTP has allowed field content with text in the ISO-8859-1 -# charset [ISO-8859-1], supporting other charsets only through use of -# [RFC2047] encoding. In practice, most HTTP header field values use only a -# subset of the US-ASCII charset [USASCII]. Newly defined header fields SHOULD -# limit their field values to US-ASCII octets. A recipient SHOULD treat other -# octets in field content (obs-text) as opaque data." -# And it deprecates all non-ascii values -# -# Leading/trailing whitespace in header names is forbidden -# -# Values get leading/trailing whitespace stripped -# -# Content-Disposition actually needs to contain unicode semantically; to -# accomplish this it has a terrifically weird way of encoding the filename -# itself as ascii (and even this still has lots of cross-browser -# incompatibilities) -# -# Order is important: -# "a proxy MUST NOT change the order of these field values when forwarding a -# message" -# (and there are several headers where the order indicates a preference) -# -# Multiple occurences of the same header: -# "A sender MUST NOT generate multiple header fields with the same field name -# in a message unless either the entire field value for that header field is -# defined as a comma-separated list [or the header is Set-Cookie which gets a -# special exception]" - RFC 7230. (cookies are in RFC 6265) -# -# So every header aside from Set-Cookie can be merged by b", ".join if it -# occurs repeatedly. But, of course, they can't necessarily be split by -# .split(b","), because quoting. -# -# Given all this mess (case insensitive, duplicates allowed, order is -# important, ...), there doesn't appear to be any standard way to handle -# headers in Python -- they're almost like dicts, but... actually just -# aren't. For now we punt and just use a super simple representation: headers -# are a list of pairs -# -# [(name1, value1), (name2, value2), ...] -# -# where all entries are bytestrings, names are lowercase and have no -# leading/trailing whitespace, and values are bytestrings with no -# leading/trailing whitespace. Searching and updating are done via naive O(n) -# methods. -# -# Maybe a dict-of-lists would be better? - -_content_length_re = re.compile(rb"[0-9]+") -_field_name_re = re.compile(field_name.encode("ascii")) -_field_value_re = re.compile(field_value.encode("ascii")) - - -class Headers(Sequence[Tuple[bytes, bytes]]): - """ - A list-like interface that allows iterating over headers as byte-pairs - of (lowercased-name, value). - - Internally we actually store the representation as three-tuples, - including both the raw original casing, in order to preserve casing - over-the-wire, and the lowercased name, for case-insensitive comparisions. - - r = Request( - method="GET", - target="/", - headers=[("Host", "example.org"), ("Connection", "keep-alive")], - http_version="1.1", - ) - assert r.headers == [ - (b"host", b"example.org"), - (b"connection", b"keep-alive") - ] - assert r.headers.raw_items() == [ - (b"Host", b"example.org"), - (b"Connection", b"keep-alive") - ] - """ - - __slots__ = "_full_items" - - def __init__(self, full_items: List[Tuple[bytes, bytes, bytes]]) -> None: - self._full_items = full_items - - def __bool__(self) -> bool: - return bool(self._full_items) - - def __eq__(self, other: object) -> bool: - return list(self) == list(other) # type: ignore - - def __len__(self) -> int: - return len(self._full_items) - - def __repr__(self) -> str: - return "" % repr(list(self)) - - def __getitem__(self, idx: int) -> Tuple[bytes, bytes]: # type: ignore[override] - _, name, value = self._full_items[idx] - return (name, value) - - def raw_items(self) -> List[Tuple[bytes, bytes]]: - return [(raw_name, value) for raw_name, _, value in self._full_items] - - -HeaderTypes = Union[ - List[Tuple[bytes, bytes]], - List[Tuple[bytes, str]], - List[Tuple[str, bytes]], - List[Tuple[str, str]], -] - - -@overload -def normalize_and_validate(headers: Headers, _parsed: Literal[True]) -> Headers: - ... - - -@overload -def normalize_and_validate(headers: HeaderTypes, _parsed: Literal[False]) -> Headers: - ... - - -@overload -def normalize_and_validate( - headers: Union[Headers, HeaderTypes], _parsed: bool = False -) -> Headers: - ... - - -def normalize_and_validate( - headers: Union[Headers, HeaderTypes], _parsed: bool = False -) -> Headers: - new_headers = [] - seen_content_length = None - saw_transfer_encoding = False - for name, value in headers: - # For headers coming out of the parser, we can safely skip some steps, - # because it always returns bytes and has already run these regexes - # over the data: - if not _parsed: - name = bytesify(name) - value = bytesify(value) - validate(_field_name_re, name, "Illegal header name {!r}", name) - validate(_field_value_re, value, "Illegal header value {!r}", value) - assert isinstance(name, bytes) - assert isinstance(value, bytes) - - raw_name = name - name = name.lower() - if name == b"content-length": - lengths = {length.strip() for length in value.split(b",")} - if len(lengths) != 1: - raise LocalProtocolError("conflicting Content-Length headers") - value = lengths.pop() - validate(_content_length_re, value, "bad Content-Length") - if len(value) > CONTENT_LENGTH_MAX_DIGITS: - raise LocalProtocolError("bad Content-Length") - if seen_content_length is None: - seen_content_length = value - new_headers.append((raw_name, name, value)) - elif seen_content_length != value: - raise LocalProtocolError("conflicting Content-Length headers") - elif name == b"transfer-encoding": - # "A server that receives a request message with a transfer coding - # it does not understand SHOULD respond with 501 (Not - # Implemented)." - # https://tools.ietf.org/html/rfc7230#section-3.3.1 - if saw_transfer_encoding: - raise LocalProtocolError( - "multiple Transfer-Encoding headers", error_status_hint=501 - ) - # "All transfer-coding names are case-insensitive" - # -- https://tools.ietf.org/html/rfc7230#section-4 - value = value.lower() - if value != b"chunked": - raise LocalProtocolError( - "Only Transfer-Encoding: chunked is supported", - error_status_hint=501, - ) - saw_transfer_encoding = True - new_headers.append((raw_name, name, value)) - else: - new_headers.append((raw_name, name, value)) - return Headers(new_headers) - - -def get_comma_header(headers: Headers, name: bytes) -> List[bytes]: - # Should only be used for headers whose value is a list of - # comma-separated, case-insensitive values. - # - # The header name `name` is expected to be lower-case bytes. - # - # Connection: meets these criteria (including cast insensitivity). - # - # Content-Length: technically is just a single value (1*DIGIT), but the - # standard makes reference to implementations that do multiple values, and - # using this doesn't hurt. Ditto, case insensitivity doesn't things either - # way. - # - # Transfer-Encoding: is more complex (allows for quoted strings), so - # splitting on , is actually wrong. For example, this is legal: - # - # Transfer-Encoding: foo; options="1,2", chunked - # - # and should be parsed as - # - # foo; options="1,2" - # chunked - # - # but this naive function will parse it as - # - # foo; options="1 - # 2" - # chunked - # - # However, this is okay because the only thing we are going to do with - # any Transfer-Encoding is reject ones that aren't just "chunked", so - # both of these will be treated the same anyway. - # - # Expect: the only legal value is the literal string - # "100-continue". Splitting on commas is harmless. Case insensitive. - # - out: List[bytes] = [] - for _, found_name, found_raw_value in headers._full_items: - if found_name == name: - found_raw_value = found_raw_value.lower() - for found_split_value in found_raw_value.split(b","): - found_split_value = found_split_value.strip() - if found_split_value: - out.append(found_split_value) - return out - - -def set_comma_header(headers: Headers, name: bytes, new_values: List[bytes]) -> Headers: - # The header name `name` is expected to be lower-case bytes. - # - # Note that when we store the header we use title casing for the header - # names, in order to match the conventional HTTP header style. - # - # Simply calling `.title()` is a blunt approach, but it's correct - # here given the cases where we're using `set_comma_header`... - # - # Connection, Content-Length, Transfer-Encoding. - new_headers: List[Tuple[bytes, bytes]] = [] - for found_raw_name, found_name, found_raw_value in headers._full_items: - if found_name != name: - new_headers.append((found_raw_name, found_raw_value)) - for new_value in new_values: - new_headers.append((name.title(), new_value)) - return normalize_and_validate(new_headers) - - -def has_expect_100_continue(request: "Request") -> bool: - # https://tools.ietf.org/html/rfc7231#section-5.1.1 - # "A server that receives a 100-continue expectation in an HTTP/1.0 request - # MUST ignore that expectation." - if request.http_version < b"1.1": - return False - expect = get_comma_header(request.headers, b"expect") - return b"100-continue" in expect diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_readers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_readers.py deleted file mode 100644 index 576804c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_readers.py +++ /dev/null @@ -1,250 +0,0 @@ -# Code to read HTTP data -# -# Strategy: each reader is a callable which takes a ReceiveBuffer object, and -# either: -# 1) consumes some of it and returns an Event -# 2) raises a LocalProtocolError (for consistency -- e.g. we call validate() -# and it might raise a LocalProtocolError, so simpler just to always use -# this) -# 3) returns None, meaning "I need more data" -# -# If they have a .read_eof attribute, then this will be called if an EOF is -# received -- but this is optional. Either way, the actual ConnectionClosed -# event will be generated afterwards. -# -# READERS is a dict describing how to pick a reader. It maps states to either: -# - a reader -# - or, for body readers, a dict of per-framing reader factories - -import re -from typing import Any, Callable, Dict, Iterable, NoReturn, Optional, Tuple, Type, Union - -from ._abnf import chunk_header, header_field, request_line, status_line -from ._events import Data, EndOfMessage, InformationalResponse, Request, Response -from ._receivebuffer import ReceiveBuffer -from ._state import ( - CLIENT, - CLOSED, - DONE, - IDLE, - MUST_CLOSE, - SEND_BODY, - SEND_RESPONSE, - SERVER, -) -from ._util import LocalProtocolError, RemoteProtocolError, Sentinel, validate - -__all__ = ["READERS"] - -header_field_re = re.compile(header_field.encode("ascii")) -obs_fold_re = re.compile(rb"[ \t]+") - - -def _obsolete_line_fold(lines: Iterable[bytes]) -> Iterable[bytes]: - it = iter(lines) - last: Optional[bytes] = None - for line in it: - match = obs_fold_re.match(line) - if match: - if last is None: - raise LocalProtocolError("continuation line at start of headers") - if not isinstance(last, bytearray): - # Cast to a mutable type, avoiding copy on append to ensure O(n) time - last = bytearray(last) - last += b" " - last += line[match.end() :] - else: - if last is not None: - yield last - last = line - if last is not None: - yield last - - -def _decode_header_lines( - lines: Iterable[bytes], -) -> Iterable[Tuple[bytes, bytes]]: - for line in _obsolete_line_fold(lines): - matches = validate(header_field_re, line, "illegal header line: {!r}", line) - yield (matches["field_name"], matches["field_value"]) - - -request_line_re = re.compile(request_line.encode("ascii")) - - -def maybe_read_from_IDLE_client(buf: ReceiveBuffer) -> Optional[Request]: - lines = buf.maybe_extract_lines() - if lines is None: - if buf.is_next_line_obviously_invalid_request_line(): - raise LocalProtocolError("illegal request line") - return None - if not lines: - raise LocalProtocolError("no request line received") - matches = validate( - request_line_re, lines[0], "illegal request line: {!r}", lines[0] - ) - return Request( - headers=list(_decode_header_lines(lines[1:])), _parsed=True, **matches - ) - - -status_line_re = re.compile(status_line.encode("ascii")) - - -def maybe_read_from_SEND_RESPONSE_server( - buf: ReceiveBuffer, -) -> Union[InformationalResponse, Response, None]: - lines = buf.maybe_extract_lines() - if lines is None: - if buf.is_next_line_obviously_invalid_request_line(): - raise LocalProtocolError("illegal request line") - return None - if not lines: - raise LocalProtocolError("no response line received") - matches = validate(status_line_re, lines[0], "illegal status line: {!r}", lines[0]) - http_version = ( - b"1.1" if matches["http_version"] is None else matches["http_version"] - ) - reason = b"" if matches["reason"] is None else matches["reason"] - status_code = int(matches["status_code"]) - class_: Union[Type[InformationalResponse], Type[Response]] = ( - InformationalResponse if status_code < 200 else Response - ) - return class_( - headers=list(_decode_header_lines(lines[1:])), - _parsed=True, - status_code=status_code, - reason=reason, - http_version=http_version, - ) - - -class ContentLengthReader: - def __init__(self, length: int) -> None: - self._length = length - self._remaining = length - - def __call__(self, buf: ReceiveBuffer) -> Union[Data, EndOfMessage, None]: - if self._remaining == 0: - return EndOfMessage() - data = buf.maybe_extract_at_most(self._remaining) - if data is None: - return None - self._remaining -= len(data) - return Data(data=data) - - def read_eof(self) -> NoReturn: - raise RemoteProtocolError( - "peer closed connection without sending complete message body " - "(received {} bytes, expected {})".format( - self._length - self._remaining, self._length - ) - ) - - -chunk_header_re = re.compile(chunk_header.encode("ascii")) - - -class ChunkedReader: - def __init__(self) -> None: - self._bytes_in_chunk = 0 - # After reading a chunk, we have to throw away the trailing \r\n. - # This tracks the bytes that we need to match and throw away. - self._bytes_to_discard = b"" - self._reading_trailer = False - - def __call__(self, buf: ReceiveBuffer) -> Union[Data, EndOfMessage, None]: - if self._reading_trailer: - lines = buf.maybe_extract_lines() - if lines is None: - return None - return EndOfMessage(headers=list(_decode_header_lines(lines))) - if self._bytes_to_discard: - data = buf.maybe_extract_at_most(len(self._bytes_to_discard)) - if data is None: - return None - if data != self._bytes_to_discard[: len(data)]: - raise LocalProtocolError( - f"malformed chunk footer: {data!r} (expected {self._bytes_to_discard!r})" - ) - self._bytes_to_discard = self._bytes_to_discard[len(data) :] - if self._bytes_to_discard: - return None - # else, fall through and read some more - assert self._bytes_to_discard == b"" - if self._bytes_in_chunk == 0: - # We need to refill our chunk count - chunk_header = buf.maybe_extract_next_line() - if chunk_header is None: - return None - matches = validate( - chunk_header_re, - chunk_header, - "illegal chunk header: {!r}", - chunk_header, - ) - # XX FIXME: we discard chunk extensions. Does anyone care? - self._bytes_in_chunk = int(matches["chunk_size"], base=16) - if self._bytes_in_chunk == 0: - self._reading_trailer = True - return self(buf) - chunk_start = True - else: - chunk_start = False - assert self._bytes_in_chunk > 0 - data = buf.maybe_extract_at_most(self._bytes_in_chunk) - if data is None: - return None - self._bytes_in_chunk -= len(data) - if self._bytes_in_chunk == 0: - self._bytes_to_discard = b"\r\n" - chunk_end = True - else: - chunk_end = False - return Data(data=data, chunk_start=chunk_start, chunk_end=chunk_end) - - def read_eof(self) -> NoReturn: - raise RemoteProtocolError( - "peer closed connection without sending complete message body " - "(incomplete chunked read)" - ) - - -class Http10Reader: - def __call__(self, buf: ReceiveBuffer) -> Optional[Data]: - data = buf.maybe_extract_at_most(999999999) - if data is None: - return None - return Data(data=data) - - def read_eof(self) -> EndOfMessage: - return EndOfMessage() - - -def expect_nothing(buf: ReceiveBuffer) -> None: - if buf: - raise LocalProtocolError("Got data when expecting EOF") - return None - - -ReadersType = Dict[ - Union[Type[Sentinel], Tuple[Type[Sentinel], Type[Sentinel]]], - Union[Callable[..., Any], Dict[str, Callable[..., Any]]], -] - -READERS: ReadersType = { - (CLIENT, IDLE): maybe_read_from_IDLE_client, - (SERVER, IDLE): maybe_read_from_SEND_RESPONSE_server, - (SERVER, SEND_RESPONSE): maybe_read_from_SEND_RESPONSE_server, - (CLIENT, DONE): expect_nothing, - (CLIENT, MUST_CLOSE): expect_nothing, - (CLIENT, CLOSED): expect_nothing, - (SERVER, DONE): expect_nothing, - (SERVER, MUST_CLOSE): expect_nothing, - (SERVER, CLOSED): expect_nothing, - SEND_BODY: { - "chunked": ChunkedReader, - "content-length": ContentLengthReader, - "http/1.0": Http10Reader, - }, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_receivebuffer.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_receivebuffer.py deleted file mode 100644 index e5c4e08..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_receivebuffer.py +++ /dev/null @@ -1,153 +0,0 @@ -import re -import sys -from typing import List, Optional, Union - -__all__ = ["ReceiveBuffer"] - - -# Operations we want to support: -# - find next \r\n or \r\n\r\n (\n or \n\n are also acceptable), -# or wait until there is one -# - read at-most-N bytes -# Goals: -# - on average, do this fast -# - worst case, do this in O(n) where n is the number of bytes processed -# Plan: -# - store bytearray, offset, how far we've searched for a separator token -# - use the how-far-we've-searched data to avoid rescanning -# - while doing a stream of uninterrupted processing, advance offset instead -# of constantly copying -# WARNING: -# - I haven't benchmarked or profiled any of this yet. -# -# Note that starting in Python 3.4, deleting the initial n bytes from a -# bytearray is amortized O(n), thanks to some excellent work by Antoine -# Martin: -# -# https://bugs.python.org/issue19087 -# -# This means that if we only supported 3.4+, we could get rid of the code here -# involving self._start and self.compress, because it's doing exactly the same -# thing that bytearray now does internally. -# -# BUT unfortunately, we still support 2.7, and reading short segments out of a -# long buffer MUST be O(bytes read) to avoid DoS issues, so we can't actually -# delete this code. Yet: -# -# https://pythonclock.org/ -# -# (Two things to double-check first though: make sure PyPy also has the -# optimization, and benchmark to make sure it's a win, since we do have a -# slightly clever thing where we delay calling compress() until we've -# processed a whole event, which could in theory be slightly more efficient -# than the internal bytearray support.) -blank_line_regex = re.compile(b"\n\r?\n", re.MULTILINE) - - -class ReceiveBuffer: - def __init__(self) -> None: - self._data = bytearray() - self._next_line_search = 0 - self._multiple_lines_search = 0 - - def __iadd__(self, byteslike: Union[bytes, bytearray]) -> "ReceiveBuffer": - self._data += byteslike - return self - - def __bool__(self) -> bool: - return bool(len(self)) - - def __len__(self) -> int: - return len(self._data) - - # for @property unprocessed_data - def __bytes__(self) -> bytes: - return bytes(self._data) - - def _extract(self, count: int) -> bytearray: - # extracting an initial slice of the data buffer and return it - out = self._data[:count] - del self._data[:count] - - self._next_line_search = 0 - self._multiple_lines_search = 0 - - return out - - def maybe_extract_at_most(self, count: int) -> Optional[bytearray]: - """ - Extract a fixed number of bytes from the buffer. - """ - out = self._data[:count] - if not out: - return None - - return self._extract(count) - - def maybe_extract_next_line(self) -> Optional[bytearray]: - """ - Extract the first line, if it is completed in the buffer. - """ - # Only search in buffer space that we've not already looked at. - search_start_index = max(0, self._next_line_search - 1) - partial_idx = self._data.find(b"\r\n", search_start_index) - - if partial_idx == -1: - self._next_line_search = len(self._data) - return None - - # + 2 is to compensate len(b"\r\n") - idx = partial_idx + 2 - - return self._extract(idx) - - def maybe_extract_lines(self) -> Optional[List[bytearray]]: - """ - Extract everything up to the first blank line, and return a list of lines. - """ - # Handle the case where we have an immediate empty line. - if self._data[:1] == b"\n": - self._extract(1) - return [] - - if self._data[:2] == b"\r\n": - self._extract(2) - return [] - - # Only search in buffer space that we've not already looked at. - match = blank_line_regex.search(self._data, self._multiple_lines_search) - if match is None: - self._multiple_lines_search = max(0, len(self._data) - 2) - return None - - # Truncate the buffer and return it. - idx = match.span(0)[-1] - out = self._extract(idx) - lines = out.split(b"\n") - - for line in lines: - if line.endswith(b"\r"): - del line[-1] - - assert lines[-2] == lines[-1] == b"" - - del lines[-2:] - - return lines - - # In theory we should wait until `\r\n` before starting to validate - # incoming data. However it's interesting to detect (very) invalid data - # early given they might not even contain `\r\n` at all (hence only - # timeout will get rid of them). - # This is not a 100% effective detection but more of a cheap sanity check - # allowing for early abort in some useful cases. - # This is especially interesting when peer is messing up with HTTPS and - # sent us a TLS stream where we were expecting plain HTTP given all - # versions of TLS so far start handshake with a 0x16 message type code. - def is_next_line_obviously_invalid_request_line(self) -> bool: - try: - # HTTP header line must not contain non-printable characters - # and should not start with a space - return self._data[0] < 0x21 - except IndexError: - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_state.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_state.py deleted file mode 100644 index 3ad444b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_state.py +++ /dev/null @@ -1,365 +0,0 @@ -################################################################ -# The core state machine -################################################################ -# -# Rule 1: everything that affects the state machine and state transitions must -# live here in this file. As much as possible goes into the table-based -# representation, but for the bits that don't quite fit, the actual code and -# state must nonetheless live here. -# -# Rule 2: this file does not know about what role we're playing; it only knows -# about HTTP request/response cycles in the abstract. This ensures that we -# don't cheat and apply different rules to local and remote parties. -# -# -# Theory of operation -# =================== -# -# Possibly the simplest way to think about this is that we actually have 5 -# different state machines here. Yes, 5. These are: -# -# 1) The client state, with its complicated automaton (see the docs) -# 2) The server state, with its complicated automaton (see the docs) -# 3) The keep-alive state, with possible states {True, False} -# 4) The SWITCH_CONNECT state, with possible states {False, True} -# 5) The SWITCH_UPGRADE state, with possible states {False, True} -# -# For (3)-(5), the first state listed is the initial state. -# -# (1)-(3) are stored explicitly in member variables. The last -# two are stored implicitly in the pending_switch_proposals set as: -# (state of 4) == (_SWITCH_CONNECT in pending_switch_proposals) -# (state of 5) == (_SWITCH_UPGRADE in pending_switch_proposals) -# -# And each of these machines has two different kinds of transitions: -# -# a) Event-triggered -# b) State-triggered -# -# Event triggered is the obvious thing that you'd think it is: some event -# happens, and if it's the right event at the right time then a transition -# happens. But there are somewhat complicated rules for which machines can -# "see" which events. (As a rule of thumb, if a machine "sees" an event, this -# means two things: the event can affect the machine, and if the machine is -# not in a state where it expects that event then it's an error.) These rules -# are: -# -# 1) The client machine sees all h11.events objects emitted by the client. -# -# 2) The server machine sees all h11.events objects emitted by the server. -# -# It also sees the client's Request event. -# -# And sometimes, server events are annotated with a _SWITCH_* event. For -# example, we can have a (Response, _SWITCH_CONNECT) event, which is -# different from a regular Response event. -# -# 3) The keep-alive machine sees the process_keep_alive_disabled() event -# (which is derived from Request/Response events), and this event -# transitions it from True -> False, or from False -> False. There's no way -# to transition back. -# -# 4&5) The _SWITCH_* machines transition from False->True when we get a -# Request that proposes the relevant type of switch (via -# process_client_switch_proposals), and they go from True->False when we -# get a Response that has no _SWITCH_* annotation. -# -# So that's event-triggered transitions. -# -# State-triggered transitions are less standard. What they do here is couple -# the machines together. The way this works is, when certain *joint* -# configurations of states are achieved, then we automatically transition to a -# new *joint* state. So, for example, if we're ever in a joint state with -# -# client: DONE -# keep-alive: False -# -# then the client state immediately transitions to: -# -# client: MUST_CLOSE -# -# This is fundamentally different from an event-based transition, because it -# doesn't matter how we arrived at the {client: DONE, keep-alive: False} state -# -- maybe the client transitioned SEND_BODY -> DONE, or keep-alive -# transitioned True -> False. Either way, once this precondition is satisfied, -# this transition is immediately triggered. -# -# What if two conflicting state-based transitions get enabled at the same -# time? In practice there's only one case where this arises (client DONE -> -# MIGHT_SWITCH_PROTOCOL versus DONE -> MUST_CLOSE), and we resolve it by -# explicitly prioritizing the DONE -> MIGHT_SWITCH_PROTOCOL transition. -# -# Implementation -# -------------- -# -# The event-triggered transitions for the server and client machines are all -# stored explicitly in a table. Ditto for the state-triggered transitions that -# involve just the server and client state. -# -# The transitions for the other machines, and the state-triggered transitions -# that involve the other machines, are written out as explicit Python code. -# -# It'd be nice if there were some cleaner way to do all this. This isn't -# *too* terrible, but I feel like it could probably be better. -# -# WARNING -# ------- -# -# The script that generates the state machine diagrams for the docs knows how -# to read out the EVENT_TRIGGERED_TRANSITIONS and STATE_TRIGGERED_TRANSITIONS -# tables. But it can't automatically read the transitions that are written -# directly in Python code. So if you touch those, you need to also update the -# script to keep it in sync! -from typing import cast, Dict, Optional, Set, Tuple, Type, Union - -from ._events import * -from ._util import LocalProtocolError, Sentinel - -# Everything in __all__ gets re-exported as part of the h11 public API. -__all__ = [ - "CLIENT", - "SERVER", - "IDLE", - "SEND_RESPONSE", - "SEND_BODY", - "DONE", - "MUST_CLOSE", - "CLOSED", - "MIGHT_SWITCH_PROTOCOL", - "SWITCHED_PROTOCOL", - "ERROR", -] - - -class CLIENT(Sentinel, metaclass=Sentinel): - pass - - -class SERVER(Sentinel, metaclass=Sentinel): - pass - - -# States -class IDLE(Sentinel, metaclass=Sentinel): - pass - - -class SEND_RESPONSE(Sentinel, metaclass=Sentinel): - pass - - -class SEND_BODY(Sentinel, metaclass=Sentinel): - pass - - -class DONE(Sentinel, metaclass=Sentinel): - pass - - -class MUST_CLOSE(Sentinel, metaclass=Sentinel): - pass - - -class CLOSED(Sentinel, metaclass=Sentinel): - pass - - -class ERROR(Sentinel, metaclass=Sentinel): - pass - - -# Switch types -class MIGHT_SWITCH_PROTOCOL(Sentinel, metaclass=Sentinel): - pass - - -class SWITCHED_PROTOCOL(Sentinel, metaclass=Sentinel): - pass - - -class _SWITCH_UPGRADE(Sentinel, metaclass=Sentinel): - pass - - -class _SWITCH_CONNECT(Sentinel, metaclass=Sentinel): - pass - - -EventTransitionType = Dict[ - Type[Sentinel], - Dict[ - Type[Sentinel], - Dict[Union[Type[Event], Tuple[Type[Event], Type[Sentinel]]], Type[Sentinel]], - ], -] - -EVENT_TRIGGERED_TRANSITIONS: EventTransitionType = { - CLIENT: { - IDLE: {Request: SEND_BODY, ConnectionClosed: CLOSED}, - SEND_BODY: {Data: SEND_BODY, EndOfMessage: DONE}, - DONE: {ConnectionClosed: CLOSED}, - MUST_CLOSE: {ConnectionClosed: CLOSED}, - CLOSED: {ConnectionClosed: CLOSED}, - MIGHT_SWITCH_PROTOCOL: {}, - SWITCHED_PROTOCOL: {}, - ERROR: {}, - }, - SERVER: { - IDLE: { - ConnectionClosed: CLOSED, - Response: SEND_BODY, - # Special case: server sees client Request events, in this form - (Request, CLIENT): SEND_RESPONSE, - }, - SEND_RESPONSE: { - InformationalResponse: SEND_RESPONSE, - Response: SEND_BODY, - (InformationalResponse, _SWITCH_UPGRADE): SWITCHED_PROTOCOL, - (Response, _SWITCH_CONNECT): SWITCHED_PROTOCOL, - }, - SEND_BODY: {Data: SEND_BODY, EndOfMessage: DONE}, - DONE: {ConnectionClosed: CLOSED}, - MUST_CLOSE: {ConnectionClosed: CLOSED}, - CLOSED: {ConnectionClosed: CLOSED}, - SWITCHED_PROTOCOL: {}, - ERROR: {}, - }, -} - -StateTransitionType = Dict[ - Tuple[Type[Sentinel], Type[Sentinel]], Dict[Type[Sentinel], Type[Sentinel]] -] - -# NB: there are also some special-case state-triggered transitions hard-coded -# into _fire_state_triggered_transitions below. -STATE_TRIGGERED_TRANSITIONS: StateTransitionType = { - # (Client state, Server state) -> new states - # Protocol negotiation - (MIGHT_SWITCH_PROTOCOL, SWITCHED_PROTOCOL): {CLIENT: SWITCHED_PROTOCOL}, - # Socket shutdown - (CLOSED, DONE): {SERVER: MUST_CLOSE}, - (CLOSED, IDLE): {SERVER: MUST_CLOSE}, - (ERROR, DONE): {SERVER: MUST_CLOSE}, - (DONE, CLOSED): {CLIENT: MUST_CLOSE}, - (IDLE, CLOSED): {CLIENT: MUST_CLOSE}, - (DONE, ERROR): {CLIENT: MUST_CLOSE}, -} - - -class ConnectionState: - def __init__(self) -> None: - # Extra bits of state that don't quite fit into the state model. - - # If this is False then it enables the automatic DONE -> MUST_CLOSE - # transition. Don't set this directly; call .keep_alive_disabled() - self.keep_alive = True - - # This is a subset of {UPGRADE, CONNECT}, containing the proposals - # made by the client for switching protocols. - self.pending_switch_proposals: Set[Type[Sentinel]] = set() - - self.states: Dict[Type[Sentinel], Type[Sentinel]] = {CLIENT: IDLE, SERVER: IDLE} - - def process_error(self, role: Type[Sentinel]) -> None: - self.states[role] = ERROR - self._fire_state_triggered_transitions() - - def process_keep_alive_disabled(self) -> None: - self.keep_alive = False - self._fire_state_triggered_transitions() - - def process_client_switch_proposal(self, switch_event: Type[Sentinel]) -> None: - self.pending_switch_proposals.add(switch_event) - self._fire_state_triggered_transitions() - - def process_event( - self, - role: Type[Sentinel], - event_type: Type[Event], - server_switch_event: Optional[Type[Sentinel]] = None, - ) -> None: - _event_type: Union[Type[Event], Tuple[Type[Event], Type[Sentinel]]] = event_type - if server_switch_event is not None: - assert role is SERVER - if server_switch_event not in self.pending_switch_proposals: - raise LocalProtocolError( - "Received server _SWITCH_UPGRADE event without a pending proposal" - ) - _event_type = (event_type, server_switch_event) - if server_switch_event is None and _event_type is Response: - self.pending_switch_proposals = set() - self._fire_event_triggered_transitions(role, _event_type) - # Special case: the server state does get to see Request - # events. - if _event_type is Request: - assert role is CLIENT - self._fire_event_triggered_transitions(SERVER, (Request, CLIENT)) - self._fire_state_triggered_transitions() - - def _fire_event_triggered_transitions( - self, - role: Type[Sentinel], - event_type: Union[Type[Event], Tuple[Type[Event], Type[Sentinel]]], - ) -> None: - state = self.states[role] - try: - new_state = EVENT_TRIGGERED_TRANSITIONS[role][state][event_type] - except KeyError: - event_type = cast(Type[Event], event_type) - raise LocalProtocolError( - "can't handle event type {} when role={} and state={}".format( - event_type.__name__, role, self.states[role] - ) - ) from None - self.states[role] = new_state - - def _fire_state_triggered_transitions(self) -> None: - # We apply these rules repeatedly until converging on a fixed point - while True: - start_states = dict(self.states) - - # It could happen that both these special-case transitions are - # enabled at the same time: - # - # DONE -> MIGHT_SWITCH_PROTOCOL - # DONE -> MUST_CLOSE - # - # For example, this will always be true of a HTTP/1.0 client - # requesting CONNECT. If this happens, the protocol switch takes - # priority. From there the client will either go to - # SWITCHED_PROTOCOL, in which case it's none of our business when - # they close the connection, or else the server will deny the - # request, in which case the client will go back to DONE and then - # from there to MUST_CLOSE. - if self.pending_switch_proposals: - if self.states[CLIENT] is DONE: - self.states[CLIENT] = MIGHT_SWITCH_PROTOCOL - - if not self.pending_switch_proposals: - if self.states[CLIENT] is MIGHT_SWITCH_PROTOCOL: - self.states[CLIENT] = DONE - - if not self.keep_alive: - for role in (CLIENT, SERVER): - if self.states[role] is DONE: - self.states[role] = MUST_CLOSE - - # Tabular state-triggered transitions - joint_state = (self.states[CLIENT], self.states[SERVER]) - changes = STATE_TRIGGERED_TRANSITIONS.get(joint_state, {}) - self.states.update(changes) - - if self.states == start_states: - # Fixed point reached - return - - def start_next_cycle(self) -> None: - if self.states != {CLIENT: DONE, SERVER: DONE}: - raise LocalProtocolError( - f"not in a reusable state. self.states={self.states}" - ) - # Can't reach DONE/DONE with any of these active, but still, let's be - # sure. - assert self.keep_alive - assert not self.pending_switch_proposals - self.states = {CLIENT: IDLE, SERVER: IDLE} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_util.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_util.py deleted file mode 100644 index 6718445..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_util.py +++ /dev/null @@ -1,135 +0,0 @@ -from typing import Any, Dict, NoReturn, Pattern, Tuple, Type, TypeVar, Union - -__all__ = [ - "ProtocolError", - "LocalProtocolError", - "RemoteProtocolError", - "validate", - "bytesify", -] - - -class ProtocolError(Exception): - """Exception indicating a violation of the HTTP/1.1 protocol. - - This as an abstract base class, with two concrete base classes: - :exc:`LocalProtocolError`, which indicates that you tried to do something - that HTTP/1.1 says is illegal, and :exc:`RemoteProtocolError`, which - indicates that the remote peer tried to do something that HTTP/1.1 says is - illegal. See :ref:`error-handling` for details. - - In addition to the normal :exc:`Exception` features, it has one attribute: - - .. attribute:: error_status_hint - - This gives a suggestion as to what status code a server might use if - this error occurred as part of a request. - - For a :exc:`RemoteProtocolError`, this is useful as a suggestion for - how you might want to respond to a misbehaving peer, if you're - implementing a server. - - For a :exc:`LocalProtocolError`, this can be taken as a suggestion for - how your peer might have responded to *you* if h11 had allowed you to - continue. - - The default is 400 Bad Request, a generic catch-all for protocol - violations. - - """ - - def __init__(self, msg: str, error_status_hint: int = 400) -> None: - if type(self) is ProtocolError: - raise TypeError("tried to directly instantiate ProtocolError") - Exception.__init__(self, msg) - self.error_status_hint = error_status_hint - - -# Strategy: there are a number of public APIs where a LocalProtocolError can -# be raised (send(), all the different event constructors, ...), and only one -# public API where RemoteProtocolError can be raised -# (receive_data()). Therefore we always raise LocalProtocolError internally, -# and then receive_data will translate this into a RemoteProtocolError. -# -# Internally: -# LocalProtocolError is the generic "ProtocolError". -# Externally: -# LocalProtocolError is for local errors and RemoteProtocolError is for -# remote errors. -class LocalProtocolError(ProtocolError): - def _reraise_as_remote_protocol_error(self) -> NoReturn: - # After catching a LocalProtocolError, use this method to re-raise it - # as a RemoteProtocolError. This method must be called from inside an - # except: block. - # - # An easy way to get an equivalent RemoteProtocolError is just to - # modify 'self' in place. - self.__class__ = RemoteProtocolError # type: ignore - # But the re-raising is somewhat non-trivial -- you might think that - # now that we've modified the in-flight exception object, that just - # doing 'raise' to re-raise it would be enough. But it turns out that - # this doesn't work, because Python tracks the exception type - # (exc_info[0]) separately from the exception object (exc_info[1]), - # and we only modified the latter. So we really do need to re-raise - # the new type explicitly. - # On py3, the traceback is part of the exception object, so our - # in-place modification preserved it and we can just re-raise: - raise self - - -class RemoteProtocolError(ProtocolError): - pass - - -def validate( - regex: Pattern[bytes], data: bytes, msg: str = "malformed data", *format_args: Any -) -> Dict[str, bytes]: - match = regex.fullmatch(data) - if not match: - if format_args: - msg = msg.format(*format_args) - raise LocalProtocolError(msg) - return match.groupdict() - - -# Sentinel values -# -# - Inherit identity-based comparison and hashing from object -# - Have a nice repr -# - Have a *bonus property*: type(sentinel) is sentinel -# -# The bonus property is useful if you want to take the return value from -# next_event() and do some sort of dispatch based on type(event). - -_T_Sentinel = TypeVar("_T_Sentinel", bound="Sentinel") - - -class Sentinel(type): - def __new__( - cls: Type[_T_Sentinel], - name: str, - bases: Tuple[type, ...], - namespace: Dict[str, Any], - **kwds: Any - ) -> _T_Sentinel: - assert bases == (Sentinel,) - v = super().__new__(cls, name, bases, namespace, **kwds) - v.__class__ = v # type: ignore - return v - - def __repr__(self) -> str: - return self.__name__ - - -# Used for methods, request targets, HTTP versions, header names, and header -# values. Accepts ascii-strings, or bytes/bytearray/memoryview/..., and always -# returns bytes. -def bytesify(s: Union[bytes, bytearray, memoryview, int, str]) -> bytes: - # Fast-path: - if type(s) is bytes: - return s - if isinstance(s, str): - s = s.encode("ascii") - if isinstance(s, int): - raise TypeError("expected bytes-like object, not int") - return bytes(s) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_version.py deleted file mode 100644 index 76e7327..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_version.py +++ /dev/null @@ -1,16 +0,0 @@ -# This file must be kept very simple, because it is consumed from several -# places -- it is imported by h11/__init__.py, execfile'd by setup.py, etc. - -# We use a simple scheme: -# 1.0.0 -> 1.0.0+dev -> 1.1.0 -> 1.1.0+dev -# where the +dev versions are never released into the wild, they're just what -# we stick into the VCS in between releases. -# -# This is compatible with PEP 440: -# http://legacy.python.org/dev/peps/pep-0440/ -# via the use of the "local suffix" "+dev", which is disallowed on index -# servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we -# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* -# 1.0.0.) - -__version__ = "0.16.0" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_writers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_writers.py deleted file mode 100644 index 939cdb9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/_writers.py +++ /dev/null @@ -1,145 +0,0 @@ -# Code to read HTTP data -# -# Strategy: each writer takes an event + a write-some-bytes function, which is -# calls. -# -# WRITERS is a dict describing how to pick a reader. It maps states to either: -# - a writer -# - or, for body writers, a dict of framin-dependent writer factories - -from typing import Any, Callable, Dict, List, Tuple, Type, Union - -from ._events import Data, EndOfMessage, Event, InformationalResponse, Request, Response -from ._headers import Headers -from ._state import CLIENT, IDLE, SEND_BODY, SEND_RESPONSE, SERVER -from ._util import LocalProtocolError, Sentinel - -__all__ = ["WRITERS"] - -Writer = Callable[[bytes], Any] - - -def write_headers(headers: Headers, write: Writer) -> None: - # "Since the Host field-value is critical information for handling a - # request, a user agent SHOULD generate Host as the first header field - # following the request-line." - RFC 7230 - raw_items = headers._full_items - for raw_name, name, value in raw_items: - if name == b"host": - write(b"%s: %s\r\n" % (raw_name, value)) - for raw_name, name, value in raw_items: - if name != b"host": - write(b"%s: %s\r\n" % (raw_name, value)) - write(b"\r\n") - - -def write_request(request: Request, write: Writer) -> None: - if request.http_version != b"1.1": - raise LocalProtocolError("I only send HTTP/1.1") - write(b"%s %s HTTP/1.1\r\n" % (request.method, request.target)) - write_headers(request.headers, write) - - -# Shared between InformationalResponse and Response -def write_any_response( - response: Union[InformationalResponse, Response], write: Writer -) -> None: - if response.http_version != b"1.1": - raise LocalProtocolError("I only send HTTP/1.1") - status_bytes = str(response.status_code).encode("ascii") - # We don't bother sending ascii status messages like "OK"; they're - # optional and ignored by the protocol. (But the space after the numeric - # status code is mandatory.) - # - # XX FIXME: could at least make an effort to pull out the status message - # from stdlib's http.HTTPStatus table. Or maybe just steal their enums - # (either by import or copy/paste). We already accept them as status codes - # since they're of type IntEnum < int. - write(b"HTTP/1.1 %s %s\r\n" % (status_bytes, response.reason)) - write_headers(response.headers, write) - - -class BodyWriter: - def __call__(self, event: Event, write: Writer) -> None: - if type(event) is Data: - self.send_data(event.data, write) - elif type(event) is EndOfMessage: - self.send_eom(event.headers, write) - else: # pragma: no cover - assert False - - def send_data(self, data: bytes, write: Writer) -> None: - pass - - def send_eom(self, headers: Headers, write: Writer) -> None: - pass - - -# -# These are all careful not to do anything to 'data' except call len(data) and -# write(data). This allows us to transparently pass-through funny objects, -# like placeholder objects referring to files on disk that will be sent via -# sendfile(2). -# -class ContentLengthWriter(BodyWriter): - def __init__(self, length: int) -> None: - self._length = length - - def send_data(self, data: bytes, write: Writer) -> None: - self._length -= len(data) - if self._length < 0: - raise LocalProtocolError("Too much data for declared Content-Length") - write(data) - - def send_eom(self, headers: Headers, write: Writer) -> None: - if self._length != 0: - raise LocalProtocolError("Too little data for declared Content-Length") - if headers: - raise LocalProtocolError("Content-Length and trailers don't mix") - - -class ChunkedWriter(BodyWriter): - def send_data(self, data: bytes, write: Writer) -> None: - # if we encoded 0-length data in the naive way, it would look like an - # end-of-message. - if not data: - return - write(b"%x\r\n" % len(data)) - write(data) - write(b"\r\n") - - def send_eom(self, headers: Headers, write: Writer) -> None: - write(b"0\r\n") - write_headers(headers, write) - - -class Http10Writer(BodyWriter): - def send_data(self, data: bytes, write: Writer) -> None: - write(data) - - def send_eom(self, headers: Headers, write: Writer) -> None: - if headers: - raise LocalProtocolError("can't send trailers to HTTP/1.0 client") - # no need to close the socket ourselves, that will be taken care of by - # Connection: close machinery - - -WritersType = Dict[ - Union[Tuple[Type[Sentinel], Type[Sentinel]], Type[Sentinel]], - Union[ - Dict[str, Type[BodyWriter]], - Callable[[Union[InformationalResponse, Response], Writer], None], - Callable[[Request, Writer], None], - ], -] - -WRITERS: WritersType = { - (CLIENT, IDLE): write_request, - (SERVER, IDLE): write_any_response, - (SERVER, SEND_RESPONSE): write_any_response, - SEND_BODY: { - "chunked": ChunkedWriter, - "content-length": ContentLengthWriter, - "http/1.0": Http10Writer, - }, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/h11/py.typed deleted file mode 100644 index f5642f7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/h11/py.typed +++ /dev/null @@ -1 +0,0 @@ -Marker diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/METADATA deleted file mode 100644 index 5a74ddb..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/METADATA +++ /dev/null @@ -1,131 +0,0 @@ -Metadata-Version: 2.4 -Name: httptools -Version: 0.8.0 -Summary: A collection of framework independent HTTP protocol utils. -Author-email: Yury Selivanov -License-Expression: MIT -Project-URL: Homepage, https://github.com/MagicStack/httptools -Platform: macOS -Platform: POSIX -Platform: Windows -Classifier: Intended Audience :: Developers -Classifier: Programming Language :: Python :: 3 -Classifier: Operating System :: POSIX -Classifier: Operating System :: MacOS :: MacOS X -Classifier: Environment :: Web Environment -Classifier: Development Status :: 5 - Production/Stable -Requires-Python: >=3.9 -Description-Content-Type: text/markdown -License-File: LICENSE -License-File: vendor/http-parser/LICENSE-MIT -License-File: vendor/llhttp/LICENSE -Dynamic: license-file -Dynamic: platform - -![Tests](https://github.com/MagicStack/httptools/workflows/Tests/badge.svg) - -httptools is a Python binding for the nodejs HTTP parser. - -The package is available on PyPI: `pip install httptools`. - - -# APIs - -httptools contains two classes `httptools.HttpRequestParser`, -`httptools.HttpResponseParser` (fulfilled through -[llhttp](https://github.com/nodejs/llhttp)) and a function for -parsing URLs `httptools.parse_url` (through -[http-parse](https://github.com/nodejs/http-parser) for now). -See unittests for examples. - - -```python - -class HttpRequestParser: - - def __init__(self, protocol): - """HttpRequestParser - - protocol -- a Python object with the following methods - (all optional): - - - on_message_begin() - - on_url(url: bytes) - - on_header(name: bytes, value: bytes) - - on_headers_complete() - - on_body(body: bytes) - - on_message_complete() - - on_chunk_header() - - on_chunk_complete() - - on_status(status: bytes) - """ - - def get_http_version(self) -> str: - """Return an HTTP protocol version.""" - - def should_keep_alive(self) -> bool: - """Return ``True`` if keep-alive mode is preferred.""" - - def should_upgrade(self) -> bool: - """Return ``True`` if the parsed request is a valid Upgrade request. - The method exposes a flag set just before on_headers_complete. - Calling this method earlier will only yield `False`. - """ - - def feed_data(self, data: bytes): - """Feed data to the parser. - - Will eventually trigger callbacks on the ``protocol`` - object. - - On HTTP upgrade, this method will raise an - ``HttpParserUpgrade`` exception, with its sole argument - set to the offset of the non-HTTP data in ``data``. - """ - - def get_method(self) -> bytes: - """Return HTTP request method (GET, HEAD, etc)""" - - -class HttpResponseParser: - - """Has all methods except ``get_method()`` that - HttpRequestParser has.""" - - def get_status_code(self) -> int: - """Return the status code of the HTTP response""" - - -def parse_url(url: bytes): - """Parse URL strings into a structured Python object. - - Returns an instance of ``httptools.URL`` class with the - following attributes: - - - schema: bytes - - host: bytes - - port: int - - path: bytes - - query: bytes - - fragment: bytes - - userinfo: bytes - """ -``` - - -# Development - -1. Clone this repository with - `git clone --recursive git@github.com:MagicStack/httptools.git` - -2. Create a virtual environment with Python 3: - `python3 -m venv envname` - -3. Activate the environment with `source envname/bin/activate` - -4. Run `make` and `make test`. - - -# License - -MIT. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/RECORD deleted file mode 100644 index 5656c8f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/RECORD +++ /dev/null @@ -1,28 +0,0 @@ -httptools-0.8.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -httptools-0.8.0.dist-info/METADATA,sha256=e1wCMVgLWJ53IbER83MkJ28qWFvC0nrt1nKX4Mm0vag,3532 -httptools-0.8.0.dist-info/RECORD,, -httptools-0.8.0.dist-info/WHEEL,sha256=4c1Ul6vfnCgZaBRli2f7a6lLDEF_8BHePSZeyb7s8cY,186 -httptools-0.8.0.dist-info/licenses/LICENSE,sha256=9Fc-fLdnZ0X7W402-lSKqT45HPtoct2s1lEwxF6mqS0,1093 -httptools-0.8.0.dist-info/licenses/vendor/http-parser/LICENSE-MIT,sha256=eea6i2h8tUeGIHNCubb87grBAhhFPtkAm4TZSbIjPMA,1077 -httptools-0.8.0.dist-info/licenses/vendor/llhttp/LICENSE,sha256=YoFo1ou1qKF-C777O9dOMm4e3CBYPXb1L0V8gskhhn0,1069 -httptools-0.8.0.dist-info/top_level.txt,sha256=APjJKTbZcj0OQ4fdgf2eTCk82nK1n2BFXOD7ky41MPY,10 -httptools/__init__.py,sha256=5FrvIRB4KWQy9MO7fXTzhFIBVQ_geDUAcP9hB94MHRY,724 -httptools/__pycache__/__init__.cpython-311.pyc,, -httptools/__pycache__/_version.cpython-311.pyc,, -httptools/_version.py,sha256=jz9ncH6Q_1sypkwuNRFyIyKs9DNz63aK9VTDq7TYxe8,575 -httptools/parser/__init__.py,sha256=ikrHsTTc_H41IFyhPUgfHYRuDogVjV5nsopNTCOGKOY,676 -httptools/parser/__pycache__/__init__.cpython-311.pyc,, -httptools/parser/__pycache__/errors.cpython-311.pyc,, -httptools/parser/__pycache__/protocol.cpython-311.pyc,, -httptools/parser/cparser.pxd,sha256=4qBxnma83Vz86Z9sOZRxjqYj20A-aLSWVGXZgTVLJqE,4977 -httptools/parser/errors.py,sha256=ZVrtN1smPIb_opQ2Ud3uCbGlNLMlECYM2-6S7r5LnHs,566 -httptools/parser/parser.cpython-311-x86_64-linux-gnu.so,sha256=5UPIn-EGx0dDJi5XrVhAz5hu_F6qSi9P9JXFxxBnMQw,1034720 -httptools/parser/parser.pyi,sha256=crxDQJZEXeHzy6Qwn210KO57Dzrvhn9RYuMqn8wJYLo,2157 -httptools/parser/parser.pyx,sha256=x0BUY9EzHNKCDaw-U8bkZ1MaKGtrOQ8iVCm1IuOtEQI,15140 -httptools/parser/protocol.py,sha256=iHq_x2zO8L_jx0-qiVIopwz2GUZUeB4_PLPzE2kWdzY,586 -httptools/parser/python.pxd,sha256=zWCdGZh34fyQNt3BUHIUjPqY8a5sodRUkfdABxqYHgQ,138 -httptools/parser/url_cparser.pxd,sha256=X5dDI8A7T0l5HL_Czt0mTs0l_d2lXnUDHx1TN8LeiCM,779 -httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so,sha256=PdOwKz-k39KJPlhoQx9HQdBpBLbsnyTCCjgo-1Y323k,458056 -httptools/parser/url_parser.pyi,sha256=P8tHf5tD3HYzV9eBvT1UrPpTNyE57sKG1hMFCd0g1Sc,292 -httptools/parser/url_parser.pyx,sha256=7n2ElLbWFM2ceVA8w0pVo5JgtnkL2xo2OqIRe_ngIMg,4235 -httptools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/WHEEL deleted file mode 100644 index 3ee3865..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/WHEEL +++ /dev/null @@ -1,7 +0,0 @@ -Wheel-Version: 1.0 -Generator: setuptools (82.0.1) -Root-Is-Purelib: false -Tag: cp311-cp311-manylinux_2_5_x86_64 -Tag: cp311-cp311-manylinux1_x86_64 -Tag: cp311-cp311-manylinux_2_28_x86_64 - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/LICENSE deleted file mode 100644 index 79a03ca..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License - -Copyright (c) 2015 MagicStack Inc. http://magic.io - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/http-parser/LICENSE-MIT b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/http-parser/LICENSE-MIT deleted file mode 100644 index 1ec0ab4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/http-parser/LICENSE-MIT +++ /dev/null @@ -1,19 +0,0 @@ -Copyright Joyent, Inc. and other Node contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/llhttp/LICENSE b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/llhttp/LICENSE deleted file mode 100644 index 23682c0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/licenses/vendor/llhttp/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -MIT License - -Copyright © 2018 Fedor Indutny - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/top_level.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/top_level.txt deleted file mode 100644 index bef3b40..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools-0.8.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -httptools diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__init__.py deleted file mode 100644 index 8b7b327..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__init__.py +++ /dev/null @@ -1,35 +0,0 @@ -from . import parser -from .parser import ( - HTTPProtocol, - HttpRequestParser, - HttpResponseParser, - HttpParserError, - HttpParserCallbackError, - HttpParserInvalidStatusError, - HttpParserInvalidMethodError, - HttpParserInvalidURLError, - HttpParserUpgrade, - parse_url, -) - -from ._version import __version__ - -__all__ = ( - "parser", - # protocol - "HTTPProtocol", - # parser - "HttpRequestParser", - "HttpResponseParser", - # errors - "HttpParserError", - "HttpParserCallbackError", - "HttpParserInvalidStatusError", - "HttpParserInvalidMethodError", - "HttpParserInvalidURLError", - "HttpParserUpgrade", - # url parser - "parse_url", - # version - "__version__", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 873bd82..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc deleted file mode 100644 index 499571e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/_version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/_version.py deleted file mode 100644 index b8b0ad2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/_version.py +++ /dev/null @@ -1,13 +0,0 @@ -# This file MUST NOT contain anything but the __version__ assignment. -# -# When making a release, change the value of __version__ -# to an appropriate value, and open a pull request against -# the correct branch (master if making a new feature release). -# The commit message MUST contain a properly formatted release -# log, and the commit must be signed. -# -# The release automation will: build and test the packages for the -# supported platforms, publish the packages on PyPI, merge the PR -# to the target branch, create a Git tag pointing to the commit. - -__version__ = '0.8.0' diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__init__.py deleted file mode 100644 index 6f57517..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -from .protocol import HTTPProtocol -from .parser import HttpRequestParser, HttpResponseParser # NoQA -from .errors import ( - HttpParserError, - HttpParserCallbackError, - HttpParserInvalidStatusError, - HttpParserInvalidMethodError, - HttpParserInvalidURLError, - HttpParserUpgrade, -) -from .url_parser import parse_url - -__all__ = ( - # protocol - "HTTPProtocol", - # parser - "HttpRequestParser", - "HttpResponseParser", - # errors - "HttpParserError", - "HttpParserCallbackError", - "HttpParserInvalidStatusError", - "HttpParserInvalidMethodError", - "HttpParserInvalidURLError", - "HttpParserUpgrade", - # url_parser - "parse_url", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9da6861..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc deleted file mode 100644 index 81f7d2f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/protocol.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/protocol.cpython-311.pyc deleted file mode 100644 index 852c4e7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/protocol.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/cparser.pxd b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/cparser.pxd deleted file mode 100644 index 3281864..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/cparser.pxd +++ /dev/null @@ -1,167 +0,0 @@ -from libc.stdint cimport int32_t, uint8_t, uint16_t, uint64_t - - -cdef extern from "llhttp.h": - struct llhttp__internal_s: - int32_t _index - void *_span_pos0 - void *_span_cb0 - int32_t error - const char *reason - const char *error_pos - void *data - void *_current - uint64_t content_length - uint8_t type - uint8_t method - uint8_t http_major - uint8_t http_minor - uint8_t header_state - uint16_t flags - uint8_t upgrade - uint16_t status_code - uint8_t finish - void *settings - ctypedef llhttp__internal_s llhttp__internal_t - ctypedef llhttp__internal_t llhttp_t - - ctypedef int (*llhttp_data_cb) (llhttp_t*, - const char *at, - size_t length) except -1 - - ctypedef int (*llhttp_cb) (llhttp_t*) except -1 - - struct llhttp_settings_s: - llhttp_cb on_message_begin - llhttp_data_cb on_url - llhttp_data_cb on_status - llhttp_data_cb on_header_field - llhttp_data_cb on_header_value - llhttp_cb on_headers_complete - llhttp_data_cb on_body - llhttp_cb on_message_complete - llhttp_cb on_chunk_header - llhttp_cb on_chunk_complete - ctypedef llhttp_settings_s llhttp_settings_t - - enum llhttp_type: - HTTP_BOTH, - HTTP_REQUEST, - HTTP_RESPONSE - ctypedef llhttp_type llhttp_type_t - - enum llhttp_errno: - HPE_OK, - HPE_INTERNAL, - HPE_STRICT, - HPE_LF_EXPECTED, - HPE_UNEXPECTED_CONTENT_LENGTH, - HPE_CLOSED_CONNECTION, - HPE_INVALID_METHOD, - HPE_INVALID_URL, - HPE_INVALID_CONSTANT, - HPE_INVALID_VERSION, - HPE_INVALID_HEADER_TOKEN, - HPE_INVALID_CONTENT_LENGTH, - HPE_INVALID_CHUNK_SIZE, - HPE_INVALID_STATUS, - HPE_INVALID_EOF_STATE, - HPE_INVALID_TRANSFER_ENCODING, - HPE_CB_MESSAGE_BEGIN, - HPE_CB_HEADERS_COMPLETE, - HPE_CB_MESSAGE_COMPLETE, - HPE_CB_CHUNK_HEADER, - HPE_CB_CHUNK_COMPLETE, - HPE_PAUSED, - HPE_PAUSED_UPGRADE, - HPE_USER - ctypedef llhttp_errno llhttp_errno_t - - enum llhttp_flags: - F_CONNECTION_KEEP_ALIVE, - F_CONNECTION_CLOSE, - F_CONNECTION_UPGRADE, - F_CHUNKED, - F_UPGRADE, - F_CONTENT_LENGTH, - F_SKIPBODY, - F_TRAILING, - F_LENIENT, - F_TRANSFER_ENCODING - ctypedef llhttp_flags llhttp_flags_t - - enum llhttp_method: - HTTP_DELETE, - HTTP_GET, - HTTP_HEAD, - HTTP_POST, - HTTP_PUT, - HTTP_CONNECT, - HTTP_OPTIONS, - HTTP_TRACE, - HTTP_COPY, - HTTP_LOCK, - HTTP_MKCOL, - HTTP_MOVE, - HTTP_PROPFIND, - HTTP_PROPPATCH, - HTTP_SEARCH, - HTTP_UNLOCK, - HTTP_BIND, - HTTP_REBIND, - HTTP_UNBIND, - HTTP_ACL, - HTTP_REPORT, - HTTP_MKACTIVITY, - HTTP_CHECKOUT, - HTTP_MERGE, - HTTP_MSEARCH, - HTTP_NOTIFY, - HTTP_SUBSCRIBE, - HTTP_UNSUBSCRIBE, - HTTP_PATCH, - HTTP_PURGE, - HTTP_MKCALENDAR, - HTTP_LINK, - HTTP_UNLINK, - HTTP_SOURCE, - HTTP_PRI, - HTTP_DESCRIBE, - HTTP_ANNOUNCE, - HTTP_SETUP, - HTTP_PLAY, - HTTP_PAUSE, - HTTP_TEARDOWN, - HTTP_GET_PARAMETER, - HTTP_SET_PARAMETER, - HTTP_REDIRECT, - HTTP_RECORD, - HTTP_FLUSH - ctypedef llhttp_method llhttp_method_t - - void llhttp_init(llhttp_t* parser, llhttp_type_t type, const llhttp_settings_t* settings) - - void llhttp_settings_init(llhttp_settings_t* settings) - - llhttp_errno_t llhttp_execute(llhttp_t* parser, const char* data, size_t len) - - void llhttp_resume_after_upgrade(llhttp_t* parser) - - int llhttp_should_keep_alive(const llhttp_t* parser) - - const char* llhttp_get_error_pos(const llhttp_t* parser) - const char* llhttp_get_error_reason(const llhttp_t* parser) - const char* llhttp_method_name(llhttp_method_t method) - - void llhttp_set_error_reason(llhttp_t* parser, const char* reason); - - void llhttp_set_lenient_headers(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_chunked_length(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_keep_alive(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_transfer_encoding(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_version(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_data_after_close(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_optional_lf_after_cr(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_optional_cr_before_lf(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_optional_crlf_after_chunk(llhttp_t* parser, bint enabled); - void llhttp_set_lenient_spaces_after_chunk_size(llhttp_t* parser, bint enabled); diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/errors.py b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/errors.py deleted file mode 100644 index bc24c46..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/errors.py +++ /dev/null @@ -1,30 +0,0 @@ -__all__ = ('HttpParserError', - 'HttpParserCallbackError', - 'HttpParserInvalidStatusError', - 'HttpParserInvalidMethodError', - 'HttpParserInvalidURLError', - 'HttpParserUpgrade') - - -class HttpParserError(Exception): - pass - - -class HttpParserCallbackError(HttpParserError): - pass - - -class HttpParserInvalidStatusError(HttpParserError): - pass - - -class HttpParserInvalidMethodError(HttpParserError): - pass - - -class HttpParserInvalidURLError(HttpParserError): - pass - - -class HttpParserUpgrade(Exception): - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so deleted file mode 100755 index c95ab43..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyi b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyi deleted file mode 100644 index 8afd006..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyi +++ /dev/null @@ -1,58 +0,0 @@ -from array import array -from .protocol import HTTPProtocol - -class HttpParser: - def __init__(self, protocol: HTTPProtocol | object) -> None: - """The HTTP parser. - - Args: - protocol (HTTPProtocol): Callback interface for the parser. - """ - - def set_dangerous_leniencies( - self, - lenient_headers: bool | None = None, - lenient_chunked_length: bool | None = None, - lenient_keep_alive: bool | None = None, - lenient_transfer_encoding: bool | None = None, - lenient_version: bool | None = None, - lenient_data_after_close: bool | None = None, - lenient_optional_lf_after_cr: bool | None = None, - lenient_optional_cr_before_lf: bool | None = None, - lenient_optional_crlf_after_chunk: bool | None = None, - lenient_spaces_after_chunk_size: bool | None = None, - ) -> None: - """Set dangerous leniencies for the parser.""" - - def get_http_version(self) -> str: - """Retrieve the HTTP protocol version e.g. "1.1".""" - - def should_keep_alive(self) -> bool: - """Return `True` if keep-alive mode is preferred.""" - - def should_upgrade(self) -> bool: - """Return `True` if the parsed request is a valid Upgrade request. - The method exposes a flag set just before on_headers_complete. - Calling this method earlier will only yield `False`.""" - - def feed_data(self, data: bytes | bytearray | memoryview | array[int]) -> None: - """Feed data to the parser. - - Will eventually trigger callbacks on the ``protocol`` object. - - On HTTP upgrade, this method will raise an - ``HttpParserUpgrade`` exception, with its sole argument - set to the offset of the non-HTTP data in ``data``. - """ - -class HttpRequestParser(HttpParser): - """Used for parsing http requests from the server side.""" - - def get_method(self) -> bytes: - """Retrieve the HTTP method of the request.""" - -class HttpResponseParser(HttpParser): - """Used for parsing http responses from the client side.""" - - def get_status_code(self) -> int: - """Retrieve the status code of the HTTP response.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyx b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyx deleted file mode 100644 index 2fa5026..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/parser.pyx +++ /dev/null @@ -1,436 +0,0 @@ -#cython: language_level=3 - -from __future__ import print_function -from typing import Optional - -from cpython.mem cimport PyMem_Malloc, PyMem_Free -from cpython cimport PyObject_GetBuffer, PyBuffer_Release, PyBUF_SIMPLE, \ - Py_buffer, PyBytes_AsString - -from .python cimport PyMemoryView_Check, PyMemoryView_GET_BUFFER - - -from .errors import (HttpParserError, - HttpParserCallbackError, - HttpParserInvalidStatusError, - HttpParserInvalidMethodError, - HttpParserInvalidURLError, - HttpParserUpgrade) - -cimport cython -from . cimport cparser - - -__all__ = ('HttpRequestParser', 'HttpResponseParser') - - -@cython.internal -cdef class HttpParser: - - cdef: - cparser.llhttp_t* _cparser - cparser.llhttp_settings_t* _csettings - - bytes _current_header_name - bytes _current_header_value - - _proto_on_url, _proto_on_status, _proto_on_body, \ - _proto_on_header, _proto_on_headers_complete, \ - _proto_on_message_complete, _proto_on_chunk_header, \ - _proto_on_chunk_complete, _proto_on_message_begin - - object _last_error - - Py_buffer py_buf - - def __cinit__(self): - self._cparser = \ - PyMem_Malloc(sizeof(cparser.llhttp_t)) - if self._cparser is NULL: - raise MemoryError() - - self._csettings = \ - PyMem_Malloc(sizeof(cparser.llhttp_settings_t)) - if self._csettings is NULL: - raise MemoryError() - - def __dealloc__(self): - PyMem_Free(self._cparser) - PyMem_Free(self._csettings) - - cdef _init(self, protocol, cparser.llhttp_type_t mode): - cparser.llhttp_settings_init(self._csettings) - - cparser.llhttp_init(self._cparser, mode, self._csettings) - self._cparser.data = self - - self._current_header_name = None - self._current_header_value = None - - self._proto_on_header = getattr(protocol, 'on_header', None) - if self._proto_on_header is not None: - self._csettings.on_header_field = cb_on_header_field - self._csettings.on_header_value = cb_on_header_value - self._proto_on_headers_complete = getattr( - protocol, 'on_headers_complete', None) - self._csettings.on_headers_complete = cb_on_headers_complete - - self._proto_on_body = getattr(protocol, 'on_body', None) - if self._proto_on_body is not None: - self._csettings.on_body = cb_on_body - - self._proto_on_message_begin = getattr( - protocol, 'on_message_begin', None) - if self._proto_on_message_begin is not None: - self._csettings.on_message_begin = cb_on_message_begin - - self._proto_on_message_complete = getattr( - protocol, 'on_message_complete', None) - if self._proto_on_message_complete is not None: - self._csettings.on_message_complete = cb_on_message_complete - - self._proto_on_chunk_header = getattr( - protocol, 'on_chunk_header', None) - self._csettings.on_chunk_header = cb_on_chunk_header - - self._proto_on_chunk_complete = getattr( - protocol, 'on_chunk_complete', None) - self._csettings.on_chunk_complete = cb_on_chunk_complete - - self._last_error = None - - cdef _maybe_call_on_header(self): - if self._current_header_value is not None: - current_header_name = self._current_header_name - current_header_value = self._current_header_value - - self._current_header_name = self._current_header_value = None - - if self._proto_on_header is not None: - self._proto_on_header(current_header_name, - current_header_value) - - cdef _on_header_field(self, bytes field): - self._maybe_call_on_header() - if self._current_header_name is None: - self._current_header_name = field - else: - self._current_header_name += field - - cdef _on_header_value(self, bytes val): - if self._current_header_value is None: - self._current_header_value = val - else: - # This is unlikely, as mostly HTTP headers are one-line - self._current_header_value += val - - cdef _on_headers_complete(self): - self._maybe_call_on_header() - - if self._proto_on_headers_complete is not None: - self._proto_on_headers_complete() - - cdef _on_chunk_header(self): - if (self._current_header_value is not None or - self._current_header_name is not None): - raise HttpParserError('invalid headers state') - - if self._proto_on_chunk_header is not None: - self._proto_on_chunk_header() - - cdef _on_chunk_complete(self): - self._maybe_call_on_header() - - if self._proto_on_chunk_complete is not None: - self._proto_on_chunk_complete() - - ### Public API ### - - def set_dangerous_leniencies( - self, - lenient_headers: Optional[bool] = None, - lenient_chunked_length: Optional[bool] = None, - lenient_keep_alive: Optional[bool] = None, - lenient_transfer_encoding: Optional[bool] = None, - lenient_version: Optional[bool] = None, - lenient_data_after_close: Optional[bool] = None, - lenient_optional_lf_after_cr: Optional[bool] = None, - lenient_optional_cr_before_lf: Optional[bool] = None, - lenient_optional_crlf_after_chunk: Optional[bool] = None, - lenient_spaces_after_chunk_size: Optional[bool] = None, - ): - cdef cparser.llhttp_t* parser = self._cparser - if lenient_headers is not None: - cparser.llhttp_set_lenient_headers( - parser, lenient_headers) - if lenient_chunked_length is not None: - cparser.llhttp_set_lenient_chunked_length( - parser, lenient_chunked_length) - if lenient_keep_alive is not None: - cparser.llhttp_set_lenient_keep_alive( - parser, lenient_keep_alive) - if lenient_transfer_encoding is not None: - cparser.llhttp_set_lenient_transfer_encoding( - parser, lenient_transfer_encoding) - if lenient_version is not None: - cparser.llhttp_set_lenient_version( - parser, lenient_version) - if lenient_data_after_close is not None: - cparser.llhttp_set_lenient_data_after_close( - parser, lenient_data_after_close) - if lenient_optional_lf_after_cr is not None: - cparser.llhttp_set_lenient_optional_lf_after_cr( - parser, lenient_optional_lf_after_cr) - if lenient_optional_cr_before_lf is not None: - cparser.llhttp_set_lenient_optional_cr_before_lf( - parser, lenient_optional_cr_before_lf) - if lenient_optional_crlf_after_chunk is not None: - cparser.llhttp_set_lenient_optional_crlf_after_chunk( - parser, lenient_optional_crlf_after_chunk) - if lenient_spaces_after_chunk_size is not None: - cparser.llhttp_set_lenient_spaces_after_chunk_size( - parser, lenient_spaces_after_chunk_size) - - def get_http_version(self): - cdef cparser.llhttp_t* parser = self._cparser - return '{}.{}'.format(parser.http_major, parser.http_minor) - - def should_keep_alive(self): - return bool(cparser.llhttp_should_keep_alive(self._cparser)) - - def should_upgrade(self): - cdef cparser.llhttp_t* parser = self._cparser - return bool(parser.upgrade) - - def feed_data(self, data): - cdef: - size_t data_len - cparser.llhttp_errno_t err - Py_buffer *buf - bint owning_buf = False - const char* err_pos - - if PyMemoryView_Check(data): - buf = PyMemoryView_GET_BUFFER(data) - data_len = buf.len - err = cparser.llhttp_execute( - self._cparser, - buf.buf, - data_len) - - else: - buf = &self.py_buf - PyObject_GetBuffer(data, buf, PyBUF_SIMPLE) - owning_buf = True - data_len = buf.len - - err = cparser.llhttp_execute( - self._cparser, - buf.buf, - data_len) - - try: - if self._cparser.upgrade == 1 and err == cparser.HPE_PAUSED_UPGRADE: - err_pos = cparser.llhttp_get_error_pos(self._cparser) - - # Immediately free the parser from "error" state, simulating - # http-parser behavior here because 1) we never had the API to - # allow users manually "resume after upgrade", and 2) the use - # case for resuming parsing is very rare. - cparser.llhttp_resume_after_upgrade(self._cparser) - - # The err_pos here is specific for the input buf. So if we ever - # switch to the llhttp behavior (re-raise HttpParserUpgrade for - # successive calls to feed_data() until resume_after_upgrade is - # called), we have to store the result and keep our own state. - raise HttpParserUpgrade(err_pos - buf.buf) - finally: - if owning_buf: - PyBuffer_Release(buf) - - if err != cparser.HPE_OK: - ex = parser_error_from_errno( - self._cparser, - self._cparser.error) - if isinstance(ex, HttpParserCallbackError): - if self._last_error is not None: - ex.__context__ = self._last_error - self._last_error = None - raise ex - - -cdef class HttpRequestParser(HttpParser): - - def __init__(self, protocol): - self._init(protocol, cparser.HTTP_REQUEST) - - self._proto_on_url = getattr(protocol, 'on_url', None) - if self._proto_on_url is not None: - self._csettings.on_url = cb_on_url - - def get_method(self): - cdef cparser.llhttp_t* parser = self._cparser - return cparser.llhttp_method_name( parser.method) - - -cdef class HttpResponseParser(HttpParser): - - def __init__(self, protocol): - self._init(protocol, cparser.HTTP_RESPONSE) - - self._proto_on_status = getattr(protocol, 'on_status', None) - if self._proto_on_status is not None: - self._csettings.on_status = cb_on_status - - def get_status_code(self): - cdef cparser.llhttp_t* parser = self._cparser - return parser.status_code - - -cdef int cb_on_message_begin(cparser.llhttp_t* parser) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._proto_on_message_begin() - except BaseException as ex: - pyparser._last_error = ex - return -1 - else: - return 0 - - -cdef int cb_on_url(cparser.llhttp_t* parser, - const char *at, size_t length) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._proto_on_url(at[:length]) - except BaseException as ex: - cparser.llhttp_set_error_reason(parser, "`on_url` callback error") - pyparser._last_error = ex - return cparser.HPE_USER - else: - return 0 - - -cdef int cb_on_status(cparser.llhttp_t* parser, - const char *at, size_t length) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._proto_on_status(at[:length]) - except BaseException as ex: - cparser.llhttp_set_error_reason(parser, "`on_status` callback error") - pyparser._last_error = ex - return cparser.HPE_USER - else: - return 0 - - -cdef int cb_on_header_field(cparser.llhttp_t* parser, - const char *at, size_t length) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._on_header_field(at[:length]) - except BaseException as ex: - cparser.llhttp_set_error_reason(parser, "`on_header_field` callback error") - pyparser._last_error = ex - return cparser.HPE_USER - else: - return 0 - - -cdef int cb_on_header_value(cparser.llhttp_t* parser, - const char *at, size_t length) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._on_header_value(at[:length]) - except BaseException as ex: - cparser.llhttp_set_error_reason(parser, "`on_header_value` callback error") - pyparser._last_error = ex - return cparser.HPE_USER - else: - return 0 - - -cdef int cb_on_headers_complete(cparser.llhttp_t* parser) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._on_headers_complete() - except BaseException as ex: - pyparser._last_error = ex - return -1 - else: - if pyparser._cparser.upgrade: - return 1 - else: - return 0 - - -cdef int cb_on_body(cparser.llhttp_t* parser, - const char *at, size_t length) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._proto_on_body(at[:length]) - except BaseException as ex: - cparser.llhttp_set_error_reason(parser, "`on_body` callback error") - pyparser._last_error = ex - return cparser.HPE_USER - else: - return 0 - - -cdef int cb_on_message_complete(cparser.llhttp_t* parser) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._proto_on_message_complete() - except BaseException as ex: - pyparser._last_error = ex - return -1 - else: - return 0 - - -cdef int cb_on_chunk_header(cparser.llhttp_t* parser) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._on_chunk_header() - except BaseException as ex: - pyparser._last_error = ex - return -1 - else: - return 0 - - -cdef int cb_on_chunk_complete(cparser.llhttp_t* parser) except -1: - cdef HttpParser pyparser = parser.data - try: - pyparser._on_chunk_complete() - except BaseException as ex: - pyparser._last_error = ex - return -1 - else: - return 0 - - -cdef parser_error_from_errno(cparser.llhttp_t* parser, cparser.llhttp_errno_t errno): - cdef bytes reason = cparser.llhttp_get_error_reason(parser) - - if errno in (cparser.HPE_CB_MESSAGE_BEGIN, - cparser.HPE_CB_HEADERS_COMPLETE, - cparser.HPE_CB_MESSAGE_COMPLETE, - cparser.HPE_CB_CHUNK_HEADER, - cparser.HPE_CB_CHUNK_COMPLETE, - cparser.HPE_USER): - cls = HttpParserCallbackError - - elif errno == cparser.HPE_INVALID_STATUS: - cls = HttpParserInvalidStatusError - - elif errno == cparser.HPE_INVALID_METHOD: - cls = HttpParserInvalidMethodError - - elif errno == cparser.HPE_INVALID_URL: - cls = HttpParserInvalidURLError - - else: - cls = HttpParserError - - return cls(reason.decode('latin-1')) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/protocol.py b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/protocol.py deleted file mode 100644 index ae00523..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/protocol.py +++ /dev/null @@ -1,15 +0,0 @@ -from typing import Protocol - - -class HTTPProtocol(Protocol): - """Used for providing static type-checking when parsing through the http protocol""" - - def on_message_begin(self) -> None: ... - def on_url(self, url: bytes) -> None: ... - def on_header(self, name: bytes, value: bytes) -> None: ... - def on_headers_complete(self) -> None: ... - def on_body(self, body: bytes) -> None: ... - def on_message_complete(self) -> None: ... - def on_chunk_header(self) -> None: ... - def on_chunk_complete(self) -> None: ... - def on_status(self, status: bytes) -> None: ... diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/python.pxd b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/python.pxd deleted file mode 100644 index 8e95925..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/python.pxd +++ /dev/null @@ -1,6 +0,0 @@ -cimport cpython - - -cdef extern from "Python.h": - cpython.Py_buffer* PyMemoryView_GET_BUFFER(object) - bint PyMemoryView_Check(object) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_cparser.pxd b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_cparser.pxd deleted file mode 100644 index ab9265a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_cparser.pxd +++ /dev/null @@ -1,31 +0,0 @@ -from libc.stdint cimport uint16_t - - -cdef extern from "http_parser.h": - # URL Parser - - enum http_parser_url_fields: - UF_SCHEMA = 0, - UF_HOST = 1, - UF_PORT = 2, - UF_PATH = 3, - UF_QUERY = 4, - UF_FRAGMENT = 5, - UF_USERINFO = 6, - UF_MAX = 7 - - struct http_parser_url_field_data: - uint16_t off - uint16_t len - - struct http_parser_url: - uint16_t field_set - uint16_t port - http_parser_url_field_data[UF_MAX] field_data - - void http_parser_url_init(http_parser_url *u) - - int http_parser_parse_url(const char *buf, - size_t buflen, - int is_connect, - http_parser_url *u) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so deleted file mode 100755 index b642a18..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyi b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyi deleted file mode 100644 index 5f04847..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyi +++ /dev/null @@ -1,13 +0,0 @@ -from array import array - -class URL: - schema: bytes - host: bytes - port: int - path: bytes - query: bytes - fragment: bytes - userinfo: bytes - -def parse_url(url: bytes | bytearray | memoryview | array[int]) -> URL: - """Parse a URL string into a structured Python object.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyx b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyx deleted file mode 100644 index e855b5f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/parser/url_parser.pyx +++ /dev/null @@ -1,118 +0,0 @@ -#cython: language_level=3 - -from __future__ import print_function -from cpython.mem cimport PyMem_Malloc, PyMem_Free -from cpython cimport PyObject_GetBuffer, PyBuffer_Release, PyBUF_SIMPLE, \ - Py_buffer - -from .errors import HttpParserInvalidURLError - -cimport cython -from . cimport url_cparser as uparser - -__all__ = ('parse_url',) - -DEF MAX_URL_LENGTH = (1 << 16) - 1 - -@cython.freelist(250) -cdef class URL: - cdef readonly bytes schema - cdef readonly bytes host - cdef readonly object port - cdef readonly bytes path - cdef readonly bytes query - cdef readonly bytes fragment - cdef readonly bytes userinfo - - def __cinit__(self, bytes schema, bytes host, object port, bytes path, - bytes query, bytes fragment, bytes userinfo): - - self.schema = schema - self.host = host - self.port = port - self.path = path - self.query = query - self.fragment = fragment - self.userinfo = userinfo - - def __repr__(self): - return ('' - .format(self.schema, self.host, self.port, self.path, - self.query, self.fragment, self.userinfo)) - - -def parse_url(url): - cdef: - Py_buffer py_buf - char* buf_data - uparser.http_parser_url* parsed - int res - bytes schema = None - bytes host = None - object port = None - bytes path = None - bytes query = None - bytes fragment = None - bytes userinfo = None - object result = None - int off - int ln - - parsed = \ - PyMem_Malloc(sizeof(uparser.http_parser_url)) - uparser.http_parser_url_init(parsed) - - PyObject_GetBuffer(url, &py_buf, PyBUF_SIMPLE) - try: - if py_buf.len > MAX_URL_LENGTH: - # http_parser stores URL field offsets/lengths as uint16_t, - # so URLs longer than this will cause silent truncation. - # See https://github.com/MagicStack/httptools/issues/142 - raise HttpParserInvalidURLError( - "url is too long: url length of {} bytes exceeds the " - "maximum of {} bytes".format(py_buf.len, MAX_URL_LENGTH)) - - buf_data = py_buf.buf - res = uparser.http_parser_parse_url(buf_data, py_buf.len, 0, parsed) - - if res == 0: - if parsed.field_set & (1 << uparser.UF_SCHEMA): - off = parsed.field_data[uparser.UF_SCHEMA].off - ln = parsed.field_data[uparser.UF_SCHEMA].len - schema = buf_data[off:off+ln] - - if parsed.field_set & (1 << uparser.UF_HOST): - off = parsed.field_data[uparser.UF_HOST].off - ln = parsed.field_data[uparser.UF_HOST].len - host = buf_data[off:off+ln] - - if parsed.field_set & (1 << uparser.UF_PORT): - port = parsed.port - - if parsed.field_set & (1 << uparser.UF_PATH): - off = parsed.field_data[uparser.UF_PATH].off - ln = parsed.field_data[uparser.UF_PATH].len - path = buf_data[off:off+ln] - - if parsed.field_set & (1 << uparser.UF_QUERY): - off = parsed.field_data[uparser.UF_QUERY].off - ln = parsed.field_data[uparser.UF_QUERY].len - query = buf_data[off:off+ln] - - if parsed.field_set & (1 << uparser.UF_FRAGMENT): - off = parsed.field_data[uparser.UF_FRAGMENT].off - ln = parsed.field_data[uparser.UF_FRAGMENT].len - fragment = buf_data[off:off+ln] - - if parsed.field_set & (1 << uparser.UF_USERINFO): - off = parsed.field_data[uparser.UF_USERINFO].off - ln = parsed.field_data[uparser.UF_USERINFO].len - userinfo = buf_data[off:off+ln] - - return URL(schema, host, port, path, query, fragment, userinfo) - else: - raise HttpParserInvalidURLError("invalid url {!r}".format(url)) - finally: - PyBuffer_Release(&py_buf) - PyMem_Free(parsed) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/httptools/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/METADATA deleted file mode 100644 index 6c4bf89..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/METADATA +++ /dev/null @@ -1,155 +0,0 @@ -Metadata-Version: 2.4 -Name: idna -Version: 3.18 -Summary: Internationalized Domain Names in Applications (IDNA) -Author-email: Kim Davies -Requires-Python: >=3.9 -Description-Content-Type: text/markdown -License-Expression: BSD-3-Clause -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: Intended Audience :: System Administrators -Classifier: Operating System :: OS Independent -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: 3.13 -Classifier: Programming Language :: Python :: 3.14 -Classifier: Programming Language :: Python :: Implementation :: CPython -Classifier: Programming Language :: Python :: Implementation :: PyPy -Classifier: Topic :: Internet :: Name Service (DNS) -Classifier: Topic :: Software Development :: Libraries :: Python Modules -Classifier: Topic :: Utilities -License-File: LICENSE.md -Requires-Dist: ruff >= 0.6.2 ; extra == "all" -Requires-Dist: mypy >= 1.11.2 ; extra == "all" -Requires-Dist: pytest >= 8.3.2 ; extra == "all" -Project-URL: Changelog, https://github.com/kjd/idna/blob/master/HISTORY.md -Project-URL: Issue tracker, https://github.com/kjd/idna/issues -Project-URL: Source, https://github.com/kjd/idna -Provides-Extra: all - -# Internationalized Domain Names in Applications (IDNA) - -Support for [Internationalized Domain Names in Applications -(IDNA)](https://tools.ietf.org/html/rfc5891) and [Unicode IDNA -Compatibility Processing](https://unicode.org/reports/tr46/). It -supersedes the standard library's `encodings.idna`, which only -implements the 2003 specification, offering broader script coverage and -limiting domains with known security vulnerabilities. - -## Usage - -Package may be installed from [PyPI](https://pypi.org/project/idna/) via -the typical methods (e.g. `python3 -m pip install idna`) - -For typical usage, the `encode` and `decode` functions will take a -domain name argument and perform a conversion to ASCII-compatible encoding -(known as A-labels), or to Unicode strings (known as U-labels) -respectively. - -```pycon ->>> import idna ->>> idna.encode('ドメイン.テスト') -b'xn--eckwd4c7c.xn--zckzah' ->>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) -ドメイン.テスト -``` - -Conversions can be applied at a per-label basis using the `ulabel` or -`alabel` functions for specialized use cases. - - -### Compatibility Mapping (UTS #46) - -This library provides support for [Unicode IDNA Compatibility -Processing](https://unicode.org/reports/tr46/) which normalizes input from -different potential ways a user may input a domain prior to performing the IDNA -conversion operations. This functionality, known as a -[mapping](https://tools.ietf.org/html/rfc5895), is considered by the -specification to be a local user-interface issue distinct from IDNA -conversion functionality. - -For example, "Königsgäßchen" is not a permissible label as capital letters -are not allowed. UTS 46 will convert this into lower case prior to applying -the IDNA conversion. - -```pycon ->>> import idna ->>> idna.encode('Königsgäßchen') -... -idna.core.InvalidCodepoint: Codepoint U+004B at position 1 of 'Königsgäßchen' not allowed ->>> idna.encode('Königsgäßchen', uts46=True) -b'xn--knigsgchen-b4a3dun' ->>> idna.decode('xn--knigsgchen-b4a3dun') -'königsgäßchen' -``` - -When performing a decode operation for display purposes, `decode()` -accepts a `display=True` argument that leaves any `xn--` label that -fails to decode unchanged. This is useful for user interface display -where a domain is in use, the A-label form can be presented when it -is not a valid IDN. - - -## Exceptions - -All errors raised during conversion derive from the `idna.IDNAError` -base class. The more specific exceptions are: - -* `idna.IDNABidiError` — raised when a label contains an illegal - combination of left-to-right and right-to-left characters. -* `idna.InvalidCodepoint` — raised when a label contains a codepoint - that is INVALID for IDNA. -* `idna.InvalidCodepointContext` — raised when a CONTEXTO or CONTEXTJ - codepoint appears in a position whose contextual requirements are - not satisfied. - - -## Command-line tool - -The package supports command-line usage to convert domain names -between their Unicode and ASCII-compatible forms. It can be run either -as a module (`python3 -m idna`) or, once installed (such as with `uv -tool` or `pipx`), via the `idna` script: - -```bash -$ uv tool install idna -$ idna xn--e1afmkfd.xn--p1ai -пример.рф -$ idna пример.рф -xn--e1afmkfd.xn--p1ai -``` - -Mode can be specified with `-e`/`--encode` or `-d`/`--decode`, otherwise -it will be chosen automatically based on the first input. Multiple -domains can be supplied either as arguments or through standard input. -UTS #46 mapping is applied by default, which lets the tool accept -inputs that aren't strictly valid IDNA 2008 by normalising them first, -pass `--strict` to disable UTS #46. - -Conversion failures are reported on stderr together with the -offending input; processing continues with the remaining domains and -the tool exits with a non-zero status if any conversion failed. - - -## Additional Notes - -* **Version support**. This library supports Python 3.9 and higher. - As this library serves as a low-level toolkit for a variety of - applications, we strive to support all versions of Python that are - not beyond end-of-life. - -* **Emoji**. It is an occasional request to support emoji domains in - this library. Encoding of symbols like emoji is expressly prohibited by - the IDNA technical standard, and emoji domains are broadly phased - out across the domain industry due to associated security risks. - -* **Regenerating lookup tables**. The IDNA and UTS 46 functionality - relies upon pre-calculated lookup tables, generated using the - `idna-data` script in [`tools/`](tools/README.md). - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/RECORD deleted file mode 100644 index c42105b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/RECORD +++ /dev/null @@ -1,28 +0,0 @@ -../../../bin/idna,sha256=JD5iWI1xUxjlvT7TAWNaFYL6CP9i9dEMORIShjj0NO4,266 -idna-3.18.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -idna-3.18.dist-info/METADATA,sha256=Rt_m5axGLQ9oDs2avPZugptqIzSCS02eOXmzETXK8oE,6119 -idna-3.18.dist-info/RECORD,, -idna-3.18.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 -idna-3.18.dist-info/entry_points.txt,sha256=7H3nGOHap3jnLE5e7q7Ywr9Vq8axB7WIj5-C_4N2vhw,38 -idna-3.18.dist-info/licenses/LICENSE.md,sha256=GppPDj1HmickDd1ZqRN6ZqtKD539yMphiMwL_YUYfwQ,1541 -idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868 -idna/__main__.py,sha256=4JMK66Wj4uLZTKbF-sT3LAxOsr6buig77PmOkJCRRxw,83 -idna/__pycache__/__init__.cpython-311.pyc,, -idna/__pycache__/__main__.cpython-311.pyc,, -idna/__pycache__/cli.cpython-311.pyc,, -idna/__pycache__/codec.cpython-311.pyc,, -idna/__pycache__/compat.cpython-311.pyc,, -idna/__pycache__/core.cpython-311.pyc,, -idna/__pycache__/idnadata.cpython-311.pyc,, -idna/__pycache__/intranges.cpython-311.pyc,, -idna/__pycache__/package_data.cpython-311.pyc,, -idna/__pycache__/uts46data.cpython-311.pyc,, -idna/cli.py,sha256=swqJLMNc8Uzs60KziNpbWnHuqlG3WRQwJSbo4n8xDAo,4139 -idna/codec.py,sha256=JRbo-f7pEkLdWeiH89Z72UR4VBYhvKDFrQBeNX6sRDE,5040 -idna/compat.py,sha256=AepA39ceRHxkfHP41-FvKW5Ki-f4PfUZ90RUMlCNdmo,1353 -idna/core.py,sha256=SfOr1xO3PoE0RDYx7bMciAnjiyjJPbPw_93AB5IUYOw,24685 -idna/idnadata.py,sha256=Af-mo8WBmkhAK6TyXKOQH88OX0mQNDKtdL7UWtQpppk,44862 -idna/intranges.py,sha256=g49scLSkqJtAhLmOODa7hVHriSjmb60tiTsEoocJdBI,1851 -idna/package_data.py,sha256=TeI94EqAFAFaXfBJwsOPUMLn2969uirPa-DaeaceAyU,21 -idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -idna/uts46data.py,sha256=jujNz5QqWMcJf-XYLv4X1jBvb5FlI0t6-e1mILsgbPk,234325 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/WHEEL deleted file mode 100644 index d8b9936..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/WHEEL +++ /dev/null @@ -1,4 +0,0 @@ -Wheel-Version: 1.0 -Generator: flit 3.12.0 -Root-Is-Purelib: true -Tag: py3-none-any diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/entry_points.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/entry_points.txt deleted file mode 100644 index 59ca7ac..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/entry_points.txt +++ /dev/null @@ -1,3 +0,0 @@ -[console_scripts] -idna=idna.cli:main - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/licenses/LICENSE.md b/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/licenses/LICENSE.md deleted file mode 100644 index f706835..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna-3.18.dist-info/licenses/LICENSE.md +++ /dev/null @@ -1,31 +0,0 @@ -BSD 3-Clause License - -Copyright (c) 2013-2026, Kim Davies and contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__init__.py deleted file mode 100644 index cfdc030..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__init__.py +++ /dev/null @@ -1,45 +0,0 @@ -from .core import ( - IDNABidiError, - IDNAError, - InvalidCodepoint, - InvalidCodepointContext, - alabel, - check_bidi, - check_hyphen_ok, - check_initial_combiner, - check_label, - check_nfc, - decode, - encode, - ulabel, - uts46_remap, - valid_contextj, - valid_contexto, - valid_label_length, - valid_string_length, -) -from .intranges import intranges_contain -from .package_data import __version__ - -__all__ = [ - "__version__", - "IDNABidiError", - "IDNAError", - "InvalidCodepoint", - "InvalidCodepointContext", - "alabel", - "check_bidi", - "check_hyphen_ok", - "check_initial_combiner", - "check_label", - "check_nfc", - "decode", - "encode", - "intranges_contain", - "ulabel", - "uts46_remap", - "valid_contextj", - "valid_contexto", - "valid_label_length", - "valid_string_length", -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__main__.py deleted file mode 100644 index dbdd066..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__main__.py +++ /dev/null @@ -1,6 +0,0 @@ -import sys - -from .cli import main - -if __name__ == "__main__": - sys.exit(main()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a0d2eb2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index 5a6eb10..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/cli.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/cli.cpython-311.pyc deleted file mode 100644 index a0cb840..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/cli.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/codec.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/codec.cpython-311.pyc deleted file mode 100644 index eca4faa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/codec.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/compat.cpython-311.pyc deleted file mode 100644 index f872b3c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/core.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/core.cpython-311.pyc deleted file mode 100644 index 2134192..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/core.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/idnadata.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/idnadata.cpython-311.pyc deleted file mode 100644 index af9ca84..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/idnadata.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/intranges.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/intranges.cpython-311.pyc deleted file mode 100644 index efe57f5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/intranges.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/package_data.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/package_data.cpython-311.pyc deleted file mode 100644 index ae23be8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/package_data.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/uts46data.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/uts46data.cpython-311.pyc deleted file mode 100644 index a58dc24..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/__pycache__/uts46data.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/cli.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/cli.py deleted file mode 100644 index 4acda2c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/cli.py +++ /dev/null @@ -1,128 +0,0 @@ -"""Command-line interface for the :mod:`idna` package. - -Invoked via ``python -m idna``. See :func:`main` for the entry point. -""" - -import argparse -import sys -from collections.abc import Iterable -from itertools import chain -from typing import IO, Optional - -from . import IDNAError, decode, encode -from .core import _alabel_prefix, _unicode_dots_re -from .package_data import __version__ - - -def _looks_like_alabel(s: str) -> bool: - """Return True if any label in ``s`` carries the ``xn--`` ACE prefix.""" - prefix = _alabel_prefix.decode("ascii") - return any(label.lower().startswith(prefix) for label in _unicode_dots_re.split(s)) - - -def _build_parser() -> argparse.ArgumentParser: - parser = argparse.ArgumentParser( - prog="python -m idna", - description=( - "Convert a domain name between its Unicode (U-label) and " - "ASCII-compatible (A-label) forms. With no mode flag, the " - "direction is chosen from the first input — if it contains " - "an xn-- label the stream is decoded, otherwise it is " - "encoded — and the same mode is applied to every remaining " - "input. UTS #46 mapping is applied by default; pass " - "--strict to disable it. When no domains are given on the " - "command line and stdin is piped, one domain per line is " - "read from stdin." - ), - ) - mode = parser.add_mutually_exclusive_group() - mode.add_argument( - "-e", - "--encode", - dest="mode", - action="store_const", - const="encode", - help="Encode the input to its ASCII A-label form.", - ) - mode.add_argument( - "-d", - "--decode", - dest="mode", - action="store_const", - const="decode", - help="Decode the input from its ASCII A-label form.", - ) - parser.add_argument( - "--strict", - action="store_true", - help="Disable the default UTS #46 mapping and apply IDNA 2008 rules verbatim.", - ) - parser.add_argument( - "--version", - action="version", - version=f"idna {__version__}", - ) - parser.add_argument( - "domain", - nargs="*", - help="One or more domain names to convert. Omit to read from stdin.", - ) - return parser - - -def _iter_stdin(stream: IO[str]) -> Iterable[str]: - """Yield non-empty stripped lines from ``stream``, ignoring blanks.""" - for line in stream: - stripped = line.strip() - if stripped: - yield stripped - - -def _convert_one(domain: str, mode: str, uts46: bool) -> bool: - """Convert ``domain`` and write the result; return ``False`` on failure.""" - try: - if mode == "decode": - print(decode(domain, uts46=uts46)) - else: - print(encode(domain, uts46=uts46).decode("ascii")) - except IDNAError as err: - print(f"idna: {mode} failed for {domain!r}: {err}", file=sys.stderr) - return False - return True - - -def main(argv: Optional[list[str]] = None) -> int: - """Entry point for ``python -m idna``. - - When more than one domain is supplied (via positional arguments or - piped stdin) and no mode flag is given, the first input determines - the direction and that mode is applied uniformly to the rest. - - :param argv: Argument list excluding the program name. Defaults to - :data:`sys.argv` when ``None``. - :returns: ``0`` on success, ``1`` if any conversion fails. - """ - parser = _build_parser() - args = parser.parse_args(argv) - uts46 = not args.strict - - if args.domain: - domains: Iterable[str] = args.domain - elif not sys.stdin.isatty(): - domains = _iter_stdin(sys.stdin) - else: - parser.error("a domain argument is required when stdin is a terminal") - - iterator = iter(domains) - first = next(iterator, None) - if first is None: - return 0 - - mode = args.mode or ("decode" if _looks_like_alabel(first) else "encode") - - results = [_convert_one(domain, mode, uts46) for domain in chain([first], iterator)] - return 0 if all(results) else 1 - - -if __name__ == "__main__": - sys.exit(main()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/codec.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/codec.py deleted file mode 100644 index 83b42fe..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/codec.py +++ /dev/null @@ -1,159 +0,0 @@ -import codecs -from typing import Any, Optional - -from .core import IDNAError, _unicode_dots_re, alabel, decode, encode, ulabel - - -class Codec(codecs.Codec): - """Stateless IDNA 2008 codec. - - Implements the :class:`codecs.Codec` protocol so that the whole-domain - encoder (:func:`idna.encode`) and decoder (:func:`idna.decode`) are - accessible through the standard codec machinery as ``"idna2008"``. - - Only the ``"strict"`` error handler is supported; any other handler - raises :exc:`~idna.IDNAError`. - """ - - def encode(self, data: str, errors: str = "strict") -> tuple[bytes, int]: # ty: ignore[invalid-method-override] - if errors != "strict": - raise IDNAError(f'Unsupported error handling "{errors}"') - - if not data: - return b"", 0 - - return encode(data), len(data) - - def decode(self, data: bytes, errors: str = "strict") -> tuple[str, int]: # ty: ignore[invalid-method-override] - if errors != "strict": - raise IDNAError(f'Unsupported error handling "{errors}"') - - if not data: - return "", 0 - - return decode(data), len(data) - - -class IncrementalEncoder(codecs.BufferedIncrementalEncoder): - """Incremental IDNA 2008 encoder. - - Buffers a partial trailing label across calls until either the next - label separator is seen or ``final=True``, so that streamed input is - encoded one whole label at a time. Any of the four Unicode label - separators (``U+002E``, ``U+3002``, ``U+FF0E``, ``U+FF61``) ends a - label; the result always uses ``U+002E`` as the separator. - - Only the ``"strict"`` error handler is supported. - """ - - def _buffer_encode(self, data: str, errors: str, final: bool) -> tuple[bytes, int]: # ty: ignore[invalid-method-override] - if errors != "strict": - raise IDNAError(f'Unsupported error handling "{errors}"') - - if not data: - return b"", 0 - - labels = _unicode_dots_re.split(data) - trailing_dot = b"" - if labels: - if not labels[-1]: - trailing_dot = b"." - del labels[-1] - elif not final: - # Keep potentially unfinished label until the next call - del labels[-1] - if labels: - trailing_dot = b"." - - result = [] - size = 0 - for label in labels: - result.append(alabel(label)) - if size: - size += 1 - size += len(label) - - # Join with U+002E - result_bytes = b".".join(result) + trailing_dot - size += len(trailing_dot) - return result_bytes, size - - -class IncrementalDecoder(codecs.BufferedIncrementalDecoder): - """Incremental IDNA 2008 decoder. - - Buffers a partial trailing label across calls until either the next - label separator is seen or ``final=True``, so that streamed input is - decoded one whole label at a time. - - Only the ``"strict"`` error handler is supported. - """ - - def _buffer_decode(self, data: Any, errors: str, final: bool) -> tuple[str, int]: # ty: ignore[invalid-method-override] - if errors != "strict": - raise IDNAError(f'Unsupported error handling "{errors}"') - - if not data: - return ("", 0) - - if not isinstance(data, str): - data = str(data, "ascii") - - labels = _unicode_dots_re.split(data) - trailing_dot = "" - if labels: - if not labels[-1]: - trailing_dot = "." - del labels[-1] - elif not final: - # Keep potentially unfinished label until the next call - del labels[-1] - if labels: - trailing_dot = "." - - result = [] - size = 0 - for label in labels: - result.append(ulabel(label)) - if size: - size += 1 - size += len(label) - - result_str = ".".join(result) + trailing_dot - size += len(trailing_dot) - return (result_str, size) - - -class StreamWriter(Codec, codecs.StreamWriter): - pass - - -class StreamReader(Codec, codecs.StreamReader): - pass - - -def search_function(name: str) -> Optional[codecs.CodecInfo]: - """Codec search function registered with :mod:`codecs`. - - Returns a :class:`codecs.CodecInfo` for the ``"idna2008"`` codec name - so that ``str.encode("idna2008")`` and ``bytes.decode("idna2008")`` - invoke the IDNA 2008 codec defined in this module. - - :param name: The codec name being looked up. - :returns: A :class:`codecs.CodecInfo` instance if ``name`` is - ``"idna2008"``, otherwise ``None``. - """ - if name != "idna2008": - return None - return codecs.CodecInfo( - name=name, - encode=Codec().encode, - decode=Codec().decode, # type: ignore - incrementalencoder=IncrementalEncoder, - incrementaldecoder=IncrementalDecoder, - streamwriter=StreamWriter, - streamreader=StreamReader, - ) - - -codecs.register(search_function) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/compat.py deleted file mode 100644 index 1d01e3d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/compat.py +++ /dev/null @@ -1,41 +0,0 @@ -from typing import Any, Union - -from .core import decode, encode - - -def ToASCII(label: str) -> bytes: - """Compatibility shim for :rfc:`3490` ``ToASCII``. - - Delegates to :func:`idna.encode` (IDNA 2008). Provided to ease porting - of code written against the legacy :mod:`encodings.idna` API; new code - should call :func:`idna.encode` directly. - - :param label: The label or domain to encode. - :returns: The encoded form as ASCII :class:`bytes`. - """ - return encode(label) - - -def ToUnicode(label: Union[bytes, bytearray]) -> str: - """Compatibility shim for :rfc:`3490` ``ToUnicode``. - - Delegates to :func:`idna.decode` (IDNA 2008). Provided to ease porting - of code written against the legacy :mod:`encodings.idna` API; new code - should call :func:`idna.decode` directly. - - :param label: The label or domain to decode. - :returns: The decoded Unicode form. - """ - return decode(label) - - -def nameprep(s: Any) -> None: - """Stub for :rfc:`3491` Nameprep, which is not used by IDNA 2008. - - IDNA 2008 (:rfc:`5891`) replaces Nameprep with the per-codepoint - validity classes from :rfc:`5892`; this function exists only to - return a clear error if legacy code attempts to call it. - - :raises NotImplementedError: Always. - """ - raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/core.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/core.py deleted file mode 100644 index 1ccbd1f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/core.py +++ /dev/null @@ -1,648 +0,0 @@ -import bisect -import re -import unicodedata -import warnings -from typing import Optional, Union - -from . import idnadata -from .intranges import intranges_contain - -_virama_combining_class = 9 -_alabel_prefix = b"xn--" -_max_input_length = 1024 -_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]") - - -# Bidi category sets from RFC 5893, hoisted out of the per-codepoint loop -_bidi_rtl_first = frozenset({"R", "AL"}) -_bidi_rtl_categories = frozenset({"R", "AL", "AN"}) -_bidi_rtl_allowed = frozenset({"R", "AL", "AN", "EN", "ES", "CS", "ET", "ON", "BN", "NSM"}) -_bidi_rtl_valid_ending = frozenset({"R", "AL", "EN", "AN"}) -_bidi_rtl_numeric = frozenset({"AN", "EN"}) -_bidi_ltr_allowed = frozenset({"L", "EN", "ES", "CS", "ET", "ON", "BN", "NSM"}) -_bidi_ltr_valid_ending = frozenset({"L", "EN"}) -_bidi_joiner_l_or_d = frozenset({"L", "D"}) -_bidi_joiner_r_or_d = frozenset({"R", "D"}) - - -def _joining_type(cp: int) -> Optional[str]: - for jt, ranges in idnadata.joining_types.items(): - if intranges_contain(cp, ranges): - return jt - return None - - -class IDNAError(UnicodeError): - """Base exception for all IDNA-encoding related problems""" - - -class IDNABidiError(IDNAError): - """Exception when bidirectional requirements are not satisfied""" - - -class InvalidCodepoint(IDNAError): - """Exception when a disallowed or unallocated codepoint is used""" - - -class InvalidCodepointContext(IDNAError): - """Exception when the codepoint is not valid in the context it is used""" - - -def _combining_class(cp: int) -> int: - v = unicodedata.combining(chr(cp)) - if v == 0 and not unicodedata.name(chr(cp)): - raise ValueError("Unknown character in unicodedata") - return v - - -def _is_script(cp: str, script: str) -> bool: - return intranges_contain(ord(cp), idnadata.scripts[script]) - - -def _punycode(s: str) -> bytes: - return s.encode("punycode") - - -def _unot(s: int) -> str: - return f"U+{s:04X}" - - -def valid_label_length(label: Union[bytes, str]) -> bool: - """Check that a label does not exceed the maximum permitted length. - - Per :rfc:`1035` (and :rfc:`5891` §4.2.4) a DNS label must not exceed - 63 octets. The argument may be either a :class:`str` (a U-label, where - length is measured in characters) or :class:`bytes` (an A-label, where - length is measured in octets). - - :param label: The label to check. - :returns: ``True`` if the label is within the length limit, otherwise - ``False``. - """ - return len(label) <= 63 - - -def valid_string_length(domain: Union[bytes, str], trailing_dot: bool) -> bool: - """Check that a full domain name does not exceed the maximum length. - - Per :rfc:`1035`, a domain name is limited to 253 octets when no trailing - dot is present, or 254 octets when one is included. - - :param domain: The full (possibly multi-label) domain name. - :param trailing_dot: ``True`` if ``domain`` includes a trailing ``.``. - :returns: ``True`` if the domain is within the length limit, otherwise - ``False``. - """ - return len(domain) <= (254 if trailing_dot else 253) - - -def check_bidi(label: str, check_ltr: bool = False) -> bool: - """Validate the Bidi Rule from :rfc:`5893` for a single label. - - The Bidi Rule constrains how bidirectional characters (Hebrew, Arabic, - etc.) may appear within a label. By default the check is only applied - when the label contains at least one right-to-left character (Unicode - bidirectional categories ``R``, ``AL``, or ``AN``); set ``check_ltr`` - to ``True`` to apply it to LTR-only labels as well. - - :param label: The label to validate, as a Unicode string. - :param check_ltr: If ``True``, apply the rules even when the label - contains no RTL characters. - :returns: ``True`` if the label satisfies the Bidi Rule. - :raises IDNABidiError: If any of Bidi Rule conditions 1-6 are violated, - or if the directional category of a codepoint cannot be determined. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - # Bidi rules should only be applied if string contains RTL characters - bidi_label = False - for idx, cp in enumerate(label, 1): - direction = unicodedata.bidirectional(cp) - if direction == "": - # String likely comes from a newer version of Unicode - raise IDNABidiError(f"Unknown directionality in label {label!r} at position {idx}") - if direction in _bidi_rtl_categories: - bidi_label = True - if not bidi_label and not check_ltr: - return True - - # Bidi rule 1 - direction = unicodedata.bidirectional(label[0]) - if direction in _bidi_rtl_first: - rtl = True - elif direction == "L": - rtl = False - else: - raise IDNABidiError(f"First codepoint in label {label!r} must be directionality L, R or AL") - - valid_ending = False - number_type: Optional[str] = None - for idx, cp in enumerate(label, 1): - direction = unicodedata.bidirectional(cp) - - if rtl: - # Bidi rule 2 - if direction not in _bidi_rtl_allowed: - raise IDNABidiError(f"Invalid direction for codepoint at position {idx} in a right-to-left label") - # Bidi rule 3 - if direction in _bidi_rtl_valid_ending: - valid_ending = True - elif direction != "NSM": - valid_ending = False - # Bidi rule 4 - if direction in _bidi_rtl_numeric: - if not number_type: - number_type = direction - elif number_type != direction: - raise IDNABidiError("Can not mix numeral types in a right-to-left label") - else: - # Bidi rule 5 - if direction not in _bidi_ltr_allowed: - raise IDNABidiError(f"Invalid direction for codepoint at position {idx} in a left-to-right label") - # Bidi rule 6 - if direction in _bidi_ltr_valid_ending: - valid_ending = True - elif direction != "NSM": - valid_ending = False - - if not valid_ending: - raise IDNABidiError("Label ends with illegal codepoint directionality") - - return True - - -def check_initial_combiner(label: str) -> bool: - """Reject labels that begin with a combining mark. - - Per :rfc:`5891` §4.2.3.2 a label must not start with a character of - Unicode general category ``M`` (Mark). - - :param label: The label to check. - :returns: ``True`` if the first character is not a combining mark. - :raises IDNAError: If the label begins with a combining character. - """ - if unicodedata.category(label[0])[0] == "M": - raise IDNAError("Label begins with an illegal combining character") - return True - - -def check_hyphen_ok(label: str) -> bool: - """Validate the hyphen restrictions for a label. - - Per :rfc:`5891` §4.2.3.1 a label must not start or end with a hyphen - (``U+002D``), and must not have hyphens in both the third and fourth - positions (the prefix reserved for A-labels). - - :param label: The label to check. - :returns: ``True`` if the hyphen restrictions are satisfied. - :raises IDNAError: If any of the hyphen restrictions are violated. - """ - if label[2:4] == "--": - raise IDNAError("Label has disallowed hyphens in 3rd and 4th position") - if label[0] == "-" or label[-1] == "-": - raise IDNAError("Label must not start or end with a hyphen") - return True - - -def check_nfc(label: str) -> None: - """Require that a label is in Unicode Normalization Form C. - - :param label: The label to check. - :raises IDNAError: If ``label`` differs from its NFC normalisation. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - if unicodedata.normalize("NFC", label) != label: - raise IDNAError("Label must be in Normalization Form C") - - -def valid_contextj(label: str, pos: int) -> bool: - """Validate the CONTEXTJ rules from :rfc:`5892` Appendix A. - - These rules govern the contextual use of the joiner codepoints - ``U+200C`` (ZERO WIDTH NON-JOINER, Appendix A.1) and ``U+200D`` - (ZERO WIDTH JOINER, Appendix A.2) within a label. - - :param label: The label containing the codepoint. - :param pos: Index of the joiner codepoint within ``label``. - :returns: ``True`` if the codepoint at ``pos`` satisfies its CONTEXTJ - rule, ``False`` otherwise (including when the codepoint at - ``pos`` is not a recognised joiner). - :raises ValueError: If an adjacent codepoint has no Unicode name when - determining its combining class. - :raises IDNAError: If ``label`` exceeds the defensive input length limit. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - cp_value = ord(label[pos]) - - if cp_value == 0x200C: - if pos > 0 and _combining_class(ord(label[pos - 1])) == _virama_combining_class: - return True - - ok = False - for i in range(pos - 1, -1, -1): - joining_type = _joining_type(ord(label[i])) - if joining_type == "T": - continue - if joining_type in _bidi_joiner_l_or_d: - ok = True - break - break - - if not ok: - return False - - ok = False - for i in range(pos + 1, len(label)): - joining_type = _joining_type(ord(label[i])) - if joining_type == "T": - continue - if joining_type in _bidi_joiner_r_or_d: - ok = True - break - break - return ok - - if cp_value == 0x200D: - return pos > 0 and _combining_class(ord(label[pos - 1])) == _virama_combining_class - - return False - - -def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: - """Validate the CONTEXTO rules from :rfc:`5892` Appendix A. - - Covers the contextual rules for codepoints such as MIDDLE DOT - (``U+00B7``), Greek lower numeral sign, Hebrew punctuation, Katakana - middle dot, and the Arabic-Indic / Extended Arabic-Indic digit ranges. - - :param label: The label containing the codepoint. - :param pos: Index of the codepoint within ``label``. - :param exception: Reserved for forward compatibility; currently unused. - :returns: ``True`` if the codepoint at ``pos`` satisfies its CONTEXTO - rule, ``False`` otherwise (including when the codepoint is not a - recognised CONTEXTO codepoint). - :raises IDNAError: If ``label`` exceeds the defensive input length limit. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - cp_value = ord(label[pos]) - - if cp_value == 0x00B7: - return 0 < pos < len(label) - 1 and ord(label[pos - 1]) == 0x006C and ord(label[pos + 1]) == 0x006C - - if cp_value == 0x0375: - if pos < len(label) - 1 and len(label) > 1: - return _is_script(label[pos + 1], "Greek") - return False - - if cp_value in {0x05F3, 0x05F4}: - if pos > 0: - return _is_script(label[pos - 1], "Hebrew") - return False - - if cp_value == 0x30FB: - for cp in label: - if cp == "\u30fb": - continue - if _is_script(cp, "Hiragana") or _is_script(cp, "Katakana") or _is_script(cp, "Han"): - return True - return False - - if 0x660 <= cp_value <= 0x669: - return not any(0x6F0 <= ord(cp) <= 0x06F9 for cp in label) - - if 0x6F0 <= cp_value <= 0x6F9: - return not any(0x660 <= ord(cp) <= 0x0669 for cp in label) - - return False - - -def check_label(label: Union[str, bytes, bytearray]) -> None: - """Run the full set of IDNA 2008 validity checks on a single label. - - Applies, in order: NFC normalisation (:func:`check_nfc`), hyphen - restrictions (:func:`check_hyphen_ok`), the no-leading-combiner rule - (:func:`check_initial_combiner`), per-codepoint validity (PVALID, - CONTEXTJ, CONTEXTO classes from :rfc:`5892`), and the Bidi Rule - (:func:`check_bidi`). - - :param label: The label to validate. ``bytes`` or ``bytearray`` input - is decoded as UTF-8 first. - :raises IDNAError: If the label is empty or fails a structural rule. - :raises InvalidCodepoint: If the label contains a DISALLOWED or - UNASSIGNED codepoint. - :raises InvalidCodepointContext: If a CONTEXTJ or CONTEXTO codepoint - is not valid in its context. - :raises IDNABidiError: If the Bidi Rule is violated. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - if isinstance(label, (bytes, bytearray)): - label = label.decode("utf-8") - if len(label) == 0: - raise IDNAError("Empty Label") - - # Reject on domain length rather than label length so support some UTS 46 - # use cases, still reducing processing of label contextual rules - if not valid_string_length(label, trailing_dot=True): - raise IDNAError("Label too long") - - check_nfc(label) - check_hyphen_ok(label) - check_initial_combiner(label) - - for pos, cp in enumerate(label): - cp_value = ord(cp) - if intranges_contain(cp_value, idnadata.codepoint_classes["PVALID"]): - continue - if intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTJ"]): - try: - if not valid_contextj(label, pos): - raise InvalidCodepointContext(f"Joiner {_unot(cp_value)} not allowed at position {pos + 1} in {label!r}") - except ValueError as err: - raise IDNAError( - f"Unknown codepoint adjacent to joiner {_unot(cp_value)} at position {pos + 1} in {label!r}" - ) from err - elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTO"]): - if not valid_contexto(label, pos): - raise InvalidCodepointContext(f"Codepoint {_unot(cp_value)} not allowed at position {pos + 1} in {label!r}") - else: - raise InvalidCodepoint(f"Codepoint {_unot(cp_value)} at position {pos + 1} of {label!r} not allowed") - - check_bidi(label) - - -def alabel(label: str) -> bytes: - """Convert a single U-label into its A-label form. - - The result is the ASCII-Compatible Encoding (ACE) form per :rfc:`5891` - §4: the label is validated, Punycode-encoded, and prefixed with - ``xn--``. Pure ASCII labels that are already valid IDNA labels are - returned unchanged (as :class:`bytes`). - - :param label: The label to convert, as a Unicode string. - :returns: The A-label as ASCII-encoded :class:`bytes`. - :raises IDNAError: If the label is invalid or the resulting A-label - exceeds 63 octets. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - try: - label_bytes = label.encode("ascii") - except UnicodeEncodeError: - pass - else: - ulabel(label_bytes) - if not valid_label_length(label_bytes): - raise IDNAError("Label too long") - return label_bytes - - check_label(label) - label_bytes = _alabel_prefix + _punycode(label) - - if not valid_label_length(label_bytes): - raise IDNAError("Label too long") - - return label_bytes - - -def ulabel(label: Union[str, bytes, bytearray]) -> str: - """Convert a single A-label into its U-label form. - - Performs the inverse of :func:`alabel`: an ``xn--``-prefixed label is - Punycode-decoded and validated. Labels that are already Unicode (or - plain ASCII without the ACE prefix) are validated and returned as a - Unicode string. - - :param label: The label to convert. ``bytes`` or ``bytearray`` input - is treated as ASCII. - :returns: The U-label as a Unicode string. - :raises IDNAError: If the label is malformed or fails validation. - """ - if len(label) > _max_input_length: - raise IDNAError("Label too long") - if not isinstance(label, (bytes, bytearray)): - try: - label_bytes = label.encode("ascii") - except UnicodeEncodeError: - check_label(label) - return label - else: - label_bytes = bytes(label) - - label_bytes = label_bytes.lower() - if label_bytes.startswith(_alabel_prefix): - label_bytes = label_bytes[len(_alabel_prefix) :] - if not label_bytes: - raise IDNAError("Malformed A-label, no Punycode eligible content found") - if label_bytes.endswith(b"-"): - raise IDNAError("A-label must not end with a hyphen") - else: - check_label(label_bytes) - return label_bytes.decode("ascii") - - try: - label = label_bytes.decode("punycode") - except UnicodeError as err: - raise IDNAError("Invalid A-label") from err - check_label(label) - return label - - -def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: - """Apply the UTS #46 character mapping to a domain string. - - Implements the mapping table from `UTS #46 §4 - `_: each character is kept, - replaced, or rejected based on its status (``V``, ``M``, ``D``, ``3``, - ``I``). The result is returned in Normalisation Form C. - - :param domain: The full domain name to remap. - :param std3_rules: If ``True``, apply the stricter STD3 ASCII rules - (status ``3`` codepoints raise instead of being kept or mapped). - :param transitional: If ``True``, use transitional processing (status - ``D`` codepoints are mapped instead of kept). Transitional - processing has been removed from UTS #46 and this option is - retained only for backwards compatibility. - :returns: The remapped domain, in Normalisation Form C. - :raises InvalidCodepoint: If the domain contains a disallowed - codepoint under the chosen rules. - :raises IDNAError: If ``domain`` exceeds the defensive input length limit. - """ - if len(domain) > _max_input_length: - raise IDNAError("Domain too long") - from .uts46data import uts46_replacements, uts46_starts, uts46_statuses - - output = "" - - for pos, char in enumerate(domain): - code_point = ord(char) - i = code_point if code_point < 256 else bisect.bisect_right(uts46_starts, code_point) - 1 - status = chr(uts46_statuses[i]) - replacement: Optional[str] = uts46_replacements[i] - - # UTS #46 §4: V is always valid, D is deviation (kept unless transitional), - # 3 is disallowed-STD3 (kept unmapped if std3_rules is off and no mapping). - keep_as_is = ( - status == "V" or (status == "D" and not transitional) or (status == "3" and not std3_rules and replacement is None) - ) - # M is mapped, 3-with-replacement and transitional D fall through to the - # same replacement output path. - use_replacement = replacement is not None and ( - status == "M" or (status == "3" and not std3_rules) or (status == "D" and transitional) - ) - - if keep_as_is: - output += char - elif use_replacement: - assert replacement is not None # narrowed by use_replacement - output += replacement - elif status == "I": - continue - else: - raise InvalidCodepoint(f"Codepoint {_unot(code_point)} not allowed at position {pos + 1} in {domain!r}") - - return unicodedata.normalize("NFC", output) - - -def encode( - s: Union[str, bytes, bytearray], - strict: bool = False, - uts46: bool = False, - std3_rules: bool = False, - transitional: bool = False, -) -> bytes: - """Encode a Unicode domain name into its ASCII (A-label) form. - - Splits the input on label separators (only ``U+002E`` if ``strict`` is - set; otherwise also IDEOGRAPHIC FULL STOP ``U+3002``, FULLWIDTH FULL - STOP ``U+FF0E``, and HALFWIDTH IDEOGRAPHIC FULL STOP ``U+FF61``), - encodes each label with :func:`alabel`, and rejoins them with ``.``. - Optionally pre-processes the input through :func:`uts46_remap`. - - :param s: The domain name to encode. - :param strict: If ``True``, only ``U+002E`` is recognised as a label - separator. - :param uts46: If ``True``, apply UTS #46 mapping before encoding. - :param std3_rules: Forwarded to :func:`uts46_remap` when ``uts46`` is - ``True``. - :param transitional: Forwarded to :func:`uts46_remap` when ``uts46`` - is ``True``. Deprecated: emits a :class:`DeprecationWarning` and - will be removed in a future version. - :returns: The encoded domain as ASCII :class:`bytes`. - :raises IDNAError: If the domain is empty, contains an invalid label, - or exceeds the maximum domain length. - """ - if transitional: - warnings.warn( - "Transitional processing has been removed from UTS #46. " - "The transitional argument will be removed in a future version.", - DeprecationWarning, - stacklevel=2, - ) - if not isinstance(s, str): - try: - s = str(s, "ascii") - except (UnicodeDecodeError, TypeError) as err: - raise IDNAError("should pass a unicode string to the function rather than a byte string.") from err - if len(s) > _max_input_length: - raise IDNAError("Domain too long") - if uts46: - s = uts46_remap(s, std3_rules, transitional) - - # Reject inputs that exceed the maximum DNS domain length up-front - # to avoid expensive computation on long inputs. - if not valid_string_length(s, trailing_dot=True): - raise IDNAError("Domain too long") - - trailing_dot = False - result = [] - labels = s.split(".") if strict else _unicode_dots_re.split(s) - if not labels or labels == [""]: - raise IDNAError("Empty domain") - if labels[-1] == "": - del labels[-1] - trailing_dot = True - for label in labels: - s = alabel(label) - if s: - result.append(s) - else: - raise IDNAError("Empty label") - if trailing_dot: - result.append(b"") - s = b".".join(result) - if not valid_string_length(s, trailing_dot): - raise IDNAError("Domain too long") - return s - - -def decode( - s: Union[str, bytes, bytearray], - strict: bool = False, - uts46: bool = False, - std3_rules: bool = False, - display: bool = False, -) -> str: - """Decode an A-label-encoded domain name back to Unicode. - - Splits the input on label separators (see :func:`encode` for the - rules), decodes each label with :func:`ulabel`, and rejoins them - with ``.``. Optionally pre-processes the input through - :func:`uts46_remap`. - - :param s: The domain name to decode. - :param strict: If ``True``, only ``U+002E`` is recognised as a label - separator. - :param uts46: If ``True``, apply UTS #46 mapping before decoding. - :param std3_rules: Forwarded to :func:`uts46_remap` when ``uts46`` is - ``True``. - :param display: If ``True``, any ``xn--`` label that fails IDNA - validation is passed through unchanged (lowercased) rather than - aborting the whole call. Intended for "decode for display" - consumers (e.g. URL libraries, HTTP clients) that want to show - the user the label as it appears on the wire when it cannot be - rendered as Unicode. Matches the per-label recovery prescribed - by UTS #46 §4 and the WHATWG URL "domain to Unicode" algorithm. - :returns: The decoded domain as a Unicode string. - :raises IDNAError: If the input is not valid ASCII, contains an - invalid label, or is empty. - """ - if not isinstance(s, str): - try: - s = str(s, "ascii") - except (UnicodeDecodeError, TypeError) as err: - raise IDNAError("Invalid ASCII in A-label") from err - if len(s) > _max_input_length: - raise IDNAError("Domain too long") - if uts46: - s = uts46_remap(s, std3_rules, False) - # Reject inputs that exceed the maximum DNS domain length up-front - # to avoid expensive computation on long inputs. - if not valid_string_length(s, trailing_dot=True): - raise IDNAError("Domain too long") - trailing_dot = False - result = [] - labels = s.split(".") if strict else _unicode_dots_re.split(s) - if not labels or labels == [""]: - raise IDNAError("Empty domain") - if not labels[-1]: - del labels[-1] - trailing_dot = True - for label in labels: - try: - u = ulabel(label) - except IDNAError: - if display and label[:4].lower() == "xn--": - u = label.lower() - else: - raise - if u: - result.append(u) - else: - raise IDNAError("Empty label") - if trailing_dot: - result.append("") - return ".".join(result) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/idnadata.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/idnadata.py deleted file mode 100644 index f2ab388..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/idnadata.py +++ /dev/null @@ -1,1897 +0,0 @@ -# This file is automatically generated by tools/idna-data - -__version__ = "17.0.0" - -scripts = { - "Greek": ( - 0x37000000374, - 0x37500000378, - 0x37A0000037E, - 0x37F00000380, - 0x38400000385, - 0x38600000387, - 0x3880000038B, - 0x38C0000038D, - 0x38E000003A2, - 0x3A3000003E2, - 0x3F000000400, - 0x1D2600001D2B, - 0x1D5D00001D62, - 0x1D6600001D6B, - 0x1DBF00001DC0, - 0x1F0000001F16, - 0x1F1800001F1E, - 0x1F2000001F46, - 0x1F4800001F4E, - 0x1F5000001F58, - 0x1F5900001F5A, - 0x1F5B00001F5C, - 0x1F5D00001F5E, - 0x1F5F00001F7E, - 0x1F8000001FB5, - 0x1FB600001FC5, - 0x1FC600001FD4, - 0x1FD600001FDC, - 0x1FDD00001FF0, - 0x1FF200001FF5, - 0x1FF600001FFF, - 0x212600002127, - 0xAB650000AB66, - 0x101400001018F, - 0x101A0000101A1, - 0x1D2000001D246, - ), - "Han": ( - 0x2E8000002E9A, - 0x2E9B00002EF4, - 0x2F0000002FD6, - 0x300500003006, - 0x300700003008, - 0x30210000302A, - 0x30380000303C, - 0x340000004DC0, - 0x4E000000A000, - 0xF9000000FA6E, - 0xFA700000FADA, - 0x16FE200016FE4, - 0x16FF000016FF7, - 0x200000002A6E0, - 0x2A7000002B81E, - 0x2B8200002CEAE, - 0x2CEB00002EBE1, - 0x2EBF00002EE5E, - 0x2F8000002FA1E, - 0x300000003134B, - 0x313500003347A, - ), - "Hebrew": ( - 0x591000005C8, - 0x5D0000005EB, - 0x5EF000005F5, - 0xFB1D0000FB37, - 0xFB380000FB3D, - 0xFB3E0000FB3F, - 0xFB400000FB42, - 0xFB430000FB45, - 0xFB460000FB50, - ), - "Hiragana": ( - 0x304100003097, - 0x309D000030A0, - 0x1B0010001B120, - 0x1B1320001B133, - 0x1B1500001B153, - 0x1F2000001F201, - ), - "Katakana": ( - 0x30A1000030FB, - 0x30FD00003100, - 0x31F000003200, - 0x32D0000032FF, - 0x330000003358, - 0xFF660000FF70, - 0xFF710000FF9E, - 0x1AFF00001AFF4, - 0x1AFF50001AFFC, - 0x1AFFD0001AFFF, - 0x1B0000001B001, - 0x1B1200001B123, - 0x1B1550001B156, - 0x1B1640001B168, - ), -} - - -joining_types = { - "C": ( - 0x64000000641, - 0x7FA000007FB, - 0x88300000886, - 0x180A0000180B, - 0x200D0000200E, - ), - "D": ( - 0x62000000621, - 0x62600000627, - 0x62800000629, - 0x62A0000062F, - 0x63300000640, - 0x64100000648, - 0x6490000064B, - 0x66E00000670, - 0x67800000688, - 0x69A000006C0, - 0x6C1000006C3, - 0x6CC000006CD, - 0x6CE000006CF, - 0x6D0000006D2, - 0x6FA000006FD, - 0x6FF00000700, - 0x71200000715, - 0x71A0000071E, - 0x71F00000728, - 0x7290000072A, - 0x72B0000072C, - 0x72D0000072F, - 0x74E00000759, - 0x75C0000076B, - 0x76D00000771, - 0x77200000773, - 0x77500000778, - 0x77A00000780, - 0x7CA000007EB, - 0x84100000846, - 0x84800000849, - 0x84A00000854, - 0x85500000856, - 0x86000000861, - 0x86200000866, - 0x86800000869, - 0x88600000887, - 0x8890000088E, - 0x88F00000890, - 0x8A0000008AA, - 0x8AF000008B1, - 0x8B3000008B9, - 0x8BA000008C9, - 0x180700001808, - 0x182000001879, - 0x1887000018A9, - 0x18AA000018AB, - 0xA8400000A872, - 0x10AC000010AC5, - 0x10AD300010AD7, - 0x10AD800010ADD, - 0x10ADE00010AE1, - 0x10AEB00010AEF, - 0x10B8000010B81, - 0x10B8200010B83, - 0x10B8600010B89, - 0x10B8A00010B8C, - 0x10B8D00010B8E, - 0x10B9000010B91, - 0x10BAD00010BAF, - 0x10D0100010D22, - 0x10D2300010D24, - 0x10EC300010EC5, - 0x10EC600010EC8, - 0x10F3000010F33, - 0x10F3400010F45, - 0x10F5100010F54, - 0x10F7000010F74, - 0x10F7600010F82, - 0x10FB000010FB1, - 0x10FB200010FB4, - 0x10FB800010FB9, - 0x10FBB00010FBD, - 0x10FBE00010FC0, - 0x10FC100010FC2, - 0x10FC400010FC5, - 0x10FCA00010FCB, - 0x1E9000001E944, - ), - "L": ( - 0xA8720000A873, - 0x10ACD00010ACE, - 0x10AD700010AD8, - 0x10D0000010D01, - 0x10FCB00010FCC, - ), - "R": ( - 0x62200000626, - 0x62700000628, - 0x6290000062A, - 0x62F00000633, - 0x64800000649, - 0x67100000674, - 0x67500000678, - 0x6880000069A, - 0x6C0000006C1, - 0x6C3000006CC, - 0x6CD000006CE, - 0x6CF000006D0, - 0x6D2000006D4, - 0x6D5000006D6, - 0x6EE000006F0, - 0x71000000711, - 0x7150000071A, - 0x71E0000071F, - 0x72800000729, - 0x72A0000072B, - 0x72C0000072D, - 0x72F00000730, - 0x74D0000074E, - 0x7590000075C, - 0x76B0000076D, - 0x77100000772, - 0x77300000775, - 0x7780000077A, - 0x84000000841, - 0x84600000848, - 0x8490000084A, - 0x85400000855, - 0x85600000859, - 0x86700000868, - 0x8690000086B, - 0x87000000883, - 0x88E0000088F, - 0x8AA000008AD, - 0x8AE000008AF, - 0x8B1000008B3, - 0x8B9000008BA, - 0x10AC500010AC6, - 0x10AC700010AC8, - 0x10AC900010ACB, - 0x10ACE00010AD3, - 0x10ADD00010ADE, - 0x10AE100010AE2, - 0x10AE400010AE5, - 0x10AEF00010AF0, - 0x10B8100010B82, - 0x10B8300010B86, - 0x10B8900010B8A, - 0x10B8C00010B8D, - 0x10B8E00010B90, - 0x10B9100010B92, - 0x10BA900010BAD, - 0x10D2200010D23, - 0x10EC200010EC3, - 0x10F3300010F34, - 0x10F5400010F55, - 0x10F7400010F76, - 0x10FB400010FB7, - 0x10FB900010FBB, - 0x10FBD00010FBE, - 0x10FC200010FC4, - 0x10FC900010FCA, - ), - "T": ( - 0xAD000000AE, - 0x30000000370, - 0x4830000048A, - 0x591000005BE, - 0x5BF000005C0, - 0x5C1000005C3, - 0x5C4000005C6, - 0x5C7000005C8, - 0x6100000061B, - 0x61C0000061D, - 0x64B00000660, - 0x67000000671, - 0x6D6000006DD, - 0x6DF000006E5, - 0x6E7000006E9, - 0x6EA000006EE, - 0x70F00000710, - 0x71100000712, - 0x7300000074B, - 0x7A6000007B1, - 0x7EB000007F4, - 0x7FD000007FE, - 0x8160000081A, - 0x81B00000824, - 0x82500000828, - 0x8290000082E, - 0x8590000085C, - 0x897000008A0, - 0x8CA000008E2, - 0x8E300000903, - 0x93A0000093B, - 0x93C0000093D, - 0x94100000949, - 0x94D0000094E, - 0x95100000958, - 0x96200000964, - 0x98100000982, - 0x9BC000009BD, - 0x9C1000009C5, - 0x9CD000009CE, - 0x9E2000009E4, - 0x9FE000009FF, - 0xA0100000A03, - 0xA3C00000A3D, - 0xA4100000A43, - 0xA4700000A49, - 0xA4B00000A4E, - 0xA5100000A52, - 0xA7000000A72, - 0xA7500000A76, - 0xA8100000A83, - 0xABC00000ABD, - 0xAC100000AC6, - 0xAC700000AC9, - 0xACD00000ACE, - 0xAE200000AE4, - 0xAFA00000B00, - 0xB0100000B02, - 0xB3C00000B3D, - 0xB3F00000B40, - 0xB4100000B45, - 0xB4D00000B4E, - 0xB5500000B57, - 0xB6200000B64, - 0xB8200000B83, - 0xBC000000BC1, - 0xBCD00000BCE, - 0xC0000000C01, - 0xC0400000C05, - 0xC3C00000C3D, - 0xC3E00000C41, - 0xC4600000C49, - 0xC4A00000C4E, - 0xC5500000C57, - 0xC6200000C64, - 0xC8100000C82, - 0xCBC00000CBD, - 0xCBF00000CC0, - 0xCC600000CC7, - 0xCCC00000CCE, - 0xCE200000CE4, - 0xD0000000D02, - 0xD3B00000D3D, - 0xD4100000D45, - 0xD4D00000D4E, - 0xD6200000D64, - 0xD8100000D82, - 0xDCA00000DCB, - 0xDD200000DD5, - 0xDD600000DD7, - 0xE3100000E32, - 0xE3400000E3B, - 0xE4700000E4F, - 0xEB100000EB2, - 0xEB400000EBD, - 0xEC800000ECF, - 0xF1800000F1A, - 0xF3500000F36, - 0xF3700000F38, - 0xF3900000F3A, - 0xF7100000F7F, - 0xF8000000F85, - 0xF8600000F88, - 0xF8D00000F98, - 0xF9900000FBD, - 0xFC600000FC7, - 0x102D00001031, - 0x103200001038, - 0x10390000103B, - 0x103D0000103F, - 0x10580000105A, - 0x105E00001061, - 0x107100001075, - 0x108200001083, - 0x108500001087, - 0x108D0000108E, - 0x109D0000109E, - 0x135D00001360, - 0x171200001715, - 0x173200001734, - 0x175200001754, - 0x177200001774, - 0x17B4000017B6, - 0x17B7000017BE, - 0x17C6000017C7, - 0x17C9000017D4, - 0x17DD000017DE, - 0x180B0000180E, - 0x180F00001810, - 0x188500001887, - 0x18A9000018AA, - 0x192000001923, - 0x192700001929, - 0x193200001933, - 0x19390000193C, - 0x1A1700001A19, - 0x1A1B00001A1C, - 0x1A5600001A57, - 0x1A5800001A5F, - 0x1A6000001A61, - 0x1A6200001A63, - 0x1A6500001A6D, - 0x1A7300001A7D, - 0x1A7F00001A80, - 0x1AB000001ADE, - 0x1AE000001AEC, - 0x1B0000001B04, - 0x1B3400001B35, - 0x1B3600001B3B, - 0x1B3C00001B3D, - 0x1B4200001B43, - 0x1B6B00001B74, - 0x1B8000001B82, - 0x1BA200001BA6, - 0x1BA800001BAA, - 0x1BAB00001BAE, - 0x1BE600001BE7, - 0x1BE800001BEA, - 0x1BED00001BEE, - 0x1BEF00001BF2, - 0x1C2C00001C34, - 0x1C3600001C38, - 0x1CD000001CD3, - 0x1CD400001CE1, - 0x1CE200001CE9, - 0x1CED00001CEE, - 0x1CF400001CF5, - 0x1CF800001CFA, - 0x1DC000001E00, - 0x200B0000200C, - 0x200E00002010, - 0x202A0000202F, - 0x206000002065, - 0x206A00002070, - 0x20D0000020F1, - 0x2CEF00002CF2, - 0x2D7F00002D80, - 0x2DE000002E00, - 0x302A0000302E, - 0x30990000309B, - 0xA66F0000A673, - 0xA6740000A67E, - 0xA69E0000A6A0, - 0xA6F00000A6F2, - 0xA8020000A803, - 0xA8060000A807, - 0xA80B0000A80C, - 0xA8250000A827, - 0xA82C0000A82D, - 0xA8C40000A8C6, - 0xA8E00000A8F2, - 0xA8FF0000A900, - 0xA9260000A92E, - 0xA9470000A952, - 0xA9800000A983, - 0xA9B30000A9B4, - 0xA9B60000A9BA, - 0xA9BC0000A9BE, - 0xA9E50000A9E6, - 0xAA290000AA2F, - 0xAA310000AA33, - 0xAA350000AA37, - 0xAA430000AA44, - 0xAA4C0000AA4D, - 0xAA7C0000AA7D, - 0xAAB00000AAB1, - 0xAAB20000AAB5, - 0xAAB70000AAB9, - 0xAABE0000AAC0, - 0xAAC10000AAC2, - 0xAAEC0000AAEE, - 0xAAF60000AAF7, - 0xABE50000ABE6, - 0xABE80000ABE9, - 0xABED0000ABEE, - 0xFB1E0000FB1F, - 0xFE000000FE10, - 0xFE200000FE30, - 0xFEFF0000FF00, - 0xFFF90000FFFC, - 0x101FD000101FE, - 0x102E0000102E1, - 0x103760001037B, - 0x10A0100010A04, - 0x10A0500010A07, - 0x10A0C00010A10, - 0x10A3800010A3B, - 0x10A3F00010A40, - 0x10AE500010AE7, - 0x10D2400010D28, - 0x10D6900010D6E, - 0x10EAB00010EAD, - 0x10EFA00010F00, - 0x10F4600010F51, - 0x10F8200010F86, - 0x1100100011002, - 0x1103800011047, - 0x1107000011071, - 0x1107300011075, - 0x1107F00011082, - 0x110B3000110B7, - 0x110B9000110BB, - 0x110C2000110C3, - 0x1110000011103, - 0x111270001112C, - 0x1112D00011135, - 0x1117300011174, - 0x1118000011182, - 0x111B6000111BF, - 0x111C9000111CD, - 0x111CF000111D0, - 0x1122F00011232, - 0x1123400011235, - 0x1123600011238, - 0x1123E0001123F, - 0x1124100011242, - 0x112DF000112E0, - 0x112E3000112EB, - 0x1130000011302, - 0x1133B0001133D, - 0x1134000011341, - 0x113660001136D, - 0x1137000011375, - 0x113BB000113C1, - 0x113CE000113CF, - 0x113D0000113D1, - 0x113D2000113D3, - 0x113E1000113E3, - 0x1143800011440, - 0x1144200011445, - 0x1144600011447, - 0x1145E0001145F, - 0x114B3000114B9, - 0x114BA000114BB, - 0x114BF000114C1, - 0x114C2000114C4, - 0x115B2000115B6, - 0x115BC000115BE, - 0x115BF000115C1, - 0x115DC000115DE, - 0x116330001163B, - 0x1163D0001163E, - 0x1163F00011641, - 0x116AB000116AC, - 0x116AD000116AE, - 0x116B0000116B6, - 0x116B7000116B8, - 0x1171D0001171E, - 0x1171F00011720, - 0x1172200011726, - 0x117270001172C, - 0x1182F00011838, - 0x118390001183B, - 0x1193B0001193D, - 0x1193E0001193F, - 0x1194300011944, - 0x119D4000119D8, - 0x119DA000119DC, - 0x119E0000119E1, - 0x11A0100011A0B, - 0x11A3300011A39, - 0x11A3B00011A3F, - 0x11A4700011A48, - 0x11A5100011A57, - 0x11A5900011A5C, - 0x11A8A00011A97, - 0x11A9800011A9A, - 0x11B6000011B61, - 0x11B6200011B65, - 0x11B6600011B67, - 0x11C3000011C37, - 0x11C3800011C3E, - 0x11C3F00011C40, - 0x11C9200011CA8, - 0x11CAA00011CB1, - 0x11CB200011CB4, - 0x11CB500011CB7, - 0x11D3100011D37, - 0x11D3A00011D3B, - 0x11D3C00011D3E, - 0x11D3F00011D46, - 0x11D4700011D48, - 0x11D9000011D92, - 0x11D9500011D96, - 0x11D9700011D98, - 0x11EF300011EF5, - 0x11F0000011F02, - 0x11F3600011F3B, - 0x11F4000011F41, - 0x11F4200011F43, - 0x11F5A00011F5B, - 0x1343000013441, - 0x1344700013456, - 0x1611E0001612A, - 0x1612D00016130, - 0x16AF000016AF5, - 0x16B3000016B37, - 0x16F4F00016F50, - 0x16F8F00016F93, - 0x16FE400016FE5, - 0x1BC9D0001BC9F, - 0x1BCA00001BCA4, - 0x1CF000001CF2E, - 0x1CF300001CF47, - 0x1D1670001D16A, - 0x1D1730001D183, - 0x1D1850001D18C, - 0x1D1AA0001D1AE, - 0x1D2420001D245, - 0x1DA000001DA37, - 0x1DA3B0001DA6D, - 0x1DA750001DA76, - 0x1DA840001DA85, - 0x1DA9B0001DAA0, - 0x1DAA10001DAB0, - 0x1E0000001E007, - 0x1E0080001E019, - 0x1E01B0001E022, - 0x1E0230001E025, - 0x1E0260001E02B, - 0x1E08F0001E090, - 0x1E1300001E137, - 0x1E2AE0001E2AF, - 0x1E2EC0001E2F0, - 0x1E4EC0001E4F0, - 0x1E5EE0001E5F0, - 0x1E6E30001E6E4, - 0x1E6E60001E6E7, - 0x1E6EE0001E6F0, - 0x1E6F50001E6F6, - 0x1E8D00001E8D7, - 0x1E9440001E94C, - 0xE0001000E0002, - 0xE0020000E0080, - 0xE0100000E01F0, - ), -} - - -codepoint_classes = { - "PVALID": ( - 0x2D0000002E, - 0x300000003A, - 0x610000007B, - 0xDF000000F7, - 0xF800000100, - 0x10100000102, - 0x10300000104, - 0x10500000106, - 0x10700000108, - 0x1090000010A, - 0x10B0000010C, - 0x10D0000010E, - 0x10F00000110, - 0x11100000112, - 0x11300000114, - 0x11500000116, - 0x11700000118, - 0x1190000011A, - 0x11B0000011C, - 0x11D0000011E, - 0x11F00000120, - 0x12100000122, - 0x12300000124, - 0x12500000126, - 0x12700000128, - 0x1290000012A, - 0x12B0000012C, - 0x12D0000012E, - 0x12F00000130, - 0x13100000132, - 0x13500000136, - 0x13700000139, - 0x13A0000013B, - 0x13C0000013D, - 0x13E0000013F, - 0x14200000143, - 0x14400000145, - 0x14600000147, - 0x14800000149, - 0x14B0000014C, - 0x14D0000014E, - 0x14F00000150, - 0x15100000152, - 0x15300000154, - 0x15500000156, - 0x15700000158, - 0x1590000015A, - 0x15B0000015C, - 0x15D0000015E, - 0x15F00000160, - 0x16100000162, - 0x16300000164, - 0x16500000166, - 0x16700000168, - 0x1690000016A, - 0x16B0000016C, - 0x16D0000016E, - 0x16F00000170, - 0x17100000172, - 0x17300000174, - 0x17500000176, - 0x17700000178, - 0x17A0000017B, - 0x17C0000017D, - 0x17E0000017F, - 0x18000000181, - 0x18300000184, - 0x18500000186, - 0x18800000189, - 0x18C0000018E, - 0x19200000193, - 0x19500000196, - 0x1990000019C, - 0x19E0000019F, - 0x1A1000001A2, - 0x1A3000001A4, - 0x1A5000001A6, - 0x1A8000001A9, - 0x1AA000001AC, - 0x1AD000001AE, - 0x1B0000001B1, - 0x1B4000001B5, - 0x1B6000001B7, - 0x1B9000001BC, - 0x1BD000001C4, - 0x1CE000001CF, - 0x1D0000001D1, - 0x1D2000001D3, - 0x1D4000001D5, - 0x1D6000001D7, - 0x1D8000001D9, - 0x1DA000001DB, - 0x1DC000001DE, - 0x1DF000001E0, - 0x1E1000001E2, - 0x1E3000001E4, - 0x1E5000001E6, - 0x1E7000001E8, - 0x1E9000001EA, - 0x1EB000001EC, - 0x1ED000001EE, - 0x1EF000001F1, - 0x1F5000001F6, - 0x1F9000001FA, - 0x1FB000001FC, - 0x1FD000001FE, - 0x1FF00000200, - 0x20100000202, - 0x20300000204, - 0x20500000206, - 0x20700000208, - 0x2090000020A, - 0x20B0000020C, - 0x20D0000020E, - 0x20F00000210, - 0x21100000212, - 0x21300000214, - 0x21500000216, - 0x21700000218, - 0x2190000021A, - 0x21B0000021C, - 0x21D0000021E, - 0x21F00000220, - 0x22100000222, - 0x22300000224, - 0x22500000226, - 0x22700000228, - 0x2290000022A, - 0x22B0000022C, - 0x22D0000022E, - 0x22F00000230, - 0x23100000232, - 0x2330000023A, - 0x23C0000023D, - 0x23F00000241, - 0x24200000243, - 0x24700000248, - 0x2490000024A, - 0x24B0000024C, - 0x24D0000024E, - 0x24F000002B0, - 0x2B9000002C2, - 0x2C6000002D2, - 0x2EC000002ED, - 0x2EE000002EF, - 0x30000000340, - 0x34200000343, - 0x3460000034F, - 0x35000000370, - 0x37100000372, - 0x37300000374, - 0x37700000378, - 0x37B0000037E, - 0x39000000391, - 0x3AC000003CF, - 0x3D7000003D8, - 0x3D9000003DA, - 0x3DB000003DC, - 0x3DD000003DE, - 0x3DF000003E0, - 0x3E1000003E2, - 0x3E3000003E4, - 0x3E5000003E6, - 0x3E7000003E8, - 0x3E9000003EA, - 0x3EB000003EC, - 0x3ED000003EE, - 0x3EF000003F0, - 0x3F3000003F4, - 0x3F8000003F9, - 0x3FB000003FD, - 0x43000000460, - 0x46100000462, - 0x46300000464, - 0x46500000466, - 0x46700000468, - 0x4690000046A, - 0x46B0000046C, - 0x46D0000046E, - 0x46F00000470, - 0x47100000472, - 0x47300000474, - 0x47500000476, - 0x47700000478, - 0x4790000047A, - 0x47B0000047C, - 0x47D0000047E, - 0x47F00000480, - 0x48100000482, - 0x48300000488, - 0x48B0000048C, - 0x48D0000048E, - 0x48F00000490, - 0x49100000492, - 0x49300000494, - 0x49500000496, - 0x49700000498, - 0x4990000049A, - 0x49B0000049C, - 0x49D0000049E, - 0x49F000004A0, - 0x4A1000004A2, - 0x4A3000004A4, - 0x4A5000004A6, - 0x4A7000004A8, - 0x4A9000004AA, - 0x4AB000004AC, - 0x4AD000004AE, - 0x4AF000004B0, - 0x4B1000004B2, - 0x4B3000004B4, - 0x4B5000004B6, - 0x4B7000004B8, - 0x4B9000004BA, - 0x4BB000004BC, - 0x4BD000004BE, - 0x4BF000004C0, - 0x4C2000004C3, - 0x4C4000004C5, - 0x4C6000004C7, - 0x4C8000004C9, - 0x4CA000004CB, - 0x4CC000004CD, - 0x4CE000004D0, - 0x4D1000004D2, - 0x4D3000004D4, - 0x4D5000004D6, - 0x4D7000004D8, - 0x4D9000004DA, - 0x4DB000004DC, - 0x4DD000004DE, - 0x4DF000004E0, - 0x4E1000004E2, - 0x4E3000004E4, - 0x4E5000004E6, - 0x4E7000004E8, - 0x4E9000004EA, - 0x4EB000004EC, - 0x4ED000004EE, - 0x4EF000004F0, - 0x4F1000004F2, - 0x4F3000004F4, - 0x4F5000004F6, - 0x4F7000004F8, - 0x4F9000004FA, - 0x4FB000004FC, - 0x4FD000004FE, - 0x4FF00000500, - 0x50100000502, - 0x50300000504, - 0x50500000506, - 0x50700000508, - 0x5090000050A, - 0x50B0000050C, - 0x50D0000050E, - 0x50F00000510, - 0x51100000512, - 0x51300000514, - 0x51500000516, - 0x51700000518, - 0x5190000051A, - 0x51B0000051C, - 0x51D0000051E, - 0x51F00000520, - 0x52100000522, - 0x52300000524, - 0x52500000526, - 0x52700000528, - 0x5290000052A, - 0x52B0000052C, - 0x52D0000052E, - 0x52F00000530, - 0x5590000055A, - 0x56000000587, - 0x58800000589, - 0x591000005BE, - 0x5BF000005C0, - 0x5C1000005C3, - 0x5C4000005C6, - 0x5C7000005C8, - 0x5D0000005EB, - 0x5EF000005F3, - 0x6100000061B, - 0x62000000640, - 0x64100000660, - 0x66E00000675, - 0x679000006D4, - 0x6D5000006DD, - 0x6DF000006E9, - 0x6EA000006F0, - 0x6FA00000700, - 0x7100000074B, - 0x74D000007B2, - 0x7C0000007F6, - 0x7FD000007FE, - 0x8000000082E, - 0x8400000085C, - 0x8600000086B, - 0x87000000888, - 0x88900000890, - 0x897000008E2, - 0x8E300000958, - 0x96000000964, - 0x96600000970, - 0x97100000984, - 0x9850000098D, - 0x98F00000991, - 0x993000009A9, - 0x9AA000009B1, - 0x9B2000009B3, - 0x9B6000009BA, - 0x9BC000009C5, - 0x9C7000009C9, - 0x9CB000009CF, - 0x9D7000009D8, - 0x9E0000009E4, - 0x9E6000009F2, - 0x9FC000009FD, - 0x9FE000009FF, - 0xA0100000A04, - 0xA0500000A0B, - 0xA0F00000A11, - 0xA1300000A29, - 0xA2A00000A31, - 0xA3200000A33, - 0xA3500000A36, - 0xA3800000A3A, - 0xA3C00000A3D, - 0xA3E00000A43, - 0xA4700000A49, - 0xA4B00000A4E, - 0xA5100000A52, - 0xA5C00000A5D, - 0xA6600000A76, - 0xA8100000A84, - 0xA8500000A8E, - 0xA8F00000A92, - 0xA9300000AA9, - 0xAAA00000AB1, - 0xAB200000AB4, - 0xAB500000ABA, - 0xABC00000AC6, - 0xAC700000ACA, - 0xACB00000ACE, - 0xAD000000AD1, - 0xAE000000AE4, - 0xAE600000AF0, - 0xAF900000B00, - 0xB0100000B04, - 0xB0500000B0D, - 0xB0F00000B11, - 0xB1300000B29, - 0xB2A00000B31, - 0xB3200000B34, - 0xB3500000B3A, - 0xB3C00000B45, - 0xB4700000B49, - 0xB4B00000B4E, - 0xB5500000B58, - 0xB5F00000B64, - 0xB6600000B70, - 0xB7100000B72, - 0xB8200000B84, - 0xB8500000B8B, - 0xB8E00000B91, - 0xB9200000B96, - 0xB9900000B9B, - 0xB9C00000B9D, - 0xB9E00000BA0, - 0xBA300000BA5, - 0xBA800000BAB, - 0xBAE00000BBA, - 0xBBE00000BC3, - 0xBC600000BC9, - 0xBCA00000BCE, - 0xBD000000BD1, - 0xBD700000BD8, - 0xBE600000BF0, - 0xC0000000C0D, - 0xC0E00000C11, - 0xC1200000C29, - 0xC2A00000C3A, - 0xC3C00000C45, - 0xC4600000C49, - 0xC4A00000C4E, - 0xC5500000C57, - 0xC5800000C5B, - 0xC5C00000C5E, - 0xC6000000C64, - 0xC6600000C70, - 0xC8000000C84, - 0xC8500000C8D, - 0xC8E00000C91, - 0xC9200000CA9, - 0xCAA00000CB4, - 0xCB500000CBA, - 0xCBC00000CC5, - 0xCC600000CC9, - 0xCCA00000CCE, - 0xCD500000CD7, - 0xCDC00000CDF, - 0xCE000000CE4, - 0xCE600000CF0, - 0xCF100000CF4, - 0xD0000000D0D, - 0xD0E00000D11, - 0xD1200000D45, - 0xD4600000D49, - 0xD4A00000D4F, - 0xD5400000D58, - 0xD5F00000D64, - 0xD6600000D70, - 0xD7A00000D80, - 0xD8100000D84, - 0xD8500000D97, - 0xD9A00000DB2, - 0xDB300000DBC, - 0xDBD00000DBE, - 0xDC000000DC7, - 0xDCA00000DCB, - 0xDCF00000DD5, - 0xDD600000DD7, - 0xDD800000DE0, - 0xDE600000DF0, - 0xDF200000DF4, - 0xE0100000E33, - 0xE3400000E3B, - 0xE4000000E4F, - 0xE5000000E5A, - 0xE8100000E83, - 0xE8400000E85, - 0xE8600000E8B, - 0xE8C00000EA4, - 0xEA500000EA6, - 0xEA700000EB3, - 0xEB400000EBE, - 0xEC000000EC5, - 0xEC600000EC7, - 0xEC800000ECF, - 0xED000000EDA, - 0xEDE00000EE0, - 0xF0000000F01, - 0xF0B00000F0C, - 0xF1800000F1A, - 0xF2000000F2A, - 0xF3500000F36, - 0xF3700000F38, - 0xF3900000F3A, - 0xF3E00000F43, - 0xF4400000F48, - 0xF4900000F4D, - 0xF4E00000F52, - 0xF5300000F57, - 0xF5800000F5C, - 0xF5D00000F69, - 0xF6A00000F6D, - 0xF7100000F73, - 0xF7400000F75, - 0xF7A00000F81, - 0xF8200000F85, - 0xF8600000F93, - 0xF9400000F98, - 0xF9900000F9D, - 0xF9E00000FA2, - 0xFA300000FA7, - 0xFA800000FAC, - 0xFAD00000FB9, - 0xFBA00000FBD, - 0xFC600000FC7, - 0x10000000104A, - 0x10500000109E, - 0x10D0000010FB, - 0x10FD00001100, - 0x120000001249, - 0x124A0000124E, - 0x125000001257, - 0x125800001259, - 0x125A0000125E, - 0x126000001289, - 0x128A0000128E, - 0x1290000012B1, - 0x12B2000012B6, - 0x12B8000012BF, - 0x12C0000012C1, - 0x12C2000012C6, - 0x12C8000012D7, - 0x12D800001311, - 0x131200001316, - 0x13180000135B, - 0x135D00001360, - 0x138000001390, - 0x13A0000013F6, - 0x14010000166D, - 0x166F00001680, - 0x16810000169B, - 0x16A0000016EB, - 0x16F1000016F9, - 0x170000001716, - 0x171F00001735, - 0x174000001754, - 0x17600000176D, - 0x176E00001771, - 0x177200001774, - 0x1780000017B4, - 0x17B6000017D4, - 0x17D7000017D8, - 0x17DC000017DE, - 0x17E0000017EA, - 0x18100000181A, - 0x182000001879, - 0x1880000018AB, - 0x18B0000018F6, - 0x19000000191F, - 0x19200000192C, - 0x19300000193C, - 0x19460000196E, - 0x197000001975, - 0x1980000019AC, - 0x19B0000019CA, - 0x19D0000019DA, - 0x1A0000001A1C, - 0x1A2000001A5F, - 0x1A6000001A7D, - 0x1A7F00001A8A, - 0x1A9000001A9A, - 0x1AA700001AA8, - 0x1AB000001ABE, - 0x1ABF00001ADE, - 0x1AE000001AEC, - 0x1B0000001B4D, - 0x1B5000001B5A, - 0x1B6B00001B74, - 0x1B8000001BF4, - 0x1C0000001C38, - 0x1C4000001C4A, - 0x1C4D00001C7E, - 0x1C8A00001C8B, - 0x1CD000001CD3, - 0x1CD400001CFB, - 0x1D0000001D2C, - 0x1D2F00001D30, - 0x1D3B00001D3C, - 0x1D4E00001D4F, - 0x1D6B00001D78, - 0x1D7900001D9B, - 0x1DC000001E00, - 0x1E0100001E02, - 0x1E0300001E04, - 0x1E0500001E06, - 0x1E0700001E08, - 0x1E0900001E0A, - 0x1E0B00001E0C, - 0x1E0D00001E0E, - 0x1E0F00001E10, - 0x1E1100001E12, - 0x1E1300001E14, - 0x1E1500001E16, - 0x1E1700001E18, - 0x1E1900001E1A, - 0x1E1B00001E1C, - 0x1E1D00001E1E, - 0x1E1F00001E20, - 0x1E2100001E22, - 0x1E2300001E24, - 0x1E2500001E26, - 0x1E2700001E28, - 0x1E2900001E2A, - 0x1E2B00001E2C, - 0x1E2D00001E2E, - 0x1E2F00001E30, - 0x1E3100001E32, - 0x1E3300001E34, - 0x1E3500001E36, - 0x1E3700001E38, - 0x1E3900001E3A, - 0x1E3B00001E3C, - 0x1E3D00001E3E, - 0x1E3F00001E40, - 0x1E4100001E42, - 0x1E4300001E44, - 0x1E4500001E46, - 0x1E4700001E48, - 0x1E4900001E4A, - 0x1E4B00001E4C, - 0x1E4D00001E4E, - 0x1E4F00001E50, - 0x1E5100001E52, - 0x1E5300001E54, - 0x1E5500001E56, - 0x1E5700001E58, - 0x1E5900001E5A, - 0x1E5B00001E5C, - 0x1E5D00001E5E, - 0x1E5F00001E60, - 0x1E6100001E62, - 0x1E6300001E64, - 0x1E6500001E66, - 0x1E6700001E68, - 0x1E6900001E6A, - 0x1E6B00001E6C, - 0x1E6D00001E6E, - 0x1E6F00001E70, - 0x1E7100001E72, - 0x1E7300001E74, - 0x1E7500001E76, - 0x1E7700001E78, - 0x1E7900001E7A, - 0x1E7B00001E7C, - 0x1E7D00001E7E, - 0x1E7F00001E80, - 0x1E8100001E82, - 0x1E8300001E84, - 0x1E8500001E86, - 0x1E8700001E88, - 0x1E8900001E8A, - 0x1E8B00001E8C, - 0x1E8D00001E8E, - 0x1E8F00001E90, - 0x1E9100001E92, - 0x1E9300001E94, - 0x1E9500001E9A, - 0x1E9C00001E9E, - 0x1E9F00001EA0, - 0x1EA100001EA2, - 0x1EA300001EA4, - 0x1EA500001EA6, - 0x1EA700001EA8, - 0x1EA900001EAA, - 0x1EAB00001EAC, - 0x1EAD00001EAE, - 0x1EAF00001EB0, - 0x1EB100001EB2, - 0x1EB300001EB4, - 0x1EB500001EB6, - 0x1EB700001EB8, - 0x1EB900001EBA, - 0x1EBB00001EBC, - 0x1EBD00001EBE, - 0x1EBF00001EC0, - 0x1EC100001EC2, - 0x1EC300001EC4, - 0x1EC500001EC6, - 0x1EC700001EC8, - 0x1EC900001ECA, - 0x1ECB00001ECC, - 0x1ECD00001ECE, - 0x1ECF00001ED0, - 0x1ED100001ED2, - 0x1ED300001ED4, - 0x1ED500001ED6, - 0x1ED700001ED8, - 0x1ED900001EDA, - 0x1EDB00001EDC, - 0x1EDD00001EDE, - 0x1EDF00001EE0, - 0x1EE100001EE2, - 0x1EE300001EE4, - 0x1EE500001EE6, - 0x1EE700001EE8, - 0x1EE900001EEA, - 0x1EEB00001EEC, - 0x1EED00001EEE, - 0x1EEF00001EF0, - 0x1EF100001EF2, - 0x1EF300001EF4, - 0x1EF500001EF6, - 0x1EF700001EF8, - 0x1EF900001EFA, - 0x1EFB00001EFC, - 0x1EFD00001EFE, - 0x1EFF00001F08, - 0x1F1000001F16, - 0x1F2000001F28, - 0x1F3000001F38, - 0x1F4000001F46, - 0x1F5000001F58, - 0x1F6000001F68, - 0x1F7000001F71, - 0x1F7200001F73, - 0x1F7400001F75, - 0x1F7600001F77, - 0x1F7800001F79, - 0x1F7A00001F7B, - 0x1F7C00001F7D, - 0x1FB000001FB2, - 0x1FB600001FB7, - 0x1FC600001FC7, - 0x1FD000001FD3, - 0x1FD600001FD8, - 0x1FE000001FE3, - 0x1FE400001FE8, - 0x1FF600001FF7, - 0x214E0000214F, - 0x218400002185, - 0x2C3000002C60, - 0x2C6100002C62, - 0x2C6500002C67, - 0x2C6800002C69, - 0x2C6A00002C6B, - 0x2C6C00002C6D, - 0x2C7100002C72, - 0x2C7300002C75, - 0x2C7600002C7C, - 0x2C8100002C82, - 0x2C8300002C84, - 0x2C8500002C86, - 0x2C8700002C88, - 0x2C8900002C8A, - 0x2C8B00002C8C, - 0x2C8D00002C8E, - 0x2C8F00002C90, - 0x2C9100002C92, - 0x2C9300002C94, - 0x2C9500002C96, - 0x2C9700002C98, - 0x2C9900002C9A, - 0x2C9B00002C9C, - 0x2C9D00002C9E, - 0x2C9F00002CA0, - 0x2CA100002CA2, - 0x2CA300002CA4, - 0x2CA500002CA6, - 0x2CA700002CA8, - 0x2CA900002CAA, - 0x2CAB00002CAC, - 0x2CAD00002CAE, - 0x2CAF00002CB0, - 0x2CB100002CB2, - 0x2CB300002CB4, - 0x2CB500002CB6, - 0x2CB700002CB8, - 0x2CB900002CBA, - 0x2CBB00002CBC, - 0x2CBD00002CBE, - 0x2CBF00002CC0, - 0x2CC100002CC2, - 0x2CC300002CC4, - 0x2CC500002CC6, - 0x2CC700002CC8, - 0x2CC900002CCA, - 0x2CCB00002CCC, - 0x2CCD00002CCE, - 0x2CCF00002CD0, - 0x2CD100002CD2, - 0x2CD300002CD4, - 0x2CD500002CD6, - 0x2CD700002CD8, - 0x2CD900002CDA, - 0x2CDB00002CDC, - 0x2CDD00002CDE, - 0x2CDF00002CE0, - 0x2CE100002CE2, - 0x2CE300002CE5, - 0x2CEC00002CED, - 0x2CEE00002CF2, - 0x2CF300002CF4, - 0x2D0000002D26, - 0x2D2700002D28, - 0x2D2D00002D2E, - 0x2D3000002D68, - 0x2D7F00002D97, - 0x2DA000002DA7, - 0x2DA800002DAF, - 0x2DB000002DB7, - 0x2DB800002DBF, - 0x2DC000002DC7, - 0x2DC800002DCF, - 0x2DD000002DD7, - 0x2DD800002DDF, - 0x2DE000002E00, - 0x2E2F00002E30, - 0x300500003008, - 0x302A0000302E, - 0x303C0000303D, - 0x304100003097, - 0x30990000309B, - 0x309D0000309F, - 0x30A1000030FB, - 0x30FC000030FF, - 0x310500003130, - 0x31A0000031C0, - 0x31F000003200, - 0x340000004DC0, - 0x4E000000A48D, - 0xA4D00000A4FE, - 0xA5000000A60D, - 0xA6100000A62C, - 0xA6410000A642, - 0xA6430000A644, - 0xA6450000A646, - 0xA6470000A648, - 0xA6490000A64A, - 0xA64B0000A64C, - 0xA64D0000A64E, - 0xA64F0000A650, - 0xA6510000A652, - 0xA6530000A654, - 0xA6550000A656, - 0xA6570000A658, - 0xA6590000A65A, - 0xA65B0000A65C, - 0xA65D0000A65E, - 0xA65F0000A660, - 0xA6610000A662, - 0xA6630000A664, - 0xA6650000A666, - 0xA6670000A668, - 0xA6690000A66A, - 0xA66B0000A66C, - 0xA66D0000A670, - 0xA6740000A67E, - 0xA67F0000A680, - 0xA6810000A682, - 0xA6830000A684, - 0xA6850000A686, - 0xA6870000A688, - 0xA6890000A68A, - 0xA68B0000A68C, - 0xA68D0000A68E, - 0xA68F0000A690, - 0xA6910000A692, - 0xA6930000A694, - 0xA6950000A696, - 0xA6970000A698, - 0xA6990000A69A, - 0xA69B0000A69C, - 0xA69E0000A6E6, - 0xA6F00000A6F2, - 0xA7170000A720, - 0xA7230000A724, - 0xA7250000A726, - 0xA7270000A728, - 0xA7290000A72A, - 0xA72B0000A72C, - 0xA72D0000A72E, - 0xA72F0000A732, - 0xA7330000A734, - 0xA7350000A736, - 0xA7370000A738, - 0xA7390000A73A, - 0xA73B0000A73C, - 0xA73D0000A73E, - 0xA73F0000A740, - 0xA7410000A742, - 0xA7430000A744, - 0xA7450000A746, - 0xA7470000A748, - 0xA7490000A74A, - 0xA74B0000A74C, - 0xA74D0000A74E, - 0xA74F0000A750, - 0xA7510000A752, - 0xA7530000A754, - 0xA7550000A756, - 0xA7570000A758, - 0xA7590000A75A, - 0xA75B0000A75C, - 0xA75D0000A75E, - 0xA75F0000A760, - 0xA7610000A762, - 0xA7630000A764, - 0xA7650000A766, - 0xA7670000A768, - 0xA7690000A76A, - 0xA76B0000A76C, - 0xA76D0000A76E, - 0xA76F0000A770, - 0xA7710000A779, - 0xA77A0000A77B, - 0xA77C0000A77D, - 0xA77F0000A780, - 0xA7810000A782, - 0xA7830000A784, - 0xA7850000A786, - 0xA7870000A789, - 0xA78C0000A78D, - 0xA78E0000A790, - 0xA7910000A792, - 0xA7930000A796, - 0xA7970000A798, - 0xA7990000A79A, - 0xA79B0000A79C, - 0xA79D0000A79E, - 0xA79F0000A7A0, - 0xA7A10000A7A2, - 0xA7A30000A7A4, - 0xA7A50000A7A6, - 0xA7A70000A7A8, - 0xA7A90000A7AA, - 0xA7AF0000A7B0, - 0xA7B50000A7B6, - 0xA7B70000A7B8, - 0xA7B90000A7BA, - 0xA7BB0000A7BC, - 0xA7BD0000A7BE, - 0xA7BF0000A7C0, - 0xA7C10000A7C2, - 0xA7C30000A7C4, - 0xA7C80000A7C9, - 0xA7CA0000A7CB, - 0xA7CD0000A7CE, - 0xA7CF0000A7D0, - 0xA7D10000A7D2, - 0xA7D30000A7D4, - 0xA7D50000A7D6, - 0xA7D70000A7D8, - 0xA7D90000A7DA, - 0xA7DB0000A7DC, - 0xA7F60000A7F8, - 0xA7FA0000A828, - 0xA82C0000A82D, - 0xA8400000A874, - 0xA8800000A8C6, - 0xA8D00000A8DA, - 0xA8E00000A8F8, - 0xA8FB0000A8FC, - 0xA8FD0000A92E, - 0xA9300000A954, - 0xA9800000A9C1, - 0xA9CF0000A9DA, - 0xA9E00000A9FF, - 0xAA000000AA37, - 0xAA400000AA4E, - 0xAA500000AA5A, - 0xAA600000AA77, - 0xAA7A0000AAC3, - 0xAADB0000AADE, - 0xAAE00000AAF0, - 0xAAF20000AAF7, - 0xAB010000AB07, - 0xAB090000AB0F, - 0xAB110000AB17, - 0xAB200000AB27, - 0xAB280000AB2F, - 0xAB300000AB5B, - 0xAB600000AB69, - 0xABC00000ABEB, - 0xABEC0000ABEE, - 0xABF00000ABFA, - 0xAC000000D7A4, - 0xFA0E0000FA10, - 0xFA110000FA12, - 0xFA130000FA15, - 0xFA1F0000FA20, - 0xFA210000FA22, - 0xFA230000FA25, - 0xFA270000FA2A, - 0xFB1E0000FB1F, - 0xFE200000FE30, - 0xFE730000FE74, - 0x100000001000C, - 0x1000D00010027, - 0x100280001003B, - 0x1003C0001003E, - 0x1003F0001004E, - 0x100500001005E, - 0x10080000100FB, - 0x101FD000101FE, - 0x102800001029D, - 0x102A0000102D1, - 0x102E0000102E1, - 0x1030000010320, - 0x1032D00010341, - 0x103420001034A, - 0x103500001037B, - 0x103800001039E, - 0x103A0000103C4, - 0x103C8000103D0, - 0x104280001049E, - 0x104A0000104AA, - 0x104D8000104FC, - 0x1050000010528, - 0x1053000010564, - 0x10597000105A2, - 0x105A3000105B2, - 0x105B3000105BA, - 0x105BB000105BD, - 0x105C0000105F4, - 0x1060000010737, - 0x1074000010756, - 0x1076000010768, - 0x1078000010781, - 0x1080000010806, - 0x1080800010809, - 0x1080A00010836, - 0x1083700010839, - 0x1083C0001083D, - 0x1083F00010856, - 0x1086000010877, - 0x108800001089F, - 0x108E0000108F3, - 0x108F4000108F6, - 0x1090000010916, - 0x109200001093A, - 0x109400001095A, - 0x10980000109B8, - 0x109BE000109C0, - 0x10A0000010A04, - 0x10A0500010A07, - 0x10A0C00010A14, - 0x10A1500010A18, - 0x10A1900010A36, - 0x10A3800010A3B, - 0x10A3F00010A40, - 0x10A6000010A7D, - 0x10A8000010A9D, - 0x10AC000010AC8, - 0x10AC900010AE7, - 0x10B0000010B36, - 0x10B4000010B56, - 0x10B6000010B73, - 0x10B8000010B92, - 0x10C0000010C49, - 0x10CC000010CF3, - 0x10D0000010D28, - 0x10D3000010D3A, - 0x10D4000010D50, - 0x10D6900010D6E, - 0x10D6F00010D86, - 0x10E8000010EAA, - 0x10EAB00010EAD, - 0x10EB000010EB2, - 0x10EC200010EC8, - 0x10EFA00010F1D, - 0x10F2700010F28, - 0x10F3000010F51, - 0x10F7000010F86, - 0x10FB000010FC5, - 0x10FE000010FF7, - 0x1100000011047, - 0x1106600011076, - 0x1107F000110BB, - 0x110C2000110C3, - 0x110D0000110E9, - 0x110F0000110FA, - 0x1110000011135, - 0x1113600011140, - 0x1114400011148, - 0x1115000011174, - 0x1117600011177, - 0x11180000111C5, - 0x111C9000111CD, - 0x111CE000111DB, - 0x111DC000111DD, - 0x1120000011212, - 0x1121300011238, - 0x1123E00011242, - 0x1128000011287, - 0x1128800011289, - 0x1128A0001128E, - 0x1128F0001129E, - 0x1129F000112A9, - 0x112B0000112EB, - 0x112F0000112FA, - 0x1130000011304, - 0x113050001130D, - 0x1130F00011311, - 0x1131300011329, - 0x1132A00011331, - 0x1133200011334, - 0x113350001133A, - 0x1133B00011345, - 0x1134700011349, - 0x1134B0001134E, - 0x1135000011351, - 0x1135700011358, - 0x1135D00011364, - 0x113660001136D, - 0x1137000011375, - 0x113800001138A, - 0x1138B0001138C, - 0x1138E0001138F, - 0x11390000113B6, - 0x113B7000113C1, - 0x113C2000113C3, - 0x113C5000113C6, - 0x113C7000113CB, - 0x113CC000113D4, - 0x113E1000113E3, - 0x114000001144B, - 0x114500001145A, - 0x1145E00011462, - 0x11480000114C6, - 0x114C7000114C8, - 0x114D0000114DA, - 0x11580000115B6, - 0x115B8000115C1, - 0x115D8000115DE, - 0x1160000011641, - 0x1164400011645, - 0x116500001165A, - 0x11680000116B9, - 0x116C0000116CA, - 0x116D0000116E4, - 0x117000001171B, - 0x1171D0001172C, - 0x117300001173A, - 0x1174000011747, - 0x118000001183B, - 0x118C0000118EA, - 0x118FF00011907, - 0x119090001190A, - 0x1190C00011914, - 0x1191500011917, - 0x1191800011936, - 0x1193700011939, - 0x1193B00011944, - 0x119500001195A, - 0x119A0000119A8, - 0x119AA000119D8, - 0x119DA000119E2, - 0x119E3000119E5, - 0x11A0000011A3F, - 0x11A4700011A48, - 0x11A5000011A9A, - 0x11A9D00011A9E, - 0x11AB000011AF9, - 0x11B6000011B68, - 0x11BC000011BE1, - 0x11BF000011BFA, - 0x11C0000011C09, - 0x11C0A00011C37, - 0x11C3800011C41, - 0x11C5000011C5A, - 0x11C7200011C90, - 0x11C9200011CA8, - 0x11CA900011CB7, - 0x11D0000011D07, - 0x11D0800011D0A, - 0x11D0B00011D37, - 0x11D3A00011D3B, - 0x11D3C00011D3E, - 0x11D3F00011D48, - 0x11D5000011D5A, - 0x11D6000011D66, - 0x11D6700011D69, - 0x11D6A00011D8F, - 0x11D9000011D92, - 0x11D9300011D99, - 0x11DA000011DAA, - 0x11DB000011DDC, - 0x11DE000011DEA, - 0x11EE000011EF7, - 0x11F0000011F11, - 0x11F1200011F3B, - 0x11F3E00011F43, - 0x11F5000011F5B, - 0x11FB000011FB1, - 0x120000001239A, - 0x1248000012544, - 0x12F9000012FF1, - 0x1300000013430, - 0x1344000013456, - 0x13460000143FB, - 0x1440000014647, - 0x161000001613A, - 0x1680000016A39, - 0x16A4000016A5F, - 0x16A6000016A6A, - 0x16A7000016ABF, - 0x16AC000016ACA, - 0x16AD000016AEE, - 0x16AF000016AF5, - 0x16B0000016B37, - 0x16B4000016B44, - 0x16B5000016B5A, - 0x16B6300016B78, - 0x16B7D00016B90, - 0x16D4000016D6D, - 0x16D7000016D7A, - 0x16E6000016E80, - 0x16EBB00016ED4, - 0x16F0000016F4B, - 0x16F4F00016F88, - 0x16F8F00016FA0, - 0x16FE000016FE2, - 0x16FE300016FE5, - 0x16FF000016FF4, - 0x1700000018CD6, - 0x18CFF00018D1F, - 0x18D8000018DF3, - 0x1AFF00001AFF4, - 0x1AFF50001AFFC, - 0x1AFFD0001AFFF, - 0x1B0000001B123, - 0x1B1320001B133, - 0x1B1500001B153, - 0x1B1550001B156, - 0x1B1640001B168, - 0x1B1700001B2FC, - 0x1BC000001BC6B, - 0x1BC700001BC7D, - 0x1BC800001BC89, - 0x1BC900001BC9A, - 0x1BC9D0001BC9F, - 0x1CF000001CF2E, - 0x1CF300001CF47, - 0x1DA000001DA37, - 0x1DA3B0001DA6D, - 0x1DA750001DA76, - 0x1DA840001DA85, - 0x1DA9B0001DAA0, - 0x1DAA10001DAB0, - 0x1DF000001DF1F, - 0x1DF250001DF2B, - 0x1E0000001E007, - 0x1E0080001E019, - 0x1E01B0001E022, - 0x1E0230001E025, - 0x1E0260001E02B, - 0x1E08F0001E090, - 0x1E1000001E12D, - 0x1E1300001E13E, - 0x1E1400001E14A, - 0x1E14E0001E14F, - 0x1E2900001E2AF, - 0x1E2C00001E2FA, - 0x1E4D00001E4FA, - 0x1E5D00001E5FB, - 0x1E6C00001E6DF, - 0x1E6E00001E6F6, - 0x1E6FE0001E700, - 0x1E7E00001E7E7, - 0x1E7E80001E7EC, - 0x1E7ED0001E7EF, - 0x1E7F00001E7FF, - 0x1E8000001E8C5, - 0x1E8D00001E8D7, - 0x1E9220001E94C, - 0x1E9500001E95A, - 0x200000002A6E0, - 0x2A7000002B81E, - 0x2B8200002CEAE, - 0x2CEB00002EBE1, - 0x2EBF00002EE5E, - 0x300000003134B, - 0x313500003347A, - ), - "CONTEXTJ": (0x200C0000200E,), - "CONTEXTO": ( - 0xB7000000B8, - 0x37500000376, - 0x5F3000005F5, - 0x6600000066A, - 0x6F0000006FA, - 0x30FB000030FC, - ), -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/intranges.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/intranges.py deleted file mode 100644 index 19d7781..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/intranges.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -Given a list of integers, made up of (hopefully) a small number of long runs -of consecutive integers, compute a representation of the form -((start1, end1), (start2, end2) ...). Then answer the question "was x present -in the original list?" in time O(log(# runs)). -""" - -import bisect - - -def intranges_from_list(list_: list[int]) -> tuple[int, ...]: - """Represent a list of integers as a sequence of ranges: - ((start_0, end_0), (start_1, end_1), ...), such that the original - integers are exactly those x such that start_i <= x < end_i for some i. - - Ranges are encoded as single integers (start << 32 | end), not as tuples. - """ - - sorted_list = sorted(list_) - ranges = [] - last_write = -1 - for i in range(len(sorted_list)): - if i + 1 < len(sorted_list) and sorted_list[i] == sorted_list[i + 1] - 1: - continue - current_range = sorted_list[last_write + 1 : i + 1] - ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) - last_write = i - - return tuple(ranges) - - -def _encode_range(start: int, end: int) -> int: - return (start << 32) | end - - -def _decode_range(r: int) -> tuple[int, int]: - return (r >> 32), (r & ((1 << 32) - 1)) - - -def intranges_contain(int_: int, ranges: tuple[int, ...]) -> bool: - """Determine if `int_` falls into one of the ranges in `ranges`.""" - tuple_ = _encode_range(int_, 0) - pos = bisect.bisect_left(ranges, tuple_) - # we could be immediately ahead of a tuple (start, end) - # with start < int_ <= end - if pos > 0: - left, right = _decode_range(ranges[pos - 1]) - if left <= int_ < right: - return True - # or we could be immediately behind a tuple (int_, end) - if pos < len(ranges): - left, _ = _decode_range(ranges[pos]) - if left == int_: - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/package_data.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/package_data.py deleted file mode 100644 index 94e4039..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/package_data.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "3.18" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/uts46data.py b/server/server-browser-api/venv/lib/python3.11/site-packages/idna/uts46data.py deleted file mode 100644 index f2d931f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/idna/uts46data.py +++ /dev/null @@ -1,16896 +0,0 @@ -# This file is automatically generated by tools/idna-data - -from array import array -from typing import Optional - -"""IDNA Mapping Table from UTS46.""" - - -__version__ = "17.0.0" - -uts46_starts: "array[int]" = array( - "I", - ( - 0x0, - 0x1, - 0x2, - 0x3, - 0x4, - 0x5, - 0x6, - 0x7, - 0x8, - 0x9, - 0xA, - 0xB, - 0xC, - 0xD, - 0xE, - 0xF, - 0x10, - 0x11, - 0x12, - 0x13, - 0x14, - 0x15, - 0x16, - 0x17, - 0x18, - 0x19, - 0x1A, - 0x1B, - 0x1C, - 0x1D, - 0x1E, - 0x1F, - 0x20, - 0x21, - 0x22, - 0x23, - 0x24, - 0x25, - 0x26, - 0x27, - 0x28, - 0x29, - 0x2A, - 0x2B, - 0x2C, - 0x2D, - 0x2E, - 0x2F, - 0x30, - 0x31, - 0x32, - 0x33, - 0x34, - 0x35, - 0x36, - 0x37, - 0x38, - 0x39, - 0x3A, - 0x3B, - 0x3C, - 0x3D, - 0x3E, - 0x3F, - 0x40, - 0x41, - 0x42, - 0x43, - 0x44, - 0x45, - 0x46, - 0x47, - 0x48, - 0x49, - 0x4A, - 0x4B, - 0x4C, - 0x4D, - 0x4E, - 0x4F, - 0x50, - 0x51, - 0x52, - 0x53, - 0x54, - 0x55, - 0x56, - 0x57, - 0x58, - 0x59, - 0x5A, - 0x5B, - 0x5C, - 0x5D, - 0x5E, - 0x5F, - 0x60, - 0x61, - 0x62, - 0x63, - 0x64, - 0x65, - 0x66, - 0x67, - 0x68, - 0x69, - 0x6A, - 0x6B, - 0x6C, - 0x6D, - 0x6E, - 0x6F, - 0x70, - 0x71, - 0x72, - 0x73, - 0x74, - 0x75, - 0x76, - 0x77, - 0x78, - 0x79, - 0x7A, - 0x7B, - 0x7C, - 0x7D, - 0x7E, - 0x7F, - 0x80, - 0x81, - 0x82, - 0x83, - 0x84, - 0x85, - 0x86, - 0x87, - 0x88, - 0x89, - 0x8A, - 0x8B, - 0x8C, - 0x8D, - 0x8E, - 0x8F, - 0x90, - 0x91, - 0x92, - 0x93, - 0x94, - 0x95, - 0x96, - 0x97, - 0x98, - 0x99, - 0x9A, - 0x9B, - 0x9C, - 0x9D, - 0x9E, - 0x9F, - 0xA0, - 0xA1, - 0xA2, - 0xA3, - 0xA4, - 0xA5, - 0xA6, - 0xA7, - 0xA8, - 0xA9, - 0xAA, - 0xAB, - 0xAC, - 0xAD, - 0xAE, - 0xAF, - 0xB0, - 0xB1, - 0xB2, - 0xB3, - 0xB4, - 0xB5, - 0xB6, - 0xB7, - 0xB8, - 0xB9, - 0xBA, - 0xBB, - 0xBC, - 0xBD, - 0xBE, - 0xBF, - 0xC0, - 0xC1, - 0xC2, - 0xC3, - 0xC4, - 0xC5, - 0xC6, - 0xC7, - 0xC8, - 0xC9, - 0xCA, - 0xCB, - 0xCC, - 0xCD, - 0xCE, - 0xCF, - 0xD0, - 0xD1, - 0xD2, - 0xD3, - 0xD4, - 0xD5, - 0xD6, - 0xD7, - 0xD8, - 0xD9, - 0xDA, - 0xDB, - 0xDC, - 0xDD, - 0xDE, - 0xDF, - 0xE0, - 0xE1, - 0xE2, - 0xE3, - 0xE4, - 0xE5, - 0xE6, - 0xE7, - 0xE8, - 0xE9, - 0xEA, - 0xEB, - 0xEC, - 0xED, - 0xEE, - 0xEF, - 0xF0, - 0xF1, - 0xF2, - 0xF3, - 0xF4, - 0xF5, - 0xF6, - 0xF7, - 0xF8, - 0xF9, - 0xFA, - 0xFB, - 0xFC, - 0xFD, - 0xFE, - 0xFF, - 0x100, - 0x101, - 0x102, - 0x103, - 0x104, - 0x105, - 0x106, - 0x107, - 0x108, - 0x109, - 0x10A, - 0x10B, - 0x10C, - 0x10D, - 0x10E, - 0x10F, - 0x110, - 0x111, - 0x112, - 0x113, - 0x114, - 0x115, - 0x116, - 0x117, - 0x118, - 0x119, - 0x11A, - 0x11B, - 0x11C, - 0x11D, - 0x11E, - 0x11F, - 0x120, - 0x121, - 0x122, - 0x123, - 0x124, - 0x125, - 0x126, - 0x127, - 0x128, - 0x129, - 0x12A, - 0x12B, - 0x12C, - 0x12D, - 0x12E, - 0x12F, - 0x130, - 0x131, - 0x132, - 0x134, - 0x135, - 0x136, - 0x137, - 0x139, - 0x13A, - 0x13B, - 0x13C, - 0x13D, - 0x13E, - 0x13F, - 0x141, - 0x142, - 0x143, - 0x144, - 0x145, - 0x146, - 0x147, - 0x148, - 0x149, - 0x14A, - 0x14B, - 0x14C, - 0x14D, - 0x14E, - 0x14F, - 0x150, - 0x151, - 0x152, - 0x153, - 0x154, - 0x155, - 0x156, - 0x157, - 0x158, - 0x159, - 0x15A, - 0x15B, - 0x15C, - 0x15D, - 0x15E, - 0x15F, - 0x160, - 0x161, - 0x162, - 0x163, - 0x164, - 0x165, - 0x166, - 0x167, - 0x168, - 0x169, - 0x16A, - 0x16B, - 0x16C, - 0x16D, - 0x16E, - 0x16F, - 0x170, - 0x171, - 0x172, - 0x173, - 0x174, - 0x175, - 0x176, - 0x177, - 0x178, - 0x179, - 0x17A, - 0x17B, - 0x17C, - 0x17D, - 0x17E, - 0x17F, - 0x180, - 0x181, - 0x182, - 0x183, - 0x184, - 0x185, - 0x186, - 0x187, - 0x188, - 0x189, - 0x18A, - 0x18B, - 0x18C, - 0x18E, - 0x18F, - 0x190, - 0x191, - 0x192, - 0x193, - 0x194, - 0x195, - 0x196, - 0x197, - 0x198, - 0x199, - 0x19C, - 0x19D, - 0x19E, - 0x19F, - 0x1A0, - 0x1A1, - 0x1A2, - 0x1A3, - 0x1A4, - 0x1A5, - 0x1A6, - 0x1A7, - 0x1A8, - 0x1A9, - 0x1AA, - 0x1AC, - 0x1AD, - 0x1AE, - 0x1AF, - 0x1B0, - 0x1B1, - 0x1B2, - 0x1B3, - 0x1B4, - 0x1B5, - 0x1B6, - 0x1B7, - 0x1B8, - 0x1B9, - 0x1BC, - 0x1BD, - 0x1C4, - 0x1C7, - 0x1CA, - 0x1CD, - 0x1CE, - 0x1CF, - 0x1D0, - 0x1D1, - 0x1D2, - 0x1D3, - 0x1D4, - 0x1D5, - 0x1D6, - 0x1D7, - 0x1D8, - 0x1D9, - 0x1DA, - 0x1DB, - 0x1DC, - 0x1DE, - 0x1DF, - 0x1E0, - 0x1E1, - 0x1E2, - 0x1E3, - 0x1E4, - 0x1E5, - 0x1E6, - 0x1E7, - 0x1E8, - 0x1E9, - 0x1EA, - 0x1EB, - 0x1EC, - 0x1ED, - 0x1EE, - 0x1EF, - 0x1F1, - 0x1F4, - 0x1F5, - 0x1F6, - 0x1F7, - 0x1F8, - 0x1F9, - 0x1FA, - 0x1FB, - 0x1FC, - 0x1FD, - 0x1FE, - 0x1FF, - 0x200, - 0x201, - 0x202, - 0x203, - 0x204, - 0x205, - 0x206, - 0x207, - 0x208, - 0x209, - 0x20A, - 0x20B, - 0x20C, - 0x20D, - 0x20E, - 0x20F, - 0x210, - 0x211, - 0x212, - 0x213, - 0x214, - 0x215, - 0x216, - 0x217, - 0x218, - 0x219, - 0x21A, - 0x21B, - 0x21C, - 0x21D, - 0x21E, - 0x21F, - 0x220, - 0x221, - 0x222, - 0x223, - 0x224, - 0x225, - 0x226, - 0x227, - 0x228, - 0x229, - 0x22A, - 0x22B, - 0x22C, - 0x22D, - 0x22E, - 0x22F, - 0x230, - 0x231, - 0x232, - 0x233, - 0x23A, - 0x23B, - 0x23C, - 0x23D, - 0x23E, - 0x23F, - 0x241, - 0x242, - 0x243, - 0x244, - 0x245, - 0x246, - 0x247, - 0x248, - 0x249, - 0x24A, - 0x24B, - 0x24C, - 0x24D, - 0x24E, - 0x24F, - 0x2B0, - 0x2B1, - 0x2B2, - 0x2B3, - 0x2B4, - 0x2B5, - 0x2B6, - 0x2B7, - 0x2B8, - 0x2B9, - 0x2D8, - 0x2D9, - 0x2DA, - 0x2DB, - 0x2DC, - 0x2DD, - 0x2DE, - 0x2E0, - 0x2E1, - 0x2E2, - 0x2E3, - 0x2E4, - 0x2E5, - 0x340, - 0x341, - 0x342, - 0x343, - 0x344, - 0x345, - 0x346, - 0x34F, - 0x350, - 0x370, - 0x371, - 0x372, - 0x373, - 0x374, - 0x375, - 0x376, - 0x377, - 0x378, - 0x37A, - 0x37B, - 0x37E, - 0x37F, - 0x380, - 0x384, - 0x385, - 0x386, - 0x387, - 0x388, - 0x389, - 0x38A, - 0x38B, - 0x38C, - 0x38D, - 0x38E, - 0x38F, - 0x390, - 0x391, - 0x392, - 0x393, - 0x394, - 0x395, - 0x396, - 0x397, - 0x398, - 0x399, - 0x39A, - 0x39B, - 0x39C, - 0x39D, - 0x39E, - 0x39F, - 0x3A0, - 0x3A1, - 0x3A2, - 0x3A3, - 0x3A4, - 0x3A5, - 0x3A6, - 0x3A7, - 0x3A8, - 0x3A9, - 0x3AA, - 0x3AB, - 0x3AC, - 0x3C2, - 0x3C3, - 0x3CF, - 0x3D0, - 0x3D1, - 0x3D2, - 0x3D3, - 0x3D4, - 0x3D5, - 0x3D6, - 0x3D7, - 0x3D8, - 0x3D9, - 0x3DA, - 0x3DB, - 0x3DC, - 0x3DD, - 0x3DE, - 0x3DF, - 0x3E0, - 0x3E1, - 0x3E2, - 0x3E3, - 0x3E4, - 0x3E5, - 0x3E6, - 0x3E7, - 0x3E8, - 0x3E9, - 0x3EA, - 0x3EB, - 0x3EC, - 0x3ED, - 0x3EE, - 0x3EF, - 0x3F0, - 0x3F1, - 0x3F2, - 0x3F3, - 0x3F4, - 0x3F5, - 0x3F6, - 0x3F7, - 0x3F8, - 0x3F9, - 0x3FA, - 0x3FB, - 0x3FD, - 0x3FE, - 0x3FF, - 0x400, - 0x401, - 0x402, - 0x403, - 0x404, - 0x405, - 0x406, - 0x407, - 0x408, - 0x409, - 0x40A, - 0x40B, - 0x40C, - 0x40D, - 0x40E, - 0x40F, - 0x410, - 0x411, - 0x412, - 0x413, - 0x414, - 0x415, - 0x416, - 0x417, - 0x418, - 0x419, - 0x41A, - 0x41B, - 0x41C, - 0x41D, - 0x41E, - 0x41F, - 0x420, - 0x421, - 0x422, - 0x423, - 0x424, - 0x425, - 0x426, - 0x427, - 0x428, - 0x429, - 0x42A, - 0x42B, - 0x42C, - 0x42D, - 0x42E, - 0x42F, - 0x430, - 0x460, - 0x461, - 0x462, - 0x463, - 0x464, - 0x465, - 0x466, - 0x467, - 0x468, - 0x469, - 0x46A, - 0x46B, - 0x46C, - 0x46D, - 0x46E, - 0x46F, - 0x470, - 0x471, - 0x472, - 0x473, - 0x474, - 0x475, - 0x476, - 0x477, - 0x478, - 0x479, - 0x47A, - 0x47B, - 0x47C, - 0x47D, - 0x47E, - 0x47F, - 0x480, - 0x481, - 0x48A, - 0x48B, - 0x48C, - 0x48D, - 0x48E, - 0x48F, - 0x490, - 0x491, - 0x492, - 0x493, - 0x494, - 0x495, - 0x496, - 0x497, - 0x498, - 0x499, - 0x49A, - 0x49B, - 0x49C, - 0x49D, - 0x49E, - 0x49F, - 0x4A0, - 0x4A1, - 0x4A2, - 0x4A3, - 0x4A4, - 0x4A5, - 0x4A6, - 0x4A7, - 0x4A8, - 0x4A9, - 0x4AA, - 0x4AB, - 0x4AC, - 0x4AD, - 0x4AE, - 0x4AF, - 0x4B0, - 0x4B1, - 0x4B2, - 0x4B3, - 0x4B4, - 0x4B5, - 0x4B6, - 0x4B7, - 0x4B8, - 0x4B9, - 0x4BA, - 0x4BB, - 0x4BC, - 0x4BD, - 0x4BE, - 0x4BF, - 0x4C0, - 0x4C1, - 0x4C2, - 0x4C3, - 0x4C4, - 0x4C5, - 0x4C6, - 0x4C7, - 0x4C8, - 0x4C9, - 0x4CA, - 0x4CB, - 0x4CC, - 0x4CD, - 0x4CE, - 0x4D0, - 0x4D1, - 0x4D2, - 0x4D3, - 0x4D4, - 0x4D5, - 0x4D6, - 0x4D7, - 0x4D8, - 0x4D9, - 0x4DA, - 0x4DB, - 0x4DC, - 0x4DD, - 0x4DE, - 0x4DF, - 0x4E0, - 0x4E1, - 0x4E2, - 0x4E3, - 0x4E4, - 0x4E5, - 0x4E6, - 0x4E7, - 0x4E8, - 0x4E9, - 0x4EA, - 0x4EB, - 0x4EC, - 0x4ED, - 0x4EE, - 0x4EF, - 0x4F0, - 0x4F1, - 0x4F2, - 0x4F3, - 0x4F4, - 0x4F5, - 0x4F6, - 0x4F7, - 0x4F8, - 0x4F9, - 0x4FA, - 0x4FB, - 0x4FC, - 0x4FD, - 0x4FE, - 0x4FF, - 0x500, - 0x501, - 0x502, - 0x503, - 0x504, - 0x505, - 0x506, - 0x507, - 0x508, - 0x509, - 0x50A, - 0x50B, - 0x50C, - 0x50D, - 0x50E, - 0x50F, - 0x510, - 0x511, - 0x512, - 0x513, - 0x514, - 0x515, - 0x516, - 0x517, - 0x518, - 0x519, - 0x51A, - 0x51B, - 0x51C, - 0x51D, - 0x51E, - 0x51F, - 0x520, - 0x521, - 0x522, - 0x523, - 0x524, - 0x525, - 0x526, - 0x527, - 0x528, - 0x529, - 0x52A, - 0x52B, - 0x52C, - 0x52D, - 0x52E, - 0x52F, - 0x530, - 0x531, - 0x532, - 0x533, - 0x534, - 0x535, - 0x536, - 0x537, - 0x538, - 0x539, - 0x53A, - 0x53B, - 0x53C, - 0x53D, - 0x53E, - 0x53F, - 0x540, - 0x541, - 0x542, - 0x543, - 0x544, - 0x545, - 0x546, - 0x547, - 0x548, - 0x549, - 0x54A, - 0x54B, - 0x54C, - 0x54D, - 0x54E, - 0x54F, - 0x550, - 0x551, - 0x552, - 0x553, - 0x554, - 0x555, - 0x556, - 0x557, - 0x559, - 0x587, - 0x588, - 0x58B, - 0x58D, - 0x590, - 0x591, - 0x5C8, - 0x5D0, - 0x5EB, - 0x5EF, - 0x5F5, - 0x606, - 0x61C, - 0x61D, - 0x675, - 0x676, - 0x677, - 0x678, - 0x679, - 0x6DD, - 0x6DE, - 0x70E, - 0x710, - 0x74B, - 0x74D, - 0x7B2, - 0x7C0, - 0x7FB, - 0x7FD, - 0x82E, - 0x830, - 0x83F, - 0x840, - 0x85C, - 0x85E, - 0x85F, - 0x860, - 0x86B, - 0x870, - 0x890, - 0x897, - 0x8E2, - 0x8E3, - 0x958, - 0x959, - 0x95A, - 0x95B, - 0x95C, - 0x95D, - 0x95E, - 0x95F, - 0x960, - 0x984, - 0x985, - 0x98D, - 0x98F, - 0x991, - 0x993, - 0x9A9, - 0x9AA, - 0x9B1, - 0x9B2, - 0x9B3, - 0x9B6, - 0x9BA, - 0x9BC, - 0x9C5, - 0x9C7, - 0x9C9, - 0x9CB, - 0x9CF, - 0x9D7, - 0x9D8, - 0x9DC, - 0x9DD, - 0x9DE, - 0x9DF, - 0x9E0, - 0x9E4, - 0x9E6, - 0x9FF, - 0xA01, - 0xA04, - 0xA05, - 0xA0B, - 0xA0F, - 0xA11, - 0xA13, - 0xA29, - 0xA2A, - 0xA31, - 0xA32, - 0xA33, - 0xA34, - 0xA35, - 0xA36, - 0xA37, - 0xA38, - 0xA3A, - 0xA3C, - 0xA3D, - 0xA3E, - 0xA43, - 0xA47, - 0xA49, - 0xA4B, - 0xA4E, - 0xA51, - 0xA52, - 0xA59, - 0xA5A, - 0xA5B, - 0xA5C, - 0xA5D, - 0xA5E, - 0xA5F, - 0xA66, - 0xA77, - 0xA81, - 0xA84, - 0xA85, - 0xA8E, - 0xA8F, - 0xA92, - 0xA93, - 0xAA9, - 0xAAA, - 0xAB1, - 0xAB2, - 0xAB4, - 0xAB5, - 0xABA, - 0xABC, - 0xAC6, - 0xAC7, - 0xACA, - 0xACB, - 0xACE, - 0xAD0, - 0xAD1, - 0xAE0, - 0xAE4, - 0xAE6, - 0xAF2, - 0xAF9, - 0xB00, - 0xB01, - 0xB04, - 0xB05, - 0xB0D, - 0xB0F, - 0xB11, - 0xB13, - 0xB29, - 0xB2A, - 0xB31, - 0xB32, - 0xB34, - 0xB35, - 0xB3A, - 0xB3C, - 0xB45, - 0xB47, - 0xB49, - 0xB4B, - 0xB4E, - 0xB55, - 0xB58, - 0xB5C, - 0xB5D, - 0xB5E, - 0xB5F, - 0xB64, - 0xB66, - 0xB78, - 0xB82, - 0xB84, - 0xB85, - 0xB8B, - 0xB8E, - 0xB91, - 0xB92, - 0xB96, - 0xB99, - 0xB9B, - 0xB9C, - 0xB9D, - 0xB9E, - 0xBA0, - 0xBA3, - 0xBA5, - 0xBA8, - 0xBAB, - 0xBAE, - 0xBBA, - 0xBBE, - 0xBC3, - 0xBC6, - 0xBC9, - 0xBCA, - 0xBCE, - 0xBD0, - 0xBD1, - 0xBD7, - 0xBD8, - 0xBE6, - 0xBFB, - 0xC00, - 0xC0D, - 0xC0E, - 0xC11, - 0xC12, - 0xC29, - 0xC2A, - 0xC3A, - 0xC3C, - 0xC45, - 0xC46, - 0xC49, - 0xC4A, - 0xC4E, - 0xC55, - 0xC57, - 0xC58, - 0xC5B, - 0xC5C, - 0xC5E, - 0xC60, - 0xC64, - 0xC66, - 0xC70, - 0xC77, - 0xC8D, - 0xC8E, - 0xC91, - 0xC92, - 0xCA9, - 0xCAA, - 0xCB4, - 0xCB5, - 0xCBA, - 0xCBC, - 0xCC5, - 0xCC6, - 0xCC9, - 0xCCA, - 0xCCE, - 0xCD5, - 0xCD7, - 0xCDC, - 0xCDF, - 0xCE0, - 0xCE4, - 0xCE6, - 0xCF0, - 0xCF1, - 0xCF4, - 0xD00, - 0xD0D, - 0xD0E, - 0xD11, - 0xD12, - 0xD45, - 0xD46, - 0xD49, - 0xD4A, - 0xD50, - 0xD54, - 0xD64, - 0xD66, - 0xD80, - 0xD81, - 0xD84, - 0xD85, - 0xD97, - 0xD9A, - 0xDB2, - 0xDB3, - 0xDBC, - 0xDBD, - 0xDBE, - 0xDC0, - 0xDC7, - 0xDCA, - 0xDCB, - 0xDCF, - 0xDD5, - 0xDD6, - 0xDD7, - 0xDD8, - 0xDE0, - 0xDE6, - 0xDF0, - 0xDF2, - 0xDF5, - 0xE01, - 0xE33, - 0xE34, - 0xE3B, - 0xE3F, - 0xE5C, - 0xE81, - 0xE83, - 0xE84, - 0xE85, - 0xE86, - 0xE8B, - 0xE8C, - 0xEA4, - 0xEA5, - 0xEA6, - 0xEA7, - 0xEB3, - 0xEB4, - 0xEBE, - 0xEC0, - 0xEC5, - 0xEC6, - 0xEC7, - 0xEC8, - 0xECF, - 0xED0, - 0xEDA, - 0xEDC, - 0xEDD, - 0xEDE, - 0xEE0, - 0xF00, - 0xF0C, - 0xF0D, - 0xF43, - 0xF44, - 0xF48, - 0xF49, - 0xF4D, - 0xF4E, - 0xF52, - 0xF53, - 0xF57, - 0xF58, - 0xF5C, - 0xF5D, - 0xF69, - 0xF6A, - 0xF6D, - 0xF71, - 0xF73, - 0xF74, - 0xF75, - 0xF76, - 0xF77, - 0xF78, - 0xF79, - 0xF7A, - 0xF81, - 0xF82, - 0xF93, - 0xF94, - 0xF98, - 0xF99, - 0xF9D, - 0xF9E, - 0xFA2, - 0xFA3, - 0xFA7, - 0xFA8, - 0xFAC, - 0xFAD, - 0xFB9, - 0xFBA, - 0xFBD, - 0xFBE, - 0xFCD, - 0xFCE, - 0xFDB, - 0x1000, - 0x10A0, - 0x10A1, - 0x10A2, - 0x10A3, - 0x10A4, - 0x10A5, - 0x10A6, - 0x10A7, - 0x10A8, - 0x10A9, - 0x10AA, - 0x10AB, - 0x10AC, - 0x10AD, - 0x10AE, - 0x10AF, - 0x10B0, - 0x10B1, - 0x10B2, - 0x10B3, - 0x10B4, - 0x10B5, - 0x10B6, - 0x10B7, - 0x10B8, - 0x10B9, - 0x10BA, - 0x10BB, - 0x10BC, - 0x10BD, - 0x10BE, - 0x10BF, - 0x10C0, - 0x10C1, - 0x10C2, - 0x10C3, - 0x10C4, - 0x10C5, - 0x10C6, - 0x10C7, - 0x10C8, - 0x10CD, - 0x10CE, - 0x10D0, - 0x10FC, - 0x10FD, - 0x115F, - 0x1161, - 0x1249, - 0x124A, - 0x124E, - 0x1250, - 0x1257, - 0x1258, - 0x1259, - 0x125A, - 0x125E, - 0x1260, - 0x1289, - 0x128A, - 0x128E, - 0x1290, - 0x12B1, - 0x12B2, - 0x12B6, - 0x12B8, - 0x12BF, - 0x12C0, - 0x12C1, - 0x12C2, - 0x12C6, - 0x12C8, - 0x12D7, - 0x12D8, - 0x1311, - 0x1312, - 0x1316, - 0x1318, - 0x135B, - 0x135D, - 0x137D, - 0x1380, - 0x139A, - 0x13A0, - 0x13F6, - 0x13F8, - 0x13F9, - 0x13FA, - 0x13FB, - 0x13FC, - 0x13FD, - 0x13FE, - 0x1400, - 0x1680, - 0x1681, - 0x169D, - 0x16A0, - 0x16F9, - 0x1700, - 0x1716, - 0x171F, - 0x1737, - 0x1740, - 0x1754, - 0x1760, - 0x176D, - 0x176E, - 0x1771, - 0x1772, - 0x1774, - 0x1780, - 0x17B4, - 0x17B6, - 0x17DE, - 0x17E0, - 0x17EA, - 0x17F0, - 0x17FA, - 0x1800, - 0x180B, - 0x1810, - 0x181A, - 0x1820, - 0x1879, - 0x1880, - 0x18AB, - 0x18B0, - 0x18F6, - 0x1900, - 0x191F, - 0x1920, - 0x192C, - 0x1930, - 0x193C, - 0x1940, - 0x1941, - 0x1944, - 0x196E, - 0x1970, - 0x1975, - 0x1980, - 0x19AC, - 0x19B0, - 0x19CA, - 0x19D0, - 0x19DB, - 0x19DE, - 0x1A1C, - 0x1A1E, - 0x1A5F, - 0x1A60, - 0x1A7D, - 0x1A7F, - 0x1A8A, - 0x1A90, - 0x1A9A, - 0x1AA0, - 0x1AAE, - 0x1AB0, - 0x1ADE, - 0x1AE0, - 0x1AEC, - 0x1B00, - 0x1B4D, - 0x1B4E, - 0x1BF4, - 0x1BFC, - 0x1C38, - 0x1C3B, - 0x1C4A, - 0x1C4D, - 0x1C80, - 0x1C81, - 0x1C82, - 0x1C83, - 0x1C84, - 0x1C86, - 0x1C87, - 0x1C88, - 0x1C89, - 0x1C8A, - 0x1C8B, - 0x1C90, - 0x1C91, - 0x1C92, - 0x1C93, - 0x1C94, - 0x1C95, - 0x1C96, - 0x1C97, - 0x1C98, - 0x1C99, - 0x1C9A, - 0x1C9B, - 0x1C9C, - 0x1C9D, - 0x1C9E, - 0x1C9F, - 0x1CA0, - 0x1CA1, - 0x1CA2, - 0x1CA3, - 0x1CA4, - 0x1CA5, - 0x1CA6, - 0x1CA7, - 0x1CA8, - 0x1CA9, - 0x1CAA, - 0x1CAB, - 0x1CAC, - 0x1CAD, - 0x1CAE, - 0x1CAF, - 0x1CB0, - 0x1CB1, - 0x1CB2, - 0x1CB3, - 0x1CB4, - 0x1CB5, - 0x1CB6, - 0x1CB7, - 0x1CB8, - 0x1CB9, - 0x1CBA, - 0x1CBB, - 0x1CBD, - 0x1CBE, - 0x1CBF, - 0x1CC0, - 0x1CC8, - 0x1CD0, - 0x1CFB, - 0x1D00, - 0x1D2C, - 0x1D2D, - 0x1D2E, - 0x1D2F, - 0x1D30, - 0x1D31, - 0x1D32, - 0x1D33, - 0x1D34, - 0x1D35, - 0x1D36, - 0x1D37, - 0x1D38, - 0x1D39, - 0x1D3A, - 0x1D3B, - 0x1D3C, - 0x1D3D, - 0x1D3E, - 0x1D3F, - 0x1D40, - 0x1D41, - 0x1D42, - 0x1D43, - 0x1D44, - 0x1D45, - 0x1D46, - 0x1D47, - 0x1D48, - 0x1D49, - 0x1D4A, - 0x1D4B, - 0x1D4C, - 0x1D4D, - 0x1D4E, - 0x1D4F, - 0x1D50, - 0x1D51, - 0x1D52, - 0x1D53, - 0x1D54, - 0x1D55, - 0x1D56, - 0x1D57, - 0x1D58, - 0x1D59, - 0x1D5A, - 0x1D5B, - 0x1D5C, - 0x1D5D, - 0x1D5E, - 0x1D5F, - 0x1D60, - 0x1D61, - 0x1D62, - 0x1D63, - 0x1D64, - 0x1D65, - 0x1D66, - 0x1D67, - 0x1D68, - 0x1D69, - 0x1D6A, - 0x1D6B, - 0x1D78, - 0x1D79, - 0x1D9B, - 0x1D9C, - 0x1D9D, - 0x1D9E, - 0x1D9F, - 0x1DA0, - 0x1DA1, - 0x1DA2, - 0x1DA3, - 0x1DA4, - 0x1DA5, - 0x1DA6, - 0x1DA7, - 0x1DA8, - 0x1DA9, - 0x1DAA, - 0x1DAB, - 0x1DAC, - 0x1DAD, - 0x1DAE, - 0x1DAF, - 0x1DB0, - 0x1DB1, - 0x1DB2, - 0x1DB3, - 0x1DB4, - 0x1DB5, - 0x1DB6, - 0x1DB7, - 0x1DB8, - 0x1DB9, - 0x1DBA, - 0x1DBB, - 0x1DBC, - 0x1DBD, - 0x1DBE, - 0x1DBF, - 0x1DC0, - 0x1E00, - 0x1E01, - 0x1E02, - 0x1E03, - 0x1E04, - 0x1E05, - 0x1E06, - 0x1E07, - 0x1E08, - 0x1E09, - 0x1E0A, - 0x1E0B, - 0x1E0C, - 0x1E0D, - 0x1E0E, - 0x1E0F, - 0x1E10, - 0x1E11, - 0x1E12, - 0x1E13, - 0x1E14, - 0x1E15, - 0x1E16, - 0x1E17, - 0x1E18, - 0x1E19, - 0x1E1A, - 0x1E1B, - 0x1E1C, - 0x1E1D, - 0x1E1E, - 0x1E1F, - 0x1E20, - 0x1E21, - 0x1E22, - 0x1E23, - 0x1E24, - 0x1E25, - 0x1E26, - 0x1E27, - 0x1E28, - 0x1E29, - 0x1E2A, - 0x1E2B, - 0x1E2C, - 0x1E2D, - 0x1E2E, - 0x1E2F, - 0x1E30, - 0x1E31, - 0x1E32, - 0x1E33, - 0x1E34, - 0x1E35, - 0x1E36, - 0x1E37, - 0x1E38, - 0x1E39, - 0x1E3A, - 0x1E3B, - 0x1E3C, - 0x1E3D, - 0x1E3E, - 0x1E3F, - 0x1E40, - 0x1E41, - 0x1E42, - 0x1E43, - 0x1E44, - 0x1E45, - 0x1E46, - 0x1E47, - 0x1E48, - 0x1E49, - 0x1E4A, - 0x1E4B, - 0x1E4C, - 0x1E4D, - 0x1E4E, - 0x1E4F, - 0x1E50, - 0x1E51, - 0x1E52, - 0x1E53, - 0x1E54, - 0x1E55, - 0x1E56, - 0x1E57, - 0x1E58, - 0x1E59, - 0x1E5A, - 0x1E5B, - 0x1E5C, - 0x1E5D, - 0x1E5E, - 0x1E5F, - 0x1E60, - 0x1E61, - 0x1E62, - 0x1E63, - 0x1E64, - 0x1E65, - 0x1E66, - 0x1E67, - 0x1E68, - 0x1E69, - 0x1E6A, - 0x1E6B, - 0x1E6C, - 0x1E6D, - 0x1E6E, - 0x1E6F, - 0x1E70, - 0x1E71, - 0x1E72, - 0x1E73, - 0x1E74, - 0x1E75, - 0x1E76, - 0x1E77, - 0x1E78, - 0x1E79, - 0x1E7A, - 0x1E7B, - 0x1E7C, - 0x1E7D, - 0x1E7E, - 0x1E7F, - 0x1E80, - 0x1E81, - 0x1E82, - 0x1E83, - 0x1E84, - 0x1E85, - 0x1E86, - 0x1E87, - 0x1E88, - 0x1E89, - 0x1E8A, - 0x1E8B, - 0x1E8C, - 0x1E8D, - 0x1E8E, - 0x1E8F, - 0x1E90, - 0x1E91, - 0x1E92, - 0x1E93, - 0x1E94, - 0x1E95, - 0x1E9A, - 0x1E9B, - 0x1E9C, - 0x1E9E, - 0x1E9F, - 0x1EA0, - 0x1EA1, - 0x1EA2, - 0x1EA3, - 0x1EA4, - 0x1EA5, - 0x1EA6, - 0x1EA7, - 0x1EA8, - 0x1EA9, - 0x1EAA, - 0x1EAB, - 0x1EAC, - 0x1EAD, - 0x1EAE, - 0x1EAF, - 0x1EB0, - 0x1EB1, - 0x1EB2, - 0x1EB3, - 0x1EB4, - 0x1EB5, - 0x1EB6, - 0x1EB7, - 0x1EB8, - 0x1EB9, - 0x1EBA, - 0x1EBB, - 0x1EBC, - 0x1EBD, - 0x1EBE, - 0x1EBF, - 0x1EC0, - 0x1EC1, - 0x1EC2, - 0x1EC3, - 0x1EC4, - 0x1EC5, - 0x1EC6, - 0x1EC7, - 0x1EC8, - 0x1EC9, - 0x1ECA, - 0x1ECB, - 0x1ECC, - 0x1ECD, - 0x1ECE, - 0x1ECF, - 0x1ED0, - 0x1ED1, - 0x1ED2, - 0x1ED3, - 0x1ED4, - 0x1ED5, - 0x1ED6, - 0x1ED7, - 0x1ED8, - 0x1ED9, - 0x1EDA, - 0x1EDB, - 0x1EDC, - 0x1EDD, - 0x1EDE, - 0x1EDF, - 0x1EE0, - 0x1EE1, - 0x1EE2, - 0x1EE3, - 0x1EE4, - 0x1EE5, - 0x1EE6, - 0x1EE7, - 0x1EE8, - 0x1EE9, - 0x1EEA, - 0x1EEB, - 0x1EEC, - 0x1EED, - 0x1EEE, - 0x1EEF, - 0x1EF0, - 0x1EF1, - 0x1EF2, - 0x1EF3, - 0x1EF4, - 0x1EF5, - 0x1EF6, - 0x1EF7, - 0x1EF8, - 0x1EF9, - 0x1EFA, - 0x1EFB, - 0x1EFC, - 0x1EFD, - 0x1EFE, - 0x1EFF, - 0x1F08, - 0x1F09, - 0x1F0A, - 0x1F0B, - 0x1F0C, - 0x1F0D, - 0x1F0E, - 0x1F0F, - 0x1F10, - 0x1F16, - 0x1F18, - 0x1F19, - 0x1F1A, - 0x1F1B, - 0x1F1C, - 0x1F1D, - 0x1F1E, - 0x1F20, - 0x1F28, - 0x1F29, - 0x1F2A, - 0x1F2B, - 0x1F2C, - 0x1F2D, - 0x1F2E, - 0x1F2F, - 0x1F30, - 0x1F38, - 0x1F39, - 0x1F3A, - 0x1F3B, - 0x1F3C, - 0x1F3D, - 0x1F3E, - 0x1F3F, - 0x1F40, - 0x1F46, - 0x1F48, - 0x1F49, - 0x1F4A, - 0x1F4B, - 0x1F4C, - 0x1F4D, - 0x1F4E, - 0x1F50, - 0x1F58, - 0x1F59, - 0x1F5A, - 0x1F5B, - 0x1F5C, - 0x1F5D, - 0x1F5E, - 0x1F5F, - 0x1F60, - 0x1F68, - 0x1F69, - 0x1F6A, - 0x1F6B, - 0x1F6C, - 0x1F6D, - 0x1F6E, - 0x1F6F, - 0x1F70, - 0x1F71, - 0x1F72, - 0x1F73, - 0x1F74, - 0x1F75, - 0x1F76, - 0x1F77, - 0x1F78, - 0x1F79, - 0x1F7A, - 0x1F7B, - 0x1F7C, - 0x1F7D, - 0x1F7E, - 0x1F80, - 0x1F81, - 0x1F82, - 0x1F83, - 0x1F84, - 0x1F85, - 0x1F86, - 0x1F87, - 0x1F88, - 0x1F89, - 0x1F8A, - 0x1F8B, - 0x1F8C, - 0x1F8D, - 0x1F8E, - 0x1F8F, - 0x1F90, - 0x1F91, - 0x1F92, - 0x1F93, - 0x1F94, - 0x1F95, - 0x1F96, - 0x1F97, - 0x1F98, - 0x1F99, - 0x1F9A, - 0x1F9B, - 0x1F9C, - 0x1F9D, - 0x1F9E, - 0x1F9F, - 0x1FA0, - 0x1FA1, - 0x1FA2, - 0x1FA3, - 0x1FA4, - 0x1FA5, - 0x1FA6, - 0x1FA7, - 0x1FA8, - 0x1FA9, - 0x1FAA, - 0x1FAB, - 0x1FAC, - 0x1FAD, - 0x1FAE, - 0x1FAF, - 0x1FB0, - 0x1FB2, - 0x1FB3, - 0x1FB4, - 0x1FB5, - 0x1FB6, - 0x1FB7, - 0x1FB8, - 0x1FB9, - 0x1FBA, - 0x1FBB, - 0x1FBC, - 0x1FBD, - 0x1FBE, - 0x1FBF, - 0x1FC0, - 0x1FC1, - 0x1FC2, - 0x1FC3, - 0x1FC4, - 0x1FC5, - 0x1FC6, - 0x1FC7, - 0x1FC8, - 0x1FC9, - 0x1FCA, - 0x1FCB, - 0x1FCC, - 0x1FCD, - 0x1FCE, - 0x1FCF, - 0x1FD0, - 0x1FD3, - 0x1FD4, - 0x1FD6, - 0x1FD8, - 0x1FD9, - 0x1FDA, - 0x1FDB, - 0x1FDC, - 0x1FDD, - 0x1FDE, - 0x1FDF, - 0x1FE0, - 0x1FE3, - 0x1FE4, - 0x1FE8, - 0x1FE9, - 0x1FEA, - 0x1FEB, - 0x1FEC, - 0x1FED, - 0x1FEE, - 0x1FEF, - 0x1FF0, - 0x1FF2, - 0x1FF3, - 0x1FF4, - 0x1FF5, - 0x1FF6, - 0x1FF7, - 0x1FF8, - 0x1FF9, - 0x1FFA, - 0x1FFB, - 0x1FFC, - 0x1FFD, - 0x1FFE, - 0x1FFF, - 0x2000, - 0x200B, - 0x200C, - 0x200E, - 0x2010, - 0x2011, - 0x2012, - 0x2017, - 0x2018, - 0x2024, - 0x2027, - 0x2028, - 0x202F, - 0x2030, - 0x2033, - 0x2034, - 0x2035, - 0x2036, - 0x2037, - 0x2038, - 0x203C, - 0x203D, - 0x203E, - 0x203F, - 0x2047, - 0x2048, - 0x2049, - 0x204A, - 0x2057, - 0x2058, - 0x205F, - 0x2060, - 0x2065, - 0x206A, - 0x2070, - 0x2071, - 0x2072, - 0x2074, - 0x2075, - 0x2076, - 0x2077, - 0x2078, - 0x2079, - 0x207A, - 0x207B, - 0x207C, - 0x207D, - 0x207E, - 0x207F, - 0x2080, - 0x2081, - 0x2082, - 0x2083, - 0x2084, - 0x2085, - 0x2086, - 0x2087, - 0x2088, - 0x2089, - 0x208A, - 0x208B, - 0x208C, - 0x208D, - 0x208E, - 0x208F, - 0x2090, - 0x2091, - 0x2092, - 0x2093, - 0x2094, - 0x2095, - 0x2096, - 0x2097, - 0x2098, - 0x2099, - 0x209A, - 0x209B, - 0x209C, - 0x209D, - 0x20A0, - 0x20A8, - 0x20A9, - 0x20C2, - 0x20D0, - 0x20F1, - 0x2100, - 0x2101, - 0x2102, - 0x2103, - 0x2104, - 0x2105, - 0x2106, - 0x2107, - 0x2108, - 0x2109, - 0x210A, - 0x210B, - 0x210F, - 0x2110, - 0x2112, - 0x2114, - 0x2115, - 0x2116, - 0x2117, - 0x2119, - 0x211A, - 0x211B, - 0x211E, - 0x2120, - 0x2121, - 0x2122, - 0x2123, - 0x2124, - 0x2125, - 0x2126, - 0x2127, - 0x2128, - 0x2129, - 0x212A, - 0x212B, - 0x212C, - 0x212D, - 0x212E, - 0x212F, - 0x2131, - 0x2132, - 0x2133, - 0x2134, - 0x2135, - 0x2136, - 0x2137, - 0x2138, - 0x2139, - 0x213A, - 0x213B, - 0x213C, - 0x213D, - 0x213F, - 0x2140, - 0x2141, - 0x2145, - 0x2147, - 0x2148, - 0x2149, - 0x214A, - 0x2150, - 0x2151, - 0x2152, - 0x2153, - 0x2154, - 0x2155, - 0x2156, - 0x2157, - 0x2158, - 0x2159, - 0x215A, - 0x215B, - 0x215C, - 0x215D, - 0x215E, - 0x215F, - 0x2160, - 0x2161, - 0x2162, - 0x2163, - 0x2164, - 0x2165, - 0x2166, - 0x2167, - 0x2168, - 0x2169, - 0x216A, - 0x216B, - 0x216C, - 0x216D, - 0x216E, - 0x216F, - 0x2170, - 0x2171, - 0x2172, - 0x2173, - 0x2174, - 0x2175, - 0x2176, - 0x2177, - 0x2178, - 0x2179, - 0x217A, - 0x217B, - 0x217C, - 0x217D, - 0x217E, - 0x217F, - 0x2180, - 0x2183, - 0x2184, - 0x2189, - 0x218A, - 0x218C, - 0x2190, - 0x222C, - 0x222D, - 0x222E, - 0x222F, - 0x2230, - 0x2231, - 0x2329, - 0x232A, - 0x232B, - 0x242A, - 0x2440, - 0x244B, - 0x2460, - 0x2461, - 0x2462, - 0x2463, - 0x2464, - 0x2465, - 0x2466, - 0x2467, - 0x2468, - 0x2469, - 0x246A, - 0x246B, - 0x246C, - 0x246D, - 0x246E, - 0x246F, - 0x2470, - 0x2471, - 0x2472, - 0x2473, - 0x2474, - 0x2475, - 0x2476, - 0x2477, - 0x2478, - 0x2479, - 0x247A, - 0x247B, - 0x247C, - 0x247D, - 0x247E, - 0x247F, - 0x2480, - 0x2481, - 0x2482, - 0x2483, - 0x2484, - 0x2485, - 0x2486, - 0x2487, - 0x2488, - 0x249C, - 0x249D, - 0x249E, - 0x249F, - 0x24A0, - 0x24A1, - 0x24A2, - 0x24A3, - 0x24A4, - 0x24A5, - 0x24A6, - 0x24A7, - 0x24A8, - 0x24A9, - 0x24AA, - 0x24AB, - 0x24AC, - 0x24AD, - 0x24AE, - 0x24AF, - 0x24B0, - 0x24B1, - 0x24B2, - 0x24B3, - 0x24B4, - 0x24B5, - 0x24B6, - 0x24B7, - 0x24B8, - 0x24B9, - 0x24BA, - 0x24BB, - 0x24BC, - 0x24BD, - 0x24BE, - 0x24BF, - 0x24C0, - 0x24C1, - 0x24C2, - 0x24C3, - 0x24C4, - 0x24C5, - 0x24C6, - 0x24C7, - 0x24C8, - 0x24C9, - 0x24CA, - 0x24CB, - 0x24CC, - 0x24CD, - 0x24CE, - 0x24CF, - 0x24D0, - 0x24D1, - 0x24D2, - 0x24D3, - 0x24D4, - 0x24D5, - 0x24D6, - 0x24D7, - 0x24D8, - 0x24D9, - 0x24DA, - 0x24DB, - 0x24DC, - 0x24DD, - 0x24DE, - 0x24DF, - 0x24E0, - 0x24E1, - 0x24E2, - 0x24E3, - 0x24E4, - 0x24E5, - 0x24E6, - 0x24E7, - 0x24E8, - 0x24E9, - 0x24EA, - 0x24EB, - 0x2A0C, - 0x2A0D, - 0x2A74, - 0x2A75, - 0x2A76, - 0x2A77, - 0x2ADC, - 0x2ADD, - 0x2B74, - 0x2B76, - 0x2C00, - 0x2C01, - 0x2C02, - 0x2C03, - 0x2C04, - 0x2C05, - 0x2C06, - 0x2C07, - 0x2C08, - 0x2C09, - 0x2C0A, - 0x2C0B, - 0x2C0C, - 0x2C0D, - 0x2C0E, - 0x2C0F, - 0x2C10, - 0x2C11, - 0x2C12, - 0x2C13, - 0x2C14, - 0x2C15, - 0x2C16, - 0x2C17, - 0x2C18, - 0x2C19, - 0x2C1A, - 0x2C1B, - 0x2C1C, - 0x2C1D, - 0x2C1E, - 0x2C1F, - 0x2C20, - 0x2C21, - 0x2C22, - 0x2C23, - 0x2C24, - 0x2C25, - 0x2C26, - 0x2C27, - 0x2C28, - 0x2C29, - 0x2C2A, - 0x2C2B, - 0x2C2C, - 0x2C2D, - 0x2C2E, - 0x2C2F, - 0x2C30, - 0x2C60, - 0x2C61, - 0x2C62, - 0x2C63, - 0x2C64, - 0x2C65, - 0x2C67, - 0x2C68, - 0x2C69, - 0x2C6A, - 0x2C6B, - 0x2C6C, - 0x2C6D, - 0x2C6E, - 0x2C6F, - 0x2C70, - 0x2C71, - 0x2C72, - 0x2C73, - 0x2C75, - 0x2C76, - 0x2C7C, - 0x2C7D, - 0x2C7E, - 0x2C7F, - 0x2C80, - 0x2C81, - 0x2C82, - 0x2C83, - 0x2C84, - 0x2C85, - 0x2C86, - 0x2C87, - 0x2C88, - 0x2C89, - 0x2C8A, - 0x2C8B, - 0x2C8C, - 0x2C8D, - 0x2C8E, - 0x2C8F, - 0x2C90, - 0x2C91, - 0x2C92, - 0x2C93, - 0x2C94, - 0x2C95, - 0x2C96, - 0x2C97, - 0x2C98, - 0x2C99, - 0x2C9A, - 0x2C9B, - 0x2C9C, - 0x2C9D, - 0x2C9E, - 0x2C9F, - 0x2CA0, - 0x2CA1, - 0x2CA2, - 0x2CA3, - 0x2CA4, - 0x2CA5, - 0x2CA6, - 0x2CA7, - 0x2CA8, - 0x2CA9, - 0x2CAA, - 0x2CAB, - 0x2CAC, - 0x2CAD, - 0x2CAE, - 0x2CAF, - 0x2CB0, - 0x2CB1, - 0x2CB2, - 0x2CB3, - 0x2CB4, - 0x2CB5, - 0x2CB6, - 0x2CB7, - 0x2CB8, - 0x2CB9, - 0x2CBA, - 0x2CBB, - 0x2CBC, - 0x2CBD, - 0x2CBE, - 0x2CBF, - 0x2CC0, - 0x2CC1, - 0x2CC2, - 0x2CC3, - 0x2CC4, - 0x2CC5, - 0x2CC6, - 0x2CC7, - 0x2CC8, - 0x2CC9, - 0x2CCA, - 0x2CCB, - 0x2CCC, - 0x2CCD, - 0x2CCE, - 0x2CCF, - 0x2CD0, - 0x2CD1, - 0x2CD2, - 0x2CD3, - 0x2CD4, - 0x2CD5, - 0x2CD6, - 0x2CD7, - 0x2CD8, - 0x2CD9, - 0x2CDA, - 0x2CDB, - 0x2CDC, - 0x2CDD, - 0x2CDE, - 0x2CDF, - 0x2CE0, - 0x2CE1, - 0x2CE2, - 0x2CE3, - 0x2CEB, - 0x2CEC, - 0x2CED, - 0x2CEE, - 0x2CF2, - 0x2CF3, - 0x2CF4, - 0x2CF9, - 0x2D26, - 0x2D27, - 0x2D28, - 0x2D2D, - 0x2D2E, - 0x2D30, - 0x2D68, - 0x2D6F, - 0x2D70, - 0x2D71, - 0x2D7F, - 0x2D97, - 0x2DA0, - 0x2DA7, - 0x2DA8, - 0x2DAF, - 0x2DB0, - 0x2DB7, - 0x2DB8, - 0x2DBF, - 0x2DC0, - 0x2DC7, - 0x2DC8, - 0x2DCF, - 0x2DD0, - 0x2DD7, - 0x2DD8, - 0x2DDF, - 0x2DE0, - 0x2E5E, - 0x2E80, - 0x2E9A, - 0x2E9B, - 0x2E9F, - 0x2EA0, - 0x2EF3, - 0x2EF4, - 0x2F00, - 0x2F01, - 0x2F02, - 0x2F03, - 0x2F04, - 0x2F05, - 0x2F06, - 0x2F07, - 0x2F08, - 0x2F09, - 0x2F0A, - 0x2F0B, - 0x2F0C, - 0x2F0D, - 0x2F0E, - 0x2F0F, - 0x2F10, - 0x2F11, - 0x2F12, - 0x2F13, - 0x2F14, - 0x2F15, - 0x2F16, - 0x2F17, - 0x2F18, - 0x2F19, - 0x2F1A, - 0x2F1B, - 0x2F1C, - 0x2F1D, - 0x2F1E, - 0x2F1F, - 0x2F20, - 0x2F21, - 0x2F22, - 0x2F23, - 0x2F24, - 0x2F25, - 0x2F26, - 0x2F27, - 0x2F28, - 0x2F29, - 0x2F2A, - 0x2F2B, - 0x2F2C, - 0x2F2D, - 0x2F2E, - 0x2F2F, - 0x2F30, - 0x2F31, - 0x2F32, - 0x2F33, - 0x2F34, - 0x2F35, - 0x2F36, - 0x2F37, - 0x2F38, - 0x2F39, - 0x2F3A, - 0x2F3B, - 0x2F3C, - 0x2F3D, - 0x2F3E, - 0x2F3F, - 0x2F40, - 0x2F41, - 0x2F42, - 0x2F43, - 0x2F44, - 0x2F45, - 0x2F46, - 0x2F47, - 0x2F48, - 0x2F49, - 0x2F4A, - 0x2F4B, - 0x2F4C, - 0x2F4D, - 0x2F4E, - 0x2F4F, - 0x2F50, - 0x2F51, - 0x2F52, - 0x2F53, - 0x2F54, - 0x2F55, - 0x2F56, - 0x2F57, - 0x2F58, - 0x2F59, - 0x2F5A, - 0x2F5B, - 0x2F5C, - 0x2F5D, - 0x2F5E, - 0x2F5F, - 0x2F60, - 0x2F61, - 0x2F62, - 0x2F63, - 0x2F64, - 0x2F65, - 0x2F66, - 0x2F67, - 0x2F68, - 0x2F69, - 0x2F6A, - 0x2F6B, - 0x2F6C, - 0x2F6D, - 0x2F6E, - 0x2F6F, - 0x2F70, - 0x2F71, - 0x2F72, - 0x2F73, - 0x2F74, - 0x2F75, - 0x2F76, - 0x2F77, - 0x2F78, - 0x2F79, - 0x2F7A, - 0x2F7B, - 0x2F7C, - 0x2F7D, - 0x2F7E, - 0x2F7F, - 0x2F80, - 0x2F81, - 0x2F82, - 0x2F83, - 0x2F84, - 0x2F85, - 0x2F86, - 0x2F87, - 0x2F88, - 0x2F89, - 0x2F8A, - 0x2F8B, - 0x2F8C, - 0x2F8D, - 0x2F8E, - 0x2F8F, - 0x2F90, - 0x2F91, - 0x2F92, - 0x2F93, - 0x2F94, - 0x2F95, - 0x2F96, - 0x2F97, - 0x2F98, - 0x2F99, - 0x2F9A, - 0x2F9B, - 0x2F9C, - 0x2F9D, - 0x2F9E, - 0x2F9F, - 0x2FA0, - 0x2FA1, - 0x2FA2, - 0x2FA3, - 0x2FA4, - 0x2FA5, - 0x2FA6, - 0x2FA7, - 0x2FA8, - 0x2FA9, - 0x2FAA, - 0x2FAB, - 0x2FAC, - 0x2FAD, - 0x2FAE, - 0x2FAF, - 0x2FB0, - 0x2FB1, - 0x2FB2, - 0x2FB3, - 0x2FB4, - 0x2FB5, - 0x2FB6, - 0x2FB7, - 0x2FB8, - 0x2FB9, - 0x2FBA, - 0x2FBB, - 0x2FBC, - 0x2FBD, - 0x2FBE, - 0x2FBF, - 0x2FC0, - 0x2FC1, - 0x2FC2, - 0x2FC3, - 0x2FC4, - 0x2FC5, - 0x2FC6, - 0x2FC7, - 0x2FC8, - 0x2FC9, - 0x2FCA, - 0x2FCB, - 0x2FCC, - 0x2FCD, - 0x2FCE, - 0x2FCF, - 0x2FD0, - 0x2FD1, - 0x2FD2, - 0x2FD3, - 0x2FD4, - 0x2FD5, - 0x2FD6, - 0x3000, - 0x3001, - 0x3002, - 0x3003, - 0x3036, - 0x3037, - 0x3038, - 0x3039, - 0x303A, - 0x303B, - 0x3040, - 0x3041, - 0x3097, - 0x3099, - 0x309B, - 0x309C, - 0x309D, - 0x309F, - 0x30A0, - 0x30FF, - 0x3100, - 0x3105, - 0x3130, - 0x3131, - 0x3132, - 0x3133, - 0x3134, - 0x3135, - 0x3136, - 0x3137, - 0x3138, - 0x3139, - 0x313A, - 0x313B, - 0x313C, - 0x313D, - 0x313E, - 0x313F, - 0x3140, - 0x3141, - 0x3142, - 0x3143, - 0x3144, - 0x3145, - 0x3146, - 0x3147, - 0x3148, - 0x3149, - 0x314A, - 0x314B, - 0x314C, - 0x314D, - 0x314E, - 0x314F, - 0x3150, - 0x3151, - 0x3152, - 0x3153, - 0x3154, - 0x3155, - 0x3156, - 0x3157, - 0x3158, - 0x3159, - 0x315A, - 0x315B, - 0x315C, - 0x315D, - 0x315E, - 0x315F, - 0x3160, - 0x3161, - 0x3162, - 0x3163, - 0x3164, - 0x3165, - 0x3166, - 0x3167, - 0x3168, - 0x3169, - 0x316A, - 0x316B, - 0x316C, - 0x316D, - 0x316E, - 0x316F, - 0x3170, - 0x3171, - 0x3172, - 0x3173, - 0x3174, - 0x3175, - 0x3176, - 0x3177, - 0x3178, - 0x3179, - 0x317A, - 0x317B, - 0x317C, - 0x317D, - 0x317E, - 0x317F, - 0x3180, - 0x3181, - 0x3182, - 0x3183, - 0x3184, - 0x3185, - 0x3186, - 0x3187, - 0x3188, - 0x3189, - 0x318A, - 0x318B, - 0x318C, - 0x318D, - 0x318E, - 0x318F, - 0x3190, - 0x3192, - 0x3193, - 0x3194, - 0x3195, - 0x3196, - 0x3197, - 0x3198, - 0x3199, - 0x319A, - 0x319B, - 0x319C, - 0x319D, - 0x319E, - 0x319F, - 0x31A0, - 0x31E6, - 0x31F0, - 0x3200, - 0x3201, - 0x3202, - 0x3203, - 0x3204, - 0x3205, - 0x3206, - 0x3207, - 0x3208, - 0x3209, - 0x320A, - 0x320B, - 0x320C, - 0x320D, - 0x320E, - 0x320F, - 0x3210, - 0x3211, - 0x3212, - 0x3213, - 0x3214, - 0x3215, - 0x3216, - 0x3217, - 0x3218, - 0x3219, - 0x321A, - 0x321B, - 0x321C, - 0x321D, - 0x321E, - 0x321F, - 0x3220, - 0x3221, - 0x3222, - 0x3223, - 0x3224, - 0x3225, - 0x3226, - 0x3227, - 0x3228, - 0x3229, - 0x322A, - 0x322B, - 0x322C, - 0x322D, - 0x322E, - 0x322F, - 0x3230, - 0x3231, - 0x3232, - 0x3233, - 0x3234, - 0x3235, - 0x3236, - 0x3237, - 0x3238, - 0x3239, - 0x323A, - 0x323B, - 0x323C, - 0x323D, - 0x323E, - 0x323F, - 0x3240, - 0x3241, - 0x3242, - 0x3243, - 0x3244, - 0x3245, - 0x3246, - 0x3247, - 0x3248, - 0x3250, - 0x3251, - 0x3252, - 0x3253, - 0x3254, - 0x3255, - 0x3256, - 0x3257, - 0x3258, - 0x3259, - 0x325A, - 0x325B, - 0x325C, - 0x325D, - 0x325E, - 0x325F, - 0x3260, - 0x3261, - 0x3262, - 0x3263, - 0x3264, - 0x3265, - 0x3266, - 0x3267, - 0x3268, - 0x3269, - 0x326A, - 0x326B, - 0x326C, - 0x326D, - 0x326E, - 0x326F, - 0x3270, - 0x3271, - 0x3272, - 0x3273, - 0x3274, - 0x3275, - 0x3276, - 0x3277, - 0x3278, - 0x3279, - 0x327A, - 0x327B, - 0x327C, - 0x327D, - 0x327E, - 0x327F, - 0x3280, - 0x3281, - 0x3282, - 0x3283, - 0x3284, - 0x3285, - 0x3286, - 0x3287, - 0x3288, - 0x3289, - 0x328A, - 0x328B, - 0x328C, - 0x328D, - 0x328E, - 0x328F, - 0x3290, - 0x3291, - 0x3292, - 0x3293, - 0x3294, - 0x3295, - 0x3296, - 0x3297, - 0x3298, - 0x3299, - 0x329A, - 0x329B, - 0x329C, - 0x329D, - 0x329E, - 0x329F, - 0x32A0, - 0x32A1, - 0x32A2, - 0x32A3, - 0x32A4, - 0x32A5, - 0x32A6, - 0x32A7, - 0x32A8, - 0x32A9, - 0x32AA, - 0x32AB, - 0x32AC, - 0x32AD, - 0x32AE, - 0x32AF, - 0x32B0, - 0x32B1, - 0x32B2, - 0x32B3, - 0x32B4, - 0x32B5, - 0x32B6, - 0x32B7, - 0x32B8, - 0x32B9, - 0x32BA, - 0x32BB, - 0x32BC, - 0x32BD, - 0x32BE, - 0x32BF, - 0x32C0, - 0x32C1, - 0x32C2, - 0x32C3, - 0x32C4, - 0x32C5, - 0x32C6, - 0x32C7, - 0x32C8, - 0x32C9, - 0x32CA, - 0x32CB, - 0x32CC, - 0x32CD, - 0x32CE, - 0x32CF, - 0x32D0, - 0x32D1, - 0x32D2, - 0x32D3, - 0x32D4, - 0x32D5, - 0x32D6, - 0x32D7, - 0x32D8, - 0x32D9, - 0x32DA, - 0x32DB, - 0x32DC, - 0x32DD, - 0x32DE, - 0x32DF, - 0x32E0, - 0x32E1, - 0x32E2, - 0x32E3, - 0x32E4, - 0x32E5, - 0x32E6, - 0x32E7, - 0x32E8, - 0x32E9, - 0x32EA, - 0x32EB, - 0x32EC, - 0x32ED, - 0x32EE, - 0x32EF, - 0x32F0, - 0x32F1, - 0x32F2, - 0x32F3, - 0x32F4, - 0x32F5, - 0x32F6, - 0x32F7, - 0x32F8, - 0x32F9, - 0x32FA, - 0x32FB, - 0x32FC, - 0x32FD, - 0x32FE, - 0x32FF, - 0x3300, - 0x3301, - 0x3302, - 0x3303, - 0x3304, - 0x3305, - 0x3306, - 0x3307, - 0x3308, - 0x3309, - 0x330A, - 0x330B, - 0x330C, - 0x330D, - 0x330E, - 0x330F, - 0x3310, - 0x3311, - 0x3312, - 0x3313, - 0x3314, - 0x3315, - 0x3316, - 0x3317, - 0x3318, - 0x3319, - 0x331A, - 0x331B, - 0x331C, - 0x331D, - 0x331E, - 0x331F, - 0x3320, - 0x3321, - 0x3322, - 0x3323, - 0x3324, - 0x3325, - 0x3326, - 0x3327, - 0x3328, - 0x3329, - 0x332A, - 0x332B, - 0x332C, - 0x332D, - 0x332E, - 0x332F, - 0x3330, - 0x3331, - 0x3332, - 0x3333, - 0x3334, - 0x3335, - 0x3336, - 0x3337, - 0x3338, - 0x3339, - 0x333A, - 0x333B, - 0x333C, - 0x333D, - 0x333E, - 0x333F, - 0x3340, - 0x3341, - 0x3342, - 0x3343, - 0x3344, - 0x3345, - 0x3346, - 0x3347, - 0x3348, - 0x3349, - 0x334A, - 0x334B, - 0x334C, - 0x334D, - 0x334E, - 0x334F, - 0x3350, - 0x3351, - 0x3352, - 0x3353, - 0x3354, - 0x3355, - 0x3356, - 0x3357, - 0x3358, - 0x3359, - 0x335A, - 0x335B, - 0x335C, - 0x335D, - 0x335E, - 0x335F, - 0x3360, - 0x3361, - 0x3362, - 0x3363, - 0x3364, - 0x3365, - 0x3366, - 0x3367, - 0x3368, - 0x3369, - 0x336A, - 0x336B, - 0x336C, - 0x336D, - 0x336E, - 0x336F, - 0x3370, - 0x3371, - 0x3372, - 0x3373, - 0x3374, - 0x3375, - 0x3376, - 0x3377, - 0x3378, - 0x3379, - 0x337A, - 0x337B, - 0x337C, - 0x337D, - 0x337E, - 0x337F, - 0x3380, - 0x3381, - 0x3382, - 0x3383, - 0x3384, - 0x3385, - 0x3386, - 0x3387, - 0x3388, - 0x3389, - 0x338A, - 0x338B, - 0x338C, - 0x338D, - 0x338E, - 0x338F, - 0x3390, - 0x3391, - 0x3392, - 0x3393, - 0x3394, - 0x3395, - 0x3396, - 0x3397, - 0x3398, - 0x3399, - 0x339A, - 0x339B, - 0x339C, - 0x339D, - 0x339E, - 0x339F, - 0x33A0, - 0x33A1, - 0x33A2, - 0x33A3, - 0x33A4, - 0x33A5, - 0x33A6, - 0x33A7, - 0x33A8, - 0x33A9, - 0x33AA, - 0x33AB, - 0x33AC, - 0x33AD, - 0x33AE, - 0x33AF, - 0x33B0, - 0x33B1, - 0x33B2, - 0x33B3, - 0x33B4, - 0x33B5, - 0x33B6, - 0x33B7, - 0x33B8, - 0x33B9, - 0x33BA, - 0x33BB, - 0x33BC, - 0x33BD, - 0x33BE, - 0x33BF, - 0x33C0, - 0x33C1, - 0x33C2, - 0x33C3, - 0x33C4, - 0x33C5, - 0x33C6, - 0x33C7, - 0x33C8, - 0x33C9, - 0x33CA, - 0x33CB, - 0x33CC, - 0x33CD, - 0x33CE, - 0x33CF, - 0x33D0, - 0x33D1, - 0x33D2, - 0x33D3, - 0x33D4, - 0x33D5, - 0x33D6, - 0x33D7, - 0x33D8, - 0x33D9, - 0x33DA, - 0x33DB, - 0x33DC, - 0x33DD, - 0x33DE, - 0x33DF, - 0x33E0, - 0x33E1, - 0x33E2, - 0x33E3, - 0x33E4, - 0x33E5, - 0x33E6, - 0x33E7, - 0x33E8, - 0x33E9, - 0x33EA, - 0x33EB, - 0x33EC, - 0x33ED, - 0x33EE, - 0x33EF, - 0x33F0, - 0x33F1, - 0x33F2, - 0x33F3, - 0x33F4, - 0x33F5, - 0x33F6, - 0x33F7, - 0x33F8, - 0x33F9, - 0x33FA, - 0x33FB, - 0x33FC, - 0x33FD, - 0x33FE, - 0x33FF, - 0x3400, - 0xA48D, - 0xA490, - 0xA4C7, - 0xA4D0, - 0xA62C, - 0xA640, - 0xA641, - 0xA642, - 0xA643, - 0xA644, - 0xA645, - 0xA646, - 0xA647, - 0xA648, - 0xA649, - 0xA64A, - 0xA64B, - 0xA64C, - 0xA64D, - 0xA64E, - 0xA64F, - 0xA650, - 0xA651, - 0xA652, - 0xA653, - 0xA654, - 0xA655, - 0xA656, - 0xA657, - 0xA658, - 0xA659, - 0xA65A, - 0xA65B, - 0xA65C, - 0xA65D, - 0xA65E, - 0xA65F, - 0xA660, - 0xA661, - 0xA662, - 0xA663, - 0xA664, - 0xA665, - 0xA666, - 0xA667, - 0xA668, - 0xA669, - 0xA66A, - 0xA66B, - 0xA66C, - 0xA66D, - 0xA680, - 0xA681, - 0xA682, - 0xA683, - 0xA684, - 0xA685, - 0xA686, - 0xA687, - 0xA688, - 0xA689, - 0xA68A, - 0xA68B, - 0xA68C, - 0xA68D, - 0xA68E, - 0xA68F, - 0xA690, - 0xA691, - 0xA692, - 0xA693, - 0xA694, - 0xA695, - 0xA696, - 0xA697, - 0xA698, - 0xA699, - 0xA69A, - 0xA69B, - 0xA69C, - 0xA69D, - 0xA69E, - 0xA6F8, - 0xA700, - 0xA722, - 0xA723, - 0xA724, - 0xA725, - 0xA726, - 0xA727, - 0xA728, - 0xA729, - 0xA72A, - 0xA72B, - 0xA72C, - 0xA72D, - 0xA72E, - 0xA72F, - 0xA732, - 0xA733, - 0xA734, - 0xA735, - 0xA736, - 0xA737, - 0xA738, - 0xA739, - 0xA73A, - 0xA73B, - 0xA73C, - 0xA73D, - 0xA73E, - 0xA73F, - 0xA740, - 0xA741, - 0xA742, - 0xA743, - 0xA744, - 0xA745, - 0xA746, - 0xA747, - 0xA748, - 0xA749, - 0xA74A, - 0xA74B, - 0xA74C, - 0xA74D, - 0xA74E, - 0xA74F, - 0xA750, - 0xA751, - 0xA752, - 0xA753, - 0xA754, - 0xA755, - 0xA756, - 0xA757, - 0xA758, - 0xA759, - 0xA75A, - 0xA75B, - 0xA75C, - 0xA75D, - 0xA75E, - 0xA75F, - 0xA760, - 0xA761, - 0xA762, - 0xA763, - 0xA764, - 0xA765, - 0xA766, - 0xA767, - 0xA768, - 0xA769, - 0xA76A, - 0xA76B, - 0xA76C, - 0xA76D, - 0xA76E, - 0xA76F, - 0xA770, - 0xA771, - 0xA779, - 0xA77A, - 0xA77B, - 0xA77C, - 0xA77D, - 0xA77E, - 0xA77F, - 0xA780, - 0xA781, - 0xA782, - 0xA783, - 0xA784, - 0xA785, - 0xA786, - 0xA787, - 0xA78B, - 0xA78C, - 0xA78D, - 0xA78E, - 0xA790, - 0xA791, - 0xA792, - 0xA793, - 0xA796, - 0xA797, - 0xA798, - 0xA799, - 0xA79A, - 0xA79B, - 0xA79C, - 0xA79D, - 0xA79E, - 0xA79F, - 0xA7A0, - 0xA7A1, - 0xA7A2, - 0xA7A3, - 0xA7A4, - 0xA7A5, - 0xA7A6, - 0xA7A7, - 0xA7A8, - 0xA7A9, - 0xA7AA, - 0xA7AB, - 0xA7AC, - 0xA7AD, - 0xA7AE, - 0xA7AF, - 0xA7B0, - 0xA7B1, - 0xA7B2, - 0xA7B3, - 0xA7B4, - 0xA7B5, - 0xA7B6, - 0xA7B7, - 0xA7B8, - 0xA7B9, - 0xA7BA, - 0xA7BB, - 0xA7BC, - 0xA7BD, - 0xA7BE, - 0xA7BF, - 0xA7C0, - 0xA7C1, - 0xA7C2, - 0xA7C3, - 0xA7C4, - 0xA7C5, - 0xA7C6, - 0xA7C7, - 0xA7C8, - 0xA7C9, - 0xA7CA, - 0xA7CB, - 0xA7CC, - 0xA7CD, - 0xA7CE, - 0xA7CF, - 0xA7D0, - 0xA7D1, - 0xA7D2, - 0xA7D3, - 0xA7D4, - 0xA7D5, - 0xA7D6, - 0xA7D7, - 0xA7D8, - 0xA7D9, - 0xA7DA, - 0xA7DB, - 0xA7DC, - 0xA7DD, - 0xA7F1, - 0xA7F2, - 0xA7F3, - 0xA7F4, - 0xA7F5, - 0xA7F6, - 0xA7F8, - 0xA7F9, - 0xA7FA, - 0xA82D, - 0xA830, - 0xA83A, - 0xA840, - 0xA878, - 0xA880, - 0xA8C6, - 0xA8CE, - 0xA8DA, - 0xA8E0, - 0xA954, - 0xA95F, - 0xA97D, - 0xA980, - 0xA9CE, - 0xA9CF, - 0xA9DA, - 0xA9DE, - 0xA9FF, - 0xAA00, - 0xAA37, - 0xAA40, - 0xAA4E, - 0xAA50, - 0xAA5A, - 0xAA5C, - 0xAAC3, - 0xAADB, - 0xAAF7, - 0xAB01, - 0xAB07, - 0xAB09, - 0xAB0F, - 0xAB11, - 0xAB17, - 0xAB20, - 0xAB27, - 0xAB28, - 0xAB2F, - 0xAB30, - 0xAB5C, - 0xAB5D, - 0xAB5E, - 0xAB5F, - 0xAB60, - 0xAB69, - 0xAB6A, - 0xAB6C, - 0xAB70, - 0xAB71, - 0xAB72, - 0xAB73, - 0xAB74, - 0xAB75, - 0xAB76, - 0xAB77, - 0xAB78, - 0xAB79, - 0xAB7A, - 0xAB7B, - 0xAB7C, - 0xAB7D, - 0xAB7E, - 0xAB7F, - 0xAB80, - 0xAB81, - 0xAB82, - 0xAB83, - 0xAB84, - 0xAB85, - 0xAB86, - 0xAB87, - 0xAB88, - 0xAB89, - 0xAB8A, - 0xAB8B, - 0xAB8C, - 0xAB8D, - 0xAB8E, - 0xAB8F, - 0xAB90, - 0xAB91, - 0xAB92, - 0xAB93, - 0xAB94, - 0xAB95, - 0xAB96, - 0xAB97, - 0xAB98, - 0xAB99, - 0xAB9A, - 0xAB9B, - 0xAB9C, - 0xAB9D, - 0xAB9E, - 0xAB9F, - 0xABA0, - 0xABA1, - 0xABA2, - 0xABA3, - 0xABA4, - 0xABA5, - 0xABA6, - 0xABA7, - 0xABA8, - 0xABA9, - 0xABAA, - 0xABAB, - 0xABAC, - 0xABAD, - 0xABAE, - 0xABAF, - 0xABB0, - 0xABB1, - 0xABB2, - 0xABB3, - 0xABB4, - 0xABB5, - 0xABB6, - 0xABB7, - 0xABB8, - 0xABB9, - 0xABBA, - 0xABBB, - 0xABBC, - 0xABBD, - 0xABBE, - 0xABBF, - 0xABC0, - 0xABEE, - 0xABF0, - 0xABFA, - 0xAC00, - 0xD7A4, - 0xD7B0, - 0xD7C7, - 0xD7CB, - 0xD7FC, - 0xF900, - 0xF901, - 0xF902, - 0xF903, - 0xF904, - 0xF905, - 0xF906, - 0xF907, - 0xF909, - 0xF90A, - 0xF90B, - 0xF90C, - 0xF90D, - 0xF90E, - 0xF90F, - 0xF910, - 0xF911, - 0xF912, - 0xF913, - 0xF914, - 0xF915, - 0xF916, - 0xF917, - 0xF918, - 0xF919, - 0xF91A, - 0xF91B, - 0xF91C, - 0xF91D, - 0xF91E, - 0xF91F, - 0xF920, - 0xF921, - 0xF922, - 0xF923, - 0xF924, - 0xF925, - 0xF926, - 0xF927, - 0xF928, - 0xF929, - 0xF92A, - 0xF92B, - 0xF92C, - 0xF92D, - 0xF92E, - 0xF92F, - 0xF930, - 0xF931, - 0xF932, - 0xF933, - 0xF934, - 0xF935, - 0xF936, - 0xF937, - 0xF938, - 0xF939, - 0xF93A, - 0xF93B, - 0xF93C, - 0xF93D, - 0xF93E, - 0xF93F, - 0xF940, - 0xF941, - 0xF942, - 0xF943, - 0xF944, - 0xF945, - 0xF946, - 0xF947, - 0xF948, - 0xF949, - 0xF94A, - 0xF94B, - 0xF94C, - 0xF94D, - 0xF94E, - 0xF94F, - 0xF950, - 0xF951, - 0xF952, - 0xF953, - 0xF954, - 0xF955, - 0xF956, - 0xF957, - 0xF958, - 0xF959, - 0xF95A, - 0xF95B, - 0xF95C, - 0xF95D, - 0xF95E, - 0xF95F, - 0xF960, - 0xF961, - 0xF962, - 0xF963, - 0xF964, - 0xF965, - 0xF966, - 0xF967, - 0xF968, - 0xF969, - 0xF96A, - 0xF96B, - 0xF96C, - 0xF96D, - 0xF96E, - 0xF96F, - 0xF970, - 0xF971, - 0xF972, - 0xF973, - 0xF974, - 0xF975, - 0xF976, - 0xF977, - 0xF978, - 0xF979, - 0xF97A, - 0xF97B, - 0xF97C, - 0xF97D, - 0xF97E, - 0xF97F, - 0xF980, - 0xF981, - 0xF982, - 0xF983, - 0xF984, - 0xF985, - 0xF986, - 0xF987, - 0xF988, - 0xF989, - 0xF98A, - 0xF98B, - 0xF98C, - 0xF98D, - 0xF98E, - 0xF98F, - 0xF990, - 0xF991, - 0xF992, - 0xF993, - 0xF994, - 0xF995, - 0xF996, - 0xF997, - 0xF998, - 0xF999, - 0xF99A, - 0xF99B, - 0xF99C, - 0xF99D, - 0xF99E, - 0xF99F, - 0xF9A0, - 0xF9A1, - 0xF9A2, - 0xF9A3, - 0xF9A4, - 0xF9A5, - 0xF9A6, - 0xF9A7, - 0xF9A8, - 0xF9A9, - 0xF9AA, - 0xF9AB, - 0xF9AC, - 0xF9AD, - 0xF9AE, - 0xF9AF, - 0xF9B0, - 0xF9B1, - 0xF9B2, - 0xF9B3, - 0xF9B4, - 0xF9B5, - 0xF9B6, - 0xF9B7, - 0xF9B8, - 0xF9B9, - 0xF9BA, - 0xF9BB, - 0xF9BC, - 0xF9BD, - 0xF9BE, - 0xF9BF, - 0xF9C0, - 0xF9C1, - 0xF9C2, - 0xF9C3, - 0xF9C4, - 0xF9C5, - 0xF9C6, - 0xF9C7, - 0xF9C8, - 0xF9C9, - 0xF9CA, - 0xF9CB, - 0xF9CC, - 0xF9CD, - 0xF9CE, - 0xF9CF, - 0xF9D0, - 0xF9D1, - 0xF9D2, - 0xF9D3, - 0xF9D4, - 0xF9D5, - 0xF9D6, - 0xF9D7, - 0xF9D8, - 0xF9D9, - 0xF9DA, - 0xF9DB, - 0xF9DC, - 0xF9DD, - 0xF9DE, - 0xF9DF, - 0xF9E0, - 0xF9E1, - 0xF9E2, - 0xF9E3, - 0xF9E4, - 0xF9E5, - 0xF9E6, - 0xF9E7, - 0xF9E8, - 0xF9E9, - 0xF9EA, - 0xF9EB, - 0xF9EC, - 0xF9ED, - 0xF9EE, - 0xF9EF, - 0xF9F0, - 0xF9F1, - 0xF9F2, - 0xF9F3, - 0xF9F4, - 0xF9F5, - 0xF9F6, - 0xF9F7, - 0xF9F8, - 0xF9F9, - 0xF9FA, - 0xF9FB, - 0xF9FC, - 0xF9FD, - 0xF9FE, - 0xF9FF, - 0xFA00, - 0xFA01, - 0xFA02, - 0xFA03, - 0xFA04, - 0xFA05, - 0xFA06, - 0xFA07, - 0xFA08, - 0xFA09, - 0xFA0A, - 0xFA0B, - 0xFA0C, - 0xFA0D, - 0xFA0E, - 0xFA10, - 0xFA11, - 0xFA12, - 0xFA13, - 0xFA15, - 0xFA16, - 0xFA17, - 0xFA18, - 0xFA19, - 0xFA1A, - 0xFA1B, - 0xFA1C, - 0xFA1D, - 0xFA1E, - 0xFA1F, - 0xFA20, - 0xFA21, - 0xFA22, - 0xFA23, - 0xFA25, - 0xFA26, - 0xFA27, - 0xFA2A, - 0xFA2B, - 0xFA2C, - 0xFA2D, - 0xFA2E, - 0xFA2F, - 0xFA30, - 0xFA31, - 0xFA32, - 0xFA33, - 0xFA34, - 0xFA35, - 0xFA36, - 0xFA37, - 0xFA38, - 0xFA39, - 0xFA3A, - 0xFA3B, - 0xFA3C, - 0xFA3D, - 0xFA3E, - 0xFA3F, - 0xFA40, - 0xFA41, - 0xFA42, - 0xFA43, - 0xFA44, - 0xFA45, - 0xFA46, - 0xFA47, - 0xFA48, - 0xFA49, - 0xFA4A, - 0xFA4B, - 0xFA4C, - 0xFA4D, - 0xFA4E, - 0xFA4F, - 0xFA50, - 0xFA51, - 0xFA52, - 0xFA53, - 0xFA54, - 0xFA55, - 0xFA56, - 0xFA57, - 0xFA58, - 0xFA59, - 0xFA5A, - 0xFA5B, - 0xFA5C, - 0xFA5D, - 0xFA5F, - 0xFA60, - 0xFA61, - 0xFA62, - 0xFA63, - 0xFA64, - 0xFA65, - 0xFA66, - 0xFA67, - 0xFA68, - 0xFA69, - 0xFA6A, - 0xFA6B, - 0xFA6C, - 0xFA6D, - 0xFA6E, - 0xFA70, - 0xFA71, - 0xFA72, - 0xFA73, - 0xFA74, - 0xFA75, - 0xFA76, - 0xFA77, - 0xFA78, - 0xFA79, - 0xFA7A, - 0xFA7B, - 0xFA7C, - 0xFA7D, - 0xFA7E, - 0xFA7F, - 0xFA80, - 0xFA81, - 0xFA82, - 0xFA83, - 0xFA84, - 0xFA85, - 0xFA86, - 0xFA87, - 0xFA88, - 0xFA89, - 0xFA8A, - 0xFA8B, - 0xFA8C, - 0xFA8D, - 0xFA8E, - 0xFA8F, - 0xFA90, - 0xFA91, - 0xFA92, - 0xFA93, - 0xFA94, - 0xFA95, - 0xFA96, - 0xFA97, - 0xFA98, - 0xFA99, - 0xFA9A, - 0xFA9B, - 0xFA9C, - 0xFA9D, - 0xFA9E, - 0xFA9F, - 0xFAA0, - 0xFAA1, - 0xFAA2, - 0xFAA3, - 0xFAA4, - 0xFAA5, - 0xFAA6, - 0xFAA7, - 0xFAA8, - 0xFAA9, - 0xFAAA, - 0xFAAB, - 0xFAAC, - 0xFAAD, - 0xFAAE, - 0xFAAF, - 0xFAB0, - 0xFAB1, - 0xFAB2, - 0xFAB3, - 0xFAB4, - 0xFAB5, - 0xFAB6, - 0xFAB7, - 0xFAB8, - 0xFAB9, - 0xFABA, - 0xFABB, - 0xFABC, - 0xFABD, - 0xFABE, - 0xFABF, - 0xFAC0, - 0xFAC1, - 0xFAC2, - 0xFAC3, - 0xFAC4, - 0xFAC5, - 0xFAC6, - 0xFAC7, - 0xFAC8, - 0xFAC9, - 0xFACA, - 0xFACB, - 0xFACC, - 0xFACD, - 0xFACE, - 0xFACF, - 0xFAD0, - 0xFAD1, - 0xFAD2, - 0xFAD3, - 0xFAD4, - 0xFAD5, - 0xFAD6, - 0xFAD7, - 0xFAD8, - 0xFAD9, - 0xFADA, - 0xFB00, - 0xFB01, - 0xFB02, - 0xFB03, - 0xFB04, - 0xFB05, - 0xFB07, - 0xFB13, - 0xFB14, - 0xFB15, - 0xFB16, - 0xFB17, - 0xFB18, - 0xFB1D, - 0xFB1E, - 0xFB1F, - 0xFB20, - 0xFB21, - 0xFB22, - 0xFB23, - 0xFB24, - 0xFB25, - 0xFB26, - 0xFB27, - 0xFB28, - 0xFB29, - 0xFB2A, - 0xFB2B, - 0xFB2C, - 0xFB2D, - 0xFB2E, - 0xFB2F, - 0xFB30, - 0xFB31, - 0xFB32, - 0xFB33, - 0xFB34, - 0xFB35, - 0xFB36, - 0xFB37, - 0xFB38, - 0xFB39, - 0xFB3A, - 0xFB3B, - 0xFB3C, - 0xFB3D, - 0xFB3E, - 0xFB3F, - 0xFB40, - 0xFB41, - 0xFB42, - 0xFB43, - 0xFB44, - 0xFB45, - 0xFB46, - 0xFB47, - 0xFB48, - 0xFB49, - 0xFB4A, - 0xFB4B, - 0xFB4C, - 0xFB4D, - 0xFB4E, - 0xFB4F, - 0xFB50, - 0xFB52, - 0xFB56, - 0xFB5A, - 0xFB5E, - 0xFB62, - 0xFB66, - 0xFB6A, - 0xFB6E, - 0xFB72, - 0xFB76, - 0xFB7A, - 0xFB7E, - 0xFB82, - 0xFB84, - 0xFB86, - 0xFB88, - 0xFB8A, - 0xFB8C, - 0xFB8E, - 0xFB92, - 0xFB96, - 0xFB9A, - 0xFB9E, - 0xFBA0, - 0xFBA4, - 0xFBA6, - 0xFBAA, - 0xFBAE, - 0xFBB0, - 0xFBB2, - 0xFBD3, - 0xFBD7, - 0xFBD9, - 0xFBDB, - 0xFBDD, - 0xFBDE, - 0xFBE0, - 0xFBE2, - 0xFBE4, - 0xFBE8, - 0xFBEA, - 0xFBEC, - 0xFBEE, - 0xFBF0, - 0xFBF2, - 0xFBF4, - 0xFBF6, - 0xFBF9, - 0xFBFC, - 0xFC00, - 0xFC01, - 0xFC02, - 0xFC03, - 0xFC04, - 0xFC05, - 0xFC06, - 0xFC07, - 0xFC08, - 0xFC09, - 0xFC0A, - 0xFC0B, - 0xFC0C, - 0xFC0D, - 0xFC0E, - 0xFC0F, - 0xFC10, - 0xFC11, - 0xFC12, - 0xFC13, - 0xFC14, - 0xFC15, - 0xFC16, - 0xFC17, - 0xFC18, - 0xFC19, - 0xFC1A, - 0xFC1B, - 0xFC1C, - 0xFC1D, - 0xFC1E, - 0xFC1F, - 0xFC20, - 0xFC21, - 0xFC22, - 0xFC23, - 0xFC24, - 0xFC25, - 0xFC26, - 0xFC27, - 0xFC28, - 0xFC29, - 0xFC2A, - 0xFC2B, - 0xFC2C, - 0xFC2D, - 0xFC2E, - 0xFC2F, - 0xFC30, - 0xFC31, - 0xFC32, - 0xFC33, - 0xFC34, - 0xFC35, - 0xFC36, - 0xFC37, - 0xFC38, - 0xFC39, - 0xFC3A, - 0xFC3B, - 0xFC3C, - 0xFC3D, - 0xFC3E, - 0xFC3F, - 0xFC40, - 0xFC41, - 0xFC42, - 0xFC43, - 0xFC44, - 0xFC45, - 0xFC46, - 0xFC47, - 0xFC48, - 0xFC49, - 0xFC4A, - 0xFC4B, - 0xFC4C, - 0xFC4D, - 0xFC4E, - 0xFC4F, - 0xFC50, - 0xFC51, - 0xFC52, - 0xFC53, - 0xFC54, - 0xFC55, - 0xFC56, - 0xFC57, - 0xFC58, - 0xFC59, - 0xFC5A, - 0xFC5B, - 0xFC5C, - 0xFC5D, - 0xFC5E, - 0xFC5F, - 0xFC60, - 0xFC61, - 0xFC62, - 0xFC63, - 0xFC64, - 0xFC65, - 0xFC66, - 0xFC67, - 0xFC68, - 0xFC69, - 0xFC6A, - 0xFC6B, - 0xFC6C, - 0xFC6D, - 0xFC6E, - 0xFC6F, - 0xFC70, - 0xFC71, - 0xFC72, - 0xFC73, - 0xFC74, - 0xFC75, - 0xFC76, - 0xFC77, - 0xFC78, - 0xFC79, - 0xFC7A, - 0xFC7B, - 0xFC7C, - 0xFC7D, - 0xFC7E, - 0xFC7F, - 0xFC80, - 0xFC81, - 0xFC82, - 0xFC83, - 0xFC84, - 0xFC85, - 0xFC86, - 0xFC87, - 0xFC88, - 0xFC89, - 0xFC8A, - 0xFC8B, - 0xFC8C, - 0xFC8D, - 0xFC8E, - 0xFC8F, - 0xFC90, - 0xFC91, - 0xFC92, - 0xFC93, - 0xFC94, - 0xFC95, - 0xFC96, - 0xFC97, - 0xFC98, - 0xFC99, - 0xFC9A, - 0xFC9B, - 0xFC9C, - 0xFC9D, - 0xFC9E, - 0xFC9F, - 0xFCA0, - 0xFCA1, - 0xFCA2, - 0xFCA3, - 0xFCA4, - 0xFCA5, - 0xFCA6, - 0xFCA7, - 0xFCA8, - 0xFCA9, - 0xFCAA, - 0xFCAB, - 0xFCAC, - 0xFCAD, - 0xFCAE, - 0xFCAF, - 0xFCB0, - 0xFCB1, - 0xFCB2, - 0xFCB3, - 0xFCB4, - 0xFCB5, - 0xFCB6, - 0xFCB7, - 0xFCB8, - 0xFCB9, - 0xFCBA, - 0xFCBB, - 0xFCBC, - 0xFCBD, - 0xFCBE, - 0xFCBF, - 0xFCC0, - 0xFCC1, - 0xFCC2, - 0xFCC3, - 0xFCC4, - 0xFCC5, - 0xFCC6, - 0xFCC7, - 0xFCC8, - 0xFCC9, - 0xFCCA, - 0xFCCB, - 0xFCCC, - 0xFCCD, - 0xFCCE, - 0xFCCF, - 0xFCD0, - 0xFCD1, - 0xFCD2, - 0xFCD3, - 0xFCD4, - 0xFCD5, - 0xFCD6, - 0xFCD7, - 0xFCD8, - 0xFCD9, - 0xFCDA, - 0xFCDB, - 0xFCDC, - 0xFCDD, - 0xFCDE, - 0xFCDF, - 0xFCE0, - 0xFCE1, - 0xFCE2, - 0xFCE3, - 0xFCE4, - 0xFCE5, - 0xFCE6, - 0xFCE7, - 0xFCE8, - 0xFCE9, - 0xFCEA, - 0xFCEB, - 0xFCEC, - 0xFCED, - 0xFCEE, - 0xFCEF, - 0xFCF0, - 0xFCF1, - 0xFCF2, - 0xFCF3, - 0xFCF4, - 0xFCF5, - 0xFCF6, - 0xFCF7, - 0xFCF8, - 0xFCF9, - 0xFCFA, - 0xFCFB, - 0xFCFC, - 0xFCFD, - 0xFCFE, - 0xFCFF, - 0xFD00, - 0xFD01, - 0xFD02, - 0xFD03, - 0xFD04, - 0xFD05, - 0xFD06, - 0xFD07, - 0xFD08, - 0xFD09, - 0xFD0A, - 0xFD0B, - 0xFD0C, - 0xFD0D, - 0xFD0E, - 0xFD0F, - 0xFD10, - 0xFD11, - 0xFD12, - 0xFD13, - 0xFD14, - 0xFD15, - 0xFD16, - 0xFD17, - 0xFD18, - 0xFD19, - 0xFD1A, - 0xFD1B, - 0xFD1C, - 0xFD1D, - 0xFD1E, - 0xFD1F, - 0xFD20, - 0xFD21, - 0xFD22, - 0xFD23, - 0xFD24, - 0xFD25, - 0xFD26, - 0xFD27, - 0xFD28, - 0xFD29, - 0xFD2A, - 0xFD2B, - 0xFD2C, - 0xFD2D, - 0xFD2E, - 0xFD2F, - 0xFD30, - 0xFD31, - 0xFD32, - 0xFD33, - 0xFD34, - 0xFD35, - 0xFD36, - 0xFD37, - 0xFD38, - 0xFD39, - 0xFD3A, - 0xFD3B, - 0xFD3C, - 0xFD3E, - 0xFD50, - 0xFD51, - 0xFD53, - 0xFD54, - 0xFD55, - 0xFD56, - 0xFD57, - 0xFD58, - 0xFD5A, - 0xFD5B, - 0xFD5C, - 0xFD5D, - 0xFD5E, - 0xFD5F, - 0xFD61, - 0xFD62, - 0xFD64, - 0xFD66, - 0xFD67, - 0xFD69, - 0xFD6A, - 0xFD6C, - 0xFD6E, - 0xFD6F, - 0xFD71, - 0xFD73, - 0xFD74, - 0xFD75, - 0xFD76, - 0xFD78, - 0xFD79, - 0xFD7A, - 0xFD7B, - 0xFD7C, - 0xFD7E, - 0xFD7F, - 0xFD80, - 0xFD81, - 0xFD82, - 0xFD83, - 0xFD85, - 0xFD87, - 0xFD89, - 0xFD8A, - 0xFD8B, - 0xFD8C, - 0xFD8D, - 0xFD8E, - 0xFD8F, - 0xFD90, - 0xFD92, - 0xFD93, - 0xFD94, - 0xFD95, - 0xFD96, - 0xFD97, - 0xFD99, - 0xFD9A, - 0xFD9B, - 0xFD9C, - 0xFD9E, - 0xFD9F, - 0xFDA0, - 0xFDA1, - 0xFDA2, - 0xFDA3, - 0xFDA4, - 0xFDA5, - 0xFDA6, - 0xFDA7, - 0xFDA8, - 0xFDA9, - 0xFDAA, - 0xFDAB, - 0xFDAC, - 0xFDAD, - 0xFDAE, - 0xFDAF, - 0xFDB0, - 0xFDB1, - 0xFDB2, - 0xFDB3, - 0xFDB4, - 0xFDB5, - 0xFDB6, - 0xFDB7, - 0xFDB8, - 0xFDB9, - 0xFDBA, - 0xFDBB, - 0xFDBC, - 0xFDBD, - 0xFDBE, - 0xFDBF, - 0xFDC0, - 0xFDC1, - 0xFDC2, - 0xFDC3, - 0xFDC4, - 0xFDC5, - 0xFDC6, - 0xFDC7, - 0xFDC8, - 0xFDD0, - 0xFDF0, - 0xFDF1, - 0xFDF2, - 0xFDF3, - 0xFDF4, - 0xFDF5, - 0xFDF6, - 0xFDF7, - 0xFDF8, - 0xFDF9, - 0xFDFA, - 0xFDFB, - 0xFDFC, - 0xFDFD, - 0xFE00, - 0xFE10, - 0xFE11, - 0xFE12, - 0xFE13, - 0xFE14, - 0xFE15, - 0xFE16, - 0xFE17, - 0xFE18, - 0xFE19, - 0xFE20, - 0xFE30, - 0xFE31, - 0xFE32, - 0xFE33, - 0xFE35, - 0xFE36, - 0xFE37, - 0xFE38, - 0xFE39, - 0xFE3A, - 0xFE3B, - 0xFE3C, - 0xFE3D, - 0xFE3E, - 0xFE3F, - 0xFE40, - 0xFE41, - 0xFE42, - 0xFE43, - 0xFE44, - 0xFE45, - 0xFE47, - 0xFE48, - 0xFE49, - 0xFE4D, - 0xFE50, - 0xFE51, - 0xFE52, - 0xFE54, - 0xFE55, - 0xFE56, - 0xFE57, - 0xFE58, - 0xFE59, - 0xFE5A, - 0xFE5B, - 0xFE5C, - 0xFE5D, - 0xFE5E, - 0xFE5F, - 0xFE60, - 0xFE61, - 0xFE62, - 0xFE63, - 0xFE64, - 0xFE65, - 0xFE66, - 0xFE67, - 0xFE68, - 0xFE69, - 0xFE6A, - 0xFE6B, - 0xFE6C, - 0xFE70, - 0xFE71, - 0xFE72, - 0xFE73, - 0xFE74, - 0xFE75, - 0xFE76, - 0xFE77, - 0xFE78, - 0xFE79, - 0xFE7A, - 0xFE7B, - 0xFE7C, - 0xFE7D, - 0xFE7E, - 0xFE7F, - 0xFE80, - 0xFE81, - 0xFE83, - 0xFE85, - 0xFE87, - 0xFE89, - 0xFE8D, - 0xFE8F, - 0xFE93, - 0xFE95, - 0xFE99, - 0xFE9D, - 0xFEA1, - 0xFEA5, - 0xFEA9, - 0xFEAB, - 0xFEAD, - 0xFEAF, - 0xFEB1, - 0xFEB5, - 0xFEB9, - 0xFEBD, - 0xFEC1, - 0xFEC5, - 0xFEC9, - 0xFECD, - 0xFED1, - 0xFED5, - 0xFED9, - 0xFEDD, - 0xFEE1, - 0xFEE5, - 0xFEE9, - 0xFEED, - 0xFEEF, - 0xFEF1, - 0xFEF5, - 0xFEF7, - 0xFEF9, - 0xFEFB, - 0xFEFD, - 0xFEFF, - 0xFF00, - 0xFF01, - 0xFF02, - 0xFF03, - 0xFF04, - 0xFF05, - 0xFF06, - 0xFF07, - 0xFF08, - 0xFF09, - 0xFF0A, - 0xFF0B, - 0xFF0C, - 0xFF0D, - 0xFF0E, - 0xFF0F, - 0xFF10, - 0xFF11, - 0xFF12, - 0xFF13, - 0xFF14, - 0xFF15, - 0xFF16, - 0xFF17, - 0xFF18, - 0xFF19, - 0xFF1A, - 0xFF1B, - 0xFF1C, - 0xFF1D, - 0xFF1E, - 0xFF1F, - 0xFF20, - 0xFF21, - 0xFF22, - 0xFF23, - 0xFF24, - 0xFF25, - 0xFF26, - 0xFF27, - 0xFF28, - 0xFF29, - 0xFF2A, - 0xFF2B, - 0xFF2C, - 0xFF2D, - 0xFF2E, - 0xFF2F, - 0xFF30, - 0xFF31, - 0xFF32, - 0xFF33, - 0xFF34, - 0xFF35, - 0xFF36, - 0xFF37, - 0xFF38, - 0xFF39, - 0xFF3A, - 0xFF3B, - 0xFF3C, - 0xFF3D, - 0xFF3E, - 0xFF3F, - 0xFF40, - 0xFF41, - 0xFF42, - 0xFF43, - 0xFF44, - 0xFF45, - 0xFF46, - 0xFF47, - 0xFF48, - 0xFF49, - 0xFF4A, - 0xFF4B, - 0xFF4C, - 0xFF4D, - 0xFF4E, - 0xFF4F, - 0xFF50, - 0xFF51, - 0xFF52, - 0xFF53, - 0xFF54, - 0xFF55, - 0xFF56, - 0xFF57, - 0xFF58, - 0xFF59, - 0xFF5A, - 0xFF5B, - 0xFF5C, - 0xFF5D, - 0xFF5E, - 0xFF5F, - 0xFF60, - 0xFF61, - 0xFF62, - 0xFF63, - 0xFF64, - 0xFF65, - 0xFF66, - 0xFF67, - 0xFF68, - 0xFF69, - 0xFF6A, - 0xFF6B, - 0xFF6C, - 0xFF6D, - 0xFF6E, - 0xFF6F, - 0xFF70, - 0xFF71, - 0xFF72, - 0xFF73, - 0xFF74, - 0xFF75, - 0xFF76, - 0xFF77, - 0xFF78, - 0xFF79, - 0xFF7A, - 0xFF7B, - 0xFF7C, - 0xFF7D, - 0xFF7E, - 0xFF7F, - 0xFF80, - 0xFF81, - 0xFF82, - 0xFF83, - 0xFF84, - 0xFF85, - 0xFF86, - 0xFF87, - 0xFF88, - 0xFF89, - 0xFF8A, - 0xFF8B, - 0xFF8C, - 0xFF8D, - 0xFF8E, - 0xFF8F, - 0xFF90, - 0xFF91, - 0xFF92, - 0xFF93, - 0xFF94, - 0xFF95, - 0xFF96, - 0xFF97, - 0xFF98, - 0xFF99, - 0xFF9A, - 0xFF9B, - 0xFF9C, - 0xFF9D, - 0xFF9E, - 0xFF9F, - 0xFFA0, - 0xFFA1, - 0xFFA2, - 0xFFA3, - 0xFFA4, - 0xFFA5, - 0xFFA6, - 0xFFA7, - 0xFFA8, - 0xFFA9, - 0xFFAA, - 0xFFAB, - 0xFFAC, - 0xFFAD, - 0xFFAE, - 0xFFAF, - 0xFFB0, - 0xFFB1, - 0xFFB2, - 0xFFB3, - 0xFFB4, - 0xFFB5, - 0xFFB6, - 0xFFB7, - 0xFFB8, - 0xFFB9, - 0xFFBA, - 0xFFBB, - 0xFFBC, - 0xFFBD, - 0xFFBE, - 0xFFBF, - 0xFFC2, - 0xFFC3, - 0xFFC4, - 0xFFC5, - 0xFFC6, - 0xFFC7, - 0xFFC8, - 0xFFCA, - 0xFFCB, - 0xFFCC, - 0xFFCD, - 0xFFCE, - 0xFFCF, - 0xFFD0, - 0xFFD2, - 0xFFD3, - 0xFFD4, - 0xFFD5, - 0xFFD6, - 0xFFD7, - 0xFFD8, - 0xFFDA, - 0xFFDB, - 0xFFDC, - 0xFFDD, - 0xFFE0, - 0xFFE1, - 0xFFE2, - 0xFFE3, - 0xFFE4, - 0xFFE5, - 0xFFE6, - 0xFFE7, - 0xFFE8, - 0xFFE9, - 0xFFEA, - 0xFFEB, - 0xFFEC, - 0xFFED, - 0xFFEE, - 0xFFEF, - 0x10000, - 0x1000C, - 0x1000D, - 0x10027, - 0x10028, - 0x1003B, - 0x1003C, - 0x1003E, - 0x1003F, - 0x1004E, - 0x10050, - 0x1005E, - 0x10080, - 0x100FB, - 0x10100, - 0x10103, - 0x10107, - 0x10134, - 0x10137, - 0x1018F, - 0x10190, - 0x1019D, - 0x101A0, - 0x101A1, - 0x101D0, - 0x101FE, - 0x10280, - 0x1029D, - 0x102A0, - 0x102D1, - 0x102E0, - 0x102FC, - 0x10300, - 0x10324, - 0x1032D, - 0x1034B, - 0x10350, - 0x1037B, - 0x10380, - 0x1039E, - 0x1039F, - 0x103C4, - 0x103C8, - 0x103D6, - 0x10400, - 0x10401, - 0x10402, - 0x10403, - 0x10404, - 0x10405, - 0x10406, - 0x10407, - 0x10408, - 0x10409, - 0x1040A, - 0x1040B, - 0x1040C, - 0x1040D, - 0x1040E, - 0x1040F, - 0x10410, - 0x10411, - 0x10412, - 0x10413, - 0x10414, - 0x10415, - 0x10416, - 0x10417, - 0x10418, - 0x10419, - 0x1041A, - 0x1041B, - 0x1041C, - 0x1041D, - 0x1041E, - 0x1041F, - 0x10420, - 0x10421, - 0x10422, - 0x10423, - 0x10424, - 0x10425, - 0x10426, - 0x10427, - 0x10428, - 0x1049E, - 0x104A0, - 0x104AA, - 0x104B0, - 0x104B1, - 0x104B2, - 0x104B3, - 0x104B4, - 0x104B5, - 0x104B6, - 0x104B7, - 0x104B8, - 0x104B9, - 0x104BA, - 0x104BB, - 0x104BC, - 0x104BD, - 0x104BE, - 0x104BF, - 0x104C0, - 0x104C1, - 0x104C2, - 0x104C3, - 0x104C4, - 0x104C5, - 0x104C6, - 0x104C7, - 0x104C8, - 0x104C9, - 0x104CA, - 0x104CB, - 0x104CC, - 0x104CD, - 0x104CE, - 0x104CF, - 0x104D0, - 0x104D1, - 0x104D2, - 0x104D3, - 0x104D4, - 0x104D8, - 0x104FC, - 0x10500, - 0x10528, - 0x10530, - 0x10564, - 0x1056F, - 0x10570, - 0x10571, - 0x10572, - 0x10573, - 0x10574, - 0x10575, - 0x10576, - 0x10577, - 0x10578, - 0x10579, - 0x1057A, - 0x1057B, - 0x1057C, - 0x1057D, - 0x1057E, - 0x1057F, - 0x10580, - 0x10581, - 0x10582, - 0x10583, - 0x10584, - 0x10585, - 0x10586, - 0x10587, - 0x10588, - 0x10589, - 0x1058A, - 0x1058B, - 0x1058C, - 0x1058D, - 0x1058E, - 0x1058F, - 0x10590, - 0x10591, - 0x10592, - 0x10593, - 0x10594, - 0x10595, - 0x10596, - 0x10597, - 0x105A2, - 0x105A3, - 0x105B2, - 0x105B3, - 0x105BA, - 0x105BB, - 0x105BD, - 0x105C0, - 0x105F4, - 0x10600, - 0x10737, - 0x10740, - 0x10756, - 0x10760, - 0x10768, - 0x10780, - 0x10781, - 0x10782, - 0x10783, - 0x10784, - 0x10785, - 0x10786, - 0x10787, - 0x10788, - 0x10789, - 0x1078A, - 0x1078B, - 0x1078C, - 0x1078D, - 0x1078E, - 0x1078F, - 0x10790, - 0x10791, - 0x10792, - 0x10793, - 0x10794, - 0x10795, - 0x10796, - 0x10797, - 0x10798, - 0x10799, - 0x1079A, - 0x1079B, - 0x1079C, - 0x1079D, - 0x1079E, - 0x1079F, - 0x107A0, - 0x107A1, - 0x107A2, - 0x107A3, - 0x107A4, - 0x107A5, - 0x107A6, - 0x107A7, - 0x107A8, - 0x107A9, - 0x107AA, - 0x107AB, - 0x107AC, - 0x107AD, - 0x107AE, - 0x107AF, - 0x107B0, - 0x107B1, - 0x107B2, - 0x107B3, - 0x107B4, - 0x107B5, - 0x107B6, - 0x107B7, - 0x107B8, - 0x107B9, - 0x107BA, - 0x107BB, - 0x10800, - 0x10806, - 0x10808, - 0x10809, - 0x1080A, - 0x10836, - 0x10837, - 0x10839, - 0x1083C, - 0x1083D, - 0x1083F, - 0x10856, - 0x10857, - 0x1089F, - 0x108A7, - 0x108B0, - 0x108E0, - 0x108F3, - 0x108F4, - 0x108F6, - 0x108FB, - 0x1091C, - 0x1091F, - 0x1093A, - 0x1093F, - 0x1095A, - 0x10980, - 0x109B8, - 0x109BC, - 0x109D0, - 0x109D2, - 0x10A04, - 0x10A05, - 0x10A07, - 0x10A0C, - 0x10A14, - 0x10A15, - 0x10A18, - 0x10A19, - 0x10A36, - 0x10A38, - 0x10A3B, - 0x10A3F, - 0x10A49, - 0x10A50, - 0x10A59, - 0x10A60, - 0x10AA0, - 0x10AC0, - 0x10AE7, - 0x10AEB, - 0x10AF7, - 0x10B00, - 0x10B36, - 0x10B39, - 0x10B56, - 0x10B58, - 0x10B73, - 0x10B78, - 0x10B92, - 0x10B99, - 0x10B9D, - 0x10BA9, - 0x10BB0, - 0x10C00, - 0x10C49, - 0x10C80, - 0x10C81, - 0x10C82, - 0x10C83, - 0x10C84, - 0x10C85, - 0x10C86, - 0x10C87, - 0x10C88, - 0x10C89, - 0x10C8A, - 0x10C8B, - 0x10C8C, - 0x10C8D, - 0x10C8E, - 0x10C8F, - 0x10C90, - 0x10C91, - 0x10C92, - 0x10C93, - 0x10C94, - 0x10C95, - 0x10C96, - 0x10C97, - 0x10C98, - 0x10C99, - 0x10C9A, - 0x10C9B, - 0x10C9C, - 0x10C9D, - 0x10C9E, - 0x10C9F, - 0x10CA0, - 0x10CA1, - 0x10CA2, - 0x10CA3, - 0x10CA4, - 0x10CA5, - 0x10CA6, - 0x10CA7, - 0x10CA8, - 0x10CA9, - 0x10CAA, - 0x10CAB, - 0x10CAC, - 0x10CAD, - 0x10CAE, - 0x10CAF, - 0x10CB0, - 0x10CB1, - 0x10CB2, - 0x10CB3, - 0x10CC0, - 0x10CF3, - 0x10CFA, - 0x10D28, - 0x10D30, - 0x10D3A, - 0x10D40, - 0x10D50, - 0x10D51, - 0x10D52, - 0x10D53, - 0x10D54, - 0x10D55, - 0x10D56, - 0x10D57, - 0x10D58, - 0x10D59, - 0x10D5A, - 0x10D5B, - 0x10D5C, - 0x10D5D, - 0x10D5E, - 0x10D5F, - 0x10D60, - 0x10D61, - 0x10D62, - 0x10D63, - 0x10D64, - 0x10D65, - 0x10D66, - 0x10D69, - 0x10D86, - 0x10D8E, - 0x10D90, - 0x10E60, - 0x10E7F, - 0x10E80, - 0x10EAA, - 0x10EAB, - 0x10EAE, - 0x10EB0, - 0x10EB2, - 0x10EC2, - 0x10EC8, - 0x10ED0, - 0x10ED9, - 0x10EFA, - 0x10F28, - 0x10F30, - 0x10F5A, - 0x10F70, - 0x10F8A, - 0x10FB0, - 0x10FCC, - 0x10FE0, - 0x10FF7, - 0x11000, - 0x1104E, - 0x11052, - 0x11076, - 0x1107F, - 0x110BD, - 0x110BE, - 0x110C3, - 0x110D0, - 0x110E9, - 0x110F0, - 0x110FA, - 0x11100, - 0x11135, - 0x11136, - 0x11148, - 0x11150, - 0x11177, - 0x11180, - 0x111E0, - 0x111E1, - 0x111F5, - 0x11200, - 0x11212, - 0x11213, - 0x11242, - 0x11280, - 0x11287, - 0x11288, - 0x11289, - 0x1128A, - 0x1128E, - 0x1128F, - 0x1129E, - 0x1129F, - 0x112AA, - 0x112B0, - 0x112EB, - 0x112F0, - 0x112FA, - 0x11300, - 0x11304, - 0x11305, - 0x1130D, - 0x1130F, - 0x11311, - 0x11313, - 0x11329, - 0x1132A, - 0x11331, - 0x11332, - 0x11334, - 0x11335, - 0x1133A, - 0x1133B, - 0x11345, - 0x11347, - 0x11349, - 0x1134B, - 0x1134E, - 0x11350, - 0x11351, - 0x11357, - 0x11358, - 0x1135D, - 0x11364, - 0x11366, - 0x1136D, - 0x11370, - 0x11375, - 0x11380, - 0x1138A, - 0x1138B, - 0x1138C, - 0x1138E, - 0x1138F, - 0x11390, - 0x113B6, - 0x113B7, - 0x113C1, - 0x113C2, - 0x113C3, - 0x113C5, - 0x113C6, - 0x113C7, - 0x113CB, - 0x113CC, - 0x113D6, - 0x113D7, - 0x113D9, - 0x113E1, - 0x113E3, - 0x11400, - 0x1145C, - 0x1145D, - 0x11462, - 0x11480, - 0x114C8, - 0x114D0, - 0x114DA, - 0x11580, - 0x115B6, - 0x115B8, - 0x115DE, - 0x11600, - 0x11645, - 0x11650, - 0x1165A, - 0x11660, - 0x1166D, - 0x11680, - 0x116BA, - 0x116C0, - 0x116CA, - 0x116D0, - 0x116E4, - 0x11700, - 0x1171B, - 0x1171D, - 0x1172C, - 0x11730, - 0x11747, - 0x11800, - 0x1183C, - 0x118A0, - 0x118A1, - 0x118A2, - 0x118A3, - 0x118A4, - 0x118A5, - 0x118A6, - 0x118A7, - 0x118A8, - 0x118A9, - 0x118AA, - 0x118AB, - 0x118AC, - 0x118AD, - 0x118AE, - 0x118AF, - 0x118B0, - 0x118B1, - 0x118B2, - 0x118B3, - 0x118B4, - 0x118B5, - 0x118B6, - 0x118B7, - 0x118B8, - 0x118B9, - 0x118BA, - 0x118BB, - 0x118BC, - 0x118BD, - 0x118BE, - 0x118BF, - 0x118C0, - 0x118F3, - 0x118FF, - 0x11907, - 0x11909, - 0x1190A, - 0x1190C, - 0x11914, - 0x11915, - 0x11917, - 0x11918, - 0x11936, - 0x11937, - 0x11939, - 0x1193B, - 0x11947, - 0x11950, - 0x1195A, - 0x119A0, - 0x119A8, - 0x119AA, - 0x119D8, - 0x119DA, - 0x119E5, - 0x11A00, - 0x11A48, - 0x11A50, - 0x11AA3, - 0x11AB0, - 0x11AF9, - 0x11B00, - 0x11B0A, - 0x11B60, - 0x11B68, - 0x11BC0, - 0x11BE2, - 0x11BF0, - 0x11BFA, - 0x11C00, - 0x11C09, - 0x11C0A, - 0x11C37, - 0x11C38, - 0x11C46, - 0x11C50, - 0x11C6D, - 0x11C70, - 0x11C90, - 0x11C92, - 0x11CA8, - 0x11CA9, - 0x11CB7, - 0x11D00, - 0x11D07, - 0x11D08, - 0x11D0A, - 0x11D0B, - 0x11D37, - 0x11D3A, - 0x11D3B, - 0x11D3C, - 0x11D3E, - 0x11D3F, - 0x11D48, - 0x11D50, - 0x11D5A, - 0x11D60, - 0x11D66, - 0x11D67, - 0x11D69, - 0x11D6A, - 0x11D8F, - 0x11D90, - 0x11D92, - 0x11D93, - 0x11D99, - 0x11DA0, - 0x11DAA, - 0x11DB0, - 0x11DDC, - 0x11DE0, - 0x11DEA, - 0x11EE0, - 0x11EF9, - 0x11F00, - 0x11F11, - 0x11F12, - 0x11F3B, - 0x11F3E, - 0x11F5B, - 0x11FB0, - 0x11FB1, - 0x11FC0, - 0x11FF2, - 0x11FFF, - 0x1239A, - 0x12400, - 0x1246F, - 0x12470, - 0x12475, - 0x12480, - 0x12544, - 0x12F90, - 0x12FF3, - 0x13000, - 0x13430, - 0x13440, - 0x13456, - 0x13460, - 0x143FB, - 0x14400, - 0x14647, - 0x16100, - 0x1613A, - 0x16800, - 0x16A39, - 0x16A40, - 0x16A5F, - 0x16A60, - 0x16A6A, - 0x16A6E, - 0x16ABF, - 0x16AC0, - 0x16ACA, - 0x16AD0, - 0x16AEE, - 0x16AF0, - 0x16AF6, - 0x16B00, - 0x16B46, - 0x16B50, - 0x16B5A, - 0x16B5B, - 0x16B62, - 0x16B63, - 0x16B78, - 0x16B7D, - 0x16B90, - 0x16D40, - 0x16D7A, - 0x16E40, - 0x16E41, - 0x16E42, - 0x16E43, - 0x16E44, - 0x16E45, - 0x16E46, - 0x16E47, - 0x16E48, - 0x16E49, - 0x16E4A, - 0x16E4B, - 0x16E4C, - 0x16E4D, - 0x16E4E, - 0x16E4F, - 0x16E50, - 0x16E51, - 0x16E52, - 0x16E53, - 0x16E54, - 0x16E55, - 0x16E56, - 0x16E57, - 0x16E58, - 0x16E59, - 0x16E5A, - 0x16E5B, - 0x16E5C, - 0x16E5D, - 0x16E5E, - 0x16E5F, - 0x16E60, - 0x16E9B, - 0x16EA0, - 0x16EA1, - 0x16EA2, - 0x16EA3, - 0x16EA4, - 0x16EA5, - 0x16EA6, - 0x16EA7, - 0x16EA8, - 0x16EA9, - 0x16EAA, - 0x16EAB, - 0x16EAC, - 0x16EAD, - 0x16EAE, - 0x16EAF, - 0x16EB0, - 0x16EB1, - 0x16EB2, - 0x16EB3, - 0x16EB4, - 0x16EB5, - 0x16EB6, - 0x16EB7, - 0x16EB8, - 0x16EB9, - 0x16EBB, - 0x16ED4, - 0x16F00, - 0x16F4B, - 0x16F4F, - 0x16F88, - 0x16F8F, - 0x16FA0, - 0x16FE0, - 0x16FE5, - 0x16FF0, - 0x16FF7, - 0x17000, - 0x18CD6, - 0x18CFF, - 0x18D1F, - 0x18D80, - 0x18DF3, - 0x1AFF0, - 0x1AFF4, - 0x1AFF5, - 0x1AFFC, - 0x1AFFD, - 0x1AFFF, - 0x1B000, - 0x1B123, - 0x1B132, - 0x1B133, - 0x1B150, - 0x1B153, - 0x1B155, - 0x1B156, - 0x1B164, - 0x1B168, - 0x1B170, - 0x1B2FC, - 0x1BC00, - 0x1BC6B, - 0x1BC70, - 0x1BC7D, - 0x1BC80, - 0x1BC89, - 0x1BC90, - 0x1BC9A, - 0x1BC9C, - 0x1BCA0, - 0x1BCA4, - 0x1CC00, - 0x1CCD6, - 0x1CCD7, - 0x1CCD8, - 0x1CCD9, - 0x1CCDA, - 0x1CCDB, - 0x1CCDC, - 0x1CCDD, - 0x1CCDE, - 0x1CCDF, - 0x1CCE0, - 0x1CCE1, - 0x1CCE2, - 0x1CCE3, - 0x1CCE4, - 0x1CCE5, - 0x1CCE6, - 0x1CCE7, - 0x1CCE8, - 0x1CCE9, - 0x1CCEA, - 0x1CCEB, - 0x1CCEC, - 0x1CCED, - 0x1CCEE, - 0x1CCEF, - 0x1CCF0, - 0x1CCF1, - 0x1CCF2, - 0x1CCF3, - 0x1CCF4, - 0x1CCF5, - 0x1CCF6, - 0x1CCF7, - 0x1CCF8, - 0x1CCF9, - 0x1CCFA, - 0x1CCFD, - 0x1CD00, - 0x1CEB4, - 0x1CEBA, - 0x1CED1, - 0x1CEE0, - 0x1CEF1, - 0x1CF00, - 0x1CF2E, - 0x1CF30, - 0x1CF47, - 0x1CF50, - 0x1CFC4, - 0x1D000, - 0x1D0F6, - 0x1D100, - 0x1D127, - 0x1D129, - 0x1D15E, - 0x1D15F, - 0x1D160, - 0x1D161, - 0x1D162, - 0x1D163, - 0x1D164, - 0x1D165, - 0x1D173, - 0x1D17B, - 0x1D1BB, - 0x1D1BC, - 0x1D1BD, - 0x1D1BE, - 0x1D1BF, - 0x1D1C0, - 0x1D1C1, - 0x1D1EB, - 0x1D200, - 0x1D246, - 0x1D2C0, - 0x1D2D4, - 0x1D2E0, - 0x1D2F4, - 0x1D300, - 0x1D357, - 0x1D360, - 0x1D379, - 0x1D400, - 0x1D401, - 0x1D402, - 0x1D403, - 0x1D404, - 0x1D405, - 0x1D406, - 0x1D407, - 0x1D408, - 0x1D409, - 0x1D40A, - 0x1D40B, - 0x1D40C, - 0x1D40D, - 0x1D40E, - 0x1D40F, - 0x1D410, - 0x1D411, - 0x1D412, - 0x1D413, - 0x1D414, - 0x1D415, - 0x1D416, - 0x1D417, - 0x1D418, - 0x1D419, - 0x1D41A, - 0x1D41B, - 0x1D41C, - 0x1D41D, - 0x1D41E, - 0x1D41F, - 0x1D420, - 0x1D421, - 0x1D422, - 0x1D423, - 0x1D424, - 0x1D425, - 0x1D426, - 0x1D427, - 0x1D428, - 0x1D429, - 0x1D42A, - 0x1D42B, - 0x1D42C, - 0x1D42D, - 0x1D42E, - 0x1D42F, - 0x1D430, - 0x1D431, - 0x1D432, - 0x1D433, - 0x1D434, - 0x1D435, - 0x1D436, - 0x1D437, - 0x1D438, - 0x1D439, - 0x1D43A, - 0x1D43B, - 0x1D43C, - 0x1D43D, - 0x1D43E, - 0x1D43F, - 0x1D440, - 0x1D441, - 0x1D442, - 0x1D443, - 0x1D444, - 0x1D445, - 0x1D446, - 0x1D447, - 0x1D448, - 0x1D449, - 0x1D44A, - 0x1D44B, - 0x1D44C, - 0x1D44D, - 0x1D44E, - 0x1D44F, - 0x1D450, - 0x1D451, - 0x1D452, - 0x1D453, - 0x1D454, - 0x1D455, - 0x1D456, - 0x1D457, - 0x1D458, - 0x1D459, - 0x1D45A, - 0x1D45B, - 0x1D45C, - 0x1D45D, - 0x1D45E, - 0x1D45F, - 0x1D460, - 0x1D461, - 0x1D462, - 0x1D463, - 0x1D464, - 0x1D465, - 0x1D466, - 0x1D467, - 0x1D468, - 0x1D469, - 0x1D46A, - 0x1D46B, - 0x1D46C, - 0x1D46D, - 0x1D46E, - 0x1D46F, - 0x1D470, - 0x1D471, - 0x1D472, - 0x1D473, - 0x1D474, - 0x1D475, - 0x1D476, - 0x1D477, - 0x1D478, - 0x1D479, - 0x1D47A, - 0x1D47B, - 0x1D47C, - 0x1D47D, - 0x1D47E, - 0x1D47F, - 0x1D480, - 0x1D481, - 0x1D482, - 0x1D483, - 0x1D484, - 0x1D485, - 0x1D486, - 0x1D487, - 0x1D488, - 0x1D489, - 0x1D48A, - 0x1D48B, - 0x1D48C, - 0x1D48D, - 0x1D48E, - 0x1D48F, - 0x1D490, - 0x1D491, - 0x1D492, - 0x1D493, - 0x1D494, - 0x1D495, - 0x1D496, - 0x1D497, - 0x1D498, - 0x1D499, - 0x1D49A, - 0x1D49B, - 0x1D49C, - 0x1D49D, - 0x1D49E, - 0x1D49F, - 0x1D4A0, - 0x1D4A2, - 0x1D4A3, - 0x1D4A5, - 0x1D4A6, - 0x1D4A7, - 0x1D4A9, - 0x1D4AA, - 0x1D4AB, - 0x1D4AC, - 0x1D4AD, - 0x1D4AE, - 0x1D4AF, - 0x1D4B0, - 0x1D4B1, - 0x1D4B2, - 0x1D4B3, - 0x1D4B4, - 0x1D4B5, - 0x1D4B6, - 0x1D4B7, - 0x1D4B8, - 0x1D4B9, - 0x1D4BA, - 0x1D4BB, - 0x1D4BC, - 0x1D4BD, - 0x1D4BE, - 0x1D4BF, - 0x1D4C0, - 0x1D4C1, - 0x1D4C2, - 0x1D4C3, - 0x1D4C4, - 0x1D4C5, - 0x1D4C6, - 0x1D4C7, - 0x1D4C8, - 0x1D4C9, - 0x1D4CA, - 0x1D4CB, - 0x1D4CC, - 0x1D4CD, - 0x1D4CE, - 0x1D4CF, - 0x1D4D0, - 0x1D4D1, - 0x1D4D2, - 0x1D4D3, - 0x1D4D4, - 0x1D4D5, - 0x1D4D6, - 0x1D4D7, - 0x1D4D8, - 0x1D4D9, - 0x1D4DA, - 0x1D4DB, - 0x1D4DC, - 0x1D4DD, - 0x1D4DE, - 0x1D4DF, - 0x1D4E0, - 0x1D4E1, - 0x1D4E2, - 0x1D4E3, - 0x1D4E4, - 0x1D4E5, - 0x1D4E6, - 0x1D4E7, - 0x1D4E8, - 0x1D4E9, - 0x1D4EA, - 0x1D4EB, - 0x1D4EC, - 0x1D4ED, - 0x1D4EE, - 0x1D4EF, - 0x1D4F0, - 0x1D4F1, - 0x1D4F2, - 0x1D4F3, - 0x1D4F4, - 0x1D4F5, - 0x1D4F6, - 0x1D4F7, - 0x1D4F8, - 0x1D4F9, - 0x1D4FA, - 0x1D4FB, - 0x1D4FC, - 0x1D4FD, - 0x1D4FE, - 0x1D4FF, - 0x1D500, - 0x1D501, - 0x1D502, - 0x1D503, - 0x1D504, - 0x1D505, - 0x1D506, - 0x1D507, - 0x1D508, - 0x1D509, - 0x1D50A, - 0x1D50B, - 0x1D50D, - 0x1D50E, - 0x1D50F, - 0x1D510, - 0x1D511, - 0x1D512, - 0x1D513, - 0x1D514, - 0x1D515, - 0x1D516, - 0x1D517, - 0x1D518, - 0x1D519, - 0x1D51A, - 0x1D51B, - 0x1D51C, - 0x1D51D, - 0x1D51E, - 0x1D51F, - 0x1D520, - 0x1D521, - 0x1D522, - 0x1D523, - 0x1D524, - 0x1D525, - 0x1D526, - 0x1D527, - 0x1D528, - 0x1D529, - 0x1D52A, - 0x1D52B, - 0x1D52C, - 0x1D52D, - 0x1D52E, - 0x1D52F, - 0x1D530, - 0x1D531, - 0x1D532, - 0x1D533, - 0x1D534, - 0x1D535, - 0x1D536, - 0x1D537, - 0x1D538, - 0x1D539, - 0x1D53A, - 0x1D53B, - 0x1D53C, - 0x1D53D, - 0x1D53E, - 0x1D53F, - 0x1D540, - 0x1D541, - 0x1D542, - 0x1D543, - 0x1D544, - 0x1D545, - 0x1D546, - 0x1D547, - 0x1D54A, - 0x1D54B, - 0x1D54C, - 0x1D54D, - 0x1D54E, - 0x1D54F, - 0x1D550, - 0x1D551, - 0x1D552, - 0x1D553, - 0x1D554, - 0x1D555, - 0x1D556, - 0x1D557, - 0x1D558, - 0x1D559, - 0x1D55A, - 0x1D55B, - 0x1D55C, - 0x1D55D, - 0x1D55E, - 0x1D55F, - 0x1D560, - 0x1D561, - 0x1D562, - 0x1D563, - 0x1D564, - 0x1D565, - 0x1D566, - 0x1D567, - 0x1D568, - 0x1D569, - 0x1D56A, - 0x1D56B, - 0x1D56C, - 0x1D56D, - 0x1D56E, - 0x1D56F, - 0x1D570, - 0x1D571, - 0x1D572, - 0x1D573, - 0x1D574, - 0x1D575, - 0x1D576, - 0x1D577, - 0x1D578, - 0x1D579, - 0x1D57A, - 0x1D57B, - 0x1D57C, - 0x1D57D, - 0x1D57E, - 0x1D57F, - 0x1D580, - 0x1D581, - 0x1D582, - 0x1D583, - 0x1D584, - 0x1D585, - 0x1D586, - 0x1D587, - 0x1D588, - 0x1D589, - 0x1D58A, - 0x1D58B, - 0x1D58C, - 0x1D58D, - 0x1D58E, - 0x1D58F, - 0x1D590, - 0x1D591, - 0x1D592, - 0x1D593, - 0x1D594, - 0x1D595, - 0x1D596, - 0x1D597, - 0x1D598, - 0x1D599, - 0x1D59A, - 0x1D59B, - 0x1D59C, - 0x1D59D, - 0x1D59E, - 0x1D59F, - 0x1D5A0, - 0x1D5A1, - 0x1D5A2, - 0x1D5A3, - 0x1D5A4, - 0x1D5A5, - 0x1D5A6, - 0x1D5A7, - 0x1D5A8, - 0x1D5A9, - 0x1D5AA, - 0x1D5AB, - 0x1D5AC, - 0x1D5AD, - 0x1D5AE, - 0x1D5AF, - 0x1D5B0, - 0x1D5B1, - 0x1D5B2, - 0x1D5B3, - 0x1D5B4, - 0x1D5B5, - 0x1D5B6, - 0x1D5B7, - 0x1D5B8, - 0x1D5B9, - 0x1D5BA, - 0x1D5BB, - 0x1D5BC, - 0x1D5BD, - 0x1D5BE, - 0x1D5BF, - 0x1D5C0, - 0x1D5C1, - 0x1D5C2, - 0x1D5C3, - 0x1D5C4, - 0x1D5C5, - 0x1D5C6, - 0x1D5C7, - 0x1D5C8, - 0x1D5C9, - 0x1D5CA, - 0x1D5CB, - 0x1D5CC, - 0x1D5CD, - 0x1D5CE, - 0x1D5CF, - 0x1D5D0, - 0x1D5D1, - 0x1D5D2, - 0x1D5D3, - 0x1D5D4, - 0x1D5D5, - 0x1D5D6, - 0x1D5D7, - 0x1D5D8, - 0x1D5D9, - 0x1D5DA, - 0x1D5DB, - 0x1D5DC, - 0x1D5DD, - 0x1D5DE, - 0x1D5DF, - 0x1D5E0, - 0x1D5E1, - 0x1D5E2, - 0x1D5E3, - 0x1D5E4, - 0x1D5E5, - 0x1D5E6, - 0x1D5E7, - 0x1D5E8, - 0x1D5E9, - 0x1D5EA, - 0x1D5EB, - 0x1D5EC, - 0x1D5ED, - 0x1D5EE, - 0x1D5EF, - 0x1D5F0, - 0x1D5F1, - 0x1D5F2, - 0x1D5F3, - 0x1D5F4, - 0x1D5F5, - 0x1D5F6, - 0x1D5F7, - 0x1D5F8, - 0x1D5F9, - 0x1D5FA, - 0x1D5FB, - 0x1D5FC, - 0x1D5FD, - 0x1D5FE, - 0x1D5FF, - 0x1D600, - 0x1D601, - 0x1D602, - 0x1D603, - 0x1D604, - 0x1D605, - 0x1D606, - 0x1D607, - 0x1D608, - 0x1D609, - 0x1D60A, - 0x1D60B, - 0x1D60C, - 0x1D60D, - 0x1D60E, - 0x1D60F, - 0x1D610, - 0x1D611, - 0x1D612, - 0x1D613, - 0x1D614, - 0x1D615, - 0x1D616, - 0x1D617, - 0x1D618, - 0x1D619, - 0x1D61A, - 0x1D61B, - 0x1D61C, - 0x1D61D, - 0x1D61E, - 0x1D61F, - 0x1D620, - 0x1D621, - 0x1D622, - 0x1D623, - 0x1D624, - 0x1D625, - 0x1D626, - 0x1D627, - 0x1D628, - 0x1D629, - 0x1D62A, - 0x1D62B, - 0x1D62C, - 0x1D62D, - 0x1D62E, - 0x1D62F, - 0x1D630, - 0x1D631, - 0x1D632, - 0x1D633, - 0x1D634, - 0x1D635, - 0x1D636, - 0x1D637, - 0x1D638, - 0x1D639, - 0x1D63A, - 0x1D63B, - 0x1D63C, - 0x1D63D, - 0x1D63E, - 0x1D63F, - 0x1D640, - 0x1D641, - 0x1D642, - 0x1D643, - 0x1D644, - 0x1D645, - 0x1D646, - 0x1D647, - 0x1D648, - 0x1D649, - 0x1D64A, - 0x1D64B, - 0x1D64C, - 0x1D64D, - 0x1D64E, - 0x1D64F, - 0x1D650, - 0x1D651, - 0x1D652, - 0x1D653, - 0x1D654, - 0x1D655, - 0x1D656, - 0x1D657, - 0x1D658, - 0x1D659, - 0x1D65A, - 0x1D65B, - 0x1D65C, - 0x1D65D, - 0x1D65E, - 0x1D65F, - 0x1D660, - 0x1D661, - 0x1D662, - 0x1D663, - 0x1D664, - 0x1D665, - 0x1D666, - 0x1D667, - 0x1D668, - 0x1D669, - 0x1D66A, - 0x1D66B, - 0x1D66C, - 0x1D66D, - 0x1D66E, - 0x1D66F, - 0x1D670, - 0x1D671, - 0x1D672, - 0x1D673, - 0x1D674, - 0x1D675, - 0x1D676, - 0x1D677, - 0x1D678, - 0x1D679, - 0x1D67A, - 0x1D67B, - 0x1D67C, - 0x1D67D, - 0x1D67E, - 0x1D67F, - 0x1D680, - 0x1D681, - 0x1D682, - 0x1D683, - 0x1D684, - 0x1D685, - 0x1D686, - 0x1D687, - 0x1D688, - 0x1D689, - 0x1D68A, - 0x1D68B, - 0x1D68C, - 0x1D68D, - 0x1D68E, - 0x1D68F, - 0x1D690, - 0x1D691, - 0x1D692, - 0x1D693, - 0x1D694, - 0x1D695, - 0x1D696, - 0x1D697, - 0x1D698, - 0x1D699, - 0x1D69A, - 0x1D69B, - 0x1D69C, - 0x1D69D, - 0x1D69E, - 0x1D69F, - 0x1D6A0, - 0x1D6A1, - 0x1D6A2, - 0x1D6A3, - 0x1D6A4, - 0x1D6A5, - 0x1D6A6, - 0x1D6A8, - 0x1D6A9, - 0x1D6AA, - 0x1D6AB, - 0x1D6AC, - 0x1D6AD, - 0x1D6AE, - 0x1D6AF, - 0x1D6B0, - 0x1D6B1, - 0x1D6B2, - 0x1D6B3, - 0x1D6B4, - 0x1D6B5, - 0x1D6B6, - 0x1D6B7, - 0x1D6B8, - 0x1D6B9, - 0x1D6BA, - 0x1D6BB, - 0x1D6BC, - 0x1D6BD, - 0x1D6BE, - 0x1D6BF, - 0x1D6C0, - 0x1D6C1, - 0x1D6C2, - 0x1D6C3, - 0x1D6C4, - 0x1D6C5, - 0x1D6C6, - 0x1D6C7, - 0x1D6C8, - 0x1D6C9, - 0x1D6CA, - 0x1D6CB, - 0x1D6CC, - 0x1D6CD, - 0x1D6CE, - 0x1D6CF, - 0x1D6D0, - 0x1D6D1, - 0x1D6D2, - 0x1D6D3, - 0x1D6D5, - 0x1D6D6, - 0x1D6D7, - 0x1D6D8, - 0x1D6D9, - 0x1D6DA, - 0x1D6DB, - 0x1D6DC, - 0x1D6DD, - 0x1D6DE, - 0x1D6DF, - 0x1D6E0, - 0x1D6E1, - 0x1D6E2, - 0x1D6E3, - 0x1D6E4, - 0x1D6E5, - 0x1D6E6, - 0x1D6E7, - 0x1D6E8, - 0x1D6E9, - 0x1D6EA, - 0x1D6EB, - 0x1D6EC, - 0x1D6ED, - 0x1D6EE, - 0x1D6EF, - 0x1D6F0, - 0x1D6F1, - 0x1D6F2, - 0x1D6F3, - 0x1D6F4, - 0x1D6F5, - 0x1D6F6, - 0x1D6F7, - 0x1D6F8, - 0x1D6F9, - 0x1D6FA, - 0x1D6FB, - 0x1D6FC, - 0x1D6FD, - 0x1D6FE, - 0x1D6FF, - 0x1D700, - 0x1D701, - 0x1D702, - 0x1D703, - 0x1D704, - 0x1D705, - 0x1D706, - 0x1D707, - 0x1D708, - 0x1D709, - 0x1D70A, - 0x1D70B, - 0x1D70C, - 0x1D70D, - 0x1D70F, - 0x1D710, - 0x1D711, - 0x1D712, - 0x1D713, - 0x1D714, - 0x1D715, - 0x1D716, - 0x1D717, - 0x1D718, - 0x1D719, - 0x1D71A, - 0x1D71B, - 0x1D71C, - 0x1D71D, - 0x1D71E, - 0x1D71F, - 0x1D720, - 0x1D721, - 0x1D722, - 0x1D723, - 0x1D724, - 0x1D725, - 0x1D726, - 0x1D727, - 0x1D728, - 0x1D729, - 0x1D72A, - 0x1D72B, - 0x1D72C, - 0x1D72D, - 0x1D72E, - 0x1D72F, - 0x1D730, - 0x1D731, - 0x1D732, - 0x1D733, - 0x1D734, - 0x1D735, - 0x1D736, - 0x1D737, - 0x1D738, - 0x1D739, - 0x1D73A, - 0x1D73B, - 0x1D73C, - 0x1D73D, - 0x1D73E, - 0x1D73F, - 0x1D740, - 0x1D741, - 0x1D742, - 0x1D743, - 0x1D744, - 0x1D745, - 0x1D746, - 0x1D747, - 0x1D749, - 0x1D74A, - 0x1D74B, - 0x1D74C, - 0x1D74D, - 0x1D74E, - 0x1D74F, - 0x1D750, - 0x1D751, - 0x1D752, - 0x1D753, - 0x1D754, - 0x1D755, - 0x1D756, - 0x1D757, - 0x1D758, - 0x1D759, - 0x1D75A, - 0x1D75B, - 0x1D75C, - 0x1D75D, - 0x1D75E, - 0x1D75F, - 0x1D760, - 0x1D761, - 0x1D762, - 0x1D763, - 0x1D764, - 0x1D765, - 0x1D766, - 0x1D767, - 0x1D768, - 0x1D769, - 0x1D76A, - 0x1D76B, - 0x1D76C, - 0x1D76D, - 0x1D76E, - 0x1D76F, - 0x1D770, - 0x1D771, - 0x1D772, - 0x1D773, - 0x1D774, - 0x1D775, - 0x1D776, - 0x1D777, - 0x1D778, - 0x1D779, - 0x1D77A, - 0x1D77B, - 0x1D77C, - 0x1D77D, - 0x1D77E, - 0x1D77F, - 0x1D780, - 0x1D781, - 0x1D783, - 0x1D784, - 0x1D785, - 0x1D786, - 0x1D787, - 0x1D788, - 0x1D789, - 0x1D78A, - 0x1D78B, - 0x1D78C, - 0x1D78D, - 0x1D78E, - 0x1D78F, - 0x1D790, - 0x1D791, - 0x1D792, - 0x1D793, - 0x1D794, - 0x1D795, - 0x1D796, - 0x1D797, - 0x1D798, - 0x1D799, - 0x1D79A, - 0x1D79B, - 0x1D79C, - 0x1D79D, - 0x1D79E, - 0x1D79F, - 0x1D7A0, - 0x1D7A1, - 0x1D7A2, - 0x1D7A3, - 0x1D7A4, - 0x1D7A5, - 0x1D7A6, - 0x1D7A7, - 0x1D7A8, - 0x1D7A9, - 0x1D7AA, - 0x1D7AB, - 0x1D7AC, - 0x1D7AD, - 0x1D7AE, - 0x1D7AF, - 0x1D7B0, - 0x1D7B1, - 0x1D7B2, - 0x1D7B3, - 0x1D7B4, - 0x1D7B5, - 0x1D7B6, - 0x1D7B7, - 0x1D7B8, - 0x1D7B9, - 0x1D7BA, - 0x1D7BB, - 0x1D7BD, - 0x1D7BE, - 0x1D7BF, - 0x1D7C0, - 0x1D7C1, - 0x1D7C2, - 0x1D7C3, - 0x1D7C4, - 0x1D7C5, - 0x1D7C6, - 0x1D7C7, - 0x1D7C8, - 0x1D7C9, - 0x1D7CA, - 0x1D7CC, - 0x1D7CE, - 0x1D7CF, - 0x1D7D0, - 0x1D7D1, - 0x1D7D2, - 0x1D7D3, - 0x1D7D4, - 0x1D7D5, - 0x1D7D6, - 0x1D7D7, - 0x1D7D8, - 0x1D7D9, - 0x1D7DA, - 0x1D7DB, - 0x1D7DC, - 0x1D7DD, - 0x1D7DE, - 0x1D7DF, - 0x1D7E0, - 0x1D7E1, - 0x1D7E2, - 0x1D7E3, - 0x1D7E4, - 0x1D7E5, - 0x1D7E6, - 0x1D7E7, - 0x1D7E8, - 0x1D7E9, - 0x1D7EA, - 0x1D7EB, - 0x1D7EC, - 0x1D7ED, - 0x1D7EE, - 0x1D7EF, - 0x1D7F0, - 0x1D7F1, - 0x1D7F2, - 0x1D7F3, - 0x1D7F4, - 0x1D7F5, - 0x1D7F6, - 0x1D7F7, - 0x1D7F8, - 0x1D7F9, - 0x1D7FA, - 0x1D7FB, - 0x1D7FC, - 0x1D7FD, - 0x1D7FE, - 0x1D7FF, - 0x1D800, - 0x1DA8C, - 0x1DA9B, - 0x1DAA0, - 0x1DAA1, - 0x1DAB0, - 0x1DF00, - 0x1DF1F, - 0x1DF25, - 0x1DF2B, - 0x1E000, - 0x1E007, - 0x1E008, - 0x1E019, - 0x1E01B, - 0x1E022, - 0x1E023, - 0x1E025, - 0x1E026, - 0x1E02B, - 0x1E030, - 0x1E031, - 0x1E032, - 0x1E033, - 0x1E034, - 0x1E035, - 0x1E036, - 0x1E037, - 0x1E038, - 0x1E039, - 0x1E03A, - 0x1E03B, - 0x1E03C, - 0x1E03D, - 0x1E03E, - 0x1E03F, - 0x1E040, - 0x1E041, - 0x1E042, - 0x1E043, - 0x1E044, - 0x1E045, - 0x1E046, - 0x1E047, - 0x1E048, - 0x1E049, - 0x1E04A, - 0x1E04B, - 0x1E04C, - 0x1E04D, - 0x1E04E, - 0x1E04F, - 0x1E050, - 0x1E051, - 0x1E052, - 0x1E053, - 0x1E054, - 0x1E055, - 0x1E056, - 0x1E057, - 0x1E058, - 0x1E059, - 0x1E05A, - 0x1E05B, - 0x1E05C, - 0x1E05D, - 0x1E05E, - 0x1E05F, - 0x1E060, - 0x1E061, - 0x1E062, - 0x1E063, - 0x1E064, - 0x1E065, - 0x1E066, - 0x1E067, - 0x1E068, - 0x1E069, - 0x1E06A, - 0x1E06B, - 0x1E06C, - 0x1E06D, - 0x1E06E, - 0x1E08F, - 0x1E090, - 0x1E100, - 0x1E12D, - 0x1E130, - 0x1E13E, - 0x1E140, - 0x1E14A, - 0x1E14E, - 0x1E150, - 0x1E290, - 0x1E2AF, - 0x1E2C0, - 0x1E2FA, - 0x1E2FF, - 0x1E300, - 0x1E4D0, - 0x1E4FA, - 0x1E5D0, - 0x1E5FB, - 0x1E5FF, - 0x1E600, - 0x1E6C0, - 0x1E6DF, - 0x1E6E0, - 0x1E6F6, - 0x1E6FE, - 0x1E700, - 0x1E7E0, - 0x1E7E7, - 0x1E7E8, - 0x1E7EC, - 0x1E7ED, - 0x1E7EF, - 0x1E7F0, - 0x1E7FF, - 0x1E800, - 0x1E8C5, - 0x1E8C7, - 0x1E8D7, - 0x1E900, - 0x1E901, - 0x1E902, - 0x1E903, - 0x1E904, - 0x1E905, - 0x1E906, - 0x1E907, - 0x1E908, - 0x1E909, - 0x1E90A, - 0x1E90B, - 0x1E90C, - 0x1E90D, - 0x1E90E, - 0x1E90F, - 0x1E910, - 0x1E911, - 0x1E912, - 0x1E913, - 0x1E914, - 0x1E915, - 0x1E916, - 0x1E917, - 0x1E918, - 0x1E919, - 0x1E91A, - 0x1E91B, - 0x1E91C, - 0x1E91D, - 0x1E91E, - 0x1E91F, - 0x1E920, - 0x1E921, - 0x1E922, - 0x1E94C, - 0x1E950, - 0x1E95A, - 0x1E95E, - 0x1E960, - 0x1EC71, - 0x1ECB5, - 0x1ED01, - 0x1ED3E, - 0x1EE00, - 0x1EE01, - 0x1EE02, - 0x1EE03, - 0x1EE04, - 0x1EE05, - 0x1EE06, - 0x1EE07, - 0x1EE08, - 0x1EE09, - 0x1EE0A, - 0x1EE0B, - 0x1EE0C, - 0x1EE0D, - 0x1EE0E, - 0x1EE0F, - 0x1EE10, - 0x1EE11, - 0x1EE12, - 0x1EE13, - 0x1EE14, - 0x1EE15, - 0x1EE16, - 0x1EE17, - 0x1EE18, - 0x1EE19, - 0x1EE1A, - 0x1EE1B, - 0x1EE1C, - 0x1EE1D, - 0x1EE1E, - 0x1EE1F, - 0x1EE20, - 0x1EE21, - 0x1EE22, - 0x1EE23, - 0x1EE24, - 0x1EE25, - 0x1EE27, - 0x1EE28, - 0x1EE29, - 0x1EE2A, - 0x1EE2B, - 0x1EE2C, - 0x1EE2D, - 0x1EE2E, - 0x1EE2F, - 0x1EE30, - 0x1EE31, - 0x1EE32, - 0x1EE33, - 0x1EE34, - 0x1EE35, - 0x1EE36, - 0x1EE37, - 0x1EE38, - 0x1EE39, - 0x1EE3A, - 0x1EE3B, - 0x1EE3C, - 0x1EE42, - 0x1EE43, - 0x1EE47, - 0x1EE48, - 0x1EE49, - 0x1EE4A, - 0x1EE4B, - 0x1EE4C, - 0x1EE4D, - 0x1EE4E, - 0x1EE4F, - 0x1EE50, - 0x1EE51, - 0x1EE52, - 0x1EE53, - 0x1EE54, - 0x1EE55, - 0x1EE57, - 0x1EE58, - 0x1EE59, - 0x1EE5A, - 0x1EE5B, - 0x1EE5C, - 0x1EE5D, - 0x1EE5E, - 0x1EE5F, - 0x1EE60, - 0x1EE61, - 0x1EE62, - 0x1EE63, - 0x1EE64, - 0x1EE65, - 0x1EE67, - 0x1EE68, - 0x1EE69, - 0x1EE6A, - 0x1EE6B, - 0x1EE6C, - 0x1EE6D, - 0x1EE6E, - 0x1EE6F, - 0x1EE70, - 0x1EE71, - 0x1EE72, - 0x1EE73, - 0x1EE74, - 0x1EE75, - 0x1EE76, - 0x1EE77, - 0x1EE78, - 0x1EE79, - 0x1EE7A, - 0x1EE7B, - 0x1EE7C, - 0x1EE7D, - 0x1EE7E, - 0x1EE7F, - 0x1EE80, - 0x1EE81, - 0x1EE82, - 0x1EE83, - 0x1EE84, - 0x1EE85, - 0x1EE86, - 0x1EE87, - 0x1EE88, - 0x1EE89, - 0x1EE8A, - 0x1EE8B, - 0x1EE8C, - 0x1EE8D, - 0x1EE8E, - 0x1EE8F, - 0x1EE90, - 0x1EE91, - 0x1EE92, - 0x1EE93, - 0x1EE94, - 0x1EE95, - 0x1EE96, - 0x1EE97, - 0x1EE98, - 0x1EE99, - 0x1EE9A, - 0x1EE9B, - 0x1EE9C, - 0x1EEA1, - 0x1EEA2, - 0x1EEA3, - 0x1EEA4, - 0x1EEA5, - 0x1EEA6, - 0x1EEA7, - 0x1EEA8, - 0x1EEA9, - 0x1EEAA, - 0x1EEAB, - 0x1EEAC, - 0x1EEAD, - 0x1EEAE, - 0x1EEAF, - 0x1EEB0, - 0x1EEB1, - 0x1EEB2, - 0x1EEB3, - 0x1EEB4, - 0x1EEB5, - 0x1EEB6, - 0x1EEB7, - 0x1EEB8, - 0x1EEB9, - 0x1EEBA, - 0x1EEBB, - 0x1EEBC, - 0x1EEF0, - 0x1EEF2, - 0x1F000, - 0x1F02C, - 0x1F030, - 0x1F094, - 0x1F0A0, - 0x1F0AF, - 0x1F0B1, - 0x1F0C0, - 0x1F0C1, - 0x1F0D0, - 0x1F0D1, - 0x1F0F6, - 0x1F101, - 0x1F102, - 0x1F103, - 0x1F104, - 0x1F105, - 0x1F106, - 0x1F107, - 0x1F108, - 0x1F109, - 0x1F10A, - 0x1F10B, - 0x1F110, - 0x1F111, - 0x1F112, - 0x1F113, - 0x1F114, - 0x1F115, - 0x1F116, - 0x1F117, - 0x1F118, - 0x1F119, - 0x1F11A, - 0x1F11B, - 0x1F11C, - 0x1F11D, - 0x1F11E, - 0x1F11F, - 0x1F120, - 0x1F121, - 0x1F122, - 0x1F123, - 0x1F124, - 0x1F125, - 0x1F126, - 0x1F127, - 0x1F128, - 0x1F129, - 0x1F12A, - 0x1F12B, - 0x1F12C, - 0x1F12D, - 0x1F12E, - 0x1F12F, - 0x1F130, - 0x1F131, - 0x1F132, - 0x1F133, - 0x1F134, - 0x1F135, - 0x1F136, - 0x1F137, - 0x1F138, - 0x1F139, - 0x1F13A, - 0x1F13B, - 0x1F13C, - 0x1F13D, - 0x1F13E, - 0x1F13F, - 0x1F140, - 0x1F141, - 0x1F142, - 0x1F143, - 0x1F144, - 0x1F145, - 0x1F146, - 0x1F147, - 0x1F148, - 0x1F149, - 0x1F14A, - 0x1F14B, - 0x1F14C, - 0x1F14D, - 0x1F14E, - 0x1F14F, - 0x1F150, - 0x1F16A, - 0x1F16B, - 0x1F16C, - 0x1F16D, - 0x1F190, - 0x1F191, - 0x1F1AE, - 0x1F1E6, - 0x1F200, - 0x1F201, - 0x1F202, - 0x1F203, - 0x1F210, - 0x1F211, - 0x1F212, - 0x1F213, - 0x1F214, - 0x1F215, - 0x1F216, - 0x1F217, - 0x1F218, - 0x1F219, - 0x1F21A, - 0x1F21B, - 0x1F21C, - 0x1F21D, - 0x1F21E, - 0x1F21F, - 0x1F220, - 0x1F221, - 0x1F222, - 0x1F223, - 0x1F224, - 0x1F225, - 0x1F226, - 0x1F227, - 0x1F228, - 0x1F229, - 0x1F22A, - 0x1F22B, - 0x1F22C, - 0x1F22D, - 0x1F22E, - 0x1F22F, - 0x1F230, - 0x1F231, - 0x1F232, - 0x1F233, - 0x1F234, - 0x1F235, - 0x1F236, - 0x1F237, - 0x1F238, - 0x1F239, - 0x1F23A, - 0x1F23B, - 0x1F23C, - 0x1F240, - 0x1F241, - 0x1F242, - 0x1F243, - 0x1F244, - 0x1F245, - 0x1F246, - 0x1F247, - 0x1F248, - 0x1F249, - 0x1F250, - 0x1F251, - 0x1F252, - 0x1F260, - 0x1F266, - 0x1F300, - 0x1F6D9, - 0x1F6DC, - 0x1F6ED, - 0x1F6F0, - 0x1F6FD, - 0x1F700, - 0x1F7DA, - 0x1F7E0, - 0x1F7EC, - 0x1F7F0, - 0x1F7F1, - 0x1F800, - 0x1F80C, - 0x1F810, - 0x1F848, - 0x1F850, - 0x1F85A, - 0x1F860, - 0x1F888, - 0x1F890, - 0x1F8AE, - 0x1F8B0, - 0x1F8BC, - 0x1F8C0, - 0x1F8C2, - 0x1F8D0, - 0x1F8D9, - 0x1F900, - 0x1FA58, - 0x1FA60, - 0x1FA6E, - 0x1FA70, - 0x1FA7D, - 0x1FA80, - 0x1FA8B, - 0x1FA8E, - 0x1FAC7, - 0x1FAC8, - 0x1FAC9, - 0x1FACD, - 0x1FADD, - 0x1FADF, - 0x1FAEB, - 0x1FAEF, - 0x1FAF9, - 0x1FB00, - 0x1FB93, - 0x1FB94, - 0x1FBF0, - 0x1FBF1, - 0x1FBF2, - 0x1FBF3, - 0x1FBF4, - 0x1FBF5, - 0x1FBF6, - 0x1FBF7, - 0x1FBF8, - 0x1FBF9, - 0x1FBFA, - 0x1FBFB, - 0x20000, - 0x2A6E0, - 0x2A700, - 0x2B81E, - 0x2B820, - 0x2CEAE, - 0x2CEB0, - 0x2EBE1, - 0x2EBF0, - 0x2EE5E, - 0x2F800, - 0x2F801, - 0x2F802, - 0x2F803, - 0x2F804, - 0x2F805, - 0x2F806, - 0x2F807, - 0x2F808, - 0x2F809, - 0x2F80A, - 0x2F80B, - 0x2F80C, - 0x2F80D, - 0x2F80E, - 0x2F80F, - 0x2F810, - 0x2F811, - 0x2F812, - 0x2F813, - 0x2F814, - 0x2F815, - 0x2F816, - 0x2F817, - 0x2F818, - 0x2F819, - 0x2F81A, - 0x2F81B, - 0x2F81C, - 0x2F81D, - 0x2F81E, - 0x2F81F, - 0x2F820, - 0x2F821, - 0x2F822, - 0x2F823, - 0x2F824, - 0x2F825, - 0x2F826, - 0x2F827, - 0x2F828, - 0x2F829, - 0x2F82A, - 0x2F82B, - 0x2F82C, - 0x2F82D, - 0x2F82E, - 0x2F82F, - 0x2F830, - 0x2F831, - 0x2F834, - 0x2F835, - 0x2F836, - 0x2F837, - 0x2F838, - 0x2F839, - 0x2F83A, - 0x2F83B, - 0x2F83C, - 0x2F83D, - 0x2F83E, - 0x2F83F, - 0x2F840, - 0x2F841, - 0x2F842, - 0x2F843, - 0x2F844, - 0x2F845, - 0x2F847, - 0x2F848, - 0x2F849, - 0x2F84A, - 0x2F84B, - 0x2F84C, - 0x2F84D, - 0x2F84E, - 0x2F84F, - 0x2F850, - 0x2F851, - 0x2F852, - 0x2F853, - 0x2F854, - 0x2F855, - 0x2F856, - 0x2F857, - 0x2F858, - 0x2F859, - 0x2F85A, - 0x2F85B, - 0x2F85C, - 0x2F85D, - 0x2F85E, - 0x2F85F, - 0x2F860, - 0x2F861, - 0x2F862, - 0x2F863, - 0x2F864, - 0x2F865, - 0x2F866, - 0x2F867, - 0x2F868, - 0x2F869, - 0x2F86A, - 0x2F86C, - 0x2F86D, - 0x2F86E, - 0x2F86F, - 0x2F870, - 0x2F871, - 0x2F872, - 0x2F873, - 0x2F874, - 0x2F875, - 0x2F876, - 0x2F877, - 0x2F878, - 0x2F879, - 0x2F87A, - 0x2F87B, - 0x2F87C, - 0x2F87D, - 0x2F87E, - 0x2F87F, - 0x2F880, - 0x2F881, - 0x2F882, - 0x2F883, - 0x2F884, - 0x2F885, - 0x2F886, - 0x2F887, - 0x2F888, - 0x2F889, - 0x2F88A, - 0x2F88B, - 0x2F88C, - 0x2F88D, - 0x2F88E, - 0x2F88F, - 0x2F890, - 0x2F891, - 0x2F893, - 0x2F894, - 0x2F896, - 0x2F897, - 0x2F898, - 0x2F899, - 0x2F89A, - 0x2F89B, - 0x2F89C, - 0x2F89D, - 0x2F89E, - 0x2F89F, - 0x2F8A0, - 0x2F8A1, - 0x2F8A2, - 0x2F8A3, - 0x2F8A4, - 0x2F8A5, - 0x2F8A6, - 0x2F8A7, - 0x2F8A8, - 0x2F8A9, - 0x2F8AA, - 0x2F8AB, - 0x2F8AC, - 0x2F8AD, - 0x2F8AE, - 0x2F8AF, - 0x2F8B0, - 0x2F8B1, - 0x2F8B2, - 0x2F8B3, - 0x2F8B4, - 0x2F8B5, - 0x2F8B6, - 0x2F8B7, - 0x2F8B8, - 0x2F8B9, - 0x2F8BA, - 0x2F8BB, - 0x2F8BC, - 0x2F8BD, - 0x2F8BE, - 0x2F8BF, - 0x2F8C0, - 0x2F8C1, - 0x2F8C2, - 0x2F8C3, - 0x2F8C4, - 0x2F8C5, - 0x2F8C6, - 0x2F8C7, - 0x2F8C8, - 0x2F8C9, - 0x2F8CA, - 0x2F8CB, - 0x2F8CC, - 0x2F8CD, - 0x2F8CE, - 0x2F8CF, - 0x2F8D0, - 0x2F8D1, - 0x2F8D2, - 0x2F8D3, - 0x2F8D4, - 0x2F8D5, - 0x2F8D6, - 0x2F8D7, - 0x2F8D8, - 0x2F8D9, - 0x2F8DA, - 0x2F8DB, - 0x2F8DC, - 0x2F8DD, - 0x2F8DE, - 0x2F8DF, - 0x2F8E0, - 0x2F8E1, - 0x2F8E2, - 0x2F8E3, - 0x2F8E4, - 0x2F8E5, - 0x2F8E6, - 0x2F8E7, - 0x2F8E8, - 0x2F8E9, - 0x2F8EA, - 0x2F8EB, - 0x2F8EC, - 0x2F8ED, - 0x2F8EE, - 0x2F8EF, - 0x2F8F0, - 0x2F8F1, - 0x2F8F2, - 0x2F8F3, - 0x2F8F4, - 0x2F8F5, - 0x2F8F6, - 0x2F8F7, - 0x2F8F8, - 0x2F8F9, - 0x2F8FA, - 0x2F8FB, - 0x2F8FC, - 0x2F8FD, - 0x2F8FE, - 0x2F8FF, - 0x2F900, - 0x2F901, - 0x2F902, - 0x2F903, - 0x2F904, - 0x2F905, - 0x2F906, - 0x2F907, - 0x2F908, - 0x2F909, - 0x2F90A, - 0x2F90B, - 0x2F90C, - 0x2F90D, - 0x2F90E, - 0x2F90F, - 0x2F910, - 0x2F911, - 0x2F912, - 0x2F913, - 0x2F914, - 0x2F915, - 0x2F916, - 0x2F917, - 0x2F918, - 0x2F919, - 0x2F91A, - 0x2F91B, - 0x2F91C, - 0x2F91D, - 0x2F91E, - 0x2F91F, - 0x2F920, - 0x2F921, - 0x2F922, - 0x2F923, - 0x2F924, - 0x2F925, - 0x2F926, - 0x2F927, - 0x2F928, - 0x2F929, - 0x2F92A, - 0x2F92B, - 0x2F92C, - 0x2F92E, - 0x2F92F, - 0x2F930, - 0x2F931, - 0x2F932, - 0x2F933, - 0x2F934, - 0x2F935, - 0x2F936, - 0x2F937, - 0x2F938, - 0x2F939, - 0x2F93A, - 0x2F93B, - 0x2F93C, - 0x2F93D, - 0x2F93E, - 0x2F93F, - 0x2F940, - 0x2F941, - 0x2F942, - 0x2F943, - 0x2F944, - 0x2F945, - 0x2F946, - 0x2F948, - 0x2F949, - 0x2F94A, - 0x2F94B, - 0x2F94C, - 0x2F94D, - 0x2F94E, - 0x2F94F, - 0x2F950, - 0x2F951, - 0x2F952, - 0x2F953, - 0x2F954, - 0x2F955, - 0x2F956, - 0x2F957, - 0x2F958, - 0x2F959, - 0x2F95A, - 0x2F95B, - 0x2F95C, - 0x2F95D, - 0x2F95F, - 0x2F960, - 0x2F961, - 0x2F962, - 0x2F963, - 0x2F964, - 0x2F965, - 0x2F966, - 0x2F967, - 0x2F968, - 0x2F969, - 0x2F96A, - 0x2F96B, - 0x2F96C, - 0x2F96D, - 0x2F96E, - 0x2F96F, - 0x2F970, - 0x2F971, - 0x2F972, - 0x2F973, - 0x2F974, - 0x2F975, - 0x2F976, - 0x2F977, - 0x2F978, - 0x2F979, - 0x2F97A, - 0x2F97B, - 0x2F97C, - 0x2F97D, - 0x2F97E, - 0x2F97F, - 0x2F980, - 0x2F981, - 0x2F982, - 0x2F983, - 0x2F984, - 0x2F985, - 0x2F986, - 0x2F987, - 0x2F988, - 0x2F989, - 0x2F98A, - 0x2F98B, - 0x2F98C, - 0x2F98D, - 0x2F98E, - 0x2F98F, - 0x2F990, - 0x2F991, - 0x2F992, - 0x2F993, - 0x2F994, - 0x2F995, - 0x2F996, - 0x2F997, - 0x2F998, - 0x2F999, - 0x2F99A, - 0x2F99B, - 0x2F99C, - 0x2F99D, - 0x2F99E, - 0x2F99F, - 0x2F9A0, - 0x2F9A1, - 0x2F9A2, - 0x2F9A3, - 0x2F9A4, - 0x2F9A5, - 0x2F9A6, - 0x2F9A7, - 0x2F9A8, - 0x2F9A9, - 0x2F9AA, - 0x2F9AB, - 0x2F9AC, - 0x2F9AD, - 0x2F9AE, - 0x2F9AF, - 0x2F9B0, - 0x2F9B1, - 0x2F9B2, - 0x2F9B3, - 0x2F9B4, - 0x2F9B5, - 0x2F9B6, - 0x2F9B7, - 0x2F9B8, - 0x2F9B9, - 0x2F9BA, - 0x2F9BB, - 0x2F9BC, - 0x2F9BD, - 0x2F9BE, - 0x2F9BF, - 0x2F9C0, - 0x2F9C1, - 0x2F9C2, - 0x2F9C3, - 0x2F9C4, - 0x2F9C5, - 0x2F9C6, - 0x2F9C7, - 0x2F9C8, - 0x2F9C9, - 0x2F9CA, - 0x2F9CB, - 0x2F9CC, - 0x2F9CD, - 0x2F9CE, - 0x2F9CF, - 0x2F9D0, - 0x2F9D1, - 0x2F9D2, - 0x2F9D3, - 0x2F9D4, - 0x2F9D5, - 0x2F9D6, - 0x2F9D7, - 0x2F9D8, - 0x2F9D9, - 0x2F9DA, - 0x2F9DB, - 0x2F9DC, - 0x2F9DD, - 0x2F9DE, - 0x2F9DF, - 0x2F9E0, - 0x2F9E1, - 0x2F9E2, - 0x2F9E3, - 0x2F9E4, - 0x2F9E5, - 0x2F9E6, - 0x2F9E7, - 0x2F9E8, - 0x2F9E9, - 0x2F9EA, - 0x2F9EB, - 0x2F9EC, - 0x2F9ED, - 0x2F9EE, - 0x2F9EF, - 0x2F9F0, - 0x2F9F1, - 0x2F9F2, - 0x2F9F3, - 0x2F9F4, - 0x2F9F5, - 0x2F9F6, - 0x2F9F7, - 0x2F9F8, - 0x2F9F9, - 0x2F9FA, - 0x2F9FB, - 0x2F9FC, - 0x2F9FD, - 0x2F9FE, - 0x2FA00, - 0x2FA01, - 0x2FA02, - 0x2FA03, - 0x2FA04, - 0x2FA05, - 0x2FA06, - 0x2FA07, - 0x2FA08, - 0x2FA09, - 0x2FA0A, - 0x2FA0B, - 0x2FA0C, - 0x2FA0D, - 0x2FA0E, - 0x2FA0F, - 0x2FA10, - 0x2FA11, - 0x2FA12, - 0x2FA13, - 0x2FA14, - 0x2FA15, - 0x2FA16, - 0x2FA17, - 0x2FA18, - 0x2FA19, - 0x2FA1A, - 0x2FA1B, - 0x2FA1C, - 0x2FA1D, - 0x2FA1E, - 0x30000, - 0x3134B, - 0x31350, - 0x3347A, - 0xE0100, - 0xE01F0, - ), -) - -uts46_statuses: bytes = ( - b"VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV" - b"VMMMMMMMMMMMMMMMMMMMMMMMMMMVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV" - b"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXMVVVVVVVMVMVVIVMVVMMMMVVMMMVMMMV" - b"MMMMMMMMMMMMMMMMMMMMMMMVMMMMMMMDVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMVMVMVMVMVMMV" - b"MVMVMVMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMVMVMVMVMM" - b"VMVMMVMMMVMMMMVMMVMMMVMMVMMVMVMVMMVMVMVMMVMMMVMVMMVMVMMMMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMMVMMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVM" - b"VMVMVMVMVMVMVMVMVMVMVMVMVMVMMVMMVMVMMMMVMVMVMVMVMMMMMMMMMVMMMMMM" - b"VMMMMMVMMVMMMVIVMVMVMVMVXMVMMXMMMMMMMXMXMMVMMMMMMMMMMMMMMMMMXMMM" - b"MMMMMMVDVMMMMMMMMVMVMVMVMVMVMVMVMVMVMVMVMVMMMVMMVMVMMVMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVM" - b"VMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVXMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMXVMVXVXVXVXVXVXVMMMMVXVXVXVXVXVXVXVXVXVX" - b"VXVXVMMMMMMMMVXVXVXVXVXVXVXVXVXVXVXMMXMVXVXVXVXVXVXVXVMXVMXVXVXV" - b"XVXVXVXMMMVXMXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXMMXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXV" - b"XVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXV" - b"XVMVXVXVXVXVXVXVXVMVXVXVXVXVXMMVXVMVMVXVMVMVMVMVMVXVMVMMMMMVMVMV" - b"XVMVMVMVMVMVXVXVXVMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMXMXVMV" - b"IVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXMMMMMMXVXVXVXVXVXVXVXVXVX" - b"VIVXVXVXVIVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVMMM" - b"MMMMMMVXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMVXVXVMMMV" - b"MMMMMMMMMMMVMMMMMMMMMMMMMMMMMMVMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMVMVM" - b"VMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVM" - b"VMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMMMMMMMVXMMMMMMXVMMMMMMMMVMMMMMM" - b"MMVXMMMMMMXVXMXMXMXMVMMMMMMMMVMVMVMVMVMVMVMXMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMXVMMMMMMMMMMMMMMXVMMMMMMMMMVMXVM" - b"MMMXMMMVMVMMMMMMMMXMMMXVMMMMMMMMXMIDXVMVMVXVXMVMMVMMVMVMVMMMVMVM" - b"IXIMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMMMMMMMMMMXVMVXVXMMMMVMMMVM" - b"MMMMMVMMVMMMVMMMVMVMVMVMMMMVMMMMMMMMMMVMMMMMVMMMMVMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMVXVMMVMMVMMVXVXMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMMMVMVXVMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMVMMMVMVMVMVMMMMVMVMVMM" - b"MMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVXVXVXVXVXMVXVXVXVXVX" - b"VXVXVXVXVXVXVXVMVMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMVMVMVMMMVXVXVMMVMVMXV" - b"XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMIMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXVMMMMMMMMMMMMMMVXVMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMXMMMMMMMMMMMMM" - b"MMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVXMVMVMVMVMVMVMVM" - b"VMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMVXV" - b"MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV" - b"MVMVMVMVMVMVMVMVMVMMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMMMMMVM" - b"MMMMVMVMVMVMVMVMVMVMMMMVMVMMVMVMVMVMVMVMVMVMXMMMMMVMMVXVXVXVXVXV" - b"XVXVXVXVXVXVXVXVXVXVXVXVXVXVXVMMMMVMVXMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVXVXVX" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMVMVMVMMMMMMMMMMVMVMVMMVMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMXMMMMMMXMMMMMXMVMMMMMMMMMMMMMMMMMMMMMMMMXMMMMM" - b"XMXMMXMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMVMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXMMMMMMMMMMMMMVIMMXMMM" - b"MMMXVXMMMMMMMMMMMMMMMMMMMVMMMMMMXMMMMMMMMMMMMMMMMMMMXMMMMXMMMVMX" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXIXMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMIMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMMMXMMMMM" - b"MXMMMMMMXMMMXMMMMMMMXMMMMMMMXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXV" - b"XVXVXVXVXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMXVXVXVXVMMMMMMMMMMMXMMMMMMMMMMMMMMMXMMM" - b"MMMMXMMXVXVXVXVXVXVXVXVXVMMMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMXMMMMMMMMMXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMXVXVXVXVMMMMMMMMMMMMMMMMMMMMMMXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMVXMMMMMMMMMMMMMMMMMMMMMMMMMXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVIXVMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVX" - b"VXVXVXVXVXVXVMMMMMMMVIVMMMMMMVXVXVXVXVXVXMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMXMMXMXMMXMMMMXMMMMMMMMMMMMXMXMMMMMMMXMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMXMMMMMMMMXMMMMM" - b"MMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMXMMMMMXMXMMMMMMMXMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVXVXVXVXVXVXVXVXMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXVXVXVXVXVXVXVXVXVX" - b"VXVXVXVXVXVXVXVXVXVXVXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVXVXVXVX" - b"VXMMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMXMMXMXMXMMMMMMMMMMXMMMMXMXMXMX" - b"MXMXMXMMMXMMXMXMXMXMXMXMXMMXMXMMMMXMMMMMMMXMMMMXMMMMXMXMMMMMMMMM" - b"MXMMMMMMMMMMMMMMMMMXMMMXMMMMMXMMMMMMMMMMMMMMMMMXVXVXVXVXVXVXVXMM" - b"MMMMMMMMVMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMVMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMVMMMVMVXVMMMXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMXMMMMMMMMMXMMXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVX" - b"VXVMMMMMMMMMMVXVXVXVXVXVXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" - b"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXVXVXIX" -) - -uts46_replacements: tuple[Optional[str], ...] = ( - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - " ", - None, - None, - None, - None, - None, - None, - None, - " ̈", - None, - "a", - None, - None, - None, - None, - " ̄", - None, - None, - "2", - "3", - " ́", - "μ", - None, - None, - " ̧", - "1", - "o", - None, - "1⁄4", - "1⁄2", - "3⁄4", - None, - "à", - "á", - "â", - "ã", - "ä", - "å", - "æ", - "ç", - "è", - "é", - "ê", - "ë", - "ì", - "í", - "î", - "ï", - "ð", - "ñ", - "ò", - "ó", - "ô", - "õ", - "ö", - None, - "ø", - "ù", - "ú", - "û", - "ü", - "ý", - "þ", - "ss", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ā", - None, - "ă", - None, - "ą", - None, - "ć", - None, - "ĉ", - None, - "ċ", - None, - "č", - None, - "ď", - None, - "đ", - None, - "ē", - None, - "ĕ", - None, - "ė", - None, - "ę", - None, - "ě", - None, - "ĝ", - None, - "ğ", - None, - "ġ", - None, - "ģ", - None, - "ĥ", - None, - "ħ", - None, - "ĩ", - None, - "ī", - None, - "ĭ", - None, - "į", - None, - "i̇", - None, - "ij", - "ĵ", - None, - "ķ", - None, - "ĺ", - None, - "ļ", - None, - "ľ", - None, - "l·", - "ł", - None, - "ń", - None, - "ņ", - None, - "ň", - None, - "ʼn", - "ŋ", - None, - "ō", - None, - "ŏ", - None, - "ő", - None, - "œ", - None, - "ŕ", - None, - "ŗ", - None, - "ř", - None, - "ś", - None, - "ŝ", - None, - "ş", - None, - "š", - None, - "ţ", - None, - "ť", - None, - "ŧ", - None, - "ũ", - None, - "ū", - None, - "ŭ", - None, - "ů", - None, - "ű", - None, - "ų", - None, - "ŵ", - None, - "ŷ", - None, - "ÿ", - "ź", - None, - "ż", - None, - "ž", - None, - "s", - None, - "ɓ", - "ƃ", - None, - "ƅ", - None, - "ɔ", - "ƈ", - None, - "ɖ", - "ɗ", - "ƌ", - None, - "ǝ", - "ə", - "ɛ", - "ƒ", - None, - "ɠ", - "ɣ", - None, - "ɩ", - "ɨ", - "ƙ", - None, - "ɯ", - "ɲ", - None, - "ɵ", - "ơ", - None, - "ƣ", - None, - "ƥ", - None, - "ʀ", - "ƨ", - None, - "ʃ", - None, - "ƭ", - None, - "ʈ", - "ư", - None, - "ʊ", - "ʋ", - "ƴ", - None, - "ƶ", - None, - "ʒ", - "ƹ", - None, - "ƽ", - None, - "dž", - "lj", - "nj", - "ǎ", - None, - "ǐ", - None, - "ǒ", - None, - "ǔ", - None, - "ǖ", - None, - "ǘ", - None, - "ǚ", - None, - "ǜ", - None, - "ǟ", - None, - "ǡ", - None, - "ǣ", - None, - "ǥ", - None, - "ǧ", - None, - "ǩ", - None, - "ǫ", - None, - "ǭ", - None, - "ǯ", - None, - "dz", - "ǵ", - None, - "ƕ", - "ƿ", - "ǹ", - None, - "ǻ", - None, - "ǽ", - None, - "ǿ", - None, - "ȁ", - None, - "ȃ", - None, - "ȅ", - None, - "ȇ", - None, - "ȉ", - None, - "ȋ", - None, - "ȍ", - None, - "ȏ", - None, - "ȑ", - None, - "ȓ", - None, - "ȕ", - None, - "ȗ", - None, - "ș", - None, - "ț", - None, - "ȝ", - None, - "ȟ", - None, - "ƞ", - None, - "ȣ", - None, - "ȥ", - None, - "ȧ", - None, - "ȩ", - None, - "ȫ", - None, - "ȭ", - None, - "ȯ", - None, - "ȱ", - None, - "ȳ", - None, - "ⱥ", - "ȼ", - None, - "ƚ", - "ⱦ", - None, - "ɂ", - None, - "ƀ", - "ʉ", - "ʌ", - "ɇ", - None, - "ɉ", - None, - "ɋ", - None, - "ɍ", - None, - "ɏ", - None, - "h", - "ɦ", - "j", - "r", - "ɹ", - "ɻ", - "ʁ", - "w", - "y", - None, - " ̆", - " ̇", - " ̊", - " ̨", - " ̃", - " ̋", - None, - "ɣ", - "l", - "s", - "x", - "ʕ", - None, - "̀", - "́", - None, - "̓", - "̈́", - "ι", - None, - None, - None, - "ͱ", - None, - "ͳ", - None, - "ʹ", - None, - "ͷ", - None, - None, - " ι", - None, - ";", - "ϳ", - None, - " ́", - " ̈́", - "ά", - "·", - "έ", - "ή", - "ί", - None, - "ό", - None, - "ύ", - "ώ", - None, - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - None, - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "ϊ", - "ϋ", - None, - "σ", - None, - "ϗ", - "β", - "θ", - "υ", - "ύ", - "ϋ", - "φ", - "π", - None, - "ϙ", - None, - "ϛ", - None, - "ϝ", - None, - "ϟ", - None, - "ϡ", - None, - "ϣ", - None, - "ϥ", - None, - "ϧ", - None, - "ϩ", - None, - "ϫ", - None, - "ϭ", - None, - "ϯ", - None, - "κ", - "ρ", - "σ", - None, - "θ", - "ε", - None, - "ϸ", - None, - "σ", - "ϻ", - None, - "ͻ", - "ͼ", - "ͽ", - "ѐ", - "ё", - "ђ", - "ѓ", - "є", - "ѕ", - "і", - "ї", - "ј", - "љ", - "њ", - "ћ", - "ќ", - "ѝ", - "ў", - "џ", - "а", - "б", - "в", - "г", - "д", - "е", - "ж", - "з", - "и", - "й", - "к", - "л", - "м", - "н", - "о", - "п", - "р", - "с", - "т", - "у", - "ф", - "х", - "ц", - "ч", - "ш", - "щ", - "ъ", - "ы", - "ь", - "э", - "ю", - "я", - None, - "ѡ", - None, - "ѣ", - None, - "ѥ", - None, - "ѧ", - None, - "ѩ", - None, - "ѫ", - None, - "ѭ", - None, - "ѯ", - None, - "ѱ", - None, - "ѳ", - None, - "ѵ", - None, - "ѷ", - None, - "ѹ", - None, - "ѻ", - None, - "ѽ", - None, - "ѿ", - None, - "ҁ", - None, - "ҋ", - None, - "ҍ", - None, - "ҏ", - None, - "ґ", - None, - "ғ", - None, - "ҕ", - None, - "җ", - None, - "ҙ", - None, - "қ", - None, - "ҝ", - None, - "ҟ", - None, - "ҡ", - None, - "ң", - None, - "ҥ", - None, - "ҧ", - None, - "ҩ", - None, - "ҫ", - None, - "ҭ", - None, - "ү", - None, - "ұ", - None, - "ҳ", - None, - "ҵ", - None, - "ҷ", - None, - "ҹ", - None, - "һ", - None, - "ҽ", - None, - "ҿ", - None, - "ӏ", - "ӂ", - None, - "ӄ", - None, - "ӆ", - None, - "ӈ", - None, - "ӊ", - None, - "ӌ", - None, - "ӎ", - None, - "ӑ", - None, - "ӓ", - None, - "ӕ", - None, - "ӗ", - None, - "ә", - None, - "ӛ", - None, - "ӝ", - None, - "ӟ", - None, - "ӡ", - None, - "ӣ", - None, - "ӥ", - None, - "ӧ", - None, - "ө", - None, - "ӫ", - None, - "ӭ", - None, - "ӯ", - None, - "ӱ", - None, - "ӳ", - None, - "ӵ", - None, - "ӷ", - None, - "ӹ", - None, - "ӻ", - None, - "ӽ", - None, - "ӿ", - None, - "ԁ", - None, - "ԃ", - None, - "ԅ", - None, - "ԇ", - None, - "ԉ", - None, - "ԋ", - None, - "ԍ", - None, - "ԏ", - None, - "ԑ", - None, - "ԓ", - None, - "ԕ", - None, - "ԗ", - None, - "ԙ", - None, - "ԛ", - None, - "ԝ", - None, - "ԟ", - None, - "ԡ", - None, - "ԣ", - None, - "ԥ", - None, - "ԧ", - None, - "ԩ", - None, - "ԫ", - None, - "ԭ", - None, - "ԯ", - None, - None, - "ա", - "բ", - "գ", - "դ", - "ե", - "զ", - "է", - "ը", - "թ", - "ժ", - "ի", - "լ", - "խ", - "ծ", - "կ", - "հ", - "ձ", - "ղ", - "ճ", - "մ", - "յ", - "ն", - "շ", - "ո", - "չ", - "պ", - "ջ", - "ռ", - "ս", - "վ", - "տ", - "ր", - "ց", - "ւ", - "փ", - "ք", - "օ", - "ֆ", - None, - None, - "եւ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "اٴ", - "وٴ", - "ۇٴ", - "يٴ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "क़", - "ख़", - "ग़", - "ज़", - "ड़", - "ढ़", - "फ़", - "य़", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ড়", - "ঢ়", - None, - "য়", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ਲ਼", - None, - None, - "ਸ਼", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ਖ਼", - "ਗ਼", - "ਜ਼", - None, - None, - "ਫ਼", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ଡ଼", - "ଢ଼", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ํา", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ໍາ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ຫນ", - "ຫມ", - None, - None, - None, - "་", - None, - "གྷ", - None, - None, - None, - "ཌྷ", - None, - "དྷ", - None, - "བྷ", - None, - "ཛྷ", - None, - "ཀྵ", - None, - None, - None, - "ཱི", - None, - "ཱུ", - "ྲྀ", - "ྲཱྀ", - "ླྀ", - "ླཱྀ", - None, - "ཱྀ", - None, - "ྒྷ", - None, - None, - None, - "ྜྷ", - None, - "ྡྷ", - None, - "ྦྷ", - None, - "ྫྷ", - None, - "ྐྵ", - None, - None, - None, - None, - None, - None, - None, - "ⴀ", - "ⴁ", - "ⴂ", - "ⴃ", - "ⴄ", - "ⴅ", - "ⴆ", - "ⴇ", - "ⴈ", - "ⴉ", - "ⴊ", - "ⴋ", - "ⴌ", - "ⴍ", - "ⴎ", - "ⴏ", - "ⴐ", - "ⴑ", - "ⴒ", - "ⴓ", - "ⴔ", - "ⴕ", - "ⴖ", - "ⴗ", - "ⴘ", - "ⴙ", - "ⴚ", - "ⴛ", - "ⴜ", - "ⴝ", - "ⴞ", - "ⴟ", - "ⴠ", - "ⴡ", - "ⴢ", - "ⴣ", - "ⴤ", - "ⴥ", - None, - "ⴧ", - None, - "ⴭ", - None, - None, - "ნ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "Ᏸ", - "Ᏹ", - "Ᏺ", - "Ᏻ", - "Ᏼ", - "Ᏽ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "в", - "д", - "о", - "с", - "т", - "ъ", - "ѣ", - "ꙋ", - "\u1c8a", - None, - None, - "ა", - "ბ", - "გ", - "დ", - "ე", - "ვ", - "ზ", - "თ", - "ი", - "კ", - "ლ", - "მ", - "ნ", - "ო", - "პ", - "ჟ", - "რ", - "ს", - "ტ", - "უ", - "ფ", - "ქ", - "ღ", - "ყ", - "შ", - "ჩ", - "ც", - "ძ", - "წ", - "ჭ", - "ხ", - "ჯ", - "ჰ", - "ჱ", - "ჲ", - "ჳ", - "ჴ", - "ჵ", - "ჶ", - "ჷ", - "ჸ", - "ჹ", - "ჺ", - None, - "ჽ", - "ჾ", - "ჿ", - None, - None, - None, - None, - None, - "a", - "æ", - "b", - None, - "d", - "e", - "ǝ", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - None, - "o", - "ȣ", - "p", - "r", - "t", - "u", - "w", - "a", - "ɐ", - "ɑ", - "ᴂ", - "b", - "d", - "e", - "ə", - "ɛ", - "ɜ", - "g", - None, - "k", - "m", - "ŋ", - "o", - "ɔ", - "ᴖ", - "ᴗ", - "p", - "t", - "u", - "ᴝ", - "ɯ", - "v", - "ᴥ", - "β", - "γ", - "δ", - "φ", - "χ", - "i", - "r", - "u", - "v", - "β", - "γ", - "ρ", - "φ", - "χ", - None, - "н", - None, - "ɒ", - "c", - "ɕ", - "ð", - "ɜ", - "f", - "ɟ", - "ɡ", - "ɥ", - "ɨ", - "ɩ", - "ɪ", - "ᵻ", - "ʝ", - "ɭ", - "ᶅ", - "ʟ", - "ɱ", - "ɰ", - "ɲ", - "ɳ", - "ɴ", - "ɵ", - "ɸ", - "ʂ", - "ʃ", - "ƫ", - "ʉ", - "ʊ", - "ᴜ", - "ʋ", - "ʌ", - "z", - "ʐ", - "ʑ", - "ʒ", - "θ", - None, - "ḁ", - None, - "ḃ", - None, - "ḅ", - None, - "ḇ", - None, - "ḉ", - None, - "ḋ", - None, - "ḍ", - None, - "ḏ", - None, - "ḑ", - None, - "ḓ", - None, - "ḕ", - None, - "ḗ", - None, - "ḙ", - None, - "ḛ", - None, - "ḝ", - None, - "ḟ", - None, - "ḡ", - None, - "ḣ", - None, - "ḥ", - None, - "ḧ", - None, - "ḩ", - None, - "ḫ", - None, - "ḭ", - None, - "ḯ", - None, - "ḱ", - None, - "ḳ", - None, - "ḵ", - None, - "ḷ", - None, - "ḹ", - None, - "ḻ", - None, - "ḽ", - None, - "ḿ", - None, - "ṁ", - None, - "ṃ", - None, - "ṅ", - None, - "ṇ", - None, - "ṉ", - None, - "ṋ", - None, - "ṍ", - None, - "ṏ", - None, - "ṑ", - None, - "ṓ", - None, - "ṕ", - None, - "ṗ", - None, - "ṙ", - None, - "ṛ", - None, - "ṝ", - None, - "ṟ", - None, - "ṡ", - None, - "ṣ", - None, - "ṥ", - None, - "ṧ", - None, - "ṩ", - None, - "ṫ", - None, - "ṭ", - None, - "ṯ", - None, - "ṱ", - None, - "ṳ", - None, - "ṵ", - None, - "ṷ", - None, - "ṹ", - None, - "ṻ", - None, - "ṽ", - None, - "ṿ", - None, - "ẁ", - None, - "ẃ", - None, - "ẅ", - None, - "ẇ", - None, - "ẉ", - None, - "ẋ", - None, - "ẍ", - None, - "ẏ", - None, - "ẑ", - None, - "ẓ", - None, - "ẕ", - None, - "aʾ", - "ṡ", - None, - "ß", - None, - "ạ", - None, - "ả", - None, - "ấ", - None, - "ầ", - None, - "ẩ", - None, - "ẫ", - None, - "ậ", - None, - "ắ", - None, - "ằ", - None, - "ẳ", - None, - "ẵ", - None, - "ặ", - None, - "ẹ", - None, - "ẻ", - None, - "ẽ", - None, - "ế", - None, - "ề", - None, - "ể", - None, - "ễ", - None, - "ệ", - None, - "ỉ", - None, - "ị", - None, - "ọ", - None, - "ỏ", - None, - "ố", - None, - "ồ", - None, - "ổ", - None, - "ỗ", - None, - "ộ", - None, - "ớ", - None, - "ờ", - None, - "ở", - None, - "ỡ", - None, - "ợ", - None, - "ụ", - None, - "ủ", - None, - "ứ", - None, - "ừ", - None, - "ử", - None, - "ữ", - None, - "ự", - None, - "ỳ", - None, - "ỵ", - None, - "ỷ", - None, - "ỹ", - None, - "ỻ", - None, - "ỽ", - None, - "ỿ", - None, - "ἀ", - "ἁ", - "ἂ", - "ἃ", - "ἄ", - "ἅ", - "ἆ", - "ἇ", - None, - None, - "ἐ", - "ἑ", - "ἒ", - "ἓ", - "ἔ", - "ἕ", - None, - None, - "ἠ", - "ἡ", - "ἢ", - "ἣ", - "ἤ", - "ἥ", - "ἦ", - "ἧ", - None, - "ἰ", - "ἱ", - "ἲ", - "ἳ", - "ἴ", - "ἵ", - "ἶ", - "ἷ", - None, - None, - "ὀ", - "ὁ", - "ὂ", - "ὃ", - "ὄ", - "ὅ", - None, - None, - None, - "ὑ", - None, - "ὓ", - None, - "ὕ", - None, - "ὗ", - None, - "ὠ", - "ὡ", - "ὢ", - "ὣ", - "ὤ", - "ὥ", - "ὦ", - "ὧ", - None, - "ά", - None, - "έ", - None, - "ή", - None, - "ί", - None, - "ό", - None, - "ύ", - None, - "ώ", - None, - "ἀι", - "ἁι", - "ἂι", - "ἃι", - "ἄι", - "ἅι", - "ἆι", - "ἇι", - "ἀι", - "ἁι", - "ἂι", - "ἃι", - "ἄι", - "ἅι", - "ἆι", - "ἇι", - "ἠι", - "ἡι", - "ἢι", - "ἣι", - "ἤι", - "ἥι", - "ἦι", - "ἧι", - "ἠι", - "ἡι", - "ἢι", - "ἣι", - "ἤι", - "ἥι", - "ἦι", - "ἧι", - "ὠι", - "ὡι", - "ὢι", - "ὣι", - "ὤι", - "ὥι", - "ὦι", - "ὧι", - "ὠι", - "ὡι", - "ὢι", - "ὣι", - "ὤι", - "ὥι", - "ὦι", - "ὧι", - None, - "ὰι", - "αι", - "άι", - None, - None, - "ᾶι", - "ᾰ", - "ᾱ", - "ὰ", - "ά", - "αι", - " ̓", - "ι", - " ̓", - " ͂", - " ̈͂", - "ὴι", - "ηι", - "ήι", - None, - None, - "ῆι", - "ὲ", - "έ", - "ὴ", - "ή", - "ηι", - " ̓̀", - " ̓́", - " ̓͂", - None, - "ΐ", - None, - None, - "ῐ", - "ῑ", - "ὶ", - "ί", - None, - " ̔̀", - " ̔́", - " ̔͂", - None, - "ΰ", - None, - "ῠ", - "ῡ", - "ὺ", - "ύ", - "ῥ", - " ̈̀", - " ̈́", - "`", - None, - "ὼι", - "ωι", - "ώι", - None, - None, - "ῶι", - "ὸ", - "ό", - "ὼ", - "ώ", - "ωι", - " ́", - " ̔", - None, - " ", - None, - "", - None, - None, - "‐", - None, - " ̳", - None, - None, - None, - None, - " ", - None, - "′′", - "′′′", - None, - "‵‵", - "‵‵‵", - None, - "!!", - None, - " ̅", - None, - "??", - "?!", - "!?", - None, - "′′′′", - None, - " ", - None, - None, - None, - "0", - "i", - None, - "4", - "5", - "6", - "7", - "8", - "9", - "+", - "−", - "=", - "(", - ")", - "n", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "+", - "−", - "=", - "(", - ")", - None, - "a", - "e", - "o", - "x", - "ə", - "h", - "k", - "l", - "m", - "n", - "p", - "s", - "t", - None, - None, - "rs", - None, - None, - None, - None, - "a/c", - "a/s", - "c", - "°c", - None, - "c/o", - "c/u", - "ɛ", - None, - "°f", - "g", - "h", - "ħ", - "i", - "l", - None, - "n", - "no", - None, - "p", - "q", - "r", - None, - "sm", - "tel", - "tm", - None, - "z", - None, - "ω", - None, - "z", - None, - "k", - "å", - "b", - "c", - None, - "e", - "f", - "ⅎ", - "m", - "o", - "א", - "ב", - "ג", - "ד", - "i", - None, - "fax", - "π", - "γ", - "π", - "∑", - None, - "d", - "e", - "i", - "j", - None, - "1⁄7", - "1⁄9", - "1⁄10", - "1⁄3", - "2⁄3", - "1⁄5", - "2⁄5", - "3⁄5", - "4⁄5", - "1⁄6", - "5⁄6", - "1⁄8", - "3⁄8", - "5⁄8", - "7⁄8", - "1⁄", - "i", - "ii", - "iii", - "iv", - "v", - "vi", - "vii", - "viii", - "ix", - "x", - "xi", - "xii", - "l", - "c", - "d", - "m", - "i", - "ii", - "iii", - "iv", - "v", - "vi", - "vii", - "viii", - "ix", - "x", - "xi", - "xii", - "l", - "c", - "d", - "m", - None, - "ↄ", - None, - "0⁄3", - None, - None, - None, - "∫∫", - "∫∫∫", - None, - "∮∮", - "∮∮∮", - None, - "〈", - "〉", - None, - None, - None, - None, - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "(1)", - "(2)", - "(3)", - "(4)", - "(5)", - "(6)", - "(7)", - "(8)", - "(9)", - "(10)", - "(11)", - "(12)", - "(13)", - "(14)", - "(15)", - "(16)", - "(17)", - "(18)", - "(19)", - "(20)", - None, - "(a)", - "(b)", - "(c)", - "(d)", - "(e)", - "(f)", - "(g)", - "(h)", - "(i)", - "(j)", - "(k)", - "(l)", - "(m)", - "(n)", - "(o)", - "(p)", - "(q)", - "(r)", - "(s)", - "(t)", - "(u)", - "(v)", - "(w)", - "(x)", - "(y)", - "(z)", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "0", - None, - "∫∫∫∫", - None, - "::=", - "==", - "===", - None, - "⫝̸", - None, - None, - None, - "ⰰ", - "ⰱ", - "ⰲ", - "ⰳ", - "ⰴ", - "ⰵ", - "ⰶ", - "ⰷ", - "ⰸ", - "ⰹ", - "ⰺ", - "ⰻ", - "ⰼ", - "ⰽ", - "ⰾ", - "ⰿ", - "ⱀ", - "ⱁ", - "ⱂ", - "ⱃ", - "ⱄ", - "ⱅ", - "ⱆ", - "ⱇ", - "ⱈ", - "ⱉ", - "ⱊ", - "ⱋ", - "ⱌ", - "ⱍ", - "ⱎ", - "ⱏ", - "ⱐ", - "ⱑ", - "ⱒ", - "ⱓ", - "ⱔ", - "ⱕ", - "ⱖ", - "ⱗ", - "ⱘ", - "ⱙ", - "ⱚ", - "ⱛ", - "ⱜ", - "ⱝ", - "ⱞ", - "ⱟ", - None, - "ⱡ", - None, - "ɫ", - "ᵽ", - "ɽ", - None, - "ⱨ", - None, - "ⱪ", - None, - "ⱬ", - None, - "ɑ", - "ɱ", - "ɐ", - "ɒ", - None, - "ⱳ", - None, - "ⱶ", - None, - "j", - "v", - "ȿ", - "ɀ", - "ⲁ", - None, - "ⲃ", - None, - "ⲅ", - None, - "ⲇ", - None, - "ⲉ", - None, - "ⲋ", - None, - "ⲍ", - None, - "ⲏ", - None, - "ⲑ", - None, - "ⲓ", - None, - "ⲕ", - None, - "ⲗ", - None, - "ⲙ", - None, - "ⲛ", - None, - "ⲝ", - None, - "ⲟ", - None, - "ⲡ", - None, - "ⲣ", - None, - "ⲥ", - None, - "ⲧ", - None, - "ⲩ", - None, - "ⲫ", - None, - "ⲭ", - None, - "ⲯ", - None, - "ⲱ", - None, - "ⲳ", - None, - "ⲵ", - None, - "ⲷ", - None, - "ⲹ", - None, - "ⲻ", - None, - "ⲽ", - None, - "ⲿ", - None, - "ⳁ", - None, - "ⳃ", - None, - "ⳅ", - None, - "ⳇ", - None, - "ⳉ", - None, - "ⳋ", - None, - "ⳍ", - None, - "ⳏ", - None, - "ⳑ", - None, - "ⳓ", - None, - "ⳕ", - None, - "ⳗ", - None, - "ⳙ", - None, - "ⳛ", - None, - "ⳝ", - None, - "ⳟ", - None, - "ⳡ", - None, - "ⳣ", - None, - "ⳬ", - None, - "ⳮ", - None, - "ⳳ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ⵡ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "母", - None, - "龟", - None, - "一", - "丨", - "丶", - "丿", - "乙", - "亅", - "二", - "亠", - "人", - "儿", - "入", - "八", - "冂", - "冖", - "冫", - "几", - "凵", - "刀", - "力", - "勹", - "匕", - "匚", - "匸", - "十", - "卜", - "卩", - "厂", - "厶", - "又", - "口", - "囗", - "土", - "士", - "夂", - "夊", - "夕", - "大", - "女", - "子", - "宀", - "寸", - "小", - "尢", - "尸", - "屮", - "山", - "巛", - "工", - "己", - "巾", - "干", - "幺", - "广", - "廴", - "廾", - "弋", - "弓", - "彐", - "彡", - "彳", - "心", - "戈", - "戶", - "手", - "支", - "攴", - "文", - "斗", - "斤", - "方", - "无", - "日", - "曰", - "月", - "木", - "欠", - "止", - "歹", - "殳", - "毋", - "比", - "毛", - "氏", - "气", - "水", - "火", - "爪", - "父", - "爻", - "爿", - "片", - "牙", - "牛", - "犬", - "玄", - "玉", - "瓜", - "瓦", - "甘", - "生", - "用", - "田", - "疋", - "疒", - "癶", - "白", - "皮", - "皿", - "目", - "矛", - "矢", - "石", - "示", - "禸", - "禾", - "穴", - "立", - "竹", - "米", - "糸", - "缶", - "网", - "羊", - "羽", - "老", - "而", - "耒", - "耳", - "聿", - "肉", - "臣", - "自", - "至", - "臼", - "舌", - "舛", - "舟", - "艮", - "色", - "艸", - "虍", - "虫", - "血", - "行", - "衣", - "襾", - "見", - "角", - "言", - "谷", - "豆", - "豕", - "豸", - "貝", - "赤", - "走", - "足", - "身", - "車", - "辛", - "辰", - "辵", - "邑", - "酉", - "釆", - "里", - "金", - "長", - "門", - "阜", - "隶", - "隹", - "雨", - "靑", - "非", - "面", - "革", - "韋", - "韭", - "音", - "頁", - "風", - "飛", - "食", - "首", - "香", - "馬", - "骨", - "高", - "髟", - "鬥", - "鬯", - "鬲", - "鬼", - "魚", - "鳥", - "鹵", - "鹿", - "麥", - "麻", - "黃", - "黍", - "黑", - "黹", - "黽", - "鼎", - "鼓", - "鼠", - "鼻", - "齊", - "齒", - "龍", - "龜", - "龠", - None, - " ", - None, - ".", - None, - "〒", - None, - "十", - "卄", - "卅", - None, - None, - None, - None, - None, - " ゙", - " ゚", - None, - "より", - None, - "コト", - None, - None, - None, - "ᄀ", - "ᄁ", - "ᆪ", - "ᄂ", - "ᆬ", - "ᆭ", - "ᄃ", - "ᄄ", - "ᄅ", - "ᆰ", - "ᆱ", - "ᆲ", - "ᆳ", - "ᆴ", - "ᆵ", - "ᄚ", - "ᄆ", - "ᄇ", - "ᄈ", - "ᄡ", - "ᄉ", - "ᄊ", - "ᄋ", - "ᄌ", - "ᄍ", - "ᄎ", - "ᄏ", - "ᄐ", - "ᄑ", - "ᄒ", - "ᅡ", - "ᅢ", - "ᅣ", - "ᅤ", - "ᅥ", - "ᅦ", - "ᅧ", - "ᅨ", - "ᅩ", - "ᅪ", - "ᅫ", - "ᅬ", - "ᅭ", - "ᅮ", - "ᅯ", - "ᅰ", - "ᅱ", - "ᅲ", - "ᅳ", - "ᅴ", - "ᅵ", - None, - "ᄔ", - "ᄕ", - "ᇇ", - "ᇈ", - "ᇌ", - "ᇎ", - "ᇓ", - "ᇗ", - "ᇙ", - "ᄜ", - "ᇝ", - "ᇟ", - "ᄝ", - "ᄞ", - "ᄠ", - "ᄢ", - "ᄣ", - "ᄧ", - "ᄩ", - "ᄫ", - "ᄬ", - "ᄭ", - "ᄮ", - "ᄯ", - "ᄲ", - "ᄶ", - "ᅀ", - "ᅇ", - "ᅌ", - "ᇱ", - "ᇲ", - "ᅗ", - "ᅘ", - "ᅙ", - "ᆄ", - "ᆅ", - "ᆈ", - "ᆑ", - "ᆒ", - "ᆔ", - "ᆞ", - "ᆡ", - None, - None, - "一", - "二", - "三", - "四", - "上", - "中", - "下", - "甲", - "乙", - "丙", - "丁", - "天", - "地", - "人", - None, - None, - None, - "(ᄀ)", - "(ᄂ)", - "(ᄃ)", - "(ᄅ)", - "(ᄆ)", - "(ᄇ)", - "(ᄉ)", - "(ᄋ)", - "(ᄌ)", - "(ᄎ)", - "(ᄏ)", - "(ᄐ)", - "(ᄑ)", - "(ᄒ)", - "(가)", - "(나)", - "(다)", - "(라)", - "(마)", - "(바)", - "(사)", - "(아)", - "(자)", - "(차)", - "(카)", - "(타)", - "(파)", - "(하)", - "(주)", - "(오전)", - "(오후)", - None, - "(一)", - "(二)", - "(三)", - "(四)", - "(五)", - "(六)", - "(七)", - "(八)", - "(九)", - "(十)", - "(月)", - "(火)", - "(水)", - "(木)", - "(金)", - "(土)", - "(日)", - "(株)", - "(有)", - "(社)", - "(名)", - "(特)", - "(財)", - "(祝)", - "(労)", - "(代)", - "(呼)", - "(学)", - "(監)", - "(企)", - "(資)", - "(協)", - "(祭)", - "(休)", - "(自)", - "(至)", - "問", - "幼", - "文", - "箏", - None, - "pte", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "ᄀ", - "ᄂ", - "ᄃ", - "ᄅ", - "ᄆ", - "ᄇ", - "ᄉ", - "ᄋ", - "ᄌ", - "ᄎ", - "ᄏ", - "ᄐ", - "ᄑ", - "ᄒ", - "가", - "나", - "다", - "라", - "마", - "바", - "사", - "아", - "자", - "차", - "카", - "타", - "파", - "하", - "참고", - "주의", - "우", - None, - "一", - "二", - "三", - "四", - "五", - "六", - "七", - "八", - "九", - "十", - "月", - "火", - "水", - "木", - "金", - "土", - "日", - "株", - "有", - "社", - "名", - "特", - "財", - "祝", - "労", - "秘", - "男", - "女", - "適", - "優", - "印", - "注", - "項", - "休", - "写", - "正", - "上", - "中", - "下", - "左", - "右", - "医", - "宗", - "学", - "監", - "企", - "資", - "協", - "夜", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "1月", - "2月", - "3月", - "4月", - "5月", - "6月", - "7月", - "8月", - "9月", - "10月", - "11月", - "12月", - "hg", - "erg", - "ev", - "ltd", - "ア", - "イ", - "ウ", - "エ", - "オ", - "カ", - "キ", - "ク", - "ケ", - "コ", - "サ", - "シ", - "ス", - "セ", - "ソ", - "タ", - "チ", - "ツ", - "テ", - "ト", - "ナ", - "ニ", - "ヌ", - "ネ", - "ノ", - "ハ", - "ヒ", - "フ", - "ヘ", - "ホ", - "マ", - "ミ", - "ム", - "メ", - "モ", - "ヤ", - "ユ", - "ヨ", - "ラ", - "リ", - "ル", - "レ", - "ロ", - "ワ", - "ヰ", - "ヱ", - "ヲ", - "令和", - "アパート", - "アルファ", - "アンペア", - "アール", - "イニング", - "インチ", - "ウォン", - "エスクード", - "エーカー", - "オンス", - "オーム", - "カイリ", - "カラット", - "カロリー", - "ガロン", - "ガンマ", - "ギガ", - "ギニー", - "キュリー", - "ギルダー", - "キロ", - "キログラム", - "キロメートル", - "キロワット", - "グラム", - "グラムトン", - "クルゼイロ", - "クローネ", - "ケース", - "コルナ", - "コーポ", - "サイクル", - "サンチーム", - "シリング", - "センチ", - "セント", - "ダース", - "デシ", - "ドル", - "トン", - "ナノ", - "ノット", - "ハイツ", - "パーセント", - "パーツ", - "バーレル", - "ピアストル", - "ピクル", - "ピコ", - "ビル", - "ファラッド", - "フィート", - "ブッシェル", - "フラン", - "ヘクタール", - "ペソ", - "ペニヒ", - "ヘルツ", - "ペンス", - "ページ", - "ベータ", - "ポイント", - "ボルト", - "ホン", - "ポンド", - "ホール", - "ホーン", - "マイクロ", - "マイル", - "マッハ", - "マルク", - "マンション", - "ミクロン", - "ミリ", - "ミリバール", - "メガ", - "メガトン", - "メートル", - "ヤード", - "ヤール", - "ユアン", - "リットル", - "リラ", - "ルピー", - "ルーブル", - "レム", - "レントゲン", - "ワット", - "0点", - "1点", - "2点", - "3点", - "4点", - "5点", - "6点", - "7点", - "8点", - "9点", - "10点", - "11点", - "12点", - "13点", - "14点", - "15点", - "16点", - "17点", - "18点", - "19点", - "20点", - "21点", - "22点", - "23点", - "24点", - "hpa", - "da", - "au", - "bar", - "ov", - "pc", - "dm", - "dm2", - "dm3", - "iu", - "平成", - "昭和", - "大正", - "明治", - "株式会社", - "pa", - "na", - "μa", - "ma", - "ka", - "kb", - "mb", - "gb", - "cal", - "kcal", - "pf", - "nf", - "μf", - "μg", - "mg", - "kg", - "hz", - "khz", - "mhz", - "ghz", - "thz", - "μl", - "ml", - "dl", - "kl", - "fm", - "nm", - "μm", - "mm", - "cm", - "km", - "mm2", - "cm2", - "m2", - "km2", - "mm3", - "cm3", - "m3", - "km3", - "m∕s", - "m∕s2", - "pa", - "kpa", - "mpa", - "gpa", - "rad", - "rad∕s", - "rad∕s2", - "ps", - "ns", - "μs", - "ms", - "pv", - "nv", - "μv", - "mv", - "kv", - "mv", - "pw", - "nw", - "μw", - "mw", - "kw", - "mw", - "kω", - "mω", - None, - "bq", - "cc", - "cd", - "c∕kg", - None, - "db", - "gy", - "ha", - "hp", - "in", - "kk", - "km", - "kt", - "lm", - "ln", - "log", - "lx", - "mb", - "mil", - "mol", - "ph", - None, - "ppm", - "pr", - "sr", - "sv", - "wb", - "v∕m", - "a∕m", - "1日", - "2日", - "3日", - "4日", - "5日", - "6日", - "7日", - "8日", - "9日", - "10日", - "11日", - "12日", - "13日", - "14日", - "15日", - "16日", - "17日", - "18日", - "19日", - "20日", - "21日", - "22日", - "23日", - "24日", - "25日", - "26日", - "27日", - "28日", - "29日", - "30日", - "31日", - "gal", - None, - None, - None, - None, - None, - None, - "ꙁ", - None, - "ꙃ", - None, - "ꙅ", - None, - "ꙇ", - None, - "ꙉ", - None, - "ꙋ", - None, - "ꙍ", - None, - "ꙏ", - None, - "ꙑ", - None, - "ꙓ", - None, - "ꙕ", - None, - "ꙗ", - None, - "ꙙ", - None, - "ꙛ", - None, - "ꙝ", - None, - "ꙟ", - None, - "ꙡ", - None, - "ꙣ", - None, - "ꙥ", - None, - "ꙧ", - None, - "ꙩ", - None, - "ꙫ", - None, - "ꙭ", - None, - "ꚁ", - None, - "ꚃ", - None, - "ꚅ", - None, - "ꚇ", - None, - "ꚉ", - None, - "ꚋ", - None, - "ꚍ", - None, - "ꚏ", - None, - "ꚑ", - None, - "ꚓ", - None, - "ꚕ", - None, - "ꚗ", - None, - "ꚙ", - None, - "ꚛ", - None, - "ъ", - "ь", - None, - None, - None, - "ꜣ", - None, - "ꜥ", - None, - "ꜧ", - None, - "ꜩ", - None, - "ꜫ", - None, - "ꜭ", - None, - "ꜯ", - None, - "ꜳ", - None, - "ꜵ", - None, - "ꜷ", - None, - "ꜹ", - None, - "ꜻ", - None, - "ꜽ", - None, - "ꜿ", - None, - "ꝁ", - None, - "ꝃ", - None, - "ꝅ", - None, - "ꝇ", - None, - "ꝉ", - None, - "ꝋ", - None, - "ꝍ", - None, - "ꝏ", - None, - "ꝑ", - None, - "ꝓ", - None, - "ꝕ", - None, - "ꝗ", - None, - "ꝙ", - None, - "ꝛ", - None, - "ꝝ", - None, - "ꝟ", - None, - "ꝡ", - None, - "ꝣ", - None, - "ꝥ", - None, - "ꝧ", - None, - "ꝩ", - None, - "ꝫ", - None, - "ꝭ", - None, - "ꝯ", - None, - "ꝯ", - None, - "ꝺ", - None, - "ꝼ", - None, - "ᵹ", - "ꝿ", - None, - "ꞁ", - None, - "ꞃ", - None, - "ꞅ", - None, - "ꞇ", - None, - "ꞌ", - None, - "ɥ", - None, - "ꞑ", - None, - "ꞓ", - None, - "ꞗ", - None, - "ꞙ", - None, - "ꞛ", - None, - "ꞝ", - None, - "ꞟ", - None, - "ꞡ", - None, - "ꞣ", - None, - "ꞥ", - None, - "ꞧ", - None, - "ꞩ", - None, - "ɦ", - "ɜ", - "ɡ", - "ɬ", - "ɪ", - None, - "ʞ", - "ʇ", - "ʝ", - "ꭓ", - "ꞵ", - None, - "ꞷ", - None, - "ꞹ", - None, - "ꞻ", - None, - "ꞽ", - None, - "ꞿ", - None, - "ꟁ", - None, - "ꟃ", - None, - "ꞔ", - "ʂ", - "ᶎ", - "ꟈ", - None, - "ꟊ", - None, - "ɤ", - "\ua7cd", - None, - "\ua7cf", - None, - "ꟑ", - None, - "ꟓ", - None, - "ꟕ", - None, - "ꟗ", - None, - "ꟙ", - None, - "\ua7db", - None, - "ƛ", - None, - "s", - "c", - "f", - "q", - "ꟶ", - None, - "ħ", - "œ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ꜧ", - "ꬷ", - "ɫ", - "ꭒ", - None, - "ʍ", - None, - None, - "Ꭰ", - "Ꭱ", - "Ꭲ", - "Ꭳ", - "Ꭴ", - "Ꭵ", - "Ꭶ", - "Ꭷ", - "Ꭸ", - "Ꭹ", - "Ꭺ", - "Ꭻ", - "Ꭼ", - "Ꭽ", - "Ꭾ", - "Ꭿ", - "Ꮀ", - "Ꮁ", - "Ꮂ", - "Ꮃ", - "Ꮄ", - "Ꮅ", - "Ꮆ", - "Ꮇ", - "Ꮈ", - "Ꮉ", - "Ꮊ", - "Ꮋ", - "Ꮌ", - "Ꮍ", - "Ꮎ", - "Ꮏ", - "Ꮐ", - "Ꮑ", - "Ꮒ", - "Ꮓ", - "Ꮔ", - "Ꮕ", - "Ꮖ", - "Ꮗ", - "Ꮘ", - "Ꮙ", - "Ꮚ", - "Ꮛ", - "Ꮜ", - "Ꮝ", - "Ꮞ", - "Ꮟ", - "Ꮠ", - "Ꮡ", - "Ꮢ", - "Ꮣ", - "Ꮤ", - "Ꮥ", - "Ꮦ", - "Ꮧ", - "Ꮨ", - "Ꮩ", - "Ꮪ", - "Ꮫ", - "Ꮬ", - "Ꮭ", - "Ꮮ", - "Ꮯ", - "Ꮰ", - "Ꮱ", - "Ꮲ", - "Ꮳ", - "Ꮴ", - "Ꮵ", - "Ꮶ", - "Ꮷ", - "Ꮸ", - "Ꮹ", - "Ꮺ", - "Ꮻ", - "Ꮼ", - "Ꮽ", - "Ꮾ", - "Ꮿ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "豈", - "更", - "車", - "賈", - "滑", - "串", - "句", - "龜", - "契", - "金", - "喇", - "奈", - "懶", - "癩", - "羅", - "蘿", - "螺", - "裸", - "邏", - "樂", - "洛", - "烙", - "珞", - "落", - "酪", - "駱", - "亂", - "卵", - "欄", - "爛", - "蘭", - "鸞", - "嵐", - "濫", - "藍", - "襤", - "拉", - "臘", - "蠟", - "廊", - "朗", - "浪", - "狼", - "郎", - "來", - "冷", - "勞", - "擄", - "櫓", - "爐", - "盧", - "老", - "蘆", - "虜", - "路", - "露", - "魯", - "鷺", - "碌", - "祿", - "綠", - "菉", - "錄", - "鹿", - "論", - "壟", - "弄", - "籠", - "聾", - "牢", - "磊", - "賂", - "雷", - "壘", - "屢", - "樓", - "淚", - "漏", - "累", - "縷", - "陋", - "勒", - "肋", - "凜", - "凌", - "稜", - "綾", - "菱", - "陵", - "讀", - "拏", - "樂", - "諾", - "丹", - "寧", - "怒", - "率", - "異", - "北", - "磻", - "便", - "復", - "不", - "泌", - "數", - "索", - "參", - "塞", - "省", - "葉", - "說", - "殺", - "辰", - "沈", - "拾", - "若", - "掠", - "略", - "亮", - "兩", - "凉", - "梁", - "糧", - "良", - "諒", - "量", - "勵", - "呂", - "女", - "廬", - "旅", - "濾", - "礪", - "閭", - "驪", - "麗", - "黎", - "力", - "曆", - "歷", - "轢", - "年", - "憐", - "戀", - "撚", - "漣", - "煉", - "璉", - "秊", - "練", - "聯", - "輦", - "蓮", - "連", - "鍊", - "列", - "劣", - "咽", - "烈", - "裂", - "說", - "廉", - "念", - "捻", - "殮", - "簾", - "獵", - "令", - "囹", - "寧", - "嶺", - "怜", - "玲", - "瑩", - "羚", - "聆", - "鈴", - "零", - "靈", - "領", - "例", - "禮", - "醴", - "隸", - "惡", - "了", - "僚", - "寮", - "尿", - "料", - "樂", - "燎", - "療", - "蓼", - "遼", - "龍", - "暈", - "阮", - "劉", - "杻", - "柳", - "流", - "溜", - "琉", - "留", - "硫", - "紐", - "類", - "六", - "戮", - "陸", - "倫", - "崙", - "淪", - "輪", - "律", - "慄", - "栗", - "率", - "隆", - "利", - "吏", - "履", - "易", - "李", - "梨", - "泥", - "理", - "痢", - "罹", - "裏", - "裡", - "里", - "離", - "匿", - "溺", - "吝", - "燐", - "璘", - "藺", - "隣", - "鱗", - "麟", - "林", - "淋", - "臨", - "立", - "笠", - "粒", - "狀", - "炙", - "識", - "什", - "茶", - "刺", - "切", - "度", - "拓", - "糖", - "宅", - "洞", - "暴", - "輻", - "行", - "降", - "見", - "廓", - "兀", - "嗀", - None, - "塚", - None, - "晴", - None, - "凞", - "猪", - "益", - "礼", - "神", - "祥", - "福", - "靖", - "精", - "羽", - None, - "蘒", - None, - "諸", - None, - "逸", - "都", - None, - "飯", - "飼", - "館", - "鶴", - "郞", - "隷", - "侮", - "僧", - "免", - "勉", - "勤", - "卑", - "喝", - "嘆", - "器", - "塀", - "墨", - "層", - "屮", - "悔", - "慨", - "憎", - "懲", - "敏", - "既", - "暑", - "梅", - "海", - "渚", - "漢", - "煮", - "爫", - "琢", - "碑", - "社", - "祉", - "祈", - "祐", - "祖", - "祝", - "禍", - "禎", - "穀", - "突", - "節", - "練", - "縉", - "繁", - "署", - "者", - "臭", - "艹", - "著", - "褐", - "視", - "謁", - "謹", - "賓", - "贈", - "辶", - "逸", - "難", - "響", - "頻", - "恵", - "𤋮", - "舘", - None, - "並", - "况", - "全", - "侀", - "充", - "冀", - "勇", - "勺", - "喝", - "啕", - "喙", - "嗢", - "塚", - "墳", - "奄", - "奔", - "婢", - "嬨", - "廒", - "廙", - "彩", - "徭", - "惘", - "慎", - "愈", - "憎", - "慠", - "懲", - "戴", - "揄", - "搜", - "摒", - "敖", - "晴", - "朗", - "望", - "杖", - "歹", - "殺", - "流", - "滛", - "滋", - "漢", - "瀞", - "煮", - "瞧", - "爵", - "犯", - "猪", - "瑱", - "甆", - "画", - "瘝", - "瘟", - "益", - "盛", - "直", - "睊", - "着", - "磌", - "窱", - "節", - "类", - "絛", - "練", - "缾", - "者", - "荒", - "華", - "蝹", - "襁", - "覆", - "視", - "調", - "諸", - "請", - "謁", - "諾", - "諭", - "謹", - "變", - "贈", - "輸", - "遲", - "醙", - "鉶", - "陼", - "難", - "靖", - "韛", - "響", - "頋", - "頻", - "鬒", - "龜", - "𢡊", - "𢡄", - "𣏕", - "㮝", - "䀘", - "䀹", - "𥉉", - "𥳐", - "𧻓", - "齃", - "龎", - None, - "ff", - "fi", - "fl", - "ffi", - "ffl", - "st", - None, - "մն", - "մե", - "մի", - "վն", - "մխ", - None, - "יִ", - None, - "ײַ", - "ע", - "א", - "ד", - "ה", - "כ", - "ל", - "ם", - "ר", - "ת", - "+", - "שׁ", - "שׂ", - "שּׁ", - "שּׂ", - "אַ", - "אָ", - "אּ", - "בּ", - "גּ", - "דּ", - "הּ", - "וּ", - "זּ", - None, - "טּ", - "יּ", - "ךּ", - "כּ", - "לּ", - None, - "מּ", - None, - "נּ", - "סּ", - None, - "ףּ", - "פּ", - None, - "צּ", - "קּ", - "רּ", - "שּ", - "תּ", - "וֹ", - "בֿ", - "כֿ", - "פֿ", - "אל", - "ٱ", - "ٻ", - "پ", - "ڀ", - "ٺ", - "ٿ", - "ٹ", - "ڤ", - "ڦ", - "ڄ", - "ڃ", - "چ", - "ڇ", - "ڍ", - "ڌ", - "ڎ", - "ڈ", - "ژ", - "ڑ", - "ک", - "گ", - "ڳ", - "ڱ", - "ں", - "ڻ", - "ۀ", - "ہ", - "ھ", - "ے", - "ۓ", - None, - "ڭ", - "ۇ", - "ۆ", - "ۈ", - "ۇٴ", - "ۋ", - "ۅ", - "ۉ", - "ې", - "ى", - "ئا", - "ئە", - "ئو", - "ئۇ", - "ئۆ", - "ئۈ", - "ئې", - "ئى", - "ی", - "ئج", - "ئح", - "ئم", - "ئى", - "ئي", - "بج", - "بح", - "بخ", - "بم", - "بى", - "بي", - "تج", - "تح", - "تخ", - "تم", - "تى", - "تي", - "ثج", - "ثم", - "ثى", - "ثي", - "جح", - "جم", - "حج", - "حم", - "خج", - "خح", - "خم", - "سج", - "سح", - "سخ", - "سم", - "صح", - "صم", - "ضج", - "ضح", - "ضخ", - "ضم", - "طح", - "طم", - "ظم", - "عج", - "عم", - "غج", - "غم", - "فج", - "فح", - "فخ", - "فم", - "فى", - "في", - "قح", - "قم", - "قى", - "قي", - "كا", - "كج", - "كح", - "كخ", - "كل", - "كم", - "كى", - "كي", - "لج", - "لح", - "لخ", - "لم", - "لى", - "لي", - "مج", - "مح", - "مخ", - "مم", - "مى", - "مي", - "نج", - "نح", - "نخ", - "نم", - "نى", - "ني", - "هج", - "هم", - "هى", - "هي", - "يج", - "يح", - "يخ", - "يم", - "يى", - "يي", - "ذٰ", - "رٰ", - "ىٰ", - " ٌّ", - " ٍّ", - " َّ", - " ُّ", - " ِّ", - " ّٰ", - "ئر", - "ئز", - "ئم", - "ئن", - "ئى", - "ئي", - "بر", - "بز", - "بم", - "بن", - "بى", - "بي", - "تر", - "تز", - "تم", - "تن", - "تى", - "تي", - "ثر", - "ثز", - "ثم", - "ثن", - "ثى", - "ثي", - "فى", - "في", - "قى", - "قي", - "كا", - "كل", - "كم", - "كى", - "كي", - "لم", - "لى", - "لي", - "ما", - "مم", - "نر", - "نز", - "نم", - "نن", - "نى", - "ني", - "ىٰ", - "ير", - "يز", - "يم", - "ين", - "يى", - "يي", - "ئج", - "ئح", - "ئخ", - "ئم", - "ئه", - "بج", - "بح", - "بخ", - "بم", - "به", - "تج", - "تح", - "تخ", - "تم", - "ته", - "ثم", - "جح", - "جم", - "حج", - "حم", - "خج", - "خم", - "سج", - "سح", - "سخ", - "سم", - "صح", - "صخ", - "صم", - "ضج", - "ضح", - "ضخ", - "ضم", - "طح", - "ظم", - "عج", - "عم", - "غج", - "غم", - "فج", - "فح", - "فخ", - "فم", - "قح", - "قم", - "كج", - "كح", - "كخ", - "كل", - "كم", - "لج", - "لح", - "لخ", - "لم", - "له", - "مج", - "مح", - "مخ", - "مم", - "نج", - "نح", - "نخ", - "نم", - "نه", - "هج", - "هم", - "هٰ", - "يج", - "يح", - "يخ", - "يم", - "يه", - "ئم", - "ئه", - "بم", - "به", - "تم", - "ته", - "ثم", - "ثه", - "سم", - "سه", - "شم", - "شه", - "كل", - "كم", - "لم", - "نم", - "نه", - "يم", - "يه", - "ـَّ", - "ـُّ", - "ـِّ", - "طى", - "طي", - "عى", - "عي", - "غى", - "غي", - "سى", - "سي", - "شى", - "شي", - "حى", - "حي", - "جى", - "جي", - "خى", - "خي", - "صى", - "صي", - "ضى", - "ضي", - "شج", - "شح", - "شخ", - "شم", - "شر", - "سر", - "صر", - "ضر", - "طى", - "طي", - "عى", - "عي", - "غى", - "غي", - "سى", - "سي", - "شى", - "شي", - "حى", - "حي", - "جى", - "جي", - "خى", - "خي", - "صى", - "صي", - "ضى", - "ضي", - "شج", - "شح", - "شخ", - "شم", - "شر", - "سر", - "صر", - "ضر", - "شج", - "شح", - "شخ", - "شم", - "سه", - "شه", - "طم", - "سج", - "سح", - "سخ", - "شج", - "شح", - "شخ", - "طم", - "ظم", - "اً", - None, - "تجم", - "تحج", - "تحم", - "تخم", - "تمج", - "تمح", - "تمخ", - "جمح", - "حمي", - "حمى", - "سحج", - "سجح", - "سجى", - "سمح", - "سمج", - "سمم", - "صحح", - "صمم", - "شحم", - "شجي", - "شمخ", - "شمم", - "ضحى", - "ضخم", - "طمح", - "طمم", - "طمي", - "عجم", - "عمم", - "عمى", - "غمم", - "غمي", - "غمى", - "فخم", - "قمح", - "قمم", - "لحم", - "لحي", - "لحى", - "لجج", - "لخم", - "لمح", - "محج", - "محم", - "محي", - "مجح", - "مجم", - "مخج", - "مخم", - None, - "مجخ", - "همج", - "همم", - "نحم", - "نحى", - "نجم", - "نجى", - "نمي", - "نمى", - "يمم", - "بخي", - "تجي", - "تجى", - "تخي", - "تخى", - "تمي", - "تمى", - "جمي", - "جحى", - "جمى", - "سخى", - "صحي", - "شحي", - "ضحي", - "لجي", - "لمي", - "يحي", - "يجي", - "يمي", - "ممي", - "قمي", - "نحي", - "قمح", - "لحم", - "عمي", - "كمي", - "نجح", - "مخي", - "لجم", - "كمم", - "لجم", - "نجح", - "جحي", - "حجي", - "مجي", - "فمي", - "بحي", - "كمم", - "عجم", - "صمم", - "سخي", - "نجي", - None, - None, - "صلے", - "قلے", - "الله", - "اكبر", - "محمد", - "صلعم", - "رسول", - "عليه", - "وسلم", - "صلى", - "صلى الله عليه وسلم", - "جل جلاله", - "ریال", - None, - None, - ",", - "、", - None, - ":", - ";", - "!", - "?", - "〖", - "〗", - None, - None, - None, - "—", - "–", - "_", - "(", - ")", - "{", - "}", - "〔", - "〕", - "【", - "】", - "《", - "》", - "〈", - "〉", - "「", - "」", - "『", - "』", - None, - "[", - "]", - " ̅", - "_", - ",", - "、", - None, - ";", - ":", - "?", - "!", - "—", - "(", - ")", - "{", - "}", - "〔", - "〕", - "#", - "&", - "*", - "+", - "-", - "<", - ">", - "=", - None, - "\\", - "$", - "%", - "@", - None, - " ً", - "ـً", - " ٌ", - None, - " ٍ", - None, - " َ", - "ـَ", - " ُ", - "ـُ", - " ِ", - "ـِ", - " ّ", - "ـّ", - " ْ", - "ـْ", - "ء", - "آ", - "أ", - "ؤ", - "إ", - "ئ", - "ا", - "ب", - "ة", - "ت", - "ث", - "ج", - "ح", - "خ", - "د", - "ذ", - "ر", - "ز", - "س", - "ش", - "ص", - "ض", - "ط", - "ظ", - "ع", - "غ", - "ف", - "ق", - "ك", - "ل", - "م", - "ن", - "ه", - "و", - "ى", - "ي", - "لآ", - "لأ", - "لإ", - "لا", - None, - None, - None, - "!", - '"', - "#", - "$", - "%", - "&", - "'", - "(", - ")", - "*", - "+", - ",", - "-", - ".", - "/", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - ":", - ";", - "<", - "=", - ">", - "?", - "@", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "[", - "\\", - "]", - "^", - "_", - "`", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "{", - "|", - "}", - "~", - "⦅", - "⦆", - ".", - "「", - "」", - "、", - "・", - "ヲ", - "ァ", - "ィ", - "ゥ", - "ェ", - "ォ", - "ャ", - "ュ", - "ョ", - "ッ", - "ー", - "ア", - "イ", - "ウ", - "エ", - "オ", - "カ", - "キ", - "ク", - "ケ", - "コ", - "サ", - "シ", - "ス", - "セ", - "ソ", - "タ", - "チ", - "ツ", - "テ", - "ト", - "ナ", - "ニ", - "ヌ", - "ネ", - "ノ", - "ハ", - "ヒ", - "フ", - "ヘ", - "ホ", - "マ", - "ミ", - "ム", - "メ", - "モ", - "ヤ", - "ユ", - "ヨ", - "ラ", - "リ", - "ル", - "レ", - "ロ", - "ワ", - "ン", - "゙", - "゚", - None, - "ᄀ", - "ᄁ", - "ᆪ", - "ᄂ", - "ᆬ", - "ᆭ", - "ᄃ", - "ᄄ", - "ᄅ", - "ᆰ", - "ᆱ", - "ᆲ", - "ᆳ", - "ᆴ", - "ᆵ", - "ᄚ", - "ᄆ", - "ᄇ", - "ᄈ", - "ᄡ", - "ᄉ", - "ᄊ", - "ᄋ", - "ᄌ", - "ᄍ", - "ᄎ", - "ᄏ", - "ᄐ", - "ᄑ", - "ᄒ", - None, - "ᅡ", - "ᅢ", - "ᅣ", - "ᅤ", - "ᅥ", - "ᅦ", - None, - "ᅧ", - "ᅨ", - "ᅩ", - "ᅪ", - "ᅫ", - "ᅬ", - None, - "ᅭ", - "ᅮ", - "ᅯ", - "ᅰ", - "ᅱ", - "ᅲ", - None, - "ᅳ", - "ᅴ", - "ᅵ", - None, - "¢", - "£", - "¬", - " ̄", - "¦", - "¥", - "₩", - None, - "│", - "←", - "↑", - "→", - "↓", - "■", - "○", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𐐨", - "𐐩", - "𐐪", - "𐐫", - "𐐬", - "𐐭", - "𐐮", - "𐐯", - "𐐰", - "𐐱", - "𐐲", - "𐐳", - "𐐴", - "𐐵", - "𐐶", - "𐐷", - "𐐸", - "𐐹", - "𐐺", - "𐐻", - "𐐼", - "𐐽", - "𐐾", - "𐐿", - "𐑀", - "𐑁", - "𐑂", - "𐑃", - "𐑄", - "𐑅", - "𐑆", - "𐑇", - "𐑈", - "𐑉", - "𐑊", - "𐑋", - "𐑌", - "𐑍", - "𐑎", - "𐑏", - None, - None, - None, - None, - "𐓘", - "𐓙", - "𐓚", - "𐓛", - "𐓜", - "𐓝", - "𐓞", - "𐓟", - "𐓠", - "𐓡", - "𐓢", - "𐓣", - "𐓤", - "𐓥", - "𐓦", - "𐓧", - "𐓨", - "𐓩", - "𐓪", - "𐓫", - "𐓬", - "𐓭", - "𐓮", - "𐓯", - "𐓰", - "𐓱", - "𐓲", - "𐓳", - "𐓴", - "𐓵", - "𐓶", - "𐓷", - "𐓸", - "𐓹", - "𐓺", - "𐓻", - None, - None, - None, - None, - None, - None, - None, - None, - "𐖗", - "𐖘", - "𐖙", - "𐖚", - "𐖛", - "𐖜", - "𐖝", - "𐖞", - "𐖟", - "𐖠", - "𐖡", - None, - "𐖣", - "𐖤", - "𐖥", - "𐖦", - "𐖧", - "𐖨", - "𐖩", - "𐖪", - "𐖫", - "𐖬", - "𐖭", - "𐖮", - "𐖯", - "𐖰", - "𐖱", - None, - "𐖳", - "𐖴", - "𐖵", - "𐖶", - "𐖷", - "𐖸", - "𐖹", - None, - "𐖻", - "𐖼", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ː", - "ˑ", - "æ", - "ʙ", - "ɓ", - None, - "ʣ", - "ꭦ", - "ʥ", - "ʤ", - "ɖ", - "ɗ", - "ᶑ", - "ɘ", - "ɞ", - "ʩ", - "ɤ", - "ɢ", - "ɠ", - "ʛ", - "ħ", - "ʜ", - "ɧ", - "ʄ", - "ʪ", - "ʫ", - "ɬ", - "𝼄", - "ꞎ", - "ɮ", - "𝼅", - "ʎ", - "𝼆", - "ø", - "ɶ", - "ɷ", - "q", - "ɺ", - "𝼈", - "ɽ", - "ɾ", - "ʀ", - "ʨ", - "ʦ", - "ꭧ", - "ʧ", - "ʈ", - "ⱱ", - None, - "ʏ", - "ʡ", - "ʢ", - "ʘ", - "ǀ", - "ǁ", - "ǂ", - "𝼊", - "𝼞", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𐳀", - "𐳁", - "𐳂", - "𐳃", - "𐳄", - "𐳅", - "𐳆", - "𐳇", - "𐳈", - "𐳉", - "𐳊", - "𐳋", - "𐳌", - "𐳍", - "𐳎", - "𐳏", - "𐳐", - "𐳑", - "𐳒", - "𐳓", - "𐳔", - "𐳕", - "𐳖", - "𐳗", - "𐳘", - "𐳙", - "𐳚", - "𐳛", - "𐳜", - "𐳝", - "𐳞", - "𐳟", - "𐳠", - "𐳡", - "𐳢", - "𐳣", - "𐳤", - "𐳥", - "𐳦", - "𐳧", - "𐳨", - "𐳩", - "𐳪", - "𐳫", - "𐳬", - "𐳭", - "𐳮", - "𐳯", - "𐳰", - "𐳱", - "𐳲", - None, - None, - None, - None, - None, - None, - None, - None, - "\U00010d70", - "\U00010d71", - "\U00010d72", - "\U00010d73", - "\U00010d74", - "\U00010d75", - "\U00010d76", - "\U00010d77", - "\U00010d78", - "\U00010d79", - "\U00010d7a", - "\U00010d7b", - "\U00010d7c", - "\U00010d7d", - "\U00010d7e", - "\U00010d7f", - "\U00010d80", - "\U00010d81", - "\U00010d82", - "\U00010d83", - "\U00010d84", - "\U00010d85", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𑣀", - "𑣁", - "𑣂", - "𑣃", - "𑣄", - "𑣅", - "𑣆", - "𑣇", - "𑣈", - "𑣉", - "𑣊", - "𑣋", - "𑣌", - "𑣍", - "𑣎", - "𑣏", - "𑣐", - "𑣑", - "𑣒", - "𑣓", - "𑣔", - "𑣕", - "𑣖", - "𑣗", - "𑣘", - "𑣙", - "𑣚", - "𑣛", - "𑣜", - "𑣝", - "𑣞", - "𑣟", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𖹠", - "𖹡", - "𖹢", - "𖹣", - "𖹤", - "𖹥", - "𖹦", - "𖹧", - "𖹨", - "𖹩", - "𖹪", - "𖹫", - "𖹬", - "𖹭", - "𖹮", - "𖹯", - "𖹰", - "𖹱", - "𖹲", - "𖹳", - "𖹴", - "𖹵", - "𖹶", - "𖹷", - "𖹸", - "𖹹", - "𖹺", - "𖹻", - "𖹼", - "𖹽", - "𖹾", - "𖹿", - None, - None, - "\U00016ebb", - "\U00016ebc", - "\U00016ebd", - "\U00016ebe", - "\U00016ebf", - "\U00016ec0", - "\U00016ec1", - "\U00016ec2", - "\U00016ec3", - "\U00016ec4", - "\U00016ec5", - "\U00016ec6", - "\U00016ec7", - "\U00016ec8", - "\U00016ec9", - "\U00016eca", - "\U00016ecb", - "\U00016ecc", - "\U00016ecd", - "\U00016ece", - "\U00016ecf", - "\U00016ed0", - "\U00016ed1", - "\U00016ed2", - "\U00016ed3", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𝅗𝅥", - "𝅘𝅥", - "𝅘𝅥𝅮", - "𝅘𝅥𝅯", - "𝅘𝅥𝅰", - "𝅘𝅥𝅱", - "𝅘𝅥𝅲", - None, - None, - None, - "𝆹𝅥", - "𝆺𝅥", - "𝆹𝅥𝅮", - "𝆺𝅥𝅮", - "𝆹𝅥𝅯", - "𝆺𝅥𝅯", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - None, - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - None, - "c", - "d", - None, - "g", - None, - "j", - "k", - None, - "n", - "o", - "p", - "q", - None, - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - None, - "f", - None, - "h", - "i", - "j", - "k", - "l", - "m", - "n", - None, - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - None, - "d", - "e", - "f", - "g", - None, - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - None, - "s", - "t", - "u", - "v", - "w", - "x", - "y", - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - None, - "d", - "e", - "f", - "g", - None, - "i", - "j", - "k", - "l", - "m", - None, - "o", - None, - "s", - "t", - "u", - "v", - "w", - "x", - "y", - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "ı", - "ȷ", - None, - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "θ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∇", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∂", - "ε", - "θ", - "κ", - "φ", - "ρ", - "π", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "θ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∇", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∂", - "ε", - "θ", - "κ", - "φ", - "ρ", - "π", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "θ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∇", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∂", - "ε", - "θ", - "κ", - "φ", - "ρ", - "π", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "θ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∇", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∂", - "ε", - "θ", - "κ", - "φ", - "ρ", - "π", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "θ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∇", - "α", - "β", - "γ", - "δ", - "ε", - "ζ", - "η", - "θ", - "ι", - "κ", - "λ", - "μ", - "ν", - "ξ", - "ο", - "π", - "ρ", - "σ", - "τ", - "υ", - "φ", - "χ", - "ψ", - "ω", - "∂", - "ε", - "θ", - "κ", - "φ", - "ρ", - "π", - "ϝ", - None, - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "а", - "б", - "в", - "г", - "д", - "е", - "ж", - "з", - "и", - "к", - "л", - "м", - "о", - "п", - "р", - "с", - "т", - "у", - "ф", - "х", - "ц", - "ч", - "ш", - "ы", - "э", - "ю", - "ꚉ", - "ә", - "і", - "ј", - "ө", - "ү", - "ӏ", - "а", - "б", - "в", - "г", - "д", - "е", - "ж", - "з", - "и", - "к", - "л", - "о", - "п", - "с", - "у", - "ф", - "х", - "ц", - "ч", - "ш", - "ъ", - "ы", - "ґ", - "і", - "ѕ", - "џ", - "ҫ", - "ꙑ", - "ұ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "𞤢", - "𞤣", - "𞤤", - "𞤥", - "𞤦", - "𞤧", - "𞤨", - "𞤩", - "𞤪", - "𞤫", - "𞤬", - "𞤭", - "𞤮", - "𞤯", - "𞤰", - "𞤱", - "𞤲", - "𞤳", - "𞤴", - "𞤵", - "𞤶", - "𞤷", - "𞤸", - "𞤹", - "𞤺", - "𞤻", - "𞤼", - "𞤽", - "𞤾", - "𞤿", - "𞥀", - "𞥁", - "𞥂", - "𞥃", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "ا", - "ب", - "ج", - "د", - None, - "و", - "ز", - "ح", - "ط", - "ي", - "ك", - "ل", - "م", - "ن", - "س", - "ع", - "ف", - "ص", - "ق", - "ر", - "ش", - "ت", - "ث", - "خ", - "ذ", - "ض", - "ظ", - "غ", - "ٮ", - "ں", - "ڡ", - "ٯ", - None, - "ب", - "ج", - None, - "ه", - None, - "ح", - None, - "ي", - "ك", - "ل", - "م", - "ن", - "س", - "ع", - "ف", - "ص", - "ق", - None, - "ش", - "ت", - "ث", - "خ", - None, - "ض", - None, - "غ", - None, - "ج", - None, - "ح", - None, - "ي", - None, - "ل", - None, - "ن", - "س", - "ع", - None, - "ص", - "ق", - None, - "ش", - None, - "خ", - None, - "ض", - None, - "غ", - None, - "ں", - None, - "ٯ", - None, - "ب", - "ج", - None, - "ه", - None, - "ح", - "ط", - "ي", - "ك", - None, - "م", - "ن", - "س", - "ع", - "ف", - "ص", - "ق", - None, - "ش", - "ت", - "ث", - "خ", - None, - "ض", - "ظ", - "غ", - "ٮ", - None, - "ڡ", - None, - "ا", - "ب", - "ج", - "د", - "ه", - "و", - "ز", - "ح", - "ط", - "ي", - None, - "ل", - "م", - "ن", - "س", - "ع", - "ف", - "ص", - "ق", - "ر", - "ش", - "ت", - "ث", - "خ", - "ذ", - "ض", - "ظ", - "غ", - None, - "ب", - "ج", - "د", - None, - "و", - "ز", - "ح", - "ط", - "ي", - None, - "ل", - "م", - "ن", - "س", - "ع", - "ف", - "ص", - "ق", - "ر", - "ش", - "ت", - "ث", - "خ", - "ذ", - "ض", - "ظ", - "غ", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "0,", - "1,", - "2,", - "3,", - "4,", - "5,", - "6,", - "7,", - "8,", - "9,", - None, - "(a)", - "(b)", - "(c)", - "(d)", - "(e)", - "(f)", - "(g)", - "(h)", - "(i)", - "(j)", - "(k)", - "(l)", - "(m)", - "(n)", - "(o)", - "(p)", - "(q)", - "(r)", - "(s)", - "(t)", - "(u)", - "(v)", - "(w)", - "(x)", - "(y)", - "(z)", - "〔s〕", - "c", - "r", - "cd", - "wz", - None, - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "hv", - "mv", - "sd", - "ss", - "ppv", - "wc", - None, - "mc", - "md", - "mr", - None, - "dj", - None, - None, - None, - "ほか", - "ココ", - "サ", - None, - "手", - "字", - "双", - "デ", - "二", - "多", - "解", - "天", - "交", - "映", - "無", - "料", - "前", - "後", - "再", - "新", - "初", - "終", - "生", - "販", - "声", - "吹", - "演", - "投", - "捕", - "一", - "三", - "遊", - "左", - "中", - "右", - "指", - "走", - "打", - "禁", - "空", - "合", - "満", - "有", - "月", - "申", - "割", - "営", - "配", - None, - "〔本〕", - "〔三〕", - "〔二〕", - "〔安〕", - "〔点〕", - "〔打〕", - "〔盗〕", - "〔勝〕", - "〔敗〕", - None, - "得", - "可", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - "丽", - "丸", - "乁", - "𠄢", - "你", - "侮", - "侻", - "倂", - "偺", - "備", - "僧", - "像", - "㒞", - "𠘺", - "免", - "兔", - "兤", - "具", - "𠔜", - "㒹", - "內", - "再", - "𠕋", - "冗", - "冤", - "仌", - "冬", - "况", - "𩇟", - "凵", - "刃", - "㓟", - "刻", - "剆", - "割", - "剷", - "㔕", - "勇", - "勉", - "勤", - "勺", - "包", - "匆", - "北", - "卉", - "卑", - "博", - "即", - "卽", - "卿", - "𠨬", - "灰", - "及", - "叟", - "𠭣", - "叫", - "叱", - "吆", - "咞", - "吸", - "呈", - "周", - "咢", - "哶", - "唐", - "啓", - "啣", - "善", - "喙", - "喫", - "喳", - "嗂", - "圖", - "嘆", - "圗", - "噑", - "噴", - "切", - "壮", - "城", - "埴", - "堍", - "型", - "堲", - "報", - "墬", - "𡓤", - "売", - "壷", - "夆", - "多", - "夢", - "奢", - "𡚨", - "𡛪", - "姬", - "娛", - "娧", - "姘", - "婦", - "㛮", - "㛼", - "嬈", - "嬾", - "𡧈", - "寃", - "寘", - "寧", - "寳", - "𡬘", - "寿", - "将", - "当", - "尢", - "㞁", - "屠", - "屮", - "峀", - "岍", - "𡷤", - "嵃", - "𡷦", - "嵮", - "嵫", - "嵼", - "巡", - "巢", - "㠯", - "巽", - "帨", - "帽", - "幩", - "㡢", - "𢆃", - "㡼", - "庰", - "庳", - "庶", - "廊", - "𪎒", - "廾", - "𢌱", - "舁", - "弢", - "㣇", - "𣊸", - "𦇚", - "形", - "彫", - "㣣", - "徚", - "忍", - "志", - "忹", - "悁", - "㤺", - "㤜", - "悔", - "𢛔", - "惇", - "慈", - "慌", - "慎", - "慌", - "慺", - "憎", - "憲", - "憤", - "憯", - "懞", - "懲", - "懶", - "成", - "戛", - "扝", - "抱", - "拔", - "捐", - "𢬌", - "挽", - "拼", - "捨", - "掃", - "揤", - "𢯱", - "搢", - "揅", - "掩", - "㨮", - "摩", - "摾", - "撝", - "摷", - "㩬", - "敏", - "敬", - "𣀊", - "旣", - "書", - "晉", - "㬙", - "暑", - "㬈", - "㫤", - "冒", - "冕", - "最", - "暜", - "肭", - "䏙", - "朗", - "望", - "朡", - "杞", - "杓", - "𣏃", - "㭉", - "柺", - "枅", - "桒", - "梅", - "𣑭", - "梎", - "栟", - "椔", - "㮝", - "楂", - "榣", - "槪", - "檨", - "𣚣", - "櫛", - "㰘", - "次", - "𣢧", - "歔", - "㱎", - "歲", - "殟", - "殺", - "殻", - "𣪍", - "𡴋", - "𣫺", - "汎", - "𣲼", - "沿", - "泍", - "汧", - "洖", - "派", - "海", - "流", - "浩", - "浸", - "涅", - "𣴞", - "洴", - "港", - "湮", - "㴳", - "滋", - "滇", - "𣻑", - "淹", - "潮", - "𣽞", - "𣾎", - "濆", - "瀹", - "瀞", - "瀛", - "㶖", - "灊", - "災", - "灷", - "炭", - "𠔥", - "煅", - "𤉣", - "熜", - "𤎫", - "爨", - "爵", - "牐", - "𤘈", - "犀", - "犕", - "𤜵", - "𤠔", - "獺", - "王", - "㺬", - "玥", - "㺸", - "瑇", - "瑜", - "瑱", - "璅", - "瓊", - "㼛", - "甤", - "𤰶", - "甾", - "𤲒", - "異", - "𢆟", - "瘐", - "𤾡", - "𤾸", - "𥁄", - "㿼", - "䀈", - "直", - "𥃳", - "𥃲", - "𥄙", - "𥄳", - "眞", - "真", - "睊", - "䀹", - "瞋", - "䁆", - "䂖", - "𥐝", - "硎", - "碌", - "磌", - "䃣", - "𥘦", - "祖", - "𥚚", - "𥛅", - "福", - "秫", - "䄯", - "穀", - "穊", - "穏", - "𥥼", - "𥪧", - "竮", - "䈂", - "𥮫", - "篆", - "築", - "䈧", - "𥲀", - "糒", - "䊠", - "糨", - "糣", - "紀", - "𥾆", - "絣", - "䌁", - "緇", - "縂", - "繅", - "䌴", - "𦈨", - "𦉇", - "䍙", - "𦋙", - "罺", - "𦌾", - "羕", - "翺", - "者", - "𦓚", - "𦔣", - "聠", - "𦖨", - "聰", - "𣍟", - "䏕", - "育", - "脃", - "䐋", - "脾", - "媵", - "𦞧", - "𦞵", - "𣎓", - "𣎜", - "舁", - "舄", - "辞", - "䑫", - "芑", - "芋", - "芝", - "劳", - "花", - "芳", - "芽", - "苦", - "𦬼", - "若", - "茝", - "荣", - "莭", - "茣", - "莽", - "菧", - "著", - "荓", - "菊", - "菌", - "菜", - "𦰶", - "𦵫", - "𦳕", - "䔫", - "蓱", - "蓳", - "蔖", - "𧏊", - "蕤", - "𦼬", - "䕝", - "䕡", - "𦾱", - "𧃒", - "䕫", - "虐", - "虜", - "虧", - "虩", - "蚩", - "蚈", - "蜎", - "蛢", - "蝹", - "蜨", - "蝫", - "螆", - "䗗", - "蟡", - "蠁", - "䗹", - "衠", - "衣", - "𧙧", - "裗", - "裞", - "䘵", - "裺", - "㒻", - "𧢮", - "𧥦", - "䚾", - "䛇", - "誠", - "諭", - "變", - "豕", - "𧲨", - "貫", - "賁", - "贛", - "起", - "𧼯", - "𠠄", - "跋", - "趼", - "跰", - "𠣞", - "軔", - "輸", - "𨗒", - "𨗭", - "邔", - "郱", - "鄑", - "𨜮", - "鄛", - "鈸", - "鋗", - "鋘", - "鉼", - "鏹", - "鐕", - "𨯺", - "開", - "䦕", - "閷", - "𨵷", - "䧦", - "雃", - "嶲", - "霣", - "𩅅", - "𩈚", - "䩮", - "䩶", - "韠", - "𩐊", - "䪲", - "𩒖", - "頋", - "頩", - "𩖶", - "飢", - "䬳", - "餩", - "馧", - "駂", - "駾", - "䯎", - "𩬰", - "鬒", - "鱀", - "鳽", - "䳎", - "䳭", - "鵧", - "𪃎", - "䳸", - "𪄅", - "𪈎", - "𪊑", - "麻", - "䵖", - "黹", - "黾", - "鼅", - "鼏", - "鼖", - "鼻", - "𪘀", - None, - None, - None, - None, - None, - None, - None, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt deleted file mode 100644 index 0e63548..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt +++ /dev/null @@ -1,760 +0,0 @@ -@Switch01 -A_Rog -Aakanksha Agrawal -Abhinav Sagar -ABHYUDAY PRATAP SINGH -abs51295 -AceGentile -Adam Chainz -Adam Tse -Adam Wentz -admin -Adrien Morison -ahayrapetyan -Ahilya -AinsworthK -Akash Srivastava -Alan Yee -Albert Tugushev -Albert-Guan -albertg -Alberto Sottile -Aleks Bunin -Ales Erjavec -Alethea Flowers -Alex Gaynor -Alex Grönholm -Alex Hedges -Alex Loosley -Alex Morega -Alex Stachowiak -Alexander Shtyrov -Alexandre Conrad -Alexey Popravka -Aleš Erjavec -Alli -Ami Fischman -Ananya Maiti -Anatoly Techtonik -Anders Kaseorg -Andre Aguiar -Andreas Lutro -Andrei Geacar -Andrew Gaul -Andrew Shymanel -Andrey Bienkowski -Andrey Bulgakov -Andrés Delfino -Andy Freeland -Andy Kluger -Ani Hayrapetyan -Aniruddha Basak -Anish Tambe -Anrs Hu -Anthony Sottile -Antoine Musso -Anton Ovchinnikov -Anton Patrushev -Antonio Alvarado Hernandez -Antony Lee -Antti Kaihola -Anubhav Patel -Anudit Nagar -Anuj Godase -AQNOUCH Mohammed -AraHaan -Arindam Choudhury -Armin Ronacher -Artem -Arun Babu Neelicattu -Ashley Manton -Ashwin Ramaswami -atse -Atsushi Odagiri -Avinash Karhana -Avner Cohen -Awit (Ah-Wit) Ghirmai -Baptiste Mispelon -Barney Gale -barneygale -Bartek Ogryczak -Bastian Venthur -Ben Bodenmiller -Ben Darnell -Ben Hoyt -Ben Mares -Ben Rosser -Bence Nagy -Benjamin Peterson -Benjamin VanEvery -Benoit Pierre -Berker Peksag -Bernard -Bernard Tyers -Bernardo B. Marques -Bernhard M. Wiedemann -Bertil Hatt -Bhavam Vidyarthi -Blazej Michalik -Bogdan Opanchuk -BorisZZZ -Brad Erickson -Bradley Ayers -Brandon L. Reiss -Brandt Bucher -Brett Randall -Brett Rosen -Brian Cristante -Brian Rosner -briantracy -BrownTruck -Bruno Oliveira -Bruno Renié -Bruno S -Bstrdsmkr -Buck Golemon -burrows -Bussonnier Matthias -bwoodsend -c22 -Caleb Martinez -Calvin Smith -Carl Meyer -Carlos Liam -Carol Willing -Carter Thayer -Cass -Chandrasekhar Atina -Chih-Hsuan Yen -Chris Brinker -Chris Hunt -Chris Jerdonek -Chris Kuehl -Chris McDonough -Chris Pawley -Chris Pryer -Chris Wolfe -Christian Clauss -Christian Heimes -Christian Oudard -Christoph Reiter -Christopher Hunt -Christopher Snyder -cjc7373 -Clark Boylan -Claudio Jolowicz -Clay McClure -Cody -Cody Soyland -Colin Watson -Collin Anderson -Connor Osborn -Cooper Lees -Cooper Ry Lees -Cory Benfield -Cory Wright -Craig Kerstiens -Cristian Sorinel -Cristina -Cristina Muñoz -Curtis Doty -cytolentino -Daan De Meyer -Dale -Damian -Damian Quiroga -Damian Shaw -Dan Black -Dan Savilonis -Dan Sully -Dane Hillard -daniel -Daniel Collins -Daniel Hahler -Daniel Holth -Daniel Jost -Daniel Katz -Daniel Shaulov -Daniele Esposti -Daniele Nicolodi -Daniele Procida -Daniil Konovalenko -Danny Hermes -Danny McClanahan -Darren Kavanagh -Dav Clark -Dave Abrahams -Dave Jones -David Aguilar -David Black -David Bordeynik -David Caro -David D Lowe -David Evans -David Hewitt -David Linke -David Poggi -David Pursehouse -David Runge -David Tucker -David Wales -Davidovich -ddelange -Deepak Sharma -Deepyaman Datta -Denise Yu -dependabot[bot] -derwolfe -Desetude -Devesh Kumar Singh -Diego Caraballo -Diego Ramirez -DiegoCaraballo -Dimitri Merejkowsky -Dimitri Papadopoulos -Dirk Stolle -Dmitry Gladkov -Dmitry Volodin -Domen Kožar -Dominic Davis-Foster -Donald Stufft -Dongweiming -doron zarhi -Dos Moonen -Douglas Thor -DrFeathers -Dustin Ingram -Dwayne Bailey -Ed Morley -Edgar Ramírez -Edgar Ramírez Mondragón -Ee Durbin -Efflam Lemaillet -efflamlemaillet -Eitan Adler -ekristina -elainechan -Eli Schwartz -Elisha Hollander -Ellen Marie Dash -Emil Burzo -Emil Styrke -Emmanuel Arias -Endoh Takanao -enoch -Erdinc Mutlu -Eric Cousineau -Eric Gillingham -Eric Hanchrow -Eric Hopper -Erik M. Bray -Erik Rose -Erwin Janssen -Eugene Vereshchagin -everdimension -Federico -Felipe Peter -Felix Yan -fiber-space -Filip Kokosiński -Filipe Laíns -Finn Womack -finnagin -Flavio Amurrio -Florian Briand -Florian Rathgeber -Francesco -Francesco Montesano -Frost Ming -Gabriel Curio -Gabriel de Perthuis -Garry Polley -gavin -gdanielson -Geoffrey Sneddon -George Song -Georgi Valkov -Georgy Pchelkin -ghost -Giftlin Rajaiah -gizmoguy1 -gkdoc -Godefroid Chapelle -Gopinath M -GOTO Hayato -gousaiyang -gpiks -Greg Roodt -Greg Ward -Guilherme Espada -Guillaume Seguin -gutsytechster -Guy Rozendorn -Guy Tuval -gzpan123 -Hanjun Kim -Hari Charan -Harsh Vardhan -harupy -Harutaka Kawamura -hauntsaninja -Henrich Hartzer -Henry Schreiner -Herbert Pfennig -Holly Stotelmyer -Honnix -Hsiaoming Yang -Hugo Lopes Tavares -Hugo van Kemenade -Hugues Bruant -Hynek Schlawack -Ian Bicking -Ian Cordasco -Ian Lee -Ian Stapleton Cordasco -Ian Wienand -Igor Kuzmitshov -Igor Sobreira -Ilan Schnell -Illia Volochii -Ilya Baryshev -Inada Naoki -Ionel Cristian Mărieș -Ionel Maries Cristian -Itamar Turner-Trauring -Ivan Pozdeev -J. Nick Koston -Jacob Kim -Jacob Walls -Jaime Sanz -jakirkham -Jakub Kuczys -Jakub Stasiak -Jakub Vysoky -Jakub Wilk -James Cleveland -James Curtin -James Firth -James Gerity -James Polley -Jan Pokorný -Jannis Leidel -Jarek Potiuk -jarondl -Jason Curtis -Jason R. Coombs -JasonMo -JasonMo1 -Jay Graves -Jean Abou Samra -Jean-Christophe Fillion-Robin -Jeff Barber -Jeff Dairiki -Jeff Widman -Jelmer Vernooij -jenix21 -Jeremy Stanley -Jeremy Zafran -Jesse Rittner -Jiashuo Li -Jim Fisher -Jim Garrison -Jiun Bae -Jivan Amara -Joe Bylund -Joe Michelini -John Paton -John T. Wodder II -John-Scott Atlakson -johnthagen -Jon Banafato -Jon Dufresne -Jon Parise -Jonas Nockert -Jonathan Herbert -Joonatan Partanen -Joost Molenaar -Jorge Niedbalski -Joseph Bylund -Joseph Long -Josh Bronson -Josh Hansen -Josh Schneier -Joshua -Juan Luis Cano Rodríguez -Juanjo Bazán -Judah Rand -Julian Berman -Julian Gethmann -Julien Demoor -Jussi Kukkonen -jwg4 -Jyrki Pulliainen -Kai Chen -Kai Mueller -Kamal Bin Mustafa -kasium -kaustav haldar -keanemind -Keith Maxwell -Kelsey Hightower -Kenneth Belitzky -Kenneth Reitz -Kevin Burke -Kevin Carter -Kevin Frommelt -Kevin R Patterson -Kexuan Sun -Kit Randel -Klaas van Schelven -KOLANICH -kpinc -Krishna Oza -Kumar McMillan -Kurt McKee -Kyle Persohn -lakshmanaram -Laszlo Kiss-Kollar -Laurent Bristiel -Laurent LAPORTE -Laurie O -Laurie Opperman -layday -Leon Sasson -Lev Givon -Lincoln de Sousa -Lipis -lorddavidiii -Loren Carvalho -Lucas Cimon -Ludovic Gasc -Lukas Geiger -Lukas Juhrich -Luke Macken -Luo Jiebin -luojiebin -luz.paz -László Kiss Kollár -M00nL1ght -Marc Abramowitz -Marc Tamlyn -Marcus Smith -Mariatta -Mark Kohler -Mark Williams -Markus Hametner -Martey Dodoo -Martin Fischer -Martin Häcker -Martin Pavlasek -Masaki -Masklinn -Matej Stuchlik -Mathew Jennings -Mathieu Bridon -Mathieu Kniewallner -Matt Bacchi -Matt Good -Matt Maker -Matt Robenolt -matthew -Matthew Einhorn -Matthew Feickert -Matthew Gilliard -Matthew Iversen -Matthew Treinish -Matthew Trumbell -Matthew Willson -Matthias Bussonnier -mattip -Maurits van Rees -Max W Chase -Maxim Kurnikov -Maxime Rouyrre -mayeut -mbaluna -mdebi -memoselyk -meowmeowcat -Michael -Michael Aquilina -Michael E. Karpeles -Michael Klich -Michael Mintz -Michael Williamson -michaelpacer -Michał Górny -Mickaël Schoentgen -Miguel Araujo Perez -Mihir Singh -Mike -Mike Hendricks -Min RK -MinRK -Miro Hrončok -Monica Baluna -montefra -Monty Taylor -Muha Ajjan‮ -Nadav Wexler -Nahuel Ambrosini -Nate Coraor -Nate Prewitt -Nathan Houghton -Nathaniel J. Smith -Nehal J Wani -Neil Botelho -Nguyễn Gia Phong -Nicholas Serra -Nick Coghlan -Nick Stenning -Nick Timkovich -Nicolas Bock -Nicole Harris -Nikhil Benesch -Nikhil Ladha -Nikita Chepanov -Nikolay Korolev -Nipunn Koorapati -Nitesh Sharma -Niyas Sait -Noah -Noah Gorny -Nowell Strite -NtaleGrey -nvdv -OBITORASU -Ofek Lev -ofrinevo -Oliver Freund -Oliver Jeeves -Oliver Mannion -Oliver Tonnhofer -Olivier Girardot -Olivier Grisel -Ollie Rutherfurd -OMOTO Kenji -Omry Yadan -onlinejudge95 -Oren Held -Oscar Benjamin -Oz N Tiram -Pachwenko -Patrick Dubroy -Patrick Jenkins -Patrick Lawson -patricktokeeffe -Patrik Kopkan -Paul Ganssle -Paul Kehrer -Paul Moore -Paul Nasrat -Paul Oswald -Paul van der Linden -Paulus Schoutsen -Pavel Safronov -Pavithra Eswaramoorthy -Pawel Jasinski -Paweł Szramowski -Pekka Klärck -Peter Gessler -Peter Lisák -Peter Waller -petr-tik -Phaneendra Chiruvella -Phil Elson -Phil Freo -Phil Pennock -Phil Whelan -Philip Jägenstedt -Philip Molloy -Philippe Ombredanne -Pi Delport -Pierre-Yves Rofes -Pieter Degroote -pip -Prabakaran Kumaresshan -Prabhjyotsing Surjit Singh Sodhi -Prabhu Marappan -Pradyun Gedam -Prashant Sharma -Pratik Mallya -pre-commit-ci[bot] -Preet Thakkar -Preston Holmes -Przemek Wrzos -Pulkit Goyal -q0w -Qiangning Hong -Qiming Xu -Quentin Lee -Quentin Pradet -R. David Murray -Rafael Caricio -Ralf Schmitt -Razzi Abuissa -rdb -Reece Dunham -Remi Rampin -Rene Dudfield -Riccardo Magliocchetti -Riccardo Schirone -Richard Jones -Richard Si -Ricky Ng-Adam -Rishi -RobberPhex -Robert Collins -Robert McGibbon -Robert Pollak -Robert T. McGibbon -robin elisha robinson -Roey Berman -Rohan Jain -Roman Bogorodskiy -Roman Donchenko -Romuald Brunet -ronaudinho -Ronny Pfannschmidt -Rory McCann -Ross Brattain -Roy Wellington Ⅳ -Ruairidh MacLeod -Russell Keith-Magee -Ryan Shepherd -Ryan Wooden -ryneeverett -Sachi King -Salvatore Rinchiera -sandeepkiran-js -Sander Van Balen -Savio Jomton -schlamar -Scott Kitterman -Sean -seanj -Sebastian Jordan -Sebastian Schaetz -Segev Finer -SeongSoo Cho -Sergey Vasilyev -Seth Michael Larson -Seth Woodworth -Shahar Epstein -Shantanu -shireenrao -Shivansh-007 -Shlomi Fish -Shovan Maity -Simeon Visser -Simon Cross -Simon Pichugin -sinoroc -sinscary -snook92 -socketubs -Sorin Sbarnea -Srinivas Nyayapati -Stavros Korokithakis -Stefan Scherfke -Stefano Rivera -Stephan Erb -Stephen Rosen -stepshal -Steve (Gadget) Barnes -Steve Barnes -Steve Dower -Steve Kowalik -Steven Myint -Steven Silvester -stonebig -studioj -Stéphane Bidoul -Stéphane Bidoul (ACSONE) -Stéphane Klein -Sumana Harihareswara -Surbhi Sharma -Sviatoslav Sydorenko -Swat009 -Sylvain -Takayuki SHIMIZUKAWA -Taneli Hukkinen -tbeswick -Thiago -Thijs Triemstra -Thomas Fenzl -Thomas Grainger -Thomas Guettler -Thomas Johansson -Thomas Kluyver -Thomas Smith -Thomas VINCENT -Tim D. Smith -Tim Gates -Tim Harder -Tim Heap -tim smith -tinruufu -Tobias Hermann -Tom Forbes -Tom Freudenheim -Tom V -Tomas Hrnciar -Tomas Orsava -Tomer Chachamu -Tommi Enenkel | AnB -Tomáš Hrnčiar -Tony Beswick -Tony Narlock -Tony Zhaocheng Tan -TonyBeswick -toonarmycaptain -Toshio Kuratomi -toxinu -Travis Swicegood -Tushar Sadhwani -Tzu-ping Chung -Valentin Haenel -Victor Stinner -victorvpaulo -Vikram - Google -Viktor Szépe -Ville Skyttä -Vinay Sajip -Vincent Philippon -Vinicyus Macedo -Vipul Kumar -Vitaly Babiy -Vladimir Fokow -Vladimir Rutsky -W. Trevor King -Wil Tan -Wilfred Hughes -William Edwards -William ML Leslie -William T Olson -William Woodruff -Wilson Mo -wim glenn -Winson Luk -Wolfgang Maier -Wu Zhenyu -XAMES3 -Xavier Fernandez -xoviat -xtreak -YAMAMOTO Takashi -Yen Chi Hsuan -Yeray Diaz Diaz -Yoval P -Yu Jian -Yuan Jing Vincent Yan -Yusuke Hayashi -Zearin -Zhiping Deng -ziebam -Zvezdan Petkovic -Łukasz Langa -Роман Донченко -Семён Марьясин -‮rekcäH nitraM‮ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt deleted file mode 100644 index 8e7b65e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA deleted file mode 100644 index e5b45bd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA +++ /dev/null @@ -1,88 +0,0 @@ -Metadata-Version: 2.1 -Name: pip -Version: 24.0 -Summary: The PyPA recommended tool for installing Python packages. -Author-email: The pip developers -License: MIT -Project-URL: Homepage, https://pip.pypa.io/ -Project-URL: Documentation, https://pip.pypa.io -Project-URL: Source, https://github.com/pypa/pip -Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: License :: OSI Approved :: MIT License -Classifier: Topic :: Software Development :: Build Tools -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3 :: Only -Classifier: Programming Language :: Python :: 3.7 -Classifier: Programming Language :: Python :: 3.8 -Classifier: Programming Language :: Python :: 3.9 -Classifier: Programming Language :: Python :: 3.10 -Classifier: Programming Language :: Python :: 3.11 -Classifier: Programming Language :: Python :: 3.12 -Classifier: Programming Language :: Python :: Implementation :: CPython -Classifier: Programming Language :: Python :: Implementation :: PyPy -Requires-Python: >=3.7 -Description-Content-Type: text/x-rst -License-File: LICENSE.txt -License-File: AUTHORS.txt - -pip - The Python Package Installer -================================== - -.. image:: https://img.shields.io/pypi/v/pip.svg - :target: https://pypi.org/project/pip/ - :alt: PyPI - -.. image:: https://img.shields.io/pypi/pyversions/pip - :target: https://pypi.org/project/pip - :alt: PyPI - Python Version - -.. image:: https://readthedocs.org/projects/pip/badge/?version=latest - :target: https://pip.pypa.io/en/latest - :alt: Documentation - -pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. - -Please take a look at our documentation for how to install and use pip: - -* `Installation`_ -* `Usage`_ - -We release updates regularly, with a new version every 3 months. Find more details in our documentation: - -* `Release notes`_ -* `Release process`_ - -If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: - -* `Issue tracking`_ -* `Discourse channel`_ -* `User IRC`_ - -If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: - -* `GitHub page`_ -* `Development documentation`_ -* `Development IRC`_ - -Code of Conduct ---------------- - -Everyone interacting in the pip project's codebases, issue trackers, chat -rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. - -.. _package installer: https://packaging.python.org/guides/tool-recommendations/ -.. _Python Package Index: https://pypi.org -.. _Installation: https://pip.pypa.io/en/stable/installation/ -.. _Usage: https://pip.pypa.io/en/stable/ -.. _Release notes: https://pip.pypa.io/en/stable/news.html -.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ -.. _GitHub page: https://github.com/pypa/pip -.. _Development documentation: https://pip.pypa.io/en/latest/development -.. _Issue tracking: https://github.com/pypa/pip/issues -.. _Discourse channel: https://discuss.python.org/c/packaging -.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa -.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev -.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD deleted file mode 100644 index b3f3ac1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD +++ /dev/null @@ -1,1024 +0,0 @@ -../../../bin/pip,sha256=UL6iTxWnUQ8IKAJIZcczKzlzS8Ta7dv0Os0Wx0Zm0S0,280 -../../../bin/pip3,sha256=UL6iTxWnUQ8IKAJIZcczKzlzS8Ta7dv0Os0Wx0Zm0S0,280 -../../../bin/pip3.11,sha256=UL6iTxWnUQ8IKAJIZcczKzlzS8Ta7dv0Os0Wx0Zm0S0,280 -pip-24.0.dist-info/AUTHORS.txt,sha256=SwXm4nkwRkmtnO1ZY-dLy7EPeoQNXMNLby5CN3GlNhY,10388 -pip-24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -pip-24.0.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 -pip-24.0.dist-info/METADATA,sha256=kNEfJ3_Vho2mee4lfJdlbd5RHIqsfQJSMUB-bOkIOeI,3581 -pip-24.0.dist-info/RECORD,, -pip-24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip-24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92 -pip-24.0.dist-info/entry_points.txt,sha256=ynZN1_707_L23Oa8_O5LOxEoccj1nDa4xHT5galfN7o,125 -pip-24.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -pip/__init__.py,sha256=oAk1nFpLmUVS5Ln7NxvNoGUn5Vkn6FGQjPaNDf8Q8pk,355 -pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 -pip/__pip-runner__.py,sha256=EnrfKmKMzWAdqg_JicLCOP9Y95Ux7zHh4ObvqLtQcjo,1444 -pip/__pycache__/__init__.cpython-311.pyc,, -pip/__pycache__/__main__.cpython-311.pyc,, -pip/__pycache__/__pip-runner__.cpython-311.pyc,, -pip/_internal/__init__.py,sha256=iqZ5-YQsQV08tkUc7L806Reop6tguLFWf70ySF6be0Y,515 -pip/_internal/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/__pycache__/build_env.cpython-311.pyc,, -pip/_internal/__pycache__/cache.cpython-311.pyc,, -pip/_internal/__pycache__/configuration.cpython-311.pyc,, -pip/_internal/__pycache__/exceptions.cpython-311.pyc,, -pip/_internal/__pycache__/main.cpython-311.pyc,, -pip/_internal/__pycache__/pyproject.cpython-311.pyc,, -pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc,, -pip/_internal/__pycache__/wheel_builder.cpython-311.pyc,, -pip/_internal/build_env.py,sha256=1ESpqw0iupS_K7phZK5zshVE5Czy9BtGLFU4W6Enva8,10243 -pip/_internal/cache.py,sha256=uiYD-9F0Bv1C8ZyWE85lpzDmQf7hcUkgL99GmI8I41Q,10370 -pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 -pip/_internal/cli/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc,, -pip/_internal/cli/__pycache__/base_command.cpython-311.pyc,, -pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc,, -pip/_internal/cli/__pycache__/command_context.cpython-311.pyc,, -pip/_internal/cli/__pycache__/main.cpython-311.pyc,, -pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc,, -pip/_internal/cli/__pycache__/parser.cpython-311.pyc,, -pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc,, -pip/_internal/cli/__pycache__/req_command.cpython-311.pyc,, -pip/_internal/cli/__pycache__/spinners.cpython-311.pyc,, -pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc,, -pip/_internal/cli/autocompletion.py,sha256=_br_5NgSxSuvPjMF0MLHzS5s6BpSkQAQHKrLK89VauM,6690 -pip/_internal/cli/base_command.py,sha256=iuVWGa2oTq7gBReo0er3Z0tXJ2oqBIC6QjDHcnDhKXY,8733 -pip/_internal/cli/cmdoptions.py,sha256=1EIm8yMixQMELO4QzogdIoWkvIlQqlAW0YnPeOmnvEA,30064 -pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 -pip/_internal/cli/main.py,sha256=Uzxt_YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ,2816 -pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 -pip/_internal/cli/parser.py,sha256=KW6C3-7-4ErTNB0TfLTKwOdHcd-qefCeGnrOoE2r0RQ,10781 -pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968 -pip/_internal/cli/req_command.py,sha256=c7_XHABnXmD3_qlK9-r37KqdKBAcgmVKvQ2WcTrNLfc,18369 -pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 -pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 -pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 -pip/_internal/commands/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/commands/__pycache__/cache.cpython-311.pyc,, -pip/_internal/commands/__pycache__/check.cpython-311.pyc,, -pip/_internal/commands/__pycache__/completion.cpython-311.pyc,, -pip/_internal/commands/__pycache__/configuration.cpython-311.pyc,, -pip/_internal/commands/__pycache__/debug.cpython-311.pyc,, -pip/_internal/commands/__pycache__/download.cpython-311.pyc,, -pip/_internal/commands/__pycache__/freeze.cpython-311.pyc,, -pip/_internal/commands/__pycache__/hash.cpython-311.pyc,, -pip/_internal/commands/__pycache__/help.cpython-311.pyc,, -pip/_internal/commands/__pycache__/index.cpython-311.pyc,, -pip/_internal/commands/__pycache__/inspect.cpython-311.pyc,, -pip/_internal/commands/__pycache__/install.cpython-311.pyc,, -pip/_internal/commands/__pycache__/list.cpython-311.pyc,, -pip/_internal/commands/__pycache__/search.cpython-311.pyc,, -pip/_internal/commands/__pycache__/show.cpython-311.pyc,, -pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc,, -pip/_internal/commands/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 -pip/_internal/commands/check.py,sha256=Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA,1782 -pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 -pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 -pip/_internal/commands/debug.py,sha256=63972uUCeMIGOdMMVeIUGrOjTOqTVWplFC82a-hcKyA,6777 -pip/_internal/commands/download.py,sha256=e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ,5335 -pip/_internal/commands/freeze.py,sha256=2qjQrH9KWi5Roav0CuR7vc7hWm4uOi_0l6tp3ESKDHM,3172 -pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 -pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 -pip/_internal/commands/index.py,sha256=CNXQer_PeZKSJooURcCFCBEKGfwyNoUWYP_MWczAcOM,4775 -pip/_internal/commands/inspect.py,sha256=2wSPt9yfr3r6g-s2S5L6PvRtaHNVyb4TuodMStJ39cw,3188 -pip/_internal/commands/install.py,sha256=VxDd-BD3a27ApeE2OK34rfBXS6Zo2wtemK9-HCwPqxM,28782 -pip/_internal/commands/list.py,sha256=7wRUUmdyyOknl-WZYbO_LtFQxHlWod3pjOY9yYH435o,12450 -pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 -pip/_internal/commands/show.py,sha256=t5jia4zcYJRJZy4U_Von7zMl03hJmmcofj6oDNTnj7Y,6419 -pip/_internal/commands/uninstall.py,sha256=OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y,3886 -pip/_internal/commands/wheel.py,sha256=CSnX8Pmf1oPCnd7j7bn1_f58G9KHNiAblvVJ5zykN-A,6476 -pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 -pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 -pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/distributions/__pycache__/base.cpython-311.pyc,, -pip/_internal/distributions/__pycache__/installed.cpython-311.pyc,, -pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc,, -pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/distributions/base.py,sha256=oRSEvnv2ZjBnargamnv2fcJa1n6gUDKaW0g6CWSEpWs,1743 -pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 -pip/_internal/distributions/sdist.py,sha256=4K3V0VNMllHbBzCJibjwd_tylUKpmIdu2AQyhplvCQo,6709 -pip/_internal/distributions/wheel.py,sha256=-ma3sOtUQj0AxXCEb6_Fhmjl3nh4k3A0HC2taAb2N-4,1277 -pip/_internal/exceptions.py,sha256=TmF1iNFEneSWaemwlg6a5bpPuq2cMHK7d1-SvjsQHb0,23634 -pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 -pip/_internal/index/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/index/__pycache__/collector.cpython-311.pyc,, -pip/_internal/index/__pycache__/package_finder.cpython-311.pyc,, -pip/_internal/index/__pycache__/sources.cpython-311.pyc,, -pip/_internal/index/collector.py,sha256=sH0tL_cOoCk6pLLfCSGVjFM4rPEJtllF-VobvAvLSH4,16590 -pip/_internal/index/package_finder.py,sha256=S_nC8gzVIMY6ikWfKoSOzRtoesUqnfNhAPl_BwSOusA,37843 -pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 -pip/_internal/locations/__init__.py,sha256=Dh8LJWG8LRlDK4JIj9sfRF96TREzE--N_AIlx7Tqoe4,15365 -pip/_internal/locations/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc,, -pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc,, -pip/_internal/locations/__pycache__/base.cpython-311.pyc,, -pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 -pip/_internal/locations/_sysconfig.py,sha256=jyNVtUfMIf0mtyY-Xp1m9yQ8iwECozSVVFmjkN9a2yw,7680 -pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 -pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 -pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 -pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/metadata/__pycache__/_json.cpython-311.pyc,, -pip/_internal/metadata/__pycache__/base.cpython-311.pyc,, -pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc,, -pip/_internal/metadata/_json.py,sha256=Rz5M5ciSNvITwaTQR6NfN8TgKgM5WfTws4D6CFknovE,2627 -pip/_internal/metadata/base.py,sha256=l3Wgku4xlgr8s4p6fS-3qQ4QKOpPbWLRwi5d9omEFG4,25907 -pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 -pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc,, -pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc,, -pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc,, -pip/_internal/metadata/importlib/_compat.py,sha256=GAe_prIfCE4iUylrnr_2dJRlkkBVRUbOidEoID7LPoE,1882 -pip/_internal/metadata/importlib/_dists.py,sha256=UPl1wUujFqiwiltRJ1tMF42WRINO1sSpNNlYQ2mX0mk,8297 -pip/_internal/metadata/importlib/_envs.py,sha256=XTaFIYERP2JF0QUZuPx2ETiugXbPEcZ8q8ZKeht6Lpc,7456 -pip/_internal/metadata/pkg_resources.py,sha256=opjw4IBSqHvie6sXJ_cbT42meygoPEUfNURJuWZY7sk,10035 -pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 -pip/_internal/models/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/models/__pycache__/candidate.cpython-311.pyc,, -pip/_internal/models/__pycache__/direct_url.cpython-311.pyc,, -pip/_internal/models/__pycache__/format_control.cpython-311.pyc,, -pip/_internal/models/__pycache__/index.cpython-311.pyc,, -pip/_internal/models/__pycache__/installation_report.cpython-311.pyc,, -pip/_internal/models/__pycache__/link.cpython-311.pyc,, -pip/_internal/models/__pycache__/scheme.cpython-311.pyc,, -pip/_internal/models/__pycache__/search_scope.cpython-311.pyc,, -pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc,, -pip/_internal/models/__pycache__/target_python.cpython-311.pyc,, -pip/_internal/models/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/models/candidate.py,sha256=hEPu8VdGE5qVASv6vLz-R-Rgh5-7LMbai1jgthMCd8M,931 -pip/_internal/models/direct_url.py,sha256=FwouYBKcqckh7B-k2H3HVgRhhFTukFwqiS3kfvtFLSk,6889 -pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 -pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 -pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 -pip/_internal/models/link.py,sha256=XirOAGv1jgMu7vu87kuPbohGj7VHpwVrd2q3KUgVQNg,20777 -pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 -pip/_internal/models/search_scope.py,sha256=ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c,4643 -pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 -pip/_internal/models/target_python.py,sha256=34EkorrMuRvRp-bjqHKJ-bOO71m9xdjN2b8WWFEC2HU,4272 -pip/_internal/models/wheel.py,sha256=YqazoIZyma_Q1ejFa1C7NHKQRRWlvWkdK96VRKmDBeI,3600 -pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 -pip/_internal/network/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/network/__pycache__/auth.cpython-311.pyc,, -pip/_internal/network/__pycache__/cache.cpython-311.pyc,, -pip/_internal/network/__pycache__/download.cpython-311.pyc,, -pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc,, -pip/_internal/network/__pycache__/session.cpython-311.pyc,, -pip/_internal/network/__pycache__/utils.cpython-311.pyc,, -pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc,, -pip/_internal/network/auth.py,sha256=TC-OcW2KU4W6R1hU4qPgQXvVH54adACpZz6sWq-R9NA,20541 -pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 -pip/_internal/network/download.py,sha256=i0Tn55CD5D7XYEFY3TxiYaCf0OaaTQ6SScNgCsSeV14,6086 -pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 -pip/_internal/network/session.py,sha256=9tqEDD8JiVaFdplOEXJxNo9cjRfBZ6RIa0yQQ_qBNiM,18698 -pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073 -pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 -pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/operations/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/operations/__pycache__/check.cpython-311.pyc,, -pip/_internal/operations/__pycache__/freeze.cpython-311.pyc,, -pip/_internal/operations/__pycache__/prepare.cpython-311.pyc,, -pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/operations/build/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/build_tracker.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/metadata.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/metadata_editable.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/wheel_editable.cpython-311.pyc,, -pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-311.pyc,, -pip/_internal/operations/build/build_tracker.py,sha256=z-H5DOknZdBa3dh2Vq6VBMY5qLYIKmlj2p6CGZK5Lc8,4832 -pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 -pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 -pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 -pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 -pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 -pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 -pip/_internal/operations/check.py,sha256=fsqA88iGaqftCr2tlP3sSU202CSkoODRtW0O-JU9M4Y,6806 -pip/_internal/operations/freeze.py,sha256=uqoeTAf6HOYVMR2UgAT8N85UZoGEVEoQdan_Ao6SOfk,9816 -pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 -pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc,, -pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/operations/install/editable_legacy.py,sha256=YeR0KadWXw_ZheC1NtAG1qVIEkOgRGHc23x-YtGW7NU,1282 -pip/_internal/operations/install/wheel.py,sha256=9hGb1c4bRnPIb2FG7CtUSPfPxqprmHQBtwIAlWPNTtE,27311 -pip/_internal/operations/prepare.py,sha256=57Oq87HfunX3Rbqp47FdaJr9cHbAKUm_3gv7WhBAqbE,28128 -pip/_internal/pyproject.py,sha256=4Xszp11xgr126yzG6BbJA0oaQ9WXuhb0jyUb-y_6lPQ,7152 -pip/_internal/req/__init__.py,sha256=TELFgZOof3lhMmaICVWL9U7PlhXo9OufokbMAJ6J2GI,2738 -pip/_internal/req/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/req/__pycache__/constructors.cpython-311.pyc,, -pip/_internal/req/__pycache__/req_file.cpython-311.pyc,, -pip/_internal/req/__pycache__/req_install.cpython-311.pyc,, -pip/_internal/req/__pycache__/req_set.cpython-311.pyc,, -pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc,, -pip/_internal/req/constructors.py,sha256=8hlY56imEthLORRwmloyKz3YOyXymIaKsNB6P9ewvNI,19018 -pip/_internal/req/req_file.py,sha256=M8ttOZL-PwAj7scPElhW3ZD2hiD9mm_6FJAGIbwAzEI,17790 -pip/_internal/req/req_install.py,sha256=wtOPxkyRSM8comTks8oL1Gp2oyGqbH7JwIDRci2QiPk,35460 -pip/_internal/req/req_set.py,sha256=iMYDUToSgkxFyrP_OrTtPSgw4dwjRyGRDpGooTqeA4Y,4704 -pip/_internal/req/req_uninstall.py,sha256=nmvTQaRCC0iu-5Tw0djlXJhSj6WmqHRvT3qkkEdC35E,24551 -pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/resolution/__pycache__/base.cpython-311.pyc,, -pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 -pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc,, -pip/_internal/resolution/legacy/resolver.py,sha256=Xk24jQ62GvLr4Mc7IjN_qiO88qp0BImzVmPIFz9QLOE,24025 -pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc,, -pip/_internal/resolution/resolvelib/base.py,sha256=jg5COmHLhmBIKOR-4spdJD3jyULYa1BdsqiBu2YJnJ4,5173 -pip/_internal/resolution/resolvelib/candidates.py,sha256=19Ki91Po-MSxBknGIfOGkaWkFdOznN0W_nKv7jL28L0,21052 -pip/_internal/resolution/resolvelib/factory.py,sha256=vqqk-hjchdhShwWVdeW2_A-5ZblLhE_nC_v3Mhz4Svc,32292 -pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 -pip/_internal/resolution/resolvelib/provider.py,sha256=4t23ivjruqM6hKBX1KpGiTt-M4HGhRcZnGLV0c01K7U,9824 -pip/_internal/resolution/resolvelib/reporter.py,sha256=YFm9hQvz4DFCbjZeFTQ56hTz3Ac-mDBnHkeNRVvMHLY,3100 -pip/_internal/resolution/resolvelib/requirements.py,sha256=-kJONP0WjDfdTvBAs2vUXPgAnOyNIBEAXY4b72ogtPE,5696 -pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 -pip/_internal/self_outdated_check.py,sha256=saxQLB8UzIFtMScquytG10TOTsYVFJQ_mkW1NY-46wE,8378 -pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_internal/utils/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc,, -pip/_internal/utils/__pycache__/_log.cpython-311.pyc,, -pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc,, -pip/_internal/utils/__pycache__/compat.cpython-311.pyc,, -pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc,, -pip/_internal/utils/__pycache__/datetime.cpython-311.pyc,, -pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc,, -pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc,, -pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc,, -pip/_internal/utils/__pycache__/encoding.cpython-311.pyc,, -pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc,, -pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc,, -pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc,, -pip/_internal/utils/__pycache__/glibc.cpython-311.pyc,, -pip/_internal/utils/__pycache__/hashes.cpython-311.pyc,, -pip/_internal/utils/__pycache__/logging.cpython-311.pyc,, -pip/_internal/utils/__pycache__/misc.cpython-311.pyc,, -pip/_internal/utils/__pycache__/models.cpython-311.pyc,, -pip/_internal/utils/__pycache__/packaging.cpython-311.pyc,, -pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc,, -pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc,, -pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc,, -pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc,, -pip/_internal/utils/__pycache__/urls.cpython-311.pyc,, -pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc,, -pip/_internal/utils/__pycache__/wheel.cpython-311.pyc,, -pip/_internal/utils/_jaraco_text.py,sha256=yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY,3351 -pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 -pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 -pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 -pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 -pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 -pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 -pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 -pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 -pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 -pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 -pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122 -pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 -pip/_internal/utils/glibc.py,sha256=Mesxxgg3BLxheLZx-dSf30b6gKpOgdVXw6W--uHSszQ,3113 -pip/_internal/utils/hashes.py,sha256=MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm-bHE,5118 -pip/_internal/utils/logging.py,sha256=fdtuZJ-AKkqwDTANDvGcBEpssL8el7T1jnwk1CnZl3Y,11603 -pip/_internal/utils/misc.py,sha256=fNXwaeeikvnUt4CPMFIL4-IQbZDxxjj4jDpzCi4ZsOw,23623 -pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 -pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 -pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 -pip/_internal/utils/subprocess.py,sha256=zzdimb75jVLE1GU4WlTZ055gczhD7n1y1xTcNc7vNZQ,9207 -pip/_internal/utils/temp_dir.py,sha256=DUAw22uFruQdK43i2L2K53C-CDjRCPeAsBKJpu-rHQ4,9312 -pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821 -pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 -pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 -pip/_internal/utils/wheel.py,sha256=i4BwUNHattzN0ixy3HBAF04tZPRh2CcxaT6t86viwkE,4499 -pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 -pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc,, -pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc,, -pip/_internal/vcs/__pycache__/git.cpython-311.pyc,, -pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc,, -pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc,, -pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc,, -pip/_internal/vcs/bazaar.py,sha256=j0oin0fpGRHcCFCxEcpPCQoFEvA-DMLULKdGP8Nv76o,3519 -pip/_internal/vcs/git.py,sha256=CeKBGJnl6uskvvjkAUXrJVxbHJrpS_B_pyfFdjL3CRc,18121 -pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 -pip/_internal/vcs/subversion.py,sha256=vhZs8L-TNggXqM1bbhl-FpbxE3TrIB6Tgnx8fh3S2HE,11729 -pip/_internal/vcs/versioncontrol.py,sha256=3eIjtOMYvOY5qP6BMYIYDZ375CSuec6kSEB0bOo1cSs,22787 -pip/_internal/wheel_builder.py,sha256=qTTzQV8F6b1jNsFCda1TRQC8J7gK-m7iuRNgKo7Dj68,11801 -pip/_vendor/__init__.py,sha256=U51NPwXdA-wXOiANIQncYjcMp6txgeOL5nHxksJeyas,4993 -pip/_vendor/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/__pycache__/six.cpython-311.pyc,, -pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc,, -pip/_vendor/cachecontrol/__init__.py,sha256=ctHagMhQXuvQDdm4TirZrwDOT5H8oBNAJqzdKI6sovk,676 -pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc,, -pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc,, -pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 -pip/_vendor/cachecontrol/adapter.py,sha256=_CcWvUP9048qAZjsNqViaHbdcLs9mmFNixVfpO7oebE,6392 -pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 -pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 -pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc,, -pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc,, -pip/_vendor/cachecontrol/caches/file_cache.py,sha256=3z8AWKD-vfKeiJqIzLmJyIYtR2yd6Tsh3u1TyLRQoIQ,5352 -pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 -pip/_vendor/cachecontrol/controller.py,sha256=keCFA3ZaNVaWTwHd6F1zqWhb4vyvNx_UvZuo5iIYMfo,18384 -pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 -pip/_vendor/cachecontrol/heuristics.py,sha256=fdFbk9W8IeLrjteIz_fK4mj2HD_Y7COXF2Uc8TgjT1c,4828 -pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/cachecontrol/serialize.py,sha256=0dHeMaDwysVAAnGVlhMOP4tDliohgNK0Jxk_zsOiWxw,7173 -pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 -pip/_vendor/certifi/__init__.py,sha256=L_j-d0kYuA_MzA2_2hraF1ovf6KT6DTquRdV3paQwOk,94 -pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 -pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc,, -pip/_vendor/certifi/__pycache__/core.cpython-311.pyc,, -pip/_vendor/certifi/cacert.pem,sha256=eU0Dn_3yd8BH4m8sfVj4Glhl2KDrcCSg-sEWT-pNJ88,281617 -pip/_vendor/certifi/core.py,sha256=ZwiOsv-sD_ouU1ft8wy_xZ3LQ7UbcVzyqj2XNyrsZis,4279 -pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/chardet/__init__.py,sha256=57R-HSxj0PWmILMN0GFmUNqEMfrEVSamXyjD-W6_fbs,4797 -pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc,, -pip/_vendor/chardet/__pycache__/version.cpython-311.pyc,, -pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274 -pip/_vendor/chardet/big5prober.py,sha256=lPMfwCX6v2AaPgvFh_cSWZcgLDbWiFCHLZ_p9RQ9uxE,1763 -pip/_vendor/chardet/chardistribution.py,sha256=13B8XUG4oXDuLdXvfbIWwLFeR-ZU21AqTS1zcdON8bU,10032 -pip/_vendor/chardet/charsetgroupprober.py,sha256=UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M-fZJu3OlWyg,3915 -pip/_vendor/chardet/charsetprober.py,sha256=L3t8_wIOov8em-vZWOcbkdsrwe43N6_gqNh5pH7WPd4,5420 -pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc,, -pip/_vendor/chardet/cli/chardetect.py,sha256=zibMVg5RpKb-ME9_7EYG4ZM2Sf07NHcQzZ12U-rYJho,3242 -pip/_vendor/chardet/codingstatemachine.py,sha256=K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv_yE,3732 -pip/_vendor/chardet/codingstatemachinedict.py,sha256=0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr_66ER4EHjuMiMc,542 -pip/_vendor/chardet/cp949prober.py,sha256=0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI,1860 -pip/_vendor/chardet/enums.py,sha256=TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5_bCkhY8,1683 -pip/_vendor/chardet/escprober.py,sha256=Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A,4006 -pip/_vendor/chardet/escsm.py,sha256=AqyXpA2FQFD7k-buBty_7itGEYkhmVa8X09NLRul3QM,12176 -pip/_vendor/chardet/eucjpprober.py,sha256=5KYaM9fsxkRYzw1b5k0fL-j_-ezIw-ij9r97a9MHxLY,3934 -pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566 -pip/_vendor/chardet/euckrprober.py,sha256=hiFT6wM174GIwRvqDsIcuOc-dDsq2uPKMKbyV8-1Xnc,1753 -pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913 -pip/_vendor/chardet/euctwprober.py,sha256=NxbpNdBtU0VFI0bKfGfDkpP7S2_8_6FlO87dVH0ogws,1753 -pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735 -pip/_vendor/chardet/gb2312prober.py,sha256=KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0,1759 -pip/_vendor/chardet/hebrewprober.py,sha256=96T_Lj_OmW-fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE,14537 -pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796 -pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498 -pip/_vendor/chardet/johabprober.py,sha256=O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU,1752 -pip/_vendor/chardet/jpcntx.py,sha256=uhHrYWkLxE_rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA,27055 -pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562 -pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484 -pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196 -pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363 -pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035 -pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774 -pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372 -pip/_vendor/chardet/latin1prober.py,sha256=p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g,5380 -pip/_vendor/chardet/macromanprober.py,sha256=9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL-p1JWcOY,6077 -pip/_vendor/chardet/mbcharsetprober.py,sha256=Wr04WNI4F3X_VxEverNG-H25g7u-MDDKlNt-JGj-_uU,3715 -pip/_vendor/chardet/mbcsgroupprober.py,sha256=iRpaNBjV0DNwYPu_z6TiHgRpwYahiM7ztI_4kZ4Uz9A,2131 -pip/_vendor/chardet/mbcssm.py,sha256=hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw,30391 -pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc,, -pip/_vendor/chardet/metadata/languages.py,sha256=FhvBIdZFxRQ-dTwkb_0madRKgVBCaUMQz9I5xqjE5iQ,13560 -pip/_vendor/chardet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/chardet/resultdict.py,sha256=ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy_SSLPXKCdt5M,402 -pip/_vendor/chardet/sbcharsetprober.py,sha256=-nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U,6400 -pip/_vendor/chardet/sbcsgroupprober.py,sha256=gcgI0fOfgw_3YTClpbra_MNxwyEyJ3eUXraoLHYb59E,4137 -pip/_vendor/chardet/sjisprober.py,sha256=aqQufMzRw46ZpFlzmYaYeT2-nzmKb-hmcrApppJ862k,4007 -pip/_vendor/chardet/universaldetector.py,sha256=xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520,14848 -pip/_vendor/chardet/utf1632prober.py,sha256=pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8-eQ,8505 -pip/_vendor/chardet/utf8prober.py,sha256=8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH_i8_TnVw,2812 -pip/_vendor/chardet/version.py,sha256=lGtJcxGM44Qz4Cbk4rbbmrKxnNr1-97U25TameLehZw,244 -pip/_vendor/colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 -pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc,, -pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc,, -pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc,, -pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc,, -pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc,, -pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 -pip/_vendor/colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 -pip/_vendor/colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 -pip/_vendor/colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 -pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc,, -pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc,, -pip/_vendor/colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 -pip/_vendor/colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 -pip/_vendor/colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 -pip/_vendor/colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 -pip/_vendor/colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 -pip/_vendor/colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 -pip/_vendor/colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 -pip/_vendor/colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 -pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 -pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/database.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/index.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/util.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/version.cpython-311.pyc,, -pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc,, -pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 -pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 -pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 -pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 -pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 -pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 -pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 -pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 -pip/_vendor/distlib/scripts.py,sha256=nQFXN6G7nOWNDUyxirUep-3WOlJhB7McvCs9zOnkGTI,18315 -pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 -pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 -pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 -pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 -pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 -pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 -pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 -pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 -pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 -pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 -pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 -pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc,, -pip/_vendor/distro/__pycache__/distro.cpython-311.pyc,, -pip/_vendor/distro/distro.py,sha256=UZO1LjIhtFCMdlbiz39gj3raV-Amf3SBwzGzfApiMHw,49330 -pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 -pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/codec.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/compat.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/core.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc,, -pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc,, -pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 -pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 -pip/_vendor/idna/core.py,sha256=1JxchwKzkxBSn7R_oCE12oBu3eVux0VzdxolmIad24M,12950 -pip/_vendor/idna/idnadata.py,sha256=xUjqKqiJV8Ho_XzBpAtv5JFoVPSupK-SUXvtjygUHqw,44375 -pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 -pip/_vendor/idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 -pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 -pip/_vendor/msgpack/__init__.py,sha256=hyGhlnmcJkxryJBKC3X5FnEph375kQoL_mG8LZUuXgY,1132 -pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc,, -pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc,, -pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc,, -pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 -pip/_vendor/msgpack/ext.py,sha256=C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M,6079 -pip/_vendor/msgpack/fallback.py,sha256=tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g,34544 -pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 -pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 -pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc,, -pip/_vendor/packaging/__pycache__/version.cpython-311.pyc,, -pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 -pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 -pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 -pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 -pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 -pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 -pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 -pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 -pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 -pip/_vendor/pkg_resources/__init__.py,sha256=hTAeJCNYb7dJseIDVsYK3mPQep_gphj4tQh-bspX8bg,109364 -pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/platformdirs/__init__.py,sha256=SkhEYVyC_HUHC6KX7n4M_6coyRMtEB38QMyOYIAX6Yk,20155 -pip/_vendor/platformdirs/__main__.py,sha256=fVvSiTzr2-RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ,1476 -pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc,, -pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc,, -pip/_vendor/platformdirs/android.py,sha256=y_EEMKwYl2-bzYBDovksSn8m76on0Lda8eyJksVQE9U,7211 -pip/_vendor/platformdirs/api.py,sha256=jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew,7132 -pip/_vendor/platformdirs/macos.py,sha256=LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1-A86tRQ,3678 -pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/platformdirs/unix.py,sha256=22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg,8809 -pip/_vendor/platformdirs/version.py,sha256=mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb-74xqW5f2M,160 -pip/_vendor/platformdirs/windows.py,sha256=4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc,9573 -pip/_vendor/pygments/__init__.py,sha256=6AuDljQtvf89DTNUyWM7k3oUlP_lq70NU-INKKteOBY,2983 -pip/_vendor/pygments/__main__.py,sha256=es8EKMvXj5yToIfQ-pf3Dv5TnIeeM6sME0LW-n4ecHo,353 -pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/console.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/style.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/token.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc,, -pip/_vendor/pygments/__pycache__/util.cpython-311.pyc,, -pip/_vendor/pygments/cmdline.py,sha256=byxYJp9gnjVeyhRlZ3UTMgo_LhkXh1afvN8wJBtAcc8,23685 -pip/_vendor/pygments/console.py,sha256=2wZ5W-U6TudJD1_NLUwjclMpbomFM91lNv11_60sfGY,1697 -pip/_vendor/pygments/filter.py,sha256=j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g_30,1938 -pip/_vendor/pygments/filters/__init__.py,sha256=h_koYkUFo-FFUxjs564JHUAz7O3yJpVwI6fKN3MYzG0,40386 -pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pygments/formatter.py,sha256=J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg_o_-Z_S_tTY,4178 -pip/_vendor/pygments/formatters/__init__.py,sha256=_xgAcdFKr0QNYwh_i98AU9hvfP3X2wAkhElFcRRF3Uo,5424 -pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc,, -pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc,, -pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 -pip/_vendor/pygments/formatters/bbcode.py,sha256=r1b7wzWTJouADDLh-Z11iRi4iQxD0JKJ1qHl6mOYxsA,3314 -pip/_vendor/pygments/formatters/groff.py,sha256=xy8Zf3tXOo6MWrXh7yPGWx3lVEkg_DhY4CxmsDb0IVo,5094 -pip/_vendor/pygments/formatters/html.py,sha256=PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI,35610 -pip/_vendor/pygments/formatters/img.py,sha256=XKXmg2_XONrR4mtq2jfEU8XCsoln3VSGTw-UYiEokys,21938 -pip/_vendor/pygments/formatters/irc.py,sha256=Ep-m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0,4981 -pip/_vendor/pygments/formatters/latex.py,sha256=FGzJ-YqSTE8z_voWPdzvLY5Tq8jE_ygjGjM6dXZJ8-k,19351 -pip/_vendor/pygments/formatters/other.py,sha256=gPxkk5BdAzWTCgbEHg1lpLi-1F6ZPh5A_aotgLXHnzg,5073 -pip/_vendor/pygments/formatters/pangomarkup.py,sha256=6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU,2212 -pip/_vendor/pygments/formatters/rtf.py,sha256=aA0v_psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ,5014 -pip/_vendor/pygments/formatters/svg.py,sha256=dQONWypbzfvzGCDtdp3M_NJawScJvM2DiHbx1k-ww7g,7335 -pip/_vendor/pygments/formatters/terminal.py,sha256=FG-rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU,4674 -pip/_vendor/pygments/formatters/terminal256.py,sha256=13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4,11753 -pip/_vendor/pygments/lexer.py,sha256=2BpqLlT2ExvOOi7vnjK5nB4Fp-m52ldiPaXMox5uwug,34618 -pip/_vendor/pygments/lexers/__init__.py,sha256=j5KEi5O_VQ5GS59H49l-10gzUOkWKxlwGeVMlGO2MMk,12130 -pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc,, -pip/_vendor/pygments/lexers/__pycache__/python.cpython-311.pyc,, -pip/_vendor/pygments/lexers/_mapping.py,sha256=Hts4r_ZQ8icftGM7gkBPeED5lyVSv4affFgXYE6Ap04,72281 -pip/_vendor/pygments/lexers/python.py,sha256=c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA_w,53424 -pip/_vendor/pygments/modeline.py,sha256=eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb-BYGQdI,986 -pip/_vendor/pygments/plugin.py,sha256=j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM,2591 -pip/_vendor/pygments/regexopt.py,sha256=jg1ALogcYGU96TQS9isBl6dCrvw5y5--BP_K-uFk_8s,3072 -pip/_vendor/pygments/scanner.py,sha256=b_nu5_f3HCgSdp5S_aNRBQ1MSCm4ZjDwec2OmTRickw,3092 -pip/_vendor/pygments/sphinxext.py,sha256=wBFYm180qea9JKt__UzhRlNRNhczPDFDaqGD21sbuso,6882 -pip/_vendor/pygments/style.py,sha256=C4qyoJrUTkq-OV3iO-8Vz3UtWYpJwSTdh5_vlGCGdNQ,6257 -pip/_vendor/pygments/styles/__init__.py,sha256=he7HjQx7sC0d2kfTVLjUs0J15mtToJM6M1brwIm9--Q,3700 -pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pygments/token.py,sha256=seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC-gc_o,6184 -pip/_vendor/pygments/unistring.py,sha256=FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc,63223 -pip/_vendor/pygments/util.py,sha256=AEVY0qonyyEMgv4Do2dINrrqUAwUk2XYSqHM650uzek,10230 -pip/_vendor/pyparsing/__init__.py,sha256=9m1JbE2JTLdBG0Mb6B0lEaZj181Wx5cuPXZpsbHEYgE,9116 -pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc,, -pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc,, -pip/_vendor/pyparsing/actions.py,sha256=05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY,6567 -pip/_vendor/pyparsing/common.py,sha256=p-3c83E5-DjlkF35G0O9-kjQRpoejP-2_z0hxZ-eol4,13387 -pip/_vendor/pyparsing/core.py,sha256=yvuRlLpXSF8mgk-QhiW3OVLqD9T0rsj9tbibhRH4Yaw,224445 -pip/_vendor/pyparsing/diagram/__init__.py,sha256=nxmDOoYF9NXuLaGYy01tKFjkNReWJlrGFuJNWEiTo84,24215 -pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pyparsing/exceptions.py,sha256=6Jc6W1eDZBzyFu1J0YrcdNFVBC-RINujZmveSnB8Rxw,9523 -pip/_vendor/pyparsing/helpers.py,sha256=BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk,38646 -pip/_vendor/pyparsing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/pyparsing/results.py,sha256=9dyqQ-w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY,26692 -pip/_vendor/pyparsing/testing.py,sha256=eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY,13488 -pip/_vendor/pyparsing/unicode.py,sha256=fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8,10646 -pip/_vendor/pyparsing/util.py,sha256=vTMzTdwSDyV8d_dSgquUTdWgBFoA_W30nfxEJDsshRQ,8670 -pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 -pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc,, -pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc,, -pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 -pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 -pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 -pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc,, -pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 -pip/_vendor/requests/__init__.py,sha256=owujob4dk45Siy4EYtbCKR6wcFph7E04a_v_OuAacBA,5169 -pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/api.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/auth.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/certs.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/compat.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/help.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/models.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/packages.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/structures.cpython-311.pyc,, -pip/_vendor/requests/__pycache__/utils.cpython-311.pyc,, -pip/_vendor/requests/__version__.py,sha256=ssI3Ezt7PaxgkOW45GhtwPUclo_SO_ygtIm4A74IOfw,435 -pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 -pip/_vendor/requests/adapters.py,sha256=idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M,19697 -pip/_vendor/requests/api.py,sha256=q61xcXq4tmiImrvcSVLTbFyCiD2F-L_-hWKGbz4y8vg,6449 -pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187 -pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 -pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286 -pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560 -pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823 -pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879 -pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 -pip/_vendor/requests/models.py,sha256=dDZ-iThotky-Noq9yy97cUEJhr3wnY6mv-xR_ePg_lk,35288 -pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 -pip/_vendor/requests/sessions.py,sha256=-LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P--L2Xhw,30373 -pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235 -pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 -pip/_vendor/requests/utils.py,sha256=kOPn0qYD6xRTzaxbqTdYiSInBZHl6379AJsyIgzYGLY,33460 -pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 -pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc,, -pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc,, -pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc,, -pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc,, -pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc,, -pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 -pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 -pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 -pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 -pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 -pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 -pip/_vendor/rich/__main__.py,sha256=TT8sb9PTnsnKhhrGuHkLN0jdN0dtKhtPkEr9CidDbPM,8478 -pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/abc.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/align.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/bar.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/box.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/cells.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/color.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/columns.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/console.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/containers.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/control.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/errors.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/json.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/layout.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/live.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/logging.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/markup.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/measure.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/padding.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/pager.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/palette.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/panel.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/progress.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/region.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/repr.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/rule.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/scope.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/screen.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/segment.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/status.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/style.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/styled.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/table.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/text.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/theme.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/themes.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc,, -pip/_vendor/rich/__pycache__/tree.cpython-311.pyc,, -pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 -pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 -pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 -pip/_vendor/rich/_export_format.py,sha256=qxgV3nKnXQu1hfbnRVswPYy-AwIg1X0LSC47cK5s8jk,2100 -pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 -pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 -pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 -pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 -pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 -pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 -pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 -pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 -pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 -pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 -pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 -pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 -pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 -pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926 -pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 -pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840 -pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 -pip/_vendor/rich/align.py,sha256=Ji-Yokfkhnfe_xMmr4ISjZB07TJXggBCOYoYa-HDAr8,10368 -pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 -pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 -pip/_vendor/rich/box.py,sha256=FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew,9842 -pip/_vendor/rich/cells.py,sha256=627ztJs9zOL-38HJ7kXBerR-gT8KBfYC8UzEwMJDYYo,4509 -pip/_vendor/rich/color.py,sha256=9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE,18224 -pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 -pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 -pip/_vendor/rich/console.py,sha256=pDvkbLkvtZIMIwQx_jkZ-seyNl4zGBLviXoWXte9fwg,99218 -pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 -pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 -pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 -pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 -pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 -pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 -pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 -pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 -pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 -pip/_vendor/rich/highlighter.py,sha256=p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko,9584 -pip/_vendor/rich/json.py,sha256=EYp9ucj-nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M,5032 -pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 -pip/_vendor/rich/layout.py,sha256=RFYL6HdCFsHf9WRpcvi3w-fpj-8O5dMZ8W96VdKNdbI,14007 -pip/_vendor/rich/live.py,sha256=vZzYvu7fqwlv3Gthl2xiw1Dc_O80VlGcCV0DOHwCyDM,14273 -pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 -pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 -pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198 -pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 -pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 -pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 -pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 -pip/_vendor/rich/panel.py,sha256=wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE,10574 -pip/_vendor/rich/pretty.py,sha256=eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0,35852 -pip/_vendor/rich/progress.py,sha256=n4KF9vky8_5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A,59706 -pip/_vendor/rich/progress_bar.py,sha256=cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94-ACFoo,8165 -pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303 -pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 -pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 -pip/_vendor/rich/repr.py,sha256=9Z8otOmM-tyxnyTodvXlectP60lwahjGiDTrbrxPSTg,4431 -pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 -pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 -pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 -pip/_vendor/rich/segment.py,sha256=XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu-IG2uTg,24247 -pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 -pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 -pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 -pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 -pip/_vendor/rich/syntax.py,sha256=jgDiVCK6cpR0NmBOpZmIu-Ud4eaW7fHvjJZkDbjpcSA,35173 -pip/_vendor/rich/table.py,sha256=-WzesL-VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8,39684 -pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 -pip/_vendor/rich/text.py,sha256=_8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4-hXjHyyg1A,45525 -pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 -pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 -pip/_vendor/rich/traceback.py,sha256=yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A,29604 -pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169 -pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 -pip/_vendor/tenacity/__init__.py,sha256=3kvAL6KClq8GFo2KFhmOzskRKSDQI-ubrlfZ8AQEEI0,20493 -pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-311.pyc,, -pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc,, -pip/_vendor/tenacity/_asyncio.py,sha256=Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN-6o8,3551 -pip/_vendor/tenacity/_utils.py,sha256=ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D_4,2179 -pip/_vendor/tenacity/after.py,sha256=S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf__g,1682 -pip/_vendor/tenacity/before.py,sha256=dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc,1562 -pip/_vendor/tenacity/before_sleep.py,sha256=YmpgN9Y7HGlH97U24vvq_YWb5deaK4_DbiD8ZuFmy-E,2372 -pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 -pip/_vendor/tenacity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/tenacity/retry.py,sha256=jrzD_mxA5mSTUEdiYB7SHpxltjhPSYZSnSRATb-ggRc,8746 -pip/_vendor/tenacity/stop.py,sha256=YMJs7ZgZfND65PRLqlGB_agpfGXlemx_5Hm4PKnBqpQ,3086 -pip/_vendor/tenacity/tornadoweb.py,sha256=po29_F1Mt8qZpsFjX7EVwAT0ydC_NbVia9gVi7R_wXA,2142 -pip/_vendor/tenacity/wait.py,sha256=3FcBJoCDgym12_dN6xfK8C1gROY0Hn4NSI2u8xv50uE,8024 -pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 -pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc,, -pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc,, -pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc,, -pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 -pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 -pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 -pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 -pip/_vendor/truststore/__init__.py,sha256=qzTLSH8PvAkY1fr6QQ2vV-KwE_M83wdXugtpJaP_AbM,403 -pip/_vendor/truststore/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/truststore/__pycache__/_api.cpython-311.pyc,, -pip/_vendor/truststore/__pycache__/_macos.cpython-311.pyc,, -pip/_vendor/truststore/__pycache__/_openssl.cpython-311.pyc,, -pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-311.pyc,, -pip/_vendor/truststore/__pycache__/_windows.cpython-311.pyc,, -pip/_vendor/truststore/_api.py,sha256=xjuEu_rlH4hcdJTROImEyOEqdw-F8t5vO2H2BToY0Ro,9893 -pip/_vendor/truststore/_macos.py,sha256=BjvAKoAjXhdIPuxpY124HJIFswDb0pq8DjynzJOVwqc,17694 -pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 -pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 -pip/_vendor/truststore/_windows.py,sha256=1x_EhROeJ9QK1sMAjfnZC7awYI8UnBJYL-TjACUYI4A,17468 -pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/typing_extensions.py,sha256=EWpcpyQnVmc48E9fSyPGs-vXgHcAk9tQABQIxmMsCGk,111130 -pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 -pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc,, -pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc,, -pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 -pip/_vendor/urllib3/_version.py,sha256=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 -pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 -pip/_vendor/urllib3/connectionpool.py,sha256=ItVDasDnPRPP9R8bNxY7tPBlC724nJ9nlxVgXG_SLbI,39990 -pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 -pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-311.pyc,, -pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 -pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 -pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 -pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 -pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 -pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448 -pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 -pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 -pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 -pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 -pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc,, -pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-311.pyc,, -pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-311.pyc,, -pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 -pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 -pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 -pip/_vendor/urllib3/poolmanager.py,sha256=0i8cJgrqupza67IBPZ_u9jXvnSxr5UBlVEiUqdkPtYI,19752 -pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 -pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 -pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 -pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc,, -pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc,, -pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 -pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 -pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 -pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 -pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 -pip/_vendor/urllib3/util/retry.py,sha256=Z6WEf518eTOXP5jr5QSQ9gqJI0DVYt3Xs3EKnYaTmus,22013 -pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 -pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 -pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 -pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 -pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 -pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 -pip/_vendor/vendor.txt,sha256=4NKk7fQhVsZw0U-0zmm9Q2LgGyaPXacFbnJAaS0Q6EY,493 -pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 -pip/_vendor/webencodings/__pycache__/__init__.cpython-311.pyc,, -pip/_vendor/webencodings/__pycache__/labels.cpython-311.pyc,, -pip/_vendor/webencodings/__pycache__/mklabels.cpython-311.pyc,, -pip/_vendor/webencodings/__pycache__/tests.cpython-311.pyc,, -pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-311.pyc,, -pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 -pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 -pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 -pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 -pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL deleted file mode 100644 index 98c0d20..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: bdist_wheel (0.42.0) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt deleted file mode 100644 index 5367846..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt +++ /dev/null @@ -1,4 +0,0 @@ -[console_scripts] -pip = pip._internal.cli.main:main -pip3 = pip._internal.cli.main:main -pip3.10 = pip._internal.cli.main:main diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt b/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt deleted file mode 100644 index a1b589e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__init__.py deleted file mode 100644 index be0e3ed..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -from typing import List, Optional - -__version__ = "24.0" - - -def main(args: Optional[List[str]] = None) -> int: - """This is an internal API only meant for use by pip's own console scripts. - - For additional details, see https://github.com/pypa/pip/issues/7498. - """ - from pip._internal.utils.entrypoints import _wrapper - - return _wrapper(args) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__main__.py deleted file mode 100644 index 5991326..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__main__.py +++ /dev/null @@ -1,24 +0,0 @@ -import os -import sys - -# Remove '' and current working directory from the first entry -# of sys.path, if present to avoid using current directory -# in pip commands check, freeze, install, list and show, -# when invoked as python -m pip -if sys.path[0] in ("", os.getcwd()): - sys.path.pop(0) - -# If we are running from a wheel, add the wheel to sys.path -# This allows the usage python pip-*.whl/pip install pip-*.whl -if __package__ == "": - # __file__ is pip-*.whl/pip/__main__.py - # first dirname call strips of '/__main__.py', second strips off '/pip' - # Resulting path is the name of the wheel itself - # Add that to sys.path so we can import pip - path = os.path.dirname(os.path.dirname(__file__)) - sys.path.insert(0, path) - -if __name__ == "__main__": - from pip._internal.cli.main import main as _main - - sys.exit(_main()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pip-runner__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pip-runner__.py deleted file mode 100644 index 49a148a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pip-runner__.py +++ /dev/null @@ -1,50 +0,0 @@ -"""Execute exactly this copy of pip, within a different environment. - -This file is named as it is, to ensure that this module can't be imported via -an import statement. -""" - -# /!\ This version compatibility check section must be Python 2 compatible. /!\ - -import sys - -# Copied from setup.py -PYTHON_REQUIRES = (3, 7) - - -def version_str(version): # type: ignore - return ".".join(str(v) for v in version) - - -if sys.version_info[:2] < PYTHON_REQUIRES: - raise SystemExit( - "This version of pip does not support python {} (requires >={}).".format( - version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) - ) - ) - -# From here on, we can use Python 3 features, but the syntax must remain -# Python 2 compatible. - -import runpy # noqa: E402 -from importlib.machinery import PathFinder # noqa: E402 -from os.path import dirname # noqa: E402 - -PIP_SOURCES_ROOT = dirname(dirname(__file__)) - - -class PipImportRedirectingFinder: - @classmethod - def find_spec(self, fullname, path=None, target=None): # type: ignore - if fullname != "pip": - return None - - spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) - assert spec, (PIP_SOURCES_ROOT, fullname) - return spec - - -sys.meta_path.insert(0, PipImportRedirectingFinder()) - -assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" -runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index cbb4304..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index d40ce00..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc deleted file mode 100644 index a116be9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__init__.py deleted file mode 100644 index 96c6b88..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__init__.py +++ /dev/null @@ -1,18 +0,0 @@ -from typing import List, Optional - -from pip._internal.utils import _log - -# init_logging() must be called before any call to logging.getLogger() -# which happens at import of most modules. -_log.init_logging() - - -def main(args: (Optional[List[str]]) = None) -> int: - """This is preserved for old console scripts that may still be referencing - it. - - For additional details, see https://github.com/pypa/pip/issues/7498. - """ - from pip._internal.utils.entrypoints import _wrapper - - return _wrapper(args) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 14d2cac..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc deleted file mode 100644 index 86dc94a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index efd5f63..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc deleted file mode 100644 index dec8f40..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc deleted file mode 100644 index f9e192e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc deleted file mode 100644 index f5d9b86..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc deleted file mode 100644 index 0637535..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc deleted file mode 100644 index 6ee0f1c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc deleted file mode 100644 index 6c0fc80..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/build_env.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/build_env.py deleted file mode 100644 index 4f704a3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/build_env.py +++ /dev/null @@ -1,311 +0,0 @@ -"""Build Environment used for isolation during sdist building -""" - -import logging -import os -import pathlib -import site -import sys -import textwrap -from collections import OrderedDict -from types import TracebackType -from typing import TYPE_CHECKING, Iterable, List, Optional, Set, Tuple, Type, Union - -from pip._vendor.certifi import where -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.version import Version - -from pip import __file__ as pip_location -from pip._internal.cli.spinners import open_spinner -from pip._internal.locations import get_platlib, get_purelib, get_scheme -from pip._internal.metadata import get_default_environment, get_environment -from pip._internal.utils.subprocess import call_subprocess -from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds - -if TYPE_CHECKING: - from pip._internal.index.package_finder import PackageFinder - -logger = logging.getLogger(__name__) - - -def _dedup(a: str, b: str) -> Union[Tuple[str], Tuple[str, str]]: - return (a, b) if a != b else (a,) - - -class _Prefix: - def __init__(self, path: str) -> None: - self.path = path - self.setup = False - scheme = get_scheme("", prefix=path) - self.bin_dir = scheme.scripts - self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) - - -def get_runnable_pip() -> str: - """Get a file to pass to a Python executable, to run the currently-running pip. - - This is used to run a pip subprocess, for installing requirements into the build - environment. - """ - source = pathlib.Path(pip_location).resolve().parent - - if not source.is_dir(): - # This would happen if someone is using pip from inside a zip file. In that - # case, we can use that directly. - return str(source) - - return os.fsdecode(source / "__pip-runner__.py") - - -def _get_system_sitepackages() -> Set[str]: - """Get system site packages - - Usually from site.getsitepackages, - but fallback on `get_purelib()/get_platlib()` if unavailable - (e.g. in a virtualenv created by virtualenv<20) - - Returns normalized set of strings. - """ - if hasattr(site, "getsitepackages"): - system_sites = site.getsitepackages() - else: - # virtualenv < 20 overwrites site.py without getsitepackages - # fallback on get_purelib/get_platlib. - # this is known to miss things, but shouldn't in the cases - # where getsitepackages() has been removed (inside a virtualenv) - system_sites = [get_purelib(), get_platlib()] - return {os.path.normcase(path) for path in system_sites} - - -class BuildEnvironment: - """Creates and manages an isolated environment to install build deps""" - - def __init__(self) -> None: - temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) - - self._prefixes = OrderedDict( - (name, _Prefix(os.path.join(temp_dir.path, name))) - for name in ("normal", "overlay") - ) - - self._bin_dirs: List[str] = [] - self._lib_dirs: List[str] = [] - for prefix in reversed(list(self._prefixes.values())): - self._bin_dirs.append(prefix.bin_dir) - self._lib_dirs.extend(prefix.lib_dirs) - - # Customize site to: - # - ensure .pth files are honored - # - prevent access to system site packages - system_sites = _get_system_sitepackages() - - self._site_dir = os.path.join(temp_dir.path, "site") - if not os.path.exists(self._site_dir): - os.mkdir(self._site_dir) - with open( - os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" - ) as fp: - fp.write( - textwrap.dedent( - """ - import os, site, sys - - # First, drop system-sites related paths. - original_sys_path = sys.path[:] - known_paths = set() - for path in {system_sites!r}: - site.addsitedir(path, known_paths=known_paths) - system_paths = set( - os.path.normcase(path) - for path in sys.path[len(original_sys_path):] - ) - original_sys_path = [ - path for path in original_sys_path - if os.path.normcase(path) not in system_paths - ] - sys.path = original_sys_path - - # Second, add lib directories. - # ensuring .pth file are processed. - for path in {lib_dirs!r}: - assert not path in sys.path - site.addsitedir(path) - """ - ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) - ) - - def __enter__(self) -> None: - self._save_env = { - name: os.environ.get(name, None) - for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") - } - - path = self._bin_dirs[:] - old_path = self._save_env["PATH"] - if old_path: - path.extend(old_path.split(os.pathsep)) - - pythonpath = [self._site_dir] - - os.environ.update( - { - "PATH": os.pathsep.join(path), - "PYTHONNOUSERSITE": "1", - "PYTHONPATH": os.pathsep.join(pythonpath), - } - ) - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - for varname, old_value in self._save_env.items(): - if old_value is None: - os.environ.pop(varname, None) - else: - os.environ[varname] = old_value - - def check_requirements( - self, reqs: Iterable[str] - ) -> Tuple[Set[Tuple[str, str]], Set[str]]: - """Return 2 sets: - - conflicting requirements: set of (installed, wanted) reqs tuples - - missing requirements: set of reqs - """ - missing = set() - conflicting = set() - if reqs: - env = ( - get_environment(self._lib_dirs) - if hasattr(self, "_lib_dirs") - else get_default_environment() - ) - for req_str in reqs: - req = Requirement(req_str) - # We're explicitly evaluating with an empty extra value, since build - # environments are not provided any mechanism to select specific extras. - if req.marker is not None and not req.marker.evaluate({"extra": ""}): - continue - dist = env.get_distribution(req.name) - if not dist: - missing.add(req_str) - continue - if isinstance(dist.version, Version): - installed_req_str = f"{req.name}=={dist.version}" - else: - installed_req_str = f"{req.name}==={dist.version}" - if not req.specifier.contains(dist.version, prereleases=True): - conflicting.add((installed_req_str, req_str)) - # FIXME: Consider direct URL? - return conflicting, missing - - def install_requirements( - self, - finder: "PackageFinder", - requirements: Iterable[str], - prefix_as_string: str, - *, - kind: str, - ) -> None: - prefix = self._prefixes[prefix_as_string] - assert not prefix.setup - prefix.setup = True - if not requirements: - return - self._install_requirements( - get_runnable_pip(), - finder, - requirements, - prefix, - kind=kind, - ) - - @staticmethod - def _install_requirements( - pip_runnable: str, - finder: "PackageFinder", - requirements: Iterable[str], - prefix: _Prefix, - *, - kind: str, - ) -> None: - args: List[str] = [ - sys.executable, - pip_runnable, - "install", - "--ignore-installed", - "--no-user", - "--prefix", - prefix.path, - "--no-warn-script-location", - ] - if logger.getEffectiveLevel() <= logging.DEBUG: - args.append("-v") - for format_control in ("no_binary", "only_binary"): - formats = getattr(finder.format_control, format_control) - args.extend( - ( - "--" + format_control.replace("_", "-"), - ",".join(sorted(formats or {":none:"})), - ) - ) - - index_urls = finder.index_urls - if index_urls: - args.extend(["-i", index_urls[0]]) - for extra_index in index_urls[1:]: - args.extend(["--extra-index-url", extra_index]) - else: - args.append("--no-index") - for link in finder.find_links: - args.extend(["--find-links", link]) - - for host in finder.trusted_hosts: - args.extend(["--trusted-host", host]) - if finder.allow_all_prereleases: - args.append("--pre") - if finder.prefer_binary: - args.append("--prefer-binary") - args.append("--") - args.extend(requirements) - extra_environ = {"_PIP_STANDALONE_CERT": where()} - with open_spinner(f"Installing {kind}") as spinner: - call_subprocess( - args, - command_desc=f"pip subprocess to install {kind}", - spinner=spinner, - extra_environ=extra_environ, - ) - - -class NoOpBuildEnvironment(BuildEnvironment): - """A no-op drop-in replacement for BuildEnvironment""" - - def __init__(self) -> None: - pass - - def __enter__(self) -> None: - pass - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - pass - - def cleanup(self) -> None: - pass - - def install_requirements( - self, - finder: "PackageFinder", - requirements: Iterable[str], - prefix_as_string: str, - *, - kind: str, - ) -> None: - raise NotImplementedError() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cache.py deleted file mode 100644 index f45ac23..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cache.py +++ /dev/null @@ -1,290 +0,0 @@ -"""Cache Management -""" - -import hashlib -import json -import logging -import os -from pathlib import Path -from typing import Any, Dict, List, Optional - -from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.exceptions import InvalidWheelFilename -from pip._internal.models.direct_url import DirectUrl -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds -from pip._internal.utils.urls import path_to_url - -logger = logging.getLogger(__name__) - -ORIGIN_JSON_NAME = "origin.json" - - -def _hash_dict(d: Dict[str, str]) -> str: - """Return a stable sha224 of a dictionary.""" - s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) - return hashlib.sha224(s.encode("ascii")).hexdigest() - - -class Cache: - """An abstract class - provides cache directories for data from links - - :param cache_dir: The root of the cache. - """ - - def __init__(self, cache_dir: str) -> None: - super().__init__() - assert not cache_dir or os.path.isabs(cache_dir) - self.cache_dir = cache_dir or None - - def _get_cache_path_parts(self, link: Link) -> List[str]: - """Get parts of part that must be os.path.joined with cache_dir""" - - # We want to generate an url to use as our cache key, we don't want to - # just re-use the URL because it might have other items in the fragment - # and we don't care about those. - key_parts = {"url": link.url_without_fragment} - if link.hash_name is not None and link.hash is not None: - key_parts[link.hash_name] = link.hash - if link.subdirectory_fragment: - key_parts["subdirectory"] = link.subdirectory_fragment - - # Include interpreter name, major and minor version in cache key - # to cope with ill-behaved sdists that build a different wheel - # depending on the python version their setup.py is being run on, - # and don't encode the difference in compatibility tags. - # https://github.com/pypa/pip/issues/7296 - key_parts["interpreter_name"] = interpreter_name() - key_parts["interpreter_version"] = interpreter_version() - - # Encode our key url with sha224, we'll use this because it has similar - # security properties to sha256, but with a shorter total output (and - # thus less secure). However the differences don't make a lot of - # difference for our use case here. - hashed = _hash_dict(key_parts) - - # We want to nest the directories some to prevent having a ton of top - # level directories where we might run out of sub directories on some - # FS. - parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] - - return parts - - def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: - can_not_cache = not self.cache_dir or not canonical_package_name or not link - if can_not_cache: - return [] - - path = self.get_path_for_link(link) - if os.path.isdir(path): - return [(candidate, path) for candidate in os.listdir(path)] - return [] - - def get_path_for_link(self, link: Link) -> str: - """Return a directory to store cached items in for link.""" - raise NotImplementedError() - - def get( - self, - link: Link, - package_name: Optional[str], - supported_tags: List[Tag], - ) -> Link: - """Returns a link to a cached item if it exists, otherwise returns the - passed link. - """ - raise NotImplementedError() - - -class SimpleWheelCache(Cache): - """A cache of wheels for future installs.""" - - def __init__(self, cache_dir: str) -> None: - super().__init__(cache_dir) - - def get_path_for_link(self, link: Link) -> str: - """Return a directory to store cached wheels for link - - Because there are M wheels for any one sdist, we provide a directory - to cache them in, and then consult that directory when looking up - cache hits. - - We only insert things into the cache if they have plausible version - numbers, so that we don't contaminate the cache with things that were - not unique. E.g. ./package might have dozens of installs done for it - and build a version of 0.0...and if we built and cached a wheel, we'd - end up using the same wheel even if the source has been edited. - - :param link: The link of the sdist for which this will cache wheels. - """ - parts = self._get_cache_path_parts(link) - assert self.cache_dir - # Store wheels within the root cache_dir - return os.path.join(self.cache_dir, "wheels", *parts) - - def get( - self, - link: Link, - package_name: Optional[str], - supported_tags: List[Tag], - ) -> Link: - candidates = [] - - if not package_name: - return link - - canonical_package_name = canonicalize_name(package_name) - for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): - try: - wheel = Wheel(wheel_name) - except InvalidWheelFilename: - continue - if canonicalize_name(wheel.name) != canonical_package_name: - logger.debug( - "Ignoring cached wheel %s for %s as it " - "does not match the expected distribution name %s.", - wheel_name, - link, - package_name, - ) - continue - if not wheel.supported(supported_tags): - # Built for a different python/arch/etc - continue - candidates.append( - ( - wheel.support_index_min(supported_tags), - wheel_name, - wheel_dir, - ) - ) - - if not candidates: - return link - - _, wheel_name, wheel_dir = min(candidates) - return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) - - -class EphemWheelCache(SimpleWheelCache): - """A SimpleWheelCache that creates it's own temporary cache directory""" - - def __init__(self) -> None: - self._temp_dir = TempDirectory( - kind=tempdir_kinds.EPHEM_WHEEL_CACHE, - globally_managed=True, - ) - - super().__init__(self._temp_dir.path) - - -class CacheEntry: - def __init__( - self, - link: Link, - persistent: bool, - ): - self.link = link - self.persistent = persistent - self.origin: Optional[DirectUrl] = None - origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME - if origin_direct_url_path.exists(): - try: - self.origin = DirectUrl.from_json( - origin_direct_url_path.read_text(encoding="utf-8") - ) - except Exception as e: - logger.warning( - "Ignoring invalid cache entry origin file %s for %s (%s)", - origin_direct_url_path, - link.filename, - e, - ) - - -class WheelCache(Cache): - """Wraps EphemWheelCache and SimpleWheelCache into a single Cache - - This Cache allows for gracefully degradation, using the ephem wheel cache - when a certain link is not found in the simple wheel cache first. - """ - - def __init__(self, cache_dir: str) -> None: - super().__init__(cache_dir) - self._wheel_cache = SimpleWheelCache(cache_dir) - self._ephem_cache = EphemWheelCache() - - def get_path_for_link(self, link: Link) -> str: - return self._wheel_cache.get_path_for_link(link) - - def get_ephem_path_for_link(self, link: Link) -> str: - return self._ephem_cache.get_path_for_link(link) - - def get( - self, - link: Link, - package_name: Optional[str], - supported_tags: List[Tag], - ) -> Link: - cache_entry = self.get_cache_entry(link, package_name, supported_tags) - if cache_entry is None: - return link - return cache_entry.link - - def get_cache_entry( - self, - link: Link, - package_name: Optional[str], - supported_tags: List[Tag], - ) -> Optional[CacheEntry]: - """Returns a CacheEntry with a link to a cached item if it exists or - None. The cache entry indicates if the item was found in the persistent - or ephemeral cache. - """ - retval = self._wheel_cache.get( - link=link, - package_name=package_name, - supported_tags=supported_tags, - ) - if retval is not link: - return CacheEntry(retval, persistent=True) - - retval = self._ephem_cache.get( - link=link, - package_name=package_name, - supported_tags=supported_tags, - ) - if retval is not link: - return CacheEntry(retval, persistent=False) - - return None - - @staticmethod - def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: - origin_path = Path(cache_dir) / ORIGIN_JSON_NAME - if origin_path.exists(): - try: - origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) - except Exception as e: - logger.warning( - "Could not read origin file %s in cache entry (%s). " - "Will attempt to overwrite it.", - origin_path, - e, - ) - else: - # TODO: use DirectUrl.equivalent when - # https://github.com/pypa/pip/pull/10564 is merged. - if origin.url != download_info.url: - logger.warning( - "Origin URL %s in cache entry %s does not match download URL " - "%s. This is likely a pip bug or a cache corruption issue. " - "Will overwrite it with the new value.", - origin.url, - cache_dir, - download_info.url, - ) - origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py deleted file mode 100644 index e589bb9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -"""Subpackage containing all of pip's command line interface related code -""" - -# This file intentionally does not import submodules diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 81a42bf..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc deleted file mode 100644 index 715e27c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc deleted file mode 100644 index 141f3f8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc deleted file mode 100644 index 477ccbd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc deleted file mode 100644 index ed2b467..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc deleted file mode 100644 index c67c165..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc deleted file mode 100644 index b00c81e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc deleted file mode 100644 index 668575f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc deleted file mode 100644 index 49a8525..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc deleted file mode 100644 index 6272710..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc deleted file mode 100644 index 0d28375..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc deleted file mode 100644 index a8bfe10..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py deleted file mode 100644 index e5950b9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py +++ /dev/null @@ -1,172 +0,0 @@ -"""Logic that powers autocompletion installed by ``pip completion``. -""" - -import optparse -import os -import sys -from itertools import chain -from typing import Any, Iterable, List, Optional - -from pip._internal.cli.main_parser import create_main_parser -from pip._internal.commands import commands_dict, create_command -from pip._internal.metadata import get_default_environment - - -def autocomplete() -> None: - """Entry Point for completion of main and subcommand options.""" - # Don't complete if user hasn't sourced bash_completion file. - if "PIP_AUTO_COMPLETE" not in os.environ: - return - cwords = os.environ["COMP_WORDS"].split()[1:] - cword = int(os.environ["COMP_CWORD"]) - try: - current = cwords[cword - 1] - except IndexError: - current = "" - - parser = create_main_parser() - subcommands = list(commands_dict) - options = [] - - # subcommand - subcommand_name: Optional[str] = None - for word in cwords: - if word in subcommands: - subcommand_name = word - break - # subcommand options - if subcommand_name is not None: - # special case: 'help' subcommand has no options - if subcommand_name == "help": - sys.exit(1) - # special case: list locally installed dists for show and uninstall - should_list_installed = not current.startswith("-") and subcommand_name in [ - "show", - "uninstall", - ] - if should_list_installed: - env = get_default_environment() - lc = current.lower() - installed = [ - dist.canonical_name - for dist in env.iter_installed_distributions(local_only=True) - if dist.canonical_name.startswith(lc) - and dist.canonical_name not in cwords[1:] - ] - # if there are no dists installed, fall back to option completion - if installed: - for dist in installed: - print(dist) - sys.exit(1) - - should_list_installables = ( - not current.startswith("-") and subcommand_name == "install" - ) - if should_list_installables: - for path in auto_complete_paths(current, "path"): - print(path) - sys.exit(1) - - subcommand = create_command(subcommand_name) - - for opt in subcommand.parser.option_list_all: - if opt.help != optparse.SUPPRESS_HELP: - options += [ - (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts - ] - - # filter out previously specified options from available options - prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] - options = [(x, v) for (x, v) in options if x not in prev_opts] - # filter options by current input - options = [(k, v) for k, v in options if k.startswith(current)] - # get completion type given cwords and available subcommand options - completion_type = get_path_completion_type( - cwords, - cword, - subcommand.parser.option_list_all, - ) - # get completion files and directories if ``completion_type`` is - # ````, ```` or ```` - if completion_type: - paths = auto_complete_paths(current, completion_type) - options = [(path, 0) for path in paths] - for option in options: - opt_label = option[0] - # append '=' to options which require args - if option[1] and option[0][:2] == "--": - opt_label += "=" - print(opt_label) - else: - # show main parser options only when necessary - - opts = [i.option_list for i in parser.option_groups] - opts.append(parser.option_list) - flattened_opts = chain.from_iterable(opts) - if current.startswith("-"): - for opt in flattened_opts: - if opt.help != optparse.SUPPRESS_HELP: - subcommands += opt._long_opts + opt._short_opts - else: - # get completion type given cwords and all available options - completion_type = get_path_completion_type(cwords, cword, flattened_opts) - if completion_type: - subcommands = list(auto_complete_paths(current, completion_type)) - - print(" ".join([x for x in subcommands if x.startswith(current)])) - sys.exit(1) - - -def get_path_completion_type( - cwords: List[str], cword: int, opts: Iterable[Any] -) -> Optional[str]: - """Get the type of path completion (``file``, ``dir``, ``path`` or None) - - :param cwords: same as the environmental variable ``COMP_WORDS`` - :param cword: same as the environmental variable ``COMP_CWORD`` - :param opts: The available options to check - :return: path completion type (``file``, ``dir``, ``path`` or None) - """ - if cword < 2 or not cwords[cword - 2].startswith("-"): - return None - for opt in opts: - if opt.help == optparse.SUPPRESS_HELP: - continue - for o in str(opt).split("/"): - if cwords[cword - 2].split("=")[0] == o: - if not opt.metavar or any( - x in ("path", "file", "dir") for x in opt.metavar.split("/") - ): - return opt.metavar - return None - - -def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: - """If ``completion_type`` is ``file`` or ``path``, list all regular files - and directories starting with ``current``; otherwise only list directories - starting with ``current``. - - :param current: The word to be completed - :param completion_type: path completion type(``file``, ``path`` or ``dir``) - :return: A generator of regular files and/or directories - """ - directory, filename = os.path.split(current) - current_path = os.path.abspath(directory) - # Don't complete paths if they can't be accessed - if not os.access(current_path, os.R_OK): - return - filename = os.path.normcase(filename) - # list all files that start with ``filename`` - file_list = ( - x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) - ) - for f in file_list: - opt = os.path.join(current_path, f) - comp_file = os.path.normcase(os.path.join(directory, f)) - # complete regular files when there is not ```` after option - # complete directories when there is ````, ```` or - # ````after option - if completion_type != "dir" and os.path.isfile(opt): - yield comp_file - elif os.path.isdir(opt): - yield os.path.join(comp_file, "") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py deleted file mode 100644 index db9d5cc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py +++ /dev/null @@ -1,236 +0,0 @@ -"""Base Command class, and related routines""" - -import functools -import logging -import logging.config -import optparse -import os -import sys -import traceback -from optparse import Values -from typing import Any, Callable, List, Optional, Tuple - -from pip._vendor.rich import traceback as rich_traceback - -from pip._internal.cli import cmdoptions -from pip._internal.cli.command_context import CommandContextMixIn -from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter -from pip._internal.cli.status_codes import ( - ERROR, - PREVIOUS_BUILD_DIR_ERROR, - UNKNOWN_ERROR, - VIRTUALENV_NOT_FOUND, -) -from pip._internal.exceptions import ( - BadCommand, - CommandError, - DiagnosticPipError, - InstallationError, - NetworkConnectionError, - PreviousBuildDirError, - UninstallationError, -) -from pip._internal.utils.filesystem import check_path_owner -from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging -from pip._internal.utils.misc import get_prog, normalize_path -from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry -from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry -from pip._internal.utils.virtualenv import running_under_virtualenv - -__all__ = ["Command"] - -logger = logging.getLogger(__name__) - - -class Command(CommandContextMixIn): - usage: str = "" - ignore_require_venv: bool = False - - def __init__(self, name: str, summary: str, isolated: bool = False) -> None: - super().__init__() - - self.name = name - self.summary = summary - self.parser = ConfigOptionParser( - usage=self.usage, - prog=f"{get_prog()} {name}", - formatter=UpdatingDefaultsHelpFormatter(), - add_help_option=False, - name=name, - description=self.__doc__, - isolated=isolated, - ) - - self.tempdir_registry: Optional[TempDirRegistry] = None - - # Commands should add options to this option group - optgroup_name = f"{self.name.capitalize()} Options" - self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) - - # Add the general options - gen_opts = cmdoptions.make_option_group( - cmdoptions.general_group, - self.parser, - ) - self.parser.add_option_group(gen_opts) - - self.add_options() - - def add_options(self) -> None: - pass - - def handle_pip_version_check(self, options: Values) -> None: - """ - This is a no-op so that commands by default do not do the pip version - check. - """ - # Make sure we do the pip version check if the index_group options - # are present. - assert not hasattr(options, "no_index") - - def run(self, options: Values, args: List[str]) -> int: - raise NotImplementedError - - def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: - # factored out for testability - return self.parser.parse_args(args) - - def main(self, args: List[str]) -> int: - try: - with self.main_context(): - return self._main(args) - finally: - logging.shutdown() - - def _main(self, args: List[str]) -> int: - # We must initialize this before the tempdir manager, otherwise the - # configuration would not be accessible by the time we clean up the - # tempdir manager. - self.tempdir_registry = self.enter_context(tempdir_registry()) - # Intentionally set as early as possible so globally-managed temporary - # directories are available to the rest of the code. - self.enter_context(global_tempdir_manager()) - - options, args = self.parse_args(args) - - # Set verbosity so that it can be used elsewhere. - self.verbosity = options.verbose - options.quiet - - level_number = setup_logging( - verbosity=self.verbosity, - no_color=options.no_color, - user_log_file=options.log, - ) - - always_enabled_features = set(options.features_enabled) & set( - cmdoptions.ALWAYS_ENABLED_FEATURES - ) - if always_enabled_features: - logger.warning( - "The following features are always enabled: %s. ", - ", ".join(sorted(always_enabled_features)), - ) - - # Make sure that the --python argument isn't specified after the - # subcommand. We can tell, because if --python was specified, - # we should only reach this point if we're running in the created - # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment - # variable set. - if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: - logger.critical( - "The --python option must be placed before the pip subcommand name" - ) - sys.exit(ERROR) - - # TODO: Try to get these passing down from the command? - # without resorting to os.environ to hold these. - # This also affects isolated builds and it should. - - if options.no_input: - os.environ["PIP_NO_INPUT"] = "1" - - if options.exists_action: - os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) - - if options.require_venv and not self.ignore_require_venv: - # If a venv is required check if it can really be found - if not running_under_virtualenv(): - logger.critical("Could not find an activated virtualenv (required).") - sys.exit(VIRTUALENV_NOT_FOUND) - - if options.cache_dir: - options.cache_dir = normalize_path(options.cache_dir) - if not check_path_owner(options.cache_dir): - logger.warning( - "The directory '%s' or its parent directory is not owned " - "or is not writable by the current user. The cache " - "has been disabled. Check the permissions and owner of " - "that directory. If executing pip with sudo, you should " - "use sudo's -H flag.", - options.cache_dir, - ) - options.cache_dir = None - - def intercepts_unhandled_exc( - run_func: Callable[..., int] - ) -> Callable[..., int]: - @functools.wraps(run_func) - def exc_logging_wrapper(*args: Any) -> int: - try: - status = run_func(*args) - assert isinstance(status, int) - return status - except DiagnosticPipError as exc: - logger.error("%s", exc, extra={"rich": True}) - logger.debug("Exception information:", exc_info=True) - - return ERROR - except PreviousBuildDirError as exc: - logger.critical(str(exc)) - logger.debug("Exception information:", exc_info=True) - - return PREVIOUS_BUILD_DIR_ERROR - except ( - InstallationError, - UninstallationError, - BadCommand, - NetworkConnectionError, - ) as exc: - logger.critical(str(exc)) - logger.debug("Exception information:", exc_info=True) - - return ERROR - except CommandError as exc: - logger.critical("%s", exc) - logger.debug("Exception information:", exc_info=True) - - return ERROR - except BrokenStdoutLoggingError: - # Bypass our logger and write any remaining messages to - # stderr because stdout no longer works. - print("ERROR: Pipe to stdout was broken", file=sys.stderr) - if level_number <= logging.DEBUG: - traceback.print_exc(file=sys.stderr) - - return ERROR - except KeyboardInterrupt: - logger.critical("Operation cancelled by user") - logger.debug("Exception information:", exc_info=True) - - return ERROR - except BaseException: - logger.critical("Exception:", exc_info=True) - - return UNKNOWN_ERROR - - return exc_logging_wrapper - - try: - if not options.debug_mode: - run = intercepts_unhandled_exc(self.run) - else: - run = self.run - rich_traceback.install(show_locals=True) - return run(options, args) - finally: - self.handle_pip_version_check(options) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py deleted file mode 100644 index d05e502..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py +++ /dev/null @@ -1,1074 +0,0 @@ -""" -shared options and groups - -The principle here is to define options once, but *not* instantiate them -globally. One reason being that options with action='append' can carry state -between parses. pip parses general options twice internally, and shouldn't -pass on state. To be consistent, all options will follow this design. -""" - -# The following comment should be removed at some point in the future. -# mypy: strict-optional=False - -import importlib.util -import logging -import os -import textwrap -from functools import partial -from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values -from textwrap import dedent -from typing import Any, Callable, Dict, Optional, Tuple - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.cli.parser import ConfigOptionParser -from pip._internal.exceptions import CommandError -from pip._internal.locations import USER_CACHE_DIR, get_src_prefix -from pip._internal.models.format_control import FormatControl -from pip._internal.models.index import PyPI -from pip._internal.models.target_python import TargetPython -from pip._internal.utils.hashes import STRONG_HASHES -from pip._internal.utils.misc import strtobool - -logger = logging.getLogger(__name__) - - -def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: - """ - Raise an option parsing error using parser.error(). - - Args: - parser: an OptionParser instance. - option: an Option instance. - msg: the error text. - """ - msg = f"{option} error: {msg}" - msg = textwrap.fill(" ".join(msg.split())) - parser.error(msg) - - -def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: - """ - Return an OptionGroup object - group -- assumed to be dict with 'name' and 'options' keys - parser -- an optparse Parser - """ - option_group = OptionGroup(parser, group["name"]) - for option in group["options"]: - option_group.add_option(option()) - return option_group - - -def check_dist_restriction(options: Values, check_target: bool = False) -> None: - """Function for determining if custom platform options are allowed. - - :param options: The OptionParser options. - :param check_target: Whether or not to check if --target is being used. - """ - dist_restriction_set = any( - [ - options.python_version, - options.platforms, - options.abis, - options.implementation, - ] - ) - - binary_only = FormatControl(set(), {":all:"}) - sdist_dependencies_allowed = ( - options.format_control != binary_only and not options.ignore_dependencies - ) - - # Installations or downloads using dist restrictions must not combine - # source distributions and dist-specific wheels, as they are not - # guaranteed to be locally compatible. - if dist_restriction_set and sdist_dependencies_allowed: - raise CommandError( - "When restricting platform and interpreter constraints using " - "--python-version, --platform, --abi, or --implementation, " - "either --no-deps must be set, or --only-binary=:all: must be " - "set and --no-binary must not be set (or must be set to " - ":none:)." - ) - - if check_target: - if not options.dry_run and dist_restriction_set and not options.target_dir: - raise CommandError( - "Can not use any platform or abi specific options unless " - "installing via '--target' or using '--dry-run'" - ) - - -def _path_option_check(option: Option, opt: str, value: str) -> str: - return os.path.expanduser(value) - - -def _package_name_option_check(option: Option, opt: str, value: str) -> str: - return canonicalize_name(value) - - -class PipOption(Option): - TYPES = Option.TYPES + ("path", "package_name") - TYPE_CHECKER = Option.TYPE_CHECKER.copy() - TYPE_CHECKER["package_name"] = _package_name_option_check - TYPE_CHECKER["path"] = _path_option_check - - -########### -# options # -########### - -help_: Callable[..., Option] = partial( - Option, - "-h", - "--help", - dest="help", - action="help", - help="Show help.", -) - -debug_mode: Callable[..., Option] = partial( - Option, - "--debug", - dest="debug_mode", - action="store_true", - default=False, - help=( - "Let unhandled exceptions propagate outside the main subroutine, " - "instead of logging them to stderr." - ), -) - -isolated_mode: Callable[..., Option] = partial( - Option, - "--isolated", - dest="isolated_mode", - action="store_true", - default=False, - help=( - "Run pip in an isolated mode, ignoring environment variables and user " - "configuration." - ), -) - -require_virtualenv: Callable[..., Option] = partial( - Option, - "--require-virtualenv", - "--require-venv", - dest="require_venv", - action="store_true", - default=False, - help=( - "Allow pip to only run in a virtual environment; " - "exit with an error otherwise." - ), -) - -override_externally_managed: Callable[..., Option] = partial( - Option, - "--break-system-packages", - dest="override_externally_managed", - action="store_true", - help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", -) - -python: Callable[..., Option] = partial( - Option, - "--python", - dest="python", - help="Run pip with the specified Python interpreter.", -) - -verbose: Callable[..., Option] = partial( - Option, - "-v", - "--verbose", - dest="verbose", - action="count", - default=0, - help="Give more output. Option is additive, and can be used up to 3 times.", -) - -no_color: Callable[..., Option] = partial( - Option, - "--no-color", - dest="no_color", - action="store_true", - default=False, - help="Suppress colored output.", -) - -version: Callable[..., Option] = partial( - Option, - "-V", - "--version", - dest="version", - action="store_true", - help="Show version and exit.", -) - -quiet: Callable[..., Option] = partial( - Option, - "-q", - "--quiet", - dest="quiet", - action="count", - default=0, - help=( - "Give less output. Option is additive, and can be used up to 3" - " times (corresponding to WARNING, ERROR, and CRITICAL logging" - " levels)." - ), -) - -progress_bar: Callable[..., Option] = partial( - Option, - "--progress-bar", - dest="progress_bar", - type="choice", - choices=["on", "off"], - default="on", - help="Specify whether the progress bar should be used [on, off] (default: on)", -) - -log: Callable[..., Option] = partial( - PipOption, - "--log", - "--log-file", - "--local-log", - dest="log", - metavar="path", - type="path", - help="Path to a verbose appending log.", -) - -no_input: Callable[..., Option] = partial( - Option, - # Don't ask for input - "--no-input", - dest="no_input", - action="store_true", - default=False, - help="Disable prompting for input.", -) - -keyring_provider: Callable[..., Option] = partial( - Option, - "--keyring-provider", - dest="keyring_provider", - choices=["auto", "disabled", "import", "subprocess"], - default="auto", - help=( - "Enable the credential lookup via the keyring library if user input is allowed." - " Specify which mechanism to use [disabled, import, subprocess]." - " (default: disabled)" - ), -) - -proxy: Callable[..., Option] = partial( - Option, - "--proxy", - dest="proxy", - type="str", - default="", - help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", -) - -retries: Callable[..., Option] = partial( - Option, - "--retries", - dest="retries", - type="int", - default=5, - help="Maximum number of retries each connection should attempt " - "(default %default times).", -) - -timeout: Callable[..., Option] = partial( - Option, - "--timeout", - "--default-timeout", - metavar="sec", - dest="timeout", - type="float", - default=15, - help="Set the socket timeout (default %default seconds).", -) - - -def exists_action() -> Option: - return Option( - # Option when path already exist - "--exists-action", - dest="exists_action", - type="choice", - choices=["s", "i", "w", "b", "a"], - default=[], - action="append", - metavar="action", - help="Default action when a path already exists: " - "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", - ) - - -cert: Callable[..., Option] = partial( - PipOption, - "--cert", - dest="cert", - type="path", - metavar="path", - help=( - "Path to PEM-encoded CA certificate bundle. " - "If provided, overrides the default. " - "See 'SSL Certificate Verification' in pip documentation " - "for more information." - ), -) - -client_cert: Callable[..., Option] = partial( - PipOption, - "--client-cert", - dest="client_cert", - type="path", - default=None, - metavar="path", - help="Path to SSL client certificate, a single file containing the " - "private key and the certificate in PEM format.", -) - -index_url: Callable[..., Option] = partial( - Option, - "-i", - "--index-url", - "--pypi-url", - dest="index_url", - metavar="URL", - default=PyPI.simple_url, - help="Base URL of the Python Package Index (default %default). " - "This should point to a repository compliant with PEP 503 " - "(the simple repository API) or a local directory laid out " - "in the same format.", -) - - -def extra_index_url() -> Option: - return Option( - "--extra-index-url", - dest="extra_index_urls", - metavar="URL", - action="append", - default=[], - help="Extra URLs of package indexes to use in addition to " - "--index-url. Should follow the same rules as " - "--index-url.", - ) - - -no_index: Callable[..., Option] = partial( - Option, - "--no-index", - dest="no_index", - action="store_true", - default=False, - help="Ignore package index (only looking at --find-links URLs instead).", -) - - -def find_links() -> Option: - return Option( - "-f", - "--find-links", - dest="find_links", - action="append", - default=[], - metavar="url", - help="If a URL or path to an html file, then parse for links to " - "archives such as sdist (.tar.gz) or wheel (.whl) files. " - "If a local path or file:// URL that's a directory, " - "then look for archives in the directory listing. " - "Links to VCS project URLs are not supported.", - ) - - -def trusted_host() -> Option: - return Option( - "--trusted-host", - dest="trusted_hosts", - action="append", - metavar="HOSTNAME", - default=[], - help="Mark this host or host:port pair as trusted, even though it " - "does not have valid or any HTTPS.", - ) - - -def constraints() -> Option: - return Option( - "-c", - "--constraint", - dest="constraints", - action="append", - default=[], - metavar="file", - help="Constrain versions using the given constraints file. " - "This option can be used multiple times.", - ) - - -def requirements() -> Option: - return Option( - "-r", - "--requirement", - dest="requirements", - action="append", - default=[], - metavar="file", - help="Install from the given requirements file. " - "This option can be used multiple times.", - ) - - -def editable() -> Option: - return Option( - "-e", - "--editable", - dest="editables", - action="append", - default=[], - metavar="path/url", - help=( - "Install a project in editable mode (i.e. setuptools " - '"develop mode") from a local project path or a VCS url.' - ), - ) - - -def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: - value = os.path.abspath(value) - setattr(parser.values, option.dest, value) - - -src: Callable[..., Option] = partial( - PipOption, - "--src", - "--source", - "--source-dir", - "--source-directory", - dest="src_dir", - type="path", - metavar="dir", - default=get_src_prefix(), - action="callback", - callback=_handle_src, - help="Directory to check out editable projects into. " - 'The default in a virtualenv is "/src". ' - 'The default for global installs is "/src".', -) - - -def _get_format_control(values: Values, option: Option) -> Any: - """Get a format_control object.""" - return getattr(values, option.dest) - - -def _handle_no_binary( - option: Option, opt_str: str, value: str, parser: OptionParser -) -> None: - existing = _get_format_control(parser.values, option) - FormatControl.handle_mutual_excludes( - value, - existing.no_binary, - existing.only_binary, - ) - - -def _handle_only_binary( - option: Option, opt_str: str, value: str, parser: OptionParser -) -> None: - existing = _get_format_control(parser.values, option) - FormatControl.handle_mutual_excludes( - value, - existing.only_binary, - existing.no_binary, - ) - - -def no_binary() -> Option: - format_control = FormatControl(set(), set()) - return Option( - "--no-binary", - dest="format_control", - action="callback", - callback=_handle_no_binary, - type="str", - default=format_control, - help="Do not use binary packages. Can be supplied multiple times, and " - 'each time adds to the existing value. Accepts either ":all:" to ' - 'disable all binary packages, ":none:" to empty the set (notice ' - "the colons), or one or more package names with commas between " - "them (no colons). Note that some packages are tricky to compile " - "and may fail to install when this option is used on them.", - ) - - -def only_binary() -> Option: - format_control = FormatControl(set(), set()) - return Option( - "--only-binary", - dest="format_control", - action="callback", - callback=_handle_only_binary, - type="str", - default=format_control, - help="Do not use source packages. Can be supplied multiple times, and " - 'each time adds to the existing value. Accepts either ":all:" to ' - 'disable all source packages, ":none:" to empty the set, or one ' - "or more package names with commas between them. Packages " - "without binary distributions will fail to install when this " - "option is used on them.", - ) - - -platforms: Callable[..., Option] = partial( - Option, - "--platform", - dest="platforms", - metavar="platform", - action="append", - default=None, - help=( - "Only use wheels compatible with . Defaults to the " - "platform of the running system. Use this option multiple times to " - "specify multiple platforms supported by the target interpreter." - ), -) - - -# This was made a separate function for unit-testing purposes. -def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: - """ - Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. - - :return: A 2-tuple (version_info, error_msg), where `error_msg` is - non-None if and only if there was a parsing error. - """ - if not value: - # The empty string is the same as not providing a value. - return (None, None) - - parts = value.split(".") - if len(parts) > 3: - return ((), "at most three version parts are allowed") - - if len(parts) == 1: - # Then we are in the case of "3" or "37". - value = parts[0] - if len(value) > 1: - parts = [value[0], value[1:]] - - try: - version_info = tuple(int(part) for part in parts) - except ValueError: - return ((), "each version part must be an integer") - - return (version_info, None) - - -def _handle_python_version( - option: Option, opt_str: str, value: str, parser: OptionParser -) -> None: - """ - Handle a provided --python-version value. - """ - version_info, error_msg = _convert_python_version(value) - if error_msg is not None: - msg = f"invalid --python-version value: {value!r}: {error_msg}" - raise_option_error(parser, option=option, msg=msg) - - parser.values.python_version = version_info - - -python_version: Callable[..., Option] = partial( - Option, - "--python-version", - dest="python_version", - metavar="python_version", - action="callback", - callback=_handle_python_version, - type="str", - default=None, - help=dedent( - """\ - The Python interpreter version to use for wheel and "Requires-Python" - compatibility checks. Defaults to a version derived from the running - interpreter. The version can be specified using up to three dot-separated - integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor - version can also be given as a string without dots (e.g. "37" for 3.7.0). - """ - ), -) - - -implementation: Callable[..., Option] = partial( - Option, - "--implementation", - dest="implementation", - metavar="implementation", - default=None, - help=( - "Only use wheels compatible with Python " - "implementation , e.g. 'pp', 'jy', 'cp', " - " or 'ip'. If not specified, then the current " - "interpreter implementation is used. Use 'py' to force " - "implementation-agnostic wheels." - ), -) - - -abis: Callable[..., Option] = partial( - Option, - "--abi", - dest="abis", - metavar="abi", - action="append", - default=None, - help=( - "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " - "If not specified, then the current interpreter abi tag is used. " - "Use this option multiple times to specify multiple abis supported " - "by the target interpreter. Generally you will need to specify " - "--implementation, --platform, and --python-version when using this " - "option." - ), -) - - -def add_target_python_options(cmd_opts: OptionGroup) -> None: - cmd_opts.add_option(platforms()) - cmd_opts.add_option(python_version()) - cmd_opts.add_option(implementation()) - cmd_opts.add_option(abis()) - - -def make_target_python(options: Values) -> TargetPython: - target_python = TargetPython( - platforms=options.platforms, - py_version_info=options.python_version, - abis=options.abis, - implementation=options.implementation, - ) - - return target_python - - -def prefer_binary() -> Option: - return Option( - "--prefer-binary", - dest="prefer_binary", - action="store_true", - default=False, - help=( - "Prefer binary packages over source packages, even if the " - "source packages are newer." - ), - ) - - -cache_dir: Callable[..., Option] = partial( - PipOption, - "--cache-dir", - dest="cache_dir", - default=USER_CACHE_DIR, - metavar="dir", - type="path", - help="Store the cache data in .", -) - - -def _handle_no_cache_dir( - option: Option, opt: str, value: str, parser: OptionParser -) -> None: - """ - Process a value provided for the --no-cache-dir option. - - This is an optparse.Option callback for the --no-cache-dir option. - """ - # The value argument will be None if --no-cache-dir is passed via the - # command-line, since the option doesn't accept arguments. However, - # the value can be non-None if the option is triggered e.g. by an - # environment variable, like PIP_NO_CACHE_DIR=true. - if value is not None: - # Then parse the string value to get argument error-checking. - try: - strtobool(value) - except ValueError as exc: - raise_option_error(parser, option=option, msg=str(exc)) - - # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() - # converted to 0 (like "false" or "no") caused cache_dir to be disabled - # rather than enabled (logic would say the latter). Thus, we disable - # the cache directory not just on values that parse to True, but (for - # backwards compatibility reasons) also on values that parse to False. - # In other words, always set it to False if the option is provided in - # some (valid) form. - parser.values.cache_dir = False - - -no_cache: Callable[..., Option] = partial( - Option, - "--no-cache-dir", - dest="cache_dir", - action="callback", - callback=_handle_no_cache_dir, - help="Disable the cache.", -) - -no_deps: Callable[..., Option] = partial( - Option, - "--no-deps", - "--no-dependencies", - dest="ignore_dependencies", - action="store_true", - default=False, - help="Don't install package dependencies.", -) - -ignore_requires_python: Callable[..., Option] = partial( - Option, - "--ignore-requires-python", - dest="ignore_requires_python", - action="store_true", - help="Ignore the Requires-Python information.", -) - -no_build_isolation: Callable[..., Option] = partial( - Option, - "--no-build-isolation", - dest="build_isolation", - action="store_false", - default=True, - help="Disable isolation when building a modern source distribution. " - "Build dependencies specified by PEP 518 must be already installed " - "if this option is used.", -) - -check_build_deps: Callable[..., Option] = partial( - Option, - "--check-build-dependencies", - dest="check_build_deps", - action="store_true", - default=False, - help="Check the build dependencies when PEP517 is used.", -) - - -def _handle_no_use_pep517( - option: Option, opt: str, value: str, parser: OptionParser -) -> None: - """ - Process a value provided for the --no-use-pep517 option. - - This is an optparse.Option callback for the no_use_pep517 option. - """ - # Since --no-use-pep517 doesn't accept arguments, the value argument - # will be None if --no-use-pep517 is passed via the command-line. - # However, the value can be non-None if the option is triggered e.g. - # by an environment variable, for example "PIP_NO_USE_PEP517=true". - if value is not None: - msg = """A value was passed for --no-use-pep517, - probably using either the PIP_NO_USE_PEP517 environment variable - or the "no-use-pep517" config file option. Use an appropriate value - of the PIP_USE_PEP517 environment variable or the "use-pep517" - config file option instead. - """ - raise_option_error(parser, option=option, msg=msg) - - # If user doesn't wish to use pep517, we check if setuptools and wheel are installed - # and raise error if it is not. - packages = ("setuptools", "wheel") - if not all(importlib.util.find_spec(package) for package in packages): - msg = ( - f"It is not possible to use --no-use-pep517 " - f"without {' and '.join(packages)} installed." - ) - raise_option_error(parser, option=option, msg=msg) - - # Otherwise, --no-use-pep517 was passed via the command-line. - parser.values.use_pep517 = False - - -use_pep517: Any = partial( - Option, - "--use-pep517", - dest="use_pep517", - action="store_true", - default=None, - help="Use PEP 517 for building source distributions " - "(use --no-use-pep517 to force legacy behaviour).", -) - -no_use_pep517: Any = partial( - Option, - "--no-use-pep517", - dest="use_pep517", - action="callback", - callback=_handle_no_use_pep517, - default=None, - help=SUPPRESS_HELP, -) - - -def _handle_config_settings( - option: Option, opt_str: str, value: str, parser: OptionParser -) -> None: - key, sep, val = value.partition("=") - if sep != "=": - parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") - dest = getattr(parser.values, option.dest) - if dest is None: - dest = {} - setattr(parser.values, option.dest, dest) - if key in dest: - if isinstance(dest[key], list): - dest[key].append(val) - else: - dest[key] = [dest[key], val] - else: - dest[key] = val - - -config_settings: Callable[..., Option] = partial( - Option, - "-C", - "--config-settings", - dest="config_settings", - type=str, - action="callback", - callback=_handle_config_settings, - metavar="settings", - help="Configuration settings to be passed to the PEP 517 build backend. " - "Settings take the form KEY=VALUE. Use multiple --config-settings options " - "to pass multiple keys to the backend.", -) - -build_options: Callable[..., Option] = partial( - Option, - "--build-option", - dest="build_options", - metavar="options", - action="append", - help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", -) - -global_options: Callable[..., Option] = partial( - Option, - "--global-option", - dest="global_options", - action="append", - metavar="options", - help="Extra global options to be supplied to the setup.py " - "call before the install or bdist_wheel command.", -) - -no_clean: Callable[..., Option] = partial( - Option, - "--no-clean", - action="store_true", - default=False, - help="Don't clean up build directories.", -) - -pre: Callable[..., Option] = partial( - Option, - "--pre", - action="store_true", - default=False, - help="Include pre-release and development versions. By default, " - "pip only finds stable versions.", -) - -disable_pip_version_check: Callable[..., Option] = partial( - Option, - "--disable-pip-version-check", - dest="disable_pip_version_check", - action="store_true", - default=False, - help="Don't periodically check PyPI to determine whether a new version " - "of pip is available for download. Implied with --no-index.", -) - -root_user_action: Callable[..., Option] = partial( - Option, - "--root-user-action", - dest="root_user_action", - default="warn", - choices=["warn", "ignore"], - help="Action if pip is run as a root user. By default, a warning message is shown.", -) - - -def _handle_merge_hash( - option: Option, opt_str: str, value: str, parser: OptionParser -) -> None: - """Given a value spelled "algo:digest", append the digest to a list - pointed to in a dict by the algo name.""" - if not parser.values.hashes: - parser.values.hashes = {} - try: - algo, digest = value.split(":", 1) - except ValueError: - parser.error( - f"Arguments to {opt_str} must be a hash name " - "followed by a value, like --hash=sha256:" - "abcde..." - ) - if algo not in STRONG_HASHES: - parser.error( - "Allowed hash algorithms for {} are {}.".format( - opt_str, ", ".join(STRONG_HASHES) - ) - ) - parser.values.hashes.setdefault(algo, []).append(digest) - - -hash: Callable[..., Option] = partial( - Option, - "--hash", - # Hash values eventually end up in InstallRequirement.hashes due to - # __dict__ copying in process_line(). - dest="hashes", - action="callback", - callback=_handle_merge_hash, - type="string", - help="Verify that the package's archive matches this " - "hash before installing. Example: --hash=sha256:abcdef...", -) - - -require_hashes: Callable[..., Option] = partial( - Option, - "--require-hashes", - dest="require_hashes", - action="store_true", - default=False, - help="Require a hash to check each requirement against, for " - "repeatable installs. This option is implied when any package in a " - "requirements file has a --hash option.", -) - - -list_path: Callable[..., Option] = partial( - PipOption, - "--path", - dest="path", - type="path", - action="append", - help="Restrict to the specified installation path for listing " - "packages (can be used multiple times).", -) - - -def check_list_path_option(options: Values) -> None: - if options.path and (options.user or options.local): - raise CommandError("Cannot combine '--path' with '--user' or '--local'") - - -list_exclude: Callable[..., Option] = partial( - PipOption, - "--exclude", - dest="excludes", - action="append", - metavar="package", - type="package_name", - help="Exclude specified package from the output", -) - - -no_python_version_warning: Callable[..., Option] = partial( - Option, - "--no-python-version-warning", - dest="no_python_version_warning", - action="store_true", - default=False, - help="Silence deprecation warnings for upcoming unsupported Pythons.", -) - - -# Features that are now always on. A warning is printed if they are used. -ALWAYS_ENABLED_FEATURES = [ - "no-binary-enable-wheel-cache", # always on since 23.1 -] - -use_new_feature: Callable[..., Option] = partial( - Option, - "--use-feature", - dest="features_enabled", - metavar="feature", - action="append", - default=[], - choices=[ - "fast-deps", - "truststore", - ] - + ALWAYS_ENABLED_FEATURES, - help="Enable new functionality, that may be backward incompatible.", -) - -use_deprecated_feature: Callable[..., Option] = partial( - Option, - "--use-deprecated", - dest="deprecated_features_enabled", - metavar="feature", - action="append", - default=[], - choices=[ - "legacy-resolver", - ], - help=("Enable deprecated functionality, that will be removed in the future."), -) - - -########## -# groups # -########## - -general_group: Dict[str, Any] = { - "name": "General Options", - "options": [ - help_, - debug_mode, - isolated_mode, - require_virtualenv, - python, - verbose, - version, - quiet, - log, - no_input, - keyring_provider, - proxy, - retries, - timeout, - exists_action, - trusted_host, - cert, - client_cert, - cache_dir, - no_cache, - disable_pip_version_check, - no_color, - no_python_version_warning, - use_new_feature, - use_deprecated_feature, - ], -} - -index_group: Dict[str, Any] = { - "name": "Package Index Options", - "options": [ - index_url, - extra_index_url, - no_index, - find_links, - ], -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py deleted file mode 100644 index 139995a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py +++ /dev/null @@ -1,27 +0,0 @@ -from contextlib import ExitStack, contextmanager -from typing import ContextManager, Generator, TypeVar - -_T = TypeVar("_T", covariant=True) - - -class CommandContextMixIn: - def __init__(self) -> None: - super().__init__() - self._in_main_context = False - self._main_context = ExitStack() - - @contextmanager - def main_context(self) -> Generator[None, None, None]: - assert not self._in_main_context - - self._in_main_context = True - try: - with self._main_context: - yield - finally: - self._in_main_context = False - - def enter_context(self, context_provider: ContextManager[_T]) -> _T: - assert self._in_main_context - - return self._main_context.enter_context(context_provider) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main.py deleted file mode 100644 index 7e061f5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main.py +++ /dev/null @@ -1,79 +0,0 @@ -"""Primary application entrypoint. -""" -import locale -import logging -import os -import sys -import warnings -from typing import List, Optional - -from pip._internal.cli.autocompletion import autocomplete -from pip._internal.cli.main_parser import parse_command -from pip._internal.commands import create_command -from pip._internal.exceptions import PipError -from pip._internal.utils import deprecation - -logger = logging.getLogger(__name__) - - -# Do not import and use main() directly! Using it directly is actively -# discouraged by pip's maintainers. The name, location and behavior of -# this function is subject to change, so calling it directly is not -# portable across different pip versions. - -# In addition, running pip in-process is unsupported and unsafe. This is -# elaborated in detail at -# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. -# That document also provides suggestions that should work for nearly -# all users that are considering importing and using main() directly. - -# However, we know that certain users will still want to invoke pip -# in-process. If you understand and accept the implications of using pip -# in an unsupported manner, the best approach is to use runpy to avoid -# depending on the exact location of this entry point. - -# The following example shows how to use runpy to invoke pip in that -# case: -# -# sys.argv = ["pip", your, args, here] -# runpy.run_module("pip", run_name="__main__") -# -# Note that this will exit the process after running, unlike a direct -# call to main. As it is not safe to do any processing after calling -# main, this should not be an issue in practice. - - -def main(args: Optional[List[str]] = None) -> int: - if args is None: - args = sys.argv[1:] - - # Suppress the pkg_resources deprecation warning - # Note - we use a module of .*pkg_resources to cover - # the normal case (pip._vendor.pkg_resources) and the - # devendored case (a bare pkg_resources) - warnings.filterwarnings( - action="ignore", category=DeprecationWarning, module=".*pkg_resources" - ) - - # Configure our deprecation warnings to be sent through loggers - deprecation.install_warning_logger() - - autocomplete() - - try: - cmd_name, cmd_args = parse_command(args) - except PipError as exc: - sys.stderr.write(f"ERROR: {exc}") - sys.stderr.write(os.linesep) - sys.exit(1) - - # Needed for locale.getpreferredencoding(False) to work - # in pip._internal.utils.encoding.auto_decode - try: - locale.setlocale(locale.LC_ALL, "") - except locale.Error as e: - # setlocale can apparently crash if locale are uninitialized - logger.debug("Ignoring error %s when setting locale", e) - command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) - - return command.main(cmd_args) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py deleted file mode 100644 index 5ade356..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py +++ /dev/null @@ -1,134 +0,0 @@ -"""A single place for constructing and exposing the main parser -""" - -import os -import subprocess -import sys -from typing import List, Optional, Tuple - -from pip._internal.build_env import get_runnable_pip -from pip._internal.cli import cmdoptions -from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter -from pip._internal.commands import commands_dict, get_similar_commands -from pip._internal.exceptions import CommandError -from pip._internal.utils.misc import get_pip_version, get_prog - -__all__ = ["create_main_parser", "parse_command"] - - -def create_main_parser() -> ConfigOptionParser: - """Creates and returns the main parser for pip's CLI""" - - parser = ConfigOptionParser( - usage="\n%prog [options]", - add_help_option=False, - formatter=UpdatingDefaultsHelpFormatter(), - name="global", - prog=get_prog(), - ) - parser.disable_interspersed_args() - - parser.version = get_pip_version() - - # add the general options - gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) - parser.add_option_group(gen_opts) - - # so the help formatter knows - parser.main = True # type: ignore - - # create command listing for description - description = [""] + [ - f"{name:27} {command_info.summary}" - for name, command_info in commands_dict.items() - ] - parser.description = "\n".join(description) - - return parser - - -def identify_python_interpreter(python: str) -> Optional[str]: - # If the named file exists, use it. - # If it's a directory, assume it's a virtual environment and - # look for the environment's Python executable. - if os.path.exists(python): - if os.path.isdir(python): - # bin/python for Unix, Scripts/python.exe for Windows - # Try both in case of odd cases like cygwin. - for exe in ("bin/python", "Scripts/python.exe"): - py = os.path.join(python, exe) - if os.path.exists(py): - return py - else: - return python - - # Could not find the interpreter specified - return None - - -def parse_command(args: List[str]) -> Tuple[str, List[str]]: - parser = create_main_parser() - - # Note: parser calls disable_interspersed_args(), so the result of this - # call is to split the initial args into the general options before the - # subcommand and everything else. - # For example: - # args: ['--timeout=5', 'install', '--user', 'INITools'] - # general_options: ['--timeout==5'] - # args_else: ['install', '--user', 'INITools'] - general_options, args_else = parser.parse_args(args) - - # --python - if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: - # Re-invoke pip using the specified Python interpreter - interpreter = identify_python_interpreter(general_options.python) - if interpreter is None: - raise CommandError( - f"Could not locate Python interpreter {general_options.python}" - ) - - pip_cmd = [ - interpreter, - get_runnable_pip(), - ] - pip_cmd.extend(args) - - # Set a flag so the child doesn't re-invoke itself, causing - # an infinite loop. - os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" - returncode = 0 - try: - proc = subprocess.run(pip_cmd) - returncode = proc.returncode - except (subprocess.SubprocessError, OSError) as exc: - raise CommandError(f"Failed to run pip under {interpreter}: {exc}") - sys.exit(returncode) - - # --version - if general_options.version: - sys.stdout.write(parser.version) - sys.stdout.write(os.linesep) - sys.exit() - - # pip || pip help -> print_help() - if not args_else or (args_else[0] == "help" and len(args_else) == 1): - parser.print_help() - sys.exit() - - # the subcommand name - cmd_name = args_else[0] - - if cmd_name not in commands_dict: - guess = get_similar_commands(cmd_name) - - msg = [f'unknown command "{cmd_name}"'] - if guess: - msg.append(f'maybe you meant "{guess}"') - - raise CommandError(" - ".join(msg)) - - # all the args without the subcommand - cmd_args = args[:] - cmd_args.remove(cmd_name) - - return cmd_name, cmd_args diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py deleted file mode 100644 index ae554b2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py +++ /dev/null @@ -1,294 +0,0 @@ -"""Base option parser setup""" - -import logging -import optparse -import shutil -import sys -import textwrap -from contextlib import suppress -from typing import Any, Dict, Generator, List, Tuple - -from pip._internal.cli.status_codes import UNKNOWN_ERROR -from pip._internal.configuration import Configuration, ConfigurationError -from pip._internal.utils.misc import redact_auth_from_url, strtobool - -logger = logging.getLogger(__name__) - - -class PrettyHelpFormatter(optparse.IndentedHelpFormatter): - """A prettier/less verbose help formatter for optparse.""" - - def __init__(self, *args: Any, **kwargs: Any) -> None: - # help position must be aligned with __init__.parseopts.description - kwargs["max_help_position"] = 30 - kwargs["indent_increment"] = 1 - kwargs["width"] = shutil.get_terminal_size()[0] - 2 - super().__init__(*args, **kwargs) - - def format_option_strings(self, option: optparse.Option) -> str: - return self._format_option_strings(option) - - def _format_option_strings( - self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " - ) -> str: - """ - Return a comma-separated list of option strings and metavars. - - :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') - :param mvarfmt: metavar format string - :param optsep: separator - """ - opts = [] - - if option._short_opts: - opts.append(option._short_opts[0]) - if option._long_opts: - opts.append(option._long_opts[0]) - if len(opts) > 1: - opts.insert(1, optsep) - - if option.takes_value(): - assert option.dest is not None - metavar = option.metavar or option.dest.lower() - opts.append(mvarfmt.format(metavar.lower())) - - return "".join(opts) - - def format_heading(self, heading: str) -> str: - if heading == "Options": - return "" - return heading + ":\n" - - def format_usage(self, usage: str) -> str: - """ - Ensure there is only one newline between usage and the first heading - if there is no description. - """ - msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) - return msg - - def format_description(self, description: str) -> str: - # leave full control over description to us - if description: - if hasattr(self.parser, "main"): - label = "Commands" - else: - label = "Description" - # some doc strings have initial newlines, some don't - description = description.lstrip("\n") - # some doc strings have final newlines and spaces, some don't - description = description.rstrip() - # dedent, then reindent - description = self.indent_lines(textwrap.dedent(description), " ") - description = f"{label}:\n{description}\n" - return description - else: - return "" - - def format_epilog(self, epilog: str) -> str: - # leave full control over epilog to us - if epilog: - return epilog - else: - return "" - - def indent_lines(self, text: str, indent: str) -> str: - new_lines = [indent + line for line in text.split("\n")] - return "\n".join(new_lines) - - -class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): - """Custom help formatter for use in ConfigOptionParser. - - This is updates the defaults before expanding them, allowing - them to show up correctly in the help listing. - - Also redact auth from url type options - """ - - def expand_default(self, option: optparse.Option) -> str: - default_values = None - if self.parser is not None: - assert isinstance(self.parser, ConfigOptionParser) - self.parser._update_defaults(self.parser.defaults) - assert option.dest is not None - default_values = self.parser.defaults.get(option.dest) - help_text = super().expand_default(option) - - if default_values and option.metavar == "URL": - if isinstance(default_values, str): - default_values = [default_values] - - # If its not a list, we should abort and just return the help text - if not isinstance(default_values, list): - default_values = [] - - for val in default_values: - help_text = help_text.replace(val, redact_auth_from_url(val)) - - return help_text - - -class CustomOptionParser(optparse.OptionParser): - def insert_option_group( - self, idx: int, *args: Any, **kwargs: Any - ) -> optparse.OptionGroup: - """Insert an OptionGroup at a given position.""" - group = self.add_option_group(*args, **kwargs) - - self.option_groups.pop() - self.option_groups.insert(idx, group) - - return group - - @property - def option_list_all(self) -> List[optparse.Option]: - """Get a list of all options, including those in option groups.""" - res = self.option_list[:] - for i in self.option_groups: - res.extend(i.option_list) - - return res - - -class ConfigOptionParser(CustomOptionParser): - """Custom option parser which updates its defaults by checking the - configuration files and environmental variables""" - - def __init__( - self, - *args: Any, - name: str, - isolated: bool = False, - **kwargs: Any, - ) -> None: - self.name = name - self.config = Configuration(isolated) - - assert self.name - super().__init__(*args, **kwargs) - - def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: - try: - return option.check_value(key, val) - except optparse.OptionValueError as exc: - print(f"An error occurred during configuration: {exc}") - sys.exit(3) - - def _get_ordered_configuration_items( - self, - ) -> Generator[Tuple[str, Any], None, None]: - # Configuration gives keys in an unordered manner. Order them. - override_order = ["global", self.name, ":env:"] - - # Pool the options into different groups - section_items: Dict[str, List[Tuple[str, Any]]] = { - name: [] for name in override_order - } - for section_key, val in self.config.items(): - # ignore empty values - if not val: - logger.debug( - "Ignoring configuration key '%s' as it's value is empty.", - section_key, - ) - continue - - section, key = section_key.split(".", 1) - if section in override_order: - section_items[section].append((key, val)) - - # Yield each group in their override order - for section in override_order: - for key, val in section_items[section]: - yield key, val - - def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: - """Updates the given defaults with values from the config files and - the environ. Does a little special handling for certain types of - options (lists).""" - - # Accumulate complex default state. - self.values = optparse.Values(self.defaults) - late_eval = set() - # Then set the options with those values - for key, val in self._get_ordered_configuration_items(): - # '--' because configuration supports only long names - option = self.get_option("--" + key) - - # Ignore options not present in this parser. E.g. non-globals put - # in [global] by users that want them to apply to all applicable - # commands. - if option is None: - continue - - assert option.dest is not None - - if option.action in ("store_true", "store_false"): - try: - val = strtobool(val) - except ValueError: - self.error( - f"{val} is not a valid value for {key} option, " - "please specify a boolean value like yes/no, " - "true/false or 1/0 instead." - ) - elif option.action == "count": - with suppress(ValueError): - val = strtobool(val) - with suppress(ValueError): - val = int(val) - if not isinstance(val, int) or val < 0: - self.error( - f"{val} is not a valid value for {key} option, " - "please instead specify either a non-negative integer " - "or a boolean value like yes/no or false/true " - "which is equivalent to 1/0." - ) - elif option.action == "append": - val = val.split() - val = [self.check_default(option, key, v) for v in val] - elif option.action == "callback": - assert option.callback is not None - late_eval.add(option.dest) - opt_str = option.get_opt_string() - val = option.convert_value(opt_str, val) - # From take_action - args = option.callback_args or () - kwargs = option.callback_kwargs or {} - option.callback(option, opt_str, val, self, *args, **kwargs) - else: - val = self.check_default(option, key, val) - - defaults[option.dest] = val - - for key in late_eval: - defaults[key] = getattr(self.values, key) - self.values = None - return defaults - - def get_default_values(self) -> optparse.Values: - """Overriding to make updating the defaults after instantiation of - the option parser possible, _update_defaults() does the dirty work.""" - if not self.process_default_values: - # Old, pre-Optik 1.5 behaviour. - return optparse.Values(self.defaults) - - # Load the configuration, or error out in case of an error - try: - self.config.load() - except ConfigurationError as err: - self.exit(UNKNOWN_ERROR, str(err)) - - defaults = self._update_defaults(self.defaults.copy()) # ours - for option in self._get_all_options(): - assert option.dest is not None - default = defaults.get(option.dest) - if isinstance(default, str): - opt_str = option.get_opt_string() - defaults[option.dest] = option.check_value(opt_str, default) - return optparse.Values(defaults) - - def error(self, msg: str) -> None: - self.print_usage(sys.stderr) - self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py deleted file mode 100644 index 0ad1403..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py +++ /dev/null @@ -1,68 +0,0 @@ -import functools -from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple - -from pip._vendor.rich.progress import ( - BarColumn, - DownloadColumn, - FileSizeColumn, - Progress, - ProgressColumn, - SpinnerColumn, - TextColumn, - TimeElapsedColumn, - TimeRemainingColumn, - TransferSpeedColumn, -) - -from pip._internal.utils.logging import get_indentation - -DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] - - -def _rich_progress_bar( - iterable: Iterable[bytes], - *, - bar_type: str, - size: int, -) -> Generator[bytes, None, None]: - assert bar_type == "on", "This should only be used in the default mode." - - if not size: - total = float("inf") - columns: Tuple[ProgressColumn, ...] = ( - TextColumn("[progress.description]{task.description}"), - SpinnerColumn("line", speed=1.5), - FileSizeColumn(), - TransferSpeedColumn(), - TimeElapsedColumn(), - ) - else: - total = size - columns = ( - TextColumn("[progress.description]{task.description}"), - BarColumn(), - DownloadColumn(), - TransferSpeedColumn(), - TextColumn("eta"), - TimeRemainingColumn(), - ) - - progress = Progress(*columns, refresh_per_second=30) - task_id = progress.add_task(" " * (get_indentation() + 2), total=total) - with progress: - for chunk in iterable: - yield chunk - progress.update(task_id, advance=len(chunk)) - - -def get_download_progress_renderer( - *, bar_type: str, size: Optional[int] = None -) -> DownloadProgressRenderer: - """Get an object that can be used to render the download progress. - - Returns a callable, that takes an iterable to "wrap". - """ - if bar_type == "on": - return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) - else: - return iter # no-op, when passed an iterator diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py deleted file mode 100644 index 6f2f79c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py +++ /dev/null @@ -1,505 +0,0 @@ -"""Contains the Command base classes that depend on PipSession. - -The classes in this module are in a separate module so the commands not -needing download / PackageFinder capability don't unnecessarily import the -PackageFinder machinery and all its vendored dependencies, etc. -""" - -import logging -import os -import sys -from functools import partial -from optparse import Values -from typing import TYPE_CHECKING, Any, List, Optional, Tuple - -from pip._internal.cache import WheelCache -from pip._internal.cli import cmdoptions -from pip._internal.cli.base_command import Command -from pip._internal.cli.command_context import CommandContextMixIn -from pip._internal.exceptions import CommandError, PreviousBuildDirError -from pip._internal.index.collector import LinkCollector -from pip._internal.index.package_finder import PackageFinder -from pip._internal.models.selection_prefs import SelectionPreferences -from pip._internal.models.target_python import TargetPython -from pip._internal.network.session import PipSession -from pip._internal.operations.build.build_tracker import BuildTracker -from pip._internal.operations.prepare import RequirementPreparer -from pip._internal.req.constructors import ( - install_req_from_editable, - install_req_from_line, - install_req_from_parsed_requirement, - install_req_from_req_string, -) -from pip._internal.req.req_file import parse_requirements -from pip._internal.req.req_install import InstallRequirement -from pip._internal.resolution.base import BaseResolver -from pip._internal.self_outdated_check import pip_self_version_check -from pip._internal.utils.temp_dir import ( - TempDirectory, - TempDirectoryTypeRegistry, - tempdir_kinds, -) -from pip._internal.utils.virtualenv import running_under_virtualenv - -if TYPE_CHECKING: - from ssl import SSLContext - -logger = logging.getLogger(__name__) - - -def _create_truststore_ssl_context() -> Optional["SSLContext"]: - if sys.version_info < (3, 10): - raise CommandError("The truststore feature is only available for Python 3.10+") - - try: - import ssl - except ImportError: - logger.warning("Disabling truststore since ssl support is missing") - return None - - try: - from pip._vendor import truststore - except ImportError as e: - raise CommandError(f"The truststore feature is unavailable: {e}") - - return truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) - - -class SessionCommandMixin(CommandContextMixIn): - - """ - A class mixin for command classes needing _build_session(). - """ - - def __init__(self) -> None: - super().__init__() - self._session: Optional[PipSession] = None - - @classmethod - def _get_index_urls(cls, options: Values) -> Optional[List[str]]: - """Return a list of index urls from user-provided options.""" - index_urls = [] - if not getattr(options, "no_index", False): - url = getattr(options, "index_url", None) - if url: - index_urls.append(url) - urls = getattr(options, "extra_index_urls", None) - if urls: - index_urls.extend(urls) - # Return None rather than an empty list - return index_urls or None - - def get_default_session(self, options: Values) -> PipSession: - """Get a default-managed session.""" - if self._session is None: - self._session = self.enter_context(self._build_session(options)) - # there's no type annotation on requests.Session, so it's - # automatically ContextManager[Any] and self._session becomes Any, - # then https://github.com/python/mypy/issues/7696 kicks in - assert self._session is not None - return self._session - - def _build_session( - self, - options: Values, - retries: Optional[int] = None, - timeout: Optional[int] = None, - fallback_to_certifi: bool = False, - ) -> PipSession: - cache_dir = options.cache_dir - assert not cache_dir or os.path.isabs(cache_dir) - - if "truststore" in options.features_enabled: - try: - ssl_context = _create_truststore_ssl_context() - except Exception: - if not fallback_to_certifi: - raise - ssl_context = None - else: - ssl_context = None - - session = PipSession( - cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, - retries=retries if retries is not None else options.retries, - trusted_hosts=options.trusted_hosts, - index_urls=self._get_index_urls(options), - ssl_context=ssl_context, - ) - - # Handle custom ca-bundles from the user - if options.cert: - session.verify = options.cert - - # Handle SSL client certificate - if options.client_cert: - session.cert = options.client_cert - - # Handle timeouts - if options.timeout or timeout: - session.timeout = timeout if timeout is not None else options.timeout - - # Handle configured proxies - if options.proxy: - session.proxies = { - "http": options.proxy, - "https": options.proxy, - } - - # Determine if we can prompt the user for authentication or not - session.auth.prompting = not options.no_input - session.auth.keyring_provider = options.keyring_provider - - return session - - -class IndexGroupCommand(Command, SessionCommandMixin): - - """ - Abstract base class for commands with the index_group options. - - This also corresponds to the commands that permit the pip version check. - """ - - def handle_pip_version_check(self, options: Values) -> None: - """ - Do the pip version check if not disabled. - - This overrides the default behavior of not doing the check. - """ - # Make sure the index_group options are present. - assert hasattr(options, "no_index") - - if options.disable_pip_version_check or options.no_index: - return - - # Otherwise, check if we're using the latest version of pip available. - session = self._build_session( - options, - retries=0, - timeout=min(5, options.timeout), - # This is set to ensure the function does not fail when truststore is - # specified in use-feature but cannot be loaded. This usually raises a - # CommandError and shows a nice user-facing error, but this function is not - # called in that try-except block. - fallback_to_certifi=True, - ) - with session: - pip_self_version_check(session, options) - - -KEEPABLE_TEMPDIR_TYPES = [ - tempdir_kinds.BUILD_ENV, - tempdir_kinds.EPHEM_WHEEL_CACHE, - tempdir_kinds.REQ_BUILD, -] - - -def warn_if_run_as_root() -> None: - """Output a warning for sudo users on Unix. - - In a virtual environment, sudo pip still writes to virtualenv. - On Windows, users may run pip as Administrator without issues. - This warning only applies to Unix root users outside of virtualenv. - """ - if running_under_virtualenv(): - return - if not hasattr(os, "getuid"): - return - # On Windows, there are no "system managed" Python packages. Installing as - # Administrator via pip is the correct way of updating system environments. - # - # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform - # checks: https://mypy.readthedocs.io/en/stable/common_issues.html - if sys.platform == "win32" or sys.platform == "cygwin": - return - - if os.getuid() != 0: - return - - logger.warning( - "Running pip as the 'root' user can result in broken permissions and " - "conflicting behaviour with the system package manager. " - "It is recommended to use a virtual environment instead: " - "https://pip.pypa.io/warnings/venv" - ) - - -def with_cleanup(func: Any) -> Any: - """Decorator for common logic related to managing temporary - directories. - """ - - def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: - for t in KEEPABLE_TEMPDIR_TYPES: - registry.set_delete(t, False) - - def wrapper( - self: RequirementCommand, options: Values, args: List[Any] - ) -> Optional[int]: - assert self.tempdir_registry is not None - if options.no_clean: - configure_tempdir_registry(self.tempdir_registry) - - try: - return func(self, options, args) - except PreviousBuildDirError: - # This kind of conflict can occur when the user passes an explicit - # build directory with a pre-existing folder. In that case we do - # not want to accidentally remove it. - configure_tempdir_registry(self.tempdir_registry) - raise - - return wrapper - - -class RequirementCommand(IndexGroupCommand): - def __init__(self, *args: Any, **kw: Any) -> None: - super().__init__(*args, **kw) - - self.cmd_opts.add_option(cmdoptions.no_clean()) - - @staticmethod - def determine_resolver_variant(options: Values) -> str: - """Determines which resolver should be used, based on the given options.""" - if "legacy-resolver" in options.deprecated_features_enabled: - return "legacy" - - return "resolvelib" - - @classmethod - def make_requirement_preparer( - cls, - temp_build_dir: TempDirectory, - options: Values, - build_tracker: BuildTracker, - session: PipSession, - finder: PackageFinder, - use_user_site: bool, - download_dir: Optional[str] = None, - verbosity: int = 0, - ) -> RequirementPreparer: - """ - Create a RequirementPreparer instance for the given parameters. - """ - temp_build_dir_path = temp_build_dir.path - assert temp_build_dir_path is not None - legacy_resolver = False - - resolver_variant = cls.determine_resolver_variant(options) - if resolver_variant == "resolvelib": - lazy_wheel = "fast-deps" in options.features_enabled - if lazy_wheel: - logger.warning( - "pip is using lazily downloaded wheels using HTTP " - "range requests to obtain dependency information. " - "This experimental feature is enabled through " - "--use-feature=fast-deps and it is not ready for " - "production." - ) - else: - legacy_resolver = True - lazy_wheel = False - if "fast-deps" in options.features_enabled: - logger.warning( - "fast-deps has no effect when used with the legacy resolver." - ) - - return RequirementPreparer( - build_dir=temp_build_dir_path, - src_dir=options.src_dir, - download_dir=download_dir, - build_isolation=options.build_isolation, - check_build_deps=options.check_build_deps, - build_tracker=build_tracker, - session=session, - progress_bar=options.progress_bar, - finder=finder, - require_hashes=options.require_hashes, - use_user_site=use_user_site, - lazy_wheel=lazy_wheel, - verbosity=verbosity, - legacy_resolver=legacy_resolver, - ) - - @classmethod - def make_resolver( - cls, - preparer: RequirementPreparer, - finder: PackageFinder, - options: Values, - wheel_cache: Optional[WheelCache] = None, - use_user_site: bool = False, - ignore_installed: bool = True, - ignore_requires_python: bool = False, - force_reinstall: bool = False, - upgrade_strategy: str = "to-satisfy-only", - use_pep517: Optional[bool] = None, - py_version_info: Optional[Tuple[int, ...]] = None, - ) -> BaseResolver: - """ - Create a Resolver instance for the given parameters. - """ - make_install_req = partial( - install_req_from_req_string, - isolated=options.isolated_mode, - use_pep517=use_pep517, - ) - resolver_variant = cls.determine_resolver_variant(options) - # The long import name and duplicated invocation is needed to convince - # Mypy into correctly typechecking. Otherwise it would complain the - # "Resolver" class being redefined. - if resolver_variant == "resolvelib": - import pip._internal.resolution.resolvelib.resolver - - return pip._internal.resolution.resolvelib.resolver.Resolver( - preparer=preparer, - finder=finder, - wheel_cache=wheel_cache, - make_install_req=make_install_req, - use_user_site=use_user_site, - ignore_dependencies=options.ignore_dependencies, - ignore_installed=ignore_installed, - ignore_requires_python=ignore_requires_python, - force_reinstall=force_reinstall, - upgrade_strategy=upgrade_strategy, - py_version_info=py_version_info, - ) - import pip._internal.resolution.legacy.resolver - - return pip._internal.resolution.legacy.resolver.Resolver( - preparer=preparer, - finder=finder, - wheel_cache=wheel_cache, - make_install_req=make_install_req, - use_user_site=use_user_site, - ignore_dependencies=options.ignore_dependencies, - ignore_installed=ignore_installed, - ignore_requires_python=ignore_requires_python, - force_reinstall=force_reinstall, - upgrade_strategy=upgrade_strategy, - py_version_info=py_version_info, - ) - - def get_requirements( - self, - args: List[str], - options: Values, - finder: PackageFinder, - session: PipSession, - ) -> List[InstallRequirement]: - """ - Parse command-line arguments into the corresponding requirements. - """ - requirements: List[InstallRequirement] = [] - for filename in options.constraints: - for parsed_req in parse_requirements( - filename, - constraint=True, - finder=finder, - options=options, - session=session, - ): - req_to_add = install_req_from_parsed_requirement( - parsed_req, - isolated=options.isolated_mode, - user_supplied=False, - ) - requirements.append(req_to_add) - - for req in args: - req_to_add = install_req_from_line( - req, - comes_from=None, - isolated=options.isolated_mode, - use_pep517=options.use_pep517, - user_supplied=True, - config_settings=getattr(options, "config_settings", None), - ) - requirements.append(req_to_add) - - for req in options.editables: - req_to_add = install_req_from_editable( - req, - user_supplied=True, - isolated=options.isolated_mode, - use_pep517=options.use_pep517, - config_settings=getattr(options, "config_settings", None), - ) - requirements.append(req_to_add) - - # NOTE: options.require_hashes may be set if --require-hashes is True - for filename in options.requirements: - for parsed_req in parse_requirements( - filename, finder=finder, options=options, session=session - ): - req_to_add = install_req_from_parsed_requirement( - parsed_req, - isolated=options.isolated_mode, - use_pep517=options.use_pep517, - user_supplied=True, - config_settings=parsed_req.options.get("config_settings") - if parsed_req.options - else None, - ) - requirements.append(req_to_add) - - # If any requirement has hash options, enable hash checking. - if any(req.has_hash_options for req in requirements): - options.require_hashes = True - - if not (args or options.editables or options.requirements): - opts = {"name": self.name} - if options.find_links: - raise CommandError( - "You must give at least one requirement to {name} " - '(maybe you meant "pip {name} {links}"?)'.format( - **dict(opts, links=" ".join(options.find_links)) - ) - ) - else: - raise CommandError( - "You must give at least one requirement to {name} " - '(see "pip help {name}")'.format(**opts) - ) - - return requirements - - @staticmethod - def trace_basic_info(finder: PackageFinder) -> None: - """ - Trace basic information about the provided objects. - """ - # Display where finder is looking for packages - search_scope = finder.search_scope - locations = search_scope.get_formatted_locations() - if locations: - logger.info(locations) - - def _build_package_finder( - self, - options: Values, - session: PipSession, - target_python: Optional[TargetPython] = None, - ignore_requires_python: Optional[bool] = None, - ) -> PackageFinder: - """ - Create a package finder appropriate to this requirement command. - - :param ignore_requires_python: Whether to ignore incompatible - "Requires-Python" values in links. Defaults to False. - """ - link_collector = LinkCollector.create(session, options=options) - selection_prefs = SelectionPreferences( - allow_yanked=True, - format_control=options.format_control, - allow_all_prereleases=options.pre, - prefer_binary=options.prefer_binary, - ignore_requires_python=ignore_requires_python, - ) - - return PackageFinder.create( - link_collector=link_collector, - selection_prefs=selection_prefs, - target_python=target_python, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py deleted file mode 100644 index cf2b976..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py +++ /dev/null @@ -1,159 +0,0 @@ -import contextlib -import itertools -import logging -import sys -import time -from typing import IO, Generator, Optional - -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.logging import get_indentation - -logger = logging.getLogger(__name__) - - -class SpinnerInterface: - def spin(self) -> None: - raise NotImplementedError() - - def finish(self, final_status: str) -> None: - raise NotImplementedError() - - -class InteractiveSpinner(SpinnerInterface): - def __init__( - self, - message: str, - file: Optional[IO[str]] = None, - spin_chars: str = "-\\|/", - # Empirically, 8 updates/second looks nice - min_update_interval_seconds: float = 0.125, - ): - self._message = message - if file is None: - file = sys.stdout - self._file = file - self._rate_limiter = RateLimiter(min_update_interval_seconds) - self._finished = False - - self._spin_cycle = itertools.cycle(spin_chars) - - self._file.write(" " * get_indentation() + self._message + " ... ") - self._width = 0 - - def _write(self, status: str) -> None: - assert not self._finished - # Erase what we wrote before by backspacing to the beginning, writing - # spaces to overwrite the old text, and then backspacing again - backup = "\b" * self._width - self._file.write(backup + " " * self._width + backup) - # Now we have a blank slate to add our status - self._file.write(status) - self._width = len(status) - self._file.flush() - self._rate_limiter.reset() - - def spin(self) -> None: - if self._finished: - return - if not self._rate_limiter.ready(): - return - self._write(next(self._spin_cycle)) - - def finish(self, final_status: str) -> None: - if self._finished: - return - self._write(final_status) - self._file.write("\n") - self._file.flush() - self._finished = True - - -# Used for dumb terminals, non-interactive installs (no tty), etc. -# We still print updates occasionally (once every 60 seconds by default) to -# act as a keep-alive for systems like Travis-CI that take lack-of-output as -# an indication that a task has frozen. -class NonInteractiveSpinner(SpinnerInterface): - def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: - self._message = message - self._finished = False - self._rate_limiter = RateLimiter(min_update_interval_seconds) - self._update("started") - - def _update(self, status: str) -> None: - assert not self._finished - self._rate_limiter.reset() - logger.info("%s: %s", self._message, status) - - def spin(self) -> None: - if self._finished: - return - if not self._rate_limiter.ready(): - return - self._update("still running...") - - def finish(self, final_status: str) -> None: - if self._finished: - return - self._update(f"finished with status '{final_status}'") - self._finished = True - - -class RateLimiter: - def __init__(self, min_update_interval_seconds: float) -> None: - self._min_update_interval_seconds = min_update_interval_seconds - self._last_update: float = 0 - - def ready(self) -> bool: - now = time.time() - delta = now - self._last_update - return delta >= self._min_update_interval_seconds - - def reset(self) -> None: - self._last_update = time.time() - - -@contextlib.contextmanager -def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: - # Interactive spinner goes directly to sys.stdout rather than being routed - # through the logging system, but it acts like it has level INFO, - # i.e. it's only displayed if we're at level INFO or better. - # Non-interactive spinner goes through the logging system, so it is always - # in sync with logging configuration. - if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: - spinner: SpinnerInterface = InteractiveSpinner(message) - else: - spinner = NonInteractiveSpinner(message) - try: - with hidden_cursor(sys.stdout): - yield spinner - except KeyboardInterrupt: - spinner.finish("canceled") - raise - except Exception: - spinner.finish("error") - raise - else: - spinner.finish("done") - - -HIDE_CURSOR = "\x1b[?25l" -SHOW_CURSOR = "\x1b[?25h" - - -@contextlib.contextmanager -def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: - # The Windows terminal does not support the hide/show cursor ANSI codes, - # even via colorama. So don't even try. - if WINDOWS: - yield - # We don't want to clutter the output with control characters if we're - # writing to a file, or if the user is running with --quiet. - # See https://github.com/pypa/pip/issues/3418 - elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: - yield - else: - file.write(HIDE_CURSOR) - try: - yield - finally: - file.write(SHOW_CURSOR) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py deleted file mode 100644 index 5e29502..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py +++ /dev/null @@ -1,6 +0,0 @@ -SUCCESS = 0 -ERROR = 1 -UNKNOWN_ERROR = 2 -VIRTUALENV_NOT_FOUND = 3 -PREVIOUS_BUILD_DIR_ERROR = 4 -NO_MATCHES_FOUND = 23 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py deleted file mode 100644 index 858a410..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py +++ /dev/null @@ -1,132 +0,0 @@ -""" -Package containing all pip commands -""" - -import importlib -from collections import namedtuple -from typing import Any, Dict, Optional - -from pip._internal.cli.base_command import Command - -CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") - -# This dictionary does a bunch of heavy lifting for help output: -# - Enables avoiding additional (costly) imports for presenting `--help`. -# - The ordering matters for help display. -# -# Even though the module path starts with the same "pip._internal.commands" -# prefix, the full path makes testing easier (specifically when modifying -# `commands_dict` in test setup / teardown). -commands_dict: Dict[str, CommandInfo] = { - "install": CommandInfo( - "pip._internal.commands.install", - "InstallCommand", - "Install packages.", - ), - "download": CommandInfo( - "pip._internal.commands.download", - "DownloadCommand", - "Download packages.", - ), - "uninstall": CommandInfo( - "pip._internal.commands.uninstall", - "UninstallCommand", - "Uninstall packages.", - ), - "freeze": CommandInfo( - "pip._internal.commands.freeze", - "FreezeCommand", - "Output installed packages in requirements format.", - ), - "inspect": CommandInfo( - "pip._internal.commands.inspect", - "InspectCommand", - "Inspect the python environment.", - ), - "list": CommandInfo( - "pip._internal.commands.list", - "ListCommand", - "List installed packages.", - ), - "show": CommandInfo( - "pip._internal.commands.show", - "ShowCommand", - "Show information about installed packages.", - ), - "check": CommandInfo( - "pip._internal.commands.check", - "CheckCommand", - "Verify installed packages have compatible dependencies.", - ), - "config": CommandInfo( - "pip._internal.commands.configuration", - "ConfigurationCommand", - "Manage local and global configuration.", - ), - "search": CommandInfo( - "pip._internal.commands.search", - "SearchCommand", - "Search PyPI for packages.", - ), - "cache": CommandInfo( - "pip._internal.commands.cache", - "CacheCommand", - "Inspect and manage pip's wheel cache.", - ), - "index": CommandInfo( - "pip._internal.commands.index", - "IndexCommand", - "Inspect information available from package indexes.", - ), - "wheel": CommandInfo( - "pip._internal.commands.wheel", - "WheelCommand", - "Build wheels from your requirements.", - ), - "hash": CommandInfo( - "pip._internal.commands.hash", - "HashCommand", - "Compute hashes of package archives.", - ), - "completion": CommandInfo( - "pip._internal.commands.completion", - "CompletionCommand", - "A helper command used for command completion.", - ), - "debug": CommandInfo( - "pip._internal.commands.debug", - "DebugCommand", - "Show information useful for debugging.", - ), - "help": CommandInfo( - "pip._internal.commands.help", - "HelpCommand", - "Show help for commands.", - ), -} - - -def create_command(name: str, **kwargs: Any) -> Command: - """ - Create an instance of the Command class with the given name. - """ - module_path, class_name, summary = commands_dict[name] - module = importlib.import_module(module_path) - command_class = getattr(module, class_name) - command = command_class(name=name, summary=summary, **kwargs) - - return command - - -def get_similar_commands(name: str) -> Optional[str]: - """Command name auto-correct.""" - from difflib import get_close_matches - - name = name.lower() - - close_commands = get_close_matches(name, commands_dict.keys()) - - if close_commands: - return close_commands[0] - else: - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f98b442..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index 0e24bd0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/check.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/check.cpython-311.pyc deleted file mode 100644 index 5c4e402..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/check.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc deleted file mode 100644 index d11b0ef..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-311.pyc deleted file mode 100644 index 2cc89a3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc deleted file mode 100644 index 82938d9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc deleted file mode 100644 index c6de49d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-311.pyc deleted file mode 100644 index 3adcbde..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/hash.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/hash.cpython-311.pyc deleted file mode 100644 index 972b247..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/hash.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc deleted file mode 100644 index 3b9365a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc deleted file mode 100644 index 16eba0b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc deleted file mode 100644 index 72f31f0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc deleted file mode 100644 index 0062bb4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc deleted file mode 100644 index 1deabe1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/search.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/search.cpython-311.pyc deleted file mode 100644 index b9edfb5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/search.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc deleted file mode 100644 index 619b534..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc deleted file mode 100644 index 102ded1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index 23334e1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py deleted file mode 100644 index 3283361..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py +++ /dev/null @@ -1,225 +0,0 @@ -import os -import textwrap -from optparse import Values -from typing import Any, List - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.exceptions import CommandError, PipError -from pip._internal.utils import filesystem -from pip._internal.utils.logging import getLogger - -logger = getLogger(__name__) - - -class CacheCommand(Command): - """ - Inspect and manage pip's wheel cache. - - Subcommands: - - - dir: Show the cache directory. - - info: Show information about the cache. - - list: List filenames of packages stored in the cache. - - remove: Remove one or more package from the cache. - - purge: Remove all items from the cache. - - ```` can be a glob expression or a package name. - """ - - ignore_require_venv = True - usage = """ - %prog dir - %prog info - %prog list [] [--format=[human, abspath]] - %prog remove - %prog purge - """ - - def add_options(self) -> None: - self.cmd_opts.add_option( - "--format", - action="store", - dest="list_format", - default="human", - choices=("human", "abspath"), - help="Select the output format among: human (default) or abspath", - ) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - handlers = { - "dir": self.get_cache_dir, - "info": self.get_cache_info, - "list": self.list_cache_items, - "remove": self.remove_cache_items, - "purge": self.purge_cache, - } - - if not options.cache_dir: - logger.error("pip cache commands can not function since cache is disabled.") - return ERROR - - # Determine action - if not args or args[0] not in handlers: - logger.error( - "Need an action (%s) to perform.", - ", ".join(sorted(handlers)), - ) - return ERROR - - action = args[0] - - # Error handling happens here, not in the action-handlers. - try: - handlers[action](options, args[1:]) - except PipError as e: - logger.error(e.args[0]) - return ERROR - - return SUCCESS - - def get_cache_dir(self, options: Values, args: List[Any]) -> None: - if args: - raise CommandError("Too many arguments") - - logger.info(options.cache_dir) - - def get_cache_info(self, options: Values, args: List[Any]) -> None: - if args: - raise CommandError("Too many arguments") - - num_http_files = len(self._find_http_files(options)) - num_packages = len(self._find_wheels(options, "*")) - - http_cache_location = self._cache_dir(options, "http-v2") - old_http_cache_location = self._cache_dir(options, "http") - wheels_cache_location = self._cache_dir(options, "wheels") - http_cache_size = filesystem.format_size( - filesystem.directory_size(http_cache_location) - + filesystem.directory_size(old_http_cache_location) - ) - wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) - - message = ( - textwrap.dedent( - """ - Package index page cache location (pip v23.3+): {http_cache_location} - Package index page cache location (older pips): {old_http_cache_location} - Package index page cache size: {http_cache_size} - Number of HTTP files: {num_http_files} - Locally built wheels location: {wheels_cache_location} - Locally built wheels size: {wheels_cache_size} - Number of locally built wheels: {package_count} - """ # noqa: E501 - ) - .format( - http_cache_location=http_cache_location, - old_http_cache_location=old_http_cache_location, - http_cache_size=http_cache_size, - num_http_files=num_http_files, - wheels_cache_location=wheels_cache_location, - package_count=num_packages, - wheels_cache_size=wheels_cache_size, - ) - .strip() - ) - - logger.info(message) - - def list_cache_items(self, options: Values, args: List[Any]) -> None: - if len(args) > 1: - raise CommandError("Too many arguments") - - if args: - pattern = args[0] - else: - pattern = "*" - - files = self._find_wheels(options, pattern) - if options.list_format == "human": - self.format_for_human(files) - else: - self.format_for_abspath(files) - - def format_for_human(self, files: List[str]) -> None: - if not files: - logger.info("No locally built wheels cached.") - return - - results = [] - for filename in files: - wheel = os.path.basename(filename) - size = filesystem.format_file_size(filename) - results.append(f" - {wheel} ({size})") - logger.info("Cache contents:\n") - logger.info("\n".join(sorted(results))) - - def format_for_abspath(self, files: List[str]) -> None: - if files: - logger.info("\n".join(sorted(files))) - - def remove_cache_items(self, options: Values, args: List[Any]) -> None: - if len(args) > 1: - raise CommandError("Too many arguments") - - if not args: - raise CommandError("Please provide a pattern") - - files = self._find_wheels(options, args[0]) - - no_matching_msg = "No matching packages" - if args[0] == "*": - # Only fetch http files if no specific pattern given - files += self._find_http_files(options) - else: - # Add the pattern to the log message - no_matching_msg += f' for pattern "{args[0]}"' - - if not files: - logger.warning(no_matching_msg) - - for filename in files: - os.unlink(filename) - logger.verbose("Removed %s", filename) - logger.info("Files removed: %s", len(files)) - - def purge_cache(self, options: Values, args: List[Any]) -> None: - if args: - raise CommandError("Too many arguments") - - return self.remove_cache_items(options, ["*"]) - - def _cache_dir(self, options: Values, subdir: str) -> str: - return os.path.join(options.cache_dir, subdir) - - def _find_http_files(self, options: Values) -> List[str]: - old_http_dir = self._cache_dir(options, "http") - new_http_dir = self._cache_dir(options, "http-v2") - return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( - new_http_dir, "*" - ) - - def _find_wheels(self, options: Values, pattern: str) -> List[str]: - wheel_dir = self._cache_dir(options, "wheels") - - # The wheel filename format, as specified in PEP 427, is: - # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl - # - # Additionally, non-alphanumeric values in the distribution are - # normalized to underscores (_), meaning hyphens can never occur - # before `-{version}`. - # - # Given that information: - # - If the pattern we're given contains a hyphen (-), the user is - # providing at least the version. Thus, we can just append `*.whl` - # to match the rest of it. - # - If the pattern we're given doesn't contain a hyphen (-), the - # user is only providing the name. Thus, we append `-*.whl` to - # match the hyphen before the version, followed by anything else. - # - # PEP 427: https://www.python.org/dev/peps/pep-0427/ - pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") - - return filesystem.find_files(wheel_dir, pattern) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/check.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/check.py deleted file mode 100644 index 5efd0a3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/check.py +++ /dev/null @@ -1,54 +0,0 @@ -import logging -from optparse import Values -from typing import List - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.operations.check import ( - check_package_set, - create_package_set_from_installed, - warn_legacy_versions_and_specifiers, -) -from pip._internal.utils.misc import write_output - -logger = logging.getLogger(__name__) - - -class CheckCommand(Command): - """Verify installed packages have compatible dependencies.""" - - usage = """ - %prog [options]""" - - def run(self, options: Values, args: List[str]) -> int: - package_set, parsing_probs = create_package_set_from_installed() - warn_legacy_versions_and_specifiers(package_set) - missing, conflicting = check_package_set(package_set) - - for project_name in missing: - version = package_set[project_name].version - for dependency in missing[project_name]: - write_output( - "%s %s requires %s, which is not installed.", - project_name, - version, - dependency[0], - ) - - for project_name in conflicting: - version = package_set[project_name].version - for dep_name, dep_version, req in conflicting[project_name]: - write_output( - "%s %s has requirement %s, but you have %s %s.", - project_name, - version, - req, - dep_name, - dep_version, - ) - - if missing or conflicting or parsing_probs: - return ERROR - else: - write_output("No broken requirements found.") - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py deleted file mode 100644 index 9e89e27..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py +++ /dev/null @@ -1,130 +0,0 @@ -import sys -import textwrap -from optparse import Values -from typing import List - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.utils.misc import get_prog - -BASE_COMPLETION = """ -# pip {shell} completion start{script}# pip {shell} completion end -""" - -COMPLETION_SCRIPTS = { - "bash": """ - _pip_completion() - {{ - COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ - COMP_CWORD=$COMP_CWORD \\ - PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) - }} - complete -o default -F _pip_completion {prog} - """, - "zsh": """ - #compdef -P pip[0-9.]# - __pip() {{ - compadd $( COMP_WORDS="$words[*]" \\ - COMP_CWORD=$((CURRENT-1)) \\ - PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) - }} - if [[ $zsh_eval_context[-1] == loadautofunc ]]; then - # autoload from fpath, call function directly - __pip "$@" - else - # eval/source/. command, register function for later - compdef __pip -P 'pip[0-9.]#' - fi - """, - "fish": """ - function __fish_complete_pip - set -lx COMP_WORDS (commandline -o) "" - set -lx COMP_CWORD ( \\ - math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ - ) - set -lx PIP_AUTO_COMPLETE 1 - string split \\ -- (eval $COMP_WORDS[1]) - end - complete -fa "(__fish_complete_pip)" -c {prog} - """, - "powershell": """ - if ((Test-Path Function:\\TabExpansion) -and -not ` - (Test-Path Function:\\_pip_completeBackup)) {{ - Rename-Item Function:\\TabExpansion _pip_completeBackup - }} - function TabExpansion($line, $lastWord) {{ - $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() - if ($lastBlock.StartsWith("{prog} ")) {{ - $Env:COMP_WORDS=$lastBlock - $Env:COMP_CWORD=$lastBlock.Split().Length - 1 - $Env:PIP_AUTO_COMPLETE=1 - (& {prog}).Split() - Remove-Item Env:COMP_WORDS - Remove-Item Env:COMP_CWORD - Remove-Item Env:PIP_AUTO_COMPLETE - }} - elseif (Test-Path Function:\\_pip_completeBackup) {{ - # Fall back on existing tab expansion - _pip_completeBackup $line $lastWord - }} - }} - """, -} - - -class CompletionCommand(Command): - """A helper command to be used for command completion.""" - - ignore_require_venv = True - - def add_options(self) -> None: - self.cmd_opts.add_option( - "--bash", - "-b", - action="store_const", - const="bash", - dest="shell", - help="Emit completion code for bash", - ) - self.cmd_opts.add_option( - "--zsh", - "-z", - action="store_const", - const="zsh", - dest="shell", - help="Emit completion code for zsh", - ) - self.cmd_opts.add_option( - "--fish", - "-f", - action="store_const", - const="fish", - dest="shell", - help="Emit completion code for fish", - ) - self.cmd_opts.add_option( - "--powershell", - "-p", - action="store_const", - const="powershell", - dest="shell", - help="Emit completion code for powershell", - ) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - """Prints the completion code of the given shell""" - shells = COMPLETION_SCRIPTS.keys() - shell_options = ["--" + shell for shell in sorted(shells)] - if options.shell in shells: - script = textwrap.dedent( - COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) - ) - print(BASE_COMPLETION.format(script=script, shell=options.shell)) - return SUCCESS - else: - sys.stderr.write( - "ERROR: You must pass {}\n".format(" or ".join(shell_options)) - ) - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py deleted file mode 100644 index 1a1dc6b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py +++ /dev/null @@ -1,280 +0,0 @@ -import logging -import os -import subprocess -from optparse import Values -from typing import Any, List, Optional - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.configuration import ( - Configuration, - Kind, - get_configuration_files, - kinds, -) -from pip._internal.exceptions import PipError -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import get_prog, write_output - -logger = logging.getLogger(__name__) - - -class ConfigurationCommand(Command): - """ - Manage local and global configuration. - - Subcommands: - - - list: List the active configuration (or from the file specified) - - edit: Edit the configuration file in an editor - - get: Get the value associated with command.option - - set: Set the command.option=value - - unset: Unset the value associated with command.option - - debug: List the configuration files and values defined under them - - Configuration keys should be dot separated command and option name, - with the special prefix "global" affecting any command. For example, - "pip config set global.index-url https://example.org/" would configure - the index url for all commands, but "pip config set download.timeout 10" - would configure a 10 second timeout only for "pip download" commands. - - If none of --user, --global and --site are passed, a virtual - environment configuration file is used if one is active and the file - exists. Otherwise, all modifications happen to the user file by - default. - """ - - ignore_require_venv = True - usage = """ - %prog [] list - %prog [] [--editor ] edit - - %prog [] get command.option - %prog [] set command.option value - %prog [] unset command.option - %prog [] debug - """ - - def add_options(self) -> None: - self.cmd_opts.add_option( - "--editor", - dest="editor", - action="store", - default=None, - help=( - "Editor to use to edit the file. Uses VISUAL or EDITOR " - "environment variables if not provided." - ), - ) - - self.cmd_opts.add_option( - "--global", - dest="global_file", - action="store_true", - default=False, - help="Use the system-wide configuration file only", - ) - - self.cmd_opts.add_option( - "--user", - dest="user_file", - action="store_true", - default=False, - help="Use the user configuration file only", - ) - - self.cmd_opts.add_option( - "--site", - dest="site_file", - action="store_true", - default=False, - help="Use the current environment configuration file only", - ) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - handlers = { - "list": self.list_values, - "edit": self.open_in_editor, - "get": self.get_name, - "set": self.set_name_value, - "unset": self.unset_name, - "debug": self.list_config_values, - } - - # Determine action - if not args or args[0] not in handlers: - logger.error( - "Need an action (%s) to perform.", - ", ".join(sorted(handlers)), - ) - return ERROR - - action = args[0] - - # Determine which configuration files are to be loaded - # Depends on whether the command is modifying. - try: - load_only = self._determine_file( - options, need_value=(action in ["get", "set", "unset", "edit"]) - ) - except PipError as e: - logger.error(e.args[0]) - return ERROR - - # Load a new configuration - self.configuration = Configuration( - isolated=options.isolated_mode, load_only=load_only - ) - self.configuration.load() - - # Error handling happens here, not in the action-handlers. - try: - handlers[action](options, args[1:]) - except PipError as e: - logger.error(e.args[0]) - return ERROR - - return SUCCESS - - def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: - file_options = [ - key - for key, value in ( - (kinds.USER, options.user_file), - (kinds.GLOBAL, options.global_file), - (kinds.SITE, options.site_file), - ) - if value - ] - - if not file_options: - if not need_value: - return None - # Default to user, unless there's a site file. - elif any( - os.path.exists(site_config_file) - for site_config_file in get_configuration_files()[kinds.SITE] - ): - return kinds.SITE - else: - return kinds.USER - elif len(file_options) == 1: - return file_options[0] - - raise PipError( - "Need exactly one file to operate upon " - "(--user, --site, --global) to perform." - ) - - def list_values(self, options: Values, args: List[str]) -> None: - self._get_n_args(args, "list", n=0) - - for key, value in sorted(self.configuration.items()): - write_output("%s=%r", key, value) - - def get_name(self, options: Values, args: List[str]) -> None: - key = self._get_n_args(args, "get [name]", n=1) - value = self.configuration.get_value(key) - - write_output("%s", value) - - def set_name_value(self, options: Values, args: List[str]) -> None: - key, value = self._get_n_args(args, "set [name] [value]", n=2) - self.configuration.set_value(key, value) - - self._save_configuration() - - def unset_name(self, options: Values, args: List[str]) -> None: - key = self._get_n_args(args, "unset [name]", n=1) - self.configuration.unset_value(key) - - self._save_configuration() - - def list_config_values(self, options: Values, args: List[str]) -> None: - """List config key-value pairs across different config files""" - self._get_n_args(args, "debug", n=0) - - self.print_env_var_values() - # Iterate over config files and print if they exist, and the - # key-value pairs present in them if they do - for variant, files in sorted(self.configuration.iter_config_files()): - write_output("%s:", variant) - for fname in files: - with indent_log(): - file_exists = os.path.exists(fname) - write_output("%s, exists: %r", fname, file_exists) - if file_exists: - self.print_config_file_values(variant) - - def print_config_file_values(self, variant: Kind) -> None: - """Get key-value pairs from the file of a variant""" - for name, value in self.configuration.get_values_in_config(variant).items(): - with indent_log(): - write_output("%s: %s", name, value) - - def print_env_var_values(self) -> None: - """Get key-values pairs present as environment variables""" - write_output("%s:", "env_var") - with indent_log(): - for key, value in sorted(self.configuration.get_environ_vars()): - env_var = f"PIP_{key.upper()}" - write_output("%s=%r", env_var, value) - - def open_in_editor(self, options: Values, args: List[str]) -> None: - editor = self._determine_editor(options) - - fname = self.configuration.get_file_to_edit() - if fname is None: - raise PipError("Could not determine appropriate file.") - elif '"' in fname: - # This shouldn't happen, unless we see a username like that. - # If that happens, we'd appreciate a pull request fixing this. - raise PipError( - f'Can not open an editor for a file name containing "\n{fname}' - ) - - try: - subprocess.check_call(f'{editor} "{fname}"', shell=True) - except FileNotFoundError as e: - if not e.filename: - e.filename = editor - raise - except subprocess.CalledProcessError as e: - raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") - - def _get_n_args(self, args: List[str], example: str, n: int) -> Any: - """Helper to make sure the command got the right number of arguments""" - if len(args) != n: - msg = ( - f"Got unexpected number of arguments, expected {n}. " - f'(example: "{get_prog()} config {example}")' - ) - raise PipError(msg) - - if n == 1: - return args[0] - else: - return args - - def _save_configuration(self) -> None: - # We successfully ran a modifying command. Need to save the - # configuration. - try: - self.configuration.save() - except Exception: - logger.exception( - "Unable to save configuration. Please report this as a bug." - ) - raise PipError("Internal Error.") - - def _determine_editor(self, options: Values) -> str: - if options.editor is not None: - return options.editor - elif "VISUAL" in os.environ: - return os.environ["VISUAL"] - elif "EDITOR" in os.environ: - return os.environ["EDITOR"] - else: - raise PipError("Could not determine editor to use.") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py deleted file mode 100644 index 7e5271c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py +++ /dev/null @@ -1,201 +0,0 @@ -import importlib.resources -import locale -import logging -import os -import sys -from optparse import Values -from types import ModuleType -from typing import Any, Dict, List, Optional - -import pip._vendor -from pip._vendor.certifi import where -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.cli import cmdoptions -from pip._internal.cli.base_command import Command -from pip._internal.cli.cmdoptions import make_target_python -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.configuration import Configuration -from pip._internal.metadata import get_environment -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import get_pip_version - -logger = logging.getLogger(__name__) - - -def show_value(name: str, value: Any) -> None: - logger.info("%s: %s", name, value) - - -def show_sys_implementation() -> None: - logger.info("sys.implementation:") - implementation_name = sys.implementation.name - with indent_log(): - show_value("name", implementation_name) - - -def create_vendor_txt_map() -> Dict[str, str]: - with importlib.resources.open_text("pip._vendor", "vendor.txt") as f: - # Purge non version specifying lines. - # Also, remove any space prefix or suffixes (including comments). - lines = [ - line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line - ] - - # Transform into "module" -> version dict. - return dict(line.split("==", 1) for line in lines) - - -def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: - # Module name can be uppercase in vendor.txt for some reason... - module_name = module_name.lower().replace("-", "_") - # PATCH: setuptools is actually only pkg_resources. - if module_name == "setuptools": - module_name = "pkg_resources" - - try: - __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) - return getattr(pip._vendor, module_name) - except ImportError: - # We allow 'truststore' to fail to import due - # to being unavailable on Python 3.9 and earlier. - if module_name == "truststore" and sys.version_info < (3, 10): - return None - raise - - -def get_vendor_version_from_module(module_name: str) -> Optional[str]: - module = get_module_from_module_name(module_name) - version = getattr(module, "__version__", None) - - if module and not version: - # Try to find version in debundled module info. - assert module.__file__ is not None - env = get_environment([os.path.dirname(module.__file__)]) - dist = env.get_distribution(module_name) - if dist: - version = str(dist.version) - - return version - - -def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: - """Log the actual version and print extra info if there is - a conflict or if the actual version could not be imported. - """ - for module_name, expected_version in vendor_txt_versions.items(): - extra_message = "" - actual_version = get_vendor_version_from_module(module_name) - if not actual_version: - extra_message = ( - " (Unable to locate actual module version, using" - " vendor.txt specified version)" - ) - actual_version = expected_version - elif parse_version(actual_version) != parse_version(expected_version): - extra_message = ( - " (CONFLICT: vendor.txt suggests version should" - f" be {expected_version})" - ) - logger.info("%s==%s%s", module_name, actual_version, extra_message) - - -def show_vendor_versions() -> None: - logger.info("vendored library versions:") - - vendor_txt_versions = create_vendor_txt_map() - with indent_log(): - show_actual_vendor_versions(vendor_txt_versions) - - -def show_tags(options: Values) -> None: - tag_limit = 10 - - target_python = make_target_python(options) - tags = target_python.get_sorted_tags() - - # Display the target options that were explicitly provided. - formatted_target = target_python.format_given() - suffix = "" - if formatted_target: - suffix = f" (target: {formatted_target})" - - msg = f"Compatible tags: {len(tags)}{suffix}" - logger.info(msg) - - if options.verbose < 1 and len(tags) > tag_limit: - tags_limited = True - tags = tags[:tag_limit] - else: - tags_limited = False - - with indent_log(): - for tag in tags: - logger.info(str(tag)) - - if tags_limited: - msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" - logger.info(msg) - - -def ca_bundle_info(config: Configuration) -> str: - levels = {key.split(".", 1)[0] for key, _ in config.items()} - if not levels: - return "Not specified" - - levels_that_override_global = ["install", "wheel", "download"] - global_overriding_level = [ - level for level in levels if level in levels_that_override_global - ] - if not global_overriding_level: - return "global" - - if "global" in levels: - levels.remove("global") - return ", ".join(levels) - - -class DebugCommand(Command): - """ - Display debug information. - """ - - usage = """ - %prog """ - ignore_require_venv = True - - def add_options(self) -> None: - cmdoptions.add_target_python_options(self.cmd_opts) - self.parser.insert_option_group(0, self.cmd_opts) - self.parser.config.load() - - def run(self, options: Values, args: List[str]) -> int: - logger.warning( - "This command is only meant for debugging. " - "Do not use this with automation for parsing and getting these " - "details, since the output and options of this command may " - "change without notice." - ) - show_value("pip version", get_pip_version()) - show_value("sys.version", sys.version) - show_value("sys.executable", sys.executable) - show_value("sys.getdefaultencoding", sys.getdefaultencoding()) - show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) - show_value( - "locale.getpreferredencoding", - locale.getpreferredencoding(), - ) - show_value("sys.platform", sys.platform) - show_sys_implementation() - - show_value("'cert' config value", ca_bundle_info(self.parser.config)) - show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) - show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) - show_value("pip._vendor.certifi.where()", where()) - show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) - - show_vendor_versions() - - show_tags(options) - - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/download.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/download.py deleted file mode 100644 index 54247a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/download.py +++ /dev/null @@ -1,147 +0,0 @@ -import logging -import os -from optparse import Values -from typing import List - -from pip._internal.cli import cmdoptions -from pip._internal.cli.cmdoptions import make_target_python -from pip._internal.cli.req_command import RequirementCommand, with_cleanup -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.operations.build.build_tracker import get_build_tracker -from pip._internal.req.req_install import check_legacy_setup_py_options -from pip._internal.utils.misc import ensure_dir, normalize_path, write_output -from pip._internal.utils.temp_dir import TempDirectory - -logger = logging.getLogger(__name__) - - -class DownloadCommand(RequirementCommand): - """ - Download packages from: - - - PyPI (and other indexes) using requirement specifiers. - - VCS project urls. - - Local project directories. - - Local or remote source archives. - - pip also supports downloading from "requirements files", which provide - an easy way to specify a whole environment to be downloaded. - """ - - usage = """ - %prog [options] [package-index-options] ... - %prog [options] -r [package-index-options] ... - %prog [options] ... - %prog [options] ... - %prog [options] ...""" - - def add_options(self) -> None: - self.cmd_opts.add_option(cmdoptions.constraints()) - self.cmd_opts.add_option(cmdoptions.requirements()) - self.cmd_opts.add_option(cmdoptions.no_deps()) - self.cmd_opts.add_option(cmdoptions.global_options()) - self.cmd_opts.add_option(cmdoptions.no_binary()) - self.cmd_opts.add_option(cmdoptions.only_binary()) - self.cmd_opts.add_option(cmdoptions.prefer_binary()) - self.cmd_opts.add_option(cmdoptions.src()) - self.cmd_opts.add_option(cmdoptions.pre()) - self.cmd_opts.add_option(cmdoptions.require_hashes()) - self.cmd_opts.add_option(cmdoptions.progress_bar()) - self.cmd_opts.add_option(cmdoptions.no_build_isolation()) - self.cmd_opts.add_option(cmdoptions.use_pep517()) - self.cmd_opts.add_option(cmdoptions.no_use_pep517()) - self.cmd_opts.add_option(cmdoptions.check_build_deps()) - self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) - - self.cmd_opts.add_option( - "-d", - "--dest", - "--destination-dir", - "--destination-directory", - dest="download_dir", - metavar="dir", - default=os.curdir, - help="Download packages into .", - ) - - cmdoptions.add_target_python_options(self.cmd_opts) - - index_opts = cmdoptions.make_option_group( - cmdoptions.index_group, - self.parser, - ) - - self.parser.insert_option_group(0, index_opts) - self.parser.insert_option_group(0, self.cmd_opts) - - @with_cleanup - def run(self, options: Values, args: List[str]) -> int: - options.ignore_installed = True - # editable doesn't really make sense for `pip download`, but the bowels - # of the RequirementSet code require that property. - options.editables = [] - - cmdoptions.check_dist_restriction(options) - - options.download_dir = normalize_path(options.download_dir) - ensure_dir(options.download_dir) - - session = self.get_default_session(options) - - target_python = make_target_python(options) - finder = self._build_package_finder( - options=options, - session=session, - target_python=target_python, - ignore_requires_python=options.ignore_requires_python, - ) - - build_tracker = self.enter_context(get_build_tracker()) - - directory = TempDirectory( - delete=not options.no_clean, - kind="download", - globally_managed=True, - ) - - reqs = self.get_requirements(args, options, finder, session) - check_legacy_setup_py_options(options, reqs) - - preparer = self.make_requirement_preparer( - temp_build_dir=directory, - options=options, - build_tracker=build_tracker, - session=session, - finder=finder, - download_dir=options.download_dir, - use_user_site=False, - verbosity=self.verbosity, - ) - - resolver = self.make_resolver( - preparer=preparer, - finder=finder, - options=options, - ignore_requires_python=options.ignore_requires_python, - use_pep517=options.use_pep517, - py_version_info=options.python_version, - ) - - self.trace_basic_info(finder) - - requirement_set = resolver.resolve(reqs, check_supported_wheels=True) - - downloaded: List[str] = [] - for req in requirement_set.requirements.values(): - if req.satisfied_by is None: - assert req.name is not None - preparer.save_linked_requirement(req) - downloaded.append(req.name) - - preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) - requirement_set.warn_legacy_versions_and_specifiers() - - if downloaded: - write_output("Successfully downloaded %s", " ".join(downloaded)) - - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py deleted file mode 100644 index fd9d88a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py +++ /dev/null @@ -1,108 +0,0 @@ -import sys -from optparse import Values -from typing import AbstractSet, List - -from pip._internal.cli import cmdoptions -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.operations.freeze import freeze -from pip._internal.utils.compat import stdlib_pkgs - - -def _should_suppress_build_backends() -> bool: - return sys.version_info < (3, 12) - - -def _dev_pkgs() -> AbstractSet[str]: - pkgs = {"pip"} - - if _should_suppress_build_backends(): - pkgs |= {"setuptools", "distribute", "wheel"} - - return pkgs - - -class FreezeCommand(Command): - """ - Output installed packages in requirements format. - - packages are listed in a case-insensitive sorted order. - """ - - usage = """ - %prog [options]""" - log_streams = ("ext://sys.stderr", "ext://sys.stderr") - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-r", - "--requirement", - dest="requirements", - action="append", - default=[], - metavar="file", - help=( - "Use the order in the given requirements file and its " - "comments when generating output. This option can be " - "used multiple times." - ), - ) - self.cmd_opts.add_option( - "-l", - "--local", - dest="local", - action="store_true", - default=False, - help=( - "If in a virtualenv that has global access, do not output " - "globally-installed packages." - ), - ) - self.cmd_opts.add_option( - "--user", - dest="user", - action="store_true", - default=False, - help="Only output packages installed in user-site.", - ) - self.cmd_opts.add_option(cmdoptions.list_path()) - self.cmd_opts.add_option( - "--all", - dest="freeze_all", - action="store_true", - help=( - "Do not skip these packages in the output:" - " {}".format(", ".join(_dev_pkgs())) - ), - ) - self.cmd_opts.add_option( - "--exclude-editable", - dest="exclude_editable", - action="store_true", - help="Exclude editable package from output.", - ) - self.cmd_opts.add_option(cmdoptions.list_exclude()) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - skip = set(stdlib_pkgs) - if not options.freeze_all: - skip.update(_dev_pkgs()) - - if options.excludes: - skip.update(options.excludes) - - cmdoptions.check_list_path_option(options) - - for line in freeze( - requirement=options.requirements, - local_only=options.local, - user_only=options.user, - paths=options.path, - isolated=options.isolated_mode, - skip=skip, - exclude_editable=options.exclude_editable, - ): - sys.stdout.write(line + "\n") - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py deleted file mode 100644 index 042dac8..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py +++ /dev/null @@ -1,59 +0,0 @@ -import hashlib -import logging -import sys -from optparse import Values -from typing import List - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES -from pip._internal.utils.misc import read_chunks, write_output - -logger = logging.getLogger(__name__) - - -class HashCommand(Command): - """ - Compute a hash of a local package archive. - - These can be used with --hash in a requirements file to do repeatable - installs. - """ - - usage = "%prog [options] ..." - ignore_require_venv = True - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-a", - "--algorithm", - dest="algorithm", - choices=STRONG_HASHES, - action="store", - default=FAVORITE_HASH, - help="The hash algorithm to use: one of {}".format( - ", ".join(STRONG_HASHES) - ), - ) - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - if not args: - self.parser.print_usage(sys.stderr) - return ERROR - - algorithm = options.algorithm - for path in args: - write_output( - "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) - ) - return SUCCESS - - -def _hash_of_file(path: str, algorithm: str) -> str: - """Return the hash digest of a file.""" - with open(path, "rb") as archive: - hash = hashlib.new(algorithm) - for chunk in read_chunks(archive): - hash.update(chunk) - return hash.hexdigest() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/help.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/help.py deleted file mode 100644 index 6206631..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/help.py +++ /dev/null @@ -1,41 +0,0 @@ -from optparse import Values -from typing import List - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.exceptions import CommandError - - -class HelpCommand(Command): - """Show help for commands""" - - usage = """ - %prog """ - ignore_require_venv = True - - def run(self, options: Values, args: List[str]) -> int: - from pip._internal.commands import ( - commands_dict, - create_command, - get_similar_commands, - ) - - try: - # 'pip help' with no args is handled by pip.__init__.parseopt() - cmd_name = args[0] # the command we need help for - except IndexError: - return SUCCESS - - if cmd_name not in commands_dict: - guess = get_similar_commands(cmd_name) - - msg = [f'unknown command "{cmd_name}"'] - if guess: - msg.append(f'maybe you meant "{guess}"') - - raise CommandError(" - ".join(msg)) - - command = create_command(cmd_name) - command.parser.print_help() - - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/index.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/index.py deleted file mode 100644 index f55e9e4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/index.py +++ /dev/null @@ -1,139 +0,0 @@ -import logging -from optparse import Values -from typing import Any, Iterable, List, Optional, Union - -from pip._vendor.packaging.version import LegacyVersion, Version - -from pip._internal.cli import cmdoptions -from pip._internal.cli.req_command import IndexGroupCommand -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.commands.search import print_dist_installation_info -from pip._internal.exceptions import CommandError, DistributionNotFound, PipError -from pip._internal.index.collector import LinkCollector -from pip._internal.index.package_finder import PackageFinder -from pip._internal.models.selection_prefs import SelectionPreferences -from pip._internal.models.target_python import TargetPython -from pip._internal.network.session import PipSession -from pip._internal.utils.misc import write_output - -logger = logging.getLogger(__name__) - - -class IndexCommand(IndexGroupCommand): - """ - Inspect information available from package indexes. - """ - - ignore_require_venv = True - usage = """ - %prog versions - """ - - def add_options(self) -> None: - cmdoptions.add_target_python_options(self.cmd_opts) - - self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) - self.cmd_opts.add_option(cmdoptions.pre()) - self.cmd_opts.add_option(cmdoptions.no_binary()) - self.cmd_opts.add_option(cmdoptions.only_binary()) - - index_opts = cmdoptions.make_option_group( - cmdoptions.index_group, - self.parser, - ) - - self.parser.insert_option_group(0, index_opts) - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - handlers = { - "versions": self.get_available_package_versions, - } - - logger.warning( - "pip index is currently an experimental command. " - "It may be removed/changed in a future release " - "without prior warning." - ) - - # Determine action - if not args or args[0] not in handlers: - logger.error( - "Need an action (%s) to perform.", - ", ".join(sorted(handlers)), - ) - return ERROR - - action = args[0] - - # Error handling happens here, not in the action-handlers. - try: - handlers[action](options, args[1:]) - except PipError as e: - logger.error(e.args[0]) - return ERROR - - return SUCCESS - - def _build_package_finder( - self, - options: Values, - session: PipSession, - target_python: Optional[TargetPython] = None, - ignore_requires_python: Optional[bool] = None, - ) -> PackageFinder: - """ - Create a package finder appropriate to the index command. - """ - link_collector = LinkCollector.create(session, options=options) - - # Pass allow_yanked=False to ignore yanked versions. - selection_prefs = SelectionPreferences( - allow_yanked=False, - allow_all_prereleases=options.pre, - ignore_requires_python=ignore_requires_python, - ) - - return PackageFinder.create( - link_collector=link_collector, - selection_prefs=selection_prefs, - target_python=target_python, - ) - - def get_available_package_versions(self, options: Values, args: List[Any]) -> None: - if len(args) != 1: - raise CommandError("You need to specify exactly one argument") - - target_python = cmdoptions.make_target_python(options) - query = args[0] - - with self._build_session(options) as session: - finder = self._build_package_finder( - options=options, - session=session, - target_python=target_python, - ignore_requires_python=options.ignore_requires_python, - ) - - versions: Iterable[Union[LegacyVersion, Version]] = ( - candidate.version for candidate in finder.find_all_candidates(query) - ) - - if not options.pre: - # Remove prereleases - versions = ( - version for version in versions if not version.is_prerelease - ) - versions = set(versions) - - if not versions: - raise DistributionNotFound( - f"No matching distribution found for {query}" - ) - - formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] - latest = formatted_versions[0] - - write_output(f"{query} ({latest})") - write_output("Available versions: {}".format(", ".join(formatted_versions))) - print_dist_installation_info(query, latest) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py deleted file mode 100644 index 27c8fa3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py +++ /dev/null @@ -1,92 +0,0 @@ -import logging -from optparse import Values -from typing import Any, Dict, List - -from pip._vendor.packaging.markers import default_environment -from pip._vendor.rich import print_json - -from pip import __version__ -from pip._internal.cli import cmdoptions -from pip._internal.cli.req_command import Command -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.metadata import BaseDistribution, get_environment -from pip._internal.utils.compat import stdlib_pkgs -from pip._internal.utils.urls import path_to_url - -logger = logging.getLogger(__name__) - - -class InspectCommand(Command): - """ - Inspect the content of a Python environment and produce a report in JSON format. - """ - - ignore_require_venv = True - usage = """ - %prog [options]""" - - def add_options(self) -> None: - self.cmd_opts.add_option( - "--local", - action="store_true", - default=False, - help=( - "If in a virtualenv that has global access, do not list " - "globally-installed packages." - ), - ) - self.cmd_opts.add_option( - "--user", - dest="user", - action="store_true", - default=False, - help="Only output packages installed in user-site.", - ) - self.cmd_opts.add_option(cmdoptions.list_path()) - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - cmdoptions.check_list_path_option(options) - dists = get_environment(options.path).iter_installed_distributions( - local_only=options.local, - user_only=options.user, - skip=set(stdlib_pkgs), - ) - output = { - "version": "1", - "pip_version": __version__, - "installed": [self._dist_to_dict(dist) for dist in dists], - "environment": default_environment(), - # TODO tags? scheme? - } - print_json(data=output) - return SUCCESS - - def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: - res: Dict[str, Any] = { - "metadata": dist.metadata_dict, - "metadata_location": dist.info_location, - } - # direct_url. Note that we don't have download_info (as in the installation - # report) since it is not recorded in installed metadata. - direct_url = dist.direct_url - if direct_url is not None: - res["direct_url"] = direct_url.to_dict() - else: - # Emulate direct_url for legacy editable installs. - editable_project_location = dist.editable_project_location - if editable_project_location is not None: - res["direct_url"] = { - "url": path_to_url(editable_project_location), - "dir_info": { - "editable": True, - }, - } - # installer - installer = dist.installer - if dist.installer: - res["installer"] = installer - # requested - if dist.installed_with_dist_info: - res["requested"] = dist.requested - return res diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/install.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/install.py deleted file mode 100644 index e944bb9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/install.py +++ /dev/null @@ -1,774 +0,0 @@ -import errno -import json -import operator -import os -import shutil -import site -from optparse import SUPPRESS_HELP, Values -from typing import List, Optional - -from pip._vendor.rich import print_json - -from pip._internal.cache import WheelCache -from pip._internal.cli import cmdoptions -from pip._internal.cli.cmdoptions import make_target_python -from pip._internal.cli.req_command import ( - RequirementCommand, - warn_if_run_as_root, - with_cleanup, -) -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.exceptions import CommandError, InstallationError -from pip._internal.locations import get_scheme -from pip._internal.metadata import get_environment -from pip._internal.models.installation_report import InstallationReport -from pip._internal.operations.build.build_tracker import get_build_tracker -from pip._internal.operations.check import ConflictDetails, check_install_conflicts -from pip._internal.req import install_given_reqs -from pip._internal.req.req_install import ( - InstallRequirement, - check_legacy_setup_py_options, -) -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.filesystem import test_writable_dir -from pip._internal.utils.logging import getLogger -from pip._internal.utils.misc import ( - check_externally_managed, - ensure_dir, - get_pip_version, - protect_pip_from_modification_on_windows, - write_output, -) -from pip._internal.utils.temp_dir import TempDirectory -from pip._internal.utils.virtualenv import ( - running_under_virtualenv, - virtualenv_no_global, -) -from pip._internal.wheel_builder import build, should_build_for_install_command - -logger = getLogger(__name__) - - -class InstallCommand(RequirementCommand): - """ - Install packages from: - - - PyPI (and other indexes) using requirement specifiers. - - VCS project urls. - - Local project directories. - - Local or remote source archives. - - pip also supports installing from "requirements files", which provide - an easy way to specify a whole environment to be installed. - """ - - usage = """ - %prog [options] [package-index-options] ... - %prog [options] -r [package-index-options] ... - %prog [options] [-e] ... - %prog [options] [-e] ... - %prog [options] ...""" - - def add_options(self) -> None: - self.cmd_opts.add_option(cmdoptions.requirements()) - self.cmd_opts.add_option(cmdoptions.constraints()) - self.cmd_opts.add_option(cmdoptions.no_deps()) - self.cmd_opts.add_option(cmdoptions.pre()) - - self.cmd_opts.add_option(cmdoptions.editable()) - self.cmd_opts.add_option( - "--dry-run", - action="store_true", - dest="dry_run", - default=False, - help=( - "Don't actually install anything, just print what would be. " - "Can be used in combination with --ignore-installed " - "to 'resolve' the requirements." - ), - ) - self.cmd_opts.add_option( - "-t", - "--target", - dest="target_dir", - metavar="dir", - default=None, - help=( - "Install packages into . " - "By default this will not replace existing files/folders in " - ". Use --upgrade to replace existing packages in " - "with new versions." - ), - ) - cmdoptions.add_target_python_options(self.cmd_opts) - - self.cmd_opts.add_option( - "--user", - dest="use_user_site", - action="store_true", - help=( - "Install to the Python user install directory for your " - "platform. Typically ~/.local/, or %APPDATA%\\Python on " - "Windows. (See the Python documentation for site.USER_BASE " - "for full details.)" - ), - ) - self.cmd_opts.add_option( - "--no-user", - dest="use_user_site", - action="store_false", - help=SUPPRESS_HELP, - ) - self.cmd_opts.add_option( - "--root", - dest="root_path", - metavar="dir", - default=None, - help="Install everything relative to this alternate root directory.", - ) - self.cmd_opts.add_option( - "--prefix", - dest="prefix_path", - metavar="dir", - default=None, - help=( - "Installation prefix where lib, bin and other top-level " - "folders are placed. Note that the resulting installation may " - "contain scripts and other resources which reference the " - "Python interpreter of pip, and not that of ``--prefix``. " - "See also the ``--python`` option if the intention is to " - "install packages into another (possibly pip-free) " - "environment." - ), - ) - - self.cmd_opts.add_option(cmdoptions.src()) - - self.cmd_opts.add_option( - "-U", - "--upgrade", - dest="upgrade", - action="store_true", - help=( - "Upgrade all specified packages to the newest available " - "version. The handling of dependencies depends on the " - "upgrade-strategy used." - ), - ) - - self.cmd_opts.add_option( - "--upgrade-strategy", - dest="upgrade_strategy", - default="only-if-needed", - choices=["only-if-needed", "eager"], - help=( - "Determines how dependency upgrading should be handled " - "[default: %default]. " - '"eager" - dependencies are upgraded regardless of ' - "whether the currently installed version satisfies the " - "requirements of the upgraded package(s). " - '"only-if-needed" - are upgraded only when they do not ' - "satisfy the requirements of the upgraded package(s)." - ), - ) - - self.cmd_opts.add_option( - "--force-reinstall", - dest="force_reinstall", - action="store_true", - help="Reinstall all packages even if they are already up-to-date.", - ) - - self.cmd_opts.add_option( - "-I", - "--ignore-installed", - dest="ignore_installed", - action="store_true", - help=( - "Ignore the installed packages, overwriting them. " - "This can break your system if the existing package " - "is of a different version or was installed " - "with a different package manager!" - ), - ) - - self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) - self.cmd_opts.add_option(cmdoptions.no_build_isolation()) - self.cmd_opts.add_option(cmdoptions.use_pep517()) - self.cmd_opts.add_option(cmdoptions.no_use_pep517()) - self.cmd_opts.add_option(cmdoptions.check_build_deps()) - self.cmd_opts.add_option(cmdoptions.override_externally_managed()) - - self.cmd_opts.add_option(cmdoptions.config_settings()) - self.cmd_opts.add_option(cmdoptions.global_options()) - - self.cmd_opts.add_option( - "--compile", - action="store_true", - dest="compile", - default=True, - help="Compile Python source files to bytecode", - ) - - self.cmd_opts.add_option( - "--no-compile", - action="store_false", - dest="compile", - help="Do not compile Python source files to bytecode", - ) - - self.cmd_opts.add_option( - "--no-warn-script-location", - action="store_false", - dest="warn_script_location", - default=True, - help="Do not warn when installing scripts outside PATH", - ) - self.cmd_opts.add_option( - "--no-warn-conflicts", - action="store_false", - dest="warn_about_conflicts", - default=True, - help="Do not warn about broken dependencies", - ) - self.cmd_opts.add_option(cmdoptions.no_binary()) - self.cmd_opts.add_option(cmdoptions.only_binary()) - self.cmd_opts.add_option(cmdoptions.prefer_binary()) - self.cmd_opts.add_option(cmdoptions.require_hashes()) - self.cmd_opts.add_option(cmdoptions.progress_bar()) - self.cmd_opts.add_option(cmdoptions.root_user_action()) - - index_opts = cmdoptions.make_option_group( - cmdoptions.index_group, - self.parser, - ) - - self.parser.insert_option_group(0, index_opts) - self.parser.insert_option_group(0, self.cmd_opts) - - self.cmd_opts.add_option( - "--report", - dest="json_report_file", - metavar="file", - default=None, - help=( - "Generate a JSON file describing what pip did to install " - "the provided requirements. " - "Can be used in combination with --dry-run and --ignore-installed " - "to 'resolve' the requirements. " - "When - is used as file name it writes to stdout. " - "When writing to stdout, please combine with the --quiet option " - "to avoid mixing pip logging output with JSON output." - ), - ) - - @with_cleanup - def run(self, options: Values, args: List[str]) -> int: - if options.use_user_site and options.target_dir is not None: - raise CommandError("Can not combine '--user' and '--target'") - - # Check whether the environment we're installing into is externally - # managed, as specified in PEP 668. Specifying --root, --target, or - # --prefix disables the check, since there's no reliable way to locate - # the EXTERNALLY-MANAGED file for those cases. An exception is also - # made specifically for "--dry-run --report" for convenience. - installing_into_current_environment = ( - not (options.dry_run and options.json_report_file) - and options.root_path is None - and options.target_dir is None - and options.prefix_path is None - ) - if ( - installing_into_current_environment - and not options.override_externally_managed - ): - check_externally_managed() - - upgrade_strategy = "to-satisfy-only" - if options.upgrade: - upgrade_strategy = options.upgrade_strategy - - cmdoptions.check_dist_restriction(options, check_target=True) - - logger.verbose("Using %s", get_pip_version()) - options.use_user_site = decide_user_install( - options.use_user_site, - prefix_path=options.prefix_path, - target_dir=options.target_dir, - root_path=options.root_path, - isolated_mode=options.isolated_mode, - ) - - target_temp_dir: Optional[TempDirectory] = None - target_temp_dir_path: Optional[str] = None - if options.target_dir: - options.ignore_installed = True - options.target_dir = os.path.abspath(options.target_dir) - if ( - # fmt: off - os.path.exists(options.target_dir) and - not os.path.isdir(options.target_dir) - # fmt: on - ): - raise CommandError( - "Target path exists but is not a directory, will not continue." - ) - - # Create a target directory for using with the target option - target_temp_dir = TempDirectory(kind="target") - target_temp_dir_path = target_temp_dir.path - self.enter_context(target_temp_dir) - - global_options = options.global_options or [] - - session = self.get_default_session(options) - - target_python = make_target_python(options) - finder = self._build_package_finder( - options=options, - session=session, - target_python=target_python, - ignore_requires_python=options.ignore_requires_python, - ) - build_tracker = self.enter_context(get_build_tracker()) - - directory = TempDirectory( - delete=not options.no_clean, - kind="install", - globally_managed=True, - ) - - try: - reqs = self.get_requirements(args, options, finder, session) - check_legacy_setup_py_options(options, reqs) - - wheel_cache = WheelCache(options.cache_dir) - - # Only when installing is it permitted to use PEP 660. - # In other circumstances (pip wheel, pip download) we generate - # regular (i.e. non editable) metadata and wheels. - for req in reqs: - req.permit_editable_wheels = True - - preparer = self.make_requirement_preparer( - temp_build_dir=directory, - options=options, - build_tracker=build_tracker, - session=session, - finder=finder, - use_user_site=options.use_user_site, - verbosity=self.verbosity, - ) - resolver = self.make_resolver( - preparer=preparer, - finder=finder, - options=options, - wheel_cache=wheel_cache, - use_user_site=options.use_user_site, - ignore_installed=options.ignore_installed, - ignore_requires_python=options.ignore_requires_python, - force_reinstall=options.force_reinstall, - upgrade_strategy=upgrade_strategy, - use_pep517=options.use_pep517, - ) - - self.trace_basic_info(finder) - - requirement_set = resolver.resolve( - reqs, check_supported_wheels=not options.target_dir - ) - - if options.json_report_file: - report = InstallationReport(requirement_set.requirements_to_install) - if options.json_report_file == "-": - print_json(data=report.to_dict()) - else: - with open(options.json_report_file, "w", encoding="utf-8") as f: - json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) - - if options.dry_run: - # In non dry-run mode, the legacy versions and specifiers check - # will be done as part of conflict detection. - requirement_set.warn_legacy_versions_and_specifiers() - would_install_items = sorted( - (r.metadata["name"], r.metadata["version"]) - for r in requirement_set.requirements_to_install - ) - if would_install_items: - write_output( - "Would install %s", - " ".join("-".join(item) for item in would_install_items), - ) - return SUCCESS - - try: - pip_req = requirement_set.get_requirement("pip") - except KeyError: - modifying_pip = False - else: - # If we're not replacing an already installed pip, - # we're not modifying it. - modifying_pip = pip_req.satisfied_by is None - protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) - - reqs_to_build = [ - r - for r in requirement_set.requirements.values() - if should_build_for_install_command(r) - ] - - _, build_failures = build( - reqs_to_build, - wheel_cache=wheel_cache, - verify=True, - build_options=[], - global_options=global_options, - ) - - if build_failures: - raise InstallationError( - "Could not build wheels for {}, which is required to " - "install pyproject.toml-based projects".format( - ", ".join(r.name for r in build_failures) # type: ignore - ) - ) - - to_install = resolver.get_installation_order(requirement_set) - - # Check for conflicts in the package set we're installing. - conflicts: Optional[ConflictDetails] = None - should_warn_about_conflicts = ( - not options.ignore_dependencies and options.warn_about_conflicts - ) - if should_warn_about_conflicts: - conflicts = self._determine_conflicts(to_install) - - # Don't warn about script install locations if - # --target or --prefix has been specified - warn_script_location = options.warn_script_location - if options.target_dir or options.prefix_path: - warn_script_location = False - - installed = install_given_reqs( - to_install, - global_options, - root=options.root_path, - home=target_temp_dir_path, - prefix=options.prefix_path, - warn_script_location=warn_script_location, - use_user_site=options.use_user_site, - pycompile=options.compile, - ) - - lib_locations = get_lib_location_guesses( - user=options.use_user_site, - home=target_temp_dir_path, - root=options.root_path, - prefix=options.prefix_path, - isolated=options.isolated_mode, - ) - env = get_environment(lib_locations) - - installed.sort(key=operator.attrgetter("name")) - items = [] - for result in installed: - item = result.name - try: - installed_dist = env.get_distribution(item) - if installed_dist is not None: - item = f"{item}-{installed_dist.version}" - except Exception: - pass - items.append(item) - - if conflicts is not None: - self._warn_about_conflicts( - conflicts, - resolver_variant=self.determine_resolver_variant(options), - ) - - installed_desc = " ".join(items) - if installed_desc: - write_output( - "Successfully installed %s", - installed_desc, - ) - except OSError as error: - show_traceback = self.verbosity >= 1 - - message = create_os_error_message( - error, - show_traceback, - options.use_user_site, - ) - logger.error(message, exc_info=show_traceback) - - return ERROR - - if options.target_dir: - assert target_temp_dir - self._handle_target_dir( - options.target_dir, target_temp_dir, options.upgrade - ) - if options.root_user_action == "warn": - warn_if_run_as_root() - return SUCCESS - - def _handle_target_dir( - self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool - ) -> None: - ensure_dir(target_dir) - - # Checking both purelib and platlib directories for installed - # packages to be moved to target directory - lib_dir_list = [] - - # Checking both purelib and platlib directories for installed - # packages to be moved to target directory - scheme = get_scheme("", home=target_temp_dir.path) - purelib_dir = scheme.purelib - platlib_dir = scheme.platlib - data_dir = scheme.data - - if os.path.exists(purelib_dir): - lib_dir_list.append(purelib_dir) - if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: - lib_dir_list.append(platlib_dir) - if os.path.exists(data_dir): - lib_dir_list.append(data_dir) - - for lib_dir in lib_dir_list: - for item in os.listdir(lib_dir): - if lib_dir == data_dir: - ddir = os.path.join(data_dir, item) - if any(s.startswith(ddir) for s in lib_dir_list[:-1]): - continue - target_item_dir = os.path.join(target_dir, item) - if os.path.exists(target_item_dir): - if not upgrade: - logger.warning( - "Target directory %s already exists. Specify " - "--upgrade to force replacement.", - target_item_dir, - ) - continue - if os.path.islink(target_item_dir): - logger.warning( - "Target directory %s already exists and is " - "a link. pip will not automatically replace " - "links, please remove if replacement is " - "desired.", - target_item_dir, - ) - continue - if os.path.isdir(target_item_dir): - shutil.rmtree(target_item_dir) - else: - os.remove(target_item_dir) - - shutil.move(os.path.join(lib_dir, item), target_item_dir) - - def _determine_conflicts( - self, to_install: List[InstallRequirement] - ) -> Optional[ConflictDetails]: - try: - return check_install_conflicts(to_install) - except Exception: - logger.exception( - "Error while checking for conflicts. Please file an issue on " - "pip's issue tracker: https://github.com/pypa/pip/issues/new" - ) - return None - - def _warn_about_conflicts( - self, conflict_details: ConflictDetails, resolver_variant: str - ) -> None: - package_set, (missing, conflicting) = conflict_details - if not missing and not conflicting: - return - - parts: List[str] = [] - if resolver_variant == "legacy": - parts.append( - "pip's legacy dependency resolver does not consider dependency " - "conflicts when selecting packages. This behaviour is the " - "source of the following dependency conflicts." - ) - else: - assert resolver_variant == "resolvelib" - parts.append( - "pip's dependency resolver does not currently take into account " - "all the packages that are installed. This behaviour is the " - "source of the following dependency conflicts." - ) - - # NOTE: There is some duplication here, with commands/check.py - for project_name in missing: - version = package_set[project_name][0] - for dependency in missing[project_name]: - message = ( - f"{project_name} {version} requires {dependency[1]}, " - "which is not installed." - ) - parts.append(message) - - for project_name in conflicting: - version = package_set[project_name][0] - for dep_name, dep_version, req in conflicting[project_name]: - message = ( - "{name} {version} requires {requirement}, but {you} have " - "{dep_name} {dep_version} which is incompatible." - ).format( - name=project_name, - version=version, - requirement=req, - dep_name=dep_name, - dep_version=dep_version, - you=("you" if resolver_variant == "resolvelib" else "you'll"), - ) - parts.append(message) - - logger.critical("\n".join(parts)) - - -def get_lib_location_guesses( - user: bool = False, - home: Optional[str] = None, - root: Optional[str] = None, - isolated: bool = False, - prefix: Optional[str] = None, -) -> List[str]: - scheme = get_scheme( - "", - user=user, - home=home, - root=root, - isolated=isolated, - prefix=prefix, - ) - return [scheme.purelib, scheme.platlib] - - -def site_packages_writable(root: Optional[str], isolated: bool) -> bool: - return all( - test_writable_dir(d) - for d in set(get_lib_location_guesses(root=root, isolated=isolated)) - ) - - -def decide_user_install( - use_user_site: Optional[bool], - prefix_path: Optional[str] = None, - target_dir: Optional[str] = None, - root_path: Optional[str] = None, - isolated_mode: bool = False, -) -> bool: - """Determine whether to do a user install based on the input options. - - If use_user_site is False, no additional checks are done. - If use_user_site is True, it is checked for compatibility with other - options. - If use_user_site is None, the default behaviour depends on the environment, - which is provided by the other arguments. - """ - # In some cases (config from tox), use_user_site can be set to an integer - # rather than a bool, which 'use_user_site is False' wouldn't catch. - if (use_user_site is not None) and (not use_user_site): - logger.debug("Non-user install by explicit request") - return False - - if use_user_site: - if prefix_path: - raise CommandError( - "Can not combine '--user' and '--prefix' as they imply " - "different installation locations" - ) - if virtualenv_no_global(): - raise InstallationError( - "Can not perform a '--user' install. User site-packages " - "are not visible in this virtualenv." - ) - logger.debug("User install by explicit request") - return True - - # If we are here, user installs have not been explicitly requested/avoided - assert use_user_site is None - - # user install incompatible with --prefix/--target - if prefix_path or target_dir: - logger.debug("Non-user install due to --prefix or --target option") - return False - - # If user installs are not enabled, choose a non-user install - if not site.ENABLE_USER_SITE: - logger.debug("Non-user install because user site-packages disabled") - return False - - # If we have permission for a non-user install, do that, - # otherwise do a user install. - if site_packages_writable(root=root_path, isolated=isolated_mode): - logger.debug("Non-user install because site-packages writeable") - return False - - logger.info( - "Defaulting to user installation because normal site-packages " - "is not writeable" - ) - return True - - -def create_os_error_message( - error: OSError, show_traceback: bool, using_user_site: bool -) -> str: - """Format an error message for an OSError - - It may occur anytime during the execution of the install command. - """ - parts = [] - - # Mention the error if we are not going to show a traceback - parts.append("Could not install packages due to an OSError") - if not show_traceback: - parts.append(": ") - parts.append(str(error)) - else: - parts.append(".") - - # Spilt the error indication from a helper message (if any) - parts[-1] += "\n" - - # Suggest useful actions to the user: - # (1) using user site-packages or (2) verifying the permissions - if error.errno == errno.EACCES: - user_option_part = "Consider using the `--user` option" - permissions_part = "Check the permissions" - - if not running_under_virtualenv() and not using_user_site: - parts.extend( - [ - user_option_part, - " or ", - permissions_part.lower(), - ] - ) - else: - parts.append(permissions_part) - parts.append(".\n") - - # Suggest the user to enable Long Paths if path length is - # more than 260 - if ( - WINDOWS - and error.errno == errno.ENOENT - and error.filename - and len(error.filename) > 260 - ): - parts.append( - "HINT: This error might have occurred since " - "this system does not have Windows Long Path " - "support enabled. You can find information on " - "how to enable this at " - "https://pip.pypa.io/warnings/enable-long-paths\n" - ) - - return "".join(parts).strip() + "\n" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/list.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/list.py deleted file mode 100644 index e551dda..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/list.py +++ /dev/null @@ -1,368 +0,0 @@ -import json -import logging -from optparse import Values -from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.cli import cmdoptions -from pip._internal.cli.req_command import IndexGroupCommand -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.exceptions import CommandError -from pip._internal.index.collector import LinkCollector -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution, get_environment -from pip._internal.models.selection_prefs import SelectionPreferences -from pip._internal.network.session import PipSession -from pip._internal.utils.compat import stdlib_pkgs -from pip._internal.utils.misc import tabulate, write_output - -if TYPE_CHECKING: - from pip._internal.metadata.base import DistributionVersion - - class _DistWithLatestInfo(BaseDistribution): - """Give the distribution object a couple of extra fields. - - These will be populated during ``get_outdated()``. This is dirty but - makes the rest of the code much cleaner. - """ - - latest_version: DistributionVersion - latest_filetype: str - - _ProcessedDists = Sequence[_DistWithLatestInfo] - - -logger = logging.getLogger(__name__) - - -class ListCommand(IndexGroupCommand): - """ - List installed packages, including editables. - - Packages are listed in a case-insensitive sorted order. - """ - - ignore_require_venv = True - usage = """ - %prog [options]""" - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-o", - "--outdated", - action="store_true", - default=False, - help="List outdated packages", - ) - self.cmd_opts.add_option( - "-u", - "--uptodate", - action="store_true", - default=False, - help="List uptodate packages", - ) - self.cmd_opts.add_option( - "-e", - "--editable", - action="store_true", - default=False, - help="List editable projects.", - ) - self.cmd_opts.add_option( - "-l", - "--local", - action="store_true", - default=False, - help=( - "If in a virtualenv that has global access, do not list " - "globally-installed packages." - ), - ) - self.cmd_opts.add_option( - "--user", - dest="user", - action="store_true", - default=False, - help="Only output packages installed in user-site.", - ) - self.cmd_opts.add_option(cmdoptions.list_path()) - self.cmd_opts.add_option( - "--pre", - action="store_true", - default=False, - help=( - "Include pre-release and development versions. By default, " - "pip only finds stable versions." - ), - ) - - self.cmd_opts.add_option( - "--format", - action="store", - dest="list_format", - default="columns", - choices=("columns", "freeze", "json"), - help=( - "Select the output format among: columns (default), freeze, or json. " - "The 'freeze' format cannot be used with the --outdated option." - ), - ) - - self.cmd_opts.add_option( - "--not-required", - action="store_true", - dest="not_required", - help="List packages that are not dependencies of installed packages.", - ) - - self.cmd_opts.add_option( - "--exclude-editable", - action="store_false", - dest="include_editable", - help="Exclude editable package from output.", - ) - self.cmd_opts.add_option( - "--include-editable", - action="store_true", - dest="include_editable", - help="Include editable package from output.", - default=True, - ) - self.cmd_opts.add_option(cmdoptions.list_exclude()) - index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) - - self.parser.insert_option_group(0, index_opts) - self.parser.insert_option_group(0, self.cmd_opts) - - def _build_package_finder( - self, options: Values, session: PipSession - ) -> PackageFinder: - """ - Create a package finder appropriate to this list command. - """ - link_collector = LinkCollector.create(session, options=options) - - # Pass allow_yanked=False to ignore yanked versions. - selection_prefs = SelectionPreferences( - allow_yanked=False, - allow_all_prereleases=options.pre, - ) - - return PackageFinder.create( - link_collector=link_collector, - selection_prefs=selection_prefs, - ) - - def run(self, options: Values, args: List[str]) -> int: - if options.outdated and options.uptodate: - raise CommandError("Options --outdated and --uptodate cannot be combined.") - - if options.outdated and options.list_format == "freeze": - raise CommandError( - "List format 'freeze' cannot be used with the --outdated option." - ) - - cmdoptions.check_list_path_option(options) - - skip = set(stdlib_pkgs) - if options.excludes: - skip.update(canonicalize_name(n) for n in options.excludes) - - packages: "_ProcessedDists" = [ - cast("_DistWithLatestInfo", d) - for d in get_environment(options.path).iter_installed_distributions( - local_only=options.local, - user_only=options.user, - editables_only=options.editable, - include_editables=options.include_editable, - skip=skip, - ) - ] - - # get_not_required must be called firstly in order to find and - # filter out all dependencies correctly. Otherwise a package - # can't be identified as requirement because some parent packages - # could be filtered out before. - if options.not_required: - packages = self.get_not_required(packages, options) - - if options.outdated: - packages = self.get_outdated(packages, options) - elif options.uptodate: - packages = self.get_uptodate(packages, options) - - self.output_package_listing(packages, options) - return SUCCESS - - def get_outdated( - self, packages: "_ProcessedDists", options: Values - ) -> "_ProcessedDists": - return [ - dist - for dist in self.iter_packages_latest_infos(packages, options) - if dist.latest_version > dist.version - ] - - def get_uptodate( - self, packages: "_ProcessedDists", options: Values - ) -> "_ProcessedDists": - return [ - dist - for dist in self.iter_packages_latest_infos(packages, options) - if dist.latest_version == dist.version - ] - - def get_not_required( - self, packages: "_ProcessedDists", options: Values - ) -> "_ProcessedDists": - dep_keys = { - canonicalize_name(dep.name) - for dist in packages - for dep in (dist.iter_dependencies() or ()) - } - - # Create a set to remove duplicate packages, and cast it to a list - # to keep the return type consistent with get_outdated and - # get_uptodate - return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) - - def iter_packages_latest_infos( - self, packages: "_ProcessedDists", options: Values - ) -> Generator["_DistWithLatestInfo", None, None]: - with self._build_session(options) as session: - finder = self._build_package_finder(options, session) - - def latest_info( - dist: "_DistWithLatestInfo", - ) -> Optional["_DistWithLatestInfo"]: - all_candidates = finder.find_all_candidates(dist.canonical_name) - if not options.pre: - # Remove prereleases - all_candidates = [ - candidate - for candidate in all_candidates - if not candidate.version.is_prerelease - ] - - evaluator = finder.make_candidate_evaluator( - project_name=dist.canonical_name, - ) - best_candidate = evaluator.sort_best_candidate(all_candidates) - if best_candidate is None: - return None - - remote_version = best_candidate.version - if best_candidate.link.is_wheel: - typ = "wheel" - else: - typ = "sdist" - dist.latest_version = remote_version - dist.latest_filetype = typ - return dist - - for dist in map(latest_info, packages): - if dist is not None: - yield dist - - def output_package_listing( - self, packages: "_ProcessedDists", options: Values - ) -> None: - packages = sorted( - packages, - key=lambda dist: dist.canonical_name, - ) - if options.list_format == "columns" and packages: - data, header = format_for_columns(packages, options) - self.output_package_listing_columns(data, header) - elif options.list_format == "freeze": - for dist in packages: - if options.verbose >= 1: - write_output( - "%s==%s (%s)", dist.raw_name, dist.version, dist.location - ) - else: - write_output("%s==%s", dist.raw_name, dist.version) - elif options.list_format == "json": - write_output(format_for_json(packages, options)) - - def output_package_listing_columns( - self, data: List[List[str]], header: List[str] - ) -> None: - # insert the header first: we need to know the size of column names - if len(data) > 0: - data.insert(0, header) - - pkg_strings, sizes = tabulate(data) - - # Create and add a separator. - if len(data) > 0: - pkg_strings.insert(1, " ".join("-" * x for x in sizes)) - - for val in pkg_strings: - write_output(val) - - -def format_for_columns( - pkgs: "_ProcessedDists", options: Values -) -> Tuple[List[List[str]], List[str]]: - """ - Convert the package data into something usable - by output_package_listing_columns. - """ - header = ["Package", "Version"] - - running_outdated = options.outdated - if running_outdated: - header.extend(["Latest", "Type"]) - - has_editables = any(x.editable for x in pkgs) - if has_editables: - header.append("Editable project location") - - if options.verbose >= 1: - header.append("Location") - if options.verbose >= 1: - header.append("Installer") - - data = [] - for proj in pkgs: - # if we're working on the 'outdated' list, separate out the - # latest_version and type - row = [proj.raw_name, str(proj.version)] - - if running_outdated: - row.append(str(proj.latest_version)) - row.append(proj.latest_filetype) - - if has_editables: - row.append(proj.editable_project_location or "") - - if options.verbose >= 1: - row.append(proj.location or "") - if options.verbose >= 1: - row.append(proj.installer) - - data.append(row) - - return data, header - - -def format_for_json(packages: "_ProcessedDists", options: Values) -> str: - data = [] - for dist in packages: - info = { - "name": dist.raw_name, - "version": str(dist.version), - } - if options.verbose >= 1: - info["location"] = dist.location or "" - info["installer"] = dist.installer - if options.outdated: - info["latest_version"] = str(dist.latest_version) - info["latest_filetype"] = dist.latest_filetype - editable_project_location = dist.editable_project_location - if editable_project_location: - info["editable_project_location"] = editable_project_location - data.append(info) - return json.dumps(data) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/search.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/search.py deleted file mode 100644 index 03ed925..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/search.py +++ /dev/null @@ -1,174 +0,0 @@ -import logging -import shutil -import sys -import textwrap -import xmlrpc.client -from collections import OrderedDict -from optparse import Values -from typing import TYPE_CHECKING, Dict, List, Optional - -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.cli.base_command import Command -from pip._internal.cli.req_command import SessionCommandMixin -from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS -from pip._internal.exceptions import CommandError -from pip._internal.metadata import get_default_environment -from pip._internal.models.index import PyPI -from pip._internal.network.xmlrpc import PipXmlrpcTransport -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import write_output - -if TYPE_CHECKING: - from typing import TypedDict - - class TransformedHit(TypedDict): - name: str - summary: str - versions: List[str] - - -logger = logging.getLogger(__name__) - - -class SearchCommand(Command, SessionCommandMixin): - """Search for PyPI packages whose name or summary contains .""" - - usage = """ - %prog [options] """ - ignore_require_venv = True - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-i", - "--index", - dest="index", - metavar="URL", - default=PyPI.pypi_url, - help="Base URL of Python Package Index (default %default)", - ) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - if not args: - raise CommandError("Missing required argument (search query).") - query = args - pypi_hits = self.search(query, options) - hits = transform_hits(pypi_hits) - - terminal_width = None - if sys.stdout.isatty(): - terminal_width = shutil.get_terminal_size()[0] - - print_results(hits, terminal_width=terminal_width) - if pypi_hits: - return SUCCESS - return NO_MATCHES_FOUND - - def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: - index_url = options.index - - session = self.get_default_session(options) - - transport = PipXmlrpcTransport(index_url, session) - pypi = xmlrpc.client.ServerProxy(index_url, transport) - try: - hits = pypi.search({"name": query, "summary": query}, "or") - except xmlrpc.client.Fault as fault: - message = "XMLRPC request failed [code: {code}]\n{string}".format( - code=fault.faultCode, - string=fault.faultString, - ) - raise CommandError(message) - assert isinstance(hits, list) - return hits - - -def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: - """ - The list from pypi is really a list of versions. We want a list of - packages with the list of versions stored inline. This converts the - list from pypi into one we can use. - """ - packages: Dict[str, "TransformedHit"] = OrderedDict() - for hit in hits: - name = hit["name"] - summary = hit["summary"] - version = hit["version"] - - if name not in packages.keys(): - packages[name] = { - "name": name, - "summary": summary, - "versions": [version], - } - else: - packages[name]["versions"].append(version) - - # if this is the highest version, replace summary and score - if version == highest_version(packages[name]["versions"]): - packages[name]["summary"] = summary - - return list(packages.values()) - - -def print_dist_installation_info(name: str, latest: str) -> None: - env = get_default_environment() - dist = env.get_distribution(name) - if dist is not None: - with indent_log(): - if dist.version == latest: - write_output("INSTALLED: %s (latest)", dist.version) - else: - write_output("INSTALLED: %s", dist.version) - if parse_version(latest).pre: - write_output( - "LATEST: %s (pre-release; install" - " with `pip install --pre`)", - latest, - ) - else: - write_output("LATEST: %s", latest) - - -def print_results( - hits: List["TransformedHit"], - name_column_width: Optional[int] = None, - terminal_width: Optional[int] = None, -) -> None: - if not hits: - return - if name_column_width is None: - name_column_width = ( - max( - [ - len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) - for hit in hits - ] - ) - + 4 - ) - - for hit in hits: - name = hit["name"] - summary = hit["summary"] or "" - latest = highest_version(hit.get("versions", ["-"])) - if terminal_width is not None: - target_width = terminal_width - name_column_width - 5 - if target_width > 10: - # wrap and indent summary to fit terminal - summary_lines = textwrap.wrap(summary, target_width) - summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) - - name_latest = f"{name} ({latest})" - line = f"{name_latest:{name_column_width}} - {summary}" - try: - write_output(line) - print_dist_installation_info(name, latest) - except UnicodeEncodeError: - pass - - -def highest_version(versions: List[str]) -> str: - return max(versions, key=parse_version) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/show.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/show.py deleted file mode 100644 index 3f10701..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/show.py +++ /dev/null @@ -1,189 +0,0 @@ -import logging -from optparse import Values -from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.cli.base_command import Command -from pip._internal.cli.status_codes import ERROR, SUCCESS -from pip._internal.metadata import BaseDistribution, get_default_environment -from pip._internal.utils.misc import write_output - -logger = logging.getLogger(__name__) - - -class ShowCommand(Command): - """ - Show information about one or more installed packages. - - The output is in RFC-compliant mail header format. - """ - - usage = """ - %prog [options] ...""" - ignore_require_venv = True - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-f", - "--files", - dest="files", - action="store_true", - default=False, - help="Show the full list of installed files for each package.", - ) - - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - if not args: - logger.warning("ERROR: Please provide a package name or names.") - return ERROR - query = args - - results = search_packages_info(query) - if not print_results( - results, list_files=options.files, verbose=options.verbose - ): - return ERROR - return SUCCESS - - -class _PackageInfo(NamedTuple): - name: str - version: str - location: str - editable_project_location: Optional[str] - requires: List[str] - required_by: List[str] - installer: str - metadata_version: str - classifiers: List[str] - summary: str - homepage: str - project_urls: List[str] - author: str - author_email: str - license: str - entry_points: List[str] - files: Optional[List[str]] - - -def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: - """ - Gather details from installed distributions. Print distribution name, - version, location, and installed files. Installed files requires a - pip generated 'installed-files.txt' in the distributions '.egg-info' - directory. - """ - env = get_default_environment() - - installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} - query_names = [canonicalize_name(name) for name in query] - missing = sorted( - [name for name, pkg in zip(query, query_names) if pkg not in installed] - ) - if missing: - logger.warning("Package(s) not found: %s", ", ".join(missing)) - - def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: - return ( - dist.metadata["Name"] or "UNKNOWN" - for dist in installed.values() - if current_dist.canonical_name - in {canonicalize_name(d.name) for d in dist.iter_dependencies()} - ) - - for query_name in query_names: - try: - dist = installed[query_name] - except KeyError: - continue - - requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) - required_by = sorted(_get_requiring_packages(dist), key=str.lower) - - try: - entry_points_text = dist.read_text("entry_points.txt") - entry_points = entry_points_text.splitlines(keepends=False) - except FileNotFoundError: - entry_points = [] - - files_iter = dist.iter_declared_entries() - if files_iter is None: - files: Optional[List[str]] = None - else: - files = sorted(files_iter) - - metadata = dist.metadata - - yield _PackageInfo( - name=dist.raw_name, - version=str(dist.version), - location=dist.location or "", - editable_project_location=dist.editable_project_location, - requires=requires, - required_by=required_by, - installer=dist.installer, - metadata_version=dist.metadata_version or "", - classifiers=metadata.get_all("Classifier", []), - summary=metadata.get("Summary", ""), - homepage=metadata.get("Home-page", ""), - project_urls=metadata.get_all("Project-URL", []), - author=metadata.get("Author", ""), - author_email=metadata.get("Author-email", ""), - license=metadata.get("License", ""), - entry_points=entry_points, - files=files, - ) - - -def print_results( - distributions: Iterable[_PackageInfo], - list_files: bool, - verbose: bool, -) -> bool: - """ - Print the information from installed distributions found. - """ - results_printed = False - for i, dist in enumerate(distributions): - results_printed = True - if i > 0: - write_output("---") - - write_output("Name: %s", dist.name) - write_output("Version: %s", dist.version) - write_output("Summary: %s", dist.summary) - write_output("Home-page: %s", dist.homepage) - write_output("Author: %s", dist.author) - write_output("Author-email: %s", dist.author_email) - write_output("License: %s", dist.license) - write_output("Location: %s", dist.location) - if dist.editable_project_location is not None: - write_output( - "Editable project location: %s", dist.editable_project_location - ) - write_output("Requires: %s", ", ".join(dist.requires)) - write_output("Required-by: %s", ", ".join(dist.required_by)) - - if verbose: - write_output("Metadata-Version: %s", dist.metadata_version) - write_output("Installer: %s", dist.installer) - write_output("Classifiers:") - for classifier in dist.classifiers: - write_output(" %s", classifier) - write_output("Entry-points:") - for entry in dist.entry_points: - write_output(" %s", entry.strip()) - write_output("Project-URLs:") - for project_url in dist.project_urls: - write_output(" %s", project_url) - if list_files: - write_output("Files:") - if dist.files is None: - write_output("Cannot locate RECORD or installed-files.txt") - else: - for line in dist.files: - write_output(" %s", line.strip()) - return results_printed diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py deleted file mode 100644 index f198fc3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py +++ /dev/null @@ -1,113 +0,0 @@ -import logging -from optparse import Values -from typing import List - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.cli import cmdoptions -from pip._internal.cli.base_command import Command -from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.exceptions import InstallationError -from pip._internal.req import parse_requirements -from pip._internal.req.constructors import ( - install_req_from_line, - install_req_from_parsed_requirement, -) -from pip._internal.utils.misc import ( - check_externally_managed, - protect_pip_from_modification_on_windows, -) - -logger = logging.getLogger(__name__) - - -class UninstallCommand(Command, SessionCommandMixin): - """ - Uninstall packages. - - pip is able to uninstall most installed packages. Known exceptions are: - - - Pure distutils packages installed with ``python setup.py install``, which - leave behind no metadata to determine what files were installed. - - Script wrappers installed by ``python setup.py develop``. - """ - - usage = """ - %prog [options] ... - %prog [options] -r ...""" - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-r", - "--requirement", - dest="requirements", - action="append", - default=[], - metavar="file", - help=( - "Uninstall all the packages listed in the given requirements " - "file. This option can be used multiple times." - ), - ) - self.cmd_opts.add_option( - "-y", - "--yes", - dest="yes", - action="store_true", - help="Don't ask for confirmation of uninstall deletions.", - ) - self.cmd_opts.add_option(cmdoptions.root_user_action()) - self.cmd_opts.add_option(cmdoptions.override_externally_managed()) - self.parser.insert_option_group(0, self.cmd_opts) - - def run(self, options: Values, args: List[str]) -> int: - session = self.get_default_session(options) - - reqs_to_uninstall = {} - for name in args: - req = install_req_from_line( - name, - isolated=options.isolated_mode, - ) - if req.name: - reqs_to_uninstall[canonicalize_name(req.name)] = req - else: - logger.warning( - "Invalid requirement: %r ignored -" - " the uninstall command expects named" - " requirements.", - name, - ) - for filename in options.requirements: - for parsed_req in parse_requirements( - filename, options=options, session=session - ): - req = install_req_from_parsed_requirement( - parsed_req, isolated=options.isolated_mode - ) - if req.name: - reqs_to_uninstall[canonicalize_name(req.name)] = req - if not reqs_to_uninstall: - raise InstallationError( - f"You must give at least one requirement to {self.name} (see " - f'"pip help {self.name}")' - ) - - if not options.override_externally_managed: - check_externally_managed() - - protect_pip_from_modification_on_windows( - modifying_pip="pip" in reqs_to_uninstall - ) - - for req in reqs_to_uninstall.values(): - uninstall_pathset = req.uninstall( - auto_confirm=options.yes, - verbose=self.verbosity > 0, - ) - if uninstall_pathset: - uninstall_pathset.commit() - if options.root_user_action == "warn": - warn_if_run_as_root() - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py deleted file mode 100644 index ed578aa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py +++ /dev/null @@ -1,183 +0,0 @@ -import logging -import os -import shutil -from optparse import Values -from typing import List - -from pip._internal.cache import WheelCache -from pip._internal.cli import cmdoptions -from pip._internal.cli.req_command import RequirementCommand, with_cleanup -from pip._internal.cli.status_codes import SUCCESS -from pip._internal.exceptions import CommandError -from pip._internal.operations.build.build_tracker import get_build_tracker -from pip._internal.req.req_install import ( - InstallRequirement, - check_legacy_setup_py_options, -) -from pip._internal.utils.misc import ensure_dir, normalize_path -from pip._internal.utils.temp_dir import TempDirectory -from pip._internal.wheel_builder import build, should_build_for_wheel_command - -logger = logging.getLogger(__name__) - - -class WheelCommand(RequirementCommand): - """ - Build Wheel archives for your requirements and dependencies. - - Wheel is a built-package format, and offers the advantage of not - recompiling your software during every install. For more details, see the - wheel docs: https://wheel.readthedocs.io/en/latest/ - - 'pip wheel' uses the build system interface as described here: - https://pip.pypa.io/en/stable/reference/build-system/ - - """ - - usage = """ - %prog [options] ... - %prog [options] -r ... - %prog [options] [-e] ... - %prog [options] [-e] ... - %prog [options] ...""" - - def add_options(self) -> None: - self.cmd_opts.add_option( - "-w", - "--wheel-dir", - dest="wheel_dir", - metavar="dir", - default=os.curdir, - help=( - "Build wheels into , where the default is the " - "current working directory." - ), - ) - self.cmd_opts.add_option(cmdoptions.no_binary()) - self.cmd_opts.add_option(cmdoptions.only_binary()) - self.cmd_opts.add_option(cmdoptions.prefer_binary()) - self.cmd_opts.add_option(cmdoptions.no_build_isolation()) - self.cmd_opts.add_option(cmdoptions.use_pep517()) - self.cmd_opts.add_option(cmdoptions.no_use_pep517()) - self.cmd_opts.add_option(cmdoptions.check_build_deps()) - self.cmd_opts.add_option(cmdoptions.constraints()) - self.cmd_opts.add_option(cmdoptions.editable()) - self.cmd_opts.add_option(cmdoptions.requirements()) - self.cmd_opts.add_option(cmdoptions.src()) - self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) - self.cmd_opts.add_option(cmdoptions.no_deps()) - self.cmd_opts.add_option(cmdoptions.progress_bar()) - - self.cmd_opts.add_option( - "--no-verify", - dest="no_verify", - action="store_true", - default=False, - help="Don't verify if built wheel is valid.", - ) - - self.cmd_opts.add_option(cmdoptions.config_settings()) - self.cmd_opts.add_option(cmdoptions.build_options()) - self.cmd_opts.add_option(cmdoptions.global_options()) - - self.cmd_opts.add_option( - "--pre", - action="store_true", - default=False, - help=( - "Include pre-release and development versions. By default, " - "pip only finds stable versions." - ), - ) - - self.cmd_opts.add_option(cmdoptions.require_hashes()) - - index_opts = cmdoptions.make_option_group( - cmdoptions.index_group, - self.parser, - ) - - self.parser.insert_option_group(0, index_opts) - self.parser.insert_option_group(0, self.cmd_opts) - - @with_cleanup - def run(self, options: Values, args: List[str]) -> int: - session = self.get_default_session(options) - - finder = self._build_package_finder(options, session) - - options.wheel_dir = normalize_path(options.wheel_dir) - ensure_dir(options.wheel_dir) - - build_tracker = self.enter_context(get_build_tracker()) - - directory = TempDirectory( - delete=not options.no_clean, - kind="wheel", - globally_managed=True, - ) - - reqs = self.get_requirements(args, options, finder, session) - check_legacy_setup_py_options(options, reqs) - - wheel_cache = WheelCache(options.cache_dir) - - preparer = self.make_requirement_preparer( - temp_build_dir=directory, - options=options, - build_tracker=build_tracker, - session=session, - finder=finder, - download_dir=options.wheel_dir, - use_user_site=False, - verbosity=self.verbosity, - ) - - resolver = self.make_resolver( - preparer=preparer, - finder=finder, - options=options, - wheel_cache=wheel_cache, - ignore_requires_python=options.ignore_requires_python, - use_pep517=options.use_pep517, - ) - - self.trace_basic_info(finder) - - requirement_set = resolver.resolve(reqs, check_supported_wheels=True) - - reqs_to_build: List[InstallRequirement] = [] - for req in requirement_set.requirements.values(): - if req.is_wheel: - preparer.save_linked_requirement(req) - elif should_build_for_wheel_command(req): - reqs_to_build.append(req) - - preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) - requirement_set.warn_legacy_versions_and_specifiers() - - # build wheels - build_successes, build_failures = build( - reqs_to_build, - wheel_cache=wheel_cache, - verify=(not options.no_verify), - build_options=options.build_options or [], - global_options=options.global_options or [], - ) - for req in build_successes: - assert req.link and req.link.is_wheel - assert req.local_file_path - # copy from cache to target directory - try: - shutil.copy(req.local_file_path, options.wheel_dir) - except OSError as e: - logger.warning( - "Building wheel for %s failed: %s", - req.name, - e, - ) - build_failures.append(req) - if len(build_failures) != 0: - raise CommandError("Failed to build one or more wheels") - - return SUCCESS diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/configuration.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/configuration.py deleted file mode 100644 index c25273d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/configuration.py +++ /dev/null @@ -1,383 +0,0 @@ -"""Configuration management setup - -Some terminology: -- name - As written in config files. -- value - Value associated with a name -- key - Name combined with it's section (section.name) -- variant - A single word describing where the configuration key-value pair came from -""" - -import configparser -import locale -import os -import sys -from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple - -from pip._internal.exceptions import ( - ConfigurationError, - ConfigurationFileCouldNotBeLoaded, -) -from pip._internal.utils import appdirs -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.logging import getLogger -from pip._internal.utils.misc import ensure_dir, enum - -RawConfigParser = configparser.RawConfigParser # Shorthand -Kind = NewType("Kind", str) - -CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" -ENV_NAMES_IGNORED = "version", "help" - -# The kinds of configurations there are. -kinds = enum( - USER="user", # User Specific - GLOBAL="global", # System Wide - SITE="site", # [Virtual] Environment Specific - ENV="env", # from PIP_CONFIG_FILE - ENV_VAR="env-var", # from Environment Variables -) -OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR -VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE - -logger = getLogger(__name__) - - -# NOTE: Maybe use the optionx attribute to normalize keynames. -def _normalize_name(name: str) -> str: - """Make a name consistent regardless of source (environment or file)""" - name = name.lower().replace("_", "-") - if name.startswith("--"): - name = name[2:] # only prefer long opts - return name - - -def _disassemble_key(name: str) -> List[str]: - if "." not in name: - error_message = ( - "Key does not contain dot separated section and key. " - f"Perhaps you wanted to use 'global.{name}' instead?" - ) - raise ConfigurationError(error_message) - return name.split(".", 1) - - -def get_configuration_files() -> Dict[Kind, List[str]]: - global_config_files = [ - os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") - ] - - site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) - legacy_config_file = os.path.join( - os.path.expanduser("~"), - "pip" if WINDOWS else ".pip", - CONFIG_BASENAME, - ) - new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) - return { - kinds.GLOBAL: global_config_files, - kinds.SITE: [site_config_file], - kinds.USER: [legacy_config_file, new_config_file], - } - - -class Configuration: - """Handles management of configuration. - - Provides an interface to accessing and managing configuration files. - - This class converts provides an API that takes "section.key-name" style - keys and stores the value associated with it as "key-name" under the - section "section". - - This allows for a clean interface wherein the both the section and the - key-name are preserved in an easy to manage form in the configuration files - and the data stored is also nice. - """ - - def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: - super().__init__() - - if load_only is not None and load_only not in VALID_LOAD_ONLY: - raise ConfigurationError( - "Got invalid value for load_only - should be one of {}".format( - ", ".join(map(repr, VALID_LOAD_ONLY)) - ) - ) - self.isolated = isolated - self.load_only = load_only - - # Because we keep track of where we got the data from - self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { - variant: [] for variant in OVERRIDE_ORDER - } - self._config: Dict[Kind, Dict[str, Any]] = { - variant: {} for variant in OVERRIDE_ORDER - } - self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] - - def load(self) -> None: - """Loads configuration from configuration files and environment""" - self._load_config_files() - if not self.isolated: - self._load_environment_vars() - - def get_file_to_edit(self) -> Optional[str]: - """Returns the file with highest priority in configuration""" - assert self.load_only is not None, "Need to be specified a file to be editing" - - try: - return self._get_parser_to_modify()[0] - except IndexError: - return None - - def items(self) -> Iterable[Tuple[str, Any]]: - """Returns key-value pairs like dict.items() representing the loaded - configuration - """ - return self._dictionary.items() - - def get_value(self, key: str) -> Any: - """Get a value from the configuration.""" - orig_key = key - key = _normalize_name(key) - try: - return self._dictionary[key] - except KeyError: - # disassembling triggers a more useful error message than simply - # "No such key" in the case that the key isn't in the form command.option - _disassemble_key(key) - raise ConfigurationError(f"No such key - {orig_key}") - - def set_value(self, key: str, value: Any) -> None: - """Modify a value in the configuration.""" - key = _normalize_name(key) - self._ensure_have_load_only() - - assert self.load_only - fname, parser = self._get_parser_to_modify() - - if parser is not None: - section, name = _disassemble_key(key) - - # Modify the parser and the configuration - if not parser.has_section(section): - parser.add_section(section) - parser.set(section, name, value) - - self._config[self.load_only][key] = value - self._mark_as_modified(fname, parser) - - def unset_value(self, key: str) -> None: - """Unset a value in the configuration.""" - orig_key = key - key = _normalize_name(key) - self._ensure_have_load_only() - - assert self.load_only - if key not in self._config[self.load_only]: - raise ConfigurationError(f"No such key - {orig_key}") - - fname, parser = self._get_parser_to_modify() - - if parser is not None: - section, name = _disassemble_key(key) - if not ( - parser.has_section(section) and parser.remove_option(section, name) - ): - # The option was not removed. - raise ConfigurationError( - "Fatal Internal error [id=1]. Please report as a bug." - ) - - # The section may be empty after the option was removed. - if not parser.items(section): - parser.remove_section(section) - self._mark_as_modified(fname, parser) - - del self._config[self.load_only][key] - - def save(self) -> None: - """Save the current in-memory state.""" - self._ensure_have_load_only() - - for fname, parser in self._modified_parsers: - logger.info("Writing to %s", fname) - - # Ensure directory exists. - ensure_dir(os.path.dirname(fname)) - - # Ensure directory's permission(need to be writeable) - try: - with open(fname, "w") as f: - parser.write(f) - except OSError as error: - raise ConfigurationError( - f"An error occurred while writing to the configuration file " - f"{fname}: {error}" - ) - - # - # Private routines - # - - def _ensure_have_load_only(self) -> None: - if self.load_only is None: - raise ConfigurationError("Needed a specific file to be modifying.") - logger.debug("Will be working with %s variant only", self.load_only) - - @property - def _dictionary(self) -> Dict[str, Any]: - """A dictionary representing the loaded configuration.""" - # NOTE: Dictionaries are not populated if not loaded. So, conditionals - # are not needed here. - retval = {} - - for variant in OVERRIDE_ORDER: - retval.update(self._config[variant]) - - return retval - - def _load_config_files(self) -> None: - """Loads configuration from configuration files""" - config_files = dict(self.iter_config_files()) - if config_files[kinds.ENV][0:1] == [os.devnull]: - logger.debug( - "Skipping loading configuration files due to " - "environment's PIP_CONFIG_FILE being os.devnull" - ) - return - - for variant, files in config_files.items(): - for fname in files: - # If there's specific variant set in `load_only`, load only - # that variant, not the others. - if self.load_only is not None and variant != self.load_only: - logger.debug("Skipping file '%s' (variant: %s)", fname, variant) - continue - - parser = self._load_file(variant, fname) - - # Keeping track of the parsers used - self._parsers[variant].append((fname, parser)) - - def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: - logger.verbose("For variant '%s', will try loading '%s'", variant, fname) - parser = self._construct_parser(fname) - - for section in parser.sections(): - items = parser.items(section) - self._config[variant].update(self._normalized_keys(section, items)) - - return parser - - def _construct_parser(self, fname: str) -> RawConfigParser: - parser = configparser.RawConfigParser() - # If there is no such file, don't bother reading it but create the - # parser anyway, to hold the data. - # Doing this is useful when modifying and saving files, where we don't - # need to construct a parser. - if os.path.exists(fname): - locale_encoding = locale.getpreferredencoding(False) - try: - parser.read(fname, encoding=locale_encoding) - except UnicodeDecodeError: - # See https://github.com/pypa/pip/issues/4963 - raise ConfigurationFileCouldNotBeLoaded( - reason=f"contains invalid {locale_encoding} characters", - fname=fname, - ) - except configparser.Error as error: - # See https://github.com/pypa/pip/issues/4893 - raise ConfigurationFileCouldNotBeLoaded(error=error) - return parser - - def _load_environment_vars(self) -> None: - """Loads configuration from environment variables""" - self._config[kinds.ENV_VAR].update( - self._normalized_keys(":env:", self.get_environ_vars()) - ) - - def _normalized_keys( - self, section: str, items: Iterable[Tuple[str, Any]] - ) -> Dict[str, Any]: - """Normalizes items to construct a dictionary with normalized keys. - - This routine is where the names become keys and are made the same - regardless of source - configuration files or environment. - """ - normalized = {} - for name, val in items: - key = section + "." + _normalize_name(name) - normalized[key] = val - return normalized - - def get_environ_vars(self) -> Iterable[Tuple[str, str]]: - """Returns a generator with all environmental vars with prefix PIP_""" - for key, val in os.environ.items(): - if key.startswith("PIP_"): - name = key[4:].lower() - if name not in ENV_NAMES_IGNORED: - yield name, val - - # XXX: This is patched in the tests. - def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: - """Yields variant and configuration files associated with it. - - This should be treated like items of a dictionary. The order - here doesn't affect what gets overridden. That is controlled - by OVERRIDE_ORDER. However this does control the order they are - displayed to the user. It's probably most ergononmic to display - things in the same order as OVERRIDE_ORDER - """ - # SMELL: Move the conditions out of this function - - env_config_file = os.environ.get("PIP_CONFIG_FILE", None) - config_files = get_configuration_files() - - yield kinds.GLOBAL, config_files[kinds.GLOBAL] - - # per-user config is not loaded when env_config_file exists - should_load_user_config = not self.isolated and not ( - env_config_file and os.path.exists(env_config_file) - ) - if should_load_user_config: - # The legacy config file is overridden by the new config file - yield kinds.USER, config_files[kinds.USER] - - # virtualenv config - yield kinds.SITE, config_files[kinds.SITE] - - if env_config_file is not None: - yield kinds.ENV, [env_config_file] - else: - yield kinds.ENV, [] - - def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: - """Get values present in a config file""" - return self._config[variant] - - def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: - # Determine which parser to modify - assert self.load_only - parsers = self._parsers[self.load_only] - if not parsers: - # This should not happen if everything works correctly. - raise ConfigurationError( - "Fatal Internal error [id=2]. Please report as a bug." - ) - - # Use the highest priority parser. - return parsers[-1] - - # XXX: This is patched in the tests. - def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: - file_parser_tuple = (fname, parser) - if file_parser_tuple not in self._modified_parsers: - self._modified_parsers.append(file_parser_tuple) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py deleted file mode 100644 index 9a89a83..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -from pip._internal.distributions.base import AbstractDistribution -from pip._internal.distributions.sdist import SourceDistribution -from pip._internal.distributions.wheel import WheelDistribution -from pip._internal.req.req_install import InstallRequirement - - -def make_distribution_for_install_requirement( - install_req: InstallRequirement, -) -> AbstractDistribution: - """Returns a Distribution for the given InstallRequirement""" - # Editable requirements will always be source distributions. They use the - # legacy logic until we create a modern standard for them. - if install_req.editable: - return SourceDistribution(install_req) - - # If it's a wheel, it's a WheelDistribution - if install_req.is_wheel: - return WheelDistribution(install_req) - - # Otherwise, a SourceDistribution - return SourceDistribution(install_req) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e709b65..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 1bf076b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc deleted file mode 100644 index bbfe326..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc deleted file mode 100644 index e5a8c13..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index 77ba874..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py deleted file mode 100644 index 6fb0d7b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py +++ /dev/null @@ -1,51 +0,0 @@ -import abc -from typing import Optional - -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata.base import BaseDistribution -from pip._internal.req import InstallRequirement - - -class AbstractDistribution(metaclass=abc.ABCMeta): - """A base class for handling installable artifacts. - - The requirements for anything installable are as follows: - - - we must be able to determine the requirement name - (or we can't correctly handle the non-upgrade case). - - - for packages with setup requirements, we must also be able - to determine their requirements without installing additional - packages (for the same reason as run-time dependencies) - - - we must be able to create a Distribution object exposing the - above metadata. - - - if we need to do work in the build tracker, we must be able to generate a unique - string to identify the requirement in the build tracker. - """ - - def __init__(self, req: InstallRequirement) -> None: - super().__init__() - self.req = req - - @abc.abstractproperty - def build_tracker_id(self) -> Optional[str]: - """A string that uniquely identifies this requirement to the build tracker. - - If None, then this dist has no work to do in the build tracker, and - ``.prepare_distribution_metadata()`` will not be called.""" - raise NotImplementedError() - - @abc.abstractmethod - def get_metadata_distribution(self) -> BaseDistribution: - raise NotImplementedError() - - @abc.abstractmethod - def prepare_distribution_metadata( - self, - finder: PackageFinder, - build_isolation: bool, - check_build_deps: bool, - ) -> None: - raise NotImplementedError() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py deleted file mode 100644 index ab8d53b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py +++ /dev/null @@ -1,29 +0,0 @@ -from typing import Optional - -from pip._internal.distributions.base import AbstractDistribution -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution - - -class InstalledDistribution(AbstractDistribution): - """Represents an installed package. - - This does not need any preparation as the required information has already - been computed. - """ - - @property - def build_tracker_id(self) -> Optional[str]: - return None - - def get_metadata_distribution(self) -> BaseDistribution: - assert self.req.satisfied_by is not None, "not actually installed" - return self.req.satisfied_by - - def prepare_distribution_metadata( - self, - finder: PackageFinder, - build_isolation: bool, - check_build_deps: bool, - ) -> None: - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py deleted file mode 100644 index 15ff42b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py +++ /dev/null @@ -1,156 +0,0 @@ -import logging -from typing import Iterable, Optional, Set, Tuple - -from pip._internal.build_env import BuildEnvironment -from pip._internal.distributions.base import AbstractDistribution -from pip._internal.exceptions import InstallationError -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution -from pip._internal.utils.subprocess import runner_with_spinner_message - -logger = logging.getLogger(__name__) - - -class SourceDistribution(AbstractDistribution): - """Represents a source distribution. - - The preparation step for these needs metadata for the packages to be - generated, either using PEP 517 or using the legacy `setup.py egg_info`. - """ - - @property - def build_tracker_id(self) -> Optional[str]: - """Identify this requirement uniquely by its link.""" - assert self.req.link - return self.req.link.url_without_fragment - - def get_metadata_distribution(self) -> BaseDistribution: - return self.req.get_dist() - - def prepare_distribution_metadata( - self, - finder: PackageFinder, - build_isolation: bool, - check_build_deps: bool, - ) -> None: - # Load pyproject.toml, to determine whether PEP 517 is to be used - self.req.load_pyproject_toml() - - # Set up the build isolation, if this requirement should be isolated - should_isolate = self.req.use_pep517 and build_isolation - if should_isolate: - # Setup an isolated environment and install the build backend static - # requirements in it. - self._prepare_build_backend(finder) - # Check that if the requirement is editable, it either supports PEP 660 or - # has a setup.py or a setup.cfg. This cannot be done earlier because we need - # to setup the build backend to verify it supports build_editable, nor can - # it be done later, because we want to avoid installing build requirements - # needlessly. Doing it here also works around setuptools generating - # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory - # without setup.py nor setup.cfg. - self.req.isolated_editable_sanity_check() - # Install the dynamic build requirements. - self._install_build_reqs(finder) - # Check if the current environment provides build dependencies - should_check_deps = self.req.use_pep517 and check_build_deps - if should_check_deps: - pyproject_requires = self.req.pyproject_requires - assert pyproject_requires is not None - conflicting, missing = self.req.build_env.check_requirements( - pyproject_requires - ) - if conflicting: - self._raise_conflicts("the backend dependencies", conflicting) - if missing: - self._raise_missing_reqs(missing) - self.req.prepare_metadata() - - def _prepare_build_backend(self, finder: PackageFinder) -> None: - # Isolate in a BuildEnvironment and install the build-time - # requirements. - pyproject_requires = self.req.pyproject_requires - assert pyproject_requires is not None - - self.req.build_env = BuildEnvironment() - self.req.build_env.install_requirements( - finder, pyproject_requires, "overlay", kind="build dependencies" - ) - conflicting, missing = self.req.build_env.check_requirements( - self.req.requirements_to_check - ) - if conflicting: - self._raise_conflicts("PEP 517/518 supported requirements", conflicting) - if missing: - logger.warning( - "Missing build requirements in pyproject.toml for %s.", - self.req, - ) - logger.warning( - "The project does not specify a build backend, and " - "pip cannot fall back to setuptools without %s.", - " and ".join(map(repr, sorted(missing))), - ) - - def _get_build_requires_wheel(self) -> Iterable[str]: - with self.req.build_env: - runner = runner_with_spinner_message("Getting requirements to build wheel") - backend = self.req.pep517_backend - assert backend is not None - with backend.subprocess_runner(runner): - return backend.get_requires_for_build_wheel() - - def _get_build_requires_editable(self) -> Iterable[str]: - with self.req.build_env: - runner = runner_with_spinner_message( - "Getting requirements to build editable" - ) - backend = self.req.pep517_backend - assert backend is not None - with backend.subprocess_runner(runner): - return backend.get_requires_for_build_editable() - - def _install_build_reqs(self, finder: PackageFinder) -> None: - # Install any extra build dependencies that the backend requests. - # This must be done in a second pass, as the pyproject.toml - # dependencies must be installed before we can call the backend. - if ( - self.req.editable - and self.req.permit_editable_wheels - and self.req.supports_pyproject_editable() - ): - build_reqs = self._get_build_requires_editable() - else: - build_reqs = self._get_build_requires_wheel() - conflicting, missing = self.req.build_env.check_requirements(build_reqs) - if conflicting: - self._raise_conflicts("the backend dependencies", conflicting) - self.req.build_env.install_requirements( - finder, missing, "normal", kind="backend dependencies" - ) - - def _raise_conflicts( - self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] - ) -> None: - format_string = ( - "Some build dependencies for {requirement} " - "conflict with {conflicting_with}: {description}." - ) - error_message = format_string.format( - requirement=self.req, - conflicting_with=conflicting_with, - description=", ".join( - f"{installed} is incompatible with {wanted}" - for installed, wanted in sorted(conflicting_reqs) - ), - ) - raise InstallationError(error_message) - - def _raise_missing_reqs(self, missing: Set[str]) -> None: - format_string = ( - "Some build dependencies for {requirement} are missing: {missing}." - ) - error_message = format_string.format( - requirement=self.req, missing=", ".join(map(repr, sorted(missing))) - ) - raise InstallationError(error_message) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py deleted file mode 100644 index eb16e25..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py +++ /dev/null @@ -1,40 +0,0 @@ -from typing import Optional - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.distributions.base import AbstractDistribution -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import ( - BaseDistribution, - FilesystemWheel, - get_wheel_distribution, -) - - -class WheelDistribution(AbstractDistribution): - """Represents a wheel distribution. - - This does not need any preparation as wheels can be directly unpacked. - """ - - @property - def build_tracker_id(self) -> Optional[str]: - return None - - def get_metadata_distribution(self) -> BaseDistribution: - """Loads the metadata from the wheel file into memory and returns a - Distribution that uses it, not relying on the wheel file or - requirement. - """ - assert self.req.local_file_path, "Set as part of preparation during download" - assert self.req.name, "Wheels are never unnamed" - wheel = FilesystemWheel(self.req.local_file_path) - return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) - - def prepare_distribution_metadata( - self, - finder: PackageFinder, - build_isolation: bool, - check_build_deps: bool, - ) -> None: - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/exceptions.py deleted file mode 100644 index 5007a62..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/exceptions.py +++ /dev/null @@ -1,728 +0,0 @@ -"""Exceptions used throughout package. - -This module MUST NOT try to import from anything within `pip._internal` to -operate. This is expected to be importable from any/all files within the -subpackage and, thus, should not depend on them. -""" - -import configparser -import contextlib -import locale -import logging -import pathlib -import re -import sys -from itertools import chain, groupby, repeat -from typing import TYPE_CHECKING, Dict, Iterator, List, Optional, Union - -from pip._vendor.requests.models import Request, Response -from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult -from pip._vendor.rich.markup import escape -from pip._vendor.rich.text import Text - -if TYPE_CHECKING: - from hashlib import _Hash - from typing import Literal - - from pip._internal.metadata import BaseDistribution - from pip._internal.req.req_install import InstallRequirement - -logger = logging.getLogger(__name__) - - -# -# Scaffolding -# -def _is_kebab_case(s: str) -> bool: - return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None - - -def _prefix_with_indent( - s: Union[Text, str], - console: Console, - *, - prefix: str, - indent: str, -) -> Text: - if isinstance(s, Text): - text = s - else: - text = console.render_str(s) - - return console.render_str(prefix, overflow="ignore") + console.render_str( - f"\n{indent}", overflow="ignore" - ).join(text.split(allow_blank=True)) - - -class PipError(Exception): - """The base pip error.""" - - -class DiagnosticPipError(PipError): - """An error, that presents diagnostic information to the user. - - This contains a bunch of logic, to enable pretty presentation of our error - messages. Each error gets a unique reference. Each error can also include - additional context, a hint and/or a note -- which are presented with the - main error message in a consistent style. - - This is adapted from the error output styling in `sphinx-theme-builder`. - """ - - reference: str - - def __init__( - self, - *, - kind: 'Literal["error", "warning"]' = "error", - reference: Optional[str] = None, - message: Union[str, Text], - context: Optional[Union[str, Text]], - hint_stmt: Optional[Union[str, Text]], - note_stmt: Optional[Union[str, Text]] = None, - link: Optional[str] = None, - ) -> None: - # Ensure a proper reference is provided. - if reference is None: - assert hasattr(self, "reference"), "error reference not provided!" - reference = self.reference - assert _is_kebab_case(reference), "error reference must be kebab-case!" - - self.kind = kind - self.reference = reference - - self.message = message - self.context = context - - self.note_stmt = note_stmt - self.hint_stmt = hint_stmt - - self.link = link - - super().__init__(f"<{self.__class__.__name__}: {self.reference}>") - - def __repr__(self) -> str: - return ( - f"<{self.__class__.__name__}(" - f"reference={self.reference!r}, " - f"message={self.message!r}, " - f"context={self.context!r}, " - f"note_stmt={self.note_stmt!r}, " - f"hint_stmt={self.hint_stmt!r}" - ")>" - ) - - def __rich_console__( - self, - console: Console, - options: ConsoleOptions, - ) -> RenderResult: - colour = "red" if self.kind == "error" else "yellow" - - yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" - yield "" - - if not options.ascii_only: - # Present the main message, with relevant context indented. - if self.context is not None: - yield _prefix_with_indent( - self.message, - console, - prefix=f"[{colour}]×[/] ", - indent=f"[{colour}]│[/] ", - ) - yield _prefix_with_indent( - self.context, - console, - prefix=f"[{colour}]╰─>[/] ", - indent=f"[{colour}] [/] ", - ) - else: - yield _prefix_with_indent( - self.message, - console, - prefix="[red]×[/] ", - indent=" ", - ) - else: - yield self.message - if self.context is not None: - yield "" - yield self.context - - if self.note_stmt is not None or self.hint_stmt is not None: - yield "" - - if self.note_stmt is not None: - yield _prefix_with_indent( - self.note_stmt, - console, - prefix="[magenta bold]note[/]: ", - indent=" ", - ) - if self.hint_stmt is not None: - yield _prefix_with_indent( - self.hint_stmt, - console, - prefix="[cyan bold]hint[/]: ", - indent=" ", - ) - - if self.link is not None: - yield "" - yield f"Link: {self.link}" - - -# -# Actual Errors -# -class ConfigurationError(PipError): - """General exception in configuration""" - - -class InstallationError(PipError): - """General exception during installation""" - - -class UninstallationError(PipError): - """General exception during uninstallation""" - - -class MissingPyProjectBuildRequires(DiagnosticPipError): - """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" - - reference = "missing-pyproject-build-system-requires" - - def __init__(self, *, package: str) -> None: - super().__init__( - message=f"Can not process {escape(package)}", - context=Text( - "This package has an invalid pyproject.toml file.\n" - "The [build-system] table is missing the mandatory `requires` key." - ), - note_stmt="This is an issue with the package mentioned above, not pip.", - hint_stmt=Text("See PEP 518 for the detailed specification."), - ) - - -class InvalidPyProjectBuildRequires(DiagnosticPipError): - """Raised when pyproject.toml an invalid `build-system.requires`.""" - - reference = "invalid-pyproject-build-system-requires" - - def __init__(self, *, package: str, reason: str) -> None: - super().__init__( - message=f"Can not process {escape(package)}", - context=Text( - "This package has an invalid `build-system.requires` key in " - f"pyproject.toml.\n{reason}" - ), - note_stmt="This is an issue with the package mentioned above, not pip.", - hint_stmt=Text("See PEP 518 for the detailed specification."), - ) - - -class NoneMetadataError(PipError): - """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". - - This signifies an inconsistency, when the Distribution claims to have - the metadata file (if not, raise ``FileNotFoundError`` instead), but is - not actually able to produce its content. This may be due to permission - errors. - """ - - def __init__( - self, - dist: "BaseDistribution", - metadata_name: str, - ) -> None: - """ - :param dist: A Distribution object. - :param metadata_name: The name of the metadata being accessed - (can be "METADATA" or "PKG-INFO"). - """ - self.dist = dist - self.metadata_name = metadata_name - - def __str__(self) -> str: - # Use `dist` in the error message because its stringification - # includes more information, like the version and location. - return f"None {self.metadata_name} metadata found for distribution: {self.dist}" - - -class UserInstallationInvalid(InstallationError): - """A --user install is requested on an environment without user site.""" - - def __str__(self) -> str: - return "User base directory is not specified" - - -class InvalidSchemeCombination(InstallationError): - def __str__(self) -> str: - before = ", ".join(str(a) for a in self.args[:-1]) - return f"Cannot set {before} and {self.args[-1]} together" - - -class DistributionNotFound(InstallationError): - """Raised when a distribution cannot be found to satisfy a requirement""" - - -class RequirementsFileParseError(InstallationError): - """Raised when a general error occurs parsing a requirements file line.""" - - -class BestVersionAlreadyInstalled(PipError): - """Raised when the most up-to-date version of a package is already - installed.""" - - -class BadCommand(PipError): - """Raised when virtualenv or a command is not found""" - - -class CommandError(PipError): - """Raised when there is an error in command-line arguments""" - - -class PreviousBuildDirError(PipError): - """Raised when there's a previous conflicting build directory""" - - -class NetworkConnectionError(PipError): - """HTTP connection error""" - - def __init__( - self, - error_msg: str, - response: Optional[Response] = None, - request: Optional[Request] = None, - ) -> None: - """ - Initialize NetworkConnectionError with `request` and `response` - objects. - """ - self.response = response - self.request = request - self.error_msg = error_msg - if ( - self.response is not None - and not self.request - and hasattr(response, "request") - ): - self.request = self.response.request - super().__init__(error_msg, response, request) - - def __str__(self) -> str: - return str(self.error_msg) - - -class InvalidWheelFilename(InstallationError): - """Invalid wheel filename.""" - - -class UnsupportedWheel(InstallationError): - """Unsupported wheel.""" - - -class InvalidWheel(InstallationError): - """Invalid (e.g. corrupt) wheel.""" - - def __init__(self, location: str, name: str): - self.location = location - self.name = name - - def __str__(self) -> str: - return f"Wheel '{self.name}' located at {self.location} is invalid." - - -class MetadataInconsistent(InstallationError): - """Built metadata contains inconsistent information. - - This is raised when the metadata contains values (e.g. name and version) - that do not match the information previously obtained from sdist filename, - user-supplied ``#egg=`` value, or an install requirement name. - """ - - def __init__( - self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str - ) -> None: - self.ireq = ireq - self.field = field - self.f_val = f_val - self.m_val = m_val - - def __str__(self) -> str: - return ( - f"Requested {self.ireq} has inconsistent {self.field}: " - f"expected {self.f_val!r}, but metadata has {self.m_val!r}" - ) - - -class InstallationSubprocessError(DiagnosticPipError, InstallationError): - """A subprocess call failed.""" - - reference = "subprocess-exited-with-error" - - def __init__( - self, - *, - command_description: str, - exit_code: int, - output_lines: Optional[List[str]], - ) -> None: - if output_lines is None: - output_prompt = Text("See above for output.") - else: - output_prompt = ( - Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") - + Text("".join(output_lines)) - + Text.from_markup(R"[red]\[end of output][/]") - ) - - super().__init__( - message=( - f"[green]{escape(command_description)}[/] did not run successfully.\n" - f"exit code: {exit_code}" - ), - context=output_prompt, - hint_stmt=None, - note_stmt=( - "This error originates from a subprocess, and is likely not a " - "problem with pip." - ), - ) - - self.command_description = command_description - self.exit_code = exit_code - - def __str__(self) -> str: - return f"{self.command_description} exited with {self.exit_code}" - - -class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): - reference = "metadata-generation-failed" - - def __init__( - self, - *, - package_details: str, - ) -> None: - super(InstallationSubprocessError, self).__init__( - message="Encountered error while generating package metadata.", - context=escape(package_details), - hint_stmt="See above for details.", - note_stmt="This is an issue with the package mentioned above, not pip.", - ) - - def __str__(self) -> str: - return "metadata generation failed" - - -class HashErrors(InstallationError): - """Multiple HashError instances rolled into one for reporting""" - - def __init__(self) -> None: - self.errors: List["HashError"] = [] - - def append(self, error: "HashError") -> None: - self.errors.append(error) - - def __str__(self) -> str: - lines = [] - self.errors.sort(key=lambda e: e.order) - for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): - lines.append(cls.head) - lines.extend(e.body() for e in errors_of_cls) - if lines: - return "\n".join(lines) - return "" - - def __bool__(self) -> bool: - return bool(self.errors) - - -class HashError(InstallationError): - """ - A failure to verify a package against known-good hashes - - :cvar order: An int sorting hash exception classes by difficulty of - recovery (lower being harder), so the user doesn't bother fretting - about unpinned packages when he has deeper issues, like VCS - dependencies, to deal with. Also keeps error reports in a - deterministic order. - :cvar head: A section heading for display above potentially many - exceptions of this kind - :ivar req: The InstallRequirement that triggered this error. This is - pasted on after the exception is instantiated, because it's not - typically available earlier. - - """ - - req: Optional["InstallRequirement"] = None - head = "" - order: int = -1 - - def body(self) -> str: - """Return a summary of me for display under the heading. - - This default implementation simply prints a description of the - triggering requirement. - - :param req: The InstallRequirement that provoked this error, with - its link already populated by the resolver's _populate_link(). - - """ - return f" {self._requirement_name()}" - - def __str__(self) -> str: - return f"{self.head}\n{self.body()}" - - def _requirement_name(self) -> str: - """Return a description of the requirement that triggered me. - - This default implementation returns long description of the req, with - line numbers - - """ - return str(self.req) if self.req else "unknown package" - - -class VcsHashUnsupported(HashError): - """A hash was provided for a version-control-system-based requirement, but - we don't have a method for hashing those.""" - - order = 0 - head = ( - "Can't verify hashes for these requirements because we don't " - "have a way to hash version control repositories:" - ) - - -class DirectoryUrlHashUnsupported(HashError): - """A hash was provided for a version-control-system-based requirement, but - we don't have a method for hashing those.""" - - order = 1 - head = ( - "Can't verify hashes for these file:// requirements because they " - "point to directories:" - ) - - -class HashMissing(HashError): - """A hash was needed for a requirement but is absent.""" - - order = 2 - head = ( - "Hashes are required in --require-hashes mode, but they are " - "missing from some requirements. Here is a list of those " - "requirements along with the hashes their downloaded archives " - "actually had. Add lines like these to your requirements files to " - "prevent tampering. (If you did not enable --require-hashes " - "manually, note that it turns on automatically when any package " - "has a hash.)" - ) - - def __init__(self, gotten_hash: str) -> None: - """ - :param gotten_hash: The hash of the (possibly malicious) archive we - just downloaded - """ - self.gotten_hash = gotten_hash - - def body(self) -> str: - # Dodge circular import. - from pip._internal.utils.hashes import FAVORITE_HASH - - package = None - if self.req: - # In the case of URL-based requirements, display the original URL - # seen in the requirements file rather than the package name, - # so the output can be directly copied into the requirements file. - package = ( - self.req.original_link - if self.req.is_direct - # In case someone feeds something downright stupid - # to InstallRequirement's constructor. - else getattr(self.req, "req", None) - ) - return " {} --hash={}:{}".format( - package or "unknown package", FAVORITE_HASH, self.gotten_hash - ) - - -class HashUnpinned(HashError): - """A requirement had a hash specified but was not pinned to a specific - version.""" - - order = 3 - head = ( - "In --require-hashes mode, all requirements must have their " - "versions pinned with ==. These do not:" - ) - - -class HashMismatch(HashError): - """ - Distribution file hash values don't match. - - :ivar package_name: The name of the package that triggered the hash - mismatch. Feel free to write to this after the exception is raise to - improve its error message. - - """ - - order = 4 - head = ( - "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " - "FILE. If you have updated the package versions, please update " - "the hashes. Otherwise, examine the package contents carefully; " - "someone may have tampered with them." - ) - - def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: - """ - :param allowed: A dict of algorithm names pointing to lists of allowed - hex digests - :param gots: A dict of algorithm names pointing to hashes we - actually got from the files under suspicion - """ - self.allowed = allowed - self.gots = gots - - def body(self) -> str: - return f" {self._requirement_name()}:\n{self._hash_comparison()}" - - def _hash_comparison(self) -> str: - """ - Return a comparison of actual and expected hash values. - - Example:: - - Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde - or 123451234512345123451234512345123451234512345 - Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef - - """ - - def hash_then_or(hash_name: str) -> "chain[str]": - # For now, all the decent hashes have 6-char names, so we can get - # away with hard-coding space literals. - return chain([hash_name], repeat(" or")) - - lines: List[str] = [] - for hash_name, expecteds in self.allowed.items(): - prefix = hash_then_or(hash_name) - lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) - lines.append( - f" Got {self.gots[hash_name].hexdigest()}\n" - ) - return "\n".join(lines) - - -class UnsupportedPythonVersion(InstallationError): - """Unsupported python version according to Requires-Python package - metadata.""" - - -class ConfigurationFileCouldNotBeLoaded(ConfigurationError): - """When there are errors while loading a configuration file""" - - def __init__( - self, - reason: str = "could not be loaded", - fname: Optional[str] = None, - error: Optional[configparser.Error] = None, - ) -> None: - super().__init__(error) - self.reason = reason - self.fname = fname - self.error = error - - def __str__(self) -> str: - if self.fname is not None: - message_part = f" in {self.fname}." - else: - assert self.error is not None - message_part = f".\n{self.error}\n" - return f"Configuration file {self.reason}{message_part}" - - -_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ -The Python environment under {sys.prefix} is managed externally, and may not be -manipulated by the user. Please use specific tooling from the distributor of -the Python installation to interact with this environment instead. -""" - - -class ExternallyManagedEnvironment(DiagnosticPipError): - """The current environment is externally managed. - - This is raised when the current environment is externally managed, as - defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked - and displayed when the error is bubbled up to the user. - - :param error: The error message read from ``EXTERNALLY-MANAGED``. - """ - - reference = "externally-managed-environment" - - def __init__(self, error: Optional[str]) -> None: - if error is None: - context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) - else: - context = Text(error) - super().__init__( - message="This environment is externally managed", - context=context, - note_stmt=( - "If you believe this is a mistake, please contact your " - "Python installation or OS distribution provider. " - "You can override this, at the risk of breaking your Python " - "installation or OS, by passing --break-system-packages." - ), - hint_stmt=Text("See PEP 668 for the detailed specification."), - ) - - @staticmethod - def _iter_externally_managed_error_keys() -> Iterator[str]: - # LC_MESSAGES is in POSIX, but not the C standard. The most common - # platform that does not implement this category is Windows, where - # using other categories for console message localization is equally - # unreliable, so we fall back to the locale-less vendor message. This - # can always be re-evaluated when a vendor proposes a new alternative. - try: - category = locale.LC_MESSAGES - except AttributeError: - lang: Optional[str] = None - else: - lang, _ = locale.getlocale(category) - if lang is not None: - yield f"Error-{lang}" - for sep in ("-", "_"): - before, found, _ = lang.partition(sep) - if not found: - continue - yield f"Error-{before}" - yield "Error" - - @classmethod - def from_config( - cls, - config: Union[pathlib.Path, str], - ) -> "ExternallyManagedEnvironment": - parser = configparser.ConfigParser(interpolation=None) - try: - parser.read(config, encoding="utf-8") - section = parser["externally-managed"] - for key in cls._iter_externally_managed_error_keys(): - with contextlib.suppress(KeyError): - return cls(section[key]) - except KeyError: - pass - except (OSError, UnicodeDecodeError, configparser.ParsingError): - from pip._internal.utils._log import VERBOSE - - exc_info = logger.isEnabledFor(VERBOSE) - logger.warning("Failed to read %s", config, exc_info=exc_info) - return cls(None) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py deleted file mode 100644 index 7a17b7b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -"""Index interaction code -""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9f59078..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc deleted file mode 100644 index 64a8813..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc deleted file mode 100644 index cf03d74..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc deleted file mode 100644 index 2dccb3c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/collector.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/collector.py deleted file mode 100644 index 08c8bdd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/collector.py +++ /dev/null @@ -1,507 +0,0 @@ -""" -The main purpose of this module is to expose LinkCollector.collect_sources(). -""" - -import collections -import email.message -import functools -import itertools -import json -import logging -import os -import urllib.parse -import urllib.request -from html.parser import HTMLParser -from optparse import Values -from typing import ( - TYPE_CHECKING, - Callable, - Dict, - Iterable, - List, - MutableMapping, - NamedTuple, - Optional, - Sequence, - Tuple, - Union, -) - -from pip._vendor import requests -from pip._vendor.requests import Response -from pip._vendor.requests.exceptions import RetryError, SSLError - -from pip._internal.exceptions import NetworkConnectionError -from pip._internal.models.link import Link -from pip._internal.models.search_scope import SearchScope -from pip._internal.network.session import PipSession -from pip._internal.network.utils import raise_for_status -from pip._internal.utils.filetypes import is_archive_file -from pip._internal.utils.misc import redact_auth_from_url -from pip._internal.vcs import vcs - -from .sources import CandidatesFromPage, LinkSource, build_source - -if TYPE_CHECKING: - from typing import Protocol -else: - Protocol = object - -logger = logging.getLogger(__name__) - -ResponseHeaders = MutableMapping[str, str] - - -def _match_vcs_scheme(url: str) -> Optional[str]: - """Look for VCS schemes in the URL. - - Returns the matched VCS scheme, or None if there's no match. - """ - for scheme in vcs.schemes: - if url.lower().startswith(scheme) and url[len(scheme)] in "+:": - return scheme - return None - - -class _NotAPIContent(Exception): - def __init__(self, content_type: str, request_desc: str) -> None: - super().__init__(content_type, request_desc) - self.content_type = content_type - self.request_desc = request_desc - - -def _ensure_api_header(response: Response) -> None: - """ - Check the Content-Type header to ensure the response contains a Simple - API Response. - - Raises `_NotAPIContent` if the content type is not a valid content-type. - """ - content_type = response.headers.get("Content-Type", "Unknown") - - content_type_l = content_type.lower() - if content_type_l.startswith( - ( - "text/html", - "application/vnd.pypi.simple.v1+html", - "application/vnd.pypi.simple.v1+json", - ) - ): - return - - raise _NotAPIContent(content_type, response.request.method) - - -class _NotHTTP(Exception): - pass - - -def _ensure_api_response(url: str, session: PipSession) -> None: - """ - Send a HEAD request to the URL, and ensure the response contains a simple - API Response. - - Raises `_NotHTTP` if the URL is not available for a HEAD request, or - `_NotAPIContent` if the content type is not a valid content type. - """ - scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) - if scheme not in {"http", "https"}: - raise _NotHTTP() - - resp = session.head(url, allow_redirects=True) - raise_for_status(resp) - - _ensure_api_header(resp) - - -def _get_simple_response(url: str, session: PipSession) -> Response: - """Access an Simple API response with GET, and return the response. - - This consists of three parts: - - 1. If the URL looks suspiciously like an archive, send a HEAD first to - check the Content-Type is HTML or Simple API, to avoid downloading a - large file. Raise `_NotHTTP` if the content type cannot be determined, or - `_NotAPIContent` if it is not HTML or a Simple API. - 2. Actually perform the request. Raise HTTP exceptions on network failures. - 3. Check the Content-Type header to make sure we got a Simple API response, - and raise `_NotAPIContent` otherwise. - """ - if is_archive_file(Link(url).filename): - _ensure_api_response(url, session=session) - - logger.debug("Getting page %s", redact_auth_from_url(url)) - - resp = session.get( - url, - headers={ - "Accept": ", ".join( - [ - "application/vnd.pypi.simple.v1+json", - "application/vnd.pypi.simple.v1+html; q=0.1", - "text/html; q=0.01", - ] - ), - # We don't want to blindly returned cached data for - # /simple/, because authors generally expecting that - # twine upload && pip install will function, but if - # they've done a pip install in the last ~10 minutes - # it won't. Thus by setting this to zero we will not - # blindly use any cached data, however the benefit of - # using max-age=0 instead of no-cache, is that we will - # still support conditional requests, so we will still - # minimize traffic sent in cases where the page hasn't - # changed at all, we will just always incur the round - # trip for the conditional GET now instead of only - # once per 10 minutes. - # For more information, please see pypa/pip#5670. - "Cache-Control": "max-age=0", - }, - ) - raise_for_status(resp) - - # The check for archives above only works if the url ends with - # something that looks like an archive. However that is not a - # requirement of an url. Unless we issue a HEAD request on every - # url we cannot know ahead of time for sure if something is a - # Simple API response or not. However we can check after we've - # downloaded it. - _ensure_api_header(resp) - - logger.debug( - "Fetched page %s as %s", - redact_auth_from_url(url), - resp.headers.get("Content-Type", "Unknown"), - ) - - return resp - - -def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: - """Determine if we have any encoding information in our headers.""" - if headers and "Content-Type" in headers: - m = email.message.Message() - m["content-type"] = headers["Content-Type"] - charset = m.get_param("charset") - if charset: - return str(charset) - return None - - -class CacheablePageContent: - def __init__(self, page: "IndexContent") -> None: - assert page.cache_link_parsing - self.page = page - - def __eq__(self, other: object) -> bool: - return isinstance(other, type(self)) and self.page.url == other.page.url - - def __hash__(self) -> int: - return hash(self.page.url) - - -class ParseLinks(Protocol): - def __call__(self, page: "IndexContent") -> Iterable[Link]: - ... - - -def with_cached_index_content(fn: ParseLinks) -> ParseLinks: - """ - Given a function that parses an Iterable[Link] from an IndexContent, cache the - function's result (keyed by CacheablePageContent), unless the IndexContent - `page` has `page.cache_link_parsing == False`. - """ - - @functools.lru_cache(maxsize=None) - def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: - return list(fn(cacheable_page.page)) - - @functools.wraps(fn) - def wrapper_wrapper(page: "IndexContent") -> List[Link]: - if page.cache_link_parsing: - return wrapper(CacheablePageContent(page)) - return list(fn(page)) - - return wrapper_wrapper - - -@with_cached_index_content -def parse_links(page: "IndexContent") -> Iterable[Link]: - """ - Parse a Simple API's Index Content, and yield its anchor elements as Link objects. - """ - - content_type_l = page.content_type.lower() - if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): - data = json.loads(page.content) - for file in data.get("files", []): - link = Link.from_json(file, page.url) - if link is None: - continue - yield link - return - - parser = HTMLLinkParser(page.url) - encoding = page.encoding or "utf-8" - parser.feed(page.content.decode(encoding)) - - url = page.url - base_url = parser.base_url or url - for anchor in parser.anchors: - link = Link.from_element(anchor, page_url=url, base_url=base_url) - if link is None: - continue - yield link - - -class IndexContent: - """Represents one response (or page), along with its URL""" - - def __init__( - self, - content: bytes, - content_type: str, - encoding: Optional[str], - url: str, - cache_link_parsing: bool = True, - ) -> None: - """ - :param encoding: the encoding to decode the given content. - :param url: the URL from which the HTML was downloaded. - :param cache_link_parsing: whether links parsed from this page's url - should be cached. PyPI index urls should - have this set to False, for example. - """ - self.content = content - self.content_type = content_type - self.encoding = encoding - self.url = url - self.cache_link_parsing = cache_link_parsing - - def __str__(self) -> str: - return redact_auth_from_url(self.url) - - -class HTMLLinkParser(HTMLParser): - """ - HTMLParser that keeps the first base HREF and a list of all anchor - elements' attributes. - """ - - def __init__(self, url: str) -> None: - super().__init__(convert_charrefs=True) - - self.url: str = url - self.base_url: Optional[str] = None - self.anchors: List[Dict[str, Optional[str]]] = [] - - def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: - if tag == "base" and self.base_url is None: - href = self.get_href(attrs) - if href is not None: - self.base_url = href - elif tag == "a": - self.anchors.append(dict(attrs)) - - def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: - for name, value in attrs: - if name == "href": - return value - return None - - -def _handle_get_simple_fail( - link: Link, - reason: Union[str, Exception], - meth: Optional[Callable[..., None]] = None, -) -> None: - if meth is None: - meth = logger.debug - meth("Could not fetch URL %s: %s - skipping", link, reason) - - -def _make_index_content( - response: Response, cache_link_parsing: bool = True -) -> IndexContent: - encoding = _get_encoding_from_headers(response.headers) - return IndexContent( - response.content, - response.headers["Content-Type"], - encoding=encoding, - url=response.url, - cache_link_parsing=cache_link_parsing, - ) - - -def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: - url = link.url.split("#", 1)[0] - - # Check for VCS schemes that do not support lookup as web pages. - vcs_scheme = _match_vcs_scheme(url) - if vcs_scheme: - logger.warning( - "Cannot look at %s URL %s because it does not support lookup as web pages.", - vcs_scheme, - link, - ) - return None - - # Tack index.html onto file:// URLs that point to directories - scheme, _, path, _, _, _ = urllib.parse.urlparse(url) - if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): - # add trailing slash if not present so urljoin doesn't trim - # final segment - if not url.endswith("/"): - url += "/" - # TODO: In the future, it would be nice if pip supported PEP 691 - # style responses in the file:// URLs, however there's no - # standard file extension for application/vnd.pypi.simple.v1+json - # so we'll need to come up with something on our own. - url = urllib.parse.urljoin(url, "index.html") - logger.debug(" file: URL is directory, getting %s", url) - - try: - resp = _get_simple_response(url, session=session) - except _NotHTTP: - logger.warning( - "Skipping page %s because it looks like an archive, and cannot " - "be checked by a HTTP HEAD request.", - link, - ) - except _NotAPIContent as exc: - logger.warning( - "Skipping page %s because the %s request got Content-Type: %s. " - "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " - "application/vnd.pypi.simple.v1+html, and text/html", - link, - exc.request_desc, - exc.content_type, - ) - except NetworkConnectionError as exc: - _handle_get_simple_fail(link, exc) - except RetryError as exc: - _handle_get_simple_fail(link, exc) - except SSLError as exc: - reason = "There was a problem confirming the ssl certificate: " - reason += str(exc) - _handle_get_simple_fail(link, reason, meth=logger.info) - except requests.ConnectionError as exc: - _handle_get_simple_fail(link, f"connection error: {exc}") - except requests.Timeout: - _handle_get_simple_fail(link, "timed out") - else: - return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) - return None - - -class CollectedSources(NamedTuple): - find_links: Sequence[Optional[LinkSource]] - index_urls: Sequence[Optional[LinkSource]] - - -class LinkCollector: - - """ - Responsible for collecting Link objects from all configured locations, - making network requests as needed. - - The class's main method is its collect_sources() method. - """ - - def __init__( - self, - session: PipSession, - search_scope: SearchScope, - ) -> None: - self.search_scope = search_scope - self.session = session - - @classmethod - def create( - cls, - session: PipSession, - options: Values, - suppress_no_index: bool = False, - ) -> "LinkCollector": - """ - :param session: The Session to use to make requests. - :param suppress_no_index: Whether to ignore the --no-index option - when constructing the SearchScope object. - """ - index_urls = [options.index_url] + options.extra_index_urls - if options.no_index and not suppress_no_index: - logger.debug( - "Ignoring indexes: %s", - ",".join(redact_auth_from_url(url) for url in index_urls), - ) - index_urls = [] - - # Make sure find_links is a list before passing to create(). - find_links = options.find_links or [] - - search_scope = SearchScope.create( - find_links=find_links, - index_urls=index_urls, - no_index=options.no_index, - ) - link_collector = LinkCollector( - session=session, - search_scope=search_scope, - ) - return link_collector - - @property - def find_links(self) -> List[str]: - return self.search_scope.find_links - - def fetch_response(self, location: Link) -> Optional[IndexContent]: - """ - Fetch an HTML page containing package links. - """ - return _get_index_content(location, session=self.session) - - def collect_sources( - self, - project_name: str, - candidates_from_page: CandidatesFromPage, - ) -> CollectedSources: - # The OrderedDict calls deduplicate sources by URL. - index_url_sources = collections.OrderedDict( - build_source( - loc, - candidates_from_page=candidates_from_page, - page_validator=self.session.is_secure_origin, - expand_dir=False, - cache_link_parsing=False, - project_name=project_name, - ) - for loc in self.search_scope.get_index_urls_locations(project_name) - ).values() - find_links_sources = collections.OrderedDict( - build_source( - loc, - candidates_from_page=candidates_from_page, - page_validator=self.session.is_secure_origin, - expand_dir=True, - cache_link_parsing=True, - project_name=project_name, - ) - for loc in self.find_links - ).values() - - if logger.isEnabledFor(logging.DEBUG): - lines = [ - f"* {s.link}" - for s in itertools.chain(find_links_sources, index_url_sources) - if s is not None and s.link is not None - ] - lines = [ - f"{len(lines)} location(s) to search " - f"for versions of {project_name}:" - ] + lines - logger.debug("\n".join(lines)) - - return CollectedSources( - find_links=list(find_links_sources), - index_urls=list(index_url_sources), - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/package_finder.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/package_finder.py deleted file mode 100644 index ec9ebc3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/package_finder.py +++ /dev/null @@ -1,1027 +0,0 @@ -"""Routines related to PyPI, indexes""" - -import enum -import functools -import itertools -import logging -import re -from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union - -from pip._vendor.packaging import specifiers -from pip._vendor.packaging.tags import Tag -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.packaging.version import _BaseVersion -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.exceptions import ( - BestVersionAlreadyInstalled, - DistributionNotFound, - InvalidWheelFilename, - UnsupportedWheel, -) -from pip._internal.index.collector import LinkCollector, parse_links -from pip._internal.models.candidate import InstallationCandidate -from pip._internal.models.format_control import FormatControl -from pip._internal.models.link import Link -from pip._internal.models.search_scope import SearchScope -from pip._internal.models.selection_prefs import SelectionPreferences -from pip._internal.models.target_python import TargetPython -from pip._internal.models.wheel import Wheel -from pip._internal.req import InstallRequirement -from pip._internal.utils._log import getLogger -from pip._internal.utils.filetypes import WHEEL_EXTENSION -from pip._internal.utils.hashes import Hashes -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import build_netloc -from pip._internal.utils.packaging import check_requires_python -from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS - -if TYPE_CHECKING: - from pip._vendor.typing_extensions import TypeGuard - -__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] - - -logger = getLogger(__name__) - -BuildTag = Union[Tuple[()], Tuple[int, str]] -CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] - - -def _check_link_requires_python( - link: Link, - version_info: Tuple[int, int, int], - ignore_requires_python: bool = False, -) -> bool: - """ - Return whether the given Python version is compatible with a link's - "Requires-Python" value. - - :param version_info: A 3-tuple of ints representing the Python - major-minor-micro version to check. - :param ignore_requires_python: Whether to ignore the "Requires-Python" - value if the given Python version isn't compatible. - """ - try: - is_compatible = check_requires_python( - link.requires_python, - version_info=version_info, - ) - except specifiers.InvalidSpecifier: - logger.debug( - "Ignoring invalid Requires-Python (%r) for link: %s", - link.requires_python, - link, - ) - else: - if not is_compatible: - version = ".".join(map(str, version_info)) - if not ignore_requires_python: - logger.verbose( - "Link requires a different Python (%s not in: %r): %s", - version, - link.requires_python, - link, - ) - return False - - logger.debug( - "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", - version, - link.requires_python, - link, - ) - - return True - - -class LinkType(enum.Enum): - candidate = enum.auto() - different_project = enum.auto() - yanked = enum.auto() - format_unsupported = enum.auto() - format_invalid = enum.auto() - platform_mismatch = enum.auto() - requires_python_mismatch = enum.auto() - - -class LinkEvaluator: - - """ - Responsible for evaluating links for a particular project. - """ - - _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") - - # Don't include an allow_yanked default value to make sure each call - # site considers whether yanked releases are allowed. This also causes - # that decision to be made explicit in the calling code, which helps - # people when reading the code. - def __init__( - self, - project_name: str, - canonical_name: str, - formats: FrozenSet[str], - target_python: TargetPython, - allow_yanked: bool, - ignore_requires_python: Optional[bool] = None, - ) -> None: - """ - :param project_name: The user supplied package name. - :param canonical_name: The canonical package name. - :param formats: The formats allowed for this package. Should be a set - with 'binary' or 'source' or both in it. - :param target_python: The target Python interpreter to use when - evaluating link compatibility. This is used, for example, to - check wheel compatibility, as well as when checking the Python - version, e.g. the Python version embedded in a link filename - (or egg fragment) and against an HTML link's optional PEP 503 - "data-requires-python" attribute. - :param allow_yanked: Whether files marked as yanked (in the sense - of PEP 592) are permitted to be candidates for install. - :param ignore_requires_python: Whether to ignore incompatible - PEP 503 "data-requires-python" values in HTML links. Defaults - to False. - """ - if ignore_requires_python is None: - ignore_requires_python = False - - self._allow_yanked = allow_yanked - self._canonical_name = canonical_name - self._ignore_requires_python = ignore_requires_python - self._formats = formats - self._target_python = target_python - - self.project_name = project_name - - def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: - """ - Determine whether a link is a candidate for installation. - - :return: A tuple (result, detail), where *result* is an enum - representing whether the evaluation found a candidate, or the reason - why one is not found. If a candidate is found, *detail* will be the - candidate's version string; if one is not found, it contains the - reason the link fails to qualify. - """ - version = None - if link.is_yanked and not self._allow_yanked: - reason = link.yanked_reason or "" - return (LinkType.yanked, f"yanked for reason: {reason}") - - if link.egg_fragment: - egg_info = link.egg_fragment - ext = link.ext - else: - egg_info, ext = link.splitext() - if not ext: - return (LinkType.format_unsupported, "not a file") - if ext not in SUPPORTED_EXTENSIONS: - return ( - LinkType.format_unsupported, - f"unsupported archive format: {ext}", - ) - if "binary" not in self._formats and ext == WHEEL_EXTENSION: - reason = f"No binaries permitted for {self.project_name}" - return (LinkType.format_unsupported, reason) - if "macosx10" in link.path and ext == ".zip": - return (LinkType.format_unsupported, "macosx10 one") - if ext == WHEEL_EXTENSION: - try: - wheel = Wheel(link.filename) - except InvalidWheelFilename: - return ( - LinkType.format_invalid, - "invalid wheel filename", - ) - if canonicalize_name(wheel.name) != self._canonical_name: - reason = f"wrong project name (not {self.project_name})" - return (LinkType.different_project, reason) - - supported_tags = self._target_python.get_unsorted_tags() - if not wheel.supported(supported_tags): - # Include the wheel's tags in the reason string to - # simplify troubleshooting compatibility issues. - file_tags = ", ".join(wheel.get_formatted_file_tags()) - reason = ( - f"none of the wheel's tags ({file_tags}) are compatible " - f"(run pip debug --verbose to show compatible tags)" - ) - return (LinkType.platform_mismatch, reason) - - version = wheel.version - - # This should be up by the self.ok_binary check, but see issue 2700. - if "source" not in self._formats and ext != WHEEL_EXTENSION: - reason = f"No sources permitted for {self.project_name}" - return (LinkType.format_unsupported, reason) - - if not version: - version = _extract_version_from_fragment( - egg_info, - self._canonical_name, - ) - if not version: - reason = f"Missing project version for {self.project_name}" - return (LinkType.format_invalid, reason) - - match = self._py_version_re.search(version) - if match: - version = version[: match.start()] - py_version = match.group(1) - if py_version != self._target_python.py_version: - return ( - LinkType.platform_mismatch, - "Python version is incorrect", - ) - - supports_python = _check_link_requires_python( - link, - version_info=self._target_python.py_version_info, - ignore_requires_python=self._ignore_requires_python, - ) - if not supports_python: - reason = f"{version} Requires-Python {link.requires_python}" - return (LinkType.requires_python_mismatch, reason) - - logger.debug("Found link %s, version: %s", link, version) - - return (LinkType.candidate, version) - - -def filter_unallowed_hashes( - candidates: List[InstallationCandidate], - hashes: Optional[Hashes], - project_name: str, -) -> List[InstallationCandidate]: - """ - Filter out candidates whose hashes aren't allowed, and return a new - list of candidates. - - If at least one candidate has an allowed hash, then all candidates with - either an allowed hash or no hash specified are returned. Otherwise, - the given candidates are returned. - - Including the candidates with no hash specified when there is a match - allows a warning to be logged if there is a more preferred candidate - with no hash specified. Returning all candidates in the case of no - matches lets pip report the hash of the candidate that would otherwise - have been installed (e.g. permitting the user to more easily update - their requirements file with the desired hash). - """ - if not hashes: - logger.debug( - "Given no hashes to check %s links for project %r: " - "discarding no candidates", - len(candidates), - project_name, - ) - # Make sure we're not returning back the given value. - return list(candidates) - - matches_or_no_digest = [] - # Collect the non-matches for logging purposes. - non_matches = [] - match_count = 0 - for candidate in candidates: - link = candidate.link - if not link.has_hash: - pass - elif link.is_hash_allowed(hashes=hashes): - match_count += 1 - else: - non_matches.append(candidate) - continue - - matches_or_no_digest.append(candidate) - - if match_count: - filtered = matches_or_no_digest - else: - # Make sure we're not returning back the given value. - filtered = list(candidates) - - if len(filtered) == len(candidates): - discard_message = "discarding no candidates" - else: - discard_message = "discarding {} non-matches:\n {}".format( - len(non_matches), - "\n ".join(str(candidate.link) for candidate in non_matches), - ) - - logger.debug( - "Checked %s links for project %r against %s hashes " - "(%s matches, %s no digest): %s", - len(candidates), - project_name, - hashes.digest_count, - match_count, - len(matches_or_no_digest) - match_count, - discard_message, - ) - - return filtered - - -class CandidatePreferences: - - """ - Encapsulates some of the preferences for filtering and sorting - InstallationCandidate objects. - """ - - def __init__( - self, - prefer_binary: bool = False, - allow_all_prereleases: bool = False, - ) -> None: - """ - :param allow_all_prereleases: Whether to allow all pre-releases. - """ - self.allow_all_prereleases = allow_all_prereleases - self.prefer_binary = prefer_binary - - -class BestCandidateResult: - """A collection of candidates, returned by `PackageFinder.find_best_candidate`. - - This class is only intended to be instantiated by CandidateEvaluator's - `compute_best_candidate()` method. - """ - - def __init__( - self, - candidates: List[InstallationCandidate], - applicable_candidates: List[InstallationCandidate], - best_candidate: Optional[InstallationCandidate], - ) -> None: - """ - :param candidates: A sequence of all available candidates found. - :param applicable_candidates: The applicable candidates. - :param best_candidate: The most preferred candidate found, or None - if no applicable candidates were found. - """ - assert set(applicable_candidates) <= set(candidates) - - if best_candidate is None: - assert not applicable_candidates - else: - assert best_candidate in applicable_candidates - - self._applicable_candidates = applicable_candidates - self._candidates = candidates - - self.best_candidate = best_candidate - - def iter_all(self) -> Iterable[InstallationCandidate]: - """Iterate through all candidates.""" - return iter(self._candidates) - - def iter_applicable(self) -> Iterable[InstallationCandidate]: - """Iterate through the applicable candidates.""" - return iter(self._applicable_candidates) - - -class CandidateEvaluator: - - """ - Responsible for filtering and sorting candidates for installation based - on what tags are valid. - """ - - @classmethod - def create( - cls, - project_name: str, - target_python: Optional[TargetPython] = None, - prefer_binary: bool = False, - allow_all_prereleases: bool = False, - specifier: Optional[specifiers.BaseSpecifier] = None, - hashes: Optional[Hashes] = None, - ) -> "CandidateEvaluator": - """Create a CandidateEvaluator object. - - :param target_python: The target Python interpreter to use when - checking compatibility. If None (the default), a TargetPython - object will be constructed from the running Python. - :param specifier: An optional object implementing `filter` - (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable - versions. - :param hashes: An optional collection of allowed hashes. - """ - if target_python is None: - target_python = TargetPython() - if specifier is None: - specifier = specifiers.SpecifierSet() - - supported_tags = target_python.get_sorted_tags() - - return cls( - project_name=project_name, - supported_tags=supported_tags, - specifier=specifier, - prefer_binary=prefer_binary, - allow_all_prereleases=allow_all_prereleases, - hashes=hashes, - ) - - def __init__( - self, - project_name: str, - supported_tags: List[Tag], - specifier: specifiers.BaseSpecifier, - prefer_binary: bool = False, - allow_all_prereleases: bool = False, - hashes: Optional[Hashes] = None, - ) -> None: - """ - :param supported_tags: The PEP 425 tags supported by the target - Python in order of preference (most preferred first). - """ - self._allow_all_prereleases = allow_all_prereleases - self._hashes = hashes - self._prefer_binary = prefer_binary - self._project_name = project_name - self._specifier = specifier - self._supported_tags = supported_tags - # Since the index of the tag in the _supported_tags list is used - # as a priority, precompute a map from tag to index/priority to be - # used in wheel.find_most_preferred_tag. - self._wheel_tag_preferences = { - tag: idx for idx, tag in enumerate(supported_tags) - } - - def get_applicable_candidates( - self, - candidates: List[InstallationCandidate], - ) -> List[InstallationCandidate]: - """ - Return the applicable candidates from a list of candidates. - """ - # Using None infers from the specifier instead. - allow_prereleases = self._allow_all_prereleases or None - specifier = self._specifier - versions = { - str(v) - for v in specifier.filter( - # We turn the version object into a str here because otherwise - # when we're debundled but setuptools isn't, Python will see - # packaging.version.Version and - # pkg_resources._vendor.packaging.version.Version as different - # types. This way we'll use a str as a common data interchange - # format. If we stop using the pkg_resources provided specifier - # and start using our own, we can drop the cast to str(). - (str(c.version) for c in candidates), - prereleases=allow_prereleases, - ) - } - - # Again, converting version to str to deal with debundling. - applicable_candidates = [c for c in candidates if str(c.version) in versions] - - filtered_applicable_candidates = filter_unallowed_hashes( - candidates=applicable_candidates, - hashes=self._hashes, - project_name=self._project_name, - ) - - return sorted(filtered_applicable_candidates, key=self._sort_key) - - def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: - """ - Function to pass as the `key` argument to a call to sorted() to sort - InstallationCandidates by preference. - - Returns a tuple such that tuples sorting as greater using Python's - default comparison operator are more preferred. - - The preference is as follows: - - First and foremost, candidates with allowed (matching) hashes are - always preferred over candidates without matching hashes. This is - because e.g. if the only candidate with an allowed hash is yanked, - we still want to use that candidate. - - Second, excepting hash considerations, candidates that have been - yanked (in the sense of PEP 592) are always less preferred than - candidates that haven't been yanked. Then: - - If not finding wheels, they are sorted by version only. - If finding wheels, then the sort order is by version, then: - 1. existing installs - 2. wheels ordered via Wheel.support_index_min(self._supported_tags) - 3. source archives - If prefer_binary was set, then all wheels are sorted above sources. - - Note: it was considered to embed this logic into the Link - comparison operators, but then different sdist links - with the same version, would have to be considered equal - """ - valid_tags = self._supported_tags - support_num = len(valid_tags) - build_tag: BuildTag = () - binary_preference = 0 - link = candidate.link - if link.is_wheel: - # can raise InvalidWheelFilename - wheel = Wheel(link.filename) - try: - pri = -( - wheel.find_most_preferred_tag( - valid_tags, self._wheel_tag_preferences - ) - ) - except ValueError: - raise UnsupportedWheel( - f"{wheel.filename} is not a supported wheel for this platform. It " - "can't be sorted." - ) - if self._prefer_binary: - binary_preference = 1 - if wheel.build_tag is not None: - match = re.match(r"^(\d+)(.*)$", wheel.build_tag) - assert match is not None, "guaranteed by filename validation" - build_tag_groups = match.groups() - build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) - else: # sdist - pri = -(support_num) - has_allowed_hash = int(link.is_hash_allowed(self._hashes)) - yank_value = -1 * int(link.is_yanked) # -1 for yanked. - return ( - has_allowed_hash, - yank_value, - binary_preference, - candidate.version, - pri, - build_tag, - ) - - def sort_best_candidate( - self, - candidates: List[InstallationCandidate], - ) -> Optional[InstallationCandidate]: - """ - Return the best candidate per the instance's sort order, or None if - no candidate is acceptable. - """ - if not candidates: - return None - best_candidate = max(candidates, key=self._sort_key) - return best_candidate - - def compute_best_candidate( - self, - candidates: List[InstallationCandidate], - ) -> BestCandidateResult: - """ - Compute and return a `BestCandidateResult` instance. - """ - applicable_candidates = self.get_applicable_candidates(candidates) - - best_candidate = self.sort_best_candidate(applicable_candidates) - - return BestCandidateResult( - candidates, - applicable_candidates=applicable_candidates, - best_candidate=best_candidate, - ) - - -class PackageFinder: - """This finds packages. - - This is meant to match easy_install's technique for looking for - packages, by reading pages and looking for appropriate links. - """ - - def __init__( - self, - link_collector: LinkCollector, - target_python: TargetPython, - allow_yanked: bool, - format_control: Optional[FormatControl] = None, - candidate_prefs: Optional[CandidatePreferences] = None, - ignore_requires_python: Optional[bool] = None, - ) -> None: - """ - This constructor is primarily meant to be used by the create() class - method and from tests. - - :param format_control: A FormatControl object, used to control - the selection of source packages / binary packages when consulting - the index and links. - :param candidate_prefs: Options to use when creating a - CandidateEvaluator object. - """ - if candidate_prefs is None: - candidate_prefs = CandidatePreferences() - - format_control = format_control or FormatControl(set(), set()) - - self._allow_yanked = allow_yanked - self._candidate_prefs = candidate_prefs - self._ignore_requires_python = ignore_requires_python - self._link_collector = link_collector - self._target_python = target_python - - self.format_control = format_control - - # These are boring links that have already been logged somehow. - self._logged_links: Set[Tuple[Link, LinkType, str]] = set() - - # Don't include an allow_yanked default value to make sure each call - # site considers whether yanked releases are allowed. This also causes - # that decision to be made explicit in the calling code, which helps - # people when reading the code. - @classmethod - def create( - cls, - link_collector: LinkCollector, - selection_prefs: SelectionPreferences, - target_python: Optional[TargetPython] = None, - ) -> "PackageFinder": - """Create a PackageFinder. - - :param selection_prefs: The candidate selection preferences, as a - SelectionPreferences object. - :param target_python: The target Python interpreter to use when - checking compatibility. If None (the default), a TargetPython - object will be constructed from the running Python. - """ - if target_python is None: - target_python = TargetPython() - - candidate_prefs = CandidatePreferences( - prefer_binary=selection_prefs.prefer_binary, - allow_all_prereleases=selection_prefs.allow_all_prereleases, - ) - - return cls( - candidate_prefs=candidate_prefs, - link_collector=link_collector, - target_python=target_python, - allow_yanked=selection_prefs.allow_yanked, - format_control=selection_prefs.format_control, - ignore_requires_python=selection_prefs.ignore_requires_python, - ) - - @property - def target_python(self) -> TargetPython: - return self._target_python - - @property - def search_scope(self) -> SearchScope: - return self._link_collector.search_scope - - @search_scope.setter - def search_scope(self, search_scope: SearchScope) -> None: - self._link_collector.search_scope = search_scope - - @property - def find_links(self) -> List[str]: - return self._link_collector.find_links - - @property - def index_urls(self) -> List[str]: - return self.search_scope.index_urls - - @property - def trusted_hosts(self) -> Iterable[str]: - for host_port in self._link_collector.session.pip_trusted_origins: - yield build_netloc(*host_port) - - @property - def allow_all_prereleases(self) -> bool: - return self._candidate_prefs.allow_all_prereleases - - def set_allow_all_prereleases(self) -> None: - self._candidate_prefs.allow_all_prereleases = True - - @property - def prefer_binary(self) -> bool: - return self._candidate_prefs.prefer_binary - - def set_prefer_binary(self) -> None: - self._candidate_prefs.prefer_binary = True - - def requires_python_skipped_reasons(self) -> List[str]: - reasons = { - detail - for _, result, detail in self._logged_links - if result == LinkType.requires_python_mismatch - } - return sorted(reasons) - - def make_link_evaluator(self, project_name: str) -> LinkEvaluator: - canonical_name = canonicalize_name(project_name) - formats = self.format_control.get_allowed_formats(canonical_name) - - return LinkEvaluator( - project_name=project_name, - canonical_name=canonical_name, - formats=formats, - target_python=self._target_python, - allow_yanked=self._allow_yanked, - ignore_requires_python=self._ignore_requires_python, - ) - - def _sort_links(self, links: Iterable[Link]) -> List[Link]: - """ - Returns elements of links in order, non-egg links first, egg links - second, while eliminating duplicates - """ - eggs, no_eggs = [], [] - seen: Set[Link] = set() - for link in links: - if link not in seen: - seen.add(link) - if link.egg_fragment: - eggs.append(link) - else: - no_eggs.append(link) - return no_eggs + eggs - - def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: - entry = (link, result, detail) - if entry not in self._logged_links: - # Put the link at the end so the reason is more visible and because - # the link string is usually very long. - logger.debug("Skipping link: %s: %s", detail, link) - self._logged_links.add(entry) - - def get_install_candidate( - self, link_evaluator: LinkEvaluator, link: Link - ) -> Optional[InstallationCandidate]: - """ - If the link is a candidate for install, convert it to an - InstallationCandidate and return it. Otherwise, return None. - """ - result, detail = link_evaluator.evaluate_link(link) - if result != LinkType.candidate: - self._log_skipped_link(link, result, detail) - return None - - return InstallationCandidate( - name=link_evaluator.project_name, - link=link, - version=detail, - ) - - def evaluate_links( - self, link_evaluator: LinkEvaluator, links: Iterable[Link] - ) -> List[InstallationCandidate]: - """ - Convert links that are candidates to InstallationCandidate objects. - """ - candidates = [] - for link in self._sort_links(links): - candidate = self.get_install_candidate(link_evaluator, link) - if candidate is not None: - candidates.append(candidate) - - return candidates - - def process_project_url( - self, project_url: Link, link_evaluator: LinkEvaluator - ) -> List[InstallationCandidate]: - logger.debug( - "Fetching project page and analyzing links: %s", - project_url, - ) - index_response = self._link_collector.fetch_response(project_url) - if index_response is None: - return [] - - page_links = list(parse_links(index_response)) - - with indent_log(): - package_links = self.evaluate_links( - link_evaluator, - links=page_links, - ) - - return package_links - - @functools.lru_cache(maxsize=None) - def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: - """Find all available InstallationCandidate for project_name - - This checks index_urls and find_links. - All versions found are returned as an InstallationCandidate list. - - See LinkEvaluator.evaluate_link() for details on which files - are accepted. - """ - link_evaluator = self.make_link_evaluator(project_name) - - collected_sources = self._link_collector.collect_sources( - project_name=project_name, - candidates_from_page=functools.partial( - self.process_project_url, - link_evaluator=link_evaluator, - ), - ) - - page_candidates_it = itertools.chain.from_iterable( - source.page_candidates() - for sources in collected_sources - for source in sources - if source is not None - ) - page_candidates = list(page_candidates_it) - - file_links_it = itertools.chain.from_iterable( - source.file_links() - for sources in collected_sources - for source in sources - if source is not None - ) - file_candidates = self.evaluate_links( - link_evaluator, - sorted(file_links_it, reverse=True), - ) - - if logger.isEnabledFor(logging.DEBUG) and file_candidates: - paths = [] - for candidate in file_candidates: - assert candidate.link.url # we need to have a URL - try: - paths.append(candidate.link.file_path) - except Exception: - paths.append(candidate.link.url) # it's not a local file - - logger.debug("Local files found: %s", ", ".join(paths)) - - # This is an intentional priority ordering - return file_candidates + page_candidates - - def make_candidate_evaluator( - self, - project_name: str, - specifier: Optional[specifiers.BaseSpecifier] = None, - hashes: Optional[Hashes] = None, - ) -> CandidateEvaluator: - """Create a CandidateEvaluator object to use.""" - candidate_prefs = self._candidate_prefs - return CandidateEvaluator.create( - project_name=project_name, - target_python=self._target_python, - prefer_binary=candidate_prefs.prefer_binary, - allow_all_prereleases=candidate_prefs.allow_all_prereleases, - specifier=specifier, - hashes=hashes, - ) - - @functools.lru_cache(maxsize=None) - def find_best_candidate( - self, - project_name: str, - specifier: Optional[specifiers.BaseSpecifier] = None, - hashes: Optional[Hashes] = None, - ) -> BestCandidateResult: - """Find matches for the given project and specifier. - - :param specifier: An optional object implementing `filter` - (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable - versions. - - :return: A `BestCandidateResult` instance. - """ - candidates = self.find_all_candidates(project_name) - candidate_evaluator = self.make_candidate_evaluator( - project_name=project_name, - specifier=specifier, - hashes=hashes, - ) - return candidate_evaluator.compute_best_candidate(candidates) - - def find_requirement( - self, req: InstallRequirement, upgrade: bool - ) -> Optional[InstallationCandidate]: - """Try to find a Link matching req - - Expects req, an InstallRequirement and upgrade, a boolean - Returns a InstallationCandidate if found, - Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise - """ - hashes = req.hashes(trust_internet=False) - best_candidate_result = self.find_best_candidate( - req.name, - specifier=req.specifier, - hashes=hashes, - ) - best_candidate = best_candidate_result.best_candidate - - installed_version: Optional[_BaseVersion] = None - if req.satisfied_by is not None: - installed_version = req.satisfied_by.version - - def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: - # This repeated parse_version and str() conversion is needed to - # handle different vendoring sources from pip and pkg_resources. - # If we stop using the pkg_resources provided specifier and start - # using our own, we can drop the cast to str(). - return ( - ", ".join( - sorted( - {str(c.version) for c in cand_iter}, - key=parse_version, - ) - ) - or "none" - ) - - if installed_version is None and best_candidate is None: - logger.critical( - "Could not find a version that satisfies the requirement %s " - "(from versions: %s)", - req, - _format_versions(best_candidate_result.iter_all()), - ) - - raise DistributionNotFound(f"No matching distribution found for {req}") - - def _should_install_candidate( - candidate: Optional[InstallationCandidate], - ) -> "TypeGuard[InstallationCandidate]": - if installed_version is None: - return True - if best_candidate is None: - return False - return best_candidate.version > installed_version - - if not upgrade and installed_version is not None: - if _should_install_candidate(best_candidate): - logger.debug( - "Existing installed version (%s) satisfies requirement " - "(most up-to-date version is %s)", - installed_version, - best_candidate.version, - ) - else: - logger.debug( - "Existing installed version (%s) is most up-to-date and " - "satisfies requirement", - installed_version, - ) - return None - - if _should_install_candidate(best_candidate): - logger.debug( - "Using version %s (newest of versions: %s)", - best_candidate.version, - _format_versions(best_candidate_result.iter_applicable()), - ) - return best_candidate - - # We have an existing version, and its the best version - logger.debug( - "Installed version (%s) is most up-to-date (past versions: %s)", - installed_version, - _format_versions(best_candidate_result.iter_applicable()), - ) - raise BestVersionAlreadyInstalled - - -def _find_name_version_sep(fragment: str, canonical_name: str) -> int: - """Find the separator's index based on the package's canonical name. - - :param fragment: A + filename "fragment" (stem) or - egg fragment. - :param canonical_name: The package's canonical name. - - This function is needed since the canonicalized name does not necessarily - have the same length as the egg info's name part. An example:: - - >>> fragment = 'foo__bar-1.0' - >>> canonical_name = 'foo-bar' - >>> _find_name_version_sep(fragment, canonical_name) - 8 - """ - # Project name and version must be separated by one single dash. Find all - # occurrences of dashes; if the string in front of it matches the canonical - # name, this is the one separating the name and version parts. - for i, c in enumerate(fragment): - if c != "-": - continue - if canonicalize_name(fragment[:i]) == canonical_name: - return i - raise ValueError(f"{fragment} does not match {canonical_name}") - - -def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: - """Parse the version string from a + filename - "fragment" (stem) or egg fragment. - - :param fragment: The string to parse. E.g. foo-2.1 - :param canonical_name: The canonicalized name of the package this - belongs to. - """ - try: - version_start = _find_name_version_sep(fragment, canonical_name) + 1 - except ValueError: - return None - version = fragment[version_start:] - if not version: - return None - return version diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/sources.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/sources.py deleted file mode 100644 index f4626d7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/index/sources.py +++ /dev/null @@ -1,285 +0,0 @@ -import logging -import mimetypes -import os -from collections import defaultdict -from typing import Callable, Dict, Iterable, List, Optional, Tuple - -from pip._vendor.packaging.utils import ( - InvalidSdistFilename, - InvalidVersion, - InvalidWheelFilename, - canonicalize_name, - parse_sdist_filename, - parse_wheel_filename, -) - -from pip._internal.models.candidate import InstallationCandidate -from pip._internal.models.link import Link -from pip._internal.utils.urls import path_to_url, url_to_path -from pip._internal.vcs import is_url - -logger = logging.getLogger(__name__) - -FoundCandidates = Iterable[InstallationCandidate] -FoundLinks = Iterable[Link] -CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] -PageValidator = Callable[[Link], bool] - - -class LinkSource: - @property - def link(self) -> Optional[Link]: - """Returns the underlying link, if there's one.""" - raise NotImplementedError() - - def page_candidates(self) -> FoundCandidates: - """Candidates found by parsing an archive listing HTML file.""" - raise NotImplementedError() - - def file_links(self) -> FoundLinks: - """Links found by specifying archives directly.""" - raise NotImplementedError() - - -def _is_html_file(file_url: str) -> bool: - return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" - - -class _FlatDirectoryToUrls: - """Scans directory and caches results""" - - def __init__(self, path: str) -> None: - self._path = path - self._page_candidates: List[str] = [] - self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) - self._scanned_directory = False - - def _scan_directory(self) -> None: - """Scans directory once and populates both page_candidates - and project_name_to_urls at the same time - """ - for entry in os.scandir(self._path): - url = path_to_url(entry.path) - if _is_html_file(url): - self._page_candidates.append(url) - continue - - # File must have a valid wheel or sdist name, - # otherwise not worth considering as a package - try: - project_filename = parse_wheel_filename(entry.name)[0] - except (InvalidWheelFilename, InvalidVersion): - try: - project_filename = parse_sdist_filename(entry.name)[0] - except (InvalidSdistFilename, InvalidVersion): - continue - - self._project_name_to_urls[project_filename].append(url) - self._scanned_directory = True - - @property - def page_candidates(self) -> List[str]: - if not self._scanned_directory: - self._scan_directory() - - return self._page_candidates - - @property - def project_name_to_urls(self) -> Dict[str, List[str]]: - if not self._scanned_directory: - self._scan_directory() - - return self._project_name_to_urls - - -class _FlatDirectorySource(LinkSource): - """Link source specified by ``--find-links=``. - - This looks the content of the directory, and returns: - - * ``page_candidates``: Links listed on each HTML file in the directory. - * ``file_candidates``: Archives in the directory. - """ - - _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} - - def __init__( - self, - candidates_from_page: CandidatesFromPage, - path: str, - project_name: str, - ) -> None: - self._candidates_from_page = candidates_from_page - self._project_name = canonicalize_name(project_name) - - # Get existing instance of _FlatDirectoryToUrls if it exists - if path in self._paths_to_urls: - self._path_to_urls = self._paths_to_urls[path] - else: - self._path_to_urls = _FlatDirectoryToUrls(path=path) - self._paths_to_urls[path] = self._path_to_urls - - @property - def link(self) -> Optional[Link]: - return None - - def page_candidates(self) -> FoundCandidates: - for url in self._path_to_urls.page_candidates: - yield from self._candidates_from_page(Link(url)) - - def file_links(self) -> FoundLinks: - for url in self._path_to_urls.project_name_to_urls[self._project_name]: - yield Link(url) - - -class _LocalFileSource(LinkSource): - """``--find-links=`` or ``--[extra-]index-url=``. - - If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to - the option, it is converted to a URL first. This returns: - - * ``page_candidates``: Links listed on an HTML file. - * ``file_candidates``: The non-HTML file. - """ - - def __init__( - self, - candidates_from_page: CandidatesFromPage, - link: Link, - ) -> None: - self._candidates_from_page = candidates_from_page - self._link = link - - @property - def link(self) -> Optional[Link]: - return self._link - - def page_candidates(self) -> FoundCandidates: - if not _is_html_file(self._link.url): - return - yield from self._candidates_from_page(self._link) - - def file_links(self) -> FoundLinks: - if _is_html_file(self._link.url): - return - yield self._link - - -class _RemoteFileSource(LinkSource): - """``--find-links=`` or ``--[extra-]index-url=``. - - This returns: - - * ``page_candidates``: Links listed on an HTML file. - * ``file_candidates``: The non-HTML file. - """ - - def __init__( - self, - candidates_from_page: CandidatesFromPage, - page_validator: PageValidator, - link: Link, - ) -> None: - self._candidates_from_page = candidates_from_page - self._page_validator = page_validator - self._link = link - - @property - def link(self) -> Optional[Link]: - return self._link - - def page_candidates(self) -> FoundCandidates: - if not self._page_validator(self._link): - return - yield from self._candidates_from_page(self._link) - - def file_links(self) -> FoundLinks: - yield self._link - - -class _IndexDirectorySource(LinkSource): - """``--[extra-]index-url=``. - - This is treated like a remote URL; ``candidates_from_page`` contains logic - for this by appending ``index.html`` to the link. - """ - - def __init__( - self, - candidates_from_page: CandidatesFromPage, - link: Link, - ) -> None: - self._candidates_from_page = candidates_from_page - self._link = link - - @property - def link(self) -> Optional[Link]: - return self._link - - def page_candidates(self) -> FoundCandidates: - yield from self._candidates_from_page(self._link) - - def file_links(self) -> FoundLinks: - return () - - -def build_source( - location: str, - *, - candidates_from_page: CandidatesFromPage, - page_validator: PageValidator, - expand_dir: bool, - cache_link_parsing: bool, - project_name: str, -) -> Tuple[Optional[str], Optional[LinkSource]]: - path: Optional[str] = None - url: Optional[str] = None - if os.path.exists(location): # Is a local path. - url = path_to_url(location) - path = location - elif location.startswith("file:"): # A file: URL. - url = location - path = url_to_path(location) - elif is_url(location): - url = location - - if url is None: - msg = ( - "Location '%s' is ignored: " - "it is either a non-existing path or lacks a specific scheme." - ) - logger.warning(msg, location) - return (None, None) - - if path is None: - source: LinkSource = _RemoteFileSource( - candidates_from_page=candidates_from_page, - page_validator=page_validator, - link=Link(url, cache_link_parsing=cache_link_parsing), - ) - return (url, source) - - if os.path.isdir(path): - if expand_dir: - source = _FlatDirectorySource( - candidates_from_page=candidates_from_page, - path=path, - project_name=project_name, - ) - else: - source = _IndexDirectorySource( - candidates_from_page=candidates_from_page, - link=Link(url, cache_link_parsing=cache_link_parsing), - ) - return (url, source) - elif os.path.isfile(path): - source = _LocalFileSource( - candidates_from_page=candidates_from_page, - link=Link(url, cache_link_parsing=cache_link_parsing), - ) - return (url, source) - logger.warning( - "Location '%s' is ignored: it is neither a file nor a directory.", - location, - ) - return (url, None) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py deleted file mode 100644 index d54bc63..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py +++ /dev/null @@ -1,467 +0,0 @@ -import functools -import logging -import os -import pathlib -import sys -import sysconfig -from typing import Any, Dict, Generator, Optional, Tuple - -from pip._internal.models.scheme import SCHEME_KEYS, Scheme -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.deprecation import deprecated -from pip._internal.utils.virtualenv import running_under_virtualenv - -from . import _sysconfig -from .base import ( - USER_CACHE_DIR, - get_major_minor_version, - get_src_prefix, - is_osx_framework, - site_packages, - user_site, -) - -__all__ = [ - "USER_CACHE_DIR", - "get_bin_prefix", - "get_bin_user", - "get_major_minor_version", - "get_platlib", - "get_purelib", - "get_scheme", - "get_src_prefix", - "site_packages", - "user_site", -] - - -logger = logging.getLogger(__name__) - - -_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") - -_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) - - -def _should_use_sysconfig() -> bool: - """This function determines the value of _USE_SYSCONFIG. - - By default, pip uses sysconfig on Python 3.10+. - But Python distributors can override this decision by setting: - sysconfig._PIP_USE_SYSCONFIG = True / False - Rationale in https://github.com/pypa/pip/issues/10647 - - This is a function for testability, but should be constant during any one - run. - """ - return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) - - -_USE_SYSCONFIG = _should_use_sysconfig() - -if not _USE_SYSCONFIG: - # Import distutils lazily to avoid deprecation warnings, - # but import it soon enough that it is in memory and available during - # a pip reinstall. - from . import _distutils - -# Be noisy about incompatibilities if this platforms "should" be using -# sysconfig, but is explicitly opting out and using distutils instead. -if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: - _MISMATCH_LEVEL = logging.WARNING -else: - _MISMATCH_LEVEL = logging.DEBUG - - -def _looks_like_bpo_44860() -> bool: - """The resolution to bpo-44860 will change this incorrect platlib. - - See . - """ - from distutils.command.install import INSTALL_SCHEMES - - try: - unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] - except KeyError: - return False - return unix_user_platlib == "$usersite" - - -def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: - platlib = scheme["platlib"] - if "/$platlibdir/" in platlib: - platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") - if "/lib64/" not in platlib: - return False - unpatched = platlib.replace("/lib64/", "/lib/") - return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] - - -@functools.lru_cache(maxsize=None) -def _looks_like_red_hat_lib() -> bool: - """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. - - This is the only way I can see to tell a Red Hat-patched Python. - """ - from distutils.command.install import INSTALL_SCHEMES - - return all( - k in INSTALL_SCHEMES - and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) - for k in ("unix_prefix", "unix_home") - ) - - -@functools.lru_cache(maxsize=None) -def _looks_like_debian_scheme() -> bool: - """Debian adds two additional schemes.""" - from distutils.command.install import INSTALL_SCHEMES - - return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES - - -@functools.lru_cache(maxsize=None) -def _looks_like_red_hat_scheme() -> bool: - """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. - - Red Hat's ``00251-change-user-install-location.patch`` changes the install - command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is - (fortunately?) done quite unconditionally, so we create a default command - object without any configuration to detect this. - """ - from distutils.command.install import install - from distutils.dist import Distribution - - cmd: Any = install(Distribution()) - cmd.finalize_options() - return ( - cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" - and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" - ) - - -@functools.lru_cache(maxsize=None) -def _looks_like_slackware_scheme() -> bool: - """Slackware patches sysconfig but fails to patch distutils and site. - - Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib - path, but does not do the same to the site module. - """ - if user_site is None: # User-site not available. - return False - try: - paths = sysconfig.get_paths(scheme="posix_user", expand=False) - except KeyError: # User-site not available. - return False - return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site - - -@functools.lru_cache(maxsize=None) -def _looks_like_msys2_mingw_scheme() -> bool: - """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. - - However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is - likely going to be included in their 3.10 release, so we ignore the warning. - See msys2/MINGW-packages#9319. - - MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, - and is missing the final ``"site-packages"``. - """ - paths = sysconfig.get_paths("nt", expand=False) - return all( - "Lib" not in p and "lib" in p and not p.endswith("site-packages") - for p in (paths[key] for key in ("platlib", "purelib")) - ) - - -def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: - ldversion = sysconfig.get_config_var("LDVERSION") - abiflags = getattr(sys, "abiflags", None) - - # LDVERSION does not end with sys.abiflags. Just return the path unchanged. - if not ldversion or not abiflags or not ldversion.endswith(abiflags): - yield from parts - return - - # Strip sys.abiflags from LDVERSION-based path components. - for part in parts: - if part.endswith(ldversion): - part = part[: (0 - len(abiflags))] - yield part - - -@functools.lru_cache(maxsize=None) -def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: - issue_url = "https://github.com/pypa/pip/issues/10151" - message = ( - "Value for %s does not match. Please report this to <%s>" - "\ndistutils: %s" - "\nsysconfig: %s" - ) - logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) - - -def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: - if old == new: - return False - _warn_mismatched(old, new, key=key) - return True - - -@functools.lru_cache(maxsize=None) -def _log_context( - *, - user: bool = False, - home: Optional[str] = None, - root: Optional[str] = None, - prefix: Optional[str] = None, -) -> None: - parts = [ - "Additional context:", - "user = %r", - "home = %r", - "root = %r", - "prefix = %r", - ] - - logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) - - -def get_scheme( - dist_name: str, - user: bool = False, - home: Optional[str] = None, - root: Optional[str] = None, - isolated: bool = False, - prefix: Optional[str] = None, -) -> Scheme: - new = _sysconfig.get_scheme( - dist_name, - user=user, - home=home, - root=root, - isolated=isolated, - prefix=prefix, - ) - if _USE_SYSCONFIG: - return new - - old = _distutils.get_scheme( - dist_name, - user=user, - home=home, - root=root, - isolated=isolated, - prefix=prefix, - ) - - warning_contexts = [] - for k in SCHEME_KEYS: - old_v = pathlib.Path(getattr(old, k)) - new_v = pathlib.Path(getattr(new, k)) - - if old_v == new_v: - continue - - # distutils incorrectly put PyPy packages under ``site-packages/python`` - # in the ``posix_home`` scheme, but PyPy devs said they expect the - # directory name to be ``pypy`` instead. So we treat this as a bug fix - # and not warn about it. See bpo-43307 and python/cpython#24628. - skip_pypy_special_case = ( - sys.implementation.name == "pypy" - and home is not None - and k in ("platlib", "purelib") - and old_v.parent == new_v.parent - and old_v.name.startswith("python") - and new_v.name.startswith("pypy") - ) - if skip_pypy_special_case: - continue - - # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in - # the ``include`` value, but distutils's ``headers`` does. We'll let - # CPython decide whether this is a bug or feature. See bpo-43948. - skip_osx_framework_user_special_case = ( - user - and is_osx_framework() - and k == "headers" - and old_v.parent.parent == new_v.parent - and old_v.parent.name.startswith("python") - ) - if skip_osx_framework_user_special_case: - continue - - # On Red Hat and derived Linux distributions, distutils is patched to - # use "lib64" instead of "lib" for platlib. - if k == "platlib" and _looks_like_red_hat_lib(): - continue - - # On Python 3.9+, sysconfig's posix_user scheme sets platlib against - # sys.platlibdir, but distutils's unix_user incorrectly coninutes - # using the same $usersite for both platlib and purelib. This creates a - # mismatch when sys.platlibdir is not "lib". - skip_bpo_44860 = ( - user - and k == "platlib" - and not WINDOWS - and sys.version_info >= (3, 9) - and _PLATLIBDIR != "lib" - and _looks_like_bpo_44860() - ) - if skip_bpo_44860: - continue - - # Slackware incorrectly patches posix_user to use lib64 instead of lib, - # but not usersite to match the location. - skip_slackware_user_scheme = ( - user - and k in ("platlib", "purelib") - and not WINDOWS - and _looks_like_slackware_scheme() - ) - if skip_slackware_user_scheme: - continue - - # Both Debian and Red Hat patch Python to place the system site under - # /usr/local instead of /usr. Debian also places lib in dist-packages - # instead of site-packages, but the /usr/local check should cover it. - skip_linux_system_special_case = ( - not (user or home or prefix or running_under_virtualenv()) - and old_v.parts[1:3] == ("usr", "local") - and len(new_v.parts) > 1 - and new_v.parts[1] == "usr" - and (len(new_v.parts) < 3 or new_v.parts[2] != "local") - and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) - ) - if skip_linux_system_special_case: - continue - - # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in - # the "pythonX.Y" part of the path, but distutils does. - skip_sysconfig_abiflag_bug = ( - sys.version_info < (3, 8) - and not WINDOWS - and k in ("headers", "platlib", "purelib") - and tuple(_fix_abiflags(old_v.parts)) == new_v.parts - ) - if skip_sysconfig_abiflag_bug: - continue - - # MSYS2 MINGW's sysconfig patch does not include the "site-packages" - # part of the path. This is incorrect and will be fixed in MSYS. - skip_msys2_mingw_bug = ( - WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() - ) - if skip_msys2_mingw_bug: - continue - - # CPython's POSIX install script invokes pip (via ensurepip) against the - # interpreter located in the source tree, not the install site. This - # triggers special logic in sysconfig that's not present in distutils. - # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 - skip_cpython_build = ( - sysconfig.is_python_build(check_home=True) - and not WINDOWS - and k in ("headers", "include", "platinclude") - ) - if skip_cpython_build: - continue - - warning_contexts.append((old_v, new_v, f"scheme.{k}")) - - if not warning_contexts: - return old - - # Check if this path mismatch is caused by distutils config files. Those - # files will no longer work once we switch to sysconfig, so this raises a - # deprecation message for them. - default_old = _distutils.distutils_scheme( - dist_name, - user, - home, - root, - isolated, - prefix, - ignore_config_files=True, - ) - if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): - deprecated( - reason=( - "Configuring installation scheme with distutils config files " - "is deprecated and will no longer work in the near future. If you " - "are using a Homebrew or Linuxbrew Python, please see discussion " - "at https://github.com/Homebrew/homebrew-core/issues/76621" - ), - replacement=None, - gone_in=None, - ) - return old - - # Post warnings about this mismatch so user can report them back. - for old_v, new_v, key in warning_contexts: - _warn_mismatched(old_v, new_v, key=key) - _log_context(user=user, home=home, root=root, prefix=prefix) - - return old - - -def get_bin_prefix() -> str: - new = _sysconfig.get_bin_prefix() - if _USE_SYSCONFIG: - return new - - old = _distutils.get_bin_prefix() - if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): - _log_context() - return old - - -def get_bin_user() -> str: - return _sysconfig.get_scheme("", user=True).scripts - - -def _looks_like_deb_system_dist_packages(value: str) -> bool: - """Check if the value is Debian's APT-controlled dist-packages. - - Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the - default package path controlled by APT, but does not patch ``sysconfig`` to - do the same. This is similar to the bug worked around in ``get_scheme()``, - but here the default is ``deb_system`` instead of ``unix_local``. Ultimately - we can't do anything about this Debian bug, and this detection allows us to - skip the warning when needed. - """ - if not _looks_like_debian_scheme(): - return False - if value == "/usr/lib/python3/dist-packages": - return True - return False - - -def get_purelib() -> str: - """Return the default pure-Python lib location.""" - new = _sysconfig.get_purelib() - if _USE_SYSCONFIG: - return new - - old = _distutils.get_purelib() - if _looks_like_deb_system_dist_packages(old): - return old - if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): - _log_context() - return old - - -def get_platlib() -> str: - """Return the default platform-shared lib location.""" - new = _sysconfig.get_platlib() - if _USE_SYSCONFIG: - return new - - from . import _distutils - - old = _distutils.get_platlib() - if _looks_like_deb_system_dist_packages(old): - return old - if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): - _log_context() - return old diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 6033322..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc deleted file mode 100644 index 60c7807..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc deleted file mode 100644 index fda50eb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc deleted file mode 100644 index e4a16d6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py deleted file mode 100644 index 0e18c6e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py +++ /dev/null @@ -1,172 +0,0 @@ -"""Locations where we look for configs, install stuff, etc""" - -# The following comment should be removed at some point in the future. -# mypy: strict-optional=False - -# If pip's going to use distutils, it should not be using the copy that setuptools -# might have injected into the environment. This is done by removing the injected -# shim, if it's injected. -# -# See https://github.com/pypa/pip/issues/8761 for the original discussion and -# rationale for why this is done within pip. -try: - __import__("_distutils_hack").remove_shim() -except (ImportError, AttributeError): - pass - -import logging -import os -import sys -from distutils.cmd import Command as DistutilsCommand -from distutils.command.install import SCHEME_KEYS -from distutils.command.install import install as distutils_install_command -from distutils.sysconfig import get_python_lib -from typing import Dict, List, Optional, Union, cast - -from pip._internal.models.scheme import Scheme -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.virtualenv import running_under_virtualenv - -from .base import get_major_minor_version - -logger = logging.getLogger(__name__) - - -def distutils_scheme( - dist_name: str, - user: bool = False, - home: Optional[str] = None, - root: Optional[str] = None, - isolated: bool = False, - prefix: Optional[str] = None, - *, - ignore_config_files: bool = False, -) -> Dict[str, str]: - """ - Return a distutils install scheme - """ - from distutils.dist import Distribution - - dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} - if isolated: - dist_args["script_args"] = ["--no-user-cfg"] - - d = Distribution(dist_args) - if not ignore_config_files: - try: - d.parse_config_files() - except UnicodeDecodeError: - paths = d.find_config_files() - logger.warning( - "Ignore distutils configs in %s due to encoding errors.", - ", ".join(os.path.basename(p) for p in paths), - ) - obj: Optional[DistutilsCommand] = None - obj = d.get_command_obj("install", create=True) - assert obj is not None - i = cast(distutils_install_command, obj) - # NOTE: setting user or home has the side-effect of creating the home dir - # or user base for installations during finalize_options() - # ideally, we'd prefer a scheme class that has no side-effects. - assert not (user and prefix), f"user={user} prefix={prefix}" - assert not (home and prefix), f"home={home} prefix={prefix}" - i.user = user or i.user - if user or home: - i.prefix = "" - i.prefix = prefix or i.prefix - i.home = home or i.home - i.root = root or i.root - i.finalize_options() - - scheme = {} - for key in SCHEME_KEYS: - scheme[key] = getattr(i, "install_" + key) - - # install_lib specified in setup.cfg should install *everything* - # into there (i.e. it takes precedence over both purelib and - # platlib). Note, i.install_lib is *always* set after - # finalize_options(); we only want to override here if the user - # has explicitly requested it hence going back to the config - if "install_lib" in d.get_option_dict("install"): - scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) - - if running_under_virtualenv(): - if home: - prefix = home - elif user: - prefix = i.install_userbase - else: - prefix = i.prefix - scheme["headers"] = os.path.join( - prefix, - "include", - "site", - f"python{get_major_minor_version()}", - dist_name, - ) - - if root is not None: - path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] - scheme["headers"] = os.path.join(root, path_no_drive[1:]) - - return scheme - - -def get_scheme( - dist_name: str, - user: bool = False, - home: Optional[str] = None, - root: Optional[str] = None, - isolated: bool = False, - prefix: Optional[str] = None, -) -> Scheme: - """ - Get the "scheme" corresponding to the input parameters. The distutils - documentation provides the context for the available schemes: - https://docs.python.org/3/install/index.html#alternate-installation - - :param dist_name: the name of the package to retrieve the scheme for, used - in the headers scheme path - :param user: indicates to use the "user" scheme - :param home: indicates to use the "home" scheme and provides the base - directory for the same - :param root: root under which other directories are re-based - :param isolated: equivalent to --no-user-cfg, i.e. do not consider - ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for - scheme paths - :param prefix: indicates to use the "prefix" scheme and provides the - base directory for the same - """ - scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) - return Scheme( - platlib=scheme["platlib"], - purelib=scheme["purelib"], - headers=scheme["headers"], - scripts=scheme["scripts"], - data=scheme["data"], - ) - - -def get_bin_prefix() -> str: - # XXX: In old virtualenv versions, sys.prefix can contain '..' components, - # so we need to call normpath to eliminate them. - prefix = os.path.normpath(sys.prefix) - if WINDOWS: - bin_py = os.path.join(prefix, "Scripts") - # buildout uses 'bin' on Windows too? - if not os.path.exists(bin_py): - bin_py = os.path.join(prefix, "bin") - return bin_py - # Forcing to use /usr/local/bin for standard macOS framework installs - # Also log to ~/Library/Logs/ for use with the Console.app log viewer - if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": - return "/usr/local/bin" - return os.path.join(prefix, "bin") - - -def get_purelib() -> str: - return get_python_lib(plat_specific=False) - - -def get_platlib() -> str: - return get_python_lib(plat_specific=True) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py deleted file mode 100644 index 97aef1f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py +++ /dev/null @@ -1,213 +0,0 @@ -import logging -import os -import sys -import sysconfig -import typing - -from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid -from pip._internal.models.scheme import SCHEME_KEYS, Scheme -from pip._internal.utils.virtualenv import running_under_virtualenv - -from .base import change_root, get_major_minor_version, is_osx_framework - -logger = logging.getLogger(__name__) - - -# Notes on _infer_* functions. -# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no -# way to ask things like "what is the '_prefix' scheme on this platform". These -# functions try to answer that with some heuristics while accounting for ad-hoc -# platforms not covered by CPython's default sysconfig implementation. If the -# ad-hoc implementation does not fully implement sysconfig, we'll fall back to -# a POSIX scheme. - -_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) - -_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) - - -def _should_use_osx_framework_prefix() -> bool: - """Check for Apple's ``osx_framework_library`` scheme. - - Python distributed by Apple's Command Line Tools has this special scheme - that's used when: - - * This is a framework build. - * We are installing into the system prefix. - - This does not account for ``pip install --prefix`` (also means we're not - installing to the system prefix), which should use ``posix_prefix``, but - logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But - since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, - which is the stdlib replacement for ``_infer_prefix()``, presumably Apple - wouldn't be able to magically switch between ``osx_framework_library`` and - ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` - means its behavior is consistent whether we use the stdlib implementation - or our own, and we deal with this special case in ``get_scheme()`` instead. - """ - return ( - "osx_framework_library" in _AVAILABLE_SCHEMES - and not running_under_virtualenv() - and is_osx_framework() - ) - - -def _infer_prefix() -> str: - """Try to find a prefix scheme for the current platform. - - This tries: - - * A special ``osx_framework_library`` for Python distributed by Apple's - Command Line Tools, when not running in a virtual environment. - * Implementation + OS, used by PyPy on Windows (``pypy_nt``). - * Implementation without OS, used by PyPy on POSIX (``pypy``). - * OS + "prefix", used by CPython on POSIX (``posix_prefix``). - * Just the OS name, used by CPython on Windows (``nt``). - - If none of the above works, fall back to ``posix_prefix``. - """ - if _PREFERRED_SCHEME_API: - return _PREFERRED_SCHEME_API("prefix") - if _should_use_osx_framework_prefix(): - return "osx_framework_library" - implementation_suffixed = f"{sys.implementation.name}_{os.name}" - if implementation_suffixed in _AVAILABLE_SCHEMES: - return implementation_suffixed - if sys.implementation.name in _AVAILABLE_SCHEMES: - return sys.implementation.name - suffixed = f"{os.name}_prefix" - if suffixed in _AVAILABLE_SCHEMES: - return suffixed - if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". - return os.name - return "posix_prefix" - - -def _infer_user() -> str: - """Try to find a user scheme for the current platform.""" - if _PREFERRED_SCHEME_API: - return _PREFERRED_SCHEME_API("user") - if is_osx_framework() and not running_under_virtualenv(): - suffixed = "osx_framework_user" - else: - suffixed = f"{os.name}_user" - if suffixed in _AVAILABLE_SCHEMES: - return suffixed - if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. - raise UserInstallationInvalid() - return "posix_user" - - -def _infer_home() -> str: - """Try to find a home for the current platform.""" - if _PREFERRED_SCHEME_API: - return _PREFERRED_SCHEME_API("home") - suffixed = f"{os.name}_home" - if suffixed in _AVAILABLE_SCHEMES: - return suffixed - return "posix_home" - - -# Update these keys if the user sets a custom home. -_HOME_KEYS = [ - "installed_base", - "base", - "installed_platbase", - "platbase", - "prefix", - "exec_prefix", -] -if sysconfig.get_config_var("userbase") is not None: - _HOME_KEYS.append("userbase") - - -def get_scheme( - dist_name: str, - user: bool = False, - home: typing.Optional[str] = None, - root: typing.Optional[str] = None, - isolated: bool = False, - prefix: typing.Optional[str] = None, -) -> Scheme: - """ - Get the "scheme" corresponding to the input parameters. - - :param dist_name: the name of the package to retrieve the scheme for, used - in the headers scheme path - :param user: indicates to use the "user" scheme - :param home: indicates to use the "home" scheme - :param root: root under which other directories are re-based - :param isolated: ignored, but kept for distutils compatibility (where - this controls whether the user-site pydistutils.cfg is honored) - :param prefix: indicates to use the "prefix" scheme and provides the - base directory for the same - """ - if user and prefix: - raise InvalidSchemeCombination("--user", "--prefix") - if home and prefix: - raise InvalidSchemeCombination("--home", "--prefix") - - if home is not None: - scheme_name = _infer_home() - elif user: - scheme_name = _infer_user() - else: - scheme_name = _infer_prefix() - - # Special case: When installing into a custom prefix, use posix_prefix - # instead of osx_framework_library. See _should_use_osx_framework_prefix() - # docstring for details. - if prefix is not None and scheme_name == "osx_framework_library": - scheme_name = "posix_prefix" - - if home is not None: - variables = {k: home for k in _HOME_KEYS} - elif prefix is not None: - variables = {k: prefix for k in _HOME_KEYS} - else: - variables = {} - - paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) - - # Logic here is very arbitrary, we're doing it for compatibility, don't ask. - # 1. Pip historically uses a special header path in virtual environments. - # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We - # only do the same when not running in a virtual environment because - # pip's historical header path logic (see point 1) did not do this. - if running_under_virtualenv(): - if user: - base = variables.get("userbase", sys.prefix) - else: - base = variables.get("base", sys.prefix) - python_xy = f"python{get_major_minor_version()}" - paths["include"] = os.path.join(base, "include", "site", python_xy) - elif not dist_name: - dist_name = "UNKNOWN" - - scheme = Scheme( - platlib=paths["platlib"], - purelib=paths["purelib"], - headers=os.path.join(paths["include"], dist_name), - scripts=paths["scripts"], - data=paths["data"], - ) - if root is not None: - for key in SCHEME_KEYS: - value = change_root(root, getattr(scheme, key)) - setattr(scheme, key, value) - return scheme - - -def get_bin_prefix() -> str: - # Forcing to use /usr/local/bin for standard macOS framework installs. - if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": - return "/usr/local/bin" - return sysconfig.get_paths()["scripts"] - - -def get_purelib() -> str: - return sysconfig.get_paths()["purelib"] - - -def get_platlib() -> str: - return sysconfig.get_paths()["platlib"] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/base.py deleted file mode 100644 index 3f9f896..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/locations/base.py +++ /dev/null @@ -1,81 +0,0 @@ -import functools -import os -import site -import sys -import sysconfig -import typing - -from pip._internal.exceptions import InstallationError -from pip._internal.utils import appdirs -from pip._internal.utils.virtualenv import running_under_virtualenv - -# Application Directories -USER_CACHE_DIR = appdirs.user_cache_dir("pip") - -# FIXME doesn't account for venv linked to global site-packages -site_packages: str = sysconfig.get_path("purelib") - - -def get_major_minor_version() -> str: - """ - Return the major-minor version of the current Python as a string, e.g. - "3.7" or "3.10". - """ - return "{}.{}".format(*sys.version_info) - - -def change_root(new_root: str, pathname: str) -> str: - """Return 'pathname' with 'new_root' prepended. - - If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). - Otherwise, it requires making 'pathname' relative and then joining the - two, which is tricky on DOS/Windows and Mac OS. - - This is borrowed from Python's standard library's distutils module. - """ - if os.name == "posix": - if not os.path.isabs(pathname): - return os.path.join(new_root, pathname) - else: - return os.path.join(new_root, pathname[1:]) - - elif os.name == "nt": - (drive, path) = os.path.splitdrive(pathname) - if path[0] == "\\": - path = path[1:] - return os.path.join(new_root, path) - - else: - raise InstallationError( - f"Unknown platform: {os.name}\n" - "Can not change root path prefix on unknown platform." - ) - - -def get_src_prefix() -> str: - if running_under_virtualenv(): - src_prefix = os.path.join(sys.prefix, "src") - else: - # FIXME: keep src in cwd for now (it is not a temporary folder) - try: - src_prefix = os.path.join(os.getcwd(), "src") - except OSError: - # In case the current working directory has been renamed or deleted - sys.exit("The folder you are executing pip from can no longer be found.") - - # under macOS + virtualenv sys.prefix is not properly resolved - # it is something like /path/to/python/bin/.. - return os.path.abspath(src_prefix) - - -try: - # Use getusersitepackages if this is present, as it ensures that the - # value is initialised properly. - user_site: typing.Optional[str] = site.getusersitepackages() -except AttributeError: - user_site = site.USER_SITE - - -@functools.lru_cache(maxsize=None) -def is_osx_framework() -> bool: - return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/main.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/main.py deleted file mode 100644 index 33c6d24..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/main.py +++ /dev/null @@ -1,12 +0,0 @@ -from typing import List, Optional - - -def main(args: Optional[List[str]] = None) -> int: - """This is preserved for old console scripts that may still be referencing - it. - - For additional details, see https://github.com/pypa/pip/issues/7498. - """ - from pip._internal.utils.entrypoints import _wrapper - - return _wrapper(args) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py deleted file mode 100644 index aa232b6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py +++ /dev/null @@ -1,128 +0,0 @@ -import contextlib -import functools -import os -import sys -from typing import TYPE_CHECKING, List, Optional, Type, cast - -from pip._internal.utils.misc import strtobool - -from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel - -if TYPE_CHECKING: - from typing import Literal, Protocol -else: - Protocol = object - -__all__ = [ - "BaseDistribution", - "BaseEnvironment", - "FilesystemWheel", - "MemoryWheel", - "Wheel", - "get_default_environment", - "get_environment", - "get_wheel_distribution", - "select_backend", -] - - -def _should_use_importlib_metadata() -> bool: - """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. - - By default, pip uses ``importlib.metadata`` on Python 3.11+, and - ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: - - * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it - dictates whether ``importlib.metadata`` is used, regardless of Python - version. - * On Python 3.11+, Python distributors can patch ``importlib.metadata`` - to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This - makes pip use ``pkg_resources`` (unless the user set the aforementioned - environment variable to *True*). - """ - with contextlib.suppress(KeyError, ValueError): - return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) - if sys.version_info < (3, 11): - return False - import importlib.metadata - - return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) - - -class Backend(Protocol): - NAME: 'Literal["importlib", "pkg_resources"]' - Distribution: Type[BaseDistribution] - Environment: Type[BaseEnvironment] - - -@functools.lru_cache(maxsize=None) -def select_backend() -> Backend: - if _should_use_importlib_metadata(): - from . import importlib - - return cast(Backend, importlib) - from . import pkg_resources - - return cast(Backend, pkg_resources) - - -def get_default_environment() -> BaseEnvironment: - """Get the default representation for the current environment. - - This returns an Environment instance from the chosen backend. The default - Environment instance should be built from ``sys.path`` and may use caching - to share instance state accorss calls. - """ - return select_backend().Environment.default() - - -def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: - """Get a representation of the environment specified by ``paths``. - - This returns an Environment instance from the chosen backend based on the - given import paths. The backend must build a fresh instance representing - the state of installed distributions when this function is called. - """ - return select_backend().Environment.from_paths(paths) - - -def get_directory_distribution(directory: str) -> BaseDistribution: - """Get the distribution metadata representation in the specified directory. - - This returns a Distribution instance from the chosen backend based on - the given on-disk ``.dist-info`` directory. - """ - return select_backend().Distribution.from_directory(directory) - - -def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: - """Get the representation of the specified wheel's distribution metadata. - - This returns a Distribution instance from the chosen backend based on - the given wheel's ``.dist-info`` directory. - - :param canonical_name: Normalized project name of the given wheel. - """ - return select_backend().Distribution.from_wheel(wheel, canonical_name) - - -def get_metadata_distribution( - metadata_contents: bytes, - filename: str, - canonical_name: str, -) -> BaseDistribution: - """Get the dist representation of the specified METADATA file contents. - - This returns a Distribution instance from the chosen backend sourced from the data - in `metadata_contents`. - - :param metadata_contents: Contents of a METADATA file within a dist, or one served - via PEP 658. - :param filename: Filename for the dist this metadata represents. - :param canonical_name: Normalized project name of the given dist. - """ - return select_backend().Distribution.from_metadata_file_contents( - metadata_contents, - filename, - canonical_name, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9cc4be8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc deleted file mode 100644 index 3c262dd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc deleted file mode 100644 index a3e5524..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc deleted file mode 100644 index 710e864..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py deleted file mode 100644 index 27362fc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py +++ /dev/null @@ -1,84 +0,0 @@ -# Extracted from https://github.com/pfmoore/pkg_metadata - -from email.header import Header, decode_header, make_header -from email.message import Message -from typing import Any, Dict, List, Union - -METADATA_FIELDS = [ - # Name, Multiple-Use - ("Metadata-Version", False), - ("Name", False), - ("Version", False), - ("Dynamic", True), - ("Platform", True), - ("Supported-Platform", True), - ("Summary", False), - ("Description", False), - ("Description-Content-Type", False), - ("Keywords", False), - ("Home-page", False), - ("Download-URL", False), - ("Author", False), - ("Author-email", False), - ("Maintainer", False), - ("Maintainer-email", False), - ("License", False), - ("Classifier", True), - ("Requires-Dist", True), - ("Requires-Python", False), - ("Requires-External", True), - ("Project-URL", True), - ("Provides-Extra", True), - ("Provides-Dist", True), - ("Obsoletes-Dist", True), -] - - -def json_name(field: str) -> str: - return field.lower().replace("-", "_") - - -def msg_to_json(msg: Message) -> Dict[str, Any]: - """Convert a Message object into a JSON-compatible dictionary.""" - - def sanitise_header(h: Union[Header, str]) -> str: - if isinstance(h, Header): - chunks = [] - for bytes, encoding in decode_header(h): - if encoding == "unknown-8bit": - try: - # See if UTF-8 works - bytes.decode("utf-8") - encoding = "utf-8" - except UnicodeDecodeError: - # If not, latin1 at least won't fail - encoding = "latin1" - chunks.append((bytes, encoding)) - return str(make_header(chunks)) - return str(h) - - result = {} - for field, multi in METADATA_FIELDS: - if field not in msg: - continue - key = json_name(field) - if multi: - value: Union[str, List[str]] = [ - sanitise_header(v) for v in msg.get_all(field) # type: ignore - ] - else: - value = sanitise_header(msg.get(field)) # type: ignore - if key == "keywords": - # Accept both comma-separated and space-separated - # forms, for better compatibility with old data. - if "," in value: - value = [v.strip() for v in value.split(",")] - else: - value = value.split() - result[key] = value - - payload = msg.get_payload() - if payload: - result["description"] = payload - - return result diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py deleted file mode 100644 index 9249124..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py +++ /dev/null @@ -1,702 +0,0 @@ -import csv -import email.message -import functools -import json -import logging -import pathlib -import re -import zipfile -from typing import ( - IO, - TYPE_CHECKING, - Any, - Collection, - Container, - Dict, - Iterable, - Iterator, - List, - NamedTuple, - Optional, - Tuple, - Union, -) - -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.packaging.version import LegacyVersion, Version - -from pip._internal.exceptions import NoneMetadataError -from pip._internal.locations import site_packages, user_site -from pip._internal.models.direct_url import ( - DIRECT_URL_METADATA_NAME, - DirectUrl, - DirectUrlValidationError, -) -from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. -from pip._internal.utils.egg_link import egg_link_path_from_sys_path -from pip._internal.utils.misc import is_local, normalize_path -from pip._internal.utils.urls import url_to_path - -from ._json import msg_to_json - -if TYPE_CHECKING: - from typing import Protocol -else: - Protocol = object - -DistributionVersion = Union[LegacyVersion, Version] - -InfoPath = Union[str, pathlib.PurePath] - -logger = logging.getLogger(__name__) - - -class BaseEntryPoint(Protocol): - @property - def name(self) -> str: - raise NotImplementedError() - - @property - def value(self) -> str: - raise NotImplementedError() - - @property - def group(self) -> str: - raise NotImplementedError() - - -def _convert_installed_files_path( - entry: Tuple[str, ...], - info: Tuple[str, ...], -) -> str: - """Convert a legacy installed-files.txt path into modern RECORD path. - - The legacy format stores paths relative to the info directory, while the - modern format stores paths relative to the package root, e.g. the - site-packages directory. - - :param entry: Path parts of the installed-files.txt entry. - :param info: Path parts of the egg-info directory relative to package root. - :returns: The converted entry. - - For best compatibility with symlinks, this does not use ``abspath()`` or - ``Path.resolve()``, but tries to work with path parts: - - 1. While ``entry`` starts with ``..``, remove the equal amounts of parts - from ``info``; if ``info`` is empty, start appending ``..`` instead. - 2. Join the two directly. - """ - while entry and entry[0] == "..": - if not info or info[-1] == "..": - info += ("..",) - else: - info = info[:-1] - entry = entry[1:] - return str(pathlib.Path(*info, *entry)) - - -class RequiresEntry(NamedTuple): - requirement: str - extra: str - marker: str - - -class BaseDistribution(Protocol): - @classmethod - def from_directory(cls, directory: str) -> "BaseDistribution": - """Load the distribution from a metadata directory. - - :param directory: Path to a metadata directory, e.g. ``.dist-info``. - """ - raise NotImplementedError() - - @classmethod - def from_metadata_file_contents( - cls, - metadata_contents: bytes, - filename: str, - project_name: str, - ) -> "BaseDistribution": - """Load the distribution from the contents of a METADATA file. - - This is used to implement PEP 658 by generating a "shallow" dist object that can - be used for resolution without downloading or building the actual dist yet. - - :param metadata_contents: The contents of a METADATA file. - :param filename: File name for the dist with this metadata. - :param project_name: Name of the project this dist represents. - """ - raise NotImplementedError() - - @classmethod - def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": - """Load the distribution from a given wheel. - - :param wheel: A concrete wheel definition. - :param name: File name of the wheel. - - :raises InvalidWheel: Whenever loading of the wheel causes a - :py:exc:`zipfile.BadZipFile` exception to be thrown. - :raises UnsupportedWheel: If the wheel is a valid zip, but malformed - internally. - """ - raise NotImplementedError() - - def __repr__(self) -> str: - return f"{self.raw_name} {self.version} ({self.location})" - - def __str__(self) -> str: - return f"{self.raw_name} {self.version}" - - @property - def location(self) -> Optional[str]: - """Where the distribution is loaded from. - - A string value is not necessarily a filesystem path, since distributions - can be loaded from other sources, e.g. arbitrary zip archives. ``None`` - means the distribution is created in-memory. - - Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If - this is a symbolic link, we want to preserve the relative path between - it and files in the distribution. - """ - raise NotImplementedError() - - @property - def editable_project_location(self) -> Optional[str]: - """The project location for editable distributions. - - This is the directory where pyproject.toml or setup.py is located. - None if the distribution is not installed in editable mode. - """ - # TODO: this property is relatively costly to compute, memoize it ? - direct_url = self.direct_url - if direct_url: - if direct_url.is_local_editable(): - return url_to_path(direct_url.url) - else: - # Search for an .egg-link file by walking sys.path, as it was - # done before by dist_is_editable(). - egg_link_path = egg_link_path_from_sys_path(self.raw_name) - if egg_link_path: - # TODO: get project location from second line of egg_link file - # (https://github.com/pypa/pip/issues/10243) - return self.location - return None - - @property - def installed_location(self) -> Optional[str]: - """The distribution's "installed" location. - - This should generally be a ``site-packages`` directory. This is - usually ``dist.location``, except for legacy develop-installed packages, - where ``dist.location`` is the source code location, and this is where - the ``.egg-link`` file is. - - The returned location is normalized (in particular, with symlinks removed). - """ - raise NotImplementedError() - - @property - def info_location(self) -> Optional[str]: - """Location of the .[egg|dist]-info directory or file. - - Similarly to ``location``, a string value is not necessarily a - filesystem path. ``None`` means the distribution is created in-memory. - - For a modern .dist-info installation on disk, this should be something - like ``{location}/{raw_name}-{version}.dist-info``. - - Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If - this is a symbolic link, we want to preserve the relative path between - it and other files in the distribution. - """ - raise NotImplementedError() - - @property - def installed_by_distutils(self) -> bool: - """Whether this distribution is installed with legacy distutils format. - - A distribution installed with "raw" distutils not patched by setuptools - uses one single file at ``info_location`` to store metadata. We need to - treat this specially on uninstallation. - """ - info_location = self.info_location - if not info_location: - return False - return pathlib.Path(info_location).is_file() - - @property - def installed_as_egg(self) -> bool: - """Whether this distribution is installed as an egg. - - This usually indicates the distribution was installed by (older versions - of) easy_install. - """ - location = self.location - if not location: - return False - return location.endswith(".egg") - - @property - def installed_with_setuptools_egg_info(self) -> bool: - """Whether this distribution is installed with the ``.egg-info`` format. - - This usually indicates the distribution was installed with setuptools - with an old pip version or with ``single-version-externally-managed``. - - Note that this ensure the metadata store is a directory. distutils can - also installs an ``.egg-info``, but as a file, not a directory. This - property is *False* for that case. Also see ``installed_by_distutils``. - """ - info_location = self.info_location - if not info_location: - return False - if not info_location.endswith(".egg-info"): - return False - return pathlib.Path(info_location).is_dir() - - @property - def installed_with_dist_info(self) -> bool: - """Whether this distribution is installed with the "modern format". - - This indicates a "modern" installation, e.g. storing metadata in the - ``.dist-info`` directory. This applies to installations made by - setuptools (but through pip, not directly), or anything using the - standardized build backend interface (PEP 517). - """ - info_location = self.info_location - if not info_location: - return False - if not info_location.endswith(".dist-info"): - return False - return pathlib.Path(info_location).is_dir() - - @property - def canonical_name(self) -> NormalizedName: - raise NotImplementedError() - - @property - def version(self) -> DistributionVersion: - raise NotImplementedError() - - @property - def setuptools_filename(self) -> str: - """Convert a project name to its setuptools-compatible filename. - - This is a copy of ``pkg_resources.to_filename()`` for compatibility. - """ - return self.raw_name.replace("-", "_") - - @property - def direct_url(self) -> Optional[DirectUrl]: - """Obtain a DirectUrl from this distribution. - - Returns None if the distribution has no `direct_url.json` metadata, - or if `direct_url.json` is invalid. - """ - try: - content = self.read_text(DIRECT_URL_METADATA_NAME) - except FileNotFoundError: - return None - try: - return DirectUrl.from_json(content) - except ( - UnicodeDecodeError, - json.JSONDecodeError, - DirectUrlValidationError, - ) as e: - logger.warning( - "Error parsing %s for %s: %s", - DIRECT_URL_METADATA_NAME, - self.canonical_name, - e, - ) - return None - - @property - def installer(self) -> str: - try: - installer_text = self.read_text("INSTALLER") - except (OSError, ValueError, NoneMetadataError): - return "" # Fail silently if the installer file cannot be read. - for line in installer_text.splitlines(): - cleaned_line = line.strip() - if cleaned_line: - return cleaned_line - return "" - - @property - def requested(self) -> bool: - return self.is_file("REQUESTED") - - @property - def editable(self) -> bool: - return bool(self.editable_project_location) - - @property - def local(self) -> bool: - """If distribution is installed in the current virtual environment. - - Always True if we're not in a virtualenv. - """ - if self.installed_location is None: - return False - return is_local(self.installed_location) - - @property - def in_usersite(self) -> bool: - if self.installed_location is None or user_site is None: - return False - return self.installed_location.startswith(normalize_path(user_site)) - - @property - def in_site_packages(self) -> bool: - if self.installed_location is None or site_packages is None: - return False - return self.installed_location.startswith(normalize_path(site_packages)) - - def is_file(self, path: InfoPath) -> bool: - """Check whether an entry in the info directory is a file.""" - raise NotImplementedError() - - def iter_distutils_script_names(self) -> Iterator[str]: - """Find distutils 'scripts' entries metadata. - - If 'scripts' is supplied in ``setup.py``, distutils records those in the - installed distribution's ``scripts`` directory, a file for each script. - """ - raise NotImplementedError() - - def read_text(self, path: InfoPath) -> str: - """Read a file in the info directory. - - :raise FileNotFoundError: If ``path`` does not exist in the directory. - :raise NoneMetadataError: If ``path`` exists in the info directory, but - cannot be read. - """ - raise NotImplementedError() - - def iter_entry_points(self) -> Iterable[BaseEntryPoint]: - raise NotImplementedError() - - def _metadata_impl(self) -> email.message.Message: - raise NotImplementedError() - - @functools.lru_cache(maxsize=1) - def _metadata_cached(self) -> email.message.Message: - # When we drop python 3.7 support, move this to the metadata property and use - # functools.cached_property instead of lru_cache. - metadata = self._metadata_impl() - self._add_egg_info_requires(metadata) - return metadata - - @property - def metadata(self) -> email.message.Message: - """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. - - This should return an empty message if the metadata file is unavailable. - - :raises NoneMetadataError: If the metadata file is available, but does - not contain valid metadata. - """ - return self._metadata_cached() - - @property - def metadata_dict(self) -> Dict[str, Any]: - """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. - - This should return an empty dict if the metadata file is unavailable. - - :raises NoneMetadataError: If the metadata file is available, but does - not contain valid metadata. - """ - return msg_to_json(self.metadata) - - @property - def metadata_version(self) -> Optional[str]: - """Value of "Metadata-Version:" in distribution metadata, if available.""" - return self.metadata.get("Metadata-Version") - - @property - def raw_name(self) -> str: - """Value of "Name:" in distribution metadata.""" - # The metadata should NEVER be missing the Name: key, but if it somehow - # does, fall back to the known canonical name. - return self.metadata.get("Name", self.canonical_name) - - @property - def requires_python(self) -> SpecifierSet: - """Value of "Requires-Python:" in distribution metadata. - - If the key does not exist or contains an invalid value, an empty - SpecifierSet should be returned. - """ - value = self.metadata.get("Requires-Python") - if value is None: - return SpecifierSet() - try: - # Convert to str to satisfy the type checker; this can be a Header object. - spec = SpecifierSet(str(value)) - except InvalidSpecifier as e: - message = "Package %r has an invalid Requires-Python: %s" - logger.warning(message, self.raw_name, e) - return SpecifierSet() - return spec - - def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: - """Dependencies of this distribution. - - For modern .dist-info distributions, this is the collection of - "Requires-Dist:" entries in distribution metadata. - """ - raise NotImplementedError() - - def iter_provided_extras(self) -> Iterable[str]: - """Extras provided by this distribution. - - For modern .dist-info distributions, this is the collection of - "Provides-Extra:" entries in distribution metadata. - - The return value of this function is not particularly useful other than - display purposes due to backward compatibility issues and the extra - names being poorly normalized prior to PEP 685. If you want to perform - logic operations on extras, use :func:`is_extra_provided` instead. - """ - raise NotImplementedError() - - def is_extra_provided(self, extra: str) -> bool: - """Check whether an extra is provided by this distribution. - - This is needed mostly for compatibility issues with pkg_resources not - following the extra normalization rules defined in PEP 685. - """ - raise NotImplementedError() - - def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: - try: - text = self.read_text("RECORD") - except FileNotFoundError: - return None - # This extra Path-str cast normalizes entries. - return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) - - def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: - try: - text = self.read_text("installed-files.txt") - except FileNotFoundError: - return None - paths = (p for p in text.splitlines(keepends=False) if p) - root = self.location - info = self.info_location - if root is None or info is None: - return paths - try: - info_rel = pathlib.Path(info).relative_to(root) - except ValueError: # info is not relative to root. - return paths - if not info_rel.parts: # info *is* root. - return paths - return ( - _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) - for p in paths - ) - - def iter_declared_entries(self) -> Optional[Iterator[str]]: - """Iterate through file entries declared in this distribution. - - For modern .dist-info distributions, this is the files listed in the - ``RECORD`` metadata file. For legacy setuptools distributions, this - comes from ``installed-files.txt``, with entries normalized to be - compatible with the format used by ``RECORD``. - - :return: An iterator for listed entries, or None if the distribution - contains neither ``RECORD`` nor ``installed-files.txt``. - """ - return ( - self._iter_declared_entries_from_record() - or self._iter_declared_entries_from_legacy() - ) - - def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: - """Parse a ``requires.txt`` in an egg-info directory. - - This is an INI-ish format where an egg-info stores dependencies. A - section name describes extra other environment markers, while each entry - is an arbitrary string (not a key-value pair) representing a dependency - as a requirement string (no markers). - - There is a construct in ``importlib.metadata`` called ``Sectioned`` that - does mostly the same, but the format is currently considered private. - """ - try: - content = self.read_text("requires.txt") - except FileNotFoundError: - return - extra = marker = "" # Section-less entries don't have markers. - for line in content.splitlines(): - line = line.strip() - if not line or line.startswith("#"): # Comment; ignored. - continue - if line.startswith("[") and line.endswith("]"): # A section header. - extra, _, marker = line.strip("[]").partition(":") - continue - yield RequiresEntry(requirement=line, extra=extra, marker=marker) - - def _iter_egg_info_extras(self) -> Iterable[str]: - """Get extras from the egg-info directory.""" - known_extras = {""} - for entry in self._iter_requires_txt_entries(): - extra = canonicalize_name(entry.extra) - if extra in known_extras: - continue - known_extras.add(extra) - yield extra - - def _iter_egg_info_dependencies(self) -> Iterable[str]: - """Get distribution dependencies from the egg-info directory. - - To ease parsing, this converts a legacy dependency entry into a PEP 508 - requirement string. Like ``_iter_requires_txt_entries()``, there is code - in ``importlib.metadata`` that does mostly the same, but not do exactly - what we need. - - Namely, ``importlib.metadata`` does not normalize the extra name before - putting it into the requirement string, which causes marker comparison - to fail because the dist-info format do normalize. This is consistent in - all currently available PEP 517 backends, although not standardized. - """ - for entry in self._iter_requires_txt_entries(): - extra = canonicalize_name(entry.extra) - if extra and entry.marker: - marker = f'({entry.marker}) and extra == "{extra}"' - elif extra: - marker = f'extra == "{extra}"' - elif entry.marker: - marker = entry.marker - else: - marker = "" - if marker: - yield f"{entry.requirement} ; {marker}" - else: - yield entry.requirement - - def _add_egg_info_requires(self, metadata: email.message.Message) -> None: - """Add egg-info requires.txt information to the metadata.""" - if not metadata.get_all("Requires-Dist"): - for dep in self._iter_egg_info_dependencies(): - metadata["Requires-Dist"] = dep - if not metadata.get_all("Provides-Extra"): - for extra in self._iter_egg_info_extras(): - metadata["Provides-Extra"] = extra - - -class BaseEnvironment: - """An environment containing distributions to introspect.""" - - @classmethod - def default(cls) -> "BaseEnvironment": - raise NotImplementedError() - - @classmethod - def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": - raise NotImplementedError() - - def get_distribution(self, name: str) -> Optional["BaseDistribution"]: - """Given a requirement name, return the installed distributions. - - The name may not be normalized. The implementation must canonicalize - it for lookup. - """ - raise NotImplementedError() - - def _iter_distributions(self) -> Iterator["BaseDistribution"]: - """Iterate through installed distributions. - - This function should be implemented by subclass, but never called - directly. Use the public ``iter_distribution()`` instead, which - implements additional logic to make sure the distributions are valid. - """ - raise NotImplementedError() - - def iter_all_distributions(self) -> Iterator[BaseDistribution]: - """Iterate through all installed distributions without any filtering.""" - for dist in self._iter_distributions(): - # Make sure the distribution actually comes from a valid Python - # packaging distribution. Pip's AdjacentTempDirectory leaves folders - # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The - # valid project name pattern is taken from PEP 508. - project_name_valid = re.match( - r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", - dist.canonical_name, - flags=re.IGNORECASE, - ) - if not project_name_valid: - logger.warning( - "Ignoring invalid distribution %s (%s)", - dist.canonical_name, - dist.location, - ) - continue - yield dist - - def iter_installed_distributions( - self, - local_only: bool = True, - skip: Container[str] = stdlib_pkgs, - include_editables: bool = True, - editables_only: bool = False, - user_only: bool = False, - ) -> Iterator[BaseDistribution]: - """Return a list of installed distributions. - - This is based on ``iter_all_distributions()`` with additional filtering - options. Note that ``iter_installed_distributions()`` without arguments - is *not* equal to ``iter_all_distributions()``, since some of the - configurations exclude packages by default. - - :param local_only: If True (default), only return installations - local to the current virtualenv, if in a virtualenv. - :param skip: An iterable of canonicalized project names to ignore; - defaults to ``stdlib_pkgs``. - :param include_editables: If False, don't report editables. - :param editables_only: If True, only report editables. - :param user_only: If True, only report installations in the user - site directory. - """ - it = self.iter_all_distributions() - if local_only: - it = (d for d in it if d.local) - if not include_editables: - it = (d for d in it if not d.editable) - if editables_only: - it = (d for d in it if d.editable) - if user_only: - it = (d for d in it if d.in_usersite) - return (d for d in it if d.canonical_name not in skip) - - -class Wheel(Protocol): - location: str - - def as_zipfile(self) -> zipfile.ZipFile: - raise NotImplementedError() - - -class FilesystemWheel(Wheel): - def __init__(self, location: str) -> None: - self.location = location - - def as_zipfile(self) -> zipfile.ZipFile: - return zipfile.ZipFile(self.location, allowZip64=True) - - -class MemoryWheel(Wheel): - def __init__(self, location: str, stream: IO[bytes]) -> None: - self.location = location - self.stream = stream - - def as_zipfile(self) -> zipfile.ZipFile: - return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py deleted file mode 100644 index a779138..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -from ._dists import Distribution -from ._envs import Environment - -__all__ = ["NAME", "Distribution", "Environment"] - -NAME = "importlib" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 1402f8a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc deleted file mode 100644 index 0986925..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc deleted file mode 100644 index f610003..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc deleted file mode 100644 index 500bd89..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py deleted file mode 100644 index 593bff2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py +++ /dev/null @@ -1,55 +0,0 @@ -import importlib.metadata -from typing import Any, Optional, Protocol, cast - - -class BadMetadata(ValueError): - def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None: - self.dist = dist - self.reason = reason - - def __str__(self) -> str: - return f"Bad metadata in {self.dist} ({self.reason})" - - -class BasePath(Protocol): - """A protocol that various path objects conform. - - This exists because importlib.metadata uses both ``pathlib.Path`` and - ``zipfile.Path``, and we need a common base for type hints (Union does not - work well since ``zipfile.Path`` is too new for our linter setup). - - This does not mean to be exhaustive, but only contains things that present - in both classes *that we need*. - """ - - @property - def name(self) -> str: - raise NotImplementedError() - - @property - def parent(self) -> "BasePath": - raise NotImplementedError() - - -def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: - """Find the path to the distribution's metadata directory. - - HACK: This relies on importlib.metadata's private ``_path`` attribute. Not - all distributions exist on disk, so importlib.metadata is correct to not - expose the attribute as public. But pip's code base is old and not as clean, - so we do this to avoid having to rewrite too many things. Hopefully we can - eliminate this some day. - """ - return getattr(d, "_path", None) - - -def get_dist_name(dist: importlib.metadata.Distribution) -> str: - """Get the distribution's project name. - - The ``name`` attribute is only available in Python 3.10 or later. We are - targeting exactly that, but Mypy does not know this. - """ - name = cast(Any, dist).name - if not isinstance(name, str): - raise BadMetadata(dist, reason="invalid metadata entry 'name'") - return name diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py deleted file mode 100644 index 26370fa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py +++ /dev/null @@ -1,227 +0,0 @@ -import email.message -import importlib.metadata -import os -import pathlib -import zipfile -from typing import ( - Collection, - Dict, - Iterable, - Iterator, - Mapping, - Optional, - Sequence, - cast, -) - -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.exceptions import InvalidWheel, UnsupportedWheel -from pip._internal.metadata.base import ( - BaseDistribution, - BaseEntryPoint, - DistributionVersion, - InfoPath, - Wheel, -) -from pip._internal.utils.misc import normalize_path -from pip._internal.utils.temp_dir import TempDirectory -from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file - -from ._compat import BasePath, get_dist_name - - -class WheelDistribution(importlib.metadata.Distribution): - """An ``importlib.metadata.Distribution`` read from a wheel. - - Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, - its implementation is too "lazy" for pip's needs (we can't keep the ZipFile - handle open for the entire lifetime of the distribution object). - - This implementation eagerly reads the entire metadata directory into the - memory instead, and operates from that. - """ - - def __init__( - self, - files: Mapping[pathlib.PurePosixPath, bytes], - info_location: pathlib.PurePosixPath, - ) -> None: - self._files = files - self.info_location = info_location - - @classmethod - def from_zipfile( - cls, - zf: zipfile.ZipFile, - name: str, - location: str, - ) -> "WheelDistribution": - info_dir, _ = parse_wheel(zf, name) - paths = ( - (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) - for name in zf.namelist() - if name.startswith(f"{info_dir}/") - ) - files = { - relpath: read_wheel_metadata_file(zf, fullpath) - for fullpath, relpath in paths - } - info_location = pathlib.PurePosixPath(location, info_dir) - return cls(files, info_location) - - def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: - # Only allow iterating through the metadata directory. - if pathlib.PurePosixPath(str(path)) in self._files: - return iter(self._files) - raise FileNotFoundError(path) - - def read_text(self, filename: str) -> Optional[str]: - try: - data = self._files[pathlib.PurePosixPath(filename)] - except KeyError: - return None - try: - text = data.decode("utf-8") - except UnicodeDecodeError as e: - wheel = self.info_location.parent - error = f"Error decoding metadata for {wheel}: {e} in {filename} file" - raise UnsupportedWheel(error) - return text - - -class Distribution(BaseDistribution): - def __init__( - self, - dist: importlib.metadata.Distribution, - info_location: Optional[BasePath], - installed_location: Optional[BasePath], - ) -> None: - self._dist = dist - self._info_location = info_location - self._installed_location = installed_location - - @classmethod - def from_directory(cls, directory: str) -> BaseDistribution: - info_location = pathlib.Path(directory) - dist = importlib.metadata.Distribution.at(info_location) - return cls(dist, info_location, info_location.parent) - - @classmethod - def from_metadata_file_contents( - cls, - metadata_contents: bytes, - filename: str, - project_name: str, - ) -> BaseDistribution: - # Generate temp dir to contain the metadata file, and write the file contents. - temp_dir = pathlib.Path( - TempDirectory(kind="metadata", globally_managed=True).path - ) - metadata_path = temp_dir / "METADATA" - metadata_path.write_bytes(metadata_contents) - # Construct dist pointing to the newly created directory. - dist = importlib.metadata.Distribution.at(metadata_path.parent) - return cls(dist, metadata_path.parent, None) - - @classmethod - def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: - try: - with wheel.as_zipfile() as zf: - dist = WheelDistribution.from_zipfile(zf, name, wheel.location) - except zipfile.BadZipFile as e: - raise InvalidWheel(wheel.location, name) from e - except UnsupportedWheel as e: - raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") - return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) - - @property - def location(self) -> Optional[str]: - if self._info_location is None: - return None - return str(self._info_location.parent) - - @property - def info_location(self) -> Optional[str]: - if self._info_location is None: - return None - return str(self._info_location) - - @property - def installed_location(self) -> Optional[str]: - if self._installed_location is None: - return None - return normalize_path(str(self._installed_location)) - - def _get_dist_name_from_location(self) -> Optional[str]: - """Try to get the name from the metadata directory name. - - This is much faster than reading metadata. - """ - if self._info_location is None: - return None - stem, suffix = os.path.splitext(self._info_location.name) - if suffix not in (".dist-info", ".egg-info"): - return None - return stem.split("-", 1)[0] - - @property - def canonical_name(self) -> NormalizedName: - name = self._get_dist_name_from_location() or get_dist_name(self._dist) - return canonicalize_name(name) - - @property - def version(self) -> DistributionVersion: - return parse_version(self._dist.version) - - def is_file(self, path: InfoPath) -> bool: - return self._dist.read_text(str(path)) is not None - - def iter_distutils_script_names(self) -> Iterator[str]: - # A distutils installation is always "flat" (not in e.g. egg form), so - # if this distribution's info location is NOT a pathlib.Path (but e.g. - # zipfile.Path), it can never contain any distutils scripts. - if not isinstance(self._info_location, pathlib.Path): - return - for child in self._info_location.joinpath("scripts").iterdir(): - yield child.name - - def read_text(self, path: InfoPath) -> str: - content = self._dist.read_text(str(path)) - if content is None: - raise FileNotFoundError(path) - return content - - def iter_entry_points(self) -> Iterable[BaseEntryPoint]: - # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. - return self._dist.entry_points - - def _metadata_impl(self) -> email.message.Message: - # From Python 3.10+, importlib.metadata declares PackageMetadata as the - # return type. This protocol is unfortunately a disaster now and misses - # a ton of fields that we need, including get() and get_payload(). We - # rely on the implementation that the object is actually a Message now, - # until upstream can improve the protocol. (python/cpython#94952) - return cast(email.message.Message, self._dist.metadata) - - def iter_provided_extras(self) -> Iterable[str]: - return self.metadata.get_all("Provides-Extra", []) - - def is_extra_provided(self, extra: str) -> bool: - return any( - canonicalize_name(provided_extra) == canonicalize_name(extra) - for provided_extra in self.metadata.get_all("Provides-Extra", []) - ) - - def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: - contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] - for req_string in self.metadata.get_all("Requires-Dist", []): - req = Requirement(req_string) - if not req.marker: - yield req - elif not extras and req.marker.evaluate({"extra": ""}): - yield req - elif any(req.marker.evaluate(context) for context in contexts): - yield req diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py deleted file mode 100644 index 048dc55..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py +++ /dev/null @@ -1,189 +0,0 @@ -import functools -import importlib.metadata -import logging -import os -import pathlib -import sys -import zipfile -import zipimport -from typing import Iterator, List, Optional, Sequence, Set, Tuple - -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name - -from pip._internal.metadata.base import BaseDistribution, BaseEnvironment -from pip._internal.models.wheel import Wheel -from pip._internal.utils.deprecation import deprecated -from pip._internal.utils.filetypes import WHEEL_EXTENSION - -from ._compat import BadMetadata, BasePath, get_dist_name, get_info_location -from ._dists import Distribution - -logger = logging.getLogger(__name__) - - -def _looks_like_wheel(location: str) -> bool: - if not location.endswith(WHEEL_EXTENSION): - return False - if not os.path.isfile(location): - return False - if not Wheel.wheel_file_re.match(os.path.basename(location)): - return False - return zipfile.is_zipfile(location) - - -class _DistributionFinder: - """Finder to locate distributions. - - The main purpose of this class is to memoize found distributions' names, so - only one distribution is returned for each package name. At lot of pip code - assumes this (because it is setuptools's behavior), and not doing the same - can potentially cause a distribution in lower precedence path to override a - higher precedence one if the caller is not careful. - - Eventually we probably want to make it possible to see lower precedence - installations as well. It's useful feature, after all. - """ - - FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] - - def __init__(self) -> None: - self._found_names: Set[NormalizedName] = set() - - def _find_impl(self, location: str) -> Iterator[FoundResult]: - """Find distributions in a location.""" - # Skip looking inside a wheel. Since a package inside a wheel is not - # always valid (due to .data directories etc.), its .dist-info entry - # should not be considered an installed distribution. - if _looks_like_wheel(location): - return - # To know exactly where we find a distribution, we have to feed in the - # paths one by one, instead of dumping the list to importlib.metadata. - for dist in importlib.metadata.distributions(path=[location]): - info_location = get_info_location(dist) - try: - raw_name = get_dist_name(dist) - except BadMetadata as e: - logger.warning("Skipping %s due to %s", info_location, e.reason) - continue - normalized_name = canonicalize_name(raw_name) - if normalized_name in self._found_names: - continue - self._found_names.add(normalized_name) - yield dist, info_location - - def find(self, location: str) -> Iterator[BaseDistribution]: - """Find distributions in a location. - - The path can be either a directory, or a ZIP archive. - """ - for dist, info_location in self._find_impl(location): - if info_location is None: - installed_location: Optional[BasePath] = None - else: - installed_location = info_location.parent - yield Distribution(dist, info_location, installed_location) - - def find_linked(self, location: str) -> Iterator[BaseDistribution]: - """Read location in egg-link files and return distributions in there. - - The path should be a directory; otherwise this returns nothing. This - follows how setuptools does this for compatibility. The first non-empty - line in the egg-link is read as a path (resolved against the egg-link's - containing directory if relative). Distributions found at that linked - location are returned. - """ - path = pathlib.Path(location) - if not path.is_dir(): - return - for child in path.iterdir(): - if child.suffix != ".egg-link": - continue - with child.open() as f: - lines = (line.strip() for line in f) - target_rel = next((line for line in lines if line), "") - if not target_rel: - continue - target_location = str(path.joinpath(target_rel)) - for dist, info_location in self._find_impl(target_location): - yield Distribution(dist, info_location, path) - - def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: - from pip._vendor.pkg_resources import find_distributions - - from pip._internal.metadata import pkg_resources as legacy - - with os.scandir(location) as it: - for entry in it: - if not entry.name.endswith(".egg"): - continue - for dist in find_distributions(entry.path): - yield legacy.Distribution(dist) - - def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: - from pip._vendor.pkg_resources import find_eggs_in_zip - - from pip._internal.metadata import pkg_resources as legacy - - try: - importer = zipimport.zipimporter(location) - except zipimport.ZipImportError: - return - for dist in find_eggs_in_zip(importer, location): - yield legacy.Distribution(dist) - - def find_eggs(self, location: str) -> Iterator[BaseDistribution]: - """Find eggs in a location. - - This actually uses the old *pkg_resources* backend. We likely want to - deprecate this so we can eventually remove the *pkg_resources* - dependency entirely. Before that, this should first emit a deprecation - warning for some versions when using the fallback since importing - *pkg_resources* is slow for those who don't need it. - """ - if os.path.isdir(location): - yield from self._find_eggs_in_dir(location) - if zipfile.is_zipfile(location): - yield from self._find_eggs_in_zip(location) - - -@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. -def _emit_egg_deprecation(location: Optional[str]) -> None: - deprecated( - reason=f"Loading egg at {location} is deprecated.", - replacement="to use pip for package installation.", - gone_in="24.3", - issue=12330, - ) - - -class Environment(BaseEnvironment): - def __init__(self, paths: Sequence[str]) -> None: - self._paths = paths - - @classmethod - def default(cls) -> BaseEnvironment: - return cls(sys.path) - - @classmethod - def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: - if paths is None: - return cls(sys.path) - return cls(paths) - - def _iter_distributions(self) -> Iterator[BaseDistribution]: - finder = _DistributionFinder() - for location in self._paths: - yield from finder.find(location) - for dist in finder.find_eggs(location): - _emit_egg_deprecation(dist.location) - yield dist - # This must go last because that's how pkg_resources tie-breaks. - yield from finder.find_linked(location) - - def get_distribution(self, name: str) -> Optional[BaseDistribution]: - matches = ( - distribution - for distribution in self.iter_all_distributions() - if distribution.canonical_name == canonicalize_name(name) - ) - return next(matches, None) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py deleted file mode 100644 index bb11e5b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py +++ /dev/null @@ -1,278 +0,0 @@ -import email.message -import email.parser -import logging -import os -import zipfile -from typing import Collection, Iterable, Iterator, List, Mapping, NamedTuple, Optional - -from pip._vendor import pkg_resources -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel -from pip._internal.utils.egg_link import egg_link_path_from_location -from pip._internal.utils.misc import display_path, normalize_path -from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file - -from .base import ( - BaseDistribution, - BaseEntryPoint, - BaseEnvironment, - DistributionVersion, - InfoPath, - Wheel, -) - -__all__ = ["NAME", "Distribution", "Environment"] - -logger = logging.getLogger(__name__) - -NAME = "pkg_resources" - - -class EntryPoint(NamedTuple): - name: str - value: str - group: str - - -class InMemoryMetadata: - """IMetadataProvider that reads metadata files from a dictionary. - - This also maps metadata decoding exceptions to our internal exception type. - """ - - def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: - self._metadata = metadata - self._wheel_name = wheel_name - - def has_metadata(self, name: str) -> bool: - return name in self._metadata - - def get_metadata(self, name: str) -> str: - try: - return self._metadata[name].decode() - except UnicodeDecodeError as e: - # Augment the default error with the origin of the file. - raise UnsupportedWheel( - f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" - ) - - def get_metadata_lines(self, name: str) -> Iterable[str]: - return pkg_resources.yield_lines(self.get_metadata(name)) - - def metadata_isdir(self, name: str) -> bool: - return False - - def metadata_listdir(self, name: str) -> List[str]: - return [] - - def run_script(self, script_name: str, namespace: str) -> None: - pass - - -class Distribution(BaseDistribution): - def __init__(self, dist: pkg_resources.Distribution) -> None: - self._dist = dist - - @classmethod - def from_directory(cls, directory: str) -> BaseDistribution: - dist_dir = directory.rstrip(os.sep) - - # Build a PathMetadata object, from path to metadata. :wink: - base_dir, dist_dir_name = os.path.split(dist_dir) - metadata = pkg_resources.PathMetadata(base_dir, dist_dir) - - # Determine the correct Distribution object type. - if dist_dir.endswith(".egg-info"): - dist_cls = pkg_resources.Distribution - dist_name = os.path.splitext(dist_dir_name)[0] - else: - assert dist_dir.endswith(".dist-info") - dist_cls = pkg_resources.DistInfoDistribution - dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] - - dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) - return cls(dist) - - @classmethod - def from_metadata_file_contents( - cls, - metadata_contents: bytes, - filename: str, - project_name: str, - ) -> BaseDistribution: - metadata_dict = { - "METADATA": metadata_contents, - } - dist = pkg_resources.DistInfoDistribution( - location=filename, - metadata=InMemoryMetadata(metadata_dict, filename), - project_name=project_name, - ) - return cls(dist) - - @classmethod - def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: - try: - with wheel.as_zipfile() as zf: - info_dir, _ = parse_wheel(zf, name) - metadata_dict = { - path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) - for path in zf.namelist() - if path.startswith(f"{info_dir}/") - } - except zipfile.BadZipFile as e: - raise InvalidWheel(wheel.location, name) from e - except UnsupportedWheel as e: - raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") - dist = pkg_resources.DistInfoDistribution( - location=wheel.location, - metadata=InMemoryMetadata(metadata_dict, wheel.location), - project_name=name, - ) - return cls(dist) - - @property - def location(self) -> Optional[str]: - return self._dist.location - - @property - def installed_location(self) -> Optional[str]: - egg_link = egg_link_path_from_location(self.raw_name) - if egg_link: - location = egg_link - elif self.location: - location = self.location - else: - return None - return normalize_path(location) - - @property - def info_location(self) -> Optional[str]: - return self._dist.egg_info - - @property - def installed_by_distutils(self) -> bool: - # A distutils-installed distribution is provided by FileMetadata. This - # provider has a "path" attribute not present anywhere else. Not the - # best introspection logic, but pip has been doing this for a long time. - try: - return bool(self._dist._provider.path) - except AttributeError: - return False - - @property - def canonical_name(self) -> NormalizedName: - return canonicalize_name(self._dist.project_name) - - @property - def version(self) -> DistributionVersion: - return parse_version(self._dist.version) - - def is_file(self, path: InfoPath) -> bool: - return self._dist.has_metadata(str(path)) - - def iter_distutils_script_names(self) -> Iterator[str]: - yield from self._dist.metadata_listdir("scripts") - - def read_text(self, path: InfoPath) -> str: - name = str(path) - if not self._dist.has_metadata(name): - raise FileNotFoundError(name) - content = self._dist.get_metadata(name) - if content is None: - raise NoneMetadataError(self, name) - return content - - def iter_entry_points(self) -> Iterable[BaseEntryPoint]: - for group, entries in self._dist.get_entry_map().items(): - for name, entry_point in entries.items(): - name, _, value = str(entry_point).partition("=") - yield EntryPoint(name=name.strip(), value=value.strip(), group=group) - - def _metadata_impl(self) -> email.message.Message: - """ - :raises NoneMetadataError: if the distribution reports `has_metadata()` - True but `get_metadata()` returns None. - """ - if isinstance(self._dist, pkg_resources.DistInfoDistribution): - metadata_name = "METADATA" - else: - metadata_name = "PKG-INFO" - try: - metadata = self.read_text(metadata_name) - except FileNotFoundError: - if self.location: - displaying_path = display_path(self.location) - else: - displaying_path = repr(self.location) - logger.warning("No metadata found in %s", displaying_path) - metadata = "" - feed_parser = email.parser.FeedParser() - feed_parser.feed(metadata) - return feed_parser.close() - - def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: - if extras: # pkg_resources raises on invalid extras, so we sanitize. - extras = frozenset(pkg_resources.safe_extra(e) for e in extras) - extras = extras.intersection(self._dist.extras) - return self._dist.requires(extras) - - def iter_provided_extras(self) -> Iterable[str]: - return self._dist.extras - - def is_extra_provided(self, extra: str) -> bool: - return pkg_resources.safe_extra(extra) in self._dist.extras - - -class Environment(BaseEnvironment): - def __init__(self, ws: pkg_resources.WorkingSet) -> None: - self._ws = ws - - @classmethod - def default(cls) -> BaseEnvironment: - return cls(pkg_resources.working_set) - - @classmethod - def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: - return cls(pkg_resources.WorkingSet(paths)) - - def _iter_distributions(self) -> Iterator[BaseDistribution]: - for dist in self._ws: - yield Distribution(dist) - - def _search_distribution(self, name: str) -> Optional[BaseDistribution]: - """Find a distribution matching the ``name`` in the environment. - - This searches from *all* distributions available in the environment, to - match the behavior of ``pkg_resources.get_distribution()``. - """ - canonical_name = canonicalize_name(name) - for dist in self.iter_all_distributions(): - if dist.canonical_name == canonical_name: - return dist - return None - - def get_distribution(self, name: str) -> Optional[BaseDistribution]: - # Search the distribution by looking through the working set. - dist = self._search_distribution(name) - if dist: - return dist - - # If distribution could not be found, call working_set.require to - # update the working set, and try to find the distribution again. - # This might happen for e.g. when you install a package twice, once - # using setup.py develop and again using setup.py install. Now when - # running pip uninstall twice, the package gets removed from the - # working set in the first uninstall, so we have to populate the - # working set again so that pip knows about it and the packages gets - # picked up and is successfully uninstalled the second time too. - try: - # We didn't pass in any version specifiers, so this can never - # raise pkg_resources.VersionConflict. - self._ws.require(name) - except pkg_resources.DistributionNotFound: - return None - return self._search_distribution(name) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py deleted file mode 100644 index 7855226..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -"""A package that contains models that represent entities. -""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 771dcc6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc deleted file mode 100644 index 8ec03bd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc deleted file mode 100644 index a4e2426..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc deleted file mode 100644 index 96b7269..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc deleted file mode 100644 index 33cfe3f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc deleted file mode 100644 index 49f82b8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc deleted file mode 100644 index a337c5d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc deleted file mode 100644 index ca6ce44..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc deleted file mode 100644 index 6721617..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc deleted file mode 100644 index add1e7e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc deleted file mode 100644 index 0fc09e4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index 8bfc448..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py deleted file mode 100644 index 9184a90..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py +++ /dev/null @@ -1,30 +0,0 @@ -from pip._vendor.packaging.version import parse as parse_version - -from pip._internal.models.link import Link -from pip._internal.utils.models import KeyBasedCompareMixin - - -class InstallationCandidate(KeyBasedCompareMixin): - """Represents a potential "candidate" for installation.""" - - __slots__ = ["name", "version", "link"] - - def __init__(self, name: str, version: str, link: Link) -> None: - self.name = name - self.version = parse_version(version) - self.link = link - - super().__init__( - key=(self.name, self.version, self.link), - defining_class=InstallationCandidate, - ) - - def __repr__(self) -> str: - return "".format( - self.name, - self.version, - self.link, - ) - - def __str__(self) -> str: - return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py deleted file mode 100644 index 0af884b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py +++ /dev/null @@ -1,235 +0,0 @@ -""" PEP 610 """ -import json -import re -import urllib.parse -from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union - -__all__ = [ - "DirectUrl", - "DirectUrlValidationError", - "DirInfo", - "ArchiveInfo", - "VcsInfo", -] - -T = TypeVar("T") - -DIRECT_URL_METADATA_NAME = "direct_url.json" -ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") - - -class DirectUrlValidationError(Exception): - pass - - -def _get( - d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None -) -> Optional[T]: - """Get value from dictionary and verify expected type.""" - if key not in d: - return default - value = d[key] - if not isinstance(value, expected_type): - raise DirectUrlValidationError( - f"{value!r} has unexpected type for {key} (expected {expected_type})" - ) - return value - - -def _get_required( - d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None -) -> T: - value = _get(d, expected_type, key, default) - if value is None: - raise DirectUrlValidationError(f"{key} must have a value") - return value - - -def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": - infos = [info for info in infos if info is not None] - if not infos: - raise DirectUrlValidationError( - "missing one of archive_info, dir_info, vcs_info" - ) - if len(infos) > 1: - raise DirectUrlValidationError( - "more than one of archive_info, dir_info, vcs_info" - ) - assert infos[0] is not None - return infos[0] - - -def _filter_none(**kwargs: Any) -> Dict[str, Any]: - """Make dict excluding None values.""" - return {k: v for k, v in kwargs.items() if v is not None} - - -class VcsInfo: - name = "vcs_info" - - def __init__( - self, - vcs: str, - commit_id: str, - requested_revision: Optional[str] = None, - ) -> None: - self.vcs = vcs - self.requested_revision = requested_revision - self.commit_id = commit_id - - @classmethod - def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: - if d is None: - return None - return cls( - vcs=_get_required(d, str, "vcs"), - commit_id=_get_required(d, str, "commit_id"), - requested_revision=_get(d, str, "requested_revision"), - ) - - def _to_dict(self) -> Dict[str, Any]: - return _filter_none( - vcs=self.vcs, - requested_revision=self.requested_revision, - commit_id=self.commit_id, - ) - - -class ArchiveInfo: - name = "archive_info" - - def __init__( - self, - hash: Optional[str] = None, - hashes: Optional[Dict[str, str]] = None, - ) -> None: - # set hashes before hash, since the hash setter will further populate hashes - self.hashes = hashes - self.hash = hash - - @property - def hash(self) -> Optional[str]: - return self._hash - - @hash.setter - def hash(self, value: Optional[str]) -> None: - if value is not None: - # Auto-populate the hashes key to upgrade to the new format automatically. - # We don't back-populate the legacy hash key from hashes. - try: - hash_name, hash_value = value.split("=", 1) - except ValueError: - raise DirectUrlValidationError( - f"invalid archive_info.hash format: {value!r}" - ) - if self.hashes is None: - self.hashes = {hash_name: hash_value} - elif hash_name not in self.hashes: - self.hashes = self.hashes.copy() - self.hashes[hash_name] = hash_value - self._hash = value - - @classmethod - def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: - if d is None: - return None - return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) - - def _to_dict(self) -> Dict[str, Any]: - return _filter_none(hash=self.hash, hashes=self.hashes) - - -class DirInfo: - name = "dir_info" - - def __init__( - self, - editable: bool = False, - ) -> None: - self.editable = editable - - @classmethod - def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: - if d is None: - return None - return cls(editable=_get_required(d, bool, "editable", default=False)) - - def _to_dict(self) -> Dict[str, Any]: - return _filter_none(editable=self.editable or None) - - -InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] - - -class DirectUrl: - def __init__( - self, - url: str, - info: InfoType, - subdirectory: Optional[str] = None, - ) -> None: - self.url = url - self.info = info - self.subdirectory = subdirectory - - def _remove_auth_from_netloc(self, netloc: str) -> str: - if "@" not in netloc: - return netloc - user_pass, netloc_no_user_pass = netloc.split("@", 1) - if ( - isinstance(self.info, VcsInfo) - and self.info.vcs == "git" - and user_pass == "git" - ): - return netloc - if ENV_VAR_RE.match(user_pass): - return netloc - return netloc_no_user_pass - - @property - def redacted_url(self) -> str: - """url with user:password part removed unless it is formed with - environment variables as specified in PEP 610, or it is ``git`` - in the case of a git URL. - """ - purl = urllib.parse.urlsplit(self.url) - netloc = self._remove_auth_from_netloc(purl.netloc) - surl = urllib.parse.urlunsplit( - (purl.scheme, netloc, purl.path, purl.query, purl.fragment) - ) - return surl - - def validate(self) -> None: - self.from_dict(self.to_dict()) - - @classmethod - def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": - return DirectUrl( - url=_get_required(d, str, "url"), - subdirectory=_get(d, str, "subdirectory"), - info=_exactly_one_of( - [ - ArchiveInfo._from_dict(_get(d, dict, "archive_info")), - DirInfo._from_dict(_get(d, dict, "dir_info")), - VcsInfo._from_dict(_get(d, dict, "vcs_info")), - ] - ), - ) - - def to_dict(self) -> Dict[str, Any]: - res = _filter_none( - url=self.redacted_url, - subdirectory=self.subdirectory, - ) - res[self.info.name] = self.info._to_dict() - return res - - @classmethod - def from_json(cls, s: str) -> "DirectUrl": - return cls.from_dict(json.loads(s)) - - def to_json(self) -> str: - return json.dumps(self.to_dict(), sort_keys=True) - - def is_local_editable(self) -> bool: - return isinstance(self.info, DirInfo) and self.info.editable diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/format_control.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/format_control.py deleted file mode 100644 index ccd1127..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/format_control.py +++ /dev/null @@ -1,78 +0,0 @@ -from typing import FrozenSet, Optional, Set - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.exceptions import CommandError - - -class FormatControl: - """Helper for managing formats from which a package can be installed.""" - - __slots__ = ["no_binary", "only_binary"] - - def __init__( - self, - no_binary: Optional[Set[str]] = None, - only_binary: Optional[Set[str]] = None, - ) -> None: - if no_binary is None: - no_binary = set() - if only_binary is None: - only_binary = set() - - self.no_binary = no_binary - self.only_binary = only_binary - - def __eq__(self, other: object) -> bool: - if not isinstance(other, self.__class__): - return NotImplemented - - if self.__slots__ != other.__slots__: - return False - - return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" - - @staticmethod - def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: - if value.startswith("-"): - raise CommandError( - "--no-binary / --only-binary option requires 1 argument." - ) - new = value.split(",") - while ":all:" in new: - other.clear() - target.clear() - target.add(":all:") - del new[: new.index(":all:") + 1] - # Without a none, we want to discard everything as :all: covers it - if ":none:" not in new: - return - for name in new: - if name == ":none:": - target.clear() - continue - name = canonicalize_name(name) - other.discard(name) - target.add(name) - - def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: - result = {"binary", "source"} - if canonical_name in self.only_binary: - result.discard("source") - elif canonical_name in self.no_binary: - result.discard("binary") - elif ":all:" in self.only_binary: - result.discard("source") - elif ":all:" in self.no_binary: - result.discard("binary") - return frozenset(result) - - def disallow_binaries(self) -> None: - self.handle_mutual_excludes( - ":all:", - self.no_binary, - self.only_binary, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/index.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/index.py deleted file mode 100644 index b94c325..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/index.py +++ /dev/null @@ -1,28 +0,0 @@ -import urllib.parse - - -class PackageIndex: - """Represents a Package Index and provides easier access to endpoints""" - - __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] - - def __init__(self, url: str, file_storage_domain: str) -> None: - super().__init__() - self.url = url - self.netloc = urllib.parse.urlsplit(url).netloc - self.simple_url = self._url_for_path("simple") - self.pypi_url = self._url_for_path("pypi") - - # This is part of a temporary hack used to block installs of PyPI - # packages which depend on external urls only necessary until PyPI can - # block such packages themselves - self.file_storage_domain = file_storage_domain - - def _url_for_path(self, path: str) -> str: - return urllib.parse.urljoin(self.url, path) - - -PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") -TestPyPI = PackageIndex( - "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/installation_report.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/installation_report.py deleted file mode 100644 index b9c6330..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/installation_report.py +++ /dev/null @@ -1,56 +0,0 @@ -from typing import Any, Dict, Sequence - -from pip._vendor.packaging.markers import default_environment - -from pip import __version__ -from pip._internal.req.req_install import InstallRequirement - - -class InstallationReport: - def __init__(self, install_requirements: Sequence[InstallRequirement]): - self._install_requirements = install_requirements - - @classmethod - def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: - assert ireq.download_info, f"No download_info for {ireq}" - res = { - # PEP 610 json for the download URL. download_info.archive_info.hashes may - # be absent when the requirement was installed from the wheel cache - # and the cache entry was populated by an older pip version that did not - # record origin.json. - "download_info": ireq.download_info.to_dict(), - # is_direct is true if the requirement was a direct URL reference (which - # includes editable requirements), and false if the requirement was - # downloaded from a PEP 503 index or --find-links. - "is_direct": ireq.is_direct, - # is_yanked is true if the requirement was yanked from the index, but - # was still selected by pip to conform to PEP 592. - "is_yanked": ireq.link.is_yanked if ireq.link else False, - # requested is true if the requirement was specified by the user (aka - # top level requirement), and false if it was installed as a dependency of a - # requirement. https://peps.python.org/pep-0376/#requested - "requested": ireq.user_supplied, - # PEP 566 json encoding for metadata - # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata - "metadata": ireq.get_dist().metadata_dict, - } - if ireq.user_supplied and ireq.extras: - # For top level requirements, the list of requested extras, if any. - res["requested_extras"] = sorted(ireq.extras) - return res - - def to_dict(self) -> Dict[str, Any]: - return { - "version": "1", - "pip_version": __version__, - "install": [ - self._install_req_to_dict(ireq) for ireq in self._install_requirements - ], - # https://peps.python.org/pep-0508/#environment-markers - # TODO: currently, the resolver uses the default environment to evaluate - # environment markers, so that is what we report here. In the future, it - # should also take into account options such as --python-version or - # --platform, perhaps under the form of an environment_override field? - # https://github.com/pypa/pip/issues/11198 - "environment": default_environment(), - } diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/link.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/link.py deleted file mode 100644 index 73041b8..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/link.py +++ /dev/null @@ -1,579 +0,0 @@ -import functools -import itertools -import logging -import os -import posixpath -import re -import urllib.parse -from dataclasses import dataclass -from typing import ( - TYPE_CHECKING, - Any, - Dict, - List, - Mapping, - NamedTuple, - Optional, - Tuple, - Union, -) - -from pip._internal.utils.deprecation import deprecated -from pip._internal.utils.filetypes import WHEEL_EXTENSION -from pip._internal.utils.hashes import Hashes -from pip._internal.utils.misc import ( - pairwise, - redact_auth_from_url, - split_auth_from_netloc, - splitext, -) -from pip._internal.utils.models import KeyBasedCompareMixin -from pip._internal.utils.urls import path_to_url, url_to_path - -if TYPE_CHECKING: - from pip._internal.index.collector import IndexContent - -logger = logging.getLogger(__name__) - - -# Order matters, earlier hashes have a precedence over later hashes for what -# we will pick to use. -_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") - - -@dataclass(frozen=True) -class LinkHash: - """Links to content may have embedded hash values. This class parses those. - - `name` must be any member of `_SUPPORTED_HASHES`. - - This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to - be JSON-serializable to conform to PEP 610, this class contains the logic for - parsing a hash name and value for correctness, and then checking whether that hash - conforms to a schema with `.is_hash_allowed()`.""" - - name: str - value: str - - _hash_url_fragment_re = re.compile( - # NB: we do not validate that the second group (.*) is a valid hex - # digest. Instead, we simply keep that string in this class, and then check it - # against Hashes when hash-checking is needed. This is easier to debug than - # proactively discarding an invalid hex digest, as we handle incorrect hashes - # and malformed hashes in the same place. - r"[#&]({choices})=([^&]*)".format( - choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) - ), - ) - - def __post_init__(self) -> None: - assert self.name in _SUPPORTED_HASHES - - @classmethod - @functools.lru_cache(maxsize=None) - def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: - """Search a string for a checksum algorithm name and encoded output value.""" - match = cls._hash_url_fragment_re.search(url) - if match is None: - return None - name, value = match.groups() - return cls(name=name, value=value) - - def as_dict(self) -> Dict[str, str]: - return {self.name: self.value} - - def as_hashes(self) -> Hashes: - """Return a Hashes instance which checks only for the current hash.""" - return Hashes({self.name: [self.value]}) - - def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: - """ - Return True if the current hash is allowed by `hashes`. - """ - if hashes is None: - return False - return hashes.is_hash_allowed(self.name, hex_digest=self.value) - - -@dataclass(frozen=True) -class MetadataFile: - """Information about a core metadata file associated with a distribution.""" - - hashes: Optional[Dict[str, str]] - - def __post_init__(self) -> None: - if self.hashes is not None: - assert all(name in _SUPPORTED_HASHES for name in self.hashes) - - -def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: - # Remove any unsupported hash types from the mapping. If this leaves no - # supported hashes, return None - if hashes is None: - return None - hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} - if not hashes: - return None - return hashes - - -def _clean_url_path_part(part: str) -> str: - """ - Clean a "part" of a URL path (i.e. after splitting on "@" characters). - """ - # We unquote prior to quoting to make sure nothing is double quoted. - return urllib.parse.quote(urllib.parse.unquote(part)) - - -def _clean_file_url_path(part: str) -> str: - """ - Clean the first part of a URL path that corresponds to a local - filesystem path (i.e. the first part after splitting on "@" characters). - """ - # We unquote prior to quoting to make sure nothing is double quoted. - # Also, on Windows the path part might contain a drive letter which - # should not be quoted. On Linux where drive letters do not - # exist, the colon should be quoted. We rely on urllib.request - # to do the right thing here. - return urllib.request.pathname2url(urllib.request.url2pathname(part)) - - -# percent-encoded: / -_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) - - -def _clean_url_path(path: str, is_local_path: bool) -> str: - """ - Clean the path portion of a URL. - """ - if is_local_path: - clean_func = _clean_file_url_path - else: - clean_func = _clean_url_path_part - - # Split on the reserved characters prior to cleaning so that - # revision strings in VCS URLs are properly preserved. - parts = _reserved_chars_re.split(path) - - cleaned_parts = [] - for to_clean, reserved in pairwise(itertools.chain(parts, [""])): - cleaned_parts.append(clean_func(to_clean)) - # Normalize %xx escapes (e.g. %2f -> %2F) - cleaned_parts.append(reserved.upper()) - - return "".join(cleaned_parts) - - -def _ensure_quoted_url(url: str) -> str: - """ - Make sure a link is fully quoted. - For example, if ' ' occurs in the URL, it will be replaced with "%20", - and without double-quoting other characters. - """ - # Split the URL into parts according to the general structure - # `scheme://netloc/path;parameters?query#fragment`. - result = urllib.parse.urlparse(url) - # If the netloc is empty, then the URL refers to a local filesystem path. - is_local_path = not result.netloc - path = _clean_url_path(result.path, is_local_path=is_local_path) - return urllib.parse.urlunparse(result._replace(path=path)) - - -class Link(KeyBasedCompareMixin): - """Represents a parsed link from a Package Index's simple URL""" - - __slots__ = [ - "_parsed_url", - "_url", - "_hashes", - "comes_from", - "requires_python", - "yanked_reason", - "metadata_file_data", - "cache_link_parsing", - "egg_fragment", - ] - - def __init__( - self, - url: str, - comes_from: Optional[Union[str, "IndexContent"]] = None, - requires_python: Optional[str] = None, - yanked_reason: Optional[str] = None, - metadata_file_data: Optional[MetadataFile] = None, - cache_link_parsing: bool = True, - hashes: Optional[Mapping[str, str]] = None, - ) -> None: - """ - :param url: url of the resource pointed to (href of the link) - :param comes_from: instance of IndexContent where the link was found, - or string. - :param requires_python: String containing the `Requires-Python` - metadata field, specified in PEP 345. This may be specified by - a data-requires-python attribute in the HTML link tag, as - described in PEP 503. - :param yanked_reason: the reason the file has been yanked, if the - file has been yanked, or None if the file hasn't been yanked. - This is the value of the "data-yanked" attribute, if present, in - a simple repository HTML link. If the file has been yanked but - no reason was provided, this should be the empty string. See - PEP 592 for more information and the specification. - :param metadata_file_data: the metadata attached to the file, or None if - no such metadata is provided. This argument, if not None, indicates - that a separate metadata file exists, and also optionally supplies - hashes for that file. - :param cache_link_parsing: A flag that is used elsewhere to determine - whether resources retrieved from this link should be cached. PyPI - URLs should generally have this set to False, for example. - :param hashes: A mapping of hash names to digests to allow us to - determine the validity of a download. - """ - - # The comes_from, requires_python, and metadata_file_data arguments are - # only used by classmethods of this class, and are not used in client - # code directly. - - # url can be a UNC windows share - if url.startswith("\\\\"): - url = path_to_url(url) - - self._parsed_url = urllib.parse.urlsplit(url) - # Store the url as a private attribute to prevent accidentally - # trying to set a new value. - self._url = url - - link_hash = LinkHash.find_hash_url_fragment(url) - hashes_from_link = {} if link_hash is None else link_hash.as_dict() - if hashes is None: - self._hashes = hashes_from_link - else: - self._hashes = {**hashes, **hashes_from_link} - - self.comes_from = comes_from - self.requires_python = requires_python if requires_python else None - self.yanked_reason = yanked_reason - self.metadata_file_data = metadata_file_data - - super().__init__(key=url, defining_class=Link) - - self.cache_link_parsing = cache_link_parsing - self.egg_fragment = self._egg_fragment() - - @classmethod - def from_json( - cls, - file_data: Dict[str, Any], - page_url: str, - ) -> Optional["Link"]: - """ - Convert an pypi json document from a simple repository page into a Link. - """ - file_url = file_data.get("url") - if file_url is None: - return None - - url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) - pyrequire = file_data.get("requires-python") - yanked_reason = file_data.get("yanked") - hashes = file_data.get("hashes", {}) - - # PEP 714: Indexes must use the name core-metadata, but - # clients should support the old name as a fallback for compatibility. - metadata_info = file_data.get("core-metadata") - if metadata_info is None: - metadata_info = file_data.get("dist-info-metadata") - - # The metadata info value may be a boolean, or a dict of hashes. - if isinstance(metadata_info, dict): - # The file exists, and hashes have been supplied - metadata_file_data = MetadataFile(supported_hashes(metadata_info)) - elif metadata_info: - # The file exists, but there are no hashes - metadata_file_data = MetadataFile(None) - else: - # False or not present: the file does not exist - metadata_file_data = None - - # The Link.yanked_reason expects an empty string instead of a boolean. - if yanked_reason and not isinstance(yanked_reason, str): - yanked_reason = "" - # The Link.yanked_reason expects None instead of False. - elif not yanked_reason: - yanked_reason = None - - return cls( - url, - comes_from=page_url, - requires_python=pyrequire, - yanked_reason=yanked_reason, - hashes=hashes, - metadata_file_data=metadata_file_data, - ) - - @classmethod - def from_element( - cls, - anchor_attribs: Dict[str, Optional[str]], - page_url: str, - base_url: str, - ) -> Optional["Link"]: - """ - Convert an anchor element's attributes in a simple repository page to a Link. - """ - href = anchor_attribs.get("href") - if not href: - return None - - url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) - pyrequire = anchor_attribs.get("data-requires-python") - yanked_reason = anchor_attribs.get("data-yanked") - - # PEP 714: Indexes must use the name data-core-metadata, but - # clients should support the old name as a fallback for compatibility. - metadata_info = anchor_attribs.get("data-core-metadata") - if metadata_info is None: - metadata_info = anchor_attribs.get("data-dist-info-metadata") - # The metadata info value may be the string "true", or a string of - # the form "hashname=hashval" - if metadata_info == "true": - # The file exists, but there are no hashes - metadata_file_data = MetadataFile(None) - elif metadata_info is None: - # The file does not exist - metadata_file_data = None - else: - # The file exists, and hashes have been supplied - hashname, sep, hashval = metadata_info.partition("=") - if sep == "=": - metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) - else: - # Error - data is wrong. Treat as no hashes supplied. - logger.debug( - "Index returned invalid data-dist-info-metadata value: %s", - metadata_info, - ) - metadata_file_data = MetadataFile(None) - - return cls( - url, - comes_from=page_url, - requires_python=pyrequire, - yanked_reason=yanked_reason, - metadata_file_data=metadata_file_data, - ) - - def __str__(self) -> str: - if self.requires_python: - rp = f" (requires-python:{self.requires_python})" - else: - rp = "" - if self.comes_from: - return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" - else: - return redact_auth_from_url(str(self._url)) - - def __repr__(self) -> str: - return f"" - - @property - def url(self) -> str: - return self._url - - @property - def filename(self) -> str: - path = self.path.rstrip("/") - name = posixpath.basename(path) - if not name: - # Make sure we don't leak auth information if the netloc - # includes a username and password. - netloc, user_pass = split_auth_from_netloc(self.netloc) - return netloc - - name = urllib.parse.unquote(name) - assert name, f"URL {self._url!r} produced no filename" - return name - - @property - def file_path(self) -> str: - return url_to_path(self.url) - - @property - def scheme(self) -> str: - return self._parsed_url.scheme - - @property - def netloc(self) -> str: - """ - This can contain auth information. - """ - return self._parsed_url.netloc - - @property - def path(self) -> str: - return urllib.parse.unquote(self._parsed_url.path) - - def splitext(self) -> Tuple[str, str]: - return splitext(posixpath.basename(self.path.rstrip("/"))) - - @property - def ext(self) -> str: - return self.splitext()[1] - - @property - def url_without_fragment(self) -> str: - scheme, netloc, path, query, fragment = self._parsed_url - return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) - - _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") - - # Per PEP 508. - _project_name_re = re.compile( - r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE - ) - - def _egg_fragment(self) -> Optional[str]: - match = self._egg_fragment_re.search(self._url) - if not match: - return None - - # An egg fragment looks like a PEP 508 project name, along with - # an optional extras specifier. Anything else is invalid. - project_name = match.group(1) - if not self._project_name_re.match(project_name): - deprecated( - reason=f"{self} contains an egg fragment with a non-PEP 508 name", - replacement="to use the req @ url syntax, and remove the egg fragment", - gone_in="25.0", - issue=11617, - ) - - return project_name - - _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") - - @property - def subdirectory_fragment(self) -> Optional[str]: - match = self._subdirectory_fragment_re.search(self._url) - if not match: - return None - return match.group(1) - - def metadata_link(self) -> Optional["Link"]: - """Return a link to the associated core metadata file (if any).""" - if self.metadata_file_data is None: - return None - metadata_url = f"{self.url_without_fragment}.metadata" - if self.metadata_file_data.hashes is None: - return Link(metadata_url) - return Link(metadata_url, hashes=self.metadata_file_data.hashes) - - def as_hashes(self) -> Hashes: - return Hashes({k: [v] for k, v in self._hashes.items()}) - - @property - def hash(self) -> Optional[str]: - return next(iter(self._hashes.values()), None) - - @property - def hash_name(self) -> Optional[str]: - return next(iter(self._hashes), None) - - @property - def show_url(self) -> str: - return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) - - @property - def is_file(self) -> bool: - return self.scheme == "file" - - def is_existing_dir(self) -> bool: - return self.is_file and os.path.isdir(self.file_path) - - @property - def is_wheel(self) -> bool: - return self.ext == WHEEL_EXTENSION - - @property - def is_vcs(self) -> bool: - from pip._internal.vcs import vcs - - return self.scheme in vcs.all_schemes - - @property - def is_yanked(self) -> bool: - return self.yanked_reason is not None - - @property - def has_hash(self) -> bool: - return bool(self._hashes) - - def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: - """ - Return True if the link has a hash and it is allowed by `hashes`. - """ - if hashes is None: - return False - return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) - - -class _CleanResult(NamedTuple): - """Convert link for equivalency check. - - This is used in the resolver to check whether two URL-specified requirements - likely point to the same distribution and can be considered equivalent. This - equivalency logic avoids comparing URLs literally, which can be too strict - (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. - - Currently this does three things: - - 1. Drop the basic auth part. This is technically wrong since a server can - serve different content based on auth, but if it does that, it is even - impossible to guarantee two URLs without auth are equivalent, since - the user can input different auth information when prompted. So the - practical solution is to assume the auth doesn't affect the response. - 2. Parse the query to avoid the ordering issue. Note that ordering under the - same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are - still considered different. - 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and - hash values, since it should have no impact the downloaded content. Note - that this drops the "egg=" part historically used to denote the requested - project (and extras), which is wrong in the strictest sense, but too many - people are supplying it inconsistently to cause superfluous resolution - conflicts, so we choose to also ignore them. - """ - - parsed: urllib.parse.SplitResult - query: Dict[str, List[str]] - subdirectory: str - hashes: Dict[str, str] - - -def _clean_link(link: Link) -> _CleanResult: - parsed = link._parsed_url - netloc = parsed.netloc.rsplit("@", 1)[-1] - # According to RFC 8089, an empty host in file: means localhost. - if parsed.scheme == "file" and not netloc: - netloc = "localhost" - fragment = urllib.parse.parse_qs(parsed.fragment) - if "egg" in fragment: - logger.debug("Ignoring egg= fragment in %s", link) - try: - # If there are multiple subdirectory values, use the first one. - # This matches the behavior of Link.subdirectory_fragment. - subdirectory = fragment["subdirectory"][0] - except (IndexError, KeyError): - subdirectory = "" - # If there are multiple hash values under the same algorithm, use the - # first one. This matches the behavior of Link.hash_value. - hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} - return _CleanResult( - parsed=parsed._replace(netloc=netloc, query="", fragment=""), - query=urllib.parse.parse_qs(parsed.query), - subdirectory=subdirectory, - hashes=hashes, - ) - - -@functools.lru_cache(maxsize=None) -def links_equivalent(link1: Link, link2: Link) -> bool: - return _clean_link(link1) == _clean_link(link2) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py deleted file mode 100644 index f51190a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -For types associated with installation schemes. - -For a general overview of available schemes and their context, see -https://docs.python.org/3/install/index.html#alternate-installation. -""" - - -SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] - - -class Scheme: - """A Scheme holds paths which are used as the base directories for - artifacts associated with a Python package. - """ - - __slots__ = SCHEME_KEYS - - def __init__( - self, - platlib: str, - purelib: str, - headers: str, - scripts: str, - data: str, - ) -> None: - self.platlib = platlib - self.purelib = purelib - self.headers = headers - self.scripts = scripts - self.data = data diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py deleted file mode 100644 index fe61e81..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py +++ /dev/null @@ -1,132 +0,0 @@ -import itertools -import logging -import os -import posixpath -import urllib.parse -from typing import List - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.models.index import PyPI -from pip._internal.utils.compat import has_tls -from pip._internal.utils.misc import normalize_path, redact_auth_from_url - -logger = logging.getLogger(__name__) - - -class SearchScope: - - """ - Encapsulates the locations that pip is configured to search. - """ - - __slots__ = ["find_links", "index_urls", "no_index"] - - @classmethod - def create( - cls, - find_links: List[str], - index_urls: List[str], - no_index: bool, - ) -> "SearchScope": - """ - Create a SearchScope object after normalizing the `find_links`. - """ - # Build find_links. If an argument starts with ~, it may be - # a local file relative to a home directory. So try normalizing - # it and if it exists, use the normalized version. - # This is deliberately conservative - it might be fine just to - # blindly normalize anything starting with a ~... - built_find_links: List[str] = [] - for link in find_links: - if link.startswith("~"): - new_link = normalize_path(link) - if os.path.exists(new_link): - link = new_link - built_find_links.append(link) - - # If we don't have TLS enabled, then WARN if anyplace we're looking - # relies on TLS. - if not has_tls(): - for link in itertools.chain(index_urls, built_find_links): - parsed = urllib.parse.urlparse(link) - if parsed.scheme == "https": - logger.warning( - "pip is configured with locations that require " - "TLS/SSL, however the ssl module in Python is not " - "available." - ) - break - - return cls( - find_links=built_find_links, - index_urls=index_urls, - no_index=no_index, - ) - - def __init__( - self, - find_links: List[str], - index_urls: List[str], - no_index: bool, - ) -> None: - self.find_links = find_links - self.index_urls = index_urls - self.no_index = no_index - - def get_formatted_locations(self) -> str: - lines = [] - redacted_index_urls = [] - if self.index_urls and self.index_urls != [PyPI.simple_url]: - for url in self.index_urls: - redacted_index_url = redact_auth_from_url(url) - - # Parse the URL - purl = urllib.parse.urlsplit(redacted_index_url) - - # URL is generally invalid if scheme and netloc is missing - # there are issues with Python and URL parsing, so this test - # is a bit crude. See bpo-20271, bpo-23505. Python doesn't - # always parse invalid URLs correctly - it should raise - # exceptions for malformed URLs - if not purl.scheme and not purl.netloc: - logger.warning( - 'The index url "%s" seems invalid, please provide a scheme.', - redacted_index_url, - ) - - redacted_index_urls.append(redacted_index_url) - - lines.append( - "Looking in indexes: {}".format(", ".join(redacted_index_urls)) - ) - - if self.find_links: - lines.append( - "Looking in links: {}".format( - ", ".join(redact_auth_from_url(url) for url in self.find_links) - ) - ) - return "\n".join(lines) - - def get_index_urls_locations(self, project_name: str) -> List[str]: - """Returns the locations found via self.index_urls - - Checks the url_name on the main (first in the list) index and - use this url_name to produce all locations - """ - - def mkurl_pypi_url(url: str) -> str: - loc = posixpath.join( - url, urllib.parse.quote(canonicalize_name(project_name)) - ) - # For maximum compatibility with easy_install, ensure the path - # ends in a trailing slash. Although this isn't in the spec - # (and PyPI can handle it without the slash) some other index - # implementations might break if they relied on easy_install's - # behavior. - if not loc.endswith("/"): - loc = loc + "/" - return loc - - return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py deleted file mode 100644 index 977bc4c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py +++ /dev/null @@ -1,51 +0,0 @@ -from typing import Optional - -from pip._internal.models.format_control import FormatControl - - -class SelectionPreferences: - """ - Encapsulates the candidate selection preferences for downloading - and installing files. - """ - - __slots__ = [ - "allow_yanked", - "allow_all_prereleases", - "format_control", - "prefer_binary", - "ignore_requires_python", - ] - - # Don't include an allow_yanked default value to make sure each call - # site considers whether yanked releases are allowed. This also causes - # that decision to be made explicit in the calling code, which helps - # people when reading the code. - def __init__( - self, - allow_yanked: bool, - allow_all_prereleases: bool = False, - format_control: Optional[FormatControl] = None, - prefer_binary: bool = False, - ignore_requires_python: Optional[bool] = None, - ) -> None: - """Create a SelectionPreferences object. - - :param allow_yanked: Whether files marked as yanked (in the sense - of PEP 592) are permitted to be candidates for install. - :param format_control: A FormatControl object or None. Used to control - the selection of source packages / binary packages when consulting - the index and links. - :param prefer_binary: Whether to prefer an old, but valid, binary - dist over a new source dist. - :param ignore_requires_python: Whether to ignore incompatible - "Requires-Python" values in links. Defaults to False. - """ - if ignore_requires_python is None: - ignore_requires_python = False - - self.allow_yanked = allow_yanked - self.allow_all_prereleases = allow_all_prereleases - self.format_control = format_control - self.prefer_binary = prefer_binary - self.ignore_requires_python = ignore_requires_python diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/target_python.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/target_python.py deleted file mode 100644 index 67ea5da..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/target_python.py +++ /dev/null @@ -1,122 +0,0 @@ -import sys -from typing import List, Optional, Set, Tuple - -from pip._vendor.packaging.tags import Tag - -from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot -from pip._internal.utils.misc import normalize_version_info - - -class TargetPython: - - """ - Encapsulates the properties of a Python interpreter one is targeting - for a package install, download, etc. - """ - - __slots__ = [ - "_given_py_version_info", - "abis", - "implementation", - "platforms", - "py_version", - "py_version_info", - "_valid_tags", - "_valid_tags_set", - ] - - def __init__( - self, - platforms: Optional[List[str]] = None, - py_version_info: Optional[Tuple[int, ...]] = None, - abis: Optional[List[str]] = None, - implementation: Optional[str] = None, - ) -> None: - """ - :param platforms: A list of strings or None. If None, searches for - packages that are supported by the current system. Otherwise, will - find packages that can be built on the platforms passed in. These - packages will only be downloaded for distribution: they will - not be built locally. - :param py_version_info: An optional tuple of ints representing the - Python version information to use (e.g. `sys.version_info[:3]`). - This can have length 1, 2, or 3 when provided. - :param abis: A list of strings or None. This is passed to - compatibility_tags.py's get_supported() function as is. - :param implementation: A string or None. This is passed to - compatibility_tags.py's get_supported() function as is. - """ - # Store the given py_version_info for when we call get_supported(). - self._given_py_version_info = py_version_info - - if py_version_info is None: - py_version_info = sys.version_info[:3] - else: - py_version_info = normalize_version_info(py_version_info) - - py_version = ".".join(map(str, py_version_info[:2])) - - self.abis = abis - self.implementation = implementation - self.platforms = platforms - self.py_version = py_version - self.py_version_info = py_version_info - - # This is used to cache the return value of get_(un)sorted_tags. - self._valid_tags: Optional[List[Tag]] = None - self._valid_tags_set: Optional[Set[Tag]] = None - - def format_given(self) -> str: - """ - Format the given, non-None attributes for display. - """ - display_version = None - if self._given_py_version_info is not None: - display_version = ".".join( - str(part) for part in self._given_py_version_info - ) - - key_values = [ - ("platforms", self.platforms), - ("version_info", display_version), - ("abis", self.abis), - ("implementation", self.implementation), - ] - return " ".join( - f"{key}={value!r}" for key, value in key_values if value is not None - ) - - def get_sorted_tags(self) -> List[Tag]: - """ - Return the supported PEP 425 tags to check wheel candidates against. - - The tags are returned in order of preference (most preferred first). - """ - if self._valid_tags is None: - # Pass versions=None if no py_version_info was given since - # versions=None uses special default logic. - py_version_info = self._given_py_version_info - if py_version_info is None: - version = None - else: - version = version_info_to_nodot(py_version_info) - - tags = get_supported( - version=version, - platforms=self.platforms, - abis=self.abis, - impl=self.implementation, - ) - self._valid_tags = tags - - return self._valid_tags - - def get_unsorted_tags(self) -> Set[Tag]: - """Exactly the same as get_sorted_tags, but returns a set. - - This is important for performance. - """ - if self._valid_tags_set is None: - self._valid_tags_set = set(self.get_sorted_tags()) - - return self._valid_tags_set diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py deleted file mode 100644 index a5dc12b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py +++ /dev/null @@ -1,92 +0,0 @@ -"""Represents a wheel file and provides access to the various parts of the -name that have meaning. -""" -import re -from typing import Dict, Iterable, List - -from pip._vendor.packaging.tags import Tag - -from pip._internal.exceptions import InvalidWheelFilename - - -class Wheel: - """A wheel file""" - - wheel_file_re = re.compile( - r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) - ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) - \.whl|\.dist-info)$""", - re.VERBOSE, - ) - - def __init__(self, filename: str) -> None: - """ - :raises InvalidWheelFilename: when the filename is invalid for a wheel - """ - wheel_info = self.wheel_file_re.match(filename) - if not wheel_info: - raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") - self.filename = filename - self.name = wheel_info.group("name").replace("_", "-") - # we'll assume "_" means "-" due to wheel naming scheme - # (https://github.com/pypa/pip/issues/1150) - self.version = wheel_info.group("ver").replace("_", "-") - self.build_tag = wheel_info.group("build") - self.pyversions = wheel_info.group("pyver").split(".") - self.abis = wheel_info.group("abi").split(".") - self.plats = wheel_info.group("plat").split(".") - - # All the tag combinations from this file - self.file_tags = { - Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats - } - - def get_formatted_file_tags(self) -> List[str]: - """Return the wheel's tags as a sorted list of strings.""" - return sorted(str(tag) for tag in self.file_tags) - - def support_index_min(self, tags: List[Tag]) -> int: - """Return the lowest index that one of the wheel's file_tag combinations - achieves in the given list of supported tags. - - For example, if there are 8 supported tags and one of the file tags - is first in the list, then return 0. - - :param tags: the PEP 425 tags to check the wheel against, in order - with most preferred first. - - :raises ValueError: If none of the wheel's file tags match one of - the supported tags. - """ - try: - return next(i for i, t in enumerate(tags) if t in self.file_tags) - except StopIteration: - raise ValueError() - - def find_most_preferred_tag( - self, tags: List[Tag], tag_to_priority: Dict[Tag, int] - ) -> int: - """Return the priority of the most preferred tag that one of the wheel's file - tag combinations achieves in the given list of supported tags using the given - tag_to_priority mapping, where lower priorities are more-preferred. - - This is used in place of support_index_min in some cases in order to avoid - an expensive linear scan of a large list of tags. - - :param tags: the PEP 425 tags to check the wheel against. - :param tag_to_priority: a mapping from tag to priority of that tag, where - lower is more preferred. - - :raises ValueError: If none of the wheel's file tags match one of - the supported tags. - """ - return min( - tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority - ) - - def supported(self, tags: Iterable[Tag]) -> bool: - """Return whether the wheel is compatible with one of the given tags. - - :param tags: the PEP 425 tags to check the wheel against. - """ - return not self.file_tags.isdisjoint(tags) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py deleted file mode 100644 index b51bde9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -"""Contains purely network-related utilities. -""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e46612e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc deleted file mode 100644 index bf6d3d8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index 453e010..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc deleted file mode 100644 index bb9c104..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc deleted file mode 100644 index 023654b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc deleted file mode 100644 index 98ee74e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 0777a46..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc deleted file mode 100644 index 8c0fbef..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/auth.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/auth.py deleted file mode 100644 index 94a82fa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/auth.py +++ /dev/null @@ -1,561 +0,0 @@ -"""Network Authentication Helpers - -Contains interface (MultiDomainBasicAuth) and associated glue code for -providing credentials in the context of network requests. -""" -import logging -import os -import shutil -import subprocess -import sysconfig -import typing -import urllib.parse -from abc import ABC, abstractmethod -from functools import lru_cache -from os.path import commonprefix -from pathlib import Path -from typing import Any, Dict, List, NamedTuple, Optional, Tuple - -from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth -from pip._vendor.requests.models import Request, Response -from pip._vendor.requests.utils import get_netrc_auth - -from pip._internal.utils.logging import getLogger -from pip._internal.utils.misc import ( - ask, - ask_input, - ask_password, - remove_auth_from_url, - split_auth_netloc_from_url, -) -from pip._internal.vcs.versioncontrol import AuthInfo - -logger = getLogger(__name__) - -KEYRING_DISABLED = False - - -class Credentials(NamedTuple): - url: str - username: str - password: str - - -class KeyRingBaseProvider(ABC): - """Keyring base provider interface""" - - has_keyring: bool - - @abstractmethod - def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: - ... - - @abstractmethod - def save_auth_info(self, url: str, username: str, password: str) -> None: - ... - - -class KeyRingNullProvider(KeyRingBaseProvider): - """Keyring null provider""" - - has_keyring = False - - def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: - return None - - def save_auth_info(self, url: str, username: str, password: str) -> None: - return None - - -class KeyRingPythonProvider(KeyRingBaseProvider): - """Keyring interface which uses locally imported `keyring`""" - - has_keyring = True - - def __init__(self) -> None: - import keyring - - self.keyring = keyring - - def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: - # Support keyring's get_credential interface which supports getting - # credentials without a username. This is only available for - # keyring>=15.2.0. - if hasattr(self.keyring, "get_credential"): - logger.debug("Getting credentials from keyring for %s", url) - cred = self.keyring.get_credential(url, username) - if cred is not None: - return cred.username, cred.password - return None - - if username is not None: - logger.debug("Getting password from keyring for %s", url) - password = self.keyring.get_password(url, username) - if password: - return username, password - return None - - def save_auth_info(self, url: str, username: str, password: str) -> None: - self.keyring.set_password(url, username, password) - - -class KeyRingCliProvider(KeyRingBaseProvider): - """Provider which uses `keyring` cli - - Instead of calling the keyring package installed alongside pip - we call keyring on the command line which will enable pip to - use which ever installation of keyring is available first in - PATH. - """ - - has_keyring = True - - def __init__(self, cmd: str) -> None: - self.keyring = cmd - - def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: - # This is the default implementation of keyring.get_credential - # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 - if username is not None: - password = self._get_password(url, username) - if password is not None: - return username, password - return None - - def save_auth_info(self, url: str, username: str, password: str) -> None: - return self._set_password(url, username, password) - - def _get_password(self, service_name: str, username: str) -> Optional[str]: - """Mirror the implementation of keyring.get_password using cli""" - if self.keyring is None: - return None - - cmd = [self.keyring, "get", service_name, username] - env = os.environ.copy() - env["PYTHONIOENCODING"] = "utf-8" - res = subprocess.run( - cmd, - stdin=subprocess.DEVNULL, - stdout=subprocess.PIPE, - env=env, - ) - if res.returncode: - return None - return res.stdout.decode("utf-8").strip(os.linesep) - - def _set_password(self, service_name: str, username: str, password: str) -> None: - """Mirror the implementation of keyring.set_password using cli""" - if self.keyring is None: - return None - env = os.environ.copy() - env["PYTHONIOENCODING"] = "utf-8" - subprocess.run( - [self.keyring, "set", service_name, username], - input=f"{password}{os.linesep}".encode("utf-8"), - env=env, - check=True, - ) - return None - - -@lru_cache(maxsize=None) -def get_keyring_provider(provider: str) -> KeyRingBaseProvider: - logger.verbose("Keyring provider requested: %s", provider) - - # keyring has previously failed and been disabled - if KEYRING_DISABLED: - provider = "disabled" - if provider in ["import", "auto"]: - try: - impl = KeyRingPythonProvider() - logger.verbose("Keyring provider set: import") - return impl - except ImportError: - pass - except Exception as exc: - # In the event of an unexpected exception - # we should warn the user - msg = "Installed copy of keyring fails with exception %s" - if provider == "auto": - msg = msg + ", trying to find a keyring executable as a fallback" - logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) - if provider in ["subprocess", "auto"]: - cli = shutil.which("keyring") - if cli and cli.startswith(sysconfig.get_path("scripts")): - # all code within this function is stolen from shutil.which implementation - @typing.no_type_check - def PATH_as_shutil_which_determines_it() -> str: - path = os.environ.get("PATH", None) - if path is None: - try: - path = os.confstr("CS_PATH") - except (AttributeError, ValueError): - # os.confstr() or CS_PATH is not available - path = os.defpath - # bpo-35755: Don't use os.defpath if the PATH environment variable is - # set to an empty string - - return path - - scripts = Path(sysconfig.get_path("scripts")) - - paths = [] - for path in PATH_as_shutil_which_determines_it().split(os.pathsep): - p = Path(path) - try: - if not p.samefile(scripts): - paths.append(path) - except FileNotFoundError: - pass - - path = os.pathsep.join(paths) - - cli = shutil.which("keyring", path=path) - - if cli: - logger.verbose("Keyring provider set: subprocess with executable %s", cli) - return KeyRingCliProvider(cli) - - logger.verbose("Keyring provider set: disabled") - return KeyRingNullProvider() - - -class MultiDomainBasicAuth(AuthBase): - def __init__( - self, - prompting: bool = True, - index_urls: Optional[List[str]] = None, - keyring_provider: str = "auto", - ) -> None: - self.prompting = prompting - self.index_urls = index_urls - self.keyring_provider = keyring_provider # type: ignore[assignment] - self.passwords: Dict[str, AuthInfo] = {} - # When the user is prompted to enter credentials and keyring is - # available, we will offer to save them. If the user accepts, - # this value is set to the credentials they entered. After the - # request authenticates, the caller should call - # ``save_credentials`` to save these. - self._credentials_to_save: Optional[Credentials] = None - - @property - def keyring_provider(self) -> KeyRingBaseProvider: - return get_keyring_provider(self._keyring_provider) - - @keyring_provider.setter - def keyring_provider(self, provider: str) -> None: - # The free function get_keyring_provider has been decorated with - # functools.cache. If an exception occurs in get_keyring_auth that - # cache will be cleared and keyring disabled, take that into account - # if you want to remove this indirection. - self._keyring_provider = provider - - @property - def use_keyring(self) -> bool: - # We won't use keyring when --no-input is passed unless - # a specific provider is requested because it might require - # user interaction - return self.prompting or self._keyring_provider not in ["auto", "disabled"] - - def _get_keyring_auth( - self, - url: Optional[str], - username: Optional[str], - ) -> Optional[AuthInfo]: - """Return the tuple auth for a given url from keyring.""" - # Do nothing if no url was provided - if not url: - return None - - try: - return self.keyring_provider.get_auth_info(url, username) - except Exception as exc: - logger.warning( - "Keyring is skipped due to an exception: %s", - str(exc), - ) - global KEYRING_DISABLED - KEYRING_DISABLED = True - get_keyring_provider.cache_clear() - return None - - def _get_index_url(self, url: str) -> Optional[str]: - """Return the original index URL matching the requested URL. - - Cached or dynamically generated credentials may work against - the original index URL rather than just the netloc. - - The provided url should have had its username and password - removed already. If the original index url had credentials then - they will be included in the return value. - - Returns None if no matching index was found, or if --no-index - was specified by the user. - """ - if not url or not self.index_urls: - return None - - url = remove_auth_from_url(url).rstrip("/") + "/" - parsed_url = urllib.parse.urlsplit(url) - - candidates = [] - - for index in self.index_urls: - index = index.rstrip("/") + "/" - parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) - if parsed_url == parsed_index: - return index - - if parsed_url.netloc != parsed_index.netloc: - continue - - candidate = urllib.parse.urlsplit(index) - candidates.append(candidate) - - if not candidates: - return None - - candidates.sort( - reverse=True, - key=lambda candidate: commonprefix( - [ - parsed_url.path, - candidate.path, - ] - ).rfind("/"), - ) - - return urllib.parse.urlunsplit(candidates[0]) - - def _get_new_credentials( - self, - original_url: str, - *, - allow_netrc: bool = True, - allow_keyring: bool = False, - ) -> AuthInfo: - """Find and return credentials for the specified URL.""" - # Split the credentials and netloc from the url. - url, netloc, url_user_password = split_auth_netloc_from_url( - original_url, - ) - - # Start with the credentials embedded in the url - username, password = url_user_password - if username is not None and password is not None: - logger.debug("Found credentials in url for %s", netloc) - return url_user_password - - # Find a matching index url for this request - index_url = self._get_index_url(url) - if index_url: - # Split the credentials from the url. - index_info = split_auth_netloc_from_url(index_url) - if index_info: - index_url, _, index_url_user_password = index_info - logger.debug("Found index url %s", index_url) - - # If an index URL was found, try its embedded credentials - if index_url and index_url_user_password[0] is not None: - username, password = index_url_user_password - if username is not None and password is not None: - logger.debug("Found credentials in index url for %s", netloc) - return index_url_user_password - - # Get creds from netrc if we still don't have them - if allow_netrc: - netrc_auth = get_netrc_auth(original_url) - if netrc_auth: - logger.debug("Found credentials in netrc for %s", netloc) - return netrc_auth - - # If we don't have a password and keyring is available, use it. - if allow_keyring: - # The index url is more specific than the netloc, so try it first - # fmt: off - kr_auth = ( - self._get_keyring_auth(index_url, username) or - self._get_keyring_auth(netloc, username) - ) - # fmt: on - if kr_auth: - logger.debug("Found credentials in keyring for %s", netloc) - return kr_auth - - return username, password - - def _get_url_and_credentials( - self, original_url: str - ) -> Tuple[str, Optional[str], Optional[str]]: - """Return the credentials to use for the provided URL. - - If allowed, netrc and keyring may be used to obtain the - correct credentials. - - Returns (url_without_credentials, username, password). Note - that even if the original URL contains credentials, this - function may return a different username and password. - """ - url, netloc, _ = split_auth_netloc_from_url(original_url) - - # Try to get credentials from original url - username, password = self._get_new_credentials(original_url) - - # If credentials not found, use any stored credentials for this netloc. - # Do this if either the username or the password is missing. - # This accounts for the situation in which the user has specified - # the username in the index url, but the password comes from keyring. - if (username is None or password is None) and netloc in self.passwords: - un, pw = self.passwords[netloc] - # It is possible that the cached credentials are for a different username, - # in which case the cache should be ignored. - if username is None or username == un: - username, password = un, pw - - if username is not None or password is not None: - # Convert the username and password if they're None, so that - # this netloc will show up as "cached" in the conditional above. - # Further, HTTPBasicAuth doesn't accept None, so it makes sense to - # cache the value that is going to be used. - username = username or "" - password = password or "" - - # Store any acquired credentials. - self.passwords[netloc] = (username, password) - - assert ( - # Credentials were found - (username is not None and password is not None) - # Credentials were not found - or (username is None and password is None) - ), f"Could not load credentials from url: {original_url}" - - return url, username, password - - def __call__(self, req: Request) -> Request: - # Get credentials for this request - url, username, password = self._get_url_and_credentials(req.url) - - # Set the url of the request to the url without any credentials - req.url = url - - if username is not None and password is not None: - # Send the basic auth with this request - req = HTTPBasicAuth(username, password)(req) - - # Attach a hook to handle 401 responses - req.register_hook("response", self.handle_401) - - return req - - # Factored out to allow for easy patching in tests - def _prompt_for_password( - self, netloc: str - ) -> Tuple[Optional[str], Optional[str], bool]: - username = ask_input(f"User for {netloc}: ") if self.prompting else None - if not username: - return None, None, False - if self.use_keyring: - auth = self._get_keyring_auth(netloc, username) - if auth and auth[0] is not None and auth[1] is not None: - return auth[0], auth[1], False - password = ask_password("Password: ") - return username, password, True - - # Factored out to allow for easy patching in tests - def _should_save_password_to_keyring(self) -> bool: - if ( - not self.prompting - or not self.use_keyring - or not self.keyring_provider.has_keyring - ): - return False - return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" - - def handle_401(self, resp: Response, **kwargs: Any) -> Response: - # We only care about 401 responses, anything else we want to just - # pass through the actual response - if resp.status_code != 401: - return resp - - username, password = None, None - - # Query the keyring for credentials: - if self.use_keyring: - username, password = self._get_new_credentials( - resp.url, - allow_netrc=False, - allow_keyring=True, - ) - - # We are not able to prompt the user so simply return the response - if not self.prompting and not username and not password: - return resp - - parsed = urllib.parse.urlparse(resp.url) - - # Prompt the user for a new username and password - save = False - if not username and not password: - username, password, save = self._prompt_for_password(parsed.netloc) - - # Store the new username and password to use for future requests - self._credentials_to_save = None - if username is not None and password is not None: - self.passwords[parsed.netloc] = (username, password) - - # Prompt to save the password to keyring - if save and self._should_save_password_to_keyring(): - self._credentials_to_save = Credentials( - url=parsed.netloc, - username=username, - password=password, - ) - - # Consume content and release the original connection to allow our new - # request to reuse the same one. - # The result of the assignment isn't used, it's just needed to consume - # the content. - _ = resp.content - resp.raw.release_conn() - - # Add our new username and password to the request - req = HTTPBasicAuth(username or "", password or "")(resp.request) - req.register_hook("response", self.warn_on_401) - - # On successful request, save the credentials that were used to - # keyring. (Note that if the user responded "no" above, this member - # is not set and nothing will be saved.) - if self._credentials_to_save: - req.register_hook("response", self.save_credentials) - - # Send our new request - new_resp = resp.connection.send(req, **kwargs) - new_resp.history.append(resp) - - return new_resp - - def warn_on_401(self, resp: Response, **kwargs: Any) -> None: - """Response callback to warn about incorrect credentials.""" - if resp.status_code == 401: - logger.warning( - "401 Error, Credentials not correct for %s", - resp.request.url, - ) - - def save_credentials(self, resp: Response, **kwargs: Any) -> None: - """Response callback to save credentials on success.""" - assert ( - self.keyring_provider.has_keyring - ), "should never reach here without keyring" - - creds = self._credentials_to_save - self._credentials_to_save = None - if creds and resp.status_code < 400: - try: - logger.info("Saving credentials to keyring") - self.keyring_provider.save_auth_info( - creds.url, creds.username, creds.password - ) - except Exception: - logger.exception("Failed to save credentials") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/cache.py deleted file mode 100644 index 4d0fb54..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/cache.py +++ /dev/null @@ -1,106 +0,0 @@ -"""HTTP cache implementation. -""" - -import os -from contextlib import contextmanager -from datetime import datetime -from typing import BinaryIO, Generator, Optional, Union - -from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache -from pip._vendor.cachecontrol.caches import SeparateBodyFileCache -from pip._vendor.requests.models import Response - -from pip._internal.utils.filesystem import adjacent_tmp_file, replace -from pip._internal.utils.misc import ensure_dir - - -def is_from_cache(response: Response) -> bool: - return getattr(response, "from_cache", False) - - -@contextmanager -def suppressed_cache_errors() -> Generator[None, None, None]: - """If we can't access the cache then we can just skip caching and process - requests as if caching wasn't enabled. - """ - try: - yield - except OSError: - pass - - -class SafeFileCache(SeparateBodyBaseCache): - """ - A file based cache which is safe to use even when the target directory may - not be accessible or writable. - - There is a race condition when two processes try to write and/or read the - same entry at the same time, since each entry consists of two separate - files (https://github.com/psf/cachecontrol/issues/324). We therefore have - additional logic that makes sure that both files to be present before - returning an entry; this fixes the read side of the race condition. - - For the write side, we assume that the server will only ever return the - same data for the same URL, which ought to be the case for files pip is - downloading. PyPI does not have a mechanism to swap out a wheel for - another wheel, for example. If this assumption is not true, the - CacheControl issue will need to be fixed. - """ - - def __init__(self, directory: str) -> None: - assert directory is not None, "Cache directory must not be None." - super().__init__() - self.directory = directory - - def _get_cache_path(self, name: str) -> str: - # From cachecontrol.caches.file_cache.FileCache._fn, brought into our - # class for backwards-compatibility and to avoid using a non-public - # method. - hashed = SeparateBodyFileCache.encode(name) - parts = list(hashed[:5]) + [hashed] - return os.path.join(self.directory, *parts) - - def get(self, key: str) -> Optional[bytes]: - # The cache entry is only valid if both metadata and body exist. - metadata_path = self._get_cache_path(key) - body_path = metadata_path + ".body" - if not (os.path.exists(metadata_path) and os.path.exists(body_path)): - return None - with suppressed_cache_errors(): - with open(metadata_path, "rb") as f: - return f.read() - - def _write(self, path: str, data: bytes) -> None: - with suppressed_cache_errors(): - ensure_dir(os.path.dirname(path)) - - with adjacent_tmp_file(path) as f: - f.write(data) - - replace(f.name, path) - - def set( - self, key: str, value: bytes, expires: Union[int, datetime, None] = None - ) -> None: - path = self._get_cache_path(key) - self._write(path, value) - - def delete(self, key: str) -> None: - path = self._get_cache_path(key) - with suppressed_cache_errors(): - os.remove(path) - with suppressed_cache_errors(): - os.remove(path + ".body") - - def get_body(self, key: str) -> Optional[BinaryIO]: - # The cache entry is only valid if both metadata and body exist. - metadata_path = self._get_cache_path(key) - body_path = metadata_path + ".body" - if not (os.path.exists(metadata_path) and os.path.exists(body_path)): - return None - with suppressed_cache_errors(): - return open(body_path, "rb") - - def set_body(self, key: str, body: bytes) -> None: - path = self._get_cache_path(key) + ".body" - self._write(path, body) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/download.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/download.py deleted file mode 100644 index d1d4354..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/download.py +++ /dev/null @@ -1,186 +0,0 @@ -"""Download files with progress indicators. -""" -import email.message -import logging -import mimetypes -import os -from typing import Iterable, Optional, Tuple - -from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response - -from pip._internal.cli.progress_bars import get_download_progress_renderer -from pip._internal.exceptions import NetworkConnectionError -from pip._internal.models.index import PyPI -from pip._internal.models.link import Link -from pip._internal.network.cache import is_from_cache -from pip._internal.network.session import PipSession -from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks -from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext - -logger = logging.getLogger(__name__) - - -def _get_http_response_size(resp: Response) -> Optional[int]: - try: - return int(resp.headers["content-length"]) - except (ValueError, KeyError, TypeError): - return None - - -def _prepare_download( - resp: Response, - link: Link, - progress_bar: str, -) -> Iterable[bytes]: - total_length = _get_http_response_size(resp) - - if link.netloc == PyPI.file_storage_domain: - url = link.show_url - else: - url = link.url_without_fragment - - logged_url = redact_auth_from_url(url) - - if total_length: - logged_url = f"{logged_url} ({format_size(total_length)})" - - if is_from_cache(resp): - logger.info("Using cached %s", logged_url) - else: - logger.info("Downloading %s", logged_url) - - if logger.getEffectiveLevel() > logging.INFO: - show_progress = False - elif is_from_cache(resp): - show_progress = False - elif not total_length: - show_progress = True - elif total_length > (40 * 1000): - show_progress = True - else: - show_progress = False - - chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) - - if not show_progress: - return chunks - - renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) - return renderer(chunks) - - -def sanitize_content_filename(filename: str) -> str: - """ - Sanitize the "filename" value from a Content-Disposition header. - """ - return os.path.basename(filename) - - -def parse_content_disposition(content_disposition: str, default_filename: str) -> str: - """ - Parse the "filename" value from a Content-Disposition header, and - return the default filename if the result is empty. - """ - m = email.message.Message() - m["content-type"] = content_disposition - filename = m.get_param("filename") - if filename: - # We need to sanitize the filename to prevent directory traversal - # in case the filename contains ".." path parts. - filename = sanitize_content_filename(str(filename)) - return filename or default_filename - - -def _get_http_response_filename(resp: Response, link: Link) -> str: - """Get an ideal filename from the given HTTP response, falling back to - the link filename if not provided. - """ - filename = link.filename # fallback - # Have a look at the Content-Disposition header for a better guess - content_disposition = resp.headers.get("content-disposition") - if content_disposition: - filename = parse_content_disposition(content_disposition, filename) - ext: Optional[str] = splitext(filename)[1] - if not ext: - ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) - if ext: - filename += ext - if not ext and link.url != resp.url: - ext = os.path.splitext(resp.url)[1] - if ext: - filename += ext - return filename - - -def _http_get_download(session: PipSession, link: Link) -> Response: - target_url = link.url.split("#", 1)[0] - resp = session.get(target_url, headers=HEADERS, stream=True) - raise_for_status(resp) - return resp - - -class Downloader: - def __init__( - self, - session: PipSession, - progress_bar: str, - ) -> None: - self._session = session - self._progress_bar = progress_bar - - def __call__(self, link: Link, location: str) -> Tuple[str, str]: - """Download the file given by link into location.""" - try: - resp = _http_get_download(self._session, link) - except NetworkConnectionError as e: - assert e.response is not None - logger.critical( - "HTTP error %s while getting %s", e.response.status_code, link - ) - raise - - filename = _get_http_response_filename(resp, link) - filepath = os.path.join(location, filename) - - chunks = _prepare_download(resp, link, self._progress_bar) - with open(filepath, "wb") as content_file: - for chunk in chunks: - content_file.write(chunk) - content_type = resp.headers.get("Content-Type", "") - return filepath, content_type - - -class BatchDownloader: - def __init__( - self, - session: PipSession, - progress_bar: str, - ) -> None: - self._session = session - self._progress_bar = progress_bar - - def __call__( - self, links: Iterable[Link], location: str - ) -> Iterable[Tuple[Link, Tuple[str, str]]]: - """Download the files given by links into location.""" - for link in links: - try: - resp = _http_get_download(self._session, link) - except NetworkConnectionError as e: - assert e.response is not None - logger.critical( - "HTTP error %s while getting %s", - e.response.status_code, - link, - ) - raise - - filename = _get_http_response_filename(resp, link) - filepath = os.path.join(location, filename) - - chunks = _prepare_download(resp, link, self._progress_bar) - with open(filepath, "wb") as content_file: - for chunk in chunks: - content_file.write(chunk) - content_type = resp.headers.get("Content-Type", "") - yield link, (filepath, content_type) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py deleted file mode 100644 index 82ec50d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py +++ /dev/null @@ -1,210 +0,0 @@ -"""Lazy ZIP over HTTP""" - -__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] - -from bisect import bisect_left, bisect_right -from contextlib import contextmanager -from tempfile import NamedTemporaryFile -from typing import Any, Dict, Generator, List, Optional, Tuple -from zipfile import BadZipFile, ZipFile - -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response - -from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution -from pip._internal.network.session import PipSession -from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks - - -class HTTPRangeRequestUnsupported(Exception): - pass - - -def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: - """Return a distribution object from the given wheel URL. - - This uses HTTP range requests to only fetch the portion of the wheel - containing metadata, just enough for the object to be constructed. - If such requests are not supported, HTTPRangeRequestUnsupported - is raised. - """ - with LazyZipOverHTTP(url, session) as zf: - # For read-only ZIP files, ZipFile only needs methods read, - # seek, seekable and tell, not the whole IO protocol. - wheel = MemoryWheel(zf.name, zf) # type: ignore - # After context manager exit, wheel.name - # is an invalid file by intention. - return get_wheel_distribution(wheel, canonicalize_name(name)) - - -class LazyZipOverHTTP: - """File-like object mapped to a ZIP file over HTTP. - - This uses HTTP range requests to lazily fetch the file's content, - which is supposed to be fed to ZipFile. If such requests are not - supported by the server, raise HTTPRangeRequestUnsupported - during initialization. - """ - - def __init__( - self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE - ) -> None: - head = session.head(url, headers=HEADERS) - raise_for_status(head) - assert head.status_code == 200 - self._session, self._url, self._chunk_size = session, url, chunk_size - self._length = int(head.headers["Content-Length"]) - self._file = NamedTemporaryFile() - self.truncate(self._length) - self._left: List[int] = [] - self._right: List[int] = [] - if "bytes" not in head.headers.get("Accept-Ranges", "none"): - raise HTTPRangeRequestUnsupported("range request is not supported") - self._check_zip() - - @property - def mode(self) -> str: - """Opening mode, which is always rb.""" - return "rb" - - @property - def name(self) -> str: - """Path to the underlying file.""" - return self._file.name - - def seekable(self) -> bool: - """Return whether random access is supported, which is True.""" - return True - - def close(self) -> None: - """Close the file.""" - self._file.close() - - @property - def closed(self) -> bool: - """Whether the file is closed.""" - return self._file.closed - - def read(self, size: int = -1) -> bytes: - """Read up to size bytes from the object and return them. - - As a convenience, if size is unspecified or -1, - all bytes until EOF are returned. Fewer than - size bytes may be returned if EOF is reached. - """ - download_size = max(size, self._chunk_size) - start, length = self.tell(), self._length - stop = length if size < 0 else min(start + download_size, length) - start = max(0, stop - download_size) - self._download(start, stop - 1) - return self._file.read(size) - - def readable(self) -> bool: - """Return whether the file is readable, which is True.""" - return True - - def seek(self, offset: int, whence: int = 0) -> int: - """Change stream position and return the new absolute position. - - Seek to offset relative position indicated by whence: - * 0: Start of stream (the default). pos should be >= 0; - * 1: Current position - pos may be negative; - * 2: End of stream - pos usually negative. - """ - return self._file.seek(offset, whence) - - def tell(self) -> int: - """Return the current position.""" - return self._file.tell() - - def truncate(self, size: Optional[int] = None) -> int: - """Resize the stream to the given size in bytes. - - If size is unspecified resize to the current position. - The current stream position isn't changed. - - Return the new file size. - """ - return self._file.truncate(size) - - def writable(self) -> bool: - """Return False.""" - return False - - def __enter__(self) -> "LazyZipOverHTTP": - self._file.__enter__() - return self - - def __exit__(self, *exc: Any) -> None: - self._file.__exit__(*exc) - - @contextmanager - def _stay(self) -> Generator[None, None, None]: - """Return a context manager keeping the position. - - At the end of the block, seek back to original position. - """ - pos = self.tell() - try: - yield - finally: - self.seek(pos) - - def _check_zip(self) -> None: - """Check and download until the file is a valid ZIP.""" - end = self._length - 1 - for start in reversed(range(0, end, self._chunk_size)): - self._download(start, end) - with self._stay(): - try: - # For read-only ZIP files, ZipFile only needs - # methods read, seek, seekable and tell. - ZipFile(self) # type: ignore - except BadZipFile: - pass - else: - break - - def _stream_response( - self, start: int, end: int, base_headers: Dict[str, str] = HEADERS - ) -> Response: - """Return HTTP response to a range request from start to end.""" - headers = base_headers.copy() - headers["Range"] = f"bytes={start}-{end}" - # TODO: Get range requests to be correctly cached - headers["Cache-Control"] = "no-cache" - return self._session.get(self._url, headers=headers, stream=True) - - def _merge( - self, start: int, end: int, left: int, right: int - ) -> Generator[Tuple[int, int], None, None]: - """Return a generator of intervals to be fetched. - - Args: - start (int): Start of needed interval - end (int): End of needed interval - left (int): Index of first overlapping downloaded data - right (int): Index after last overlapping downloaded data - """ - lslice, rslice = self._left[left:right], self._right[left:right] - i = start = min([start] + lslice[:1]) - end = max([end] + rslice[-1:]) - for j, k in zip(lslice, rslice): - if j > i: - yield i, j - 1 - i = k + 1 - if i <= end: - yield i, end - self._left[left:right], self._right[left:right] = [start], [end] - - def _download(self, start: int, end: int) -> None: - """Download bytes from start to end inclusively.""" - with self._stay(): - left = bisect_left(self._right, start) - right = bisect_right(self._left, end) - for start, end in self._merge(start, end, left, right): - response = self._stream_response(start, end) - response.raise_for_status() - self.seek(start) - for chunk in response_chunks(response, self._chunk_size): - self._file.write(chunk) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/session.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/session.py deleted file mode 100644 index f17efc5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/session.py +++ /dev/null @@ -1,520 +0,0 @@ -"""PipSession and supporting code, containing all pip-specific -network request configuration and behavior. -""" - -import email.utils -import io -import ipaddress -import json -import logging -import mimetypes -import os -import platform -import shutil -import subprocess -import sys -import urllib.parse -import warnings -from typing import ( - TYPE_CHECKING, - Any, - Dict, - Generator, - List, - Mapping, - Optional, - Sequence, - Tuple, - Union, -) - -from pip._vendor import requests, urllib3 -from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter -from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter -from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter -from pip._vendor.requests.models import PreparedRequest, Response -from pip._vendor.requests.structures import CaseInsensitiveDict -from pip._vendor.urllib3.connectionpool import ConnectionPool -from pip._vendor.urllib3.exceptions import InsecureRequestWarning - -from pip import __version__ -from pip._internal.metadata import get_default_environment -from pip._internal.models.link import Link -from pip._internal.network.auth import MultiDomainBasicAuth -from pip._internal.network.cache import SafeFileCache - -# Import ssl from compat so the initial import occurs in only one place. -from pip._internal.utils.compat import has_tls -from pip._internal.utils.glibc import libc_ver -from pip._internal.utils.misc import build_url_from_netloc, parse_netloc -from pip._internal.utils.urls import url_to_path - -if TYPE_CHECKING: - from ssl import SSLContext - - from pip._vendor.urllib3.poolmanager import PoolManager - - -logger = logging.getLogger(__name__) - -SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] - - -# Ignore warning raised when using --trusted-host. -warnings.filterwarnings("ignore", category=InsecureRequestWarning) - - -SECURE_ORIGINS: List[SecureOrigin] = [ - # protocol, hostname, port - # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) - ("https", "*", "*"), - ("*", "localhost", "*"), - ("*", "127.0.0.0/8", "*"), - ("*", "::1/128", "*"), - ("file", "*", None), - # ssh is always secure. - ("ssh", "*", "*"), -] - - -# These are environment variables present when running under various -# CI systems. For each variable, some CI systems that use the variable -# are indicated. The collection was chosen so that for each of a number -# of popular systems, at least one of the environment variables is used. -# This list is used to provide some indication of and lower bound for -# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. -# For more background, see: https://github.com/pypa/pip/issues/5499 -CI_ENVIRONMENT_VARIABLES = ( - # Azure Pipelines - "BUILD_BUILDID", - # Jenkins - "BUILD_ID", - # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI - "CI", - # Explicit environment variable. - "PIP_IS_CI", -) - - -def looks_like_ci() -> bool: - """ - Return whether it looks like pip is running under CI. - """ - # We don't use the method of checking for a tty (e.g. using isatty()) - # because some CI systems mimic a tty (e.g. Travis CI). Thus that - # method doesn't provide definitive information in either direction. - return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) - - -def user_agent() -> str: - """ - Return a string representing the user agent. - """ - data: Dict[str, Any] = { - "installer": {"name": "pip", "version": __version__}, - "python": platform.python_version(), - "implementation": { - "name": platform.python_implementation(), - }, - } - - if data["implementation"]["name"] == "CPython": - data["implementation"]["version"] = platform.python_version() - elif data["implementation"]["name"] == "PyPy": - pypy_version_info = sys.pypy_version_info # type: ignore - if pypy_version_info.releaselevel == "final": - pypy_version_info = pypy_version_info[:3] - data["implementation"]["version"] = ".".join( - [str(x) for x in pypy_version_info] - ) - elif data["implementation"]["name"] == "Jython": - # Complete Guess - data["implementation"]["version"] = platform.python_version() - elif data["implementation"]["name"] == "IronPython": - # Complete Guess - data["implementation"]["version"] = platform.python_version() - - if sys.platform.startswith("linux"): - from pip._vendor import distro - - linux_distribution = distro.name(), distro.version(), distro.codename() - distro_infos: Dict[str, Any] = dict( - filter( - lambda x: x[1], - zip(["name", "version", "id"], linux_distribution), - ) - ) - libc = dict( - filter( - lambda x: x[1], - zip(["lib", "version"], libc_ver()), - ) - ) - if libc: - distro_infos["libc"] = libc - if distro_infos: - data["distro"] = distro_infos - - if sys.platform.startswith("darwin") and platform.mac_ver()[0]: - data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} - - if platform.system(): - data.setdefault("system", {})["name"] = platform.system() - - if platform.release(): - data.setdefault("system", {})["release"] = platform.release() - - if platform.machine(): - data["cpu"] = platform.machine() - - if has_tls(): - import _ssl as ssl - - data["openssl_version"] = ssl.OPENSSL_VERSION - - setuptools_dist = get_default_environment().get_distribution("setuptools") - if setuptools_dist is not None: - data["setuptools_version"] = str(setuptools_dist.version) - - if shutil.which("rustc") is not None: - # If for any reason `rustc --version` fails, silently ignore it - try: - rustc_output = subprocess.check_output( - ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 - ) - except Exception: - pass - else: - if rustc_output.startswith(b"rustc "): - # The format of `rustc --version` is: - # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` - # We extract just the middle (1.52.1) part - data["rustc_version"] = rustc_output.split(b" ")[1].decode() - - # Use None rather than False so as not to give the impression that - # pip knows it is not being run under CI. Rather, it is a null or - # inconclusive result. Also, we include some value rather than no - # value to make it easier to know that the check has been run. - data["ci"] = True if looks_like_ci() else None - - user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") - if user_data is not None: - data["user_data"] = user_data - - return "{data[installer][name]}/{data[installer][version]} {json}".format( - data=data, - json=json.dumps(data, separators=(",", ":"), sort_keys=True), - ) - - -class LocalFSAdapter(BaseAdapter): - def send( - self, - request: PreparedRequest, - stream: bool = False, - timeout: Optional[Union[float, Tuple[float, float]]] = None, - verify: Union[bool, str] = True, - cert: Optional[Union[str, Tuple[str, str]]] = None, - proxies: Optional[Mapping[str, str]] = None, - ) -> Response: - pathname = url_to_path(request.url) - - resp = Response() - resp.status_code = 200 - resp.url = request.url - - try: - stats = os.stat(pathname) - except OSError as exc: - # format the exception raised as a io.BytesIO object, - # to return a better error message: - resp.status_code = 404 - resp.reason = type(exc).__name__ - resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode("utf8")) - else: - modified = email.utils.formatdate(stats.st_mtime, usegmt=True) - content_type = mimetypes.guess_type(pathname)[0] or "text/plain" - resp.headers = CaseInsensitiveDict( - { - "Content-Type": content_type, - "Content-Length": stats.st_size, - "Last-Modified": modified, - } - ) - - resp.raw = open(pathname, "rb") - resp.close = resp.raw.close - - return resp - - def close(self) -> None: - pass - - -class _SSLContextAdapterMixin: - """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. - - The additional argument is forwarded directly to the pool manager. This allows us - to dynamically decide what SSL store to use at runtime, which is used to implement - the optional ``truststore`` backend. - """ - - def __init__( - self, - *, - ssl_context: Optional["SSLContext"] = None, - **kwargs: Any, - ) -> None: - self._ssl_context = ssl_context - super().__init__(**kwargs) - - def init_poolmanager( - self, - connections: int, - maxsize: int, - block: bool = DEFAULT_POOLBLOCK, - **pool_kwargs: Any, - ) -> "PoolManager": - if self._ssl_context is not None: - pool_kwargs.setdefault("ssl_context", self._ssl_context) - return super().init_poolmanager( # type: ignore[misc] - connections=connections, - maxsize=maxsize, - block=block, - **pool_kwargs, - ) - - -class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): - pass - - -class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): - pass - - -class InsecureHTTPAdapter(HTTPAdapter): - def cert_verify( - self, - conn: ConnectionPool, - url: str, - verify: Union[bool, str], - cert: Optional[Union[str, Tuple[str, str]]], - ) -> None: - super().cert_verify(conn=conn, url=url, verify=False, cert=cert) - - -class InsecureCacheControlAdapter(CacheControlAdapter): - def cert_verify( - self, - conn: ConnectionPool, - url: str, - verify: Union[bool, str], - cert: Optional[Union[str, Tuple[str, str]]], - ) -> None: - super().cert_verify(conn=conn, url=url, verify=False, cert=cert) - - -class PipSession(requests.Session): - timeout: Optional[int] = None - - def __init__( - self, - *args: Any, - retries: int = 0, - cache: Optional[str] = None, - trusted_hosts: Sequence[str] = (), - index_urls: Optional[List[str]] = None, - ssl_context: Optional["SSLContext"] = None, - **kwargs: Any, - ) -> None: - """ - :param trusted_hosts: Domains not to emit warnings for when not using - HTTPS. - """ - super().__init__(*args, **kwargs) - - # Namespace the attribute with "pip_" just in case to prevent - # possible conflicts with the base class. - self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] - - # Attach our User Agent to the request - self.headers["User-Agent"] = user_agent() - - # Attach our Authentication handler to the session - self.auth = MultiDomainBasicAuth(index_urls=index_urls) - - # Create our urllib3.Retry instance which will allow us to customize - # how we handle retries. - retries = urllib3.Retry( - # Set the total number of retries that a particular request can - # have. - total=retries, - # A 503 error from PyPI typically means that the Fastly -> Origin - # connection got interrupted in some way. A 503 error in general - # is typically considered a transient error so we'll go ahead and - # retry it. - # A 500 may indicate transient error in Amazon S3 - # A 502 may be a transient error from a CDN like CloudFlare or CloudFront - # A 520 or 527 - may indicate transient error in CloudFlare - status_forcelist=[500, 502, 503, 520, 527], - # Add a small amount of back off between failed requests in - # order to prevent hammering the service. - backoff_factor=0.25, - ) # type: ignore - - # Our Insecure HTTPAdapter disables HTTPS validation. It does not - # support caching so we'll use it for all http:// URLs. - # If caching is disabled, we will also use it for - # https:// hosts that we've marked as ignoring - # TLS errors for (trusted-hosts). - insecure_adapter = InsecureHTTPAdapter(max_retries=retries) - - # We want to _only_ cache responses on securely fetched origins or when - # the host is specified as trusted. We do this because - # we can't validate the response of an insecurely/untrusted fetched - # origin, and we don't want someone to be able to poison the cache and - # require manual eviction from the cache to fix it. - if cache: - secure_adapter = CacheControlAdapter( - cache=SafeFileCache(cache), - max_retries=retries, - ssl_context=ssl_context, - ) - self._trusted_host_adapter = InsecureCacheControlAdapter( - cache=SafeFileCache(cache), - max_retries=retries, - ) - else: - secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) - self._trusted_host_adapter = insecure_adapter - - self.mount("https://", secure_adapter) - self.mount("http://", insecure_adapter) - - # Enable file:// urls - self.mount("file://", LocalFSAdapter()) - - for host in trusted_hosts: - self.add_trusted_host(host, suppress_logging=True) - - def update_index_urls(self, new_index_urls: List[str]) -> None: - """ - :param new_index_urls: New index urls to update the authentication - handler with. - """ - self.auth.index_urls = new_index_urls - - def add_trusted_host( - self, host: str, source: Optional[str] = None, suppress_logging: bool = False - ) -> None: - """ - :param host: It is okay to provide a host that has previously been - added. - :param source: An optional source string, for logging where the host - string came from. - """ - if not suppress_logging: - msg = f"adding trusted host: {host!r}" - if source is not None: - msg += f" (from {source})" - logger.info(msg) - - parsed_host, parsed_port = parse_netloc(host) - if parsed_host is None: - raise ValueError(f"Trusted host URL must include a host part: {host!r}") - if (parsed_host, parsed_port) not in self.pip_trusted_origins: - self.pip_trusted_origins.append((parsed_host, parsed_port)) - - self.mount( - build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter - ) - self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) - if not parsed_port: - self.mount( - build_url_from_netloc(host, scheme="http") + ":", - self._trusted_host_adapter, - ) - # Mount wildcard ports for the same host. - self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) - - def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: - yield from SECURE_ORIGINS - for host, port in self.pip_trusted_origins: - yield ("*", host, "*" if port is None else port) - - def is_secure_origin(self, location: Link) -> bool: - # Determine if this url used a secure transport mechanism - parsed = urllib.parse.urlparse(str(location)) - origin_protocol, origin_host, origin_port = ( - parsed.scheme, - parsed.hostname, - parsed.port, - ) - - # The protocol to use to see if the protocol matches. - # Don't count the repository type as part of the protocol: in - # cases such as "git+ssh", only use "ssh". (I.e., Only verify against - # the last scheme.) - origin_protocol = origin_protocol.rsplit("+", 1)[-1] - - # Determine if our origin is a secure origin by looking through our - # hardcoded list of secure origins, as well as any additional ones - # configured on this PackageFinder instance. - for secure_origin in self.iter_secure_origins(): - secure_protocol, secure_host, secure_port = secure_origin - if origin_protocol != secure_protocol and secure_protocol != "*": - continue - - try: - addr = ipaddress.ip_address(origin_host or "") - network = ipaddress.ip_network(secure_host) - except ValueError: - # We don't have both a valid address or a valid network, so - # we'll check this origin against hostnames. - if ( - origin_host - and origin_host.lower() != secure_host.lower() - and secure_host != "*" - ): - continue - else: - # We have a valid address and network, so see if the address - # is contained within the network. - if addr not in network: - continue - - # Check to see if the port matches. - if ( - origin_port != secure_port - and secure_port != "*" - and secure_port is not None - ): - continue - - # If we've gotten here, then this origin matches the current - # secure origin and we should return True - return True - - # If we've gotten to this point, then the origin isn't secure and we - # will not accept it as a valid location to search. We will however - # log a warning that we are ignoring it. - logger.warning( - "The repository located at %s is not a trusted or secure host and " - "is being ignored. If this repository is available via HTTPS we " - "recommend you use HTTPS instead, otherwise you may silence " - "this warning and allow it anyway with '--trusted-host %s'.", - origin_host, - origin_host, - ) - - return False - - def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: - # Allow setting a default timeout on a session - kwargs.setdefault("timeout", self.timeout) - # Allow setting a default proxies on a session - kwargs.setdefault("proxies", self.proxies) - - # Dispatch the actual request - return super().request(method, url, *args, **kwargs) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/utils.py deleted file mode 100644 index 134848a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/utils.py +++ /dev/null @@ -1,96 +0,0 @@ -from typing import Dict, Generator - -from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response - -from pip._internal.exceptions import NetworkConnectionError - -# The following comments and HTTP headers were originally added by -# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. -# -# We use Accept-Encoding: identity here because requests defaults to -# accepting compressed responses. This breaks in a variety of ways -# depending on how the server is configured. -# - Some servers will notice that the file isn't a compressible file -# and will leave the file alone and with an empty Content-Encoding -# - Some servers will notice that the file is already compressed and -# will leave the file alone, adding a Content-Encoding: gzip header -# - Some servers won't notice anything at all and will take a file -# that's already been compressed and compress it again, and set -# the Content-Encoding: gzip header -# By setting this to request only the identity encoding we're hoping -# to eliminate the third case. Hopefully there does not exist a server -# which when given a file will notice it is already compressed and that -# you're not asking for a compressed file and will then decompress it -# before sending because if that's the case I don't think it'll ever be -# possible to make this work. -HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} - - -def raise_for_status(resp: Response) -> None: - http_error_msg = "" - if isinstance(resp.reason, bytes): - # We attempt to decode utf-8 first because some servers - # choose to localize their reason strings. If the string - # isn't utf-8, we fall back to iso-8859-1 for all other - # encodings. - try: - reason = resp.reason.decode("utf-8") - except UnicodeDecodeError: - reason = resp.reason.decode("iso-8859-1") - else: - reason = resp.reason - - if 400 <= resp.status_code < 500: - http_error_msg = ( - f"{resp.status_code} Client Error: {reason} for url: {resp.url}" - ) - - elif 500 <= resp.status_code < 600: - http_error_msg = ( - f"{resp.status_code} Server Error: {reason} for url: {resp.url}" - ) - - if http_error_msg: - raise NetworkConnectionError(http_error_msg, response=resp) - - -def response_chunks( - response: Response, chunk_size: int = CONTENT_CHUNK_SIZE -) -> Generator[bytes, None, None]: - """Given a requests Response, provide the data chunks.""" - try: - # Special case for urllib3. - for chunk in response.raw.stream( - chunk_size, - # We use decode_content=False here because we don't - # want urllib3 to mess with the raw bytes we get - # from the server. If we decompress inside of - # urllib3 then we cannot verify the checksum - # because the checksum will be of the compressed - # file. This breakage will only occur if the - # server adds a Content-Encoding header, which - # depends on how the server was configured: - # - Some servers will notice that the file isn't a - # compressible file and will leave the file alone - # and with an empty Content-Encoding - # - Some servers will notice that the file is - # already compressed and will leave the file - # alone and will add a Content-Encoding: gzip - # header - # - Some servers won't notice anything at all and - # will take a file that's already been compressed - # and compress it again and set the - # Content-Encoding: gzip header - # - # By setting this not to decode automatically we - # hope to eliminate problems with the second case. - decode_content=False, - ): - yield chunk - except AttributeError: - # Standard file-like object. - while True: - chunk = response.raw.read(chunk_size) - if not chunk: - break - yield chunk diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py deleted file mode 100644 index 22ec8d2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py +++ /dev/null @@ -1,62 +0,0 @@ -"""xmlrpclib.Transport implementation -""" - -import logging -import urllib.parse -import xmlrpc.client -from typing import TYPE_CHECKING, Tuple - -from pip._internal.exceptions import NetworkConnectionError -from pip._internal.network.session import PipSession -from pip._internal.network.utils import raise_for_status - -if TYPE_CHECKING: - from xmlrpc.client import _HostType, _Marshallable - - from _typeshed import SizedBuffer - -logger = logging.getLogger(__name__) - - -class PipXmlrpcTransport(xmlrpc.client.Transport): - """Provide a `xmlrpclib.Transport` implementation via a `PipSession` - object. - """ - - def __init__( - self, index_url: str, session: PipSession, use_datetime: bool = False - ) -> None: - super().__init__(use_datetime) - index_parts = urllib.parse.urlparse(index_url) - self._scheme = index_parts.scheme - self._session = session - - def request( - self, - host: "_HostType", - handler: str, - request_body: "SizedBuffer", - verbose: bool = False, - ) -> Tuple["_Marshallable", ...]: - assert isinstance(host, str) - parts = (self._scheme, host, handler, None, None, None) - url = urllib.parse.urlunparse(parts) - try: - headers = {"Content-Type": "text/xml"} - response = self._session.post( - url, - data=request_body, - headers=headers, - stream=True, - ) - raise_for_status(response) - self.verbose = verbose - return self.parse_response(response.raw) - except NetworkConnectionError as exc: - assert exc.response - logger.critical( - "HTTP error %s while getting %s", - exc.response.status_code, - url, - ) - raise diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 069f871..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc deleted file mode 100644 index 76dfe8b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-311.pyc deleted file mode 100644 index 8458340..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc deleted file mode 100644 index ef4d4cc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/check.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/check.py deleted file mode 100644 index 90c6a58..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/check.py +++ /dev/null @@ -1,187 +0,0 @@ -"""Validation of dependencies of packages -""" - -import logging -from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple - -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.specifiers import LegacySpecifier -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.packaging.version import LegacyVersion - -from pip._internal.distributions import make_distribution_for_install_requirement -from pip._internal.metadata import get_default_environment -from pip._internal.metadata.base import DistributionVersion -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.deprecation import deprecated - -logger = logging.getLogger(__name__) - - -class PackageDetails(NamedTuple): - version: DistributionVersion - dependencies: List[Requirement] - - -# Shorthands -PackageSet = Dict[NormalizedName, PackageDetails] -Missing = Tuple[NormalizedName, Requirement] -Conflicting = Tuple[NormalizedName, DistributionVersion, Requirement] - -MissingDict = Dict[NormalizedName, List[Missing]] -ConflictingDict = Dict[NormalizedName, List[Conflicting]] -CheckResult = Tuple[MissingDict, ConflictingDict] -ConflictDetails = Tuple[PackageSet, CheckResult] - - -def create_package_set_from_installed() -> Tuple[PackageSet, bool]: - """Converts a list of distributions into a PackageSet.""" - package_set = {} - problems = False - env = get_default_environment() - for dist in env.iter_installed_distributions(local_only=False, skip=()): - name = dist.canonical_name - try: - dependencies = list(dist.iter_dependencies()) - package_set[name] = PackageDetails(dist.version, dependencies) - except (OSError, ValueError) as e: - # Don't crash on unreadable or broken metadata. - logger.warning("Error parsing requirements for %s: %s", name, e) - problems = True - return package_set, problems - - -def check_package_set( - package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None -) -> CheckResult: - """Check if a package set is consistent - - If should_ignore is passed, it should be a callable that takes a - package name and returns a boolean. - """ - - warn_legacy_versions_and_specifiers(package_set) - - missing = {} - conflicting = {} - - for package_name, package_detail in package_set.items(): - # Info about dependencies of package_name - missing_deps: Set[Missing] = set() - conflicting_deps: Set[Conflicting] = set() - - if should_ignore and should_ignore(package_name): - continue - - for req in package_detail.dependencies: - name = canonicalize_name(req.name) - - # Check if it's missing - if name not in package_set: - missed = True - if req.marker is not None: - missed = req.marker.evaluate({"extra": ""}) - if missed: - missing_deps.add((name, req)) - continue - - # Check if there's a conflict - version = package_set[name].version - if not req.specifier.contains(version, prereleases=True): - conflicting_deps.add((name, version, req)) - - if missing_deps: - missing[package_name] = sorted(missing_deps, key=str) - if conflicting_deps: - conflicting[package_name] = sorted(conflicting_deps, key=str) - - return missing, conflicting - - -def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: - """For checking if the dependency graph would be consistent after \ - installing given requirements - """ - # Start from the current state - package_set, _ = create_package_set_from_installed() - # Install packages - would_be_installed = _simulate_installation_of(to_install, package_set) - - # Only warn about directly-dependent packages; create a whitelist of them - whitelist = _create_whitelist(would_be_installed, package_set) - - return ( - package_set, - check_package_set( - package_set, should_ignore=lambda name: name not in whitelist - ), - ) - - -def _simulate_installation_of( - to_install: List[InstallRequirement], package_set: PackageSet -) -> Set[NormalizedName]: - """Computes the version of packages after installing to_install.""" - # Keep track of packages that were installed - installed = set() - - # Modify it as installing requirement_set would (assuming no errors) - for inst_req in to_install: - abstract_dist = make_distribution_for_install_requirement(inst_req) - dist = abstract_dist.get_metadata_distribution() - name = dist.canonical_name - package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) - - installed.add(name) - - return installed - - -def _create_whitelist( - would_be_installed: Set[NormalizedName], package_set: PackageSet -) -> Set[NormalizedName]: - packages_affected = set(would_be_installed) - - for package_name in package_set: - if package_name in packages_affected: - continue - - for req in package_set[package_name].dependencies: - if canonicalize_name(req.name) in packages_affected: - packages_affected.add(package_name) - break - - return packages_affected - - -def warn_legacy_versions_and_specifiers(package_set: PackageSet) -> None: - for project_name, package_details in package_set.items(): - if isinstance(package_details.version, LegacyVersion): - deprecated( - reason=( - f"{project_name} {package_details.version} " - f"has a non-standard version number." - ), - replacement=( - f"to upgrade to a newer version of {project_name} " - f"or contact the author to suggest that they " - f"release a version with a conforming version number" - ), - issue=12063, - gone_in="24.1", - ) - for dep in package_details.dependencies: - if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): - deprecated( - reason=( - f"{project_name} {package_details.version} " - f"has a non-standard dependency specifier {dep}." - ), - replacement=( - f"to upgrade to a newer version of {project_name} " - f"or contact the author to suggest that they " - f"release a version with a conforming dependency specifiers" - ), - issue=12063, - gone_in="24.1", - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py deleted file mode 100644 index 3544568..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py +++ /dev/null @@ -1,255 +0,0 @@ -import collections -import logging -import os -from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set - -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.packaging.version import Version - -from pip._internal.exceptions import BadCommand, InstallationError -from pip._internal.metadata import BaseDistribution, get_environment -from pip._internal.req.constructors import ( - install_req_from_editable, - install_req_from_line, -) -from pip._internal.req.req_file import COMMENT_RE -from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference - -logger = logging.getLogger(__name__) - - -class _EditableInfo(NamedTuple): - requirement: str - comments: List[str] - - -def freeze( - requirement: Optional[List[str]] = None, - local_only: bool = False, - user_only: bool = False, - paths: Optional[List[str]] = None, - isolated: bool = False, - exclude_editable: bool = False, - skip: Container[str] = (), -) -> Generator[str, None, None]: - installations: Dict[str, FrozenRequirement] = {} - - dists = get_environment(paths).iter_installed_distributions( - local_only=local_only, - skip=(), - user_only=user_only, - ) - for dist in dists: - req = FrozenRequirement.from_dist(dist) - if exclude_editable and req.editable: - continue - installations[req.canonical_name] = req - - if requirement: - # the options that don't get turned into an InstallRequirement - # should only be emitted once, even if the same option is in multiple - # requirements files, so we need to keep track of what has been emitted - # so that we don't emit it again if it's seen again - emitted_options: Set[str] = set() - # keep track of which files a requirement is in so that we can - # give an accurate warning if a requirement appears multiple times. - req_files: Dict[str, List[str]] = collections.defaultdict(list) - for req_file_path in requirement: - with open(req_file_path) as req_file: - for line in req_file: - if ( - not line.strip() - or line.strip().startswith("#") - or line.startswith( - ( - "-r", - "--requirement", - "-f", - "--find-links", - "-i", - "--index-url", - "--pre", - "--trusted-host", - "--process-dependency-links", - "--extra-index-url", - "--use-feature", - ) - ) - ): - line = line.rstrip() - if line not in emitted_options: - emitted_options.add(line) - yield line - continue - - if line.startswith("-e") or line.startswith("--editable"): - if line.startswith("-e"): - line = line[2:].strip() - else: - line = line[len("--editable") :].strip().lstrip("=") - line_req = install_req_from_editable( - line, - isolated=isolated, - ) - else: - line_req = install_req_from_line( - COMMENT_RE.sub("", line).strip(), - isolated=isolated, - ) - - if not line_req.name: - logger.info( - "Skipping line in requirement file [%s] because " - "it's not clear what it would install: %s", - req_file_path, - line.strip(), - ) - logger.info( - " (add #egg=PackageName to the URL to avoid" - " this warning)" - ) - else: - line_req_canonical_name = canonicalize_name(line_req.name) - if line_req_canonical_name not in installations: - # either it's not installed, or it is installed - # but has been processed already - if not req_files[line_req.name]: - logger.warning( - "Requirement file [%s] contains %s, but " - "package %r is not installed", - req_file_path, - COMMENT_RE.sub("", line).strip(), - line_req.name, - ) - else: - req_files[line_req.name].append(req_file_path) - else: - yield str(installations[line_req_canonical_name]).rstrip() - del installations[line_req_canonical_name] - req_files[line_req.name].append(req_file_path) - - # Warn about requirements that were included multiple times (in a - # single requirements file or in different requirements files). - for name, files in req_files.items(): - if len(files) > 1: - logger.warning( - "Requirement %s included multiple times [%s]", - name, - ", ".join(sorted(set(files))), - ) - - yield ("## The following requirements were added by pip freeze:") - for installation in sorted(installations.values(), key=lambda x: x.name.lower()): - if installation.canonical_name not in skip: - yield str(installation).rstrip() - - -def _format_as_name_version(dist: BaseDistribution) -> str: - dist_version = dist.version - if isinstance(dist_version, Version): - return f"{dist.raw_name}=={dist_version}" - return f"{dist.raw_name}==={dist_version}" - - -def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: - """ - Compute and return values (req, comments) for use in - FrozenRequirement.from_dist(). - """ - editable_project_location = dist.editable_project_location - assert editable_project_location - location = os.path.normcase(os.path.abspath(editable_project_location)) - - from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs - - vcs_backend = vcs.get_backend_for_dir(location) - - if vcs_backend is None: - display = _format_as_name_version(dist) - logger.debug( - 'No VCS found for editable requirement "%s" in: %r', - display, - location, - ) - return _EditableInfo( - requirement=location, - comments=[f"# Editable install with no version control ({display})"], - ) - - vcs_name = type(vcs_backend).__name__ - - try: - req = vcs_backend.get_src_requirement(location, dist.raw_name) - except RemoteNotFoundError: - display = _format_as_name_version(dist) - return _EditableInfo( - requirement=location, - comments=[f"# Editable {vcs_name} install with no remote ({display})"], - ) - except RemoteNotValidError as ex: - display = _format_as_name_version(dist) - return _EditableInfo( - requirement=location, - comments=[ - f"# Editable {vcs_name} install ({display}) with either a deleted " - f"local remote or invalid URI:", - f"# '{ex.url}'", - ], - ) - except BadCommand: - logger.warning( - "cannot determine version of editable source in %s " - "(%s command not found in path)", - location, - vcs_backend.name, - ) - return _EditableInfo(requirement=location, comments=[]) - except InstallationError as exc: - logger.warning("Error when trying to get requirement for VCS system %s", exc) - else: - return _EditableInfo(requirement=req, comments=[]) - - logger.warning("Could not determine repository location of %s", location) - - return _EditableInfo( - requirement=location, - comments=["## !! Could not determine repository location"], - ) - - -class FrozenRequirement: - def __init__( - self, - name: str, - req: str, - editable: bool, - comments: Iterable[str] = (), - ) -> None: - self.name = name - self.canonical_name = canonicalize_name(name) - self.req = req - self.editable = editable - self.comments = comments - - @classmethod - def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": - editable = dist.editable - if editable: - req, comments = _get_editable_info(dist) - else: - comments = [] - direct_url = dist.direct_url - if direct_url: - # if PEP 610 metadata is present, use it - req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) - else: - # name==version requirement - req = _format_as_name_version(dist) - - return cls(dist.raw_name, req, editable, comments=comments) - - def __str__(self) -> str: - req = self.req - if self.editable: - req = f"-e {req}" - return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py deleted file mode 100644 index 24d6a5d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -"""For modules related to installing packages. -""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c6b02fa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc deleted file mode 100644 index 2013340..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index fb80a07..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py deleted file mode 100644 index bebe24e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py +++ /dev/null @@ -1,46 +0,0 @@ -"""Legacy editable installation process, i.e. `setup.py develop`. -""" -import logging -from typing import Optional, Sequence - -from pip._internal.build_env import BuildEnvironment -from pip._internal.utils.logging import indent_log -from pip._internal.utils.setuptools_build import make_setuptools_develop_args -from pip._internal.utils.subprocess import call_subprocess - -logger = logging.getLogger(__name__) - - -def install_editable( - *, - global_options: Sequence[str], - prefix: Optional[str], - home: Optional[str], - use_user_site: bool, - name: str, - setup_py_path: str, - isolated: bool, - build_env: BuildEnvironment, - unpacked_source_directory: str, -) -> None: - """Install a package in editable mode. Most arguments are pass-through - to setuptools. - """ - logger.info("Running setup.py develop for %s", name) - - args = make_setuptools_develop_args( - setup_py_path, - global_options=global_options, - no_user_config=isolated, - prefix=prefix, - home=home, - use_user_site=use_user_site, - ) - - with indent_log(): - with build_env: - call_subprocess( - args, - command_desc="python setup.py develop", - cwd=unpacked_source_directory, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py deleted file mode 100644 index f67180c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py +++ /dev/null @@ -1,734 +0,0 @@ -"""Support for installing and building the "wheel" binary package format. -""" - -import collections -import compileall -import contextlib -import csv -import importlib -import logging -import os.path -import re -import shutil -import sys -import warnings -from base64 import urlsafe_b64encode -from email.message import Message -from itertools import chain, filterfalse, starmap -from typing import ( - IO, - TYPE_CHECKING, - Any, - BinaryIO, - Callable, - Dict, - Generator, - Iterable, - Iterator, - List, - NewType, - Optional, - Sequence, - Set, - Tuple, - Union, - cast, -) -from zipfile import ZipFile, ZipInfo - -from pip._vendor.distlib.scripts import ScriptMaker -from pip._vendor.distlib.util import get_export_entry -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.exceptions import InstallationError -from pip._internal.locations import get_major_minor_version -from pip._internal.metadata import ( - BaseDistribution, - FilesystemWheel, - get_wheel_distribution, -) -from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl -from pip._internal.models.scheme import SCHEME_KEYS, Scheme -from pip._internal.utils.filesystem import adjacent_tmp_file, replace -from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition -from pip._internal.utils.unpacking import ( - current_umask, - is_within_directory, - set_extracted_file_to_default_mode_plus_executable, - zip_item_is_executable, -) -from pip._internal.utils.wheel import parse_wheel - -if TYPE_CHECKING: - from typing import Protocol - - class File(Protocol): - src_record_path: "RecordPath" - dest_path: str - changed: bool - - def save(self) -> None: - pass - - -logger = logging.getLogger(__name__) - -RecordPath = NewType("RecordPath", str) -InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] - - -def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: - """Return (encoded_digest, length) for path using hashlib.sha256()""" - h, length = hash_file(path, blocksize) - digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") - return (digest, str(length)) - - -def csv_io_kwargs(mode: str) -> Dict[str, Any]: - """Return keyword arguments to properly open a CSV file - in the given mode. - """ - return {"mode": mode, "newline": "", "encoding": "utf-8"} - - -def fix_script(path: str) -> bool: - """Replace #!python with #!/path/to/python - Return True if file was changed. - """ - # XXX RECORD hashes will need to be updated - assert os.path.isfile(path) - - with open(path, "rb") as script: - firstline = script.readline() - if not firstline.startswith(b"#!python"): - return False - exename = sys.executable.encode(sys.getfilesystemencoding()) - firstline = b"#!" + exename + os.linesep.encode("ascii") - rest = script.read() - with open(path, "wb") as script: - script.write(firstline) - script.write(rest) - return True - - -def wheel_root_is_purelib(metadata: Message) -> bool: - return metadata.get("Root-Is-Purelib", "").lower() == "true" - - -def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: - console_scripts = {} - gui_scripts = {} - for entry_point in dist.iter_entry_points(): - if entry_point.group == "console_scripts": - console_scripts[entry_point.name] = entry_point.value - elif entry_point.group == "gui_scripts": - gui_scripts[entry_point.name] = entry_point.value - return console_scripts, gui_scripts - - -def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: - """Determine if any scripts are not on PATH and format a warning. - Returns a warning message if one or more scripts are not on PATH, - otherwise None. - """ - if not scripts: - return None - - # Group scripts by the path they were installed in - grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) - for destfile in scripts: - parent_dir = os.path.dirname(destfile) - script_name = os.path.basename(destfile) - grouped_by_dir[parent_dir].add(script_name) - - # We don't want to warn for directories that are on PATH. - not_warn_dirs = [ - os.path.normcase(os.path.normpath(i)).rstrip(os.sep) - for i in os.environ.get("PATH", "").split(os.pathsep) - ] - # If an executable sits with sys.executable, we don't warn for it. - # This covers the case of venv invocations without activating the venv. - not_warn_dirs.append( - os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) - ) - warn_for: Dict[str, Set[str]] = { - parent_dir: scripts - for parent_dir, scripts in grouped_by_dir.items() - if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs - } - if not warn_for: - return None - - # Format a message - msg_lines = [] - for parent_dir, dir_scripts in warn_for.items(): - sorted_scripts: List[str] = sorted(dir_scripts) - if len(sorted_scripts) == 1: - start_text = f"script {sorted_scripts[0]} is" - else: - start_text = "scripts {} are".format( - ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] - ) - - msg_lines.append( - f"The {start_text} installed in '{parent_dir}' which is not on PATH." - ) - - last_line_fmt = ( - "Consider adding {} to PATH or, if you prefer " - "to suppress this warning, use --no-warn-script-location." - ) - if len(msg_lines) == 1: - msg_lines.append(last_line_fmt.format("this directory")) - else: - msg_lines.append(last_line_fmt.format("these directories")) - - # Add a note if any directory starts with ~ - warn_for_tilde = any( - i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i - ) - if warn_for_tilde: - tilde_warning_msg = ( - "NOTE: The current PATH contains path(s) starting with `~`, " - "which may not be expanded by all applications." - ) - msg_lines.append(tilde_warning_msg) - - # Returns the formatted multiline message - return "\n".join(msg_lines) - - -def _normalized_outrows( - outrows: Iterable[InstalledCSVRow], -) -> List[Tuple[str, str, str]]: - """Normalize the given rows of a RECORD file. - - Items in each row are converted into str. Rows are then sorted to make - the value more predictable for tests. - - Each row is a 3-tuple (path, hash, size) and corresponds to a record of - a RECORD file (see PEP 376 and PEP 427 for details). For the rows - passed to this function, the size can be an integer as an int or string, - or the empty string. - """ - # Normally, there should only be one row per path, in which case the - # second and third elements don't come into play when sorting. - # However, in cases in the wild where a path might happen to occur twice, - # we don't want the sort operation to trigger an error (but still want - # determinism). Since the third element can be an int or string, we - # coerce each element to a string to avoid a TypeError in this case. - # For additional background, see-- - # https://github.com/pypa/pip/issues/5868 - return sorted( - (record_path, hash_, str(size)) for record_path, hash_, size in outrows - ) - - -def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: - return os.path.join(lib_dir, record_path) - - -def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: - # On Windows, do not handle relative paths if they belong to different - # logical disks - if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): - path = os.path.relpath(path, lib_dir) - - path = path.replace(os.path.sep, "/") - return cast("RecordPath", path) - - -def get_csv_rows_for_installed( - old_csv_rows: List[List[str]], - installed: Dict[RecordPath, RecordPath], - changed: Set[RecordPath], - generated: List[str], - lib_dir: str, -) -> List[InstalledCSVRow]: - """ - :param installed: A map from archive RECORD path to installation RECORD - path. - """ - installed_rows: List[InstalledCSVRow] = [] - for row in old_csv_rows: - if len(row) > 3: - logger.warning("RECORD line has more than three elements: %s", row) - old_record_path = cast("RecordPath", row[0]) - new_record_path = installed.pop(old_record_path, old_record_path) - if new_record_path in changed: - digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) - else: - digest = row[1] if len(row) > 1 else "" - length = row[2] if len(row) > 2 else "" - installed_rows.append((new_record_path, digest, length)) - for f in generated: - path = _fs_to_record_path(f, lib_dir) - digest, length = rehash(f) - installed_rows.append((path, digest, length)) - return installed_rows + [ - (installed_record_path, "", "") for installed_record_path in installed.values() - ] - - -def get_console_script_specs(console: Dict[str, str]) -> List[str]: - """ - Given the mapping from entrypoint name to callable, return the relevant - console script specs. - """ - # Don't mutate caller's version - console = console.copy() - - scripts_to_generate = [] - - # Special case pip and setuptools to generate versioned wrappers - # - # The issue is that some projects (specifically, pip and setuptools) use - # code in setup.py to create "versioned" entry points - pip2.7 on Python - # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into - # the wheel metadata at build time, and so if the wheel is installed with - # a *different* version of Python the entry points will be wrong. The - # correct fix for this is to enhance the metadata to be able to describe - # such versioned entry points, but that won't happen till Metadata 2.0 is - # available. - # In the meantime, projects using versioned entry points will either have - # incorrect versioned entry points, or they will not be able to distribute - # "universal" wheels (i.e., they will need a wheel per Python version). - # - # Because setuptools and pip are bundled with _ensurepip and virtualenv, - # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we - # override the versioned entry points in the wheel and generate the - # correct ones. This code is purely a short-term measure until Metadata 2.0 - # is available. - # - # To add the level of hack in this section of code, in order to support - # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment - # variable which will control which version scripts get installed. - # - # ENSUREPIP_OPTIONS=altinstall - # - Only pipX.Y and easy_install-X.Y will be generated and installed - # ENSUREPIP_OPTIONS=install - # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note - # that this option is technically if ENSUREPIP_OPTIONS is set and is - # not altinstall - # DEFAULT - # - The default behavior is to install pip, pipX, pipX.Y, easy_install - # and easy_install-X.Y. - pip_script = console.pop("pip", None) - if pip_script: - if "ENSUREPIP_OPTIONS" not in os.environ: - scripts_to_generate.append("pip = " + pip_script) - - if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": - scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") - - scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") - # Delete any other versioned pip entry points - pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] - for k in pip_ep: - del console[k] - easy_install_script = console.pop("easy_install", None) - if easy_install_script: - if "ENSUREPIP_OPTIONS" not in os.environ: - scripts_to_generate.append("easy_install = " + easy_install_script) - - scripts_to_generate.append( - f"easy_install-{get_major_minor_version()} = {easy_install_script}" - ) - # Delete any other versioned easy_install entry points - easy_install_ep = [ - k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) - ] - for k in easy_install_ep: - del console[k] - - # Generate the console entry points specified in the wheel - scripts_to_generate.extend(starmap("{} = {}".format, console.items())) - - return scripts_to_generate - - -class ZipBackedFile: - def __init__( - self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile - ) -> None: - self.src_record_path = src_record_path - self.dest_path = dest_path - self._zip_file = zip_file - self.changed = False - - def _getinfo(self) -> ZipInfo: - return self._zip_file.getinfo(self.src_record_path) - - def save(self) -> None: - # directory creation is lazy and after file filtering - # to ensure we don't install empty dirs; empty dirs can't be - # uninstalled. - parent_dir = os.path.dirname(self.dest_path) - ensure_dir(parent_dir) - - # When we open the output file below, any existing file is truncated - # before we start writing the new contents. This is fine in most - # cases, but can cause a segfault if pip has loaded a shared - # object (e.g. from pyopenssl through its vendored urllib3) - # Since the shared object is mmap'd an attempt to call a - # symbol in it will then cause a segfault. Unlinking the file - # allows writing of new contents while allowing the process to - # continue to use the old copy. - if os.path.exists(self.dest_path): - os.unlink(self.dest_path) - - zipinfo = self._getinfo() - - with self._zip_file.open(zipinfo) as f: - with open(self.dest_path, "wb") as dest: - shutil.copyfileobj(f, dest) - - if zip_item_is_executable(zipinfo): - set_extracted_file_to_default_mode_plus_executable(self.dest_path) - - -class ScriptFile: - def __init__(self, file: "File") -> None: - self._file = file - self.src_record_path = self._file.src_record_path - self.dest_path = self._file.dest_path - self.changed = False - - def save(self) -> None: - self._file.save() - self.changed = fix_script(self.dest_path) - - -class MissingCallableSuffix(InstallationError): - def __init__(self, entry_point: str) -> None: - super().__init__( - f"Invalid script entry point: {entry_point} - A callable " - "suffix is required. Cf https://packaging.python.org/" - "specifications/entry-points/#use-for-scripts for more " - "information." - ) - - -def _raise_for_invalid_entrypoint(specification: str) -> None: - entry = get_export_entry(specification) - if entry is not None and entry.suffix is None: - raise MissingCallableSuffix(str(entry)) - - -class PipScriptMaker(ScriptMaker): - def make( - self, specification: str, options: Optional[Dict[str, Any]] = None - ) -> List[str]: - _raise_for_invalid_entrypoint(specification) - return super().make(specification, options) - - -def _install_wheel( - name: str, - wheel_zip: ZipFile, - wheel_path: str, - scheme: Scheme, - pycompile: bool = True, - warn_script_location: bool = True, - direct_url: Optional[DirectUrl] = None, - requested: bool = False, -) -> None: - """Install a wheel. - - :param name: Name of the project to install - :param wheel_zip: open ZipFile for wheel being installed - :param scheme: Distutils scheme dictating the install directories - :param req_description: String used in place of the requirement, for - logging - :param pycompile: Whether to byte-compile installed Python files - :param warn_script_location: Whether to check that scripts are installed - into a directory on PATH - :raises UnsupportedWheel: - * when the directory holds an unpacked wheel with incompatible - Wheel-Version - * when the .dist-info dir does not match the wheel - """ - info_dir, metadata = parse_wheel(wheel_zip, name) - - if wheel_root_is_purelib(metadata): - lib_dir = scheme.purelib - else: - lib_dir = scheme.platlib - - # Record details of the files moved - # installed = files copied from the wheel to the destination - # changed = files changed while installing (scripts #! line typically) - # generated = files newly generated during the install (script wrappers) - installed: Dict[RecordPath, RecordPath] = {} - changed: Set[RecordPath] = set() - generated: List[str] = [] - - def record_installed( - srcfile: RecordPath, destfile: str, modified: bool = False - ) -> None: - """Map archive RECORD paths to installation RECORD paths.""" - newpath = _fs_to_record_path(destfile, lib_dir) - installed[srcfile] = newpath - if modified: - changed.add(newpath) - - def is_dir_path(path: RecordPath) -> bool: - return path.endswith("/") - - def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: - if not is_within_directory(dest_dir_path, target_path): - message = ( - "The wheel {!r} has a file {!r} trying to install" - " outside the target directory {!r}" - ) - raise InstallationError( - message.format(wheel_path, target_path, dest_dir_path) - ) - - def root_scheme_file_maker( - zip_file: ZipFile, dest: str - ) -> Callable[[RecordPath], "File"]: - def make_root_scheme_file(record_path: RecordPath) -> "File": - normed_path = os.path.normpath(record_path) - dest_path = os.path.join(dest, normed_path) - assert_no_path_traversal(dest, dest_path) - return ZipBackedFile(record_path, dest_path, zip_file) - - return make_root_scheme_file - - def data_scheme_file_maker( - zip_file: ZipFile, scheme: Scheme - ) -> Callable[[RecordPath], "File"]: - scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} - - def make_data_scheme_file(record_path: RecordPath) -> "File": - normed_path = os.path.normpath(record_path) - try: - _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) - except ValueError: - message = ( - "Unexpected file in {}: {!r}. .data directory contents" - " should be named like: '/'." - ).format(wheel_path, record_path) - raise InstallationError(message) - - try: - scheme_path = scheme_paths[scheme_key] - except KeyError: - valid_scheme_keys = ", ".join(sorted(scheme_paths)) - message = ( - "Unknown scheme key used in {}: {} (for file {!r}). .data" - " directory contents should be in subdirectories named" - " with a valid scheme key ({})" - ).format(wheel_path, scheme_key, record_path, valid_scheme_keys) - raise InstallationError(message) - - dest_path = os.path.join(scheme_path, dest_subpath) - assert_no_path_traversal(scheme_path, dest_path) - return ZipBackedFile(record_path, dest_path, zip_file) - - return make_data_scheme_file - - def is_data_scheme_path(path: RecordPath) -> bool: - return path.split("/", 1)[0].endswith(".data") - - paths = cast(List[RecordPath], wheel_zip.namelist()) - file_paths = filterfalse(is_dir_path, paths) - root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) - - make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) - files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) - - def is_script_scheme_path(path: RecordPath) -> bool: - parts = path.split("/", 2) - return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" - - other_scheme_paths, script_scheme_paths = partition( - is_script_scheme_path, data_scheme_paths - ) - - make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) - other_scheme_files = map(make_data_scheme_file, other_scheme_paths) - files = chain(files, other_scheme_files) - - # Get the defined entry points - distribution = get_wheel_distribution( - FilesystemWheel(wheel_path), - canonicalize_name(name), - ) - console, gui = get_entrypoints(distribution) - - def is_entrypoint_wrapper(file: "File") -> bool: - # EP, EP.exe and EP-script.py are scripts generated for - # entry point EP by setuptools - path = file.dest_path - name = os.path.basename(path) - if name.lower().endswith(".exe"): - matchname = name[:-4] - elif name.lower().endswith("-script.py"): - matchname = name[:-10] - elif name.lower().endswith(".pya"): - matchname = name[:-4] - else: - matchname = name - # Ignore setuptools-generated scripts - return matchname in console or matchname in gui - - script_scheme_files: Iterator[File] = map( - make_data_scheme_file, script_scheme_paths - ) - script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) - script_scheme_files = map(ScriptFile, script_scheme_files) - files = chain(files, script_scheme_files) - - for file in files: - file.save() - record_installed(file.src_record_path, file.dest_path, file.changed) - - def pyc_source_file_paths() -> Generator[str, None, None]: - # We de-duplicate installation paths, since there can be overlap (e.g. - # file in .data maps to same location as file in wheel root). - # Sorting installation paths makes it easier to reproduce and debug - # issues related to permissions on existing files. - for installed_path in sorted(set(installed.values())): - full_installed_path = os.path.join(lib_dir, installed_path) - if not os.path.isfile(full_installed_path): - continue - if not full_installed_path.endswith(".py"): - continue - yield full_installed_path - - def pyc_output_path(path: str) -> str: - """Return the path the pyc file would have been written to.""" - return importlib.util.cache_from_source(path) - - # Compile all of the pyc files for the installed files - if pycompile: - with captured_stdout() as stdout: - with warnings.catch_warnings(): - warnings.filterwarnings("ignore") - for path in pyc_source_file_paths(): - success = compileall.compile_file(path, force=True, quiet=True) - if success: - pyc_path = pyc_output_path(path) - assert os.path.exists(pyc_path) - pyc_record_path = cast( - "RecordPath", pyc_path.replace(os.path.sep, "/") - ) - record_installed(pyc_record_path, pyc_path) - logger.debug(stdout.getvalue()) - - maker = PipScriptMaker(None, scheme.scripts) - - # Ensure old scripts are overwritten. - # See https://github.com/pypa/pip/issues/1800 - maker.clobber = True - - # Ensure we don't generate any variants for scripts because this is almost - # never what somebody wants. - # See https://bitbucket.org/pypa/distlib/issue/35/ - maker.variants = {""} - - # This is required because otherwise distlib creates scripts that are not - # executable. - # See https://bitbucket.org/pypa/distlib/issue/32/ - maker.set_mode = True - - # Generate the console and GUI entry points specified in the wheel - scripts_to_generate = get_console_script_specs(console) - - gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) - - generated_console_scripts = maker.make_multiple(scripts_to_generate) - generated.extend(generated_console_scripts) - - generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) - - if warn_script_location: - msg = message_about_scripts_not_on_PATH(generated_console_scripts) - if msg is not None: - logger.warning(msg) - - generated_file_mode = 0o666 & ~current_umask() - - @contextlib.contextmanager - def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: - with adjacent_tmp_file(path, **kwargs) as f: - yield f - os.chmod(f.name, generated_file_mode) - replace(f.name, path) - - dest_info_dir = os.path.join(lib_dir, info_dir) - - # Record pip as the installer - installer_path = os.path.join(dest_info_dir, "INSTALLER") - with _generate_file(installer_path) as installer_file: - installer_file.write(b"pip\n") - generated.append(installer_path) - - # Record the PEP 610 direct URL reference - if direct_url is not None: - direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) - with _generate_file(direct_url_path) as direct_url_file: - direct_url_file.write(direct_url.to_json().encode("utf-8")) - generated.append(direct_url_path) - - # Record the REQUESTED file - if requested: - requested_path = os.path.join(dest_info_dir, "REQUESTED") - with open(requested_path, "wb"): - pass - generated.append(requested_path) - - record_text = distribution.read_text("RECORD") - record_rows = list(csv.reader(record_text.splitlines())) - - rows = get_csv_rows_for_installed( - record_rows, - installed=installed, - changed=changed, - generated=generated, - lib_dir=lib_dir, - ) - - # Record details of all files installed - record_path = os.path.join(dest_info_dir, "RECORD") - - with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: - # Explicitly cast to typing.IO[str] as a workaround for the mypy error: - # "writer" has incompatible type "BinaryIO"; expected "_Writer" - writer = csv.writer(cast("IO[str]", record_file)) - writer.writerows(_normalized_outrows(rows)) - - -@contextlib.contextmanager -def req_error_context(req_description: str) -> Generator[None, None, None]: - try: - yield - except InstallationError as e: - message = f"For req: {req_description}. {e.args[0]}" - raise InstallationError(message) from e - - -def install_wheel( - name: str, - wheel_path: str, - scheme: Scheme, - req_description: str, - pycompile: bool = True, - warn_script_location: bool = True, - direct_url: Optional[DirectUrl] = None, - requested: bool = False, -) -> None: - with ZipFile(wheel_path, allowZip64=True) as z: - with req_error_context(req_description): - _install_wheel( - name=name, - wheel_zip=z, - wheel_path=wheel_path, - scheme=scheme, - pycompile=pycompile, - warn_script_location=warn_script_location, - direct_url=direct_url, - requested=requested, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py deleted file mode 100644 index 956717d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py +++ /dev/null @@ -1,730 +0,0 @@ -"""Prepares a distribution for installation -""" - -# The following comment should be removed at some point in the future. -# mypy: strict-optional=False - -import mimetypes -import os -import shutil -from pathlib import Path -from typing import Dict, Iterable, List, Optional - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.distributions import make_distribution_for_install_requirement -from pip._internal.distributions.installed import InstalledDistribution -from pip._internal.exceptions import ( - DirectoryUrlHashUnsupported, - HashMismatch, - HashUnpinned, - InstallationError, - MetadataInconsistent, - NetworkConnectionError, - VcsHashUnsupported, -) -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution, get_metadata_distribution -from pip._internal.models.direct_url import ArchiveInfo -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.network.download import BatchDownloader, Downloader -from pip._internal.network.lazy_wheel import ( - HTTPRangeRequestUnsupported, - dist_from_wheel_url, -) -from pip._internal.network.session import PipSession -from pip._internal.operations.build.build_tracker import BuildTracker -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils._log import getLogger -from pip._internal.utils.direct_url_helpers import ( - direct_url_for_editable, - direct_url_from_link, -) -from pip._internal.utils.hashes import Hashes, MissingHashes -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import ( - display_path, - hash_file, - hide_url, - redact_auth_from_requirement, -) -from pip._internal.utils.temp_dir import TempDirectory -from pip._internal.utils.unpacking import unpack_file -from pip._internal.vcs import vcs - -logger = getLogger(__name__) - - -def _get_prepared_distribution( - req: InstallRequirement, - build_tracker: BuildTracker, - finder: PackageFinder, - build_isolation: bool, - check_build_deps: bool, -) -> BaseDistribution: - """Prepare a distribution for installation.""" - abstract_dist = make_distribution_for_install_requirement(req) - tracker_id = abstract_dist.build_tracker_id - if tracker_id is not None: - with build_tracker.track(req, tracker_id): - abstract_dist.prepare_distribution_metadata( - finder, build_isolation, check_build_deps - ) - return abstract_dist.get_metadata_distribution() - - -def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: - vcs_backend = vcs.get_backend_for_scheme(link.scheme) - assert vcs_backend is not None - vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) - - -class File: - def __init__(self, path: str, content_type: Optional[str]) -> None: - self.path = path - if content_type is None: - self.content_type = mimetypes.guess_type(path)[0] - else: - self.content_type = content_type - - -def get_http_url( - link: Link, - download: Downloader, - download_dir: Optional[str] = None, - hashes: Optional[Hashes] = None, -) -> File: - temp_dir = TempDirectory(kind="unpack", globally_managed=True) - # If a download dir is specified, is the file already downloaded there? - already_downloaded_path = None - if download_dir: - already_downloaded_path = _check_download_dir(link, download_dir, hashes) - - if already_downloaded_path: - from_path = already_downloaded_path - content_type = None - else: - # let's download to a tmp dir - from_path, content_type = download(link, temp_dir.path) - if hashes: - hashes.check_against_path(from_path) - - return File(from_path, content_type) - - -def get_file_url( - link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None -) -> File: - """Get file and optionally check its hash.""" - # If a download dir is specified, is the file already there and valid? - already_downloaded_path = None - if download_dir: - already_downloaded_path = _check_download_dir(link, download_dir, hashes) - - if already_downloaded_path: - from_path = already_downloaded_path - else: - from_path = link.file_path - - # If --require-hashes is off, `hashes` is either empty, the - # link's embedded hash, or MissingHashes; it is required to - # match. If --require-hashes is on, we are satisfied by any - # hash in `hashes` matching: a URL-based or an option-based - # one; no internet-sourced hash will be in `hashes`. - if hashes: - hashes.check_against_path(from_path) - return File(from_path, None) - - -def unpack_url( - link: Link, - location: str, - download: Downloader, - verbosity: int, - download_dir: Optional[str] = None, - hashes: Optional[Hashes] = None, -) -> Optional[File]: - """Unpack link into location, downloading if required. - - :param hashes: A Hashes object, one of whose embedded hashes must match, - or HashMismatch will be raised. If the Hashes is empty, no matches are - required, and unhashable types of requirements (like VCS ones, which - would ordinarily raise HashUnsupported) are allowed. - """ - # non-editable vcs urls - if link.is_vcs: - unpack_vcs_link(link, location, verbosity=verbosity) - return None - - assert not link.is_existing_dir() - - # file urls - if link.is_file: - file = get_file_url(link, download_dir, hashes=hashes) - - # http urls - else: - file = get_http_url( - link, - download, - download_dir, - hashes=hashes, - ) - - # unpack the archive to the build dir location. even when only downloading - # archives, they have to be unpacked to parse dependencies, except wheels - if not link.is_wheel: - unpack_file(file.path, location, file.content_type) - - return file - - -def _check_download_dir( - link: Link, - download_dir: str, - hashes: Optional[Hashes], - warn_on_hash_mismatch: bool = True, -) -> Optional[str]: - """Check download_dir for previously downloaded file with correct hash - If a correct file is found return its path else None - """ - download_path = os.path.join(download_dir, link.filename) - - if not os.path.exists(download_path): - return None - - # If already downloaded, does its hash match? - logger.info("File was already downloaded %s", download_path) - if hashes: - try: - hashes.check_against_path(download_path) - except HashMismatch: - if warn_on_hash_mismatch: - logger.warning( - "Previously-downloaded file %s has bad hash. Re-downloading.", - download_path, - ) - os.unlink(download_path) - return None - return download_path - - -class RequirementPreparer: - """Prepares a Requirement""" - - def __init__( - self, - build_dir: str, - download_dir: Optional[str], - src_dir: str, - build_isolation: bool, - check_build_deps: bool, - build_tracker: BuildTracker, - session: PipSession, - progress_bar: str, - finder: PackageFinder, - require_hashes: bool, - use_user_site: bool, - lazy_wheel: bool, - verbosity: int, - legacy_resolver: bool, - ) -> None: - super().__init__() - - self.src_dir = src_dir - self.build_dir = build_dir - self.build_tracker = build_tracker - self._session = session - self._download = Downloader(session, progress_bar) - self._batch_download = BatchDownloader(session, progress_bar) - self.finder = finder - - # Where still-packed archives should be written to. If None, they are - # not saved, and are deleted immediately after unpacking. - self.download_dir = download_dir - - # Is build isolation allowed? - self.build_isolation = build_isolation - - # Should check build dependencies? - self.check_build_deps = check_build_deps - - # Should hash-checking be required? - self.require_hashes = require_hashes - - # Should install in user site-packages? - self.use_user_site = use_user_site - - # Should wheels be downloaded lazily? - self.use_lazy_wheel = lazy_wheel - - # How verbose should underlying tooling be? - self.verbosity = verbosity - - # Are we using the legacy resolver? - self.legacy_resolver = legacy_resolver - - # Memoized downloaded files, as mapping of url: path. - self._downloaded: Dict[str, str] = {} - - # Previous "header" printed for a link-based InstallRequirement - self._previous_requirement_header = ("", "") - - def _log_preparing_link(self, req: InstallRequirement) -> None: - """Provide context for the requirement being prepared.""" - if req.link.is_file and not req.is_wheel_from_cache: - message = "Processing %s" - information = str(display_path(req.link.file_path)) - else: - message = "Collecting %s" - information = redact_auth_from_requirement(req.req) if req.req else str(req) - - # If we used req.req, inject requirement source if available (this - # would already be included if we used req directly) - if req.req and req.comes_from: - if isinstance(req.comes_from, str): - comes_from: Optional[str] = req.comes_from - else: - comes_from = req.comes_from.from_path() - if comes_from: - information += f" (from {comes_from})" - - if (message, information) != self._previous_requirement_header: - self._previous_requirement_header = (message, information) - logger.info(message, information) - - if req.is_wheel_from_cache: - with indent_log(): - logger.info("Using cached %s", req.link.filename) - - def _ensure_link_req_src_dir( - self, req: InstallRequirement, parallel_builds: bool - ) -> None: - """Ensure source_dir of a linked InstallRequirement.""" - # Since source_dir is only set for editable requirements. - if req.link.is_wheel: - # We don't need to unpack wheels, so no need for a source - # directory. - return - assert req.source_dir is None - if req.link.is_existing_dir(): - # build local directories in-tree - req.source_dir = req.link.file_path - return - - # We always delete unpacked sdists after pip runs. - req.ensure_has_source_dir( - self.build_dir, - autodelete=True, - parallel_builds=parallel_builds, - ) - req.ensure_pristine_source_checkout() - - def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: - # By the time this is called, the requirement's link should have - # been checked so we can tell what kind of requirements req is - # and raise some more informative errors than otherwise. - # (For example, we can raise VcsHashUnsupported for a VCS URL - # rather than HashMissing.) - if not self.require_hashes: - return req.hashes(trust_internet=True) - - # We could check these first 2 conditions inside unpack_url - # and save repetition of conditions, but then we would - # report less-useful error messages for unhashable - # requirements, complaining that there's no hash provided. - if req.link.is_vcs: - raise VcsHashUnsupported() - if req.link.is_existing_dir(): - raise DirectoryUrlHashUnsupported() - - # Unpinned packages are asking for trouble when a new version - # is uploaded. This isn't a security check, but it saves users - # a surprising hash mismatch in the future. - # file:/// URLs aren't pinnable, so don't complain about them - # not being pinned. - if not req.is_direct and not req.is_pinned: - raise HashUnpinned() - - # If known-good hashes are missing for this requirement, - # shim it with a facade object that will provoke hash - # computation and then raise a HashMissing exception - # showing the user what the hash should be. - return req.hashes(trust_internet=False) or MissingHashes() - - def _fetch_metadata_only( - self, - req: InstallRequirement, - ) -> Optional[BaseDistribution]: - if self.legacy_resolver: - logger.debug( - "Metadata-only fetching is not used in the legacy resolver", - ) - return None - if self.require_hashes: - logger.debug( - "Metadata-only fetching is not used as hash checking is required", - ) - return None - # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. - return self._fetch_metadata_using_link_data_attr( - req - ) or self._fetch_metadata_using_lazy_wheel(req.link) - - def _fetch_metadata_using_link_data_attr( - self, - req: InstallRequirement, - ) -> Optional[BaseDistribution]: - """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" - # (1) Get the link to the metadata file, if provided by the backend. - metadata_link = req.link.metadata_link() - if metadata_link is None: - return None - assert req.req is not None - logger.verbose( - "Obtaining dependency information for %s from %s", - req.req, - metadata_link, - ) - # (2) Download the contents of the METADATA file, separate from the dist itself. - metadata_file = get_http_url( - metadata_link, - self._download, - hashes=metadata_link.as_hashes(), - ) - with open(metadata_file.path, "rb") as f: - metadata_contents = f.read() - # (3) Generate a dist just from those file contents. - metadata_dist = get_metadata_distribution( - metadata_contents, - req.link.filename, - req.req.name, - ) - # (4) Ensure the Name: field from the METADATA file matches the name from the - # install requirement. - # - # NB: raw_name will fall back to the name from the install requirement if - # the Name: field is not present, but it's noted in the raw_name docstring - # that that should NEVER happen anyway. - if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): - raise MetadataInconsistent( - req, "Name", req.req.name, metadata_dist.raw_name - ) - return metadata_dist - - def _fetch_metadata_using_lazy_wheel( - self, - link: Link, - ) -> Optional[BaseDistribution]: - """Fetch metadata using lazy wheel, if possible.""" - # --use-feature=fast-deps must be provided. - if not self.use_lazy_wheel: - return None - if link.is_file or not link.is_wheel: - logger.debug( - "Lazy wheel is not used as %r does not point to a remote wheel", - link, - ) - return None - - wheel = Wheel(link.filename) - name = canonicalize_name(wheel.name) - logger.info( - "Obtaining dependency information from %s %s", - name, - wheel.version, - ) - url = link.url.split("#", 1)[0] - try: - return dist_from_wheel_url(name, url, self._session) - except HTTPRangeRequestUnsupported: - logger.debug("%s does not support range requests", url) - return None - - def _complete_partial_requirements( - self, - partially_downloaded_reqs: Iterable[InstallRequirement], - parallel_builds: bool = False, - ) -> None: - """Download any requirements which were only fetched by metadata.""" - # Download to a temporary directory. These will be copied over as - # needed for downstream 'download', 'wheel', and 'install' commands. - temp_dir = TempDirectory(kind="unpack", globally_managed=True).path - - # Map each link to the requirement that owns it. This allows us to set - # `req.local_file_path` on the appropriate requirement after passing - # all the links at once into BatchDownloader. - links_to_fully_download: Dict[Link, InstallRequirement] = {} - for req in partially_downloaded_reqs: - assert req.link - links_to_fully_download[req.link] = req - - batch_download = self._batch_download( - links_to_fully_download.keys(), - temp_dir, - ) - for link, (filepath, _) in batch_download: - logger.debug("Downloading link %s to %s", link, filepath) - req = links_to_fully_download[link] - # Record the downloaded file path so wheel reqs can extract a Distribution - # in .get_dist(). - req.local_file_path = filepath - # Record that the file is downloaded so we don't do it again in - # _prepare_linked_requirement(). - self._downloaded[req.link.url] = filepath - - # If this is an sdist, we need to unpack it after downloading, but the - # .source_dir won't be set up until we are in _prepare_linked_requirement(). - # Add the downloaded archive to the install requirement to unpack after - # preparing the source dir. - if not req.is_wheel: - req.needs_unpacked_archive(Path(filepath)) - - # This step is necessary to ensure all lazy wheels are processed - # successfully by the 'download', 'wheel', and 'install' commands. - for req in partially_downloaded_reqs: - self._prepare_linked_requirement(req, parallel_builds) - - def prepare_linked_requirement( - self, req: InstallRequirement, parallel_builds: bool = False - ) -> BaseDistribution: - """Prepare a requirement to be obtained from req.link.""" - assert req.link - self._log_preparing_link(req) - with indent_log(): - # Check if the relevant file is already available - # in the download directory - file_path = None - if self.download_dir is not None and req.link.is_wheel: - hashes = self._get_linked_req_hashes(req) - file_path = _check_download_dir( - req.link, - self.download_dir, - hashes, - # When a locally built wheel has been found in cache, we don't warn - # about re-downloading when the already downloaded wheel hash does - # not match. This is because the hash must be checked against the - # original link, not the cached link. It that case the already - # downloaded file will be removed and re-fetched from cache (which - # implies a hash check against the cache entry's origin.json). - warn_on_hash_mismatch=not req.is_wheel_from_cache, - ) - - if file_path is not None: - # The file is already available, so mark it as downloaded - self._downloaded[req.link.url] = file_path - else: - # The file is not available, attempt to fetch only metadata - metadata_dist = self._fetch_metadata_only(req) - if metadata_dist is not None: - req.needs_more_preparation = True - return metadata_dist - - # None of the optimizations worked, fully prepare the requirement - return self._prepare_linked_requirement(req, parallel_builds) - - def prepare_linked_requirements_more( - self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False - ) -> None: - """Prepare linked requirements more, if needed.""" - reqs = [req for req in reqs if req.needs_more_preparation] - for req in reqs: - # Determine if any of these requirements were already downloaded. - if self.download_dir is not None and req.link.is_wheel: - hashes = self._get_linked_req_hashes(req) - file_path = _check_download_dir(req.link, self.download_dir, hashes) - if file_path is not None: - self._downloaded[req.link.url] = file_path - req.needs_more_preparation = False - - # Prepare requirements we found were already downloaded for some - # reason. The other downloads will be completed separately. - partially_downloaded_reqs: List[InstallRequirement] = [] - for req in reqs: - if req.needs_more_preparation: - partially_downloaded_reqs.append(req) - else: - self._prepare_linked_requirement(req, parallel_builds) - - # TODO: separate this part out from RequirementPreparer when the v1 - # resolver can be removed! - self._complete_partial_requirements( - partially_downloaded_reqs, - parallel_builds=parallel_builds, - ) - - def _prepare_linked_requirement( - self, req: InstallRequirement, parallel_builds: bool - ) -> BaseDistribution: - assert req.link - link = req.link - - hashes = self._get_linked_req_hashes(req) - - if hashes and req.is_wheel_from_cache: - assert req.download_info is not None - assert link.is_wheel - assert link.is_file - # We need to verify hashes, and we have found the requirement in the cache - # of locally built wheels. - if ( - isinstance(req.download_info.info, ArchiveInfo) - and req.download_info.info.hashes - and hashes.has_one_of(req.download_info.info.hashes) - ): - # At this point we know the requirement was built from a hashable source - # artifact, and we verified that the cache entry's hash of the original - # artifact matches one of the hashes we expect. We don't verify hashes - # against the cached wheel, because the wheel is not the original. - hashes = None - else: - logger.warning( - "The hashes of the source archive found in cache entry " - "don't match, ignoring cached built wheel " - "and re-downloading source." - ) - req.link = req.cached_wheel_source_link - link = req.link - - self._ensure_link_req_src_dir(req, parallel_builds) - - if link.is_existing_dir(): - local_file = None - elif link.url not in self._downloaded: - try: - local_file = unpack_url( - link, - req.source_dir, - self._download, - self.verbosity, - self.download_dir, - hashes, - ) - except NetworkConnectionError as exc: - raise InstallationError( - f"Could not install requirement {req} because of HTTP " - f"error {exc} for URL {link}" - ) - else: - file_path = self._downloaded[link.url] - if hashes: - hashes.check_against_path(file_path) - local_file = File(file_path, content_type=None) - - # If download_info is set, we got it from the wheel cache. - if req.download_info is None: - # Editables don't go through this function (see - # prepare_editable_requirement). - assert not req.editable - req.download_info = direct_url_from_link(link, req.source_dir) - # Make sure we have a hash in download_info. If we got it as part of the - # URL, it will have been verified and we can rely on it. Otherwise we - # compute it from the downloaded file. - # FIXME: https://github.com/pypa/pip/issues/11943 - if ( - isinstance(req.download_info.info, ArchiveInfo) - and not req.download_info.info.hashes - and local_file - ): - hash = hash_file(local_file.path)[0].hexdigest() - # We populate info.hash for backward compatibility. - # This will automatically populate info.hashes. - req.download_info.info.hash = f"sha256={hash}" - - # For use in later processing, - # preserve the file path on the requirement. - if local_file: - req.local_file_path = local_file.path - - dist = _get_prepared_distribution( - req, - self.build_tracker, - self.finder, - self.build_isolation, - self.check_build_deps, - ) - return dist - - def save_linked_requirement(self, req: InstallRequirement) -> None: - assert self.download_dir is not None - assert req.link is not None - link = req.link - if link.is_vcs or (link.is_existing_dir() and req.editable): - # Make a .zip of the source_dir we already created. - req.archive(self.download_dir) - return - - if link.is_existing_dir(): - logger.debug( - "Not copying link to destination directory " - "since it is a directory: %s", - link, - ) - return - if req.local_file_path is None: - # No distribution was downloaded for this requirement. - return - - download_location = os.path.join(self.download_dir, link.filename) - if not os.path.exists(download_location): - shutil.copy(req.local_file_path, download_location) - download_path = display_path(download_location) - logger.info("Saved %s", download_path) - - def prepare_editable_requirement( - self, - req: InstallRequirement, - ) -> BaseDistribution: - """Prepare an editable requirement.""" - assert req.editable, "cannot prepare a non-editable req as editable" - - logger.info("Obtaining %s", req) - - with indent_log(): - if self.require_hashes: - raise InstallationError( - f"The editable requirement {req} cannot be installed when " - "requiring hashes, because there is no single file to " - "hash." - ) - req.ensure_has_source_dir(self.src_dir) - req.update_editable() - assert req.source_dir - req.download_info = direct_url_for_editable(req.unpacked_source_directory) - - dist = _get_prepared_distribution( - req, - self.build_tracker, - self.finder, - self.build_isolation, - self.check_build_deps, - ) - - req.check_if_exists(self.use_user_site) - - return dist - - def prepare_installed_requirement( - self, - req: InstallRequirement, - skip_reason: str, - ) -> BaseDistribution: - """Prepare an already-installed requirement.""" - assert req.satisfied_by, "req should have been satisfied but isn't" - assert skip_reason is not None, ( - "did not get skip reason skipped but req.satisfied_by " - f"is set to {req.satisfied_by}" - ) - logger.info( - "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version - ) - with indent_log(): - if self.require_hashes: - logger.debug( - "Since it is already installed, we are trusting this " - "package without checking its hash. To ensure a " - "completely repeatable environment, install into an " - "empty virtualenv." - ) - return InstalledDistribution(req).get_metadata_distribution() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/pyproject.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/pyproject.py deleted file mode 100644 index 8de36b8..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/pyproject.py +++ /dev/null @@ -1,179 +0,0 @@ -import importlib.util -import os -from collections import namedtuple -from typing import Any, List, Optional - -from pip._vendor import tomli -from pip._vendor.packaging.requirements import InvalidRequirement, Requirement - -from pip._internal.exceptions import ( - InstallationError, - InvalidPyProjectBuildRequires, - MissingPyProjectBuildRequires, -) - - -def _is_list_of_str(obj: Any) -> bool: - return isinstance(obj, list) and all(isinstance(item, str) for item in obj) - - -def make_pyproject_path(unpacked_source_directory: str) -> str: - return os.path.join(unpacked_source_directory, "pyproject.toml") - - -BuildSystemDetails = namedtuple( - "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] -) - - -def load_pyproject_toml( - use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str -) -> Optional[BuildSystemDetails]: - """Load the pyproject.toml file. - - Parameters: - use_pep517 - Has the user requested PEP 517 processing? None - means the user hasn't explicitly specified. - pyproject_toml - Location of the project's pyproject.toml file - setup_py - Location of the project's setup.py file - req_name - The name of the requirement we're processing (for - error reporting) - - Returns: - None if we should use the legacy code path, otherwise a tuple - ( - requirements from pyproject.toml, - name of PEP 517 backend, - requirements we should check are installed after setting - up the build environment - directory paths to import the backend from (backend-path), - relative to the project root. - ) - """ - has_pyproject = os.path.isfile(pyproject_toml) - has_setup = os.path.isfile(setup_py) - - if not has_pyproject and not has_setup: - raise InstallationError( - f"{req_name} does not appear to be a Python project: " - f"neither 'setup.py' nor 'pyproject.toml' found." - ) - - if has_pyproject: - with open(pyproject_toml, encoding="utf-8") as f: - pp_toml = tomli.loads(f.read()) - build_system = pp_toml.get("build-system") - else: - build_system = None - - # The following cases must use PEP 517 - # We check for use_pep517 being non-None and falsey because that means - # the user explicitly requested --no-use-pep517. The value 0 as - # opposed to False can occur when the value is provided via an - # environment variable or config file option (due to the quirk of - # strtobool() returning an integer in pip's configuration code). - if has_pyproject and not has_setup: - if use_pep517 is not None and not use_pep517: - raise InstallationError( - "Disabling PEP 517 processing is invalid: " - "project does not have a setup.py" - ) - use_pep517 = True - elif build_system and "build-backend" in build_system: - if use_pep517 is not None and not use_pep517: - raise InstallationError( - "Disabling PEP 517 processing is invalid: " - "project specifies a build backend of {} " - "in pyproject.toml".format(build_system["build-backend"]) - ) - use_pep517 = True - - # If we haven't worked out whether to use PEP 517 yet, - # and the user hasn't explicitly stated a preference, - # we do so if the project has a pyproject.toml file - # or if we cannot import setuptools or wheels. - - # We fallback to PEP 517 when without setuptools or without the wheel package, - # so setuptools can be installed as a default build backend. - # For more info see: - # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 - # https://github.com/pypa/pip/issues/8559 - elif use_pep517 is None: - use_pep517 = ( - has_pyproject - or not importlib.util.find_spec("setuptools") - or not importlib.util.find_spec("wheel") - ) - - # At this point, we know whether we're going to use PEP 517. - assert use_pep517 is not None - - # If we're using the legacy code path, there is nothing further - # for us to do here. - if not use_pep517: - return None - - if build_system is None: - # Either the user has a pyproject.toml with no build-system - # section, or the user has no pyproject.toml, but has opted in - # explicitly via --use-pep517. - # In the absence of any explicit backend specification, we - # assume the setuptools backend that most closely emulates the - # traditional direct setup.py execution, and require wheel and - # a version of setuptools that supports that backend. - - build_system = { - "requires": ["setuptools>=40.8.0"], - "build-backend": "setuptools.build_meta:__legacy__", - } - - # If we're using PEP 517, we have build system information (either - # from pyproject.toml, or defaulted by the code above). - # Note that at this point, we do not know if the user has actually - # specified a backend, though. - assert build_system is not None - - # Ensure that the build-system section in pyproject.toml conforms - # to PEP 518. - - # Specifying the build-system table but not the requires key is invalid - if "requires" not in build_system: - raise MissingPyProjectBuildRequires(package=req_name) - - # Error out if requires is not a list of strings - requires = build_system["requires"] - if not _is_list_of_str(requires): - raise InvalidPyProjectBuildRequires( - package=req_name, - reason="It is not a list of strings.", - ) - - # Each requirement must be valid as per PEP 508 - for requirement in requires: - try: - Requirement(requirement) - except InvalidRequirement as error: - raise InvalidPyProjectBuildRequires( - package=req_name, - reason=f"It contains an invalid requirement: {requirement!r}", - ) from error - - backend = build_system.get("build-backend") - backend_path = build_system.get("backend-path", []) - check: List[str] = [] - if backend is None: - # If the user didn't specify a backend, we assume they want to use - # the setuptools backend. But we can't be sure they have included - # a version of setuptools which supplies the backend. So we - # make a note to check that this requirement is present once - # we have set up the environment. - # This is quite a lot of work to check for a very specific case. But - # the problem is, that case is potentially quite common - projects that - # adopted PEP 518 early for the ability to specify requirements to - # execute setup.py, but never considered needing to mention the build - # tools themselves. The original PEP 518 code had a similar check (but - # implemented in a different way). - backend = "setuptools.build_meta:__legacy__" - check = ["setuptools>=40.8.0"] - - return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py deleted file mode 100644 index 16de903..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py +++ /dev/null @@ -1,92 +0,0 @@ -import collections -import logging -from typing import Generator, List, Optional, Sequence, Tuple - -from pip._internal.utils.logging import indent_log - -from .req_file import parse_requirements -from .req_install import InstallRequirement -from .req_set import RequirementSet - -__all__ = [ - "RequirementSet", - "InstallRequirement", - "parse_requirements", - "install_given_reqs", -] - -logger = logging.getLogger(__name__) - - -class InstallationResult: - def __init__(self, name: str) -> None: - self.name = name - - def __repr__(self) -> str: - return f"InstallationResult(name={self.name!r})" - - -def _validate_requirements( - requirements: List[InstallRequirement], -) -> Generator[Tuple[str, InstallRequirement], None, None]: - for req in requirements: - assert req.name, f"invalid to-be-installed requirement: {req}" - yield req.name, req - - -def install_given_reqs( - requirements: List[InstallRequirement], - global_options: Sequence[str], - root: Optional[str], - home: Optional[str], - prefix: Optional[str], - warn_script_location: bool, - use_user_site: bool, - pycompile: bool, -) -> List[InstallationResult]: - """ - Install everything in the given list. - - (to be called after having downloaded and unpacked the packages) - """ - to_install = collections.OrderedDict(_validate_requirements(requirements)) - - if to_install: - logger.info( - "Installing collected packages: %s", - ", ".join(to_install.keys()), - ) - - installed = [] - - with indent_log(): - for req_name, requirement in to_install.items(): - if requirement.should_reinstall: - logger.info("Attempting uninstall: %s", req_name) - with indent_log(): - uninstalled_pathset = requirement.uninstall(auto_confirm=True) - else: - uninstalled_pathset = None - - try: - requirement.install( - global_options, - root=root, - home=home, - prefix=prefix, - warn_script_location=warn_script_location, - use_user_site=use_user_site, - pycompile=pycompile, - ) - except Exception: - # if install did not succeed, rollback previous uninstall - if uninstalled_pathset and not requirement.install_succeeded: - uninstalled_pathset.rollback() - raise - else: - if uninstalled_pathset and requirement.install_succeeded: - uninstalled_pathset.commit() - - installed.append(InstallationResult(req_name)) - - return installed diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3bfa4d9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc deleted file mode 100644 index 049071d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc deleted file mode 100644 index 219c8cc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc deleted file mode 100644 index 0460e21..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc deleted file mode 100644 index f2deea5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc deleted file mode 100644 index 76678e3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py deleted file mode 100644 index 7e2d0e5..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py +++ /dev/null @@ -1,576 +0,0 @@ -"""Backing implementation for InstallRequirement's various constructors - -The idea here is that these formed a major chunk of InstallRequirement's size -so, moving them and support code dedicated to them outside of that class -helps creates for better understandability for the rest of the code. - -These are meant to be used elsewhere within pip to create instances of -InstallRequirement. -""" - -import copy -import logging -import os -import re -from typing import Collection, Dict, List, Optional, Set, Tuple, Union - -from pip._vendor.packaging.markers import Marker -from pip._vendor.packaging.requirements import InvalidRequirement, Requirement -from pip._vendor.packaging.specifiers import Specifier - -from pip._internal.exceptions import InstallationError -from pip._internal.models.index import PyPI, TestPyPI -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.req.req_file import ParsedRequirement -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.filetypes import is_archive_file -from pip._internal.utils.misc import is_installable_dir -from pip._internal.utils.packaging import get_requirement -from pip._internal.utils.urls import path_to_url -from pip._internal.vcs import is_url, vcs - -__all__ = [ - "install_req_from_editable", - "install_req_from_line", - "parse_editable", -] - -logger = logging.getLogger(__name__) -operators = Specifier._operators.keys() - - -def _strip_extras(path: str) -> Tuple[str, Optional[str]]: - m = re.match(r"^(.+)(\[[^\]]+\])$", path) - extras = None - if m: - path_no_extras = m.group(1) - extras = m.group(2) - else: - path_no_extras = path - - return path_no_extras, extras - - -def convert_extras(extras: Optional[str]) -> Set[str]: - if not extras: - return set() - return get_requirement("placeholder" + extras.lower()).extras - - -def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: - """ - Returns a new requirement based on the given one, with the supplied extras. If the - given requirement already has extras those are replaced (or dropped if no new extras - are given). - """ - match: Optional[re.Match[str]] = re.fullmatch( - # see https://peps.python.org/pep-0508/#complete-grammar - r"([\w\t .-]+)(\[[^\]]*\])?(.*)", - str(req), - flags=re.ASCII, - ) - # ireq.req is a valid requirement so the regex should always match - assert ( - match is not None - ), f"regex match on requirement {req} failed, this should never happen" - pre: Optional[str] = match.group(1) - post: Optional[str] = match.group(3) - assert ( - pre is not None and post is not None - ), f"regex group selection for requirement {req} failed, this should never happen" - extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" - return Requirement(f"{pre}{extras}{post}") - - -def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: - """Parses an editable requirement into: - - a requirement name - - an URL - - extras - - editable options - Accepted requirements: - svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir - .[some_extra] - """ - - url = editable_req - - # If a file path is specified with extras, strip off the extras. - url_no_extras, extras = _strip_extras(url) - - if os.path.isdir(url_no_extras): - # Treating it as code that has already been checked out - url_no_extras = path_to_url(url_no_extras) - - if url_no_extras.lower().startswith("file:"): - package_name = Link(url_no_extras).egg_fragment - if extras: - return ( - package_name, - url_no_extras, - get_requirement("placeholder" + extras.lower()).extras, - ) - else: - return package_name, url_no_extras, set() - - for version_control in vcs: - if url.lower().startswith(f"{version_control}:"): - url = f"{version_control}+{url}" - break - - link = Link(url) - - if not link.is_vcs: - backends = ", ".join(vcs.all_schemes) - raise InstallationError( - f"{editable_req} is not a valid editable requirement. " - f"It should either be a path to a local project or a VCS URL " - f"(beginning with {backends})." - ) - - package_name = link.egg_fragment - if not package_name: - raise InstallationError( - "Could not detect requirement name for '{}', please specify one " - "with #egg=your_package_name".format(editable_req) - ) - return package_name, url, set() - - -def check_first_requirement_in_file(filename: str) -> None: - """Check if file is parsable as a requirements file. - - This is heavily based on ``pkg_resources.parse_requirements``, but - simplified to just check the first meaningful line. - - :raises InvalidRequirement: If the first meaningful line cannot be parsed - as an requirement. - """ - with open(filename, encoding="utf-8", errors="ignore") as f: - # Create a steppable iterator, so we can handle \-continuations. - lines = ( - line - for line in (line.strip() for line in f) - if line and not line.startswith("#") # Skip blank lines/comments. - ) - - for line in lines: - # Drop comments -- a hash without a space may be in a URL. - if " #" in line: - line = line[: line.find(" #")] - # If there is a line continuation, drop it, and append the next line. - if line.endswith("\\"): - line = line[:-2].strip() + next(lines, "") - Requirement(line) - return - - -def deduce_helpful_msg(req: str) -> str: - """Returns helpful msg in case requirements file does not exist, - or cannot be parsed. - - :params req: Requirements file path - """ - if not os.path.exists(req): - return f" File '{req}' does not exist." - msg = " The path does exist. " - # Try to parse and check if it is a requirements file. - try: - check_first_requirement_in_file(req) - except InvalidRequirement: - logger.debug("Cannot parse '%s' as requirements file", req) - else: - msg += ( - f"The argument you provided " - f"({req}) appears to be a" - f" requirements file. If that is the" - f" case, use the '-r' flag to install" - f" the packages specified within it." - ) - return msg - - -class RequirementParts: - def __init__( - self, - requirement: Optional[Requirement], - link: Optional[Link], - markers: Optional[Marker], - extras: Set[str], - ): - self.requirement = requirement - self.link = link - self.markers = markers - self.extras = extras - - -def parse_req_from_editable(editable_req: str) -> RequirementParts: - name, url, extras_override = parse_editable(editable_req) - - if name is not None: - try: - req: Optional[Requirement] = Requirement(name) - except InvalidRequirement: - raise InstallationError(f"Invalid requirement: '{name}'") - else: - req = None - - link = Link(url) - - return RequirementParts(req, link, None, extras_override) - - -# ---- The actual constructors follow ---- - - -def install_req_from_editable( - editable_req: str, - comes_from: Optional[Union[InstallRequirement, str]] = None, - *, - use_pep517: Optional[bool] = None, - isolated: bool = False, - global_options: Optional[List[str]] = None, - hash_options: Optional[Dict[str, List[str]]] = None, - constraint: bool = False, - user_supplied: bool = False, - permit_editable_wheels: bool = False, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, -) -> InstallRequirement: - parts = parse_req_from_editable(editable_req) - - return InstallRequirement( - parts.requirement, - comes_from=comes_from, - user_supplied=user_supplied, - editable=True, - permit_editable_wheels=permit_editable_wheels, - link=parts.link, - constraint=constraint, - use_pep517=use_pep517, - isolated=isolated, - global_options=global_options, - hash_options=hash_options, - config_settings=config_settings, - extras=parts.extras, - ) - - -def _looks_like_path(name: str) -> bool: - """Checks whether the string "looks like" a path on the filesystem. - - This does not check whether the target actually exists, only judge from the - appearance. - - Returns true if any of the following conditions is true: - * a path separator is found (either os.path.sep or os.path.altsep); - * a dot is found (which represents the current directory). - """ - if os.path.sep in name: - return True - if os.path.altsep is not None and os.path.altsep in name: - return True - if name.startswith("."): - return True - return False - - -def _get_url_from_path(path: str, name: str) -> Optional[str]: - """ - First, it checks whether a provided path is an installable directory. If it - is, returns the path. - - If false, check if the path is an archive file (such as a .whl). - The function checks if the path is a file. If false, if the path has - an @, it will treat it as a PEP 440 URL requirement and return the path. - """ - if _looks_like_path(name) and os.path.isdir(path): - if is_installable_dir(path): - return path_to_url(path) - # TODO: The is_installable_dir test here might not be necessary - # now that it is done in load_pyproject_toml too. - raise InstallationError( - f"Directory {name!r} is not installable. Neither 'setup.py' " - "nor 'pyproject.toml' found." - ) - if not is_archive_file(path): - return None - if os.path.isfile(path): - return path_to_url(path) - urlreq_parts = name.split("@", 1) - if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): - # If the path contains '@' and the part before it does not look - # like a path, try to treat it as a PEP 440 URL req instead. - return None - logger.warning( - "Requirement %r looks like a filename, but the file does not exist", - name, - ) - return path_to_url(path) - - -def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: - if is_url(name): - marker_sep = "; " - else: - marker_sep = ";" - if marker_sep in name: - name, markers_as_string = name.split(marker_sep, 1) - markers_as_string = markers_as_string.strip() - if not markers_as_string: - markers = None - else: - markers = Marker(markers_as_string) - else: - markers = None - name = name.strip() - req_as_string = None - path = os.path.normpath(os.path.abspath(name)) - link = None - extras_as_string = None - - if is_url(name): - link = Link(name) - else: - p, extras_as_string = _strip_extras(path) - url = _get_url_from_path(p, name) - if url is not None: - link = Link(url) - - # it's a local file, dir, or url - if link: - # Handle relative file URLs - if link.scheme == "file" and re.search(r"\.\./", link.url): - link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) - # wheel file - if link.is_wheel: - wheel = Wheel(link.filename) # can raise InvalidWheelFilename - req_as_string = f"{wheel.name}=={wheel.version}" - else: - # set the req to the egg fragment. when it's not there, this - # will become an 'unnamed' requirement - req_as_string = link.egg_fragment - - # a requirement specifier - else: - req_as_string = name - - extras = convert_extras(extras_as_string) - - def with_source(text: str) -> str: - if not line_source: - return text - return f"{text} (from {line_source})" - - def _parse_req_string(req_as_string: str) -> Requirement: - try: - req = get_requirement(req_as_string) - except InvalidRequirement: - if os.path.sep in req_as_string: - add_msg = "It looks like a path." - add_msg += deduce_helpful_msg(req_as_string) - elif "=" in req_as_string and not any( - op in req_as_string for op in operators - ): - add_msg = "= is not a valid operator. Did you mean == ?" - else: - add_msg = "" - msg = with_source(f"Invalid requirement: {req_as_string!r}") - if add_msg: - msg += f"\nHint: {add_msg}" - raise InstallationError(msg) - else: - # Deprecate extras after specifiers: "name>=1.0[extras]" - # This currently works by accident because _strip_extras() parses - # any extras in the end of the string and those are saved in - # RequirementParts - for spec in req.specifier: - spec_str = str(spec) - if spec_str.endswith("]"): - msg = f"Extras after version '{spec_str}'." - raise InstallationError(msg) - return req - - if req_as_string is not None: - req: Optional[Requirement] = _parse_req_string(req_as_string) - else: - req = None - - return RequirementParts(req, link, markers, extras) - - -def install_req_from_line( - name: str, - comes_from: Optional[Union[str, InstallRequirement]] = None, - *, - use_pep517: Optional[bool] = None, - isolated: bool = False, - global_options: Optional[List[str]] = None, - hash_options: Optional[Dict[str, List[str]]] = None, - constraint: bool = False, - line_source: Optional[str] = None, - user_supplied: bool = False, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, -) -> InstallRequirement: - """Creates an InstallRequirement from a name, which might be a - requirement, directory containing 'setup.py', filename, or URL. - - :param line_source: An optional string describing where the line is from, - for logging purposes in case of an error. - """ - parts = parse_req_from_line(name, line_source) - - return InstallRequirement( - parts.requirement, - comes_from, - link=parts.link, - markers=parts.markers, - use_pep517=use_pep517, - isolated=isolated, - global_options=global_options, - hash_options=hash_options, - config_settings=config_settings, - constraint=constraint, - extras=parts.extras, - user_supplied=user_supplied, - ) - - -def install_req_from_req_string( - req_string: str, - comes_from: Optional[InstallRequirement] = None, - isolated: bool = False, - use_pep517: Optional[bool] = None, - user_supplied: bool = False, -) -> InstallRequirement: - try: - req = get_requirement(req_string) - except InvalidRequirement: - raise InstallationError(f"Invalid requirement: '{req_string}'") - - domains_not_allowed = [ - PyPI.file_storage_domain, - TestPyPI.file_storage_domain, - ] - if ( - req.url - and comes_from - and comes_from.link - and comes_from.link.netloc in domains_not_allowed - ): - # Explicitly disallow pypi packages that depend on external urls - raise InstallationError( - "Packages installed from PyPI cannot depend on packages " - "which are not also hosted on PyPI.\n" - f"{comes_from.name} depends on {req} " - ) - - return InstallRequirement( - req, - comes_from, - isolated=isolated, - use_pep517=use_pep517, - user_supplied=user_supplied, - ) - - -def install_req_from_parsed_requirement( - parsed_req: ParsedRequirement, - isolated: bool = False, - use_pep517: Optional[bool] = None, - user_supplied: bool = False, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, -) -> InstallRequirement: - if parsed_req.is_editable: - req = install_req_from_editable( - parsed_req.requirement, - comes_from=parsed_req.comes_from, - use_pep517=use_pep517, - constraint=parsed_req.constraint, - isolated=isolated, - user_supplied=user_supplied, - config_settings=config_settings, - ) - - else: - req = install_req_from_line( - parsed_req.requirement, - comes_from=parsed_req.comes_from, - use_pep517=use_pep517, - isolated=isolated, - global_options=( - parsed_req.options.get("global_options", []) - if parsed_req.options - else [] - ), - hash_options=( - parsed_req.options.get("hashes", {}) if parsed_req.options else {} - ), - constraint=parsed_req.constraint, - line_source=parsed_req.line_source, - user_supplied=user_supplied, - config_settings=config_settings, - ) - return req - - -def install_req_from_link_and_ireq( - link: Link, ireq: InstallRequirement -) -> InstallRequirement: - return InstallRequirement( - req=ireq.req, - comes_from=ireq.comes_from, - editable=ireq.editable, - link=link, - markers=ireq.markers, - use_pep517=ireq.use_pep517, - isolated=ireq.isolated, - global_options=ireq.global_options, - hash_options=ireq.hash_options, - config_settings=ireq.config_settings, - user_supplied=ireq.user_supplied, - ) - - -def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: - """ - Creates a new InstallationRequirement using the given template but without - any extras. Sets the original requirement as the new one's parent - (comes_from). - """ - return InstallRequirement( - req=( - _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None - ), - comes_from=ireq, - editable=ireq.editable, - link=ireq.link, - markers=ireq.markers, - use_pep517=ireq.use_pep517, - isolated=ireq.isolated, - global_options=ireq.global_options, - hash_options=ireq.hash_options, - constraint=ireq.constraint, - extras=[], - config_settings=ireq.config_settings, - user_supplied=ireq.user_supplied, - permit_editable_wheels=ireq.permit_editable_wheels, - ) - - -def install_req_extend_extras( - ireq: InstallRequirement, - extras: Collection[str], -) -> InstallRequirement: - """ - Returns a copy of an installation requirement with some additional extras. - Makes a shallow copy of the ireq object. - """ - result = copy.copy(ireq) - result.extras = {*ireq.extras, *extras} - result.req = ( - _set_requirement_extras(ireq.req, result.extras) - if ireq.req is not None - else None - ) - return result diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py deleted file mode 100644 index 1ef3d5e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py +++ /dev/null @@ -1,554 +0,0 @@ -""" -Requirements file parsing -""" - -import logging -import optparse -import os -import re -import shlex -import urllib.parse -from optparse import Values -from typing import ( - TYPE_CHECKING, - Any, - Callable, - Dict, - Generator, - Iterable, - List, - Optional, - Tuple, -) - -from pip._internal.cli import cmdoptions -from pip._internal.exceptions import InstallationError, RequirementsFileParseError -from pip._internal.models.search_scope import SearchScope -from pip._internal.network.session import PipSession -from pip._internal.network.utils import raise_for_status -from pip._internal.utils.encoding import auto_decode -from pip._internal.utils.urls import get_url_scheme - -if TYPE_CHECKING: - # NoReturn introduced in 3.6.2; imported only for type checking to maintain - # pip compatibility with older patch versions of Python 3.6 - from typing import NoReturn - - from pip._internal.index.package_finder import PackageFinder - -__all__ = ["parse_requirements"] - -ReqFileLines = Iterable[Tuple[int, str]] - -LineParser = Callable[[str], Tuple[str, Values]] - -SCHEME_RE = re.compile(r"^(http|https|file):", re.I) -COMMENT_RE = re.compile(r"(^|\s+)#.*$") - -# Matches environment variable-style values in '${MY_VARIABLE_1}' with the -# variable name consisting of only uppercase letters, digits or the '_' -# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, -# 2013 Edition. -ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") - -SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ - cmdoptions.index_url, - cmdoptions.extra_index_url, - cmdoptions.no_index, - cmdoptions.constraints, - cmdoptions.requirements, - cmdoptions.editable, - cmdoptions.find_links, - cmdoptions.no_binary, - cmdoptions.only_binary, - cmdoptions.prefer_binary, - cmdoptions.require_hashes, - cmdoptions.pre, - cmdoptions.trusted_host, - cmdoptions.use_new_feature, -] - -# options to be passed to requirements -SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ - cmdoptions.global_options, - cmdoptions.hash, - cmdoptions.config_settings, -] - -SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ - cmdoptions.config_settings, -] - - -# the 'dest' string values -SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] -SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ - str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ -] - -logger = logging.getLogger(__name__) - - -class ParsedRequirement: - def __init__( - self, - requirement: str, - is_editable: bool, - comes_from: str, - constraint: bool, - options: Optional[Dict[str, Any]] = None, - line_source: Optional[str] = None, - ) -> None: - self.requirement = requirement - self.is_editable = is_editable - self.comes_from = comes_from - self.options = options - self.constraint = constraint - self.line_source = line_source - - -class ParsedLine: - def __init__( - self, - filename: str, - lineno: int, - args: str, - opts: Values, - constraint: bool, - ) -> None: - self.filename = filename - self.lineno = lineno - self.opts = opts - self.constraint = constraint - - if args: - self.is_requirement = True - self.is_editable = False - self.requirement = args - elif opts.editables: - self.is_requirement = True - self.is_editable = True - # We don't support multiple -e on one line - self.requirement = opts.editables[0] - else: - self.is_requirement = False - - -def parse_requirements( - filename: str, - session: PipSession, - finder: Optional["PackageFinder"] = None, - options: Optional[optparse.Values] = None, - constraint: bool = False, -) -> Generator[ParsedRequirement, None, None]: - """Parse a requirements file and yield ParsedRequirement instances. - - :param filename: Path or url of requirements file. - :param session: PipSession instance. - :param finder: Instance of pip.index.PackageFinder. - :param options: cli options. - :param constraint: If true, parsing a constraint file rather than - requirements file. - """ - line_parser = get_line_parser(finder) - parser = RequirementsFileParser(session, line_parser) - - for parsed_line in parser.parse(filename, constraint): - parsed_req = handle_line( - parsed_line, options=options, finder=finder, session=session - ) - if parsed_req is not None: - yield parsed_req - - -def preprocess(content: str) -> ReqFileLines: - """Split, filter, and join lines, and return a line iterator - - :param content: the content of the requirements file - """ - lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) - lines_enum = join_lines(lines_enum) - lines_enum = ignore_comments(lines_enum) - lines_enum = expand_env_variables(lines_enum) - return lines_enum - - -def handle_requirement_line( - line: ParsedLine, - options: Optional[optparse.Values] = None, -) -> ParsedRequirement: - # preserve for the nested code path - line_comes_from = "{} {} (line {})".format( - "-c" if line.constraint else "-r", - line.filename, - line.lineno, - ) - - assert line.is_requirement - - # get the options that apply to requirements - if line.is_editable: - supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST - else: - supported_dest = SUPPORTED_OPTIONS_REQ_DEST - req_options = {} - for dest in supported_dest: - if dest in line.opts.__dict__ and line.opts.__dict__[dest]: - req_options[dest] = line.opts.__dict__[dest] - - line_source = f"line {line.lineno} of {line.filename}" - return ParsedRequirement( - requirement=line.requirement, - is_editable=line.is_editable, - comes_from=line_comes_from, - constraint=line.constraint, - options=req_options, - line_source=line_source, - ) - - -def handle_option_line( - opts: Values, - filename: str, - lineno: int, - finder: Optional["PackageFinder"] = None, - options: Optional[optparse.Values] = None, - session: Optional[PipSession] = None, -) -> None: - if opts.hashes: - logger.warning( - "%s line %s has --hash but no requirement, and will be ignored.", - filename, - lineno, - ) - - if options: - # percolate options upward - if opts.require_hashes: - options.require_hashes = opts.require_hashes - if opts.features_enabled: - options.features_enabled.extend( - f for f in opts.features_enabled if f not in options.features_enabled - ) - - # set finder options - if finder: - find_links = finder.find_links - index_urls = finder.index_urls - no_index = finder.search_scope.no_index - if opts.no_index is True: - no_index = True - index_urls = [] - if opts.index_url and not no_index: - index_urls = [opts.index_url] - if opts.extra_index_urls and not no_index: - index_urls.extend(opts.extra_index_urls) - if opts.find_links: - # FIXME: it would be nice to keep track of the source - # of the find_links: support a find-links local path - # relative to a requirements file. - value = opts.find_links[0] - req_dir = os.path.dirname(os.path.abspath(filename)) - relative_to_reqs_file = os.path.join(req_dir, value) - if os.path.exists(relative_to_reqs_file): - value = relative_to_reqs_file - find_links.append(value) - - if session: - # We need to update the auth urls in session - session.update_index_urls(index_urls) - - search_scope = SearchScope( - find_links=find_links, - index_urls=index_urls, - no_index=no_index, - ) - finder.search_scope = search_scope - - if opts.pre: - finder.set_allow_all_prereleases() - - if opts.prefer_binary: - finder.set_prefer_binary() - - if session: - for host in opts.trusted_hosts or []: - source = f"line {lineno} of {filename}" - session.add_trusted_host(host, source=source) - - -def handle_line( - line: ParsedLine, - options: Optional[optparse.Values] = None, - finder: Optional["PackageFinder"] = None, - session: Optional[PipSession] = None, -) -> Optional[ParsedRequirement]: - """Handle a single parsed requirements line; This can result in - creating/yielding requirements, or updating the finder. - - :param line: The parsed line to be processed. - :param options: CLI options. - :param finder: The finder - updated by non-requirement lines. - :param session: The session - updated by non-requirement lines. - - Returns a ParsedRequirement object if the line is a requirement line, - otherwise returns None. - - For lines that contain requirements, the only options that have an effect - are from SUPPORTED_OPTIONS_REQ, and they are scoped to the - requirement. Other options from SUPPORTED_OPTIONS may be present, but are - ignored. - - For lines that do not contain requirements, the only options that have an - effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may - be present, but are ignored. These lines may contain multiple options - (although our docs imply only one is supported), and all our parsed and - affect the finder. - """ - - if line.is_requirement: - parsed_req = handle_requirement_line(line, options) - return parsed_req - else: - handle_option_line( - line.opts, - line.filename, - line.lineno, - finder, - options, - session, - ) - return None - - -class RequirementsFileParser: - def __init__( - self, - session: PipSession, - line_parser: LineParser, - ) -> None: - self._session = session - self._line_parser = line_parser - - def parse( - self, filename: str, constraint: bool - ) -> Generator[ParsedLine, None, None]: - """Parse a given file, yielding parsed lines.""" - yield from self._parse_and_recurse(filename, constraint) - - def _parse_and_recurse( - self, filename: str, constraint: bool - ) -> Generator[ParsedLine, None, None]: - for line in self._parse_file(filename, constraint): - if not line.is_requirement and ( - line.opts.requirements or line.opts.constraints - ): - # parse a nested requirements file - if line.opts.requirements: - req_path = line.opts.requirements[0] - nested_constraint = False - else: - req_path = line.opts.constraints[0] - nested_constraint = True - - # original file is over http - if SCHEME_RE.search(filename): - # do a url join so relative paths work - req_path = urllib.parse.urljoin(filename, req_path) - # original file and nested file are paths - elif not SCHEME_RE.search(req_path): - # do a join so relative paths work - req_path = os.path.join( - os.path.dirname(filename), - req_path, - ) - - yield from self._parse_and_recurse(req_path, nested_constraint) - else: - yield line - - def _parse_file( - self, filename: str, constraint: bool - ) -> Generator[ParsedLine, None, None]: - _, content = get_file_content(filename, self._session) - - lines_enum = preprocess(content) - - for line_number, line in lines_enum: - try: - args_str, opts = self._line_parser(line) - except OptionParsingError as e: - # add offending line - msg = f"Invalid requirement: {line}\n{e.msg}" - raise RequirementsFileParseError(msg) - - yield ParsedLine( - filename, - line_number, - args_str, - opts, - constraint, - ) - - -def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: - def parse_line(line: str) -> Tuple[str, Values]: - # Build new parser for each line since it accumulates appendable - # options. - parser = build_parser() - defaults = parser.get_default_values() - defaults.index_url = None - if finder: - defaults.format_control = finder.format_control - - args_str, options_str = break_args_options(line) - - try: - options = shlex.split(options_str) - except ValueError as e: - raise OptionParsingError(f"Could not split options: {options_str}") from e - - opts, _ = parser.parse_args(options, defaults) - - return args_str, opts - - return parse_line - - -def break_args_options(line: str) -> Tuple[str, str]: - """Break up the line into an args and options string. We only want to shlex - (and then optparse) the options, not the args. args can contain markers - which are corrupted by shlex. - """ - tokens = line.split(" ") - args = [] - options = tokens[:] - for token in tokens: - if token.startswith("-") or token.startswith("--"): - break - else: - args.append(token) - options.pop(0) - return " ".join(args), " ".join(options) - - -class OptionParsingError(Exception): - def __init__(self, msg: str) -> None: - self.msg = msg - - -def build_parser() -> optparse.OptionParser: - """ - Return a parser for parsing requirement lines - """ - parser = optparse.OptionParser(add_help_option=False) - - option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ - for option_factory in option_factories: - option = option_factory() - parser.add_option(option) - - # By default optparse sys.exits on parsing errors. We want to wrap - # that in our own exception. - def parser_exit(self: Any, msg: str) -> "NoReturn": - raise OptionParsingError(msg) - - # NOTE: mypy disallows assigning to a method - # https://github.com/python/mypy/issues/2427 - parser.exit = parser_exit # type: ignore - - return parser - - -def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: - """Joins a line ending in '\' with the previous line (except when following - comments). The joined line takes on the index of the first line. - """ - primary_line_number = None - new_line: List[str] = [] - for line_number, line in lines_enum: - if not line.endswith("\\") or COMMENT_RE.match(line): - if COMMENT_RE.match(line): - # this ensures comments are always matched later - line = " " + line - if new_line: - new_line.append(line) - assert primary_line_number is not None - yield primary_line_number, "".join(new_line) - new_line = [] - else: - yield line_number, line - else: - if not new_line: - primary_line_number = line_number - new_line.append(line.strip("\\")) - - # last line contains \ - if new_line: - assert primary_line_number is not None - yield primary_line_number, "".join(new_line) - - # TODO: handle space after '\'. - - -def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: - """ - Strips comments and filter empty lines. - """ - for line_number, line in lines_enum: - line = COMMENT_RE.sub("", line) - line = line.strip() - if line: - yield line_number, line - - -def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: - """Replace all environment variables that can be retrieved via `os.getenv`. - - The only allowed format for environment variables defined in the - requirement file is `${MY_VARIABLE_1}` to ensure two things: - - 1. Strings that contain a `$` aren't accidentally (partially) expanded. - 2. Ensure consistency across platforms for requirement files. - - These points are the result of a discussion on the `github pull - request #3514 `_. - - Valid characters in variable names follow the `POSIX standard - `_ and are limited - to uppercase letter, digits and the `_` (underscore). - """ - for line_number, line in lines_enum: - for env_var, var_name in ENV_VAR_RE.findall(line): - value = os.getenv(var_name) - if not value: - continue - - line = line.replace(env_var, value) - - yield line_number, line - - -def get_file_content(url: str, session: PipSession) -> Tuple[str, str]: - """Gets the content of a file; it may be a filename, file: URL, or - http: URL. Returns (location, content). Content is unicode. - Respects # -*- coding: declarations on the retrieved files. - - :param url: File path or url. - :param session: PipSession instance. - """ - scheme = get_url_scheme(url) - - # Pip has special support for file:// URLs (LocalFSAdapter). - if scheme in ["http", "https", "file"]: - resp = session.get(url) - raise_for_status(resp) - return resp.url, resp.text - - # Assume this is a bare path. - try: - with open(url, "rb") as f: - content = auto_decode(f.read()) - except OSError as exc: - raise InstallationError(f"Could not open requirements file: {exc}") - return url, content diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py deleted file mode 100644 index a65611c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py +++ /dev/null @@ -1,923 +0,0 @@ -import functools -import logging -import os -import shutil -import sys -import uuid -import zipfile -from optparse import Values -from pathlib import Path -from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union - -from pip._vendor.packaging.markers import Marker -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.packaging.specifiers import SpecifierSet -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.packaging.version import Version -from pip._vendor.packaging.version import parse as parse_version -from pip._vendor.pyproject_hooks import BuildBackendHookCaller - -from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment -from pip._internal.exceptions import InstallationError, PreviousBuildDirError -from pip._internal.locations import get_scheme -from pip._internal.metadata import ( - BaseDistribution, - get_default_environment, - get_directory_distribution, - get_wheel_distribution, -) -from pip._internal.metadata.base import FilesystemWheel -from pip._internal.models.direct_url import DirectUrl -from pip._internal.models.link import Link -from pip._internal.operations.build.metadata import generate_metadata -from pip._internal.operations.build.metadata_editable import generate_editable_metadata -from pip._internal.operations.build.metadata_legacy import ( - generate_metadata as generate_metadata_legacy, -) -from pip._internal.operations.install.editable_legacy import ( - install_editable as install_editable_legacy, -) -from pip._internal.operations.install.wheel import install_wheel -from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path -from pip._internal.req.req_uninstall import UninstallPathSet -from pip._internal.utils.deprecation import deprecated -from pip._internal.utils.hashes import Hashes -from pip._internal.utils.misc import ( - ConfiguredBuildBackendHookCaller, - ask_path_exists, - backup_dir, - display_path, - hide_url, - is_installable_dir, - redact_auth_from_requirement, - redact_auth_from_url, -) -from pip._internal.utils.packaging import safe_extra -from pip._internal.utils.subprocess import runner_with_spinner_message -from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds -from pip._internal.utils.unpacking import unpack_file -from pip._internal.utils.virtualenv import running_under_virtualenv -from pip._internal.vcs import vcs - -logger = logging.getLogger(__name__) - - -class InstallRequirement: - """ - Represents something that may be installed later on, may have information - about where to fetch the relevant requirement and also contains logic for - installing the said requirement. - """ - - def __init__( - self, - req: Optional[Requirement], - comes_from: Optional[Union[str, "InstallRequirement"]], - editable: bool = False, - link: Optional[Link] = None, - markers: Optional[Marker] = None, - use_pep517: Optional[bool] = None, - isolated: bool = False, - *, - global_options: Optional[List[str]] = None, - hash_options: Optional[Dict[str, List[str]]] = None, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - constraint: bool = False, - extras: Collection[str] = (), - user_supplied: bool = False, - permit_editable_wheels: bool = False, - ) -> None: - assert req is None or isinstance(req, Requirement), req - self.req = req - self.comes_from = comes_from - self.constraint = constraint - self.editable = editable - self.permit_editable_wheels = permit_editable_wheels - - # source_dir is the local directory where the linked requirement is - # located, or unpacked. In case unpacking is needed, creating and - # populating source_dir is done by the RequirementPreparer. Note this - # is not necessarily the directory where pyproject.toml or setup.py is - # located - that one is obtained via unpacked_source_directory. - self.source_dir: Optional[str] = None - if self.editable: - assert link - if link.is_file: - self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) - - # original_link is the direct URL that was provided by the user for the - # requirement, either directly or via a constraints file. - if link is None and req and req.url: - # PEP 508 URL requirement - link = Link(req.url) - self.link = self.original_link = link - - # When this InstallRequirement is a wheel obtained from the cache of locally - # built wheels, this is the source link corresponding to the cache entry, which - # was used to download and build the cached wheel. - self.cached_wheel_source_link: Optional[Link] = None - - # Information about the location of the artifact that was downloaded . This - # property is guaranteed to be set in resolver results. - self.download_info: Optional[DirectUrl] = None - - # Path to any downloaded or already-existing package. - self.local_file_path: Optional[str] = None - if self.link and self.link.is_file: - self.local_file_path = self.link.file_path - - if extras: - self.extras = extras - elif req: - self.extras = req.extras - else: - self.extras = set() - if markers is None and req: - markers = req.marker - self.markers = markers - - # This holds the Distribution object if this requirement is already installed. - self.satisfied_by: Optional[BaseDistribution] = None - # Whether the installation process should try to uninstall an existing - # distribution before installing this requirement. - self.should_reinstall = False - # Temporary build location - self._temp_build_dir: Optional[TempDirectory] = None - # Set to True after successful installation - self.install_succeeded: Optional[bool] = None - # Supplied options - self.global_options = global_options if global_options else [] - self.hash_options = hash_options if hash_options else {} - self.config_settings = config_settings - # Set to True after successful preparation of this requirement - self.prepared = False - # User supplied requirement are explicitly requested for installation - # by the user via CLI arguments or requirements files, as opposed to, - # e.g. dependencies, extras or constraints. - self.user_supplied = user_supplied - - self.isolated = isolated - self.build_env: BuildEnvironment = NoOpBuildEnvironment() - - # For PEP 517, the directory where we request the project metadata - # gets stored. We need this to pass to build_wheel, so the backend - # can ensure that the wheel matches the metadata (see the PEP for - # details). - self.metadata_directory: Optional[str] = None - - # The static build requirements (from pyproject.toml) - self.pyproject_requires: Optional[List[str]] = None - - # Build requirements that we will check are available - self.requirements_to_check: List[str] = [] - - # The PEP 517 backend we should use to build the project - self.pep517_backend: Optional[BuildBackendHookCaller] = None - - # Are we using PEP 517 for this requirement? - # After pyproject.toml has been loaded, the only valid values are True - # and False. Before loading, None is valid (meaning "use the default"). - # Setting an explicit value before loading pyproject.toml is supported, - # but after loading this flag should be treated as read only. - self.use_pep517 = use_pep517 - - # If config settings are provided, enforce PEP 517. - if self.config_settings: - if self.use_pep517 is False: - logger.warning( - "--no-use-pep517 ignored for %s " - "because --config-settings are specified.", - self, - ) - self.use_pep517 = True - - # This requirement needs more preparation before it can be built - self.needs_more_preparation = False - - # This requirement needs to be unpacked before it can be installed. - self._archive_source: Optional[Path] = None - - def __str__(self) -> str: - if self.req: - s = redact_auth_from_requirement(self.req) - if self.link: - s += f" from {redact_auth_from_url(self.link.url)}" - elif self.link: - s = redact_auth_from_url(self.link.url) - else: - s = "" - if self.satisfied_by is not None: - if self.satisfied_by.location is not None: - location = display_path(self.satisfied_by.location) - else: - location = "" - s += f" in {location}" - if self.comes_from: - if isinstance(self.comes_from, str): - comes_from: Optional[str] = self.comes_from - else: - comes_from = self.comes_from.from_path() - if comes_from: - s += f" (from {comes_from})" - return s - - def __repr__(self) -> str: - return "<{} object: {} editable={!r}>".format( - self.__class__.__name__, str(self), self.editable - ) - - def format_debug(self) -> str: - """An un-tested helper for getting state, for debugging.""" - attributes = vars(self) - names = sorted(attributes) - - state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) - return "<{name} object: {{{state}}}>".format( - name=self.__class__.__name__, - state=", ".join(state), - ) - - # Things that are valid for all kinds of requirements? - @property - def name(self) -> Optional[str]: - if self.req is None: - return None - return self.req.name - - @functools.lru_cache() # use cached_property in python 3.8+ - def supports_pyproject_editable(self) -> bool: - if not self.use_pep517: - return False - assert self.pep517_backend - with self.build_env: - runner = runner_with_spinner_message( - "Checking if build backend supports build_editable" - ) - with self.pep517_backend.subprocess_runner(runner): - return "build_editable" in self.pep517_backend._supported_features() - - @property - def specifier(self) -> SpecifierSet: - assert self.req is not None - return self.req.specifier - - @property - def is_direct(self) -> bool: - """Whether this requirement was specified as a direct URL.""" - return self.original_link is not None - - @property - def is_pinned(self) -> bool: - """Return whether I am pinned to an exact version. - - For example, some-package==1.2 is pinned; some-package>1.2 is not. - """ - assert self.req is not None - specifiers = self.req.specifier - return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} - - def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: - if not extras_requested: - # Provide an extra to safely evaluate the markers - # without matching any extra - extras_requested = ("",) - if self.markers is not None: - return any( - self.markers.evaluate({"extra": extra}) - # TODO: Remove these two variants when packaging is upgraded to - # support the marker comparison logic specified in PEP 685. - or self.markers.evaluate({"extra": safe_extra(extra)}) - or self.markers.evaluate({"extra": canonicalize_name(extra)}) - for extra in extras_requested - ) - else: - return True - - @property - def has_hash_options(self) -> bool: - """Return whether any known-good hashes are specified as options. - - These activate --require-hashes mode; hashes specified as part of a - URL do not. - - """ - return bool(self.hash_options) - - def hashes(self, trust_internet: bool = True) -> Hashes: - """Return a hash-comparer that considers my option- and URL-based - hashes to be known-good. - - Hashes in URLs--ones embedded in the requirements file, not ones - downloaded from an index server--are almost peers with ones from - flags. They satisfy --require-hashes (whether it was implicitly or - explicitly activated) but do not activate it. md5 and sha224 are not - allowed in flags, which should nudge people toward good algos. We - always OR all hashes together, even ones from URLs. - - :param trust_internet: Whether to trust URL-based (#md5=...) hashes - downloaded from the internet, as by populate_link() - - """ - good_hashes = self.hash_options.copy() - if trust_internet: - link = self.link - elif self.is_direct and self.user_supplied: - link = self.original_link - else: - link = None - if link and link.hash: - assert link.hash_name is not None - good_hashes.setdefault(link.hash_name, []).append(link.hash) - return Hashes(good_hashes) - - def from_path(self) -> Optional[str]: - """Format a nice indicator to show where this "comes from" """ - if self.req is None: - return None - s = str(self.req) - if self.comes_from: - comes_from: Optional[str] - if isinstance(self.comes_from, str): - comes_from = self.comes_from - else: - comes_from = self.comes_from.from_path() - if comes_from: - s += "->" + comes_from - return s - - def ensure_build_location( - self, build_dir: str, autodelete: bool, parallel_builds: bool - ) -> str: - assert build_dir is not None - if self._temp_build_dir is not None: - assert self._temp_build_dir.path - return self._temp_build_dir.path - if self.req is None: - # Some systems have /tmp as a symlink which confuses custom - # builds (such as numpy). Thus, we ensure that the real path - # is returned. - self._temp_build_dir = TempDirectory( - kind=tempdir_kinds.REQ_BUILD, globally_managed=True - ) - - return self._temp_build_dir.path - - # This is the only remaining place where we manually determine the path - # for the temporary directory. It is only needed for editables where - # it is the value of the --src option. - - # When parallel builds are enabled, add a UUID to the build directory - # name so multiple builds do not interfere with each other. - dir_name: str = canonicalize_name(self.req.name) - if parallel_builds: - dir_name = f"{dir_name}_{uuid.uuid4().hex}" - - # FIXME: Is there a better place to create the build_dir? (hg and bzr - # need this) - if not os.path.exists(build_dir): - logger.debug("Creating directory %s", build_dir) - os.makedirs(build_dir) - actual_build_dir = os.path.join(build_dir, dir_name) - # `None` indicates that we respect the globally-configured deletion - # settings, which is what we actually want when auto-deleting. - delete_arg = None if autodelete else False - return TempDirectory( - path=actual_build_dir, - delete=delete_arg, - kind=tempdir_kinds.REQ_BUILD, - globally_managed=True, - ).path - - def _set_requirement(self) -> None: - """Set requirement after generating metadata.""" - assert self.req is None - assert self.metadata is not None - assert self.source_dir is not None - - # Construct a Requirement object from the generated metadata - if isinstance(parse_version(self.metadata["Version"]), Version): - op = "==" - else: - op = "===" - - self.req = Requirement( - "".join( - [ - self.metadata["Name"], - op, - self.metadata["Version"], - ] - ) - ) - - def warn_on_mismatching_name(self) -> None: - assert self.req is not None - metadata_name = canonicalize_name(self.metadata["Name"]) - if canonicalize_name(self.req.name) == metadata_name: - # Everything is fine. - return - - # If we're here, there's a mismatch. Log a warning about it. - logger.warning( - "Generating metadata for package %s " - "produced metadata for project name %s. Fix your " - "#egg=%s fragments.", - self.name, - metadata_name, - self.name, - ) - self.req = Requirement(metadata_name) - - def check_if_exists(self, use_user_site: bool) -> None: - """Find an installed distribution that satisfies or conflicts - with this requirement, and set self.satisfied_by or - self.should_reinstall appropriately. - """ - if self.req is None: - return - existing_dist = get_default_environment().get_distribution(self.req.name) - if not existing_dist: - return - - version_compatible = self.req.specifier.contains( - existing_dist.version, - prereleases=True, - ) - if not version_compatible: - self.satisfied_by = None - if use_user_site: - if existing_dist.in_usersite: - self.should_reinstall = True - elif running_under_virtualenv() and existing_dist.in_site_packages: - raise InstallationError( - f"Will not install to the user site because it will " - f"lack sys.path precedence to {existing_dist.raw_name} " - f"in {existing_dist.location}" - ) - else: - self.should_reinstall = True - else: - if self.editable: - self.should_reinstall = True - # when installing editables, nothing pre-existing should ever - # satisfy - self.satisfied_by = None - else: - self.satisfied_by = existing_dist - - # Things valid for wheels - @property - def is_wheel(self) -> bool: - if not self.link: - return False - return self.link.is_wheel - - @property - def is_wheel_from_cache(self) -> bool: - # When True, it means that this InstallRequirement is a local wheel file in the - # cache of locally built wheels. - return self.cached_wheel_source_link is not None - - # Things valid for sdists - @property - def unpacked_source_directory(self) -> str: - assert self.source_dir, f"No source dir for {self}" - return os.path.join( - self.source_dir, self.link and self.link.subdirectory_fragment or "" - ) - - @property - def setup_py_path(self) -> str: - assert self.source_dir, f"No source dir for {self}" - setup_py = os.path.join(self.unpacked_source_directory, "setup.py") - - return setup_py - - @property - def setup_cfg_path(self) -> str: - assert self.source_dir, f"No source dir for {self}" - setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") - - return setup_cfg - - @property - def pyproject_toml_path(self) -> str: - assert self.source_dir, f"No source dir for {self}" - return make_pyproject_path(self.unpacked_source_directory) - - def load_pyproject_toml(self) -> None: - """Load the pyproject.toml file. - - After calling this routine, all of the attributes related to PEP 517 - processing for this requirement have been set. In particular, the - use_pep517 attribute can be used to determine whether we should - follow the PEP 517 or legacy (setup.py) code path. - """ - pyproject_toml_data = load_pyproject_toml( - self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) - ) - - if pyproject_toml_data is None: - assert not self.config_settings - self.use_pep517 = False - return - - self.use_pep517 = True - requires, backend, check, backend_path = pyproject_toml_data - self.requirements_to_check = check - self.pyproject_requires = requires - self.pep517_backend = ConfiguredBuildBackendHookCaller( - self, - self.unpacked_source_directory, - backend, - backend_path=backend_path, - ) - - def isolated_editable_sanity_check(self) -> None: - """Check that an editable requirement if valid for use with PEP 517/518. - - This verifies that an editable that has a pyproject.toml either supports PEP 660 - or as a setup.py or a setup.cfg - """ - if ( - self.editable - and self.use_pep517 - and not self.supports_pyproject_editable() - and not os.path.isfile(self.setup_py_path) - and not os.path.isfile(self.setup_cfg_path) - ): - raise InstallationError( - f"Project {self} has a 'pyproject.toml' and its build " - f"backend is missing the 'build_editable' hook. Since it does not " - f"have a 'setup.py' nor a 'setup.cfg', " - f"it cannot be installed in editable mode. " - f"Consider using a build backend that supports PEP 660." - ) - - def prepare_metadata(self) -> None: - """Ensure that project metadata is available. - - Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. - Under legacy processing, call setup.py egg-info. - """ - assert self.source_dir, f"No source dir for {self}" - details = self.name or f"from {self.link}" - - if self.use_pep517: - assert self.pep517_backend is not None - if ( - self.editable - and self.permit_editable_wheels - and self.supports_pyproject_editable() - ): - self.metadata_directory = generate_editable_metadata( - build_env=self.build_env, - backend=self.pep517_backend, - details=details, - ) - else: - self.metadata_directory = generate_metadata( - build_env=self.build_env, - backend=self.pep517_backend, - details=details, - ) - else: - self.metadata_directory = generate_metadata_legacy( - build_env=self.build_env, - setup_py_path=self.setup_py_path, - source_dir=self.unpacked_source_directory, - isolated=self.isolated, - details=details, - ) - - # Act on the newly generated metadata, based on the name and version. - if not self.name: - self._set_requirement() - else: - self.warn_on_mismatching_name() - - self.assert_source_matches_version() - - @property - def metadata(self) -> Any: - if not hasattr(self, "_metadata"): - self._metadata = self.get_dist().metadata - - return self._metadata - - def get_dist(self) -> BaseDistribution: - if self.metadata_directory: - return get_directory_distribution(self.metadata_directory) - elif self.local_file_path and self.is_wheel: - assert self.req is not None - return get_wheel_distribution( - FilesystemWheel(self.local_file_path), - canonicalize_name(self.req.name), - ) - raise AssertionError( - f"InstallRequirement {self} has no metadata directory and no wheel: " - f"can't make a distribution." - ) - - def assert_source_matches_version(self) -> None: - assert self.source_dir, f"No source dir for {self}" - version = self.metadata["version"] - if self.req and self.req.specifier and version not in self.req.specifier: - logger.warning( - "Requested %s, but installing version %s", - self, - version, - ) - else: - logger.debug( - "Source in %s has version %s, which satisfies requirement %s", - display_path(self.source_dir), - version, - self, - ) - - # For both source distributions and editables - def ensure_has_source_dir( - self, - parent_dir: str, - autodelete: bool = False, - parallel_builds: bool = False, - ) -> None: - """Ensure that a source_dir is set. - - This will create a temporary build dir if the name of the requirement - isn't known yet. - - :param parent_dir: The ideal pip parent_dir for the source_dir. - Generally src_dir for editables and build_dir for sdists. - :return: self.source_dir - """ - if self.source_dir is None: - self.source_dir = self.ensure_build_location( - parent_dir, - autodelete=autodelete, - parallel_builds=parallel_builds, - ) - - def needs_unpacked_archive(self, archive_source: Path) -> None: - assert self._archive_source is None - self._archive_source = archive_source - - def ensure_pristine_source_checkout(self) -> None: - """Ensure the source directory has not yet been built in.""" - assert self.source_dir is not None - if self._archive_source is not None: - unpack_file(str(self._archive_source), self.source_dir) - elif is_installable_dir(self.source_dir): - # If a checkout exists, it's unwise to keep going. - # version inconsistencies are logged later, but do not fail - # the installation. - raise PreviousBuildDirError( - f"pip can't proceed with requirements '{self}' due to a " - f"pre-existing build directory ({self.source_dir}). This is likely " - "due to a previous installation that failed . pip is " - "being responsible and not assuming it can delete this. " - "Please delete it and try again." - ) - - # For editable installations - def update_editable(self) -> None: - if not self.link: - logger.debug( - "Cannot update repository at %s; repository location is unknown", - self.source_dir, - ) - return - assert self.editable - assert self.source_dir - if self.link.scheme == "file": - # Static paths don't get updated - return - vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) - # Editable requirements are validated in Requirement constructors. - # So here, if it's neither a path nor a valid VCS URL, it's a bug. - assert vcs_backend, f"Unsupported VCS URL {self.link.url}" - hidden_url = hide_url(self.link.url) - vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) - - # Top-level Actions - def uninstall( - self, auto_confirm: bool = False, verbose: bool = False - ) -> Optional[UninstallPathSet]: - """ - Uninstall the distribution currently satisfying this requirement. - - Prompts before removing or modifying files unless - ``auto_confirm`` is True. - - Refuses to delete or modify files outside of ``sys.prefix`` - - thus uninstallation within a virtual environment can only - modify that virtual environment, even if the virtualenv is - linked to global site-packages. - - """ - assert self.req - dist = get_default_environment().get_distribution(self.req.name) - if not dist: - logger.warning("Skipping %s as it is not installed.", self.name) - return None - logger.info("Found existing installation: %s", dist) - - uninstalled_pathset = UninstallPathSet.from_dist(dist) - uninstalled_pathset.remove(auto_confirm, verbose) - return uninstalled_pathset - - def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: - def _clean_zip_name(name: str, prefix: str) -> str: - assert name.startswith( - prefix + os.path.sep - ), f"name {name!r} doesn't start with prefix {prefix!r}" - name = name[len(prefix) + 1 :] - name = name.replace(os.path.sep, "/") - return name - - assert self.req is not None - path = os.path.join(parentdir, path) - name = _clean_zip_name(path, rootdir) - return self.req.name + "/" + name - - def archive(self, build_dir: Optional[str]) -> None: - """Saves archive to provided build_dir. - - Used for saving downloaded VCS requirements as part of `pip download`. - """ - assert self.source_dir - if build_dir is None: - return - - create_archive = True - archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) - archive_path = os.path.join(build_dir, archive_name) - - if os.path.exists(archive_path): - response = ask_path_exists( - f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " - "(b)ackup, (a)bort ", - ("i", "w", "b", "a"), - ) - if response == "i": - create_archive = False - elif response == "w": - logger.warning("Deleting %s", display_path(archive_path)) - os.remove(archive_path) - elif response == "b": - dest_file = backup_dir(archive_path) - logger.warning( - "Backing up %s to %s", - display_path(archive_path), - display_path(dest_file), - ) - shutil.move(archive_path, dest_file) - elif response == "a": - sys.exit(-1) - - if not create_archive: - return - - zip_output = zipfile.ZipFile( - archive_path, - "w", - zipfile.ZIP_DEFLATED, - allowZip64=True, - ) - with zip_output: - dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) - for dirpath, dirnames, filenames in os.walk(dir): - for dirname in dirnames: - dir_arcname = self._get_archive_name( - dirname, - parentdir=dirpath, - rootdir=dir, - ) - zipdir = zipfile.ZipInfo(dir_arcname + "/") - zipdir.external_attr = 0x1ED << 16 # 0o755 - zip_output.writestr(zipdir, "") - for filename in filenames: - file_arcname = self._get_archive_name( - filename, - parentdir=dirpath, - rootdir=dir, - ) - filename = os.path.join(dirpath, filename) - zip_output.write(filename, file_arcname) - - logger.info("Saved %s", display_path(archive_path)) - - def install( - self, - global_options: Optional[Sequence[str]] = None, - root: Optional[str] = None, - home: Optional[str] = None, - prefix: Optional[str] = None, - warn_script_location: bool = True, - use_user_site: bool = False, - pycompile: bool = True, - ) -> None: - assert self.req is not None - scheme = get_scheme( - self.req.name, - user=use_user_site, - home=home, - root=root, - isolated=self.isolated, - prefix=prefix, - ) - - if self.editable and not self.is_wheel: - if self.config_settings: - logger.warning( - "--config-settings ignored for legacy editable install of %s. " - "Consider upgrading to a version of setuptools " - "that supports PEP 660 (>= 64).", - self, - ) - install_editable_legacy( - global_options=global_options if global_options is not None else [], - prefix=prefix, - home=home, - use_user_site=use_user_site, - name=self.req.name, - setup_py_path=self.setup_py_path, - isolated=self.isolated, - build_env=self.build_env, - unpacked_source_directory=self.unpacked_source_directory, - ) - self.install_succeeded = True - return - - assert self.is_wheel - assert self.local_file_path - - install_wheel( - self.req.name, - self.local_file_path, - scheme=scheme, - req_description=str(self.req), - pycompile=pycompile, - warn_script_location=warn_script_location, - direct_url=self.download_info if self.is_direct else None, - requested=self.user_supplied, - ) - self.install_succeeded = True - - -def check_invalid_constraint_type(req: InstallRequirement) -> str: - # Check for unsupported forms - problem = "" - if not req.name: - problem = "Unnamed requirements are not allowed as constraints" - elif req.editable: - problem = "Editable requirements are not allowed as constraints" - elif req.extras: - problem = "Constraints cannot have extras" - - if problem: - deprecated( - reason=( - "Constraints are only allowed to take the form of a package " - "name and a version specifier. Other forms were originally " - "permitted as an accident of the implementation, but were " - "undocumented. The new implementation of the resolver no " - "longer supports these forms." - ), - replacement="replacing the constraint with a requirement", - # No plan yet for when the new resolver becomes default - gone_in=None, - issue=8210, - ) - - return problem - - -def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: - if getattr(options, option, None): - return True - for req in reqs: - if getattr(req, option, None): - return True - return False - - -def check_legacy_setup_py_options( - options: Values, - reqs: List[InstallRequirement], -) -> None: - has_build_options = _has_option(options, reqs, "build_options") - has_global_options = _has_option(options, reqs, "global_options") - if has_build_options or has_global_options: - deprecated( - reason="--build-option and --global-option are deprecated.", - issue=11859, - replacement="to use --config-settings", - gone_in="24.2", - ) - logger.warning( - "Implying --no-binary=:all: due to the presence of " - "--build-option / --global-option. " - ) - options.format_control.disallow_binaries() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py deleted file mode 100644 index bf36114..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py +++ /dev/null @@ -1,119 +0,0 @@ -import logging -from collections import OrderedDict -from typing import Dict, List - -from pip._vendor.packaging.specifiers import LegacySpecifier -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.packaging.version import LegacyVersion - -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.deprecation import deprecated - -logger = logging.getLogger(__name__) - - -class RequirementSet: - def __init__(self, check_supported_wheels: bool = True) -> None: - """Create a RequirementSet.""" - - self.requirements: Dict[str, InstallRequirement] = OrderedDict() - self.check_supported_wheels = check_supported_wheels - - self.unnamed_requirements: List[InstallRequirement] = [] - - def __str__(self) -> str: - requirements = sorted( - (req for req in self.requirements.values() if not req.comes_from), - key=lambda req: canonicalize_name(req.name or ""), - ) - return " ".join(str(req.req) for req in requirements) - - def __repr__(self) -> str: - requirements = sorted( - self.requirements.values(), - key=lambda req: canonicalize_name(req.name or ""), - ) - - format_string = "<{classname} object; {count} requirement(s): {reqs}>" - return format_string.format( - classname=self.__class__.__name__, - count=len(requirements), - reqs=", ".join(str(req.req) for req in requirements), - ) - - def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: - assert not install_req.name - self.unnamed_requirements.append(install_req) - - def add_named_requirement(self, install_req: InstallRequirement) -> None: - assert install_req.name - - project_name = canonicalize_name(install_req.name) - self.requirements[project_name] = install_req - - def has_requirement(self, name: str) -> bool: - project_name = canonicalize_name(name) - - return ( - project_name in self.requirements - and not self.requirements[project_name].constraint - ) - - def get_requirement(self, name: str) -> InstallRequirement: - project_name = canonicalize_name(name) - - if project_name in self.requirements: - return self.requirements[project_name] - - raise KeyError(f"No project with the name {name!r}") - - @property - def all_requirements(self) -> List[InstallRequirement]: - return self.unnamed_requirements + list(self.requirements.values()) - - @property - def requirements_to_install(self) -> List[InstallRequirement]: - """Return the list of requirements that need to be installed. - - TODO remove this property together with the legacy resolver, since the new - resolver only returns requirements that need to be installed. - """ - return [ - install_req - for install_req in self.all_requirements - if not install_req.constraint and not install_req.satisfied_by - ] - - def warn_legacy_versions_and_specifiers(self) -> None: - for req in self.requirements_to_install: - version = req.get_dist().version - if isinstance(version, LegacyVersion): - deprecated( - reason=( - f"pip has selected the non standard version {version} " - f"of {req}. In the future this version will be " - f"ignored as it isn't standard compliant." - ), - replacement=( - "set or update constraints to select another version " - "or contact the package author to fix the version number" - ), - issue=12063, - gone_in="24.1", - ) - for dep in req.get_dist().iter_dependencies(): - if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): - deprecated( - reason=( - f"pip has selected {req} {version} which has non " - f"standard dependency specifier {dep}. " - f"In the future this version of {req} will be " - f"ignored as it isn't standard compliant." - ), - replacement=( - "set or update constraints to select another version " - "or contact the package author to fix the version number" - ), - issue=12063, - gone_in="24.1", - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py deleted file mode 100644 index 707fde1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py +++ /dev/null @@ -1,649 +0,0 @@ -import functools -import os -import sys -import sysconfig -from importlib.util import cache_from_source -from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple - -from pip._internal.exceptions import UninstallationError -from pip._internal.locations import get_bin_prefix, get_bin_user -from pip._internal.metadata import BaseDistribution -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.egg_link import egg_link_path_from_location -from pip._internal.utils.logging import getLogger, indent_log -from pip._internal.utils.misc import ask, normalize_path, renames, rmtree -from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory -from pip._internal.utils.virtualenv import running_under_virtualenv - -logger = getLogger(__name__) - - -def _script_names( - bin_dir: str, script_name: str, is_gui: bool -) -> Generator[str, None, None]: - """Create the fully qualified name of the files created by - {console,gui}_scripts for the given ``dist``. - Returns the list of file names - """ - exe_name = os.path.join(bin_dir, script_name) - yield exe_name - if not WINDOWS: - return - yield f"{exe_name}.exe" - yield f"{exe_name}.exe.manifest" - if is_gui: - yield f"{exe_name}-script.pyw" - else: - yield f"{exe_name}-script.py" - - -def _unique( - fn: Callable[..., Generator[Any, None, None]] -) -> Callable[..., Generator[Any, None, None]]: - @functools.wraps(fn) - def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: - seen: Set[Any] = set() - for item in fn(*args, **kw): - if item not in seen: - seen.add(item) - yield item - - return unique - - -@_unique -def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: - """ - Yield all the uninstallation paths for dist based on RECORD-without-.py[co] - - Yield paths to all the files in RECORD. For each .py file in RECORD, add - the .pyc and .pyo in the same directory. - - UninstallPathSet.add() takes care of the __pycache__ .py[co]. - - If RECORD is not found, raises UninstallationError, - with possible information from the INSTALLER file. - - https://packaging.python.org/specifications/recording-installed-packages/ - """ - location = dist.location - assert location is not None, "not installed" - - entries = dist.iter_declared_entries() - if entries is None: - msg = f"Cannot uninstall {dist}, RECORD file not found." - installer = dist.installer - if not installer or installer == "pip": - dep = f"{dist.raw_name}=={dist.version}" - msg += ( - " You might be able to recover from this via: " - f"'pip install --force-reinstall --no-deps {dep}'." - ) - else: - msg += f" Hint: The package was installed by {installer}." - raise UninstallationError(msg) - - for entry in entries: - path = os.path.join(location, entry) - yield path - if path.endswith(".py"): - dn, fn = os.path.split(path) - base = fn[:-3] - path = os.path.join(dn, base + ".pyc") - yield path - path = os.path.join(dn, base + ".pyo") - yield path - - -def compact(paths: Iterable[str]) -> Set[str]: - """Compact a path set to contain the minimal number of paths - necessary to contain all paths in the set. If /a/path/ and - /a/path/to/a/file.txt are both in the set, leave only the - shorter path.""" - - sep = os.path.sep - short_paths: Set[str] = set() - for path in sorted(paths, key=len): - should_skip = any( - path.startswith(shortpath.rstrip("*")) - and path[len(shortpath.rstrip("*").rstrip(sep))] == sep - for shortpath in short_paths - ) - if not should_skip: - short_paths.add(path) - return short_paths - - -def compress_for_rename(paths: Iterable[str]) -> Set[str]: - """Returns a set containing the paths that need to be renamed. - - This set may include directories when the original sequence of paths - included every file on disk. - """ - case_map = {os.path.normcase(p): p for p in paths} - remaining = set(case_map) - unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) - wildcards: Set[str] = set() - - def norm_join(*a: str) -> str: - return os.path.normcase(os.path.join(*a)) - - for root in unchecked: - if any(os.path.normcase(root).startswith(w) for w in wildcards): - # This directory has already been handled. - continue - - all_files: Set[str] = set() - all_subdirs: Set[str] = set() - for dirname, subdirs, files in os.walk(root): - all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) - all_files.update(norm_join(root, dirname, f) for f in files) - # If all the files we found are in our remaining set of files to - # remove, then remove them from the latter set and add a wildcard - # for the directory. - if not (all_files - remaining): - remaining.difference_update(all_files) - wildcards.add(root + os.sep) - - return set(map(case_map.__getitem__, remaining)) | wildcards - - -def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: - """Returns a tuple of 2 sets of which paths to display to user - - The first set contains paths that would be deleted. Files of a package - are not added and the top-level directory of the package has a '*' added - at the end - to signify that all it's contents are removed. - - The second set contains files that would have been skipped in the above - folders. - """ - - will_remove = set(paths) - will_skip = set() - - # Determine folders and files - folders = set() - files = set() - for path in will_remove: - if path.endswith(".pyc"): - continue - if path.endswith("__init__.py") or ".dist-info" in path: - folders.add(os.path.dirname(path)) - files.add(path) - - _normcased_files = set(map(os.path.normcase, files)) - - folders = compact(folders) - - # This walks the tree using os.walk to not miss extra folders - # that might get added. - for folder in folders: - for dirpath, _, dirfiles in os.walk(folder): - for fname in dirfiles: - if fname.endswith(".pyc"): - continue - - file_ = os.path.join(dirpath, fname) - if ( - os.path.isfile(file_) - and os.path.normcase(file_) not in _normcased_files - ): - # We are skipping this file. Add it to the set. - will_skip.add(file_) - - will_remove = files | {os.path.join(folder, "*") for folder in folders} - - return will_remove, will_skip - - -class StashedUninstallPathSet: - """A set of file rename operations to stash files while - tentatively uninstalling them.""" - - def __init__(self) -> None: - # Mapping from source file root to [Adjacent]TempDirectory - # for files under that directory. - self._save_dirs: Dict[str, TempDirectory] = {} - # (old path, new path) tuples for each move that may need - # to be undone. - self._moves: List[Tuple[str, str]] = [] - - def _get_directory_stash(self, path: str) -> str: - """Stashes a directory. - - Directories are stashed adjacent to their original location if - possible, or else moved/copied into the user's temp dir.""" - - try: - save_dir: TempDirectory = AdjacentTempDirectory(path) - except OSError: - save_dir = TempDirectory(kind="uninstall") - self._save_dirs[os.path.normcase(path)] = save_dir - - return save_dir.path - - def _get_file_stash(self, path: str) -> str: - """Stashes a file. - - If no root has been provided, one will be created for the directory - in the user's temp directory.""" - path = os.path.normcase(path) - head, old_head = os.path.dirname(path), None - save_dir = None - - while head != old_head: - try: - save_dir = self._save_dirs[head] - break - except KeyError: - pass - head, old_head = os.path.dirname(head), head - else: - # Did not find any suitable root - head = os.path.dirname(path) - save_dir = TempDirectory(kind="uninstall") - self._save_dirs[head] = save_dir - - relpath = os.path.relpath(path, head) - if relpath and relpath != os.path.curdir: - return os.path.join(save_dir.path, relpath) - return save_dir.path - - def stash(self, path: str) -> str: - """Stashes the directory or file and returns its new location. - Handle symlinks as files to avoid modifying the symlink targets. - """ - path_is_dir = os.path.isdir(path) and not os.path.islink(path) - if path_is_dir: - new_path = self._get_directory_stash(path) - else: - new_path = self._get_file_stash(path) - - self._moves.append((path, new_path)) - if path_is_dir and os.path.isdir(new_path): - # If we're moving a directory, we need to - # remove the destination first or else it will be - # moved to inside the existing directory. - # We just created new_path ourselves, so it will - # be removable. - os.rmdir(new_path) - renames(path, new_path) - return new_path - - def commit(self) -> None: - """Commits the uninstall by removing stashed files.""" - for save_dir in self._save_dirs.values(): - save_dir.cleanup() - self._moves = [] - self._save_dirs = {} - - def rollback(self) -> None: - """Undoes the uninstall by moving stashed files back.""" - for p in self._moves: - logger.info("Moving to %s\n from %s", *p) - - for new_path, path in self._moves: - try: - logger.debug("Replacing %s from %s", new_path, path) - if os.path.isfile(new_path) or os.path.islink(new_path): - os.unlink(new_path) - elif os.path.isdir(new_path): - rmtree(new_path) - renames(path, new_path) - except OSError as ex: - logger.error("Failed to restore %s", new_path) - logger.debug("Exception: %s", ex) - - self.commit() - - @property - def can_rollback(self) -> bool: - return bool(self._moves) - - -class UninstallPathSet: - """A set of file paths to be removed in the uninstallation of a - requirement.""" - - def __init__(self, dist: BaseDistribution) -> None: - self._paths: Set[str] = set() - self._refuse: Set[str] = set() - self._pth: Dict[str, UninstallPthEntries] = {} - self._dist = dist - self._moved_paths = StashedUninstallPathSet() - # Create local cache of normalize_path results. Creating an UninstallPathSet - # can result in hundreds/thousands of redundant calls to normalize_path with - # the same args, which hurts performance. - self._normalize_path_cached = functools.lru_cache()(normalize_path) - - def _permitted(self, path: str) -> bool: - """ - Return True if the given path is one we are permitted to - remove/modify, False otherwise. - - """ - # aka is_local, but caching normalized sys.prefix - if not running_under_virtualenv(): - return True - return path.startswith(self._normalize_path_cached(sys.prefix)) - - def add(self, path: str) -> None: - head, tail = os.path.split(path) - - # we normalize the head to resolve parent directory symlinks, but not - # the tail, since we only want to uninstall symlinks, not their targets - path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) - - if not os.path.exists(path): - return - if self._permitted(path): - self._paths.add(path) - else: - self._refuse.add(path) - - # __pycache__ files can show up after 'installed-files.txt' is created, - # due to imports - if os.path.splitext(path)[1] == ".py": - self.add(cache_from_source(path)) - - def add_pth(self, pth_file: str, entry: str) -> None: - pth_file = self._normalize_path_cached(pth_file) - if self._permitted(pth_file): - if pth_file not in self._pth: - self._pth[pth_file] = UninstallPthEntries(pth_file) - self._pth[pth_file].add(entry) - else: - self._refuse.add(pth_file) - - def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: - """Remove paths in ``self._paths`` with confirmation (unless - ``auto_confirm`` is True).""" - - if not self._paths: - logger.info( - "Can't uninstall '%s'. No files were found to uninstall.", - self._dist.raw_name, - ) - return - - dist_name_version = f"{self._dist.raw_name}-{self._dist.version}" - logger.info("Uninstalling %s:", dist_name_version) - - with indent_log(): - if auto_confirm or self._allowed_to_proceed(verbose): - moved = self._moved_paths - - for_rename = compress_for_rename(self._paths) - - for path in sorted(compact(for_rename)): - moved.stash(path) - logger.verbose("Removing file or directory %s", path) - - for pth in self._pth.values(): - pth.remove() - - logger.info("Successfully uninstalled %s", dist_name_version) - - def _allowed_to_proceed(self, verbose: bool) -> bool: - """Display which files would be deleted and prompt for confirmation""" - - def _display(msg: str, paths: Iterable[str]) -> None: - if not paths: - return - - logger.info(msg) - with indent_log(): - for path in sorted(compact(paths)): - logger.info(path) - - if not verbose: - will_remove, will_skip = compress_for_output_listing(self._paths) - else: - # In verbose mode, display all the files that are going to be - # deleted. - will_remove = set(self._paths) - will_skip = set() - - _display("Would remove:", will_remove) - _display("Would not remove (might be manually added):", will_skip) - _display("Would not remove (outside of prefix):", self._refuse) - if verbose: - _display("Will actually move:", compress_for_rename(self._paths)) - - return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" - - def rollback(self) -> None: - """Rollback the changes previously made by remove().""" - if not self._moved_paths.can_rollback: - logger.error( - "Can't roll back %s; was not uninstalled", - self._dist.raw_name, - ) - return - logger.info("Rolling back uninstall of %s", self._dist.raw_name) - self._moved_paths.rollback() - for pth in self._pth.values(): - pth.rollback() - - def commit(self) -> None: - """Remove temporary save dir: rollback will no longer be possible.""" - self._moved_paths.commit() - - @classmethod - def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": - dist_location = dist.location - info_location = dist.info_location - if dist_location is None: - logger.info( - "Not uninstalling %s since it is not installed", - dist.canonical_name, - ) - return cls(dist) - - normalized_dist_location = normalize_path(dist_location) - if not dist.local: - logger.info( - "Not uninstalling %s at %s, outside environment %s", - dist.canonical_name, - normalized_dist_location, - sys.prefix, - ) - return cls(dist) - - if normalized_dist_location in { - p - for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} - if p - }: - logger.info( - "Not uninstalling %s at %s, as it is in the standard library.", - dist.canonical_name, - normalized_dist_location, - ) - return cls(dist) - - paths_to_remove = cls(dist) - develop_egg_link = egg_link_path_from_location(dist.raw_name) - - # Distribution is installed with metadata in a "flat" .egg-info - # directory. This means it is not a modern .dist-info installation, an - # egg, or legacy editable. - setuptools_flat_installation = ( - dist.installed_with_setuptools_egg_info - and info_location is not None - and os.path.exists(info_location) - # If dist is editable and the location points to a ``.egg-info``, - # we are in fact in the legacy editable case. - and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") - ) - - # Uninstall cases order do matter as in the case of 2 installs of the - # same package, pip needs to uninstall the currently detected version - if setuptools_flat_installation: - if info_location is not None: - paths_to_remove.add(info_location) - installed_files = dist.iter_declared_entries() - if installed_files is not None: - for installed_file in installed_files: - paths_to_remove.add(os.path.join(dist_location, installed_file)) - # FIXME: need a test for this elif block - # occurs with --single-version-externally-managed/--record outside - # of pip - elif dist.is_file("top_level.txt"): - try: - namespace_packages = dist.read_text("namespace_packages.txt") - except FileNotFoundError: - namespaces = [] - else: - namespaces = namespace_packages.splitlines(keepends=False) - for top_level_pkg in [ - p - for p in dist.read_text("top_level.txt").splitlines() - if p and p not in namespaces - ]: - path = os.path.join(dist_location, top_level_pkg) - paths_to_remove.add(path) - paths_to_remove.add(f"{path}.py") - paths_to_remove.add(f"{path}.pyc") - paths_to_remove.add(f"{path}.pyo") - - elif dist.installed_by_distutils: - raise UninstallationError( - "Cannot uninstall {!r}. It is a distutils installed project " - "and thus we cannot accurately determine which files belong " - "to it which would lead to only a partial uninstall.".format( - dist.raw_name, - ) - ) - - elif dist.installed_as_egg: - # package installed by easy_install - # We cannot match on dist.egg_name because it can slightly vary - # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg - paths_to_remove.add(dist_location) - easy_install_egg = os.path.split(dist_location)[1] - easy_install_pth = os.path.join( - os.path.dirname(dist_location), - "easy-install.pth", - ) - paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) - - elif dist.installed_with_dist_info: - for path in uninstallation_paths(dist): - paths_to_remove.add(path) - - elif develop_egg_link: - # PEP 660 modern editable is handled in the ``.dist-info`` case - # above, so this only covers the setuptools-style editable. - with open(develop_egg_link) as fh: - link_pointer = os.path.normcase(fh.readline().strip()) - normalized_link_pointer = paths_to_remove._normalize_path_cached( - link_pointer - ) - assert os.path.samefile( - normalized_link_pointer, normalized_dist_location - ), ( - f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " - f"installed location of {dist.raw_name} (at {dist_location})" - ) - paths_to_remove.add(develop_egg_link) - easy_install_pth = os.path.join( - os.path.dirname(develop_egg_link), "easy-install.pth" - ) - paths_to_remove.add_pth(easy_install_pth, dist_location) - - else: - logger.debug( - "Not sure how to uninstall: %s - Check: %s", - dist, - dist_location, - ) - - if dist.in_usersite: - bin_dir = get_bin_user() - else: - bin_dir = get_bin_prefix() - - # find distutils scripts= scripts - try: - for script in dist.iter_distutils_script_names(): - paths_to_remove.add(os.path.join(bin_dir, script)) - if WINDOWS: - paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) - except (FileNotFoundError, NotADirectoryError): - pass - - # find console_scripts and gui_scripts - def iter_scripts_to_remove( - dist: BaseDistribution, - bin_dir: str, - ) -> Generator[str, None, None]: - for entry_point in dist.iter_entry_points(): - if entry_point.group == "console_scripts": - yield from _script_names(bin_dir, entry_point.name, False) - elif entry_point.group == "gui_scripts": - yield from _script_names(bin_dir, entry_point.name, True) - - for s in iter_scripts_to_remove(dist, bin_dir): - paths_to_remove.add(s) - - return paths_to_remove - - -class UninstallPthEntries: - def __init__(self, pth_file: str) -> None: - self.file = pth_file - self.entries: Set[str] = set() - self._saved_lines: Optional[List[bytes]] = None - - def add(self, entry: str) -> None: - entry = os.path.normcase(entry) - # On Windows, os.path.normcase converts the entry to use - # backslashes. This is correct for entries that describe absolute - # paths outside of site-packages, but all the others use forward - # slashes. - # os.path.splitdrive is used instead of os.path.isabs because isabs - # treats non-absolute paths with drive letter markings like c:foo\bar - # as absolute paths. It also does not recognize UNC paths if they don't - # have more than "\\sever\share". Valid examples: "\\server\share\" or - # "\\server\share\folder". - if WINDOWS and not os.path.splitdrive(entry)[0]: - entry = entry.replace("\\", "/") - self.entries.add(entry) - - def remove(self) -> None: - logger.verbose("Removing pth entries from %s:", self.file) - - # If the file doesn't exist, log a warning and return - if not os.path.isfile(self.file): - logger.warning("Cannot remove entries from nonexistent file %s", self.file) - return - with open(self.file, "rb") as fh: - # windows uses '\r\n' with py3k, but uses '\n' with py2.x - lines = fh.readlines() - self._saved_lines = lines - if any(b"\r\n" in line for line in lines): - endline = "\r\n" - else: - endline = "\n" - # handle missing trailing newline - if lines and not lines[-1].endswith(endline.encode("utf-8")): - lines[-1] = lines[-1] + endline.encode("utf-8") - for entry in self.entries: - try: - logger.verbose("Removing entry: %s", entry) - lines.remove((entry + endline).encode("utf-8")) - except ValueError: - pass - with open(self.file, "wb") as fh: - fh.writelines(lines) - - def rollback(self) -> bool: - if self._saved_lines is None: - logger.error("Cannot roll back changes to %s, none were made", self.file) - return False - logger.debug("Rolling %s back to previous state", self.file) - with open(self.file, "wb") as fh: - fh.writelines(self._saved_lines) - return True diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9ad6573..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc deleted file mode 100644 index fa0bbd7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py deleted file mode 100644 index 42dade1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py +++ /dev/null @@ -1,20 +0,0 @@ -from typing import Callable, List, Optional - -from pip._internal.req.req_install import InstallRequirement -from pip._internal.req.req_set import RequirementSet - -InstallRequirementProvider = Callable[ - [str, Optional[InstallRequirement]], InstallRequirement -] - - -class BaseResolver: - def resolve( - self, root_reqs: List[InstallRequirement], check_supported_wheels: bool - ) -> RequirementSet: - raise NotImplementedError() - - def get_installation_order( - self, req_set: RequirementSet - ) -> List[InstallRequirement]: - raise NotImplementedError() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4eb9b3e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc deleted file mode 100644 index 174b3ce..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py deleted file mode 100644 index 5ddb848..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py +++ /dev/null @@ -1,598 +0,0 @@ -"""Dependency Resolution - -The dependency resolution in pip is performed as follows: - -for top-level requirements: - a. only one spec allowed per project, regardless of conflicts or not. - otherwise a "double requirement" exception is raised - b. they override sub-dependency requirements. -for sub-dependencies - a. "first found, wins" (where the order is breadth first) -""" - -# The following comment should be removed at some point in the future. -# mypy: strict-optional=False - -import logging -import sys -from collections import defaultdict -from itertools import chain -from typing import DefaultDict, Iterable, List, Optional, Set, Tuple - -from pip._vendor.packaging import specifiers -from pip._vendor.packaging.requirements import Requirement - -from pip._internal.cache import WheelCache -from pip._internal.exceptions import ( - BestVersionAlreadyInstalled, - DistributionNotFound, - HashError, - HashErrors, - InstallationError, - NoneMetadataError, - UnsupportedPythonVersion, -) -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.operations.prepare import RequirementPreparer -from pip._internal.req.req_install import ( - InstallRequirement, - check_invalid_constraint_type, -) -from pip._internal.req.req_set import RequirementSet -from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider -from pip._internal.utils import compatibility_tags -from pip._internal.utils.compatibility_tags import get_supported -from pip._internal.utils.direct_url_helpers import direct_url_from_link -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import normalize_version_info -from pip._internal.utils.packaging import check_requires_python - -logger = logging.getLogger(__name__) - -DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] - - -def _check_dist_requires_python( - dist: BaseDistribution, - version_info: Tuple[int, int, int], - ignore_requires_python: bool = False, -) -> None: - """ - Check whether the given Python version is compatible with a distribution's - "Requires-Python" value. - - :param version_info: A 3-tuple of ints representing the Python - major-minor-micro version to check. - :param ignore_requires_python: Whether to ignore the "Requires-Python" - value if the given Python version isn't compatible. - - :raises UnsupportedPythonVersion: When the given Python version isn't - compatible. - """ - # This idiosyncratically converts the SpecifierSet to str and let - # check_requires_python then parse it again into SpecifierSet. But this - # is the legacy resolver so I'm just not going to bother refactoring. - try: - requires_python = str(dist.requires_python) - except FileNotFoundError as e: - raise NoneMetadataError(dist, str(e)) - try: - is_compatible = check_requires_python( - requires_python, - version_info=version_info, - ) - except specifiers.InvalidSpecifier as exc: - logger.warning( - "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc - ) - return - - if is_compatible: - return - - version = ".".join(map(str, version_info)) - if ignore_requires_python: - logger.debug( - "Ignoring failed Requires-Python check for package %r: %s not in %r", - dist.raw_name, - version, - requires_python, - ) - return - - raise UnsupportedPythonVersion( - "Package {!r} requires a different Python: {} not in {!r}".format( - dist.raw_name, version, requires_python - ) - ) - - -class Resolver(BaseResolver): - """Resolves which packages need to be installed/uninstalled to perform \ - the requested operation without breaking the requirements of any package. - """ - - _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} - - def __init__( - self, - preparer: RequirementPreparer, - finder: PackageFinder, - wheel_cache: Optional[WheelCache], - make_install_req: InstallRequirementProvider, - use_user_site: bool, - ignore_dependencies: bool, - ignore_installed: bool, - ignore_requires_python: bool, - force_reinstall: bool, - upgrade_strategy: str, - py_version_info: Optional[Tuple[int, ...]] = None, - ) -> None: - super().__init__() - assert upgrade_strategy in self._allowed_strategies - - if py_version_info is None: - py_version_info = sys.version_info[:3] - else: - py_version_info = normalize_version_info(py_version_info) - - self._py_version_info = py_version_info - - self.preparer = preparer - self.finder = finder - self.wheel_cache = wheel_cache - - self.upgrade_strategy = upgrade_strategy - self.force_reinstall = force_reinstall - self.ignore_dependencies = ignore_dependencies - self.ignore_installed = ignore_installed - self.ignore_requires_python = ignore_requires_python - self.use_user_site = use_user_site - self._make_install_req = make_install_req - - self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) - - def resolve( - self, root_reqs: List[InstallRequirement], check_supported_wheels: bool - ) -> RequirementSet: - """Resolve what operations need to be done - - As a side-effect of this method, the packages (and their dependencies) - are downloaded, unpacked and prepared for installation. This - preparation is done by ``pip.operations.prepare``. - - Once PyPI has static dependency metadata available, it would be - possible to move the preparation to become a step separated from - dependency resolution. - """ - requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) - for req in root_reqs: - if req.constraint: - check_invalid_constraint_type(req) - self._add_requirement_to_set(requirement_set, req) - - # Actually prepare the files, and collect any exceptions. Most hash - # exceptions cannot be checked ahead of time, because - # _populate_link() needs to be called before we can make decisions - # based on link type. - discovered_reqs: List[InstallRequirement] = [] - hash_errors = HashErrors() - for req in chain(requirement_set.all_requirements, discovered_reqs): - try: - discovered_reqs.extend(self._resolve_one(requirement_set, req)) - except HashError as exc: - exc.req = req - hash_errors.append(exc) - - if hash_errors: - raise hash_errors - - return requirement_set - - def _add_requirement_to_set( - self, - requirement_set: RequirementSet, - install_req: InstallRequirement, - parent_req_name: Optional[str] = None, - extras_requested: Optional[Iterable[str]] = None, - ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: - """Add install_req as a requirement to install. - - :param parent_req_name: The name of the requirement that needed this - added. The name is used because when multiple unnamed requirements - resolve to the same name, we could otherwise end up with dependency - links that point outside the Requirements set. parent_req must - already be added. Note that None implies that this is a user - supplied requirement, vs an inferred one. - :param extras_requested: an iterable of extras used to evaluate the - environment markers. - :return: Additional requirements to scan. That is either [] if - the requirement is not applicable, or [install_req] if the - requirement is applicable and has just been added. - """ - # If the markers do not match, ignore this requirement. - if not install_req.match_markers(extras_requested): - logger.info( - "Ignoring %s: markers '%s' don't match your environment", - install_req.name, - install_req.markers, - ) - return [], None - - # If the wheel is not supported, raise an error. - # Should check this after filtering out based on environment markers to - # allow specifying different wheels based on the environment/OS, in a - # single requirements file. - if install_req.link and install_req.link.is_wheel: - wheel = Wheel(install_req.link.filename) - tags = compatibility_tags.get_supported() - if requirement_set.check_supported_wheels and not wheel.supported(tags): - raise InstallationError( - f"{wheel.filename} is not a supported wheel on this platform." - ) - - # This next bit is really a sanity check. - assert ( - not install_req.user_supplied or parent_req_name is None - ), "a user supplied req shouldn't have a parent" - - # Unnamed requirements are scanned again and the requirement won't be - # added as a dependency until after scanning. - if not install_req.name: - requirement_set.add_unnamed_requirement(install_req) - return [install_req], None - - try: - existing_req: Optional[ - InstallRequirement - ] = requirement_set.get_requirement(install_req.name) - except KeyError: - existing_req = None - - has_conflicting_requirement = ( - parent_req_name is None - and existing_req - and not existing_req.constraint - and existing_req.extras == install_req.extras - and existing_req.req - and install_req.req - and existing_req.req.specifier != install_req.req.specifier - ) - if has_conflicting_requirement: - raise InstallationError( - "Double requirement given: {} (already in {}, name={!r})".format( - install_req, existing_req, install_req.name - ) - ) - - # When no existing requirement exists, add the requirement as a - # dependency and it will be scanned again after. - if not existing_req: - requirement_set.add_named_requirement(install_req) - # We'd want to rescan this requirement later - return [install_req], install_req - - # Assume there's no need to scan, and that we've already - # encountered this for scanning. - if install_req.constraint or not existing_req.constraint: - return [], existing_req - - does_not_satisfy_constraint = install_req.link and not ( - existing_req.link and install_req.link.path == existing_req.link.path - ) - if does_not_satisfy_constraint: - raise InstallationError( - f"Could not satisfy constraints for '{install_req.name}': " - "installation from path or url cannot be " - "constrained to a version" - ) - # If we're now installing a constraint, mark the existing - # object for real installation. - existing_req.constraint = False - # If we're now installing a user supplied requirement, - # mark the existing object as such. - if install_req.user_supplied: - existing_req.user_supplied = True - existing_req.extras = tuple( - sorted(set(existing_req.extras) | set(install_req.extras)) - ) - logger.debug( - "Setting %s extras to: %s", - existing_req, - existing_req.extras, - ) - # Return the existing requirement for addition to the parent and - # scanning again. - return [existing_req], existing_req - - def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: - if self.upgrade_strategy == "to-satisfy-only": - return False - elif self.upgrade_strategy == "eager": - return True - else: - assert self.upgrade_strategy == "only-if-needed" - return req.user_supplied or req.constraint - - def _set_req_to_reinstall(self, req: InstallRequirement) -> None: - """ - Set a requirement to be installed. - """ - # Don't uninstall the conflict if doing a user install and the - # conflict is not a user install. - if not self.use_user_site or req.satisfied_by.in_usersite: - req.should_reinstall = True - req.satisfied_by = None - - def _check_skip_installed( - self, req_to_install: InstallRequirement - ) -> Optional[str]: - """Check if req_to_install should be skipped. - - This will check if the req is installed, and whether we should upgrade - or reinstall it, taking into account all the relevant user options. - - After calling this req_to_install will only have satisfied_by set to - None if the req_to_install is to be upgraded/reinstalled etc. Any - other value will be a dist recording the current thing installed that - satisfies the requirement. - - Note that for vcs urls and the like we can't assess skipping in this - routine - we simply identify that we need to pull the thing down, - then later on it is pulled down and introspected to assess upgrade/ - reinstalls etc. - - :return: A text reason for why it was skipped, or None. - """ - if self.ignore_installed: - return None - - req_to_install.check_if_exists(self.use_user_site) - if not req_to_install.satisfied_by: - return None - - if self.force_reinstall: - self._set_req_to_reinstall(req_to_install) - return None - - if not self._is_upgrade_allowed(req_to_install): - if self.upgrade_strategy == "only-if-needed": - return "already satisfied, skipping upgrade" - return "already satisfied" - - # Check for the possibility of an upgrade. For link-based - # requirements we have to pull the tree down and inspect to assess - # the version #, so it's handled way down. - if not req_to_install.link: - try: - self.finder.find_requirement(req_to_install, upgrade=True) - except BestVersionAlreadyInstalled: - # Then the best version is installed. - return "already up-to-date" - except DistributionNotFound: - # No distribution found, so we squash the error. It will - # be raised later when we re-try later to do the install. - # Why don't we just raise here? - pass - - self._set_req_to_reinstall(req_to_install) - return None - - def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: - upgrade = self._is_upgrade_allowed(req) - best_candidate = self.finder.find_requirement(req, upgrade) - if not best_candidate: - return None - - # Log a warning per PEP 592 if necessary before returning. - link = best_candidate.link - if link.is_yanked: - reason = link.yanked_reason or "" - msg = ( - # Mark this as a unicode string to prevent - # "UnicodeEncodeError: 'ascii' codec can't encode character" - # in Python 2 when the reason contains non-ascii characters. - "The candidate selected for download or install is a " - f"yanked version: {best_candidate}\n" - f"Reason for being yanked: {reason}" - ) - logger.warning(msg) - - return link - - def _populate_link(self, req: InstallRequirement) -> None: - """Ensure that if a link can be found for this, that it is found. - - Note that req.link may still be None - if the requirement is already - installed and not needed to be upgraded based on the return value of - _is_upgrade_allowed(). - - If preparer.require_hashes is True, don't use the wheel cache, because - cached wheels, always built locally, have different hashes than the - files downloaded from the index server and thus throw false hash - mismatches. Furthermore, cached wheels at present have undeterministic - contents due to file modification times. - """ - if req.link is None: - req.link = self._find_requirement_link(req) - - if self.wheel_cache is None or self.preparer.require_hashes: - return - cache_entry = self.wheel_cache.get_cache_entry( - link=req.link, - package_name=req.name, - supported_tags=get_supported(), - ) - if cache_entry is not None: - logger.debug("Using cached wheel link: %s", cache_entry.link) - if req.link is req.original_link and cache_entry.persistent: - req.cached_wheel_source_link = req.link - if cache_entry.origin is not None: - req.download_info = cache_entry.origin - else: - # Legacy cache entry that does not have origin.json. - # download_info may miss the archive_info.hashes field. - req.download_info = direct_url_from_link( - req.link, link_is_in_wheel_cache=cache_entry.persistent - ) - req.link = cache_entry.link - - def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: - """Takes a InstallRequirement and returns a single AbstractDist \ - representing a prepared variant of the same. - """ - if req.editable: - return self.preparer.prepare_editable_requirement(req) - - # satisfied_by is only evaluated by calling _check_skip_installed, - # so it must be None here. - assert req.satisfied_by is None - skip_reason = self._check_skip_installed(req) - - if req.satisfied_by: - return self.preparer.prepare_installed_requirement(req, skip_reason) - - # We eagerly populate the link, since that's our "legacy" behavior. - self._populate_link(req) - dist = self.preparer.prepare_linked_requirement(req) - - # NOTE - # The following portion is for determining if a certain package is - # going to be re-installed/upgraded or not and reporting to the user. - # This should probably get cleaned up in a future refactor. - - # req.req is only avail after unpack for URL - # pkgs repeat check_if_exists to uninstall-on-upgrade - # (#14) - if not self.ignore_installed: - req.check_if_exists(self.use_user_site) - - if req.satisfied_by: - should_modify = ( - self.upgrade_strategy != "to-satisfy-only" - or self.force_reinstall - or self.ignore_installed - or req.link.scheme == "file" - ) - if should_modify: - self._set_req_to_reinstall(req) - else: - logger.info( - "Requirement already satisfied (use --upgrade to upgrade): %s", - req, - ) - return dist - - def _resolve_one( - self, - requirement_set: RequirementSet, - req_to_install: InstallRequirement, - ) -> List[InstallRequirement]: - """Prepare a single requirements file. - - :return: A list of additional InstallRequirements to also install. - """ - # Tell user what we are doing for this requirement: - # obtain (editable), skipping, processing (local url), collecting - # (remote url or package name) - if req_to_install.constraint or req_to_install.prepared: - return [] - - req_to_install.prepared = True - - # Parse and return dependencies - dist = self._get_dist_for(req_to_install) - # This will raise UnsupportedPythonVersion if the given Python - # version isn't compatible with the distribution's Requires-Python. - _check_dist_requires_python( - dist, - version_info=self._py_version_info, - ignore_requires_python=self.ignore_requires_python, - ) - - more_reqs: List[InstallRequirement] = [] - - def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: - # This idiosyncratically converts the Requirement to str and let - # make_install_req then parse it again into Requirement. But this is - # the legacy resolver so I'm just not going to bother refactoring. - sub_install_req = self._make_install_req(str(subreq), req_to_install) - parent_req_name = req_to_install.name - to_scan_again, add_to_parent = self._add_requirement_to_set( - requirement_set, - sub_install_req, - parent_req_name=parent_req_name, - extras_requested=extras_requested, - ) - if parent_req_name and add_to_parent: - self._discovered_dependencies[parent_req_name].append(add_to_parent) - more_reqs.extend(to_scan_again) - - with indent_log(): - # We add req_to_install before its dependencies, so that we - # can refer to it when adding dependencies. - if not requirement_set.has_requirement(req_to_install.name): - # 'unnamed' requirements will get added here - # 'unnamed' requirements can only come from being directly - # provided by the user. - assert req_to_install.user_supplied - self._add_requirement_to_set( - requirement_set, req_to_install, parent_req_name=None - ) - - if not self.ignore_dependencies: - if req_to_install.extras: - logger.debug( - "Installing extra requirements: %r", - ",".join(req_to_install.extras), - ) - missing_requested = sorted( - set(req_to_install.extras) - set(dist.iter_provided_extras()) - ) - for missing in missing_requested: - logger.warning( - "%s %s does not provide the extra '%s'", - dist.raw_name, - dist.version, - missing, - ) - - available_requested = sorted( - set(dist.iter_provided_extras()) & set(req_to_install.extras) - ) - for subreq in dist.iter_dependencies(available_requested): - add_req(subreq, extras_requested=available_requested) - - return more_reqs - - def get_installation_order( - self, req_set: RequirementSet - ) -> List[InstallRequirement]: - """Create the installation order. - - The installation order is topological - requirements are installed - before the requiring thing. We break cycles at an arbitrary point, - and make no other guarantees. - """ - # The current implementation, which we may change at any point - # installs the user specified things in the order given, except when - # dependencies must come earlier to achieve topological order. - order = [] - ordered_reqs: Set[InstallRequirement] = set() - - def schedule(req: InstallRequirement) -> None: - if req.satisfied_by or req in ordered_reqs: - return - if req.constraint: - return - ordered_reqs.add(req) - for dep in self._discovered_dependencies[req.name]: - schedule(dep) - order.append(req) - - for install_req in req_set.requirements.values(): - schedule(install_req) - return order diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4237315..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc deleted file mode 100644 index c406e16..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc deleted file mode 100644 index 6f9e6cb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc deleted file mode 100644 index ff679ae..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc deleted file mode 100644 index fa150e6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc deleted file mode 100644 index a81c26d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc deleted file mode 100644 index a61ba6f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc deleted file mode 100644 index 362e549..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc deleted file mode 100644 index 316728c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py deleted file mode 100644 index 9c0ef5c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py +++ /dev/null @@ -1,141 +0,0 @@ -from typing import FrozenSet, Iterable, Optional, Tuple, Union - -from pip._vendor.packaging.specifiers import SpecifierSet -from pip._vendor.packaging.utils import NormalizedName -from pip._vendor.packaging.version import LegacyVersion, Version - -from pip._internal.models.link import Link, links_equivalent -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.hashes import Hashes - -CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] -CandidateVersion = Union[LegacyVersion, Version] - - -def format_name(project: NormalizedName, extras: FrozenSet[NormalizedName]) -> str: - if not extras: - return project - extras_expr = ",".join(sorted(extras)) - return f"{project}[{extras_expr}]" - - -class Constraint: - def __init__( - self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] - ) -> None: - self.specifier = specifier - self.hashes = hashes - self.links = links - - @classmethod - def empty(cls) -> "Constraint": - return Constraint(SpecifierSet(), Hashes(), frozenset()) - - @classmethod - def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": - links = frozenset([ireq.link]) if ireq.link else frozenset() - return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) - - def __bool__(self) -> bool: - return bool(self.specifier) or bool(self.hashes) or bool(self.links) - - def __and__(self, other: InstallRequirement) -> "Constraint": - if not isinstance(other, InstallRequirement): - return NotImplemented - specifier = self.specifier & other.specifier - hashes = self.hashes & other.hashes(trust_internet=False) - links = self.links - if other.link: - links = links.union([other.link]) - return Constraint(specifier, hashes, links) - - def is_satisfied_by(self, candidate: "Candidate") -> bool: - # Reject if there are any mismatched URL constraints on this package. - if self.links and not all(_match_link(link, candidate) for link in self.links): - return False - # We can safely always allow prereleases here since PackageFinder - # already implements the prerelease logic, and would have filtered out - # prerelease candidates if the user does not expect them. - return self.specifier.contains(candidate.version, prereleases=True) - - -class Requirement: - @property - def project_name(self) -> NormalizedName: - """The "project name" of a requirement. - - This is different from ``name`` if this requirement contains extras, - in which case ``name`` would contain the ``[...]`` part, while this - refers to the name of the project. - """ - raise NotImplementedError("Subclass should override") - - @property - def name(self) -> str: - """The name identifying this requirement in the resolver. - - This is different from ``project_name`` if this requirement contains - extras, where ``project_name`` would not contain the ``[...]`` part. - """ - raise NotImplementedError("Subclass should override") - - def is_satisfied_by(self, candidate: "Candidate") -> bool: - return False - - def get_candidate_lookup(self) -> CandidateLookup: - raise NotImplementedError("Subclass should override") - - def format_for_error(self) -> str: - raise NotImplementedError("Subclass should override") - - -def _match_link(link: Link, candidate: "Candidate") -> bool: - if candidate.source_link: - return links_equivalent(link, candidate.source_link) - return False - - -class Candidate: - @property - def project_name(self) -> NormalizedName: - """The "project name" of the candidate. - - This is different from ``name`` if this candidate contains extras, - in which case ``name`` would contain the ``[...]`` part, while this - refers to the name of the project. - """ - raise NotImplementedError("Override in subclass") - - @property - def name(self) -> str: - """The name identifying this candidate in the resolver. - - This is different from ``project_name`` if this candidate contains - extras, where ``project_name`` would not contain the ``[...]`` part. - """ - raise NotImplementedError("Override in subclass") - - @property - def version(self) -> CandidateVersion: - raise NotImplementedError("Override in subclass") - - @property - def is_installed(self) -> bool: - raise NotImplementedError("Override in subclass") - - @property - def is_editable(self) -> bool: - raise NotImplementedError("Override in subclass") - - @property - def source_link(self) -> Optional[Link]: - raise NotImplementedError("Override in subclass") - - def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: - raise NotImplementedError("Override in subclass") - - def get_install_requirement(self) -> Optional[InstallRequirement]: - raise NotImplementedError("Override in subclass") - - def format_for_error(self) -> str: - raise NotImplementedError("Subclass should override") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py deleted file mode 100644 index 4125cda..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py +++ /dev/null @@ -1,597 +0,0 @@ -import logging -import sys -from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast - -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.packaging.version import Version - -from pip._internal.exceptions import ( - HashError, - InstallationSubprocessError, - MetadataInconsistent, -) -from pip._internal.metadata import BaseDistribution -from pip._internal.models.link import Link, links_equivalent -from pip._internal.models.wheel import Wheel -from pip._internal.req.constructors import ( - install_req_from_editable, - install_req_from_line, -) -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.direct_url_helpers import direct_url_from_link -from pip._internal.utils.misc import normalize_version_info - -from .base import Candidate, CandidateVersion, Requirement, format_name - -if TYPE_CHECKING: - from .factory import Factory - -logger = logging.getLogger(__name__) - -BaseCandidate = Union[ - "AlreadyInstalledCandidate", - "EditableCandidate", - "LinkCandidate", -] - -# Avoid conflicting with the PyPI package "Python". -REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") - - -def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: - """The runtime version of BaseCandidate.""" - base_candidate_classes = ( - AlreadyInstalledCandidate, - EditableCandidate, - LinkCandidate, - ) - if isinstance(candidate, base_candidate_classes): - return candidate - return None - - -def make_install_req_from_link( - link: Link, template: InstallRequirement -) -> InstallRequirement: - assert not template.editable, "template is editable" - if template.req: - line = str(template.req) - else: - line = link.url - ireq = install_req_from_line( - line, - user_supplied=template.user_supplied, - comes_from=template.comes_from, - use_pep517=template.use_pep517, - isolated=template.isolated, - constraint=template.constraint, - global_options=template.global_options, - hash_options=template.hash_options, - config_settings=template.config_settings, - ) - ireq.original_link = template.original_link - ireq.link = link - ireq.extras = template.extras - return ireq - - -def make_install_req_from_editable( - link: Link, template: InstallRequirement -) -> InstallRequirement: - assert template.editable, "template not editable" - ireq = install_req_from_editable( - link.url, - user_supplied=template.user_supplied, - comes_from=template.comes_from, - use_pep517=template.use_pep517, - isolated=template.isolated, - constraint=template.constraint, - permit_editable_wheels=template.permit_editable_wheels, - global_options=template.global_options, - hash_options=template.hash_options, - config_settings=template.config_settings, - ) - ireq.extras = template.extras - return ireq - - -def _make_install_req_from_dist( - dist: BaseDistribution, template: InstallRequirement -) -> InstallRequirement: - if template.req: - line = str(template.req) - elif template.link: - line = f"{dist.canonical_name} @ {template.link.url}" - else: - line = f"{dist.canonical_name}=={dist.version}" - ireq = install_req_from_line( - line, - user_supplied=template.user_supplied, - comes_from=template.comes_from, - use_pep517=template.use_pep517, - isolated=template.isolated, - constraint=template.constraint, - global_options=template.global_options, - hash_options=template.hash_options, - config_settings=template.config_settings, - ) - ireq.satisfied_by = dist - return ireq - - -class _InstallRequirementBackedCandidate(Candidate): - """A candidate backed by an ``InstallRequirement``. - - This represents a package request with the target not being already - in the environment, and needs to be fetched and installed. The backing - ``InstallRequirement`` is responsible for most of the leg work; this - class exposes appropriate information to the resolver. - - :param link: The link passed to the ``InstallRequirement``. The backing - ``InstallRequirement`` will use this link to fetch the distribution. - :param source_link: The link this candidate "originates" from. This is - different from ``link`` when the link is found in the wheel cache. - ``link`` would point to the wheel cache, while this points to the - found remote link (e.g. from pypi.org). - """ - - dist: BaseDistribution - is_installed = False - - def __init__( - self, - link: Link, - source_link: Link, - ireq: InstallRequirement, - factory: "Factory", - name: Optional[NormalizedName] = None, - version: Optional[CandidateVersion] = None, - ) -> None: - self._link = link - self._source_link = source_link - self._factory = factory - self._ireq = ireq - self._name = name - self._version = version - self.dist = self._prepare() - - def __str__(self) -> str: - return f"{self.name} {self.version}" - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({str(self._link)!r})" - - def __hash__(self) -> int: - return hash((self.__class__, self._link)) - - def __eq__(self, other: Any) -> bool: - if isinstance(other, self.__class__): - return links_equivalent(self._link, other._link) - return False - - @property - def source_link(self) -> Optional[Link]: - return self._source_link - - @property - def project_name(self) -> NormalizedName: - """The normalised name of the project the candidate refers to""" - if self._name is None: - self._name = self.dist.canonical_name - return self._name - - @property - def name(self) -> str: - return self.project_name - - @property - def version(self) -> CandidateVersion: - if self._version is None: - self._version = self.dist.version - return self._version - - def format_for_error(self) -> str: - return "{} {} (from {})".format( - self.name, - self.version, - self._link.file_path if self._link.is_file else self._link, - ) - - def _prepare_distribution(self) -> BaseDistribution: - raise NotImplementedError("Override in subclass") - - def _check_metadata_consistency(self, dist: BaseDistribution) -> None: - """Check for consistency of project name and version of dist.""" - if self._name is not None and self._name != dist.canonical_name: - raise MetadataInconsistent( - self._ireq, - "name", - self._name, - dist.canonical_name, - ) - if self._version is not None and self._version != dist.version: - raise MetadataInconsistent( - self._ireq, - "version", - str(self._version), - str(dist.version), - ) - - def _prepare(self) -> BaseDistribution: - try: - dist = self._prepare_distribution() - except HashError as e: - # Provide HashError the underlying ireq that caused it. This - # provides context for the resulting error message to show the - # offending line to the user. - e.req = self._ireq - raise - except InstallationSubprocessError as exc: - # The output has been presented already, so don't duplicate it. - exc.context = "See above for output." - raise - - self._check_metadata_consistency(dist) - return dist - - def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: - requires = self.dist.iter_dependencies() if with_requires else () - for r in requires: - yield from self._factory.make_requirements_from_spec(str(r), self._ireq) - yield self._factory.make_requires_python_requirement(self.dist.requires_python) - - def get_install_requirement(self) -> Optional[InstallRequirement]: - return self._ireq - - -class LinkCandidate(_InstallRequirementBackedCandidate): - is_editable = False - - def __init__( - self, - link: Link, - template: InstallRequirement, - factory: "Factory", - name: Optional[NormalizedName] = None, - version: Optional[CandidateVersion] = None, - ) -> None: - source_link = link - cache_entry = factory.get_wheel_cache_entry(source_link, name) - if cache_entry is not None: - logger.debug("Using cached wheel link: %s", cache_entry.link) - link = cache_entry.link - ireq = make_install_req_from_link(link, template) - assert ireq.link == link - if ireq.link.is_wheel and not ireq.link.is_file: - wheel = Wheel(ireq.link.filename) - wheel_name = canonicalize_name(wheel.name) - assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" - # Version may not be present for PEP 508 direct URLs - if version is not None: - wheel_version = Version(wheel.version) - assert version == wheel_version, "{!r} != {!r} for wheel {}".format( - version, wheel_version, name - ) - - if cache_entry is not None: - assert ireq.link.is_wheel - assert ireq.link.is_file - if cache_entry.persistent and template.link is template.original_link: - ireq.cached_wheel_source_link = source_link - if cache_entry.origin is not None: - ireq.download_info = cache_entry.origin - else: - # Legacy cache entry that does not have origin.json. - # download_info may miss the archive_info.hashes field. - ireq.download_info = direct_url_from_link( - source_link, link_is_in_wheel_cache=cache_entry.persistent - ) - - super().__init__( - link=link, - source_link=source_link, - ireq=ireq, - factory=factory, - name=name, - version=version, - ) - - def _prepare_distribution(self) -> BaseDistribution: - preparer = self._factory.preparer - return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) - - -class EditableCandidate(_InstallRequirementBackedCandidate): - is_editable = True - - def __init__( - self, - link: Link, - template: InstallRequirement, - factory: "Factory", - name: Optional[NormalizedName] = None, - version: Optional[CandidateVersion] = None, - ) -> None: - super().__init__( - link=link, - source_link=link, - ireq=make_install_req_from_editable(link, template), - factory=factory, - name=name, - version=version, - ) - - def _prepare_distribution(self) -> BaseDistribution: - return self._factory.preparer.prepare_editable_requirement(self._ireq) - - -class AlreadyInstalledCandidate(Candidate): - is_installed = True - source_link = None - - def __init__( - self, - dist: BaseDistribution, - template: InstallRequirement, - factory: "Factory", - ) -> None: - self.dist = dist - self._ireq = _make_install_req_from_dist(dist, template) - self._factory = factory - self._version = None - - # This is just logging some messages, so we can do it eagerly. - # The returned dist would be exactly the same as self.dist because we - # set satisfied_by in _make_install_req_from_dist. - # TODO: Supply reason based on force_reinstall and upgrade_strategy. - skip_reason = "already satisfied" - factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) - - def __str__(self) -> str: - return str(self.dist) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.dist!r})" - - def __hash__(self) -> int: - return hash((self.__class__, self.name, self.version)) - - def __eq__(self, other: Any) -> bool: - if isinstance(other, self.__class__): - return self.name == other.name and self.version == other.version - return False - - @property - def project_name(self) -> NormalizedName: - return self.dist.canonical_name - - @property - def name(self) -> str: - return self.project_name - - @property - def version(self) -> CandidateVersion: - if self._version is None: - self._version = self.dist.version - return self._version - - @property - def is_editable(self) -> bool: - return self.dist.editable - - def format_for_error(self) -> str: - return f"{self.name} {self.version} (Installed)" - - def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: - if not with_requires: - return - for r in self.dist.iter_dependencies(): - yield from self._factory.make_requirements_from_spec(str(r), self._ireq) - - def get_install_requirement(self) -> Optional[InstallRequirement]: - return None - - -class ExtrasCandidate(Candidate): - """A candidate that has 'extras', indicating additional dependencies. - - Requirements can be for a project with dependencies, something like - foo[extra]. The extras don't affect the project/version being installed - directly, but indicate that we need additional dependencies. We model that - by having an artificial ExtrasCandidate that wraps the "base" candidate. - - The ExtrasCandidate differs from the base in the following ways: - - 1. It has a unique name, of the form foo[extra]. This causes the resolver - to treat it as a separate node in the dependency graph. - 2. When we're getting the candidate's dependencies, - a) We specify that we want the extra dependencies as well. - b) We add a dependency on the base candidate. - See below for why this is needed. - 3. We return None for the underlying InstallRequirement, as the base - candidate will provide it, and we don't want to end up with duplicates. - - The dependency on the base candidate is needed so that the resolver can't - decide that it should recommend foo[extra1] version 1.0 and foo[extra2] - version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 - respectively forces the resolver to recognise that this is a conflict. - """ - - def __init__( - self, - base: BaseCandidate, - extras: FrozenSet[str], - *, - comes_from: Optional[InstallRequirement] = None, - ) -> None: - """ - :param comes_from: the InstallRequirement that led to this candidate if it - differs from the base's InstallRequirement. This will often be the - case in the sense that this candidate's requirement has the extras - while the base's does not. Unlike the InstallRequirement backed - candidates, this requirement is used solely for reporting purposes, - it does not do any leg work. - """ - self.base = base - self.extras = frozenset(canonicalize_name(e) for e in extras) - # If any extras are requested in their non-normalized forms, keep track - # of their raw values. This is needed when we look up dependencies - # since PEP 685 has not been implemented for marker-matching, and using - # the non-normalized extra for lookup ensures the user can select a - # non-normalized extra in a package with its non-normalized form. - # TODO: Remove this attribute when packaging is upgraded to support the - # marker comparison logic specified in PEP 685. - self._unnormalized_extras = extras.difference(self.extras) - self._comes_from = comes_from if comes_from is not None else self.base._ireq - - def __str__(self) -> str: - name, rest = str(self.base).split(" ", 1) - return "{}[{}] {}".format(name, ",".join(self.extras), rest) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" - - def __hash__(self) -> int: - return hash((self.base, self.extras)) - - def __eq__(self, other: Any) -> bool: - if isinstance(other, self.__class__): - return self.base == other.base and self.extras == other.extras - return False - - @property - def project_name(self) -> NormalizedName: - return self.base.project_name - - @property - def name(self) -> str: - """The normalised name of the project the candidate refers to""" - return format_name(self.base.project_name, self.extras) - - @property - def version(self) -> CandidateVersion: - return self.base.version - - def format_for_error(self) -> str: - return "{} [{}]".format( - self.base.format_for_error(), ", ".join(sorted(self.extras)) - ) - - @property - def is_installed(self) -> bool: - return self.base.is_installed - - @property - def is_editable(self) -> bool: - return self.base.is_editable - - @property - def source_link(self) -> Optional[Link]: - return self.base.source_link - - def _warn_invalid_extras( - self, - requested: FrozenSet[str], - valid: FrozenSet[str], - ) -> None: - """Emit warnings for invalid extras being requested. - - This emits a warning for each requested extra that is not in the - candidate's ``Provides-Extra`` list. - """ - invalid_extras_to_warn = frozenset( - extra - for extra in requested - if extra not in valid - # If an extra is requested in an unnormalized form, skip warning - # about the normalized form being missing. - and extra in self.extras - ) - if not invalid_extras_to_warn: - return - for extra in sorted(invalid_extras_to_warn): - logger.warning( - "%s %s does not provide the extra '%s'", - self.base.name, - self.version, - extra, - ) - - def _calculate_valid_requested_extras(self) -> FrozenSet[str]: - """Get a list of valid extras requested by this candidate. - - The user (or upstream dependant) may have specified extras that the - candidate doesn't support. Any unsupported extras are dropped, and each - cause a warning to be logged here. - """ - requested_extras = self.extras.union(self._unnormalized_extras) - valid_extras = frozenset( - extra - for extra in requested_extras - if self.base.dist.is_extra_provided(extra) - ) - self._warn_invalid_extras(requested_extras, valid_extras) - return valid_extras - - def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: - factory = self.base._factory - - # Add a dependency on the exact base - # (See note 2b in the class docstring) - yield factory.make_requirement_from_candidate(self.base) - if not with_requires: - return - - valid_extras = self._calculate_valid_requested_extras() - for r in self.base.dist.iter_dependencies(valid_extras): - yield from factory.make_requirements_from_spec( - str(r), - self._comes_from, - valid_extras, - ) - - def get_install_requirement(self) -> Optional[InstallRequirement]: - # We don't return anything here, because we always - # depend on the base candidate, and we'll get the - # install requirement from that. - return None - - -class RequiresPythonCandidate(Candidate): - is_installed = False - source_link = None - - def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: - if py_version_info is not None: - version_info = normalize_version_info(py_version_info) - else: - version_info = sys.version_info[:3] - self._version = Version(".".join(str(c) for c in version_info)) - - # We don't need to implement __eq__() and __ne__() since there is always - # only one RequiresPythonCandidate in a resolution, i.e. the host Python. - # The built-in object.__eq__() and object.__ne__() do exactly what we want. - - def __str__(self) -> str: - return f"Python {self._version}" - - @property - def project_name(self) -> NormalizedName: - return REQUIRES_PYTHON_IDENTIFIER - - @property - def name(self) -> str: - return REQUIRES_PYTHON_IDENTIFIER - - @property - def version(self) -> CandidateVersion: - return self._version - - def format_for_error(self) -> str: - return f"Python {self.version}" - - def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: - return () - - def get_install_requirement(self) -> Optional[InstallRequirement]: - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py deleted file mode 100644 index 4adeb43..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py +++ /dev/null @@ -1,812 +0,0 @@ -import contextlib -import functools -import logging -from typing import ( - TYPE_CHECKING, - Dict, - FrozenSet, - Iterable, - Iterator, - List, - Mapping, - NamedTuple, - Optional, - Sequence, - Set, - Tuple, - TypeVar, - cast, -) - -from pip._vendor.packaging.requirements import InvalidRequirement -from pip._vendor.packaging.specifiers import SpecifierSet -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name -from pip._vendor.resolvelib import ResolutionImpossible - -from pip._internal.cache import CacheEntry, WheelCache -from pip._internal.exceptions import ( - DistributionNotFound, - InstallationError, - MetadataInconsistent, - UnsupportedPythonVersion, - UnsupportedWheel, -) -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import BaseDistribution, get_default_environment -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.operations.prepare import RequirementPreparer -from pip._internal.req.constructors import ( - install_req_drop_extras, - install_req_from_link_and_ireq, -) -from pip._internal.req.req_install import ( - InstallRequirement, - check_invalid_constraint_type, -) -from pip._internal.resolution.base import InstallRequirementProvider -from pip._internal.utils.compatibility_tags import get_supported -from pip._internal.utils.hashes import Hashes -from pip._internal.utils.packaging import get_requirement -from pip._internal.utils.virtualenv import running_under_virtualenv - -from .base import Candidate, CandidateVersion, Constraint, Requirement -from .candidates import ( - AlreadyInstalledCandidate, - BaseCandidate, - EditableCandidate, - ExtrasCandidate, - LinkCandidate, - RequiresPythonCandidate, - as_base_candidate, -) -from .found_candidates import FoundCandidates, IndexCandidateInfo -from .requirements import ( - ExplicitRequirement, - RequiresPythonRequirement, - SpecifierRequirement, - SpecifierWithoutExtrasRequirement, - UnsatisfiableRequirement, -) - -if TYPE_CHECKING: - from typing import Protocol - - class ConflictCause(Protocol): - requirement: RequiresPythonRequirement - parent: Candidate - - -logger = logging.getLogger(__name__) - -C = TypeVar("C") -Cache = Dict[Link, C] - - -class CollectedRootRequirements(NamedTuple): - requirements: List[Requirement] - constraints: Dict[str, Constraint] - user_requested: Dict[str, int] - - -class Factory: - def __init__( - self, - finder: PackageFinder, - preparer: RequirementPreparer, - make_install_req: InstallRequirementProvider, - wheel_cache: Optional[WheelCache], - use_user_site: bool, - force_reinstall: bool, - ignore_installed: bool, - ignore_requires_python: bool, - py_version_info: Optional[Tuple[int, ...]] = None, - ) -> None: - self._finder = finder - self.preparer = preparer - self._wheel_cache = wheel_cache - self._python_candidate = RequiresPythonCandidate(py_version_info) - self._make_install_req_from_spec = make_install_req - self._use_user_site = use_user_site - self._force_reinstall = force_reinstall - self._ignore_requires_python = ignore_requires_python - - self._build_failures: Cache[InstallationError] = {} - self._link_candidate_cache: Cache[LinkCandidate] = {} - self._editable_candidate_cache: Cache[EditableCandidate] = {} - self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} - self._extras_candidate_cache: Dict[ - Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate - ] = {} - - if not ignore_installed: - env = get_default_environment() - self._installed_dists = { - dist.canonical_name: dist - for dist in env.iter_installed_distributions(local_only=False) - } - else: - self._installed_dists = {} - - @property - def force_reinstall(self) -> bool: - return self._force_reinstall - - def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: - if not link.is_wheel: - return - wheel = Wheel(link.filename) - if wheel.supported(self._finder.target_python.get_unsorted_tags()): - return - msg = f"{link.filename} is not a supported wheel on this platform." - raise UnsupportedWheel(msg) - - def _make_extras_candidate( - self, - base: BaseCandidate, - extras: FrozenSet[str], - *, - comes_from: Optional[InstallRequirement] = None, - ) -> ExtrasCandidate: - cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) - try: - candidate = self._extras_candidate_cache[cache_key] - except KeyError: - candidate = ExtrasCandidate(base, extras, comes_from=comes_from) - self._extras_candidate_cache[cache_key] = candidate - return candidate - - def _make_candidate_from_dist( - self, - dist: BaseDistribution, - extras: FrozenSet[str], - template: InstallRequirement, - ) -> Candidate: - try: - base = self._installed_candidate_cache[dist.canonical_name] - except KeyError: - base = AlreadyInstalledCandidate(dist, template, factory=self) - self._installed_candidate_cache[dist.canonical_name] = base - if not extras: - return base - return self._make_extras_candidate(base, extras, comes_from=template) - - def _make_candidate_from_link( - self, - link: Link, - extras: FrozenSet[str], - template: InstallRequirement, - name: Optional[NormalizedName], - version: Optional[CandidateVersion], - ) -> Optional[Candidate]: - base: Optional[BaseCandidate] = self._make_base_candidate_from_link( - link, template, name, version - ) - if not extras or base is None: - return base - return self._make_extras_candidate(base, extras, comes_from=template) - - def _make_base_candidate_from_link( - self, - link: Link, - template: InstallRequirement, - name: Optional[NormalizedName], - version: Optional[CandidateVersion], - ) -> Optional[BaseCandidate]: - # TODO: Check already installed candidate, and use it if the link and - # editable flag match. - - if link in self._build_failures: - # We already tried this candidate before, and it does not build. - # Don't bother trying again. - return None - - if template.editable: - if link not in self._editable_candidate_cache: - try: - self._editable_candidate_cache[link] = EditableCandidate( - link, - template, - factory=self, - name=name, - version=version, - ) - except MetadataInconsistent as e: - logger.info( - "Discarding [blue underline]%s[/]: [yellow]%s[reset]", - link, - e, - extra={"markup": True}, - ) - self._build_failures[link] = e - return None - - return self._editable_candidate_cache[link] - else: - if link not in self._link_candidate_cache: - try: - self._link_candidate_cache[link] = LinkCandidate( - link, - template, - factory=self, - name=name, - version=version, - ) - except MetadataInconsistent as e: - logger.info( - "Discarding [blue underline]%s[/]: [yellow]%s[reset]", - link, - e, - extra={"markup": True}, - ) - self._build_failures[link] = e - return None - return self._link_candidate_cache[link] - - def _iter_found_candidates( - self, - ireqs: Sequence[InstallRequirement], - specifier: SpecifierSet, - hashes: Hashes, - prefers_installed: bool, - incompatible_ids: Set[int], - ) -> Iterable[Candidate]: - if not ireqs: - return () - - # The InstallRequirement implementation requires us to give it a - # "template". Here we just choose the first requirement to represent - # all of them. - # Hopefully the Project model can correct this mismatch in the future. - template = ireqs[0] - assert template.req, "Candidates found on index must be PEP 508" - name = canonicalize_name(template.req.name) - - extras: FrozenSet[str] = frozenset() - for ireq in ireqs: - assert ireq.req, "Candidates found on index must be PEP 508" - specifier &= ireq.req.specifier - hashes &= ireq.hashes(trust_internet=False) - extras |= frozenset(ireq.extras) - - def _get_installed_candidate() -> Optional[Candidate]: - """Get the candidate for the currently-installed version.""" - # If --force-reinstall is set, we want the version from the index - # instead, so we "pretend" there is nothing installed. - if self._force_reinstall: - return None - try: - installed_dist = self._installed_dists[name] - except KeyError: - return None - # Don't use the installed distribution if its version does not fit - # the current dependency graph. - if not specifier.contains(installed_dist.version, prereleases=True): - return None - candidate = self._make_candidate_from_dist( - dist=installed_dist, - extras=extras, - template=template, - ) - # The candidate is a known incompatibility. Don't use it. - if id(candidate) in incompatible_ids: - return None - return candidate - - def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: - result = self._finder.find_best_candidate( - project_name=name, - specifier=specifier, - hashes=hashes, - ) - icans = list(result.iter_applicable()) - - # PEP 592: Yanked releases are ignored unless the specifier - # explicitly pins a version (via '==' or '===') that can be - # solely satisfied by a yanked release. - all_yanked = all(ican.link.is_yanked for ican in icans) - - def is_pinned(specifier: SpecifierSet) -> bool: - for sp in specifier: - if sp.operator == "===": - return True - if sp.operator != "==": - continue - if sp.version.endswith(".*"): - continue - return True - return False - - pinned = is_pinned(specifier) - - # PackageFinder returns earlier versions first, so we reverse. - for ican in reversed(icans): - if not (all_yanked and pinned) and ican.link.is_yanked: - continue - func = functools.partial( - self._make_candidate_from_link, - link=ican.link, - extras=extras, - template=template, - name=name, - version=ican.version, - ) - yield ican.version, func - - return FoundCandidates( - iter_index_candidate_infos, - _get_installed_candidate(), - prefers_installed, - incompatible_ids, - ) - - def _iter_explicit_candidates_from_base( - self, - base_requirements: Iterable[Requirement], - extras: FrozenSet[str], - ) -> Iterator[Candidate]: - """Produce explicit candidates from the base given an extra-ed package. - - :param base_requirements: Requirements known to the resolver. The - requirements are guaranteed to not have extras. - :param extras: The extras to inject into the explicit requirements' - candidates. - """ - for req in base_requirements: - lookup_cand, _ = req.get_candidate_lookup() - if lookup_cand is None: # Not explicit. - continue - # We've stripped extras from the identifier, and should always - # get a BaseCandidate here, unless there's a bug elsewhere. - base_cand = as_base_candidate(lookup_cand) - assert base_cand is not None, "no extras here" - yield self._make_extras_candidate(base_cand, extras) - - def _iter_candidates_from_constraints( - self, - identifier: str, - constraint: Constraint, - template: InstallRequirement, - ) -> Iterator[Candidate]: - """Produce explicit candidates from constraints. - - This creates "fake" InstallRequirement objects that are basically clones - of what "should" be the template, but with original_link set to link. - """ - for link in constraint.links: - self._fail_if_link_is_unsupported_wheel(link) - candidate = self._make_base_candidate_from_link( - link, - template=install_req_from_link_and_ireq(link, template), - name=canonicalize_name(identifier), - version=None, - ) - if candidate: - yield candidate - - def find_candidates( - self, - identifier: str, - requirements: Mapping[str, Iterable[Requirement]], - incompatibilities: Mapping[str, Iterator[Candidate]], - constraint: Constraint, - prefers_installed: bool, - ) -> Iterable[Candidate]: - # Collect basic lookup information from the requirements. - explicit_candidates: Set[Candidate] = set() - ireqs: List[InstallRequirement] = [] - for req in requirements[identifier]: - cand, ireq = req.get_candidate_lookup() - if cand is not None: - explicit_candidates.add(cand) - if ireq is not None: - ireqs.append(ireq) - - # If the current identifier contains extras, add requires and explicit - # candidates from entries from extra-less identifier. - with contextlib.suppress(InvalidRequirement): - parsed_requirement = get_requirement(identifier) - if parsed_requirement.name != identifier: - explicit_candidates.update( - self._iter_explicit_candidates_from_base( - requirements.get(parsed_requirement.name, ()), - frozenset(parsed_requirement.extras), - ), - ) - for req in requirements.get(parsed_requirement.name, []): - _, ireq = req.get_candidate_lookup() - if ireq is not None: - ireqs.append(ireq) - - # Add explicit candidates from constraints. We only do this if there are - # known ireqs, which represent requirements not already explicit. If - # there are no ireqs, we're constraining already-explicit requirements, - # which is handled later when we return the explicit candidates. - if ireqs: - try: - explicit_candidates.update( - self._iter_candidates_from_constraints( - identifier, - constraint, - template=ireqs[0], - ), - ) - except UnsupportedWheel: - # If we're constrained to install a wheel incompatible with the - # target architecture, no candidates will ever be valid. - return () - - # Since we cache all the candidates, incompatibility identification - # can be made quicker by comparing only the id() values. - incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} - - # If none of the requirements want an explicit candidate, we can ask - # the finder for candidates. - if not explicit_candidates: - return self._iter_found_candidates( - ireqs, - constraint.specifier, - constraint.hashes, - prefers_installed, - incompat_ids, - ) - - return ( - c - for c in explicit_candidates - if id(c) not in incompat_ids - and constraint.is_satisfied_by(c) - and all(req.is_satisfied_by(c) for req in requirements[identifier]) - ) - - def _make_requirements_from_install_req( - self, ireq: InstallRequirement, requested_extras: Iterable[str] - ) -> Iterator[Requirement]: - """ - Returns requirement objects associated with the given InstallRequirement. In - most cases this will be a single object but the following special cases exist: - - the InstallRequirement has markers that do not apply -> result is empty - - the InstallRequirement has both a constraint (or link) and extras - -> result is split in two requirement objects: one with the constraint - (or link) and one with the extra. This allows centralized constraint - handling for the base, resulting in fewer candidate rejections. - """ - if not ireq.match_markers(requested_extras): - logger.info( - "Ignoring %s: markers '%s' don't match your environment", - ireq.name, - ireq.markers, - ) - elif not ireq.link: - if ireq.extras and ireq.req is not None and ireq.req.specifier: - yield SpecifierWithoutExtrasRequirement(ireq) - yield SpecifierRequirement(ireq) - else: - self._fail_if_link_is_unsupported_wheel(ireq.link) - # Always make the link candidate for the base requirement to make it - # available to `find_candidates` for explicit candidate lookup for any - # set of extras. - # The extras are required separately via a second requirement. - cand = self._make_base_candidate_from_link( - ireq.link, - template=install_req_drop_extras(ireq) if ireq.extras else ireq, - name=canonicalize_name(ireq.name) if ireq.name else None, - version=None, - ) - if cand is None: - # There's no way we can satisfy a URL requirement if the underlying - # candidate fails to build. An unnamed URL must be user-supplied, so - # we fail eagerly. If the URL is named, an unsatisfiable requirement - # can make the resolver do the right thing, either backtrack (and - # maybe find some other requirement that's buildable) or raise a - # ResolutionImpossible eventually. - if not ireq.name: - raise self._build_failures[ireq.link] - yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) - else: - # require the base from the link - yield self.make_requirement_from_candidate(cand) - if ireq.extras: - # require the extras on top of the base candidate - yield self.make_requirement_from_candidate( - self._make_extras_candidate(cand, frozenset(ireq.extras)) - ) - - def collect_root_requirements( - self, root_ireqs: List[InstallRequirement] - ) -> CollectedRootRequirements: - collected = CollectedRootRequirements([], {}, {}) - for i, ireq in enumerate(root_ireqs): - if ireq.constraint: - # Ensure we only accept valid constraints - problem = check_invalid_constraint_type(ireq) - if problem: - raise InstallationError(problem) - if not ireq.match_markers(): - continue - assert ireq.name, "Constraint must be named" - name = canonicalize_name(ireq.name) - if name in collected.constraints: - collected.constraints[name] &= ireq - else: - collected.constraints[name] = Constraint.from_ireq(ireq) - else: - reqs = list( - self._make_requirements_from_install_req( - ireq, - requested_extras=(), - ) - ) - if not reqs: - continue - template = reqs[0] - if ireq.user_supplied and template.name not in collected.user_requested: - collected.user_requested[template.name] = i - collected.requirements.extend(reqs) - # Put requirements with extras at the end of the root requires. This does not - # affect resolvelib's picking preference but it does affect its initial criteria - # population: by putting extras at the end we enable the candidate finder to - # present resolvelib with a smaller set of candidates to resolvelib, already - # taking into account any non-transient constraints on the associated base. This - # means resolvelib will have fewer candidates to visit and reject. - # Python's list sort is stable, meaning relative order is kept for objects with - # the same key. - collected.requirements.sort(key=lambda r: r.name != r.project_name) - return collected - - def make_requirement_from_candidate( - self, candidate: Candidate - ) -> ExplicitRequirement: - return ExplicitRequirement(candidate) - - def make_requirements_from_spec( - self, - specifier: str, - comes_from: Optional[InstallRequirement], - requested_extras: Iterable[str] = (), - ) -> Iterator[Requirement]: - """ - Returns requirement objects associated with the given specifier. In most cases - this will be a single object but the following special cases exist: - - the specifier has markers that do not apply -> result is empty - - the specifier has both a constraint and extras -> result is split - in two requirement objects: one with the constraint and one with the - extra. This allows centralized constraint handling for the base, - resulting in fewer candidate rejections. - """ - ireq = self._make_install_req_from_spec(specifier, comes_from) - return self._make_requirements_from_install_req(ireq, requested_extras) - - def make_requires_python_requirement( - self, - specifier: SpecifierSet, - ) -> Optional[Requirement]: - if self._ignore_requires_python: - return None - # Don't bother creating a dependency for an empty Requires-Python. - if not str(specifier): - return None - return RequiresPythonRequirement(specifier, self._python_candidate) - - def get_wheel_cache_entry( - self, link: Link, name: Optional[str] - ) -> Optional[CacheEntry]: - """Look up the link in the wheel cache. - - If ``preparer.require_hashes`` is True, don't use the wheel cache, - because cached wheels, always built locally, have different hashes - than the files downloaded from the index server and thus throw false - hash mismatches. Furthermore, cached wheels at present have - nondeterministic contents due to file modification times. - """ - if self._wheel_cache is None: - return None - return self._wheel_cache.get_cache_entry( - link=link, - package_name=name, - supported_tags=get_supported(), - ) - - def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: - # TODO: Are there more cases this needs to return True? Editable? - dist = self._installed_dists.get(candidate.project_name) - if dist is None: # Not installed, no uninstallation required. - return None - - # We're installing into global site. The current installation must - # be uninstalled, no matter it's in global or user site, because the - # user site installation has precedence over global. - if not self._use_user_site: - return dist - - # We're installing into user site. Remove the user site installation. - if dist.in_usersite: - return dist - - # We're installing into user site, but the installed incompatible - # package is in global site. We can't uninstall that, and would let - # the new user installation to "shadow" it. But shadowing won't work - # in virtual environments, so we error out. - if running_under_virtualenv() and dist.in_site_packages: - message = ( - f"Will not install to the user site because it will lack " - f"sys.path precedence to {dist.raw_name} in {dist.location}" - ) - raise InstallationError(message) - return None - - def _report_requires_python_error( - self, causes: Sequence["ConflictCause"] - ) -> UnsupportedPythonVersion: - assert causes, "Requires-Python error reported with no cause" - - version = self._python_candidate.version - - if len(causes) == 1: - specifier = str(causes[0].requirement.specifier) - message = ( - f"Package {causes[0].parent.name!r} requires a different " - f"Python: {version} not in {specifier!r}" - ) - return UnsupportedPythonVersion(message) - - message = f"Packages require a different Python. {version} not in:" - for cause in causes: - package = cause.parent.format_for_error() - specifier = str(cause.requirement.specifier) - message += f"\n{specifier!r} (required by {package})" - return UnsupportedPythonVersion(message) - - def _report_single_requirement_conflict( - self, req: Requirement, parent: Optional[Candidate] - ) -> DistributionNotFound: - if parent is None: - req_disp = str(req) - else: - req_disp = f"{req} (from {parent.name})" - - cands = self._finder.find_all_candidates(req.project_name) - skipped_by_requires_python = self._finder.requires_python_skipped_reasons() - - versions_set: Set[CandidateVersion] = set() - yanked_versions_set: Set[CandidateVersion] = set() - for c in cands: - is_yanked = c.link.is_yanked if c.link else False - if is_yanked: - yanked_versions_set.add(c.version) - else: - versions_set.add(c.version) - - versions = [str(v) for v in sorted(versions_set)] - yanked_versions = [str(v) for v in sorted(yanked_versions_set)] - - if yanked_versions: - # Saying "version X is yanked" isn't entirely accurate. - # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 - logger.critical( - "Ignored the following yanked versions: %s", - ", ".join(yanked_versions) or "none", - ) - if skipped_by_requires_python: - logger.critical( - "Ignored the following versions that require a different python " - "version: %s", - "; ".join(skipped_by_requires_python) or "none", - ) - logger.critical( - "Could not find a version that satisfies the requirement %s " - "(from versions: %s)", - req_disp, - ", ".join(versions) or "none", - ) - if str(req) == "requirements.txt": - logger.info( - "HINT: You are attempting to install a package literally " - 'named "requirements.txt" (which cannot exist). Consider ' - "using the '-r' flag to install the packages listed in " - "requirements.txt" - ) - - return DistributionNotFound(f"No matching distribution found for {req}") - - def get_installation_error( - self, - e: "ResolutionImpossible[Requirement, Candidate]", - constraints: Dict[str, Constraint], - ) -> InstallationError: - assert e.causes, "Installation error reported with no cause" - - # If one of the things we can't solve is "we need Python X.Y", - # that is what we report. - requires_python_causes = [ - cause - for cause in e.causes - if isinstance(cause.requirement, RequiresPythonRequirement) - and not cause.requirement.is_satisfied_by(self._python_candidate) - ] - if requires_python_causes: - # The comprehension above makes sure all Requirement instances are - # RequiresPythonRequirement, so let's cast for convenience. - return self._report_requires_python_error( - cast("Sequence[ConflictCause]", requires_python_causes), - ) - - # Otherwise, we have a set of causes which can't all be satisfied - # at once. - - # The simplest case is when we have *one* cause that can't be - # satisfied. We just report that case. - if len(e.causes) == 1: - req, parent = e.causes[0] - if req.name not in constraints: - return self._report_single_requirement_conflict(req, parent) - - # OK, we now have a list of requirements that can't all be - # satisfied at once. - - # A couple of formatting helpers - def text_join(parts: List[str]) -> str: - if len(parts) == 1: - return parts[0] - - return ", ".join(parts[:-1]) + " and " + parts[-1] - - def describe_trigger(parent: Candidate) -> str: - ireq = parent.get_install_requirement() - if not ireq or not ireq.comes_from: - return f"{parent.name}=={parent.version}" - if isinstance(ireq.comes_from, InstallRequirement): - return str(ireq.comes_from.name) - return str(ireq.comes_from) - - triggers = set() - for req, parent in e.causes: - if parent is None: - # This is a root requirement, so we can report it directly - trigger = req.format_for_error() - else: - trigger = describe_trigger(parent) - triggers.add(trigger) - - if triggers: - info = text_join(sorted(triggers)) - else: - info = "the requested packages" - - msg = ( - f"Cannot install {info} because these package versions " - "have conflicting dependencies." - ) - logger.critical(msg) - msg = "\nThe conflict is caused by:" - - relevant_constraints = set() - for req, parent in e.causes: - if req.name in constraints: - relevant_constraints.add(req.name) - msg = msg + "\n " - if parent: - msg = msg + f"{parent.name} {parent.version} depends on " - else: - msg = msg + "The user requested " - msg = msg + req.format_for_error() - for key in relevant_constraints: - spec = constraints[key].specifier - msg += f"\n The user requested (constraint) {key}{spec}" - - msg = ( - msg - + "\n\n" - + "To fix this you could try to:\n" - + "1. loosen the range of package versions you've specified\n" - + "2. remove package versions to allow pip attempt to solve " - + "the dependency conflict\n" - ) - - logger.info(msg) - - return DistributionNotFound( - "ResolutionImpossible: for help visit " - "https://pip.pypa.io/en/latest/topics/dependency-resolution/" - "#dealing-with-dependency-conflicts" - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py deleted file mode 100644 index 8663097..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +++ /dev/null @@ -1,155 +0,0 @@ -"""Utilities to lazily create and visit candidates found. - -Creating and visiting a candidate is a *very* costly operation. It involves -fetching, extracting, potentially building modules from source, and verifying -distribution metadata. It is therefore crucial for performance to keep -everything here lazy all the way down, so we only touch candidates that we -absolutely need, and not "download the world" when we only need one version of -something. -""" - -import functools -from collections.abc import Sequence -from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple - -from pip._vendor.packaging.version import _BaseVersion - -from .base import Candidate - -IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] - -if TYPE_CHECKING: - SequenceCandidate = Sequence[Candidate] -else: - # For compatibility: Python before 3.9 does not support using [] on the - # Sequence class. - # - # >>> from collections.abc import Sequence - # >>> Sequence[str] - # Traceback (most recent call last): - # File "", line 1, in - # TypeError: 'ABCMeta' object is not subscriptable - # - # TODO: Remove this block after dropping Python 3.8 support. - SequenceCandidate = Sequence - - -def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: - """Iterator for ``FoundCandidates``. - - This iterator is used when the package is not already installed. Candidates - from index come later in their normal ordering. - """ - versions_found: Set[_BaseVersion] = set() - for version, func in infos: - if version in versions_found: - continue - candidate = func() - if candidate is None: - continue - yield candidate - versions_found.add(version) - - -def _iter_built_with_prepended( - installed: Candidate, infos: Iterator[IndexCandidateInfo] -) -> Iterator[Candidate]: - """Iterator for ``FoundCandidates``. - - This iterator is used when the resolver prefers the already-installed - candidate and NOT to upgrade. The installed candidate is therefore - always yielded first, and candidates from index come later in their - normal ordering, except skipped when the version is already installed. - """ - yield installed - versions_found: Set[_BaseVersion] = {installed.version} - for version, func in infos: - if version in versions_found: - continue - candidate = func() - if candidate is None: - continue - yield candidate - versions_found.add(version) - - -def _iter_built_with_inserted( - installed: Candidate, infos: Iterator[IndexCandidateInfo] -) -> Iterator[Candidate]: - """Iterator for ``FoundCandidates``. - - This iterator is used when the resolver prefers to upgrade an - already-installed package. Candidates from index are returned in their - normal ordering, except replaced when the version is already installed. - - The implementation iterates through and yields other candidates, inserting - the installed candidate exactly once before we start yielding older or - equivalent candidates, or after all other candidates if they are all newer. - """ - versions_found: Set[_BaseVersion] = set() - for version, func in infos: - if version in versions_found: - continue - # If the installed candidate is better, yield it first. - if installed.version >= version: - yield installed - versions_found.add(installed.version) - candidate = func() - if candidate is None: - continue - yield candidate - versions_found.add(version) - - # If the installed candidate is older than all other candidates. - if installed.version not in versions_found: - yield installed - - -class FoundCandidates(SequenceCandidate): - """A lazy sequence to provide candidates to the resolver. - - The intended usage is to return this from `find_matches()` so the resolver - can iterate through the sequence multiple times, but only access the index - page when remote packages are actually needed. This improve performances - when suitable candidates are already installed on disk. - """ - - def __init__( - self, - get_infos: Callable[[], Iterator[IndexCandidateInfo]], - installed: Optional[Candidate], - prefers_installed: bool, - incompatible_ids: Set[int], - ): - self._get_infos = get_infos - self._installed = installed - self._prefers_installed = prefers_installed - self._incompatible_ids = incompatible_ids - - def __getitem__(self, index: Any) -> Any: - # Implemented to satisfy the ABC check. This is not needed by the - # resolver, and should not be used by the provider either (for - # performance reasons). - raise NotImplementedError("don't do this") - - def __iter__(self) -> Iterator[Candidate]: - infos = self._get_infos() - if not self._installed: - iterator = _iter_built(infos) - elif self._prefers_installed: - iterator = _iter_built_with_prepended(self._installed, infos) - else: - iterator = _iter_built_with_inserted(self._installed, infos) - return (c for c in iterator if id(c) not in self._incompatible_ids) - - def __len__(self) -> int: - # Implemented to satisfy the ABC check. This is not needed by the - # resolver, and should not be used by the provider either (for - # performance reasons). - raise NotImplementedError("don't do this") - - @functools.lru_cache(maxsize=1) - def __bool__(self) -> bool: - if self._prefers_installed and self._installed: - return True - return any(self) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py deleted file mode 100644 index 315fb9c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py +++ /dev/null @@ -1,255 +0,0 @@ -import collections -import math -from typing import ( - TYPE_CHECKING, - Dict, - Iterable, - Iterator, - Mapping, - Sequence, - TypeVar, - Union, -) - -from pip._vendor.resolvelib.providers import AbstractProvider - -from .base import Candidate, Constraint, Requirement -from .candidates import REQUIRES_PYTHON_IDENTIFIER -from .factory import Factory - -if TYPE_CHECKING: - from pip._vendor.resolvelib.providers import Preference - from pip._vendor.resolvelib.resolvers import RequirementInformation - - PreferenceInformation = RequirementInformation[Requirement, Candidate] - - _ProviderBase = AbstractProvider[Requirement, Candidate, str] -else: - _ProviderBase = AbstractProvider - -# Notes on the relationship between the provider, the factory, and the -# candidate and requirement classes. -# -# The provider is a direct implementation of the resolvelib class. Its role -# is to deliver the API that resolvelib expects. -# -# Rather than work with completely abstract "requirement" and "candidate" -# concepts as resolvelib does, pip has concrete classes implementing these two -# ideas. The API of Requirement and Candidate objects are defined in the base -# classes, but essentially map fairly directly to the equivalent provider -# methods. In particular, `find_matches` and `is_satisfied_by` are -# requirement methods, and `get_dependencies` is a candidate method. -# -# The factory is the interface to pip's internal mechanisms. It is stateless, -# and is created by the resolver and held as a property of the provider. It is -# responsible for creating Requirement and Candidate objects, and provides -# services to those objects (access to pip's finder and preparer). - - -D = TypeVar("D") -V = TypeVar("V") - - -def _get_with_identifier( - mapping: Mapping[str, V], - identifier: str, - default: D, -) -> Union[D, V]: - """Get item from a package name lookup mapping with a resolver identifier. - - This extra logic is needed when the target mapping is keyed by package - name, which cannot be directly looked up with an identifier (which may - contain requested extras). Additional logic is added to also look up a value - by "cleaning up" the extras from the identifier. - """ - if identifier in mapping: - return mapping[identifier] - # HACK: Theoretically we should check whether this identifier is a valid - # "NAME[EXTRAS]" format, and parse out the name part with packaging or - # some regular expression. But since pip's resolver only spits out three - # kinds of identifiers: normalized PEP 503 names, normalized names plus - # extras, and Requires-Python, we can cheat a bit here. - name, open_bracket, _ = identifier.partition("[") - if open_bracket and name in mapping: - return mapping[name] - return default - - -class PipProvider(_ProviderBase): - """Pip's provider implementation for resolvelib. - - :params constraints: A mapping of constraints specified by the user. Keys - are canonicalized project names. - :params ignore_dependencies: Whether the user specified ``--no-deps``. - :params upgrade_strategy: The user-specified upgrade strategy. - :params user_requested: A set of canonicalized package names that the user - supplied for pip to install/upgrade. - """ - - def __init__( - self, - factory: Factory, - constraints: Dict[str, Constraint], - ignore_dependencies: bool, - upgrade_strategy: str, - user_requested: Dict[str, int], - ) -> None: - self._factory = factory - self._constraints = constraints - self._ignore_dependencies = ignore_dependencies - self._upgrade_strategy = upgrade_strategy - self._user_requested = user_requested - self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) - - def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: - return requirement_or_candidate.name - - def get_preference( - self, - identifier: str, - resolutions: Mapping[str, Candidate], - candidates: Mapping[str, Iterator[Candidate]], - information: Mapping[str, Iterable["PreferenceInformation"]], - backtrack_causes: Sequence["PreferenceInformation"], - ) -> "Preference": - """Produce a sort key for given requirement based on preference. - - The lower the return value is, the more preferred this group of - arguments is. - - Currently pip considers the following in order: - - * Prefer if any of the known requirements is "direct", e.g. points to an - explicit URL. - * If equal, prefer if any requirement is "pinned", i.e. contains - operator ``===`` or ``==``. - * If equal, calculate an approximate "depth" and resolve requirements - closer to the user-specified requirements first. If the depth cannot - by determined (eg: due to no matching parents), it is considered - infinite. - * Order user-specified requirements by the order they are specified. - * If equal, prefers "non-free" requirements, i.e. contains at least one - operator, such as ``>=`` or ``<``. - * If equal, order alphabetically for consistency (helps debuggability). - """ - try: - next(iter(information[identifier])) - except StopIteration: - # There is no information for this identifier, so there's no known - # candidates. - has_information = False - else: - has_information = True - - if has_information: - lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) - candidate, ireqs = zip(*lookups) - else: - candidate, ireqs = None, () - - operators = [ - specifier.operator - for specifier_set in (ireq.specifier for ireq in ireqs if ireq) - for specifier in specifier_set - ] - - direct = candidate is not None - pinned = any(op[:2] == "==" for op in operators) - unfree = bool(operators) - - try: - requested_order: Union[int, float] = self._user_requested[identifier] - except KeyError: - requested_order = math.inf - if has_information: - parent_depths = ( - self._known_depths[parent.name] if parent is not None else 0.0 - for _, parent in information[identifier] - ) - inferred_depth = min(d for d in parent_depths) + 1.0 - else: - inferred_depth = math.inf - else: - inferred_depth = 1.0 - self._known_depths[identifier] = inferred_depth - - requested_order = self._user_requested.get(identifier, math.inf) - - # Requires-Python has only one candidate and the check is basically - # free, so we always do it first to avoid needless work if it fails. - requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER - - # Prefer the causes of backtracking on the assumption that the problem - # resolving the dependency tree is related to the failures that caused - # the backtracking - backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) - - return ( - not requires_python, - not direct, - not pinned, - not backtrack_cause, - inferred_depth, - requested_order, - not unfree, - identifier, - ) - - def find_matches( - self, - identifier: str, - requirements: Mapping[str, Iterator[Requirement]], - incompatibilities: Mapping[str, Iterator[Candidate]], - ) -> Iterable[Candidate]: - def _eligible_for_upgrade(identifier: str) -> bool: - """Are upgrades allowed for this project? - - This checks the upgrade strategy, and whether the project was one - that the user specified in the command line, in order to decide - whether we should upgrade if there's a newer version available. - - (Note that we don't need access to the `--upgrade` flag, because - an upgrade strategy of "to-satisfy-only" means that `--upgrade` - was not specified). - """ - if self._upgrade_strategy == "eager": - return True - elif self._upgrade_strategy == "only-if-needed": - user_order = _get_with_identifier( - self._user_requested, - identifier, - default=None, - ) - return user_order is not None - return False - - constraint = _get_with_identifier( - self._constraints, - identifier, - default=Constraint.empty(), - ) - return self._factory.find_candidates( - identifier=identifier, - requirements=requirements, - constraint=constraint, - prefers_installed=(not _eligible_for_upgrade(identifier)), - incompatibilities=incompatibilities, - ) - - def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: - return requirement.is_satisfied_by(candidate) - - def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: - with_requires = not self._ignore_dependencies - return [r for r in candidate.iter_dependencies(with_requires) if r is not None] - - @staticmethod - def is_backtrack_cause( - identifier: str, backtrack_causes: Sequence["PreferenceInformation"] - ) -> bool: - for backtrack_cause in backtrack_causes: - if identifier == backtrack_cause.requirement.name: - return True - if backtrack_cause.parent and identifier == backtrack_cause.parent.name: - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py deleted file mode 100644 index 12adeff..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py +++ /dev/null @@ -1,80 +0,0 @@ -from collections import defaultdict -from logging import getLogger -from typing import Any, DefaultDict - -from pip._vendor.resolvelib.reporters import BaseReporter - -from .base import Candidate, Requirement - -logger = getLogger(__name__) - - -class PipReporter(BaseReporter): - def __init__(self) -> None: - self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) - - self._messages_at_reject_count = { - 1: ( - "pip is looking at multiple versions of {package_name} to " - "determine which version is compatible with other " - "requirements. This could take a while." - ), - 8: ( - "pip is still looking at multiple versions of {package_name} to " - "determine which version is compatible with other " - "requirements. This could take a while." - ), - 13: ( - "This is taking longer than usual. You might need to provide " - "the dependency resolver with stricter constraints to reduce " - "runtime. See https://pip.pypa.io/warnings/backtracking for " - "guidance. If you want to abort this run, press Ctrl + C." - ), - } - - def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: - self.reject_count_by_package[candidate.name] += 1 - - count = self.reject_count_by_package[candidate.name] - if count not in self._messages_at_reject_count: - return - - message = self._messages_at_reject_count[count] - logger.info("INFO: %s", message.format(package_name=candidate.name)) - - msg = "Will try a different candidate, due to conflict:" - for req_info in criterion.information: - req, parent = req_info.requirement, req_info.parent - # Inspired by Factory.get_installation_error - msg += "\n " - if parent: - msg += f"{parent.name} {parent.version} depends on " - else: - msg += "The user requested " - msg += req.format_for_error() - logger.debug(msg) - - -class PipDebuggingReporter(BaseReporter): - """A reporter that does an info log for every event it sees.""" - - def starting(self) -> None: - logger.info("Reporter.starting()") - - def starting_round(self, index: int) -> None: - logger.info("Reporter.starting_round(%r)", index) - - def ending_round(self, index: int, state: Any) -> None: - logger.info("Reporter.ending_round(%r, state)", index) - - def ending(self, state: Any) -> None: - logger.info("Reporter.ending(%r)", state) - - def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: - logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) - - def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: - logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) - - def pinning(self, candidate: Candidate) -> None: - logger.info("Reporter.pinning(%r)", candidate) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py deleted file mode 100644 index 4af4a9f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py +++ /dev/null @@ -1,166 +0,0 @@ -from pip._vendor.packaging.specifiers import SpecifierSet -from pip._vendor.packaging.utils import NormalizedName, canonicalize_name - -from pip._internal.req.constructors import install_req_drop_extras -from pip._internal.req.req_install import InstallRequirement - -from .base import Candidate, CandidateLookup, Requirement, format_name - - -class ExplicitRequirement(Requirement): - def __init__(self, candidate: Candidate) -> None: - self.candidate = candidate - - def __str__(self) -> str: - return str(self.candidate) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.candidate!r})" - - @property - def project_name(self) -> NormalizedName: - # No need to canonicalize - the candidate did this - return self.candidate.project_name - - @property - def name(self) -> str: - # No need to canonicalize - the candidate did this - return self.candidate.name - - def format_for_error(self) -> str: - return self.candidate.format_for_error() - - def get_candidate_lookup(self) -> CandidateLookup: - return self.candidate, None - - def is_satisfied_by(self, candidate: Candidate) -> bool: - return candidate == self.candidate - - -class SpecifierRequirement(Requirement): - def __init__(self, ireq: InstallRequirement) -> None: - assert ireq.link is None, "This is a link, not a specifier" - self._ireq = ireq - self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) - - def __str__(self) -> str: - return str(self._ireq.req) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({str(self._ireq.req)!r})" - - @property - def project_name(self) -> NormalizedName: - assert self._ireq.req, "Specifier-backed ireq is always PEP 508" - return canonicalize_name(self._ireq.req.name) - - @property - def name(self) -> str: - return format_name(self.project_name, self._extras) - - def format_for_error(self) -> str: - # Convert comma-separated specifiers into "A, B, ..., F and G" - # This makes the specifier a bit more "human readable", without - # risking a change in meaning. (Hopefully! Not all edge cases have - # been checked) - parts = [s.strip() for s in str(self).split(",")] - if len(parts) == 0: - return "" - elif len(parts) == 1: - return parts[0] - - return ", ".join(parts[:-1]) + " and " + parts[-1] - - def get_candidate_lookup(self) -> CandidateLookup: - return None, self._ireq - - def is_satisfied_by(self, candidate: Candidate) -> bool: - assert candidate.name == self.name, ( - f"Internal issue: Candidate is not for this requirement " - f"{candidate.name} vs {self.name}" - ) - # We can safely always allow prereleases here since PackageFinder - # already implements the prerelease logic, and would have filtered out - # prerelease candidates if the user does not expect them. - assert self._ireq.req, "Specifier-backed ireq is always PEP 508" - spec = self._ireq.req.specifier - return spec.contains(candidate.version, prereleases=True) - - -class SpecifierWithoutExtrasRequirement(SpecifierRequirement): - """ - Requirement backed by an install requirement on a base package. - Trims extras from its install requirement if there are any. - """ - - def __init__(self, ireq: InstallRequirement) -> None: - assert ireq.link is None, "This is a link, not a specifier" - self._ireq = install_req_drop_extras(ireq) - self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) - - -class RequiresPythonRequirement(Requirement): - """A requirement representing Requires-Python metadata.""" - - def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: - self.specifier = specifier - self._candidate = match - - def __str__(self) -> str: - return f"Python {self.specifier}" - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({str(self.specifier)!r})" - - @property - def project_name(self) -> NormalizedName: - return self._candidate.project_name - - @property - def name(self) -> str: - return self._candidate.name - - def format_for_error(self) -> str: - return str(self) - - def get_candidate_lookup(self) -> CandidateLookup: - if self.specifier.contains(self._candidate.version, prereleases=True): - return self._candidate, None - return None, None - - def is_satisfied_by(self, candidate: Candidate) -> bool: - assert candidate.name == self._candidate.name, "Not Python candidate" - # We can safely always allow prereleases here since PackageFinder - # already implements the prerelease logic, and would have filtered out - # prerelease candidates if the user does not expect them. - return self.specifier.contains(candidate.version, prereleases=True) - - -class UnsatisfiableRequirement(Requirement): - """A requirement that cannot be satisfied.""" - - def __init__(self, name: NormalizedName) -> None: - self._name = name - - def __str__(self) -> str: - return f"{self._name} (unavailable)" - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({str(self._name)!r})" - - @property - def project_name(self) -> NormalizedName: - return self._name - - @property - def name(self) -> str: - return self._name - - def format_for_error(self) -> str: - return str(self) - - def get_candidate_lookup(self) -> CandidateLookup: - return None, None - - def is_satisfied_by(self, candidate: Candidate) -> bool: - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py deleted file mode 100644 index c12beef..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py +++ /dev/null @@ -1,317 +0,0 @@ -import contextlib -import functools -import logging -import os -from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast - -from pip._vendor.packaging.utils import canonicalize_name -from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible -from pip._vendor.resolvelib import Resolver as RLResolver -from pip._vendor.resolvelib.structs import DirectedGraph - -from pip._internal.cache import WheelCache -from pip._internal.index.package_finder import PackageFinder -from pip._internal.operations.prepare import RequirementPreparer -from pip._internal.req.constructors import install_req_extend_extras -from pip._internal.req.req_install import InstallRequirement -from pip._internal.req.req_set import RequirementSet -from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider -from pip._internal.resolution.resolvelib.provider import PipProvider -from pip._internal.resolution.resolvelib.reporter import ( - PipDebuggingReporter, - PipReporter, -) -from pip._internal.utils.packaging import get_requirement - -from .base import Candidate, Requirement -from .factory import Factory - -if TYPE_CHECKING: - from pip._vendor.resolvelib.resolvers import Result as RLResult - - Result = RLResult[Requirement, Candidate, str] - - -logger = logging.getLogger(__name__) - - -class Resolver(BaseResolver): - _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} - - def __init__( - self, - preparer: RequirementPreparer, - finder: PackageFinder, - wheel_cache: Optional[WheelCache], - make_install_req: InstallRequirementProvider, - use_user_site: bool, - ignore_dependencies: bool, - ignore_installed: bool, - ignore_requires_python: bool, - force_reinstall: bool, - upgrade_strategy: str, - py_version_info: Optional[Tuple[int, ...]] = None, - ): - super().__init__() - assert upgrade_strategy in self._allowed_strategies - - self.factory = Factory( - finder=finder, - preparer=preparer, - make_install_req=make_install_req, - wheel_cache=wheel_cache, - use_user_site=use_user_site, - force_reinstall=force_reinstall, - ignore_installed=ignore_installed, - ignore_requires_python=ignore_requires_python, - py_version_info=py_version_info, - ) - self.ignore_dependencies = ignore_dependencies - self.upgrade_strategy = upgrade_strategy - self._result: Optional[Result] = None - - def resolve( - self, root_reqs: List[InstallRequirement], check_supported_wheels: bool - ) -> RequirementSet: - collected = self.factory.collect_root_requirements(root_reqs) - provider = PipProvider( - factory=self.factory, - constraints=collected.constraints, - ignore_dependencies=self.ignore_dependencies, - upgrade_strategy=self.upgrade_strategy, - user_requested=collected.user_requested, - ) - if "PIP_RESOLVER_DEBUG" in os.environ: - reporter: BaseReporter = PipDebuggingReporter() - else: - reporter = PipReporter() - resolver: RLResolver[Requirement, Candidate, str] = RLResolver( - provider, - reporter, - ) - - try: - limit_how_complex_resolution_can_be = 200000 - result = self._result = resolver.resolve( - collected.requirements, max_rounds=limit_how_complex_resolution_can_be - ) - - except ResolutionImpossible as e: - error = self.factory.get_installation_error( - cast("ResolutionImpossible[Requirement, Candidate]", e), - collected.constraints, - ) - raise error from e - - req_set = RequirementSet(check_supported_wheels=check_supported_wheels) - # process candidates with extras last to ensure their base equivalent is - # already in the req_set if appropriate. - # Python's sort is stable so using a binary key function keeps relative order - # within both subsets. - for candidate in sorted( - result.mapping.values(), key=lambda c: c.name != c.project_name - ): - ireq = candidate.get_install_requirement() - if ireq is None: - if candidate.name != candidate.project_name: - # extend existing req's extras - with contextlib.suppress(KeyError): - req = req_set.get_requirement(candidate.project_name) - req_set.add_named_requirement( - install_req_extend_extras( - req, get_requirement(candidate.name).extras - ) - ) - continue - - # Check if there is already an installation under the same name, - # and set a flag for later stages to uninstall it, if needed. - installed_dist = self.factory.get_dist_to_uninstall(candidate) - if installed_dist is None: - # There is no existing installation -- nothing to uninstall. - ireq.should_reinstall = False - elif self.factory.force_reinstall: - # The --force-reinstall flag is set -- reinstall. - ireq.should_reinstall = True - elif installed_dist.version != candidate.version: - # The installation is different in version -- reinstall. - ireq.should_reinstall = True - elif candidate.is_editable or installed_dist.editable: - # The incoming distribution is editable, or different in - # editable-ness to installation -- reinstall. - ireq.should_reinstall = True - elif candidate.source_link and candidate.source_link.is_file: - # The incoming distribution is under file:// - if candidate.source_link.is_wheel: - # is a local wheel -- do nothing. - logger.info( - "%s is already installed with the same version as the " - "provided wheel. Use --force-reinstall to force an " - "installation of the wheel.", - ireq.name, - ) - continue - - # is a local sdist or path -- reinstall - ireq.should_reinstall = True - else: - continue - - link = candidate.source_link - if link and link.is_yanked: - # The reason can contain non-ASCII characters, Unicode - # is required for Python 2. - msg = ( - "The candidate selected for download or install is a " - "yanked version: {name!r} candidate (version {version} " - "at {link})\nReason for being yanked: {reason}" - ).format( - name=candidate.name, - version=candidate.version, - link=link, - reason=link.yanked_reason or "", - ) - logger.warning(msg) - - req_set.add_named_requirement(ireq) - - reqs = req_set.all_requirements - self.factory.preparer.prepare_linked_requirements_more(reqs) - for req in reqs: - req.prepared = True - req.needs_more_preparation = False - return req_set - - def get_installation_order( - self, req_set: RequirementSet - ) -> List[InstallRequirement]: - """Get order for installation of requirements in RequirementSet. - - The returned list contains a requirement before another that depends on - it. This helps ensure that the environment is kept consistent as they - get installed one-by-one. - - The current implementation creates a topological ordering of the - dependency graph, giving more weight to packages with less - or no dependencies, while breaking any cycles in the graph at - arbitrary points. We make no guarantees about where the cycle - would be broken, other than it *would* be broken. - """ - assert self._result is not None, "must call resolve() first" - - if not req_set.requirements: - # Nothing is left to install, so we do not need an order. - return [] - - graph = self._result.graph - weights = get_topological_weights(graph, set(req_set.requirements.keys())) - - sorted_items = sorted( - req_set.requirements.items(), - key=functools.partial(_req_set_item_sorter, weights=weights), - reverse=True, - ) - return [ireq for _, ireq in sorted_items] - - -def get_topological_weights( - graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] -) -> Dict[Optional[str], int]: - """Assign weights to each node based on how "deep" they are. - - This implementation may change at any point in the future without prior - notice. - - We first simplify the dependency graph by pruning any leaves and giving them - the highest weight: a package without any dependencies should be installed - first. This is done again and again in the same way, giving ever less weight - to the newly found leaves. The loop stops when no leaves are left: all - remaining packages have at least one dependency left in the graph. - - Then we continue with the remaining graph, by taking the length for the - longest path to any node from root, ignoring any paths that contain a single - node twice (i.e. cycles). This is done through a depth-first search through - the graph, while keeping track of the path to the node. - - Cycles in the graph result would result in node being revisited while also - being on its own path. In this case, take no action. This helps ensure we - don't get stuck in a cycle. - - When assigning weight, the longer path (i.e. larger length) is preferred. - - We are only interested in the weights of packages that are in the - requirement_keys. - """ - path: Set[Optional[str]] = set() - weights: Dict[Optional[str], int] = {} - - def visit(node: Optional[str]) -> None: - if node in path: - # We hit a cycle, so we'll break it here. - return - - # Time to visit the children! - path.add(node) - for child in graph.iter_children(node): - visit(child) - path.remove(node) - - if node not in requirement_keys: - return - - last_known_parent_count = weights.get(node, 0) - weights[node] = max(last_known_parent_count, len(path)) - - # Simplify the graph, pruning leaves that have no dependencies. - # This is needed for large graphs (say over 200 packages) because the - # `visit` function is exponentially slower then, taking minutes. - # See https://github.com/pypa/pip/issues/10557 - # We will loop until we explicitly break the loop. - while True: - leaves = set() - for key in graph: - if key is None: - continue - for _child in graph.iter_children(key): - # This means we have at least one child - break - else: - # No child. - leaves.add(key) - if not leaves: - # We are done simplifying. - break - # Calculate the weight for the leaves. - weight = len(graph) - 1 - for leaf in leaves: - if leaf not in requirement_keys: - continue - weights[leaf] = weight - # Remove the leaves from the graph, making it simpler. - for leaf in leaves: - graph.remove(leaf) - - # Visit the remaining graph. - # `None` is guaranteed to be the root node by resolvelib. - visit(None) - - # Sanity check: all requirement keys should be in the weights, - # and no other keys should be in the weights. - difference = set(weights.keys()).difference(requirement_keys) - assert not difference, difference - - return weights - - -def _req_set_item_sorter( - item: Tuple[str, InstallRequirement], - weights: Dict[Optional[str], int], -) -> Tuple[int, str]: - """Key function used to sort install requirements for installation. - - Based on the "weight" mapping calculated in ``get_installation_order()``. - The canonical package name is returned as the second member as a tie- - breaker to ensure the result is predictable, which is useful in tests. - """ - name = canonicalize_name(item[0]) - return weights[name], name diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py deleted file mode 100644 index 0f64ae0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py +++ /dev/null @@ -1,248 +0,0 @@ -import datetime -import functools -import hashlib -import json -import logging -import optparse -import os.path -import sys -from dataclasses import dataclass -from typing import Any, Callable, Dict, Optional - -from pip._vendor.packaging.version import parse as parse_version -from pip._vendor.rich.console import Group -from pip._vendor.rich.markup import escape -from pip._vendor.rich.text import Text - -from pip._internal.index.collector import LinkCollector -from pip._internal.index.package_finder import PackageFinder -from pip._internal.metadata import get_default_environment -from pip._internal.metadata.base import DistributionVersion -from pip._internal.models.selection_prefs import SelectionPreferences -from pip._internal.network.session import PipSession -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.entrypoints import ( - get_best_invocation_for_this_pip, - get_best_invocation_for_this_python, -) -from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace -from pip._internal.utils.misc import ensure_dir - -_WEEK = datetime.timedelta(days=7) - -logger = logging.getLogger(__name__) - - -def _get_statefile_name(key: str) -> str: - key_bytes = key.encode() - name = hashlib.sha224(key_bytes).hexdigest() - return name - - -def _convert_date(isodate: str) -> datetime.datetime: - """Convert an ISO format string to a date. - - Handles the format 2020-01-22T14:24:01Z (trailing Z) - which is not supported by older versions of fromisoformat. - """ - return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) - - -class SelfCheckState: - def __init__(self, cache_dir: str) -> None: - self._state: Dict[str, Any] = {} - self._statefile_path = None - - # Try to load the existing state - if cache_dir: - self._statefile_path = os.path.join( - cache_dir, "selfcheck", _get_statefile_name(self.key) - ) - try: - with open(self._statefile_path, encoding="utf-8") as statefile: - self._state = json.load(statefile) - except (OSError, ValueError, KeyError): - # Explicitly suppressing exceptions, since we don't want to - # error out if the cache file is invalid. - pass - - @property - def key(self) -> str: - return sys.prefix - - def get(self, current_time: datetime.datetime) -> Optional[str]: - """Check if we have a not-outdated version loaded already.""" - if not self._state: - return None - - if "last_check" not in self._state: - return None - - if "pypi_version" not in self._state: - return None - - # Determine if we need to refresh the state - last_check = _convert_date(self._state["last_check"]) - time_since_last_check = current_time - last_check - if time_since_last_check > _WEEK: - return None - - return self._state["pypi_version"] - - def set(self, pypi_version: str, current_time: datetime.datetime) -> None: - # If we do not have a path to cache in, don't bother saving. - if not self._statefile_path: - return - - # Check to make sure that we own the directory - if not check_path_owner(os.path.dirname(self._statefile_path)): - return - - # Now that we've ensured the directory is owned by this user, we'll go - # ahead and make sure that all our directories are created. - ensure_dir(os.path.dirname(self._statefile_path)) - - state = { - # Include the key so it's easy to tell which pip wrote the - # file. - "key": self.key, - "last_check": current_time.isoformat(), - "pypi_version": pypi_version, - } - - text = json.dumps(state, sort_keys=True, separators=(",", ":")) - - with adjacent_tmp_file(self._statefile_path) as f: - f.write(text.encode()) - - try: - # Since we have a prefix-specific state file, we can just - # overwrite whatever is there, no need to check. - replace(f.name, self._statefile_path) - except OSError: - # Best effort. - pass - - -@dataclass -class UpgradePrompt: - old: str - new: str - - def __rich__(self) -> Group: - if WINDOWS: - pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" - else: - pip_cmd = get_best_invocation_for_this_pip() - - notice = "[bold][[reset][blue]notice[reset][bold]][reset]" - return Group( - Text(), - Text.from_markup( - f"{notice} A new release of pip is available: " - f"[red]{self.old}[reset] -> [green]{self.new}[reset]" - ), - Text.from_markup( - f"{notice} To update, run: " - f"[green]{escape(pip_cmd)} install --upgrade pip" - ), - ) - - -def was_installed_by_pip(pkg: str) -> bool: - """Checks whether pkg was installed by pip - - This is used not to display the upgrade message when pip is in fact - installed by system package manager, such as dnf on Fedora. - """ - dist = get_default_environment().get_distribution(pkg) - return dist is not None and "pip" == dist.installer - - -def _get_current_remote_pip_version( - session: PipSession, options: optparse.Values -) -> Optional[str]: - # Lets use PackageFinder to see what the latest pip version is - link_collector = LinkCollector.create( - session, - options=options, - suppress_no_index=True, - ) - - # Pass allow_yanked=False so we don't suggest upgrading to a - # yanked version. - selection_prefs = SelectionPreferences( - allow_yanked=False, - allow_all_prereleases=False, # Explicitly set to False - ) - - finder = PackageFinder.create( - link_collector=link_collector, - selection_prefs=selection_prefs, - ) - best_candidate = finder.find_best_candidate("pip").best_candidate - if best_candidate is None: - return None - - return str(best_candidate.version) - - -def _self_version_check_logic( - *, - state: SelfCheckState, - current_time: datetime.datetime, - local_version: DistributionVersion, - get_remote_version: Callable[[], Optional[str]], -) -> Optional[UpgradePrompt]: - remote_version_str = state.get(current_time) - if remote_version_str is None: - remote_version_str = get_remote_version() - if remote_version_str is None: - logger.debug("No remote pip version found") - return None - state.set(remote_version_str, current_time) - - remote_version = parse_version(remote_version_str) - logger.debug("Remote version of pip: %s", remote_version) - logger.debug("Local version of pip: %s", local_version) - - pip_installed_by_pip = was_installed_by_pip("pip") - logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) - if not pip_installed_by_pip: - return None # Only suggest upgrade if pip is installed by pip. - - local_version_is_older = ( - local_version < remote_version - and local_version.base_version != remote_version.base_version - ) - if local_version_is_older: - return UpgradePrompt(old=str(local_version), new=remote_version_str) - - return None - - -def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: - """Check for an update for pip. - - Limit the frequency of checks to once per week. State is stored either in - the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix - of the pip script path. - """ - installed_dist = get_default_environment().get_distribution("pip") - if not installed_dist: - return - - try: - upgrade_prompt = _self_version_check_logic( - state=SelfCheckState(cache_dir=options.cache_dir), - current_time=datetime.datetime.now(datetime.timezone.utc), - local_version=installed_dist.version, - get_remote_version=functools.partial( - _get_current_remote_pip_version, session, options - ), - ) - if upgrade_prompt is not None: - logger.warning("%s", upgrade_prompt, extra={"rich": True}) - except Exception: - logger.warning("There was an error checking the latest version of pip.") - logger.debug("See below for error", exc_info=True) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 10da448..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc deleted file mode 100644 index 4c1d045..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc deleted file mode 100644 index d15026c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc deleted file mode 100644 index d048034..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc deleted file mode 100644 index 73387ee..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc deleted file mode 100644 index e417be6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-311.pyc deleted file mode 100644 index bc0f91c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc deleted file mode 100644 index c52526c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc deleted file mode 100644 index 08df470..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc deleted file mode 100644 index 8031be4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc deleted file mode 100644 index 43259b1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc deleted file mode 100644 index 4f26a72..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc deleted file mode 100644 index 01b7cf8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc deleted file mode 100644 index 474130d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc deleted file mode 100644 index 683ed3b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc deleted file mode 100644 index c52199a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc deleted file mode 100644 index 955455c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc deleted file mode 100644 index 4ede9d9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc deleted file mode 100644 index e1d0840..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc deleted file mode 100644 index 952dd03..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc deleted file mode 100644 index 77c085b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc deleted file mode 100644 index c71a608..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc deleted file mode 100644 index c32c6da..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc deleted file mode 100644 index bfb8c53..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc deleted file mode 100644 index 250fff1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc deleted file mode 100644 index 4a4d621..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index 43529ff..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py deleted file mode 100644 index e06947c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py +++ /dev/null @@ -1,109 +0,0 @@ -"""Functions brought over from jaraco.text. - -These functions are not supposed to be used within `pip._internal`. These are -helper functions brought over from `jaraco.text` to enable vendoring newer -copies of `pkg_resources` without having to vendor `jaraco.text` and its entire -dependency cone; something that our vendoring setup is not currently capable of -handling. - -License reproduced from original source below: - -Copyright Jason R. Coombs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -import functools -import itertools - - -def _nonblank(str): - return str and not str.startswith("#") - - -@functools.singledispatch -def yield_lines(iterable): - r""" - Yield valid lines of a string or iterable. - - >>> list(yield_lines('')) - [] - >>> list(yield_lines(['foo', 'bar'])) - ['foo', 'bar'] - >>> list(yield_lines('foo\nbar')) - ['foo', 'bar'] - >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) - ['foo', 'baz #comment'] - >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) - ['foo', 'bar', 'baz', 'bing'] - """ - return itertools.chain.from_iterable(map(yield_lines, iterable)) - - -@yield_lines.register(str) -def _(text): - return filter(_nonblank, map(str.strip, text.splitlines())) - - -def drop_comment(line): - """ - Drop comments. - - >>> drop_comment('foo # bar') - 'foo' - - A hash without a space may be in a URL. - - >>> drop_comment('http://example.com/foo#bar') - 'http://example.com/foo#bar' - """ - return line.partition(" #")[0] - - -def join_continuation(lines): - r""" - Join lines continued by a trailing backslash. - - >>> list(join_continuation(['foo \\', 'bar', 'baz'])) - ['foobar', 'baz'] - >>> list(join_continuation(['foo \\', 'bar', 'baz'])) - ['foobar', 'baz'] - >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) - ['foobarbaz'] - - Not sure why, but... - The character preceeding the backslash is also elided. - - >>> list(join_continuation(['goo\\', 'dly'])) - ['godly'] - - A terrible idea, but... - If no line is available to continue, suppress the lines. - - >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) - ['foo'] - """ - lines = iter(lines) - for item in lines: - while item.endswith("\\"): - try: - item = item[:-2].strip() + next(lines) - except StopIteration: - return - yield item diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py deleted file mode 100644 index 92c4c6a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py +++ /dev/null @@ -1,38 +0,0 @@ -"""Customize logging - -Defines custom logger class for the `logger.verbose(...)` method. - -init_logging() must be called before any other modules that call logging.getLogger. -""" - -import logging -from typing import Any, cast - -# custom log level for `--verbose` output -# between DEBUG and INFO -VERBOSE = 15 - - -class VerboseLogger(logging.Logger): - """Custom Logger, defining a verbose log-level - - VERBOSE is between INFO and DEBUG. - """ - - def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: - return self.log(VERBOSE, msg, *args, **kwargs) - - -def getLogger(name: str) -> VerboseLogger: - """logging.getLogger, but ensures our VerboseLogger class is returned""" - return cast(VerboseLogger, logging.getLogger(name)) - - -def init_logging() -> None: - """Register our VerboseLogger and VERBOSE log level. - - Should be called before any calls to getLogger(), - i.e. in pip._internal.__init__ - """ - logging.setLoggerClass(VerboseLogger) - logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py deleted file mode 100644 index 16933bf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -This code wraps the vendored appdirs module to so the return values are -compatible for the current pip code base. - -The intention is to rewrite current usages gradually, keeping the tests pass, -and eventually drop this after all usages are changed. -""" - -import os -import sys -from typing import List - -from pip._vendor import platformdirs as _appdirs - - -def user_cache_dir(appname: str) -> str: - return _appdirs.user_cache_dir(appname, appauthor=False) - - -def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: - # Use ~/Application Support/pip, if the directory exists. - path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) - if os.path.isdir(path): - return path - - # Use a Linux-like ~/.config/pip, by default. - linux_like_path = "~/.config/" - if appname: - linux_like_path = os.path.join(linux_like_path, appname) - - return os.path.expanduser(linux_like_path) - - -def user_config_dir(appname: str, roaming: bool = True) -> str: - if sys.platform == "darwin": - return _macos_user_config_dir(appname, roaming) - - return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) - - -# for the discussion regarding site_config_dir locations -# see -def site_config_dirs(appname: str) -> List[str]: - if sys.platform == "darwin": - return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] - - dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) - if sys.platform == "win32": - return [dirval] - - # Unix-y system. Look in /etc as well. - return dirval.split(os.pathsep) + ["/etc"] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py deleted file mode 100644 index 3f4d300..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py +++ /dev/null @@ -1,63 +0,0 @@ -"""Stuff that differs in different Python versions and platform -distributions.""" - -import logging -import os -import sys - -__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] - - -logger = logging.getLogger(__name__) - - -def has_tls() -> bool: - try: - import _ssl # noqa: F401 # ignore unused - - return True - except ImportError: - pass - - from pip._vendor.urllib3.util import IS_PYOPENSSL - - return IS_PYOPENSSL - - -def get_path_uid(path: str) -> int: - """ - Return path's uid. - - Does not follow symlinks: - https://github.com/pypa/pip/pull/935#discussion_r5307003 - - Placed this function in compat due to differences on AIX and - Jython, that should eventually go away. - - :raises OSError: When path is a symlink or can't be read. - """ - if hasattr(os, "O_NOFOLLOW"): - fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) - file_uid = os.fstat(fd).st_uid - os.close(fd) - else: # AIX and Jython - # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW - if not os.path.islink(path): - # older versions of Jython don't have `os.fstat` - file_uid = os.stat(path).st_uid - else: - # raise OSError for parity with os.O_NOFOLLOW above - raise OSError(f"{path} is a symlink; Will not return uid for symlinks") - return file_uid - - -# packages in the stdlib that may have installation metadata, but should not be -# considered 'installed'. this theoretically could be determined based on -# dist.location (py27:`sysconfig.get_paths()['stdlib']`, -# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may -# make this ineffective, so hard-coding -stdlib_pkgs = {"python", "wsgiref", "argparse"} - - -# windows detection, covers cpython and ironpython -WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py deleted file mode 100644 index b6ed9a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py +++ /dev/null @@ -1,165 +0,0 @@ -"""Generate and work with PEP 425 Compatibility Tags. -""" - -import re -from typing import List, Optional, Tuple - -from pip._vendor.packaging.tags import ( - PythonVersion, - Tag, - compatible_tags, - cpython_tags, - generic_tags, - interpreter_name, - interpreter_version, - mac_platforms, -) - -_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") - - -def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: - # Only use up to the first two numbers. - return "".join(map(str, version_info[:2])) - - -def _mac_platforms(arch: str) -> List[str]: - match = _osx_arch_pat.match(arch) - if match: - name, major, minor, actual_arch = match.groups() - mac_version = (int(major), int(minor)) - arches = [ - # Since we have always only checked that the platform starts - # with "macosx", for backwards-compatibility we extract the - # actual prefix provided by the user in case they provided - # something like "macosxcustom_". It may be good to remove - # this as undocumented or deprecate it in the future. - "{}_{}".format(name, arch[len("macosx_") :]) - for arch in mac_platforms(mac_version, actual_arch) - ] - else: - # arch pattern didn't match (?!) - arches = [arch] - return arches - - -def _custom_manylinux_platforms(arch: str) -> List[str]: - arches = [arch] - arch_prefix, arch_sep, arch_suffix = arch.partition("_") - if arch_prefix == "manylinux2014": - # manylinux1/manylinux2010 wheels run on most manylinux2014 systems - # with the exception of wheels depending on ncurses. PEP 599 states - # manylinux1/manylinux2010 wheels should be considered - # manylinux2014 wheels: - # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels - if arch_suffix in {"i686", "x86_64"}: - arches.append("manylinux2010" + arch_sep + arch_suffix) - arches.append("manylinux1" + arch_sep + arch_suffix) - elif arch_prefix == "manylinux2010": - # manylinux1 wheels run on most manylinux2010 systems with the - # exception of wheels depending on ncurses. PEP 571 states - # manylinux1 wheels should be considered manylinux2010 wheels: - # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels - arches.append("manylinux1" + arch_sep + arch_suffix) - return arches - - -def _get_custom_platforms(arch: str) -> List[str]: - arch_prefix, arch_sep, arch_suffix = arch.partition("_") - if arch.startswith("macosx"): - arches = _mac_platforms(arch) - elif arch_prefix in ["manylinux2014", "manylinux2010"]: - arches = _custom_manylinux_platforms(arch) - else: - arches = [arch] - return arches - - -def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: - if not platforms: - return None - - seen = set() - result = [] - - for p in platforms: - if p in seen: - continue - additions = [c for c in _get_custom_platforms(p) if c not in seen] - seen.update(additions) - result.extend(additions) - - return result - - -def _get_python_version(version: str) -> PythonVersion: - if len(version) > 1: - return int(version[0]), int(version[1:]) - else: - return (int(version[0]),) - - -def _get_custom_interpreter( - implementation: Optional[str] = None, version: Optional[str] = None -) -> str: - if implementation is None: - implementation = interpreter_name() - if version is None: - version = interpreter_version() - return f"{implementation}{version}" - - -def get_supported( - version: Optional[str] = None, - platforms: Optional[List[str]] = None, - impl: Optional[str] = None, - abis: Optional[List[str]] = None, -) -> List[Tag]: - """Return a list of supported tags for each version specified in - `versions`. - - :param version: a string version, of the form "33" or "32", - or None. The version will be assumed to support our ABI. - :param platform: specify a list of platforms you want valid - tags for, or None. If None, use the local system platform. - :param impl: specify the exact implementation you want valid - tags for, or None. If None, use the local interpreter impl. - :param abis: specify a list of abis you want valid - tags for, or None. If None, use the local interpreter abi. - """ - supported: List[Tag] = [] - - python_version: Optional[PythonVersion] = None - if version is not None: - python_version = _get_python_version(version) - - interpreter = _get_custom_interpreter(impl, version) - - platforms = _expand_allowed_platforms(platforms) - - is_cpython = (impl or interpreter_name()) == "cp" - if is_cpython: - supported.extend( - cpython_tags( - python_version=python_version, - abis=abis, - platforms=platforms, - ) - ) - else: - supported.extend( - generic_tags( - interpreter=interpreter, - abis=abis, - platforms=platforms, - ) - ) - supported.extend( - compatible_tags( - python_version=python_version, - interpreter=interpreter, - platforms=platforms, - ) - ) - - return supported diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py deleted file mode 100644 index 8668b3b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py +++ /dev/null @@ -1,11 +0,0 @@ -"""For when pip wants to check the date or time. -""" - -import datetime - - -def today_is_later_than(year: int, month: int, day: int) -> bool: - today = datetime.date.today() - given = datetime.date(year, month, day) - - return today > given diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py deleted file mode 100644 index 72bd6f2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py +++ /dev/null @@ -1,120 +0,0 @@ -""" -A module that implements tooling to enable easy warnings about deprecations. -""" - -import logging -import warnings -from typing import Any, Optional, TextIO, Type, Union - -from pip._vendor.packaging.version import parse - -from pip import __version__ as current_version # NOTE: tests patch this name. - -DEPRECATION_MSG_PREFIX = "DEPRECATION: " - - -class PipDeprecationWarning(Warning): - pass - - -_original_showwarning: Any = None - - -# Warnings <-> Logging Integration -def _showwarning( - message: Union[Warning, str], - category: Type[Warning], - filename: str, - lineno: int, - file: Optional[TextIO] = None, - line: Optional[str] = None, -) -> None: - if file is not None: - if _original_showwarning is not None: - _original_showwarning(message, category, filename, lineno, file, line) - elif issubclass(category, PipDeprecationWarning): - # We use a specially named logger which will handle all of the - # deprecation messages for pip. - logger = logging.getLogger("pip._internal.deprecations") - logger.warning(message) - else: - _original_showwarning(message, category, filename, lineno, file, line) - - -def install_warning_logger() -> None: - # Enable our Deprecation Warnings - warnings.simplefilter("default", PipDeprecationWarning, append=True) - - global _original_showwarning - - if _original_showwarning is None: - _original_showwarning = warnings.showwarning - warnings.showwarning = _showwarning - - -def deprecated( - *, - reason: str, - replacement: Optional[str], - gone_in: Optional[str], - feature_flag: Optional[str] = None, - issue: Optional[int] = None, -) -> None: - """Helper to deprecate existing functionality. - - reason: - Textual reason shown to the user about why this functionality has - been deprecated. Should be a complete sentence. - replacement: - Textual suggestion shown to the user about what alternative - functionality they can use. - gone_in: - The version of pip does this functionality should get removed in. - Raises an error if pip's current version is greater than or equal to - this. - feature_flag: - Command-line flag of the form --use-feature={feature_flag} for testing - upcoming functionality. - issue: - Issue number on the tracker that would serve as a useful place for - users to find related discussion and provide feedback. - """ - - # Determine whether or not the feature is already gone in this version. - is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) - - message_parts = [ - (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), - ( - gone_in, - "pip {} will enforce this behaviour change." - if not is_gone - else "Since pip {}, this is no longer supported.", - ), - ( - replacement, - "A possible replacement is {}.", - ), - ( - feature_flag, - "You can use the flag --use-feature={} to test the upcoming behaviour." - if not is_gone - else None, - ), - ( - issue, - "Discussion can be found at https://github.com/pypa/pip/issues/{}", - ), - ] - - message = " ".join( - format_str.format(value) - for value, format_str in message_parts - if format_str is not None and value is not None - ) - - # Raise as an error if this behaviour is deprecated. - if is_gone: - raise PipDeprecationWarning(message) - - warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py deleted file mode 100644 index 0e8e5e1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py +++ /dev/null @@ -1,87 +0,0 @@ -from typing import Optional - -from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo -from pip._internal.models.link import Link -from pip._internal.utils.urls import path_to_url -from pip._internal.vcs import vcs - - -def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: - """Convert a DirectUrl to a pip requirement string.""" - direct_url.validate() # if invalid, this is a pip bug - requirement = name + " @ " - fragments = [] - if isinstance(direct_url.info, VcsInfo): - requirement += "{}+{}@{}".format( - direct_url.info.vcs, direct_url.url, direct_url.info.commit_id - ) - elif isinstance(direct_url.info, ArchiveInfo): - requirement += direct_url.url - if direct_url.info.hash: - fragments.append(direct_url.info.hash) - else: - assert isinstance(direct_url.info, DirInfo) - requirement += direct_url.url - if direct_url.subdirectory: - fragments.append("subdirectory=" + direct_url.subdirectory) - if fragments: - requirement += "#" + "&".join(fragments) - return requirement - - -def direct_url_for_editable(source_dir: str) -> DirectUrl: - return DirectUrl( - url=path_to_url(source_dir), - info=DirInfo(editable=True), - ) - - -def direct_url_from_link( - link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False -) -> DirectUrl: - if link.is_vcs: - vcs_backend = vcs.get_backend_for_scheme(link.scheme) - assert vcs_backend - url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( - link.url_without_fragment - ) - # For VCS links, we need to find out and add commit_id. - if link_is_in_wheel_cache: - # If the requested VCS link corresponds to a cached - # wheel, it means the requested revision was an - # immutable commit hash, otherwise it would not have - # been cached. In that case we don't have a source_dir - # with the VCS checkout. - assert requested_revision - commit_id = requested_revision - else: - # If the wheel was not in cache, it means we have - # had to checkout from VCS to build and we have a source_dir - # which we can inspect to find out the commit id. - assert source_dir - commit_id = vcs_backend.get_revision(source_dir) - return DirectUrl( - url=url, - info=VcsInfo( - vcs=vcs_backend.name, - commit_id=commit_id, - requested_revision=requested_revision, - ), - subdirectory=link.subdirectory_fragment, - ) - elif link.is_existing_dir(): - return DirectUrl( - url=link.url_without_fragment, - info=DirInfo(), - subdirectory=link.subdirectory_fragment, - ) - else: - hash = None - hash_name = link.hash_name - if hash_name: - hash = f"{hash_name}={link.hash}" - return DirectUrl( - url=link.url_without_fragment, - info=ArchiveInfo(hash=hash), - subdirectory=link.subdirectory_fragment, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py deleted file mode 100644 index 4a384a6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py +++ /dev/null @@ -1,80 +0,0 @@ -import os -import re -import sys -from typing import List, Optional - -from pip._internal.locations import site_packages, user_site -from pip._internal.utils.virtualenv import ( - running_under_virtualenv, - virtualenv_no_global, -) - -__all__ = [ - "egg_link_path_from_sys_path", - "egg_link_path_from_location", -] - - -def _egg_link_names(raw_name: str) -> List[str]: - """ - Convert a Name metadata value to a .egg-link name, by applying - the same substitution as pkg_resources's safe_name function. - Note: we cannot use canonicalize_name because it has a different logic. - - We also look for the raw name (without normalization) as setuptools 69 changed - the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). - """ - return [ - re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", - f"{raw_name}.egg-link", - ] - - -def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: - """ - Look for a .egg-link file for project name, by walking sys.path. - """ - egg_link_names = _egg_link_names(raw_name) - for path_item in sys.path: - for egg_link_name in egg_link_names: - egg_link = os.path.join(path_item, egg_link_name) - if os.path.isfile(egg_link): - return egg_link - return None - - -def egg_link_path_from_location(raw_name: str) -> Optional[str]: - """ - Return the path for the .egg-link file if it exists, otherwise, None. - - There's 3 scenarios: - 1) not in a virtualenv - try to find in site.USER_SITE, then site_packages - 2) in a no-global virtualenv - try to find in site_packages - 3) in a yes-global virtualenv - try to find in site_packages, then site.USER_SITE - (don't look in global location) - - For #1 and #3, there could be odd cases, where there's an egg-link in 2 - locations. - - This method will just return the first one found. - """ - sites: List[str] = [] - if running_under_virtualenv(): - sites.append(site_packages) - if not virtualenv_no_global() and user_site: - sites.append(user_site) - else: - if user_site: - sites.append(user_site) - sites.append(site_packages) - - egg_link_names = _egg_link_names(raw_name) - for site in sites: - for egg_link_name in egg_link_names: - egglink = os.path.join(site, egg_link_name) - if os.path.isfile(egglink): - return egglink - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py deleted file mode 100644 index 008f06a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py +++ /dev/null @@ -1,36 +0,0 @@ -import codecs -import locale -import re -import sys -from typing import List, Tuple - -BOMS: List[Tuple[bytes, str]] = [ - (codecs.BOM_UTF8, "utf-8"), - (codecs.BOM_UTF16, "utf-16"), - (codecs.BOM_UTF16_BE, "utf-16-be"), - (codecs.BOM_UTF16_LE, "utf-16-le"), - (codecs.BOM_UTF32, "utf-32"), - (codecs.BOM_UTF32_BE, "utf-32-be"), - (codecs.BOM_UTF32_LE, "utf-32-le"), -] - -ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") - - -def auto_decode(data: bytes) -> str: - """Check a bytes string for a BOM to correctly detect the encoding - - Fallback to locale.getpreferredencoding(False) like open() on Python3""" - for bom, encoding in BOMS: - if data.startswith(bom): - return data[len(bom) :].decode(encoding) - # Lets check the first two lines as in PEP263 - for line in data.split(b"\n")[:2]: - if line[0:1] == b"#" and ENCODING_RE.search(line): - result = ENCODING_RE.search(line) - assert result is not None - encoding = result.groups()[0].decode("ascii") - return data.decode(encoding) - return data.decode( - locale.getpreferredencoding(False) or sys.getdefaultencoding(), - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py deleted file mode 100644 index 1501369..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py +++ /dev/null @@ -1,84 +0,0 @@ -import itertools -import os -import shutil -import sys -from typing import List, Optional - -from pip._internal.cli.main import main -from pip._internal.utils.compat import WINDOWS - -_EXECUTABLE_NAMES = [ - "pip", - f"pip{sys.version_info.major}", - f"pip{sys.version_info.major}.{sys.version_info.minor}", -] -if WINDOWS: - _allowed_extensions = {"", ".exe"} - _EXECUTABLE_NAMES = [ - "".join(parts) - for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) - ] - - -def _wrapper(args: Optional[List[str]] = None) -> int: - """Central wrapper for all old entrypoints. - - Historically pip has had several entrypoints defined. Because of issues - arising from PATH, sys.path, multiple Pythons, their interactions, and most - of them having a pip installed, users suffer every time an entrypoint gets - moved. - - To alleviate this pain, and provide a mechanism for warning users and - directing them to an appropriate place for help, we now define all of - our old entrypoints as wrappers for the current one. - """ - sys.stderr.write( - "WARNING: pip is being invoked by an old script wrapper. This will " - "fail in a future version of pip.\n" - "Please see https://github.com/pypa/pip/issues/5599 for advice on " - "fixing the underlying issue.\n" - "To avoid this problem you can invoke Python with '-m pip' instead of " - "running pip directly.\n" - ) - return main(args) - - -def get_best_invocation_for_this_pip() -> str: - """Try to figure out the best way to invoke pip in the current environment.""" - binary_directory = "Scripts" if WINDOWS else "bin" - binary_prefix = os.path.join(sys.prefix, binary_directory) - - # Try to use pip[X[.Y]] names, if those executables for this environment are - # the first on PATH with that name. - path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) - exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts - if exe_are_in_PATH: - for exe_name in _EXECUTABLE_NAMES: - found_executable = shutil.which(exe_name) - binary_executable = os.path.join(binary_prefix, exe_name) - if ( - found_executable - and os.path.exists(binary_executable) - and os.path.samefile( - found_executable, - binary_executable, - ) - ): - return exe_name - - # Use the `-m` invocation, if there's no "nice" invocation. - return f"{get_best_invocation_for_this_python()} -m pip" - - -def get_best_invocation_for_this_python() -> str: - """Try to figure out the best way to invoke the current Python.""" - exe = sys.executable - exe_name = os.path.basename(exe) - - # Try to use the basename, if it's the first executable. - found_executable = shutil.which(exe_name) - if found_executable and os.path.samefile(found_executable, exe): - return exe_name - - # Use the full executable name, because we couldn't find something simpler. - return exe diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py deleted file mode 100644 index 83c2df7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py +++ /dev/null @@ -1,153 +0,0 @@ -import fnmatch -import os -import os.path -import random -import sys -from contextlib import contextmanager -from tempfile import NamedTemporaryFile -from typing import Any, BinaryIO, Generator, List, Union, cast - -from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed - -from pip._internal.utils.compat import get_path_uid -from pip._internal.utils.misc import format_size - - -def check_path_owner(path: str) -> bool: - # If we don't have a way to check the effective uid of this process, then - # we'll just assume that we own the directory. - if sys.platform == "win32" or not hasattr(os, "geteuid"): - return True - - assert os.path.isabs(path) - - previous = None - while path != previous: - if os.path.lexists(path): - # Check if path is writable by current user. - if os.geteuid() == 0: - # Special handling for root user in order to handle properly - # cases where users use sudo without -H flag. - try: - path_uid = get_path_uid(path) - except OSError: - return False - return path_uid == 0 - else: - return os.access(path, os.W_OK) - else: - previous, path = path, os.path.dirname(path) - return False # assume we don't own the path - - -@contextmanager -def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: - """Return a file-like object pointing to a tmp file next to path. - - The file is created securely and is ensured to be written to disk - after the context reaches its end. - - kwargs will be passed to tempfile.NamedTemporaryFile to control - the way the temporary file will be opened. - """ - with NamedTemporaryFile( - delete=False, - dir=os.path.dirname(path), - prefix=os.path.basename(path), - suffix=".tmp", - **kwargs, - ) as f: - result = cast(BinaryIO, f) - try: - yield result - finally: - result.flush() - os.fsync(result.fileno()) - - -# Tenacity raises RetryError by default, explicitly raise the original exception -_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) - -replace = _replace_retry(os.replace) - - -# test_writable_dir and _test_writable_dir_win are copied from Flit, -# with the author's agreement to also place them under pip's license. -def test_writable_dir(path: str) -> bool: - """Check if a directory is writable. - - Uses os.access() on POSIX, tries creating files on Windows. - """ - # If the directory doesn't exist, find the closest parent that does. - while not os.path.isdir(path): - parent = os.path.dirname(path) - if parent == path: - break # Should never get here, but infinite loops are bad - path = parent - - if os.name == "posix": - return os.access(path, os.W_OK) - - return _test_writable_dir_win(path) - - -def _test_writable_dir_win(path: str) -> bool: - # os.access doesn't work on Windows: http://bugs.python.org/issue2528 - # and we can't use tempfile: http://bugs.python.org/issue22107 - basename = "accesstest_deleteme_fishfingers_custard_" - alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" - for _ in range(10): - name = basename + "".join(random.choice(alphabet) for _ in range(6)) - file = os.path.join(path, name) - try: - fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) - except FileExistsError: - pass - except PermissionError: - # This could be because there's a directory with the same name. - # But it's highly unlikely there's a directory called that, - # so we'll assume it's because the parent dir is not writable. - # This could as well be because the parent dir is not readable, - # due to non-privileged user access. - return False - else: - os.close(fd) - os.unlink(file) - return True - - # This should never be reached - raise OSError("Unexpected condition testing for writable directory") - - -def find_files(path: str, pattern: str) -> List[str]: - """Returns a list of absolute paths of files beneath path, recursively, - with filenames which match the UNIX-style shell glob pattern.""" - result: List[str] = [] - for root, _, files in os.walk(path): - matches = fnmatch.filter(files, pattern) - result.extend(os.path.join(root, f) for f in matches) - return result - - -def file_size(path: str) -> Union[int, float]: - # If it's a symlink, return 0. - if os.path.islink(path): - return 0 - return os.path.getsize(path) - - -def format_file_size(path: str) -> str: - return format_size(file_size(path)) - - -def directory_size(path: str) -> Union[int, float]: - size = 0.0 - for root, _dirs, files in os.walk(path): - for filename in files: - file_path = os.path.join(root, filename) - size += file_size(file_path) - return size - - -def format_directory_size(path: str) -> str: - return format_size(directory_size(path)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py deleted file mode 100644 index 5948570..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py +++ /dev/null @@ -1,27 +0,0 @@ -"""Filetype information. -""" - -from typing import Tuple - -from pip._internal.utils.misc import splitext - -WHEEL_EXTENSION = ".whl" -BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") -XZ_EXTENSIONS: Tuple[str, ...] = ( - ".tar.xz", - ".txz", - ".tlz", - ".tar.lz", - ".tar.lzma", -) -ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) -TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") -ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS - - -def is_archive_file(name: str) -> bool: - """Return True if `name` is a considered as an archive file.""" - ext = splitext(name)[1].lower() - if ext in ARCHIVE_EXTENSIONS: - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py deleted file mode 100644 index 81342af..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py +++ /dev/null @@ -1,88 +0,0 @@ -import os -import sys -from typing import Optional, Tuple - - -def glibc_version_string() -> Optional[str]: - "Returns glibc version string, or None if not using glibc." - return glibc_version_string_confstr() or glibc_version_string_ctypes() - - -def glibc_version_string_confstr() -> Optional[str]: - "Primary implementation of glibc_version_string using os.confstr." - # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely - # to be broken or missing. This strategy is used in the standard library - # platform module: - # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 - if sys.platform == "win32": - return None - try: - gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") - if gnu_libc_version is None: - return None - # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": - _, version = gnu_libc_version.split() - except (AttributeError, OSError, ValueError): - # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... - return None - return version - - -def glibc_version_string_ctypes() -> Optional[str]: - "Fallback implementation of glibc_version_string using ctypes." - - try: - import ctypes - except ImportError: - return None - - # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen - # manpage says, "If filename is NULL, then the returned handle is for the - # main program". This way we can let the linker do the work to figure out - # which libc our process is actually using. - process_namespace = ctypes.CDLL(None) - try: - gnu_get_libc_version = process_namespace.gnu_get_libc_version - except AttributeError: - # Symbol doesn't exist -> therefore, we are not linked to - # glibc. - return None - - # Call gnu_get_libc_version, which returns a string like "2.5" - gnu_get_libc_version.restype = ctypes.c_char_p - version_str = gnu_get_libc_version() - # py2 / py3 compatibility: - if not isinstance(version_str, str): - version_str = version_str.decode("ascii") - - return version_str - - -# platform.libc_ver regularly returns completely nonsensical glibc -# versions. E.g. on my computer, platform says: -# -# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' -# ('glibc', '2.7') -# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' -# ('glibc', '2.9') -# -# But the truth is: -# -# ~$ ldd --version -# ldd (Debian GLIBC 2.22-11) 2.22 -# -# This is unfortunate, because it means that the linehaul data on libc -# versions that was generated by pip 8.1.2 and earlier is useless and -# misleading. Solution: instead of using platform, use our code that actually -# works. -def libc_ver() -> Tuple[str, str]: - """Try to determine the glibc version - - Returns a tuple of strings (lib, version) which default to empty strings - in case the lookup fails. - """ - glibc_version = glibc_version_string() - if glibc_version is None: - return ("", "") - else: - return ("glibc", glibc_version) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py deleted file mode 100644 index 843cffc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py +++ /dev/null @@ -1,151 +0,0 @@ -import hashlib -from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional - -from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError -from pip._internal.utils.misc import read_chunks - -if TYPE_CHECKING: - from hashlib import _Hash - - # NoReturn introduced in 3.6.2; imported only for type checking to maintain - # pip compatibility with older patch versions of Python 3.6 - from typing import NoReturn - - -# The recommended hash algo of the moment. Change this whenever the state of -# the art changes; it won't hurt backward compatibility. -FAVORITE_HASH = "sha256" - - -# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` -# Currently, those are the ones at least as collision-resistant as sha256. -STRONG_HASHES = ["sha256", "sha384", "sha512"] - - -class Hashes: - """A wrapper that builds multiple hashes at once and checks them against - known-good values - - """ - - def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: - """ - :param hashes: A dict of algorithm names pointing to lists of allowed - hex digests - """ - allowed = {} - if hashes is not None: - for alg, keys in hashes.items(): - # Make sure values are always sorted (to ease equality checks) - allowed[alg] = sorted(keys) - self._allowed = allowed - - def __and__(self, other: "Hashes") -> "Hashes": - if not isinstance(other, Hashes): - return NotImplemented - - # If either of the Hashes object is entirely empty (i.e. no hash - # specified at all), all hashes from the other object are allowed. - if not other: - return self - if not self: - return other - - # Otherwise only hashes that present in both objects are allowed. - new = {} - for alg, values in other._allowed.items(): - if alg not in self._allowed: - continue - new[alg] = [v for v in values if v in self._allowed[alg]] - return Hashes(new) - - @property - def digest_count(self) -> int: - return sum(len(digests) for digests in self._allowed.values()) - - def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: - """Return whether the given hex digest is allowed.""" - return hex_digest in self._allowed.get(hash_name, []) - - def check_against_chunks(self, chunks: Iterable[bytes]) -> None: - """Check good hashes against ones built from iterable of chunks of - data. - - Raise HashMismatch if none match. - - """ - gots = {} - for hash_name in self._allowed.keys(): - try: - gots[hash_name] = hashlib.new(hash_name) - except (ValueError, TypeError): - raise InstallationError(f"Unknown hash name: {hash_name}") - - for chunk in chunks: - for hash in gots.values(): - hash.update(chunk) - - for hash_name, got in gots.items(): - if got.hexdigest() in self._allowed[hash_name]: - return - self._raise(gots) - - def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": - raise HashMismatch(self._allowed, gots) - - def check_against_file(self, file: BinaryIO) -> None: - """Check good hashes against a file-like object - - Raise HashMismatch if none match. - - """ - return self.check_against_chunks(read_chunks(file)) - - def check_against_path(self, path: str) -> None: - with open(path, "rb") as file: - return self.check_against_file(file) - - def has_one_of(self, hashes: Dict[str, str]) -> bool: - """Return whether any of the given hashes are allowed.""" - for hash_name, hex_digest in hashes.items(): - if self.is_hash_allowed(hash_name, hex_digest): - return True - return False - - def __bool__(self) -> bool: - """Return whether I know any known-good hashes.""" - return bool(self._allowed) - - def __eq__(self, other: object) -> bool: - if not isinstance(other, Hashes): - return NotImplemented - return self._allowed == other._allowed - - def __hash__(self) -> int: - return hash( - ",".join( - sorted( - ":".join((alg, digest)) - for alg, digest_list in self._allowed.items() - for digest in digest_list - ) - ) - ) - - -class MissingHashes(Hashes): - """A workalike for Hashes used when we're missing a hash for a requirement - - It computes the actual hash of the requirement and raises a HashMissing - exception showing it to the user. - - """ - - def __init__(self) -> None: - """Don't offer the ``hashes`` kwarg.""" - # Pass our favorite hash in to generate a "gotten hash". With the - # empty list, it will never match, so an error will always raise. - super().__init__(hashes={FAVORITE_HASH: []}) - - def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": - raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py deleted file mode 100644 index 95982df..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py +++ /dev/null @@ -1,348 +0,0 @@ -import contextlib -import errno -import logging -import logging.handlers -import os -import sys -import threading -from dataclasses import dataclass -from io import TextIOWrapper -from logging import Filter -from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type - -from pip._vendor.rich.console import ( - Console, - ConsoleOptions, - ConsoleRenderable, - RenderableType, - RenderResult, - RichCast, -) -from pip._vendor.rich.highlighter import NullHighlighter -from pip._vendor.rich.logging import RichHandler -from pip._vendor.rich.segment import Segment -from pip._vendor.rich.style import Style - -from pip._internal.utils._log import VERBOSE, getLogger -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX -from pip._internal.utils.misc import ensure_dir - -_log_state = threading.local() -subprocess_logger = getLogger("pip.subprocessor") - - -class BrokenStdoutLoggingError(Exception): - """ - Raised if BrokenPipeError occurs for the stdout stream while logging. - """ - - -def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: - if exc_class is BrokenPipeError: - return True - - # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: - # https://bugs.python.org/issue19612 - # https://bugs.python.org/issue30418 - if not WINDOWS: - return False - - return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) - - -@contextlib.contextmanager -def indent_log(num: int = 2) -> Generator[None, None, None]: - """ - A context manager which will cause the log output to be indented for any - log messages emitted inside it. - """ - # For thread-safety - _log_state.indentation = get_indentation() - _log_state.indentation += num - try: - yield - finally: - _log_state.indentation -= num - - -def get_indentation() -> int: - return getattr(_log_state, "indentation", 0) - - -class IndentingFormatter(logging.Formatter): - default_time_format = "%Y-%m-%dT%H:%M:%S" - - def __init__( - self, - *args: Any, - add_timestamp: bool = False, - **kwargs: Any, - ) -> None: - """ - A logging.Formatter that obeys the indent_log() context manager. - - :param add_timestamp: A bool indicating output lines should be prefixed - with their record's timestamp. - """ - self.add_timestamp = add_timestamp - super().__init__(*args, **kwargs) - - def get_message_start(self, formatted: str, levelno: int) -> str: - """ - Return the start of the formatted log message (not counting the - prefix to add to each line). - """ - if levelno < logging.WARNING: - return "" - if formatted.startswith(DEPRECATION_MSG_PREFIX): - # Then the message already has a prefix. We don't want it to - # look like "WARNING: DEPRECATION: ...." - return "" - if levelno < logging.ERROR: - return "WARNING: " - - return "ERROR: " - - def format(self, record: logging.LogRecord) -> str: - """ - Calls the standard formatter, but will indent all of the log message - lines by our current indentation level. - """ - formatted = super().format(record) - message_start = self.get_message_start(formatted, record.levelno) - formatted = message_start + formatted - - prefix = "" - if self.add_timestamp: - prefix = f"{self.formatTime(record)} " - prefix += " " * get_indentation() - formatted = "".join([prefix + line for line in formatted.splitlines(True)]) - return formatted - - -@dataclass -class IndentedRenderable: - renderable: RenderableType - indent: int - - def __rich_console__( - self, console: Console, options: ConsoleOptions - ) -> RenderResult: - segments = console.render(self.renderable, options) - lines = Segment.split_lines(segments) - for line in lines: - yield Segment(" " * self.indent) - yield from line - yield Segment("\n") - - -class RichPipStreamHandler(RichHandler): - KEYWORDS: ClassVar[Optional[List[str]]] = [] - - def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: - super().__init__( - console=Console(file=stream, no_color=no_color, soft_wrap=True), - show_time=False, - show_level=False, - show_path=False, - highlighter=NullHighlighter(), - ) - - # Our custom override on Rich's logger, to make things work as we need them to. - def emit(self, record: logging.LogRecord) -> None: - style: Optional[Style] = None - - # If we are given a diagnostic error to present, present it with indentation. - assert isinstance(record.args, tuple) - if getattr(record, "rich", False): - (rich_renderable,) = record.args - assert isinstance( - rich_renderable, (ConsoleRenderable, RichCast, str) - ), f"{rich_renderable} is not rich-console-renderable" - - renderable: RenderableType = IndentedRenderable( - rich_renderable, indent=get_indentation() - ) - else: - message = self.format(record) - renderable = self.render_message(record, message) - if record.levelno is not None: - if record.levelno >= logging.ERROR: - style = Style(color="red") - elif record.levelno >= logging.WARNING: - style = Style(color="yellow") - - try: - self.console.print(renderable, overflow="ignore", crop=False, style=style) - except Exception: - self.handleError(record) - - def handleError(self, record: logging.LogRecord) -> None: - """Called when logging is unable to log some output.""" - - exc_class, exc = sys.exc_info()[:2] - # If a broken pipe occurred while calling write() or flush() on the - # stdout stream in logging's Handler.emit(), then raise our special - # exception so we can handle it in main() instead of logging the - # broken pipe error and continuing. - if ( - exc_class - and exc - and self.console.file is sys.stdout - and _is_broken_pipe_error(exc_class, exc) - ): - raise BrokenStdoutLoggingError() - - return super().handleError(record) - - -class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): - def _open(self) -> TextIOWrapper: - ensure_dir(os.path.dirname(self.baseFilename)) - return super()._open() - - -class MaxLevelFilter(Filter): - def __init__(self, level: int) -> None: - self.level = level - - def filter(self, record: logging.LogRecord) -> bool: - return record.levelno < self.level - - -class ExcludeLoggerFilter(Filter): - - """ - A logging Filter that excludes records from a logger (or its children). - """ - - def filter(self, record: logging.LogRecord) -> bool: - # The base Filter class allows only records from a logger (or its - # children). - return not super().filter(record) - - -def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: - """Configures and sets up all of the logging - - Returns the requested logging level, as its integer value. - """ - - # Determine the level to be logging at. - if verbosity >= 2: - level_number = logging.DEBUG - elif verbosity == 1: - level_number = VERBOSE - elif verbosity == -1: - level_number = logging.WARNING - elif verbosity == -2: - level_number = logging.ERROR - elif verbosity <= -3: - level_number = logging.CRITICAL - else: - level_number = logging.INFO - - level = logging.getLevelName(level_number) - - # The "root" logger should match the "console" level *unless* we also need - # to log to a user log file. - include_user_log = user_log_file is not None - if include_user_log: - additional_log_file = user_log_file - root_level = "DEBUG" - else: - additional_log_file = "/dev/null" - root_level = level - - # Disable any logging besides WARNING unless we have DEBUG level logging - # enabled for vendored libraries. - vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" - - # Shorthands for clarity - log_streams = { - "stdout": "ext://sys.stdout", - "stderr": "ext://sys.stderr", - } - handler_classes = { - "stream": "pip._internal.utils.logging.RichPipStreamHandler", - "file": "pip._internal.utils.logging.BetterRotatingFileHandler", - } - handlers = ["console", "console_errors", "console_subprocess"] + ( - ["user_log"] if include_user_log else [] - ) - - logging.config.dictConfig( - { - "version": 1, - "disable_existing_loggers": False, - "filters": { - "exclude_warnings": { - "()": "pip._internal.utils.logging.MaxLevelFilter", - "level": logging.WARNING, - }, - "restrict_to_subprocess": { - "()": "logging.Filter", - "name": subprocess_logger.name, - }, - "exclude_subprocess": { - "()": "pip._internal.utils.logging.ExcludeLoggerFilter", - "name": subprocess_logger.name, - }, - }, - "formatters": { - "indent": { - "()": IndentingFormatter, - "format": "%(message)s", - }, - "indent_with_timestamp": { - "()": IndentingFormatter, - "format": "%(message)s", - "add_timestamp": True, - }, - }, - "handlers": { - "console": { - "level": level, - "class": handler_classes["stream"], - "no_color": no_color, - "stream": log_streams["stdout"], - "filters": ["exclude_subprocess", "exclude_warnings"], - "formatter": "indent", - }, - "console_errors": { - "level": "WARNING", - "class": handler_classes["stream"], - "no_color": no_color, - "stream": log_streams["stderr"], - "filters": ["exclude_subprocess"], - "formatter": "indent", - }, - # A handler responsible for logging to the console messages - # from the "subprocessor" logger. - "console_subprocess": { - "level": level, - "class": handler_classes["stream"], - "stream": log_streams["stderr"], - "no_color": no_color, - "filters": ["restrict_to_subprocess"], - "formatter": "indent", - }, - "user_log": { - "level": "DEBUG", - "class": handler_classes["file"], - "filename": additional_log_file, - "encoding": "utf-8", - "delay": True, - "formatter": "indent_with_timestamp", - }, - }, - "root": { - "level": root_level, - "handlers": handlers, - }, - "loggers": {"pip._vendor": {"level": vendored_log_level}}, - } - ) - - return level_number diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py deleted file mode 100644 index 1ad3f61..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py +++ /dev/null @@ -1,783 +0,0 @@ -import contextlib -import errno -import getpass -import hashlib -import io -import logging -import os -import posixpath -import shutil -import stat -import sys -import sysconfig -import urllib.parse -from functools import partial -from io import StringIO -from itertools import filterfalse, tee, zip_longest -from pathlib import Path -from types import FunctionType, TracebackType -from typing import ( - Any, - BinaryIO, - Callable, - ContextManager, - Dict, - Generator, - Iterable, - Iterator, - List, - Optional, - TextIO, - Tuple, - Type, - TypeVar, - Union, - cast, -) - -from pip._vendor.packaging.requirements import Requirement -from pip._vendor.pyproject_hooks import BuildBackendHookCaller -from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed - -from pip import __version__ -from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment -from pip._internal.locations import get_major_minor_version -from pip._internal.utils.compat import WINDOWS -from pip._internal.utils.virtualenv import running_under_virtualenv - -__all__ = [ - "rmtree", - "display_path", - "backup_dir", - "ask", - "splitext", - "format_size", - "is_installable_dir", - "normalize_path", - "renames", - "get_prog", - "captured_stdout", - "ensure_dir", - "remove_auth_from_url", - "check_externally_managed", - "ConfiguredBuildBackendHookCaller", -] - -logger = logging.getLogger(__name__) - -T = TypeVar("T") -ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] -VersionInfo = Tuple[int, int, int] -NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] -OnExc = Callable[[FunctionType, Path, BaseException], Any] -OnErr = Callable[[FunctionType, Path, ExcInfo], Any] - - -def get_pip_version() -> str: - pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") - pip_pkg_dir = os.path.abspath(pip_pkg_dir) - - return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" - - -def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: - """ - Convert a tuple of ints representing a Python version to one of length - three. - - :param py_version_info: a tuple of ints representing a Python version, - or None to specify no version. The tuple can have any length. - - :return: a tuple of length three if `py_version_info` is non-None. - Otherwise, return `py_version_info` unchanged (i.e. None). - """ - if len(py_version_info) < 3: - py_version_info += (3 - len(py_version_info)) * (0,) - elif len(py_version_info) > 3: - py_version_info = py_version_info[:3] - - return cast("VersionInfo", py_version_info) - - -def ensure_dir(path: str) -> None: - """os.path.makedirs without EEXIST.""" - try: - os.makedirs(path) - except OSError as e: - # Windows can raise spurious ENOTEMPTY errors. See #6426. - if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: - raise - - -def get_prog() -> str: - try: - prog = os.path.basename(sys.argv[0]) - if prog in ("__main__.py", "-c"): - return f"{sys.executable} -m pip" - else: - return prog - except (AttributeError, TypeError, IndexError): - pass - return "pip" - - -# Retry every half second for up to 3 seconds -# Tenacity raises RetryError by default, explicitly raise the original exception -@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) -def rmtree( - dir: str, - ignore_errors: bool = False, - onexc: Optional[OnExc] = None, -) -> None: - if ignore_errors: - onexc = _onerror_ignore - if onexc is None: - onexc = _onerror_reraise - handler: OnErr = partial( - # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to - # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. - cast(Union[OnExc, OnErr], rmtree_errorhandler), - onexc=onexc, - ) - if sys.version_info >= (3, 12): - # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. - shutil.rmtree(dir, onexc=handler) # type: ignore - else: - shutil.rmtree(dir, onerror=handler) # type: ignore - - -def _onerror_ignore(*_args: Any) -> None: - pass - - -def _onerror_reraise(*_args: Any) -> None: - raise - - -def rmtree_errorhandler( - func: FunctionType, - path: Path, - exc_info: Union[ExcInfo, BaseException], - *, - onexc: OnExc = _onerror_reraise, -) -> None: - """ - `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). - - * If a file is readonly then it's write flag is set and operation is - retried. - - * `onerror` is the original callback from `rmtree(... onerror=onerror)` - that is chained at the end if the "rm -f" still fails. - """ - try: - st_mode = os.stat(path).st_mode - except OSError: - # it's equivalent to os.path.exists - return - - if not st_mode & stat.S_IWRITE: - # convert to read/write - try: - os.chmod(path, st_mode | stat.S_IWRITE) - except OSError: - pass - else: - # use the original function to repeat the operation - try: - func(path) - return - except OSError: - pass - - if not isinstance(exc_info, BaseException): - _, exc_info, _ = exc_info - onexc(func, path, exc_info) - - -def display_path(path: str) -> str: - """Gives the display value for a given path, making it relative to cwd - if possible.""" - path = os.path.normcase(os.path.abspath(path)) - if path.startswith(os.getcwd() + os.path.sep): - path = "." + path[len(os.getcwd()) :] - return path - - -def backup_dir(dir: str, ext: str = ".bak") -> str: - """Figure out the name of a directory to back up the given dir to - (adding .bak, .bak2, etc)""" - n = 1 - extension = ext - while os.path.exists(dir + extension): - n += 1 - extension = ext + str(n) - return dir + extension - - -def ask_path_exists(message: str, options: Iterable[str]) -> str: - for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): - if action in options: - return action - return ask(message, options) - - -def _check_no_input(message: str) -> None: - """Raise an error if no input is allowed.""" - if os.environ.get("PIP_NO_INPUT"): - raise Exception( - f"No input was expected ($PIP_NO_INPUT set); question: {message}" - ) - - -def ask(message: str, options: Iterable[str]) -> str: - """Ask the message interactively, with the given possible responses""" - while 1: - _check_no_input(message) - response = input(message) - response = response.strip().lower() - if response not in options: - print( - "Your response ({!r}) was not one of the expected responses: " - "{}".format(response, ", ".join(options)) - ) - else: - return response - - -def ask_input(message: str) -> str: - """Ask for input interactively.""" - _check_no_input(message) - return input(message) - - -def ask_password(message: str) -> str: - """Ask for a password interactively.""" - _check_no_input(message) - return getpass.getpass(message) - - -def strtobool(val: str) -> int: - """Convert a string representation of truth to true (1) or false (0). - - True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values - are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if - 'val' is anything else. - """ - val = val.lower() - if val in ("y", "yes", "t", "true", "on", "1"): - return 1 - elif val in ("n", "no", "f", "false", "off", "0"): - return 0 - else: - raise ValueError(f"invalid truth value {val!r}") - - -def format_size(bytes: float) -> str: - if bytes > 1000 * 1000: - return f"{bytes / 1000.0 / 1000:.1f} MB" - elif bytes > 10 * 1000: - return f"{int(bytes / 1000)} kB" - elif bytes > 1000: - return f"{bytes / 1000.0:.1f} kB" - else: - return f"{int(bytes)} bytes" - - -def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: - """Return a list of formatted rows and a list of column sizes. - - For example:: - - >>> tabulate([['foobar', 2000], [0xdeadbeef]]) - (['foobar 2000', '3735928559'], [10, 4]) - """ - rows = [tuple(map(str, row)) for row in rows] - sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] - table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] - return table, sizes - - -def is_installable_dir(path: str) -> bool: - """Is path is a directory containing pyproject.toml or setup.py? - - If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for - a legacy setuptools layout by identifying setup.py. We don't check for the - setup.cfg because using it without setup.py is only available for PEP 517 - projects, which are already covered by the pyproject.toml check. - """ - if not os.path.isdir(path): - return False - if os.path.isfile(os.path.join(path, "pyproject.toml")): - return True - if os.path.isfile(os.path.join(path, "setup.py")): - return True - return False - - -def read_chunks( - file: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE -) -> Generator[bytes, None, None]: - """Yield pieces of data from a file-like object until EOF.""" - while True: - chunk = file.read(size) - if not chunk: - break - yield chunk - - -def normalize_path(path: str, resolve_symlinks: bool = True) -> str: - """ - Convert a path to its canonical, case-normalized, absolute version. - - """ - path = os.path.expanduser(path) - if resolve_symlinks: - path = os.path.realpath(path) - else: - path = os.path.abspath(path) - return os.path.normcase(path) - - -def splitext(path: str) -> Tuple[str, str]: - """Like os.path.splitext, but take off .tar too""" - base, ext = posixpath.splitext(path) - if base.lower().endswith(".tar"): - ext = base[-4:] + ext - base = base[:-4] - return base, ext - - -def renames(old: str, new: str) -> None: - """Like os.renames(), but handles renaming across devices.""" - # Implementation borrowed from os.renames(). - head, tail = os.path.split(new) - if head and tail and not os.path.exists(head): - os.makedirs(head) - - shutil.move(old, new) - - head, tail = os.path.split(old) - if head and tail: - try: - os.removedirs(head) - except OSError: - pass - - -def is_local(path: str) -> bool: - """ - Return True if path is within sys.prefix, if we're running in a virtualenv. - - If we're not in a virtualenv, all paths are considered "local." - - Caution: this function assumes the head of path has been normalized - with normalize_path. - """ - if not running_under_virtualenv(): - return True - return path.startswith(normalize_path(sys.prefix)) - - -def write_output(msg: Any, *args: Any) -> None: - logger.info(msg, *args) - - -class StreamWrapper(StringIO): - orig_stream: TextIO - - @classmethod - def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": - ret = cls() - ret.orig_stream = orig_stream - return ret - - # compileall.compile_dir() needs stdout.encoding to print to stdout - # type ignore is because TextIOBase.encoding is writeable - @property - def encoding(self) -> str: # type: ignore - return self.orig_stream.encoding - - -@contextlib.contextmanager -def captured_output(stream_name: str) -> Generator[StreamWrapper, None, None]: - """Return a context manager used by captured_stdout/stdin/stderr - that temporarily replaces the sys stream *stream_name* with a StringIO. - - Taken from Lib/support/__init__.py in the CPython repo. - """ - orig_stdout = getattr(sys, stream_name) - setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) - try: - yield getattr(sys, stream_name) - finally: - setattr(sys, stream_name, orig_stdout) - - -def captured_stdout() -> ContextManager[StreamWrapper]: - """Capture the output of sys.stdout: - - with captured_stdout() as stdout: - print('hello') - self.assertEqual(stdout.getvalue(), 'hello\n') - - Taken from Lib/support/__init__.py in the CPython repo. - """ - return captured_output("stdout") - - -def captured_stderr() -> ContextManager[StreamWrapper]: - """ - See captured_stdout(). - """ - return captured_output("stderr") - - -# Simulates an enum -def enum(*sequential: Any, **named: Any) -> Type[Any]: - enums = dict(zip(sequential, range(len(sequential))), **named) - reverse = {value: key for key, value in enums.items()} - enums["reverse_mapping"] = reverse - return type("Enum", (), enums) - - -def build_netloc(host: str, port: Optional[int]) -> str: - """ - Build a netloc from a host-port pair - """ - if port is None: - return host - if ":" in host: - # Only wrap host with square brackets when it is IPv6 - host = f"[{host}]" - return f"{host}:{port}" - - -def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: - """ - Build a full URL from a netloc. - """ - if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: - # It must be a bare IPv6 address, so wrap it with brackets. - netloc = f"[{netloc}]" - return f"{scheme}://{netloc}" - - -def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: - """ - Return the host-port pair from a netloc. - """ - url = build_url_from_netloc(netloc) - parsed = urllib.parse.urlparse(url) - return parsed.hostname, parsed.port - - -def split_auth_from_netloc(netloc: str) -> NetlocTuple: - """ - Parse out and remove the auth information from a netloc. - - Returns: (netloc, (username, password)). - """ - if "@" not in netloc: - return netloc, (None, None) - - # Split from the right because that's how urllib.parse.urlsplit() - # behaves if more than one @ is present (which can be checked using - # the password attribute of urlsplit()'s return value). - auth, netloc = netloc.rsplit("@", 1) - pw: Optional[str] = None - if ":" in auth: - # Split from the left because that's how urllib.parse.urlsplit() - # behaves if more than one : is present (which again can be checked - # using the password attribute of the return value) - user, pw = auth.split(":", 1) - else: - user, pw = auth, None - - user = urllib.parse.unquote(user) - if pw is not None: - pw = urllib.parse.unquote(pw) - - return netloc, (user, pw) - - -def redact_netloc(netloc: str) -> str: - """ - Replace the sensitive data in a netloc with "****", if it exists. - - For example: - - "user:pass@example.com" returns "user:****@example.com" - - "accesstoken@example.com" returns "****@example.com" - """ - netloc, (user, password) = split_auth_from_netloc(netloc) - if user is None: - return netloc - if password is None: - user = "****" - password = "" - else: - user = urllib.parse.quote(user) - password = ":****" - return f"{user}{password}@{netloc}" - - -def _transform_url( - url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] -) -> Tuple[str, NetlocTuple]: - """Transform and replace netloc in a url. - - transform_netloc is a function taking the netloc and returning a - tuple. The first element of this tuple is the new netloc. The - entire tuple is returned. - - Returns a tuple containing the transformed url as item 0 and the - original tuple returned by transform_netloc as item 1. - """ - purl = urllib.parse.urlsplit(url) - netloc_tuple = transform_netloc(purl.netloc) - # stripped url - url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) - surl = urllib.parse.urlunsplit(url_pieces) - return surl, cast("NetlocTuple", netloc_tuple) - - -def _get_netloc(netloc: str) -> NetlocTuple: - return split_auth_from_netloc(netloc) - - -def _redact_netloc(netloc: str) -> Tuple[str]: - return (redact_netloc(netloc),) - - -def split_auth_netloc_from_url( - url: str, -) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: - """ - Parse a url into separate netloc, auth, and url with no auth. - - Returns: (url_without_auth, netloc, (username, password)) - """ - url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) - return url_without_auth, netloc, auth - - -def remove_auth_from_url(url: str) -> str: - """Return a copy of url with 'username:password@' removed.""" - # username/pass params are passed to subversion through flags - # and are not recognized in the url. - return _transform_url(url, _get_netloc)[0] - - -def redact_auth_from_url(url: str) -> str: - """Replace the password in a given url with ****.""" - return _transform_url(url, _redact_netloc)[0] - - -def redact_auth_from_requirement(req: Requirement) -> str: - """Replace the password in a given requirement url with ****.""" - if not req.url: - return str(req) - return str(req).replace(req.url, redact_auth_from_url(req.url)) - - -class HiddenText: - def __init__(self, secret: str, redacted: str) -> None: - self.secret = secret - self.redacted = redacted - - def __repr__(self) -> str: - return f"" - - def __str__(self) -> str: - return self.redacted - - # This is useful for testing. - def __eq__(self, other: Any) -> bool: - if type(self) != type(other): - return False - - # The string being used for redaction doesn't also have to match, - # just the raw, original string. - return self.secret == other.secret - - -def hide_value(value: str) -> HiddenText: - return HiddenText(value, redacted="****") - - -def hide_url(url: str) -> HiddenText: - redacted = redact_auth_from_url(url) - return HiddenText(url, redacted=redacted) - - -def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: - """Protection of pip.exe from modification on Windows - - On Windows, any operation modifying pip should be run as: - python -m pip ... - """ - pip_names = [ - "pip", - f"pip{sys.version_info.major}", - f"pip{sys.version_info.major}.{sys.version_info.minor}", - ] - - # See https://github.com/pypa/pip/issues/1299 for more discussion - should_show_use_python_msg = ( - modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names - ) - - if should_show_use_python_msg: - new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] - raise CommandError( - "To modify pip, please run the following command:\n{}".format( - " ".join(new_command) - ) - ) - - -def check_externally_managed() -> None: - """Check whether the current environment is externally managed. - - If the ``EXTERNALLY-MANAGED`` config file is found, the current environment - is considered externally managed, and an ExternallyManagedEnvironment is - raised. - """ - if running_under_virtualenv(): - return - marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") - if not os.path.isfile(marker): - return - raise ExternallyManagedEnvironment.from_config(marker) - - -def is_console_interactive() -> bool: - """Is this console interactive?""" - return sys.stdin is not None and sys.stdin.isatty() - - -def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: - """Return (hash, length) for path using hashlib.sha256()""" - - h = hashlib.sha256() - length = 0 - with open(path, "rb") as f: - for block in read_chunks(f, size=blocksize): - length += len(block) - h.update(block) - return h, length - - -def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: - """ - Return paired elements. - - For example: - s -> (s0, s1), (s2, s3), (s4, s5), ... - """ - iterable = iter(iterable) - return zip_longest(iterable, iterable) - - -def partition( - pred: Callable[[T], bool], - iterable: Iterable[T], -) -> Tuple[Iterable[T], Iterable[T]]: - """ - Use a predicate to partition entries into false entries and true entries, - like - - partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 - """ - t1, t2 = tee(iterable) - return filterfalse(pred, t1), filter(pred, t2) - - -class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): - def __init__( - self, - config_holder: Any, - source_dir: str, - build_backend: str, - backend_path: Optional[str] = None, - runner: Optional[Callable[..., None]] = None, - python_executable: Optional[str] = None, - ): - super().__init__( - source_dir, build_backend, backend_path, runner, python_executable - ) - self.config_holder = config_holder - - def build_wheel( - self, - wheel_directory: str, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - metadata_directory: Optional[str] = None, - ) -> str: - cs = self.config_holder.config_settings - return super().build_wheel( - wheel_directory, config_settings=cs, metadata_directory=metadata_directory - ) - - def build_sdist( - self, - sdist_directory: str, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - ) -> str: - cs = self.config_holder.config_settings - return super().build_sdist(sdist_directory, config_settings=cs) - - def build_editable( - self, - wheel_directory: str, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - metadata_directory: Optional[str] = None, - ) -> str: - cs = self.config_holder.config_settings - return super().build_editable( - wheel_directory, config_settings=cs, metadata_directory=metadata_directory - ) - - def get_requires_for_build_wheel( - self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None - ) -> List[str]: - cs = self.config_holder.config_settings - return super().get_requires_for_build_wheel(config_settings=cs) - - def get_requires_for_build_sdist( - self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None - ) -> List[str]: - cs = self.config_holder.config_settings - return super().get_requires_for_build_sdist(config_settings=cs) - - def get_requires_for_build_editable( - self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None - ) -> List[str]: - cs = self.config_holder.config_settings - return super().get_requires_for_build_editable(config_settings=cs) - - def prepare_metadata_for_build_wheel( - self, - metadata_directory: str, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - _allow_fallback: bool = True, - ) -> str: - cs = self.config_holder.config_settings - return super().prepare_metadata_for_build_wheel( - metadata_directory=metadata_directory, - config_settings=cs, - _allow_fallback=_allow_fallback, - ) - - def prepare_metadata_for_build_editable( - self, - metadata_directory: str, - config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, - _allow_fallback: bool = True, - ) -> str: - cs = self.config_holder.config_settings - return super().prepare_metadata_for_build_editable( - metadata_directory=metadata_directory, - config_settings=cs, - _allow_fallback=_allow_fallback, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/models.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/models.py deleted file mode 100644 index b6bb21a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/models.py +++ /dev/null @@ -1,39 +0,0 @@ -"""Utilities for defining models -""" - -import operator -from typing import Any, Callable, Type - - -class KeyBasedCompareMixin: - """Provides comparison capabilities that is based on a key""" - - __slots__ = ["_compare_key", "_defining_class"] - - def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: - self._compare_key = key - self._defining_class = defining_class - - def __hash__(self) -> int: - return hash(self._compare_key) - - def __lt__(self, other: Any) -> bool: - return self._compare(other, operator.__lt__) - - def __le__(self, other: Any) -> bool: - return self._compare(other, operator.__le__) - - def __gt__(self, other: Any) -> bool: - return self._compare(other, operator.__gt__) - - def __ge__(self, other: Any) -> bool: - return self._compare(other, operator.__ge__) - - def __eq__(self, other: Any) -> bool: - return self._compare(other, operator.__eq__) - - def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: - if not isinstance(other, self._defining_class): - return NotImplemented - - return method(self._compare_key, other._compare_key) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py deleted file mode 100644 index b9f6af4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py +++ /dev/null @@ -1,57 +0,0 @@ -import functools -import logging -import re -from typing import NewType, Optional, Tuple, cast - -from pip._vendor.packaging import specifiers, version -from pip._vendor.packaging.requirements import Requirement - -NormalizedExtra = NewType("NormalizedExtra", str) - -logger = logging.getLogger(__name__) - - -def check_requires_python( - requires_python: Optional[str], version_info: Tuple[int, ...] -) -> bool: - """ - Check if the given Python version matches a "Requires-Python" specifier. - - :param version_info: A 3-tuple of ints representing a Python - major-minor-micro version to check (e.g. `sys.version_info[:3]`). - - :return: `True` if the given Python version satisfies the requirement. - Otherwise, return `False`. - - :raises InvalidSpecifier: If `requires_python` has an invalid format. - """ - if requires_python is None: - # The package provides no information - return True - requires_python_specifier = specifiers.SpecifierSet(requires_python) - - python_version = version.parse(".".join(map(str, version_info))) - return python_version in requires_python_specifier - - -@functools.lru_cache(maxsize=512) -def get_requirement(req_string: str) -> Requirement: - """Construct a packaging.Requirement object with caching""" - # Parsing requirement strings is expensive, and is also expected to happen - # with a low diversity of different arguments (at least relative the number - # constructed). This method adds a cache to requirement object creation to - # minimize repeated parsing of the same string to construct equivalent - # Requirement objects. - return Requirement(req_string) - - -def safe_extra(extra: str) -> NormalizedExtra: - """Convert an arbitrary string to a standard 'extra' name - - Any runs of non-alphanumeric characters are replaced with a single '_', - and the result is always lowercased. - - This function is duplicated from ``pkg_resources``. Note that this is not - the same to either ``canonicalize_name`` or ``_egg_link_name``. - """ - return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py deleted file mode 100644 index 96d1b24..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py +++ /dev/null @@ -1,146 +0,0 @@ -import sys -import textwrap -from typing import List, Optional, Sequence - -# Shim to wrap setup.py invocation with setuptools -# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on -# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). -_SETUPTOOLS_SHIM = textwrap.dedent( - """ - exec(compile(''' - # This is -- a caller that pip uses to run setup.py - # - # - It imports setuptools before invoking setup.py, to enable projects that directly - # import from `distutils.core` to work with newer packaging standards. - # - It provides a clear error message when setuptools is not installed. - # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so - # setuptools doesn't think the script is `-c`. This avoids the following warning: - # manifest_maker: standard file '-c' not found". - # - It generates a shim setup.py, for handling setup.cfg-only projects. - import os, sys, tokenize - - try: - import setuptools - except ImportError as error: - print( - "ERROR: Can not execute `setup.py` since setuptools is not available in " - "the build environment.", - file=sys.stderr, - ) - sys.exit(1) - - __file__ = %r - sys.argv[0] = __file__ - - if os.path.exists(__file__): - filename = __file__ - with tokenize.open(__file__) as f: - setup_py_code = f.read() - else: - filename = "" - setup_py_code = "from setuptools import setup; setup()" - - exec(compile(setup_py_code, filename, "exec")) - ''' % ({!r},), "", "exec")) - """ -).rstrip() - - -def make_setuptools_shim_args( - setup_py_path: str, - global_options: Optional[Sequence[str]] = None, - no_user_config: bool = False, - unbuffered_output: bool = False, -) -> List[str]: - """ - Get setuptools command arguments with shim wrapped setup file invocation. - - :param setup_py_path: The path to setup.py to be wrapped. - :param global_options: Additional global options. - :param no_user_config: If True, disables personal user configuration. - :param unbuffered_output: If True, adds the unbuffered switch to the - argument list. - """ - args = [sys.executable] - if unbuffered_output: - args += ["-u"] - args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] - if global_options: - args += global_options - if no_user_config: - args += ["--no-user-cfg"] - return args - - -def make_setuptools_bdist_wheel_args( - setup_py_path: str, - global_options: Sequence[str], - build_options: Sequence[str], - destination_dir: str, -) -> List[str]: - # NOTE: Eventually, we'd want to also -S to the flags here, when we're - # isolating. Currently, it breaks Python in virtualenvs, because it - # relies on site.py to find parts of the standard library outside the - # virtualenv. - args = make_setuptools_shim_args( - setup_py_path, global_options=global_options, unbuffered_output=True - ) - args += ["bdist_wheel", "-d", destination_dir] - args += build_options - return args - - -def make_setuptools_clean_args( - setup_py_path: str, - global_options: Sequence[str], -) -> List[str]: - args = make_setuptools_shim_args( - setup_py_path, global_options=global_options, unbuffered_output=True - ) - args += ["clean", "--all"] - return args - - -def make_setuptools_develop_args( - setup_py_path: str, - *, - global_options: Sequence[str], - no_user_config: bool, - prefix: Optional[str], - home: Optional[str], - use_user_site: bool, -) -> List[str]: - assert not (use_user_site and prefix) - - args = make_setuptools_shim_args( - setup_py_path, - global_options=global_options, - no_user_config=no_user_config, - ) - - args += ["develop", "--no-deps"] - - if prefix: - args += ["--prefix", prefix] - if home is not None: - args += ["--install-dir", home] - - if use_user_site: - args += ["--user", "--prefix="] - - return args - - -def make_setuptools_egg_info_args( - setup_py_path: str, - egg_info_dir: Optional[str], - no_user_config: bool, -) -> List[str]: - args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) - - args += ["egg_info"] - - if egg_info_dir: - args += ["--egg-base", egg_info_dir] - - return args diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py deleted file mode 100644 index 79580b0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py +++ /dev/null @@ -1,260 +0,0 @@ -import logging -import os -import shlex -import subprocess -from typing import ( - TYPE_CHECKING, - Any, - Callable, - Iterable, - List, - Mapping, - Optional, - Union, -) - -from pip._vendor.rich.markup import escape - -from pip._internal.cli.spinners import SpinnerInterface, open_spinner -from pip._internal.exceptions import InstallationSubprocessError -from pip._internal.utils.logging import VERBOSE, subprocess_logger -from pip._internal.utils.misc import HiddenText - -if TYPE_CHECKING: - # Literal was introduced in Python 3.8. - # - # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. - from typing import Literal - -CommandArgs = List[Union[str, HiddenText]] - - -def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: - """ - Create a CommandArgs object. - """ - command_args: CommandArgs = [] - for arg in args: - # Check for list instead of CommandArgs since CommandArgs is - # only known during type-checking. - if isinstance(arg, list): - command_args.extend(arg) - else: - # Otherwise, arg is str or HiddenText. - command_args.append(arg) - - return command_args - - -def format_command_args(args: Union[List[str], CommandArgs]) -> str: - """ - Format command arguments for display. - """ - # For HiddenText arguments, display the redacted form by calling str(). - # Also, we don't apply str() to arguments that aren't HiddenText since - # this can trigger a UnicodeDecodeError in Python 2 if the argument - # has type unicode and includes a non-ascii character. (The type - # checker doesn't ensure the annotations are correct in all cases.) - return " ".join( - shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) - for arg in args - ) - - -def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: - """ - Return the arguments in their raw, unredacted form. - """ - return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] - - -def call_subprocess( - cmd: Union[List[str], CommandArgs], - show_stdout: bool = False, - cwd: Optional[str] = None, - on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", - extra_ok_returncodes: Optional[Iterable[int]] = None, - extra_environ: Optional[Mapping[str, Any]] = None, - unset_environ: Optional[Iterable[str]] = None, - spinner: Optional[SpinnerInterface] = None, - log_failed_cmd: Optional[bool] = True, - stdout_only: Optional[bool] = False, - *, - command_desc: str, -) -> str: - """ - Args: - show_stdout: if true, use INFO to log the subprocess's stderr and - stdout streams. Otherwise, use DEBUG. Defaults to False. - extra_ok_returncodes: an iterable of integer return codes that are - acceptable, in addition to 0. Defaults to None, which means []. - unset_environ: an iterable of environment variable names to unset - prior to calling subprocess.Popen(). - log_failed_cmd: if false, failed commands are not logged, only raised. - stdout_only: if true, return only stdout, else return both. When true, - logging of both stdout and stderr occurs when the subprocess has - terminated, else logging occurs as subprocess output is produced. - """ - if extra_ok_returncodes is None: - extra_ok_returncodes = [] - if unset_environ is None: - unset_environ = [] - # Most places in pip use show_stdout=False. What this means is-- - # - # - We connect the child's output (combined stderr and stdout) to a - # single pipe, which we read. - # - We log this output to stderr at DEBUG level as it is received. - # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't - # requested), then we show a spinner so the user can still see the - # subprocess is in progress. - # - If the subprocess exits with an error, we log the output to stderr - # at ERROR level if it hasn't already been displayed to the console - # (e.g. if --verbose logging wasn't enabled). This way we don't log - # the output to the console twice. - # - # If show_stdout=True, then the above is still done, but with DEBUG - # replaced by INFO. - if show_stdout: - # Then log the subprocess output at INFO level. - log_subprocess: Callable[..., None] = subprocess_logger.info - used_level = logging.INFO - else: - # Then log the subprocess output using VERBOSE. This also ensures - # it will be logged to the log file (aka user_log), if enabled. - log_subprocess = subprocess_logger.verbose - used_level = VERBOSE - - # Whether the subprocess will be visible in the console. - showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level - - # Only use the spinner if we're not showing the subprocess output - # and we have a spinner. - use_spinner = not showing_subprocess and spinner is not None - - log_subprocess("Running command %s", command_desc) - env = os.environ.copy() - if extra_environ: - env.update(extra_environ) - for name in unset_environ: - env.pop(name, None) - try: - proc = subprocess.Popen( - # Convert HiddenText objects to the underlying str. - reveal_command_args(cmd), - stdin=subprocess.PIPE, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, - cwd=cwd, - env=env, - errors="backslashreplace", - ) - except Exception as exc: - if log_failed_cmd: - subprocess_logger.critical( - "Error %s while executing command %s", - exc, - command_desc, - ) - raise - all_output = [] - if not stdout_only: - assert proc.stdout - assert proc.stdin - proc.stdin.close() - # In this mode, stdout and stderr are in the same pipe. - while True: - line: str = proc.stdout.readline() - if not line: - break - line = line.rstrip() - all_output.append(line + "\n") - - # Show the line immediately. - log_subprocess(line) - # Update the spinner. - if use_spinner: - assert spinner - spinner.spin() - try: - proc.wait() - finally: - if proc.stdout: - proc.stdout.close() - output = "".join(all_output) - else: - # In this mode, stdout and stderr are in different pipes. - # We must use communicate() which is the only safe way to read both. - out, err = proc.communicate() - # log line by line to preserve pip log indenting - for out_line in out.splitlines(): - log_subprocess(out_line) - all_output.append(out) - for err_line in err.splitlines(): - log_subprocess(err_line) - all_output.append(err) - output = out - - proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes - if use_spinner: - assert spinner - if proc_had_error: - spinner.finish("error") - else: - spinner.finish("done") - if proc_had_error: - if on_returncode == "raise": - error = InstallationSubprocessError( - command_description=command_desc, - exit_code=proc.returncode, - output_lines=all_output if not showing_subprocess else None, - ) - if log_failed_cmd: - subprocess_logger.error("%s", error, extra={"rich": True}) - subprocess_logger.verbose( - "[bold magenta]full command[/]: [blue]%s[/]", - escape(format_command_args(cmd)), - extra={"markup": True}, - ) - subprocess_logger.verbose( - "[bold magenta]cwd[/]: %s", - escape(cwd or "[inherit]"), - extra={"markup": True}, - ) - - raise error - elif on_returncode == "warn": - subprocess_logger.warning( - 'Command "%s" had error code %s in %s', - command_desc, - proc.returncode, - cwd, - ) - elif on_returncode == "ignore": - pass - else: - raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") - return output - - -def runner_with_spinner_message(message: str) -> Callable[..., None]: - """Provide a subprocess_runner that shows a spinner message. - - Intended for use with for BuildBackendHookCaller. Thus, the runner has - an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. - """ - - def runner( - cmd: List[str], - cwd: Optional[str] = None, - extra_environ: Optional[Mapping[str, Any]] = None, - ) -> None: - with open_spinner(message) as spinner: - call_subprocess( - cmd, - command_desc=message, - cwd=cwd, - extra_environ=extra_environ, - spinner=spinner, - ) - - return runner diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py deleted file mode 100644 index 4eec5f3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py +++ /dev/null @@ -1,296 +0,0 @@ -import errno -import itertools -import logging -import os.path -import tempfile -import traceback -from contextlib import ExitStack, contextmanager -from pathlib import Path -from typing import ( - Any, - Callable, - Dict, - Generator, - List, - Optional, - TypeVar, - Union, -) - -from pip._internal.utils.misc import enum, rmtree - -logger = logging.getLogger(__name__) - -_T = TypeVar("_T", bound="TempDirectory") - - -# Kinds of temporary directories. Only needed for ones that are -# globally-managed. -tempdir_kinds = enum( - BUILD_ENV="build-env", - EPHEM_WHEEL_CACHE="ephem-wheel-cache", - REQ_BUILD="req-build", -) - - -_tempdir_manager: Optional[ExitStack] = None - - -@contextmanager -def global_tempdir_manager() -> Generator[None, None, None]: - global _tempdir_manager - with ExitStack() as stack: - old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack - try: - yield - finally: - _tempdir_manager = old_tempdir_manager - - -class TempDirectoryTypeRegistry: - """Manages temp directory behavior""" - - def __init__(self) -> None: - self._should_delete: Dict[str, bool] = {} - - def set_delete(self, kind: str, value: bool) -> None: - """Indicate whether a TempDirectory of the given kind should be - auto-deleted. - """ - self._should_delete[kind] = value - - def get_delete(self, kind: str) -> bool: - """Get configured auto-delete flag for a given TempDirectory type, - default True. - """ - return self._should_delete.get(kind, True) - - -_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None - - -@contextmanager -def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: - """Provides a scoped global tempdir registry that can be used to dictate - whether directories should be deleted. - """ - global _tempdir_registry - old_tempdir_registry = _tempdir_registry - _tempdir_registry = TempDirectoryTypeRegistry() - try: - yield _tempdir_registry - finally: - _tempdir_registry = old_tempdir_registry - - -class _Default: - pass - - -_default = _Default() - - -class TempDirectory: - """Helper class that owns and cleans up a temporary directory. - - This class can be used as a context manager or as an OO representation of a - temporary directory. - - Attributes: - path - Location to the created temporary directory - delete - Whether the directory should be deleted when exiting - (when used as a contextmanager) - - Methods: - cleanup() - Deletes the temporary directory - - When used as a context manager, if the delete attribute is True, on - exiting the context the temporary directory is deleted. - """ - - def __init__( - self, - path: Optional[str] = None, - delete: Union[bool, None, _Default] = _default, - kind: str = "temp", - globally_managed: bool = False, - ignore_cleanup_errors: bool = True, - ): - super().__init__() - - if delete is _default: - if path is not None: - # If we were given an explicit directory, resolve delete option - # now. - delete = False - else: - # Otherwise, we wait until cleanup and see what - # tempdir_registry says. - delete = None - - # The only time we specify path is in for editables where it - # is the value of the --src option. - if path is None: - path = self._create(kind) - - self._path = path - self._deleted = False - self.delete = delete - self.kind = kind - self.ignore_cleanup_errors = ignore_cleanup_errors - - if globally_managed: - assert _tempdir_manager is not None - _tempdir_manager.enter_context(self) - - @property - def path(self) -> str: - assert not self._deleted, f"Attempted to access deleted path: {self._path}" - return self._path - - def __repr__(self) -> str: - return f"<{self.__class__.__name__} {self.path!r}>" - - def __enter__(self: _T) -> _T: - return self - - def __exit__(self, exc: Any, value: Any, tb: Any) -> None: - if self.delete is not None: - delete = self.delete - elif _tempdir_registry: - delete = _tempdir_registry.get_delete(self.kind) - else: - delete = True - - if delete: - self.cleanup() - - def _create(self, kind: str) -> str: - """Create a temporary directory and store its path in self.path""" - # We realpath here because some systems have their default tmpdir - # symlinked to another directory. This tends to confuse build - # scripts, so we canonicalize the path by traversing potential - # symlinks here. - path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) - logger.debug("Created temporary directory: %s", path) - return path - - def cleanup(self) -> None: - """Remove the temporary directory created and reset state""" - self._deleted = True - if not os.path.exists(self._path): - return - - errors: List[BaseException] = [] - - def onerror( - func: Callable[..., Any], - path: Path, - exc_val: BaseException, - ) -> None: - """Log a warning for a `rmtree` error and continue""" - formatted_exc = "\n".join( - traceback.format_exception_only(type(exc_val), exc_val) - ) - formatted_exc = formatted_exc.rstrip() # remove trailing new line - if func in (os.unlink, os.remove, os.rmdir): - logger.debug( - "Failed to remove a temporary file '%s' due to %s.\n", - path, - formatted_exc, - ) - else: - logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) - errors.append(exc_val) - - if self.ignore_cleanup_errors: - try: - # first try with tenacity; retrying to handle ephemeral errors - rmtree(self._path, ignore_errors=False) - except OSError: - # last pass ignore/log all errors - rmtree(self._path, onexc=onerror) - if errors: - logger.warning( - "Failed to remove contents in a temporary directory '%s'.\n" - "You can safely remove it manually.", - self._path, - ) - else: - rmtree(self._path) - - -class AdjacentTempDirectory(TempDirectory): - """Helper class that creates a temporary directory adjacent to a real one. - - Attributes: - original - The original directory to create a temp directory for. - path - After calling create() or entering, contains the full - path to the temporary directory. - delete - Whether the directory should be deleted when exiting - (when used as a contextmanager) - - """ - - # The characters that may be used to name the temp directory - # We always prepend a ~ and then rotate through these until - # a usable name is found. - # pkg_resources raises a different error for .dist-info folder - # with leading '-' and invalid metadata - LEADING_CHARS = "-~.=%0123456789" - - def __init__(self, original: str, delete: Optional[bool] = None) -> None: - self.original = original.rstrip("/\\") - super().__init__(delete=delete) - - @classmethod - def _generate_names(cls, name: str) -> Generator[str, None, None]: - """Generates a series of temporary names. - - The algorithm replaces the leading characters in the name - with ones that are valid filesystem characters, but are not - valid package names (for both Python and pip definitions of - package). - """ - for i in range(1, len(name)): - for candidate in itertools.combinations_with_replacement( - cls.LEADING_CHARS, i - 1 - ): - new_name = "~" + "".join(candidate) + name[i:] - if new_name != name: - yield new_name - - # If we make it this far, we will have to make a longer name - for i in range(len(cls.LEADING_CHARS)): - for candidate in itertools.combinations_with_replacement( - cls.LEADING_CHARS, i - ): - new_name = "~" + "".join(candidate) + name - if new_name != name: - yield new_name - - def _create(self, kind: str) -> str: - root, name = os.path.split(self.original) - for candidate in self._generate_names(name): - path = os.path.join(root, candidate) - try: - os.mkdir(path) - except OSError as ex: - # Continue if the name exists already - if ex.errno != errno.EEXIST: - raise - else: - path = os.path.realpath(path) - break - else: - # Final fallback on the default behavior. - path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) - - logger.debug("Created temporary directory: %s", path) - return path diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py deleted file mode 100644 index 78b5c13..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py +++ /dev/null @@ -1,257 +0,0 @@ -"""Utilities related archives. -""" - -import logging -import os -import shutil -import stat -import tarfile -import zipfile -from typing import Iterable, List, Optional -from zipfile import ZipInfo - -from pip._internal.exceptions import InstallationError -from pip._internal.utils.filetypes import ( - BZ2_EXTENSIONS, - TAR_EXTENSIONS, - XZ_EXTENSIONS, - ZIP_EXTENSIONS, -) -from pip._internal.utils.misc import ensure_dir - -logger = logging.getLogger(__name__) - - -SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS - -try: - import bz2 # noqa - - SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS -except ImportError: - logger.debug("bz2 module is not available") - -try: - # Only for Python 3.3+ - import lzma # noqa - - SUPPORTED_EXTENSIONS += XZ_EXTENSIONS -except ImportError: - logger.debug("lzma module is not available") - - -def current_umask() -> int: - """Get the current umask which involves having to set it temporarily.""" - mask = os.umask(0) - os.umask(mask) - return mask - - -def split_leading_dir(path: str) -> List[str]: - path = path.lstrip("/").lstrip("\\") - if "/" in path and ( - ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path - ): - return path.split("/", 1) - elif "\\" in path: - return path.split("\\", 1) - else: - return [path, ""] - - -def has_leading_dir(paths: Iterable[str]) -> bool: - """Returns true if all the paths have the same leading path name - (i.e., everything is in one subdirectory in an archive)""" - common_prefix = None - for path in paths: - prefix, rest = split_leading_dir(path) - if not prefix: - return False - elif common_prefix is None: - common_prefix = prefix - elif prefix != common_prefix: - return False - return True - - -def is_within_directory(directory: str, target: str) -> bool: - """ - Return true if the absolute path of target is within the directory - """ - abs_directory = os.path.abspath(directory) - abs_target = os.path.abspath(target) - - prefix = os.path.commonprefix([abs_directory, abs_target]) - return prefix == abs_directory - - -def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: - """ - Make file present at path have execute for user/group/world - (chmod +x) is no-op on windows per python docs - """ - os.chmod(path, (0o777 & ~current_umask() | 0o111)) - - -def zip_item_is_executable(info: ZipInfo) -> bool: - mode = info.external_attr >> 16 - # if mode and regular file and any execute permissions for - # user/group/world? - return bool(mode and stat.S_ISREG(mode) and mode & 0o111) - - -def unzip_file(filename: str, location: str, flatten: bool = True) -> None: - """ - Unzip the file (with path `filename`) to the destination `location`. All - files are written based on system defaults and umask (i.e. permissions are - not preserved), except that regular file members with any execute - permissions (user, group, or world) have "chmod +x" applied after being - written. Note that for windows, any execute changes using os.chmod are - no-ops per the python docs. - """ - ensure_dir(location) - zipfp = open(filename, "rb") - try: - zip = zipfile.ZipFile(zipfp, allowZip64=True) - leading = has_leading_dir(zip.namelist()) and flatten - for info in zip.infolist(): - name = info.filename - fn = name - if leading: - fn = split_leading_dir(name)[1] - fn = os.path.join(location, fn) - dir = os.path.dirname(fn) - if not is_within_directory(location, fn): - message = ( - "The zip file ({}) has a file ({}) trying to install " - "outside target directory ({})" - ) - raise InstallationError(message.format(filename, fn, location)) - if fn.endswith("/") or fn.endswith("\\"): - # A directory - ensure_dir(fn) - else: - ensure_dir(dir) - # Don't use read() to avoid allocating an arbitrarily large - # chunk of memory for the file's content - fp = zip.open(name) - try: - with open(fn, "wb") as destfp: - shutil.copyfileobj(fp, destfp) - finally: - fp.close() - if zip_item_is_executable(info): - set_extracted_file_to_default_mode_plus_executable(fn) - finally: - zipfp.close() - - -def untar_file(filename: str, location: str) -> None: - """ - Untar the file (with path `filename`) to the destination `location`. - All files are written based on system defaults and umask (i.e. permissions - are not preserved), except that regular file members with any execute - permissions (user, group, or world) have "chmod +x" applied after being - written. Note that for windows, any execute changes using os.chmod are - no-ops per the python docs. - """ - ensure_dir(location) - if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): - mode = "r:gz" - elif filename.lower().endswith(BZ2_EXTENSIONS): - mode = "r:bz2" - elif filename.lower().endswith(XZ_EXTENSIONS): - mode = "r:xz" - elif filename.lower().endswith(".tar"): - mode = "r" - else: - logger.warning( - "Cannot determine compression type for file %s", - filename, - ) - mode = "r:*" - tar = tarfile.open(filename, mode, encoding="utf-8") - try: - leading = has_leading_dir([member.name for member in tar.getmembers()]) - for member in tar.getmembers(): - fn = member.name - if leading: - fn = split_leading_dir(fn)[1] - path = os.path.join(location, fn) - if not is_within_directory(location, path): - message = ( - "The tar file ({}) has a file ({}) trying to install " - "outside target directory ({})" - ) - raise InstallationError(message.format(filename, path, location)) - if member.isdir(): - ensure_dir(path) - elif member.issym(): - try: - tar._extract_member(member, path) - except Exception as exc: - # Some corrupt tar files seem to produce this - # (specifically bad symlinks) - logger.warning( - "In the tar file %s the member %s is invalid: %s", - filename, - member.name, - exc, - ) - continue - else: - try: - fp = tar.extractfile(member) - except (KeyError, AttributeError) as exc: - # Some corrupt tar files seem to produce this - # (specifically bad symlinks) - logger.warning( - "In the tar file %s the member %s is invalid: %s", - filename, - member.name, - exc, - ) - continue - ensure_dir(os.path.dirname(path)) - assert fp is not None - with open(path, "wb") as destfp: - shutil.copyfileobj(fp, destfp) - fp.close() - # Update the timestamp (useful for cython compiled files) - tar.utime(member, path) - # member have any execute permissions for user/group/world? - if member.mode & 0o111: - set_extracted_file_to_default_mode_plus_executable(path) - finally: - tar.close() - - -def unpack_file( - filename: str, - location: str, - content_type: Optional[str] = None, -) -> None: - filename = os.path.realpath(filename) - if ( - content_type == "application/zip" - or filename.lower().endswith(ZIP_EXTENSIONS) - or zipfile.is_zipfile(filename) - ): - unzip_file(filename, location, flatten=not filename.endswith(".whl")) - elif ( - content_type == "application/x-gzip" - or tarfile.is_tarfile(filename) - or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) - ): - untar_file(filename, location) - else: - # FIXME: handle? - # FIXME: magic signatures? - logger.critical( - "Cannot unpack file %s (downloaded from %s, content-type: %s); " - "cannot detect archive format", - filename, - location, - content_type, - ) - raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py deleted file mode 100644 index 6ba2e04..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py +++ /dev/null @@ -1,62 +0,0 @@ -import os -import string -import urllib.parse -import urllib.request -from typing import Optional - -from .compat import WINDOWS - - -def get_url_scheme(url: str) -> Optional[str]: - if ":" not in url: - return None - return url.split(":", 1)[0].lower() - - -def path_to_url(path: str) -> str: - """ - Convert a path to a file: URL. The path will be made absolute and have - quoted path parts. - """ - path = os.path.normpath(os.path.abspath(path)) - url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) - return url - - -def url_to_path(url: str) -> str: - """ - Convert a file: URL to a path. - """ - assert url.startswith( - "file:" - ), f"You can only turn file: urls into filenames (not {url!r})" - - _, netloc, path, _, _ = urllib.parse.urlsplit(url) - - if not netloc or netloc == "localhost": - # According to RFC 8089, same as empty authority. - netloc = "" - elif WINDOWS: - # If we have a UNC path, prepend UNC share notation. - netloc = "\\\\" + netloc - else: - raise ValueError( - f"non-local file URIs are not supported on this platform: {url!r}" - ) - - path = urllib.request.url2pathname(netloc + path) - - # On Windows, urlsplit parses the path as something like "/C:/Users/foo". - # This creates issues for path-related functions like io.open(), so we try - # to detect and strip the leading slash. - if ( - WINDOWS - and not netloc # Not UNC. - and len(path) >= 3 - and path[0] == "/" # Leading slash to strip. - and path[1] in string.ascii_letters # Drive letter. - and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. - ): - path = path[1:] - - return path diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py deleted file mode 100644 index 882e36f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py +++ /dev/null @@ -1,104 +0,0 @@ -import logging -import os -import re -import site -import sys -from typing import List, Optional - -logger = logging.getLogger(__name__) -_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( - r"include-system-site-packages\s*=\s*(?Ptrue|false)" -) - - -def _running_under_venv() -> bool: - """Checks if sys.base_prefix and sys.prefix match. - - This handles PEP 405 compliant virtual environments. - """ - return sys.prefix != getattr(sys, "base_prefix", sys.prefix) - - -def _running_under_legacy_virtualenv() -> bool: - """Checks if sys.real_prefix is set. - - This handles virtual environments created with pypa's virtualenv. - """ - # pypa/virtualenv case - return hasattr(sys, "real_prefix") - - -def running_under_virtualenv() -> bool: - """True if we're running inside a virtual environment, False otherwise.""" - return _running_under_venv() or _running_under_legacy_virtualenv() - - -def _get_pyvenv_cfg_lines() -> Optional[List[str]]: - """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines - - Returns None, if it could not read/access the file. - """ - pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") - try: - # Although PEP 405 does not specify, the built-in venv module always - # writes with UTF-8. (pypa/pip#8717) - with open(pyvenv_cfg_file, encoding="utf-8") as f: - return f.read().splitlines() # avoids trailing newlines - except OSError: - return None - - -def _no_global_under_venv() -> bool: - """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion - - PEP 405 specifies that when system site-packages are not supposed to be - visible from a virtual environment, `pyvenv.cfg` must contain the following - line: - - include-system-site-packages = false - - Additionally, log a warning if accessing the file fails. - """ - cfg_lines = _get_pyvenv_cfg_lines() - if cfg_lines is None: - # We're not in a "sane" venv, so assume there is no system - # site-packages access (since that's PEP 405's default state). - logger.warning( - "Could not access 'pyvenv.cfg' despite a virtual environment " - "being active. Assuming global site-packages is not accessible " - "in this environment." - ) - return True - - for line in cfg_lines: - match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) - if match is not None and match.group("value") == "false": - return True - return False - - -def _no_global_under_legacy_virtualenv() -> bool: - """Check if "no-global-site-packages.txt" exists beside site.py - - This mirrors logic in pypa/virtualenv for determining whether system - site-packages are visible in the virtual environment. - """ - site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) - no_global_site_packages_file = os.path.join( - site_mod_dir, - "no-global-site-packages.txt", - ) - return os.path.exists(no_global_site_packages_file) - - -def virtualenv_no_global() -> bool: - """Returns a boolean, whether running in venv with no system site-packages.""" - # PEP 405 compliance needs to be checked first since virtualenv >=20 would - # return True for both checks, but is only able to use the PEP 405 config. - if _running_under_venv(): - return _no_global_under_venv() - - if _running_under_legacy_virtualenv(): - return _no_global_under_legacy_virtualenv() - - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py deleted file mode 100644 index 3551f8f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py +++ /dev/null @@ -1,134 +0,0 @@ -"""Support functions for working with wheel files. -""" - -import logging -from email.message import Message -from email.parser import Parser -from typing import Tuple -from zipfile import BadZipFile, ZipFile - -from pip._vendor.packaging.utils import canonicalize_name - -from pip._internal.exceptions import UnsupportedWheel - -VERSION_COMPATIBLE = (1, 0) - - -logger = logging.getLogger(__name__) - - -def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: - """Extract information from the provided wheel, ensuring it meets basic - standards. - - Returns the name of the .dist-info directory and the parsed WHEEL metadata. - """ - try: - info_dir = wheel_dist_info_dir(wheel_zip, name) - metadata = wheel_metadata(wheel_zip, info_dir) - version = wheel_version(metadata) - except UnsupportedWheel as e: - raise UnsupportedWheel(f"{name} has an invalid wheel, {str(e)}") - - check_compatibility(version, name) - - return info_dir, metadata - - -def wheel_dist_info_dir(source: ZipFile, name: str) -> str: - """Returns the name of the contained .dist-info directory. - - Raises AssertionError or UnsupportedWheel if not found, >1 found, or - it doesn't match the provided name. - """ - # Zip file path separators must be / - subdirs = {p.split("/", 1)[0] for p in source.namelist()} - - info_dirs = [s for s in subdirs if s.endswith(".dist-info")] - - if not info_dirs: - raise UnsupportedWheel(".dist-info directory not found") - - if len(info_dirs) > 1: - raise UnsupportedWheel( - "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) - ) - - info_dir = info_dirs[0] - - info_dir_name = canonicalize_name(info_dir) - canonical_name = canonicalize_name(name) - if not info_dir_name.startswith(canonical_name): - raise UnsupportedWheel( - f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" - ) - - return info_dir - - -def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: - try: - return source.read(path) - # BadZipFile for general corruption, KeyError for missing entry, - # and RuntimeError for password-protected files - except (BadZipFile, KeyError, RuntimeError) as e: - raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") - - -def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: - """Return the WHEEL metadata of an extracted wheel, if possible. - Otherwise, raise UnsupportedWheel. - """ - path = f"{dist_info_dir}/WHEEL" - # Zip file path separators must be / - wheel_contents = read_wheel_metadata_file(source, path) - - try: - wheel_text = wheel_contents.decode() - except UnicodeDecodeError as e: - raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") - - # FeedParser (used by Parser) does not raise any exceptions. The returned - # message may have .defects populated, but for backwards-compatibility we - # currently ignore them. - return Parser().parsestr(wheel_text) - - -def wheel_version(wheel_data: Message) -> Tuple[int, ...]: - """Given WHEEL metadata, return the parsed Wheel-Version. - Otherwise, raise UnsupportedWheel. - """ - version_text = wheel_data["Wheel-Version"] - if version_text is None: - raise UnsupportedWheel("WHEEL is missing Wheel-Version") - - version = version_text.strip() - - try: - return tuple(map(int, version.split("."))) - except ValueError: - raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") - - -def check_compatibility(version: Tuple[int, ...], name: str) -> None: - """Raises errors or warns if called with an incompatible Wheel-Version. - - pip should refuse to install a Wheel-Version that's a major series - ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when - installing a version only minor version ahead (e.g 1.2 > 1.1). - - version: a 2-tuple representing a Wheel-Version (Major, Minor) - name: name of wheel or package to raise exception about - - :raises UnsupportedWheel: when an incompatible Wheel-Version is given - """ - if version[0] > VERSION_COMPATIBLE[0]: - raise UnsupportedWheel( - "{}'s Wheel-Version ({}) is not compatible with this version " - "of pip".format(name, ".".join(map(str, version))) - ) - elif version > VERSION_COMPATIBLE: - logger.warning( - "Installing from a newer Wheel-Version (%s)", - ".".join(map(str, version)), - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py deleted file mode 100644 index b6beddb..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -# Expose a limited set of classes and functions so callers outside of -# the vcs package don't need to import deeper than `pip._internal.vcs`. -# (The test directory may still need to import from a vcs sub-package.) -# Import all vcs modules to register each VCS in the VcsSupport object. -import pip._internal.vcs.bazaar -import pip._internal.vcs.git -import pip._internal.vcs.mercurial -import pip._internal.vcs.subversion # noqa: F401 -from pip._internal.vcs.versioncontrol import ( # noqa: F401 - RemoteNotFoundError, - RemoteNotValidError, - is_url, - make_vcs_requirement_url, - vcs, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fb7831d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc deleted file mode 100644 index dca36d2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc deleted file mode 100644 index e64f793..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc deleted file mode 100644 index 496d6bd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc deleted file mode 100644 index 9cc98ed..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc deleted file mode 100644 index f477476..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py deleted file mode 100644 index 20a17ed..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py +++ /dev/null @@ -1,112 +0,0 @@ -import logging -from typing import List, Optional, Tuple - -from pip._internal.utils.misc import HiddenText, display_path -from pip._internal.utils.subprocess import make_command -from pip._internal.utils.urls import path_to_url -from pip._internal.vcs.versioncontrol import ( - AuthInfo, - RemoteNotFoundError, - RevOptions, - VersionControl, - vcs, -) - -logger = logging.getLogger(__name__) - - -class Bazaar(VersionControl): - name = "bzr" - dirname = ".bzr" - repo_name = "branch" - schemes = ( - "bzr+http", - "bzr+https", - "bzr+ssh", - "bzr+sftp", - "bzr+ftp", - "bzr+lp", - "bzr+file", - ) - - @staticmethod - def get_base_rev_args(rev: str) -> List[str]: - return ["-r", rev] - - def fetch_new( - self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int - ) -> None: - rev_display = rev_options.to_display() - logger.info( - "Checking out %s%s to %s", - url, - rev_display, - display_path(dest), - ) - if verbosity <= 0: - flag = "--quiet" - elif verbosity == 1: - flag = "" - else: - flag = f"-{'v'*verbosity}" - cmd_args = make_command( - "checkout", "--lightweight", flag, rev_options.to_args(), url, dest - ) - self.run_command(cmd_args) - - def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - self.run_command(make_command("switch", url), cwd=dest) - - def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - output = self.run_command( - make_command("info"), show_stdout=False, stdout_only=True, cwd=dest - ) - if output.startswith("Standalone "): - # Older versions of pip used to create standalone branches. - # Convert the standalone branch to a checkout by calling "bzr bind". - cmd_args = make_command("bind", "-q", url) - self.run_command(cmd_args, cwd=dest) - - cmd_args = make_command("update", "-q", rev_options.to_args()) - self.run_command(cmd_args, cwd=dest) - - @classmethod - def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: - # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it - url, rev, user_pass = super().get_url_rev_and_auth(url) - if url.startswith("ssh://"): - url = "bzr+" + url - return url, rev, user_pass - - @classmethod - def get_remote_url(cls, location: str) -> str: - urls = cls.run_command( - ["info"], show_stdout=False, stdout_only=True, cwd=location - ) - for line in urls.splitlines(): - line = line.strip() - for x in ("checkout of branch: ", "parent branch: "): - if line.startswith(x): - repo = line.split(x)[1] - if cls._is_local_repository(repo): - return path_to_url(repo) - return repo - raise RemoteNotFoundError - - @classmethod - def get_revision(cls, location: str) -> str: - revision = cls.run_command( - ["revno"], - show_stdout=False, - stdout_only=True, - cwd=location, - ) - return revision.splitlines()[-1] - - @classmethod - def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: - """Always assume the versions don't match""" - return False - - -vcs.register(Bazaar) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py deleted file mode 100644 index 8c242cf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py +++ /dev/null @@ -1,526 +0,0 @@ -import logging -import os.path -import pathlib -import re -import urllib.parse -import urllib.request -from typing import List, Optional, Tuple - -from pip._internal.exceptions import BadCommand, InstallationError -from pip._internal.utils.misc import HiddenText, display_path, hide_url -from pip._internal.utils.subprocess import make_command -from pip._internal.vcs.versioncontrol import ( - AuthInfo, - RemoteNotFoundError, - RemoteNotValidError, - RevOptions, - VersionControl, - find_path_to_project_root_from_repo_root, - vcs, -) - -urlsplit = urllib.parse.urlsplit -urlunsplit = urllib.parse.urlunsplit - - -logger = logging.getLogger(__name__) - - -GIT_VERSION_REGEX = re.compile( - r"^git version " # Prefix. - r"(\d+)" # Major. - r"\.(\d+)" # Dot, minor. - r"(?:\.(\d+))?" # Optional dot, patch. - r".*$" # Suffix, including any pre- and post-release segments we don't care about. -) - -HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") - -# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' -SCP_REGEX = re.compile( - r"""^ - # Optional user, e.g. 'git@' - (\w+@)? - # Server, e.g. 'github.com'. - ([^/:]+): - # The server-side path. e.g. 'user/project.git'. Must start with an - # alphanumeric character so as not to be confusable with a Windows paths - # like 'C:/foo/bar' or 'C:\foo\bar'. - (\w[^:]*) - $""", - re.VERBOSE, -) - - -def looks_like_hash(sha: str) -> bool: - return bool(HASH_REGEX.match(sha)) - - -class Git(VersionControl): - name = "git" - dirname = ".git" - repo_name = "clone" - schemes = ( - "git+http", - "git+https", - "git+ssh", - "git+git", - "git+file", - ) - # Prevent the user's environment variables from interfering with pip: - # https://github.com/pypa/pip/issues/1130 - unset_environ = ("GIT_DIR", "GIT_WORK_TREE") - default_arg_rev = "HEAD" - - @staticmethod - def get_base_rev_args(rev: str) -> List[str]: - return [rev] - - def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: - _, rev_options = self.get_url_rev_options(hide_url(url)) - if not rev_options.rev: - return False - if not self.is_commit_id_equal(dest, rev_options.rev): - # the current commit is different from rev, - # which means rev was something else than a commit hash - return False - # return False in the rare case rev is both a commit hash - # and a tag or a branch; we don't want to cache in that case - # because that branch/tag could point to something else in the future - is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) - return not is_tag_or_branch - - def get_git_version(self) -> Tuple[int, ...]: - version = self.run_command( - ["version"], - command_desc="git version", - show_stdout=False, - stdout_only=True, - ) - match = GIT_VERSION_REGEX.match(version) - if not match: - logger.warning("Can't parse git version: %s", version) - return () - return (int(match.group(1)), int(match.group(2))) - - @classmethod - def get_current_branch(cls, location: str) -> Optional[str]: - """ - Return the current branch, or None if HEAD isn't at a branch - (e.g. detached HEAD). - """ - # git-symbolic-ref exits with empty stdout if "HEAD" is a detached - # HEAD rather than a symbolic ref. In addition, the -q causes the - # command to exit with status code 1 instead of 128 in this case - # and to suppress the message to stderr. - args = ["symbolic-ref", "-q", "HEAD"] - output = cls.run_command( - args, - extra_ok_returncodes=(1,), - show_stdout=False, - stdout_only=True, - cwd=location, - ) - ref = output.strip() - - if ref.startswith("refs/heads/"): - return ref[len("refs/heads/") :] - - return None - - @classmethod - def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: - """ - Return (sha_or_none, is_branch), where sha_or_none is a commit hash - if the revision names a remote branch or tag, otherwise None. - - Args: - dest: the repository directory. - rev: the revision name. - """ - # Pass rev to pre-filter the list. - output = cls.run_command( - ["show-ref", rev], - cwd=dest, - show_stdout=False, - stdout_only=True, - on_returncode="ignore", - ) - refs = {} - # NOTE: We do not use splitlines here since that would split on other - # unicode separators, which can be maliciously used to install a - # different revision. - for line in output.strip().split("\n"): - line = line.rstrip("\r") - if not line: - continue - try: - ref_sha, ref_name = line.split(" ", maxsplit=2) - except ValueError: - # Include the offending line to simplify troubleshooting if - # this error ever occurs. - raise ValueError(f"unexpected show-ref line: {line!r}") - - refs[ref_name] = ref_sha - - branch_ref = f"refs/remotes/origin/{rev}" - tag_ref = f"refs/tags/{rev}" - - sha = refs.get(branch_ref) - if sha is not None: - return (sha, True) - - sha = refs.get(tag_ref) - - return (sha, False) - - @classmethod - def _should_fetch(cls, dest: str, rev: str) -> bool: - """ - Return true if rev is a ref or is a commit that we don't have locally. - - Branches and tags are not considered in this method because they are - assumed to be always available locally (which is a normal outcome of - ``git clone`` and ``git fetch --tags``). - """ - if rev.startswith("refs/"): - # Always fetch remote refs. - return True - - if not looks_like_hash(rev): - # Git fetch would fail with abbreviated commits. - return False - - if cls.has_commit(dest, rev): - # Don't fetch if we have the commit locally. - return False - - return True - - @classmethod - def resolve_revision( - cls, dest: str, url: HiddenText, rev_options: RevOptions - ) -> RevOptions: - """ - Resolve a revision to a new RevOptions object with the SHA1 of the - branch, tag, or ref if found. - - Args: - rev_options: a RevOptions object. - """ - rev = rev_options.arg_rev - # The arg_rev property's implementation for Git ensures that the - # rev return value is always non-None. - assert rev is not None - - sha, is_branch = cls.get_revision_sha(dest, rev) - - if sha is not None: - rev_options = rev_options.make_new(sha) - rev_options.branch_name = rev if is_branch else None - - return rev_options - - # Do not show a warning for the common case of something that has - # the form of a Git commit hash. - if not looks_like_hash(rev): - logger.warning( - "Did not find branch or tag '%s', assuming revision or ref.", - rev, - ) - - if not cls._should_fetch(dest, rev): - return rev_options - - # fetch the requested revision - cls.run_command( - make_command("fetch", "-q", url, rev_options.to_args()), - cwd=dest, - ) - # Change the revision to the SHA of the ref we fetched - sha = cls.get_revision(dest, rev="FETCH_HEAD") - rev_options = rev_options.make_new(sha) - - return rev_options - - @classmethod - def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: - """ - Return whether the current commit hash equals the given name. - - Args: - dest: the repository directory. - name: a string name. - """ - if not name: - # Then avoid an unnecessary subprocess call. - return False - - return cls.get_revision(dest) == name - - def fetch_new( - self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int - ) -> None: - rev_display = rev_options.to_display() - logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) - if verbosity <= 0: - flags: Tuple[str, ...] = ("--quiet",) - elif verbosity == 1: - flags = () - else: - flags = ("--verbose", "--progress") - if self.get_git_version() >= (2, 17): - # Git added support for partial clone in 2.17 - # https://git-scm.com/docs/partial-clone - # Speeds up cloning by functioning without a complete copy of repository - self.run_command( - make_command( - "clone", - "--filter=blob:none", - *flags, - url, - dest, - ) - ) - else: - self.run_command(make_command("clone", *flags, url, dest)) - - if rev_options.rev: - # Then a specific revision was requested. - rev_options = self.resolve_revision(dest, url, rev_options) - branch_name = getattr(rev_options, "branch_name", None) - logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) - if branch_name is None: - # Only do a checkout if the current commit id doesn't match - # the requested revision. - if not self.is_commit_id_equal(dest, rev_options.rev): - cmd_args = make_command( - "checkout", - "-q", - rev_options.to_args(), - ) - self.run_command(cmd_args, cwd=dest) - elif self.get_current_branch(dest) != branch_name: - # Then a specific branch was requested, and that branch - # is not yet checked out. - track_branch = f"origin/{branch_name}" - cmd_args = [ - "checkout", - "-b", - branch_name, - "--track", - track_branch, - ] - self.run_command(cmd_args, cwd=dest) - else: - sha = self.get_revision(dest) - rev_options = rev_options.make_new(sha) - - logger.info("Resolved %s to commit %s", url, rev_options.rev) - - #: repo may contain submodules - self.update_submodules(dest) - - def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - self.run_command( - make_command("config", "remote.origin.url", url), - cwd=dest, - ) - cmd_args = make_command("checkout", "-q", rev_options.to_args()) - self.run_command(cmd_args, cwd=dest) - - self.update_submodules(dest) - - def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - # First fetch changes from the default remote - if self.get_git_version() >= (1, 9): - # fetch tags in addition to everything else - self.run_command(["fetch", "-q", "--tags"], cwd=dest) - else: - self.run_command(["fetch", "-q"], cwd=dest) - # Then reset to wanted revision (maybe even origin/master) - rev_options = self.resolve_revision(dest, url, rev_options) - cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) - self.run_command(cmd_args, cwd=dest) - #: update submodules - self.update_submodules(dest) - - @classmethod - def get_remote_url(cls, location: str) -> str: - """ - Return URL of the first remote encountered. - - Raises RemoteNotFoundError if the repository does not have a remote - url configured. - """ - # We need to pass 1 for extra_ok_returncodes since the command - # exits with return code 1 if there are no matching lines. - stdout = cls.run_command( - ["config", "--get-regexp", r"remote\..*\.url"], - extra_ok_returncodes=(1,), - show_stdout=False, - stdout_only=True, - cwd=location, - ) - remotes = stdout.splitlines() - try: - found_remote = remotes[0] - except IndexError: - raise RemoteNotFoundError - - for remote in remotes: - if remote.startswith("remote.origin.url "): - found_remote = remote - break - url = found_remote.split(" ")[1] - return cls._git_remote_to_pip_url(url.strip()) - - @staticmethod - def _git_remote_to_pip_url(url: str) -> str: - """ - Convert a remote url from what git uses to what pip accepts. - - There are 3 legal forms **url** may take: - - 1. A fully qualified url: ssh://git@example.com/foo/bar.git - 2. A local project.git folder: /path/to/bare/repository.git - 3. SCP shorthand for form 1: git@example.com:foo/bar.git - - Form 1 is output as-is. Form 2 must be converted to URI and form 3 must - be converted to form 1. - - See the corresponding test test_git_remote_url_to_pip() for examples of - sample inputs/outputs. - """ - if re.match(r"\w+://", url): - # This is already valid. Pass it though as-is. - return url - if os.path.exists(url): - # A local bare remote (git clone --mirror). - # Needs a file:// prefix. - return pathlib.PurePath(url).as_uri() - scp_match = SCP_REGEX.match(url) - if scp_match: - # Add an ssh:// prefix and replace the ':' with a '/'. - return scp_match.expand(r"ssh://\1\2/\3") - # Otherwise, bail out. - raise RemoteNotValidError(url) - - @classmethod - def has_commit(cls, location: str, rev: str) -> bool: - """ - Check if rev is a commit that is available in the local repository. - """ - try: - cls.run_command( - ["rev-parse", "-q", "--verify", "sha^" + rev], - cwd=location, - log_failed_cmd=False, - ) - except InstallationError: - return False - else: - return True - - @classmethod - def get_revision(cls, location: str, rev: Optional[str] = None) -> str: - if rev is None: - rev = "HEAD" - current_rev = cls.run_command( - ["rev-parse", rev], - show_stdout=False, - stdout_only=True, - cwd=location, - ) - return current_rev.strip() - - @classmethod - def get_subdirectory(cls, location: str) -> Optional[str]: - """ - Return the path to Python project root, relative to the repo root. - Return None if the project root is in the repo root. - """ - # find the repo root - git_dir = cls.run_command( - ["rev-parse", "--git-dir"], - show_stdout=False, - stdout_only=True, - cwd=location, - ).strip() - if not os.path.isabs(git_dir): - git_dir = os.path.join(location, git_dir) - repo_root = os.path.abspath(os.path.join(git_dir, "..")) - return find_path_to_project_root_from_repo_root(location, repo_root) - - @classmethod - def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: - """ - Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. - That's required because although they use SSH they sometimes don't - work with a ssh:// scheme (e.g. GitHub). But we need a scheme for - parsing. Hence we remove it again afterwards and return it as a stub. - """ - # Works around an apparent Git bug - # (see https://article.gmane.org/gmane.comp.version-control.git/146500) - scheme, netloc, path, query, fragment = urlsplit(url) - if scheme.endswith("file"): - initial_slashes = path[: -len(path.lstrip("/"))] - newpath = initial_slashes + urllib.request.url2pathname(path).replace( - "\\", "/" - ).lstrip("/") - after_plus = scheme.find("+") + 1 - url = scheme[:after_plus] + urlunsplit( - (scheme[after_plus:], netloc, newpath, query, fragment), - ) - - if "://" not in url: - assert "file:" not in url - url = url.replace("git+", "git+ssh://") - url, rev, user_pass = super().get_url_rev_and_auth(url) - url = url.replace("ssh://", "") - else: - url, rev, user_pass = super().get_url_rev_and_auth(url) - - return url, rev, user_pass - - @classmethod - def update_submodules(cls, location: str) -> None: - if not os.path.exists(os.path.join(location, ".gitmodules")): - return - cls.run_command( - ["submodule", "update", "--init", "--recursive", "-q"], - cwd=location, - ) - - @classmethod - def get_repository_root(cls, location: str) -> Optional[str]: - loc = super().get_repository_root(location) - if loc: - return loc - try: - r = cls.run_command( - ["rev-parse", "--show-toplevel"], - cwd=location, - show_stdout=False, - stdout_only=True, - on_returncode="raise", - log_failed_cmd=False, - ) - except BadCommand: - logger.debug( - "could not determine if %s is under git control " - "because git is not available", - location, - ) - return None - except InstallationError: - return None - return os.path.normpath(r.rstrip("\r\n")) - - @staticmethod - def should_add_vcs_url_prefix(repo_url: str) -> bool: - """In either https or ssh form, requirements must be prefixed with git+.""" - return True - - -vcs.register(Git) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py deleted file mode 100644 index c183d41..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py +++ /dev/null @@ -1,163 +0,0 @@ -import configparser -import logging -import os -from typing import List, Optional, Tuple - -from pip._internal.exceptions import BadCommand, InstallationError -from pip._internal.utils.misc import HiddenText, display_path -from pip._internal.utils.subprocess import make_command -from pip._internal.utils.urls import path_to_url -from pip._internal.vcs.versioncontrol import ( - RevOptions, - VersionControl, - find_path_to_project_root_from_repo_root, - vcs, -) - -logger = logging.getLogger(__name__) - - -class Mercurial(VersionControl): - name = "hg" - dirname = ".hg" - repo_name = "clone" - schemes = ( - "hg+file", - "hg+http", - "hg+https", - "hg+ssh", - "hg+static-http", - ) - - @staticmethod - def get_base_rev_args(rev: str) -> List[str]: - return [f"--rev={rev}"] - - def fetch_new( - self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int - ) -> None: - rev_display = rev_options.to_display() - logger.info( - "Cloning hg %s%s to %s", - url, - rev_display, - display_path(dest), - ) - if verbosity <= 0: - flags: Tuple[str, ...] = ("--quiet",) - elif verbosity == 1: - flags = () - elif verbosity == 2: - flags = ("--verbose",) - else: - flags = ("--verbose", "--debug") - self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) - self.run_command( - make_command("update", *flags, rev_options.to_args()), - cwd=dest, - ) - - def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - repo_config = os.path.join(dest, self.dirname, "hgrc") - config = configparser.RawConfigParser() - try: - config.read(repo_config) - config.set("paths", "default", url.secret) - with open(repo_config, "w") as config_file: - config.write(config_file) - except (OSError, configparser.NoSectionError) as exc: - logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) - else: - cmd_args = make_command("update", "-q", rev_options.to_args()) - self.run_command(cmd_args, cwd=dest) - - def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - self.run_command(["pull", "-q"], cwd=dest) - cmd_args = make_command("update", "-q", rev_options.to_args()) - self.run_command(cmd_args, cwd=dest) - - @classmethod - def get_remote_url(cls, location: str) -> str: - url = cls.run_command( - ["showconfig", "paths.default"], - show_stdout=False, - stdout_only=True, - cwd=location, - ).strip() - if cls._is_local_repository(url): - url = path_to_url(url) - return url.strip() - - @classmethod - def get_revision(cls, location: str) -> str: - """ - Return the repository-local changeset revision number, as an integer. - """ - current_revision = cls.run_command( - ["parents", "--template={rev}"], - show_stdout=False, - stdout_only=True, - cwd=location, - ).strip() - return current_revision - - @classmethod - def get_requirement_revision(cls, location: str) -> str: - """ - Return the changeset identification hash, as a 40-character - hexadecimal string - """ - current_rev_hash = cls.run_command( - ["parents", "--template={node}"], - show_stdout=False, - stdout_only=True, - cwd=location, - ).strip() - return current_rev_hash - - @classmethod - def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: - """Always assume the versions don't match""" - return False - - @classmethod - def get_subdirectory(cls, location: str) -> Optional[str]: - """ - Return the path to Python project root, relative to the repo root. - Return None if the project root is in the repo root. - """ - # find the repo root - repo_root = cls.run_command( - ["root"], show_stdout=False, stdout_only=True, cwd=location - ).strip() - if not os.path.isabs(repo_root): - repo_root = os.path.abspath(os.path.join(location, repo_root)) - return find_path_to_project_root_from_repo_root(location, repo_root) - - @classmethod - def get_repository_root(cls, location: str) -> Optional[str]: - loc = super().get_repository_root(location) - if loc: - return loc - try: - r = cls.run_command( - ["root"], - cwd=location, - show_stdout=False, - stdout_only=True, - on_returncode="raise", - log_failed_cmd=False, - ) - except BadCommand: - logger.debug( - "could not determine if %s is under hg control " - "because hg is not available", - location, - ) - return None - except InstallationError: - return None - return os.path.normpath(r.rstrip("\r\n")) - - -vcs.register(Mercurial) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py deleted file mode 100644 index 16d93a6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py +++ /dev/null @@ -1,324 +0,0 @@ -import logging -import os -import re -from typing import List, Optional, Tuple - -from pip._internal.utils.misc import ( - HiddenText, - display_path, - is_console_interactive, - is_installable_dir, - split_auth_from_netloc, -) -from pip._internal.utils.subprocess import CommandArgs, make_command -from pip._internal.vcs.versioncontrol import ( - AuthInfo, - RemoteNotFoundError, - RevOptions, - VersionControl, - vcs, -) - -logger = logging.getLogger(__name__) - -_svn_xml_url_re = re.compile('url="([^"]+)"') -_svn_rev_re = re.compile(r'committed-rev="(\d+)"') -_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') -_svn_info_xml_url_re = re.compile(r"(.*)") - - -class Subversion(VersionControl): - name = "svn" - dirname = ".svn" - repo_name = "checkout" - schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") - - @classmethod - def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: - return True - - @staticmethod - def get_base_rev_args(rev: str) -> List[str]: - return ["-r", rev] - - @classmethod - def get_revision(cls, location: str) -> str: - """ - Return the maximum revision for all files under a given location - """ - # Note: taken from setuptools.command.egg_info - revision = 0 - - for base, dirs, _ in os.walk(location): - if cls.dirname not in dirs: - dirs[:] = [] - continue # no sense walking uncontrolled subdirs - dirs.remove(cls.dirname) - entries_fn = os.path.join(base, cls.dirname, "entries") - if not os.path.exists(entries_fn): - # FIXME: should we warn? - continue - - dirurl, localrev = cls._get_svn_url_rev(base) - - if base == location: - assert dirurl is not None - base = dirurl + "/" # save the root url - elif not dirurl or not dirurl.startswith(base): - dirs[:] = [] - continue # not part of the same svn tree, skip it - revision = max(revision, localrev) - return str(revision) - - @classmethod - def get_netloc_and_auth( - cls, netloc: str, scheme: str - ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: - """ - This override allows the auth information to be passed to svn via the - --username and --password options instead of via the URL. - """ - if scheme == "ssh": - # The --username and --password options can't be used for - # svn+ssh URLs, so keep the auth information in the URL. - return super().get_netloc_and_auth(netloc, scheme) - - return split_auth_from_netloc(netloc) - - @classmethod - def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: - # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it - url, rev, user_pass = super().get_url_rev_and_auth(url) - if url.startswith("ssh://"): - url = "svn+" + url - return url, rev, user_pass - - @staticmethod - def make_rev_args( - username: Optional[str], password: Optional[HiddenText] - ) -> CommandArgs: - extra_args: CommandArgs = [] - if username: - extra_args += ["--username", username] - if password: - extra_args += ["--password", password] - - return extra_args - - @classmethod - def get_remote_url(cls, location: str) -> str: - # In cases where the source is in a subdirectory, we have to look up in - # the location until we find a valid project root. - orig_location = location - while not is_installable_dir(location): - last_location = location - location = os.path.dirname(location) - if location == last_location: - # We've traversed up to the root of the filesystem without - # finding a Python project. - logger.warning( - "Could not find Python project for directory %s (tried all " - "parent directories)", - orig_location, - ) - raise RemoteNotFoundError - - url, _rev = cls._get_svn_url_rev(location) - if url is None: - raise RemoteNotFoundError - - return url - - @classmethod - def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: - from pip._internal.exceptions import InstallationError - - entries_path = os.path.join(location, cls.dirname, "entries") - if os.path.exists(entries_path): - with open(entries_path) as f: - data = f.read() - else: # subversion >= 1.7 does not have the 'entries' file - data = "" - - url = None - if data.startswith("8") or data.startswith("9") or data.startswith("10"): - entries = list(map(str.splitlines, data.split("\n\x0c\n"))) - del entries[0][0] # get rid of the '8' - url = entries[0][3] - revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] - elif data.startswith("= 1.7 - # Note that using get_remote_call_options is not necessary here - # because `svn info` is being run against a local directory. - # We don't need to worry about making sure interactive mode - # is being used to prompt for passwords, because passwords - # are only potentially needed for remote server requests. - xml = cls.run_command( - ["info", "--xml", location], - show_stdout=False, - stdout_only=True, - ) - match = _svn_info_xml_url_re.search(xml) - assert match is not None - url = match.group(1) - revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] - except InstallationError: - url, revs = None, [] - - if revs: - rev = max(revs) - else: - rev = 0 - - return url, rev - - @classmethod - def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: - """Always assume the versions don't match""" - return False - - def __init__(self, use_interactive: Optional[bool] = None) -> None: - if use_interactive is None: - use_interactive = is_console_interactive() - self.use_interactive = use_interactive - - # This member is used to cache the fetched version of the current - # ``svn`` client. - # Special value definitions: - # None: Not evaluated yet. - # Empty tuple: Could not parse version. - self._vcs_version: Optional[Tuple[int, ...]] = None - - super().__init__() - - def call_vcs_version(self) -> Tuple[int, ...]: - """Query the version of the currently installed Subversion client. - - :return: A tuple containing the parts of the version information or - ``()`` if the version returned from ``svn`` could not be parsed. - :raises: BadCommand: If ``svn`` is not installed. - """ - # Example versions: - # svn, version 1.10.3 (r1842928) - # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 - # svn, version 1.7.14 (r1542130) - # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu - # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) - # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 - version_prefix = "svn, version " - version = self.run_command(["--version"], show_stdout=False, stdout_only=True) - if not version.startswith(version_prefix): - return () - - version = version[len(version_prefix) :].split()[0] - version_list = version.partition("-")[0].split(".") - try: - parsed_version = tuple(map(int, version_list)) - except ValueError: - return () - - return parsed_version - - def get_vcs_version(self) -> Tuple[int, ...]: - """Return the version of the currently installed Subversion client. - - If the version of the Subversion client has already been queried, - a cached value will be used. - - :return: A tuple containing the parts of the version information or - ``()`` if the version returned from ``svn`` could not be parsed. - :raises: BadCommand: If ``svn`` is not installed. - """ - if self._vcs_version is not None: - # Use cached version, if available. - # If parsing the version failed previously (empty tuple), - # do not attempt to parse it again. - return self._vcs_version - - vcs_version = self.call_vcs_version() - self._vcs_version = vcs_version - return vcs_version - - def get_remote_call_options(self) -> CommandArgs: - """Return options to be used on calls to Subversion that contact the server. - - These options are applicable for the following ``svn`` subcommands used - in this class. - - - checkout - - switch - - update - - :return: A list of command line arguments to pass to ``svn``. - """ - if not self.use_interactive: - # --non-interactive switch is available since Subversion 0.14.4. - # Subversion < 1.8 runs in interactive mode by default. - return ["--non-interactive"] - - svn_version = self.get_vcs_version() - # By default, Subversion >= 1.8 runs in non-interactive mode if - # stdin is not a TTY. Since that is how pip invokes SVN, in - # call_subprocess(), pip must pass --force-interactive to ensure - # the user can be prompted for a password, if required. - # SVN added the --force-interactive option in SVN 1.8. Since - # e.g. RHEL/CentOS 7, which is supported until 2024, ships with - # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip - # can't safely add the option if the SVN version is < 1.8 (or unknown). - if svn_version >= (1, 8): - return ["--force-interactive"] - - return [] - - def fetch_new( - self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int - ) -> None: - rev_display = rev_options.to_display() - logger.info( - "Checking out %s%s to %s", - url, - rev_display, - display_path(dest), - ) - if verbosity <= 0: - flag = "--quiet" - else: - flag = "" - cmd_args = make_command( - "checkout", - flag, - self.get_remote_call_options(), - rev_options.to_args(), - url, - dest, - ) - self.run_command(cmd_args) - - def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - cmd_args = make_command( - "switch", - self.get_remote_call_options(), - rev_options.to_args(), - url, - dest, - ) - self.run_command(cmd_args) - - def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - cmd_args = make_command( - "update", - self.get_remote_call_options(), - rev_options.to_args(), - dest, - ) - self.run_command(cmd_args) - - -vcs.register(Subversion) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py deleted file mode 100644 index 46ca279..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py +++ /dev/null @@ -1,705 +0,0 @@ -"""Handles all VCS (version control) support""" - -import logging -import os -import shutil -import sys -import urllib.parse -from typing import ( - TYPE_CHECKING, - Any, - Dict, - Iterable, - Iterator, - List, - Mapping, - Optional, - Tuple, - Type, - Union, -) - -from pip._internal.cli.spinners import SpinnerInterface -from pip._internal.exceptions import BadCommand, InstallationError -from pip._internal.utils.misc import ( - HiddenText, - ask_path_exists, - backup_dir, - display_path, - hide_url, - hide_value, - is_installable_dir, - rmtree, -) -from pip._internal.utils.subprocess import ( - CommandArgs, - call_subprocess, - format_command_args, - make_command, -) -from pip._internal.utils.urls import get_url_scheme - -if TYPE_CHECKING: - # Literal was introduced in Python 3.8. - # - # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. - from typing import Literal - - -__all__ = ["vcs"] - - -logger = logging.getLogger(__name__) - -AuthInfo = Tuple[Optional[str], Optional[str]] - - -def is_url(name: str) -> bool: - """ - Return true if the name looks like a URL. - """ - scheme = get_url_scheme(name) - if scheme is None: - return False - return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes - - -def make_vcs_requirement_url( - repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None -) -> str: - """ - Return the URL for a VCS requirement. - - Args: - repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). - project_name: the (unescaped) project name. - """ - egg_project_name = project_name.replace("-", "_") - req = f"{repo_url}@{rev}#egg={egg_project_name}" - if subdir: - req += f"&subdirectory={subdir}" - - return req - - -def find_path_to_project_root_from_repo_root( - location: str, repo_root: str -) -> Optional[str]: - """ - Find the the Python project's root by searching up the filesystem from - `location`. Return the path to project root relative to `repo_root`. - Return None if the project root is `repo_root`, or cannot be found. - """ - # find project root. - orig_location = location - while not is_installable_dir(location): - last_location = location - location = os.path.dirname(location) - if location == last_location: - # We've traversed up to the root of the filesystem without - # finding a Python project. - logger.warning( - "Could not find a Python project for directory %s (tried all " - "parent directories)", - orig_location, - ) - return None - - if os.path.samefile(repo_root, location): - return None - - return os.path.relpath(location, repo_root) - - -class RemoteNotFoundError(Exception): - pass - - -class RemoteNotValidError(Exception): - def __init__(self, url: str): - super().__init__(url) - self.url = url - - -class RevOptions: - - """ - Encapsulates a VCS-specific revision to install, along with any VCS - install options. - - Instances of this class should be treated as if immutable. - """ - - def __init__( - self, - vc_class: Type["VersionControl"], - rev: Optional[str] = None, - extra_args: Optional[CommandArgs] = None, - ) -> None: - """ - Args: - vc_class: a VersionControl subclass. - rev: the name of the revision to install. - extra_args: a list of extra options. - """ - if extra_args is None: - extra_args = [] - - self.extra_args = extra_args - self.rev = rev - self.vc_class = vc_class - self.branch_name: Optional[str] = None - - def __repr__(self) -> str: - return f"" - - @property - def arg_rev(self) -> Optional[str]: - if self.rev is None: - return self.vc_class.default_arg_rev - - return self.rev - - def to_args(self) -> CommandArgs: - """ - Return the VCS-specific command arguments. - """ - args: CommandArgs = [] - rev = self.arg_rev - if rev is not None: - args += self.vc_class.get_base_rev_args(rev) - args += self.extra_args - - return args - - def to_display(self) -> str: - if not self.rev: - return "" - - return f" (to revision {self.rev})" - - def make_new(self, rev: str) -> "RevOptions": - """ - Make a copy of the current instance, but with a new rev. - - Args: - rev: the name of the revision for the new object. - """ - return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) - - -class VcsSupport: - _registry: Dict[str, "VersionControl"] = {} - schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] - - def __init__(self) -> None: - # Register more schemes with urlparse for various version control - # systems - urllib.parse.uses_netloc.extend(self.schemes) - super().__init__() - - def __iter__(self) -> Iterator[str]: - return self._registry.__iter__() - - @property - def backends(self) -> List["VersionControl"]: - return list(self._registry.values()) - - @property - def dirnames(self) -> List[str]: - return [backend.dirname for backend in self.backends] - - @property - def all_schemes(self) -> List[str]: - schemes: List[str] = [] - for backend in self.backends: - schemes.extend(backend.schemes) - return schemes - - def register(self, cls: Type["VersionControl"]) -> None: - if not hasattr(cls, "name"): - logger.warning("Cannot register VCS %s", cls.__name__) - return - if cls.name not in self._registry: - self._registry[cls.name] = cls() - logger.debug("Registered VCS backend: %s", cls.name) - - def unregister(self, name: str) -> None: - if name in self._registry: - del self._registry[name] - - def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: - """ - Return a VersionControl object if a repository of that type is found - at the given directory. - """ - vcs_backends = {} - for vcs_backend in self._registry.values(): - repo_path = vcs_backend.get_repository_root(location) - if not repo_path: - continue - logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) - vcs_backends[repo_path] = vcs_backend - - if not vcs_backends: - return None - - # Choose the VCS in the inner-most directory. Since all repository - # roots found here would be either `location` or one of its - # parents, the longest path should have the most path components, - # i.e. the backend representing the inner-most repository. - inner_most_repo_path = max(vcs_backends, key=len) - return vcs_backends[inner_most_repo_path] - - def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: - """ - Return a VersionControl object or None. - """ - for vcs_backend in self._registry.values(): - if scheme in vcs_backend.schemes: - return vcs_backend - return None - - def get_backend(self, name: str) -> Optional["VersionControl"]: - """ - Return a VersionControl object or None. - """ - name = name.lower() - return self._registry.get(name) - - -vcs = VcsSupport() - - -class VersionControl: - name = "" - dirname = "" - repo_name = "" - # List of supported schemes for this Version Control - schemes: Tuple[str, ...] = () - # Iterable of environment variable names to pass to call_subprocess(). - unset_environ: Tuple[str, ...] = () - default_arg_rev: Optional[str] = None - - @classmethod - def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: - """ - Return whether the vcs prefix (e.g. "git+") should be added to a - repository's remote url when used in a requirement. - """ - return not remote_url.lower().startswith(f"{cls.name}:") - - @classmethod - def get_subdirectory(cls, location: str) -> Optional[str]: - """ - Return the path to Python project root, relative to the repo root. - Return None if the project root is in the repo root. - """ - return None - - @classmethod - def get_requirement_revision(cls, repo_dir: str) -> str: - """ - Return the revision string that should be used in a requirement. - """ - return cls.get_revision(repo_dir) - - @classmethod - def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: - """ - Return the requirement string to use to redownload the files - currently at the given repository directory. - - Args: - project_name: the (unescaped) project name. - - The return value has a form similar to the following: - - {repository_url}@{revision}#egg={project_name} - """ - repo_url = cls.get_remote_url(repo_dir) - - if cls.should_add_vcs_url_prefix(repo_url): - repo_url = f"{cls.name}+{repo_url}" - - revision = cls.get_requirement_revision(repo_dir) - subdir = cls.get_subdirectory(repo_dir) - req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) - - return req - - @staticmethod - def get_base_rev_args(rev: str) -> List[str]: - """ - Return the base revision arguments for a vcs command. - - Args: - rev: the name of a revision to install. Cannot be None. - """ - raise NotImplementedError - - def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: - """ - Return true if the commit hash checked out at dest matches - the revision in url. - - Always return False, if the VCS does not support immutable commit - hashes. - - This method does not check if there are local uncommitted changes - in dest after checkout, as pip currently has no use case for that. - """ - return False - - @classmethod - def make_rev_options( - cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None - ) -> RevOptions: - """ - Return a RevOptions object. - - Args: - rev: the name of a revision to install. - extra_args: a list of extra options. - """ - return RevOptions(cls, rev, extra_args=extra_args) - - @classmethod - def _is_local_repository(cls, repo: str) -> bool: - """ - posix absolute paths start with os.path.sep, - win32 ones start with drive (like c:\\folder) - """ - drive, tail = os.path.splitdrive(repo) - return repo.startswith(os.path.sep) or bool(drive) - - @classmethod - def get_netloc_and_auth( - cls, netloc: str, scheme: str - ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: - """ - Parse the repository URL's netloc, and return the new netloc to use - along with auth information. - - Args: - netloc: the original repository URL netloc. - scheme: the repository URL's scheme without the vcs prefix. - - This is mainly for the Subversion class to override, so that auth - information can be provided via the --username and --password options - instead of through the URL. For other subclasses like Git without - such an option, auth information must stay in the URL. - - Returns: (netloc, (username, password)). - """ - return netloc, (None, None) - - @classmethod - def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: - """ - Parse the repository URL to use, and return the URL, revision, - and auth info to use. - - Returns: (url, rev, (username, password)). - """ - scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) - if "+" not in scheme: - raise ValueError( - f"Sorry, {url!r} is a malformed VCS url. " - "The format is +://, " - "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" - ) - # Remove the vcs prefix. - scheme = scheme.split("+", 1)[1] - netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) - rev = None - if "@" in path: - path, rev = path.rsplit("@", 1) - if not rev: - raise InstallationError( - f"The URL {url!r} has an empty revision (after @) " - "which is not supported. Include a revision after @ " - "or remove @ from the URL." - ) - url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) - return url, rev, user_pass - - @staticmethod - def make_rev_args( - username: Optional[str], password: Optional[HiddenText] - ) -> CommandArgs: - """ - Return the RevOptions "extra arguments" to use in obtain(). - """ - return [] - - def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: - """ - Return the URL and RevOptions object to use in obtain(), - as a tuple (url, rev_options). - """ - secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) - username, secret_password = user_pass - password: Optional[HiddenText] = None - if secret_password is not None: - password = hide_value(secret_password) - extra_args = self.make_rev_args(username, password) - rev_options = self.make_rev_options(rev, extra_args=extra_args) - - return hide_url(secret_url), rev_options - - @staticmethod - def normalize_url(url: str) -> str: - """ - Normalize a URL for comparison by unquoting it and removing any - trailing slash. - """ - return urllib.parse.unquote(url).rstrip("/") - - @classmethod - def compare_urls(cls, url1: str, url2: str) -> bool: - """ - Compare two repo URLs for identity, ignoring incidental differences. - """ - return cls.normalize_url(url1) == cls.normalize_url(url2) - - def fetch_new( - self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int - ) -> None: - """ - Fetch a revision from a repository, in the case that this is the - first fetch from the repository. - - Args: - dest: the directory to fetch the repository to. - rev_options: a RevOptions object. - verbosity: verbosity level. - """ - raise NotImplementedError - - def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - """ - Switch the repo at ``dest`` to point to ``URL``. - - Args: - rev_options: a RevOptions object. - """ - raise NotImplementedError - - def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: - """ - Update an already-existing repo to the given ``rev_options``. - - Args: - rev_options: a RevOptions object. - """ - raise NotImplementedError - - @classmethod - def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: - """ - Return whether the id of the current commit equals the given name. - - Args: - dest: the repository directory. - name: a string name. - """ - raise NotImplementedError - - def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: - """ - Install or update in editable mode the package represented by this - VersionControl object. - - :param dest: the repository directory in which to install or update. - :param url: the repository URL starting with a vcs prefix. - :param verbosity: verbosity level. - """ - url, rev_options = self.get_url_rev_options(url) - - if not os.path.exists(dest): - self.fetch_new(dest, url, rev_options, verbosity=verbosity) - return - - rev_display = rev_options.to_display() - if self.is_repository_directory(dest): - existing_url = self.get_remote_url(dest) - if self.compare_urls(existing_url, url.secret): - logger.debug( - "%s in %s exists, and has correct URL (%s)", - self.repo_name.title(), - display_path(dest), - url, - ) - if not self.is_commit_id_equal(dest, rev_options.rev): - logger.info( - "Updating %s %s%s", - display_path(dest), - self.repo_name, - rev_display, - ) - self.update(dest, url, rev_options) - else: - logger.info("Skipping because already up-to-date.") - return - - logger.warning( - "%s %s in %s exists with URL %s", - self.name, - self.repo_name, - display_path(dest), - existing_url, - ) - prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) - else: - logger.warning( - "Directory %s already exists, and is not a %s %s.", - dest, - self.name, - self.repo_name, - ) - # https://github.com/python/mypy/issues/1174 - prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore - - logger.warning( - "The plan is to install the %s repository %s", - self.name, - url, - ) - response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) - - if response == "a": - sys.exit(-1) - - if response == "w": - logger.warning("Deleting %s", display_path(dest)) - rmtree(dest) - self.fetch_new(dest, url, rev_options, verbosity=verbosity) - return - - if response == "b": - dest_dir = backup_dir(dest) - logger.warning("Backing up %s to %s", display_path(dest), dest_dir) - shutil.move(dest, dest_dir) - self.fetch_new(dest, url, rev_options, verbosity=verbosity) - return - - # Do nothing if the response is "i". - if response == "s": - logger.info( - "Switching %s %s to %s%s", - self.repo_name, - display_path(dest), - url, - rev_display, - ) - self.switch(dest, url, rev_options) - - def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: - """ - Clean up current location and download the url repository - (and vcs infos) into location - - :param url: the repository URL starting with a vcs prefix. - :param verbosity: verbosity level. - """ - if os.path.exists(location): - rmtree(location) - self.obtain(location, url=url, verbosity=verbosity) - - @classmethod - def get_remote_url(cls, location: str) -> str: - """ - Return the url used at location - - Raises RemoteNotFoundError if the repository does not have a remote - url configured. - """ - raise NotImplementedError - - @classmethod - def get_revision(cls, location: str) -> str: - """ - Return the current commit id of the files at the given location. - """ - raise NotImplementedError - - @classmethod - def run_command( - cls, - cmd: Union[List[str], CommandArgs], - show_stdout: bool = True, - cwd: Optional[str] = None, - on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", - extra_ok_returncodes: Optional[Iterable[int]] = None, - command_desc: Optional[str] = None, - extra_environ: Optional[Mapping[str, Any]] = None, - spinner: Optional[SpinnerInterface] = None, - log_failed_cmd: bool = True, - stdout_only: bool = False, - ) -> str: - """ - Run a VCS subcommand - This is simply a wrapper around call_subprocess that adds the VCS - command name, and checks that the VCS is available - """ - cmd = make_command(cls.name, *cmd) - if command_desc is None: - command_desc = format_command_args(cmd) - try: - return call_subprocess( - cmd, - show_stdout, - cwd, - on_returncode=on_returncode, - extra_ok_returncodes=extra_ok_returncodes, - command_desc=command_desc, - extra_environ=extra_environ, - unset_environ=cls.unset_environ, - spinner=spinner, - log_failed_cmd=log_failed_cmd, - stdout_only=stdout_only, - ) - except FileNotFoundError: - # errno.ENOENT = no such file or directory - # In other words, the VCS executable isn't available - raise BadCommand( - f"Cannot find command {cls.name!r} - do you have " - f"{cls.name!r} installed and in your PATH?" - ) - except PermissionError: - # errno.EACCES = Permission denied - # This error occurs, for instance, when the command is installed - # only for another user. So, the current user don't have - # permission to call the other user command. - raise BadCommand( - f"No permission to execute {cls.name!r} - install it " - f"locally, globally (ask admin), or check your PATH. " - f"See possible solutions at " - f"https://pip.pypa.io/en/latest/reference/pip_freeze/" - f"#fixing-permission-denied." - ) - - @classmethod - def is_repository_directory(cls, path: str) -> bool: - """ - Return whether a directory path is a repository directory. - """ - logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) - return os.path.exists(os.path.join(path, cls.dirname)) - - @classmethod - def get_repository_root(cls, location: str) -> Optional[str]: - """ - Return the "root" (top-level) directory controlled by the vcs, - or `None` if the directory is not in any. - - It is meant to be overridden to implement smarter detection - mechanisms for specific vcs. - - This can do more than is_repository_directory() alone. For - example, the Git override checks that Git is actually available. - """ - if cls.is_repository_directory(location): - return location - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py deleted file mode 100644 index b1debe3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py +++ /dev/null @@ -1,354 +0,0 @@ -"""Orchestrator for building wheels from InstallRequirements. -""" - -import logging -import os.path -import re -import shutil -from typing import Iterable, List, Optional, Tuple - -from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version -from pip._vendor.packaging.version import InvalidVersion, Version - -from pip._internal.cache import WheelCache -from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel -from pip._internal.metadata import FilesystemWheel, get_wheel_distribution -from pip._internal.models.link import Link -from pip._internal.models.wheel import Wheel -from pip._internal.operations.build.wheel import build_wheel_pep517 -from pip._internal.operations.build.wheel_editable import build_wheel_editable -from pip._internal.operations.build.wheel_legacy import build_wheel_legacy -from pip._internal.req.req_install import InstallRequirement -from pip._internal.utils.logging import indent_log -from pip._internal.utils.misc import ensure_dir, hash_file -from pip._internal.utils.setuptools_build import make_setuptools_clean_args -from pip._internal.utils.subprocess import call_subprocess -from pip._internal.utils.temp_dir import TempDirectory -from pip._internal.utils.urls import path_to_url -from pip._internal.vcs import vcs - -logger = logging.getLogger(__name__) - -_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) - -BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] - - -def _contains_egg_info(s: str) -> bool: - """Determine whether the string looks like an egg_info. - - :param s: The string to parse. E.g. foo-2.1 - """ - return bool(_egg_info_re.search(s)) - - -def _should_build( - req: InstallRequirement, - need_wheel: bool, -) -> bool: - """Return whether an InstallRequirement should be built into a wheel.""" - if req.constraint: - # never build requirements that are merely constraints - return False - if req.is_wheel: - if need_wheel: - logger.info( - "Skipping %s, due to already being wheel.", - req.name, - ) - return False - - if need_wheel: - # i.e. pip wheel, not pip install - return True - - # From this point, this concerns the pip install command only - # (need_wheel=False). - - if not req.source_dir: - return False - - if req.editable: - # we only build PEP 660 editable requirements - return req.supports_pyproject_editable() - - return True - - -def should_build_for_wheel_command( - req: InstallRequirement, -) -> bool: - return _should_build(req, need_wheel=True) - - -def should_build_for_install_command( - req: InstallRequirement, -) -> bool: - return _should_build(req, need_wheel=False) - - -def _should_cache( - req: InstallRequirement, -) -> Optional[bool]: - """ - Return whether a built InstallRequirement can be stored in the persistent - wheel cache, assuming the wheel cache is available, and _should_build() - has determined a wheel needs to be built. - """ - if req.editable or not req.source_dir: - # never cache editable requirements - return False - - if req.link and req.link.is_vcs: - # VCS checkout. Do not cache - # unless it points to an immutable commit hash. - assert not req.editable - assert req.source_dir - vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) - assert vcs_backend - if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): - return True - return False - - assert req.link - base, ext = req.link.splitext() - if _contains_egg_info(base): - return True - - # Otherwise, do not cache. - return False - - -def _get_cache_dir( - req: InstallRequirement, - wheel_cache: WheelCache, -) -> str: - """Return the persistent or temporary cache directory where the built - wheel need to be stored. - """ - cache_available = bool(wheel_cache.cache_dir) - assert req.link - if cache_available and _should_cache(req): - cache_dir = wheel_cache.get_path_for_link(req.link) - else: - cache_dir = wheel_cache.get_ephem_path_for_link(req.link) - return cache_dir - - -def _verify_one(req: InstallRequirement, wheel_path: str) -> None: - canonical_name = canonicalize_name(req.name or "") - w = Wheel(os.path.basename(wheel_path)) - if canonicalize_name(w.name) != canonical_name: - raise InvalidWheelFilename( - f"Wheel has unexpected file name: expected {canonical_name!r}, " - f"got {w.name!r}", - ) - dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) - dist_verstr = str(dist.version) - if canonicalize_version(dist_verstr) != canonicalize_version(w.version): - raise InvalidWheelFilename( - f"Wheel has unexpected file name: expected {dist_verstr!r}, " - f"got {w.version!r}", - ) - metadata_version_value = dist.metadata_version - if metadata_version_value is None: - raise UnsupportedWheel("Missing Metadata-Version") - try: - metadata_version = Version(metadata_version_value) - except InvalidVersion: - msg = f"Invalid Metadata-Version: {metadata_version_value}" - raise UnsupportedWheel(msg) - if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): - raise UnsupportedWheel( - f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" - ) - - -def _build_one( - req: InstallRequirement, - output_dir: str, - verify: bool, - build_options: List[str], - global_options: List[str], - editable: bool, -) -> Optional[str]: - """Build one wheel. - - :return: The filename of the built wheel, or None if the build failed. - """ - artifact = "editable" if editable else "wheel" - try: - ensure_dir(output_dir) - except OSError as e: - logger.warning( - "Building %s for %s failed: %s", - artifact, - req.name, - e, - ) - return None - - # Install build deps into temporary directory (PEP 518) - with req.build_env: - wheel_path = _build_one_inside_env( - req, output_dir, build_options, global_options, editable - ) - if wheel_path and verify: - try: - _verify_one(req, wheel_path) - except (InvalidWheelFilename, UnsupportedWheel) as e: - logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) - return None - return wheel_path - - -def _build_one_inside_env( - req: InstallRequirement, - output_dir: str, - build_options: List[str], - global_options: List[str], - editable: bool, -) -> Optional[str]: - with TempDirectory(kind="wheel") as temp_dir: - assert req.name - if req.use_pep517: - assert req.metadata_directory - assert req.pep517_backend - if global_options: - logger.warning( - "Ignoring --global-option when building %s using PEP 517", req.name - ) - if build_options: - logger.warning( - "Ignoring --build-option when building %s using PEP 517", req.name - ) - if editable: - wheel_path = build_wheel_editable( - name=req.name, - backend=req.pep517_backend, - metadata_directory=req.metadata_directory, - tempd=temp_dir.path, - ) - else: - wheel_path = build_wheel_pep517( - name=req.name, - backend=req.pep517_backend, - metadata_directory=req.metadata_directory, - tempd=temp_dir.path, - ) - else: - wheel_path = build_wheel_legacy( - name=req.name, - setup_py_path=req.setup_py_path, - source_dir=req.unpacked_source_directory, - global_options=global_options, - build_options=build_options, - tempd=temp_dir.path, - ) - - if wheel_path is not None: - wheel_name = os.path.basename(wheel_path) - dest_path = os.path.join(output_dir, wheel_name) - try: - wheel_hash, length = hash_file(wheel_path) - shutil.move(wheel_path, dest_path) - logger.info( - "Created wheel for %s: filename=%s size=%d sha256=%s", - req.name, - wheel_name, - length, - wheel_hash.hexdigest(), - ) - logger.info("Stored in directory: %s", output_dir) - return dest_path - except Exception as e: - logger.warning( - "Building wheel for %s failed: %s", - req.name, - e, - ) - # Ignore return, we can't do anything else useful. - if not req.use_pep517: - _clean_one_legacy(req, global_options) - return None - - -def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: - clean_args = make_setuptools_clean_args( - req.setup_py_path, - global_options=global_options, - ) - - logger.info("Running setup.py clean for %s", req.name) - try: - call_subprocess( - clean_args, command_desc="python setup.py clean", cwd=req.source_dir - ) - return True - except Exception: - logger.error("Failed cleaning build dir for %s", req.name) - return False - - -def build( - requirements: Iterable[InstallRequirement], - wheel_cache: WheelCache, - verify: bool, - build_options: List[str], - global_options: List[str], -) -> BuildResult: - """Build wheels. - - :return: The list of InstallRequirement that succeeded to build and - the list of InstallRequirement that failed to build. - """ - if not requirements: - return [], [] - - # Build the wheels. - logger.info( - "Building wheels for collected packages: %s", - ", ".join(req.name for req in requirements), # type: ignore - ) - - with indent_log(): - build_successes, build_failures = [], [] - for req in requirements: - assert req.name - cache_dir = _get_cache_dir(req, wheel_cache) - wheel_file = _build_one( - req, - cache_dir, - verify, - build_options, - global_options, - req.editable and req.permit_editable_wheels, - ) - if wheel_file: - # Record the download origin in the cache - if req.download_info is not None: - # download_info is guaranteed to be set because when we build an - # InstallRequirement it has been through the preparer before, but - # let's be cautious. - wheel_cache.record_download_origin(cache_dir, req.download_info) - # Update the link for this. - req.link = Link(path_to_url(wheel_file)) - req.local_file_path = req.link.file_path - assert req.link.is_wheel - build_successes.append(req) - else: - build_failures.append(req) - - # notify success/failure - if build_successes: - logger.info( - "Successfully built %s", - " ".join([req.name for req in build_successes]), # type: ignore - ) - if build_failures: - logger.info( - "Failed to build %s", - " ".join([req.name for req in build_failures]), # type: ignore - ) - # Return a list of requirements that failed to build - return build_successes, build_failures diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__init__.py deleted file mode 100644 index c1884ba..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__init__.py +++ /dev/null @@ -1,121 +0,0 @@ -""" -pip._vendor is for vendoring dependencies of pip to prevent needing pip to -depend on something external. - -Files inside of pip._vendor should be considered immutable and should only be -updated to versions from upstream. -""" -from __future__ import absolute_import - -import glob -import os.path -import sys - -# Downstream redistributors which have debundled our dependencies should also -# patch this value to be true. This will trigger the additional patching -# to cause things like "six" to be available as pip. -DEBUNDLED = False - -# By default, look in this directory for a bunch of .whl files which we will -# add to the beginning of sys.path before attempting to import anything. This -# is done to support downstream re-distributors like Debian and Fedora who -# wish to create their own Wheels for our dependencies to aid in debundling. -WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) - - -# Define a small helper function to alias our vendored modules to the real ones -# if the vendored ones do not exist. This idea of this was taken from -# https://github.com/kennethreitz/requests/pull/2567. -def vendored(modulename): - vendored_name = "{0}.{1}".format(__name__, modulename) - - try: - __import__(modulename, globals(), locals(), level=0) - except ImportError: - # We can just silently allow import failures to pass here. If we - # got to this point it means that ``import pip._vendor.whatever`` - # failed and so did ``import whatever``. Since we're importing this - # upfront in an attempt to alias imports, not erroring here will - # just mean we get a regular import error whenever pip *actually* - # tries to import one of these modules to use it, which actually - # gives us a better error message than we would have otherwise - # gotten. - pass - else: - sys.modules[vendored_name] = sys.modules[modulename] - base, head = vendored_name.rsplit(".", 1) - setattr(sys.modules[base], head, sys.modules[modulename]) - - -# If we're operating in a debundled setup, then we want to go ahead and trigger -# the aliasing of our vendored libraries as well as looking for wheels to add -# to our sys.path. This will cause all of this code to be a no-op typically -# however downstream redistributors can enable it in a consistent way across -# all platforms. -if DEBUNDLED: - # Actually look inside of WHEEL_DIR to find .whl files and add them to the - # front of our sys.path. - sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path - - # Actually alias all of our vendored dependencies. - vendored("cachecontrol") - vendored("certifi") - vendored("colorama") - vendored("distlib") - vendored("distro") - vendored("six") - vendored("six.moves") - vendored("six.moves.urllib") - vendored("six.moves.urllib.parse") - vendored("packaging") - vendored("packaging.version") - vendored("packaging.specifiers") - vendored("pep517") - vendored("pkg_resources") - vendored("platformdirs") - vendored("progress") - vendored("requests") - vendored("requests.exceptions") - vendored("requests.packages") - vendored("requests.packages.urllib3") - vendored("requests.packages.urllib3._collections") - vendored("requests.packages.urllib3.connection") - vendored("requests.packages.urllib3.connectionpool") - vendored("requests.packages.urllib3.contrib") - vendored("requests.packages.urllib3.contrib.ntlmpool") - vendored("requests.packages.urllib3.contrib.pyopenssl") - vendored("requests.packages.urllib3.exceptions") - vendored("requests.packages.urllib3.fields") - vendored("requests.packages.urllib3.filepost") - vendored("requests.packages.urllib3.packages") - vendored("requests.packages.urllib3.packages.ordered_dict") - vendored("requests.packages.urllib3.packages.six") - vendored("requests.packages.urllib3.packages.ssl_match_hostname") - vendored("requests.packages.urllib3.packages.ssl_match_hostname." - "_implementation") - vendored("requests.packages.urllib3.poolmanager") - vendored("requests.packages.urllib3.request") - vendored("requests.packages.urllib3.response") - vendored("requests.packages.urllib3.util") - vendored("requests.packages.urllib3.util.connection") - vendored("requests.packages.urllib3.util.request") - vendored("requests.packages.urllib3.util.response") - vendored("requests.packages.urllib3.util.retry") - vendored("requests.packages.urllib3.util.ssl_") - vendored("requests.packages.urllib3.util.timeout") - vendored("requests.packages.urllib3.util.url") - vendored("resolvelib") - vendored("rich") - vendored("rich.console") - vendored("rich.highlighter") - vendored("rich.logging") - vendored("rich.markup") - vendored("rich.progress") - vendored("rich.segment") - vendored("rich.style") - vendored("rich.text") - vendored("rich.traceback") - vendored("tenacity") - vendored("tomli") - vendored("truststore") - vendored("urllib3") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fc4dc17..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/six.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/six.cpython-311.pyc deleted file mode 100644 index d783a7d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/six.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc deleted file mode 100644 index 5fae766..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py deleted file mode 100644 index 4d20bc9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 - -"""CacheControl import Interface. - -Make it easy to import from cachecontrol without long namespaces. -""" -__author__ = "Eric Larson" -__email__ = "eric@ionrock.org" -__version__ = "0.13.1" - -from pip._vendor.cachecontrol.adapter import CacheControlAdapter -from pip._vendor.cachecontrol.controller import CacheController -from pip._vendor.cachecontrol.wrapper import CacheControl - -__all__ = [ - "__author__", - "__email__", - "__version__", - "CacheControlAdapter", - "CacheController", - "CacheControl", -] - -import logging - -logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ec3883b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc deleted file mode 100644 index 43e8219..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc deleted file mode 100644 index 0600d9b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index bb620c7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc deleted file mode 100644 index 080864d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc deleted file mode 100644 index 3730643..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc deleted file mode 100644 index db61cb3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc deleted file mode 100644 index a250eae..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc deleted file mode 100644 index 15b528a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py deleted file mode 100644 index 2c84208..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py +++ /dev/null @@ -1,70 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import logging -from argparse import ArgumentParser -from typing import TYPE_CHECKING - -from pip._vendor import requests - -from pip._vendor.cachecontrol.adapter import CacheControlAdapter -from pip._vendor.cachecontrol.cache import DictCache -from pip._vendor.cachecontrol.controller import logger - -if TYPE_CHECKING: - from argparse import Namespace - - from pip._vendor.cachecontrol.controller import CacheController - - -def setup_logging() -> None: - logger.setLevel(logging.DEBUG) - handler = logging.StreamHandler() - logger.addHandler(handler) - - -def get_session() -> requests.Session: - adapter = CacheControlAdapter( - DictCache(), cache_etags=True, serializer=None, heuristic=None - ) - sess = requests.Session() - sess.mount("http://", adapter) - sess.mount("https://", adapter) - - sess.cache_controller = adapter.controller # type: ignore[attr-defined] - return sess - - -def get_args() -> Namespace: - parser = ArgumentParser() - parser.add_argument("url", help="The URL to try and cache") - return parser.parse_args() - - -def main() -> None: - args = get_args() - sess = get_session() - - # Make a request to get a response - resp = sess.get(args.url) - - # Turn on logging - setup_logging() - - # try setting the cache - cache_controller: CacheController = ( - sess.cache_controller # type: ignore[attr-defined] - ) - cache_controller.cache_response(resp.request, resp.raw) - - # Now try to get it - if cache_controller.cached_request(resp.request): - print("Cached!") - else: - print("Not cached :(") - - -if __name__ == "__main__": - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py deleted file mode 100644 index 3e83e30..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py +++ /dev/null @@ -1,161 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import functools -import types -import zlib -from typing import TYPE_CHECKING, Any, Collection, Mapping - -from pip._vendor.requests.adapters import HTTPAdapter - -from pip._vendor.cachecontrol.cache import DictCache -from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController -from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper - -if TYPE_CHECKING: - from pip._vendor.requests import PreparedRequest, Response - from pip._vendor.urllib3 import HTTPResponse - - from pip._vendor.cachecontrol.cache import BaseCache - from pip._vendor.cachecontrol.heuristics import BaseHeuristic - from pip._vendor.cachecontrol.serialize import Serializer - - -class CacheControlAdapter(HTTPAdapter): - invalidating_methods = {"PUT", "PATCH", "DELETE"} - - def __init__( - self, - cache: BaseCache | None = None, - cache_etags: bool = True, - controller_class: type[CacheController] | None = None, - serializer: Serializer | None = None, - heuristic: BaseHeuristic | None = None, - cacheable_methods: Collection[str] | None = None, - *args: Any, - **kw: Any, - ) -> None: - super().__init__(*args, **kw) - self.cache = DictCache() if cache is None else cache - self.heuristic = heuristic - self.cacheable_methods = cacheable_methods or ("GET",) - - controller_factory = controller_class or CacheController - self.controller = controller_factory( - self.cache, cache_etags=cache_etags, serializer=serializer - ) - - def send( - self, - request: PreparedRequest, - stream: bool = False, - timeout: None | float | tuple[float, float] | tuple[float, None] = None, - verify: bool | str = True, - cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, - proxies: Mapping[str, str] | None = None, - cacheable_methods: Collection[str] | None = None, - ) -> Response: - """ - Send a request. Use the request information to see if it - exists in the cache and cache the response if we need to and can. - """ - cacheable = cacheable_methods or self.cacheable_methods - if request.method in cacheable: - try: - cached_response = self.controller.cached_request(request) - except zlib.error: - cached_response = None - if cached_response: - return self.build_response(request, cached_response, from_cache=True) - - # check for etags and add headers if appropriate - request.headers.update(self.controller.conditional_headers(request)) - - resp = super().send(request, stream, timeout, verify, cert, proxies) - - return resp - - def build_response( - self, - request: PreparedRequest, - response: HTTPResponse, - from_cache: bool = False, - cacheable_methods: Collection[str] | None = None, - ) -> Response: - """ - Build a response by making a request or using the cache. - - This will end up calling send and returning a potentially - cached response - """ - cacheable = cacheable_methods or self.cacheable_methods - if not from_cache and request.method in cacheable: - # Check for any heuristics that might update headers - # before trying to cache. - if self.heuristic: - response = self.heuristic.apply(response) - - # apply any expiration heuristics - if response.status == 304: - # We must have sent an ETag request. This could mean - # that we've been expired already or that we simply - # have an etag. In either case, we want to try and - # update the cache if that is the case. - cached_response = self.controller.update_cached_response( - request, response - ) - - if cached_response is not response: - from_cache = True - - # We are done with the server response, read a - # possible response body (compliant servers will - # not return one, but we cannot be 100% sure) and - # release the connection back to the pool. - response.read(decode_content=False) - response.release_conn() - - response = cached_response - - # We always cache the 301 responses - elif int(response.status) in PERMANENT_REDIRECT_STATUSES: - self.controller.cache_response(request, response) - else: - # Wrap the response file with a wrapper that will cache the - # response when the stream has been consumed. - response._fp = CallbackFileWrapper( # type: ignore[attr-defined] - response._fp, # type: ignore[attr-defined] - functools.partial( - self.controller.cache_response, request, response - ), - ) - if response.chunked: - super_update_chunk_length = response._update_chunk_length # type: ignore[attr-defined] - - def _update_chunk_length(self: HTTPResponse) -> None: - super_update_chunk_length() - if self.chunk_left == 0: - self._fp._close() # type: ignore[attr-defined] - - response._update_chunk_length = types.MethodType( # type: ignore[attr-defined] - _update_chunk_length, response - ) - - resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] - - # See if we should invalidate the cache. - if request.method in self.invalidating_methods and resp.ok: - assert request.url is not None - cache_url = self.controller.cache_url(request.url) - self.cache.delete(cache_url) - - # Give the request a from_cache attr to let people use it - resp.from_cache = from_cache # type: ignore[attr-defined] - - return resp - - def close(self) -> None: - self.cache.close() - super().close() # type: ignore[no-untyped-call] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py deleted file mode 100644 index 3293b00..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py +++ /dev/null @@ -1,74 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 - -""" -The cache object API for implementing caches. The default is a thread -safe in-memory dictionary. -""" -from __future__ import annotations - -from threading import Lock -from typing import IO, TYPE_CHECKING, MutableMapping - -if TYPE_CHECKING: - from datetime import datetime - - -class BaseCache: - def get(self, key: str) -> bytes | None: - raise NotImplementedError() - - def set( - self, key: str, value: bytes, expires: int | datetime | None = None - ) -> None: - raise NotImplementedError() - - def delete(self, key: str) -> None: - raise NotImplementedError() - - def close(self) -> None: - pass - - -class DictCache(BaseCache): - def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: - self.lock = Lock() - self.data = init_dict or {} - - def get(self, key: str) -> bytes | None: - return self.data.get(key, None) - - def set( - self, key: str, value: bytes, expires: int | datetime | None = None - ) -> None: - with self.lock: - self.data.update({key: value}) - - def delete(self, key: str) -> None: - with self.lock: - if key in self.data: - self.data.pop(key) - - -class SeparateBodyBaseCache(BaseCache): - """ - In this variant, the body is not stored mixed in with the metadata, but is - passed in (as a bytes-like object) in a separate call to ``set_body()``. - - That is, the expected interaction pattern is:: - - cache.set(key, serialized_metadata) - cache.set_body(key) - - Similarly, the body should be loaded separately via ``get_body()``. - """ - - def set_body(self, key: str, body: bytes) -> None: - raise NotImplementedError() - - def get_body(self, key: str) -> IO[bytes] | None: - """ - Return the body as file-like object. - """ - raise NotImplementedError() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py deleted file mode 100644 index 24ff469..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 - -from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache -from pip._vendor.cachecontrol.caches.redis_cache import RedisCache - -__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index cb5db97..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc deleted file mode 100644 index 4db7d45..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc deleted file mode 100644 index dad7f57..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py deleted file mode 100644 index 1fd2801..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +++ /dev/null @@ -1,181 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import hashlib -import os -from textwrap import dedent -from typing import IO, TYPE_CHECKING - -from pip._vendor.cachecontrol.cache import BaseCache, SeparateBodyBaseCache -from pip._vendor.cachecontrol.controller import CacheController - -if TYPE_CHECKING: - from datetime import datetime - - from filelock import BaseFileLock - - -def _secure_open_write(filename: str, fmode: int) -> IO[bytes]: - # We only want to write to this file, so open it in write only mode - flags = os.O_WRONLY - - # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only - # will open *new* files. - # We specify this because we want to ensure that the mode we pass is the - # mode of the file. - flags |= os.O_CREAT | os.O_EXCL - - # Do not follow symlinks to prevent someone from making a symlink that - # we follow and insecurely open a cache file. - if hasattr(os, "O_NOFOLLOW"): - flags |= os.O_NOFOLLOW - - # On Windows we'll mark this file as binary - if hasattr(os, "O_BINARY"): - flags |= os.O_BINARY - - # Before we open our file, we want to delete any existing file that is - # there - try: - os.remove(filename) - except OSError: - # The file must not exist already, so we can just skip ahead to opening - pass - - # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a - # race condition happens between the os.remove and this line, that an - # error will be raised. Because we utilize a lockfile this should only - # happen if someone is attempting to attack us. - fd = os.open(filename, flags, fmode) - try: - return os.fdopen(fd, "wb") - - except: - # An error occurred wrapping our FD in a file object - os.close(fd) - raise - - -class _FileCacheMixin: - """Shared implementation for both FileCache variants.""" - - def __init__( - self, - directory: str, - forever: bool = False, - filemode: int = 0o0600, - dirmode: int = 0o0700, - lock_class: type[BaseFileLock] | None = None, - ) -> None: - try: - if lock_class is None: - from filelock import FileLock - - lock_class = FileLock - except ImportError: - notice = dedent( - """ - NOTE: In order to use the FileCache you must have - filelock installed. You can install it via pip: - pip install filelock - """ - ) - raise ImportError(notice) - - self.directory = directory - self.forever = forever - self.filemode = filemode - self.dirmode = dirmode - self.lock_class = lock_class - - @staticmethod - def encode(x: str) -> str: - return hashlib.sha224(x.encode()).hexdigest() - - def _fn(self, name: str) -> str: - # NOTE: This method should not change as some may depend on it. - # See: https://github.com/ionrock/cachecontrol/issues/63 - hashed = self.encode(name) - parts = list(hashed[:5]) + [hashed] - return os.path.join(self.directory, *parts) - - def get(self, key: str) -> bytes | None: - name = self._fn(key) - try: - with open(name, "rb") as fh: - return fh.read() - - except FileNotFoundError: - return None - - def set( - self, key: str, value: bytes, expires: int | datetime | None = None - ) -> None: - name = self._fn(key) - self._write(name, value) - - def _write(self, path: str, data: bytes) -> None: - """ - Safely write the data to the given path. - """ - # Make sure the directory exists - try: - os.makedirs(os.path.dirname(path), self.dirmode) - except OSError: - pass - - with self.lock_class(path + ".lock"): - # Write our actual file - with _secure_open_write(path, self.filemode) as fh: - fh.write(data) - - def _delete(self, key: str, suffix: str) -> None: - name = self._fn(key) + suffix - if not self.forever: - try: - os.remove(name) - except FileNotFoundError: - pass - - -class FileCache(_FileCacheMixin, BaseCache): - """ - Traditional FileCache: body is stored in memory, so not suitable for large - downloads. - """ - - def delete(self, key: str) -> None: - self._delete(key, "") - - -class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): - """ - Memory-efficient FileCache: body is stored in a separate file, reducing - peak memory usage. - """ - - def get_body(self, key: str) -> IO[bytes] | None: - name = self._fn(key) + ".body" - try: - return open(name, "rb") - except FileNotFoundError: - return None - - def set_body(self, key: str, body: bytes) -> None: - name = self._fn(key) + ".body" - self._write(name, body) - - def delete(self, key: str) -> None: - self._delete(key, "") - self._delete(key, ".body") - - -def url_to_file_path(url: str, filecache: FileCache) -> str: - """Return the file cache path based on the URL. - - This does not ensure the file exists! - """ - key = CacheController.cache_url(url) - return filecache._fn(key) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py deleted file mode 100644 index f4f68c4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +++ /dev/null @@ -1,48 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - - -from datetime import datetime, timezone -from typing import TYPE_CHECKING - -from pip._vendor.cachecontrol.cache import BaseCache - -if TYPE_CHECKING: - from redis import Redis - - -class RedisCache(BaseCache): - def __init__(self, conn: Redis[bytes]) -> None: - self.conn = conn - - def get(self, key: str) -> bytes | None: - return self.conn.get(key) - - def set( - self, key: str, value: bytes, expires: int | datetime | None = None - ) -> None: - if not expires: - self.conn.set(key, value) - elif isinstance(expires, datetime): - now_utc = datetime.now(timezone.utc) - if expires.tzinfo is None: - now_utc = now_utc.replace(tzinfo=None) - delta = expires - now_utc - self.conn.setex(key, int(delta.total_seconds()), value) - else: - self.conn.setex(key, expires, value) - - def delete(self, key: str) -> None: - self.conn.delete(key) - - def clear(self) -> None: - """Helper for clearing all the keys in a database. Use with - caution!""" - for key in self.conn.keys(): - self.conn.delete(key) - - def close(self) -> None: - """Redis uses connection pooling, no need to close the connection.""" - pass diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py deleted file mode 100644 index 586b9f9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py +++ /dev/null @@ -1,494 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 - -""" -The httplib2 algorithms ported for use with requests. -""" -from __future__ import annotations - -import calendar -import logging -import re -import time -from email.utils import parsedate_tz -from typing import TYPE_CHECKING, Collection, Mapping - -from pip._vendor.requests.structures import CaseInsensitiveDict - -from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache -from pip._vendor.cachecontrol.serialize import Serializer - -if TYPE_CHECKING: - from typing import Literal - - from pip._vendor.requests import PreparedRequest - from pip._vendor.urllib3 import HTTPResponse - - from pip._vendor.cachecontrol.cache import BaseCache - -logger = logging.getLogger(__name__) - -URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") - -PERMANENT_REDIRECT_STATUSES = (301, 308) - - -def parse_uri(uri: str) -> tuple[str, str, str, str, str]: - """Parses a URI using the regex given in Appendix B of RFC 3986. - - (scheme, authority, path, query, fragment) = parse_uri(uri) - """ - match = URI.match(uri) - assert match is not None - groups = match.groups() - return (groups[1], groups[3], groups[4], groups[6], groups[8]) - - -class CacheController: - """An interface to see if request should cached or not.""" - - def __init__( - self, - cache: BaseCache | None = None, - cache_etags: bool = True, - serializer: Serializer | None = None, - status_codes: Collection[int] | None = None, - ): - self.cache = DictCache() if cache is None else cache - self.cache_etags = cache_etags - self.serializer = serializer or Serializer() - self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) - - @classmethod - def _urlnorm(cls, uri: str) -> str: - """Normalize the URL to create a safe key for the cache""" - (scheme, authority, path, query, fragment) = parse_uri(uri) - if not scheme or not authority: - raise Exception("Only absolute URIs are allowed. uri = %s" % uri) - - scheme = scheme.lower() - authority = authority.lower() - - if not path: - path = "/" - - # Could do syntax based normalization of the URI before - # computing the digest. See Section 6.2.2 of Std 66. - request_uri = query and "?".join([path, query]) or path - defrag_uri = scheme + "://" + authority + request_uri - - return defrag_uri - - @classmethod - def cache_url(cls, uri: str) -> str: - return cls._urlnorm(uri) - - def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: - known_directives = { - # https://tools.ietf.org/html/rfc7234#section-5.2 - "max-age": (int, True), - "max-stale": (int, False), - "min-fresh": (int, True), - "no-cache": (None, False), - "no-store": (None, False), - "no-transform": (None, False), - "only-if-cached": (None, False), - "must-revalidate": (None, False), - "public": (None, False), - "private": (None, False), - "proxy-revalidate": (None, False), - "s-maxage": (int, True), - } - - cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) - - retval: dict[str, int | None] = {} - - for cc_directive in cc_headers.split(","): - if not cc_directive.strip(): - continue - - parts = cc_directive.split("=", 1) - directive = parts[0].strip() - - try: - typ, required = known_directives[directive] - except KeyError: - logger.debug("Ignoring unknown cache-control directive: %s", directive) - continue - - if not typ or not required: - retval[directive] = None - if typ: - try: - retval[directive] = typ(parts[1].strip()) - except IndexError: - if required: - logger.debug( - "Missing value for cache-control " "directive: %s", - directive, - ) - except ValueError: - logger.debug( - "Invalid value for cache-control directive " "%s, must be %s", - directive, - typ.__name__, - ) - - return retval - - def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: - """ - Load a cached response, or return None if it's not available. - """ - cache_url = request.url - assert cache_url is not None - cache_data = self.cache.get(cache_url) - if cache_data is None: - logger.debug("No cache entry available") - return None - - if isinstance(self.cache, SeparateBodyBaseCache): - body_file = self.cache.get_body(cache_url) - else: - body_file = None - - result = self.serializer.loads(request, cache_data, body_file) - if result is None: - logger.warning("Cache entry deserialization failed, entry ignored") - return result - - def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: - """ - Return a cached response if it exists in the cache, otherwise - return False. - """ - assert request.url is not None - cache_url = self.cache_url(request.url) - logger.debug('Looking up "%s" in the cache', cache_url) - cc = self.parse_cache_control(request.headers) - - # Bail out if the request insists on fresh data - if "no-cache" in cc: - logger.debug('Request header has "no-cache", cache bypassed') - return False - - if "max-age" in cc and cc["max-age"] == 0: - logger.debug('Request header has "max_age" as 0, cache bypassed') - return False - - # Check whether we can load the response from the cache: - resp = self._load_from_cache(request) - if not resp: - return False - - # If we have a cached permanent redirect, return it immediately. We - # don't need to test our response for other headers b/c it is - # intrinsically "cacheable" as it is Permanent. - # - # See: - # https://tools.ietf.org/html/rfc7231#section-6.4.2 - # - # Client can try to refresh the value by repeating the request - # with cache busting headers as usual (ie no-cache). - if int(resp.status) in PERMANENT_REDIRECT_STATUSES: - msg = ( - "Returning cached permanent redirect response " - "(ignoring date and etag information)" - ) - logger.debug(msg) - return resp - - headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) - if not headers or "date" not in headers: - if "etag" not in headers: - # Without date or etag, the cached response can never be used - # and should be deleted. - logger.debug("Purging cached response: no date or etag") - self.cache.delete(cache_url) - logger.debug("Ignoring cached response: no date") - return False - - now = time.time() - time_tuple = parsedate_tz(headers["date"]) - assert time_tuple is not None - date = calendar.timegm(time_tuple[:6]) - current_age = max(0, now - date) - logger.debug("Current age based on date: %i", current_age) - - # TODO: There is an assumption that the result will be a - # urllib3 response object. This may not be best since we - # could probably avoid instantiating or constructing the - # response until we know we need it. - resp_cc = self.parse_cache_control(headers) - - # determine freshness - freshness_lifetime = 0 - - # Check the max-age pragma in the cache control header - max_age = resp_cc.get("max-age") - if max_age is not None: - freshness_lifetime = max_age - logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) - - # If there isn't a max-age, check for an expires header - elif "expires" in headers: - expires = parsedate_tz(headers["expires"]) - if expires is not None: - expire_time = calendar.timegm(expires[:6]) - date - freshness_lifetime = max(0, expire_time) - logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) - - # Determine if we are setting freshness limit in the - # request. Note, this overrides what was in the response. - max_age = cc.get("max-age") - if max_age is not None: - freshness_lifetime = max_age - logger.debug( - "Freshness lifetime from request max-age: %i", freshness_lifetime - ) - - min_fresh = cc.get("min-fresh") - if min_fresh is not None: - # adjust our current age by our min fresh - current_age += min_fresh - logger.debug("Adjusted current age from min-fresh: %i", current_age) - - # Return entry if it is fresh enough - if freshness_lifetime > current_age: - logger.debug('The response is "fresh", returning cached response') - logger.debug("%i > %i", freshness_lifetime, current_age) - return resp - - # we're not fresh. If we don't have an Etag, clear it out - if "etag" not in headers: - logger.debug('The cached response is "stale" with no etag, purging') - self.cache.delete(cache_url) - - # return the original handler - return False - - def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: - resp = self._load_from_cache(request) - new_headers = {} - - if resp: - headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) - - if "etag" in headers: - new_headers["If-None-Match"] = headers["ETag"] - - if "last-modified" in headers: - new_headers["If-Modified-Since"] = headers["Last-Modified"] - - return new_headers - - def _cache_set( - self, - cache_url: str, - request: PreparedRequest, - response: HTTPResponse, - body: bytes | None = None, - expires_time: int | None = None, - ) -> None: - """ - Store the data in the cache. - """ - if isinstance(self.cache, SeparateBodyBaseCache): - # We pass in the body separately; just put a placeholder empty - # string in the metadata. - self.cache.set( - cache_url, - self.serializer.dumps(request, response, b""), - expires=expires_time, - ) - # body is None can happen when, for example, we're only updating - # headers, as is the case in update_cached_response(). - if body is not None: - self.cache.set_body(cache_url, body) - else: - self.cache.set( - cache_url, - self.serializer.dumps(request, response, body), - expires=expires_time, - ) - - def cache_response( - self, - request: PreparedRequest, - response: HTTPResponse, - body: bytes | None = None, - status_codes: Collection[int] | None = None, - ) -> None: - """ - Algorithm for caching requests. - - This assumes a requests Response object. - """ - # From httplib2: Don't cache 206's since we aren't going to - # handle byte range requests - cacheable_status_codes = status_codes or self.cacheable_status_codes - if response.status not in cacheable_status_codes: - logger.debug( - "Status code %s not in %s", response.status, cacheable_status_codes - ) - return - - response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( - response.headers - ) - - if "date" in response_headers: - time_tuple = parsedate_tz(response_headers["date"]) - assert time_tuple is not None - date = calendar.timegm(time_tuple[:6]) - else: - date = 0 - - # If we've been given a body, our response has a Content-Length, that - # Content-Length is valid then we can check to see if the body we've - # been given matches the expected size, and if it doesn't we'll just - # skip trying to cache it. - if ( - body is not None - and "content-length" in response_headers - and response_headers["content-length"].isdigit() - and int(response_headers["content-length"]) != len(body) - ): - return - - cc_req = self.parse_cache_control(request.headers) - cc = self.parse_cache_control(response_headers) - - assert request.url is not None - cache_url = self.cache_url(request.url) - logger.debug('Updating cache with response from "%s"', cache_url) - - # Delete it from the cache if we happen to have it stored there - no_store = False - if "no-store" in cc: - no_store = True - logger.debug('Response header has "no-store"') - if "no-store" in cc_req: - no_store = True - logger.debug('Request header has "no-store"') - if no_store and self.cache.get(cache_url): - logger.debug('Purging existing cache entry to honor "no-store"') - self.cache.delete(cache_url) - if no_store: - return - - # https://tools.ietf.org/html/rfc7234#section-4.1: - # A Vary header field-value of "*" always fails to match. - # Storing such a response leads to a deserialization warning - # during cache lookup and is not allowed to ever be served, - # so storing it can be avoided. - if "*" in response_headers.get("vary", ""): - logger.debug('Response header has "Vary: *"') - return - - # If we've been given an etag, then keep the response - if self.cache_etags and "etag" in response_headers: - expires_time = 0 - if response_headers.get("expires"): - expires = parsedate_tz(response_headers["expires"]) - if expires is not None: - expires_time = calendar.timegm(expires[:6]) - date - - expires_time = max(expires_time, 14 * 86400) - - logger.debug(f"etag object cached for {expires_time} seconds") - logger.debug("Caching due to etag") - self._cache_set(cache_url, request, response, body, expires_time) - - # Add to the cache any permanent redirects. We do this before looking - # that the Date headers. - elif int(response.status) in PERMANENT_REDIRECT_STATUSES: - logger.debug("Caching permanent redirect") - self._cache_set(cache_url, request, response, b"") - - # Add to the cache if the response headers demand it. If there - # is no date header then we can't do anything about expiring - # the cache. - elif "date" in response_headers: - time_tuple = parsedate_tz(response_headers["date"]) - assert time_tuple is not None - date = calendar.timegm(time_tuple[:6]) - # cache when there is a max-age > 0 - max_age = cc.get("max-age") - if max_age is not None and max_age > 0: - logger.debug("Caching b/c date exists and max-age > 0") - expires_time = max_age - self._cache_set( - cache_url, - request, - response, - body, - expires_time, - ) - - # If the request can expire, it means we should cache it - # in the meantime. - elif "expires" in response_headers: - if response_headers["expires"]: - expires = parsedate_tz(response_headers["expires"]) - if expires is not None: - expires_time = calendar.timegm(expires[:6]) - date - else: - expires_time = None - - logger.debug( - "Caching b/c of expires header. expires in {} seconds".format( - expires_time - ) - ) - self._cache_set( - cache_url, - request, - response, - body, - expires_time, - ) - - def update_cached_response( - self, request: PreparedRequest, response: HTTPResponse - ) -> HTTPResponse: - """On a 304 we will get a new set of headers that we want to - update our cached value with, assuming we have one. - - This should only ever be called when we've sent an ETag and - gotten a 304 as the response. - """ - assert request.url is not None - cache_url = self.cache_url(request.url) - cached_response = self._load_from_cache(request) - - if not cached_response: - # we didn't have a cached response - return response - - # Lets update our headers with the headers from the new request: - # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 - # - # The server isn't supposed to send headers that would make - # the cached body invalid. But... just in case, we'll be sure - # to strip out ones we know that might be problmatic due to - # typical assumptions. - excluded_headers = ["content-length"] - - cached_response.headers.update( - { - k: v - for k, v in response.headers.items() # type: ignore[no-untyped-call] - if k.lower() not in excluded_headers - } - ) - - # we want a 200 b/c we have content via the cache - cached_response.status = 200 - - # update our cache - self._cache_set(cache_url, request, cached_response) - - return cached_response diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py deleted file mode 100644 index 2514390..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py +++ /dev/null @@ -1,119 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import mmap -from tempfile import NamedTemporaryFile -from typing import TYPE_CHECKING, Any, Callable - -if TYPE_CHECKING: - from http.client import HTTPResponse - - -class CallbackFileWrapper: - """ - Small wrapper around a fp object which will tee everything read into a - buffer, and when that file is closed it will execute a callback with the - contents of that buffer. - - All attributes are proxied to the underlying file object. - - This class uses members with a double underscore (__) leading prefix so as - not to accidentally shadow an attribute. - - The data is stored in a temporary file until it is all available. As long - as the temporary files directory is disk-based (sometimes it's a - memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory - pressure is high. For small files the disk usually won't be used at all, - it'll all be in the filesystem memory cache, so there should be no - performance impact. - """ - - def __init__( - self, fp: HTTPResponse, callback: Callable[[bytes], None] | None - ) -> None: - self.__buf = NamedTemporaryFile("rb+", delete=True) - self.__fp = fp - self.__callback = callback - - def __getattr__(self, name: str) -> Any: - # The vaguaries of garbage collection means that self.__fp is - # not always set. By using __getattribute__ and the private - # name[0] allows looking up the attribute value and raising an - # AttributeError when it doesn't exist. This stop thigns from - # infinitely recursing calls to getattr in the case where - # self.__fp hasn't been set. - # - # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers - fp = self.__getattribute__("_CallbackFileWrapper__fp") - return getattr(fp, name) - - def __is_fp_closed(self) -> bool: - try: - return self.__fp.fp is None - - except AttributeError: - pass - - try: - closed: bool = self.__fp.closed - return closed - - except AttributeError: - pass - - # We just don't cache it then. - # TODO: Add some logging here... - return False - - def _close(self) -> None: - if self.__callback: - if self.__buf.tell() == 0: - # Empty file: - result = b"" - else: - # Return the data without actually loading it into memory, - # relying on Python's buffer API and mmap(). mmap() just gives - # a view directly into the filesystem's memory cache, so it - # doesn't result in duplicate memory use. - self.__buf.seek(0, 0) - result = memoryview( - mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) - ) - self.__callback(result) - - # We assign this to None here, because otherwise we can get into - # really tricky problems where the CPython interpreter dead locks - # because the callback is holding a reference to something which - # has a __del__ method. Setting this to None breaks the cycle - # and allows the garbage collector to do it's thing normally. - self.__callback = None - - # Closing the temporary file releases memory and frees disk space. - # Important when caching big files. - self.__buf.close() - - def read(self, amt: int | None = None) -> bytes: - data: bytes = self.__fp.read(amt) - if data: - # We may be dealing with b'', a sign that things are over: - # it's passed e.g. after we've already closed self.__buf. - self.__buf.write(data) - if self.__is_fp_closed(): - self._close() - - return data - - def _safe_read(self, amt: int) -> bytes: - data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] - if amt == 2 and data == b"\r\n": - # urllib executes this read to toss the CRLF at the end - # of the chunk. - return data - - self.__buf.write(data) - if self.__is_fp_closed(): - self._close() - - return data diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py deleted file mode 100644 index b9d72ca..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py +++ /dev/null @@ -1,154 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import calendar -import time -from datetime import datetime, timedelta, timezone -from email.utils import formatdate, parsedate, parsedate_tz -from typing import TYPE_CHECKING, Any, Mapping - -if TYPE_CHECKING: - from pip._vendor.urllib3 import HTTPResponse - -TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" - - -def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: - date = date or datetime.now(timezone.utc) - return date + delta - - -def datetime_to_header(dt: datetime) -> str: - return formatdate(calendar.timegm(dt.timetuple())) - - -class BaseHeuristic: - def warning(self, response: HTTPResponse) -> str | None: - """ - Return a valid 1xx warning header value describing the cache - adjustments. - - The response is provided too allow warnings like 113 - http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need - to explicitly say response is over 24 hours old. - """ - return '110 - "Response is Stale"' - - def update_headers(self, response: HTTPResponse) -> dict[str, str]: - """Update the response headers with any new headers. - - NOTE: This SHOULD always include some Warning header to - signify that the response was cached by the client, not - by way of the provided headers. - """ - return {} - - def apply(self, response: HTTPResponse) -> HTTPResponse: - updated_headers = self.update_headers(response) - - if updated_headers: - response.headers.update(updated_headers) - warning_header_value = self.warning(response) - if warning_header_value is not None: - response.headers.update({"Warning": warning_header_value}) - - return response - - -class OneDayCache(BaseHeuristic): - """ - Cache the response by providing an expires 1 day in the - future. - """ - - def update_headers(self, response: HTTPResponse) -> dict[str, str]: - headers = {} - - if "expires" not in response.headers: - date = parsedate(response.headers["date"]) - expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[misc] - headers["expires"] = datetime_to_header(expires) - headers["cache-control"] = "public" - return headers - - -class ExpiresAfter(BaseHeuristic): - """ - Cache **all** requests for a defined time period. - """ - - def __init__(self, **kw: Any) -> None: - self.delta = timedelta(**kw) - - def update_headers(self, response: HTTPResponse) -> dict[str, str]: - expires = expire_after(self.delta) - return {"expires": datetime_to_header(expires), "cache-control": "public"} - - def warning(self, response: HTTPResponse) -> str | None: - tmpl = "110 - Automatically cached for %s. Response might be stale" - return tmpl % self.delta - - -class LastModified(BaseHeuristic): - """ - If there is no Expires header already, fall back on Last-Modified - using the heuristic from - http://tools.ietf.org/html/rfc7234#section-4.2.2 - to calculate a reasonable value. - - Firefox also does something like this per - https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ - http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 - Unlike mozilla we limit this to 24-hr. - """ - - cacheable_by_default_statuses = { - 200, - 203, - 204, - 206, - 300, - 301, - 404, - 405, - 410, - 414, - 501, - } - - def update_headers(self, resp: HTTPResponse) -> dict[str, str]: - headers: Mapping[str, str] = resp.headers - - if "expires" in headers: - return {} - - if "cache-control" in headers and headers["cache-control"] != "public": - return {} - - if resp.status not in self.cacheable_by_default_statuses: - return {} - - if "date" not in headers or "last-modified" not in headers: - return {} - - time_tuple = parsedate_tz(headers["date"]) - assert time_tuple is not None - date = calendar.timegm(time_tuple[:6]) - last_modified = parsedate(headers["last-modified"]) - if last_modified is None: - return {} - - now = time.time() - current_age = max(0, now - date) - delta = date - calendar.timegm(last_modified) - freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) - if freshness_lifetime <= current_age: - return {} - - expires = date + freshness_lifetime - return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} - - def warning(self, resp: HTTPResponse) -> str | None: - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py deleted file mode 100644 index f9e967c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py +++ /dev/null @@ -1,206 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -import io -from typing import IO, TYPE_CHECKING, Any, Mapping, cast - -from pip._vendor import msgpack -from pip._vendor.requests.structures import CaseInsensitiveDict -from pip._vendor.urllib3 import HTTPResponse - -if TYPE_CHECKING: - from pip._vendor.requests import PreparedRequest - - -class Serializer: - serde_version = "4" - - def dumps( - self, - request: PreparedRequest, - response: HTTPResponse, - body: bytes | None = None, - ) -> bytes: - response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( - response.headers - ) - - if body is None: - # When a body isn't passed in, we'll read the response. We - # also update the response with a new file handler to be - # sure it acts as though it was never read. - body = response.read(decode_content=False) - response._fp = io.BytesIO(body) # type: ignore[attr-defined] - response.length_remaining = len(body) - - data = { - "response": { - "body": body, # Empty bytestring if body is stored separately - "headers": {str(k): str(v) for k, v in response.headers.items()}, # type: ignore[no-untyped-call] - "status": response.status, - "version": response.version, - "reason": str(response.reason), - "decode_content": response.decode_content, - } - } - - # Construct our vary headers - data["vary"] = {} - if "vary" in response_headers: - varied_headers = response_headers["vary"].split(",") - for header in varied_headers: - header = str(header).strip() - header_value = request.headers.get(header, None) - if header_value is not None: - header_value = str(header_value) - data["vary"][header] = header_value - - return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) - - def serialize(self, data: dict[str, Any]) -> bytes: - return cast(bytes, msgpack.dumps(data, use_bin_type=True)) - - def loads( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> HTTPResponse | None: - # Short circuit if we've been given an empty set of data - if not data: - return None - - # Determine what version of the serializer the data was serialized - # with - try: - ver, data = data.split(b",", 1) - except ValueError: - ver = b"cc=0" - - # Make sure that our "ver" is actually a version and isn't a false - # positive from a , being in the data stream. - if ver[:3] != b"cc=": - data = ver + data - ver = b"cc=0" - - # Get the version number out of the cc=N - verstr = ver.split(b"=", 1)[-1].decode("ascii") - - # Dispatch to the actual load method for the given version - try: - return getattr(self, f"_loads_v{verstr}")(request, data, body_file) # type: ignore[no-any-return] - - except AttributeError: - # This is a version we don't have a loads function for, so we'll - # just treat it as a miss and return None - return None - - def prepare_response( - self, - request: PreparedRequest, - cached: Mapping[str, Any], - body_file: IO[bytes] | None = None, - ) -> HTTPResponse | None: - """Verify our vary headers match and construct a real urllib3 - HTTPResponse object. - """ - # Special case the '*' Vary value as it means we cannot actually - # determine if the cached response is suitable for this request. - # This case is also handled in the controller code when creating - # a cache entry, but is left here for backwards compatibility. - if "*" in cached.get("vary", {}): - return None - - # Ensure that the Vary headers for the cached response match our - # request - for header, value in cached.get("vary", {}).items(): - if request.headers.get(header, None) != value: - return None - - body_raw = cached["response"].pop("body") - - headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( - data=cached["response"]["headers"] - ) - if headers.get("transfer-encoding", "") == "chunked": - headers.pop("transfer-encoding") - - cached["response"]["headers"] = headers - - try: - body: IO[bytes] - if body_file is None: - body = io.BytesIO(body_raw) - else: - body = body_file - except TypeError: - # This can happen if cachecontrol serialized to v1 format (pickle) - # using Python 2. A Python 2 str(byte string) will be unpickled as - # a Python 3 str (unicode string), which will cause the above to - # fail with: - # - # TypeError: 'str' does not support the buffer interface - body = io.BytesIO(body_raw.encode("utf8")) - - # Discard any `strict` parameter serialized by older version of cachecontrol. - cached["response"].pop("strict", None) - - return HTTPResponse(body=body, preload_content=False, **cached["response"]) - - def _loads_v0( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> None: - # The original legacy cache data. This doesn't contain enough - # information to construct everything we need, so we'll treat this as - # a miss. - return None - - def _loads_v1( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> HTTPResponse | None: - # The "v1" pickled cache format. This is no longer supported - # for security reasons, so we treat it as a miss. - return None - - def _loads_v2( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> HTTPResponse | None: - # The "v2" compressed base64 cache format. - # This has been removed due to age and poor size/performance - # characteristics, so we treat it as a miss. - return None - - def _loads_v3( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> None: - # Due to Python 2 encoding issues, it's impossible to know for sure - # exactly how to load v3 entries, thus we'll treat these as a miss so - # that they get rewritten out as v4 entries. - return None - - def _loads_v4( - self, - request: PreparedRequest, - data: bytes, - body_file: IO[bytes] | None = None, - ) -> HTTPResponse | None: - try: - cached = msgpack.loads(data, raw=False) - except ValueError: - return None - - return self.prepare_response(request, cached, body_file) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py deleted file mode 100644 index f618bc3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py +++ /dev/null @@ -1,43 +0,0 @@ -# SPDX-FileCopyrightText: 2015 Eric Larson -# -# SPDX-License-Identifier: Apache-2.0 -from __future__ import annotations - -from typing import TYPE_CHECKING, Collection - -from pip._vendor.cachecontrol.adapter import CacheControlAdapter -from pip._vendor.cachecontrol.cache import DictCache - -if TYPE_CHECKING: - from pip._vendor import requests - - from pip._vendor.cachecontrol.cache import BaseCache - from pip._vendor.cachecontrol.controller import CacheController - from pip._vendor.cachecontrol.heuristics import BaseHeuristic - from pip._vendor.cachecontrol.serialize import Serializer - - -def CacheControl( - sess: requests.Session, - cache: BaseCache | None = None, - cache_etags: bool = True, - serializer: Serializer | None = None, - heuristic: BaseHeuristic | None = None, - controller_class: type[CacheController] | None = None, - adapter_class: type[CacheControlAdapter] | None = None, - cacheable_methods: Collection[str] | None = None, -) -> requests.Session: - cache = DictCache() if cache is None else cache - adapter_class = adapter_class or CacheControlAdapter - adapter = adapter_class( - cache, - cache_etags=cache_etags, - serializer=serializer, - heuristic=heuristic, - controller_class=controller_class, - cacheable_methods=cacheable_methods, - ) - sess.mount("http://", adapter) - sess.mount("https://", adapter) - - return sess diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py deleted file mode 100644 index 8ce89ce..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -from .core import contents, where - -__all__ = ["contents", "where"] -__version__ = "2023.07.22" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py deleted file mode 100644 index 0037634..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py +++ /dev/null @@ -1,12 +0,0 @@ -import argparse - -from pip._vendor.certifi import contents, where - -parser = argparse.ArgumentParser() -parser.add_argument("-c", "--contents", action="store_true") -args = parser.parse_args() - -if args.contents: - print(contents()) -else: - print(where()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 1f13a40..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index d87616f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc deleted file mode 100644 index 586ea1c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem deleted file mode 100644 index 0212369..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem +++ /dev/null @@ -1,4635 +0,0 @@ - -# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA -# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA -# Label: "GlobalSign Root CA" -# Serial: 4835703278459707669005204 -# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a -# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c -# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 ------BEGIN CERTIFICATE----- -MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG -A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv -b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw -MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i -YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT -aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ -jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp -xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp -1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG -snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ -U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 -9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B -AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz -yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE -38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP -AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad -DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME -HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== ------END CERTIFICATE----- - -# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited -# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited -# Label: "Entrust.net Premium 2048 Secure Server CA" -# Serial: 946069240 -# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 -# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 -# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML -RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp -bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 -IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 -MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 -LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp -YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG -A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq -K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe -sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX -MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT -XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ -HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH -4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV -HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub -j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo -U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf -zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b -u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ -bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er -fF6adulZkMV8gzURZVE= ------END CERTIFICATE----- - -# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust -# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust -# Label: "Baltimore CyberTrust Root" -# Serial: 33554617 -# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 -# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 -# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ -RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD -VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX -DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y -ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy -VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr -mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr -IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK -mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu -XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy -dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye -jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 -BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 -DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 -9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx -jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 -Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz -ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS -R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp ------END CERTIFICATE----- - -# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. -# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. -# Label: "Entrust Root Certification Authority" -# Serial: 1164660820 -# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 -# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 -# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c ------BEGIN CERTIFICATE----- -MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 -Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW -KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl -cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw -NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw -NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy -ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV -BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ -KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo -Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 -4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 -KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI -rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi -94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB -sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi -gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo -kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE -vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA -A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t -O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua -AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP -9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ -eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m -0vdXcDazv/wor3ElhVsT/h5/WrQ8 ------END CERTIFICATE----- - -# Issuer: CN=AAA Certificate Services O=Comodo CA Limited -# Subject: CN=AAA Certificate Services O=Comodo CA Limited -# Label: "Comodo AAA Services root" -# Serial: 1 -# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 -# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 -# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 ------BEGIN CERTIFICATE----- -MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj -YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM -GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua -BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe -3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 -YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR -rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm -ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU -oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v -QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t -b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF -AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q -GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz -Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 -G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi -l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 -smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== ------END CERTIFICATE----- - -# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited -# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited -# Label: "QuoVadis Root CA 2" -# Serial: 1289 -# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b -# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 -# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 ------BEGIN CERTIFICATE----- -MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa -GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg -Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J -WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB -rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp -+ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 -ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i -Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz -PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og -/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH -oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI -yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud -EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 -A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL -MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT -ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f -BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn -g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl -fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K -WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha -B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc -hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR -TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD -mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z -ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y -4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza -8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u ------END CERTIFICATE----- - -# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited -# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited -# Label: "QuoVadis Root CA 3" -# Serial: 1478 -# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf -# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 -# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 ------BEGIN CERTIFICATE----- -MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM -V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB -4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr -H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd -8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv -vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT -mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe -btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc -T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt -WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ -c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A -4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD -VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG -CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 -aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 -aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu -dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw -czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G -A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC -TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg -Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 -7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem -d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd -+LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B -4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN -t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x -DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 -k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s -zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j -Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT -mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK -4SVhM7JZG+Ju1zdXtg2pEto= ------END CERTIFICATE----- - -# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 -# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 -# Label: "Security Communication Root CA" -# Serial: 0 -# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a -# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 -# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c ------BEGIN CERTIFICATE----- -MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY -MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t -dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 -WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD -VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 -9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ -DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 -Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N -QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ -xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G -A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG -kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr -Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 -Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU -JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot -RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== ------END CERTIFICATE----- - -# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com -# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com -# Label: "XRamp Global CA Root" -# Serial: 107108908803651509692980124233745014957 -# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 -# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 -# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 ------BEGIN CERTIFICATE----- -MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB -gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk -MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY -UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx -NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 -dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy -dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 -38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP -KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q -DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 -qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa -JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi -PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P -BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs -jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 -eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD -ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR -vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt -qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa -IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy -i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ -O+7ETPTsJ3xCwnR8gooJybQDJbw= ------END CERTIFICATE----- - -# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority -# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority -# Label: "Go Daddy Class 2 CA" -# Serial: 0 -# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 -# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 -# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 ------BEGIN CERTIFICATE----- -MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh -MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE -YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 -MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo -ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg -MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN -ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA -PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w -wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi -EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY -avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ -YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE -sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h -/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 -IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy -OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P -TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ -HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER -dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf -ReYNnyicsbkqWletNw+vHX/bvZ8= ------END CERTIFICATE----- - -# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority -# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority -# Label: "Starfield Class 2 CA" -# Serial: 0 -# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 -# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a -# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl -MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp -U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw -NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE -ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp -ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 -DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf -8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN -+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 -X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa -K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA -1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G -A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR -zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 -YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD -bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w -DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 -L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D -eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl -xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp -VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY -WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Assured ID Root CA" -# Serial: 17154717934120587862167794914071425081 -# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 -# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 -# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c ------BEGIN CERTIFICATE----- -MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv -b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl -cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c -JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP -mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ -wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 -VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ -AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB -AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW -BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun -pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC -dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf -fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm -NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx -H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe -+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Global Root CA" -# Serial: 10944719598952040374951832963794454346 -# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e -# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 -# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 ------BEGIN CERTIFICATE----- -MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD -QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j -b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB -CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 -nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt -43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P -T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 -gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO -BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR -TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw -DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr -hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg -06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF -PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls -YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk -CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= ------END CERTIFICATE----- - -# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert High Assurance EV Root CA" -# Serial: 3553400076410547919724730734378100087 -# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a -# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 -# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j -ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 -LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug -RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm -+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW -PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM -xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB -Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 -hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg -EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA -FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec -nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z -eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF -hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 -Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe -vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep -+OkuE6N36B9K ------END CERTIFICATE----- - -# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG -# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG -# Label: "SwissSign Gold CA - G2" -# Serial: 13492815561806991280 -# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 -# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 -# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 ------BEGIN CERTIFICATE----- -MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV -BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln -biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF -MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT -d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 -76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ -bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c -6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE -emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd -MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt -MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y -MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y -FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi -aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM -gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB -qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 -lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn -8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov -L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 -45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO -UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 -O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC -bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv -GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a -77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC -hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 -92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp -Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w -ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt -Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ ------END CERTIFICATE----- - -# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG -# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG -# Label: "SwissSign Silver CA - G2" -# Serial: 5700383053117599563 -# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 -# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb -# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 ------BEGIN CERTIFICATE----- -MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu -IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow -RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY -U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv -Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br -YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF -nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH -6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt -eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ -c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ -MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH -HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf -jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 -5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB -rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU -F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c -wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 -cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB -AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp -WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 -xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ -2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ -IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 -aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X -em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR -dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ -OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ -hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy -tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u ------END CERTIFICATE----- - -# Issuer: CN=SecureTrust CA O=SecureTrust Corporation -# Subject: CN=SecureTrust CA O=SecureTrust Corporation -# Label: "SecureTrust CA" -# Serial: 17199774589125277788362757014266862032 -# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 -# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 -# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 ------BEGIN CERTIFICATE----- -MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz -MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv -cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN -AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz -Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO -0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao -wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj -7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS -8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT -BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg -JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC -NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 -6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ -3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm -D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS -CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR -3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= ------END CERTIFICATE----- - -# Issuer: CN=Secure Global CA O=SecureTrust Corporation -# Subject: CN=Secure Global CA O=SecureTrust Corporation -# Label: "Secure Global CA" -# Serial: 9751836167731051554232119481456978597 -# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de -# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b -# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 ------BEGIN CERTIFICATE----- -MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx -MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg -Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ -iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa -/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ -jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI -HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 -sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w -gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw -KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG -AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L -URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO -H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm -I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY -iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc -f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW ------END CERTIFICATE----- - -# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited -# Subject: CN=COMODO Certification Authority O=COMODO CA Limited -# Label: "COMODO Certification Authority" -# Serial: 104350513648249232941998508985834464573 -# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 -# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b -# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 ------BEGIN CERTIFICATE----- -MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB -gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV -BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw -MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl -YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P -RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 -UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI -2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 -Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp -+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ -DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O -nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW -/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g -PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u -QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY -SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv -IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ -RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 -zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd -BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB -ZQ== ------END CERTIFICATE----- - -# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited -# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited -# Label: "COMODO ECC Certification Authority" -# Serial: 41578283867086692638256921589707938090 -# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 -# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 -# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 ------BEGIN CERTIFICATE----- -MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT -IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw -MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy -ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N -T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR -FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J -cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW -BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm -fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv -GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= ------END CERTIFICATE----- - -# Issuer: CN=Certigna O=Dhimyotis -# Subject: CN=Certigna O=Dhimyotis -# Label: "Certigna" -# Serial: 18364802974209362175 -# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff -# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 -# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d ------BEGIN CERTIFICATE----- -MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV -BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X -DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ -BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 -QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny -gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw -zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q -130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 -JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw -DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw -ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT -AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj -AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG -9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h -bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc -fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu -HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w -t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw -WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== ------END CERTIFICATE----- - -# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority -# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority -# Label: "ePKI Root Certification Authority" -# Serial: 28956088682735189655030529057352760477 -# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 -# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 -# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 ------BEGIN CERTIFICATE----- -MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe -MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 -ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe -Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw -IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL -SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH -SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh -ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X -DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 -TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ -fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA -sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU -WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS -nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH -dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip -NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC -AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF -MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH -ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB -uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl -PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP -JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ -gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 -j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 -5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB -o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS -/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z -Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE -W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D -hNQ+IIX3Sj0rnP0qCglN6oH4EZw= ------END CERTIFICATE----- - -# Issuer: O=certSIGN OU=certSIGN ROOT CA -# Subject: O=certSIGN OU=certSIGN ROOT CA -# Label: "certSIGN ROOT CA" -# Serial: 35210227249154 -# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 -# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b -# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb ------BEGIN CERTIFICATE----- -MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT -AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD -QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP -MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do -0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ -UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d -RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ -OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv -JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C -AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O -BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ -LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY -MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ -44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I -Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw -i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN -9u6wWk5JRFRYX0KD ------END CERTIFICATE----- - -# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) -# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) -# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" -# Serial: 80544274841616 -# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 -# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 -# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG -EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 -MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl -cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR -dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB -pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM -b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm -aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz -IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT -lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz -AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 -VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG -ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 -BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG -AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M -U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh -bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C -+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC -bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F -uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 -XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= ------END CERTIFICATE----- - -# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. -# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. -# Label: "SecureSign RootCA11" -# Serial: 1 -# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 -# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 -# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr -MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG -A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 -MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp -Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD -QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz -i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 -h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV -MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 -UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni -8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC -h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD -VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB -AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm -KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ -X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr -QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 -pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN -QSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- - -# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. -# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. -# Label: "Microsec e-Szigno Root CA 2009" -# Serial: 14014712776195784473 -# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 -# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e -# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 ------BEGIN CERTIFICATE----- -MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD -VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 -ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G -CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y -OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx -FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp -Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o -dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP -kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc -cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U -fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 -N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC -xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 -+rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G -A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM -Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG -SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h -mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk -ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 -tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c -2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t -HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 -# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 -# Label: "GlobalSign Root CA - R3" -# Serial: 4835703278459759426209954 -# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 -# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad -# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b ------BEGIN CERTIFICATE----- -MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G -A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp -Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 -MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG -A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 -RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT -gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm -KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd -QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ -XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw -DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o -LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU -RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp -jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK -6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX -mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs -Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH -WD9f ------END CERTIFICATE----- - -# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 -# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 -# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" -# Serial: 6047274297262753887 -# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 -# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa -# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef ------BEGIN CERTIFICATE----- -MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE -BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h -cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy -MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg -Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 -thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM -cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG -L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i -NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h -X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b -m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy -Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja -EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T -KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF -6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh -OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD -VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD -VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp -cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv -ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl -AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF -661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 -am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 -ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 -PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS -3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k -SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF -3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM -ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g -StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz -Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB -jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V ------END CERTIFICATE----- - -# Issuer: CN=Izenpe.com O=IZENPE S.A. -# Subject: CN=Izenpe.com O=IZENPE S.A. -# Label: "Izenpe.com" -# Serial: 917563065490389241595536686991402621 -# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 -# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 -# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f ------BEGIN CERTIFICATE----- -MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 -MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 -ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD -VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j -b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq -scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO -xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H -LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX -uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD -yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ -JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q -rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN -BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L -hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB -QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ -HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu -Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg -QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB -BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx -MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA -A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb -laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 -awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo -JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw -LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT -VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk -LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb -UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ -QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ -naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls -QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== ------END CERTIFICATE----- - -# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. -# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. -# Label: "Go Daddy Root Certificate Authority - G2" -# Serial: 0 -# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 -# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b -# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT -EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp -ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz -NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH -EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE -AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD -E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH -/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy -DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh -GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR -tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA -AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE -FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX -WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu -9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr -gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo -2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO -LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI -4uJEvlz36hz1 ------END CERTIFICATE----- - -# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. -# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. -# Label: "Starfield Root Certificate Authority - G2" -# Serial: 0 -# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 -# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e -# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 ------BEGIN CERTIFICATE----- -MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs -ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw -MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 -b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj -aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp -Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg -nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 -HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N -Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN -dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 -HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G -CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU -sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 -4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg -8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K -pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 -mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 ------END CERTIFICATE----- - -# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. -# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. -# Label: "Starfield Services Root Certificate Authority - G2" -# Serial: 0 -# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 -# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f -# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 ------BEGIN CERTIFICATE----- -MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs -ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 -MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD -VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy -ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy -dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p -OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 -8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K -Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe -hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk -6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw -DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q -AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI -bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB -ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z -qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd -iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn -0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN -sSi6 ------END CERTIFICATE----- - -# Issuer: CN=AffirmTrust Commercial O=AffirmTrust -# Subject: CN=AffirmTrust Commercial O=AffirmTrust -# Label: "AffirmTrust Commercial" -# Serial: 8608355977964138876 -# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 -# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 -# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP -Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr -ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL -MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 -yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr -VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ -nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG -XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj -vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt -Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g -N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC -nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= ------END CERTIFICATE----- - -# Issuer: CN=AffirmTrust Networking O=AffirmTrust -# Subject: CN=AffirmTrust Networking O=AffirmTrust -# Label: "AffirmTrust Networking" -# Serial: 8957382827206547757 -# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f -# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f -# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y -YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua -kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL -QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp -6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG -yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i -QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO -tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu -QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ -Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u -olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 -x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= ------END CERTIFICATE----- - -# Issuer: CN=AffirmTrust Premium O=AffirmTrust -# Subject: CN=AffirmTrust Premium O=AffirmTrust -# Label: "AffirmTrust Premium" -# Serial: 7893706540734352110 -# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 -# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 -# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a ------BEGIN CERTIFICATE----- -MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz -dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG -A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U -cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf -qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ -JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ -+jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS -s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 -HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 -70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG -V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S -qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S -5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia -C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX -OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE -FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ -BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 -KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg -Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B -8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ -MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc -0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ -u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF -u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH -YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 -GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO -RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e -KeC2uAloGRwYQw== ------END CERTIFICATE----- - -# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust -# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust -# Label: "AffirmTrust Premium ECC" -# Serial: 8401224907861490260 -# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d -# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb -# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 ------BEGIN CERTIFICATE----- -MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC -VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ -cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ -BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt -VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D -0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 -ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G -A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G -A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs -aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I -flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== ------END CERTIFICATE----- - -# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority -# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority -# Label: "Certum Trusted Network CA" -# Serial: 279744 -# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 -# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e -# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e ------BEGIN CERTIFICATE----- -MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM -MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D -ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU -cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 -WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg -Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw -IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH -UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM -TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU -BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM -kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x -AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV -HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y -sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL -I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 -J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY -VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI -03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= ------END CERTIFICATE----- - -# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA -# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA -# Label: "TWCA Root Certification Authority" -# Serial: 1 -# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 -# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 -# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 ------BEGIN CERTIFICATE----- -MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES -MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU -V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz -WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO -LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE -AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH -K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX -RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z -rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx -3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq -hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC -MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls -XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D -lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn -aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ -YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== ------END CERTIFICATE----- - -# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 -# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 -# Label: "Security Communication RootCA2" -# Serial: 0 -# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 -# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 -# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl -MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe -U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX -DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy -dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj -YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV -OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr -zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM -VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ -hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO -ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw -awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs -OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 -DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF -coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc -okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 -t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy -1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ -SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 ------END CERTIFICATE----- - -# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 -# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 -# Label: "Actalis Authentication Root CA" -# Serial: 6271844772424770508 -# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 -# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac -# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 ------BEGIN CERTIFICATE----- -MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE -BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w -MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 -IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC -SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 -ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB -MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv -UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX -4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 -KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ -gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb -rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ -51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F -be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe -KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F -v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn -fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 -jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz -ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt -ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL -e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 -jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz -WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V -SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j -pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX -X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok -fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R -K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU -ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU -LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT -LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== ------END CERTIFICATE----- - -# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 -# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 -# Label: "Buypass Class 2 Root CA" -# Serial: 2 -# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 -# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 -# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg -Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow -TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw -HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB -BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr -6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV -L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 -1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx -MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ -QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB -arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr -Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi -FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS -P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN -9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP -AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz -uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h -9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s -A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t -OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo -+fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 -KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 -DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us -H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ -I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 -5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h -3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz -Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= ------END CERTIFICATE----- - -# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 -# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 -# Label: "Buypass Class 3 Root CA" -# Serial: 2 -# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec -# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 -# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg -Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow -TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw -HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB -BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y -ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E -N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 -tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX -0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c -/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X -KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY -zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS -O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D -34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP -K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 -AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv -Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj -QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV -cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS -IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 -HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa -O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv -033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u -dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE -kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 -3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD -u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq -4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= ------END CERTIFICATE----- - -# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center -# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center -# Label: "T-TeleSec GlobalRoot Class 3" -# Serial: 1 -# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef -# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 -# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx -KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd -BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl -YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 -OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy -aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 -ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN -8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ -RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 -hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 -ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM -EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj -QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 -A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy -WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ -1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 -6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT -91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml -e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p -TpPDpFQUWw== ------END CERTIFICATE----- - -# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH -# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH -# Label: "D-TRUST Root Class 3 CA 2 2009" -# Serial: 623603 -# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f -# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 -# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 ------BEGIN CERTIFICATE----- -MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF -MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD -bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha -ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM -HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 -UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 -tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R -ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM -lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp -/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G -A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G -A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj -dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy -MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl -cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js -L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL -BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni -acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 -o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K -zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 -PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y -Johw1+qRzT65ysCQblrGXnRl11z+o+I= ------END CERTIFICATE----- - -# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH -# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH -# Label: "D-TRUST Root Class 3 CA 2 EV 2009" -# Serial: 623604 -# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 -# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 -# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF -MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD -bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw -NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV -BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn -ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 -3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z -qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR -p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 -HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw -ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea -HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw -Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh -c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E -RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt -dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku -Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp -3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 -nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF -CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na -xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX -KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 ------END CERTIFICATE----- - -# Issuer: CN=CA Disig Root R2 O=Disig a.s. -# Subject: CN=CA Disig Root R2 O=Disig a.s. -# Label: "CA Disig Root R2" -# Serial: 10572350602393338211 -# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 -# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 -# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 ------BEGIN CERTIFICATE----- -MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV -BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu -MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy -MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx -EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw -ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe -NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH -PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I -x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe -QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR -yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO -QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 -H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ -QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD -i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs -nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 -rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud -DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI -hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM -tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf -GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb -lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka -+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal -TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i -nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 -gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr -G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os -zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x -L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL ------END CERTIFICATE----- - -# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV -# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV -# Label: "ACCVRAIZ1" -# Serial: 6828503384748696800 -# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 -# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 -# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 ------BEGIN CERTIFICATE----- -MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE -AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw -CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ -BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND -VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb -qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY -HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo -G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA -lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr -IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ -0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH -k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 -4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO -m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa -cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl -uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI -KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls -ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG -AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 -VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT -VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG -CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA -cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA -QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA -7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA -cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA -QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA -czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu -aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt -aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud -DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF -BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp -D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU -JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m -AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD -vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms -tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH -7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h -I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA -h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF -d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H -pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 ------END CERTIFICATE----- - -# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA -# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA -# Label: "TWCA Global Root CA" -# Serial: 3262 -# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 -# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 -# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b ------BEGIN CERTIFICATE----- -MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx -EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT -VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 -NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT -B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF -10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz -0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh -MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH -zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc -46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 -yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi -laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP -oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA -BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE -qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm -4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL -1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn -LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF -H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo -RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ -nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh -15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW -6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW -nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j -wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz -aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy -KwbQBM0= ------END CERTIFICATE----- - -# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera -# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera -# Label: "TeliaSonera Root CA v1" -# Serial: 199041966741090107964904287217786801558 -# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c -# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 -# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 ------BEGIN CERTIFICATE----- -MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw -NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv -b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD -VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 -MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F -VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 -7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X -Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ -/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs -81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm -dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe -Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu -sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 -pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs -slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ -arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD -VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG -9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl -dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx -0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj -TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed -Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 -Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI -OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 -vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW -t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn -HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx -SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= ------END CERTIFICATE----- - -# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center -# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center -# Label: "T-TeleSec GlobalRoot Class 2" -# Serial: 1 -# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a -# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 -# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx -KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd -BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl -YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 -OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy -aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 -ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd -AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC -FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi -1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq -jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ -wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj -QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ -WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy -NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC -uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw -IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 -g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN -9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP -BSeOE6Fuwg== ------END CERTIFICATE----- - -# Issuer: CN=Atos TrustedRoot 2011 O=Atos -# Subject: CN=Atos TrustedRoot 2011 O=Atos -# Label: "Atos TrustedRoot 2011" -# Serial: 6643877497813316402 -# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 -# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 -# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE -AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG -EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM -FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC -REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp -Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM -VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ -SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ -4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L -cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi -eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV -HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG -A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 -DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j -vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP -DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc -maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D -lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv -KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed ------END CERTIFICATE----- - -# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited -# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited -# Label: "QuoVadis Root CA 1 G3" -# Serial: 687049649626669250736271037606554624078720034195 -# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab -# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 -# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 -MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV -wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe -rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 -68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh -4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp -UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o -abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc -3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G -KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt -hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO -Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt -zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD -ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC -MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 -cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN -qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 -YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv -b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 -8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k -NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj -ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp -q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt -nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD ------END CERTIFICATE----- - -# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited -# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited -# Label: "QuoVadis Root CA 2 G3" -# Serial: 390156079458959257446133169266079962026824725800 -# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 -# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 -# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 -MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf -qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW -n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym -c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ -O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 -o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j -IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq -IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz -8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh -vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l -7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG -cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD -ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 -AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC -roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga -W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n -lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE -+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV -csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd -dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg -KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM -HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 -WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M ------END CERTIFICATE----- - -# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited -# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited -# Label: "QuoVadis Root CA 3 G3" -# Serial: 268090761170461462463995952157327242137089239581 -# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 -# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d -# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 -MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR -/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu -FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR -U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c -ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR -FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k -A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw -eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl -sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp -VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q -A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ -ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD -ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px -KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI -FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv -oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg -u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP -0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf -3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl -8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ -DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN -PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ -ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Assured ID Root G2" -# Serial: 15385348160840213938643033620894905419 -# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d -# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f -# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 ------BEGIN CERTIFICATE----- -MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv -b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl -cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA -n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc -biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp -EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA -bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu -YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB -AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW -BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI -QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I -0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni -lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 -B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv -ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo -IhNzbM8m9Yop5w== ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Assured ID Root G3" -# Serial: 15459312981008553731928384953135426796 -# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb -# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 -# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 ------BEGIN CERTIFICATE----- -MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw -CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu -ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg -RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu -Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq -hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf -Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q -RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ -BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD -AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY -JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv -6pZjamVFkpUBtA== ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Global Root G2" -# Serial: 4293743540046975378534879503202253541 -# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 -# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 -# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f ------BEGIN CERTIFICATE----- -MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH -MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j -b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI -2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx -1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ -q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz -tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ -vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP -BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV -5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY -1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 -NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG -Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 -8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe -pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl -MrY= ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Global Root G3" -# Serial: 7089244469030293291760083333884364146 -# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca -# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e -# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 ------BEGIN CERTIFICATE----- -MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw -CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu -ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe -Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw -EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x -IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF -K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG -fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO -Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd -BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx -AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ -oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 -sycX ------END CERTIFICATE----- - -# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com -# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com -# Label: "DigiCert Trusted Root G4" -# Serial: 7451500558977370777930084869016614236 -# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 -# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 -# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 ------BEGIN CERTIFICATE----- -MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg -RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu -Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y -ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If -xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV -ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO -DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ -jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ -CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi -EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM -fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY -uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK -chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t -9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD -ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 -SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd -+SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc -fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa -sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N -cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N -0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie -4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI -r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 -/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm -gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ ------END CERTIFICATE----- - -# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited -# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited -# Label: "COMODO RSA Certification Authority" -# Serial: 101909084537582093308941363524873193117 -# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 -# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 -# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 ------BEGIN CERTIFICATE----- -MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB -hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV -BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 -MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT -EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR -Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR -6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X -pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC -9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV -/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf -Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z -+pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w -qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah -SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC -u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf -Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq -crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E -FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB -/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl -wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM -4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV -2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna -FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ -CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK -boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke -jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL -S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb -QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl -0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB -NVOFBkpdn627G190 ------END CERTIFICATE----- - -# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network -# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network -# Label: "USERTrust RSA Certification Authority" -# Serial: 2645093764781058787591871645665788717 -# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 -# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e -# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 ------BEGIN CERTIFICATE----- -MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB -iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl -cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV -BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw -MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV -BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU -aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy -dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK -AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B -3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY -tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ -Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 -VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT -79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 -c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT -Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l -c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee -UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE -Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd -BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G -A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF -Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO -VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 -ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs -8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR -iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze -Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ -XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ -qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB -VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB -L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG -jjxDah2nGN59PRbxYvnKkKj9 ------END CERTIFICATE----- - -# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network -# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network -# Label: "USERTrust ECC Certification Authority" -# Serial: 123013823720199481456569720443997572134 -# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 -# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 -# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a ------BEGIN CERTIFICATE----- -MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl -eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT -JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx -MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT -Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg -VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo -I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng -o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G -A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB -zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW -RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 -# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 -# Label: "GlobalSign ECC Root CA - R5" -# Serial: 32785792099990507226680698011560947931244 -# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 -# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa -# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 ------BEGIN CERTIFICATE----- -MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk -MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH -bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX -DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD -QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu -MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc -8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke -hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI -KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg -515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO -xwy8p2Fp8fc74SrL+SvzZpA3 ------END CERTIFICATE----- - -# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust -# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust -# Label: "IdenTrust Commercial Root CA 1" -# Serial: 13298821034946342390520003877796839426 -# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 -# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 -# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK -MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu -VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw -MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw -JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT -3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU -+ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp -S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 -bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi -T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL -vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK -Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK -dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT -c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv -l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N -iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD -ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH -6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt -LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 -nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 -+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK -W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT -AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq -l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG -4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ -mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A -7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H ------END CERTIFICATE----- - -# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust -# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust -# Label: "IdenTrust Public Sector Root CA 1" -# Serial: 13298821034946342390521976156843933698 -# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba -# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd -# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f ------BEGIN CERTIFICATE----- -MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN -MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu -VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN -MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 -MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 -ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy -RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS -bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF -/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R -3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw -EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy -9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V -GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ -2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV -WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD -W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN -AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj -t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV -DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 -TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G -lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW -mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df -WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 -+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ -tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA -GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv -8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c ------END CERTIFICATE----- - -# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only -# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only -# Label: "Entrust Root Certification Authority - G2" -# Serial: 1246989352 -# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 -# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 -# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 ------BEGIN CERTIFICATE----- -MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 -cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs -IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz -dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy -NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu -dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt -dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 -aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK -AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T -RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN -cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW -wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 -U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 -jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN -BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ -jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ -Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v -1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R -nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH -VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== ------END CERTIFICATE----- - -# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only -# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only -# Label: "Entrust Root Certification Authority - EC1" -# Serial: 51543124481930649114116133369 -# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc -# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 -# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 ------BEGIN CERTIFICATE----- -MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG -A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 -d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu -dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq -RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy -MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD -VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 -L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g -Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD -ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi -A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt -ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH -Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O -BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC -R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX -hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G ------END CERTIFICATE----- - -# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority -# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority -# Label: "CFCA EV ROOT" -# Serial: 407555286 -# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 -# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 -# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd ------BEGIN CERTIFICATE----- -MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD -TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y -aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx -MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j -aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP -T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 -sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL -TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 -/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp -7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz -EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt -hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP -a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot -aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg -TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV -PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv -cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL -tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd -BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB -ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT -ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL -jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS -ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy -P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 -xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d -Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN -5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe -/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z -AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ -5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su ------END CERTIFICATE----- - -# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed -# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed -# Label: "OISTE WISeKey Global Root GB CA" -# Serial: 157768595616588414422159278966750757568 -# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d -# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed -# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 ------BEGIN CERTIFICATE----- -MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt -MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg -Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i -YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x -CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG -b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh -bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 -HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx -WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX -1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk -u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P -99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r -M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB -BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh -cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 -gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO -ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf -aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic -Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= ------END CERTIFICATE----- - -# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. -# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. -# Label: "SZAFIR ROOT CA2" -# Serial: 357043034767186914217277344587386743377558296292 -# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 -# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de -# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe ------BEGIN CERTIFICATE----- -MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL -BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 -ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw -NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L -cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg -Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN -QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT -3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw -3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 -3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 -BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN -XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD -AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF -AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw -8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG -nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP -oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy -d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg -LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== ------END CERTIFICATE----- - -# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority -# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority -# Label: "Certum Trusted Network CA 2" -# Serial: 44979900017204383099463764357512596969 -# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 -# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 -# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 ------BEGIN CERTIFICATE----- -MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB -gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu -QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG -A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz -OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ -VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 -b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA -DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn -0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB -OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE -fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E -Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m -o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i -sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW -OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez -Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS -adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n -3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC -AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ -F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf -CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 -XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm -djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ -WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb -AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq -P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko -b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj -XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P -5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi -DrW5viSP ------END CERTIFICATE----- - -# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority -# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority -# Label: "Hellenic Academic and Research Institutions RootCA 2015" -# Serial: 0 -# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce -# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 -# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 ------BEGIN CERTIFICATE----- -MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix -DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k -IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT -N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v -dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG -A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh -ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx -QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 -dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC -AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA -4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 -AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 -4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C -ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV -9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD -gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 -Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq -NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko -LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc -Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd -ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I -XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI -M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot -9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V -Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea -j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh -X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ -l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf -bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 -pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK -e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 -vm9qp/UsQu0yrbYhnr68 ------END CERTIFICATE----- - -# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority -# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority -# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" -# Serial: 0 -# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef -# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 -# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 ------BEGIN CERTIFICATE----- -MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN -BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl -c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl -bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv -b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ -BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj -YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 -MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 -dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg -QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa -jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC -MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi -C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep -lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof -TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR ------END CERTIFICATE----- - -# Issuer: CN=ISRG Root X1 O=Internet Security Research Group -# Subject: CN=ISRG Root X1 O=Internet Security Research Group -# Label: "ISRG Root X1" -# Serial: 172886928669790476064670243504169061120 -# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e -# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 -# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 ------BEGIN CERTIFICATE----- -MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw -TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh -cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 -WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu -ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY -MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc -h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ -0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U -A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW -T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH -B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC -B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv -KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn -OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn -jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw -qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI -rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq -hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL -ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ -3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK -NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 -ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur -TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC -jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc -oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq -4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA -mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d -emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= ------END CERTIFICATE----- - -# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM -# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM -# Label: "AC RAIZ FNMT-RCM" -# Serial: 485876308206448804701554682760554759 -# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d -# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 -# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa ------BEGIN CERTIFICATE----- -MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx -CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ -WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ -BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG -Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ -yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf -BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz -WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF -tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z -374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC -IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL -mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 -wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS -MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 -ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet -UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw -AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H -YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 -LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD -nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 -RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM -LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf -77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N -JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm -fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp -6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp -1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B -9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok -RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv -uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= ------END CERTIFICATE----- - -# Issuer: CN=Amazon Root CA 1 O=Amazon -# Subject: CN=Amazon Root CA 1 O=Amazon -# Label: "Amazon Root CA 1" -# Serial: 143266978916655856878034712317230054538369994 -# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 -# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 -# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e ------BEGIN CERTIFICATE----- -MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF -ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 -b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL -MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv -b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj -ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM -9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw -IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 -VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L -93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm -jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA -A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI -U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs -N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv -o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU -5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy -rqXRfboQnoZsG4q5WTP468SQvvG5 ------END CERTIFICATE----- - -# Issuer: CN=Amazon Root CA 2 O=Amazon -# Subject: CN=Amazon Root CA 2 O=Amazon -# Label: "Amazon Root CA 2" -# Serial: 143266982885963551818349160658925006970653239 -# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 -# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a -# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 ------BEGIN CERTIFICATE----- -MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF -ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 -b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL -MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv -b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK -gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ -W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg -1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K -8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r -2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me -z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR -8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj -mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz -7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 -+XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI -0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB -Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm -UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 -LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY -+gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS -k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl -7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm -btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl -urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ -fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 -n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE -76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H -9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT -4PsJYGw= ------END CERTIFICATE----- - -# Issuer: CN=Amazon Root CA 3 O=Amazon -# Subject: CN=Amazon Root CA 3 O=Amazon -# Label: "Amazon Root CA 3" -# Serial: 143266986699090766294700635381230934788665930 -# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 -# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e -# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 ------BEGIN CERTIFICATE----- -MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 -MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g -Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG -A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg -Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl -ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j -QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr -ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr -BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM -YyRIHN8wfdVoOw== ------END CERTIFICATE----- - -# Issuer: CN=Amazon Root CA 4 O=Amazon -# Subject: CN=Amazon Root CA 4 O=Amazon -# Label: "Amazon Root CA 4" -# Serial: 143266989758080763974105200630763877849284878 -# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd -# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be -# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 ------BEGIN CERTIFICATE----- -MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 -MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g -Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG -A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg -Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi -9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk -M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB -/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB -MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw -CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW -1KyLa2tJElMzrdfkviT8tQp21KW8EA== ------END CERTIFICATE----- - -# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM -# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM -# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" -# Serial: 1 -# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 -# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca -# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 ------BEGIN CERTIFICATE----- -MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx -GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp -bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w -KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 -BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy -dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG -EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll -IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU -QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT -TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg -LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 -a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr -LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr -N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X -YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ -iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f -AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH -V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh -AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf -IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 -lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c -8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf -lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= ------END CERTIFICATE----- - -# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. -# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. -# Label: "GDCA TrustAUTH R5 ROOT" -# Serial: 9009899650740120186 -# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 -# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 -# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 ------BEGIN CERTIFICATE----- -MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE -BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ -IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 -MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV -BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w -HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj -Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj -TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u -KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj -qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm -MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 -ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP -zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk -L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC -jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA -HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC -AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB -/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg -p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm -DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 -COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry -L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf -JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg -IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io -2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV -09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ -XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq -T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe -MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== ------END CERTIFICATE----- - -# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation -# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation -# Label: "SSL.com Root Certification Authority RSA" -# Serial: 8875640296558310041 -# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 -# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb -# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 ------BEGIN CERTIFICATE----- -MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE -BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK -DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp -Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz -OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv -dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv -bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN -AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R -xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX -qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC -C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 -6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh -/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF -YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E -JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc -US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 -ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm -+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi -M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV -HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G -A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV -cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc -Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs -PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ -q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 -cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr -a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I -H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y -K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu -nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf -oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY -Ic2wBlX7Jz9TkHCpBB5XJ7k= ------END CERTIFICATE----- - -# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation -# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation -# Label: "SSL.com Root Certification Authority ECC" -# Serial: 8495723813297216424 -# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e -# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a -# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 ------BEGIN CERTIFICATE----- -MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC -VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T -U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 -aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz -WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 -b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS -b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB -BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI -7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg -CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud -EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD -VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T -kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ -gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl ------END CERTIFICATE----- - -# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation -# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation -# Label: "SSL.com EV Root Certification Authority RSA R2" -# Serial: 6248227494352943350 -# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 -# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a -# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c ------BEGIN CERTIFICATE----- -MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV -BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE -CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy -dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy -MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G -A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD -DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy -MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq -M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf -OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa -4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 -HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR -aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA -b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ -Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV -PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO -pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu -UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY -MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV -HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 -9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW -s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 -Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg -cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM -79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz -/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt -ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm -Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK -QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ -w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi -S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 -mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== ------END CERTIFICATE----- - -# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation -# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation -# Label: "SSL.com EV Root Certification Authority ECC" -# Serial: 3182246526754555285 -# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 -# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d -# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 ------BEGIN CERTIFICATE----- -MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC -VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T -U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp -Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx -NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv -dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv -bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 -AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA -VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku -WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP -MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX -5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ -ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg -h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 -# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 -# Label: "GlobalSign Root CA - R6" -# Serial: 1417766617973444989252670301619537 -# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae -# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 -# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 ------BEGIN CERTIFICATE----- -MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg -MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh -bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx -MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET -MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ -KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI -xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k -ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD -aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw -LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw -1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX -k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 -SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h -bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n -WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY -rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce -MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD -AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu -bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN -nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt -Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 -55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj -vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf -cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz -oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp -nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs -pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v -JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R -8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 -5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= ------END CERTIFICATE----- - -# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed -# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed -# Label: "OISTE WISeKey Global Root GC CA" -# Serial: 44084345621038548146064804565436152554 -# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 -# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 -# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d ------BEGIN CERTIFICATE----- -MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw -CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 -bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg -Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ -BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu -ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS -b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni -eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W -p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T -rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV -57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg -Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 ------END CERTIFICATE----- - -# Issuer: CN=UCA Global G2 Root O=UniTrust -# Subject: CN=UCA Global G2 Root O=UniTrust -# Label: "UCA Global G2 Root" -# Serial: 124779693093741543919145257850076631279 -# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 -# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a -# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c ------BEGIN CERTIFICATE----- -MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 -MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH -bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x -CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds -b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr -b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 -kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm -VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R -VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc -C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj -tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY -D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv -j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl -NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 -iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP -O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV -ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj -L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 -1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl -1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU -b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV -PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj -y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb -EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg -DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI -+Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy -YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX -UB+K+wb1whnw0A== ------END CERTIFICATE----- - -# Issuer: CN=UCA Extended Validation Root O=UniTrust -# Subject: CN=UCA Extended Validation Root O=UniTrust -# Label: "UCA Extended Validation Root" -# Serial: 106100277556486529736699587978573607008 -# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 -# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a -# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 ------BEGIN CERTIFICATE----- -MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH -MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF -eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx -MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV -BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog -D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS -sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop -O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk -sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi -c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj -VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz -KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ -TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G -sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs -1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD -fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T -AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN -l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR -ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ -VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 -c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp -4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s -t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj -2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO -vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C -xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx -cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM -fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax ------END CERTIFICATE----- - -# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 -# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 -# Label: "Certigna Root CA" -# Serial: 269714418870597844693661054334862075617 -# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 -# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 -# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 ------BEGIN CERTIFICATE----- -MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw -WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw -MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x -MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD -VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX -BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO -ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M -CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu -I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm -TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh -C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf -ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz -IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT -Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k -JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 -hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB -GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE -FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of -1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov -L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo -dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr -aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq -hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L -6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG -HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 -0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB -lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi -o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 -gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v -faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 -Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh -jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw -3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= ------END CERTIFICATE----- - -# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI -# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI -# Label: "emSign Root CA - G1" -# Serial: 235931866688319308814040 -# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac -# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c -# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 ------BEGIN CERTIFICATE----- -MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD -VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU -ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH -MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO -MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv -Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz -f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO -8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq -d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM -tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt -Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB -o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD -AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x -PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM -wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d -GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH -6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby -RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx -iN66zB+Afko= ------END CERTIFICATE----- - -# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI -# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI -# Label: "emSign ECC Root CA - G3" -# Serial: 287880440101571086945156 -# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 -# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 -# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b ------BEGIN CERTIFICATE----- -MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG -EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo -bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g -RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ -TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s -b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw -djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 -WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS -fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB -zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq -hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB -CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD -+JbNR6iC8hZVdyR+EhCVBCyj ------END CERTIFICATE----- - -# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI -# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI -# Label: "emSign Root CA - C1" -# Serial: 825510296613316004955058 -# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 -# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 -# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG -A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg -SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw -MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln -biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v -dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ -BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ -HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH -3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH -GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c -xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 -aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq -TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 -/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 -kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG -YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT -+xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo -WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= ------END CERTIFICATE----- - -# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI -# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI -# Label: "emSign ECC Root CA - C3" -# Serial: 582948710642506000014504 -# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 -# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 -# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 ------BEGIN CERTIFICATE----- -MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG -EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx -IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw -MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln -biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND -IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci -MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti -sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O -BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB -Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c -3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J -0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== ------END CERTIFICATE----- - -# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post -# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post -# Label: "Hongkong Post Root CA 3" -# Serial: 46170865288971385588281144162979347873371282084 -# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 -# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 -# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 ------BEGIN CERTIFICATE----- -MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQEL -BQAwbzELMAkGA1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJ -SG9uZyBLb25nMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25n -a29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2MDMwMjI5NDZaFw00MjA2MDMwMjI5 -NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcT -CUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMXSG9u -Z2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK -AoICAQCziNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFO -dem1p+/l6TWZ5Mwc50tfjTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mI -VoBc+L0sPOFMV4i707mV78vH9toxdCim5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV -9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOesL4jpNrcyCse2m5FHomY -2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj0mRiikKY -vLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+Tt -bNe/JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZb -x39ri1UbSsUgYT2uy1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+ -l2oBlKN8W4UdKjk60FSh0Tlxnf0h+bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YK -TE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsGxVd7GYYKecsAyVKvQv83j+Gj -Hno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwIDAQABo2MwYTAP -BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e -i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEw -DQYJKoZIhvcNAQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG -7BJ8dNVI0lkUmcDrudHr9EgwW62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCk -MpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWldy8joRTnU+kLBEUx3XZL7av9YROXr -gZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov+BS5gLNdTaqX4fnk -GMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDceqFS -3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJm -Ozj/2ZQw9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+ -l6mc1X5VTMbeRRAc6uk7nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6c -JfTzPV4e0hz5sy229zdcxsshTrD3mUcYhcErulWuBurQB7Lcq9CClnXO0lD+mefP -L5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB60PZ2Pierc+xYw5F9KBa -LJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fqdBb9HxEG -mpv0 ------END CERTIFICATE----- - -# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only -# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only -# Label: "Entrust Root Certification Authority - G4" -# Serial: 289383649854506086828220374796556676440 -# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 -# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 -# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 ------BEGIN CERTIFICATE----- -MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw -gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL -Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg -MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw -BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 -MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 -c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ -bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg -Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B -AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ -2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E -T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j -5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM -C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T -DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX -wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A -2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm -nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 -dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl -N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj -c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD -VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS -5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS -Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr -hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ -B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI -AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw -H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ -b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk -2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol -IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk -5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY -n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== ------END CERTIFICATE----- - -# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation -# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation -# Label: "Microsoft ECC Root Certificate Authority 2017" -# Serial: 136839042543790627607696632466672567020 -# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 -# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 -# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 ------BEGIN CERTIFICATE----- -MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw -CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD -VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw -MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV -UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy -b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq -hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR -ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb -hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E -BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 -FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV -L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB -iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= ------END CERTIFICATE----- - -# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation -# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation -# Label: "Microsoft RSA Root Certificate Authority 2017" -# Serial: 40975477897264996090493496164228220339 -# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 -# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 -# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 ------BEGIN CERTIFICATE----- -MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl -MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw -NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 -IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG -EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N -aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ -Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 -ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 -HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm -gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ -jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc -aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG -YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 -W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K -UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH -+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q -W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ -BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC -NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC -LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC -gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 -tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh -SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 -TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 -pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR -xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp -GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 -dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN -AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB -RA+GsCyRxj3qrg+E ------END CERTIFICATE----- - -# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. -# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. -# Label: "e-Szigno Root CA 2017" -# Serial: 411379200276854331539784714 -# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 -# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 -# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 ------BEGIN CERTIFICATE----- -MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV -BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk -LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv -b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ -BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg -THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v -IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv -xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H -Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G -A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB -eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo -jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ -+efcMQ== ------END CERTIFICATE----- - -# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 -# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 -# Label: "certSIGN Root CA G2" -# Serial: 313609486401300475190 -# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 -# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 -# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 ------BEGIN CERTIFICATE----- -MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV -BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g -Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ -BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ -R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF -dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw -vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ -uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp -n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs -cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW -xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P -rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF -DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx -DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy -LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C -eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB -/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ -d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq -kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC -b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl -qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 -OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c -NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk -ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO -pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj -03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk -PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE -1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX -QRBdJ3NghVdJIgc= ------END CERTIFICATE----- - -# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. -# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. -# Label: "Trustwave Global Certification Authority" -# Serial: 1846098327275375458322922162 -# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e -# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 -# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 ------BEGIN CERTIFICATE----- -MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw -CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x -ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 -c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx -OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI -SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI -b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp -Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB -ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn -swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu -7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 -1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW -80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP -JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l -RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw -hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 -coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc -BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n -twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud -EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud -DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W -0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe -uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q -lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB -aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE -sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT -MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe -qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh -VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 -h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 -EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK -yeC2nOnOcXHebD8WpHk= ------END CERTIFICATE----- - -# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. -# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. -# Label: "Trustwave Global ECC P256 Certification Authority" -# Serial: 4151900041497450638097112925 -# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 -# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf -# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 ------BEGIN CERTIFICATE----- -MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD -VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf -BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 -YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x -NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G -A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 -d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF -Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN -FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w -DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw -CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh -DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 ------END CERTIFICATE----- - -# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. -# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. -# Label: "Trustwave Global ECC P384 Certification Authority" -# Serial: 2704997926503831671788816187 -# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 -# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 -# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 ------BEGIN CERTIFICATE----- -MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD -VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf -BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 -YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x -NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G -A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 -d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF -Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB -BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ -j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF -1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G -A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 -AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC -MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu -Sw== ------END CERTIFICATE----- - -# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. -# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. -# Label: "NAVER Global Root Certification Authority" -# Serial: 9013692873798656336226253319739695165984492813 -# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b -# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 -# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 ------BEGIN CERTIFICATE----- -MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM -BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG -T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 -aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx -CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD -b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA -iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH -38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE -HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz -kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP -szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq -vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf -nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG -YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo -0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a -CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K -AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I -36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB -Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN -qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj -cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm -+LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL -hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe -lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 -p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 -piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR -LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX -5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO -dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul -9XXeifdy ------END CERTIFICATE----- - -# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres -# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres -# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" -# Serial: 131542671362353147877283741781055151509 -# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb -# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a -# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb ------BEGIN CERTIFICATE----- -MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw -CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw -FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S -Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 -MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL -DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS -QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB -BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH -sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK -Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD -VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu -SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC -MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy -v+c= ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa -# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa -# Label: "GlobalSign Root R46" -# Serial: 1552617688466950547958867513931858518042577 -# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef -# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 -# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 ------BEGIN CERTIFICATE----- -MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA -MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD -VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy -MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt -c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ -OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG -vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud -316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo -0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE -y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF -zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE -+cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN -I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs -x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa -ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC -4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV -HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 -7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg -JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti -2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk -pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF -FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt -rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk -ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 -u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP -4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 -N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 -vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa -# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa -# Label: "GlobalSign Root E46" -# Serial: 1552617690338932563915843282459653771421763 -# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f -# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 -# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 ------BEGIN CERTIFICATE----- -MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx -CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD -ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw -MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex -HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA -IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq -R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd -yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud -DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ -7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 -+RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= ------END CERTIFICATE----- - -# Issuer: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH -# Subject: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH -# Label: "GLOBALTRUST 2020" -# Serial: 109160994242082918454945253 -# MD5 Fingerprint: 8a:c7:6f:cb:6d:e3:cc:a2:f1:7c:83:fa:0e:78:d7:e8 -# SHA1 Fingerprint: d0:67:c1:13:51:01:0c:aa:d0:c7:6a:65:37:31:16:26:4f:53:71:a2 -# SHA256 Fingerprint: 9a:29:6a:51:82:d1:d4:51:a2:e3:7f:43:9b:74:da:af:a2:67:52:33:29:f9:0f:9a:0d:20:07:c3:34:e2:3c:9a ------BEGIN CERTIFICATE----- -MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkG -A1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkw -FwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYx -MDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9u -aXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMIICIjANBgkq -hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWiD59b -RatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9Z -YybNpyrOVPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3 -QWPKzv9pj2gOlTblzLmMCcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPw -yJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCmfecqQjuCgGOlYx8ZzHyyZqjC0203b+J+ -BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKAA1GqtH6qRNdDYfOiaxaJ -SaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9ORJitHHmkH -r96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj0 -4KlGDfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9Me -dKZssCz3AwyIDMvUclOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIw -q7ejMZdnrY8XD2zHc+0klGvIg5rQmjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2 -nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1UdIwQYMBaAFNwu -H9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA -VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJC -XtzoRlgHNQIw4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd -6IwPS3BD0IL/qMy/pJTAvoe9iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf -+I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS8cE54+X1+NZK3TTN+2/BT+MAi1bi -kvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2HcqtbepBEX4tdJP7 -wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxSvTOB -TI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6C -MUO+1918oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn -4rnvyOL2NSl6dPrFf4IFYqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+I -aFvowdlxfv1k7/9nR4hYJS8+hge9+6jlgqispdNpQ80xiEmEU5LAsTkbOYMBMMTy -qfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== ------END CERTIFICATE----- - -# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz -# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz -# Label: "ANF Secure Server Root CA" -# Serial: 996390341000653745 -# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 -# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 -# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 ------BEGIN CERTIFICATE----- -MIIF7zCCA9egAwIBAgIIDdPjvGz5a7EwDQYJKoZIhvcNAQELBQAwgYQxEjAQBgNV -BAUTCUc2MzI4NzUxMDELMAkGA1UEBhMCRVMxJzAlBgNVBAoTHkFORiBBdXRvcmlk -YWQgZGUgQ2VydGlmaWNhY2lvbjEUMBIGA1UECxMLQU5GIENBIFJhaXoxIjAgBgNV -BAMTGUFORiBTZWN1cmUgU2VydmVyIFJvb3QgQ0EwHhcNMTkwOTA0MTAwMDM4WhcN -MzkwODMwMTAwMDM4WjCBhDESMBAGA1UEBRMJRzYzMjg3NTEwMQswCQYDVQQGEwJF -UzEnMCUGA1UEChMeQU5GIEF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uMRQwEgYD -VQQLEwtBTkYgQ0EgUmFpejEiMCAGA1UEAxMZQU5GIFNlY3VyZSBTZXJ2ZXIgUm9v -dCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANvrayvmZFSVgpCj -cqQZAZ2cC4Ffc0m6p6zzBE57lgvsEeBbphzOG9INgxwruJ4dfkUyYA8H6XdYfp9q -yGFOtibBTI3/TO80sh9l2Ll49a2pcbnvT1gdpd50IJeh7WhM3pIXS7yr/2WanvtH -2Vdy8wmhrnZEE26cLUQ5vPnHO6RYPUG9tMJJo8gN0pcvB2VSAKduyK9o7PQUlrZX -H1bDOZ8rbeTzPvY1ZNoMHKGESy9LS+IsJJ1tk0DrtSOOMspvRdOoiXsezx76W0OL -zc2oD2rKDF65nkeP8Nm2CgtYZRczuSPkdxl9y0oukntPLxB3sY0vaJxizOBQ+OyR -p1RMVwnVdmPF6GUe7m1qzwmd+nxPrWAI/VaZDxUse6mAq4xhj0oHdkLePfTdsiQz -W7i1o0TJrH93PB0j7IKppuLIBkwC/qxcmZkLLxCKpvR/1Yd0DVlJRfbwcVw5Kda/ -SiOL9V8BY9KHcyi1Swr1+KuCLH5zJTIdC2MKF4EA/7Z2Xue0sUDKIbvVgFHlSFJn -LNJhiQcND85Cd8BEc5xEUKDbEAotlRyBr+Qc5RQe8TZBAQIvfXOn3kLMTOmJDVb3 -n5HUA8ZsyY/b2BzgQJhdZpmYgG4t/wHFzstGH6wCxkPmrqKEPMVOHj1tyRRM4y5B -u8o5vzY8KhmqQYdOpc5LMnndkEl/AgMBAAGjYzBhMB8GA1UdIwQYMBaAFJxf0Gxj -o1+TypOYCK2Mh6UsXME3MB0GA1UdDgQWBBScX9BsY6Nfk8qTmAitjIelLFzBNzAO -BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOC -AgEATh65isagmD9uw2nAalxJUqzLK114OMHVVISfk/CHGT0sZonrDUL8zPB1hT+L -9IBdeeUXZ701guLyPI59WzbLWoAAKfLOKyzxj6ptBZNscsdW699QIyjlRRA96Gej -rw5VD5AJYu9LWaL2U/HANeQvwSS9eS9OICI7/RogsKQOLHDtdD+4E5UGUcjohybK -pFtqFiGS3XNgnhAY3jyB6ugYw3yJ8otQPr0R4hUDqDZ9MwFsSBXXiJCZBMXM5gf0 -vPSQ7RPi6ovDj6MzD8EpTBNO2hVWcXNyglD2mjN8orGoGjR0ZVzO0eurU+AagNjq -OknkJjCb5RyKqKkVMoaZkgoQI1YS4PbOTOK7vtuNknMBZi9iPrJyJ0U27U1W45eZ -/zo1PqVUSlJZS2Db7v54EX9K3BR5YLZrZAPbFYPhor72I5dQ8AkzNqdxliXzuUJ9 -2zg/LFis6ELhDtjTO0wugumDLmsx2d1Hhk9tl5EuT+IocTUW0fJz/iUrB0ckYyfI -+PbZa/wSMVYIwFNCr5zQM378BvAxRAMU8Vjq8moNqRGyg77FGr8H6lnco4g175x2 -MjxNBiLOFeXdntiP2t7SxDnlF4HPOEfrf4htWRvfn0IUrn7PqLBmZdo3r5+qPeoo -tt7VMVgWglvquxl1AnMaykgaIZOQCo6ThKd9OyMYkomgjaw= ------END CERTIFICATE----- - -# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority -# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority -# Label: "Certum EC-384 CA" -# Serial: 160250656287871593594747141429395092468 -# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 -# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed -# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 ------BEGIN CERTIFICATE----- -MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw -CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw -JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT -EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 -WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT -LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX -BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE -KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm -Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj -QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 -EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J -UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn -nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= ------END CERTIFICATE----- - -# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority -# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority -# Label: "Certum Trusted Root CA" -# Serial: 40870380103424195783807378461123655149 -# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 -# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 -# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd ------BEGIN CERTIFICATE----- -MIIFwDCCA6igAwIBAgIQHr9ZULjJgDdMBvfrVU+17TANBgkqhkiG9w0BAQ0FADB6 -MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEu -MScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNV -BAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwHhcNMTgwMzE2MTIxMDEzWhcNNDMw -MzE2MTIxMDEzWjB6MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEg -U3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRo -b3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQDRLY67tzbqbTeRn06TpwXkKQMlzhyC93yZ -n0EGze2jusDbCSzBfN8pfktlL5On1AFrAygYo9idBcEq2EXxkd7fO9CAAozPOA/q -p1x4EaTByIVcJdPTsuclzxFUl6s1wB52HO8AU5853BSlLCIls3Jy/I2z5T4IHhQq -NwuIPMqw9MjCoa68wb4pZ1Xi/K1ZXP69VyywkI3C7Te2fJmItdUDmj0VDT06qKhF -8JVOJVkdzZhpu9PMMsmN74H+rX2Ju7pgE8pllWeg8xn2A1bUatMn4qGtg/BKEiJ3 -HAVz4hlxQsDsdUaakFjgao4rpUYwBI4Zshfjvqm6f1bxJAPXsiEodg42MEx51UGa -mqi4NboMOvJEGyCI98Ul1z3G4z5D3Yf+xOr1Uz5MZf87Sst4WmsXXw3Hw09Omiqi -7VdNIuJGmj8PkTQkfVXjjJU30xrwCSss0smNtA0Aq2cpKNgB9RkEth2+dv5yXMSF -ytKAQd8FqKPVhJBPC/PgP5sZ0jeJP/J7UhyM9uH3PAeXjA6iWYEMspA90+NZRu0P -qafegGtaqge2Gcu8V/OXIXoMsSt0Puvap2ctTMSYnjYJdmZm/Bo/6khUHL4wvYBQ -v3y1zgD2DGHZ5yQD4OMBgQ692IU0iL2yNqh7XAjlRICMb/gv1SHKHRzQ+8S1h9E6 -Tsd2tTVItQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSM+xx1 -vALTn04uSNn5YFSqxLNP+jAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQENBQAD -ggIBAEii1QALLtA/vBzVtVRJHlpr9OTy4EA34MwUe7nJ+jW1dReTagVphZzNTxl4 -WxmB82M+w85bj/UvXgF2Ez8sALnNllI5SW0ETsXpD4YN4fqzX4IS8TrOZgYkNCvo -zMrnadyHncI013nR03e4qllY/p0m+jiGPp2Kh2RX5Rc64vmNueMzeMGQ2Ljdt4NR -5MTMI9UGfOZR0800McD2RrsLrfw9EAUqO0qRJe6M1ISHgCq8CYyqOhNf6DR5UMEQ -GfnTKB7U0VEwKbOukGfWHwpjscWpxkIxYxeU72nLL/qMFH3EQxiJ2fAyQOaA4kZf -5ePBAFmo+eggvIksDkc0C+pXwlM2/KfUrzHN/gLldfq5Jwn58/U7yn2fqSLLiMmq -0Uc9NneoWWRrJ8/vJ8HjJLWG965+Mk2weWjROeiQWMODvA8s1pfrzgzhIMfatz7D -P78v3DSk+yshzWePS/Tj6tQ/50+6uaWTRRxmHyH6ZF5v4HaUMst19W7l9o/HuKTM -qJZ9ZPskWkoDbGs4xugDQ5r3V7mzKWmTOPQD8rv7gmsHINFSH5pkAnuYZttcTVoP -0ISVoDwUQwbKytu4QTbaakRnh6+v40URFWkIsr4WOZckbxJF0WddCajJFdr60qZf -E2Efv4WstK2tBZQIgx51F9NxO5NQI1mg7TyRVJ12AMXDuDjb ------END CERTIFICATE----- - -# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique -# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique -# Label: "TunTrust Root CA" -# Serial: 108534058042236574382096126452369648152337120275 -# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 -# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb -# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 ------BEGIN CERTIFICATE----- -MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL -BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg -Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv -b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG -EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u -IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ -KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ -n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd -2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF -VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ -GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF -li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU -r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 -eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb -MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg -jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB -7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW -5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE -ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 -90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z -xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu -QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 -FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH -22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP -xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn -dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 -Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b -nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ -CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH -u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj -d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= ------END CERTIFICATE----- - -# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA -# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA -# Label: "HARICA TLS RSA Root CA 2021" -# Serial: 76817823531813593706434026085292783742 -# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 -# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d -# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d ------BEGIN CERTIFICATE----- -MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs -MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl -c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg -Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL -MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl -YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv -b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l -mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE -4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv -a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M -pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw -Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b -LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY -AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB -AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq -E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr -W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ -CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE -AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU -X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 -f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja -H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP -JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P -zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt -jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 -/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT -BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 -aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW -xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU -63ZTGI0RmLo= ------END CERTIFICATE----- - -# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA -# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA -# Label: "HARICA TLS ECC Root CA 2021" -# Serial: 137515985548005187474074462014555733966 -# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 -# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 -# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 ------BEGIN CERTIFICATE----- -MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw -CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh -cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v -dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG -A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj -aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg -Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 -KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y -STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD -AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw -SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN -nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps ------END CERTIFICATE----- - -# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 -# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 -# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" -# Serial: 1977337328857672817 -# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 -# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe -# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a ------BEGIN CERTIFICATE----- -MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE -BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h -cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 -MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg -Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 -thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM -cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG -L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i -NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h -X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b -m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy -Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja -EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T -KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF -6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh -OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc -tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd -IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j -b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC -AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw -ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m -iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF -Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ -hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P -Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE -EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV -1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t -CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR -5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw -f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 -ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK -GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV ------END CERTIFICATE----- - -# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. -# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. -# Label: "vTrus ECC Root CA" -# Serial: 630369271402956006249506845124680065938238527194 -# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 -# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 -# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 ------BEGIN CERTIFICATE----- -MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw -RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY -BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz -MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u -LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF -K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 -v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd -e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD -VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw -V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA -AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG -GJTO ------END CERTIFICATE----- - -# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. -# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. -# Label: "vTrus Root CA" -# Serial: 387574501246983434957692974888460947164905180485 -# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc -# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 -# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 ------BEGIN CERTIFICATE----- -MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL -BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x -FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx -MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s -THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD -ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc -IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU -AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ -GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 -8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH -flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt -J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim -0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN -pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ -UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW -OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB -AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet -8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd -nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j -bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM -Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv -TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS -S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr -I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 -b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB -UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P -Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven -sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= ------END CERTIFICATE----- - -# Issuer: CN=ISRG Root X2 O=Internet Security Research Group -# Subject: CN=ISRG Root X2 O=Internet Security Research Group -# Label: "ISRG Root X2" -# Serial: 87493402998870891108772069816698636114 -# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 -# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af -# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 ------BEGIN CERTIFICATE----- -MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw -CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg -R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 -MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT -ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw -EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW -+1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 -ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI -zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW -tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 -/q4AaOeMSQ+2b1tbFfLn ------END CERTIFICATE----- - -# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. -# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. -# Label: "HiPKI Root CA - G1" -# Serial: 60966262342023497858655262305426234976 -# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 -# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 -# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc ------BEGIN CERTIFICATE----- -MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP -MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 -ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa -Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 -YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx -MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw -qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv -Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 -lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz -Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ -KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK -FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj -HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr -y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ -/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM -a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 -fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV -HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG -SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi -7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc -SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza -ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc -XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg -iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho -L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF -Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr -kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ -vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU -YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== ------END CERTIFICATE----- - -# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 -# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 -# Label: "GlobalSign ECC Root CA - R4" -# Serial: 159662223612894884239637590694 -# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc -# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 -# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 ------BEGIN CERTIFICATE----- -MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD -VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh -bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw -MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g -UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT -BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx -uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV -HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ -+wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 -bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm ------END CERTIFICATE----- - -# Issuer: CN=GTS Root R1 O=Google Trust Services LLC -# Subject: CN=GTS Root R1 O=Google Trust Services LLC -# Label: "GTS Root R1" -# Serial: 159662320309726417404178440727 -# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 -# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a -# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf ------BEGIN CERTIFICATE----- -MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw -CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU -MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw -MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp -Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo -27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w -Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw -TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl -qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH -szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 -Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk -MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 -wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p -aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN -VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID -AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb -C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe -QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy -h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 -7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J -ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef -MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ -Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT -6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ -0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm -2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb -bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c ------END CERTIFICATE----- - -# Issuer: CN=GTS Root R2 O=Google Trust Services LLC -# Subject: CN=GTS Root R2 O=Google Trust Services LLC -# Label: "GTS Root R2" -# Serial: 159662449406622349769042896298 -# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc -# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 -# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 ------BEGIN CERTIFICATE----- -MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw -CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU -MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw -MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp -Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt -nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY -6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu -MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k -RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg -f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV -+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo -dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW -Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa -G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq -gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID -AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H -vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 -0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC -B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u -NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg -yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev -HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 -xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR -TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg -JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV -7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl -6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL ------END CERTIFICATE----- - -# Issuer: CN=GTS Root R3 O=Google Trust Services LLC -# Subject: CN=GTS Root R3 O=Google Trust Services LLC -# Label: "GTS Root R3" -# Serial: 159662495401136852707857743206 -# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 -# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 -# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 ------BEGIN CERTIFICATE----- -MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD -VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG -A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw -WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz -IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi -AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G -jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 -4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW -BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 -VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm -ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X ------END CERTIFICATE----- - -# Issuer: CN=GTS Root R4 O=Google Trust Services LLC -# Subject: CN=GTS Root R4 O=Google Trust Services LLC -# Label: "GTS Root R4" -# Serial: 159662532700760215368942768210 -# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 -# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 -# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d ------BEGIN CERTIFICATE----- -MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD -VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG -A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw -WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz -IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi -AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi -QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR -HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW -BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D -9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 -p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD ------END CERTIFICATE----- - -# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj -# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj -# Label: "Telia Root CA v2" -# Serial: 7288924052977061235122729490515358 -# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 -# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd -# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c ------BEGIN CERTIFICATE----- -MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx -CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE -AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 -NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ -MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP -ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq -AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 -vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 -lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD -n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT -7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o -6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC -TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 -WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R -DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI -pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj -YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy -rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw -AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ -8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi -0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM -A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS -SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K -TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF -6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er -3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt -Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT -VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW -ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA -rBPuUBQemMc= ------END CERTIFICATE----- - -# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH -# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH -# Label: "D-TRUST BR Root CA 1 2020" -# Serial: 165870826978392376648679885835942448534 -# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed -# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 -# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 ------BEGIN CERTIFICATE----- -MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw -CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS -VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 -NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG -A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB -BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS -zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 -QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ -VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g -PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf -Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l -dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 -c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO -PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW -wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV -dWNbFJWcHwHP2NVypw87 ------END CERTIFICATE----- - -# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH -# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH -# Label: "D-TRUST EV Root CA 1 2020" -# Serial: 126288379621884218666039612629459926992 -# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e -# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 -# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db ------BEGIN CERTIFICATE----- -MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw -CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS -VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 -NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG -A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB -BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC -/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD -wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 -OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g -PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf -Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l -dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 -c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO -PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA -y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb -gfM0agPnIjhQW+0ZT0MW ------END CERTIFICATE----- - -# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. -# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. -# Label: "DigiCert TLS ECC P384 Root G5" -# Serial: 13129116028163249804115411775095713523 -# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed -# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee -# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 ------BEGIN CERTIFICATE----- -MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp -Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 -MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ -bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG -ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS -7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp -0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS -B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 -BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ -LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 -DXZDjC5Ty3zfDBeWUA== ------END CERTIFICATE----- - -# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. -# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. -# Label: "DigiCert TLS RSA4096 Root G5" -# Serial: 11930366277458970227240571539258396554 -# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 -# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 -# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 ------BEGIN CERTIFICATE----- -MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN -MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT -HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN -NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs -IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ -ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 -2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp -wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM -pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD -nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po -sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx -Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd -Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX -KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe -XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL -tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv -TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN -AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw -GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H -PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF -O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ -REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik -AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv -/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ -p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw -MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF -qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK -ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ ------END CERTIFICATE----- - -# Issuer: CN=Certainly Root R1 O=Certainly -# Subject: CN=Certainly Root R1 O=Certainly -# Label: "Certainly Root R1" -# Serial: 188833316161142517227353805653483829216 -# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 -# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af -# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 ------BEGIN CERTIFICATE----- -MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw -PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy -dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 -MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 -YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 -1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT -vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed -aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 -1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 -r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 -cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ -wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ -6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA -2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH -Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR -eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB -/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u -d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr -PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d -8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi -1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd -rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di -taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 -lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj -yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn -Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy -yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n -wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 -OV+KmalBWQewLK8= ------END CERTIFICATE----- - -# Issuer: CN=Certainly Root E1 O=Certainly -# Subject: CN=Certainly Root E1 O=Certainly -# Label: "Certainly Root E1" -# Serial: 8168531406727139161245376702891150584 -# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 -# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b -# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 ------BEGIN CERTIFICATE----- -MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw -CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu -bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ -BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s -eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK -+IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 -QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 -hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm -ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG -BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR ------END CERTIFICATE----- - -# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. -# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. -# Label: "Security Communication RootCA3" -# Serial: 16247922307909811815 -# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 -# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a -# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 ------BEGIN CERTIFICATE----- -MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV -BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw -JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 -MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc -U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg -Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r -CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA -lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG -TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 -9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 -8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 -g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we -GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst -+3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M -0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ -T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw -HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS -YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA -FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd -9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI -UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ -OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke -gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf -iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV -nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD -2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// -1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad -TdJ0MN1kURXbg4NR16/9M51NZg== ------END CERTIFICATE----- - -# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. -# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. -# Label: "Security Communication ECC RootCA1" -# Serial: 15446673492073852651 -# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 -# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 -# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 ------BEGIN CERTIFICATE----- -MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT -AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD -VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx -NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT -HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 -IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi -AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl -dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK -ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu -9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O -be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= ------END CERTIFICATE----- - -# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY -# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY -# Label: "BJCA Global Root CA1" -# Serial: 113562791157148395269083148143378328608 -# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 -# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a -# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae ------BEGIN CERTIFICATE----- -MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU -MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI -T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz -MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF -SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh -bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z -xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ -spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 -58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR -at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll -5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq -nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK -V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ -pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO -z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn -jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ -WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF -7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE -AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 -YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli -awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u -+2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 -X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN -SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo -P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI -+pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz -znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 -eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 -YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy -r/6zcCwupvI= ------END CERTIFICATE----- - -# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY -# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY -# Label: "BJCA Global Root CA2" -# Serial: 58605626836079930195615843123109055211 -# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c -# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 -# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 ------BEGIN CERTIFICATE----- -MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw -CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ -VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy -MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ -TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS -b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B -IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ -+kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK -sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD -AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA -94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B -43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== ------END CERTIFICATE----- - -# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited -# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited -# Label: "Sectigo Public Server Authentication Root E46" -# Serial: 88989738453351742415770396670917916916 -# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 -# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a -# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 ------BEGIN CERTIFICATE----- -MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw -CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T -ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN -MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG -A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT -ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA -IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC -WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ -6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B -Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa -qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q -4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== ------END CERTIFICATE----- - -# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited -# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited -# Label: "Sectigo Public Server Authentication Root R46" -# Serial: 156256931880233212765902055439220583700 -# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 -# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 -# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 ------BEGIN CERTIFICATE----- -MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf -MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD -Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw -HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY -MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp -YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa -ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz -SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf -iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X -ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 -IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS -VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE -SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu -+Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt -8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L -HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt -zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P -AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c -mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ -YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 -gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA -Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB -JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX -DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui -TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 -dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 -LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp -0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY -QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL ------END CERTIFICATE----- - -# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation -# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation -# Label: "SSL.com TLS RSA Root CA 2022" -# Serial: 148535279242832292258835760425842727825 -# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da -# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca -# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed ------BEGIN CERTIFICATE----- -MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO -MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD -DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX -DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw -b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC -AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP -L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY -t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins -S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 -PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO -L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 -R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w -dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS -+YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS -d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG -AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f -gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j -BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z -NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt -hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM -QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf -R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ -DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW -P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy -lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq -bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w -AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q -r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji -Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU -98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= ------END CERTIFICATE----- - -# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation -# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation -# Label: "SSL.com TLS ECC Root CA 2022" -# Serial: 26605119622390491762507526719404364228 -# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 -# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 -# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 ------BEGIN CERTIFICATE----- -MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw -CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT -U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 -MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh -dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG -ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm -acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN -SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME -GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW -uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp -15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN -b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== ------END CERTIFICATE----- - -# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos -# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos -# Label: "Atos TrustedRoot Root CA ECC TLS 2021" -# Serial: 81873346711060652204712539181482831616 -# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 -# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd -# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 ------BEGIN CERTIFICATE----- -MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w -LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w -CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 -MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF -Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI -zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X -tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 -AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 -KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD -aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu -CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo -9H1/IISpQuQo ------END CERTIFICATE----- - -# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos -# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos -# Label: "Atos TrustedRoot Root CA RSA TLS 2021" -# Serial: 111436099570196163832749341232207667876 -# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 -# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 -# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f ------BEGIN CERTIFICATE----- -MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM -MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx -MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 -MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD -QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN -BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z -4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv -Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ -kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs -GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln -nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh -3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD -0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy -geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 -ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB -c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI -pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU -dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB -DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS -4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs -o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ -qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw -xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM -rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 -AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR -0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY -o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 -dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE -oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== ------END CERTIFICATE----- diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py deleted file mode 100644 index c3e5466..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py +++ /dev/null @@ -1,108 +0,0 @@ -""" -certifi.py -~~~~~~~~~~ - -This module returns the installation location of cacert.pem or its contents. -""" -import sys - - -if sys.version_info >= (3, 11): - - from importlib.resources import as_file, files - - _CACERT_CTX = None - _CACERT_PATH = None - - def where() -> str: - # This is slightly terrible, but we want to delay extracting the file - # in cases where we're inside of a zipimport situation until someone - # actually calls where(), but we don't want to re-extract the file - # on every call of where(), so we'll do it once then store it in a - # global variable. - global _CACERT_CTX - global _CACERT_PATH - if _CACERT_PATH is None: - # This is slightly janky, the importlib.resources API wants you to - # manage the cleanup of this file, so it doesn't actually return a - # path, it returns a context manager that will give you the path - # when you enter it and will do any cleanup when you leave it. In - # the common case of not needing a temporary file, it will just - # return the file system location and the __exit__() is a no-op. - # - # We also have to hold onto the actual context manager, because - # it will do the cleanup whenever it gets garbage collected, so - # we will also store that at the global level as well. - _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) - _CACERT_PATH = str(_CACERT_CTX.__enter__()) - - return _CACERT_PATH - - def contents() -> str: - return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") - -elif sys.version_info >= (3, 7): - - from importlib.resources import path as get_path, read_text - - _CACERT_CTX = None - _CACERT_PATH = None - - def where() -> str: - # This is slightly terrible, but we want to delay extracting the - # file in cases where we're inside of a zipimport situation until - # someone actually calls where(), but we don't want to re-extract - # the file on every call of where(), so we'll do it once then store - # it in a global variable. - global _CACERT_CTX - global _CACERT_PATH - if _CACERT_PATH is None: - # This is slightly janky, the importlib.resources API wants you - # to manage the cleanup of this file, so it doesn't actually - # return a path, it returns a context manager that will give - # you the path when you enter it and will do any cleanup when - # you leave it. In the common case of not needing a temporary - # file, it will just return the file system location and the - # __exit__() is a no-op. - # - # We also have to hold onto the actual context manager, because - # it will do the cleanup whenever it gets garbage collected, so - # we will also store that at the global level as well. - _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") - _CACERT_PATH = str(_CACERT_CTX.__enter__()) - - return _CACERT_PATH - - def contents() -> str: - return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") - -else: - import os - import types - from typing import Union - - Package = Union[types.ModuleType, str] - Resource = Union[str, "os.PathLike"] - - # This fallback will work for Python versions prior to 3.7 that lack the - # importlib.resources module but relies on the existing `where` function - # so won't address issues with environments like PyOxidizer that don't set - # __file__ on modules. - def read_text( - package: Package, - resource: Resource, - encoding: str = 'utf-8', - errors: str = 'strict' - ) -> str: - with open(where(), encoding=encoding) as data: - return data.read() - - # If we don't have importlib.resources, then we will just do the old logic - # of assuming we're on the filesystem and munge the path directly. - def where() -> str: - f = os.path.dirname(__file__) - - return os.path.join(f, "cacert.pem") - - def contents() -> str: - return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py deleted file mode 100644 index fe58162..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py +++ /dev/null @@ -1,115 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import List, Union - -from .charsetgroupprober import CharSetGroupProber -from .charsetprober import CharSetProber -from .enums import InputState -from .resultdict import ResultDict -from .universaldetector import UniversalDetector -from .version import VERSION, __version__ - -__all__ = ["UniversalDetector", "detect", "detect_all", "__version__", "VERSION"] - - -def detect( - byte_str: Union[bytes, bytearray], should_rename_legacy: bool = False -) -> ResultDict: - """ - Detect the encoding of the given byte string. - - :param byte_str: The byte sequence to examine. - :type byte_str: ``bytes`` or ``bytearray`` - :param should_rename_legacy: Should we rename legacy encodings - to their more modern equivalents? - :type should_rename_legacy: ``bool`` - """ - if not isinstance(byte_str, bytearray): - if not isinstance(byte_str, bytes): - raise TypeError( - f"Expected object of type bytes or bytearray, got: {type(byte_str)}" - ) - byte_str = bytearray(byte_str) - detector = UniversalDetector(should_rename_legacy=should_rename_legacy) - detector.feed(byte_str) - return detector.close() - - -def detect_all( - byte_str: Union[bytes, bytearray], - ignore_threshold: bool = False, - should_rename_legacy: bool = False, -) -> List[ResultDict]: - """ - Detect all the possible encodings of the given byte string. - - :param byte_str: The byte sequence to examine. - :type byte_str: ``bytes`` or ``bytearray`` - :param ignore_threshold: Include encodings that are below - ``UniversalDetector.MINIMUM_THRESHOLD`` - in results. - :type ignore_threshold: ``bool`` - :param should_rename_legacy: Should we rename legacy encodings - to their more modern equivalents? - :type should_rename_legacy: ``bool`` - """ - if not isinstance(byte_str, bytearray): - if not isinstance(byte_str, bytes): - raise TypeError( - f"Expected object of type bytes or bytearray, got: {type(byte_str)}" - ) - byte_str = bytearray(byte_str) - - detector = UniversalDetector(should_rename_legacy=should_rename_legacy) - detector.feed(byte_str) - detector.close() - - if detector.input_state == InputState.HIGH_BYTE: - results: List[ResultDict] = [] - probers: List[CharSetProber] = [] - for prober in detector.charset_probers: - if isinstance(prober, CharSetGroupProber): - probers.extend(p for p in prober.probers) - else: - probers.append(prober) - for prober in probers: - if ignore_threshold or prober.get_confidence() > detector.MINIMUM_THRESHOLD: - charset_name = prober.charset_name or "" - lower_charset_name = charset_name.lower() - # Use Windows encoding name instead of ISO-8859 if we saw any - # extra Windows-specific bytes - if lower_charset_name.startswith("iso-8859") and detector.has_win_bytes: - charset_name = detector.ISO_WIN_MAP.get( - lower_charset_name, charset_name - ) - # Rename legacy encodings with superset encodings if asked - if should_rename_legacy: - charset_name = detector.LEGACY_MAP.get( - charset_name.lower(), charset_name - ) - results.append( - { - "encoding": charset_name, - "confidence": prober.get_confidence(), - "language": prober.language, - } - ) - if len(results) > 0: - return sorted(results, key=lambda result: -result["confidence"]) - - return [detector.result] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 77e558f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc deleted file mode 100644 index 236707f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc deleted file mode 100644 index d889a61..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc deleted file mode 100644 index f3284fb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc deleted file mode 100644 index 108041e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc deleted file mode 100644 index 63ba102..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc deleted file mode 100644 index 7af77b6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc deleted file mode 100644 index 2f953cf..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc deleted file mode 100644 index 3a88560..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc deleted file mode 100644 index f8c829e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc deleted file mode 100644 index 86aee66..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc deleted file mode 100644 index 25ea25c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc deleted file mode 100644 index b87ed9f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc deleted file mode 100644 index d718a39..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc deleted file mode 100644 index 48c374a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc deleted file mode 100644 index c520354..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc deleted file mode 100644 index 8b8cb43..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc deleted file mode 100644 index c7ef49f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc deleted file mode 100644 index 0e9b41d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc deleted file mode 100644 index 5dc0e19..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc deleted file mode 100644 index ef2feb5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc deleted file mode 100644 index 83ac942..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc deleted file mode 100644 index 982b8e0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc deleted file mode 100644 index 72b671e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc deleted file mode 100644 index dbcf2ff..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc deleted file mode 100644 index 07ed6dd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc deleted file mode 100644 index 681afe3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc deleted file mode 100644 index 3c55a17..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc deleted file mode 100644 index c83ef49..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc deleted file mode 100644 index dbd5312..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc deleted file mode 100644 index 799e763..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc deleted file mode 100644 index af2bb56..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc deleted file mode 100644 index f7349af..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc deleted file mode 100644 index a71df63..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc deleted file mode 100644 index b819433..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc deleted file mode 100644 index 5a96102..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc deleted file mode 100644 index 9daa086..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc deleted file mode 100644 index 347c7ca..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc deleted file mode 100644 index bfc832a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc deleted file mode 100644 index 135a7b4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc deleted file mode 100644 index 23536f2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc deleted file mode 100644 index eb26338..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc deleted file mode 100644 index f051092..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc deleted file mode 100644 index 04b53ce..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py deleted file mode 100644 index 87d9f97..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py +++ /dev/null @@ -1,386 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# Big5 frequency table -# by Taiwan's Mandarin Promotion Council -# -# -# 128 --> 0.42261 -# 256 --> 0.57851 -# 512 --> 0.74851 -# 1024 --> 0.89384 -# 2048 --> 0.97583 -# -# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 -# Random Distribution Ration = 512/(5401-512)=0.105 -# -# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR - -BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 - -# Char to FreqOrder table -BIG5_TABLE_SIZE = 5376 -# fmt: off -BIG5_CHAR_TO_FREQ_ORDER = ( - 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 -3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 -1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 - 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 -3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 -4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 -5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 - 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 - 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 - 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 -2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 -1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 -3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 - 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 -1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 -3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 -2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 - 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 -3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 -1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 -5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 - 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 -5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 -1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 - 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 - 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 -3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 -3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 - 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 -2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 -2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 - 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 - 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 -3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 -1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 -1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 -1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 -2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 - 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 -4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 -1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 -5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 -2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 - 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 - 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 - 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 - 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 -5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 - 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 -1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 - 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 - 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 -5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 -1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 - 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 -3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 -4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 -3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 - 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 - 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 -1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 -4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 -3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 -3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 -2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 -5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 -3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 -5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 -1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 -2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 -1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 - 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 -1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 -4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 -3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 - 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 - 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 - 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 -2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 -5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 -1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 -2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 -1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 -1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 -5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 -5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 -5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 -3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 -4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 -4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 -2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 -5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 -3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 - 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 -5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 -5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 -1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 -2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 -3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 -4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 -5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 -3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 -4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 -1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 -1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 -4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 -1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 - 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 -1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 -1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 -3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 - 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 -5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 -2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 -1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 -1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 -5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 - 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 -4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 - 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 -2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 - 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 -1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 -1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 - 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 -4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 -4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 -1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 -3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 -5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 -5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 -1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 -2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 -1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 -3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 -2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 -3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 -2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 -4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 -4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 -3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 - 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 -3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 - 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 -3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 -4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 -3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 -1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 -5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 - 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 -5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 -1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 - 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 -4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 -4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 - 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 -2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 -2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 -3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 -1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 -4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 -2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 -1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 -1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 -2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 -3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 -1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 -5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 -1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 -4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 -1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 - 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 -1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 -4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 -4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 -2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 -1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 -4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 - 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 -5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 -2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 -3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 -4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 - 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 -5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 -5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 -1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 -4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 -4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 -2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 -3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 -3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 -2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 -1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 -4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 -3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 -3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 -2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 -4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 -5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 -3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 -2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 -3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 -1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 -2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 -3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 -4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 -2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 -2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 -5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 -1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 -2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 -1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 -3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 -4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 -2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 -3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 -3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 -2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 -4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 -2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 -3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 -4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 -5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 -3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 - 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 -1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 -4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 -1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 -4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 -5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 - 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 -5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 -5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 -2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 -3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 -2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 -2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 - 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 -1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 -4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 -3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 -3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 - 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 -2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 - 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 -2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 -4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 -1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 -4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 -1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 -3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 - 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 -3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 -5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 -5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 -3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 -3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 -1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 -2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 -5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 -1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 -1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 -3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 - 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 -1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 -4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 -5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 -2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 -3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 - 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 -1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 -2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 -2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 -5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 -5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 -5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 -2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 -2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 -1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 -4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 -3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 -3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 -4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 -4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 -2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 -2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 -5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 -4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 -5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 -4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 - 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 - 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 -1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 -3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 -4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 -1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 -5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 -2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 -2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 -3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 -5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 -1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 -3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 -5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 -1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 -5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 -2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 -3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 -2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 -3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 -3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 -3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 -4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 - 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 -2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 -4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 -3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 -5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 -1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 -5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 - 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 -1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 - 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 -4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 -1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 -4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 -1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 - 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 -3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 -4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 -5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 - 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 -3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 - 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 -2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 -) -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py deleted file mode 100644 index ef09c60..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py +++ /dev/null @@ -1,47 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import Big5DistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import BIG5_SM_MODEL - - -class Big5Prober(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) - self.distribution_analyzer = Big5DistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "Big5" - - @property - def language(self) -> str: - return "Chinese" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py deleted file mode 100644 index 176cb99..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py +++ /dev/null @@ -1,261 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Tuple, Union - -from .big5freq import ( - BIG5_CHAR_TO_FREQ_ORDER, - BIG5_TABLE_SIZE, - BIG5_TYPICAL_DISTRIBUTION_RATIO, -) -from .euckrfreq import ( - EUCKR_CHAR_TO_FREQ_ORDER, - EUCKR_TABLE_SIZE, - EUCKR_TYPICAL_DISTRIBUTION_RATIO, -) -from .euctwfreq import ( - EUCTW_CHAR_TO_FREQ_ORDER, - EUCTW_TABLE_SIZE, - EUCTW_TYPICAL_DISTRIBUTION_RATIO, -) -from .gb2312freq import ( - GB2312_CHAR_TO_FREQ_ORDER, - GB2312_TABLE_SIZE, - GB2312_TYPICAL_DISTRIBUTION_RATIO, -) -from .jisfreq import ( - JIS_CHAR_TO_FREQ_ORDER, - JIS_TABLE_SIZE, - JIS_TYPICAL_DISTRIBUTION_RATIO, -) -from .johabfreq import JOHAB_TO_EUCKR_ORDER_TABLE - - -class CharDistributionAnalysis: - ENOUGH_DATA_THRESHOLD = 1024 - SURE_YES = 0.99 - SURE_NO = 0.01 - MINIMUM_DATA_THRESHOLD = 3 - - def __init__(self) -> None: - # Mapping table to get frequency order from char order (get from - # GetOrder()) - self._char_to_freq_order: Tuple[int, ...] = tuple() - self._table_size = 0 # Size of above table - # This is a constant value which varies from language to language, - # used in calculating confidence. See - # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html - # for further detail. - self.typical_distribution_ratio = 0.0 - self._done = False - self._total_chars = 0 - self._freq_chars = 0 - self.reset() - - def reset(self) -> None: - """reset analyser, clear any state""" - # If this flag is set to True, detection is done and conclusion has - # been made - self._done = False - self._total_chars = 0 # Total characters encountered - # The number of characters whose frequency order is less than 512 - self._freq_chars = 0 - - def feed(self, char: Union[bytes, bytearray], char_len: int) -> None: - """feed a character with known length""" - if char_len == 2: - # we only care about 2-bytes character in our distribution analysis - order = self.get_order(char) - else: - order = -1 - if order >= 0: - self._total_chars += 1 - # order is valid - if order < self._table_size: - if 512 > self._char_to_freq_order[order]: - self._freq_chars += 1 - - def get_confidence(self) -> float: - """return confidence based on existing data""" - # if we didn't receive any character in our consideration range, - # return negative answer - if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: - return self.SURE_NO - - if self._total_chars != self._freq_chars: - r = self._freq_chars / ( - (self._total_chars - self._freq_chars) * self.typical_distribution_ratio - ) - if r < self.SURE_YES: - return r - - # normalize confidence (we don't want to be 100% sure) - return self.SURE_YES - - def got_enough_data(self) -> bool: - # It is not necessary to receive all data to draw conclusion. - # For charset detection, certain amount of data is enough - return self._total_chars > self.ENOUGH_DATA_THRESHOLD - - def get_order(self, _: Union[bytes, bytearray]) -> int: - # We do not handle characters based on the original encoding string, - # but convert this encoding string to a number, here called order. - # This allows multiple encodings of a language to share one frequency - # table. - return -1 - - -class EUCTWDistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER - self._table_size = EUCTW_TABLE_SIZE - self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for euc-TW encoding, we are interested - # first byte range: 0xc4 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char = byte_str[0] - if first_char >= 0xC4: - return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 - return -1 - - -class EUCKRDistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER - self._table_size = EUCKR_TABLE_SIZE - self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for euc-KR encoding, we are interested - # first byte range: 0xb0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char = byte_str[0] - if first_char >= 0xB0: - return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 - return -1 - - -class JOHABDistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER - self._table_size = EUCKR_TABLE_SIZE - self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - first_char = byte_str[0] - if 0x88 <= first_char < 0xD4: - code = first_char * 256 + byte_str[1] - return JOHAB_TO_EUCKR_ORDER_TABLE.get(code, -1) - return -1 - - -class GB2312DistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER - self._table_size = GB2312_TABLE_SIZE - self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for GB2312 encoding, we are interested - # first byte range: 0xb0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char, second_char = byte_str[0], byte_str[1] - if (first_char >= 0xB0) and (second_char >= 0xA1): - return 94 * (first_char - 0xB0) + second_char - 0xA1 - return -1 - - -class Big5DistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER - self._table_size = BIG5_TABLE_SIZE - self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for big5 encoding, we are interested - # first byte range: 0xa4 -- 0xfe - # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char, second_char = byte_str[0], byte_str[1] - if first_char >= 0xA4: - if second_char >= 0xA1: - return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 - return 157 * (first_char - 0xA4) + second_char - 0x40 - return -1 - - -class SJISDistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER - self._table_size = JIS_TABLE_SIZE - self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for sjis encoding, we are interested - # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe - # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe - # no validation needed here. State machine has done that - first_char, second_char = byte_str[0], byte_str[1] - if 0x81 <= first_char <= 0x9F: - order = 188 * (first_char - 0x81) - elif 0xE0 <= first_char <= 0xEF: - order = 188 * (first_char - 0xE0 + 31) - else: - return -1 - order = order + second_char - 0x40 - if second_char > 0x7F: - order = -1 - return order - - -class EUCJPDistributionAnalysis(CharDistributionAnalysis): - def __init__(self) -> None: - super().__init__() - self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER - self._table_size = JIS_TABLE_SIZE - self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, byte_str: Union[bytes, bytearray]) -> int: - # for euc-JP encoding, we are interested - # first byte range: 0xa0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - char = byte_str[0] - if char >= 0xA0: - return 94 * (char - 0xA1) + byte_str[1] - 0xA1 - return -1 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py deleted file mode 100644 index 6def56b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py +++ /dev/null @@ -1,106 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import List, Optional, Union - -from .charsetprober import CharSetProber -from .enums import LanguageFilter, ProbingState - - -class CharSetGroupProber(CharSetProber): - def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: - super().__init__(lang_filter=lang_filter) - self._active_num = 0 - self.probers: List[CharSetProber] = [] - self._best_guess_prober: Optional[CharSetProber] = None - - def reset(self) -> None: - super().reset() - self._active_num = 0 - for prober in self.probers: - prober.reset() - prober.active = True - self._active_num += 1 - self._best_guess_prober = None - - @property - def charset_name(self) -> Optional[str]: - if not self._best_guess_prober: - self.get_confidence() - if not self._best_guess_prober: - return None - return self._best_guess_prober.charset_name - - @property - def language(self) -> Optional[str]: - if not self._best_guess_prober: - self.get_confidence() - if not self._best_guess_prober: - return None - return self._best_guess_prober.language - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - for prober in self.probers: - if not prober.active: - continue - state = prober.feed(byte_str) - if not state: - continue - if state == ProbingState.FOUND_IT: - self._best_guess_prober = prober - self._state = ProbingState.FOUND_IT - return self.state - if state == ProbingState.NOT_ME: - prober.active = False - self._active_num -= 1 - if self._active_num <= 0: - self._state = ProbingState.NOT_ME - return self.state - return self.state - - def get_confidence(self) -> float: - state = self.state - if state == ProbingState.FOUND_IT: - return 0.99 - if state == ProbingState.NOT_ME: - return 0.01 - best_conf = 0.0 - self._best_guess_prober = None - for prober in self.probers: - if not prober.active: - self.logger.debug("%s not active", prober.charset_name) - continue - conf = prober.get_confidence() - self.logger.debug( - "%s %s confidence = %s", prober.charset_name, prober.language, conf - ) - if best_conf < conf: - best_conf = conf - self._best_guess_prober = prober - if not self._best_guess_prober: - return 0.0 - return best_conf diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py deleted file mode 100644 index a103ca1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py +++ /dev/null @@ -1,147 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import logging -import re -from typing import Optional, Union - -from .enums import LanguageFilter, ProbingState - -INTERNATIONAL_WORDS_PATTERN = re.compile( - b"[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?" -) - - -class CharSetProber: - - SHORTCUT_THRESHOLD = 0.95 - - def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: - self._state = ProbingState.DETECTING - self.active = True - self.lang_filter = lang_filter - self.logger = logging.getLogger(__name__) - - def reset(self) -> None: - self._state = ProbingState.DETECTING - - @property - def charset_name(self) -> Optional[str]: - return None - - @property - def language(self) -> Optional[str]: - raise NotImplementedError - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - raise NotImplementedError - - @property - def state(self) -> ProbingState: - return self._state - - def get_confidence(self) -> float: - return 0.0 - - @staticmethod - def filter_high_byte_only(buf: Union[bytes, bytearray]) -> bytes: - buf = re.sub(b"([\x00-\x7F])+", b" ", buf) - return buf - - @staticmethod - def filter_international_words(buf: Union[bytes, bytearray]) -> bytearray: - """ - We define three types of bytes: - alphabet: english alphabets [a-zA-Z] - international: international characters [\x80-\xFF] - marker: everything else [^a-zA-Z\x80-\xFF] - The input buffer can be thought to contain a series of words delimited - by markers. This function works to filter all words that contain at - least one international character. All contiguous sequences of markers - are replaced by a single space ascii character. - This filter applies to all scripts which do not use English characters. - """ - filtered = bytearray() - - # This regex expression filters out only words that have at-least one - # international character. The word may include one marker character at - # the end. - words = INTERNATIONAL_WORDS_PATTERN.findall(buf) - - for word in words: - filtered.extend(word[:-1]) - - # If the last character in the word is a marker, replace it with a - # space as markers shouldn't affect our analysis (they are used - # similarly across all languages and may thus have similar - # frequencies). - last_char = word[-1:] - if not last_char.isalpha() and last_char < b"\x80": - last_char = b" " - filtered.extend(last_char) - - return filtered - - @staticmethod - def remove_xml_tags(buf: Union[bytes, bytearray]) -> bytes: - """ - Returns a copy of ``buf`` that retains only the sequences of English - alphabet and high byte characters that are not between <> characters. - This filter can be applied to all scripts which contain both English - characters and extended ASCII characters, but is currently only used by - ``Latin1Prober``. - """ - filtered = bytearray() - in_tag = False - prev = 0 - buf = memoryview(buf).cast("c") - - for curr, buf_char in enumerate(buf): - # Check if we're coming out of or entering an XML tag - - # https://github.com/python/typeshed/issues/8182 - if buf_char == b">": # type: ignore[comparison-overlap] - prev = curr + 1 - in_tag = False - # https://github.com/python/typeshed/issues/8182 - elif buf_char == b"<": # type: ignore[comparison-overlap] - if curr > prev and not in_tag: - # Keep everything after last non-extended-ASCII, - # non-alphabetic character - filtered.extend(buf[prev:curr]) - # Output a space to delimit stretch we kept - filtered.extend(b" ") - in_tag = True - - # If we're not in a tag... - if not in_tag: - # Keep everything after last non-extended-ASCII, non-alphabetic - # character - filtered.extend(buf[prev:]) - - return filtered diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 061c368..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc deleted file mode 100644 index ca62d7c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py deleted file mode 100644 index 43f6e14..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py +++ /dev/null @@ -1,112 +0,0 @@ -""" -Script which takes one or more file paths and reports on their detected -encodings - -Example:: - - % chardetect somefile someotherfile - somefile: windows-1252 with confidence 0.5 - someotherfile: ascii with confidence 1.0 - -If no paths are provided, it takes its input from stdin. - -""" - - -import argparse -import sys -from typing import Iterable, List, Optional - -from .. import __version__ -from ..universaldetector import UniversalDetector - - -def description_of( - lines: Iterable[bytes], - name: str = "stdin", - minimal: bool = False, - should_rename_legacy: bool = False, -) -> Optional[str]: - """ - Return a string describing the probable encoding of a file or - list of strings. - - :param lines: The lines to get the encoding of. - :type lines: Iterable of bytes - :param name: Name of file or collection of lines - :type name: str - :param should_rename_legacy: Should we rename legacy encodings to - their more modern equivalents? - :type should_rename_legacy: ``bool`` - """ - u = UniversalDetector(should_rename_legacy=should_rename_legacy) - for line in lines: - line = bytearray(line) - u.feed(line) - # shortcut out of the loop to save reading further - particularly useful if we read a BOM. - if u.done: - break - u.close() - result = u.result - if minimal: - return result["encoding"] - if result["encoding"]: - return f'{name}: {result["encoding"]} with confidence {result["confidence"]}' - return f"{name}: no result" - - -def main(argv: Optional[List[str]] = None) -> None: - """ - Handles command line arguments and gets things started. - - :param argv: List of arguments, as if specified on the command-line. - If None, ``sys.argv[1:]`` is used instead. - :type argv: list of str - """ - # Get command line arguments - parser = argparse.ArgumentParser( - description=( - "Takes one or more file paths and reports their detected encodings" - ) - ) - parser.add_argument( - "input", - help="File whose encoding we would like to determine. (default: stdin)", - type=argparse.FileType("rb"), - nargs="*", - default=[sys.stdin.buffer], - ) - parser.add_argument( - "--minimal", - help="Print only the encoding to standard output", - action="store_true", - ) - parser.add_argument( - "-l", - "--legacy", - help="Rename legacy encodings to more modern ones.", - action="store_true", - ) - parser.add_argument( - "--version", action="version", version=f"%(prog)s {__version__}" - ) - args = parser.parse_args(argv) - - for f in args.input: - if f.isatty(): - print( - "You are running chardetect interactively. Press " - "CTRL-D twice at the start of a blank line to signal the " - "end of your input. If you want help, run chardetect " - "--help\n", - file=sys.stderr, - ) - print( - description_of( - f, f.name, minimal=args.minimal, should_rename_legacy=args.legacy - ) - ) - - -if __name__ == "__main__": - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py deleted file mode 100644 index 8ed4a87..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py +++ /dev/null @@ -1,90 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import logging - -from .codingstatemachinedict import CodingStateMachineDict -from .enums import MachineState - - -class CodingStateMachine: - """ - A state machine to verify a byte sequence for a particular encoding. For - each byte the detector receives, it will feed that byte to every active - state machine available, one byte at a time. The state machine changes its - state based on its previous state and the byte it receives. There are 3 - states in a state machine that are of interest to an auto-detector: - - START state: This is the state to start with, or a legal byte sequence - (i.e. a valid code point) for character has been identified. - - ME state: This indicates that the state machine identified a byte sequence - that is specific to the charset it is designed for and that - there is no other possible encoding which can contain this byte - sequence. This will to lead to an immediate positive answer for - the detector. - - ERROR state: This indicates the state machine identified an illegal byte - sequence for that encoding. This will lead to an immediate - negative answer for this encoding. Detector will exclude this - encoding from consideration from here on. - """ - - def __init__(self, sm: CodingStateMachineDict) -> None: - self._model = sm - self._curr_byte_pos = 0 - self._curr_char_len = 0 - self._curr_state = MachineState.START - self.active = True - self.logger = logging.getLogger(__name__) - self.reset() - - def reset(self) -> None: - self._curr_state = MachineState.START - - def next_state(self, c: int) -> int: - # for each byte we get its class - # if it is first byte, we also get byte length - byte_class = self._model["class_table"][c] - if self._curr_state == MachineState.START: - self._curr_byte_pos = 0 - self._curr_char_len = self._model["char_len_table"][byte_class] - # from byte's class and state_table, we get its next state - curr_state = self._curr_state * self._model["class_factor"] + byte_class - self._curr_state = self._model["state_table"][curr_state] - self._curr_byte_pos += 1 - return self._curr_state - - def get_current_charlen(self) -> int: - return self._curr_char_len - - def get_coding_state_machine(self) -> str: - return self._model["name"] - - @property - def language(self) -> str: - return self._model["language"] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py deleted file mode 100644 index 7a3c4c7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +++ /dev/null @@ -1,19 +0,0 @@ -from typing import TYPE_CHECKING, Tuple - -if TYPE_CHECKING: - # TypedDict was introduced in Python 3.8. - # - # TODO: Remove the else block and TYPE_CHECKING check when dropping support - # for Python 3.7. - from typing import TypedDict - - class CodingStateMachineDict(TypedDict, total=False): - class_table: Tuple[int, ...] - class_factor: int - state_table: Tuple[int, ...] - char_len_table: Tuple[int, ...] - name: str - language: str # Optional key - -else: - CodingStateMachineDict = dict diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py deleted file mode 100644 index fa7307e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py +++ /dev/null @@ -1,49 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import EUCKRDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import CP949_SM_MODEL - - -class CP949Prober(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(CP949_SM_MODEL) - # NOTE: CP949 is a superset of EUC-KR, so the distribution should be - # not different. - self.distribution_analyzer = EUCKRDistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "CP949" - - @property - def language(self) -> str: - return "Korean" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py deleted file mode 100644 index 5e3e198..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -All of the Enums that are used throughout the chardet package. - -:author: Dan Blanchard (dan.blanchard@gmail.com) -""" - -from enum import Enum, Flag - - -class InputState: - """ - This enum represents the different states a universal detector can be in. - """ - - PURE_ASCII = 0 - ESC_ASCII = 1 - HIGH_BYTE = 2 - - -class LanguageFilter(Flag): - """ - This enum represents the different language filters we can apply to a - ``UniversalDetector``. - """ - - NONE = 0x00 - CHINESE_SIMPLIFIED = 0x01 - CHINESE_TRADITIONAL = 0x02 - JAPANESE = 0x04 - KOREAN = 0x08 - NON_CJK = 0x10 - ALL = 0x1F - CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL - CJK = CHINESE | JAPANESE | KOREAN - - -class ProbingState(Enum): - """ - This enum represents the different states a prober can be in. - """ - - DETECTING = 0 - FOUND_IT = 1 - NOT_ME = 2 - - -class MachineState: - """ - This enum represents the different states a state machine can be in. - """ - - START = 0 - ERROR = 1 - ITS_ME = 2 - - -class SequenceLikelihood: - """ - This enum represents the likelihood of a character following the previous one. - """ - - NEGATIVE = 0 - UNLIKELY = 1 - LIKELY = 2 - POSITIVE = 3 - - @classmethod - def get_num_categories(cls) -> int: - """:returns: The number of likelihood categories in the enum.""" - return 4 - - -class CharacterCategory: - """ - This enum represents the different categories language models for - ``SingleByteCharsetProber`` put characters into. - - Anything less than CONTROL is considered a letter. - """ - - UNDEFINED = 255 - LINE_BREAK = 254 - SYMBOL = 253 - DIGIT = 252 - CONTROL = 251 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py deleted file mode 100644 index fd71383..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py +++ /dev/null @@ -1,102 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Optional, Union - -from .charsetprober import CharSetProber -from .codingstatemachine import CodingStateMachine -from .enums import LanguageFilter, MachineState, ProbingState -from .escsm import ( - HZ_SM_MODEL, - ISO2022CN_SM_MODEL, - ISO2022JP_SM_MODEL, - ISO2022KR_SM_MODEL, -) - - -class EscCharSetProber(CharSetProber): - """ - This CharSetProber uses a "code scheme" approach for detecting encodings, - whereby easily recognizable escape or shift sequences are relied on to - identify these encodings. - """ - - def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: - super().__init__(lang_filter=lang_filter) - self.coding_sm = [] - if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: - self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) - self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) - if self.lang_filter & LanguageFilter.JAPANESE: - self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) - if self.lang_filter & LanguageFilter.KOREAN: - self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) - self.active_sm_count = 0 - self._detected_charset: Optional[str] = None - self._detected_language: Optional[str] = None - self._state = ProbingState.DETECTING - self.reset() - - def reset(self) -> None: - super().reset() - for coding_sm in self.coding_sm: - coding_sm.active = True - coding_sm.reset() - self.active_sm_count = len(self.coding_sm) - self._detected_charset = None - self._detected_language = None - - @property - def charset_name(self) -> Optional[str]: - return self._detected_charset - - @property - def language(self) -> Optional[str]: - return self._detected_language - - def get_confidence(self) -> float: - return 0.99 if self._detected_charset else 0.00 - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - for c in byte_str: - for coding_sm in self.coding_sm: - if not coding_sm.active: - continue - coding_state = coding_sm.next_state(c) - if coding_state == MachineState.ERROR: - coding_sm.active = False - self.active_sm_count -= 1 - if self.active_sm_count <= 0: - self._state = ProbingState.NOT_ME - return self.state - elif coding_state == MachineState.ITS_ME: - self._state = ProbingState.FOUND_IT - self._detected_charset = coding_sm.get_coding_state_machine() - self._detected_language = coding_sm.language - return self.state - - return self.state diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py deleted file mode 100644 index 11d4adf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py +++ /dev/null @@ -1,261 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .codingstatemachinedict import CodingStateMachineDict -from .enums import MachineState - -# fmt: off -HZ_CLS = ( - 1, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 - 0, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 - 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 4, 0, 5, 2, 0, # 78 - 7f - 1, 1, 1, 1, 1, 1, 1, 1, # 80 - 87 - 1, 1, 1, 1, 1, 1, 1, 1, # 88 - 8f - 1, 1, 1, 1, 1, 1, 1, 1, # 90 - 97 - 1, 1, 1, 1, 1, 1, 1, 1, # 98 - 9f - 1, 1, 1, 1, 1, 1, 1, 1, # a0 - a7 - 1, 1, 1, 1, 1, 1, 1, 1, # a8 - af - 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 - 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf - 1, 1, 1, 1, 1, 1, 1, 1, # c0 - c7 - 1, 1, 1, 1, 1, 1, 1, 1, # c8 - cf - 1, 1, 1, 1, 1, 1, 1, 1, # d0 - d7 - 1, 1, 1, 1, 1, 1, 1, 1, # d8 - df - 1, 1, 1, 1, 1, 1, 1, 1, # e0 - e7 - 1, 1, 1, 1, 1, 1, 1, 1, # e8 - ef - 1, 1, 1, 1, 1, 1, 1, 1, # f0 - f7 - 1, 1, 1, 1, 1, 1, 1, 1, # f8 - ff -) - -HZ_ST = ( -MachineState.START, MachineState.ERROR, 3, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 -MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f -MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.START, MachineState.START, 4, MachineState.ERROR, # 10-17 - 5, MachineState.ERROR, 6, MachineState.ERROR, 5, 5, 4, MachineState.ERROR, # 18-1f - 4, MachineState.ERROR, 4, 4, 4, MachineState.ERROR, 4, MachineState.ERROR, # 20-27 - 4, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 28-2f -) -# fmt: on - -HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) - -HZ_SM_MODEL: CodingStateMachineDict = { - "class_table": HZ_CLS, - "class_factor": 6, - "state_table": HZ_ST, - "char_len_table": HZ_CHAR_LEN_TABLE, - "name": "HZ-GB-2312", - "language": "Chinese", -} - -# fmt: off -ISO2022CN_CLS = ( - 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 - 0, 3, 0, 0, 0, 0, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 0, 0, 0, 4, 0, 0, 0, 0, # 40 - 47 - 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f - 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 - 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f - 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 - 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f - 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 - 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef - 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 - 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff -) - -ISO2022CN_ST = ( - MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 - MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f - MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 - MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, # 18-1f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 20-27 - 5, 6, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 28-2f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 30-37 - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, # 38-3f -) -# fmt: on - -ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) - -ISO2022CN_SM_MODEL: CodingStateMachineDict = { - "class_table": ISO2022CN_CLS, - "class_factor": 9, - "state_table": ISO2022CN_ST, - "char_len_table": ISO2022CN_CHAR_LEN_TABLE, - "name": "ISO-2022-CN", - "language": "Chinese", -} - -# fmt: off -ISO2022JP_CLS = ( - 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 0, 0, 0, 0, 2, 2, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 7, 0, 0, 0, # 20 - 27 - 3, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 6, 0, 4, 0, 8, 0, 0, 0, # 40 - 47 - 0, 9, 5, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f - 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 - 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f - 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 - 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f - 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 - 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef - 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 - 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff -) - -ISO2022JP_ST = ( - MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 - MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 - MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, # 18-1f - MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 20-27 - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 6, MachineState.ITS_ME, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, # 28-2f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, # 30-37 - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 38-3f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, MachineState.START, # 40-47 -) -# fmt: on - -ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) - -ISO2022JP_SM_MODEL: CodingStateMachineDict = { - "class_table": ISO2022JP_CLS, - "class_factor": 10, - "state_table": ISO2022JP_ST, - "char_len_table": ISO2022JP_CHAR_LEN_TABLE, - "name": "ISO-2022-JP", - "language": "Japanese", -} - -# fmt: off -ISO2022KR_CLS = ( - 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 3, 0, 0, 0, # 20 - 27 - 0, 4, 0, 0, 0, 0, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 0, 0, 0, 5, 0, 0, 0, 0, # 40 - 47 - 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f - 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 - 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f - 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 - 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f - 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 - 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef - 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 - 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff -) - -ISO2022KR_ST = ( - MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f - MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 10-17 - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 18-1f - MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 20-27 -) -# fmt: on - -ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) - -ISO2022KR_SM_MODEL: CodingStateMachineDict = { - "class_table": ISO2022KR_CLS, - "class_factor": 6, - "state_table": ISO2022KR_ST, - "char_len_table": ISO2022KR_CHAR_LEN_TABLE, - "name": "ISO-2022-KR", - "language": "Korean", -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py deleted file mode 100644 index 39487f4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py +++ /dev/null @@ -1,102 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Union - -from .chardistribution import EUCJPDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .enums import MachineState, ProbingState -from .jpcntx import EUCJPContextAnalysis -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import EUCJP_SM_MODEL - - -class EUCJPProber(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) - self.distribution_analyzer = EUCJPDistributionAnalysis() - self.context_analyzer = EUCJPContextAnalysis() - self.reset() - - def reset(self) -> None: - super().reset() - self.context_analyzer.reset() - - @property - def charset_name(self) -> str: - return "EUC-JP" - - @property - def language(self) -> str: - return "Japanese" - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - assert self.coding_sm is not None - assert self.distribution_analyzer is not None - - for i, byte in enumerate(byte_str): - # PY3K: byte_str is a byte array, so byte is an int, not a byte - coding_state = self.coding_sm.next_state(byte) - if coding_state == MachineState.ERROR: - self.logger.debug( - "%s %s prober hit error at byte %s", - self.charset_name, - self.language, - i, - ) - self._state = ProbingState.NOT_ME - break - if coding_state == MachineState.ITS_ME: - self._state = ProbingState.FOUND_IT - break - if coding_state == MachineState.START: - char_len = self.coding_sm.get_current_charlen() - if i == 0: - self._last_char[1] = byte - self.context_analyzer.feed(self._last_char, char_len) - self.distribution_analyzer.feed(self._last_char, char_len) - else: - self.context_analyzer.feed(byte_str[i - 1 : i + 1], char_len) - self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) - - self._last_char[0] = byte_str[-1] - - if self.state == ProbingState.DETECTING: - if self.context_analyzer.got_enough_data() and ( - self.get_confidence() > self.SHORTCUT_THRESHOLD - ): - self._state = ProbingState.FOUND_IT - - return self.state - - def get_confidence(self) -> float: - assert self.distribution_analyzer is not None - - context_conf = self.context_analyzer.get_confidence() - distrib_conf = self.distribution_analyzer.get_confidence() - return max(context_conf, distrib_conf) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py deleted file mode 100644 index 7dc3b10..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py +++ /dev/null @@ -1,196 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# Sampling from about 20M text materials include literature and computer technology - -# 128 --> 0.79 -# 256 --> 0.92 -# 512 --> 0.986 -# 1024 --> 0.99944 -# 2048 --> 0.99999 -# -# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 -# Random Distribution Ration = 512 / (2350-512) = 0.279. -# -# Typical Distribution Ratio - -EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 - -EUCKR_TABLE_SIZE = 2352 - -# Char to FreqOrder table , -# fmt: off -EUCKR_CHAR_TO_FREQ_ORDER = ( - 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, -1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, -1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, - 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, - 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, - 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, -1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, - 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, - 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, -1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, -1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, -1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, -1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, -1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, - 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, -1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, -1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, -1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, -1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, - 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, -1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, - 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, - 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, -1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, - 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, -1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, - 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, - 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, -1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, -1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, -1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, -1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, - 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, -1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, - 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, - 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, -1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, -1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, -1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, -1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, -1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, -1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, - 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, - 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, - 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, -1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, - 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, -1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, - 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, - 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, -2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, - 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, - 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, -2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, -2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, -2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, - 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, - 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, -2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, - 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, -1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, -2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, -1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, -2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, -2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, -1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, - 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, -2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, -2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, - 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, - 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, -2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, -1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, -2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, -2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, -2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, -2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, -2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, -2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, -1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, -2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, -2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, -2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, -2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, -2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, -1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, -1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, -2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, -1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, -2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, -1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, - 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, -2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, - 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, -2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, - 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, -2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, -2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, - 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, -2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, -1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, - 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, -1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, -2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, -1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, -2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, - 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, -2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, -1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, -2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, -1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, -2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, -1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, - 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, -2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, -2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, - 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, - 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, -1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, -1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, - 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, -2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, -2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, - 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, - 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, - 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, -2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, - 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, - 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, -2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, -2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, - 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, -2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, -1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, - 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, -2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, -2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, -2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, - 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, - 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, - 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, -2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, -2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, -2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, -1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, -2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, - 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 -) -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py deleted file mode 100644 index 1fc5de0..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py +++ /dev/null @@ -1,47 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import EUCKRDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import EUCKR_SM_MODEL - - -class EUCKRProber(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) - self.distribution_analyzer = EUCKRDistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "EUC-KR" - - @property - def language(self) -> str: - return "Korean" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py deleted file mode 100644 index 4900ccc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py +++ /dev/null @@ -1,388 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# EUCTW frequency table -# Converted from big5 work -# by Taiwan's Mandarin Promotion Council -# - -# 128 --> 0.42261 -# 256 --> 0.57851 -# 512 --> 0.74851 -# 1024 --> 0.89384 -# 2048 --> 0.97583 -# -# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 -# Random Distribution Ration = 512/(5401-512)=0.105 -# -# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR - -EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 - -# Char to FreqOrder table -EUCTW_TABLE_SIZE = 5376 - -# fmt: off -EUCTW_CHAR_TO_FREQ_ORDER = ( - 1, 1800, 1506, 255, 1431, 198, 9, 82, 6, 7310, 177, 202, 3615, 1256, 2808, 110, # 2742 - 3735, 33, 3241, 261, 76, 44, 2113, 16, 2931, 2184, 1176, 659, 3868, 26, 3404, 2643, # 2758 - 1198, 3869, 3313, 4060, 410, 2211, 302, 590, 361, 1963, 8, 204, 58, 4296, 7311, 1931, # 2774 - 63, 7312, 7313, 317, 1614, 75, 222, 159, 4061, 2412, 1480, 7314, 3500, 3068, 224, 2809, # 2790 - 3616, 3, 10, 3870, 1471, 29, 2774, 1135, 2852, 1939, 873, 130, 3242, 1123, 312, 7315, # 2806 - 4297, 2051, 507, 252, 682, 7316, 142, 1914, 124, 206, 2932, 34, 3501, 3173, 64, 604, # 2822 - 7317, 2494, 1976, 1977, 155, 1990, 645, 641, 1606, 7318, 3405, 337, 72, 406, 7319, 80, # 2838 - 630, 238, 3174, 1509, 263, 939, 1092, 2644, 756, 1440, 1094, 3406, 449, 69, 2969, 591, # 2854 - 179, 2095, 471, 115, 2034, 1843, 60, 50, 2970, 134, 806, 1868, 734, 2035, 3407, 180, # 2870 - 995, 1607, 156, 537, 2893, 688, 7320, 319, 1305, 779, 2144, 514, 2374, 298, 4298, 359, # 2886 - 2495, 90, 2707, 1338, 663, 11, 906, 1099, 2545, 20, 2436, 182, 532, 1716, 7321, 732, # 2902 - 1376, 4062, 1311, 1420, 3175, 25, 2312, 1056, 113, 399, 382, 1949, 242, 3408, 2467, 529, # 2918 - 3243, 475, 1447, 3617, 7322, 117, 21, 656, 810, 1297, 2295, 2329, 3502, 7323, 126, 4063, # 2934 - 706, 456, 150, 613, 4299, 71, 1118, 2036, 4064, 145, 3069, 85, 835, 486, 2114, 1246, # 2950 - 1426, 428, 727, 1285, 1015, 800, 106, 623, 303, 1281, 7324, 2127, 2354, 347, 3736, 221, # 2966 - 3503, 3110, 7325, 1955, 1153, 4065, 83, 296, 1199, 3070, 192, 624, 93, 7326, 822, 1897, # 2982 - 2810, 3111, 795, 2064, 991, 1554, 1542, 1592, 27, 43, 2853, 859, 139, 1456, 860, 4300, # 2998 - 437, 712, 3871, 164, 2392, 3112, 695, 211, 3017, 2096, 195, 3872, 1608, 3504, 3505, 3618, # 3014 - 3873, 234, 811, 2971, 2097, 3874, 2229, 1441, 3506, 1615, 2375, 668, 2076, 1638, 305, 228, # 3030 - 1664, 4301, 467, 415, 7327, 262, 2098, 1593, 239, 108, 300, 200, 1033, 512, 1247, 2077, # 3046 - 7328, 7329, 2173, 3176, 3619, 2673, 593, 845, 1062, 3244, 88, 1723, 2037, 3875, 1950, 212, # 3062 - 266, 152, 149, 468, 1898, 4066, 4302, 77, 187, 7330, 3018, 37, 5, 2972, 7331, 3876, # 3078 - 7332, 7333, 39, 2517, 4303, 2894, 3177, 2078, 55, 148, 74, 4304, 545, 483, 1474, 1029, # 3094 - 1665, 217, 1869, 1531, 3113, 1104, 2645, 4067, 24, 172, 3507, 900, 3877, 3508, 3509, 4305, # 3110 - 32, 1408, 2811, 1312, 329, 487, 2355, 2247, 2708, 784, 2674, 4, 3019, 3314, 1427, 1788, # 3126 - 188, 109, 499, 7334, 3620, 1717, 1789, 888, 1217, 3020, 4306, 7335, 3510, 7336, 3315, 1520, # 3142 - 3621, 3878, 196, 1034, 775, 7337, 7338, 929, 1815, 249, 439, 38, 7339, 1063, 7340, 794, # 3158 - 3879, 1435, 2296, 46, 178, 3245, 2065, 7341, 2376, 7342, 214, 1709, 4307, 804, 35, 707, # 3174 - 324, 3622, 1601, 2546, 140, 459, 4068, 7343, 7344, 1365, 839, 272, 978, 2257, 2572, 3409, # 3190 - 2128, 1363, 3623, 1423, 697, 100, 3071, 48, 70, 1231, 495, 3114, 2193, 7345, 1294, 7346, # 3206 - 2079, 462, 586, 1042, 3246, 853, 256, 988, 185, 2377, 3410, 1698, 434, 1084, 7347, 3411, # 3222 - 314, 2615, 2775, 4308, 2330, 2331, 569, 2280, 637, 1816, 2518, 757, 1162, 1878, 1616, 3412, # 3238 - 287, 1577, 2115, 768, 4309, 1671, 2854, 3511, 2519, 1321, 3737, 909, 2413, 7348, 4069, 933, # 3254 - 3738, 7349, 2052, 2356, 1222, 4310, 765, 2414, 1322, 786, 4311, 7350, 1919, 1462, 1677, 2895, # 3270 - 1699, 7351, 4312, 1424, 2437, 3115, 3624, 2590, 3316, 1774, 1940, 3413, 3880, 4070, 309, 1369, # 3286 - 1130, 2812, 364, 2230, 1653, 1299, 3881, 3512, 3882, 3883, 2646, 525, 1085, 3021, 902, 2000, # 3302 - 1475, 964, 4313, 421, 1844, 1415, 1057, 2281, 940, 1364, 3116, 376, 4314, 4315, 1381, 7, # 3318 - 2520, 983, 2378, 336, 1710, 2675, 1845, 321, 3414, 559, 1131, 3022, 2742, 1808, 1132, 1313, # 3334 - 265, 1481, 1857, 7352, 352, 1203, 2813, 3247, 167, 1089, 420, 2814, 776, 792, 1724, 3513, # 3350 - 4071, 2438, 3248, 7353, 4072, 7354, 446, 229, 333, 2743, 901, 3739, 1200, 1557, 4316, 2647, # 3366 - 1920, 395, 2744, 2676, 3740, 4073, 1835, 125, 916, 3178, 2616, 4317, 7355, 7356, 3741, 7357, # 3382 - 7358, 7359, 4318, 3117, 3625, 1133, 2547, 1757, 3415, 1510, 2313, 1409, 3514, 7360, 2145, 438, # 3398 - 2591, 2896, 2379, 3317, 1068, 958, 3023, 461, 311, 2855, 2677, 4074, 1915, 3179, 4075, 1978, # 3414 - 383, 750, 2745, 2617, 4076, 274, 539, 385, 1278, 1442, 7361, 1154, 1964, 384, 561, 210, # 3430 - 98, 1295, 2548, 3515, 7362, 1711, 2415, 1482, 3416, 3884, 2897, 1257, 129, 7363, 3742, 642, # 3446 - 523, 2776, 2777, 2648, 7364, 141, 2231, 1333, 68, 176, 441, 876, 907, 4077, 603, 2592, # 3462 - 710, 171, 3417, 404, 549, 18, 3118, 2393, 1410, 3626, 1666, 7365, 3516, 4319, 2898, 4320, # 3478 - 7366, 2973, 368, 7367, 146, 366, 99, 871, 3627, 1543, 748, 807, 1586, 1185, 22, 2258, # 3494 - 379, 3743, 3180, 7368, 3181, 505, 1941, 2618, 1991, 1382, 2314, 7369, 380, 2357, 218, 702, # 3510 - 1817, 1248, 3418, 3024, 3517, 3318, 3249, 7370, 2974, 3628, 930, 3250, 3744, 7371, 59, 7372, # 3526 - 585, 601, 4078, 497, 3419, 1112, 1314, 4321, 1801, 7373, 1223, 1472, 2174, 7374, 749, 1836, # 3542 - 690, 1899, 3745, 1772, 3885, 1476, 429, 1043, 1790, 2232, 2116, 917, 4079, 447, 1086, 1629, # 3558 - 7375, 556, 7376, 7377, 2020, 1654, 844, 1090, 105, 550, 966, 1758, 2815, 1008, 1782, 686, # 3574 - 1095, 7378, 2282, 793, 1602, 7379, 3518, 2593, 4322, 4080, 2933, 2297, 4323, 3746, 980, 2496, # 3590 - 544, 353, 527, 4324, 908, 2678, 2899, 7380, 381, 2619, 1942, 1348, 7381, 1341, 1252, 560, # 3606 - 3072, 7382, 3420, 2856, 7383, 2053, 973, 886, 2080, 143, 4325, 7384, 7385, 157, 3886, 496, # 3622 - 4081, 57, 840, 540, 2038, 4326, 4327, 3421, 2117, 1445, 970, 2259, 1748, 1965, 2081, 4082, # 3638 - 3119, 1234, 1775, 3251, 2816, 3629, 773, 1206, 2129, 1066, 2039, 1326, 3887, 1738, 1725, 4083, # 3654 - 279, 3120, 51, 1544, 2594, 423, 1578, 2130, 2066, 173, 4328, 1879, 7386, 7387, 1583, 264, # 3670 - 610, 3630, 4329, 2439, 280, 154, 7388, 7389, 7390, 1739, 338, 1282, 3073, 693, 2857, 1411, # 3686 - 1074, 3747, 2440, 7391, 4330, 7392, 7393, 1240, 952, 2394, 7394, 2900, 1538, 2679, 685, 1483, # 3702 - 4084, 2468, 1436, 953, 4085, 2054, 4331, 671, 2395, 79, 4086, 2441, 3252, 608, 567, 2680, # 3718 - 3422, 4087, 4088, 1691, 393, 1261, 1791, 2396, 7395, 4332, 7396, 7397, 7398, 7399, 1383, 1672, # 3734 - 3748, 3182, 1464, 522, 1119, 661, 1150, 216, 675, 4333, 3888, 1432, 3519, 609, 4334, 2681, # 3750 - 2397, 7400, 7401, 7402, 4089, 3025, 0, 7403, 2469, 315, 231, 2442, 301, 3319, 4335, 2380, # 3766 - 7404, 233, 4090, 3631, 1818, 4336, 4337, 7405, 96, 1776, 1315, 2082, 7406, 257, 7407, 1809, # 3782 - 3632, 2709, 1139, 1819, 4091, 2021, 1124, 2163, 2778, 1777, 2649, 7408, 3074, 363, 1655, 3183, # 3798 - 7409, 2975, 7410, 7411, 7412, 3889, 1567, 3890, 718, 103, 3184, 849, 1443, 341, 3320, 2934, # 3814 - 1484, 7413, 1712, 127, 67, 339, 4092, 2398, 679, 1412, 821, 7414, 7415, 834, 738, 351, # 3830 - 2976, 2146, 846, 235, 1497, 1880, 418, 1992, 3749, 2710, 186, 1100, 2147, 2746, 3520, 1545, # 3846 - 1355, 2935, 2858, 1377, 583, 3891, 4093, 2573, 2977, 7416, 1298, 3633, 1078, 2549, 3634, 2358, # 3862 - 78, 3750, 3751, 267, 1289, 2099, 2001, 1594, 4094, 348, 369, 1274, 2194, 2175, 1837, 4338, # 3878 - 1820, 2817, 3635, 2747, 2283, 2002, 4339, 2936, 2748, 144, 3321, 882, 4340, 3892, 2749, 3423, # 3894 - 4341, 2901, 7417, 4095, 1726, 320, 7418, 3893, 3026, 788, 2978, 7419, 2818, 1773, 1327, 2859, # 3910 - 3894, 2819, 7420, 1306, 4342, 2003, 1700, 3752, 3521, 2359, 2650, 787, 2022, 506, 824, 3636, # 3926 - 534, 323, 4343, 1044, 3322, 2023, 1900, 946, 3424, 7421, 1778, 1500, 1678, 7422, 1881, 4344, # 3942 - 165, 243, 4345, 3637, 2521, 123, 683, 4096, 764, 4346, 36, 3895, 1792, 589, 2902, 816, # 3958 - 626, 1667, 3027, 2233, 1639, 1555, 1622, 3753, 3896, 7423, 3897, 2860, 1370, 1228, 1932, 891, # 3974 - 2083, 2903, 304, 4097, 7424, 292, 2979, 2711, 3522, 691, 2100, 4098, 1115, 4347, 118, 662, # 3990 - 7425, 611, 1156, 854, 2381, 1316, 2861, 2, 386, 515, 2904, 7426, 7427, 3253, 868, 2234, # 4006 - 1486, 855, 2651, 785, 2212, 3028, 7428, 1040, 3185, 3523, 7429, 3121, 448, 7430, 1525, 7431, # 4022 - 2164, 4348, 7432, 3754, 7433, 4099, 2820, 3524, 3122, 503, 818, 3898, 3123, 1568, 814, 676, # 4038 - 1444, 306, 1749, 7434, 3755, 1416, 1030, 197, 1428, 805, 2821, 1501, 4349, 7435, 7436, 7437, # 4054 - 1993, 7438, 4350, 7439, 7440, 2195, 13, 2779, 3638, 2980, 3124, 1229, 1916, 7441, 3756, 2131, # 4070 - 7442, 4100, 4351, 2399, 3525, 7443, 2213, 1511, 1727, 1120, 7444, 7445, 646, 3757, 2443, 307, # 4086 - 7446, 7447, 1595, 3186, 7448, 7449, 7450, 3639, 1113, 1356, 3899, 1465, 2522, 2523, 7451, 519, # 4102 - 7452, 128, 2132, 92, 2284, 1979, 7453, 3900, 1512, 342, 3125, 2196, 7454, 2780, 2214, 1980, # 4118 - 3323, 7455, 290, 1656, 1317, 789, 827, 2360, 7456, 3758, 4352, 562, 581, 3901, 7457, 401, # 4134 - 4353, 2248, 94, 4354, 1399, 2781, 7458, 1463, 2024, 4355, 3187, 1943, 7459, 828, 1105, 4101, # 4150 - 1262, 1394, 7460, 4102, 605, 4356, 7461, 1783, 2862, 7462, 2822, 819, 2101, 578, 2197, 2937, # 4166 - 7463, 1502, 436, 3254, 4103, 3255, 2823, 3902, 2905, 3425, 3426, 7464, 2712, 2315, 7465, 7466, # 4182 - 2332, 2067, 23, 4357, 193, 826, 3759, 2102, 699, 1630, 4104, 3075, 390, 1793, 1064, 3526, # 4198 - 7467, 1579, 3076, 3077, 1400, 7468, 4105, 1838, 1640, 2863, 7469, 4358, 4359, 137, 4106, 598, # 4214 - 3078, 1966, 780, 104, 974, 2938, 7470, 278, 899, 253, 402, 572, 504, 493, 1339, 7471, # 4230 - 3903, 1275, 4360, 2574, 2550, 7472, 3640, 3029, 3079, 2249, 565, 1334, 2713, 863, 41, 7473, # 4246 - 7474, 4361, 7475, 1657, 2333, 19, 463, 2750, 4107, 606, 7476, 2981, 3256, 1087, 2084, 1323, # 4262 - 2652, 2982, 7477, 1631, 1623, 1750, 4108, 2682, 7478, 2864, 791, 2714, 2653, 2334, 232, 2416, # 4278 - 7479, 2983, 1498, 7480, 2654, 2620, 755, 1366, 3641, 3257, 3126, 2025, 1609, 119, 1917, 3427, # 4294 - 862, 1026, 4109, 7481, 3904, 3760, 4362, 3905, 4363, 2260, 1951, 2470, 7482, 1125, 817, 4110, # 4310 - 4111, 3906, 1513, 1766, 2040, 1487, 4112, 3030, 3258, 2824, 3761, 3127, 7483, 7484, 1507, 7485, # 4326 - 2683, 733, 40, 1632, 1106, 2865, 345, 4113, 841, 2524, 230, 4364, 2984, 1846, 3259, 3428, # 4342 - 7486, 1263, 986, 3429, 7487, 735, 879, 254, 1137, 857, 622, 1300, 1180, 1388, 1562, 3907, # 4358 - 3908, 2939, 967, 2751, 2655, 1349, 592, 2133, 1692, 3324, 2985, 1994, 4114, 1679, 3909, 1901, # 4374 - 2185, 7488, 739, 3642, 2715, 1296, 1290, 7489, 4115, 2198, 2199, 1921, 1563, 2595, 2551, 1870, # 4390 - 2752, 2986, 7490, 435, 7491, 343, 1108, 596, 17, 1751, 4365, 2235, 3430, 3643, 7492, 4366, # 4406 - 294, 3527, 2940, 1693, 477, 979, 281, 2041, 3528, 643, 2042, 3644, 2621, 2782, 2261, 1031, # 4422 - 2335, 2134, 2298, 3529, 4367, 367, 1249, 2552, 7493, 3530, 7494, 4368, 1283, 3325, 2004, 240, # 4438 - 1762, 3326, 4369, 4370, 836, 1069, 3128, 474, 7495, 2148, 2525, 268, 3531, 7496, 3188, 1521, # 4454 - 1284, 7497, 1658, 1546, 4116, 7498, 3532, 3533, 7499, 4117, 3327, 2684, 1685, 4118, 961, 1673, # 4470 - 2622, 190, 2005, 2200, 3762, 4371, 4372, 7500, 570, 2497, 3645, 1490, 7501, 4373, 2623, 3260, # 4486 - 1956, 4374, 584, 1514, 396, 1045, 1944, 7502, 4375, 1967, 2444, 7503, 7504, 4376, 3910, 619, # 4502 - 7505, 3129, 3261, 215, 2006, 2783, 2553, 3189, 4377, 3190, 4378, 763, 4119, 3763, 4379, 7506, # 4518 - 7507, 1957, 1767, 2941, 3328, 3646, 1174, 452, 1477, 4380, 3329, 3130, 7508, 2825, 1253, 2382, # 4534 - 2186, 1091, 2285, 4120, 492, 7509, 638, 1169, 1824, 2135, 1752, 3911, 648, 926, 1021, 1324, # 4550 - 4381, 520, 4382, 997, 847, 1007, 892, 4383, 3764, 2262, 1871, 3647, 7510, 2400, 1784, 4384, # 4566 - 1952, 2942, 3080, 3191, 1728, 4121, 2043, 3648, 4385, 2007, 1701, 3131, 1551, 30, 2263, 4122, # 4582 - 7511, 2026, 4386, 3534, 7512, 501, 7513, 4123, 594, 3431, 2165, 1821, 3535, 3432, 3536, 3192, # 4598 - 829, 2826, 4124, 7514, 1680, 3132, 1225, 4125, 7515, 3262, 4387, 4126, 3133, 2336, 7516, 4388, # 4614 - 4127, 7517, 3912, 3913, 7518, 1847, 2383, 2596, 3330, 7519, 4389, 374, 3914, 652, 4128, 4129, # 4630 - 375, 1140, 798, 7520, 7521, 7522, 2361, 4390, 2264, 546, 1659, 138, 3031, 2445, 4391, 7523, # 4646 - 2250, 612, 1848, 910, 796, 3765, 1740, 1371, 825, 3766, 3767, 7524, 2906, 2554, 7525, 692, # 4662 - 444, 3032, 2624, 801, 4392, 4130, 7526, 1491, 244, 1053, 3033, 4131, 4132, 340, 7527, 3915, # 4678 - 1041, 2987, 293, 1168, 87, 1357, 7528, 1539, 959, 7529, 2236, 721, 694, 4133, 3768, 219, # 4694 - 1478, 644, 1417, 3331, 2656, 1413, 1401, 1335, 1389, 3916, 7530, 7531, 2988, 2362, 3134, 1825, # 4710 - 730, 1515, 184, 2827, 66, 4393, 7532, 1660, 2943, 246, 3332, 378, 1457, 226, 3433, 975, # 4726 - 3917, 2944, 1264, 3537, 674, 696, 7533, 163, 7534, 1141, 2417, 2166, 713, 3538, 3333, 4394, # 4742 - 3918, 7535, 7536, 1186, 15, 7537, 1079, 1070, 7538, 1522, 3193, 3539, 276, 1050, 2716, 758, # 4758 - 1126, 653, 2945, 3263, 7539, 2337, 889, 3540, 3919, 3081, 2989, 903, 1250, 4395, 3920, 3434, # 4774 - 3541, 1342, 1681, 1718, 766, 3264, 286, 89, 2946, 3649, 7540, 1713, 7541, 2597, 3334, 2990, # 4790 - 7542, 2947, 2215, 3194, 2866, 7543, 4396, 2498, 2526, 181, 387, 1075, 3921, 731, 2187, 3335, # 4806 - 7544, 3265, 310, 313, 3435, 2299, 770, 4134, 54, 3034, 189, 4397, 3082, 3769, 3922, 7545, # 4822 - 1230, 1617, 1849, 355, 3542, 4135, 4398, 3336, 111, 4136, 3650, 1350, 3135, 3436, 3035, 4137, # 4838 - 2149, 3266, 3543, 7546, 2784, 3923, 3924, 2991, 722, 2008, 7547, 1071, 247, 1207, 2338, 2471, # 4854 - 1378, 4399, 2009, 864, 1437, 1214, 4400, 373, 3770, 1142, 2216, 667, 4401, 442, 2753, 2555, # 4870 - 3771, 3925, 1968, 4138, 3267, 1839, 837, 170, 1107, 934, 1336, 1882, 7548, 7549, 2118, 4139, # 4886 - 2828, 743, 1569, 7550, 4402, 4140, 582, 2384, 1418, 3437, 7551, 1802, 7552, 357, 1395, 1729, # 4902 - 3651, 3268, 2418, 1564, 2237, 7553, 3083, 3772, 1633, 4403, 1114, 2085, 4141, 1532, 7554, 482, # 4918 - 2446, 4404, 7555, 7556, 1492, 833, 1466, 7557, 2717, 3544, 1641, 2829, 7558, 1526, 1272, 3652, # 4934 - 4142, 1686, 1794, 416, 2556, 1902, 1953, 1803, 7559, 3773, 2785, 3774, 1159, 2316, 7560, 2867, # 4950 - 4405, 1610, 1584, 3036, 2419, 2754, 443, 3269, 1163, 3136, 7561, 7562, 3926, 7563, 4143, 2499, # 4966 - 3037, 4406, 3927, 3137, 2103, 1647, 3545, 2010, 1872, 4144, 7564, 4145, 431, 3438, 7565, 250, # 4982 - 97, 81, 4146, 7566, 1648, 1850, 1558, 160, 848, 7567, 866, 740, 1694, 7568, 2201, 2830, # 4998 - 3195, 4147, 4407, 3653, 1687, 950, 2472, 426, 469, 3196, 3654, 3655, 3928, 7569, 7570, 1188, # 5014 - 424, 1995, 861, 3546, 4148, 3775, 2202, 2685, 168, 1235, 3547, 4149, 7571, 2086, 1674, 4408, # 5030 - 3337, 3270, 220, 2557, 1009, 7572, 3776, 670, 2992, 332, 1208, 717, 7573, 7574, 3548, 2447, # 5046 - 3929, 3338, 7575, 513, 7576, 1209, 2868, 3339, 3138, 4409, 1080, 7577, 7578, 7579, 7580, 2527, # 5062 - 3656, 3549, 815, 1587, 3930, 3931, 7581, 3550, 3439, 3777, 1254, 4410, 1328, 3038, 1390, 3932, # 5078 - 1741, 3933, 3778, 3934, 7582, 236, 3779, 2448, 3271, 7583, 7584, 3657, 3780, 1273, 3781, 4411, # 5094 - 7585, 308, 7586, 4412, 245, 4413, 1851, 2473, 1307, 2575, 430, 715, 2136, 2449, 7587, 270, # 5110 - 199, 2869, 3935, 7588, 3551, 2718, 1753, 761, 1754, 725, 1661, 1840, 4414, 3440, 3658, 7589, # 5126 - 7590, 587, 14, 3272, 227, 2598, 326, 480, 2265, 943, 2755, 3552, 291, 650, 1883, 7591, # 5142 - 1702, 1226, 102, 1547, 62, 3441, 904, 4415, 3442, 1164, 4150, 7592, 7593, 1224, 1548, 2756, # 5158 - 391, 498, 1493, 7594, 1386, 1419, 7595, 2055, 1177, 4416, 813, 880, 1081, 2363, 566, 1145, # 5174 - 4417, 2286, 1001, 1035, 2558, 2599, 2238, 394, 1286, 7596, 7597, 2068, 7598, 86, 1494, 1730, # 5190 - 3936, 491, 1588, 745, 897, 2948, 843, 3340, 3937, 2757, 2870, 3273, 1768, 998, 2217, 2069, # 5206 - 397, 1826, 1195, 1969, 3659, 2993, 3341, 284, 7599, 3782, 2500, 2137, 2119, 1903, 7600, 3938, # 5222 - 2150, 3939, 4151, 1036, 3443, 1904, 114, 2559, 4152, 209, 1527, 7601, 7602, 2949, 2831, 2625, # 5238 - 2385, 2719, 3139, 812, 2560, 7603, 3274, 7604, 1559, 737, 1884, 3660, 1210, 885, 28, 2686, # 5254 - 3553, 3783, 7605, 4153, 1004, 1779, 4418, 7606, 346, 1981, 2218, 2687, 4419, 3784, 1742, 797, # 5270 - 1642, 3940, 1933, 1072, 1384, 2151, 896, 3941, 3275, 3661, 3197, 2871, 3554, 7607, 2561, 1958, # 5286 - 4420, 2450, 1785, 7608, 7609, 7610, 3942, 4154, 1005, 1308, 3662, 4155, 2720, 4421, 4422, 1528, # 5302 - 2600, 161, 1178, 4156, 1982, 987, 4423, 1101, 4157, 631, 3943, 1157, 3198, 2420, 1343, 1241, # 5318 - 1016, 2239, 2562, 372, 877, 2339, 2501, 1160, 555, 1934, 911, 3944, 7611, 466, 1170, 169, # 5334 - 1051, 2907, 2688, 3663, 2474, 2994, 1182, 2011, 2563, 1251, 2626, 7612, 992, 2340, 3444, 1540, # 5350 - 2721, 1201, 2070, 2401, 1996, 2475, 7613, 4424, 528, 1922, 2188, 1503, 1873, 1570, 2364, 3342, # 5366 - 3276, 7614, 557, 1073, 7615, 1827, 3445, 2087, 2266, 3140, 3039, 3084, 767, 3085, 2786, 4425, # 5382 - 1006, 4158, 4426, 2341, 1267, 2176, 3664, 3199, 778, 3945, 3200, 2722, 1597, 2657, 7616, 4427, # 5398 - 7617, 3446, 7618, 7619, 7620, 3277, 2689, 1433, 3278, 131, 95, 1504, 3946, 723, 4159, 3141, # 5414 - 1841, 3555, 2758, 2189, 3947, 2027, 2104, 3665, 7621, 2995, 3948, 1218, 7622, 3343, 3201, 3949, # 5430 - 4160, 2576, 248, 1634, 3785, 912, 7623, 2832, 3666, 3040, 3786, 654, 53, 7624, 2996, 7625, # 5446 - 1688, 4428, 777, 3447, 1032, 3950, 1425, 7626, 191, 820, 2120, 2833, 971, 4429, 931, 3202, # 5462 - 135, 664, 783, 3787, 1997, 772, 2908, 1935, 3951, 3788, 4430, 2909, 3203, 282, 2723, 640, # 5478 - 1372, 3448, 1127, 922, 325, 3344, 7627, 7628, 711, 2044, 7629, 7630, 3952, 2219, 2787, 1936, # 5494 - 3953, 3345, 2220, 2251, 3789, 2300, 7631, 4431, 3790, 1258, 3279, 3954, 3204, 2138, 2950, 3955, # 5510 - 3956, 7632, 2221, 258, 3205, 4432, 101, 1227, 7633, 3280, 1755, 7634, 1391, 3281, 7635, 2910, # 5526 - 2056, 893, 7636, 7637, 7638, 1402, 4161, 2342, 7639, 7640, 3206, 3556, 7641, 7642, 878, 1325, # 5542 - 1780, 2788, 4433, 259, 1385, 2577, 744, 1183, 2267, 4434, 7643, 3957, 2502, 7644, 684, 1024, # 5558 - 4162, 7645, 472, 3557, 3449, 1165, 3282, 3958, 3959, 322, 2152, 881, 455, 1695, 1152, 1340, # 5574 - 660, 554, 2153, 4435, 1058, 4436, 4163, 830, 1065, 3346, 3960, 4437, 1923, 7646, 1703, 1918, # 5590 - 7647, 932, 2268, 122, 7648, 4438, 947, 677, 7649, 3791, 2627, 297, 1905, 1924, 2269, 4439, # 5606 - 2317, 3283, 7650, 7651, 4164, 7652, 4165, 84, 4166, 112, 989, 7653, 547, 1059, 3961, 701, # 5622 - 3558, 1019, 7654, 4167, 7655, 3450, 942, 639, 457, 2301, 2451, 993, 2951, 407, 851, 494, # 5638 - 4440, 3347, 927, 7656, 1237, 7657, 2421, 3348, 573, 4168, 680, 921, 2911, 1279, 1874, 285, # 5654 - 790, 1448, 1983, 719, 2167, 7658, 7659, 4441, 3962, 3963, 1649, 7660, 1541, 563, 7661, 1077, # 5670 - 7662, 3349, 3041, 3451, 511, 2997, 3964, 3965, 3667, 3966, 1268, 2564, 3350, 3207, 4442, 4443, # 5686 - 7663, 535, 1048, 1276, 1189, 2912, 2028, 3142, 1438, 1373, 2834, 2952, 1134, 2012, 7664, 4169, # 5702 - 1238, 2578, 3086, 1259, 7665, 700, 7666, 2953, 3143, 3668, 4170, 7667, 4171, 1146, 1875, 1906, # 5718 - 4444, 2601, 3967, 781, 2422, 132, 1589, 203, 147, 273, 2789, 2402, 898, 1786, 2154, 3968, # 5734 - 3969, 7668, 3792, 2790, 7669, 7670, 4445, 4446, 7671, 3208, 7672, 1635, 3793, 965, 7673, 1804, # 5750 - 2690, 1516, 3559, 1121, 1082, 1329, 3284, 3970, 1449, 3794, 65, 1128, 2835, 2913, 2759, 1590, # 5766 - 3795, 7674, 7675, 12, 2658, 45, 976, 2579, 3144, 4447, 517, 2528, 1013, 1037, 3209, 7676, # 5782 - 3796, 2836, 7677, 3797, 7678, 3452, 7679, 2602, 614, 1998, 2318, 3798, 3087, 2724, 2628, 7680, # 5798 - 2580, 4172, 599, 1269, 7681, 1810, 3669, 7682, 2691, 3088, 759, 1060, 489, 1805, 3351, 3285, # 5814 - 1358, 7683, 7684, 2386, 1387, 1215, 2629, 2252, 490, 7685, 7686, 4173, 1759, 2387, 2343, 7687, # 5830 - 4448, 3799, 1907, 3971, 2630, 1806, 3210, 4449, 3453, 3286, 2760, 2344, 874, 7688, 7689, 3454, # 5846 - 3670, 1858, 91, 2914, 3671, 3042, 3800, 4450, 7690, 3145, 3972, 2659, 7691, 3455, 1202, 1403, # 5862 - 3801, 2954, 2529, 1517, 2503, 4451, 3456, 2504, 7692, 4452, 7693, 2692, 1885, 1495, 1731, 3973, # 5878 - 2365, 4453, 7694, 2029, 7695, 7696, 3974, 2693, 1216, 237, 2581, 4174, 2319, 3975, 3802, 4454, # 5894 - 4455, 2694, 3560, 3457, 445, 4456, 7697, 7698, 7699, 7700, 2761, 61, 3976, 3672, 1822, 3977, # 5910 - 7701, 687, 2045, 935, 925, 405, 2660, 703, 1096, 1859, 2725, 4457, 3978, 1876, 1367, 2695, # 5926 - 3352, 918, 2105, 1781, 2476, 334, 3287, 1611, 1093, 4458, 564, 3146, 3458, 3673, 3353, 945, # 5942 - 2631, 2057, 4459, 7702, 1925, 872, 4175, 7703, 3459, 2696, 3089, 349, 4176, 3674, 3979, 4460, # 5958 - 3803, 4177, 3675, 2155, 3980, 4461, 4462, 4178, 4463, 2403, 2046, 782, 3981, 400, 251, 4179, # 5974 - 1624, 7704, 7705, 277, 3676, 299, 1265, 476, 1191, 3804, 2121, 4180, 4181, 1109, 205, 7706, # 5990 - 2582, 1000, 2156, 3561, 1860, 7707, 7708, 7709, 4464, 7710, 4465, 2565, 107, 2477, 2157, 3982, # 6006 - 3460, 3147, 7711, 1533, 541, 1301, 158, 753, 4182, 2872, 3562, 7712, 1696, 370, 1088, 4183, # 6022 - 4466, 3563, 579, 327, 440, 162, 2240, 269, 1937, 1374, 3461, 968, 3043, 56, 1396, 3090, # 6038 - 2106, 3288, 3354, 7713, 1926, 2158, 4467, 2998, 7714, 3564, 7715, 7716, 3677, 4468, 2478, 7717, # 6054 - 2791, 7718, 1650, 4469, 7719, 2603, 7720, 7721, 3983, 2661, 3355, 1149, 3356, 3984, 3805, 3985, # 6070 - 7722, 1076, 49, 7723, 951, 3211, 3289, 3290, 450, 2837, 920, 7724, 1811, 2792, 2366, 4184, # 6086 - 1908, 1138, 2367, 3806, 3462, 7725, 3212, 4470, 1909, 1147, 1518, 2423, 4471, 3807, 7726, 4472, # 6102 - 2388, 2604, 260, 1795, 3213, 7727, 7728, 3808, 3291, 708, 7729, 3565, 1704, 7730, 3566, 1351, # 6118 - 1618, 3357, 2999, 1886, 944, 4185, 3358, 4186, 3044, 3359, 4187, 7731, 3678, 422, 413, 1714, # 6134 - 3292, 500, 2058, 2345, 4188, 2479, 7732, 1344, 1910, 954, 7733, 1668, 7734, 7735, 3986, 2404, # 6150 - 4189, 3567, 3809, 4190, 7736, 2302, 1318, 2505, 3091, 133, 3092, 2873, 4473, 629, 31, 2838, # 6166 - 2697, 3810, 4474, 850, 949, 4475, 3987, 2955, 1732, 2088, 4191, 1496, 1852, 7737, 3988, 620, # 6182 - 3214, 981, 1242, 3679, 3360, 1619, 3680, 1643, 3293, 2139, 2452, 1970, 1719, 3463, 2168, 7738, # 6198 - 3215, 7739, 7740, 3361, 1828, 7741, 1277, 4476, 1565, 2047, 7742, 1636, 3568, 3093, 7743, 869, # 6214 - 2839, 655, 3811, 3812, 3094, 3989, 3000, 3813, 1310, 3569, 4477, 7744, 7745, 7746, 1733, 558, # 6230 - 4478, 3681, 335, 1549, 3045, 1756, 4192, 3682, 1945, 3464, 1829, 1291, 1192, 470, 2726, 2107, # 6246 - 2793, 913, 1054, 3990, 7747, 1027, 7748, 3046, 3991, 4479, 982, 2662, 3362, 3148, 3465, 3216, # 6262 - 3217, 1946, 2794, 7749, 571, 4480, 7750, 1830, 7751, 3570, 2583, 1523, 2424, 7752, 2089, 984, # 6278 - 4481, 3683, 1959, 7753, 3684, 852, 923, 2795, 3466, 3685, 969, 1519, 999, 2048, 2320, 1705, # 6294 - 7754, 3095, 615, 1662, 151, 597, 3992, 2405, 2321, 1049, 275, 4482, 3686, 4193, 568, 3687, # 6310 - 3571, 2480, 4194, 3688, 7755, 2425, 2270, 409, 3218, 7756, 1566, 2874, 3467, 1002, 769, 2840, # 6326 - 194, 2090, 3149, 3689, 2222, 3294, 4195, 628, 1505, 7757, 7758, 1763, 2177, 3001, 3993, 521, # 6342 - 1161, 2584, 1787, 2203, 2406, 4483, 3994, 1625, 4196, 4197, 412, 42, 3096, 464, 7759, 2632, # 6358 - 4484, 3363, 1760, 1571, 2875, 3468, 2530, 1219, 2204, 3814, 2633, 2140, 2368, 4485, 4486, 3295, # 6374 - 1651, 3364, 3572, 7760, 7761, 3573, 2481, 3469, 7762, 3690, 7763, 7764, 2271, 2091, 460, 7765, # 6390 - 4487, 7766, 3002, 962, 588, 3574, 289, 3219, 2634, 1116, 52, 7767, 3047, 1796, 7768, 7769, # 6406 - 7770, 1467, 7771, 1598, 1143, 3691, 4198, 1984, 1734, 1067, 4488, 1280, 3365, 465, 4489, 1572, # 6422 - 510, 7772, 1927, 2241, 1812, 1644, 3575, 7773, 4490, 3692, 7774, 7775, 2663, 1573, 1534, 7776, # 6438 - 7777, 4199, 536, 1807, 1761, 3470, 3815, 3150, 2635, 7778, 7779, 7780, 4491, 3471, 2915, 1911, # 6454 - 2796, 7781, 3296, 1122, 377, 3220, 7782, 360, 7783, 7784, 4200, 1529, 551, 7785, 2059, 3693, # 6470 - 1769, 2426, 7786, 2916, 4201, 3297, 3097, 2322, 2108, 2030, 4492, 1404, 136, 1468, 1479, 672, # 6486 - 1171, 3221, 2303, 271, 3151, 7787, 2762, 7788, 2049, 678, 2727, 865, 1947, 4493, 7789, 2013, # 6502 - 3995, 2956, 7790, 2728, 2223, 1397, 3048, 3694, 4494, 4495, 1735, 2917, 3366, 3576, 7791, 3816, # 6518 - 509, 2841, 2453, 2876, 3817, 7792, 7793, 3152, 3153, 4496, 4202, 2531, 4497, 2304, 1166, 1010, # 6534 - 552, 681, 1887, 7794, 7795, 2957, 2958, 3996, 1287, 1596, 1861, 3154, 358, 453, 736, 175, # 6550 - 478, 1117, 905, 1167, 1097, 7796, 1853, 1530, 7797, 1706, 7798, 2178, 3472, 2287, 3695, 3473, # 6566 - 3577, 4203, 2092, 4204, 7799, 3367, 1193, 2482, 4205, 1458, 2190, 2205, 1862, 1888, 1421, 3298, # 6582 - 2918, 3049, 2179, 3474, 595, 2122, 7800, 3997, 7801, 7802, 4206, 1707, 2636, 223, 3696, 1359, # 6598 - 751, 3098, 183, 3475, 7803, 2797, 3003, 419, 2369, 633, 704, 3818, 2389, 241, 7804, 7805, # 6614 - 7806, 838, 3004, 3697, 2272, 2763, 2454, 3819, 1938, 2050, 3998, 1309, 3099, 2242, 1181, 7807, # 6630 - 1136, 2206, 3820, 2370, 1446, 4207, 2305, 4498, 7808, 7809, 4208, 1055, 2605, 484, 3698, 7810, # 6646 - 3999, 625, 4209, 2273, 3368, 1499, 4210, 4000, 7811, 4001, 4211, 3222, 2274, 2275, 3476, 7812, # 6662 - 7813, 2764, 808, 2606, 3699, 3369, 4002, 4212, 3100, 2532, 526, 3370, 3821, 4213, 955, 7814, # 6678 - 1620, 4214, 2637, 2427, 7815, 1429, 3700, 1669, 1831, 994, 928, 7816, 3578, 1260, 7817, 7818, # 6694 - 7819, 1948, 2288, 741, 2919, 1626, 4215, 2729, 2455, 867, 1184, 362, 3371, 1392, 7820, 7821, # 6710 - 4003, 4216, 1770, 1736, 3223, 2920, 4499, 4500, 1928, 2698, 1459, 1158, 7822, 3050, 3372, 2877, # 6726 - 1292, 1929, 2506, 2842, 3701, 1985, 1187, 2071, 2014, 2607, 4217, 7823, 2566, 2507, 2169, 3702, # 6742 - 2483, 3299, 7824, 3703, 4501, 7825, 7826, 666, 1003, 3005, 1022, 3579, 4218, 7827, 4502, 1813, # 6758 - 2253, 574, 3822, 1603, 295, 1535, 705, 3823, 4219, 283, 858, 417, 7828, 7829, 3224, 4503, # 6774 - 4504, 3051, 1220, 1889, 1046, 2276, 2456, 4004, 1393, 1599, 689, 2567, 388, 4220, 7830, 2484, # 6790 - 802, 7831, 2798, 3824, 2060, 1405, 2254, 7832, 4505, 3825, 2109, 1052, 1345, 3225, 1585, 7833, # 6806 - 809, 7834, 7835, 7836, 575, 2730, 3477, 956, 1552, 1469, 1144, 2323, 7837, 2324, 1560, 2457, # 6822 - 3580, 3226, 4005, 616, 2207, 3155, 2180, 2289, 7838, 1832, 7839, 3478, 4506, 7840, 1319, 3704, # 6838 - 3705, 1211, 3581, 1023, 3227, 1293, 2799, 7841, 7842, 7843, 3826, 607, 2306, 3827, 762, 2878, # 6854 - 1439, 4221, 1360, 7844, 1485, 3052, 7845, 4507, 1038, 4222, 1450, 2061, 2638, 4223, 1379, 4508, # 6870 - 2585, 7846, 7847, 4224, 1352, 1414, 2325, 2921, 1172, 7848, 7849, 3828, 3829, 7850, 1797, 1451, # 6886 - 7851, 7852, 7853, 7854, 2922, 4006, 4007, 2485, 2346, 411, 4008, 4009, 3582, 3300, 3101, 4509, # 6902 - 1561, 2664, 1452, 4010, 1375, 7855, 7856, 47, 2959, 316, 7857, 1406, 1591, 2923, 3156, 7858, # 6918 - 1025, 2141, 3102, 3157, 354, 2731, 884, 2224, 4225, 2407, 508, 3706, 726, 3583, 996, 2428, # 6934 - 3584, 729, 7859, 392, 2191, 1453, 4011, 4510, 3707, 7860, 7861, 2458, 3585, 2608, 1675, 2800, # 6950 - 919, 2347, 2960, 2348, 1270, 4511, 4012, 73, 7862, 7863, 647, 7864, 3228, 2843, 2255, 1550, # 6966 - 1346, 3006, 7865, 1332, 883, 3479, 7866, 7867, 7868, 7869, 3301, 2765, 7870, 1212, 831, 1347, # 6982 - 4226, 4512, 2326, 3830, 1863, 3053, 720, 3831, 4513, 4514, 3832, 7871, 4227, 7872, 7873, 4515, # 6998 - 7874, 7875, 1798, 4516, 3708, 2609, 4517, 3586, 1645, 2371, 7876, 7877, 2924, 669, 2208, 2665, # 7014 - 2429, 7878, 2879, 7879, 7880, 1028, 3229, 7881, 4228, 2408, 7882, 2256, 1353, 7883, 7884, 4518, # 7030 - 3158, 518, 7885, 4013, 7886, 4229, 1960, 7887, 2142, 4230, 7888, 7889, 3007, 2349, 2350, 3833, # 7046 - 516, 1833, 1454, 4014, 2699, 4231, 4519, 2225, 2610, 1971, 1129, 3587, 7890, 2766, 7891, 2961, # 7062 - 1422, 577, 1470, 3008, 1524, 3373, 7892, 7893, 432, 4232, 3054, 3480, 7894, 2586, 1455, 2508, # 7078 - 2226, 1972, 1175, 7895, 1020, 2732, 4015, 3481, 4520, 7896, 2733, 7897, 1743, 1361, 3055, 3482, # 7094 - 2639, 4016, 4233, 4521, 2290, 895, 924, 4234, 2170, 331, 2243, 3056, 166, 1627, 3057, 1098, # 7110 - 7898, 1232, 2880, 2227, 3374, 4522, 657, 403, 1196, 2372, 542, 3709, 3375, 1600, 4235, 3483, # 7126 - 7899, 4523, 2767, 3230, 576, 530, 1362, 7900, 4524, 2533, 2666, 3710, 4017, 7901, 842, 3834, # 7142 - 7902, 2801, 2031, 1014, 4018, 213, 2700, 3376, 665, 621, 4236, 7903, 3711, 2925, 2430, 7904, # 7158 - 2431, 3302, 3588, 3377, 7905, 4237, 2534, 4238, 4525, 3589, 1682, 4239, 3484, 1380, 7906, 724, # 7174 - 2277, 600, 1670, 7907, 1337, 1233, 4526, 3103, 2244, 7908, 1621, 4527, 7909, 651, 4240, 7910, # 7190 - 1612, 4241, 2611, 7911, 2844, 7912, 2734, 2307, 3058, 7913, 716, 2459, 3059, 174, 1255, 2701, # 7206 - 4019, 3590, 548, 1320, 1398, 728, 4020, 1574, 7914, 1890, 1197, 3060, 4021, 7915, 3061, 3062, # 7222 - 3712, 3591, 3713, 747, 7916, 635, 4242, 4528, 7917, 7918, 7919, 4243, 7920, 7921, 4529, 7922, # 7238 - 3378, 4530, 2432, 451, 7923, 3714, 2535, 2072, 4244, 2735, 4245, 4022, 7924, 1764, 4531, 7925, # 7254 - 4246, 350, 7926, 2278, 2390, 2486, 7927, 4247, 4023, 2245, 1434, 4024, 488, 4532, 458, 4248, # 7270 - 4025, 3715, 771, 1330, 2391, 3835, 2568, 3159, 2159, 2409, 1553, 2667, 3160, 4249, 7928, 2487, # 7286 - 2881, 2612, 1720, 2702, 4250, 3379, 4533, 7929, 2536, 4251, 7930, 3231, 4252, 2768, 7931, 2015, # 7302 - 2736, 7932, 1155, 1017, 3716, 3836, 7933, 3303, 2308, 201, 1864, 4253, 1430, 7934, 4026, 7935, # 7318 - 7936, 7937, 7938, 7939, 4254, 1604, 7940, 414, 1865, 371, 2587, 4534, 4535, 3485, 2016, 3104, # 7334 - 4536, 1708, 960, 4255, 887, 389, 2171, 1536, 1663, 1721, 7941, 2228, 4027, 2351, 2926, 1580, # 7350 - 7942, 7943, 7944, 1744, 7945, 2537, 4537, 4538, 7946, 4539, 7947, 2073, 7948, 7949, 3592, 3380, # 7366 - 2882, 4256, 7950, 4257, 2640, 3381, 2802, 673, 2703, 2460, 709, 3486, 4028, 3593, 4258, 7951, # 7382 - 1148, 502, 634, 7952, 7953, 1204, 4540, 3594, 1575, 4541, 2613, 3717, 7954, 3718, 3105, 948, # 7398 - 3232, 121, 1745, 3837, 1110, 7955, 4259, 3063, 2509, 3009, 4029, 3719, 1151, 1771, 3838, 1488, # 7414 - 4030, 1986, 7956, 2433, 3487, 7957, 7958, 2093, 7959, 4260, 3839, 1213, 1407, 2803, 531, 2737, # 7430 - 2538, 3233, 1011, 1537, 7960, 2769, 4261, 3106, 1061, 7961, 3720, 3721, 1866, 2883, 7962, 2017, # 7446 - 120, 4262, 4263, 2062, 3595, 3234, 2309, 3840, 2668, 3382, 1954, 4542, 7963, 7964, 3488, 1047, # 7462 - 2704, 1266, 7965, 1368, 4543, 2845, 649, 3383, 3841, 2539, 2738, 1102, 2846, 2669, 7966, 7967, # 7478 - 1999, 7968, 1111, 3596, 2962, 7969, 2488, 3842, 3597, 2804, 1854, 3384, 3722, 7970, 7971, 3385, # 7494 - 2410, 2884, 3304, 3235, 3598, 7972, 2569, 7973, 3599, 2805, 4031, 1460, 856, 7974, 3600, 7975, # 7510 - 2885, 2963, 7976, 2886, 3843, 7977, 4264, 632, 2510, 875, 3844, 1697, 3845, 2291, 7978, 7979, # 7526 - 4544, 3010, 1239, 580, 4545, 4265, 7980, 914, 936, 2074, 1190, 4032, 1039, 2123, 7981, 7982, # 7542 - 7983, 3386, 1473, 7984, 1354, 4266, 3846, 7985, 2172, 3064, 4033, 915, 3305, 4267, 4268, 3306, # 7558 - 1605, 1834, 7986, 2739, 398, 3601, 4269, 3847, 4034, 328, 1912, 2847, 4035, 3848, 1331, 4270, # 7574 - 3011, 937, 4271, 7987, 3602, 4036, 4037, 3387, 2160, 4546, 3388, 524, 742, 538, 3065, 1012, # 7590 - 7988, 7989, 3849, 2461, 7990, 658, 1103, 225, 3850, 7991, 7992, 4547, 7993, 4548, 7994, 3236, # 7606 - 1243, 7995, 4038, 963, 2246, 4549, 7996, 2705, 3603, 3161, 7997, 7998, 2588, 2327, 7999, 4550, # 7622 - 8000, 8001, 8002, 3489, 3307, 957, 3389, 2540, 2032, 1930, 2927, 2462, 870, 2018, 3604, 1746, # 7638 - 2770, 2771, 2434, 2463, 8003, 3851, 8004, 3723, 3107, 3724, 3490, 3390, 3725, 8005, 1179, 3066, # 7654 - 8006, 3162, 2373, 4272, 3726, 2541, 3163, 3108, 2740, 4039, 8007, 3391, 1556, 2542, 2292, 977, # 7670 - 2887, 2033, 4040, 1205, 3392, 8008, 1765, 3393, 3164, 2124, 1271, 1689, 714, 4551, 3491, 8009, # 7686 - 2328, 3852, 533, 4273, 3605, 2181, 617, 8010, 2464, 3308, 3492, 2310, 8011, 8012, 3165, 8013, # 7702 - 8014, 3853, 1987, 618, 427, 2641, 3493, 3394, 8015, 8016, 1244, 1690, 8017, 2806, 4274, 4552, # 7718 - 8018, 3494, 8019, 8020, 2279, 1576, 473, 3606, 4275, 3395, 972, 8021, 3607, 8022, 3067, 8023, # 7734 - 8024, 4553, 4554, 8025, 3727, 4041, 4042, 8026, 153, 4555, 356, 8027, 1891, 2888, 4276, 2143, # 7750 - 408, 803, 2352, 8028, 3854, 8029, 4277, 1646, 2570, 2511, 4556, 4557, 3855, 8030, 3856, 4278, # 7766 - 8031, 2411, 3396, 752, 8032, 8033, 1961, 2964, 8034, 746, 3012, 2465, 8035, 4279, 3728, 698, # 7782 - 4558, 1892, 4280, 3608, 2543, 4559, 3609, 3857, 8036, 3166, 3397, 8037, 1823, 1302, 4043, 2706, # 7798 - 3858, 1973, 4281, 8038, 4282, 3167, 823, 1303, 1288, 1236, 2848, 3495, 4044, 3398, 774, 3859, # 7814 - 8039, 1581, 4560, 1304, 2849, 3860, 4561, 8040, 2435, 2161, 1083, 3237, 4283, 4045, 4284, 344, # 7830 - 1173, 288, 2311, 454, 1683, 8041, 8042, 1461, 4562, 4046, 2589, 8043, 8044, 4563, 985, 894, # 7846 - 8045, 3399, 3168, 8046, 1913, 2928, 3729, 1988, 8047, 2110, 1974, 8048, 4047, 8049, 2571, 1194, # 7862 - 425, 8050, 4564, 3169, 1245, 3730, 4285, 8051, 8052, 2850, 8053, 636, 4565, 1855, 3861, 760, # 7878 - 1799, 8054, 4286, 2209, 1508, 4566, 4048, 1893, 1684, 2293, 8055, 8056, 8057, 4287, 4288, 2210, # 7894 - 479, 8058, 8059, 832, 8060, 4049, 2489, 8061, 2965, 2490, 3731, 990, 3109, 627, 1814, 2642, # 7910 - 4289, 1582, 4290, 2125, 2111, 3496, 4567, 8062, 799, 4291, 3170, 8063, 4568, 2112, 1737, 3013, # 7926 - 1018, 543, 754, 4292, 3309, 1676, 4569, 4570, 4050, 8064, 1489, 8065, 3497, 8066, 2614, 2889, # 7942 - 4051, 8067, 8068, 2966, 8069, 8070, 8071, 8072, 3171, 4571, 4572, 2182, 1722, 8073, 3238, 3239, # 7958 - 1842, 3610, 1715, 481, 365, 1975, 1856, 8074, 8075, 1962, 2491, 4573, 8076, 2126, 3611, 3240, # 7974 - 433, 1894, 2063, 2075, 8077, 602, 2741, 8078, 8079, 8080, 8081, 8082, 3014, 1628, 3400, 8083, # 7990 - 3172, 4574, 4052, 2890, 4575, 2512, 8084, 2544, 2772, 8085, 8086, 8087, 3310, 4576, 2891, 8088, # 8006 - 4577, 8089, 2851, 4578, 4579, 1221, 2967, 4053, 2513, 8090, 8091, 8092, 1867, 1989, 8093, 8094, # 8022 - 8095, 1895, 8096, 8097, 4580, 1896, 4054, 318, 8098, 2094, 4055, 4293, 8099, 8100, 485, 8101, # 8038 - 938, 3862, 553, 2670, 116, 8102, 3863, 3612, 8103, 3498, 2671, 2773, 3401, 3311, 2807, 8104, # 8054 - 3613, 2929, 4056, 1747, 2930, 2968, 8105, 8106, 207, 8107, 8108, 2672, 4581, 2514, 8109, 3015, # 8070 - 890, 3614, 3864, 8110, 1877, 3732, 3402, 8111, 2183, 2353, 3403, 1652, 8112, 8113, 8114, 941, # 8086 - 2294, 208, 3499, 4057, 2019, 330, 4294, 3865, 2892, 2492, 3733, 4295, 8115, 8116, 8117, 8118, # 8102 -) -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py deleted file mode 100644 index a37ab18..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py +++ /dev/null @@ -1,47 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import EUCTWDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import EUCTW_SM_MODEL - - -class EUCTWProber(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) - self.distribution_analyzer = EUCTWDistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "EUC-TW" - - @property - def language(self) -> str: - return "Taiwan" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py deleted file mode 100644 index b32bfc7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py +++ /dev/null @@ -1,284 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# GB2312 most frequently used character table -# -# Char to FreqOrder table , from hz6763 - -# 512 --> 0.79 -- 0.79 -# 1024 --> 0.92 -- 0.13 -# 2048 --> 0.98 -- 0.06 -# 6768 --> 1.00 -- 0.02 -# -# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 -# Random Distribution Ration = 512 / (3755 - 512) = 0.157 -# -# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR - -GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 - -GB2312_TABLE_SIZE = 3760 - -# fmt: off -GB2312_CHAR_TO_FREQ_ORDER = ( -1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, -2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, -2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, - 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, -1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, -1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, - 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, -1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, -2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, -3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, - 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, -1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, - 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, -2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, - 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, -2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, -1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, -3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, - 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, -1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, - 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, -2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, -1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, -3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, -1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, -2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, -1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, - 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, -3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, -3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, - 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, -3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, - 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, -1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, -3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, -2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, -1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, - 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, -1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, -4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, - 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, -3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, -3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, - 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, -1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, -2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, -1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, -1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, - 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, -3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, -3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, -4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, - 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, -3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, -1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, -1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, -4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, - 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, - 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, -3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, -1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, - 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, -1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, -2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, - 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, - 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, - 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, -3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, -4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, -3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, - 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, -2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, -2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, -2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, - 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, -2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, - 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, - 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, - 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, -3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, -2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, -2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, -1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, - 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, -2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, - 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, - 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, -1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, -1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, - 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, - 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, -1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, -2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, -3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, -2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, -2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, -2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, -3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, -1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, -1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, -2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, -1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, -3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, -1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, -1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, -3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, - 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, -2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, -1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, -4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, -1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, -1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, -3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, -1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, - 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, - 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, -1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, - 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, -1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, -1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, - 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, -3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, -4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, -3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, -2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, -2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, -1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, -3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, -2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, -1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, -1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, - 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, -2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, -2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, -3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, -4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, -3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, - 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, -3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, -2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, -1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, - 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, - 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, -3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, -4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, -2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, -1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, -1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, - 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, -1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, -3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, - 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, - 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, -1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, - 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, -1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, - 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, -2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, - 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, -2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, -2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, -1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, -1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, -2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, - 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, -1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, -1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, -2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, -2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, -3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, -1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, -4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, - 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, - 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, -3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, -1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, - 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, -3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, -1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, -4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, -1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, -2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, -1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, - 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, -1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, -3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, - 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, -2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, - 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, -1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, -1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, -1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, -3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, -2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, -3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, -3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, -3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, - 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, -2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, - 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, -2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, - 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, -1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, - 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, - 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, -1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, -3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, -3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, -1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, -1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, -3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, -2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, -2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, -1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, -3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, - 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, -4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, -1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, -2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, -3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, -3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, -1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, - 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, - 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, -2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, - 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, -1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, - 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, -1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, -1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, -1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, -1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, -1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, - 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, - 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 -) -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py deleted file mode 100644 index d423e73..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py +++ /dev/null @@ -1,47 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import GB2312DistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import GB2312_SM_MODEL - - -class GB2312Prober(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) - self.distribution_analyzer = GB2312DistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "GB2312" - - @property - def language(self) -> str: - return "Chinese" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py deleted file mode 100644 index 785d005..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py +++ /dev/null @@ -1,316 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Shy Shalom -# Portions created by the Initial Developer are Copyright (C) 2005 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Optional, Union - -from .charsetprober import CharSetProber -from .enums import ProbingState -from .sbcharsetprober import SingleByteCharSetProber - -# This prober doesn't actually recognize a language or a charset. -# It is a helper prober for the use of the Hebrew model probers - -### General ideas of the Hebrew charset recognition ### -# -# Four main charsets exist in Hebrew: -# "ISO-8859-8" - Visual Hebrew -# "windows-1255" - Logical Hebrew -# "ISO-8859-8-I" - Logical Hebrew -# "x-mac-hebrew" - ?? Logical Hebrew ?? -# -# Both "ISO" charsets use a completely identical set of code points, whereas -# "windows-1255" and "x-mac-hebrew" are two different proper supersets of -# these code points. windows-1255 defines additional characters in the range -# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific -# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. -# x-mac-hebrew defines similar additional code points but with a different -# mapping. -# -# As far as an average Hebrew text with no diacritics is concerned, all four -# charsets are identical with respect to code points. Meaning that for the -# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters -# (including final letters). -# -# The dominant difference between these charsets is their directionality. -# "Visual" directionality means that the text is ordered as if the renderer is -# not aware of a BIDI rendering algorithm. The renderer sees the text and -# draws it from left to right. The text itself when ordered naturally is read -# backwards. A buffer of Visual Hebrew generally looks like so: -# "[last word of first line spelled backwards] [whole line ordered backwards -# and spelled backwards] [first word of first line spelled backwards] -# [end of line] [last word of second line] ... etc' " -# adding punctuation marks, numbers and English text to visual text is -# naturally also "visual" and from left to right. -# -# "Logical" directionality means the text is ordered "naturally" according to -# the order it is read. It is the responsibility of the renderer to display -# the text from right to left. A BIDI algorithm is used to place general -# punctuation marks, numbers and English text in the text. -# -# Texts in x-mac-hebrew are almost impossible to find on the Internet. From -# what little evidence I could find, it seems that its general directionality -# is Logical. -# -# To sum up all of the above, the Hebrew probing mechanism knows about two -# charsets: -# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are -# backwards while line order is natural. For charset recognition purposes -# the line order is unimportant (In fact, for this implementation, even -# word order is unimportant). -# Logical Hebrew - "windows-1255" - normal, naturally ordered text. -# -# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be -# specifically identified. -# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew -# that contain special punctuation marks or diacritics is displayed with -# some unconverted characters showing as question marks. This problem might -# be corrected using another model prober for x-mac-hebrew. Due to the fact -# that x-mac-hebrew texts are so rare, writing another model prober isn't -# worth the effort and performance hit. -# -#### The Prober #### -# -# The prober is divided between two SBCharSetProbers and a HebrewProber, -# all of which are managed, created, fed data, inquired and deleted by the -# SBCSGroupProber. The two SBCharSetProbers identify that the text is in -# fact some kind of Hebrew, Logical or Visual. The final decision about which -# one is it is made by the HebrewProber by combining final-letter scores -# with the scores of the two SBCharSetProbers to produce a final answer. -# -# The SBCSGroupProber is responsible for stripping the original text of HTML -# tags, English characters, numbers, low-ASCII punctuation characters, spaces -# and new lines. It reduces any sequence of such characters to a single space. -# The buffer fed to each prober in the SBCS group prober is pure text in -# high-ASCII. -# The two SBCharSetProbers (model probers) share the same language model: -# Win1255Model. -# The first SBCharSetProber uses the model normally as any other -# SBCharSetProber does, to recognize windows-1255, upon which this model was -# built. The second SBCharSetProber is told to make the pair-of-letter -# lookup in the language model backwards. This in practice exactly simulates -# a visual Hebrew model using the windows-1255 logical Hebrew model. -# -# The HebrewProber is not using any language model. All it does is look for -# final-letter evidence suggesting the text is either logical Hebrew or visual -# Hebrew. Disjointed from the model probers, the results of the HebrewProber -# alone are meaningless. HebrewProber always returns 0.00 as confidence -# since it never identifies a charset by itself. Instead, the pointer to the -# HebrewProber is passed to the model probers as a helper "Name Prober". -# When the Group prober receives a positive identification from any prober, -# it asks for the name of the charset identified. If the prober queried is a -# Hebrew model prober, the model prober forwards the call to the -# HebrewProber to make the final decision. In the HebrewProber, the -# decision is made according to the final-letters scores maintained and Both -# model probers scores. The answer is returned in the form of the name of the -# charset identified, either "windows-1255" or "ISO-8859-8". - - -class HebrewProber(CharSetProber): - SPACE = 0x20 - # windows-1255 / ISO-8859-8 code points of interest - FINAL_KAF = 0xEA - NORMAL_KAF = 0xEB - FINAL_MEM = 0xED - NORMAL_MEM = 0xEE - FINAL_NUN = 0xEF - NORMAL_NUN = 0xF0 - FINAL_PE = 0xF3 - NORMAL_PE = 0xF4 - FINAL_TSADI = 0xF5 - NORMAL_TSADI = 0xF6 - - # Minimum Visual vs Logical final letter score difference. - # If the difference is below this, don't rely solely on the final letter score - # distance. - MIN_FINAL_CHAR_DISTANCE = 5 - - # Minimum Visual vs Logical model score difference. - # If the difference is below this, don't rely at all on the model score - # distance. - MIN_MODEL_DISTANCE = 0.01 - - VISUAL_HEBREW_NAME = "ISO-8859-8" - LOGICAL_HEBREW_NAME = "windows-1255" - - def __init__(self) -> None: - super().__init__() - self._final_char_logical_score = 0 - self._final_char_visual_score = 0 - self._prev = self.SPACE - self._before_prev = self.SPACE - self._logical_prober: Optional[SingleByteCharSetProber] = None - self._visual_prober: Optional[SingleByteCharSetProber] = None - self.reset() - - def reset(self) -> None: - self._final_char_logical_score = 0 - self._final_char_visual_score = 0 - # The two last characters seen in the previous buffer, - # mPrev and mBeforePrev are initialized to space in order to simulate - # a word delimiter at the beginning of the data - self._prev = self.SPACE - self._before_prev = self.SPACE - # These probers are owned by the group prober. - - def set_model_probers( - self, - logical_prober: SingleByteCharSetProber, - visual_prober: SingleByteCharSetProber, - ) -> None: - self._logical_prober = logical_prober - self._visual_prober = visual_prober - - def is_final(self, c: int) -> bool: - return c in [ - self.FINAL_KAF, - self.FINAL_MEM, - self.FINAL_NUN, - self.FINAL_PE, - self.FINAL_TSADI, - ] - - def is_non_final(self, c: int) -> bool: - # The normal Tsadi is not a good Non-Final letter due to words like - # 'lechotet' (to chat) containing an apostrophe after the tsadi. This - # apostrophe is converted to a space in FilterWithoutEnglishLetters - # causing the Non-Final tsadi to appear at an end of a word even - # though this is not the case in the original text. - # The letters Pe and Kaf rarely display a related behavior of not being - # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' - # for example legally end with a Non-Final Pe or Kaf. However, the - # benefit of these letters as Non-Final letters outweighs the damage - # since these words are quite rare. - return c in [self.NORMAL_KAF, self.NORMAL_MEM, self.NORMAL_NUN, self.NORMAL_PE] - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - # Final letter analysis for logical-visual decision. - # Look for evidence that the received buffer is either logical Hebrew - # or visual Hebrew. - # The following cases are checked: - # 1) A word longer than 1 letter, ending with a final letter. This is - # an indication that the text is laid out "naturally" since the - # final letter really appears at the end. +1 for logical score. - # 2) A word longer than 1 letter, ending with a Non-Final letter. In - # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, - # should not end with the Non-Final form of that letter. Exceptions - # to this rule are mentioned above in isNonFinal(). This is an - # indication that the text is laid out backwards. +1 for visual - # score - # 3) A word longer than 1 letter, starting with a final letter. Final - # letters should not appear at the beginning of a word. This is an - # indication that the text is laid out backwards. +1 for visual - # score. - # - # The visual score and logical score are accumulated throughout the - # text and are finally checked against each other in GetCharSetName(). - # No checking for final letters in the middle of words is done since - # that case is not an indication for either Logical or Visual text. - # - # We automatically filter out all 7-bit characters (replace them with - # spaces) so the word boundary detection works properly. [MAP] - - if self.state == ProbingState.NOT_ME: - # Both model probers say it's not them. No reason to continue. - return ProbingState.NOT_ME - - byte_str = self.filter_high_byte_only(byte_str) - - for cur in byte_str: - if cur == self.SPACE: - # We stand on a space - a word just ended - if self._before_prev != self.SPACE: - # next-to-last char was not a space so self._prev is not a - # 1 letter word - if self.is_final(self._prev): - # case (1) [-2:not space][-1:final letter][cur:space] - self._final_char_logical_score += 1 - elif self.is_non_final(self._prev): - # case (2) [-2:not space][-1:Non-Final letter][ - # cur:space] - self._final_char_visual_score += 1 - else: - # Not standing on a space - if ( - (self._before_prev == self.SPACE) - and (self.is_final(self._prev)) - and (cur != self.SPACE) - ): - # case (3) [-2:space][-1:final letter][cur:not space] - self._final_char_visual_score += 1 - self._before_prev = self._prev - self._prev = cur - - # Forever detecting, till the end or until both model probers return - # ProbingState.NOT_ME (handled above) - return ProbingState.DETECTING - - @property - def charset_name(self) -> str: - assert self._logical_prober is not None - assert self._visual_prober is not None - - # Make the decision: is it Logical or Visual? - # If the final letter score distance is dominant enough, rely on it. - finalsub = self._final_char_logical_score - self._final_char_visual_score - if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: - return self.LOGICAL_HEBREW_NAME - if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: - return self.VISUAL_HEBREW_NAME - - # It's not dominant enough, try to rely on the model scores instead. - modelsub = ( - self._logical_prober.get_confidence() - self._visual_prober.get_confidence() - ) - if modelsub > self.MIN_MODEL_DISTANCE: - return self.LOGICAL_HEBREW_NAME - if modelsub < -self.MIN_MODEL_DISTANCE: - return self.VISUAL_HEBREW_NAME - - # Still no good, back to final letter distance, maybe it'll save the - # day. - if finalsub < 0.0: - return self.VISUAL_HEBREW_NAME - - # (finalsub > 0 - Logical) or (don't know what to do) default to - # Logical. - return self.LOGICAL_HEBREW_NAME - - @property - def language(self) -> str: - return "Hebrew" - - @property - def state(self) -> ProbingState: - assert self._logical_prober is not None - assert self._visual_prober is not None - - # Remain active as long as any of the model probers are active. - if (self._logical_prober.state == ProbingState.NOT_ME) and ( - self._visual_prober.state == ProbingState.NOT_ME - ): - return ProbingState.NOT_ME - return ProbingState.DETECTING diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py deleted file mode 100644 index 3293576..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py +++ /dev/null @@ -1,325 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# Sampling from about 20M text materials include literature and computer technology -# -# Japanese frequency table, applied to both S-JIS and EUC-JP -# They are sorted in order. - -# 128 --> 0.77094 -# 256 --> 0.85710 -# 512 --> 0.92635 -# 1024 --> 0.97130 -# 2048 --> 0.99431 -# -# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 -# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 -# -# Typical Distribution Ratio, 25% of IDR - -JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 - -# Char to FreqOrder table , -JIS_TABLE_SIZE = 4368 - -# fmt: off -JIS_CHAR_TO_FREQ_ORDER = ( - 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 -3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 -1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 -2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 -2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 -5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 -1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 -5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 -5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 -5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 -5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 -5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 -5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 -1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 -1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 -1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 -2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 -3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 -3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 - 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 - 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 -1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 - 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 -5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 - 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 - 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 - 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 - 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 - 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 -5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 -5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 -5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 -4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 -5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 -5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 -5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 -5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 -5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 -5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 -5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 -5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 -5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 -3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 -5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 -5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 -5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 -5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 -5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 -5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 -5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 -5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 -5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 -5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 -5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 -5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 -5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 -5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 -5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 -5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 -5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 -5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 -5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 -5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 -5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 -5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 -5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 -5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 -5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 -5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 -5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 -5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 -5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 -5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 -5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 -5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 -5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 -5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 -5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 -5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 -5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 -5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 -6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 -6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 -6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 -6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 -6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 -6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 -6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 -6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 -4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 - 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 - 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 -1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 -1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 - 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 -3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 -3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 - 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 -3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 -3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 - 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 -2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 - 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 -3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 -1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 - 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 -1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 - 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 -2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 -2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 -2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 -2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 -1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 -1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 -1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 -1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 -2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 -1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 -2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 -1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 -1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 -1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 -1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 -1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 -1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 - 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 - 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 -1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 -2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 -2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 -2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 -3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 -3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 - 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 -3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 -1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 - 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 -2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 -1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 - 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 -3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 -4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 -2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 -1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 -2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 -1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 - 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 - 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 -1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 -2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 -2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 -2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 -3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 -1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 -2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 - 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 - 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 - 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 -1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 -2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 - 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 -1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 -1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 - 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 -1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 -1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 -1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 - 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 -2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 - 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 -2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 -3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 -2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 -1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 -6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 -1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 -2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 -1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 - 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 - 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 -3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 -3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 -1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 -1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 -1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 -1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 - 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 - 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 -2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 - 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 -3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 -2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 - 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 -1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 -2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 - 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 -1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 - 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 -4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 -2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 -1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 - 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 -1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 -2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 - 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 -6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 -1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 -1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 -2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 -3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 - 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 -3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 -1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 - 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 -1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 - 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 -3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 - 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 -2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 - 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 -4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 -2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 -1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 -1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 -1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 - 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 -1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 -3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 -1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 -3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 - 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 - 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 - 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 -2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 -1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 - 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 -1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 - 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 -1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 - 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 - 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 - 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 -1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 -1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 -2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 -4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 - 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 -1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 - 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 -1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 -3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 -1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 -2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 -2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 -1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 -1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 -2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 - 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 -2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 -1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 -1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 -1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 -1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 -3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 -2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 -2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 - 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 -3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 -3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 -1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 -2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 -1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 -2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 -) -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py deleted file mode 100644 index c129699..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py +++ /dev/null @@ -1,2382 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# The frequency data itself is the same as euc-kr. -# This is just a mapping table to euc-kr. - -JOHAB_TO_EUCKR_ORDER_TABLE = { - 0x8861: 0, - 0x8862: 1, - 0x8865: 2, - 0x8868: 3, - 0x8869: 4, - 0x886A: 5, - 0x886B: 6, - 0x8871: 7, - 0x8873: 8, - 0x8874: 9, - 0x8875: 10, - 0x8876: 11, - 0x8877: 12, - 0x8878: 13, - 0x8879: 14, - 0x887B: 15, - 0x887C: 16, - 0x887D: 17, - 0x8881: 18, - 0x8882: 19, - 0x8885: 20, - 0x8889: 21, - 0x8891: 22, - 0x8893: 23, - 0x8895: 24, - 0x8896: 25, - 0x8897: 26, - 0x88A1: 27, - 0x88A2: 28, - 0x88A5: 29, - 0x88A9: 30, - 0x88B5: 31, - 0x88B7: 32, - 0x88C1: 33, - 0x88C5: 34, - 0x88C9: 35, - 0x88E1: 36, - 0x88E2: 37, - 0x88E5: 38, - 0x88E8: 39, - 0x88E9: 40, - 0x88EB: 41, - 0x88F1: 42, - 0x88F3: 43, - 0x88F5: 44, - 0x88F6: 45, - 0x88F7: 46, - 0x88F8: 47, - 0x88FB: 48, - 0x88FC: 49, - 0x88FD: 50, - 0x8941: 51, - 0x8945: 52, - 0x8949: 53, - 0x8951: 54, - 0x8953: 55, - 0x8955: 56, - 0x8956: 57, - 0x8957: 58, - 0x8961: 59, - 0x8962: 60, - 0x8963: 61, - 0x8965: 62, - 0x8968: 63, - 0x8969: 64, - 0x8971: 65, - 0x8973: 66, - 0x8975: 67, - 0x8976: 68, - 0x8977: 69, - 0x897B: 70, - 0x8981: 71, - 0x8985: 72, - 0x8989: 73, - 0x8993: 74, - 0x8995: 75, - 0x89A1: 76, - 0x89A2: 77, - 0x89A5: 78, - 0x89A8: 79, - 0x89A9: 80, - 0x89AB: 81, - 0x89AD: 82, - 0x89B0: 83, - 0x89B1: 84, - 0x89B3: 85, - 0x89B5: 86, - 0x89B7: 87, - 0x89B8: 88, - 0x89C1: 89, - 0x89C2: 90, - 0x89C5: 91, - 0x89C9: 92, - 0x89CB: 93, - 0x89D1: 94, - 0x89D3: 95, - 0x89D5: 96, - 0x89D7: 97, - 0x89E1: 98, - 0x89E5: 99, - 0x89E9: 100, - 0x89F3: 101, - 0x89F6: 102, - 0x89F7: 103, - 0x8A41: 104, - 0x8A42: 105, - 0x8A45: 106, - 0x8A49: 107, - 0x8A51: 108, - 0x8A53: 109, - 0x8A55: 110, - 0x8A57: 111, - 0x8A61: 112, - 0x8A65: 113, - 0x8A69: 114, - 0x8A73: 115, - 0x8A75: 116, - 0x8A81: 117, - 0x8A82: 118, - 0x8A85: 119, - 0x8A88: 120, - 0x8A89: 121, - 0x8A8A: 122, - 0x8A8B: 123, - 0x8A90: 124, - 0x8A91: 125, - 0x8A93: 126, - 0x8A95: 127, - 0x8A97: 128, - 0x8A98: 129, - 0x8AA1: 130, - 0x8AA2: 131, - 0x8AA5: 132, - 0x8AA9: 133, - 0x8AB6: 134, - 0x8AB7: 135, - 0x8AC1: 136, - 0x8AD5: 137, - 0x8AE1: 138, - 0x8AE2: 139, - 0x8AE5: 140, - 0x8AE9: 141, - 0x8AF1: 142, - 0x8AF3: 143, - 0x8AF5: 144, - 0x8B41: 145, - 0x8B45: 146, - 0x8B49: 147, - 0x8B61: 148, - 0x8B62: 149, - 0x8B65: 150, - 0x8B68: 151, - 0x8B69: 152, - 0x8B6A: 153, - 0x8B71: 154, - 0x8B73: 155, - 0x8B75: 156, - 0x8B77: 157, - 0x8B81: 158, - 0x8BA1: 159, - 0x8BA2: 160, - 0x8BA5: 161, - 0x8BA8: 162, - 0x8BA9: 163, - 0x8BAB: 164, - 0x8BB1: 165, - 0x8BB3: 166, - 0x8BB5: 167, - 0x8BB7: 168, - 0x8BB8: 169, - 0x8BBC: 170, - 0x8C61: 171, - 0x8C62: 172, - 0x8C63: 173, - 0x8C65: 174, - 0x8C69: 175, - 0x8C6B: 176, - 0x8C71: 177, - 0x8C73: 178, - 0x8C75: 179, - 0x8C76: 180, - 0x8C77: 181, - 0x8C7B: 182, - 0x8C81: 183, - 0x8C82: 184, - 0x8C85: 185, - 0x8C89: 186, - 0x8C91: 187, - 0x8C93: 188, - 0x8C95: 189, - 0x8C96: 190, - 0x8C97: 191, - 0x8CA1: 192, - 0x8CA2: 193, - 0x8CA9: 194, - 0x8CE1: 195, - 0x8CE2: 196, - 0x8CE3: 197, - 0x8CE5: 198, - 0x8CE9: 199, - 0x8CF1: 200, - 0x8CF3: 201, - 0x8CF5: 202, - 0x8CF6: 203, - 0x8CF7: 204, - 0x8D41: 205, - 0x8D42: 206, - 0x8D45: 207, - 0x8D51: 208, - 0x8D55: 209, - 0x8D57: 210, - 0x8D61: 211, - 0x8D65: 212, - 0x8D69: 213, - 0x8D75: 214, - 0x8D76: 215, - 0x8D7B: 216, - 0x8D81: 217, - 0x8DA1: 218, - 0x8DA2: 219, - 0x8DA5: 220, - 0x8DA7: 221, - 0x8DA9: 222, - 0x8DB1: 223, - 0x8DB3: 224, - 0x8DB5: 225, - 0x8DB7: 226, - 0x8DB8: 227, - 0x8DB9: 228, - 0x8DC1: 229, - 0x8DC2: 230, - 0x8DC9: 231, - 0x8DD6: 232, - 0x8DD7: 233, - 0x8DE1: 234, - 0x8DE2: 235, - 0x8DF7: 236, - 0x8E41: 237, - 0x8E45: 238, - 0x8E49: 239, - 0x8E51: 240, - 0x8E53: 241, - 0x8E57: 242, - 0x8E61: 243, - 0x8E81: 244, - 0x8E82: 245, - 0x8E85: 246, - 0x8E89: 247, - 0x8E90: 248, - 0x8E91: 249, - 0x8E93: 250, - 0x8E95: 251, - 0x8E97: 252, - 0x8E98: 253, - 0x8EA1: 254, - 0x8EA9: 255, - 0x8EB6: 256, - 0x8EB7: 257, - 0x8EC1: 258, - 0x8EC2: 259, - 0x8EC5: 260, - 0x8EC9: 261, - 0x8ED1: 262, - 0x8ED3: 263, - 0x8ED6: 264, - 0x8EE1: 265, - 0x8EE5: 266, - 0x8EE9: 267, - 0x8EF1: 268, - 0x8EF3: 269, - 0x8F41: 270, - 0x8F61: 271, - 0x8F62: 272, - 0x8F65: 273, - 0x8F67: 274, - 0x8F69: 275, - 0x8F6B: 276, - 0x8F70: 277, - 0x8F71: 278, - 0x8F73: 279, - 0x8F75: 280, - 0x8F77: 281, - 0x8F7B: 282, - 0x8FA1: 283, - 0x8FA2: 284, - 0x8FA5: 285, - 0x8FA9: 286, - 0x8FB1: 287, - 0x8FB3: 288, - 0x8FB5: 289, - 0x8FB7: 290, - 0x9061: 291, - 0x9062: 292, - 0x9063: 293, - 0x9065: 294, - 0x9068: 295, - 0x9069: 296, - 0x906A: 297, - 0x906B: 298, - 0x9071: 299, - 0x9073: 300, - 0x9075: 301, - 0x9076: 302, - 0x9077: 303, - 0x9078: 304, - 0x9079: 305, - 0x907B: 306, - 0x907D: 307, - 0x9081: 308, - 0x9082: 309, - 0x9085: 310, - 0x9089: 311, - 0x9091: 312, - 0x9093: 313, - 0x9095: 314, - 0x9096: 315, - 0x9097: 316, - 0x90A1: 317, - 0x90A2: 318, - 0x90A5: 319, - 0x90A9: 320, - 0x90B1: 321, - 0x90B7: 322, - 0x90E1: 323, - 0x90E2: 324, - 0x90E4: 325, - 0x90E5: 326, - 0x90E9: 327, - 0x90EB: 328, - 0x90EC: 329, - 0x90F1: 330, - 0x90F3: 331, - 0x90F5: 332, - 0x90F6: 333, - 0x90F7: 334, - 0x90FD: 335, - 0x9141: 336, - 0x9142: 337, - 0x9145: 338, - 0x9149: 339, - 0x9151: 340, - 0x9153: 341, - 0x9155: 342, - 0x9156: 343, - 0x9157: 344, - 0x9161: 345, - 0x9162: 346, - 0x9165: 347, - 0x9169: 348, - 0x9171: 349, - 0x9173: 350, - 0x9176: 351, - 0x9177: 352, - 0x917A: 353, - 0x9181: 354, - 0x9185: 355, - 0x91A1: 356, - 0x91A2: 357, - 0x91A5: 358, - 0x91A9: 359, - 0x91AB: 360, - 0x91B1: 361, - 0x91B3: 362, - 0x91B5: 363, - 0x91B7: 364, - 0x91BC: 365, - 0x91BD: 366, - 0x91C1: 367, - 0x91C5: 368, - 0x91C9: 369, - 0x91D6: 370, - 0x9241: 371, - 0x9245: 372, - 0x9249: 373, - 0x9251: 374, - 0x9253: 375, - 0x9255: 376, - 0x9261: 377, - 0x9262: 378, - 0x9265: 379, - 0x9269: 380, - 0x9273: 381, - 0x9275: 382, - 0x9277: 383, - 0x9281: 384, - 0x9282: 385, - 0x9285: 386, - 0x9288: 387, - 0x9289: 388, - 0x9291: 389, - 0x9293: 390, - 0x9295: 391, - 0x9297: 392, - 0x92A1: 393, - 0x92B6: 394, - 0x92C1: 395, - 0x92E1: 396, - 0x92E5: 397, - 0x92E9: 398, - 0x92F1: 399, - 0x92F3: 400, - 0x9341: 401, - 0x9342: 402, - 0x9349: 403, - 0x9351: 404, - 0x9353: 405, - 0x9357: 406, - 0x9361: 407, - 0x9362: 408, - 0x9365: 409, - 0x9369: 410, - 0x936A: 411, - 0x936B: 412, - 0x9371: 413, - 0x9373: 414, - 0x9375: 415, - 0x9377: 416, - 0x9378: 417, - 0x937C: 418, - 0x9381: 419, - 0x9385: 420, - 0x9389: 421, - 0x93A1: 422, - 0x93A2: 423, - 0x93A5: 424, - 0x93A9: 425, - 0x93AB: 426, - 0x93B1: 427, - 0x93B3: 428, - 0x93B5: 429, - 0x93B7: 430, - 0x93BC: 431, - 0x9461: 432, - 0x9462: 433, - 0x9463: 434, - 0x9465: 435, - 0x9468: 436, - 0x9469: 437, - 0x946A: 438, - 0x946B: 439, - 0x946C: 440, - 0x9470: 441, - 0x9471: 442, - 0x9473: 443, - 0x9475: 444, - 0x9476: 445, - 0x9477: 446, - 0x9478: 447, - 0x9479: 448, - 0x947D: 449, - 0x9481: 450, - 0x9482: 451, - 0x9485: 452, - 0x9489: 453, - 0x9491: 454, - 0x9493: 455, - 0x9495: 456, - 0x9496: 457, - 0x9497: 458, - 0x94A1: 459, - 0x94E1: 460, - 0x94E2: 461, - 0x94E3: 462, - 0x94E5: 463, - 0x94E8: 464, - 0x94E9: 465, - 0x94EB: 466, - 0x94EC: 467, - 0x94F1: 468, - 0x94F3: 469, - 0x94F5: 470, - 0x94F7: 471, - 0x94F9: 472, - 0x94FC: 473, - 0x9541: 474, - 0x9542: 475, - 0x9545: 476, - 0x9549: 477, - 0x9551: 478, - 0x9553: 479, - 0x9555: 480, - 0x9556: 481, - 0x9557: 482, - 0x9561: 483, - 0x9565: 484, - 0x9569: 485, - 0x9576: 486, - 0x9577: 487, - 0x9581: 488, - 0x9585: 489, - 0x95A1: 490, - 0x95A2: 491, - 0x95A5: 492, - 0x95A8: 493, - 0x95A9: 494, - 0x95AB: 495, - 0x95AD: 496, - 0x95B1: 497, - 0x95B3: 498, - 0x95B5: 499, - 0x95B7: 500, - 0x95B9: 501, - 0x95BB: 502, - 0x95C1: 503, - 0x95C5: 504, - 0x95C9: 505, - 0x95E1: 506, - 0x95F6: 507, - 0x9641: 508, - 0x9645: 509, - 0x9649: 510, - 0x9651: 511, - 0x9653: 512, - 0x9655: 513, - 0x9661: 514, - 0x9681: 515, - 0x9682: 516, - 0x9685: 517, - 0x9689: 518, - 0x9691: 519, - 0x9693: 520, - 0x9695: 521, - 0x9697: 522, - 0x96A1: 523, - 0x96B6: 524, - 0x96C1: 525, - 0x96D7: 526, - 0x96E1: 527, - 0x96E5: 528, - 0x96E9: 529, - 0x96F3: 530, - 0x96F5: 531, - 0x96F7: 532, - 0x9741: 533, - 0x9745: 534, - 0x9749: 535, - 0x9751: 536, - 0x9757: 537, - 0x9761: 538, - 0x9762: 539, - 0x9765: 540, - 0x9768: 541, - 0x9769: 542, - 0x976B: 543, - 0x9771: 544, - 0x9773: 545, - 0x9775: 546, - 0x9777: 547, - 0x9781: 548, - 0x97A1: 549, - 0x97A2: 550, - 0x97A5: 551, - 0x97A8: 552, - 0x97A9: 553, - 0x97B1: 554, - 0x97B3: 555, - 0x97B5: 556, - 0x97B6: 557, - 0x97B7: 558, - 0x97B8: 559, - 0x9861: 560, - 0x9862: 561, - 0x9865: 562, - 0x9869: 563, - 0x9871: 564, - 0x9873: 565, - 0x9875: 566, - 0x9876: 567, - 0x9877: 568, - 0x987D: 569, - 0x9881: 570, - 0x9882: 571, - 0x9885: 572, - 0x9889: 573, - 0x9891: 574, - 0x9893: 575, - 0x9895: 576, - 0x9896: 577, - 0x9897: 578, - 0x98E1: 579, - 0x98E2: 580, - 0x98E5: 581, - 0x98E9: 582, - 0x98EB: 583, - 0x98EC: 584, - 0x98F1: 585, - 0x98F3: 586, - 0x98F5: 587, - 0x98F6: 588, - 0x98F7: 589, - 0x98FD: 590, - 0x9941: 591, - 0x9942: 592, - 0x9945: 593, - 0x9949: 594, - 0x9951: 595, - 0x9953: 596, - 0x9955: 597, - 0x9956: 598, - 0x9957: 599, - 0x9961: 600, - 0x9976: 601, - 0x99A1: 602, - 0x99A2: 603, - 0x99A5: 604, - 0x99A9: 605, - 0x99B7: 606, - 0x99C1: 607, - 0x99C9: 608, - 0x99E1: 609, - 0x9A41: 610, - 0x9A45: 611, - 0x9A81: 612, - 0x9A82: 613, - 0x9A85: 614, - 0x9A89: 615, - 0x9A90: 616, - 0x9A91: 617, - 0x9A97: 618, - 0x9AC1: 619, - 0x9AE1: 620, - 0x9AE5: 621, - 0x9AE9: 622, - 0x9AF1: 623, - 0x9AF3: 624, - 0x9AF7: 625, - 0x9B61: 626, - 0x9B62: 627, - 0x9B65: 628, - 0x9B68: 629, - 0x9B69: 630, - 0x9B71: 631, - 0x9B73: 632, - 0x9B75: 633, - 0x9B81: 634, - 0x9B85: 635, - 0x9B89: 636, - 0x9B91: 637, - 0x9B93: 638, - 0x9BA1: 639, - 0x9BA5: 640, - 0x9BA9: 641, - 0x9BB1: 642, - 0x9BB3: 643, - 0x9BB5: 644, - 0x9BB7: 645, - 0x9C61: 646, - 0x9C62: 647, - 0x9C65: 648, - 0x9C69: 649, - 0x9C71: 650, - 0x9C73: 651, - 0x9C75: 652, - 0x9C76: 653, - 0x9C77: 654, - 0x9C78: 655, - 0x9C7C: 656, - 0x9C7D: 657, - 0x9C81: 658, - 0x9C82: 659, - 0x9C85: 660, - 0x9C89: 661, - 0x9C91: 662, - 0x9C93: 663, - 0x9C95: 664, - 0x9C96: 665, - 0x9C97: 666, - 0x9CA1: 667, - 0x9CA2: 668, - 0x9CA5: 669, - 0x9CB5: 670, - 0x9CB7: 671, - 0x9CE1: 672, - 0x9CE2: 673, - 0x9CE5: 674, - 0x9CE9: 675, - 0x9CF1: 676, - 0x9CF3: 677, - 0x9CF5: 678, - 0x9CF6: 679, - 0x9CF7: 680, - 0x9CFD: 681, - 0x9D41: 682, - 0x9D42: 683, - 0x9D45: 684, - 0x9D49: 685, - 0x9D51: 686, - 0x9D53: 687, - 0x9D55: 688, - 0x9D57: 689, - 0x9D61: 690, - 0x9D62: 691, - 0x9D65: 692, - 0x9D69: 693, - 0x9D71: 694, - 0x9D73: 695, - 0x9D75: 696, - 0x9D76: 697, - 0x9D77: 698, - 0x9D81: 699, - 0x9D85: 700, - 0x9D93: 701, - 0x9D95: 702, - 0x9DA1: 703, - 0x9DA2: 704, - 0x9DA5: 705, - 0x9DA9: 706, - 0x9DB1: 707, - 0x9DB3: 708, - 0x9DB5: 709, - 0x9DB7: 710, - 0x9DC1: 711, - 0x9DC5: 712, - 0x9DD7: 713, - 0x9DF6: 714, - 0x9E41: 715, - 0x9E45: 716, - 0x9E49: 717, - 0x9E51: 718, - 0x9E53: 719, - 0x9E55: 720, - 0x9E57: 721, - 0x9E61: 722, - 0x9E65: 723, - 0x9E69: 724, - 0x9E73: 725, - 0x9E75: 726, - 0x9E77: 727, - 0x9E81: 728, - 0x9E82: 729, - 0x9E85: 730, - 0x9E89: 731, - 0x9E91: 732, - 0x9E93: 733, - 0x9E95: 734, - 0x9E97: 735, - 0x9EA1: 736, - 0x9EB6: 737, - 0x9EC1: 738, - 0x9EE1: 739, - 0x9EE2: 740, - 0x9EE5: 741, - 0x9EE9: 742, - 0x9EF1: 743, - 0x9EF5: 744, - 0x9EF7: 745, - 0x9F41: 746, - 0x9F42: 747, - 0x9F45: 748, - 0x9F49: 749, - 0x9F51: 750, - 0x9F53: 751, - 0x9F55: 752, - 0x9F57: 753, - 0x9F61: 754, - 0x9F62: 755, - 0x9F65: 756, - 0x9F69: 757, - 0x9F71: 758, - 0x9F73: 759, - 0x9F75: 760, - 0x9F77: 761, - 0x9F78: 762, - 0x9F7B: 763, - 0x9F7C: 764, - 0x9FA1: 765, - 0x9FA2: 766, - 0x9FA5: 767, - 0x9FA9: 768, - 0x9FB1: 769, - 0x9FB3: 770, - 0x9FB5: 771, - 0x9FB7: 772, - 0xA061: 773, - 0xA062: 774, - 0xA065: 775, - 0xA067: 776, - 0xA068: 777, - 0xA069: 778, - 0xA06A: 779, - 0xA06B: 780, - 0xA071: 781, - 0xA073: 782, - 0xA075: 783, - 0xA077: 784, - 0xA078: 785, - 0xA07B: 786, - 0xA07D: 787, - 0xA081: 788, - 0xA082: 789, - 0xA085: 790, - 0xA089: 791, - 0xA091: 792, - 0xA093: 793, - 0xA095: 794, - 0xA096: 795, - 0xA097: 796, - 0xA098: 797, - 0xA0A1: 798, - 0xA0A2: 799, - 0xA0A9: 800, - 0xA0B7: 801, - 0xA0E1: 802, - 0xA0E2: 803, - 0xA0E5: 804, - 0xA0E9: 805, - 0xA0EB: 806, - 0xA0F1: 807, - 0xA0F3: 808, - 0xA0F5: 809, - 0xA0F7: 810, - 0xA0F8: 811, - 0xA0FD: 812, - 0xA141: 813, - 0xA142: 814, - 0xA145: 815, - 0xA149: 816, - 0xA151: 817, - 0xA153: 818, - 0xA155: 819, - 0xA156: 820, - 0xA157: 821, - 0xA161: 822, - 0xA162: 823, - 0xA165: 824, - 0xA169: 825, - 0xA175: 826, - 0xA176: 827, - 0xA177: 828, - 0xA179: 829, - 0xA181: 830, - 0xA1A1: 831, - 0xA1A2: 832, - 0xA1A4: 833, - 0xA1A5: 834, - 0xA1A9: 835, - 0xA1AB: 836, - 0xA1B1: 837, - 0xA1B3: 838, - 0xA1B5: 839, - 0xA1B7: 840, - 0xA1C1: 841, - 0xA1C5: 842, - 0xA1D6: 843, - 0xA1D7: 844, - 0xA241: 845, - 0xA245: 846, - 0xA249: 847, - 0xA253: 848, - 0xA255: 849, - 0xA257: 850, - 0xA261: 851, - 0xA265: 852, - 0xA269: 853, - 0xA273: 854, - 0xA275: 855, - 0xA281: 856, - 0xA282: 857, - 0xA283: 858, - 0xA285: 859, - 0xA288: 860, - 0xA289: 861, - 0xA28A: 862, - 0xA28B: 863, - 0xA291: 864, - 0xA293: 865, - 0xA295: 866, - 0xA297: 867, - 0xA29B: 868, - 0xA29D: 869, - 0xA2A1: 870, - 0xA2A5: 871, - 0xA2A9: 872, - 0xA2B3: 873, - 0xA2B5: 874, - 0xA2C1: 875, - 0xA2E1: 876, - 0xA2E5: 877, - 0xA2E9: 878, - 0xA341: 879, - 0xA345: 880, - 0xA349: 881, - 0xA351: 882, - 0xA355: 883, - 0xA361: 884, - 0xA365: 885, - 0xA369: 886, - 0xA371: 887, - 0xA375: 888, - 0xA3A1: 889, - 0xA3A2: 890, - 0xA3A5: 891, - 0xA3A8: 892, - 0xA3A9: 893, - 0xA3AB: 894, - 0xA3B1: 895, - 0xA3B3: 896, - 0xA3B5: 897, - 0xA3B6: 898, - 0xA3B7: 899, - 0xA3B9: 900, - 0xA3BB: 901, - 0xA461: 902, - 0xA462: 903, - 0xA463: 904, - 0xA464: 905, - 0xA465: 906, - 0xA468: 907, - 0xA469: 908, - 0xA46A: 909, - 0xA46B: 910, - 0xA46C: 911, - 0xA471: 912, - 0xA473: 913, - 0xA475: 914, - 0xA477: 915, - 0xA47B: 916, - 0xA481: 917, - 0xA482: 918, - 0xA485: 919, - 0xA489: 920, - 0xA491: 921, - 0xA493: 922, - 0xA495: 923, - 0xA496: 924, - 0xA497: 925, - 0xA49B: 926, - 0xA4A1: 927, - 0xA4A2: 928, - 0xA4A5: 929, - 0xA4B3: 930, - 0xA4E1: 931, - 0xA4E2: 932, - 0xA4E5: 933, - 0xA4E8: 934, - 0xA4E9: 935, - 0xA4EB: 936, - 0xA4F1: 937, - 0xA4F3: 938, - 0xA4F5: 939, - 0xA4F7: 940, - 0xA4F8: 941, - 0xA541: 942, - 0xA542: 943, - 0xA545: 944, - 0xA548: 945, - 0xA549: 946, - 0xA551: 947, - 0xA553: 948, - 0xA555: 949, - 0xA556: 950, - 0xA557: 951, - 0xA561: 952, - 0xA562: 953, - 0xA565: 954, - 0xA569: 955, - 0xA573: 956, - 0xA575: 957, - 0xA576: 958, - 0xA577: 959, - 0xA57B: 960, - 0xA581: 961, - 0xA585: 962, - 0xA5A1: 963, - 0xA5A2: 964, - 0xA5A3: 965, - 0xA5A5: 966, - 0xA5A9: 967, - 0xA5B1: 968, - 0xA5B3: 969, - 0xA5B5: 970, - 0xA5B7: 971, - 0xA5C1: 972, - 0xA5C5: 973, - 0xA5D6: 974, - 0xA5E1: 975, - 0xA5F6: 976, - 0xA641: 977, - 0xA642: 978, - 0xA645: 979, - 0xA649: 980, - 0xA651: 981, - 0xA653: 982, - 0xA661: 983, - 0xA665: 984, - 0xA681: 985, - 0xA682: 986, - 0xA685: 987, - 0xA688: 988, - 0xA689: 989, - 0xA68A: 990, - 0xA68B: 991, - 0xA691: 992, - 0xA693: 993, - 0xA695: 994, - 0xA697: 995, - 0xA69B: 996, - 0xA69C: 997, - 0xA6A1: 998, - 0xA6A9: 999, - 0xA6B6: 1000, - 0xA6C1: 1001, - 0xA6E1: 1002, - 0xA6E2: 1003, - 0xA6E5: 1004, - 0xA6E9: 1005, - 0xA6F7: 1006, - 0xA741: 1007, - 0xA745: 1008, - 0xA749: 1009, - 0xA751: 1010, - 0xA755: 1011, - 0xA757: 1012, - 0xA761: 1013, - 0xA762: 1014, - 0xA765: 1015, - 0xA769: 1016, - 0xA771: 1017, - 0xA773: 1018, - 0xA775: 1019, - 0xA7A1: 1020, - 0xA7A2: 1021, - 0xA7A5: 1022, - 0xA7A9: 1023, - 0xA7AB: 1024, - 0xA7B1: 1025, - 0xA7B3: 1026, - 0xA7B5: 1027, - 0xA7B7: 1028, - 0xA7B8: 1029, - 0xA7B9: 1030, - 0xA861: 1031, - 0xA862: 1032, - 0xA865: 1033, - 0xA869: 1034, - 0xA86B: 1035, - 0xA871: 1036, - 0xA873: 1037, - 0xA875: 1038, - 0xA876: 1039, - 0xA877: 1040, - 0xA87D: 1041, - 0xA881: 1042, - 0xA882: 1043, - 0xA885: 1044, - 0xA889: 1045, - 0xA891: 1046, - 0xA893: 1047, - 0xA895: 1048, - 0xA896: 1049, - 0xA897: 1050, - 0xA8A1: 1051, - 0xA8A2: 1052, - 0xA8B1: 1053, - 0xA8E1: 1054, - 0xA8E2: 1055, - 0xA8E5: 1056, - 0xA8E8: 1057, - 0xA8E9: 1058, - 0xA8F1: 1059, - 0xA8F5: 1060, - 0xA8F6: 1061, - 0xA8F7: 1062, - 0xA941: 1063, - 0xA957: 1064, - 0xA961: 1065, - 0xA962: 1066, - 0xA971: 1067, - 0xA973: 1068, - 0xA975: 1069, - 0xA976: 1070, - 0xA977: 1071, - 0xA9A1: 1072, - 0xA9A2: 1073, - 0xA9A5: 1074, - 0xA9A9: 1075, - 0xA9B1: 1076, - 0xA9B3: 1077, - 0xA9B7: 1078, - 0xAA41: 1079, - 0xAA61: 1080, - 0xAA77: 1081, - 0xAA81: 1082, - 0xAA82: 1083, - 0xAA85: 1084, - 0xAA89: 1085, - 0xAA91: 1086, - 0xAA95: 1087, - 0xAA97: 1088, - 0xAB41: 1089, - 0xAB57: 1090, - 0xAB61: 1091, - 0xAB65: 1092, - 0xAB69: 1093, - 0xAB71: 1094, - 0xAB73: 1095, - 0xABA1: 1096, - 0xABA2: 1097, - 0xABA5: 1098, - 0xABA9: 1099, - 0xABB1: 1100, - 0xABB3: 1101, - 0xABB5: 1102, - 0xABB7: 1103, - 0xAC61: 1104, - 0xAC62: 1105, - 0xAC64: 1106, - 0xAC65: 1107, - 0xAC68: 1108, - 0xAC69: 1109, - 0xAC6A: 1110, - 0xAC6B: 1111, - 0xAC71: 1112, - 0xAC73: 1113, - 0xAC75: 1114, - 0xAC76: 1115, - 0xAC77: 1116, - 0xAC7B: 1117, - 0xAC81: 1118, - 0xAC82: 1119, - 0xAC85: 1120, - 0xAC89: 1121, - 0xAC91: 1122, - 0xAC93: 1123, - 0xAC95: 1124, - 0xAC96: 1125, - 0xAC97: 1126, - 0xACA1: 1127, - 0xACA2: 1128, - 0xACA5: 1129, - 0xACA9: 1130, - 0xACB1: 1131, - 0xACB3: 1132, - 0xACB5: 1133, - 0xACB7: 1134, - 0xACC1: 1135, - 0xACC5: 1136, - 0xACC9: 1137, - 0xACD1: 1138, - 0xACD7: 1139, - 0xACE1: 1140, - 0xACE2: 1141, - 0xACE3: 1142, - 0xACE4: 1143, - 0xACE5: 1144, - 0xACE8: 1145, - 0xACE9: 1146, - 0xACEB: 1147, - 0xACEC: 1148, - 0xACF1: 1149, - 0xACF3: 1150, - 0xACF5: 1151, - 0xACF6: 1152, - 0xACF7: 1153, - 0xACFC: 1154, - 0xAD41: 1155, - 0xAD42: 1156, - 0xAD45: 1157, - 0xAD49: 1158, - 0xAD51: 1159, - 0xAD53: 1160, - 0xAD55: 1161, - 0xAD56: 1162, - 0xAD57: 1163, - 0xAD61: 1164, - 0xAD62: 1165, - 0xAD65: 1166, - 0xAD69: 1167, - 0xAD71: 1168, - 0xAD73: 1169, - 0xAD75: 1170, - 0xAD76: 1171, - 0xAD77: 1172, - 0xAD81: 1173, - 0xAD85: 1174, - 0xAD89: 1175, - 0xAD97: 1176, - 0xADA1: 1177, - 0xADA2: 1178, - 0xADA3: 1179, - 0xADA5: 1180, - 0xADA9: 1181, - 0xADAB: 1182, - 0xADB1: 1183, - 0xADB3: 1184, - 0xADB5: 1185, - 0xADB7: 1186, - 0xADBB: 1187, - 0xADC1: 1188, - 0xADC2: 1189, - 0xADC5: 1190, - 0xADC9: 1191, - 0xADD7: 1192, - 0xADE1: 1193, - 0xADE5: 1194, - 0xADE9: 1195, - 0xADF1: 1196, - 0xADF5: 1197, - 0xADF6: 1198, - 0xAE41: 1199, - 0xAE45: 1200, - 0xAE49: 1201, - 0xAE51: 1202, - 0xAE53: 1203, - 0xAE55: 1204, - 0xAE61: 1205, - 0xAE62: 1206, - 0xAE65: 1207, - 0xAE69: 1208, - 0xAE71: 1209, - 0xAE73: 1210, - 0xAE75: 1211, - 0xAE77: 1212, - 0xAE81: 1213, - 0xAE82: 1214, - 0xAE85: 1215, - 0xAE88: 1216, - 0xAE89: 1217, - 0xAE91: 1218, - 0xAE93: 1219, - 0xAE95: 1220, - 0xAE97: 1221, - 0xAE99: 1222, - 0xAE9B: 1223, - 0xAE9C: 1224, - 0xAEA1: 1225, - 0xAEB6: 1226, - 0xAEC1: 1227, - 0xAEC2: 1228, - 0xAEC5: 1229, - 0xAEC9: 1230, - 0xAED1: 1231, - 0xAED7: 1232, - 0xAEE1: 1233, - 0xAEE2: 1234, - 0xAEE5: 1235, - 0xAEE9: 1236, - 0xAEF1: 1237, - 0xAEF3: 1238, - 0xAEF5: 1239, - 0xAEF7: 1240, - 0xAF41: 1241, - 0xAF42: 1242, - 0xAF49: 1243, - 0xAF51: 1244, - 0xAF55: 1245, - 0xAF57: 1246, - 0xAF61: 1247, - 0xAF62: 1248, - 0xAF65: 1249, - 0xAF69: 1250, - 0xAF6A: 1251, - 0xAF71: 1252, - 0xAF73: 1253, - 0xAF75: 1254, - 0xAF77: 1255, - 0xAFA1: 1256, - 0xAFA2: 1257, - 0xAFA5: 1258, - 0xAFA8: 1259, - 0xAFA9: 1260, - 0xAFB0: 1261, - 0xAFB1: 1262, - 0xAFB3: 1263, - 0xAFB5: 1264, - 0xAFB7: 1265, - 0xAFBC: 1266, - 0xB061: 1267, - 0xB062: 1268, - 0xB064: 1269, - 0xB065: 1270, - 0xB069: 1271, - 0xB071: 1272, - 0xB073: 1273, - 0xB076: 1274, - 0xB077: 1275, - 0xB07D: 1276, - 0xB081: 1277, - 0xB082: 1278, - 0xB085: 1279, - 0xB089: 1280, - 0xB091: 1281, - 0xB093: 1282, - 0xB096: 1283, - 0xB097: 1284, - 0xB0B7: 1285, - 0xB0E1: 1286, - 0xB0E2: 1287, - 0xB0E5: 1288, - 0xB0E9: 1289, - 0xB0EB: 1290, - 0xB0F1: 1291, - 0xB0F3: 1292, - 0xB0F6: 1293, - 0xB0F7: 1294, - 0xB141: 1295, - 0xB145: 1296, - 0xB149: 1297, - 0xB185: 1298, - 0xB1A1: 1299, - 0xB1A2: 1300, - 0xB1A5: 1301, - 0xB1A8: 1302, - 0xB1A9: 1303, - 0xB1AB: 1304, - 0xB1B1: 1305, - 0xB1B3: 1306, - 0xB1B7: 1307, - 0xB1C1: 1308, - 0xB1C2: 1309, - 0xB1C5: 1310, - 0xB1D6: 1311, - 0xB1E1: 1312, - 0xB1F6: 1313, - 0xB241: 1314, - 0xB245: 1315, - 0xB249: 1316, - 0xB251: 1317, - 0xB253: 1318, - 0xB261: 1319, - 0xB281: 1320, - 0xB282: 1321, - 0xB285: 1322, - 0xB289: 1323, - 0xB291: 1324, - 0xB293: 1325, - 0xB297: 1326, - 0xB2A1: 1327, - 0xB2B6: 1328, - 0xB2C1: 1329, - 0xB2E1: 1330, - 0xB2E5: 1331, - 0xB357: 1332, - 0xB361: 1333, - 0xB362: 1334, - 0xB365: 1335, - 0xB369: 1336, - 0xB36B: 1337, - 0xB370: 1338, - 0xB371: 1339, - 0xB373: 1340, - 0xB381: 1341, - 0xB385: 1342, - 0xB389: 1343, - 0xB391: 1344, - 0xB3A1: 1345, - 0xB3A2: 1346, - 0xB3A5: 1347, - 0xB3A9: 1348, - 0xB3B1: 1349, - 0xB3B3: 1350, - 0xB3B5: 1351, - 0xB3B7: 1352, - 0xB461: 1353, - 0xB462: 1354, - 0xB465: 1355, - 0xB466: 1356, - 0xB467: 1357, - 0xB469: 1358, - 0xB46A: 1359, - 0xB46B: 1360, - 0xB470: 1361, - 0xB471: 1362, - 0xB473: 1363, - 0xB475: 1364, - 0xB476: 1365, - 0xB477: 1366, - 0xB47B: 1367, - 0xB47C: 1368, - 0xB481: 1369, - 0xB482: 1370, - 0xB485: 1371, - 0xB489: 1372, - 0xB491: 1373, - 0xB493: 1374, - 0xB495: 1375, - 0xB496: 1376, - 0xB497: 1377, - 0xB4A1: 1378, - 0xB4A2: 1379, - 0xB4A5: 1380, - 0xB4A9: 1381, - 0xB4AC: 1382, - 0xB4B1: 1383, - 0xB4B3: 1384, - 0xB4B5: 1385, - 0xB4B7: 1386, - 0xB4BB: 1387, - 0xB4BD: 1388, - 0xB4C1: 1389, - 0xB4C5: 1390, - 0xB4C9: 1391, - 0xB4D3: 1392, - 0xB4E1: 1393, - 0xB4E2: 1394, - 0xB4E5: 1395, - 0xB4E6: 1396, - 0xB4E8: 1397, - 0xB4E9: 1398, - 0xB4EA: 1399, - 0xB4EB: 1400, - 0xB4F1: 1401, - 0xB4F3: 1402, - 0xB4F4: 1403, - 0xB4F5: 1404, - 0xB4F6: 1405, - 0xB4F7: 1406, - 0xB4F8: 1407, - 0xB4FA: 1408, - 0xB4FC: 1409, - 0xB541: 1410, - 0xB542: 1411, - 0xB545: 1412, - 0xB549: 1413, - 0xB551: 1414, - 0xB553: 1415, - 0xB555: 1416, - 0xB557: 1417, - 0xB561: 1418, - 0xB562: 1419, - 0xB563: 1420, - 0xB565: 1421, - 0xB569: 1422, - 0xB56B: 1423, - 0xB56C: 1424, - 0xB571: 1425, - 0xB573: 1426, - 0xB574: 1427, - 0xB575: 1428, - 0xB576: 1429, - 0xB577: 1430, - 0xB57B: 1431, - 0xB57C: 1432, - 0xB57D: 1433, - 0xB581: 1434, - 0xB585: 1435, - 0xB589: 1436, - 0xB591: 1437, - 0xB593: 1438, - 0xB595: 1439, - 0xB596: 1440, - 0xB5A1: 1441, - 0xB5A2: 1442, - 0xB5A5: 1443, - 0xB5A9: 1444, - 0xB5AA: 1445, - 0xB5AB: 1446, - 0xB5AD: 1447, - 0xB5B0: 1448, - 0xB5B1: 1449, - 0xB5B3: 1450, - 0xB5B5: 1451, - 0xB5B7: 1452, - 0xB5B9: 1453, - 0xB5C1: 1454, - 0xB5C2: 1455, - 0xB5C5: 1456, - 0xB5C9: 1457, - 0xB5D1: 1458, - 0xB5D3: 1459, - 0xB5D5: 1460, - 0xB5D6: 1461, - 0xB5D7: 1462, - 0xB5E1: 1463, - 0xB5E2: 1464, - 0xB5E5: 1465, - 0xB5F1: 1466, - 0xB5F5: 1467, - 0xB5F7: 1468, - 0xB641: 1469, - 0xB642: 1470, - 0xB645: 1471, - 0xB649: 1472, - 0xB651: 1473, - 0xB653: 1474, - 0xB655: 1475, - 0xB657: 1476, - 0xB661: 1477, - 0xB662: 1478, - 0xB665: 1479, - 0xB669: 1480, - 0xB671: 1481, - 0xB673: 1482, - 0xB675: 1483, - 0xB677: 1484, - 0xB681: 1485, - 0xB682: 1486, - 0xB685: 1487, - 0xB689: 1488, - 0xB68A: 1489, - 0xB68B: 1490, - 0xB691: 1491, - 0xB693: 1492, - 0xB695: 1493, - 0xB697: 1494, - 0xB6A1: 1495, - 0xB6A2: 1496, - 0xB6A5: 1497, - 0xB6A9: 1498, - 0xB6B1: 1499, - 0xB6B3: 1500, - 0xB6B6: 1501, - 0xB6B7: 1502, - 0xB6C1: 1503, - 0xB6C2: 1504, - 0xB6C5: 1505, - 0xB6C9: 1506, - 0xB6D1: 1507, - 0xB6D3: 1508, - 0xB6D7: 1509, - 0xB6E1: 1510, - 0xB6E2: 1511, - 0xB6E5: 1512, - 0xB6E9: 1513, - 0xB6F1: 1514, - 0xB6F3: 1515, - 0xB6F5: 1516, - 0xB6F7: 1517, - 0xB741: 1518, - 0xB742: 1519, - 0xB745: 1520, - 0xB749: 1521, - 0xB751: 1522, - 0xB753: 1523, - 0xB755: 1524, - 0xB757: 1525, - 0xB759: 1526, - 0xB761: 1527, - 0xB762: 1528, - 0xB765: 1529, - 0xB769: 1530, - 0xB76F: 1531, - 0xB771: 1532, - 0xB773: 1533, - 0xB775: 1534, - 0xB777: 1535, - 0xB778: 1536, - 0xB779: 1537, - 0xB77A: 1538, - 0xB77B: 1539, - 0xB77C: 1540, - 0xB77D: 1541, - 0xB781: 1542, - 0xB785: 1543, - 0xB789: 1544, - 0xB791: 1545, - 0xB795: 1546, - 0xB7A1: 1547, - 0xB7A2: 1548, - 0xB7A5: 1549, - 0xB7A9: 1550, - 0xB7AA: 1551, - 0xB7AB: 1552, - 0xB7B0: 1553, - 0xB7B1: 1554, - 0xB7B3: 1555, - 0xB7B5: 1556, - 0xB7B6: 1557, - 0xB7B7: 1558, - 0xB7B8: 1559, - 0xB7BC: 1560, - 0xB861: 1561, - 0xB862: 1562, - 0xB865: 1563, - 0xB867: 1564, - 0xB868: 1565, - 0xB869: 1566, - 0xB86B: 1567, - 0xB871: 1568, - 0xB873: 1569, - 0xB875: 1570, - 0xB876: 1571, - 0xB877: 1572, - 0xB878: 1573, - 0xB881: 1574, - 0xB882: 1575, - 0xB885: 1576, - 0xB889: 1577, - 0xB891: 1578, - 0xB893: 1579, - 0xB895: 1580, - 0xB896: 1581, - 0xB897: 1582, - 0xB8A1: 1583, - 0xB8A2: 1584, - 0xB8A5: 1585, - 0xB8A7: 1586, - 0xB8A9: 1587, - 0xB8B1: 1588, - 0xB8B7: 1589, - 0xB8C1: 1590, - 0xB8C5: 1591, - 0xB8C9: 1592, - 0xB8E1: 1593, - 0xB8E2: 1594, - 0xB8E5: 1595, - 0xB8E9: 1596, - 0xB8EB: 1597, - 0xB8F1: 1598, - 0xB8F3: 1599, - 0xB8F5: 1600, - 0xB8F7: 1601, - 0xB8F8: 1602, - 0xB941: 1603, - 0xB942: 1604, - 0xB945: 1605, - 0xB949: 1606, - 0xB951: 1607, - 0xB953: 1608, - 0xB955: 1609, - 0xB957: 1610, - 0xB961: 1611, - 0xB965: 1612, - 0xB969: 1613, - 0xB971: 1614, - 0xB973: 1615, - 0xB976: 1616, - 0xB977: 1617, - 0xB981: 1618, - 0xB9A1: 1619, - 0xB9A2: 1620, - 0xB9A5: 1621, - 0xB9A9: 1622, - 0xB9AB: 1623, - 0xB9B1: 1624, - 0xB9B3: 1625, - 0xB9B5: 1626, - 0xB9B7: 1627, - 0xB9B8: 1628, - 0xB9B9: 1629, - 0xB9BD: 1630, - 0xB9C1: 1631, - 0xB9C2: 1632, - 0xB9C9: 1633, - 0xB9D3: 1634, - 0xB9D5: 1635, - 0xB9D7: 1636, - 0xB9E1: 1637, - 0xB9F6: 1638, - 0xB9F7: 1639, - 0xBA41: 1640, - 0xBA45: 1641, - 0xBA49: 1642, - 0xBA51: 1643, - 0xBA53: 1644, - 0xBA55: 1645, - 0xBA57: 1646, - 0xBA61: 1647, - 0xBA62: 1648, - 0xBA65: 1649, - 0xBA77: 1650, - 0xBA81: 1651, - 0xBA82: 1652, - 0xBA85: 1653, - 0xBA89: 1654, - 0xBA8A: 1655, - 0xBA8B: 1656, - 0xBA91: 1657, - 0xBA93: 1658, - 0xBA95: 1659, - 0xBA97: 1660, - 0xBAA1: 1661, - 0xBAB6: 1662, - 0xBAC1: 1663, - 0xBAE1: 1664, - 0xBAE2: 1665, - 0xBAE5: 1666, - 0xBAE9: 1667, - 0xBAF1: 1668, - 0xBAF3: 1669, - 0xBAF5: 1670, - 0xBB41: 1671, - 0xBB45: 1672, - 0xBB49: 1673, - 0xBB51: 1674, - 0xBB61: 1675, - 0xBB62: 1676, - 0xBB65: 1677, - 0xBB69: 1678, - 0xBB71: 1679, - 0xBB73: 1680, - 0xBB75: 1681, - 0xBB77: 1682, - 0xBBA1: 1683, - 0xBBA2: 1684, - 0xBBA5: 1685, - 0xBBA8: 1686, - 0xBBA9: 1687, - 0xBBAB: 1688, - 0xBBB1: 1689, - 0xBBB3: 1690, - 0xBBB5: 1691, - 0xBBB7: 1692, - 0xBBB8: 1693, - 0xBBBB: 1694, - 0xBBBC: 1695, - 0xBC61: 1696, - 0xBC62: 1697, - 0xBC65: 1698, - 0xBC67: 1699, - 0xBC69: 1700, - 0xBC6C: 1701, - 0xBC71: 1702, - 0xBC73: 1703, - 0xBC75: 1704, - 0xBC76: 1705, - 0xBC77: 1706, - 0xBC81: 1707, - 0xBC82: 1708, - 0xBC85: 1709, - 0xBC89: 1710, - 0xBC91: 1711, - 0xBC93: 1712, - 0xBC95: 1713, - 0xBC96: 1714, - 0xBC97: 1715, - 0xBCA1: 1716, - 0xBCA5: 1717, - 0xBCB7: 1718, - 0xBCE1: 1719, - 0xBCE2: 1720, - 0xBCE5: 1721, - 0xBCE9: 1722, - 0xBCF1: 1723, - 0xBCF3: 1724, - 0xBCF5: 1725, - 0xBCF6: 1726, - 0xBCF7: 1727, - 0xBD41: 1728, - 0xBD57: 1729, - 0xBD61: 1730, - 0xBD76: 1731, - 0xBDA1: 1732, - 0xBDA2: 1733, - 0xBDA5: 1734, - 0xBDA9: 1735, - 0xBDB1: 1736, - 0xBDB3: 1737, - 0xBDB5: 1738, - 0xBDB7: 1739, - 0xBDB9: 1740, - 0xBDC1: 1741, - 0xBDC2: 1742, - 0xBDC9: 1743, - 0xBDD6: 1744, - 0xBDE1: 1745, - 0xBDF6: 1746, - 0xBE41: 1747, - 0xBE45: 1748, - 0xBE49: 1749, - 0xBE51: 1750, - 0xBE53: 1751, - 0xBE77: 1752, - 0xBE81: 1753, - 0xBE82: 1754, - 0xBE85: 1755, - 0xBE89: 1756, - 0xBE91: 1757, - 0xBE93: 1758, - 0xBE97: 1759, - 0xBEA1: 1760, - 0xBEB6: 1761, - 0xBEB7: 1762, - 0xBEE1: 1763, - 0xBF41: 1764, - 0xBF61: 1765, - 0xBF71: 1766, - 0xBF75: 1767, - 0xBF77: 1768, - 0xBFA1: 1769, - 0xBFA2: 1770, - 0xBFA5: 1771, - 0xBFA9: 1772, - 0xBFB1: 1773, - 0xBFB3: 1774, - 0xBFB7: 1775, - 0xBFB8: 1776, - 0xBFBD: 1777, - 0xC061: 1778, - 0xC062: 1779, - 0xC065: 1780, - 0xC067: 1781, - 0xC069: 1782, - 0xC071: 1783, - 0xC073: 1784, - 0xC075: 1785, - 0xC076: 1786, - 0xC077: 1787, - 0xC078: 1788, - 0xC081: 1789, - 0xC082: 1790, - 0xC085: 1791, - 0xC089: 1792, - 0xC091: 1793, - 0xC093: 1794, - 0xC095: 1795, - 0xC096: 1796, - 0xC097: 1797, - 0xC0A1: 1798, - 0xC0A5: 1799, - 0xC0A7: 1800, - 0xC0A9: 1801, - 0xC0B1: 1802, - 0xC0B7: 1803, - 0xC0E1: 1804, - 0xC0E2: 1805, - 0xC0E5: 1806, - 0xC0E9: 1807, - 0xC0F1: 1808, - 0xC0F3: 1809, - 0xC0F5: 1810, - 0xC0F6: 1811, - 0xC0F7: 1812, - 0xC141: 1813, - 0xC142: 1814, - 0xC145: 1815, - 0xC149: 1816, - 0xC151: 1817, - 0xC153: 1818, - 0xC155: 1819, - 0xC157: 1820, - 0xC161: 1821, - 0xC165: 1822, - 0xC176: 1823, - 0xC181: 1824, - 0xC185: 1825, - 0xC197: 1826, - 0xC1A1: 1827, - 0xC1A2: 1828, - 0xC1A5: 1829, - 0xC1A9: 1830, - 0xC1B1: 1831, - 0xC1B3: 1832, - 0xC1B5: 1833, - 0xC1B7: 1834, - 0xC1C1: 1835, - 0xC1C5: 1836, - 0xC1C9: 1837, - 0xC1D7: 1838, - 0xC241: 1839, - 0xC245: 1840, - 0xC249: 1841, - 0xC251: 1842, - 0xC253: 1843, - 0xC255: 1844, - 0xC257: 1845, - 0xC261: 1846, - 0xC271: 1847, - 0xC281: 1848, - 0xC282: 1849, - 0xC285: 1850, - 0xC289: 1851, - 0xC291: 1852, - 0xC293: 1853, - 0xC295: 1854, - 0xC297: 1855, - 0xC2A1: 1856, - 0xC2B6: 1857, - 0xC2C1: 1858, - 0xC2C5: 1859, - 0xC2E1: 1860, - 0xC2E5: 1861, - 0xC2E9: 1862, - 0xC2F1: 1863, - 0xC2F3: 1864, - 0xC2F5: 1865, - 0xC2F7: 1866, - 0xC341: 1867, - 0xC345: 1868, - 0xC349: 1869, - 0xC351: 1870, - 0xC357: 1871, - 0xC361: 1872, - 0xC362: 1873, - 0xC365: 1874, - 0xC369: 1875, - 0xC371: 1876, - 0xC373: 1877, - 0xC375: 1878, - 0xC377: 1879, - 0xC3A1: 1880, - 0xC3A2: 1881, - 0xC3A5: 1882, - 0xC3A8: 1883, - 0xC3A9: 1884, - 0xC3AA: 1885, - 0xC3B1: 1886, - 0xC3B3: 1887, - 0xC3B5: 1888, - 0xC3B7: 1889, - 0xC461: 1890, - 0xC462: 1891, - 0xC465: 1892, - 0xC469: 1893, - 0xC471: 1894, - 0xC473: 1895, - 0xC475: 1896, - 0xC477: 1897, - 0xC481: 1898, - 0xC482: 1899, - 0xC485: 1900, - 0xC489: 1901, - 0xC491: 1902, - 0xC493: 1903, - 0xC495: 1904, - 0xC496: 1905, - 0xC497: 1906, - 0xC4A1: 1907, - 0xC4A2: 1908, - 0xC4B7: 1909, - 0xC4E1: 1910, - 0xC4E2: 1911, - 0xC4E5: 1912, - 0xC4E8: 1913, - 0xC4E9: 1914, - 0xC4F1: 1915, - 0xC4F3: 1916, - 0xC4F5: 1917, - 0xC4F6: 1918, - 0xC4F7: 1919, - 0xC541: 1920, - 0xC542: 1921, - 0xC545: 1922, - 0xC549: 1923, - 0xC551: 1924, - 0xC553: 1925, - 0xC555: 1926, - 0xC557: 1927, - 0xC561: 1928, - 0xC565: 1929, - 0xC569: 1930, - 0xC571: 1931, - 0xC573: 1932, - 0xC575: 1933, - 0xC576: 1934, - 0xC577: 1935, - 0xC581: 1936, - 0xC5A1: 1937, - 0xC5A2: 1938, - 0xC5A5: 1939, - 0xC5A9: 1940, - 0xC5B1: 1941, - 0xC5B3: 1942, - 0xC5B5: 1943, - 0xC5B7: 1944, - 0xC5C1: 1945, - 0xC5C2: 1946, - 0xC5C5: 1947, - 0xC5C9: 1948, - 0xC5D1: 1949, - 0xC5D7: 1950, - 0xC5E1: 1951, - 0xC5F7: 1952, - 0xC641: 1953, - 0xC649: 1954, - 0xC661: 1955, - 0xC681: 1956, - 0xC682: 1957, - 0xC685: 1958, - 0xC689: 1959, - 0xC691: 1960, - 0xC693: 1961, - 0xC695: 1962, - 0xC697: 1963, - 0xC6A1: 1964, - 0xC6A5: 1965, - 0xC6A9: 1966, - 0xC6B7: 1967, - 0xC6C1: 1968, - 0xC6D7: 1969, - 0xC6E1: 1970, - 0xC6E2: 1971, - 0xC6E5: 1972, - 0xC6E9: 1973, - 0xC6F1: 1974, - 0xC6F3: 1975, - 0xC6F5: 1976, - 0xC6F7: 1977, - 0xC741: 1978, - 0xC745: 1979, - 0xC749: 1980, - 0xC751: 1981, - 0xC761: 1982, - 0xC762: 1983, - 0xC765: 1984, - 0xC769: 1985, - 0xC771: 1986, - 0xC773: 1987, - 0xC777: 1988, - 0xC7A1: 1989, - 0xC7A2: 1990, - 0xC7A5: 1991, - 0xC7A9: 1992, - 0xC7B1: 1993, - 0xC7B3: 1994, - 0xC7B5: 1995, - 0xC7B7: 1996, - 0xC861: 1997, - 0xC862: 1998, - 0xC865: 1999, - 0xC869: 2000, - 0xC86A: 2001, - 0xC871: 2002, - 0xC873: 2003, - 0xC875: 2004, - 0xC876: 2005, - 0xC877: 2006, - 0xC881: 2007, - 0xC882: 2008, - 0xC885: 2009, - 0xC889: 2010, - 0xC891: 2011, - 0xC893: 2012, - 0xC895: 2013, - 0xC896: 2014, - 0xC897: 2015, - 0xC8A1: 2016, - 0xC8B7: 2017, - 0xC8E1: 2018, - 0xC8E2: 2019, - 0xC8E5: 2020, - 0xC8E9: 2021, - 0xC8EB: 2022, - 0xC8F1: 2023, - 0xC8F3: 2024, - 0xC8F5: 2025, - 0xC8F6: 2026, - 0xC8F7: 2027, - 0xC941: 2028, - 0xC942: 2029, - 0xC945: 2030, - 0xC949: 2031, - 0xC951: 2032, - 0xC953: 2033, - 0xC955: 2034, - 0xC957: 2035, - 0xC961: 2036, - 0xC965: 2037, - 0xC976: 2038, - 0xC981: 2039, - 0xC985: 2040, - 0xC9A1: 2041, - 0xC9A2: 2042, - 0xC9A5: 2043, - 0xC9A9: 2044, - 0xC9B1: 2045, - 0xC9B3: 2046, - 0xC9B5: 2047, - 0xC9B7: 2048, - 0xC9BC: 2049, - 0xC9C1: 2050, - 0xC9C5: 2051, - 0xC9E1: 2052, - 0xCA41: 2053, - 0xCA45: 2054, - 0xCA55: 2055, - 0xCA57: 2056, - 0xCA61: 2057, - 0xCA81: 2058, - 0xCA82: 2059, - 0xCA85: 2060, - 0xCA89: 2061, - 0xCA91: 2062, - 0xCA93: 2063, - 0xCA95: 2064, - 0xCA97: 2065, - 0xCAA1: 2066, - 0xCAB6: 2067, - 0xCAC1: 2068, - 0xCAE1: 2069, - 0xCAE2: 2070, - 0xCAE5: 2071, - 0xCAE9: 2072, - 0xCAF1: 2073, - 0xCAF3: 2074, - 0xCAF7: 2075, - 0xCB41: 2076, - 0xCB45: 2077, - 0xCB49: 2078, - 0xCB51: 2079, - 0xCB57: 2080, - 0xCB61: 2081, - 0xCB62: 2082, - 0xCB65: 2083, - 0xCB68: 2084, - 0xCB69: 2085, - 0xCB6B: 2086, - 0xCB71: 2087, - 0xCB73: 2088, - 0xCB75: 2089, - 0xCB81: 2090, - 0xCB85: 2091, - 0xCB89: 2092, - 0xCB91: 2093, - 0xCB93: 2094, - 0xCBA1: 2095, - 0xCBA2: 2096, - 0xCBA5: 2097, - 0xCBA9: 2098, - 0xCBB1: 2099, - 0xCBB3: 2100, - 0xCBB5: 2101, - 0xCBB7: 2102, - 0xCC61: 2103, - 0xCC62: 2104, - 0xCC63: 2105, - 0xCC65: 2106, - 0xCC69: 2107, - 0xCC6B: 2108, - 0xCC71: 2109, - 0xCC73: 2110, - 0xCC75: 2111, - 0xCC76: 2112, - 0xCC77: 2113, - 0xCC7B: 2114, - 0xCC81: 2115, - 0xCC82: 2116, - 0xCC85: 2117, - 0xCC89: 2118, - 0xCC91: 2119, - 0xCC93: 2120, - 0xCC95: 2121, - 0xCC96: 2122, - 0xCC97: 2123, - 0xCCA1: 2124, - 0xCCA2: 2125, - 0xCCE1: 2126, - 0xCCE2: 2127, - 0xCCE5: 2128, - 0xCCE9: 2129, - 0xCCF1: 2130, - 0xCCF3: 2131, - 0xCCF5: 2132, - 0xCCF6: 2133, - 0xCCF7: 2134, - 0xCD41: 2135, - 0xCD42: 2136, - 0xCD45: 2137, - 0xCD49: 2138, - 0xCD51: 2139, - 0xCD53: 2140, - 0xCD55: 2141, - 0xCD57: 2142, - 0xCD61: 2143, - 0xCD65: 2144, - 0xCD69: 2145, - 0xCD71: 2146, - 0xCD73: 2147, - 0xCD76: 2148, - 0xCD77: 2149, - 0xCD81: 2150, - 0xCD89: 2151, - 0xCD93: 2152, - 0xCD95: 2153, - 0xCDA1: 2154, - 0xCDA2: 2155, - 0xCDA5: 2156, - 0xCDA9: 2157, - 0xCDB1: 2158, - 0xCDB3: 2159, - 0xCDB5: 2160, - 0xCDB7: 2161, - 0xCDC1: 2162, - 0xCDD7: 2163, - 0xCE41: 2164, - 0xCE45: 2165, - 0xCE61: 2166, - 0xCE65: 2167, - 0xCE69: 2168, - 0xCE73: 2169, - 0xCE75: 2170, - 0xCE81: 2171, - 0xCE82: 2172, - 0xCE85: 2173, - 0xCE88: 2174, - 0xCE89: 2175, - 0xCE8B: 2176, - 0xCE91: 2177, - 0xCE93: 2178, - 0xCE95: 2179, - 0xCE97: 2180, - 0xCEA1: 2181, - 0xCEB7: 2182, - 0xCEE1: 2183, - 0xCEE5: 2184, - 0xCEE9: 2185, - 0xCEF1: 2186, - 0xCEF5: 2187, - 0xCF41: 2188, - 0xCF45: 2189, - 0xCF49: 2190, - 0xCF51: 2191, - 0xCF55: 2192, - 0xCF57: 2193, - 0xCF61: 2194, - 0xCF65: 2195, - 0xCF69: 2196, - 0xCF71: 2197, - 0xCF73: 2198, - 0xCF75: 2199, - 0xCFA1: 2200, - 0xCFA2: 2201, - 0xCFA5: 2202, - 0xCFA9: 2203, - 0xCFB1: 2204, - 0xCFB3: 2205, - 0xCFB5: 2206, - 0xCFB7: 2207, - 0xD061: 2208, - 0xD062: 2209, - 0xD065: 2210, - 0xD069: 2211, - 0xD06E: 2212, - 0xD071: 2213, - 0xD073: 2214, - 0xD075: 2215, - 0xD077: 2216, - 0xD081: 2217, - 0xD082: 2218, - 0xD085: 2219, - 0xD089: 2220, - 0xD091: 2221, - 0xD093: 2222, - 0xD095: 2223, - 0xD096: 2224, - 0xD097: 2225, - 0xD0A1: 2226, - 0xD0B7: 2227, - 0xD0E1: 2228, - 0xD0E2: 2229, - 0xD0E5: 2230, - 0xD0E9: 2231, - 0xD0EB: 2232, - 0xD0F1: 2233, - 0xD0F3: 2234, - 0xD0F5: 2235, - 0xD0F7: 2236, - 0xD141: 2237, - 0xD142: 2238, - 0xD145: 2239, - 0xD149: 2240, - 0xD151: 2241, - 0xD153: 2242, - 0xD155: 2243, - 0xD157: 2244, - 0xD161: 2245, - 0xD162: 2246, - 0xD165: 2247, - 0xD169: 2248, - 0xD171: 2249, - 0xD173: 2250, - 0xD175: 2251, - 0xD176: 2252, - 0xD177: 2253, - 0xD181: 2254, - 0xD185: 2255, - 0xD189: 2256, - 0xD193: 2257, - 0xD1A1: 2258, - 0xD1A2: 2259, - 0xD1A5: 2260, - 0xD1A9: 2261, - 0xD1AE: 2262, - 0xD1B1: 2263, - 0xD1B3: 2264, - 0xD1B5: 2265, - 0xD1B7: 2266, - 0xD1BB: 2267, - 0xD1C1: 2268, - 0xD1C2: 2269, - 0xD1C5: 2270, - 0xD1C9: 2271, - 0xD1D5: 2272, - 0xD1D7: 2273, - 0xD1E1: 2274, - 0xD1E2: 2275, - 0xD1E5: 2276, - 0xD1F5: 2277, - 0xD1F7: 2278, - 0xD241: 2279, - 0xD242: 2280, - 0xD245: 2281, - 0xD249: 2282, - 0xD253: 2283, - 0xD255: 2284, - 0xD257: 2285, - 0xD261: 2286, - 0xD265: 2287, - 0xD269: 2288, - 0xD273: 2289, - 0xD275: 2290, - 0xD281: 2291, - 0xD282: 2292, - 0xD285: 2293, - 0xD289: 2294, - 0xD28E: 2295, - 0xD291: 2296, - 0xD295: 2297, - 0xD297: 2298, - 0xD2A1: 2299, - 0xD2A5: 2300, - 0xD2A9: 2301, - 0xD2B1: 2302, - 0xD2B7: 2303, - 0xD2C1: 2304, - 0xD2C2: 2305, - 0xD2C5: 2306, - 0xD2C9: 2307, - 0xD2D7: 2308, - 0xD2E1: 2309, - 0xD2E2: 2310, - 0xD2E5: 2311, - 0xD2E9: 2312, - 0xD2F1: 2313, - 0xD2F3: 2314, - 0xD2F5: 2315, - 0xD2F7: 2316, - 0xD341: 2317, - 0xD342: 2318, - 0xD345: 2319, - 0xD349: 2320, - 0xD351: 2321, - 0xD355: 2322, - 0xD357: 2323, - 0xD361: 2324, - 0xD362: 2325, - 0xD365: 2326, - 0xD367: 2327, - 0xD368: 2328, - 0xD369: 2329, - 0xD36A: 2330, - 0xD371: 2331, - 0xD373: 2332, - 0xD375: 2333, - 0xD377: 2334, - 0xD37B: 2335, - 0xD381: 2336, - 0xD385: 2337, - 0xD389: 2338, - 0xD391: 2339, - 0xD393: 2340, - 0xD397: 2341, - 0xD3A1: 2342, - 0xD3A2: 2343, - 0xD3A5: 2344, - 0xD3A9: 2345, - 0xD3B1: 2346, - 0xD3B3: 2347, - 0xD3B5: 2348, - 0xD3B7: 2349, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py deleted file mode 100644 index d7364ba..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py +++ /dev/null @@ -1,47 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .chardistribution import JOHABDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import JOHAB_SM_MODEL - - -class JOHABProber(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(JOHAB_SM_MODEL) - self.distribution_analyzer = JOHABDistributionAnalysis() - self.reset() - - @property - def charset_name(self) -> str: - return "Johab" - - @property - def language(self) -> str: - return "Korean" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py deleted file mode 100644 index 2f53bdd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py +++ /dev/null @@ -1,238 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import List, Tuple, Union - -# This is hiragana 2-char sequence table, the number in each cell represents its frequency category -# fmt: off -jp2_char_context = ( - (0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - (2, 4, 0, 4, 0, 3, 0, 4, 0, 3, 4, 4, 4, 2, 4, 3, 3, 4, 3, 2, 3, 3, 4, 2, 3, 3, 3, 2, 4, 1, 4, 3, 3, 1, 5, 4, 3, 4, 3, 4, 3, 5, 3, 0, 3, 5, 4, 2, 0, 3, 1, 0, 3, 3, 0, 3, 3, 0, 1, 1, 0, 4, 3, 0, 3, 3, 0, 4, 0, 2, 0, 3, 5, 5, 5, 5, 4, 0, 4, 1, 0, 3, 4), - (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2), - (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 4, 4, 3, 5, 3, 5, 1, 5, 3, 4, 3, 4, 4, 3, 4, 3, 3, 4, 3, 5, 4, 4, 3, 5, 5, 3, 5, 5, 5, 3, 5, 5, 3, 4, 5, 5, 3, 1, 3, 2, 0, 3, 4, 0, 4, 2, 0, 4, 2, 1, 5, 3, 2, 3, 5, 0, 4, 0, 2, 0, 5, 4, 4, 5, 4, 5, 0, 4, 0, 0, 4, 4), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - (0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 5, 4, 3, 3, 3, 3, 4, 3, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 4, 4, 4, 4, 5, 3, 4, 4, 3, 4, 5, 5, 4, 5, 5, 1, 4, 5, 4, 3, 0, 3, 3, 1, 3, 3, 0, 4, 4, 0, 3, 3, 1, 5, 3, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 0, 4, 1, 1, 3, 4), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - (0, 4, 0, 3, 0, 3, 0, 4, 0, 3, 4, 4, 3, 2, 2, 1, 2, 1, 3, 1, 3, 3, 3, 3, 3, 4, 3, 1, 3, 3, 5, 3, 3, 0, 4, 3, 0, 5, 4, 3, 3, 5, 4, 4, 3, 4, 4, 5, 0, 1, 2, 0, 1, 2, 0, 2, 2, 0, 1, 0, 0, 5, 2, 2, 1, 4, 0, 3, 0, 1, 0, 4, 4, 3, 5, 4, 3, 0, 2, 1, 0, 4, 3), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - (0, 3, 0, 5, 0, 4, 0, 2, 1, 4, 4, 2, 4, 1, 4, 2, 4, 2, 4, 3, 3, 3, 4, 3, 3, 3, 3, 1, 4, 2, 3, 3, 3, 1, 4, 4, 1, 1, 1, 4, 3, 3, 2, 0, 2, 4, 3, 2, 0, 3, 3, 0, 3, 1, 1, 0, 0, 0, 3, 3, 0, 4, 2, 2, 3, 4, 0, 4, 0, 3, 0, 4, 4, 5, 3, 4, 4, 0, 3, 0, 0, 1, 4), - (1, 4, 0, 4, 0, 4, 0, 4, 0, 3, 5, 4, 4, 3, 4, 3, 5, 4, 3, 3, 4, 3, 5, 4, 4, 4, 4, 3, 4, 2, 4, 3, 3, 1, 5, 4, 3, 2, 4, 5, 4, 5, 5, 4, 4, 5, 4, 4, 0, 3, 2, 2, 3, 3, 0, 4, 3, 1, 3, 2, 1, 4, 3, 3, 4, 5, 0, 3, 0, 2, 0, 4, 5, 5, 4, 5, 4, 0, 4, 0, 0, 5, 4), - (0, 5, 0, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 3, 4, 0, 4, 4, 4, 3, 4, 3, 4, 3, 3, 1, 4, 2, 4, 3, 4, 0, 5, 4, 1, 4, 5, 4, 4, 5, 3, 2, 4, 3, 4, 3, 2, 4, 1, 3, 3, 3, 2, 3, 2, 0, 4, 3, 3, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 4, 3, 0, 4, 1, 0, 1, 3), - (0, 3, 1, 4, 0, 3, 0, 2, 0, 3, 4, 4, 3, 1, 4, 2, 3, 3, 4, 3, 4, 3, 4, 3, 4, 4, 3, 2, 3, 1, 5, 4, 4, 1, 4, 4, 3, 5, 4, 4, 3, 5, 5, 4, 3, 4, 4, 3, 1, 2, 3, 1, 2, 2, 0, 3, 2, 0, 3, 1, 0, 5, 3, 3, 3, 4, 3, 3, 3, 3, 4, 4, 4, 4, 5, 4, 2, 0, 3, 3, 2, 4, 3), - (0, 2, 0, 3, 0, 1, 0, 1, 0, 0, 3, 2, 0, 0, 2, 0, 1, 0, 2, 1, 3, 3, 3, 1, 2, 3, 1, 0, 1, 0, 4, 2, 1, 1, 3, 3, 0, 4, 3, 3, 1, 4, 3, 3, 0, 3, 3, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 4, 1, 0, 2, 3, 2, 2, 2, 1, 3, 3, 3, 4, 4, 3, 2, 0, 3, 1, 0, 3, 3), - (0, 4, 0, 4, 0, 3, 0, 3, 0, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 4, 2, 4, 3, 4, 3, 3, 2, 4, 3, 4, 5, 4, 1, 4, 5, 3, 5, 4, 5, 3, 5, 4, 0, 3, 5, 5, 3, 1, 3, 3, 2, 2, 3, 0, 3, 4, 1, 3, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 5, 3, 0, 4, 1, 0, 3, 4), - (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 2, 2, 1, 0, 1, 0, 0, 0, 3, 0, 3, 0, 3, 0, 1, 3, 1, 0, 3, 1, 3, 3, 3, 1, 3, 3, 3, 0, 1, 3, 1, 3, 4, 0, 0, 3, 1, 1, 0, 3, 2, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0, 3, 3, 2, 0, 3, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 3, 0, 3, 0, 0, 2, 3), - (2, 3, 0, 3, 0, 2, 0, 1, 0, 3, 3, 4, 3, 1, 3, 1, 1, 1, 3, 1, 4, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 4, 3, 1, 4, 3, 2, 5, 5, 4, 4, 4, 4, 3, 3, 4, 4, 4, 0, 2, 1, 1, 3, 2, 0, 1, 2, 0, 0, 1, 0, 4, 1, 3, 3, 3, 0, 3, 0, 1, 0, 4, 4, 4, 5, 5, 3, 0, 2, 0, 0, 4, 4), - (0, 2, 0, 1, 0, 3, 1, 3, 0, 2, 3, 3, 3, 0, 3, 1, 0, 0, 3, 0, 3, 2, 3, 1, 3, 2, 1, 1, 0, 0, 4, 2, 1, 0, 2, 3, 1, 4, 3, 2, 0, 4, 4, 3, 1, 3, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 1, 1, 2, 0, 3, 0, 0, 0, 3, 4, 2, 4, 3, 2, 0, 1, 0, 0, 3, 3), - (0, 1, 0, 4, 0, 5, 0, 4, 0, 2, 4, 4, 2, 3, 3, 2, 3, 3, 5, 3, 3, 3, 4, 3, 4, 2, 3, 0, 4, 3, 3, 3, 4, 1, 4, 3, 2, 1, 5, 5, 3, 4, 5, 1, 3, 5, 4, 2, 0, 3, 3, 0, 1, 3, 0, 4, 2, 0, 1, 3, 1, 4, 3, 3, 3, 3, 0, 3, 0, 1, 0, 3, 4, 4, 4, 5, 5, 0, 3, 0, 1, 4, 5), - (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 3, 1, 3, 0, 4, 0, 1, 1, 3, 0, 3, 4, 3, 2, 3, 1, 0, 3, 3, 2, 3, 1, 3, 0, 2, 3, 0, 2, 1, 4, 1, 2, 2, 0, 0, 3, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 2, 1, 3, 3, 0, 2, 0, 2, 0, 0, 3, 3, 1, 2, 4, 0, 3, 0, 2, 2, 3), - (2, 4, 0, 5, 0, 4, 0, 4, 0, 2, 4, 4, 4, 3, 4, 3, 3, 3, 1, 2, 4, 3, 4, 3, 4, 4, 5, 0, 3, 3, 3, 3, 2, 0, 4, 3, 1, 4, 3, 4, 1, 4, 4, 3, 3, 4, 4, 3, 1, 2, 3, 0, 4, 2, 0, 4, 1, 0, 3, 3, 0, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 3, 5, 3, 4, 5, 2, 0, 3, 0, 0, 4, 5), - (0, 3, 0, 4, 0, 1, 0, 1, 0, 1, 3, 2, 2, 1, 3, 0, 3, 0, 2, 0, 2, 0, 3, 0, 2, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 1, 0, 0, 0, 4, 0, 3, 1, 0, 2, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 3, 1, 0, 3, 0, 0, 0, 1, 4, 4, 4, 3, 0, 0, 4, 0, 0, 1, 4), - (1, 4, 1, 5, 0, 3, 0, 3, 0, 4, 5, 4, 4, 3, 5, 3, 3, 4, 4, 3, 4, 1, 3, 3, 3, 3, 2, 1, 4, 1, 5, 4, 3, 1, 4, 4, 3, 5, 4, 4, 3, 5, 4, 3, 3, 4, 4, 4, 0, 3, 3, 1, 2, 3, 0, 3, 1, 0, 3, 3, 0, 5, 4, 4, 4, 4, 4, 4, 3, 3, 5, 4, 4, 3, 3, 5, 4, 0, 3, 2, 0, 4, 4), - (0, 2, 0, 3, 0, 1, 0, 0, 0, 1, 3, 3, 3, 2, 4, 1, 3, 0, 3, 1, 3, 0, 2, 2, 1, 1, 0, 0, 2, 0, 4, 3, 1, 0, 4, 3, 0, 4, 4, 4, 1, 4, 3, 1, 1, 3, 3, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 4, 3, 2, 4, 3, 5, 4, 3, 3, 3, 4, 3, 3, 4, 3, 3, 0, 2, 1, 0, 3, 3), - (0, 2, 0, 4, 0, 3, 0, 2, 0, 2, 5, 5, 3, 4, 4, 4, 4, 1, 4, 3, 3, 0, 4, 3, 4, 3, 1, 3, 3, 2, 4, 3, 0, 3, 4, 3, 0, 3, 4, 4, 2, 4, 4, 0, 4, 5, 3, 3, 2, 2, 1, 1, 1, 2, 0, 1, 5, 0, 3, 3, 2, 4, 3, 3, 3, 4, 0, 3, 0, 2, 0, 4, 4, 3, 5, 5, 0, 0, 3, 0, 2, 3, 3), - (0, 3, 0, 4, 0, 3, 0, 1, 0, 3, 4, 3, 3, 1, 3, 3, 3, 0, 3, 1, 3, 0, 4, 3, 3, 1, 1, 0, 3, 0, 3, 3, 0, 0, 4, 4, 0, 1, 5, 4, 3, 3, 5, 0, 3, 3, 4, 3, 0, 2, 0, 1, 1, 1, 0, 1, 3, 0, 1, 2, 1, 3, 3, 2, 3, 3, 0, 3, 0, 1, 0, 1, 3, 3, 4, 4, 1, 0, 1, 2, 2, 1, 3), - (0, 1, 0, 4, 0, 4, 0, 3, 0, 1, 3, 3, 3, 2, 3, 1, 1, 0, 3, 0, 3, 3, 4, 3, 2, 4, 2, 0, 1, 0, 4, 3, 2, 0, 4, 3, 0, 5, 3, 3, 2, 4, 4, 4, 3, 3, 3, 4, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 4, 2, 3, 3, 3, 0, 3, 0, 0, 0, 4, 4, 4, 5, 3, 2, 0, 3, 3, 0, 3, 5), - (0, 2, 0, 3, 0, 0, 0, 3, 0, 1, 3, 0, 2, 0, 0, 0, 1, 0, 3, 1, 1, 3, 3, 0, 0, 3, 0, 0, 3, 0, 2, 3, 1, 0, 3, 1, 0, 3, 3, 2, 0, 4, 2, 2, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 1, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 1, 0, 0, 1, 4), - (0, 3, 0, 3, 0, 5, 0, 1, 0, 2, 4, 3, 1, 3, 3, 2, 1, 1, 5, 2, 1, 0, 5, 1, 2, 0, 0, 0, 3, 3, 2, 2, 3, 2, 4, 3, 0, 0, 3, 3, 1, 3, 3, 0, 2, 5, 3, 4, 0, 3, 3, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 2, 2, 3, 3, 3, 0, 2, 0, 1, 0, 3, 4, 4, 2, 5, 4, 0, 3, 0, 0, 3, 5), - (0, 3, 0, 3, 0, 3, 0, 1, 0, 3, 3, 3, 3, 0, 3, 0, 2, 0, 2, 1, 1, 0, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 3, 2, 0, 0, 3, 3, 1, 2, 3, 1, 0, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 3, 1, 2, 3, 0, 3, 0, 1, 0, 3, 2, 1, 0, 4, 3, 0, 1, 1, 0, 3, 3), - (0, 4, 0, 5, 0, 3, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 4, 3, 5, 3, 3, 2, 5, 3, 4, 4, 4, 3, 4, 3, 4, 5, 5, 3, 4, 4, 3, 4, 4, 5, 4, 4, 4, 3, 4, 5, 5, 4, 2, 3, 4, 2, 3, 4, 0, 3, 3, 1, 4, 3, 2, 4, 3, 3, 5, 5, 0, 3, 0, 3, 0, 5, 5, 5, 5, 4, 4, 0, 4, 0, 1, 4, 4), - (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 5, 4, 4, 2, 3, 2, 5, 1, 3, 2, 5, 1, 4, 2, 3, 2, 3, 3, 4, 3, 3, 3, 3, 2, 5, 4, 1, 3, 3, 5, 3, 4, 4, 0, 4, 4, 3, 1, 1, 3, 1, 0, 2, 3, 0, 2, 3, 0, 3, 0, 0, 4, 3, 1, 3, 4, 0, 3, 0, 2, 0, 4, 4, 4, 3, 4, 5, 0, 4, 0, 0, 3, 4), - (0, 3, 0, 3, 0, 3, 1, 2, 0, 3, 4, 4, 3, 3, 3, 0, 2, 2, 4, 3, 3, 1, 3, 3, 3, 1, 1, 0, 3, 1, 4, 3, 2, 3, 4, 4, 2, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 3, 1, 3, 3, 1, 3, 3, 0, 4, 1, 0, 2, 2, 1, 4, 3, 2, 3, 3, 5, 4, 3, 3, 5, 4, 4, 3, 3, 0, 4, 0, 3, 2, 2, 4, 4), - (0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 1, 3, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 3, 4, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1), - (0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 4, 1, 4, 0, 3, 0, 4, 0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 1, 5, 1, 4, 0, 0, 3, 0, 5, 0, 5, 2, 0, 1, 0, 0, 0, 2, 1, 4, 0, 1, 3, 0, 0, 3, 0, 0, 3, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), - (1, 4, 0, 5, 0, 3, 0, 2, 0, 3, 5, 4, 4, 3, 4, 3, 5, 3, 4, 3, 3, 0, 4, 3, 3, 3, 3, 3, 3, 2, 4, 4, 3, 1, 3, 4, 4, 5, 4, 4, 3, 4, 4, 1, 3, 5, 4, 3, 3, 3, 1, 2, 2, 3, 3, 1, 3, 1, 3, 3, 3, 5, 3, 3, 4, 5, 0, 3, 0, 3, 0, 3, 4, 3, 4, 4, 3, 0, 3, 0, 2, 4, 3), - (0, 1, 0, 4, 0, 0, 0, 0, 0, 1, 4, 0, 4, 1, 4, 2, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 0, 3, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 3, 2, 0, 2, 2, 0, 1, 0, 0, 0, 2, 3, 2, 3, 3, 0, 0, 0, 0, 2, 1, 0), - (0, 5, 1, 5, 0, 3, 0, 3, 0, 5, 4, 4, 5, 1, 5, 3, 3, 0, 4, 3, 4, 3, 5, 3, 4, 3, 3, 2, 4, 3, 4, 3, 3, 0, 3, 3, 1, 4, 4, 3, 4, 4, 4, 3, 4, 5, 5, 3, 2, 3, 1, 1, 3, 3, 1, 3, 1, 1, 3, 3, 2, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 5, 3, 3, 0, 3, 4, 0, 4, 3), - (0, 5, 0, 5, 0, 3, 0, 2, 0, 4, 4, 3, 5, 2, 4, 3, 3, 3, 4, 4, 4, 3, 5, 3, 5, 3, 3, 1, 4, 0, 4, 3, 3, 0, 3, 3, 0, 4, 4, 4, 4, 5, 4, 3, 3, 5, 5, 3, 2, 3, 1, 2, 3, 2, 0, 1, 0, 0, 3, 2, 2, 4, 4, 3, 1, 5, 0, 4, 0, 3, 0, 4, 3, 1, 3, 2, 1, 0, 3, 3, 0, 3, 3), - (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 5, 5, 3, 4, 3, 3, 2, 5, 4, 4, 3, 5, 3, 5, 3, 4, 0, 4, 3, 4, 4, 3, 2, 4, 4, 3, 4, 5, 4, 4, 5, 5, 0, 3, 5, 5, 4, 1, 3, 3, 2, 3, 3, 1, 3, 1, 0, 4, 3, 1, 4, 4, 3, 4, 5, 0, 4, 0, 2, 0, 4, 3, 4, 4, 3, 3, 0, 4, 0, 0, 5, 5), - (0, 4, 0, 4, 0, 5, 0, 1, 1, 3, 3, 4, 4, 3, 4, 1, 3, 0, 5, 1, 3, 0, 3, 1, 3, 1, 1, 0, 3, 0, 3, 3, 4, 0, 4, 3, 0, 4, 4, 4, 3, 4, 4, 0, 3, 5, 4, 1, 0, 3, 0, 0, 2, 3, 0, 3, 1, 0, 3, 1, 0, 3, 2, 1, 3, 5, 0, 3, 0, 1, 0, 3, 2, 3, 3, 4, 4, 0, 2, 2, 0, 4, 4), - (2, 4, 0, 5, 0, 4, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 5, 3, 5, 3, 5, 2, 5, 3, 4, 3, 3, 4, 3, 4, 5, 3, 2, 1, 5, 4, 3, 2, 3, 4, 5, 3, 4, 1, 2, 5, 4, 3, 0, 3, 3, 0, 3, 2, 0, 2, 3, 0, 4, 1, 0, 3, 4, 3, 3, 5, 0, 3, 0, 1, 0, 4, 5, 5, 5, 4, 3, 0, 4, 2, 0, 3, 5), - (0, 5, 0, 4, 0, 4, 0, 2, 0, 5, 4, 3, 4, 3, 4, 3, 3, 3, 4, 3, 4, 2, 5, 3, 5, 3, 4, 1, 4, 3, 4, 4, 4, 0, 3, 5, 0, 4, 4, 4, 4, 5, 3, 1, 3, 4, 5, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 3, 3, 2, 4, 3, 3, 3, 5, 3, 4, 1, 3, 3, 5, 3, 2, 0, 0, 0, 0, 4, 3, 1, 3, 3), - (0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 3, 3, 3, 2, 3, 3, 3, 0, 3, 0, 0, 0, 3, 1, 3, 0, 0, 0, 2, 2, 2, 3, 0, 0, 3, 2, 0, 1, 2, 4, 1, 3, 3, 0, 0, 3, 3, 3, 0, 1, 0, 0, 2, 1, 0, 0, 3, 0, 3, 1, 0, 3, 0, 0, 1, 3, 0, 2, 0, 1, 0, 3, 3, 1, 3, 3, 0, 0, 1, 1, 0, 3, 3), - (0, 2, 0, 3, 0, 2, 1, 4, 0, 2, 2, 3, 1, 1, 3, 1, 1, 0, 2, 0, 3, 1, 2, 3, 1, 3, 0, 0, 1, 0, 4, 3, 2, 3, 3, 3, 1, 4, 2, 3, 3, 3, 3, 1, 0, 3, 1, 4, 0, 1, 1, 0, 1, 2, 0, 1, 1, 0, 1, 1, 0, 3, 1, 3, 2, 2, 0, 1, 0, 0, 0, 2, 3, 3, 3, 1, 0, 0, 0, 0, 0, 2, 3), - (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 5, 5, 3, 3, 4, 3, 3, 1, 5, 4, 4, 2, 4, 4, 4, 3, 4, 2, 4, 3, 5, 5, 4, 3, 3, 4, 3, 3, 5, 5, 4, 5, 5, 1, 3, 4, 5, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 1, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 5, 3, 3, 1, 4, 3, 0, 4, 0, 1, 5, 3), - (0, 5, 0, 5, 0, 4, 0, 2, 0, 4, 4, 3, 4, 3, 3, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 5, 3, 3, 5, 2, 4, 4, 4, 3, 4, 4, 3, 3, 4, 4, 5, 5, 3, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 1, 2, 2, 1, 4, 3, 3, 5, 4, 4, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 4, 4, 1, 0, 4, 2, 0, 2, 4), - (0, 4, 0, 4, 0, 3, 0, 1, 0, 3, 5, 2, 3, 0, 3, 0, 2, 1, 4, 2, 3, 3, 4, 1, 4, 3, 3, 2, 4, 1, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 5, 3, 3, 3, 3, 3, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 3, 1, 2, 2, 3, 0, 3, 0, 2, 0, 4, 4, 3, 3, 4, 1, 0, 3, 0, 0, 2, 4), - (0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 3, 0, 3, 2, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2), - (0, 2, 1, 3, 0, 2, 0, 2, 0, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 3, 3, 4, 2, 2, 1, 2, 1, 4, 0, 4, 3, 1, 3, 3, 3, 2, 4, 3, 5, 4, 3, 3, 3, 3, 3, 3, 3, 0, 1, 3, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 4, 2, 0, 2, 3, 0, 3, 3, 0, 3, 3, 4, 2, 3, 1, 4, 0, 1, 2, 0, 2, 3), - (0, 3, 0, 3, 0, 1, 0, 3, 0, 2, 3, 3, 3, 0, 3, 1, 2, 0, 3, 3, 2, 3, 3, 2, 3, 2, 3, 1, 3, 0, 4, 3, 2, 0, 3, 3, 1, 4, 3, 3, 2, 3, 4, 3, 1, 3, 3, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 4, 1, 1, 0, 3, 0, 3, 1, 0, 2, 3, 3, 3, 3, 3, 1, 0, 0, 2, 0, 3, 3), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3), - (0, 2, 0, 3, 1, 3, 0, 3, 0, 2, 3, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1, 3, 0, 2, 3, 1, 1, 4, 3, 3, 2, 3, 3, 1, 2, 2, 4, 1, 3, 3, 0, 1, 4, 2, 3, 0, 1, 3, 0, 3, 0, 0, 1, 3, 0, 2, 0, 0, 3, 3, 2, 1, 3, 0, 3, 0, 2, 0, 3, 4, 4, 4, 3, 1, 0, 3, 0, 0, 3, 3), - (0, 2, 0, 1, 0, 2, 0, 0, 0, 1, 3, 2, 2, 1, 3, 0, 1, 1, 3, 0, 3, 2, 3, 1, 2, 0, 2, 0, 1, 1, 3, 3, 3, 0, 3, 3, 1, 1, 2, 3, 2, 3, 3, 1, 2, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 2, 1, 2, 1, 3, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 2, 0, 2, 0, 0, 2, 4), - (0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3), - (0, 3, 0, 3, 0, 2, 0, 3, 0, 3, 3, 3, 2, 3, 2, 2, 2, 0, 3, 1, 3, 3, 3, 2, 3, 3, 0, 0, 3, 0, 3, 2, 2, 0, 2, 3, 1, 4, 3, 4, 3, 3, 2, 3, 1, 5, 4, 4, 0, 3, 1, 2, 1, 3, 0, 3, 1, 1, 2, 0, 2, 3, 1, 3, 1, 3, 0, 3, 0, 1, 0, 3, 3, 4, 4, 2, 1, 0, 2, 1, 0, 2, 4), - (0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 4, 2, 5, 1, 4, 0, 2, 0, 2, 1, 3, 1, 4, 0, 2, 1, 0, 0, 2, 1, 4, 1, 1, 0, 3, 3, 0, 5, 1, 3, 2, 3, 3, 1, 0, 3, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 2, 0, 1, 0, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 2, 3), - (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 3), - (0, 1, 0, 3, 0, 4, 0, 3, 0, 2, 4, 3, 1, 0, 3, 2, 2, 1, 3, 1, 2, 2, 3, 1, 1, 1, 2, 1, 3, 0, 1, 2, 0, 1, 3, 2, 1, 3, 0, 5, 5, 1, 0, 0, 1, 3, 2, 1, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 4, 0, 1, 1, 1, 3, 2, 0, 2, 0, 1, 0, 2, 3, 3, 1, 2, 3, 0, 1, 0, 1, 0, 4), - (0, 0, 0, 1, 0, 3, 0, 3, 0, 2, 2, 1, 0, 0, 4, 0, 3, 0, 3, 1, 3, 0, 3, 0, 3, 0, 1, 0, 3, 0, 3, 1, 3, 0, 3, 3, 0, 0, 1, 2, 1, 1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 2, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 4), - (0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 3, 1, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 2, 3, 0, 0, 2, 2, 3, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 3), - (2, 4, 0, 5, 0, 5, 0, 4, 0, 3, 4, 3, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 4, 5, 5, 5, 2, 3, 0, 5, 5, 4, 1, 5, 4, 3, 1, 5, 4, 3, 4, 4, 3, 3, 4, 3, 3, 0, 3, 2, 0, 2, 3, 0, 3, 0, 0, 3, 3, 0, 5, 3, 2, 3, 3, 0, 3, 0, 3, 0, 3, 4, 5, 4, 5, 3, 0, 4, 3, 0, 3, 4), - (0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 3, 4, 3, 2, 3, 2, 3, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 2, 4, 3, 3, 1, 3, 4, 3, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 1, 0, 2, 0, 0, 1, 1, 0, 2, 0, 0, 3, 1, 0, 5, 3, 2, 1, 3, 0, 3, 0, 1, 2, 4, 3, 2, 4, 3, 3, 0, 3, 2, 0, 4, 4), - (0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 4, 3, 3, 2, 3, 1, 3, 1, 4, 2, 3, 2, 4, 2, 3, 4, 3, 0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 0, 3, 4, 1, 3, 3, 0, 3, 4, 3, 3, 0, 1, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 0, 3, 1, 2, 1, 3, 0, 4, 0, 1, 0, 4, 3, 3, 4, 3, 3, 0, 2, 0, 0, 3, 3), - (0, 3, 0, 4, 0, 1, 0, 3, 0, 3, 4, 3, 3, 0, 3, 3, 3, 1, 3, 1, 3, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 3, 3, 1, 3, 3, 2, 5, 4, 3, 3, 4, 5, 3, 2, 5, 3, 4, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 4, 2, 2, 1, 3, 0, 3, 0, 2, 0, 4, 4, 3, 5, 3, 2, 0, 1, 1, 0, 3, 4), - (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 4, 3, 3, 2, 3, 3, 3, 1, 4, 3, 4, 1, 5, 3, 4, 3, 4, 0, 4, 2, 4, 3, 4, 1, 5, 4, 0, 4, 4, 4, 4, 5, 4, 1, 3, 5, 4, 2, 1, 4, 1, 1, 3, 2, 0, 3, 1, 0, 3, 2, 1, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 3, 3, 3, 0, 4, 2, 0, 3, 4), - (1, 4, 0, 4, 0, 3, 0, 1, 0, 3, 3, 3, 1, 1, 3, 3, 2, 2, 3, 3, 1, 0, 3, 2, 2, 1, 2, 0, 3, 1, 2, 1, 2, 0, 3, 2, 0, 2, 2, 3, 3, 4, 3, 0, 3, 3, 1, 2, 0, 1, 1, 3, 1, 2, 0, 0, 3, 0, 1, 1, 0, 3, 2, 2, 3, 3, 0, 3, 0, 0, 0, 2, 3, 3, 4, 3, 3, 0, 1, 0, 0, 1, 4), - (0, 4, 0, 4, 0, 4, 0, 0, 0, 3, 4, 4, 3, 1, 4, 2, 3, 2, 3, 3, 3, 1, 4, 3, 4, 0, 3, 0, 4, 2, 3, 3, 2, 2, 5, 4, 2, 1, 3, 4, 3, 4, 3, 1, 3, 3, 4, 2, 0, 2, 1, 0, 3, 3, 0, 0, 2, 0, 3, 1, 0, 4, 4, 3, 4, 3, 0, 4, 0, 1, 0, 2, 4, 4, 4, 4, 4, 0, 3, 2, 0, 3, 3), - (0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2), - (0, 2, 0, 3, 0, 4, 0, 4, 0, 1, 3, 3, 3, 0, 4, 0, 2, 1, 2, 1, 1, 1, 2, 0, 3, 1, 1, 0, 1, 0, 3, 1, 0, 0, 3, 3, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 3, 1, 0, 0, 1, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 0, 3, 3, 4, 3, 1, 0, 1, 0, 3, 0, 2), - (0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 1, 0, 2, 0, 3, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 4, 0, 0, 0, 2, 3, 0, 1, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 3), - (0, 2, 0, 5, 0, 5, 0, 1, 0, 2, 4, 3, 3, 2, 5, 1, 3, 2, 3, 3, 3, 0, 4, 1, 2, 0, 3, 0, 4, 0, 2, 2, 1, 1, 5, 3, 0, 0, 1, 4, 2, 3, 2, 0, 3, 3, 3, 2, 0, 2, 4, 1, 1, 2, 0, 1, 1, 0, 3, 1, 0, 1, 3, 1, 2, 3, 0, 2, 0, 0, 0, 1, 3, 5, 4, 4, 4, 0, 3, 0, 0, 1, 3), - (0, 4, 0, 5, 0, 4, 0, 4, 0, 4, 5, 4, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 3, 4, 5, 4, 2, 4, 2, 3, 4, 3, 1, 4, 4, 1, 3, 5, 4, 4, 5, 5, 4, 4, 5, 5, 5, 2, 3, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 4, 4, 4, 0, 3, 0, 4, 0, 3, 3, 4, 4, 5, 0, 0, 4, 3, 0, 4, 5), - (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 4, 4, 4, 3, 3, 2, 4, 3, 4, 3, 4, 3, 5, 3, 4, 3, 2, 1, 4, 2, 4, 4, 3, 1, 3, 4, 2, 4, 5, 5, 3, 4, 5, 4, 1, 5, 4, 3, 0, 3, 2, 2, 3, 2, 1, 3, 1, 0, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 2, 3, 3, 4, 3, 3, 3, 2, 1, 0, 3, 2, 1, 4, 3), - (0, 4, 0, 5, 0, 4, 0, 3, 0, 3, 5, 5, 3, 2, 4, 3, 4, 0, 5, 4, 4, 1, 4, 4, 4, 3, 3, 3, 4, 3, 5, 5, 2, 3, 3, 4, 1, 2, 5, 5, 3, 5, 5, 2, 3, 5, 5, 4, 0, 3, 2, 0, 3, 3, 1, 1, 5, 1, 4, 1, 0, 4, 3, 2, 3, 5, 0, 4, 0, 3, 0, 5, 4, 3, 4, 3, 0, 0, 4, 1, 0, 4, 4), - (1, 3, 0, 4, 0, 2, 0, 2, 0, 2, 5, 5, 3, 3, 3, 3, 3, 0, 4, 2, 3, 4, 4, 4, 3, 4, 0, 0, 3, 4, 5, 4, 3, 3, 3, 3, 2, 5, 5, 4, 5, 5, 5, 4, 3, 5, 5, 5, 1, 3, 1, 0, 1, 0, 0, 3, 2, 0, 4, 2, 0, 5, 2, 3, 2, 4, 1, 3, 0, 3, 0, 4, 5, 4, 5, 4, 3, 0, 4, 2, 0, 5, 4), - (0, 3, 0, 4, 0, 5, 0, 3, 0, 3, 4, 4, 3, 2, 3, 2, 3, 3, 3, 3, 3, 2, 4, 3, 3, 2, 2, 0, 3, 3, 3, 3, 3, 1, 3, 3, 3, 0, 4, 4, 3, 4, 4, 1, 1, 4, 4, 2, 0, 3, 1, 0, 1, 1, 0, 4, 1, 0, 2, 3, 1, 3, 3, 1, 3, 4, 0, 3, 0, 1, 0, 3, 1, 3, 0, 0, 1, 0, 2, 0, 0, 4, 4), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - (0, 3, 0, 3, 0, 2, 0, 3, 0, 1, 5, 4, 3, 3, 3, 1, 4, 2, 1, 2, 3, 4, 4, 2, 4, 4, 5, 0, 3, 1, 4, 3, 4, 0, 4, 3, 3, 3, 2, 3, 2, 5, 3, 4, 3, 2, 2, 3, 0, 0, 3, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 2, 1, 1, 3, 1, 0, 2, 0, 4, 0, 3, 4, 4, 4, 5, 2, 0, 2, 0, 0, 1, 3), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 4, 2, 1, 1, 0, 1, 0, 3, 2, 0, 0, 3, 1, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 1), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 2, 0, 2, 1, 0, 0, 1, 2, 1, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2), - (0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 4, 3, 4, 2, 4, 3, 2, 0, 4, 4, 4, 3, 5, 3, 5, 3, 3, 2, 4, 2, 4, 3, 4, 3, 1, 4, 0, 2, 3, 4, 4, 4, 3, 3, 3, 4, 4, 4, 3, 4, 1, 3, 4, 3, 2, 1, 2, 1, 3, 3, 3, 4, 4, 3, 3, 5, 0, 4, 0, 3, 0, 4, 3, 3, 3, 2, 1, 0, 3, 0, 0, 3, 3), - (0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 5, 5, 3, 3, 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 4, 3, 5, 3, 3, 1, 3, 2, 4, 5, 5, 5, 5, 4, 3, 4, 5, 5, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 1, 2, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 4, 3, 2, 2, 1, 2, 0, 3, 0, 0, 4, 1), -) -# fmt: on - - -class JapaneseContextAnalysis: - NUM_OF_CATEGORY = 6 - DONT_KNOW = -1 - ENOUGH_REL_THRESHOLD = 100 - MAX_REL_THRESHOLD = 1000 - MINIMUM_DATA_THRESHOLD = 4 - - def __init__(self) -> None: - self._total_rel = 0 - self._rel_sample: List[int] = [] - self._need_to_skip_char_num = 0 - self._last_char_order = -1 - self._done = False - self.reset() - - def reset(self) -> None: - self._total_rel = 0 # total sequence received - # category counters, each integer counts sequence in its category - self._rel_sample = [0] * self.NUM_OF_CATEGORY - # if last byte in current buffer is not the last byte of a character, - # we need to know how many bytes to skip in next buffer - self._need_to_skip_char_num = 0 - self._last_char_order = -1 # The order of previous char - # If this flag is set to True, detection is done and conclusion has - # been made - self._done = False - - def feed(self, byte_str: Union[bytes, bytearray], num_bytes: int) -> None: - if self._done: - return - - # The buffer we got is byte oriented, and a character may span in more than one - # buffers. In case the last one or two byte in last buffer is not - # complete, we record how many byte needed to complete that character - # and skip these bytes here. We can choose to record those bytes as - # well and analyse the character once it is complete, but since a - # character will not make much difference, by simply skipping - # this character will simply our logic and improve performance. - i = self._need_to_skip_char_num - while i < num_bytes: - order, char_len = self.get_order(byte_str[i : i + 2]) - i += char_len - if i > num_bytes: - self._need_to_skip_char_num = i - num_bytes - self._last_char_order = -1 - else: - if (order != -1) and (self._last_char_order != -1): - self._total_rel += 1 - if self._total_rel > self.MAX_REL_THRESHOLD: - self._done = True - break - self._rel_sample[ - jp2_char_context[self._last_char_order][order] - ] += 1 - self._last_char_order = order - - def got_enough_data(self) -> bool: - return self._total_rel > self.ENOUGH_REL_THRESHOLD - - def get_confidence(self) -> float: - # This is just one way to calculate confidence. It works well for me. - if self._total_rel > self.MINIMUM_DATA_THRESHOLD: - return (self._total_rel - self._rel_sample[0]) / self._total_rel - return self.DONT_KNOW - - def get_order(self, _: Union[bytes, bytearray]) -> Tuple[int, int]: - return -1, 1 - - -class SJISContextAnalysis(JapaneseContextAnalysis): - def __init__(self) -> None: - super().__init__() - self._charset_name = "SHIFT_JIS" - - @property - def charset_name(self) -> str: - return self._charset_name - - def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: - if not byte_str: - return -1, 1 - # find out current char's byte length - first_char = byte_str[0] - if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): - char_len = 2 - if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): - self._charset_name = "CP932" - else: - char_len = 1 - - # return its order if it is hiragana - if len(byte_str) > 1: - second_char = byte_str[1] - if (first_char == 202) and (0x9F <= second_char <= 0xF1): - return second_char - 0x9F, char_len - - return -1, char_len - - -class EUCJPContextAnalysis(JapaneseContextAnalysis): - def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: - if not byte_str: - return -1, 1 - # find out current char's byte length - first_char = byte_str[0] - if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): - char_len = 2 - elif first_char == 0x8F: - char_len = 3 - else: - char_len = 1 - - # return its order if it is hiragana - if len(byte_str) > 1: - second_char = byte_str[1] - if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): - return second_char - 0xA1, char_len - - return -1, char_len diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py deleted file mode 100644 index 9946682..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +++ /dev/null @@ -1,4649 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -BULGARIAN_LANG_MODEL = { - 63: { # 'e' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 1, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 0, # 'и' - 26: 1, # 'й' - 12: 1, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 1, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 0, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 45: { # '\xad' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 0, # 'Л' - 38: 1, # 'М' - 36: 0, # 'Н' - 41: 1, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 1, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 0, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 0, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 31: { # 'А' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 2, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 2, # 'Е' - 55: 1, # 'Ж' - 47: 2, # 'З' - 40: 1, # 'И' - 59: 1, # 'Й' - 33: 1, # 'К' - 46: 2, # 'Л' - 38: 1, # 'М' - 36: 2, # 'Н' - 41: 1, # 'О' - 30: 2, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 2, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 2, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 1, # 'а' - 18: 2, # 'б' - 9: 2, # 'в' - 20: 2, # 'г' - 11: 2, # 'д' - 3: 1, # 'е' - 23: 1, # 'ж' - 15: 2, # 'з' - 2: 0, # 'и' - 26: 2, # 'й' - 12: 2, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 0, # 'о' - 13: 2, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 1, # 'у' - 29: 2, # 'ф' - 25: 1, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 32: { # 'Б' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 2, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 1, # 'Е' - 55: 1, # 'Ж' - 47: 2, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 2, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 2, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 0, # 'Ш' - 57: 1, # 'Щ' - 61: 2, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 2, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 1, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 35: { # 'В' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 2, # 'Ф' - 49: 0, # 'Х' - 53: 1, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 2, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 2, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 2, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 43: { # 'Г' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 0, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 1, # 'Щ' - 61: 1, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 1, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 37: { # 'Д' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 2, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 2, # 'Е' - 55: 2, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 2, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 2, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 2, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 44: { # 'Е' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 2, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 1, # 'Й' - 33: 2, # 'К' - 46: 2, # 'Л' - 38: 1, # 'М' - 36: 2, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 2, # 'Ф' - 49: 1, # 'Х' - 53: 2, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 1, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 0, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 2, # 'д' - 3: 0, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 0, # 'и' - 26: 1, # 'й' - 12: 2, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 2, # 'н' - 4: 0, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 1, # 'т' - 19: 1, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 55: { # 'Ж' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 47: { # 'З' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 2, # 'Н' - 41: 1, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 2, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 1, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 1, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 40: { # 'И' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 1, # 'Ж' - 47: 2, # 'З' - 40: 1, # 'И' - 59: 1, # 'Й' - 33: 2, # 'К' - 46: 2, # 'Л' - 38: 2, # 'М' - 36: 2, # 'Н' - 41: 1, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 0, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 1, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 2, # 'Я' - 1: 1, # 'а' - 18: 1, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 1, # 'д' - 3: 1, # 'е' - 23: 0, # 'ж' - 15: 3, # 'з' - 2: 0, # 'и' - 26: 1, # 'й' - 12: 1, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 2, # 'н' - 4: 0, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 0, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 59: { # 'Й' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 1, # 'С' - 34: 1, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 1, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 1, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 33: { # 'К' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 2, # 'Н' - 41: 2, # 'О' - 30: 2, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 1, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 2, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 3, # 'р' - 8: 1, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 46: { # 'Л' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 2, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 0, # 'Р' - 28: 1, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 38: { # 'М' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 2, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 1, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 2, # 'л' - 14: 0, # 'м' - 6: 2, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 36: { # 'Н' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 2, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 2, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 1, # 'Й' - 33: 2, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 1, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 1, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 2, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 41: { # 'О' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 2, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 1, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 1, # 'Й' - 33: 2, # 'К' - 46: 2, # 'Л' - 38: 2, # 'М' - 36: 2, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 0, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 1, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 1, # 'а' - 18: 2, # 'б' - 9: 2, # 'в' - 20: 2, # 'г' - 11: 1, # 'д' - 3: 1, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 0, # 'и' - 26: 1, # 'й' - 12: 2, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 0, # 'о' - 13: 2, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 3, # 'т' - 19: 1, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 1, # 'ц' - 21: 2, # 'ч' - 27: 0, # 'ш' - 24: 2, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 30: { # 'П' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 2, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 2, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 3, # 'л' - 14: 0, # 'м' - 6: 1, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 3, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 2, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 39: { # 'Р' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 2, # 'Г' - 37: 2, # 'Д' - 44: 2, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 0, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 2, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 1, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 1, # 'с' - 5: 0, # 'т' - 19: 3, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 28: { # 'С' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 3, # 'А' - 32: 2, # 'Б' - 35: 2, # 'В' - 43: 1, # 'Г' - 37: 2, # 'Д' - 44: 2, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 2, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 2, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 2, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 1, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 2, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 1, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 3, # 'т' - 19: 2, # 'у' - 29: 2, # 'ф' - 25: 1, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 34: { # 'Т' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 2, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 2, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 2, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 1, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 1, # 'Ъ' - 60: 0, # 'Ю' - 56: 1, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 1, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 3, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 51: { # 'У' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 2, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 0, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 2, # 'Т' - 51: 0, # 'У' - 48: 1, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 1, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 2, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 2, # 'и' - 26: 1, # 'й' - 12: 2, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 2, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 2, # 'с' - 5: 1, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 48: { # 'Ф' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 2, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 1, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 2, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 49: { # 'Х' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 1, # 'П' - 39: 1, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 1, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 53: { # 'Ц' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 2, # 'И' - 59: 0, # 'Й' - 33: 2, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 1, # 'Р' - 28: 2, # 'С' - 34: 0, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 2, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 1, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 50: { # 'Ч' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 2, # 'А' - 32: 1, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 1, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 2, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 1, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 54: { # 'Ш' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 1, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 1, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 2, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 2, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 1, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 57: { # 'Щ' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 1, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 1, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 1, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 1, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 61: { # 'Ъ' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 1, # 'Д' - 44: 0, # 'Е' - 55: 1, # 'Ж' - 47: 1, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 2, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 0, # 'О' - 30: 1, # 'П' - 39: 2, # 'Р' - 28: 1, # 'С' - 34: 1, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 1, # 'Х' - 53: 1, # 'Ц' - 50: 1, # 'Ч' - 54: 1, # 'Ш' - 57: 1, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 0, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 1, # 'л' - 14: 0, # 'м' - 6: 1, # 'н' - 4: 0, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 60: { # 'Ю' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 1, # 'Б' - 35: 0, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 0, # 'Е' - 55: 1, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 0, # 'М' - 36: 1, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 1, # 'Р' - 28: 1, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 2, # 'г' - 11: 1, # 'д' - 3: 0, # 'е' - 23: 2, # 'ж' - 15: 1, # 'з' - 2: 1, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 0, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 56: { # 'Я' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 1, # 'Б' - 35: 1, # 'В' - 43: 1, # 'Г' - 37: 1, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 1, # 'Л' - 38: 1, # 'М' - 36: 1, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 1, # 'С' - 34: 2, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 0, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 1, # 'и' - 26: 1, # 'й' - 12: 1, # 'к' - 10: 1, # 'л' - 14: 2, # 'м' - 6: 2, # 'н' - 4: 0, # 'о' - 13: 2, # 'п' - 7: 1, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 1: { # 'а' - 63: 1, # 'e' - 45: 1, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 1, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 1, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 3, # 'и' - 26: 3, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 3, # 'ф' - 25: 3, # 'х' - 22: 3, # 'ц' - 21: 3, # 'ч' - 27: 3, # 'ш' - 24: 3, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 18: { # 'б' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 3, # 'в' - 20: 1, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 0, # 'т' - 19: 3, # 'у' - 29: 0, # 'ф' - 25: 2, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 3, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 9: { # 'в' - 63: 1, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 1, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 0, # 'в' - 20: 2, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 3, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 2, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 3, # 'ч' - 27: 2, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 20: { # 'г' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 3, # 'л' - 14: 1, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 3, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 11: { # 'д' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 2, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 1, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 3: { # 'е' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 2, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 2, # 'и' - 26: 3, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 2, # 'у' - 29: 3, # 'ф' - 25: 3, # 'х' - 22: 3, # 'ц' - 21: 3, # 'ч' - 27: 3, # 'ш' - 24: 3, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 23: { # 'ж' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 2, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 15: { # 'з' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 2, # 'ш' - 24: 1, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 2: { # 'и' - 63: 1, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 1, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 1, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 1, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 1, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 3, # 'и' - 26: 3, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 2, # 'у' - 29: 3, # 'ф' - 25: 3, # 'х' - 22: 3, # 'ц' - 21: 3, # 'ч' - 27: 3, # 'ш' - 24: 3, # 'щ' - 17: 2, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 26: { # 'й' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 1, # 'а' - 18: 2, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 2, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 2, # 'з' - 2: 1, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 1, # 'у' - 29: 2, # 'ф' - 25: 1, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 12: { # 'к' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 1, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 1, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 3, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 10: { # 'л' - 63: 1, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 1, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 1, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 2, # 'п' - 7: 2, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 2, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 2, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 2, # 'ь' - 42: 3, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 14: { # 'м' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 1, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 2, # 'к' - 10: 3, # 'л' - 14: 1, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 1, # 'т' - 19: 3, # 'у' - 29: 2, # 'ф' - 25: 1, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 2, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 6: { # 'н' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 1, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 2, # 'б' - 9: 2, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 2, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 3, # 'ф' - 25: 2, # 'х' - 22: 3, # 'ц' - 21: 3, # 'ч' - 27: 2, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 2, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 4: { # 'о' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 2, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 3, # 'и' - 26: 3, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 2, # 'у' - 29: 3, # 'ф' - 25: 3, # 'х' - 22: 3, # 'ц' - 21: 3, # 'ч' - 27: 3, # 'ш' - 24: 3, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 13: { # 'п' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 1, # 'й' - 12: 2, # 'к' - 10: 3, # 'л' - 14: 1, # 'м' - 6: 2, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 3, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 7: { # 'р' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 3, # 'е' - 23: 3, # 'ж' - 15: 2, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 2, # 'п' - 7: 1, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 2, # 'ф' - 25: 3, # 'х' - 22: 3, # 'ц' - 21: 2, # 'ч' - 27: 3, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 1, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 8: { # 'с' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 2, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 1, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 2, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 2, # 'ш' - 24: 0, # 'щ' - 17: 3, # 'ъ' - 52: 2, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 5: { # 'т' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 2, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 2, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 3, # 'у' - 29: 1, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 2, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 3, # 'ъ' - 52: 2, # 'ь' - 42: 2, # 'ю' - 16: 3, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 19: { # 'у' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 2, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 2, # 'и' - 26: 2, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 1, # 'у' - 29: 2, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 3, # 'ч' - 27: 3, # 'ш' - 24: 2, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 29: { # 'ф' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 1, # 'в' - 20: 1, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 2, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 2, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 2, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 25: { # 'х' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 3, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 2, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 1, # 'п' - 7: 3, # 'р' - 8: 1, # 'с' - 5: 2, # 'т' - 19: 3, # 'у' - 29: 0, # 'ф' - 25: 1, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 22: { # 'ц' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 2, # 'в' - 20: 1, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 1, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 2, # 'к' - 10: 1, # 'л' - 14: 1, # 'м' - 6: 1, # 'н' - 4: 2, # 'о' - 13: 1, # 'п' - 7: 1, # 'р' - 8: 1, # 'с' - 5: 1, # 'т' - 19: 2, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 1, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 0, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 21: { # 'ч' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 1, # 'б' - 9: 3, # 'в' - 20: 1, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 1, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 2, # 'р' - 8: 0, # 'с' - 5: 2, # 'т' - 19: 3, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 1, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 27: { # 'ш' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 2, # 'в' - 20: 0, # 'г' - 11: 1, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 3, # 'к' - 10: 2, # 'л' - 14: 1, # 'м' - 6: 3, # 'н' - 4: 2, # 'о' - 13: 2, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 1, # 'т' - 19: 2, # 'у' - 29: 1, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 1, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 2, # 'ъ' - 52: 1, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 24: { # 'щ' - 63: 1, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 3, # 'а' - 18: 0, # 'б' - 9: 1, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 3, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 3, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 2, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 1, # 'р' - 8: 0, # 'с' - 5: 2, # 'т' - 19: 3, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 1, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 2, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 17: { # 'ъ' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 1, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 3, # 'г' - 11: 3, # 'д' - 3: 2, # 'е' - 23: 3, # 'ж' - 15: 3, # 'з' - 2: 1, # 'и' - 26: 2, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 3, # 'о' - 13: 3, # 'п' - 7: 3, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 1, # 'у' - 29: 1, # 'ф' - 25: 2, # 'х' - 22: 2, # 'ц' - 21: 3, # 'ч' - 27: 2, # 'ш' - 24: 3, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 2, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 52: { # 'ь' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 1, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 1, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 1, # 'н' - 4: 3, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 1, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 1, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 1, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 42: { # 'ю' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 1, # 'а' - 18: 2, # 'б' - 9: 1, # 'в' - 20: 2, # 'г' - 11: 2, # 'д' - 3: 1, # 'е' - 23: 2, # 'ж' - 15: 2, # 'з' - 2: 1, # 'и' - 26: 1, # 'й' - 12: 2, # 'к' - 10: 2, # 'л' - 14: 2, # 'м' - 6: 2, # 'н' - 4: 1, # 'о' - 13: 1, # 'п' - 7: 2, # 'р' - 8: 2, # 'с' - 5: 2, # 'т' - 19: 1, # 'у' - 29: 1, # 'ф' - 25: 1, # 'х' - 22: 2, # 'ц' - 21: 3, # 'ч' - 27: 1, # 'ш' - 24: 1, # 'щ' - 17: 1, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 16: { # 'я' - 63: 0, # 'e' - 45: 1, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 3, # 'б' - 9: 3, # 'в' - 20: 2, # 'г' - 11: 3, # 'д' - 3: 2, # 'е' - 23: 1, # 'ж' - 15: 2, # 'з' - 2: 1, # 'и' - 26: 2, # 'й' - 12: 3, # 'к' - 10: 3, # 'л' - 14: 3, # 'м' - 6: 3, # 'н' - 4: 1, # 'о' - 13: 2, # 'п' - 7: 2, # 'р' - 8: 3, # 'с' - 5: 3, # 'т' - 19: 1, # 'у' - 29: 1, # 'ф' - 25: 3, # 'х' - 22: 2, # 'ц' - 21: 1, # 'ч' - 27: 1, # 'ш' - 24: 2, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 1, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 58: { # 'є' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 0, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 0, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, - 62: { # '№' - 63: 0, # 'e' - 45: 0, # '\xad' - 31: 0, # 'А' - 32: 0, # 'Б' - 35: 0, # 'В' - 43: 0, # 'Г' - 37: 0, # 'Д' - 44: 0, # 'Е' - 55: 0, # 'Ж' - 47: 0, # 'З' - 40: 0, # 'И' - 59: 0, # 'Й' - 33: 0, # 'К' - 46: 0, # 'Л' - 38: 0, # 'М' - 36: 0, # 'Н' - 41: 0, # 'О' - 30: 0, # 'П' - 39: 0, # 'Р' - 28: 0, # 'С' - 34: 0, # 'Т' - 51: 0, # 'У' - 48: 0, # 'Ф' - 49: 0, # 'Х' - 53: 0, # 'Ц' - 50: 0, # 'Ч' - 54: 0, # 'Ш' - 57: 0, # 'Щ' - 61: 0, # 'Ъ' - 60: 0, # 'Ю' - 56: 0, # 'Я' - 1: 0, # 'а' - 18: 0, # 'б' - 9: 0, # 'в' - 20: 0, # 'г' - 11: 0, # 'д' - 3: 0, # 'е' - 23: 0, # 'ж' - 15: 0, # 'з' - 2: 0, # 'и' - 26: 0, # 'й' - 12: 0, # 'к' - 10: 0, # 'л' - 14: 0, # 'м' - 6: 0, # 'н' - 4: 0, # 'о' - 13: 0, # 'п' - 7: 0, # 'р' - 8: 0, # 'с' - 5: 0, # 'т' - 19: 0, # 'у' - 29: 0, # 'ф' - 25: 0, # 'х' - 22: 0, # 'ц' - 21: 0, # 'ч' - 27: 0, # 'ш' - 24: 0, # 'щ' - 17: 0, # 'ъ' - 52: 0, # 'ь' - 42: 0, # 'ю' - 16: 0, # 'я' - 58: 0, # 'є' - 62: 0, # '№' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 77, # 'A' - 66: 90, # 'B' - 67: 99, # 'C' - 68: 100, # 'D' - 69: 72, # 'E' - 70: 109, # 'F' - 71: 107, # 'G' - 72: 101, # 'H' - 73: 79, # 'I' - 74: 185, # 'J' - 75: 81, # 'K' - 76: 102, # 'L' - 77: 76, # 'M' - 78: 94, # 'N' - 79: 82, # 'O' - 80: 110, # 'P' - 81: 186, # 'Q' - 82: 108, # 'R' - 83: 91, # 'S' - 84: 74, # 'T' - 85: 119, # 'U' - 86: 84, # 'V' - 87: 96, # 'W' - 88: 111, # 'X' - 89: 187, # 'Y' - 90: 115, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 65, # 'a' - 98: 69, # 'b' - 99: 70, # 'c' - 100: 66, # 'd' - 101: 63, # 'e' - 102: 68, # 'f' - 103: 112, # 'g' - 104: 103, # 'h' - 105: 92, # 'i' - 106: 194, # 'j' - 107: 104, # 'k' - 108: 95, # 'l' - 109: 86, # 'm' - 110: 87, # 'n' - 111: 71, # 'o' - 112: 116, # 'p' - 113: 195, # 'q' - 114: 85, # 'r' - 115: 93, # 's' - 116: 97, # 't' - 117: 113, # 'u' - 118: 196, # 'v' - 119: 197, # 'w' - 120: 198, # 'x' - 121: 199, # 'y' - 122: 200, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 194, # '\x80' - 129: 195, # '\x81' - 130: 196, # '\x82' - 131: 197, # '\x83' - 132: 198, # '\x84' - 133: 199, # '\x85' - 134: 200, # '\x86' - 135: 201, # '\x87' - 136: 202, # '\x88' - 137: 203, # '\x89' - 138: 204, # '\x8a' - 139: 205, # '\x8b' - 140: 206, # '\x8c' - 141: 207, # '\x8d' - 142: 208, # '\x8e' - 143: 209, # '\x8f' - 144: 210, # '\x90' - 145: 211, # '\x91' - 146: 212, # '\x92' - 147: 213, # '\x93' - 148: 214, # '\x94' - 149: 215, # '\x95' - 150: 216, # '\x96' - 151: 217, # '\x97' - 152: 218, # '\x98' - 153: 219, # '\x99' - 154: 220, # '\x9a' - 155: 221, # '\x9b' - 156: 222, # '\x9c' - 157: 223, # '\x9d' - 158: 224, # '\x9e' - 159: 225, # '\x9f' - 160: 81, # '\xa0' - 161: 226, # 'Ё' - 162: 227, # 'Ђ' - 163: 228, # 'Ѓ' - 164: 229, # 'Є' - 165: 230, # 'Ѕ' - 166: 105, # 'І' - 167: 231, # 'Ї' - 168: 232, # 'Ј' - 169: 233, # 'Љ' - 170: 234, # 'Њ' - 171: 235, # 'Ћ' - 172: 236, # 'Ќ' - 173: 45, # '\xad' - 174: 237, # 'Ў' - 175: 238, # 'Џ' - 176: 31, # 'А' - 177: 32, # 'Б' - 178: 35, # 'В' - 179: 43, # 'Г' - 180: 37, # 'Д' - 181: 44, # 'Е' - 182: 55, # 'Ж' - 183: 47, # 'З' - 184: 40, # 'И' - 185: 59, # 'Й' - 186: 33, # 'К' - 187: 46, # 'Л' - 188: 38, # 'М' - 189: 36, # 'Н' - 190: 41, # 'О' - 191: 30, # 'П' - 192: 39, # 'Р' - 193: 28, # 'С' - 194: 34, # 'Т' - 195: 51, # 'У' - 196: 48, # 'Ф' - 197: 49, # 'Х' - 198: 53, # 'Ц' - 199: 50, # 'Ч' - 200: 54, # 'Ш' - 201: 57, # 'Щ' - 202: 61, # 'Ъ' - 203: 239, # 'Ы' - 204: 67, # 'Ь' - 205: 240, # 'Э' - 206: 60, # 'Ю' - 207: 56, # 'Я' - 208: 1, # 'а' - 209: 18, # 'б' - 210: 9, # 'в' - 211: 20, # 'г' - 212: 11, # 'д' - 213: 3, # 'е' - 214: 23, # 'ж' - 215: 15, # 'з' - 216: 2, # 'и' - 217: 26, # 'й' - 218: 12, # 'к' - 219: 10, # 'л' - 220: 14, # 'м' - 221: 6, # 'н' - 222: 4, # 'о' - 223: 13, # 'п' - 224: 7, # 'р' - 225: 8, # 'с' - 226: 5, # 'т' - 227: 19, # 'у' - 228: 29, # 'ф' - 229: 25, # 'х' - 230: 22, # 'ц' - 231: 21, # 'ч' - 232: 27, # 'ш' - 233: 24, # 'щ' - 234: 17, # 'ъ' - 235: 75, # 'ы' - 236: 52, # 'ь' - 237: 241, # 'э' - 238: 42, # 'ю' - 239: 16, # 'я' - 240: 62, # '№' - 241: 242, # 'ё' - 242: 243, # 'ђ' - 243: 244, # 'ѓ' - 244: 58, # 'є' - 245: 245, # 'ѕ' - 246: 98, # 'і' - 247: 246, # 'ї' - 248: 247, # 'ј' - 249: 248, # 'љ' - 250: 249, # 'њ' - 251: 250, # 'ћ' - 252: 251, # 'ќ' - 253: 91, # '§' - 254: 252, # 'ў' - 255: 253, # 'џ' -} - -ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel( - charset_name="ISO-8859-5", - language="Bulgarian", - char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, - language_model=BULGARIAN_LANG_MODEL, - typical_positive_ratio=0.969392, - keep_ascii_letters=False, - alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", -) - -WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 77, # 'A' - 66: 90, # 'B' - 67: 99, # 'C' - 68: 100, # 'D' - 69: 72, # 'E' - 70: 109, # 'F' - 71: 107, # 'G' - 72: 101, # 'H' - 73: 79, # 'I' - 74: 185, # 'J' - 75: 81, # 'K' - 76: 102, # 'L' - 77: 76, # 'M' - 78: 94, # 'N' - 79: 82, # 'O' - 80: 110, # 'P' - 81: 186, # 'Q' - 82: 108, # 'R' - 83: 91, # 'S' - 84: 74, # 'T' - 85: 119, # 'U' - 86: 84, # 'V' - 87: 96, # 'W' - 88: 111, # 'X' - 89: 187, # 'Y' - 90: 115, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 65, # 'a' - 98: 69, # 'b' - 99: 70, # 'c' - 100: 66, # 'd' - 101: 63, # 'e' - 102: 68, # 'f' - 103: 112, # 'g' - 104: 103, # 'h' - 105: 92, # 'i' - 106: 194, # 'j' - 107: 104, # 'k' - 108: 95, # 'l' - 109: 86, # 'm' - 110: 87, # 'n' - 111: 71, # 'o' - 112: 116, # 'p' - 113: 195, # 'q' - 114: 85, # 'r' - 115: 93, # 's' - 116: 97, # 't' - 117: 113, # 'u' - 118: 196, # 'v' - 119: 197, # 'w' - 120: 198, # 'x' - 121: 199, # 'y' - 122: 200, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 206, # 'Ђ' - 129: 207, # 'Ѓ' - 130: 208, # '‚' - 131: 209, # 'ѓ' - 132: 210, # '„' - 133: 211, # '…' - 134: 212, # '†' - 135: 213, # '‡' - 136: 120, # '€' - 137: 214, # '‰' - 138: 215, # 'Љ' - 139: 216, # '‹' - 140: 217, # 'Њ' - 141: 218, # 'Ќ' - 142: 219, # 'Ћ' - 143: 220, # 'Џ' - 144: 221, # 'ђ' - 145: 78, # '‘' - 146: 64, # '’' - 147: 83, # '“' - 148: 121, # '”' - 149: 98, # '•' - 150: 117, # '–' - 151: 105, # '—' - 152: 222, # None - 153: 223, # '™' - 154: 224, # 'љ' - 155: 225, # '›' - 156: 226, # 'њ' - 157: 227, # 'ќ' - 158: 228, # 'ћ' - 159: 229, # 'џ' - 160: 88, # '\xa0' - 161: 230, # 'Ў' - 162: 231, # 'ў' - 163: 232, # 'Ј' - 164: 233, # '¤' - 165: 122, # 'Ґ' - 166: 89, # '¦' - 167: 106, # '§' - 168: 234, # 'Ё' - 169: 235, # '©' - 170: 236, # 'Є' - 171: 237, # '«' - 172: 238, # '¬' - 173: 45, # '\xad' - 174: 239, # '®' - 175: 240, # 'Ї' - 176: 73, # '°' - 177: 80, # '±' - 178: 118, # 'І' - 179: 114, # 'і' - 180: 241, # 'ґ' - 181: 242, # 'µ' - 182: 243, # '¶' - 183: 244, # '·' - 184: 245, # 'ё' - 185: 62, # '№' - 186: 58, # 'є' - 187: 246, # '»' - 188: 247, # 'ј' - 189: 248, # 'Ѕ' - 190: 249, # 'ѕ' - 191: 250, # 'ї' - 192: 31, # 'А' - 193: 32, # 'Б' - 194: 35, # 'В' - 195: 43, # 'Г' - 196: 37, # 'Д' - 197: 44, # 'Е' - 198: 55, # 'Ж' - 199: 47, # 'З' - 200: 40, # 'И' - 201: 59, # 'Й' - 202: 33, # 'К' - 203: 46, # 'Л' - 204: 38, # 'М' - 205: 36, # 'Н' - 206: 41, # 'О' - 207: 30, # 'П' - 208: 39, # 'Р' - 209: 28, # 'С' - 210: 34, # 'Т' - 211: 51, # 'У' - 212: 48, # 'Ф' - 213: 49, # 'Х' - 214: 53, # 'Ц' - 215: 50, # 'Ч' - 216: 54, # 'Ш' - 217: 57, # 'Щ' - 218: 61, # 'Ъ' - 219: 251, # 'Ы' - 220: 67, # 'Ь' - 221: 252, # 'Э' - 222: 60, # 'Ю' - 223: 56, # 'Я' - 224: 1, # 'а' - 225: 18, # 'б' - 226: 9, # 'в' - 227: 20, # 'г' - 228: 11, # 'д' - 229: 3, # 'е' - 230: 23, # 'ж' - 231: 15, # 'з' - 232: 2, # 'и' - 233: 26, # 'й' - 234: 12, # 'к' - 235: 10, # 'л' - 236: 14, # 'м' - 237: 6, # 'н' - 238: 4, # 'о' - 239: 13, # 'п' - 240: 7, # 'р' - 241: 8, # 'с' - 242: 5, # 'т' - 243: 19, # 'у' - 244: 29, # 'ф' - 245: 25, # 'х' - 246: 22, # 'ц' - 247: 21, # 'ч' - 248: 27, # 'ш' - 249: 24, # 'щ' - 250: 17, # 'ъ' - 251: 75, # 'ы' - 252: 52, # 'ь' - 253: 253, # 'э' - 254: 42, # 'ю' - 255: 16, # 'я' -} - -WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel( - charset_name="windows-1251", - language="Bulgarian", - char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, - language_model=BULGARIAN_LANG_MODEL, - typical_positive_ratio=0.969392, - keep_ascii_letters=False, - alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py deleted file mode 100644 index cfb8639..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py +++ /dev/null @@ -1,4397 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -GREEK_LANG_MODEL = { - 60: { # 'e' - 60: 2, # 'e' - 55: 1, # 'o' - 58: 2, # 't' - 36: 1, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 55: { # 'o' - 60: 0, # 'e' - 55: 2, # 'o' - 58: 2, # 't' - 36: 1, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 1, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 1, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 58: { # 't' - 60: 2, # 'e' - 55: 1, # 'o' - 58: 1, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 1, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 36: { # '·' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 61: { # 'Ά' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 1, # 'γ' - 21: 2, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 1, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 46: { # 'Έ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 2, # 'β' - 20: 2, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 2, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 0, # 'ο' - 9: 2, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 1, # 'σ' - 2: 2, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 54: { # 'Ό' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 2, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 2, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 2, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 31: { # 'Α' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 2, # 'Β' - 43: 2, # 'Γ' - 41: 1, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 2, # 'Θ' - 47: 2, # 'Ι' - 44: 2, # 'Κ' - 53: 2, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 1, # 'Ξ' - 39: 0, # 'Ο' - 35: 2, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 2, # 'Υ' - 56: 2, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 2, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 1, # 'θ' - 5: 0, # 'ι' - 11: 2, # 'κ' - 16: 3, # 'λ' - 10: 2, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 2, # 'ς' - 7: 2, # 'σ' - 2: 0, # 'τ' - 12: 3, # 'υ' - 28: 2, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 51: { # 'Β' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 1, # 'Ε' - 40: 1, # 'Η' - 52: 0, # 'Θ' - 47: 1, # 'Ι' - 44: 0, # 'Κ' - 53: 1, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 2, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 43: { # 'Γ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 1, # 'Α' - 51: 0, # 'Β' - 43: 2, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 1, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 1, # 'Κ' - 53: 1, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 1, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 2, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 2, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 41: { # 'Δ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 2, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 2, # 'ή' - 15: 2, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 1, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 34: { # 'Ε' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 2, # 'Γ' - 41: 2, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 2, # 'Κ' - 53: 2, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 1, # 'Ξ' - 39: 0, # 'Ο' - 35: 2, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 2, # 'Υ' - 56: 0, # 'Φ' - 50: 2, # 'Χ' - 57: 2, # 'Ω' - 17: 3, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 3, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 1, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 1, # 'θ' - 5: 2, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 2, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 2, # 'σ' - 2: 2, # 'τ' - 12: 2, # 'υ' - 28: 2, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 1, # 'ύ' - 27: 0, # 'ώ' - }, - 40: { # 'Η' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 1, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 2, # 'Θ' - 47: 0, # 'Ι' - 44: 2, # 'Κ' - 53: 0, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 2, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 1, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 1, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 1, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 52: { # 'Θ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 1, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 1, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 47: { # 'Ι' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 1, # 'Β' - 43: 1, # 'Γ' - 41: 2, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 2, # 'Κ' - 53: 2, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 0, # 'Υ' - 56: 2, # 'Φ' - 50: 0, # 'Χ' - 57: 2, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 2, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 1, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 2, # 'σ' - 2: 1, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 1, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 44: { # 'Κ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 1, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 1, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 1, # 'Τ' - 45: 2, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 1, # 'Ω' - 17: 3, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 2, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 53: { # 'Λ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 2, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 2, # 'Σ' - 33: 0, # 'Τ' - 45: 2, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 2, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 1, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 2, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 38: { # 'Μ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 2, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 2, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 2, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 2, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 3, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 2, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 49: { # 'Ν' - 60: 2, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 2, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 2, # 'Ω' - 17: 0, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 1, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 1, # 'ω' - 19: 2, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 59: { # 'Ξ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 1, # 'Ε' - 40: 1, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 1, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 39: { # 'Ο' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 1, # 'Β' - 43: 2, # 'Γ' - 41: 2, # 'Δ' - 34: 2, # 'Ε' - 40: 1, # 'Η' - 52: 2, # 'Θ' - 47: 2, # 'Ι' - 44: 2, # 'Κ' - 53: 2, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 2, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 2, # 'Υ' - 56: 2, # 'Φ' - 50: 2, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 2, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 2, # 'κ' - 16: 2, # 'λ' - 10: 2, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 2, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 2, # 'τ' - 12: 2, # 'υ' - 28: 1, # 'φ' - 23: 1, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 35: { # 'Π' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 2, # 'Λ' - 38: 1, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 1, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 2, # 'Ω' - 17: 2, # 'ά' - 18: 1, # 'έ' - 22: 1, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 2, # 'ό' - 26: 0, # 'ύ' - 27: 3, # 'ώ' - }, - 48: { # 'Ρ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 1, # 'Γ' - 41: 1, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 1, # 'Τ' - 45: 1, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 1, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 2, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 1, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 37: { # 'Σ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 1, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 2, # 'Κ' - 53: 0, # 'Λ' - 38: 2, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 2, # 'Υ' - 56: 0, # 'Φ' - 50: 2, # 'Χ' - 57: 2, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 2, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 2, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 2, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 2, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 33: { # 'Τ' - 60: 0, # 'e' - 55: 1, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 2, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 2, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 1, # 'Τ' - 45: 1, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 2, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 2, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 2, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 2, # 'ό' - 26: 2, # 'ύ' - 27: 3, # 'ώ' - }, - 45: { # 'Υ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 2, # 'Γ' - 41: 0, # 'Δ' - 34: 1, # 'Ε' - 40: 2, # 'Η' - 52: 2, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 1, # 'Λ' - 38: 2, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 2, # 'Π' - 48: 1, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 56: { # 'Φ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 1, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 1, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 2, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 2, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 1, # 'ύ' - 27: 1, # 'ώ' - }, - 50: { # 'Χ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 1, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 2, # 'Ε' - 40: 2, # 'Η' - 52: 0, # 'Θ' - 47: 2, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 1, # 'Ν' - 59: 0, # 'Ξ' - 39: 1, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 1, # 'Χ' - 57: 1, # 'Ω' - 17: 2, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 2, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 2, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 57: { # 'Ω' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 1, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 1, # 'Λ' - 38: 0, # 'Μ' - 49: 2, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 2, # 'Ρ' - 37: 2, # 'Σ' - 33: 2, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 2, # 'ρ' - 14: 2, # 'ς' - 7: 2, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 1, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 17: { # 'ά' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 3, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 2, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 3, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 18: { # 'έ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 3, # 'α' - 29: 2, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 3, # 'ε' - 32: 2, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 3, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 22: { # 'ή' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 1, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 2, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 15: { # 'ί' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 3, # 'α' - 29: 2, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 3, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 1, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 3, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 1: { # 'α' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 2, # 'έ' - 22: 0, # 'ή' - 15: 3, # 'ί' - 1: 0, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 2, # 'ε' - 32: 3, # 'ζ' - 13: 1, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 2, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 0, # 'ω' - 19: 2, # 'ό' - 26: 2, # 'ύ' - 27: 0, # 'ώ' - }, - 29: { # 'β' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 2, # 'έ' - 22: 3, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 2, # 'γ' - 21: 2, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 3, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 2, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 20: { # 'γ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 3, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 3, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 2, # 'ύ' - 27: 3, # 'ώ' - }, - 21: { # 'δ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 3: { # 'ε' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 3, # 'ί' - 1: 2, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 2, # 'ε' - 32: 2, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 2, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 3, # 'ω' - 19: 2, # 'ό' - 26: 3, # 'ύ' - 27: 2, # 'ώ' - }, - 32: { # 'ζ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 2, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 1, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 2, # 'ό' - 26: 0, # 'ύ' - 27: 2, # 'ώ' - }, - 13: { # 'η' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 0, # 'ο' - 9: 2, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 25: { # 'θ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 1, # 'λ' - 10: 3, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 5: { # 'ι' - 60: 0, # 'e' - 55: 1, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 1, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 0, # 'ί' - 1: 3, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 2, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 0, # 'ύ' - 27: 3, # 'ώ' - }, - 11: { # 'κ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 2, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 2, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 2, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 16: { # 'λ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 1, # 'β' - 20: 2, # 'γ' - 21: 1, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 2, # 'θ' - 5: 3, # 'ι' - 11: 2, # 'κ' - 16: 3, # 'λ' - 10: 2, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 2, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 10: { # 'μ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 1, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 3, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 2, # 'υ' - 28: 3, # 'φ' - 23: 0, # 'χ' - 42: 2, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 6: { # 'ν' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 2, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 1, # 'λ' - 10: 0, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 30: { # 'ξ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 2, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 2, # 'ό' - 26: 3, # 'ύ' - 27: 1, # 'ώ' - }, - 4: { # 'ο' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 2, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 2, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 2, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 2, # 'ω' - 19: 1, # 'ό' - 26: 3, # 'ύ' - 27: 2, # 'ώ' - }, - 9: { # 'π' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 3, # 'λ' - 10: 0, # 'μ' - 6: 2, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 2, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 2, # 'ύ' - 27: 3, # 'ώ' - }, - 8: { # 'ρ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 2, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 1, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 3, # 'ο' - 9: 2, # 'π' - 8: 2, # 'ρ' - 14: 0, # 'ς' - 7: 2, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 14: { # 'ς' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 2, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 0, # 'θ' - 5: 0, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 0, # 'τ' - 12: 0, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 7: { # 'σ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 3, # 'β' - 20: 0, # 'γ' - 21: 2, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 3, # 'θ' - 5: 3, # 'ι' - 11: 3, # 'κ' - 16: 2, # 'λ' - 10: 3, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 3, # 'φ' - 23: 3, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 2, # 'ώ' - }, - 2: { # 'τ' - 60: 0, # 'e' - 55: 2, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 2, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 3, # 'ι' - 11: 2, # 'κ' - 16: 2, # 'λ' - 10: 3, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 2, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 12: { # 'υ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 3, # 'ή' - 15: 2, # 'ί' - 1: 3, # 'α' - 29: 2, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 2, # 'ε' - 32: 2, # 'ζ' - 13: 2, # 'η' - 25: 3, # 'θ' - 5: 2, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 3, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 2, # 'ω' - 19: 2, # 'ό' - 26: 0, # 'ύ' - 27: 2, # 'ώ' - }, - 28: { # 'φ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 3, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 2, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 0, # 'μ' - 6: 1, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 1, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 2, # 'ύ' - 27: 2, # 'ώ' - }, - 23: { # 'χ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 3, # 'ά' - 18: 2, # 'έ' - 22: 3, # 'ή' - 15: 3, # 'ί' - 1: 3, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 2, # 'θ' - 5: 3, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 2, # 'μ' - 6: 3, # 'ν' - 30: 0, # 'ξ' - 4: 3, # 'ο' - 9: 0, # 'π' - 8: 3, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 3, # 'τ' - 12: 3, # 'υ' - 28: 0, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 3, # 'ω' - 19: 3, # 'ό' - 26: 3, # 'ύ' - 27: 3, # 'ώ' - }, - 42: { # 'ψ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 2, # 'ά' - 18: 2, # 'έ' - 22: 1, # 'ή' - 15: 2, # 'ί' - 1: 2, # 'α' - 29: 0, # 'β' - 20: 0, # 'γ' - 21: 0, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 3, # 'η' - 25: 0, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 0, # 'λ' - 10: 0, # 'μ' - 6: 0, # 'ν' - 30: 0, # 'ξ' - 4: 2, # 'ο' - 9: 0, # 'π' - 8: 0, # 'ρ' - 14: 0, # 'ς' - 7: 0, # 'σ' - 2: 2, # 'τ' - 12: 1, # 'υ' - 28: 0, # 'φ' - 23: 0, # 'χ' - 42: 0, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 24: { # 'ω' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 1, # 'ά' - 18: 0, # 'έ' - 22: 2, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 2, # 'β' - 20: 3, # 'γ' - 21: 2, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 0, # 'η' - 25: 3, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 0, # 'ξ' - 4: 0, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 2, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 19: { # 'ό' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 3, # 'β' - 20: 3, # 'γ' - 21: 3, # 'δ' - 3: 1, # 'ε' - 32: 2, # 'ζ' - 13: 2, # 'η' - 25: 2, # 'θ' - 5: 2, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 1, # 'ξ' - 4: 2, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 3, # 'χ' - 42: 2, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 26: { # 'ύ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 2, # 'α' - 29: 2, # 'β' - 20: 2, # 'γ' - 21: 1, # 'δ' - 3: 3, # 'ε' - 32: 0, # 'ζ' - 13: 2, # 'η' - 25: 3, # 'θ' - 5: 0, # 'ι' - 11: 3, # 'κ' - 16: 3, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 2, # 'ξ' - 4: 3, # 'ο' - 9: 3, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 2, # 'φ' - 23: 2, # 'χ' - 42: 2, # 'ψ' - 24: 2, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, - 27: { # 'ώ' - 60: 0, # 'e' - 55: 0, # 'o' - 58: 0, # 't' - 36: 0, # '·' - 61: 0, # 'Ά' - 46: 0, # 'Έ' - 54: 0, # 'Ό' - 31: 0, # 'Α' - 51: 0, # 'Β' - 43: 0, # 'Γ' - 41: 0, # 'Δ' - 34: 0, # 'Ε' - 40: 0, # 'Η' - 52: 0, # 'Θ' - 47: 0, # 'Ι' - 44: 0, # 'Κ' - 53: 0, # 'Λ' - 38: 0, # 'Μ' - 49: 0, # 'Ν' - 59: 0, # 'Ξ' - 39: 0, # 'Ο' - 35: 0, # 'Π' - 48: 0, # 'Ρ' - 37: 0, # 'Σ' - 33: 0, # 'Τ' - 45: 0, # 'Υ' - 56: 0, # 'Φ' - 50: 0, # 'Χ' - 57: 0, # 'Ω' - 17: 0, # 'ά' - 18: 0, # 'έ' - 22: 0, # 'ή' - 15: 0, # 'ί' - 1: 0, # 'α' - 29: 1, # 'β' - 20: 0, # 'γ' - 21: 3, # 'δ' - 3: 0, # 'ε' - 32: 0, # 'ζ' - 13: 1, # 'η' - 25: 2, # 'θ' - 5: 2, # 'ι' - 11: 0, # 'κ' - 16: 2, # 'λ' - 10: 3, # 'μ' - 6: 3, # 'ν' - 30: 1, # 'ξ' - 4: 0, # 'ο' - 9: 2, # 'π' - 8: 3, # 'ρ' - 14: 3, # 'ς' - 7: 3, # 'σ' - 2: 3, # 'τ' - 12: 0, # 'υ' - 28: 1, # 'φ' - 23: 1, # 'χ' - 42: 0, # 'ψ' - 24: 0, # 'ω' - 19: 0, # 'ό' - 26: 0, # 'ύ' - 27: 0, # 'ώ' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -WINDOWS_1253_GREEK_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 82, # 'A' - 66: 100, # 'B' - 67: 104, # 'C' - 68: 94, # 'D' - 69: 98, # 'E' - 70: 101, # 'F' - 71: 116, # 'G' - 72: 102, # 'H' - 73: 111, # 'I' - 74: 187, # 'J' - 75: 117, # 'K' - 76: 92, # 'L' - 77: 88, # 'M' - 78: 113, # 'N' - 79: 85, # 'O' - 80: 79, # 'P' - 81: 118, # 'Q' - 82: 105, # 'R' - 83: 83, # 'S' - 84: 67, # 'T' - 85: 114, # 'U' - 86: 119, # 'V' - 87: 95, # 'W' - 88: 99, # 'X' - 89: 109, # 'Y' - 90: 188, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 72, # 'a' - 98: 70, # 'b' - 99: 80, # 'c' - 100: 81, # 'd' - 101: 60, # 'e' - 102: 96, # 'f' - 103: 93, # 'g' - 104: 89, # 'h' - 105: 68, # 'i' - 106: 120, # 'j' - 107: 97, # 'k' - 108: 77, # 'l' - 109: 86, # 'm' - 110: 69, # 'n' - 111: 55, # 'o' - 112: 78, # 'p' - 113: 115, # 'q' - 114: 65, # 'r' - 115: 66, # 's' - 116: 58, # 't' - 117: 76, # 'u' - 118: 106, # 'v' - 119: 103, # 'w' - 120: 87, # 'x' - 121: 107, # 'y' - 122: 112, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 255, # '€' - 129: 255, # None - 130: 255, # '‚' - 131: 255, # 'ƒ' - 132: 255, # '„' - 133: 255, # '…' - 134: 255, # '†' - 135: 255, # '‡' - 136: 255, # None - 137: 255, # '‰' - 138: 255, # None - 139: 255, # '‹' - 140: 255, # None - 141: 255, # None - 142: 255, # None - 143: 255, # None - 144: 255, # None - 145: 255, # '‘' - 146: 255, # '’' - 147: 255, # '“' - 148: 255, # '”' - 149: 255, # '•' - 150: 255, # '–' - 151: 255, # '—' - 152: 255, # None - 153: 255, # '™' - 154: 255, # None - 155: 255, # '›' - 156: 255, # None - 157: 255, # None - 158: 255, # None - 159: 255, # None - 160: 253, # '\xa0' - 161: 233, # '΅' - 162: 61, # 'Ά' - 163: 253, # '£' - 164: 253, # '¤' - 165: 253, # '¥' - 166: 253, # '¦' - 167: 253, # '§' - 168: 253, # '¨' - 169: 253, # '©' - 170: 253, # None - 171: 253, # '«' - 172: 253, # '¬' - 173: 74, # '\xad' - 174: 253, # '®' - 175: 253, # '―' - 176: 253, # '°' - 177: 253, # '±' - 178: 253, # '²' - 179: 253, # '³' - 180: 247, # '΄' - 181: 253, # 'µ' - 182: 253, # '¶' - 183: 36, # '·' - 184: 46, # 'Έ' - 185: 71, # 'Ή' - 186: 73, # 'Ί' - 187: 253, # '»' - 188: 54, # 'Ό' - 189: 253, # '½' - 190: 108, # 'Ύ' - 191: 123, # 'Ώ' - 192: 110, # 'ΐ' - 193: 31, # 'Α' - 194: 51, # 'Β' - 195: 43, # 'Γ' - 196: 41, # 'Δ' - 197: 34, # 'Ε' - 198: 91, # 'Ζ' - 199: 40, # 'Η' - 200: 52, # 'Θ' - 201: 47, # 'Ι' - 202: 44, # 'Κ' - 203: 53, # 'Λ' - 204: 38, # 'Μ' - 205: 49, # 'Ν' - 206: 59, # 'Ξ' - 207: 39, # 'Ο' - 208: 35, # 'Π' - 209: 48, # 'Ρ' - 210: 250, # None - 211: 37, # 'Σ' - 212: 33, # 'Τ' - 213: 45, # 'Υ' - 214: 56, # 'Φ' - 215: 50, # 'Χ' - 216: 84, # 'Ψ' - 217: 57, # 'Ω' - 218: 120, # 'Ϊ' - 219: 121, # 'Ϋ' - 220: 17, # 'ά' - 221: 18, # 'έ' - 222: 22, # 'ή' - 223: 15, # 'ί' - 224: 124, # 'ΰ' - 225: 1, # 'α' - 226: 29, # 'β' - 227: 20, # 'γ' - 228: 21, # 'δ' - 229: 3, # 'ε' - 230: 32, # 'ζ' - 231: 13, # 'η' - 232: 25, # 'θ' - 233: 5, # 'ι' - 234: 11, # 'κ' - 235: 16, # 'λ' - 236: 10, # 'μ' - 237: 6, # 'ν' - 238: 30, # 'ξ' - 239: 4, # 'ο' - 240: 9, # 'π' - 241: 8, # 'ρ' - 242: 14, # 'ς' - 243: 7, # 'σ' - 244: 2, # 'τ' - 245: 12, # 'υ' - 246: 28, # 'φ' - 247: 23, # 'χ' - 248: 42, # 'ψ' - 249: 24, # 'ω' - 250: 64, # 'ϊ' - 251: 75, # 'ϋ' - 252: 19, # 'ό' - 253: 26, # 'ύ' - 254: 27, # 'ώ' - 255: 253, # None -} - -WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel( - charset_name="windows-1253", - language="Greek", - char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, - language_model=GREEK_LANG_MODEL, - typical_positive_ratio=0.982851, - keep_ascii_letters=False, - alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", -) - -ISO_8859_7_GREEK_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 82, # 'A' - 66: 100, # 'B' - 67: 104, # 'C' - 68: 94, # 'D' - 69: 98, # 'E' - 70: 101, # 'F' - 71: 116, # 'G' - 72: 102, # 'H' - 73: 111, # 'I' - 74: 187, # 'J' - 75: 117, # 'K' - 76: 92, # 'L' - 77: 88, # 'M' - 78: 113, # 'N' - 79: 85, # 'O' - 80: 79, # 'P' - 81: 118, # 'Q' - 82: 105, # 'R' - 83: 83, # 'S' - 84: 67, # 'T' - 85: 114, # 'U' - 86: 119, # 'V' - 87: 95, # 'W' - 88: 99, # 'X' - 89: 109, # 'Y' - 90: 188, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 72, # 'a' - 98: 70, # 'b' - 99: 80, # 'c' - 100: 81, # 'd' - 101: 60, # 'e' - 102: 96, # 'f' - 103: 93, # 'g' - 104: 89, # 'h' - 105: 68, # 'i' - 106: 120, # 'j' - 107: 97, # 'k' - 108: 77, # 'l' - 109: 86, # 'm' - 110: 69, # 'n' - 111: 55, # 'o' - 112: 78, # 'p' - 113: 115, # 'q' - 114: 65, # 'r' - 115: 66, # 's' - 116: 58, # 't' - 117: 76, # 'u' - 118: 106, # 'v' - 119: 103, # 'w' - 120: 87, # 'x' - 121: 107, # 'y' - 122: 112, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 255, # '\x80' - 129: 255, # '\x81' - 130: 255, # '\x82' - 131: 255, # '\x83' - 132: 255, # '\x84' - 133: 255, # '\x85' - 134: 255, # '\x86' - 135: 255, # '\x87' - 136: 255, # '\x88' - 137: 255, # '\x89' - 138: 255, # '\x8a' - 139: 255, # '\x8b' - 140: 255, # '\x8c' - 141: 255, # '\x8d' - 142: 255, # '\x8e' - 143: 255, # '\x8f' - 144: 255, # '\x90' - 145: 255, # '\x91' - 146: 255, # '\x92' - 147: 255, # '\x93' - 148: 255, # '\x94' - 149: 255, # '\x95' - 150: 255, # '\x96' - 151: 255, # '\x97' - 152: 255, # '\x98' - 153: 255, # '\x99' - 154: 255, # '\x9a' - 155: 255, # '\x9b' - 156: 255, # '\x9c' - 157: 255, # '\x9d' - 158: 255, # '\x9e' - 159: 255, # '\x9f' - 160: 253, # '\xa0' - 161: 233, # '‘' - 162: 90, # '’' - 163: 253, # '£' - 164: 253, # '€' - 165: 253, # '₯' - 166: 253, # '¦' - 167: 253, # '§' - 168: 253, # '¨' - 169: 253, # '©' - 170: 253, # 'ͺ' - 171: 253, # '«' - 172: 253, # '¬' - 173: 74, # '\xad' - 174: 253, # None - 175: 253, # '―' - 176: 253, # '°' - 177: 253, # '±' - 178: 253, # '²' - 179: 253, # '³' - 180: 247, # '΄' - 181: 248, # '΅' - 182: 61, # 'Ά' - 183: 36, # '·' - 184: 46, # 'Έ' - 185: 71, # 'Ή' - 186: 73, # 'Ί' - 187: 253, # '»' - 188: 54, # 'Ό' - 189: 253, # '½' - 190: 108, # 'Ύ' - 191: 123, # 'Ώ' - 192: 110, # 'ΐ' - 193: 31, # 'Α' - 194: 51, # 'Β' - 195: 43, # 'Γ' - 196: 41, # 'Δ' - 197: 34, # 'Ε' - 198: 91, # 'Ζ' - 199: 40, # 'Η' - 200: 52, # 'Θ' - 201: 47, # 'Ι' - 202: 44, # 'Κ' - 203: 53, # 'Λ' - 204: 38, # 'Μ' - 205: 49, # 'Ν' - 206: 59, # 'Ξ' - 207: 39, # 'Ο' - 208: 35, # 'Π' - 209: 48, # 'Ρ' - 210: 250, # None - 211: 37, # 'Σ' - 212: 33, # 'Τ' - 213: 45, # 'Υ' - 214: 56, # 'Φ' - 215: 50, # 'Χ' - 216: 84, # 'Ψ' - 217: 57, # 'Ω' - 218: 120, # 'Ϊ' - 219: 121, # 'Ϋ' - 220: 17, # 'ά' - 221: 18, # 'έ' - 222: 22, # 'ή' - 223: 15, # 'ί' - 224: 124, # 'ΰ' - 225: 1, # 'α' - 226: 29, # 'β' - 227: 20, # 'γ' - 228: 21, # 'δ' - 229: 3, # 'ε' - 230: 32, # 'ζ' - 231: 13, # 'η' - 232: 25, # 'θ' - 233: 5, # 'ι' - 234: 11, # 'κ' - 235: 16, # 'λ' - 236: 10, # 'μ' - 237: 6, # 'ν' - 238: 30, # 'ξ' - 239: 4, # 'ο' - 240: 9, # 'π' - 241: 8, # 'ρ' - 242: 14, # 'ς' - 243: 7, # 'σ' - 244: 2, # 'τ' - 245: 12, # 'υ' - 246: 28, # 'φ' - 247: 23, # 'χ' - 248: 42, # 'ψ' - 249: 24, # 'ω' - 250: 64, # 'ϊ' - 251: 75, # 'ϋ' - 252: 19, # 'ό' - 253: 26, # 'ύ' - 254: 27, # 'ώ' - 255: 253, # None -} - -ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel( - charset_name="ISO-8859-7", - language="Greek", - char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, - language_model=GREEK_LANG_MODEL, - typical_positive_ratio=0.982851, - keep_ascii_letters=False, - alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py deleted file mode 100644 index 56d2975..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py +++ /dev/null @@ -1,4380 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -HEBREW_LANG_MODEL = { - 50: { # 'a' - 50: 0, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 2, # 'l' - 54: 2, # 'n' - 49: 0, # 'o' - 51: 2, # 'r' - 43: 1, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 1, # 'ק' - 7: 0, # 'ר' - 10: 1, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 60: { # 'c' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 0, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 0, # 'n' - 49: 1, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 61: { # 'd' - 50: 1, # 'a' - 60: 0, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 2, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 0, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 1, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 42: { # 'e' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 2, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 2, # 'l' - 54: 2, # 'n' - 49: 1, # 'o' - 51: 2, # 'r' - 43: 2, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 1, # '–' - 52: 2, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 53: { # 'i' - 50: 1, # 'a' - 60: 2, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 0, # 'i' - 56: 1, # 'l' - 54: 2, # 'n' - 49: 2, # 'o' - 51: 1, # 'r' - 43: 2, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 56: { # 'l' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 2, # 'e' - 53: 2, # 'i' - 56: 2, # 'l' - 54: 1, # 'n' - 49: 1, # 'o' - 51: 0, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 54: { # 'n' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 1, # 'o' - 51: 0, # 'r' - 43: 1, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 2, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 49: { # 'o' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 2, # 'n' - 49: 1, # 'o' - 51: 2, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 51: { # 'r' - 50: 2, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 2, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 2, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 2, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 43: { # 's' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 0, # 'd' - 42: 2, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 1, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 2, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 44: { # 't' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 0, # 'd' - 42: 2, # 'e' - 53: 2, # 'i' - 56: 1, # 'l' - 54: 0, # 'n' - 49: 1, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 1, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 2, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 63: { # 'u' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 0, # 'o' - 51: 1, # 'r' - 43: 2, # 's' - 44: 1, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 34: { # '\xa0' - 50: 1, # 'a' - 60: 0, # 'c' - 61: 1, # 'd' - 42: 0, # 'e' - 53: 1, # 'i' - 56: 0, # 'l' - 54: 1, # 'n' - 49: 1, # 'o' - 51: 0, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 0, # 'u' - 34: 2, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 1, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 2, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 2, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 1, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 55: { # '´' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 1, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 2, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 1, # 'ן' - 12: 1, # 'נ' - 19: 1, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 48: { # '¼' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 39: { # '½' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 57: { # '¾' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 30: { # 'ְ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 1, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 1, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 2, # 'ג' - 16: 2, # 'ד' - 3: 2, # 'ה' - 2: 2, # 'ו' - 24: 2, # 'ז' - 14: 2, # 'ח' - 22: 2, # 'ט' - 1: 2, # 'י' - 25: 2, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 1, # 'ם' - 6: 2, # 'מ' - 23: 0, # 'ן' - 12: 2, # 'נ' - 19: 2, # 'ס' - 13: 2, # 'ע' - 26: 0, # 'ף' - 18: 2, # 'פ' - 27: 0, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 59: { # 'ֱ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 1, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 2, # 'ל' - 11: 0, # 'ם' - 6: 2, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 41: { # 'ֲ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 2, # 'ב' - 20: 1, # 'ג' - 16: 2, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 1, # 'י' - 25: 1, # 'ך' - 15: 1, # 'כ' - 4: 2, # 'ל' - 11: 0, # 'ם' - 6: 2, # 'מ' - 23: 0, # 'ן' - 12: 2, # 'נ' - 19: 1, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 2, # 'צ' - 17: 1, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 33: { # 'ִ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 1, # 'ִ' - 37: 0, # 'ֵ' - 36: 1, # 'ֶ' - 31: 0, # 'ַ' - 29: 1, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 1, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 2, # 'ב' - 20: 2, # 'ג' - 16: 2, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 2, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 2, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 2, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 37: { # 'ֵ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 1, # 'ֶ' - 31: 1, # 'ַ' - 29: 1, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 1, # 'ג' - 16: 2, # 'ד' - 3: 2, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 2, # 'ח' - 22: 1, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 1, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 1, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 1, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 1, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 36: { # 'ֶ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 1, # 'ֶ' - 31: 1, # 'ַ' - 29: 1, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 1, # 'ג' - 16: 2, # 'ד' - 3: 2, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 2, # 'ח' - 22: 1, # 'ט' - 1: 2, # 'י' - 25: 2, # 'ך' - 15: 1, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 2, # 'ס' - 13: 1, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 2, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 31: { # 'ַ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 1, # 'ֶ' - 31: 0, # 'ַ' - 29: 2, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 2, # 'ג' - 16: 2, # 'ד' - 3: 2, # 'ה' - 2: 1, # 'ו' - 24: 2, # 'ז' - 14: 2, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 2, # 'ס' - 13: 2, # 'ע' - 26: 2, # 'ף' - 18: 2, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 29: { # 'ָ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 1, # 'ַ' - 29: 2, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 1, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 2, # 'ג' - 16: 2, # 'ד' - 3: 3, # 'ה' - 2: 2, # 'ו' - 24: 2, # 'ז' - 14: 2, # 'ח' - 22: 1, # 'ט' - 1: 2, # 'י' - 25: 2, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 1, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 2, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 35: { # 'ֹ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 1, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 1, # 'ג' - 16: 2, # 'ד' - 3: 2, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 1, # 'י' - 25: 1, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 2, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 2, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 62: { # 'ֻ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 1, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 2, # 'ל' - 11: 1, # 'ם' - 6: 1, # 'מ' - 23: 1, # 'ן' - 12: 1, # 'נ' - 19: 1, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 28: { # 'ּ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 3, # 'ְ' - 59: 0, # 'ֱ' - 41: 1, # 'ֲ' - 33: 3, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 3, # 'ַ' - 29: 3, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 2, # 'ׁ' - 45: 1, # 'ׂ' - 9: 2, # 'א' - 8: 2, # 'ב' - 20: 1, # 'ג' - 16: 2, # 'ד' - 3: 1, # 'ה' - 2: 2, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 2, # 'י' - 25: 2, # 'ך' - 15: 2, # 'כ' - 4: 2, # 'ל' - 11: 1, # 'ם' - 6: 2, # 'מ' - 23: 1, # 'ן' - 12: 2, # 'נ' - 19: 1, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 1, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 2, # 'ר' - 10: 2, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 38: { # 'ׁ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 2, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 45: { # 'ׂ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 1, # 'ֵ' - 36: 2, # 'ֶ' - 31: 1, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 1, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 2, # 'ו' - 24: 0, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 1, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 0, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 0, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 9: { # 'א' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 2, # 'ֱ' - 41: 2, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 2, # 'ע' - 26: 3, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 8: { # 'ב' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 1, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 3, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 1, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 20: { # 'ג' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 2, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 1, # 'ִ' - 37: 1, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 0, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 3, # 'ב' - 20: 2, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 2, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 1, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 2, # 'פ' - 27: 1, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 16: { # 'ד' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 1, # 'ז' - 14: 2, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 2, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 0, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 3: { # 'ה' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 1, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 1, # 'ֱ' - 41: 2, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 3, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 0, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 2: { # 'ו' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 1, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 1, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 3, # 'ֹ' - 62: 0, # 'ֻ' - 28: 3, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 3, # 'ף' - 18: 3, # 'פ' - 27: 3, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 24: { # 'ז' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 1, # 'ֲ' - 33: 1, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 2, # 'ב' - 20: 2, # 'ג' - 16: 2, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 2, # 'ח' - 22: 1, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 2, # 'נ' - 19: 1, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 1, # 'ש' - 5: 2, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 14: { # 'ח' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 1, # 'ֱ' - 41: 2, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 3, # 'ב' - 20: 2, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 2, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 2, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 1, # 'ע' - 26: 2, # 'ף' - 18: 2, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 22: { # 'ט' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 1, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 1, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 1, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 1, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 3, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 2, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 3, # 'ר' - 10: 2, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 1: { # 'י' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 3, # 'ף' - 18: 3, # 'פ' - 27: 3, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 25: { # 'ך' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 2, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 1, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 1, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 15: { # 'כ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 3, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 2, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 2, # 'ע' - 26: 3, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 2, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 4: { # 'ל' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 3, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 11: { # 'ם' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 1, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 0, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 1, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 6: { # 'מ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 0, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 23: { # 'ן' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 1, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 1, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 1, # 'ס' - 13: 1, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 1, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 12: { # 'נ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 19: { # 'ס' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 1, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 1, # 'ָ' - 35: 1, # 'ֹ' - 62: 2, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 1, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 3, # 'ף' - 18: 3, # 'פ' - 27: 0, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 1, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 13: { # 'ע' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 1, # 'ֱ' - 41: 2, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 1, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 2, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 2, # 'ע' - 26: 1, # 'ף' - 18: 2, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 26: { # 'ף' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 1, # 'ס' - 13: 0, # 'ע' - 26: 1, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 18: { # 'פ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 1, # 'ֵ' - 36: 2, # 'ֶ' - 31: 1, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 2, # 'ב' - 20: 3, # 'ג' - 16: 2, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 2, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 2, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 27: { # 'ץ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 1, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 0, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 21: { # 'צ' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 2, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 1, # 'ז' - 14: 3, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 1, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 1, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 0, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 17: { # 'ק' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 1, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 1, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 2, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 1, # 'ך' - 15: 1, # 'כ' - 4: 3, # 'ל' - 11: 2, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 2, # 'ץ' - 21: 3, # 'צ' - 17: 2, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 7: { # 'ר' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 2, # '´' - 48: 1, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 1, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 2, # 'ֹ' - 62: 1, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 3, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 3, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 3, # 'ץ' - 21: 3, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 10: { # 'ש' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 1, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 1, # 'ִ' - 37: 1, # 'ֵ' - 36: 1, # 'ֶ' - 31: 1, # 'ַ' - 29: 1, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 3, # 'ׁ' - 45: 2, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 3, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 3, # 'ח' - 22: 3, # 'ט' - 1: 3, # 'י' - 25: 3, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 2, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 1, # '…' - }, - 5: { # 'ת' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 1, # '\xa0' - 55: 0, # '´' - 48: 1, # '¼' - 39: 1, # '½' - 57: 0, # '¾' - 30: 2, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 2, # 'ִ' - 37: 2, # 'ֵ' - 36: 2, # 'ֶ' - 31: 2, # 'ַ' - 29: 2, # 'ָ' - 35: 1, # 'ֹ' - 62: 1, # 'ֻ' - 28: 2, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 3, # 'א' - 8: 3, # 'ב' - 20: 3, # 'ג' - 16: 2, # 'ד' - 3: 3, # 'ה' - 2: 3, # 'ו' - 24: 2, # 'ז' - 14: 3, # 'ח' - 22: 2, # 'ט' - 1: 3, # 'י' - 25: 2, # 'ך' - 15: 3, # 'כ' - 4: 3, # 'ל' - 11: 3, # 'ם' - 6: 3, # 'מ' - 23: 3, # 'ן' - 12: 3, # 'נ' - 19: 2, # 'ס' - 13: 3, # 'ע' - 26: 2, # 'ף' - 18: 3, # 'פ' - 27: 1, # 'ץ' - 21: 2, # 'צ' - 17: 3, # 'ק' - 7: 3, # 'ר' - 10: 3, # 'ש' - 5: 3, # 'ת' - 32: 1, # '–' - 52: 1, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, - 32: { # '–' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 1, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 1, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 1, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 1, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 52: { # '’' - 50: 1, # 'a' - 60: 0, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 1, # 'r' - 43: 2, # 's' - 44: 2, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 1, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 47: { # '“' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 1, # 'l' - 54: 1, # 'n' - 49: 1, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 1, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 2, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 1, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 1, # 'ח' - 22: 1, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 1, # 'ס' - 13: 1, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 1, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 46: { # '”' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 1, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 1, # 'ב' - 20: 1, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 1, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 0, # '†' - 40: 0, # '…' - }, - 58: { # '†' - 50: 0, # 'a' - 60: 0, # 'c' - 61: 0, # 'd' - 42: 0, # 'e' - 53: 0, # 'i' - 56: 0, # 'l' - 54: 0, # 'n' - 49: 0, # 'o' - 51: 0, # 'r' - 43: 0, # 's' - 44: 0, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 0, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 0, # 'ה' - 2: 0, # 'ו' - 24: 0, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 0, # 'י' - 25: 0, # 'ך' - 15: 0, # 'כ' - 4: 0, # 'ל' - 11: 0, # 'ם' - 6: 0, # 'מ' - 23: 0, # 'ן' - 12: 0, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 0, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 0, # 'ר' - 10: 0, # 'ש' - 5: 0, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 0, # '”' - 58: 2, # '†' - 40: 0, # '…' - }, - 40: { # '…' - 50: 1, # 'a' - 60: 1, # 'c' - 61: 1, # 'd' - 42: 1, # 'e' - 53: 1, # 'i' - 56: 0, # 'l' - 54: 1, # 'n' - 49: 0, # 'o' - 51: 1, # 'r' - 43: 1, # 's' - 44: 1, # 't' - 63: 0, # 'u' - 34: 0, # '\xa0' - 55: 0, # '´' - 48: 0, # '¼' - 39: 0, # '½' - 57: 0, # '¾' - 30: 0, # 'ְ' - 59: 0, # 'ֱ' - 41: 0, # 'ֲ' - 33: 0, # 'ִ' - 37: 0, # 'ֵ' - 36: 0, # 'ֶ' - 31: 0, # 'ַ' - 29: 0, # 'ָ' - 35: 0, # 'ֹ' - 62: 0, # 'ֻ' - 28: 0, # 'ּ' - 38: 0, # 'ׁ' - 45: 0, # 'ׂ' - 9: 1, # 'א' - 8: 0, # 'ב' - 20: 0, # 'ג' - 16: 0, # 'ד' - 3: 1, # 'ה' - 2: 1, # 'ו' - 24: 1, # 'ז' - 14: 0, # 'ח' - 22: 0, # 'ט' - 1: 1, # 'י' - 25: 0, # 'ך' - 15: 1, # 'כ' - 4: 1, # 'ל' - 11: 0, # 'ם' - 6: 1, # 'מ' - 23: 0, # 'ן' - 12: 1, # 'נ' - 19: 0, # 'ס' - 13: 0, # 'ע' - 26: 0, # 'ף' - 18: 1, # 'פ' - 27: 0, # 'ץ' - 21: 0, # 'צ' - 17: 0, # 'ק' - 7: 1, # 'ר' - 10: 1, # 'ש' - 5: 1, # 'ת' - 32: 0, # '–' - 52: 0, # '’' - 47: 0, # '“' - 46: 1, # '”' - 58: 0, # '†' - 40: 2, # '…' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 69, # 'A' - 66: 91, # 'B' - 67: 79, # 'C' - 68: 80, # 'D' - 69: 92, # 'E' - 70: 89, # 'F' - 71: 97, # 'G' - 72: 90, # 'H' - 73: 68, # 'I' - 74: 111, # 'J' - 75: 112, # 'K' - 76: 82, # 'L' - 77: 73, # 'M' - 78: 95, # 'N' - 79: 85, # 'O' - 80: 78, # 'P' - 81: 121, # 'Q' - 82: 86, # 'R' - 83: 71, # 'S' - 84: 67, # 'T' - 85: 102, # 'U' - 86: 107, # 'V' - 87: 84, # 'W' - 88: 114, # 'X' - 89: 103, # 'Y' - 90: 115, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 50, # 'a' - 98: 74, # 'b' - 99: 60, # 'c' - 100: 61, # 'd' - 101: 42, # 'e' - 102: 76, # 'f' - 103: 70, # 'g' - 104: 64, # 'h' - 105: 53, # 'i' - 106: 105, # 'j' - 107: 93, # 'k' - 108: 56, # 'l' - 109: 65, # 'm' - 110: 54, # 'n' - 111: 49, # 'o' - 112: 66, # 'p' - 113: 110, # 'q' - 114: 51, # 'r' - 115: 43, # 's' - 116: 44, # 't' - 117: 63, # 'u' - 118: 81, # 'v' - 119: 77, # 'w' - 120: 98, # 'x' - 121: 75, # 'y' - 122: 108, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 124, # '€' - 129: 202, # None - 130: 203, # '‚' - 131: 204, # 'ƒ' - 132: 205, # '„' - 133: 40, # '…' - 134: 58, # '†' - 135: 206, # '‡' - 136: 207, # 'ˆ' - 137: 208, # '‰' - 138: 209, # None - 139: 210, # '‹' - 140: 211, # None - 141: 212, # None - 142: 213, # None - 143: 214, # None - 144: 215, # None - 145: 83, # '‘' - 146: 52, # '’' - 147: 47, # '“' - 148: 46, # '”' - 149: 72, # '•' - 150: 32, # '–' - 151: 94, # '—' - 152: 216, # '˜' - 153: 113, # '™' - 154: 217, # None - 155: 109, # '›' - 156: 218, # None - 157: 219, # None - 158: 220, # None - 159: 221, # None - 160: 34, # '\xa0' - 161: 116, # '¡' - 162: 222, # '¢' - 163: 118, # '£' - 164: 100, # '₪' - 165: 223, # '¥' - 166: 224, # '¦' - 167: 117, # '§' - 168: 119, # '¨' - 169: 104, # '©' - 170: 125, # '×' - 171: 225, # '«' - 172: 226, # '¬' - 173: 87, # '\xad' - 174: 99, # '®' - 175: 227, # '¯' - 176: 106, # '°' - 177: 122, # '±' - 178: 123, # '²' - 179: 228, # '³' - 180: 55, # '´' - 181: 229, # 'µ' - 182: 230, # '¶' - 183: 101, # '·' - 184: 231, # '¸' - 185: 232, # '¹' - 186: 120, # '÷' - 187: 233, # '»' - 188: 48, # '¼' - 189: 39, # '½' - 190: 57, # '¾' - 191: 234, # '¿' - 192: 30, # 'ְ' - 193: 59, # 'ֱ' - 194: 41, # 'ֲ' - 195: 88, # 'ֳ' - 196: 33, # 'ִ' - 197: 37, # 'ֵ' - 198: 36, # 'ֶ' - 199: 31, # 'ַ' - 200: 29, # 'ָ' - 201: 35, # 'ֹ' - 202: 235, # None - 203: 62, # 'ֻ' - 204: 28, # 'ּ' - 205: 236, # 'ֽ' - 206: 126, # '־' - 207: 237, # 'ֿ' - 208: 238, # '׀' - 209: 38, # 'ׁ' - 210: 45, # 'ׂ' - 211: 239, # '׃' - 212: 240, # 'װ' - 213: 241, # 'ױ' - 214: 242, # 'ײ' - 215: 243, # '׳' - 216: 127, # '״' - 217: 244, # None - 218: 245, # None - 219: 246, # None - 220: 247, # None - 221: 248, # None - 222: 249, # None - 223: 250, # None - 224: 9, # 'א' - 225: 8, # 'ב' - 226: 20, # 'ג' - 227: 16, # 'ד' - 228: 3, # 'ה' - 229: 2, # 'ו' - 230: 24, # 'ז' - 231: 14, # 'ח' - 232: 22, # 'ט' - 233: 1, # 'י' - 234: 25, # 'ך' - 235: 15, # 'כ' - 236: 4, # 'ל' - 237: 11, # 'ם' - 238: 6, # 'מ' - 239: 23, # 'ן' - 240: 12, # 'נ' - 241: 19, # 'ס' - 242: 13, # 'ע' - 243: 26, # 'ף' - 244: 18, # 'פ' - 245: 27, # 'ץ' - 246: 21, # 'צ' - 247: 17, # 'ק' - 248: 7, # 'ר' - 249: 10, # 'ש' - 250: 5, # 'ת' - 251: 251, # None - 252: 252, # None - 253: 128, # '\u200e' - 254: 96, # '\u200f' - 255: 253, # None -} - -WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel( - charset_name="windows-1255", - language="Hebrew", - char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, - language_model=HEBREW_LANG_MODEL, - typical_positive_ratio=0.984004, - keep_ascii_letters=False, - alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py deleted file mode 100644 index 09a0d32..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py +++ /dev/null @@ -1,4649 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -HUNGARIAN_LANG_MODEL = { - 28: { # 'A' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 2, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 2, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 2, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 2, # 'N' - 47: 1, # 'O' - 46: 2, # 'P' - 43: 2, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 2, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 2, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 2, # 'n' - 8: 0, # 'o' - 23: 2, # 'p' - 10: 2, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 1, # 'u' - 19: 1, # 'v' - 62: 1, # 'x' - 16: 0, # 'y' - 11: 3, # 'z' - 51: 1, # 'Á' - 44: 0, # 'É' - 61: 1, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 40: { # 'B' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 0, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 1, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 3, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 54: { # 'C' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 0, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 0, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 1, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 3, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 1, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 45: { # 'D' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 0, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 0, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 1, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 1, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 32: { # 'E' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 2, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 2, # 'K' - 41: 2, # 'L' - 34: 2, # 'M' - 35: 2, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 1, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 3, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 2, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 1, # 't' - 21: 2, # 'u' - 19: 1, # 'v' - 62: 1, # 'x' - 16: 0, # 'y' - 11: 3, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 0, # 'Ú' - 63: 1, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 50: { # 'F' - 28: 1, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 0, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 0, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 0, # 'V' - 55: 1, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 1, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 1, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 0, # 'Ú' - 63: 1, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 49: { # 'G' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 2, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 2, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 38: { # 'H' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 0, # 'D' - 32: 1, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 1, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 1, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 1, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 0, # 'V' - 55: 1, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 1, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 0, # 'n' - 8: 3, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 2, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 2, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 39: { # 'I' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 2, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 2, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 2, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 0, # 'e' - 27: 1, # 'f' - 12: 2, # 'g' - 20: 1, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 53: { # 'J' - 28: 2, # 'A' - 40: 0, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 1, # 'o' - 23: 0, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 2, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 0, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 36: { # 'K' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 0, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 1, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 3, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 2, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 41: { # 'L' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 1, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 34: { # 'M' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 0, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 3, # 'a' - 18: 0, # 'b' - 26: 1, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 3, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 3, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 1, # 'ű' - }, - 35: { # 'N' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 2, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 2, # 'Y' - 52: 1, # 'Z' - 2: 3, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 2, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 1, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 47: { # 'O' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 2, # 'K' - 41: 2, # 'L' - 34: 2, # 'M' - 35: 2, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 2, # 'k' - 6: 2, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 1, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 1, # 's' - 3: 2, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 1, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 1, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 46: { # 'P' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 0, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 1, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 1, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 0, # 'Ú' - 63: 1, # 'Ü' - 14: 3, # 'á' - 15: 2, # 'é' - 30: 0, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 0, # 'ű' - }, - 43: { # 'R' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 2, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 2, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 33: { # 'S' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 3, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 1, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 1, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 1, # 't' - 21: 1, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 37: { # 'T' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 1, # 'S' - 37: 2, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 2, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 1, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 0, # 't' - 21: 2, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 1, # 'z' - 51: 2, # 'Á' - 44: 2, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 57: { # 'U' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 1, # 'e' - 27: 0, # 'f' - 12: 2, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 1, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 48: { # 'V' - 28: 2, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 0, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 2, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 2, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 2, # 'o' - 23: 0, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 2, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 0, # 'Ú' - 63: 1, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 0, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 55: { # 'Y' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 1, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 2, # 'Z' - 2: 1, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 1, # 'd' - 1: 1, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 8: 1, # 'o' - 23: 1, # 'p' - 10: 0, # 'r' - 5: 0, # 's' - 3: 0, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 1, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 52: { # 'Z' - 28: 2, # 'A' - 40: 1, # 'B' - 54: 0, # 'C' - 45: 1, # 'D' - 32: 2, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 2, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 2, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 2, # 'S' - 37: 1, # 'T' - 57: 1, # 'U' - 48: 1, # 'V' - 55: 1, # 'Y' - 52: 1, # 'Z' - 2: 1, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 1, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 1, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 2, # 's' - 3: 0, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 2, # 'Á' - 44: 1, # 'É' - 61: 1, # 'Í' - 58: 1, # 'Ó' - 59: 1, # 'Ö' - 60: 1, # 'Ú' - 63: 1, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 2: { # 'a' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 2, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 2, # 'o' - 23: 3, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 1, # 'x' - 16: 2, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 18: { # 'b' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 2, # 'k' - 6: 2, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 2, # 's' - 3: 1, # 't' - 21: 3, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 3, # 'ó' - 24: 2, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 26: { # 'c' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 1, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 1, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 1, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 1, # 'j' - 7: 2, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 2, # 't' - 21: 2, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 2, # 'á' - 15: 2, # 'é' - 30: 2, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 17: { # 'd' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 2, # 'k' - 6: 1, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 2, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 1: { # 'e' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 2, # 'e' - 27: 3, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 2, # 'o' - 23: 3, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 2, # 'u' - 19: 3, # 'v' - 62: 2, # 'x' - 16: 2, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 27: { # 'f' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 3, # 'o' - 23: 0, # 'p' - 10: 3, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 2, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 0, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 3, # 'ö' - 31: 1, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 12: { # 'g' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 2, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 2, # 'k' - 6: 3, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 3, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 3, # 'ó' - 24: 2, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 20: { # 'h' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 0, # 'd' - 1: 3, # 'e' - 27: 0, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 3, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 2, # 's' - 3: 1, # 't' - 21: 3, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 2, # 'y' - 11: 0, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 2, # 'ó' - 24: 2, # 'ö' - 31: 2, # 'ú' - 29: 1, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 9: { # 'i' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 3, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 2, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 2, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 1, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 3, # 'ó' - 24: 1, # 'ö' - 31: 2, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 1, # 'ű' - }, - 22: { # 'j' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 1, # 'i' - 22: 2, # 'j' - 7: 2, # 'k' - 6: 2, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 1, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 3, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 7: { # 'k' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 1, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 2, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 2, # 'ó' - 24: 3, # 'ö' - 31: 1, # 'ú' - 29: 3, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 6: { # 'l' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 1, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 3, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 2, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 3, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 3, # 'ő' - 56: 1, # 'ű' - }, - 13: { # 'm' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 1, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 8: 3, # 'o' - 23: 3, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 3, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 2, # 'ó' - 24: 2, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 2, # 'ű' - }, - 4: { # 'n' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 2, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 2, # 'v' - 62: 1, # 'x' - 16: 3, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 2, # 'ó' - 24: 3, # 'ö' - 31: 2, # 'ú' - 29: 3, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 8: { # 'o' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 1, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 2, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 2, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 1, # 'o' - 23: 3, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 2, # 'u' - 19: 3, # 'v' - 62: 1, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 23: { # 'p' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 1, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 2, # 'k' - 6: 3, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 3, # 'o' - 23: 3, # 'p' - 10: 3, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 3, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 2, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 10: { # 'r' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 1, # 'x' - 16: 2, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 3, # 'ú' - 29: 3, # 'ü' - 42: 2, # 'ő' - 56: 2, # 'ű' - }, - 5: { # 's' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 2, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 2, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 1, # 'j' - 7: 3, # 'k' - 6: 2, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 3, # 'ú' - 29: 3, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 3: { # 't' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 1, # 'g' - 20: 3, # 'h' - 9: 3, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 3, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 3, # 'ú' - 29: 3, # 'ü' - 42: 3, # 'ő' - 56: 2, # 'ű' - }, - 21: { # 'u' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 2, # 'b' - 26: 2, # 'c' - 17: 3, # 'd' - 1: 2, # 'e' - 27: 1, # 'f' - 12: 3, # 'g' - 20: 2, # 'h' - 9: 2, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 1, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 1, # 'u' - 19: 3, # 'v' - 62: 1, # 'x' - 16: 1, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 2, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 0, # 'ö' - 31: 1, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 19: { # 'v' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 3, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 1, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 2, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 2, # 'ó' - 24: 2, # 'ö' - 31: 1, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 1, # 'ű' - }, - 62: { # 'x' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 0, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 1, # 'i' - 22: 0, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 1, # 'o' - 23: 1, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 1, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 1, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 16: { # 'y' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 3, # 'e' - 27: 2, # 'f' - 12: 2, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 2, # 'j' - 7: 2, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 2, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 2, # 'í' - 25: 2, # 'ó' - 24: 3, # 'ö' - 31: 2, # 'ú' - 29: 2, # 'ü' - 42: 1, # 'ő' - 56: 2, # 'ű' - }, - 11: { # 'z' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 3, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 3, # 'd' - 1: 3, # 'e' - 27: 1, # 'f' - 12: 2, # 'g' - 20: 2, # 'h' - 9: 3, # 'i' - 22: 1, # 'j' - 7: 3, # 'k' - 6: 2, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 3, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 3, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 3, # 'á' - 15: 3, # 'é' - 30: 3, # 'í' - 25: 3, # 'ó' - 24: 3, # 'ö' - 31: 2, # 'ú' - 29: 3, # 'ü' - 42: 2, # 'ő' - 56: 1, # 'ű' - }, - 51: { # 'Á' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 1, # 'F' - 49: 2, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 2, # 'N' - 47: 0, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 2, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 1, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 44: { # 'É' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 1, # 'E' - 50: 0, # 'F' - 49: 2, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 2, # 'N' - 47: 0, # 'O' - 46: 1, # 'P' - 43: 2, # 'R' - 33: 2, # 'S' - 37: 2, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 2, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 3, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 0, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 61: { # 'Í' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 1, # 'J' - 36: 0, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 2, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 1, # 'm' - 4: 0, # 'n' - 8: 0, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 0, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 58: { # 'Ó' - 28: 1, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 1, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 2, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 2, # 'h' - 9: 0, # 'i' - 22: 0, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 0, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 1, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 59: { # 'Ö' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 0, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 1, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 0, # 'b' - 26: 1, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 0, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 0, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 0, # 'p' - 10: 2, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 60: { # 'Ú' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 1, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 1, # 'F' - 49: 1, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 0, # 'b' - 26: 0, # 'c' - 17: 0, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 2, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 2, # 'j' - 7: 0, # 'k' - 6: 0, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 0, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 0, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 63: { # 'Ü' - 28: 0, # 'A' - 40: 1, # 'B' - 54: 0, # 'C' - 45: 1, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 1, # 'G' - 38: 1, # 'H' - 39: 0, # 'I' - 53: 1, # 'J' - 36: 1, # 'K' - 41: 1, # 'L' - 34: 1, # 'M' - 35: 1, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 1, # 'R' - 33: 1, # 'S' - 37: 1, # 'T' - 57: 0, # 'U' - 48: 1, # 'V' - 55: 0, # 'Y' - 52: 1, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 0, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 0, # 'f' - 12: 1, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 0, # 'j' - 7: 0, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 8: 0, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 1, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 14: { # 'á' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 3, # 'b' - 26: 3, # 'c' - 17: 3, # 'd' - 1: 1, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 2, # 'h' - 9: 2, # 'i' - 22: 3, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 1, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 2, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 1, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 2, # 'é' - 30: 1, # 'í' - 25: 0, # 'ó' - 24: 1, # 'ö' - 31: 0, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 15: { # 'é' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 3, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 3, # 'g' - 20: 3, # 'h' - 9: 2, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 1, # 'o' - 23: 3, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 0, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 30: { # 'í' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 0, # 'a' - 18: 1, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 0, # 'e' - 27: 1, # 'f' - 12: 3, # 'g' - 20: 0, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 2, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 2, # 's' - 3: 3, # 't' - 21: 0, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 25: { # 'ó' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 2, # 'a' - 18: 3, # 'b' - 26: 2, # 'c' - 17: 3, # 'd' - 1: 1, # 'e' - 27: 2, # 'f' - 12: 2, # 'g' - 20: 2, # 'h' - 9: 2, # 'i' - 22: 2, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 8: 1, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 1, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 0, # 'ó' - 24: 1, # 'ö' - 31: 1, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 24: { # 'ö' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 0, # 'a' - 18: 3, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 0, # 'e' - 27: 1, # 'f' - 12: 2, # 'g' - 20: 1, # 'h' - 9: 0, # 'i' - 22: 1, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 8: 0, # 'o' - 23: 2, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 3, # 't' - 21: 0, # 'u' - 19: 3, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 3, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 31: { # 'ú' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 1, # 'b' - 26: 2, # 'c' - 17: 1, # 'd' - 1: 1, # 'e' - 27: 2, # 'f' - 12: 3, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 3, # 'j' - 7: 1, # 'k' - 6: 3, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 3, # 'r' - 5: 3, # 's' - 3: 2, # 't' - 21: 1, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 1, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 29: { # 'ü' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 1, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 3, # 'g' - 20: 2, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 3, # 'k' - 6: 3, # 'l' - 13: 1, # 'm' - 4: 3, # 'n' - 8: 0, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 0, # 'u' - 19: 2, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 1, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 42: { # 'ő' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 2, # 'b' - 26: 1, # 'c' - 17: 2, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 2, # 'k' - 6: 3, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 8: 1, # 'o' - 23: 1, # 'p' - 10: 2, # 'r' - 5: 2, # 's' - 3: 2, # 't' - 21: 1, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 1, # 'é' - 30: 1, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 1, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, - 56: { # 'ű' - 28: 0, # 'A' - 40: 0, # 'B' - 54: 0, # 'C' - 45: 0, # 'D' - 32: 0, # 'E' - 50: 0, # 'F' - 49: 0, # 'G' - 38: 0, # 'H' - 39: 0, # 'I' - 53: 0, # 'J' - 36: 0, # 'K' - 41: 0, # 'L' - 34: 0, # 'M' - 35: 0, # 'N' - 47: 0, # 'O' - 46: 0, # 'P' - 43: 0, # 'R' - 33: 0, # 'S' - 37: 0, # 'T' - 57: 0, # 'U' - 48: 0, # 'V' - 55: 0, # 'Y' - 52: 0, # 'Z' - 2: 1, # 'a' - 18: 1, # 'b' - 26: 0, # 'c' - 17: 1, # 'd' - 1: 1, # 'e' - 27: 1, # 'f' - 12: 1, # 'g' - 20: 1, # 'h' - 9: 1, # 'i' - 22: 1, # 'j' - 7: 1, # 'k' - 6: 1, # 'l' - 13: 0, # 'm' - 4: 2, # 'n' - 8: 0, # 'o' - 23: 0, # 'p' - 10: 1, # 'r' - 5: 1, # 's' - 3: 1, # 't' - 21: 0, # 'u' - 19: 1, # 'v' - 62: 0, # 'x' - 16: 0, # 'y' - 11: 2, # 'z' - 51: 0, # 'Á' - 44: 0, # 'É' - 61: 0, # 'Í' - 58: 0, # 'Ó' - 59: 0, # 'Ö' - 60: 0, # 'Ú' - 63: 0, # 'Ü' - 14: 0, # 'á' - 15: 0, # 'é' - 30: 0, # 'í' - 25: 0, # 'ó' - 24: 0, # 'ö' - 31: 0, # 'ú' - 29: 0, # 'ü' - 42: 0, # 'ő' - 56: 0, # 'ű' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 28, # 'A' - 66: 40, # 'B' - 67: 54, # 'C' - 68: 45, # 'D' - 69: 32, # 'E' - 70: 50, # 'F' - 71: 49, # 'G' - 72: 38, # 'H' - 73: 39, # 'I' - 74: 53, # 'J' - 75: 36, # 'K' - 76: 41, # 'L' - 77: 34, # 'M' - 78: 35, # 'N' - 79: 47, # 'O' - 80: 46, # 'P' - 81: 72, # 'Q' - 82: 43, # 'R' - 83: 33, # 'S' - 84: 37, # 'T' - 85: 57, # 'U' - 86: 48, # 'V' - 87: 64, # 'W' - 88: 68, # 'X' - 89: 55, # 'Y' - 90: 52, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 2, # 'a' - 98: 18, # 'b' - 99: 26, # 'c' - 100: 17, # 'd' - 101: 1, # 'e' - 102: 27, # 'f' - 103: 12, # 'g' - 104: 20, # 'h' - 105: 9, # 'i' - 106: 22, # 'j' - 107: 7, # 'k' - 108: 6, # 'l' - 109: 13, # 'm' - 110: 4, # 'n' - 111: 8, # 'o' - 112: 23, # 'p' - 113: 67, # 'q' - 114: 10, # 'r' - 115: 5, # 's' - 116: 3, # 't' - 117: 21, # 'u' - 118: 19, # 'v' - 119: 65, # 'w' - 120: 62, # 'x' - 121: 16, # 'y' - 122: 11, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 161, # '€' - 129: 162, # None - 130: 163, # '‚' - 131: 164, # None - 132: 165, # '„' - 133: 166, # '…' - 134: 167, # '†' - 135: 168, # '‡' - 136: 169, # None - 137: 170, # '‰' - 138: 171, # 'Š' - 139: 172, # '‹' - 140: 173, # 'Ś' - 141: 174, # 'Ť' - 142: 175, # 'Ž' - 143: 176, # 'Ź' - 144: 177, # None - 145: 178, # '‘' - 146: 179, # '’' - 147: 180, # '“' - 148: 78, # '”' - 149: 181, # '•' - 150: 69, # '–' - 151: 182, # '—' - 152: 183, # None - 153: 184, # '™' - 154: 185, # 'š' - 155: 186, # '›' - 156: 187, # 'ś' - 157: 188, # 'ť' - 158: 189, # 'ž' - 159: 190, # 'ź' - 160: 191, # '\xa0' - 161: 192, # 'ˇ' - 162: 193, # '˘' - 163: 194, # 'Ł' - 164: 195, # '¤' - 165: 196, # 'Ą' - 166: 197, # '¦' - 167: 76, # '§' - 168: 198, # '¨' - 169: 199, # '©' - 170: 200, # 'Ş' - 171: 201, # '«' - 172: 202, # '¬' - 173: 203, # '\xad' - 174: 204, # '®' - 175: 205, # 'Ż' - 176: 81, # '°' - 177: 206, # '±' - 178: 207, # '˛' - 179: 208, # 'ł' - 180: 209, # '´' - 181: 210, # 'µ' - 182: 211, # '¶' - 183: 212, # '·' - 184: 213, # '¸' - 185: 214, # 'ą' - 186: 215, # 'ş' - 187: 216, # '»' - 188: 217, # 'Ľ' - 189: 218, # '˝' - 190: 219, # 'ľ' - 191: 220, # 'ż' - 192: 221, # 'Ŕ' - 193: 51, # 'Á' - 194: 83, # 'Â' - 195: 222, # 'Ă' - 196: 80, # 'Ä' - 197: 223, # 'Ĺ' - 198: 224, # 'Ć' - 199: 225, # 'Ç' - 200: 226, # 'Č' - 201: 44, # 'É' - 202: 227, # 'Ę' - 203: 228, # 'Ë' - 204: 229, # 'Ě' - 205: 61, # 'Í' - 206: 230, # 'Î' - 207: 231, # 'Ď' - 208: 232, # 'Đ' - 209: 233, # 'Ń' - 210: 234, # 'Ň' - 211: 58, # 'Ó' - 212: 235, # 'Ô' - 213: 66, # 'Ő' - 214: 59, # 'Ö' - 215: 236, # '×' - 216: 237, # 'Ř' - 217: 238, # 'Ů' - 218: 60, # 'Ú' - 219: 70, # 'Ű' - 220: 63, # 'Ü' - 221: 239, # 'Ý' - 222: 240, # 'Ţ' - 223: 241, # 'ß' - 224: 84, # 'ŕ' - 225: 14, # 'á' - 226: 75, # 'â' - 227: 242, # 'ă' - 228: 71, # 'ä' - 229: 82, # 'ĺ' - 230: 243, # 'ć' - 231: 73, # 'ç' - 232: 244, # 'č' - 233: 15, # 'é' - 234: 85, # 'ę' - 235: 79, # 'ë' - 236: 86, # 'ě' - 237: 30, # 'í' - 238: 77, # 'î' - 239: 87, # 'ď' - 240: 245, # 'đ' - 241: 246, # 'ń' - 242: 247, # 'ň' - 243: 25, # 'ó' - 244: 74, # 'ô' - 245: 42, # 'ő' - 246: 24, # 'ö' - 247: 248, # '÷' - 248: 249, # 'ř' - 249: 250, # 'ů' - 250: 31, # 'ú' - 251: 56, # 'ű' - 252: 29, # 'ü' - 253: 251, # 'ý' - 254: 252, # 'ţ' - 255: 253, # '˙' -} - -WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel( - charset_name="windows-1250", - language="Hungarian", - char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, - language_model=HUNGARIAN_LANG_MODEL, - typical_positive_ratio=0.947368, - keep_ascii_letters=True, - alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", -) - -ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 28, # 'A' - 66: 40, # 'B' - 67: 54, # 'C' - 68: 45, # 'D' - 69: 32, # 'E' - 70: 50, # 'F' - 71: 49, # 'G' - 72: 38, # 'H' - 73: 39, # 'I' - 74: 53, # 'J' - 75: 36, # 'K' - 76: 41, # 'L' - 77: 34, # 'M' - 78: 35, # 'N' - 79: 47, # 'O' - 80: 46, # 'P' - 81: 71, # 'Q' - 82: 43, # 'R' - 83: 33, # 'S' - 84: 37, # 'T' - 85: 57, # 'U' - 86: 48, # 'V' - 87: 64, # 'W' - 88: 68, # 'X' - 89: 55, # 'Y' - 90: 52, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 2, # 'a' - 98: 18, # 'b' - 99: 26, # 'c' - 100: 17, # 'd' - 101: 1, # 'e' - 102: 27, # 'f' - 103: 12, # 'g' - 104: 20, # 'h' - 105: 9, # 'i' - 106: 22, # 'j' - 107: 7, # 'k' - 108: 6, # 'l' - 109: 13, # 'm' - 110: 4, # 'n' - 111: 8, # 'o' - 112: 23, # 'p' - 113: 67, # 'q' - 114: 10, # 'r' - 115: 5, # 's' - 116: 3, # 't' - 117: 21, # 'u' - 118: 19, # 'v' - 119: 65, # 'w' - 120: 62, # 'x' - 121: 16, # 'y' - 122: 11, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 159, # '\x80' - 129: 160, # '\x81' - 130: 161, # '\x82' - 131: 162, # '\x83' - 132: 163, # '\x84' - 133: 164, # '\x85' - 134: 165, # '\x86' - 135: 166, # '\x87' - 136: 167, # '\x88' - 137: 168, # '\x89' - 138: 169, # '\x8a' - 139: 170, # '\x8b' - 140: 171, # '\x8c' - 141: 172, # '\x8d' - 142: 173, # '\x8e' - 143: 174, # '\x8f' - 144: 175, # '\x90' - 145: 176, # '\x91' - 146: 177, # '\x92' - 147: 178, # '\x93' - 148: 179, # '\x94' - 149: 180, # '\x95' - 150: 181, # '\x96' - 151: 182, # '\x97' - 152: 183, # '\x98' - 153: 184, # '\x99' - 154: 185, # '\x9a' - 155: 186, # '\x9b' - 156: 187, # '\x9c' - 157: 188, # '\x9d' - 158: 189, # '\x9e' - 159: 190, # '\x9f' - 160: 191, # '\xa0' - 161: 192, # 'Ą' - 162: 193, # '˘' - 163: 194, # 'Ł' - 164: 195, # '¤' - 165: 196, # 'Ľ' - 166: 197, # 'Ś' - 167: 75, # '§' - 168: 198, # '¨' - 169: 199, # 'Š' - 170: 200, # 'Ş' - 171: 201, # 'Ť' - 172: 202, # 'Ź' - 173: 203, # '\xad' - 174: 204, # 'Ž' - 175: 205, # 'Ż' - 176: 79, # '°' - 177: 206, # 'ą' - 178: 207, # '˛' - 179: 208, # 'ł' - 180: 209, # '´' - 181: 210, # 'ľ' - 182: 211, # 'ś' - 183: 212, # 'ˇ' - 184: 213, # '¸' - 185: 214, # 'š' - 186: 215, # 'ş' - 187: 216, # 'ť' - 188: 217, # 'ź' - 189: 218, # '˝' - 190: 219, # 'ž' - 191: 220, # 'ż' - 192: 221, # 'Ŕ' - 193: 51, # 'Á' - 194: 81, # 'Â' - 195: 222, # 'Ă' - 196: 78, # 'Ä' - 197: 223, # 'Ĺ' - 198: 224, # 'Ć' - 199: 225, # 'Ç' - 200: 226, # 'Č' - 201: 44, # 'É' - 202: 227, # 'Ę' - 203: 228, # 'Ë' - 204: 229, # 'Ě' - 205: 61, # 'Í' - 206: 230, # 'Î' - 207: 231, # 'Ď' - 208: 232, # 'Đ' - 209: 233, # 'Ń' - 210: 234, # 'Ň' - 211: 58, # 'Ó' - 212: 235, # 'Ô' - 213: 66, # 'Ő' - 214: 59, # 'Ö' - 215: 236, # '×' - 216: 237, # 'Ř' - 217: 238, # 'Ů' - 218: 60, # 'Ú' - 219: 69, # 'Ű' - 220: 63, # 'Ü' - 221: 239, # 'Ý' - 222: 240, # 'Ţ' - 223: 241, # 'ß' - 224: 82, # 'ŕ' - 225: 14, # 'á' - 226: 74, # 'â' - 227: 242, # 'ă' - 228: 70, # 'ä' - 229: 80, # 'ĺ' - 230: 243, # 'ć' - 231: 72, # 'ç' - 232: 244, # 'č' - 233: 15, # 'é' - 234: 83, # 'ę' - 235: 77, # 'ë' - 236: 84, # 'ě' - 237: 30, # 'í' - 238: 76, # 'î' - 239: 85, # 'ď' - 240: 245, # 'đ' - 241: 246, # 'ń' - 242: 247, # 'ň' - 243: 25, # 'ó' - 244: 73, # 'ô' - 245: 42, # 'ő' - 246: 24, # 'ö' - 247: 248, # '÷' - 248: 249, # 'ř' - 249: 250, # 'ů' - 250: 31, # 'ú' - 251: 56, # 'ű' - 252: 29, # 'ü' - 253: 251, # 'ý' - 254: 252, # 'ţ' - 255: 253, # '˙' -} - -ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel( - charset_name="ISO-8859-2", - language="Hungarian", - char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, - language_model=HUNGARIAN_LANG_MODEL, - typical_positive_ratio=0.947368, - keep_ascii_letters=True, - alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py deleted file mode 100644 index 39a5388..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py +++ /dev/null @@ -1,5725 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -RUSSIAN_LANG_MODEL = { - 37: { # 'А' - 37: 0, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 1, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 2, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 1, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 1, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 0, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 0, # 'и' - 23: 1, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 0, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 2, # 'ф' - 26: 2, # 'х' - 28: 0, # 'ц' - 22: 1, # 'ч' - 25: 2, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 44: { # 'Б' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 1, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 2, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 33: { # 'В' - 37: 2, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 1, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 2, # 'а' - 21: 1, # 'б' - 10: 1, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 2, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 1, # 'ъ' - 18: 3, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 0, # 'ю' - 16: 1, # 'я' - }, - 46: { # 'Г' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 2, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 1, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 41: { # 'Д' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 2, # 'Е' - 56: 1, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 2, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 3, # 'ж' - 20: 1, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 48: { # 'Е' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 1, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 2, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 2, # 'Р' - 32: 2, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 0, # 'а' - 21: 0, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 2, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 0, # 'и' - 23: 2, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 1, # 'н' - 1: 0, # 'о' - 15: 1, # 'п' - 9: 1, # 'р' - 7: 3, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 2, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 56: { # 'Ж' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 1, # 'б' - 10: 0, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 2, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 1, # 'м' - 5: 0, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 2, # 'ю' - 16: 0, # 'я' - }, - 51: { # 'З' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 0, # 'г' - 13: 2, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 1, # 'л' - 12: 1, # 'м' - 5: 2, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 1, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 1, # 'я' - }, - 42: { # 'И' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 2, # 'Е' - 56: 1, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 2, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 1, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 1, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 2, # 'з' - 4: 1, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 1, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 1, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 60: { # 'Й' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 1, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 36: { # 'К' - 37: 2, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 2, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 1, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 0, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 49: { # 'Л' - 37: 2, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 1, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 1, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 0, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 0, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 1, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 1, # 'л' - 12: 0, # 'м' - 5: 1, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 2, # 'ю' - 16: 1, # 'я' - }, - 38: { # 'М' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 1, # 'Ф' - 55: 1, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 0, # 'Ь' - 47: 1, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 1, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 1, # 'л' - 12: 1, # 'м' - 5: 2, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 1, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 31: { # 'Н' - 37: 2, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 1, # 'З' - 42: 2, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 1, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 1, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 3, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 34: { # 'О' - 37: 0, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 2, # 'Д' - 48: 1, # 'Е' - 56: 1, # 'Ж' - 51: 1, # 'З' - 42: 1, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 2, # 'Л' - 38: 1, # 'М' - 31: 2, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 2, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 1, # 'Ф' - 55: 1, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 1, # 'а' - 21: 2, # 'б' - 10: 1, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 0, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 0, # 'и' - 23: 1, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 0, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 1, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 2, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 35: { # 'П' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 2, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 1, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 0, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 3, # 'р' - 7: 1, # 'с' - 6: 1, # 'т' - 14: 2, # 'у' - 39: 1, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 0, # 'ю' - 16: 2, # 'я' - }, - 45: { # 'Р' - 37: 2, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 2, # 'Е' - 56: 1, # 'Ж' - 51: 0, # 'З' - 42: 2, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 2, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 1, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 2, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 2, # 'я' - }, - 32: { # 'С' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 2, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 1, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 2, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 2, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 1, # 'с' - 6: 3, # 'т' - 14: 2, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 1, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 1, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 40: { # 'Т' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 2, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 1, # 'Ь' - 47: 1, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 1, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 1, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 52: { # 'У' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 1, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 1, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 0, # 'Я' - 3: 1, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 1, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 2, # 'и' - 23: 1, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 1, # 'н' - 1: 2, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 0, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 53: { # 'Ф' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 1, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 55: { # 'Х' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 2, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 0, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 1, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 1, # 'ь' - 30: 1, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 58: { # 'Ц' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 1, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 1, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 0, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 1, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 50: { # 'Ч' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 1, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 1, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 1, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 1, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 3, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 1, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 57: { # 'Ш' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 1, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 1, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 1, # 'н' - 1: 2, # 'о' - 15: 2, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 63: { # 'Щ' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 1, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 1, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 1, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 1, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 1, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 1, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 62: { # 'Ы' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 1, # 'Ц' - 50: 0, # 'Ч' - 57: 1, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 0, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 0, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 61: { # 'Ь' - 37: 0, # 'А' - 44: 1, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 1, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 1, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 1, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 1, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 0, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 0, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 0, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 47: { # 'Э' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 1, # 'Й' - 36: 1, # 'К' - 49: 1, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 1, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 1, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 0, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 2, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 0, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 1, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 59: { # 'Ю' - 37: 1, # 'А' - 44: 1, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 1, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 0, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 1, # 'б' - 10: 0, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 0, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 2, # 'н' - 1: 0, # 'о' - 15: 1, # 'п' - 9: 1, # 'р' - 7: 1, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 43: { # 'Я' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 1, # 'В' - 46: 1, # 'Г' - 41: 0, # 'Д' - 48: 1, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 1, # 'С' - 40: 1, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 1, # 'Х' - 58: 0, # 'Ц' - 50: 1, # 'Ч' - 57: 0, # 'Ш' - 63: 1, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 1, # 'Ю' - 43: 1, # 'Я' - 3: 0, # 'а' - 21: 1, # 'б' - 10: 1, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 0, # 'е' - 24: 0, # 'ж' - 20: 1, # 'з' - 4: 0, # 'и' - 23: 1, # 'й' - 11: 1, # 'к' - 8: 1, # 'л' - 12: 1, # 'м' - 5: 2, # 'н' - 1: 0, # 'о' - 15: 1, # 'п' - 9: 1, # 'р' - 7: 1, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 3: { # 'а' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 1, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 3, # 'и' - 23: 3, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 3, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 2, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 21: { # 'б' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 1, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 1, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 0, # 'ф' - 26: 2, # 'х' - 28: 1, # 'ц' - 22: 1, # 'ч' - 25: 2, # 'ш' - 29: 3, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 2, # 'ю' - 16: 3, # 'я' - }, - 10: { # 'в' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 3, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 3, # 'ш' - 29: 2, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 3, # 'я' - }, - 19: { # 'г' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 3, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 13: { # 'д' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 3, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 3, # 'ц' - 22: 2, # 'ч' - 25: 2, # 'ш' - 29: 1, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 1, # 'э' - 27: 2, # 'ю' - 16: 3, # 'я' - }, - 2: { # 'е' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 2, # 'и' - 23: 3, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 2, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 3, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 2, # 'ю' - 16: 3, # 'я' - }, - 24: { # 'ж' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 1, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 1, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 0, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 20: { # 'з' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 3, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 1, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 3, # 'я' - }, - 4: { # 'и' - 37: 1, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 3, # 'и' - 23: 3, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 2, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 3, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 2, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 23: { # 'й' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 1, # 'а' - 21: 1, # 'б' - 10: 1, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 2, # 'з' - 4: 1, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 2, # 'ф' - 26: 1, # 'х' - 28: 2, # 'ц' - 22: 3, # 'ч' - 25: 2, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 2, # 'я' - }, - 11: { # 'к' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 3, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 2, # 'ц' - 22: 1, # 'ч' - 25: 2, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 1, # 'ы' - 17: 1, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 8: { # 'л' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 3, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 1, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 2, # 'х' - 28: 1, # 'ц' - 22: 3, # 'ч' - 25: 2, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 1, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 12: { # 'м' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 1, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 2, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 2, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 3, # 'я' - }, - 5: { # 'н' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 2, # 'х' - 28: 3, # 'ц' - 22: 3, # 'ч' - 25: 2, # 'ш' - 29: 2, # 'щ' - 54: 1, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 1, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 1: { # 'о' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 3, # 'и' - 23: 3, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 2, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 2, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 15: { # 'п' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 3, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 3, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 0, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 1, # 'ш' - 29: 1, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 2, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 3, # 'я' - }, - 9: { # 'р' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 2, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 3, # 'ш' - 29: 2, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 2, # 'э' - 27: 2, # 'ю' - 16: 3, # 'я' - }, - 7: { # 'с' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 1, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 3, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 3, # 'ч' - 25: 2, # 'ш' - 29: 1, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 2, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 6: { # 'т' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 2, # 'б' - 10: 3, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 2, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 2, # 'ш' - 29: 2, # 'щ' - 54: 2, # 'ъ' - 18: 3, # 'ы' - 17: 3, # 'ь' - 30: 2, # 'э' - 27: 2, # 'ю' - 16: 3, # 'я' - }, - 14: { # 'у' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 3, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 2, # 'и' - 23: 2, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 2, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 2, # 'э' - 27: 3, # 'ю' - 16: 2, # 'я' - }, - 39: { # 'ф' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 0, # 'в' - 19: 1, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 1, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 2, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 1, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 2, # 'ы' - 17: 1, # 'ь' - 30: 2, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 26: { # 'х' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 3, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 1, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 1, # 'п' - 9: 3, # 'р' - 7: 2, # 'с' - 6: 2, # 'т' - 14: 2, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 1, # 'ч' - 25: 2, # 'ш' - 29: 0, # 'щ' - 54: 1, # 'ъ' - 18: 0, # 'ы' - 17: 1, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 28: { # 'ц' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 1, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 1, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 2, # 'к' - 8: 1, # 'л' - 12: 1, # 'м' - 5: 1, # 'н' - 1: 3, # 'о' - 15: 0, # 'п' - 9: 1, # 'р' - 7: 0, # 'с' - 6: 1, # 'т' - 14: 3, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 1, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 3, # 'ы' - 17: 1, # 'ь' - 30: 0, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 22: { # 'ч' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 2, # 'л' - 12: 1, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 1, # 'с' - 6: 3, # 'т' - 14: 3, # 'у' - 39: 1, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 1, # 'ч' - 25: 2, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 3, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 25: { # 'ш' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 1, # 'б' - 10: 2, # 'в' - 19: 1, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 2, # 'м' - 5: 3, # 'н' - 1: 3, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 1, # 'с' - 6: 2, # 'т' - 14: 3, # 'у' - 39: 2, # 'ф' - 26: 1, # 'х' - 28: 1, # 'ц' - 22: 1, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 3, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 0, # 'я' - }, - 29: { # 'щ' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 3, # 'а' - 21: 0, # 'б' - 10: 1, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 3, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 3, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 1, # 'м' - 5: 2, # 'н' - 1: 1, # 'о' - 15: 0, # 'п' - 9: 2, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 2, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 2, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 0, # 'я' - }, - 54: { # 'ъ' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 0, # 'б' - 10: 0, # 'в' - 19: 0, # 'г' - 13: 0, # 'д' - 2: 2, # 'е' - 24: 0, # 'ж' - 20: 0, # 'з' - 4: 0, # 'и' - 23: 0, # 'й' - 11: 0, # 'к' - 8: 0, # 'л' - 12: 0, # 'м' - 5: 0, # 'н' - 1: 0, # 'о' - 15: 0, # 'п' - 9: 0, # 'р' - 7: 0, # 'с' - 6: 0, # 'т' - 14: 0, # 'у' - 39: 0, # 'ф' - 26: 0, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 0, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 1, # 'ю' - 16: 2, # 'я' - }, - 18: { # 'ы' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 3, # 'б' - 10: 3, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 2, # 'и' - 23: 3, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 1, # 'о' - 15: 3, # 'п' - 9: 3, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 0, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 3, # 'ч' - 25: 3, # 'ш' - 29: 2, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 0, # 'ю' - 16: 2, # 'я' - }, - 17: { # 'ь' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 2, # 'б' - 10: 2, # 'в' - 19: 2, # 'г' - 13: 2, # 'д' - 2: 3, # 'е' - 24: 1, # 'ж' - 20: 3, # 'з' - 4: 2, # 'и' - 23: 0, # 'й' - 11: 3, # 'к' - 8: 0, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 2, # 'о' - 15: 2, # 'п' - 9: 1, # 'р' - 7: 3, # 'с' - 6: 2, # 'т' - 14: 0, # 'у' - 39: 2, # 'ф' - 26: 1, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 3, # 'ш' - 29: 2, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 3, # 'ю' - 16: 3, # 'я' - }, - 30: { # 'э' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 1, # 'М' - 31: 1, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 1, # 'Р' - 32: 1, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 1, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 1, # 'б' - 10: 1, # 'в' - 19: 1, # 'г' - 13: 2, # 'д' - 2: 1, # 'е' - 24: 0, # 'ж' - 20: 1, # 'з' - 4: 0, # 'и' - 23: 2, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 0, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 2, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 2, # 'ф' - 26: 1, # 'х' - 28: 0, # 'ц' - 22: 0, # 'ч' - 25: 1, # 'ш' - 29: 0, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 1, # 'ю' - 16: 1, # 'я' - }, - 27: { # 'ю' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 2, # 'а' - 21: 3, # 'б' - 10: 1, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 1, # 'е' - 24: 2, # 'ж' - 20: 2, # 'з' - 4: 1, # 'и' - 23: 1, # 'й' - 11: 2, # 'к' - 8: 2, # 'л' - 12: 2, # 'м' - 5: 2, # 'н' - 1: 1, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 0, # 'у' - 39: 1, # 'ф' - 26: 2, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 2, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 1, # 'э' - 27: 2, # 'ю' - 16: 1, # 'я' - }, - 16: { # 'я' - 37: 0, # 'А' - 44: 0, # 'Б' - 33: 0, # 'В' - 46: 0, # 'Г' - 41: 0, # 'Д' - 48: 0, # 'Е' - 56: 0, # 'Ж' - 51: 0, # 'З' - 42: 0, # 'И' - 60: 0, # 'Й' - 36: 0, # 'К' - 49: 0, # 'Л' - 38: 0, # 'М' - 31: 0, # 'Н' - 34: 0, # 'О' - 35: 0, # 'П' - 45: 0, # 'Р' - 32: 0, # 'С' - 40: 0, # 'Т' - 52: 0, # 'У' - 53: 0, # 'Ф' - 55: 0, # 'Х' - 58: 0, # 'Ц' - 50: 0, # 'Ч' - 57: 0, # 'Ш' - 63: 0, # 'Щ' - 62: 0, # 'Ы' - 61: 0, # 'Ь' - 47: 0, # 'Э' - 59: 0, # 'Ю' - 43: 0, # 'Я' - 3: 0, # 'а' - 21: 2, # 'б' - 10: 3, # 'в' - 19: 2, # 'г' - 13: 3, # 'д' - 2: 3, # 'е' - 24: 3, # 'ж' - 20: 3, # 'з' - 4: 2, # 'и' - 23: 2, # 'й' - 11: 3, # 'к' - 8: 3, # 'л' - 12: 3, # 'м' - 5: 3, # 'н' - 1: 0, # 'о' - 15: 2, # 'п' - 9: 2, # 'р' - 7: 3, # 'с' - 6: 3, # 'т' - 14: 1, # 'у' - 39: 1, # 'ф' - 26: 3, # 'х' - 28: 2, # 'ц' - 22: 2, # 'ч' - 25: 2, # 'ш' - 29: 3, # 'щ' - 54: 0, # 'ъ' - 18: 0, # 'ы' - 17: 0, # 'ь' - 30: 0, # 'э' - 27: 2, # 'ю' - 16: 2, # 'я' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -IBM866_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 37, # 'А' - 129: 44, # 'Б' - 130: 33, # 'В' - 131: 46, # 'Г' - 132: 41, # 'Д' - 133: 48, # 'Е' - 134: 56, # 'Ж' - 135: 51, # 'З' - 136: 42, # 'И' - 137: 60, # 'Й' - 138: 36, # 'К' - 139: 49, # 'Л' - 140: 38, # 'М' - 141: 31, # 'Н' - 142: 34, # 'О' - 143: 35, # 'П' - 144: 45, # 'Р' - 145: 32, # 'С' - 146: 40, # 'Т' - 147: 52, # 'У' - 148: 53, # 'Ф' - 149: 55, # 'Х' - 150: 58, # 'Ц' - 151: 50, # 'Ч' - 152: 57, # 'Ш' - 153: 63, # 'Щ' - 154: 70, # 'Ъ' - 155: 62, # 'Ы' - 156: 61, # 'Ь' - 157: 47, # 'Э' - 158: 59, # 'Ю' - 159: 43, # 'Я' - 160: 3, # 'а' - 161: 21, # 'б' - 162: 10, # 'в' - 163: 19, # 'г' - 164: 13, # 'д' - 165: 2, # 'е' - 166: 24, # 'ж' - 167: 20, # 'з' - 168: 4, # 'и' - 169: 23, # 'й' - 170: 11, # 'к' - 171: 8, # 'л' - 172: 12, # 'м' - 173: 5, # 'н' - 174: 1, # 'о' - 175: 15, # 'п' - 176: 191, # '░' - 177: 192, # '▒' - 178: 193, # '▓' - 179: 194, # '│' - 180: 195, # '┤' - 181: 196, # '╡' - 182: 197, # '╢' - 183: 198, # '╖' - 184: 199, # '╕' - 185: 200, # '╣' - 186: 201, # '║' - 187: 202, # '╗' - 188: 203, # '╝' - 189: 204, # '╜' - 190: 205, # '╛' - 191: 206, # '┐' - 192: 207, # '└' - 193: 208, # '┴' - 194: 209, # '┬' - 195: 210, # '├' - 196: 211, # '─' - 197: 212, # '┼' - 198: 213, # '╞' - 199: 214, # '╟' - 200: 215, # '╚' - 201: 216, # '╔' - 202: 217, # '╩' - 203: 218, # '╦' - 204: 219, # '╠' - 205: 220, # '═' - 206: 221, # '╬' - 207: 222, # '╧' - 208: 223, # '╨' - 209: 224, # '╤' - 210: 225, # '╥' - 211: 226, # '╙' - 212: 227, # '╘' - 213: 228, # '╒' - 214: 229, # '╓' - 215: 230, # '╫' - 216: 231, # '╪' - 217: 232, # '┘' - 218: 233, # '┌' - 219: 234, # '█' - 220: 235, # '▄' - 221: 236, # '▌' - 222: 237, # '▐' - 223: 238, # '▀' - 224: 9, # 'р' - 225: 7, # 'с' - 226: 6, # 'т' - 227: 14, # 'у' - 228: 39, # 'ф' - 229: 26, # 'х' - 230: 28, # 'ц' - 231: 22, # 'ч' - 232: 25, # 'ш' - 233: 29, # 'щ' - 234: 54, # 'ъ' - 235: 18, # 'ы' - 236: 17, # 'ь' - 237: 30, # 'э' - 238: 27, # 'ю' - 239: 16, # 'я' - 240: 239, # 'Ё' - 241: 68, # 'ё' - 242: 240, # 'Є' - 243: 241, # 'є' - 244: 242, # 'Ї' - 245: 243, # 'ї' - 246: 244, # 'Ў' - 247: 245, # 'ў' - 248: 246, # '°' - 249: 247, # '∙' - 250: 248, # '·' - 251: 249, # '√' - 252: 250, # '№' - 253: 251, # '¤' - 254: 252, # '■' - 255: 255, # '\xa0' -} - -IBM866_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="IBM866", - language="Russian", - char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) - -WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 191, # 'Ђ' - 129: 192, # 'Ѓ' - 130: 193, # '‚' - 131: 194, # 'ѓ' - 132: 195, # '„' - 133: 196, # '…' - 134: 197, # '†' - 135: 198, # '‡' - 136: 199, # '€' - 137: 200, # '‰' - 138: 201, # 'Љ' - 139: 202, # '‹' - 140: 203, # 'Њ' - 141: 204, # 'Ќ' - 142: 205, # 'Ћ' - 143: 206, # 'Џ' - 144: 207, # 'ђ' - 145: 208, # '‘' - 146: 209, # '’' - 147: 210, # '“' - 148: 211, # '”' - 149: 212, # '•' - 150: 213, # '–' - 151: 214, # '—' - 152: 215, # None - 153: 216, # '™' - 154: 217, # 'љ' - 155: 218, # '›' - 156: 219, # 'њ' - 157: 220, # 'ќ' - 158: 221, # 'ћ' - 159: 222, # 'џ' - 160: 223, # '\xa0' - 161: 224, # 'Ў' - 162: 225, # 'ў' - 163: 226, # 'Ј' - 164: 227, # '¤' - 165: 228, # 'Ґ' - 166: 229, # '¦' - 167: 230, # '§' - 168: 231, # 'Ё' - 169: 232, # '©' - 170: 233, # 'Є' - 171: 234, # '«' - 172: 235, # '¬' - 173: 236, # '\xad' - 174: 237, # '®' - 175: 238, # 'Ї' - 176: 239, # '°' - 177: 240, # '±' - 178: 241, # 'І' - 179: 242, # 'і' - 180: 243, # 'ґ' - 181: 244, # 'µ' - 182: 245, # '¶' - 183: 246, # '·' - 184: 68, # 'ё' - 185: 247, # '№' - 186: 248, # 'є' - 187: 249, # '»' - 188: 250, # 'ј' - 189: 251, # 'Ѕ' - 190: 252, # 'ѕ' - 191: 253, # 'ї' - 192: 37, # 'А' - 193: 44, # 'Б' - 194: 33, # 'В' - 195: 46, # 'Г' - 196: 41, # 'Д' - 197: 48, # 'Е' - 198: 56, # 'Ж' - 199: 51, # 'З' - 200: 42, # 'И' - 201: 60, # 'Й' - 202: 36, # 'К' - 203: 49, # 'Л' - 204: 38, # 'М' - 205: 31, # 'Н' - 206: 34, # 'О' - 207: 35, # 'П' - 208: 45, # 'Р' - 209: 32, # 'С' - 210: 40, # 'Т' - 211: 52, # 'У' - 212: 53, # 'Ф' - 213: 55, # 'Х' - 214: 58, # 'Ц' - 215: 50, # 'Ч' - 216: 57, # 'Ш' - 217: 63, # 'Щ' - 218: 70, # 'Ъ' - 219: 62, # 'Ы' - 220: 61, # 'Ь' - 221: 47, # 'Э' - 222: 59, # 'Ю' - 223: 43, # 'Я' - 224: 3, # 'а' - 225: 21, # 'б' - 226: 10, # 'в' - 227: 19, # 'г' - 228: 13, # 'д' - 229: 2, # 'е' - 230: 24, # 'ж' - 231: 20, # 'з' - 232: 4, # 'и' - 233: 23, # 'й' - 234: 11, # 'к' - 235: 8, # 'л' - 236: 12, # 'м' - 237: 5, # 'н' - 238: 1, # 'о' - 239: 15, # 'п' - 240: 9, # 'р' - 241: 7, # 'с' - 242: 6, # 'т' - 243: 14, # 'у' - 244: 39, # 'ф' - 245: 26, # 'х' - 246: 28, # 'ц' - 247: 22, # 'ч' - 248: 25, # 'ш' - 249: 29, # 'щ' - 250: 54, # 'ъ' - 251: 18, # 'ы' - 252: 17, # 'ь' - 253: 30, # 'э' - 254: 27, # 'ю' - 255: 16, # 'я' -} - -WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="windows-1251", - language="Russian", - char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) - -IBM855_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 191, # 'ђ' - 129: 192, # 'Ђ' - 130: 193, # 'ѓ' - 131: 194, # 'Ѓ' - 132: 68, # 'ё' - 133: 195, # 'Ё' - 134: 196, # 'є' - 135: 197, # 'Є' - 136: 198, # 'ѕ' - 137: 199, # 'Ѕ' - 138: 200, # 'і' - 139: 201, # 'І' - 140: 202, # 'ї' - 141: 203, # 'Ї' - 142: 204, # 'ј' - 143: 205, # 'Ј' - 144: 206, # 'љ' - 145: 207, # 'Љ' - 146: 208, # 'њ' - 147: 209, # 'Њ' - 148: 210, # 'ћ' - 149: 211, # 'Ћ' - 150: 212, # 'ќ' - 151: 213, # 'Ќ' - 152: 214, # 'ў' - 153: 215, # 'Ў' - 154: 216, # 'џ' - 155: 217, # 'Џ' - 156: 27, # 'ю' - 157: 59, # 'Ю' - 158: 54, # 'ъ' - 159: 70, # 'Ъ' - 160: 3, # 'а' - 161: 37, # 'А' - 162: 21, # 'б' - 163: 44, # 'Б' - 164: 28, # 'ц' - 165: 58, # 'Ц' - 166: 13, # 'д' - 167: 41, # 'Д' - 168: 2, # 'е' - 169: 48, # 'Е' - 170: 39, # 'ф' - 171: 53, # 'Ф' - 172: 19, # 'г' - 173: 46, # 'Г' - 174: 218, # '«' - 175: 219, # '»' - 176: 220, # '░' - 177: 221, # '▒' - 178: 222, # '▓' - 179: 223, # '│' - 180: 224, # '┤' - 181: 26, # 'х' - 182: 55, # 'Х' - 183: 4, # 'и' - 184: 42, # 'И' - 185: 225, # '╣' - 186: 226, # '║' - 187: 227, # '╗' - 188: 228, # '╝' - 189: 23, # 'й' - 190: 60, # 'Й' - 191: 229, # '┐' - 192: 230, # '└' - 193: 231, # '┴' - 194: 232, # '┬' - 195: 233, # '├' - 196: 234, # '─' - 197: 235, # '┼' - 198: 11, # 'к' - 199: 36, # 'К' - 200: 236, # '╚' - 201: 237, # '╔' - 202: 238, # '╩' - 203: 239, # '╦' - 204: 240, # '╠' - 205: 241, # '═' - 206: 242, # '╬' - 207: 243, # '¤' - 208: 8, # 'л' - 209: 49, # 'Л' - 210: 12, # 'м' - 211: 38, # 'М' - 212: 5, # 'н' - 213: 31, # 'Н' - 214: 1, # 'о' - 215: 34, # 'О' - 216: 15, # 'п' - 217: 244, # '┘' - 218: 245, # '┌' - 219: 246, # '█' - 220: 247, # '▄' - 221: 35, # 'П' - 222: 16, # 'я' - 223: 248, # '▀' - 224: 43, # 'Я' - 225: 9, # 'р' - 226: 45, # 'Р' - 227: 7, # 'с' - 228: 32, # 'С' - 229: 6, # 'т' - 230: 40, # 'Т' - 231: 14, # 'у' - 232: 52, # 'У' - 233: 24, # 'ж' - 234: 56, # 'Ж' - 235: 10, # 'в' - 236: 33, # 'В' - 237: 17, # 'ь' - 238: 61, # 'Ь' - 239: 249, # '№' - 240: 250, # '\xad' - 241: 18, # 'ы' - 242: 62, # 'Ы' - 243: 20, # 'з' - 244: 51, # 'З' - 245: 25, # 'ш' - 246: 57, # 'Ш' - 247: 30, # 'э' - 248: 47, # 'Э' - 249: 29, # 'щ' - 250: 63, # 'Щ' - 251: 22, # 'ч' - 252: 50, # 'Ч' - 253: 251, # '§' - 254: 252, # '■' - 255: 255, # '\xa0' -} - -IBM855_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="IBM855", - language="Russian", - char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) - -KOI8_R_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 191, # '─' - 129: 192, # '│' - 130: 193, # '┌' - 131: 194, # '┐' - 132: 195, # '└' - 133: 196, # '┘' - 134: 197, # '├' - 135: 198, # '┤' - 136: 199, # '┬' - 137: 200, # '┴' - 138: 201, # '┼' - 139: 202, # '▀' - 140: 203, # '▄' - 141: 204, # '█' - 142: 205, # '▌' - 143: 206, # '▐' - 144: 207, # '░' - 145: 208, # '▒' - 146: 209, # '▓' - 147: 210, # '⌠' - 148: 211, # '■' - 149: 212, # '∙' - 150: 213, # '√' - 151: 214, # '≈' - 152: 215, # '≤' - 153: 216, # '≥' - 154: 217, # '\xa0' - 155: 218, # '⌡' - 156: 219, # '°' - 157: 220, # '²' - 158: 221, # '·' - 159: 222, # '÷' - 160: 223, # '═' - 161: 224, # '║' - 162: 225, # '╒' - 163: 68, # 'ё' - 164: 226, # '╓' - 165: 227, # '╔' - 166: 228, # '╕' - 167: 229, # '╖' - 168: 230, # '╗' - 169: 231, # '╘' - 170: 232, # '╙' - 171: 233, # '╚' - 172: 234, # '╛' - 173: 235, # '╜' - 174: 236, # '╝' - 175: 237, # '╞' - 176: 238, # '╟' - 177: 239, # '╠' - 178: 240, # '╡' - 179: 241, # 'Ё' - 180: 242, # '╢' - 181: 243, # '╣' - 182: 244, # '╤' - 183: 245, # '╥' - 184: 246, # '╦' - 185: 247, # '╧' - 186: 248, # '╨' - 187: 249, # '╩' - 188: 250, # '╪' - 189: 251, # '╫' - 190: 252, # '╬' - 191: 253, # '©' - 192: 27, # 'ю' - 193: 3, # 'а' - 194: 21, # 'б' - 195: 28, # 'ц' - 196: 13, # 'д' - 197: 2, # 'е' - 198: 39, # 'ф' - 199: 19, # 'г' - 200: 26, # 'х' - 201: 4, # 'и' - 202: 23, # 'й' - 203: 11, # 'к' - 204: 8, # 'л' - 205: 12, # 'м' - 206: 5, # 'н' - 207: 1, # 'о' - 208: 15, # 'п' - 209: 16, # 'я' - 210: 9, # 'р' - 211: 7, # 'с' - 212: 6, # 'т' - 213: 14, # 'у' - 214: 24, # 'ж' - 215: 10, # 'в' - 216: 17, # 'ь' - 217: 18, # 'ы' - 218: 20, # 'з' - 219: 25, # 'ш' - 220: 30, # 'э' - 221: 29, # 'щ' - 222: 22, # 'ч' - 223: 54, # 'ъ' - 224: 59, # 'Ю' - 225: 37, # 'А' - 226: 44, # 'Б' - 227: 58, # 'Ц' - 228: 41, # 'Д' - 229: 48, # 'Е' - 230: 53, # 'Ф' - 231: 46, # 'Г' - 232: 55, # 'Х' - 233: 42, # 'И' - 234: 60, # 'Й' - 235: 36, # 'К' - 236: 49, # 'Л' - 237: 38, # 'М' - 238: 31, # 'Н' - 239: 34, # 'О' - 240: 35, # 'П' - 241: 43, # 'Я' - 242: 45, # 'Р' - 243: 32, # 'С' - 244: 40, # 'Т' - 245: 52, # 'У' - 246: 56, # 'Ж' - 247: 33, # 'В' - 248: 61, # 'Ь' - 249: 62, # 'Ы' - 250: 51, # 'З' - 251: 57, # 'Ш' - 252: 47, # 'Э' - 253: 63, # 'Щ' - 254: 50, # 'Ч' - 255: 70, # 'Ъ' -} - -KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="KOI8-R", - language="Russian", - char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) - -MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 37, # 'А' - 129: 44, # 'Б' - 130: 33, # 'В' - 131: 46, # 'Г' - 132: 41, # 'Д' - 133: 48, # 'Е' - 134: 56, # 'Ж' - 135: 51, # 'З' - 136: 42, # 'И' - 137: 60, # 'Й' - 138: 36, # 'К' - 139: 49, # 'Л' - 140: 38, # 'М' - 141: 31, # 'Н' - 142: 34, # 'О' - 143: 35, # 'П' - 144: 45, # 'Р' - 145: 32, # 'С' - 146: 40, # 'Т' - 147: 52, # 'У' - 148: 53, # 'Ф' - 149: 55, # 'Х' - 150: 58, # 'Ц' - 151: 50, # 'Ч' - 152: 57, # 'Ш' - 153: 63, # 'Щ' - 154: 70, # 'Ъ' - 155: 62, # 'Ы' - 156: 61, # 'Ь' - 157: 47, # 'Э' - 158: 59, # 'Ю' - 159: 43, # 'Я' - 160: 191, # '†' - 161: 192, # '°' - 162: 193, # 'Ґ' - 163: 194, # '£' - 164: 195, # '§' - 165: 196, # '•' - 166: 197, # '¶' - 167: 198, # 'І' - 168: 199, # '®' - 169: 200, # '©' - 170: 201, # '™' - 171: 202, # 'Ђ' - 172: 203, # 'ђ' - 173: 204, # '≠' - 174: 205, # 'Ѓ' - 175: 206, # 'ѓ' - 176: 207, # '∞' - 177: 208, # '±' - 178: 209, # '≤' - 179: 210, # '≥' - 180: 211, # 'і' - 181: 212, # 'µ' - 182: 213, # 'ґ' - 183: 214, # 'Ј' - 184: 215, # 'Є' - 185: 216, # 'є' - 186: 217, # 'Ї' - 187: 218, # 'ї' - 188: 219, # 'Љ' - 189: 220, # 'љ' - 190: 221, # 'Њ' - 191: 222, # 'њ' - 192: 223, # 'ј' - 193: 224, # 'Ѕ' - 194: 225, # '¬' - 195: 226, # '√' - 196: 227, # 'ƒ' - 197: 228, # '≈' - 198: 229, # '∆' - 199: 230, # '«' - 200: 231, # '»' - 201: 232, # '…' - 202: 233, # '\xa0' - 203: 234, # 'Ћ' - 204: 235, # 'ћ' - 205: 236, # 'Ќ' - 206: 237, # 'ќ' - 207: 238, # 'ѕ' - 208: 239, # '–' - 209: 240, # '—' - 210: 241, # '“' - 211: 242, # '”' - 212: 243, # '‘' - 213: 244, # '’' - 214: 245, # '÷' - 215: 246, # '„' - 216: 247, # 'Ў' - 217: 248, # 'ў' - 218: 249, # 'Џ' - 219: 250, # 'џ' - 220: 251, # '№' - 221: 252, # 'Ё' - 222: 68, # 'ё' - 223: 16, # 'я' - 224: 3, # 'а' - 225: 21, # 'б' - 226: 10, # 'в' - 227: 19, # 'г' - 228: 13, # 'д' - 229: 2, # 'е' - 230: 24, # 'ж' - 231: 20, # 'з' - 232: 4, # 'и' - 233: 23, # 'й' - 234: 11, # 'к' - 235: 8, # 'л' - 236: 12, # 'м' - 237: 5, # 'н' - 238: 1, # 'о' - 239: 15, # 'п' - 240: 9, # 'р' - 241: 7, # 'с' - 242: 6, # 'т' - 243: 14, # 'у' - 244: 39, # 'ф' - 245: 26, # 'х' - 246: 28, # 'ц' - 247: 22, # 'ч' - 248: 25, # 'ш' - 249: 29, # 'щ' - 250: 54, # 'ъ' - 251: 18, # 'ы' - 252: 17, # 'ь' - 253: 30, # 'э' - 254: 27, # 'ю' - 255: 255, # '€' -} - -MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="MacCyrillic", - language="Russian", - char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) - -ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 142, # 'A' - 66: 143, # 'B' - 67: 144, # 'C' - 68: 145, # 'D' - 69: 146, # 'E' - 70: 147, # 'F' - 71: 148, # 'G' - 72: 149, # 'H' - 73: 150, # 'I' - 74: 151, # 'J' - 75: 152, # 'K' - 76: 74, # 'L' - 77: 153, # 'M' - 78: 75, # 'N' - 79: 154, # 'O' - 80: 155, # 'P' - 81: 156, # 'Q' - 82: 157, # 'R' - 83: 158, # 'S' - 84: 159, # 'T' - 85: 160, # 'U' - 86: 161, # 'V' - 87: 162, # 'W' - 88: 163, # 'X' - 89: 164, # 'Y' - 90: 165, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 71, # 'a' - 98: 172, # 'b' - 99: 66, # 'c' - 100: 173, # 'd' - 101: 65, # 'e' - 102: 174, # 'f' - 103: 76, # 'g' - 104: 175, # 'h' - 105: 64, # 'i' - 106: 176, # 'j' - 107: 177, # 'k' - 108: 77, # 'l' - 109: 72, # 'm' - 110: 178, # 'n' - 111: 69, # 'o' - 112: 67, # 'p' - 113: 179, # 'q' - 114: 78, # 'r' - 115: 73, # 's' - 116: 180, # 't' - 117: 181, # 'u' - 118: 79, # 'v' - 119: 182, # 'w' - 120: 183, # 'x' - 121: 184, # 'y' - 122: 185, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 191, # '\x80' - 129: 192, # '\x81' - 130: 193, # '\x82' - 131: 194, # '\x83' - 132: 195, # '\x84' - 133: 196, # '\x85' - 134: 197, # '\x86' - 135: 198, # '\x87' - 136: 199, # '\x88' - 137: 200, # '\x89' - 138: 201, # '\x8a' - 139: 202, # '\x8b' - 140: 203, # '\x8c' - 141: 204, # '\x8d' - 142: 205, # '\x8e' - 143: 206, # '\x8f' - 144: 207, # '\x90' - 145: 208, # '\x91' - 146: 209, # '\x92' - 147: 210, # '\x93' - 148: 211, # '\x94' - 149: 212, # '\x95' - 150: 213, # '\x96' - 151: 214, # '\x97' - 152: 215, # '\x98' - 153: 216, # '\x99' - 154: 217, # '\x9a' - 155: 218, # '\x9b' - 156: 219, # '\x9c' - 157: 220, # '\x9d' - 158: 221, # '\x9e' - 159: 222, # '\x9f' - 160: 223, # '\xa0' - 161: 224, # 'Ё' - 162: 225, # 'Ђ' - 163: 226, # 'Ѓ' - 164: 227, # 'Є' - 165: 228, # 'Ѕ' - 166: 229, # 'І' - 167: 230, # 'Ї' - 168: 231, # 'Ј' - 169: 232, # 'Љ' - 170: 233, # 'Њ' - 171: 234, # 'Ћ' - 172: 235, # 'Ќ' - 173: 236, # '\xad' - 174: 237, # 'Ў' - 175: 238, # 'Џ' - 176: 37, # 'А' - 177: 44, # 'Б' - 178: 33, # 'В' - 179: 46, # 'Г' - 180: 41, # 'Д' - 181: 48, # 'Е' - 182: 56, # 'Ж' - 183: 51, # 'З' - 184: 42, # 'И' - 185: 60, # 'Й' - 186: 36, # 'К' - 187: 49, # 'Л' - 188: 38, # 'М' - 189: 31, # 'Н' - 190: 34, # 'О' - 191: 35, # 'П' - 192: 45, # 'Р' - 193: 32, # 'С' - 194: 40, # 'Т' - 195: 52, # 'У' - 196: 53, # 'Ф' - 197: 55, # 'Х' - 198: 58, # 'Ц' - 199: 50, # 'Ч' - 200: 57, # 'Ш' - 201: 63, # 'Щ' - 202: 70, # 'Ъ' - 203: 62, # 'Ы' - 204: 61, # 'Ь' - 205: 47, # 'Э' - 206: 59, # 'Ю' - 207: 43, # 'Я' - 208: 3, # 'а' - 209: 21, # 'б' - 210: 10, # 'в' - 211: 19, # 'г' - 212: 13, # 'д' - 213: 2, # 'е' - 214: 24, # 'ж' - 215: 20, # 'з' - 216: 4, # 'и' - 217: 23, # 'й' - 218: 11, # 'к' - 219: 8, # 'л' - 220: 12, # 'м' - 221: 5, # 'н' - 222: 1, # 'о' - 223: 15, # 'п' - 224: 9, # 'р' - 225: 7, # 'с' - 226: 6, # 'т' - 227: 14, # 'у' - 228: 39, # 'ф' - 229: 26, # 'х' - 230: 28, # 'ц' - 231: 22, # 'ч' - 232: 25, # 'ш' - 233: 29, # 'щ' - 234: 54, # 'ъ' - 235: 18, # 'ы' - 236: 17, # 'ь' - 237: 30, # 'э' - 238: 27, # 'ю' - 239: 16, # 'я' - 240: 239, # '№' - 241: 68, # 'ё' - 242: 240, # 'ђ' - 243: 241, # 'ѓ' - 244: 242, # 'є' - 245: 243, # 'ѕ' - 246: 244, # 'і' - 247: 245, # 'ї' - 248: 246, # 'ј' - 249: 247, # 'љ' - 250: 248, # 'њ' - 251: 249, # 'ћ' - 252: 250, # 'ќ' - 253: 251, # '§' - 254: 252, # 'ў' - 255: 255, # 'џ' -} - -ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel( - charset_name="ISO-8859-5", - language="Russian", - char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, - language_model=RUSSIAN_LANG_MODEL, - typical_positive_ratio=0.976601, - keep_ascii_letters=False, - alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py deleted file mode 100644 index 489cad9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py +++ /dev/null @@ -1,4380 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -THAI_LANG_MODEL = { - 5: { # 'ก' - 5: 2, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 2, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 3, # 'ฎ' - 57: 2, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 2, # 'ณ' - 20: 2, # 'ด' - 19: 3, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 1, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 1, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 1, # 'ย' - 2: 3, # 'ร' - 61: 2, # 'ฤ' - 15: 3, # 'ล' - 12: 3, # 'ว' - 42: 2, # 'ศ' - 46: 3, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 1, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 3, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 0, # 'ึ' - 27: 2, # 'ื' - 32: 2, # 'ุ' - 35: 1, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 3, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 30: { # 'ข' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 1, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 2, # 'ณ' - 20: 0, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 2, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 1, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 2, # 'ี' - 40: 3, # 'ึ' - 27: 1, # 'ื' - 32: 1, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 2, # '่' - 7: 3, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 24: { # 'ค' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 2, # 'ค' - 8: 2, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 2, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 0, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 2, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 3, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 2, # 'า' - 36: 3, # 'ำ' - 23: 3, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 1, # 'เ' - 28: 0, # 'แ' - 41: 3, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 8: { # 'ง' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 3, # 'ค' - 8: 2, # 'ง' - 26: 2, # 'จ' - 52: 1, # 'ฉ' - 34: 2, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 1, # 'ฝ' - 31: 2, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 1, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 2, # 'ศ' - 46: 1, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 1, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 1, # 'ื' - 32: 1, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 3, # 'ๆ' - 37: 0, # '็' - 6: 2, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 26: { # 'จ' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 0, # 'ค' - 8: 2, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 1, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 1, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 1, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 3, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 3, # 'ำ' - 23: 2, # 'ิ' - 13: 1, # 'ี' - 40: 3, # 'ึ' - 27: 1, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 2, # '่' - 7: 2, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 52: { # 'ฉ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 3, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 3, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 1, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 1, # 'ั' - 1: 1, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 1, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 34: { # 'ช' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 1, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 1, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 1, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 2, # 'ั' - 1: 3, # 'า' - 36: 1, # 'ำ' - 23: 3, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 1, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 51: { # 'ซ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 1, # 'ั' - 1: 1, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 2, # 'ี' - 40: 3, # 'ึ' - 27: 2, # 'ื' - 32: 1, # 'ุ' - 35: 1, # 'ู' - 11: 1, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 1, # '่' - 7: 2, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 47: { # 'ญ' - 5: 1, # 'ก' - 30: 1, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 3, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 2, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 2, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 0, # 'ไ' - 50: 1, # 'ๆ' - 37: 0, # '็' - 6: 2, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 58: { # 'ฎ' - 5: 2, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 1, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 57: { # 'ฏ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 49: { # 'ฐ' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 2, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 53: { # 'ฑ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 55: { # 'ฒ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 43: { # 'ณ' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 3, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 3, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 1, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 3, # 'ะ' - 10: 0, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 20: { # 'ด' - 5: 2, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 3, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 3, # 'ั' - 1: 2, # 'า' - 36: 2, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 1, # 'ึ' - 27: 2, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 2, # 'ๆ' - 37: 2, # '็' - 6: 1, # '่' - 7: 3, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 19: { # 'ต' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 1, # 'ต' - 44: 2, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 2, # 'ภ' - 9: 1, # 'ม' - 16: 1, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 0, # 'ห' - 4: 3, # 'อ' - 63: 1, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 3, # 'ิ' - 13: 2, # 'ี' - 40: 1, # 'ึ' - 27: 1, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 2, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 44: { # 'ถ' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 2, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 2, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 1, # 'ี' - 40: 3, # 'ึ' - 27: 2, # 'ื' - 32: 2, # 'ุ' - 35: 3, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 2, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 14: { # 'ท' - 5: 1, # 'ก' - 30: 1, # 'ข' - 24: 3, # 'ค' - 8: 1, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 3, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 3, # 'ย' - 2: 3, # 'ร' - 61: 1, # 'ฤ' - 15: 1, # 'ล' - 12: 2, # 'ว' - 42: 3, # 'ศ' - 46: 1, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 3, # 'ำ' - 23: 2, # 'ิ' - 13: 3, # 'ี' - 40: 2, # 'ึ' - 27: 1, # 'ื' - 32: 3, # 'ุ' - 35: 1, # 'ู' - 11: 0, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 48: { # 'ธ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 1, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 2, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 2, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 3: { # 'น' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 3, # 'ค' - 8: 1, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 1, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 2, # 'ถ' - 14: 3, # 'ท' - 48: 3, # 'ธ' - 3: 2, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 1, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 1, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 3, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 3, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 3, # 'โ' - 29: 3, # 'ใ' - 33: 3, # 'ไ' - 50: 2, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 17: { # 'บ' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 1, # 'ง' - 26: 1, # 'จ' - 52: 1, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 2, # 'อ' - 63: 1, # 'ฯ' - 22: 0, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 2, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 2, # 'ื' - 32: 3, # 'ุ' - 35: 2, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 2, # '่' - 7: 2, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 25: { # 'ป' - 5: 2, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 1, # 'ฎ' - 57: 3, # 'ฏ' - 49: 1, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 1, # 'ต' - 44: 1, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 0, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 1, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 1, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 3, # 'ั' - 1: 1, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 3, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 1, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 2, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 2, # 'ไ' - 50: 0, # 'ๆ' - 37: 3, # '็' - 6: 1, # '่' - 7: 2, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 39: { # 'ผ' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 1, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 2, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 1, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 1, # 'ื' - 32: 0, # 'ุ' - 35: 3, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 1, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 62: { # 'ฝ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 1, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 1, # 'ี' - 40: 2, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 2, # '่' - 7: 1, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 31: { # 'พ' - 5: 1, # 'ก' - 30: 1, # 'ข' - 24: 1, # 'ค' - 8: 1, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 1, # 'ณ' - 20: 1, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 0, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 2, # 'ย' - 2: 3, # 'ร' - 61: 2, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 1, # 'ฯ' - 22: 0, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 2, # 'ี' - 40: 1, # 'ึ' - 27: 3, # 'ื' - 32: 1, # 'ุ' - 35: 2, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 1, # '็' - 6: 0, # '่' - 7: 1, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 54: { # 'ฟ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 2, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 2, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 1, # 'ื' - 32: 1, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 2, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 45: { # 'ภ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 3, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 2, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 9: { # 'ม' - 5: 2, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 2, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 1, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 3, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 1, # 'ย' - 2: 2, # 'ร' - 61: 2, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 1, # 'ศ' - 46: 1, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 0, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 3, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 2, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 2, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 16: { # 'ย' - 5: 3, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 2, # 'ช' - 51: 0, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 2, # 'ม' - 16: 0, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 3, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 3, # 'ี' - 40: 1, # 'ึ' - 27: 2, # 'ื' - 32: 2, # 'ุ' - 35: 3, # 'ู' - 11: 2, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 2, # 'ๆ' - 37: 1, # '็' - 6: 3, # '่' - 7: 2, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 2: { # 'ร' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 2, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 3, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 3, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 3, # 'ถ' - 14: 3, # 'ท' - 48: 1, # 'ธ' - 3: 2, # 'น' - 17: 2, # 'บ' - 25: 3, # 'ป' - 39: 2, # 'ผ' - 62: 1, # 'ฝ' - 31: 2, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 2, # 'ศ' - 46: 2, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 1, # 'ฯ' - 22: 3, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 2, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 3, # 'ู' - 11: 3, # 'เ' - 28: 3, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 3, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 3, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 61: { # 'ฤ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 2, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 15: { # 'ล' - 5: 2, # 'ก' - 30: 3, # 'ข' - 24: 1, # 'ค' - 8: 3, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 1, # 'ม' - 16: 3, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 3, # 'อ' - 63: 2, # 'ฯ' - 22: 3, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 2, # 'ึ' - 27: 3, # 'ื' - 32: 2, # 'ุ' - 35: 3, # 'ู' - 11: 2, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 2, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 12: { # 'ว' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 1, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 1, # 'ณ' - 20: 2, # 'ด' - 19: 1, # 'ต' - 44: 1, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 3, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 3, # 'ิ' - 13: 2, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 2, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 42: { # 'ศ' - 5: 1, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 1, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 2, # 'ว' - 42: 1, # 'ศ' - 46: 2, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 2, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 2, # 'ิ' - 13: 0, # 'ี' - 40: 3, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 2, # 'ู' - 11: 0, # 'เ' - 28: 1, # 'แ' - 41: 0, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 46: { # 'ษ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 2, # 'ฎ' - 57: 1, # 'ฏ' - 49: 2, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 3, # 'ณ' - 20: 0, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 1, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 2, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 18: { # 'ส' - 5: 2, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 2, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 3, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 2, # 'ภ' - 9: 3, # 'ม' - 16: 1, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 3, # 'ำ' - 23: 3, # 'ิ' - 13: 3, # 'ี' - 40: 2, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 3, # 'ู' - 11: 2, # 'เ' - 28: 0, # 'แ' - 41: 1, # 'โ' - 29: 0, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 1, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 21: { # 'ห' - 5: 3, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 1, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 3, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 0, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 0, # 'ำ' - 23: 1, # 'ิ' - 13: 1, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 1, # 'ุ' - 35: 1, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 3, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 4: { # 'อ' - 5: 3, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 3, # 'ม' - 16: 3, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 2, # 'ะ' - 10: 3, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 2, # 'ิ' - 13: 3, # 'ี' - 40: 0, # 'ึ' - 27: 3, # 'ื' - 32: 3, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 1, # '็' - 6: 2, # '่' - 7: 2, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 63: { # 'ฯ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 22: { # 'ะ' - 5: 3, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 1, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 3, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 1, # 'ธ' - 3: 2, # 'น' - 17: 3, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 2, # 'อ' - 63: 1, # 'ฯ' - 22: 1, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 10: { # 'ั' - 5: 3, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 3, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 3, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 2, # 'ฐ' - 53: 0, # 'ฑ' - 55: 3, # 'ฒ' - 43: 3, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 3, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 2, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 1: { # 'า' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 3, # 'ค' - 8: 3, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 3, # 'ช' - 51: 1, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 3, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 2, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 1, # 'ฝ' - 31: 3, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 3, # 'ม' - 16: 3, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 3, # 'ว' - 42: 2, # 'ศ' - 46: 3, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 2, # 'อ' - 63: 1, # 'ฯ' - 22: 3, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 36: { # 'ำ' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 3, # 'ค' - 8: 2, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 1, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 1, # 'ต' - 44: 1, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 3, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 23: { # 'ิ' - 5: 3, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 3, # 'ช' - 51: 0, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 3, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 0, # 'ฝ' - 31: 3, # 'พ' - 54: 1, # 'ฟ' - 45: 2, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 3, # 'ศ' - 46: 2, # 'ษ' - 18: 2, # 'ส' - 21: 3, # 'ห' - 4: 1, # 'อ' - 63: 1, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 2, # '้' - 38: 2, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 13: { # 'ี' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 1, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 3, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 2, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 1, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 40: { # 'ึ' - 5: 3, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 3, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 1, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 27: { # 'ื' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 3, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 32: { # 'ุ' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 3, # 'ค' - 8: 3, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 1, # 'ฒ' - 43: 3, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 2, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 1, # 'ภ' - 9: 3, # 'ม' - 16: 1, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 1, # 'ว' - 42: 1, # 'ศ' - 46: 2, # 'ษ' - 18: 1, # 'ส' - 21: 1, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 0, # 'แ' - 41: 1, # 'โ' - 29: 0, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 2, # '้' - 38: 1, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 35: { # 'ู' - 5: 3, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 2, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 2, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 1, # 'ณ' - 20: 2, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 2, # 'น' - 17: 0, # 'บ' - 25: 3, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 1, # 'แ' - 41: 1, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 3, # '่' - 7: 3, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 11: { # 'เ' - 5: 3, # 'ก' - 30: 3, # 'ข' - 24: 3, # 'ค' - 8: 2, # 'ง' - 26: 3, # 'จ' - 52: 3, # 'ฉ' - 34: 3, # 'ช' - 51: 2, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 1, # 'ณ' - 20: 3, # 'ด' - 19: 3, # 'ต' - 44: 1, # 'ถ' - 14: 3, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 3, # 'ป' - 39: 2, # 'ผ' - 62: 1, # 'ฝ' - 31: 3, # 'พ' - 54: 1, # 'ฟ' - 45: 3, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 3, # 'ว' - 42: 2, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 28: { # 'แ' - 5: 3, # 'ก' - 30: 2, # 'ข' - 24: 2, # 'ค' - 8: 1, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 3, # 'ต' - 44: 2, # 'ถ' - 14: 3, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 2, # 'ป' - 39: 3, # 'ผ' - 62: 0, # 'ฝ' - 31: 2, # 'พ' - 54: 2, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 41: { # 'โ' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 1, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 1, # 'บ' - 25: 3, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 1, # 'ภ' - 9: 1, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 3, # 'ล' - 12: 0, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 0, # 'ห' - 4: 2, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 29: { # 'ใ' - 5: 2, # 'ก' - 30: 0, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 3, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 1, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 3, # 'ส' - 21: 3, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 33: { # 'ไ' - 5: 1, # 'ก' - 30: 2, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 3, # 'ด' - 19: 1, # 'ต' - 44: 0, # 'ถ' - 14: 3, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 1, # 'บ' - 25: 3, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 2, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 0, # 'ย' - 2: 3, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 3, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 2, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 50: { # 'ๆ' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 37: { # '็' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 2, # 'ง' - 26: 3, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 1, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 2, # 'ต' - 44: 0, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 3, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 1, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 2, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 0, # 'ห' - 4: 1, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 1, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 6: { # '่' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 1, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 1, # 'ธ' - 3: 3, # 'น' - 17: 1, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 1, # 'ฝ' - 31: 1, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 3, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 2, # 'ล' - 12: 3, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 1, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 1, # 'ะ' - 10: 0, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 3, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 1, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 7: { # '้' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 2, # 'ค' - 8: 3, # 'ง' - 26: 2, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 1, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 1, # 'ด' - 19: 2, # 'ต' - 44: 1, # 'ถ' - 14: 2, # 'ท' - 48: 0, # 'ธ' - 3: 3, # 'น' - 17: 2, # 'บ' - 25: 2, # 'ป' - 39: 2, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 0, # 'ภ' - 9: 3, # 'ม' - 16: 2, # 'ย' - 2: 2, # 'ร' - 61: 0, # 'ฤ' - 15: 1, # 'ล' - 12: 3, # 'ว' - 42: 1, # 'ศ' - 46: 0, # 'ษ' - 18: 2, # 'ส' - 21: 2, # 'ห' - 4: 3, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 3, # 'า' - 36: 2, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 2, # 'ใ' - 33: 2, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 38: { # '์' - 5: 2, # 'ก' - 30: 1, # 'ข' - 24: 1, # 'ค' - 8: 0, # 'ง' - 26: 1, # 'จ' - 52: 0, # 'ฉ' - 34: 1, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 2, # 'ด' - 19: 1, # 'ต' - 44: 1, # 'ถ' - 14: 1, # 'ท' - 48: 0, # 'ธ' - 3: 1, # 'น' - 17: 1, # 'บ' - 25: 1, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 1, # 'พ' - 54: 1, # 'ฟ' - 45: 0, # 'ภ' - 9: 2, # 'ม' - 16: 0, # 'ย' - 2: 1, # 'ร' - 61: 1, # 'ฤ' - 15: 1, # 'ล' - 12: 1, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 1, # 'ส' - 21: 1, # 'ห' - 4: 2, # 'อ' - 63: 1, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 2, # 'เ' - 28: 2, # 'แ' - 41: 1, # 'โ' - 29: 1, # 'ใ' - 33: 1, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 0, # '๑' - 59: 0, # '๒' - 60: 0, # '๕' - }, - 56: { # '๑' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 2, # '๑' - 59: 1, # '๒' - 60: 1, # '๕' - }, - 59: { # '๒' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 1, # '๑' - 59: 1, # '๒' - 60: 3, # '๕' - }, - 60: { # '๕' - 5: 0, # 'ก' - 30: 0, # 'ข' - 24: 0, # 'ค' - 8: 0, # 'ง' - 26: 0, # 'จ' - 52: 0, # 'ฉ' - 34: 0, # 'ช' - 51: 0, # 'ซ' - 47: 0, # 'ญ' - 58: 0, # 'ฎ' - 57: 0, # 'ฏ' - 49: 0, # 'ฐ' - 53: 0, # 'ฑ' - 55: 0, # 'ฒ' - 43: 0, # 'ณ' - 20: 0, # 'ด' - 19: 0, # 'ต' - 44: 0, # 'ถ' - 14: 0, # 'ท' - 48: 0, # 'ธ' - 3: 0, # 'น' - 17: 0, # 'บ' - 25: 0, # 'ป' - 39: 0, # 'ผ' - 62: 0, # 'ฝ' - 31: 0, # 'พ' - 54: 0, # 'ฟ' - 45: 0, # 'ภ' - 9: 0, # 'ม' - 16: 0, # 'ย' - 2: 0, # 'ร' - 61: 0, # 'ฤ' - 15: 0, # 'ล' - 12: 0, # 'ว' - 42: 0, # 'ศ' - 46: 0, # 'ษ' - 18: 0, # 'ส' - 21: 0, # 'ห' - 4: 0, # 'อ' - 63: 0, # 'ฯ' - 22: 0, # 'ะ' - 10: 0, # 'ั' - 1: 0, # 'า' - 36: 0, # 'ำ' - 23: 0, # 'ิ' - 13: 0, # 'ี' - 40: 0, # 'ึ' - 27: 0, # 'ื' - 32: 0, # 'ุ' - 35: 0, # 'ู' - 11: 0, # 'เ' - 28: 0, # 'แ' - 41: 0, # 'โ' - 29: 0, # 'ใ' - 33: 0, # 'ไ' - 50: 0, # 'ๆ' - 37: 0, # '็' - 6: 0, # '่' - 7: 0, # '้' - 38: 0, # '์' - 56: 2, # '๑' - 59: 1, # '๒' - 60: 0, # '๕' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -TIS_620_THAI_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 254, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 254, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 253, # ' ' - 33: 253, # '!' - 34: 253, # '"' - 35: 253, # '#' - 36: 253, # '$' - 37: 253, # '%' - 38: 253, # '&' - 39: 253, # "'" - 40: 253, # '(' - 41: 253, # ')' - 42: 253, # '*' - 43: 253, # '+' - 44: 253, # ',' - 45: 253, # '-' - 46: 253, # '.' - 47: 253, # '/' - 48: 252, # '0' - 49: 252, # '1' - 50: 252, # '2' - 51: 252, # '3' - 52: 252, # '4' - 53: 252, # '5' - 54: 252, # '6' - 55: 252, # '7' - 56: 252, # '8' - 57: 252, # '9' - 58: 253, # ':' - 59: 253, # ';' - 60: 253, # '<' - 61: 253, # '=' - 62: 253, # '>' - 63: 253, # '?' - 64: 253, # '@' - 65: 182, # 'A' - 66: 106, # 'B' - 67: 107, # 'C' - 68: 100, # 'D' - 69: 183, # 'E' - 70: 184, # 'F' - 71: 185, # 'G' - 72: 101, # 'H' - 73: 94, # 'I' - 74: 186, # 'J' - 75: 187, # 'K' - 76: 108, # 'L' - 77: 109, # 'M' - 78: 110, # 'N' - 79: 111, # 'O' - 80: 188, # 'P' - 81: 189, # 'Q' - 82: 190, # 'R' - 83: 89, # 'S' - 84: 95, # 'T' - 85: 112, # 'U' - 86: 113, # 'V' - 87: 191, # 'W' - 88: 192, # 'X' - 89: 193, # 'Y' - 90: 194, # 'Z' - 91: 253, # '[' - 92: 253, # '\\' - 93: 253, # ']' - 94: 253, # '^' - 95: 253, # '_' - 96: 253, # '`' - 97: 64, # 'a' - 98: 72, # 'b' - 99: 73, # 'c' - 100: 114, # 'd' - 101: 74, # 'e' - 102: 115, # 'f' - 103: 116, # 'g' - 104: 102, # 'h' - 105: 81, # 'i' - 106: 201, # 'j' - 107: 117, # 'k' - 108: 90, # 'l' - 109: 103, # 'm' - 110: 78, # 'n' - 111: 82, # 'o' - 112: 96, # 'p' - 113: 202, # 'q' - 114: 91, # 'r' - 115: 79, # 's' - 116: 84, # 't' - 117: 104, # 'u' - 118: 105, # 'v' - 119: 97, # 'w' - 120: 98, # 'x' - 121: 92, # 'y' - 122: 203, # 'z' - 123: 253, # '{' - 124: 253, # '|' - 125: 253, # '}' - 126: 253, # '~' - 127: 253, # '\x7f' - 128: 209, # '\x80' - 129: 210, # '\x81' - 130: 211, # '\x82' - 131: 212, # '\x83' - 132: 213, # '\x84' - 133: 88, # '\x85' - 134: 214, # '\x86' - 135: 215, # '\x87' - 136: 216, # '\x88' - 137: 217, # '\x89' - 138: 218, # '\x8a' - 139: 219, # '\x8b' - 140: 220, # '\x8c' - 141: 118, # '\x8d' - 142: 221, # '\x8e' - 143: 222, # '\x8f' - 144: 223, # '\x90' - 145: 224, # '\x91' - 146: 99, # '\x92' - 147: 85, # '\x93' - 148: 83, # '\x94' - 149: 225, # '\x95' - 150: 226, # '\x96' - 151: 227, # '\x97' - 152: 228, # '\x98' - 153: 229, # '\x99' - 154: 230, # '\x9a' - 155: 231, # '\x9b' - 156: 232, # '\x9c' - 157: 233, # '\x9d' - 158: 234, # '\x9e' - 159: 235, # '\x9f' - 160: 236, # None - 161: 5, # 'ก' - 162: 30, # 'ข' - 163: 237, # 'ฃ' - 164: 24, # 'ค' - 165: 238, # 'ฅ' - 166: 75, # 'ฆ' - 167: 8, # 'ง' - 168: 26, # 'จ' - 169: 52, # 'ฉ' - 170: 34, # 'ช' - 171: 51, # 'ซ' - 172: 119, # 'ฌ' - 173: 47, # 'ญ' - 174: 58, # 'ฎ' - 175: 57, # 'ฏ' - 176: 49, # 'ฐ' - 177: 53, # 'ฑ' - 178: 55, # 'ฒ' - 179: 43, # 'ณ' - 180: 20, # 'ด' - 181: 19, # 'ต' - 182: 44, # 'ถ' - 183: 14, # 'ท' - 184: 48, # 'ธ' - 185: 3, # 'น' - 186: 17, # 'บ' - 187: 25, # 'ป' - 188: 39, # 'ผ' - 189: 62, # 'ฝ' - 190: 31, # 'พ' - 191: 54, # 'ฟ' - 192: 45, # 'ภ' - 193: 9, # 'ม' - 194: 16, # 'ย' - 195: 2, # 'ร' - 196: 61, # 'ฤ' - 197: 15, # 'ล' - 198: 239, # 'ฦ' - 199: 12, # 'ว' - 200: 42, # 'ศ' - 201: 46, # 'ษ' - 202: 18, # 'ส' - 203: 21, # 'ห' - 204: 76, # 'ฬ' - 205: 4, # 'อ' - 206: 66, # 'ฮ' - 207: 63, # 'ฯ' - 208: 22, # 'ะ' - 209: 10, # 'ั' - 210: 1, # 'า' - 211: 36, # 'ำ' - 212: 23, # 'ิ' - 213: 13, # 'ี' - 214: 40, # 'ึ' - 215: 27, # 'ื' - 216: 32, # 'ุ' - 217: 35, # 'ู' - 218: 86, # 'ฺ' - 219: 240, # None - 220: 241, # None - 221: 242, # None - 222: 243, # None - 223: 244, # '฿' - 224: 11, # 'เ' - 225: 28, # 'แ' - 226: 41, # 'โ' - 227: 29, # 'ใ' - 228: 33, # 'ไ' - 229: 245, # 'ๅ' - 230: 50, # 'ๆ' - 231: 37, # '็' - 232: 6, # '่' - 233: 7, # '้' - 234: 67, # '๊' - 235: 77, # '๋' - 236: 38, # '์' - 237: 93, # 'ํ' - 238: 246, # '๎' - 239: 247, # '๏' - 240: 68, # '๐' - 241: 56, # '๑' - 242: 59, # '๒' - 243: 65, # '๓' - 244: 69, # '๔' - 245: 60, # '๕' - 246: 70, # '๖' - 247: 80, # '๗' - 248: 71, # '๘' - 249: 87, # '๙' - 250: 248, # '๚' - 251: 249, # '๛' - 252: 250, # None - 253: 251, # None - 254: 252, # None - 255: 253, # None -} - -TIS_620_THAI_MODEL = SingleByteCharSetModel( - charset_name="TIS-620", - language="Thai", - char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, - language_model=THAI_LANG_MODEL, - typical_positive_ratio=0.926386, - keep_ascii_letters=False, - alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py deleted file mode 100644 index 291857c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py +++ /dev/null @@ -1,4380 +0,0 @@ -from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel - -# 3: Positive -# 2: Likely -# 1: Unlikely -# 0: Negative - -TURKISH_LANG_MODEL = { - 23: { # 'A' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 1, # 'i' - 24: 0, # 'j' - 10: 2, # 'k' - 5: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 1, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 37: { # 'B' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 2, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, - 47: { # 'C' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 1, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 2, # 'l' - 13: 2, # 'm' - 4: 2, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 2, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 1, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 39: { # 'D' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 1, # 'l' - 13: 3, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 1, # 'Ş' - 19: 0, # 'ş' - }, - 29: { # 'E' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 1, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 0, # 'h' - 3: 1, # 'i' - 24: 1, # 'j' - 10: 0, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 1, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 52: { # 'F' - 23: 0, # 'A' - 37: 1, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 1, # 'E' - 52: 2, # 'F' - 36: 0, # 'G' - 45: 2, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 1, # 'b' - 28: 1, # 'c' - 12: 1, # 'd' - 2: 0, # 'e' - 18: 1, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 2, # 'i' - 24: 1, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 2, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 2, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 1, # 'Ö' - 55: 2, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 2, # 'ş' - }, - 36: { # 'G' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 2, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 2, # 'N' - 42: 1, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 1, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 1, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 0, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 1, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 2, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 45: { # 'H' - 23: 0, # 'A' - 37: 1, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 2, # 'G' - 45: 1, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 1, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 2, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 2, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 1, # 'p' - 7: 1, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 2, # 'ğ' - 41: 1, # 'İ' - 6: 0, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 53: { # 'I' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 2, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, - 60: { # 'J' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 0, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 1, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 1, # 's' - 9: 0, # 't' - 14: 0, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 16: { # 'K' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 1, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 0, # 'u' - 32: 3, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 1, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 49: { # 'L' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 2, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 2, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 0, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 2, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 2, # 'n' - 15: 1, # 'o' - 26: 1, # 'p' - 7: 1, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 0, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 2, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 1, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 20: { # 'M' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 2, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 0, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 46: { # 'N' - 23: 0, # 'A' - 37: 1, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 1, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 1, # 'o' - 26: 1, # 'p' - 7: 1, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 1, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 1, # 'İ' - 6: 2, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, - 42: { # 'O' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 1, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 2, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 2, # 'İ' - 6: 1, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, - 48: { # 'P' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 2, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 2, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 0, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 44: { # 'R' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 1, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 2, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 1, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, - 35: { # 'S' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 1, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 1, # 'l' - 13: 2, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 1, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 2, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 31: { # 'T' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 3, # 'e' - 18: 2, # 'f' - 27: 2, # 'g' - 25: 0, # 'h' - 3: 1, # 'i' - 24: 1, # 'j' - 10: 2, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 2, # 'r' - 8: 0, # 's' - 9: 2, # 't' - 14: 2, # 'u' - 32: 1, # 'v' - 57: 1, # 'w' - 58: 1, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 51: { # 'U' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 1, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 1, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 38: { # 'V' - 23: 1, # 'A' - 37: 1, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 2, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 1, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 1, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 3, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 62: { # 'W' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 0, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 0, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 0, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 43: { # 'Y' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 0, # 'G' - 45: 1, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 2, # 'N' - 42: 0, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 1, # 'j' - 10: 1, # 'k' - 5: 1, # 'l' - 13: 3, # 'm' - 4: 0, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 1, # 'Ü' - 59: 1, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 0, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 56: { # 'Z' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 2, # 'Z' - 1: 2, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 2, # 'i' - 24: 1, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 1, # 'r' - 8: 1, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 1: { # 'a' - 23: 3, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 3, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 2, # 'Z' - 1: 2, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 2, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 3, # 'v' - 57: 2, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 1, # 'î' - 34: 1, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 21: { # 'b' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 3, # 'g' - 25: 1, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 3, # 'p' - 7: 1, # 'r' - 8: 2, # 's' - 9: 2, # 't' - 14: 2, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 28: { # 'c' - 23: 0, # 'A' - 37: 1, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 2, # 'E' - 52: 0, # 'F' - 36: 2, # 'G' - 45: 2, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 2, # 'T' - 51: 2, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 3, # 'Y' - 56: 0, # 'Z' - 1: 1, # 'a' - 21: 1, # 'b' - 28: 2, # 'c' - 12: 2, # 'd' - 2: 1, # 'e' - 18: 1, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 1, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 2, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 1, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 1, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 1, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 1, # 'î' - 34: 2, # 'ö' - 17: 2, # 'ü' - 30: 2, # 'ğ' - 41: 1, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 2, # 'ş' - }, - 12: { # 'd' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 2, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 1, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 2, # 'i' - 24: 3, # 'j' - 10: 2, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 2, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 1, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 2: { # 'e' - 23: 2, # 'A' - 37: 0, # 'B' - 47: 2, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 3, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 2, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 3, # 'v' - 57: 2, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 1, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 18: { # 'f' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 2, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 1, # 'i' - 24: 1, # 'j' - 10: 1, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 1, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 1, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 27: { # 'g' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 1, # 'h' - 3: 2, # 'i' - 24: 3, # 'j' - 10: 2, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 2, # 'r' - 8: 2, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 25: { # 'h' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 2, # 'h' - 3: 2, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 1, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 3: { # 'i' - 23: 2, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 1, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 2, # 'f' - 27: 3, # 'g' - 25: 1, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 1, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 1, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 1, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 1, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 24: { # 'j' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 2, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 1, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 2, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 2, # 'i' - 24: 1, # 'j' - 10: 2, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 2, # 'r' - 8: 3, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 2, # 'x' - 11: 1, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 10: { # 'k' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 3, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 3, # 'e' - 18: 1, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 2, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 3, # 'p' - 7: 2, # 'r' - 8: 2, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 3, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 5: { # 'l' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 1, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 1, # 'l' - 13: 1, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 2, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 13: { # 'm' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 3, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 2, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 2, # 'u' - 32: 2, # 'v' - 57: 1, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 4: { # 'n' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 2, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 1, # 'f' - 27: 2, # 'g' - 25: 3, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 3, # 'p' - 7: 2, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 2, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 15: { # 'o' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 2, # 'L' - 20: 0, # 'M' - 46: 2, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 1, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 1, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 2, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 2, # 'ğ' - 41: 2, # 'İ' - 6: 3, # 'ı' - 40: 2, # 'Ş' - 19: 2, # 'ş' - }, - 26: { # 'p' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 2, # 'i' - 24: 3, # 'j' - 10: 1, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 2, # 'r' - 8: 1, # 's' - 9: 1, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 1, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 7: { # 'r' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 1, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 2, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 1, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 3, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 8: { # 's' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 2, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 2, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 9: { # 't' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 2, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 3, # 'v' - 57: 0, # 'w' - 58: 2, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 14: { # 'u' - 23: 3, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 2, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 3, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 2, # 'Z' - 1: 2, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 2, # 'e' - 18: 2, # 'f' - 27: 3, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 2, # 'v' - 57: 2, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 3, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 32: { # 'v' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 1, # 'j' - 10: 1, # 'k' - 5: 3, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 1, # 'r' - 8: 2, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 57: { # 'w' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 1, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 1, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 1, # 's' - 9: 0, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 2, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 58: { # 'x' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 1, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 1, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 2, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 1, # 'r' - 8: 2, # 's' - 9: 1, # 't' - 14: 0, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 11: { # 'y' - 23: 1, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 2, # 'i' - 24: 1, # 'j' - 10: 2, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 2, # 'r' - 8: 1, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 3, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 22: { # 'z' - 23: 2, # 'A' - 37: 2, # 'B' - 47: 1, # 'C' - 39: 2, # 'D' - 29: 3, # 'E' - 52: 1, # 'F' - 36: 2, # 'G' - 45: 2, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 2, # 'N' - 42: 2, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 3, # 'T' - 51: 2, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 1, # 'Z' - 1: 1, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 2, # 'd' - 2: 2, # 'e' - 18: 3, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 2, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 0, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 3, # 'y' - 22: 2, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 2, # 'Ü' - 59: 1, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 2, # 'ü' - 30: 2, # 'ğ' - 41: 1, # 'İ' - 6: 3, # 'ı' - 40: 1, # 'Ş' - 19: 2, # 'ş' - }, - 63: { # '·' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 1, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 54: { # 'Ç' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 1, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 1, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 0, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 0, # 'h' - 3: 3, # 'i' - 24: 0, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 2, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 2, # 'r' - 8: 0, # 's' - 9: 1, # 't' - 14: 0, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 2, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 50: { # 'Ö' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 2, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 2, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 1, # 'N' - 42: 2, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 2, # 'd' - 2: 0, # 'e' - 18: 1, # 'f' - 27: 1, # 'g' - 25: 1, # 'h' - 3: 2, # 'i' - 24: 0, # 'j' - 10: 2, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 3, # 'n' - 15: 2, # 'o' - 26: 2, # 'p' - 7: 3, # 'r' - 8: 1, # 's' - 9: 2, # 't' - 14: 0, # 'u' - 32: 1, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 2, # 'ü' - 30: 1, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 55: { # 'Ü' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 1, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 1, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 1, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 1, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 1, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 0, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 59: { # 'â' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 0, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 2, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 2, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 1, # 'Ş' - 19: 0, # 'ş' - }, - 33: { # 'ç' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 3, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 0, # 'Z' - 1: 0, # 'a' - 21: 3, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 0, # 'e' - 18: 2, # 'f' - 27: 1, # 'g' - 25: 3, # 'h' - 3: 3, # 'i' - 24: 0, # 'j' - 10: 3, # 'k' - 5: 0, # 'l' - 13: 0, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 2, # 's' - 9: 3, # 't' - 14: 0, # 'u' - 32: 2, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 1, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 61: { # 'î' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 0, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 0, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 2, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 1, # 'j' - 10: 0, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 1, # 'n' - 15: 0, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 1, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 1, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 1, # 'î' - 34: 0, # 'ö' - 17: 0, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 1, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 34: { # 'ö' - 23: 0, # 'A' - 37: 1, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 1, # 'G' - 45: 1, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 1, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 2, # 'c' - 12: 1, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 2, # 'h' - 3: 1, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 2, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 0, # 'r' - 8: 3, # 's' - 9: 1, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 1, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 0, # 'ü' - 30: 2, # 'ğ' - 41: 1, # 'İ' - 6: 1, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 17: { # 'ü' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 0, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 1, # 'J' - 16: 1, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 0, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 0, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 0, # 'c' - 12: 1, # 'd' - 2: 3, # 'e' - 18: 1, # 'f' - 27: 2, # 'g' - 25: 0, # 'h' - 3: 1, # 'i' - 24: 1, # 'j' - 10: 2, # 'k' - 5: 3, # 'l' - 13: 2, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 2, # 'p' - 7: 2, # 'r' - 8: 3, # 's' - 9: 2, # 't' - 14: 3, # 'u' - 32: 1, # 'v' - 57: 1, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 2, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 30: { # 'ğ' - 23: 0, # 'A' - 37: 2, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 1, # 'M' - 46: 2, # 'N' - 42: 2, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 0, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 2, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 0, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 2, # 'e' - 18: 0, # 'f' - 27: 0, # 'g' - 25: 0, # 'h' - 3: 0, # 'i' - 24: 3, # 'j' - 10: 1, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 0, # 'n' - 15: 1, # 'o' - 26: 0, # 'p' - 7: 1, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 2, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 2, # 'İ' - 6: 2, # 'ı' - 40: 2, # 'Ş' - 19: 1, # 'ş' - }, - 41: { # 'İ' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 1, # 'E' - 52: 0, # 'F' - 36: 2, # 'G' - 45: 2, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 0, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 0, # 'Z' - 1: 1, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 2, # 'd' - 2: 1, # 'e' - 18: 0, # 'f' - 27: 3, # 'g' - 25: 2, # 'h' - 3: 2, # 'i' - 24: 2, # 'j' - 10: 2, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 3, # 'n' - 15: 1, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 2, # 't' - 14: 0, # 'u' - 32: 0, # 'v' - 57: 1, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 1, # 'Ü' - 59: 1, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 1, # 'ö' - 17: 1, # 'ü' - 30: 2, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 1, # 'ş' - }, - 6: { # 'ı' - 23: 2, # 'A' - 37: 0, # 'B' - 47: 0, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 2, # 'J' - 16: 3, # 'K' - 49: 0, # 'L' - 20: 3, # 'M' - 46: 1, # 'N' - 42: 0, # 'O' - 48: 0, # 'P' - 44: 0, # 'R' - 35: 0, # 'S' - 31: 2, # 'T' - 51: 0, # 'U' - 38: 0, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 1, # 'Z' - 1: 3, # 'a' - 21: 2, # 'b' - 28: 1, # 'c' - 12: 3, # 'd' - 2: 3, # 'e' - 18: 3, # 'f' - 27: 3, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 3, # 'j' - 10: 3, # 'k' - 5: 3, # 'l' - 13: 3, # 'm' - 4: 3, # 'n' - 15: 0, # 'o' - 26: 3, # 'p' - 7: 3, # 'r' - 8: 3, # 's' - 9: 3, # 't' - 14: 3, # 'u' - 32: 3, # 'v' - 57: 1, # 'w' - 58: 1, # 'x' - 11: 3, # 'y' - 22: 0, # 'z' - 63: 1, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 2, # 'ç' - 61: 0, # 'î' - 34: 0, # 'ö' - 17: 3, # 'ü' - 30: 0, # 'ğ' - 41: 0, # 'İ' - 6: 3, # 'ı' - 40: 0, # 'Ş' - 19: 0, # 'ş' - }, - 40: { # 'Ş' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 1, # 'D' - 29: 1, # 'E' - 52: 0, # 'F' - 36: 1, # 'G' - 45: 2, # 'H' - 53: 1, # 'I' - 60: 0, # 'J' - 16: 0, # 'K' - 49: 0, # 'L' - 20: 2, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 2, # 'P' - 44: 2, # 'R' - 35: 1, # 'S' - 31: 1, # 'T' - 51: 0, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 2, # 'Y' - 56: 1, # 'Z' - 1: 0, # 'a' - 21: 2, # 'b' - 28: 0, # 'c' - 12: 2, # 'd' - 2: 0, # 'e' - 18: 3, # 'f' - 27: 0, # 'g' - 25: 2, # 'h' - 3: 3, # 'i' - 24: 2, # 'j' - 10: 1, # 'k' - 5: 0, # 'l' - 13: 1, # 'm' - 4: 3, # 'n' - 15: 2, # 'o' - 26: 0, # 'p' - 7: 3, # 'r' - 8: 2, # 's' - 9: 2, # 't' - 14: 1, # 'u' - 32: 3, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 2, # 'y' - 22: 0, # 'z' - 63: 0, # '·' - 54: 0, # 'Ç' - 50: 0, # 'Ö' - 55: 1, # 'Ü' - 59: 0, # 'â' - 33: 0, # 'ç' - 61: 0, # 'î' - 34: 2, # 'ö' - 17: 1, # 'ü' - 30: 2, # 'ğ' - 41: 0, # 'İ' - 6: 2, # 'ı' - 40: 1, # 'Ş' - 19: 2, # 'ş' - }, - 19: { # 'ş' - 23: 0, # 'A' - 37: 0, # 'B' - 47: 1, # 'C' - 39: 0, # 'D' - 29: 0, # 'E' - 52: 2, # 'F' - 36: 1, # 'G' - 45: 0, # 'H' - 53: 0, # 'I' - 60: 0, # 'J' - 16: 3, # 'K' - 49: 2, # 'L' - 20: 0, # 'M' - 46: 1, # 'N' - 42: 1, # 'O' - 48: 1, # 'P' - 44: 1, # 'R' - 35: 1, # 'S' - 31: 0, # 'T' - 51: 1, # 'U' - 38: 1, # 'V' - 62: 0, # 'W' - 43: 1, # 'Y' - 56: 0, # 'Z' - 1: 3, # 'a' - 21: 1, # 'b' - 28: 2, # 'c' - 12: 0, # 'd' - 2: 3, # 'e' - 18: 0, # 'f' - 27: 2, # 'g' - 25: 1, # 'h' - 3: 1, # 'i' - 24: 0, # 'j' - 10: 2, # 'k' - 5: 2, # 'l' - 13: 3, # 'm' - 4: 0, # 'n' - 15: 0, # 'o' - 26: 1, # 'p' - 7: 3, # 'r' - 8: 0, # 's' - 9: 0, # 't' - 14: 3, # 'u' - 32: 0, # 'v' - 57: 0, # 'w' - 58: 0, # 'x' - 11: 0, # 'y' - 22: 2, # 'z' - 63: 0, # '·' - 54: 1, # 'Ç' - 50: 2, # 'Ö' - 55: 0, # 'Ü' - 59: 0, # 'â' - 33: 1, # 'ç' - 61: 1, # 'î' - 34: 2, # 'ö' - 17: 0, # 'ü' - 30: 1, # 'ğ' - 41: 1, # 'İ' - 6: 1, # 'ı' - 40: 1, # 'Ş' - 19: 1, # 'ş' - }, -} - -# 255: Undefined characters that did not exist in training text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 -# 251: Control characters - -# Character Mapping Table(s): -ISO_8859_9_TURKISH_CHAR_TO_ORDER = { - 0: 255, # '\x00' - 1: 255, # '\x01' - 2: 255, # '\x02' - 3: 255, # '\x03' - 4: 255, # '\x04' - 5: 255, # '\x05' - 6: 255, # '\x06' - 7: 255, # '\x07' - 8: 255, # '\x08' - 9: 255, # '\t' - 10: 255, # '\n' - 11: 255, # '\x0b' - 12: 255, # '\x0c' - 13: 255, # '\r' - 14: 255, # '\x0e' - 15: 255, # '\x0f' - 16: 255, # '\x10' - 17: 255, # '\x11' - 18: 255, # '\x12' - 19: 255, # '\x13' - 20: 255, # '\x14' - 21: 255, # '\x15' - 22: 255, # '\x16' - 23: 255, # '\x17' - 24: 255, # '\x18' - 25: 255, # '\x19' - 26: 255, # '\x1a' - 27: 255, # '\x1b' - 28: 255, # '\x1c' - 29: 255, # '\x1d' - 30: 255, # '\x1e' - 31: 255, # '\x1f' - 32: 255, # ' ' - 33: 255, # '!' - 34: 255, # '"' - 35: 255, # '#' - 36: 255, # '$' - 37: 255, # '%' - 38: 255, # '&' - 39: 255, # "'" - 40: 255, # '(' - 41: 255, # ')' - 42: 255, # '*' - 43: 255, # '+' - 44: 255, # ',' - 45: 255, # '-' - 46: 255, # '.' - 47: 255, # '/' - 48: 255, # '0' - 49: 255, # '1' - 50: 255, # '2' - 51: 255, # '3' - 52: 255, # '4' - 53: 255, # '5' - 54: 255, # '6' - 55: 255, # '7' - 56: 255, # '8' - 57: 255, # '9' - 58: 255, # ':' - 59: 255, # ';' - 60: 255, # '<' - 61: 255, # '=' - 62: 255, # '>' - 63: 255, # '?' - 64: 255, # '@' - 65: 23, # 'A' - 66: 37, # 'B' - 67: 47, # 'C' - 68: 39, # 'D' - 69: 29, # 'E' - 70: 52, # 'F' - 71: 36, # 'G' - 72: 45, # 'H' - 73: 53, # 'I' - 74: 60, # 'J' - 75: 16, # 'K' - 76: 49, # 'L' - 77: 20, # 'M' - 78: 46, # 'N' - 79: 42, # 'O' - 80: 48, # 'P' - 81: 69, # 'Q' - 82: 44, # 'R' - 83: 35, # 'S' - 84: 31, # 'T' - 85: 51, # 'U' - 86: 38, # 'V' - 87: 62, # 'W' - 88: 65, # 'X' - 89: 43, # 'Y' - 90: 56, # 'Z' - 91: 255, # '[' - 92: 255, # '\\' - 93: 255, # ']' - 94: 255, # '^' - 95: 255, # '_' - 96: 255, # '`' - 97: 1, # 'a' - 98: 21, # 'b' - 99: 28, # 'c' - 100: 12, # 'd' - 101: 2, # 'e' - 102: 18, # 'f' - 103: 27, # 'g' - 104: 25, # 'h' - 105: 3, # 'i' - 106: 24, # 'j' - 107: 10, # 'k' - 108: 5, # 'l' - 109: 13, # 'm' - 110: 4, # 'n' - 111: 15, # 'o' - 112: 26, # 'p' - 113: 64, # 'q' - 114: 7, # 'r' - 115: 8, # 's' - 116: 9, # 't' - 117: 14, # 'u' - 118: 32, # 'v' - 119: 57, # 'w' - 120: 58, # 'x' - 121: 11, # 'y' - 122: 22, # 'z' - 123: 255, # '{' - 124: 255, # '|' - 125: 255, # '}' - 126: 255, # '~' - 127: 255, # '\x7f' - 128: 180, # '\x80' - 129: 179, # '\x81' - 130: 178, # '\x82' - 131: 177, # '\x83' - 132: 176, # '\x84' - 133: 175, # '\x85' - 134: 174, # '\x86' - 135: 173, # '\x87' - 136: 172, # '\x88' - 137: 171, # '\x89' - 138: 170, # '\x8a' - 139: 169, # '\x8b' - 140: 168, # '\x8c' - 141: 167, # '\x8d' - 142: 166, # '\x8e' - 143: 165, # '\x8f' - 144: 164, # '\x90' - 145: 163, # '\x91' - 146: 162, # '\x92' - 147: 161, # '\x93' - 148: 160, # '\x94' - 149: 159, # '\x95' - 150: 101, # '\x96' - 151: 158, # '\x97' - 152: 157, # '\x98' - 153: 156, # '\x99' - 154: 155, # '\x9a' - 155: 154, # '\x9b' - 156: 153, # '\x9c' - 157: 152, # '\x9d' - 158: 151, # '\x9e' - 159: 106, # '\x9f' - 160: 150, # '\xa0' - 161: 149, # '¡' - 162: 148, # '¢' - 163: 147, # '£' - 164: 146, # '¤' - 165: 145, # '¥' - 166: 144, # '¦' - 167: 100, # '§' - 168: 143, # '¨' - 169: 142, # '©' - 170: 141, # 'ª' - 171: 140, # '«' - 172: 139, # '¬' - 173: 138, # '\xad' - 174: 137, # '®' - 175: 136, # '¯' - 176: 94, # '°' - 177: 80, # '±' - 178: 93, # '²' - 179: 135, # '³' - 180: 105, # '´' - 181: 134, # 'µ' - 182: 133, # '¶' - 183: 63, # '·' - 184: 132, # '¸' - 185: 131, # '¹' - 186: 130, # 'º' - 187: 129, # '»' - 188: 128, # '¼' - 189: 127, # '½' - 190: 126, # '¾' - 191: 125, # '¿' - 192: 124, # 'À' - 193: 104, # 'Á' - 194: 73, # 'Â' - 195: 99, # 'Ã' - 196: 79, # 'Ä' - 197: 85, # 'Å' - 198: 123, # 'Æ' - 199: 54, # 'Ç' - 200: 122, # 'È' - 201: 98, # 'É' - 202: 92, # 'Ê' - 203: 121, # 'Ë' - 204: 120, # 'Ì' - 205: 91, # 'Í' - 206: 103, # 'Î' - 207: 119, # 'Ï' - 208: 68, # 'Ğ' - 209: 118, # 'Ñ' - 210: 117, # 'Ò' - 211: 97, # 'Ó' - 212: 116, # 'Ô' - 213: 115, # 'Õ' - 214: 50, # 'Ö' - 215: 90, # '×' - 216: 114, # 'Ø' - 217: 113, # 'Ù' - 218: 112, # 'Ú' - 219: 111, # 'Û' - 220: 55, # 'Ü' - 221: 41, # 'İ' - 222: 40, # 'Ş' - 223: 86, # 'ß' - 224: 89, # 'à' - 225: 70, # 'á' - 226: 59, # 'â' - 227: 78, # 'ã' - 228: 71, # 'ä' - 229: 82, # 'å' - 230: 88, # 'æ' - 231: 33, # 'ç' - 232: 77, # 'è' - 233: 66, # 'é' - 234: 84, # 'ê' - 235: 83, # 'ë' - 236: 110, # 'ì' - 237: 75, # 'í' - 238: 61, # 'î' - 239: 96, # 'ï' - 240: 30, # 'ğ' - 241: 67, # 'ñ' - 242: 109, # 'ò' - 243: 74, # 'ó' - 244: 87, # 'ô' - 245: 102, # 'õ' - 246: 34, # 'ö' - 247: 95, # '÷' - 248: 81, # 'ø' - 249: 108, # 'ù' - 250: 76, # 'ú' - 251: 72, # 'û' - 252: 17, # 'ü' - 253: 6, # 'ı' - 254: 19, # 'ş' - 255: 107, # 'ÿ' -} - -ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel( - charset_name="ISO-8859-9", - language="Turkish", - char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, - language_model=TURKISH_LANG_MODEL, - typical_positive_ratio=0.97029, - keep_ascii_letters=True, - alphabet="ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş", -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py deleted file mode 100644 index 59a01d9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py +++ /dev/null @@ -1,147 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import List, Union - -from .charsetprober import CharSetProber -from .enums import ProbingState - -FREQ_CAT_NUM = 4 - -UDF = 0 # undefined -OTH = 1 # other -ASC = 2 # ascii capital letter -ASS = 3 # ascii small letter -ACV = 4 # accent capital vowel -ACO = 5 # accent capital other -ASV = 6 # accent small vowel -ASO = 7 # accent small other -CLASS_NUM = 8 # total classes - -# fmt: off -Latin1_CharToClass = ( - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F - OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 - ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F - OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 - ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F - OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 - OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F - UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 - OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF - ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 - ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF - ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 - ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF - ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 - ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF - ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 - ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF -) - -# 0 : illegal -# 1 : very unlikely -# 2 : normal -# 3 : very likely -Latin1ClassModel = ( -# UDF OTH ASC ASS ACV ACO ASV ASO - 0, 0, 0, 0, 0, 0, 0, 0, # UDF - 0, 3, 3, 3, 3, 3, 3, 3, # OTH - 0, 3, 3, 3, 3, 3, 3, 3, # ASC - 0, 3, 3, 3, 1, 1, 3, 3, # ASS - 0, 3, 3, 3, 1, 2, 1, 2, # ACV - 0, 3, 3, 3, 3, 3, 3, 3, # ACO - 0, 3, 1, 3, 1, 1, 1, 3, # ASV - 0, 3, 1, 3, 1, 1, 3, 3, # ASO -) -# fmt: on - - -class Latin1Prober(CharSetProber): - def __init__(self) -> None: - super().__init__() - self._last_char_class = OTH - self._freq_counter: List[int] = [] - self.reset() - - def reset(self) -> None: - self._last_char_class = OTH - self._freq_counter = [0] * FREQ_CAT_NUM - super().reset() - - @property - def charset_name(self) -> str: - return "ISO-8859-1" - - @property - def language(self) -> str: - return "" - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - byte_str = self.remove_xml_tags(byte_str) - for c in byte_str: - char_class = Latin1_CharToClass[c] - freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + char_class] - if freq == 0: - self._state = ProbingState.NOT_ME - break - self._freq_counter[freq] += 1 - self._last_char_class = char_class - - return self.state - - def get_confidence(self) -> float: - if self.state == ProbingState.NOT_ME: - return 0.01 - - total = sum(self._freq_counter) - confidence = ( - 0.0 - if total < 0.01 - else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total - ) - confidence = max(confidence, 0.0) - # lower the confidence of latin1 so that other more accurate - # detector can take priority. - confidence *= 0.73 - return confidence diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py deleted file mode 100644 index 1425d10..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py +++ /dev/null @@ -1,162 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# This code was modified from latin1prober.py by Rob Speer . -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Rob Speer - adapt to MacRoman encoding -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import List, Union - -from .charsetprober import CharSetProber -from .enums import ProbingState - -FREQ_CAT_NUM = 4 - -UDF = 0 # undefined -OTH = 1 # other -ASC = 2 # ascii capital letter -ASS = 3 # ascii small letter -ACV = 4 # accent capital vowel -ACO = 5 # accent capital other -ASV = 6 # accent small vowel -ASO = 7 # accent small other -ODD = 8 # character that is unlikely to appear -CLASS_NUM = 9 # total classes - -# The change from Latin1 is that we explicitly look for extended characters -# that are infrequently-occurring symbols, and consider them to always be -# improbable. This should let MacRoman get out of the way of more likely -# encodings in most situations. - -# fmt: off -MacRoman_CharToClass = ( - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F - OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 - ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F - OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 - ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F - ACV, ACV, ACO, ACV, ACO, ACV, ACV, ASV, # 80 - 87 - ASV, ASV, ASV, ASV, ASV, ASO, ASV, ASV, # 88 - 8F - ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASV, # 90 - 97 - ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # 98 - 9F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, ASO, # A0 - A7 - OTH, OTH, ODD, ODD, OTH, OTH, ACV, ACV, # A8 - AF - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 - OTH, OTH, OTH, OTH, OTH, OTH, ASV, ASV, # B8 - BF - OTH, OTH, ODD, OTH, ODD, OTH, OTH, OTH, # C0 - C7 - OTH, OTH, OTH, ACV, ACV, ACV, ACV, ASV, # C8 - CF - OTH, OTH, OTH, OTH, OTH, OTH, OTH, ODD, # D0 - D7 - ASV, ACV, ODD, OTH, OTH, OTH, OTH, OTH, # D8 - DF - OTH, OTH, OTH, OTH, OTH, ACV, ACV, ACV, # E0 - E7 - ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # E8 - EF - ODD, ACV, ACV, ACV, ACV, ASV, ODD, ODD, # F0 - F7 - ODD, ODD, ODD, ODD, ODD, ODD, ODD, ODD, # F8 - FF -) - -# 0 : illegal -# 1 : very unlikely -# 2 : normal -# 3 : very likely -MacRomanClassModel = ( -# UDF OTH ASC ASS ACV ACO ASV ASO ODD - 0, 0, 0, 0, 0, 0, 0, 0, 0, # UDF - 0, 3, 3, 3, 3, 3, 3, 3, 1, # OTH - 0, 3, 3, 3, 3, 3, 3, 3, 1, # ASC - 0, 3, 3, 3, 1, 1, 3, 3, 1, # ASS - 0, 3, 3, 3, 1, 2, 1, 2, 1, # ACV - 0, 3, 3, 3, 3, 3, 3, 3, 1, # ACO - 0, 3, 1, 3, 1, 1, 1, 3, 1, # ASV - 0, 3, 1, 3, 1, 1, 3, 3, 1, # ASO - 0, 1, 1, 1, 1, 1, 1, 1, 1, # ODD -) -# fmt: on - - -class MacRomanProber(CharSetProber): - def __init__(self) -> None: - super().__init__() - self._last_char_class = OTH - self._freq_counter: List[int] = [] - self.reset() - - def reset(self) -> None: - self._last_char_class = OTH - self._freq_counter = [0] * FREQ_CAT_NUM - - # express the prior that MacRoman is a somewhat rare encoding; - # this can be done by starting out in a slightly improbable state - # that must be overcome - self._freq_counter[2] = 10 - - super().reset() - - @property - def charset_name(self) -> str: - return "MacRoman" - - @property - def language(self) -> str: - return "" - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - byte_str = self.remove_xml_tags(byte_str) - for c in byte_str: - char_class = MacRoman_CharToClass[c] - freq = MacRomanClassModel[(self._last_char_class * CLASS_NUM) + char_class] - if freq == 0: - self._state = ProbingState.NOT_ME - break - self._freq_counter[freq] += 1 - self._last_char_class = char_class - - return self.state - - def get_confidence(self) -> float: - if self.state == ProbingState.NOT_ME: - return 0.01 - - total = sum(self._freq_counter) - confidence = ( - 0.0 - if total < 0.01 - else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total - ) - confidence = max(confidence, 0.0) - # lower the confidence of MacRoman so that other more accurate - # detector can take priority. - confidence *= 0.73 - return confidence diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py deleted file mode 100644 index 666307e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py +++ /dev/null @@ -1,95 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# Proofpoint, Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Optional, Union - -from .chardistribution import CharDistributionAnalysis -from .charsetprober import CharSetProber -from .codingstatemachine import CodingStateMachine -from .enums import LanguageFilter, MachineState, ProbingState - - -class MultiByteCharSetProber(CharSetProber): - """ - MultiByteCharSetProber - """ - - def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: - super().__init__(lang_filter=lang_filter) - self.distribution_analyzer: Optional[CharDistributionAnalysis] = None - self.coding_sm: Optional[CodingStateMachine] = None - self._last_char = bytearray(b"\0\0") - - def reset(self) -> None: - super().reset() - if self.coding_sm: - self.coding_sm.reset() - if self.distribution_analyzer: - self.distribution_analyzer.reset() - self._last_char = bytearray(b"\0\0") - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - assert self.coding_sm is not None - assert self.distribution_analyzer is not None - - for i, byte in enumerate(byte_str): - coding_state = self.coding_sm.next_state(byte) - if coding_state == MachineState.ERROR: - self.logger.debug( - "%s %s prober hit error at byte %s", - self.charset_name, - self.language, - i, - ) - self._state = ProbingState.NOT_ME - break - if coding_state == MachineState.ITS_ME: - self._state = ProbingState.FOUND_IT - break - if coding_state == MachineState.START: - char_len = self.coding_sm.get_current_charlen() - if i == 0: - self._last_char[1] = byte - self.distribution_analyzer.feed(self._last_char, char_len) - else: - self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) - - self._last_char[0] = byte_str[-1] - - if self.state == ProbingState.DETECTING: - if self.distribution_analyzer.got_enough_data() and ( - self.get_confidence() > self.SHORTCUT_THRESHOLD - ): - self._state = ProbingState.FOUND_IT - - return self.state - - def get_confidence(self) -> float: - assert self.distribution_analyzer is not None - return self.distribution_analyzer.get_confidence() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py deleted file mode 100644 index 6cb9cc7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +++ /dev/null @@ -1,57 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# Proofpoint, Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .big5prober import Big5Prober -from .charsetgroupprober import CharSetGroupProber -from .cp949prober import CP949Prober -from .enums import LanguageFilter -from .eucjpprober import EUCJPProber -from .euckrprober import EUCKRProber -from .euctwprober import EUCTWProber -from .gb2312prober import GB2312Prober -from .johabprober import JOHABProber -from .sjisprober import SJISProber -from .utf8prober import UTF8Prober - - -class MBCSGroupProber(CharSetGroupProber): - def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: - super().__init__(lang_filter=lang_filter) - self.probers = [ - UTF8Prober(), - SJISProber(), - EUCJPProber(), - GB2312Prober(), - EUCKRProber(), - CP949Prober(), - Big5Prober(), - EUCTWProber(), - JOHABProber(), - ] - self.reset() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py deleted file mode 100644 index 7bbe97e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py +++ /dev/null @@ -1,661 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .codingstatemachinedict import CodingStateMachineDict -from .enums import MachineState - -# BIG5 - -# fmt: off -BIG5_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as legal value - 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 - 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 - 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f - 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 - 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f - 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 - 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f - 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 - 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f - 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 - 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f - 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 - 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f - 4, 4, 4, 4, 4, 4, 4, 4, # 80 - 87 - 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f - 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 - 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f - 4, 3, 3, 3, 3, 3, 3, 3, # a0 - a7 - 3, 3, 3, 3, 3, 3, 3, 3, # a8 - af - 3, 3, 3, 3, 3, 3, 3, 3, # b0 - b7 - 3, 3, 3, 3, 3, 3, 3, 3, # b8 - bf - 3, 3, 3, 3, 3, 3, 3, 3, # c0 - c7 - 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf - 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 - 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df - 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 - 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef - 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 - 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff -) - -BIG5_ST = ( - MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f - MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 -) -# fmt: on - -BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) - -BIG5_SM_MODEL: CodingStateMachineDict = { - "class_table": BIG5_CLS, - "class_factor": 5, - "state_table": BIG5_ST, - "char_len_table": BIG5_CHAR_LEN_TABLE, - "name": "Big5", -} - -# CP949 -# fmt: off -CP949_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, # 00 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, # 10 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 2f - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 3f - 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 4f - 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 50 - 5f - 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, # 60 - 6f - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 70 - 7f - 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 80 - 8f - 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 9f - 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, # a0 - af - 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, # b0 - bf - 7, 7, 7, 7, 7, 7, 9, 2, 2, 3, 2, 2, 2, 2, 2, 2, # c0 - cf - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # d0 - df - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # e0 - ef - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, # f0 - ff -) - -CP949_ST = ( -#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = - MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME - MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 - MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 - MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 - MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 -) -# fmt: on - -CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) - -CP949_SM_MODEL: CodingStateMachineDict = { - "class_table": CP949_CLS, - "class_factor": 10, - "state_table": CP949_ST, - "char_len_table": CP949_CHAR_LEN_TABLE, - "name": "CP949", -} - -# EUC-JP -# fmt: off -EUCJP_CLS = ( - 4, 4, 4, 4, 4, 4, 4, 4, # 00 - 07 - 4, 4, 4, 4, 4, 4, 5, 5, # 08 - 0f - 4, 4, 4, 4, 4, 4, 4, 4, # 10 - 17 - 4, 4, 4, 5, 4, 4, 4, 4, # 18 - 1f - 4, 4, 4, 4, 4, 4, 4, 4, # 20 - 27 - 4, 4, 4, 4, 4, 4, 4, 4, # 28 - 2f - 4, 4, 4, 4, 4, 4, 4, 4, # 30 - 37 - 4, 4, 4, 4, 4, 4, 4, 4, # 38 - 3f - 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 47 - 4, 4, 4, 4, 4, 4, 4, 4, # 48 - 4f - 4, 4, 4, 4, 4, 4, 4, 4, # 50 - 57 - 4, 4, 4, 4, 4, 4, 4, 4, # 58 - 5f - 4, 4, 4, 4, 4, 4, 4, 4, # 60 - 67 - 4, 4, 4, 4, 4, 4, 4, 4, # 68 - 6f - 4, 4, 4, 4, 4, 4, 4, 4, # 70 - 77 - 4, 4, 4, 4, 4, 4, 4, 4, # 78 - 7f - 5, 5, 5, 5, 5, 5, 5, 5, # 80 - 87 - 5, 5, 5, 5, 5, 5, 1, 3, # 88 - 8f - 5, 5, 5, 5, 5, 5, 5, 5, # 90 - 97 - 5, 5, 5, 5, 5, 5, 5, 5, # 98 - 9f - 5, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 - 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef - 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 - 0, 0, 0, 0, 0, 0, 0, 5 # f8 - ff -) - -EUCJP_ST = ( - 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 - MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f - 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 -) -# fmt: on - -EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) - -EUCJP_SM_MODEL: CodingStateMachineDict = { - "class_table": EUCJP_CLS, - "class_factor": 6, - "state_table": EUCJP_ST, - "char_len_table": EUCJP_CHAR_LEN_TABLE, - "name": "EUC-JP", -} - -# EUC-KR -# fmt: off -EUCKR_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 - 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 - 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 - 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f - 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 - 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f - 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 - 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f - 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 - 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f - 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 - 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f - 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 - 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f - 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 - 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f - 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 - 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f - 0, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 3, 3, 3, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 3, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 - 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef - 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 - 2, 2, 2, 2, 2, 2, 2, 0 # f8 - ff -) - -EUCKR_ST = ( - MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f -) -# fmt: on - -EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) - -EUCKR_SM_MODEL: CodingStateMachineDict = { - "class_table": EUCKR_CLS, - "class_factor": 4, - "state_table": EUCKR_ST, - "char_len_table": EUCKR_CHAR_LEN_TABLE, - "name": "EUC-KR", -} - -# JOHAB -# fmt: off -JOHAB_CLS = ( - 4,4,4,4,4,4,4,4, # 00 - 07 - 4,4,4,4,4,4,0,0, # 08 - 0f - 4,4,4,4,4,4,4,4, # 10 - 17 - 4,4,4,0,4,4,4,4, # 18 - 1f - 4,4,4,4,4,4,4,4, # 20 - 27 - 4,4,4,4,4,4,4,4, # 28 - 2f - 4,3,3,3,3,3,3,3, # 30 - 37 - 3,3,3,3,3,3,3,3, # 38 - 3f - 3,1,1,1,1,1,1,1, # 40 - 47 - 1,1,1,1,1,1,1,1, # 48 - 4f - 1,1,1,1,1,1,1,1, # 50 - 57 - 1,1,1,1,1,1,1,1, # 58 - 5f - 1,1,1,1,1,1,1,1, # 60 - 67 - 1,1,1,1,1,1,1,1, # 68 - 6f - 1,1,1,1,1,1,1,1, # 70 - 77 - 1,1,1,1,1,1,1,2, # 78 - 7f - 6,6,6,6,8,8,8,8, # 80 - 87 - 8,8,8,8,8,8,8,8, # 88 - 8f - 8,7,7,7,7,7,7,7, # 90 - 97 - 7,7,7,7,7,7,7,7, # 98 - 9f - 7,7,7,7,7,7,7,7, # a0 - a7 - 7,7,7,7,7,7,7,7, # a8 - af - 7,7,7,7,7,7,7,7, # b0 - b7 - 7,7,7,7,7,7,7,7, # b8 - bf - 7,7,7,7,7,7,7,7, # c0 - c7 - 7,7,7,7,7,7,7,7, # c8 - cf - 7,7,7,7,5,5,5,5, # d0 - d7 - 5,9,9,9,9,9,9,5, # d8 - df - 9,9,9,9,9,9,9,9, # e0 - e7 - 9,9,9,9,9,9,9,9, # e8 - ef - 9,9,9,9,9,9,9,9, # f0 - f7 - 9,9,5,5,5,5,5,0 # f8 - ff -) - -JOHAB_ST = ( -# cls = 0 1 2 3 4 5 6 7 8 9 - MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,3 ,3 ,4 , # MachineState.START - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME - MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR , # MachineState.ERROR - MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START , # 3 - MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START , # 4 -) -# fmt: on - -JOHAB_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 0, 0, 2, 2, 2) - -JOHAB_SM_MODEL: CodingStateMachineDict = { - "class_table": JOHAB_CLS, - "class_factor": 10, - "state_table": JOHAB_ST, - "char_len_table": JOHAB_CHAR_LEN_TABLE, - "name": "Johab", -} - -# EUC-TW -# fmt: off -EUCTW_CLS = ( - 2, 2, 2, 2, 2, 2, 2, 2, # 00 - 07 - 2, 2, 2, 2, 2, 2, 0, 0, # 08 - 0f - 2, 2, 2, 2, 2, 2, 2, 2, # 10 - 17 - 2, 2, 2, 0, 2, 2, 2, 2, # 18 - 1f - 2, 2, 2, 2, 2, 2, 2, 2, # 20 - 27 - 2, 2, 2, 2, 2, 2, 2, 2, # 28 - 2f - 2, 2, 2, 2, 2, 2, 2, 2, # 30 - 37 - 2, 2, 2, 2, 2, 2, 2, 2, # 38 - 3f - 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 - 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f - 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 - 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f - 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 - 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f - 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 - 2, 2, 2, 2, 2, 2, 2, 2, # 78 - 7f - 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 - 0, 0, 0, 0, 0, 0, 6, 0, # 88 - 8f - 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 - 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f - 0, 3, 4, 4, 4, 4, 4, 4, # a0 - a7 - 5, 5, 1, 1, 1, 1, 1, 1, # a8 - af - 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 - 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf - 1, 1, 3, 1, 3, 3, 3, 3, # c0 - c7 - 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf - 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 - 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df - 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 - 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef - 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 - 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff -) - -EUCTW_ST = ( - MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 - MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f - 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 - MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f -) -# fmt: on - -EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) - -EUCTW_SM_MODEL: CodingStateMachineDict = { - "class_table": EUCTW_CLS, - "class_factor": 7, - "state_table": EUCTW_ST, - "char_len_table": EUCTW_CHAR_LEN_TABLE, - "name": "x-euc-tw", -} - -# GB2312 -# fmt: off -GB2312_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 - 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 - 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 - 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f - 3, 3, 3, 3, 3, 3, 3, 3, # 30 - 37 - 3, 3, 1, 1, 1, 1, 1, 1, # 38 - 3f - 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 - 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f - 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 - 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f - 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 - 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f - 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 - 2, 2, 2, 2, 2, 2, 2, 4, # 78 - 7f - 5, 6, 6, 6, 6, 6, 6, 6, # 80 - 87 - 6, 6, 6, 6, 6, 6, 6, 6, # 88 - 8f - 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 97 - 6, 6, 6, 6, 6, 6, 6, 6, # 98 - 9f - 6, 6, 6, 6, 6, 6, 6, 6, # a0 - a7 - 6, 6, 6, 6, 6, 6, 6, 6, # a8 - af - 6, 6, 6, 6, 6, 6, 6, 6, # b0 - b7 - 6, 6, 6, 6, 6, 6, 6, 6, # b8 - bf - 6, 6, 6, 6, 6, 6, 6, 6, # c0 - c7 - 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf - 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 - 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df - 6, 6, 6, 6, 6, 6, 6, 6, # e0 - e7 - 6, 6, 6, 6, 6, 6, 6, 6, # e8 - ef - 6, 6, 6, 6, 6, 6, 6, 6, # f0 - f7 - 6, 6, 6, 6, 6, 6, 6, 0 # f8 - ff -) - -GB2312_ST = ( - MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 - 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f - MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 - MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f -) -# fmt: on - -# To be accurate, the length of class 6 can be either 2 or 4. -# But it is not necessary to discriminate between the two since -# it is used for frequency analysis only, and we are validating -# each code range there as well. So it is safe to set it to be -# 2 here. -GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) - -GB2312_SM_MODEL: CodingStateMachineDict = { - "class_table": GB2312_CLS, - "class_factor": 7, - "state_table": GB2312_ST, - "char_len_table": GB2312_CHAR_LEN_TABLE, - "name": "GB2312", -} - -# Shift_JIS -# fmt: off -SJIS_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 - 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 - 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 - 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f - 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 - 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f - 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 - 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f - 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 - 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f - 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 - 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f - 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 - 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f - 3, 3, 3, 3, 3, 2, 2, 3, # 80 - 87 - 3, 3, 3, 3, 3, 3, 3, 3, # 88 - 8f - 3, 3, 3, 3, 3, 3, 3, 3, # 90 - 97 - 3, 3, 3, 3, 3, 3, 3, 3, # 98 - 9f - #0xa0 is illegal in sjis encoding, but some pages does - #contain such byte. We need to be more error forgiven. - 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 - 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af - 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 - 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf - 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 - 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf - 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 - 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df - 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 - 3, 3, 3, 3, 3, 4, 4, 4, # e8 - ef - 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 - 3, 3, 3, 3, 3, 0, 0, 0, # f8 - ff -) - -SJIS_ST = ( - MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 -) -# fmt: on - -SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) - -SJIS_SM_MODEL: CodingStateMachineDict = { - "class_table": SJIS_CLS, - "class_factor": 6, - "state_table": SJIS_ST, - "char_len_table": SJIS_CHAR_LEN_TABLE, - "name": "Shift_JIS", -} - -# UCS2-BE -# fmt: off -UCS2BE_CLS = ( - 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 - 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 - 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f - 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 - 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f - 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 - 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f - 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 - 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af - 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 - 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf - 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 - 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf - 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 - 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df - 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 - 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef - 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 - 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff -) - -UCS2BE_ST = ( - 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 - 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f - 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 - 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f - 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 -) -# fmt: on - -UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) - -UCS2BE_SM_MODEL: CodingStateMachineDict = { - "class_table": UCS2BE_CLS, - "class_factor": 6, - "state_table": UCS2BE_ST, - "char_len_table": UCS2BE_CHAR_LEN_TABLE, - "name": "UTF-16BE", -} - -# UCS2-LE -# fmt: off -UCS2LE_CLS = ( - 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 - 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f - 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 - 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f - 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 - 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f - 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 - 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f - 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 - 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f - 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 - 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f - 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 - 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f - 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 - 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f - 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 - 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f - 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 - 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f - 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 - 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af - 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 - 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf - 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 - 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf - 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 - 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df - 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 - 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef - 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 - 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff -) - -UCS2LE_ST = ( - 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f - MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 - 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f - 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 - 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f - 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 -) -# fmt: on - -UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) - -UCS2LE_SM_MODEL: CodingStateMachineDict = { - "class_table": UCS2LE_CLS, - "class_factor": 6, - "state_table": UCS2LE_ST, - "char_len_table": UCS2LE_CHAR_LEN_TABLE, - "name": "UTF-16LE", -} - -# UTF-8 -# fmt: off -UTF8_CLS = ( - 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as a legal value - 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f - 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 - 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f - 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 - 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f - 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 - 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f - 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 - 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f - 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 - 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f - 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 - 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f - 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 - 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f - 2, 2, 2, 2, 3, 3, 3, 3, # 80 - 87 - 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f - 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 - 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f - 5, 5, 5, 5, 5, 5, 5, 5, # a0 - a7 - 5, 5, 5, 5, 5, 5, 5, 5, # a8 - af - 5, 5, 5, 5, 5, 5, 5, 5, # b0 - b7 - 5, 5, 5, 5, 5, 5, 5, 5, # b8 - bf - 0, 0, 6, 6, 6, 6, 6, 6, # c0 - c7 - 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf - 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 - 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df - 7, 8, 8, 8, 8, 8, 8, 8, # e0 - e7 - 8, 8, 8, 8, 8, 9, 8, 8, # e8 - ef - 10, 11, 11, 11, 11, 11, 11, 11, # f0 - f7 - 12, 13, 13, 13, 14, 15, 0, 0 # f8 - ff -) - -UTF8_ST = ( - MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 - 9, 11, 8, 7, 6, 5, 4, 3,#08-0f - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 - MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f - MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f - MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f - MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f - MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af - MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf - MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 - MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf -) -# fmt: on - -UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) - -UTF8_SM_MODEL: CodingStateMachineDict = { - "class_table": UTF8_CLS, - "class_factor": 16, - "state_table": UTF8_ST, - "char_len_table": UTF8_CHAR_LEN_TABLE, - "name": "UTF-8", -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 07130b5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc deleted file mode 100644 index 3012add..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py deleted file mode 100644 index eb40c5f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py +++ /dev/null @@ -1,352 +0,0 @@ -""" -Metadata about languages used by our model training code for our -SingleByteCharSetProbers. Could be used for other things in the future. - -This code is based on the language metadata from the uchardet project. -""" - -from string import ascii_letters -from typing import List, Optional - -# TODO: Add Ukrainian (KOI8-U) - - -class Language: - """Metadata about a language useful for training models - - :ivar name: The human name for the language, in English. - :type name: str - :ivar iso_code: 2-letter ISO 639-1 if possible, 3-letter ISO code otherwise, - or use another catalog as a last resort. - :type iso_code: str - :ivar use_ascii: Whether or not ASCII letters should be included in trained - models. - :type use_ascii: bool - :ivar charsets: The charsets we want to support and create data for. - :type charsets: list of str - :ivar alphabet: The characters in the language's alphabet. If `use_ascii` is - `True`, you only need to add those not in the ASCII set. - :type alphabet: str - :ivar wiki_start_pages: The Wikipedia pages to start from if we're crawling - Wikipedia for training data. - :type wiki_start_pages: list of str - """ - - def __init__( - self, - name: Optional[str] = None, - iso_code: Optional[str] = None, - use_ascii: bool = True, - charsets: Optional[List[str]] = None, - alphabet: Optional[str] = None, - wiki_start_pages: Optional[List[str]] = None, - ) -> None: - super().__init__() - self.name = name - self.iso_code = iso_code - self.use_ascii = use_ascii - self.charsets = charsets - if self.use_ascii: - if alphabet: - alphabet += ascii_letters - else: - alphabet = ascii_letters - elif not alphabet: - raise ValueError("Must supply alphabet if use_ascii is False") - self.alphabet = "".join(sorted(set(alphabet))) if alphabet else None - self.wiki_start_pages = wiki_start_pages - - def __repr__(self) -> str: - param_str = ", ".join( - f"{k}={v!r}" for k, v in self.__dict__.items() if not k.startswith("_") - ) - return f"{self.__class__.__name__}({param_str})" - - -LANGUAGES = { - "Arabic": Language( - name="Arabic", - iso_code="ar", - use_ascii=False, - # We only support encodings that use isolated - # forms, because the current recommendation is - # that the rendering system handles presentation - # forms. This means we purposefully skip IBM864. - charsets=["ISO-8859-6", "WINDOWS-1256", "CP720", "CP864"], - alphabet="ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ", - wiki_start_pages=["الصفحة_الرئيسية"], - ), - "Belarusian": Language( - name="Belarusian", - iso_code="be", - use_ascii=False, - charsets=["ISO-8859-5", "WINDOWS-1251", "IBM866", "MacCyrillic"], - alphabet="АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯабвгдеёжзійклмнопрстуўфхцчшыьэюяʼ", - wiki_start_pages=["Галоўная_старонка"], - ), - "Bulgarian": Language( - name="Bulgarian", - iso_code="bg", - use_ascii=False, - charsets=["ISO-8859-5", "WINDOWS-1251", "IBM855"], - alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", - wiki_start_pages=["Начална_страница"], - ), - "Czech": Language( - name="Czech", - iso_code="cz", - use_ascii=True, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ", - wiki_start_pages=["Hlavní_strana"], - ), - "Danish": Language( - name="Danish", - iso_code="da", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="æøåÆØÅ", - wiki_start_pages=["Forside"], - ), - "German": Language( - name="German", - iso_code="de", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="äöüßẞÄÖÜ", - wiki_start_pages=["Wikipedia:Hauptseite"], - ), - "Greek": Language( - name="Greek", - iso_code="el", - use_ascii=False, - charsets=["ISO-8859-7", "WINDOWS-1253"], - alphabet="αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ", - wiki_start_pages=["Πύλη:Κύρια"], - ), - "English": Language( - name="English", - iso_code="en", - use_ascii=True, - charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], - wiki_start_pages=["Main_Page"], - ), - "Esperanto": Language( - name="Esperanto", - iso_code="eo", - # Q, W, X, and Y not used at all - use_ascii=False, - charsets=["ISO-8859-3"], - alphabet="abcĉdefgĝhĥijĵklmnoprsŝtuŭvzABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ", - wiki_start_pages=["Vikipedio:Ĉefpaĝo"], - ), - "Spanish": Language( - name="Spanish", - iso_code="es", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="ñáéíóúüÑÁÉÍÓÚÜ", - wiki_start_pages=["Wikipedia:Portada"], - ), - "Estonian": Language( - name="Estonian", - iso_code="et", - use_ascii=False, - charsets=["ISO-8859-4", "ISO-8859-13", "WINDOWS-1257"], - # C, F, Š, Q, W, X, Y, Z, Ž are only for - # loanwords - alphabet="ABDEGHIJKLMNOPRSTUVÕÄÖÜabdeghijklmnoprstuvõäöü", - wiki_start_pages=["Esileht"], - ), - "Finnish": Language( - name="Finnish", - iso_code="fi", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="ÅÄÖŠŽåäöšž", - wiki_start_pages=["Wikipedia:Etusivu"], - ), - "French": Language( - name="French", - iso_code="fr", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ", - wiki_start_pages=["Wikipédia:Accueil_principal", "Bœuf (animal)"], - ), - "Hebrew": Language( - name="Hebrew", - iso_code="he", - use_ascii=False, - charsets=["ISO-8859-8", "WINDOWS-1255"], - alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", - wiki_start_pages=["עמוד_ראשי"], - ), - "Croatian": Language( - name="Croatian", - iso_code="hr", - # Q, W, X, Y are only used for foreign words. - use_ascii=False, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="abcčćdđefghijklmnoprsštuvzžABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ", - wiki_start_pages=["Glavna_stranica"], - ), - "Hungarian": Language( - name="Hungarian", - iso_code="hu", - # Q, W, X, Y are only used for foreign words. - use_ascii=False, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="abcdefghijklmnoprstuvzáéíóöőúüűABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ", - wiki_start_pages=["Kezdőlap"], - ), - "Italian": Language( - name="Italian", - iso_code="it", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="ÀÈÉÌÒÓÙàèéìòóù", - wiki_start_pages=["Pagina_principale"], - ), - "Lithuanian": Language( - name="Lithuanian", - iso_code="lt", - use_ascii=False, - charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], - # Q, W, and X not used at all - alphabet="AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽaąbcčdeęėfghiįyjklmnoprsštuųūvzž", - wiki_start_pages=["Pagrindinis_puslapis"], - ), - "Latvian": Language( - name="Latvian", - iso_code="lv", - use_ascii=False, - charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], - # Q, W, X, Y are only for loanwords - alphabet="AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽaābcčdeēfgģhiījkķlļmnņoprsštuūvzž", - wiki_start_pages=["Sākumlapa"], - ), - "Macedonian": Language( - name="Macedonian", - iso_code="mk", - use_ascii=False, - charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], - alphabet="АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШабвгдѓежзѕијклљмнњопрстќуфхцчџш", - wiki_start_pages=["Главна_страница"], - ), - "Dutch": Language( - name="Dutch", - iso_code="nl", - use_ascii=True, - charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], - wiki_start_pages=["Hoofdpagina"], - ), - "Polish": Language( - name="Polish", - iso_code="pl", - # Q and X are only used for foreign words. - use_ascii=False, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻaąbcćdeęfghijklłmnńoóprsśtuwyzźż", - wiki_start_pages=["Wikipedia:Strona_główna"], - ), - "Portuguese": Language( - name="Portuguese", - iso_code="pt", - use_ascii=True, - charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], - alphabet="ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú", - wiki_start_pages=["Wikipédia:Página_principal"], - ), - "Romanian": Language( - name="Romanian", - iso_code="ro", - use_ascii=True, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="ăâîșțĂÂÎȘȚ", - wiki_start_pages=["Pagina_principală"], - ), - "Russian": Language( - name="Russian", - iso_code="ru", - use_ascii=False, - charsets=[ - "ISO-8859-5", - "WINDOWS-1251", - "KOI8-R", - "MacCyrillic", - "IBM866", - "IBM855", - ], - alphabet="абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ", - wiki_start_pages=["Заглавная_страница"], - ), - "Slovak": Language( - name="Slovak", - iso_code="sk", - use_ascii=True, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ", - wiki_start_pages=["Hlavná_stránka"], - ), - "Slovene": Language( - name="Slovene", - iso_code="sl", - # Q, W, X, Y are only used for foreign words. - use_ascii=False, - charsets=["ISO-8859-2", "WINDOWS-1250"], - alphabet="abcčdefghijklmnoprsštuvzžABCČDEFGHIJKLMNOPRSŠTUVZŽ", - wiki_start_pages=["Glavna_stran"], - ), - # Serbian can be written in both Latin and Cyrillic, but there's no - # simple way to get the Latin alphabet pages from Wikipedia through - # the API, so for now we just support Cyrillic. - "Serbian": Language( - name="Serbian", - iso_code="sr", - alphabet="АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШабвгдђежзијклљмнњопрстћуфхцчџш", - charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], - wiki_start_pages=["Главна_страна"], - ), - "Thai": Language( - name="Thai", - iso_code="th", - use_ascii=False, - charsets=["ISO-8859-11", "TIS-620", "CP874"], - alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", - wiki_start_pages=["หน้าหลัก"], - ), - "Turkish": Language( - name="Turkish", - iso_code="tr", - # Q, W, and X are not used by Turkish - use_ascii=False, - charsets=["ISO-8859-3", "ISO-8859-9", "WINDOWS-1254"], - alphabet="abcçdefgğhıijklmnoöprsştuüvyzâîûABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ", - wiki_start_pages=["Ana_Sayfa"], - ), - "Vietnamese": Language( - name="Vietnamese", - iso_code="vi", - use_ascii=False, - # Windows-1258 is the only common 8-bit - # Vietnamese encoding supported by Python. - # From Wikipedia: - # For systems that lack support for Unicode, - # dozens of 8-bit Vietnamese code pages are - # available.[1] The most common are VISCII - # (TCVN 5712:1993), VPS, and Windows-1258.[3] - # Where ASCII is required, such as when - # ensuring readability in plain text e-mail, - # Vietnamese letters are often encoded - # according to Vietnamese Quoted-Readable - # (VIQR) or VSCII Mnemonic (VSCII-MNEM),[4] - # though usage of either variable-width - # scheme has declined dramatically following - # the adoption of Unicode on the World Wide - # Web. - charsets=["WINDOWS-1258"], - alphabet="aăâbcdđeêghiklmnoôơpqrstuưvxyAĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY", - wiki_start_pages=["Chữ_Quốc_ngữ"], - ), -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py deleted file mode 100644 index 7d36e64..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py +++ /dev/null @@ -1,16 +0,0 @@ -from typing import TYPE_CHECKING, Optional - -if TYPE_CHECKING: - # TypedDict was introduced in Python 3.8. - # - # TODO: Remove the else block and TYPE_CHECKING check when dropping support - # for Python 3.7. - from typing import TypedDict - - class ResultDict(TypedDict): - encoding: Optional[str] - confidence: float - language: Optional[str] - -else: - ResultDict = dict diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py deleted file mode 100644 index 0ffbcdd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py +++ /dev/null @@ -1,162 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Dict, List, NamedTuple, Optional, Union - -from .charsetprober import CharSetProber -from .enums import CharacterCategory, ProbingState, SequenceLikelihood - - -class SingleByteCharSetModel(NamedTuple): - charset_name: str - language: str - char_to_order_map: Dict[int, int] - language_model: Dict[int, Dict[int, int]] - typical_positive_ratio: float - keep_ascii_letters: bool - alphabet: str - - -class SingleByteCharSetProber(CharSetProber): - SAMPLE_SIZE = 64 - SB_ENOUGH_REL_THRESHOLD = 1024 # 0.25 * SAMPLE_SIZE^2 - POSITIVE_SHORTCUT_THRESHOLD = 0.95 - NEGATIVE_SHORTCUT_THRESHOLD = 0.05 - - def __init__( - self, - model: SingleByteCharSetModel, - is_reversed: bool = False, - name_prober: Optional[CharSetProber] = None, - ) -> None: - super().__init__() - self._model = model - # TRUE if we need to reverse every pair in the model lookup - self._reversed = is_reversed - # Optional auxiliary prober for name decision - self._name_prober = name_prober - self._last_order = 255 - self._seq_counters: List[int] = [] - self._total_seqs = 0 - self._total_char = 0 - self._control_char = 0 - self._freq_char = 0 - self.reset() - - def reset(self) -> None: - super().reset() - # char order of last character - self._last_order = 255 - self._seq_counters = [0] * SequenceLikelihood.get_num_categories() - self._total_seqs = 0 - self._total_char = 0 - self._control_char = 0 - # characters that fall in our sampling range - self._freq_char = 0 - - @property - def charset_name(self) -> Optional[str]: - if self._name_prober: - return self._name_prober.charset_name - return self._model.charset_name - - @property - def language(self) -> Optional[str]: - if self._name_prober: - return self._name_prober.language - return self._model.language - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - # TODO: Make filter_international_words keep things in self.alphabet - if not self._model.keep_ascii_letters: - byte_str = self.filter_international_words(byte_str) - else: - byte_str = self.remove_xml_tags(byte_str) - if not byte_str: - return self.state - char_to_order_map = self._model.char_to_order_map - language_model = self._model.language_model - for char in byte_str: - order = char_to_order_map.get(char, CharacterCategory.UNDEFINED) - # XXX: This was SYMBOL_CAT_ORDER before, with a value of 250, but - # CharacterCategory.SYMBOL is actually 253, so we use CONTROL - # to make it closer to the original intent. The only difference - # is whether or not we count digits and control characters for - # _total_char purposes. - if order < CharacterCategory.CONTROL: - self._total_char += 1 - if order < self.SAMPLE_SIZE: - self._freq_char += 1 - if self._last_order < self.SAMPLE_SIZE: - self._total_seqs += 1 - if not self._reversed: - lm_cat = language_model[self._last_order][order] - else: - lm_cat = language_model[order][self._last_order] - self._seq_counters[lm_cat] += 1 - self._last_order = order - - charset_name = self._model.charset_name - if self.state == ProbingState.DETECTING: - if self._total_seqs > self.SB_ENOUGH_REL_THRESHOLD: - confidence = self.get_confidence() - if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: - self.logger.debug( - "%s confidence = %s, we have a winner", charset_name, confidence - ) - self._state = ProbingState.FOUND_IT - elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: - self.logger.debug( - "%s confidence = %s, below negative shortcut threshold %s", - charset_name, - confidence, - self.NEGATIVE_SHORTCUT_THRESHOLD, - ) - self._state = ProbingState.NOT_ME - - return self.state - - def get_confidence(self) -> float: - r = 0.01 - if self._total_seqs > 0: - r = ( - ( - self._seq_counters[SequenceLikelihood.POSITIVE] - + 0.25 * self._seq_counters[SequenceLikelihood.LIKELY] - ) - / self._total_seqs - / self._model.typical_positive_ratio - ) - # The more control characters (proportionnaly to the size - # of the text), the less confident we become in the current - # charset. - r = r * (self._total_char - self._control_char) / self._total_char - r = r * self._freq_char / self._total_char - if r >= 1.0: - r = 0.99 - return r diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py deleted file mode 100644 index 890ae84..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +++ /dev/null @@ -1,88 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .charsetgroupprober import CharSetGroupProber -from .hebrewprober import HebrewProber -from .langbulgarianmodel import ISO_8859_5_BULGARIAN_MODEL, WINDOWS_1251_BULGARIAN_MODEL -from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL -from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL - -# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, -# WINDOWS_1250_HUNGARIAN_MODEL) -from .langrussianmodel import ( - IBM855_RUSSIAN_MODEL, - IBM866_RUSSIAN_MODEL, - ISO_8859_5_RUSSIAN_MODEL, - KOI8_R_RUSSIAN_MODEL, - MACCYRILLIC_RUSSIAN_MODEL, - WINDOWS_1251_RUSSIAN_MODEL, -) -from .langthaimodel import TIS_620_THAI_MODEL -from .langturkishmodel import ISO_8859_9_TURKISH_MODEL -from .sbcharsetprober import SingleByteCharSetProber - - -class SBCSGroupProber(CharSetGroupProber): - def __init__(self) -> None: - super().__init__() - hebrew_prober = HebrewProber() - logical_hebrew_prober = SingleByteCharSetProber( - WINDOWS_1255_HEBREW_MODEL, is_reversed=False, name_prober=hebrew_prober - ) - # TODO: See if using ISO-8859-8 Hebrew model works better here, since - # it's actually the visual one - visual_hebrew_prober = SingleByteCharSetProber( - WINDOWS_1255_HEBREW_MODEL, is_reversed=True, name_prober=hebrew_prober - ) - hebrew_prober.set_model_probers(logical_hebrew_prober, visual_hebrew_prober) - # TODO: ORDER MATTERS HERE. I changed the order vs what was in master - # and several tests failed that did not before. Some thought - # should be put into the ordering, and we should consider making - # order not matter here, because that is very counter-intuitive. - self.probers = [ - SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), - SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), - SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), - SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), - SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), - SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), - SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), - SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), - SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), - SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), - # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) - # after we retrain model. - # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), - # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), - SingleByteCharSetProber(TIS_620_THAI_MODEL), - SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), - hebrew_prober, - logical_hebrew_prober, - visual_hebrew_prober, - ] - self.reset() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py deleted file mode 100644 index 91df077..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py +++ /dev/null @@ -1,105 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Union - -from .chardistribution import SJISDistributionAnalysis -from .codingstatemachine import CodingStateMachine -from .enums import MachineState, ProbingState -from .jpcntx import SJISContextAnalysis -from .mbcharsetprober import MultiByteCharSetProber -from .mbcssm import SJIS_SM_MODEL - - -class SJISProber(MultiByteCharSetProber): - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) - self.distribution_analyzer = SJISDistributionAnalysis() - self.context_analyzer = SJISContextAnalysis() - self.reset() - - def reset(self) -> None: - super().reset() - self.context_analyzer.reset() - - @property - def charset_name(self) -> str: - return self.context_analyzer.charset_name - - @property - def language(self) -> str: - return "Japanese" - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - assert self.coding_sm is not None - assert self.distribution_analyzer is not None - - for i, byte in enumerate(byte_str): - coding_state = self.coding_sm.next_state(byte) - if coding_state == MachineState.ERROR: - self.logger.debug( - "%s %s prober hit error at byte %s", - self.charset_name, - self.language, - i, - ) - self._state = ProbingState.NOT_ME - break - if coding_state == MachineState.ITS_ME: - self._state = ProbingState.FOUND_IT - break - if coding_state == MachineState.START: - char_len = self.coding_sm.get_current_charlen() - if i == 0: - self._last_char[1] = byte - self.context_analyzer.feed( - self._last_char[2 - char_len :], char_len - ) - self.distribution_analyzer.feed(self._last_char, char_len) - else: - self.context_analyzer.feed( - byte_str[i + 1 - char_len : i + 3 - char_len], char_len - ) - self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) - - self._last_char[0] = byte_str[-1] - - if self.state == ProbingState.DETECTING: - if self.context_analyzer.got_enough_data() and ( - self.get_confidence() > self.SHORTCUT_THRESHOLD - ): - self._state = ProbingState.FOUND_IT - - return self.state - - def get_confidence(self) -> float: - assert self.distribution_analyzer is not None - - context_conf = self.context_analyzer.get_confidence() - distrib_conf = self.distribution_analyzer.get_confidence() - return max(context_conf, distrib_conf) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py deleted file mode 100644 index 30c441d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py +++ /dev/null @@ -1,362 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### -""" -Module containing the UniversalDetector detector class, which is the primary -class a user of ``chardet`` should use. - -:author: Mark Pilgrim (initial port to Python) -:author: Shy Shalom (original C code) -:author: Dan Blanchard (major refactoring for 3.0) -:author: Ian Cordasco -""" - - -import codecs -import logging -import re -from typing import List, Optional, Union - -from .charsetgroupprober import CharSetGroupProber -from .charsetprober import CharSetProber -from .enums import InputState, LanguageFilter, ProbingState -from .escprober import EscCharSetProber -from .latin1prober import Latin1Prober -from .macromanprober import MacRomanProber -from .mbcsgroupprober import MBCSGroupProber -from .resultdict import ResultDict -from .sbcsgroupprober import SBCSGroupProber -from .utf1632prober import UTF1632Prober - - -class UniversalDetector: - """ - The ``UniversalDetector`` class underlies the ``chardet.detect`` function - and coordinates all of the different charset probers. - - To get a ``dict`` containing an encoding and its confidence, you can simply - run: - - .. code:: - - u = UniversalDetector() - u.feed(some_bytes) - u.close() - detected = u.result - - """ - - MINIMUM_THRESHOLD = 0.20 - HIGH_BYTE_DETECTOR = re.compile(b"[\x80-\xFF]") - ESC_DETECTOR = re.compile(b"(\033|~{)") - WIN_BYTE_DETECTOR = re.compile(b"[\x80-\x9F]") - ISO_WIN_MAP = { - "iso-8859-1": "Windows-1252", - "iso-8859-2": "Windows-1250", - "iso-8859-5": "Windows-1251", - "iso-8859-6": "Windows-1256", - "iso-8859-7": "Windows-1253", - "iso-8859-8": "Windows-1255", - "iso-8859-9": "Windows-1254", - "iso-8859-13": "Windows-1257", - } - # Based on https://encoding.spec.whatwg.org/#names-and-labels - # but altered to match Python names for encodings and remove mappings - # that break tests. - LEGACY_MAP = { - "ascii": "Windows-1252", - "iso-8859-1": "Windows-1252", - "tis-620": "ISO-8859-11", - "iso-8859-9": "Windows-1254", - "gb2312": "GB18030", - "euc-kr": "CP949", - "utf-16le": "UTF-16", - } - - def __init__( - self, - lang_filter: LanguageFilter = LanguageFilter.ALL, - should_rename_legacy: bool = False, - ) -> None: - self._esc_charset_prober: Optional[EscCharSetProber] = None - self._utf1632_prober: Optional[UTF1632Prober] = None - self._charset_probers: List[CharSetProber] = [] - self.result: ResultDict = { - "encoding": None, - "confidence": 0.0, - "language": None, - } - self.done = False - self._got_data = False - self._input_state = InputState.PURE_ASCII - self._last_char = b"" - self.lang_filter = lang_filter - self.logger = logging.getLogger(__name__) - self._has_win_bytes = False - self.should_rename_legacy = should_rename_legacy - self.reset() - - @property - def input_state(self) -> int: - return self._input_state - - @property - def has_win_bytes(self) -> bool: - return self._has_win_bytes - - @property - def charset_probers(self) -> List[CharSetProber]: - return self._charset_probers - - def reset(self) -> None: - """ - Reset the UniversalDetector and all of its probers back to their - initial states. This is called by ``__init__``, so you only need to - call this directly in between analyses of different documents. - """ - self.result = {"encoding": None, "confidence": 0.0, "language": None} - self.done = False - self._got_data = False - self._has_win_bytes = False - self._input_state = InputState.PURE_ASCII - self._last_char = b"" - if self._esc_charset_prober: - self._esc_charset_prober.reset() - if self._utf1632_prober: - self._utf1632_prober.reset() - for prober in self._charset_probers: - prober.reset() - - def feed(self, byte_str: Union[bytes, bytearray]) -> None: - """ - Takes a chunk of a document and feeds it through all of the relevant - charset probers. - - After calling ``feed``, you can check the value of the ``done`` - attribute to see if you need to continue feeding the - ``UniversalDetector`` more data, or if it has made a prediction - (in the ``result`` attribute). - - .. note:: - You should always call ``close`` when you're done feeding in your - document if ``done`` is not already ``True``. - """ - if self.done: - return - - if not byte_str: - return - - if not isinstance(byte_str, bytearray): - byte_str = bytearray(byte_str) - - # First check for known BOMs, since these are guaranteed to be correct - if not self._got_data: - # If the data starts with BOM, we know it is UTF - if byte_str.startswith(codecs.BOM_UTF8): - # EF BB BF UTF-8 with BOM - self.result = { - "encoding": "UTF-8-SIG", - "confidence": 1.0, - "language": "", - } - elif byte_str.startswith((codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE)): - # FF FE 00 00 UTF-32, little-endian BOM - # 00 00 FE FF UTF-32, big-endian BOM - self.result = {"encoding": "UTF-32", "confidence": 1.0, "language": ""} - elif byte_str.startswith(b"\xFE\xFF\x00\x00"): - # FE FF 00 00 UCS-4, unusual octet order BOM (3412) - self.result = { - # TODO: This encoding is not supported by Python. Should remove? - "encoding": "X-ISO-10646-UCS-4-3412", - "confidence": 1.0, - "language": "", - } - elif byte_str.startswith(b"\x00\x00\xFF\xFE"): - # 00 00 FF FE UCS-4, unusual octet order BOM (2143) - self.result = { - # TODO: This encoding is not supported by Python. Should remove? - "encoding": "X-ISO-10646-UCS-4-2143", - "confidence": 1.0, - "language": "", - } - elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): - # FF FE UTF-16, little endian BOM - # FE FF UTF-16, big endian BOM - self.result = {"encoding": "UTF-16", "confidence": 1.0, "language": ""} - - self._got_data = True - if self.result["encoding"] is not None: - self.done = True - return - - # If none of those matched and we've only see ASCII so far, check - # for high bytes and escape sequences - if self._input_state == InputState.PURE_ASCII: - if self.HIGH_BYTE_DETECTOR.search(byte_str): - self._input_state = InputState.HIGH_BYTE - elif ( - self._input_state == InputState.PURE_ASCII - and self.ESC_DETECTOR.search(self._last_char + byte_str) - ): - self._input_state = InputState.ESC_ASCII - - self._last_char = byte_str[-1:] - - # next we will look to see if it is appears to be either a UTF-16 or - # UTF-32 encoding - if not self._utf1632_prober: - self._utf1632_prober = UTF1632Prober() - - if self._utf1632_prober.state == ProbingState.DETECTING: - if self._utf1632_prober.feed(byte_str) == ProbingState.FOUND_IT: - self.result = { - "encoding": self._utf1632_prober.charset_name, - "confidence": self._utf1632_prober.get_confidence(), - "language": "", - } - self.done = True - return - - # If we've seen escape sequences, use the EscCharSetProber, which - # uses a simple state machine to check for known escape sequences in - # HZ and ISO-2022 encodings, since those are the only encodings that - # use such sequences. - if self._input_state == InputState.ESC_ASCII: - if not self._esc_charset_prober: - self._esc_charset_prober = EscCharSetProber(self.lang_filter) - if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: - self.result = { - "encoding": self._esc_charset_prober.charset_name, - "confidence": self._esc_charset_prober.get_confidence(), - "language": self._esc_charset_prober.language, - } - self.done = True - # If we've seen high bytes (i.e., those with values greater than 127), - # we need to do more complicated checks using all our multi-byte and - # single-byte probers that are left. The single-byte probers - # use character bigram distributions to determine the encoding, whereas - # the multi-byte probers use a combination of character unigram and - # bigram distributions. - elif self._input_state == InputState.HIGH_BYTE: - if not self._charset_probers: - self._charset_probers = [MBCSGroupProber(self.lang_filter)] - # If we're checking non-CJK encodings, use single-byte prober - if self.lang_filter & LanguageFilter.NON_CJK: - self._charset_probers.append(SBCSGroupProber()) - self._charset_probers.append(Latin1Prober()) - self._charset_probers.append(MacRomanProber()) - for prober in self._charset_probers: - if prober.feed(byte_str) == ProbingState.FOUND_IT: - self.result = { - "encoding": prober.charset_name, - "confidence": prober.get_confidence(), - "language": prober.language, - } - self.done = True - break - if self.WIN_BYTE_DETECTOR.search(byte_str): - self._has_win_bytes = True - - def close(self) -> ResultDict: - """ - Stop analyzing the current document and come up with a final - prediction. - - :returns: The ``result`` attribute, a ``dict`` with the keys - `encoding`, `confidence`, and `language`. - """ - # Don't bother with checks if we're already done - if self.done: - return self.result - self.done = True - - if not self._got_data: - self.logger.debug("no data received!") - - # Default to ASCII if it is all we've seen so far - elif self._input_state == InputState.PURE_ASCII: - self.result = {"encoding": "ascii", "confidence": 1.0, "language": ""} - - # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD - elif self._input_state == InputState.HIGH_BYTE: - prober_confidence = None - max_prober_confidence = 0.0 - max_prober = None - for prober in self._charset_probers: - if not prober: - continue - prober_confidence = prober.get_confidence() - if prober_confidence > max_prober_confidence: - max_prober_confidence = prober_confidence - max_prober = prober - if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): - charset_name = max_prober.charset_name - assert charset_name is not None - lower_charset_name = charset_name.lower() - confidence = max_prober.get_confidence() - # Use Windows encoding name instead of ISO-8859 if we saw any - # extra Windows-specific bytes - if lower_charset_name.startswith("iso-8859"): - if self._has_win_bytes: - charset_name = self.ISO_WIN_MAP.get( - lower_charset_name, charset_name - ) - # Rename legacy encodings with superset encodings if asked - if self.should_rename_legacy: - charset_name = self.LEGACY_MAP.get( - (charset_name or "").lower(), charset_name - ) - self.result = { - "encoding": charset_name, - "confidence": confidence, - "language": max_prober.language, - } - - # Log all prober confidences if none met MINIMUM_THRESHOLD - if self.logger.getEffectiveLevel() <= logging.DEBUG: - if self.result["encoding"] is None: - self.logger.debug("no probers hit minimum threshold") - for group_prober in self._charset_probers: - if not group_prober: - continue - if isinstance(group_prober, CharSetGroupProber): - for prober in group_prober.probers: - self.logger.debug( - "%s %s confidence = %s", - prober.charset_name, - prober.language, - prober.get_confidence(), - ) - else: - self.logger.debug( - "%s %s confidence = %s", - group_prober.charset_name, - group_prober.language, - group_prober.get_confidence(), - ) - return self.result diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py deleted file mode 100644 index 6bdec63..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py +++ /dev/null @@ -1,225 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# -# Contributor(s): -# Jason Zavaglia -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### -from typing import List, Union - -from .charsetprober import CharSetProber -from .enums import ProbingState - - -class UTF1632Prober(CharSetProber): - """ - This class simply looks for occurrences of zero bytes, and infers - whether the file is UTF16 or UTF32 (low-endian or big-endian) - For instance, files looking like ( \0 \0 \0 [nonzero] )+ - have a good probability to be UTF32BE. Files looking like ( \0 [nonzero] )+ - may be guessed to be UTF16BE, and inversely for little-endian varieties. - """ - - # how many logical characters to scan before feeling confident of prediction - MIN_CHARS_FOR_DETECTION = 20 - # a fixed constant ratio of expected zeros or non-zeros in modulo-position. - EXPECTED_RATIO = 0.94 - - def __init__(self) -> None: - super().__init__() - self.position = 0 - self.zeros_at_mod = [0] * 4 - self.nonzeros_at_mod = [0] * 4 - self._state = ProbingState.DETECTING - self.quad = [0, 0, 0, 0] - self.invalid_utf16be = False - self.invalid_utf16le = False - self.invalid_utf32be = False - self.invalid_utf32le = False - self.first_half_surrogate_pair_detected_16be = False - self.first_half_surrogate_pair_detected_16le = False - self.reset() - - def reset(self) -> None: - super().reset() - self.position = 0 - self.zeros_at_mod = [0] * 4 - self.nonzeros_at_mod = [0] * 4 - self._state = ProbingState.DETECTING - self.invalid_utf16be = False - self.invalid_utf16le = False - self.invalid_utf32be = False - self.invalid_utf32le = False - self.first_half_surrogate_pair_detected_16be = False - self.first_half_surrogate_pair_detected_16le = False - self.quad = [0, 0, 0, 0] - - @property - def charset_name(self) -> str: - if self.is_likely_utf32be(): - return "utf-32be" - if self.is_likely_utf32le(): - return "utf-32le" - if self.is_likely_utf16be(): - return "utf-16be" - if self.is_likely_utf16le(): - return "utf-16le" - # default to something valid - return "utf-16" - - @property - def language(self) -> str: - return "" - - def approx_32bit_chars(self) -> float: - return max(1.0, self.position / 4.0) - - def approx_16bit_chars(self) -> float: - return max(1.0, self.position / 2.0) - - def is_likely_utf32be(self) -> bool: - approx_chars = self.approx_32bit_chars() - return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( - self.zeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO - and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO - and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO - and self.nonzeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO - and not self.invalid_utf32be - ) - - def is_likely_utf32le(self) -> bool: - approx_chars = self.approx_32bit_chars() - return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( - self.nonzeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO - and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO - and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO - and self.zeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO - and not self.invalid_utf32le - ) - - def is_likely_utf16be(self) -> bool: - approx_chars = self.approx_16bit_chars() - return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( - (self.nonzeros_at_mod[1] + self.nonzeros_at_mod[3]) / approx_chars - > self.EXPECTED_RATIO - and (self.zeros_at_mod[0] + self.zeros_at_mod[2]) / approx_chars - > self.EXPECTED_RATIO - and not self.invalid_utf16be - ) - - def is_likely_utf16le(self) -> bool: - approx_chars = self.approx_16bit_chars() - return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( - (self.nonzeros_at_mod[0] + self.nonzeros_at_mod[2]) / approx_chars - > self.EXPECTED_RATIO - and (self.zeros_at_mod[1] + self.zeros_at_mod[3]) / approx_chars - > self.EXPECTED_RATIO - and not self.invalid_utf16le - ) - - def validate_utf32_characters(self, quad: List[int]) -> None: - """ - Validate if the quad of bytes is valid UTF-32. - - UTF-32 is valid in the range 0x00000000 - 0x0010FFFF - excluding 0x0000D800 - 0x0000DFFF - - https://en.wikipedia.org/wiki/UTF-32 - """ - if ( - quad[0] != 0 - or quad[1] > 0x10 - or (quad[0] == 0 and quad[1] == 0 and 0xD8 <= quad[2] <= 0xDF) - ): - self.invalid_utf32be = True - if ( - quad[3] != 0 - or quad[2] > 0x10 - or (quad[3] == 0 and quad[2] == 0 and 0xD8 <= quad[1] <= 0xDF) - ): - self.invalid_utf32le = True - - def validate_utf16_characters(self, pair: List[int]) -> None: - """ - Validate if the pair of bytes is valid UTF-16. - - UTF-16 is valid in the range 0x0000 - 0xFFFF excluding 0xD800 - 0xFFFF - with an exception for surrogate pairs, which must be in the range - 0xD800-0xDBFF followed by 0xDC00-0xDFFF - - https://en.wikipedia.org/wiki/UTF-16 - """ - if not self.first_half_surrogate_pair_detected_16be: - if 0xD8 <= pair[0] <= 0xDB: - self.first_half_surrogate_pair_detected_16be = True - elif 0xDC <= pair[0] <= 0xDF: - self.invalid_utf16be = True - else: - if 0xDC <= pair[0] <= 0xDF: - self.first_half_surrogate_pair_detected_16be = False - else: - self.invalid_utf16be = True - - if not self.first_half_surrogate_pair_detected_16le: - if 0xD8 <= pair[1] <= 0xDB: - self.first_half_surrogate_pair_detected_16le = True - elif 0xDC <= pair[1] <= 0xDF: - self.invalid_utf16le = True - else: - if 0xDC <= pair[1] <= 0xDF: - self.first_half_surrogate_pair_detected_16le = False - else: - self.invalid_utf16le = True - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - for c in byte_str: - mod4 = self.position % 4 - self.quad[mod4] = c - if mod4 == 3: - self.validate_utf32_characters(self.quad) - self.validate_utf16_characters(self.quad[0:2]) - self.validate_utf16_characters(self.quad[2:4]) - if c == 0: - self.zeros_at_mod[mod4] += 1 - else: - self.nonzeros_at_mod[mod4] += 1 - self.position += 1 - return self.state - - @property - def state(self) -> ProbingState: - if self._state in {ProbingState.NOT_ME, ProbingState.FOUND_IT}: - # terminal, decided states - return self._state - if self.get_confidence() > 0.80: - self._state = ProbingState.FOUND_IT - elif self.position > 4 * 1024: - # if we get to 4kb into the file, and we can't conclude it's UTF, - # let's give up - self._state = ProbingState.NOT_ME - return self._state - - def get_confidence(self) -> float: - return ( - 0.85 - if ( - self.is_likely_utf16le() - or self.is_likely_utf16be() - or self.is_likely_utf32le() - or self.is_likely_utf32be() - ) - else 0.00 - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py deleted file mode 100644 index d96354d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py +++ /dev/null @@ -1,82 +0,0 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from typing import Union - -from .charsetprober import CharSetProber -from .codingstatemachine import CodingStateMachine -from .enums import MachineState, ProbingState -from .mbcssm import UTF8_SM_MODEL - - -class UTF8Prober(CharSetProber): - ONE_CHAR_PROB = 0.5 - - def __init__(self) -> None: - super().__init__() - self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) - self._num_mb_chars = 0 - self.reset() - - def reset(self) -> None: - super().reset() - self.coding_sm.reset() - self._num_mb_chars = 0 - - @property - def charset_name(self) -> str: - return "utf-8" - - @property - def language(self) -> str: - return "" - - def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: - for c in byte_str: - coding_state = self.coding_sm.next_state(c) - if coding_state == MachineState.ERROR: - self._state = ProbingState.NOT_ME - break - if coding_state == MachineState.ITS_ME: - self._state = ProbingState.FOUND_IT - break - if coding_state == MachineState.START: - if self.coding_sm.get_current_charlen() >= 2: - self._num_mb_chars += 1 - - if self.state == ProbingState.DETECTING: - if self.get_confidence() > self.SHORTCUT_THRESHOLD: - self._state = ProbingState.FOUND_IT - - return self.state - - def get_confidence(self) -> float: - unlike = 0.99 - if self._num_mb_chars < 6: - unlike *= self.ONE_CHAR_PROB**self._num_mb_chars - return 1.0 - unlike - return unlike diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py deleted file mode 100644 index c5e9d85..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py +++ /dev/null @@ -1,9 +0,0 @@ -""" -This module exists only to simplify retrieving the version number of chardet -from within setuptools and from chardet subpackages. - -:author: Dan Blanchard (dan.blanchard@gmail.com) -""" - -__version__ = "5.1.0" -VERSION = __version__.split(".") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py deleted file mode 100644 index 383101c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console -from .ansi import Fore, Back, Style, Cursor -from .ansitowin32 import AnsiToWin32 - -__version__ = '0.4.6' - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3002f3c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc deleted file mode 100644 index f15c5e2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc deleted file mode 100644 index c747449..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc deleted file mode 100644 index 54b3beb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc deleted file mode 100644 index 9cfe3e1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc deleted file mode 100644 index 4810f14..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py deleted file mode 100644 index 11ec695..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -''' -This module generates ANSI character codes to printing colors to terminals. -See: http://en.wikipedia.org/wiki/ANSI_escape_code -''' - -CSI = '\033[' -OSC = '\033]' -BEL = '\a' - - -def code_to_chars(code): - return CSI + str(code) + 'm' - -def set_title(title): - return OSC + '2;' + title + BEL - -def clear_screen(mode=2): - return CSI + str(mode) + 'J' - -def clear_line(mode=2): - return CSI + str(mode) + 'K' - - -class AnsiCodes(object): - def __init__(self): - # the subclasses declare class attributes which are numbers. - # Upon instantiation we define instance attributes, which are the same - # as the class attributes but wrapped with the ANSI escape sequence - for name in dir(self): - if not name.startswith('_'): - value = getattr(self, name) - setattr(self, name, code_to_chars(value)) - - -class AnsiCursor(object): - def UP(self, n=1): - return CSI + str(n) + 'A' - def DOWN(self, n=1): - return CSI + str(n) + 'B' - def FORWARD(self, n=1): - return CSI + str(n) + 'C' - def BACK(self, n=1): - return CSI + str(n) + 'D' - def POS(self, x=1, y=1): - return CSI + str(y) + ';' + str(x) + 'H' - - -class AnsiFore(AnsiCodes): - BLACK = 30 - RED = 31 - GREEN = 32 - YELLOW = 33 - BLUE = 34 - MAGENTA = 35 - CYAN = 36 - WHITE = 37 - RESET = 39 - - # These are fairly well supported, but not part of the standard. - LIGHTBLACK_EX = 90 - LIGHTRED_EX = 91 - LIGHTGREEN_EX = 92 - LIGHTYELLOW_EX = 93 - LIGHTBLUE_EX = 94 - LIGHTMAGENTA_EX = 95 - LIGHTCYAN_EX = 96 - LIGHTWHITE_EX = 97 - - -class AnsiBack(AnsiCodes): - BLACK = 40 - RED = 41 - GREEN = 42 - YELLOW = 43 - BLUE = 44 - MAGENTA = 45 - CYAN = 46 - WHITE = 47 - RESET = 49 - - # These are fairly well supported, but not part of the standard. - LIGHTBLACK_EX = 100 - LIGHTRED_EX = 101 - LIGHTGREEN_EX = 102 - LIGHTYELLOW_EX = 103 - LIGHTBLUE_EX = 104 - LIGHTMAGENTA_EX = 105 - LIGHTCYAN_EX = 106 - LIGHTWHITE_EX = 107 - - -class AnsiStyle(AnsiCodes): - BRIGHT = 1 - DIM = 2 - NORMAL = 22 - RESET_ALL = 0 - -Fore = AnsiFore() -Back = AnsiBack() -Style = AnsiStyle() -Cursor = AnsiCursor() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py deleted file mode 100644 index abf209e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py +++ /dev/null @@ -1,277 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import re -import sys -import os - -from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style, BEL -from .winterm import enable_vt_processing, WinTerm, WinColor, WinStyle -from .win32 import windll, winapi_test - - -winterm = None -if windll is not None: - winterm = WinTerm() - - -class StreamWrapper(object): - ''' - Wraps a stream (such as stdout), acting as a transparent proxy for all - attribute access apart from method 'write()', which is delegated to our - Converter instance. - ''' - def __init__(self, wrapped, converter): - # double-underscore everything to prevent clashes with names of - # attributes on the wrapped stream object. - self.__wrapped = wrapped - self.__convertor = converter - - def __getattr__(self, name): - return getattr(self.__wrapped, name) - - def __enter__(self, *args, **kwargs): - # special method lookup bypasses __getattr__/__getattribute__, see - # https://stackoverflow.com/questions/12632894/why-doesnt-getattr-work-with-exit - # thus, contextlib magic methods are not proxied via __getattr__ - return self.__wrapped.__enter__(*args, **kwargs) - - def __exit__(self, *args, **kwargs): - return self.__wrapped.__exit__(*args, **kwargs) - - def __setstate__(self, state): - self.__dict__ = state - - def __getstate__(self): - return self.__dict__ - - def write(self, text): - self.__convertor.write(text) - - def isatty(self): - stream = self.__wrapped - if 'PYCHARM_HOSTED' in os.environ: - if stream is not None and (stream is sys.__stdout__ or stream is sys.__stderr__): - return True - try: - stream_isatty = stream.isatty - except AttributeError: - return False - else: - return stream_isatty() - - @property - def closed(self): - stream = self.__wrapped - try: - return stream.closed - # AttributeError in the case that the stream doesn't support being closed - # ValueError for the case that the stream has already been detached when atexit runs - except (AttributeError, ValueError): - return True - - -class AnsiToWin32(object): - ''' - Implements a 'write()' method which, on Windows, will strip ANSI character - sequences from the text, and if outputting to a tty, will convert them into - win32 function calls. - ''' - ANSI_CSI_RE = re.compile('\001?\033\\[((?:\\d|;)*)([a-zA-Z])\002?') # Control Sequence Introducer - ANSI_OSC_RE = re.compile('\001?\033\\]([^\a]*)(\a)\002?') # Operating System Command - - def __init__(self, wrapped, convert=None, strip=None, autoreset=False): - # The wrapped stream (normally sys.stdout or sys.stderr) - self.wrapped = wrapped - - # should we reset colors to defaults after every .write() - self.autoreset = autoreset - - # create the proxy wrapping our output stream - self.stream = StreamWrapper(wrapped, self) - - on_windows = os.name == 'nt' - # We test if the WinAPI works, because even if we are on Windows - # we may be using a terminal that doesn't support the WinAPI - # (e.g. Cygwin Terminal). In this case it's up to the terminal - # to support the ANSI codes. - conversion_supported = on_windows and winapi_test() - try: - fd = wrapped.fileno() - except Exception: - fd = -1 - system_has_native_ansi = not on_windows or enable_vt_processing(fd) - have_tty = not self.stream.closed and self.stream.isatty() - need_conversion = conversion_supported and not system_has_native_ansi - - # should we strip ANSI sequences from our output? - if strip is None: - strip = need_conversion or not have_tty - self.strip = strip - - # should we should convert ANSI sequences into win32 calls? - if convert is None: - convert = need_conversion and have_tty - self.convert = convert - - # dict of ansi codes to win32 functions and parameters - self.win32_calls = self.get_win32_calls() - - # are we wrapping stderr? - self.on_stderr = self.wrapped is sys.stderr - - def should_wrap(self): - ''' - True if this class is actually needed. If false, then the output - stream will not be affected, nor will win32 calls be issued, so - wrapping stdout is not actually required. This will generally be - False on non-Windows platforms, unless optional functionality like - autoreset has been requested using kwargs to init() - ''' - return self.convert or self.strip or self.autoreset - - def get_win32_calls(self): - if self.convert and winterm: - return { - AnsiStyle.RESET_ALL: (winterm.reset_all, ), - AnsiStyle.BRIGHT: (winterm.style, WinStyle.BRIGHT), - AnsiStyle.DIM: (winterm.style, WinStyle.NORMAL), - AnsiStyle.NORMAL: (winterm.style, WinStyle.NORMAL), - AnsiFore.BLACK: (winterm.fore, WinColor.BLACK), - AnsiFore.RED: (winterm.fore, WinColor.RED), - AnsiFore.GREEN: (winterm.fore, WinColor.GREEN), - AnsiFore.YELLOW: (winterm.fore, WinColor.YELLOW), - AnsiFore.BLUE: (winterm.fore, WinColor.BLUE), - AnsiFore.MAGENTA: (winterm.fore, WinColor.MAGENTA), - AnsiFore.CYAN: (winterm.fore, WinColor.CYAN), - AnsiFore.WHITE: (winterm.fore, WinColor.GREY), - AnsiFore.RESET: (winterm.fore, ), - AnsiFore.LIGHTBLACK_EX: (winterm.fore, WinColor.BLACK, True), - AnsiFore.LIGHTRED_EX: (winterm.fore, WinColor.RED, True), - AnsiFore.LIGHTGREEN_EX: (winterm.fore, WinColor.GREEN, True), - AnsiFore.LIGHTYELLOW_EX: (winterm.fore, WinColor.YELLOW, True), - AnsiFore.LIGHTBLUE_EX: (winterm.fore, WinColor.BLUE, True), - AnsiFore.LIGHTMAGENTA_EX: (winterm.fore, WinColor.MAGENTA, True), - AnsiFore.LIGHTCYAN_EX: (winterm.fore, WinColor.CYAN, True), - AnsiFore.LIGHTWHITE_EX: (winterm.fore, WinColor.GREY, True), - AnsiBack.BLACK: (winterm.back, WinColor.BLACK), - AnsiBack.RED: (winterm.back, WinColor.RED), - AnsiBack.GREEN: (winterm.back, WinColor.GREEN), - AnsiBack.YELLOW: (winterm.back, WinColor.YELLOW), - AnsiBack.BLUE: (winterm.back, WinColor.BLUE), - AnsiBack.MAGENTA: (winterm.back, WinColor.MAGENTA), - AnsiBack.CYAN: (winterm.back, WinColor.CYAN), - AnsiBack.WHITE: (winterm.back, WinColor.GREY), - AnsiBack.RESET: (winterm.back, ), - AnsiBack.LIGHTBLACK_EX: (winterm.back, WinColor.BLACK, True), - AnsiBack.LIGHTRED_EX: (winterm.back, WinColor.RED, True), - AnsiBack.LIGHTGREEN_EX: (winterm.back, WinColor.GREEN, True), - AnsiBack.LIGHTYELLOW_EX: (winterm.back, WinColor.YELLOW, True), - AnsiBack.LIGHTBLUE_EX: (winterm.back, WinColor.BLUE, True), - AnsiBack.LIGHTMAGENTA_EX: (winterm.back, WinColor.MAGENTA, True), - AnsiBack.LIGHTCYAN_EX: (winterm.back, WinColor.CYAN, True), - AnsiBack.LIGHTWHITE_EX: (winterm.back, WinColor.GREY, True), - } - return dict() - - def write(self, text): - if self.strip or self.convert: - self.write_and_convert(text) - else: - self.wrapped.write(text) - self.wrapped.flush() - if self.autoreset: - self.reset_all() - - - def reset_all(self): - if self.convert: - self.call_win32('m', (0,)) - elif not self.strip and not self.stream.closed: - self.wrapped.write(Style.RESET_ALL) - - - def write_and_convert(self, text): - ''' - Write the given text to our wrapped stream, stripping any ANSI - sequences from the text, and optionally converting them into win32 - calls. - ''' - cursor = 0 - text = self.convert_osc(text) - for match in self.ANSI_CSI_RE.finditer(text): - start, end = match.span() - self.write_plain_text(text, cursor, start) - self.convert_ansi(*match.groups()) - cursor = end - self.write_plain_text(text, cursor, len(text)) - - - def write_plain_text(self, text, start, end): - if start < end: - self.wrapped.write(text[start:end]) - self.wrapped.flush() - - - def convert_ansi(self, paramstring, command): - if self.convert: - params = self.extract_params(command, paramstring) - self.call_win32(command, params) - - - def extract_params(self, command, paramstring): - if command in 'Hf': - params = tuple(int(p) if len(p) != 0 else 1 for p in paramstring.split(';')) - while len(params) < 2: - # defaults: - params = params + (1,) - else: - params = tuple(int(p) for p in paramstring.split(';') if len(p) != 0) - if len(params) == 0: - # defaults: - if command in 'JKm': - params = (0,) - elif command in 'ABCD': - params = (1,) - - return params - - - def call_win32(self, command, params): - if command == 'm': - for param in params: - if param in self.win32_calls: - func_args = self.win32_calls[param] - func = func_args[0] - args = func_args[1:] - kwargs = dict(on_stderr=self.on_stderr) - func(*args, **kwargs) - elif command in 'J': - winterm.erase_screen(params[0], on_stderr=self.on_stderr) - elif command in 'K': - winterm.erase_line(params[0], on_stderr=self.on_stderr) - elif command in 'Hf': # cursor position - absolute - winterm.set_cursor_position(params, on_stderr=self.on_stderr) - elif command in 'ABCD': # cursor position - relative - n = params[0] - # A - up, B - down, C - forward, D - back - x, y = {'A': (0, -n), 'B': (0, n), 'C': (n, 0), 'D': (-n, 0)}[command] - winterm.cursor_adjust(x, y, on_stderr=self.on_stderr) - - - def convert_osc(self, text): - for match in self.ANSI_OSC_RE.finditer(text): - start, end = match.span() - text = text[:start] + text[end:] - paramstring, command = match.groups() - if command == BEL: - if paramstring.count(";") == 1: - params = paramstring.split(";") - # 0 - change title and icon (we will only change title) - # 1 - change icon (we don't support this) - # 2 - change title - if params[0] in '02': - winterm.set_title(params[1]) - return text - - - def flush(self): - self.wrapped.flush() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py deleted file mode 100644 index d5fd4b7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import atexit -import contextlib -import sys - -from .ansitowin32 import AnsiToWin32 - - -def _wipe_internal_state_for_tests(): - global orig_stdout, orig_stderr - orig_stdout = None - orig_stderr = None - - global wrapped_stdout, wrapped_stderr - wrapped_stdout = None - wrapped_stderr = None - - global atexit_done - atexit_done = False - - global fixed_windows_console - fixed_windows_console = False - - try: - # no-op if it wasn't registered - atexit.unregister(reset_all) - except AttributeError: - # python 2: no atexit.unregister. Oh well, we did our best. - pass - - -def reset_all(): - if AnsiToWin32 is not None: # Issue #74: objects might become None at exit - AnsiToWin32(orig_stdout).reset_all() - - -def init(autoreset=False, convert=None, strip=None, wrap=True): - - if not wrap and any([autoreset, convert, strip]): - raise ValueError('wrap=False conflicts with any other arg=True') - - global wrapped_stdout, wrapped_stderr - global orig_stdout, orig_stderr - - orig_stdout = sys.stdout - orig_stderr = sys.stderr - - if sys.stdout is None: - wrapped_stdout = None - else: - sys.stdout = wrapped_stdout = \ - wrap_stream(orig_stdout, convert, strip, autoreset, wrap) - if sys.stderr is None: - wrapped_stderr = None - else: - sys.stderr = wrapped_stderr = \ - wrap_stream(orig_stderr, convert, strip, autoreset, wrap) - - global atexit_done - if not atexit_done: - atexit.register(reset_all) - atexit_done = True - - -def deinit(): - if orig_stdout is not None: - sys.stdout = orig_stdout - if orig_stderr is not None: - sys.stderr = orig_stderr - - -def just_fix_windows_console(): - global fixed_windows_console - - if sys.platform != "win32": - return - if fixed_windows_console: - return - if wrapped_stdout is not None or wrapped_stderr is not None: - # Someone already ran init() and it did stuff, so we won't second-guess them - return - - # On newer versions of Windows, AnsiToWin32.__init__ will implicitly enable the - # native ANSI support in the console as a side-effect. We only need to actually - # replace sys.stdout/stderr if we're in the old-style conversion mode. - new_stdout = AnsiToWin32(sys.stdout, convert=None, strip=None, autoreset=False) - if new_stdout.convert: - sys.stdout = new_stdout - new_stderr = AnsiToWin32(sys.stderr, convert=None, strip=None, autoreset=False) - if new_stderr.convert: - sys.stderr = new_stderr - - fixed_windows_console = True - -@contextlib.contextmanager -def colorama_text(*args, **kwargs): - init(*args, **kwargs) - try: - yield - finally: - deinit() - - -def reinit(): - if wrapped_stdout is not None: - sys.stdout = wrapped_stdout - if wrapped_stderr is not None: - sys.stderr = wrapped_stderr - - -def wrap_stream(stream, convert, strip, autoreset, wrap): - if wrap: - wrapper = AnsiToWin32(stream, - convert=convert, strip=strip, autoreset=autoreset) - if wrapper.should_wrap(): - stream = wrapper.stream - return stream - - -# Use this for initial setup as well, to reduce code duplication -_wipe_internal_state_for_tests() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py deleted file mode 100644 index 8c5661e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py +++ /dev/null @@ -1 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e3a5b29..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc deleted file mode 100644 index 2577f44..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc deleted file mode 100644 index b794f0d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc deleted file mode 100644 index d5ba62d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc deleted file mode 100644 index 2026b8f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 1445d7d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc deleted file mode 100644 index 66ab7f8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py deleted file mode 100644 index 0a20c80..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import sys -from unittest import TestCase, main - -from ..ansi import Back, Fore, Style -from ..ansitowin32 import AnsiToWin32 - -stdout_orig = sys.stdout -stderr_orig = sys.stderr - - -class AnsiTest(TestCase): - - def setUp(self): - # sanity check: stdout should be a file or StringIO object. - # It will only be AnsiToWin32 if init() has previously wrapped it - self.assertNotEqual(type(sys.stdout), AnsiToWin32) - self.assertNotEqual(type(sys.stderr), AnsiToWin32) - - def tearDown(self): - sys.stdout = stdout_orig - sys.stderr = stderr_orig - - - def testForeAttributes(self): - self.assertEqual(Fore.BLACK, '\033[30m') - self.assertEqual(Fore.RED, '\033[31m') - self.assertEqual(Fore.GREEN, '\033[32m') - self.assertEqual(Fore.YELLOW, '\033[33m') - self.assertEqual(Fore.BLUE, '\033[34m') - self.assertEqual(Fore.MAGENTA, '\033[35m') - self.assertEqual(Fore.CYAN, '\033[36m') - self.assertEqual(Fore.WHITE, '\033[37m') - self.assertEqual(Fore.RESET, '\033[39m') - - # Check the light, extended versions. - self.assertEqual(Fore.LIGHTBLACK_EX, '\033[90m') - self.assertEqual(Fore.LIGHTRED_EX, '\033[91m') - self.assertEqual(Fore.LIGHTGREEN_EX, '\033[92m') - self.assertEqual(Fore.LIGHTYELLOW_EX, '\033[93m') - self.assertEqual(Fore.LIGHTBLUE_EX, '\033[94m') - self.assertEqual(Fore.LIGHTMAGENTA_EX, '\033[95m') - self.assertEqual(Fore.LIGHTCYAN_EX, '\033[96m') - self.assertEqual(Fore.LIGHTWHITE_EX, '\033[97m') - - - def testBackAttributes(self): - self.assertEqual(Back.BLACK, '\033[40m') - self.assertEqual(Back.RED, '\033[41m') - self.assertEqual(Back.GREEN, '\033[42m') - self.assertEqual(Back.YELLOW, '\033[43m') - self.assertEqual(Back.BLUE, '\033[44m') - self.assertEqual(Back.MAGENTA, '\033[45m') - self.assertEqual(Back.CYAN, '\033[46m') - self.assertEqual(Back.WHITE, '\033[47m') - self.assertEqual(Back.RESET, '\033[49m') - - # Check the light, extended versions. - self.assertEqual(Back.LIGHTBLACK_EX, '\033[100m') - self.assertEqual(Back.LIGHTRED_EX, '\033[101m') - self.assertEqual(Back.LIGHTGREEN_EX, '\033[102m') - self.assertEqual(Back.LIGHTYELLOW_EX, '\033[103m') - self.assertEqual(Back.LIGHTBLUE_EX, '\033[104m') - self.assertEqual(Back.LIGHTMAGENTA_EX, '\033[105m') - self.assertEqual(Back.LIGHTCYAN_EX, '\033[106m') - self.assertEqual(Back.LIGHTWHITE_EX, '\033[107m') - - - def testStyleAttributes(self): - self.assertEqual(Style.DIM, '\033[2m') - self.assertEqual(Style.NORMAL, '\033[22m') - self.assertEqual(Style.BRIGHT, '\033[1m') - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py deleted file mode 100644 index 91ca551..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +++ /dev/null @@ -1,294 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -from io import StringIO, TextIOWrapper -from unittest import TestCase, main -try: - from contextlib import ExitStack -except ImportError: - # python 2 - from contextlib2 import ExitStack - -try: - from unittest.mock import MagicMock, Mock, patch -except ImportError: - from mock import MagicMock, Mock, patch - -from ..ansitowin32 import AnsiToWin32, StreamWrapper -from ..win32 import ENABLE_VIRTUAL_TERMINAL_PROCESSING -from .utils import osname - - -class StreamWrapperTest(TestCase): - - def testIsAProxy(self): - mockStream = Mock() - wrapper = StreamWrapper(mockStream, None) - self.assertTrue( wrapper.random_attr is mockStream.random_attr ) - - def testDelegatesWrite(self): - mockStream = Mock() - mockConverter = Mock() - wrapper = StreamWrapper(mockStream, mockConverter) - wrapper.write('hello') - self.assertTrue(mockConverter.write.call_args, (('hello',), {})) - - def testDelegatesContext(self): - mockConverter = Mock() - s = StringIO() - with StreamWrapper(s, mockConverter) as fp: - fp.write(u'hello') - self.assertTrue(s.closed) - - def testProxyNoContextManager(self): - mockStream = MagicMock() - mockStream.__enter__.side_effect = AttributeError() - mockConverter = Mock() - with self.assertRaises(AttributeError) as excinfo: - with StreamWrapper(mockStream, mockConverter) as wrapper: - wrapper.write('hello') - - def test_closed_shouldnt_raise_on_closed_stream(self): - stream = StringIO() - stream.close() - wrapper = StreamWrapper(stream, None) - self.assertEqual(wrapper.closed, True) - - def test_closed_shouldnt_raise_on_detached_stream(self): - stream = TextIOWrapper(StringIO()) - stream.detach() - wrapper = StreamWrapper(stream, None) - self.assertEqual(wrapper.closed, True) - -class AnsiToWin32Test(TestCase): - - def testInit(self): - mockStdout = Mock() - auto = Mock() - stream = AnsiToWin32(mockStdout, autoreset=auto) - self.assertEqual(stream.wrapped, mockStdout) - self.assertEqual(stream.autoreset, auto) - - @patch('colorama.ansitowin32.winterm', None) - @patch('colorama.ansitowin32.winapi_test', lambda *_: True) - def testStripIsTrueOnWindows(self): - with osname('nt'): - mockStdout = Mock() - stream = AnsiToWin32(mockStdout) - self.assertTrue(stream.strip) - - def testStripIsFalseOffWindows(self): - with osname('posix'): - mockStdout = Mock(closed=False) - stream = AnsiToWin32(mockStdout) - self.assertFalse(stream.strip) - - def testWriteStripsAnsi(self): - mockStdout = Mock() - stream = AnsiToWin32(mockStdout) - stream.wrapped = Mock() - stream.write_and_convert = Mock() - stream.strip = True - - stream.write('abc') - - self.assertFalse(stream.wrapped.write.called) - self.assertEqual(stream.write_and_convert.call_args, (('abc',), {})) - - def testWriteDoesNotStripAnsi(self): - mockStdout = Mock() - stream = AnsiToWin32(mockStdout) - stream.wrapped = Mock() - stream.write_and_convert = Mock() - stream.strip = False - stream.convert = False - - stream.write('abc') - - self.assertFalse(stream.write_and_convert.called) - self.assertEqual(stream.wrapped.write.call_args, (('abc',), {})) - - def assert_autoresets(self, convert, autoreset=True): - stream = AnsiToWin32(Mock()) - stream.convert = convert - stream.reset_all = Mock() - stream.autoreset = autoreset - stream.winterm = Mock() - - stream.write('abc') - - self.assertEqual(stream.reset_all.called, autoreset) - - def testWriteAutoresets(self): - self.assert_autoresets(convert=True) - self.assert_autoresets(convert=False) - self.assert_autoresets(convert=True, autoreset=False) - self.assert_autoresets(convert=False, autoreset=False) - - def testWriteAndConvertWritesPlainText(self): - stream = AnsiToWin32(Mock()) - stream.write_and_convert( 'abc' ) - self.assertEqual( stream.wrapped.write.call_args, (('abc',), {}) ) - - def testWriteAndConvertStripsAllValidAnsi(self): - stream = AnsiToWin32(Mock()) - stream.call_win32 = Mock() - data = [ - 'abc\033[mdef', - 'abc\033[0mdef', - 'abc\033[2mdef', - 'abc\033[02mdef', - 'abc\033[002mdef', - 'abc\033[40mdef', - 'abc\033[040mdef', - 'abc\033[0;1mdef', - 'abc\033[40;50mdef', - 'abc\033[50;30;40mdef', - 'abc\033[Adef', - 'abc\033[0Gdef', - 'abc\033[1;20;128Hdef', - ] - for datum in data: - stream.wrapped.write.reset_mock() - stream.write_and_convert( datum ) - self.assertEqual( - [args[0] for args in stream.wrapped.write.call_args_list], - [ ('abc',), ('def',) ] - ) - - def testWriteAndConvertSkipsEmptySnippets(self): - stream = AnsiToWin32(Mock()) - stream.call_win32 = Mock() - stream.write_and_convert( '\033[40m\033[41m' ) - self.assertFalse( stream.wrapped.write.called ) - - def testWriteAndConvertCallsWin32WithParamsAndCommand(self): - stream = AnsiToWin32(Mock()) - stream.convert = True - stream.call_win32 = Mock() - stream.extract_params = Mock(return_value='params') - data = { - 'abc\033[adef': ('a', 'params'), - 'abc\033[;;bdef': ('b', 'params'), - 'abc\033[0cdef': ('c', 'params'), - 'abc\033[;;0;;Gdef': ('G', 'params'), - 'abc\033[1;20;128Hdef': ('H', 'params'), - } - for datum, expected in data.items(): - stream.call_win32.reset_mock() - stream.write_and_convert( datum ) - self.assertEqual( stream.call_win32.call_args[0], expected ) - - def test_reset_all_shouldnt_raise_on_closed_orig_stdout(self): - stream = StringIO() - converter = AnsiToWin32(stream) - stream.close() - - converter.reset_all() - - def test_wrap_shouldnt_raise_on_closed_orig_stdout(self): - stream = StringIO() - stream.close() - with \ - patch("colorama.ansitowin32.os.name", "nt"), \ - patch("colorama.ansitowin32.winapi_test", lambda: True): - converter = AnsiToWin32(stream) - self.assertTrue(converter.strip) - self.assertFalse(converter.convert) - - def test_wrap_shouldnt_raise_on_missing_closed_attr(self): - with \ - patch("colorama.ansitowin32.os.name", "nt"), \ - patch("colorama.ansitowin32.winapi_test", lambda: True): - converter = AnsiToWin32(object()) - self.assertTrue(converter.strip) - self.assertFalse(converter.convert) - - def testExtractParams(self): - stream = AnsiToWin32(Mock()) - data = { - '': (0,), - ';;': (0,), - '2': (2,), - ';;002;;': (2,), - '0;1': (0, 1), - ';;003;;456;;': (3, 456), - '11;22;33;44;55': (11, 22, 33, 44, 55), - } - for datum, expected in data.items(): - self.assertEqual(stream.extract_params('m', datum), expected) - - def testCallWin32UsesLookup(self): - listener = Mock() - stream = AnsiToWin32(listener) - stream.win32_calls = { - 1: (lambda *_, **__: listener(11),), - 2: (lambda *_, **__: listener(22),), - 3: (lambda *_, **__: listener(33),), - } - stream.call_win32('m', (3, 1, 99, 2)) - self.assertEqual( - [a[0][0] for a in listener.call_args_list], - [33, 11, 22] ) - - def test_osc_codes(self): - mockStdout = Mock() - stream = AnsiToWin32(mockStdout, convert=True) - with patch('colorama.ansitowin32.winterm') as winterm: - data = [ - '\033]0\x07', # missing arguments - '\033]0;foo\x08', # wrong OSC command - '\033]0;colorama_test_title\x07', # should work - '\033]1;colorama_test_title\x07', # wrong set command - '\033]2;colorama_test_title\x07', # should work - '\033]' + ';' * 64 + '\x08', # see issue #247 - ] - for code in data: - stream.write(code) - self.assertEqual(winterm.set_title.call_count, 2) - - def test_native_windows_ansi(self): - with ExitStack() as stack: - def p(a, b): - stack.enter_context(patch(a, b, create=True)) - # Pretend to be on Windows - p("colorama.ansitowin32.os.name", "nt") - p("colorama.ansitowin32.winapi_test", lambda: True) - p("colorama.win32.winapi_test", lambda: True) - p("colorama.winterm.win32.windll", "non-None") - p("colorama.winterm.get_osfhandle", lambda _: 1234) - - # Pretend that our mock stream has native ANSI support - p( - "colorama.winterm.win32.GetConsoleMode", - lambda _: ENABLE_VIRTUAL_TERMINAL_PROCESSING, - ) - SetConsoleMode = Mock() - p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) - - stdout = Mock() - stdout.closed = False - stdout.isatty.return_value = True - stdout.fileno.return_value = 1 - - # Our fake console says it has native vt support, so AnsiToWin32 should - # enable that support and do nothing else. - stream = AnsiToWin32(stdout) - SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) - self.assertFalse(stream.strip) - self.assertFalse(stream.convert) - self.assertFalse(stream.should_wrap()) - - # Now let's pretend we're on an old Windows console, that doesn't have - # native ANSI support. - p("colorama.winterm.win32.GetConsoleMode", lambda _: 0) - SetConsoleMode = Mock() - p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) - - stream = AnsiToWin32(stdout) - SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) - self.assertTrue(stream.strip) - self.assertTrue(stream.convert) - self.assertTrue(stream.should_wrap()) - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py deleted file mode 100644 index 89f9b07..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py +++ /dev/null @@ -1,189 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import sys -from unittest import TestCase, main, skipUnless - -try: - from unittest.mock import patch, Mock -except ImportError: - from mock import patch, Mock - -from ..ansitowin32 import StreamWrapper -from ..initialise import init, just_fix_windows_console, _wipe_internal_state_for_tests -from .utils import osname, replace_by - -orig_stdout = sys.stdout -orig_stderr = sys.stderr - - -class InitTest(TestCase): - - @skipUnless(sys.stdout.isatty(), "sys.stdout is not a tty") - def setUp(self): - # sanity check - self.assertNotWrapped() - - def tearDown(self): - _wipe_internal_state_for_tests() - sys.stdout = orig_stdout - sys.stderr = orig_stderr - - def assertWrapped(self): - self.assertIsNot(sys.stdout, orig_stdout, 'stdout should be wrapped') - self.assertIsNot(sys.stderr, orig_stderr, 'stderr should be wrapped') - self.assertTrue(isinstance(sys.stdout, StreamWrapper), - 'bad stdout wrapper') - self.assertTrue(isinstance(sys.stderr, StreamWrapper), - 'bad stderr wrapper') - - def assertNotWrapped(self): - self.assertIs(sys.stdout, orig_stdout, 'stdout should not be wrapped') - self.assertIs(sys.stderr, orig_stderr, 'stderr should not be wrapped') - - @patch('colorama.initialise.reset_all') - @patch('colorama.ansitowin32.winapi_test', lambda *_: True) - @patch('colorama.ansitowin32.enable_vt_processing', lambda *_: False) - def testInitWrapsOnWindows(self, _): - with osname("nt"): - init() - self.assertWrapped() - - @patch('colorama.initialise.reset_all') - @patch('colorama.ansitowin32.winapi_test', lambda *_: False) - def testInitDoesntWrapOnEmulatedWindows(self, _): - with osname("nt"): - init() - self.assertNotWrapped() - - def testInitDoesntWrapOnNonWindows(self): - with osname("posix"): - init() - self.assertNotWrapped() - - def testInitDoesntWrapIfNone(self): - with replace_by(None): - init() - # We can't use assertNotWrapped here because replace_by(None) - # changes stdout/stderr already. - self.assertIsNone(sys.stdout) - self.assertIsNone(sys.stderr) - - def testInitAutoresetOnWrapsOnAllPlatforms(self): - with osname("posix"): - init(autoreset=True) - self.assertWrapped() - - def testInitWrapOffDoesntWrapOnWindows(self): - with osname("nt"): - init(wrap=False) - self.assertNotWrapped() - - def testInitWrapOffIncompatibleWithAutoresetOn(self): - self.assertRaises(ValueError, lambda: init(autoreset=True, wrap=False)) - - @patch('colorama.win32.SetConsoleTextAttribute') - @patch('colorama.initialise.AnsiToWin32') - def testAutoResetPassedOn(self, mockATW32, _): - with osname("nt"): - init(autoreset=True) - self.assertEqual(len(mockATW32.call_args_list), 2) - self.assertEqual(mockATW32.call_args_list[1][1]['autoreset'], True) - self.assertEqual(mockATW32.call_args_list[0][1]['autoreset'], True) - - @patch('colorama.initialise.AnsiToWin32') - def testAutoResetChangeable(self, mockATW32): - with osname("nt"): - init() - - init(autoreset=True) - self.assertEqual(len(mockATW32.call_args_list), 4) - self.assertEqual(mockATW32.call_args_list[2][1]['autoreset'], True) - self.assertEqual(mockATW32.call_args_list[3][1]['autoreset'], True) - - init() - self.assertEqual(len(mockATW32.call_args_list), 6) - self.assertEqual( - mockATW32.call_args_list[4][1]['autoreset'], False) - self.assertEqual( - mockATW32.call_args_list[5][1]['autoreset'], False) - - - @patch('colorama.initialise.atexit.register') - def testAtexitRegisteredOnlyOnce(self, mockRegister): - init() - self.assertTrue(mockRegister.called) - mockRegister.reset_mock() - init() - self.assertFalse(mockRegister.called) - - -class JustFixWindowsConsoleTest(TestCase): - def _reset(self): - _wipe_internal_state_for_tests() - sys.stdout = orig_stdout - sys.stderr = orig_stderr - - def tearDown(self): - self._reset() - - @patch("colorama.ansitowin32.winapi_test", lambda: True) - def testJustFixWindowsConsole(self): - if sys.platform != "win32": - # just_fix_windows_console should be a no-op - just_fix_windows_console() - self.assertIs(sys.stdout, orig_stdout) - self.assertIs(sys.stderr, orig_stderr) - else: - def fake_std(): - # Emulate stdout=not a tty, stderr=tty - # to check that we handle both cases correctly - stdout = Mock() - stdout.closed = False - stdout.isatty.return_value = False - stdout.fileno.return_value = 1 - sys.stdout = stdout - - stderr = Mock() - stderr.closed = False - stderr.isatty.return_value = True - stderr.fileno.return_value = 2 - sys.stderr = stderr - - for native_ansi in [False, True]: - with patch( - 'colorama.ansitowin32.enable_vt_processing', - lambda *_: native_ansi - ): - self._reset() - fake_std() - - # Regular single-call test - prev_stdout = sys.stdout - prev_stderr = sys.stderr - just_fix_windows_console() - self.assertIs(sys.stdout, prev_stdout) - if native_ansi: - self.assertIs(sys.stderr, prev_stderr) - else: - self.assertIsNot(sys.stderr, prev_stderr) - - # second call without resetting is always a no-op - prev_stdout = sys.stdout - prev_stderr = sys.stderr - just_fix_windows_console() - self.assertIs(sys.stdout, prev_stdout) - self.assertIs(sys.stderr, prev_stderr) - - self._reset() - fake_std() - - # If init() runs first, just_fix_windows_console should be a no-op - init() - prev_stdout = sys.stdout - prev_stderr = sys.stderr - just_fix_windows_console() - self.assertIs(prev_stdout, sys.stdout) - self.assertIs(prev_stderr, sys.stderr) - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py deleted file mode 100644 index 0f84e4b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import sys -from unittest import TestCase, main - -from ..ansitowin32 import StreamWrapper, AnsiToWin32 -from .utils import pycharm, replace_by, replace_original_by, StreamTTY, StreamNonTTY - - -def is_a_tty(stream): - return StreamWrapper(stream, None).isatty() - -class IsattyTest(TestCase): - - def test_TTY(self): - tty = StreamTTY() - self.assertTrue(is_a_tty(tty)) - with pycharm(): - self.assertTrue(is_a_tty(tty)) - - def test_nonTTY(self): - non_tty = StreamNonTTY() - self.assertFalse(is_a_tty(non_tty)) - with pycharm(): - self.assertFalse(is_a_tty(non_tty)) - - def test_withPycharm(self): - with pycharm(): - self.assertTrue(is_a_tty(sys.stderr)) - self.assertTrue(is_a_tty(sys.stdout)) - - def test_withPycharmTTYOverride(self): - tty = StreamTTY() - with pycharm(), replace_by(tty): - self.assertTrue(is_a_tty(tty)) - - def test_withPycharmNonTTYOverride(self): - non_tty = StreamNonTTY() - with pycharm(), replace_by(non_tty): - self.assertFalse(is_a_tty(non_tty)) - - def test_withPycharmNoneOverride(self): - with pycharm(): - with replace_by(None), replace_original_by(None): - self.assertFalse(is_a_tty(None)) - self.assertFalse(is_a_tty(StreamNonTTY())) - self.assertTrue(is_a_tty(StreamTTY())) - - def test_withPycharmStreamWrapped(self): - with pycharm(): - self.assertTrue(AnsiToWin32(StreamTTY()).stream.isatty()) - self.assertFalse(AnsiToWin32(StreamNonTTY()).stream.isatty()) - self.assertTrue(AnsiToWin32(sys.stdout).stream.isatty()) - self.assertTrue(AnsiToWin32(sys.stderr).stream.isatty()) - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py deleted file mode 100644 index 472fafb..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -from contextlib import contextmanager -from io import StringIO -import sys -import os - - -class StreamTTY(StringIO): - def isatty(self): - return True - -class StreamNonTTY(StringIO): - def isatty(self): - return False - -@contextmanager -def osname(name): - orig = os.name - os.name = name - yield - os.name = orig - -@contextmanager -def replace_by(stream): - orig_stdout = sys.stdout - orig_stderr = sys.stderr - sys.stdout = stream - sys.stderr = stream - yield - sys.stdout = orig_stdout - sys.stderr = orig_stderr - -@contextmanager -def replace_original_by(stream): - orig_stdout = sys.__stdout__ - orig_stderr = sys.__stderr__ - sys.__stdout__ = stream - sys.__stderr__ = stream - yield - sys.__stdout__ = orig_stdout - sys.__stderr__ = orig_stderr - -@contextmanager -def pycharm(): - os.environ["PYCHARM_HOSTED"] = "1" - non_tty = StreamNonTTY() - with replace_by(non_tty), replace_original_by(non_tty): - yield - del os.environ["PYCHARM_HOSTED"] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py deleted file mode 100644 index d0955f9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py +++ /dev/null @@ -1,131 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -import sys -from unittest import TestCase, main, skipUnless - -try: - from unittest.mock import Mock, patch -except ImportError: - from mock import Mock, patch - -from ..winterm import WinColor, WinStyle, WinTerm - - -class WinTermTest(TestCase): - - @patch('colorama.winterm.win32') - def testInit(self, mockWin32): - mockAttr = Mock() - mockAttr.wAttributes = 7 + 6 * 16 + 8 - mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr - term = WinTerm() - self.assertEqual(term._fore, 7) - self.assertEqual(term._back, 6) - self.assertEqual(term._style, 8) - - @skipUnless(sys.platform.startswith("win"), "requires Windows") - def testGetAttrs(self): - term = WinTerm() - - term._fore = 0 - term._back = 0 - term._style = 0 - self.assertEqual(term.get_attrs(), 0) - - term._fore = WinColor.YELLOW - self.assertEqual(term.get_attrs(), WinColor.YELLOW) - - term._back = WinColor.MAGENTA - self.assertEqual( - term.get_attrs(), - WinColor.YELLOW + WinColor.MAGENTA * 16) - - term._style = WinStyle.BRIGHT - self.assertEqual( - term.get_attrs(), - WinColor.YELLOW + WinColor.MAGENTA * 16 + WinStyle.BRIGHT) - - @patch('colorama.winterm.win32') - def testResetAll(self, mockWin32): - mockAttr = Mock() - mockAttr.wAttributes = 1 + 2 * 16 + 8 - mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr - term = WinTerm() - - term.set_console = Mock() - term._fore = -1 - term._back = -1 - term._style = -1 - - term.reset_all() - - self.assertEqual(term._fore, 1) - self.assertEqual(term._back, 2) - self.assertEqual(term._style, 8) - self.assertEqual(term.set_console.called, True) - - @skipUnless(sys.platform.startswith("win"), "requires Windows") - def testFore(self): - term = WinTerm() - term.set_console = Mock() - term._fore = 0 - - term.fore(5) - - self.assertEqual(term._fore, 5) - self.assertEqual(term.set_console.called, True) - - @skipUnless(sys.platform.startswith("win"), "requires Windows") - def testBack(self): - term = WinTerm() - term.set_console = Mock() - term._back = 0 - - term.back(5) - - self.assertEqual(term._back, 5) - self.assertEqual(term.set_console.called, True) - - @skipUnless(sys.platform.startswith("win"), "requires Windows") - def testStyle(self): - term = WinTerm() - term.set_console = Mock() - term._style = 0 - - term.style(22) - - self.assertEqual(term._style, 22) - self.assertEqual(term.set_console.called, True) - - @patch('colorama.winterm.win32') - def testSetConsole(self, mockWin32): - mockAttr = Mock() - mockAttr.wAttributes = 0 - mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr - term = WinTerm() - term.windll = Mock() - - term.set_console() - - self.assertEqual( - mockWin32.SetConsoleTextAttribute.call_args, - ((mockWin32.STDOUT, term.get_attrs()), {}) - ) - - @patch('colorama.winterm.win32') - def testSetConsoleOnStderr(self, mockWin32): - mockAttr = Mock() - mockAttr.wAttributes = 0 - mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr - term = WinTerm() - term.windll = Mock() - - term.set_console(on_stderr=True) - - self.assertEqual( - mockWin32.SetConsoleTextAttribute.call_args, - ((mockWin32.STDERR, term.get_attrs()), {}) - ) - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py deleted file mode 100644 index 841b0e2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py +++ /dev/null @@ -1,180 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. - -# from winbase.h -STDOUT = -11 -STDERR = -12 - -ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004 - -try: - import ctypes - from ctypes import LibraryLoader - windll = LibraryLoader(ctypes.WinDLL) - from ctypes import wintypes -except (AttributeError, ImportError): - windll = None - SetConsoleTextAttribute = lambda *_: None - winapi_test = lambda *_: None -else: - from ctypes import byref, Structure, c_char, POINTER - - COORD = wintypes._COORD - - class CONSOLE_SCREEN_BUFFER_INFO(Structure): - """struct in wincon.h.""" - _fields_ = [ - ("dwSize", COORD), - ("dwCursorPosition", COORD), - ("wAttributes", wintypes.WORD), - ("srWindow", wintypes.SMALL_RECT), - ("dwMaximumWindowSize", COORD), - ] - def __str__(self): - return '(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)' % ( - self.dwSize.Y, self.dwSize.X - , self.dwCursorPosition.Y, self.dwCursorPosition.X - , self.wAttributes - , self.srWindow.Top, self.srWindow.Left, self.srWindow.Bottom, self.srWindow.Right - , self.dwMaximumWindowSize.Y, self.dwMaximumWindowSize.X - ) - - _GetStdHandle = windll.kernel32.GetStdHandle - _GetStdHandle.argtypes = [ - wintypes.DWORD, - ] - _GetStdHandle.restype = wintypes.HANDLE - - _GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo - _GetConsoleScreenBufferInfo.argtypes = [ - wintypes.HANDLE, - POINTER(CONSOLE_SCREEN_BUFFER_INFO), - ] - _GetConsoleScreenBufferInfo.restype = wintypes.BOOL - - _SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute - _SetConsoleTextAttribute.argtypes = [ - wintypes.HANDLE, - wintypes.WORD, - ] - _SetConsoleTextAttribute.restype = wintypes.BOOL - - _SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition - _SetConsoleCursorPosition.argtypes = [ - wintypes.HANDLE, - COORD, - ] - _SetConsoleCursorPosition.restype = wintypes.BOOL - - _FillConsoleOutputCharacterA = windll.kernel32.FillConsoleOutputCharacterA - _FillConsoleOutputCharacterA.argtypes = [ - wintypes.HANDLE, - c_char, - wintypes.DWORD, - COORD, - POINTER(wintypes.DWORD), - ] - _FillConsoleOutputCharacterA.restype = wintypes.BOOL - - _FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute - _FillConsoleOutputAttribute.argtypes = [ - wintypes.HANDLE, - wintypes.WORD, - wintypes.DWORD, - COORD, - POINTER(wintypes.DWORD), - ] - _FillConsoleOutputAttribute.restype = wintypes.BOOL - - _SetConsoleTitleW = windll.kernel32.SetConsoleTitleW - _SetConsoleTitleW.argtypes = [ - wintypes.LPCWSTR - ] - _SetConsoleTitleW.restype = wintypes.BOOL - - _GetConsoleMode = windll.kernel32.GetConsoleMode - _GetConsoleMode.argtypes = [ - wintypes.HANDLE, - POINTER(wintypes.DWORD) - ] - _GetConsoleMode.restype = wintypes.BOOL - - _SetConsoleMode = windll.kernel32.SetConsoleMode - _SetConsoleMode.argtypes = [ - wintypes.HANDLE, - wintypes.DWORD - ] - _SetConsoleMode.restype = wintypes.BOOL - - def _winapi_test(handle): - csbi = CONSOLE_SCREEN_BUFFER_INFO() - success = _GetConsoleScreenBufferInfo( - handle, byref(csbi)) - return bool(success) - - def winapi_test(): - return any(_winapi_test(h) for h in - (_GetStdHandle(STDOUT), _GetStdHandle(STDERR))) - - def GetConsoleScreenBufferInfo(stream_id=STDOUT): - handle = _GetStdHandle(stream_id) - csbi = CONSOLE_SCREEN_BUFFER_INFO() - success = _GetConsoleScreenBufferInfo( - handle, byref(csbi)) - return csbi - - def SetConsoleTextAttribute(stream_id, attrs): - handle = _GetStdHandle(stream_id) - return _SetConsoleTextAttribute(handle, attrs) - - def SetConsoleCursorPosition(stream_id, position, adjust=True): - position = COORD(*position) - # If the position is out of range, do nothing. - if position.Y <= 0 or position.X <= 0: - return - # Adjust for Windows' SetConsoleCursorPosition: - # 1. being 0-based, while ANSI is 1-based. - # 2. expecting (x,y), while ANSI uses (y,x). - adjusted_position = COORD(position.Y - 1, position.X - 1) - if adjust: - # Adjust for viewport's scroll position - sr = GetConsoleScreenBufferInfo(STDOUT).srWindow - adjusted_position.Y += sr.Top - adjusted_position.X += sr.Left - # Resume normal processing - handle = _GetStdHandle(stream_id) - return _SetConsoleCursorPosition(handle, adjusted_position) - - def FillConsoleOutputCharacter(stream_id, char, length, start): - handle = _GetStdHandle(stream_id) - char = c_char(char.encode()) - length = wintypes.DWORD(length) - num_written = wintypes.DWORD(0) - # Note that this is hard-coded for ANSI (vs wide) bytes. - success = _FillConsoleOutputCharacterA( - handle, char, length, start, byref(num_written)) - return num_written.value - - def FillConsoleOutputAttribute(stream_id, attr, length, start): - ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' - handle = _GetStdHandle(stream_id) - attribute = wintypes.WORD(attr) - length = wintypes.DWORD(length) - num_written = wintypes.DWORD(0) - # Note that this is hard-coded for ANSI (vs wide) bytes. - return _FillConsoleOutputAttribute( - handle, attribute, length, start, byref(num_written)) - - def SetConsoleTitle(title): - return _SetConsoleTitleW(title) - - def GetConsoleMode(handle): - mode = wintypes.DWORD() - success = _GetConsoleMode(handle, byref(mode)) - if not success: - raise ctypes.WinError() - return mode.value - - def SetConsoleMode(handle, mode): - success = _SetConsoleMode(handle, mode) - if not success: - raise ctypes.WinError() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py deleted file mode 100644 index aad867e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py +++ /dev/null @@ -1,195 +0,0 @@ -# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. -try: - from msvcrt import get_osfhandle -except ImportError: - def get_osfhandle(_): - raise OSError("This isn't windows!") - - -from . import win32 - -# from wincon.h -class WinColor(object): - BLACK = 0 - BLUE = 1 - GREEN = 2 - CYAN = 3 - RED = 4 - MAGENTA = 5 - YELLOW = 6 - GREY = 7 - -# from wincon.h -class WinStyle(object): - NORMAL = 0x00 # dim text, dim background - BRIGHT = 0x08 # bright text, dim background - BRIGHT_BACKGROUND = 0x80 # dim text, bright background - -class WinTerm(object): - - def __init__(self): - self._default = win32.GetConsoleScreenBufferInfo(win32.STDOUT).wAttributes - self.set_attrs(self._default) - self._default_fore = self._fore - self._default_back = self._back - self._default_style = self._style - # In order to emulate LIGHT_EX in windows, we borrow the BRIGHT style. - # So that LIGHT_EX colors and BRIGHT style do not clobber each other, - # we track them separately, since LIGHT_EX is overwritten by Fore/Back - # and BRIGHT is overwritten by Style codes. - self._light = 0 - - def get_attrs(self): - return self._fore + self._back * 16 + (self._style | self._light) - - def set_attrs(self, value): - self._fore = value & 7 - self._back = (value >> 4) & 7 - self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) - - def reset_all(self, on_stderr=None): - self.set_attrs(self._default) - self.set_console(attrs=self._default) - self._light = 0 - - def fore(self, fore=None, light=False, on_stderr=False): - if fore is None: - fore = self._default_fore - self._fore = fore - # Emulate LIGHT_EX with BRIGHT Style - if light: - self._light |= WinStyle.BRIGHT - else: - self._light &= ~WinStyle.BRIGHT - self.set_console(on_stderr=on_stderr) - - def back(self, back=None, light=False, on_stderr=False): - if back is None: - back = self._default_back - self._back = back - # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style - if light: - self._light |= WinStyle.BRIGHT_BACKGROUND - else: - self._light &= ~WinStyle.BRIGHT_BACKGROUND - self.set_console(on_stderr=on_stderr) - - def style(self, style=None, on_stderr=False): - if style is None: - style = self._default_style - self._style = style - self.set_console(on_stderr=on_stderr) - - def set_console(self, attrs=None, on_stderr=False): - if attrs is None: - attrs = self.get_attrs() - handle = win32.STDOUT - if on_stderr: - handle = win32.STDERR - win32.SetConsoleTextAttribute(handle, attrs) - - def get_position(self, handle): - position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition - # Because Windows coordinates are 0-based, - # and win32.SetConsoleCursorPosition expects 1-based. - position.X += 1 - position.Y += 1 - return position - - def set_cursor_position(self, position=None, on_stderr=False): - if position is None: - # I'm not currently tracking the position, so there is no default. - # position = self.get_position() - return - handle = win32.STDOUT - if on_stderr: - handle = win32.STDERR - win32.SetConsoleCursorPosition(handle, position) - - def cursor_adjust(self, x, y, on_stderr=False): - handle = win32.STDOUT - if on_stderr: - handle = win32.STDERR - position = self.get_position(handle) - adjusted_position = (position.Y + y, position.X + x) - win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) - - def erase_screen(self, mode=0, on_stderr=False): - # 0 should clear from the cursor to the end of the screen. - # 1 should clear from the cursor to the beginning of the screen. - # 2 should clear the entire screen, and move cursor to (1,1) - handle = win32.STDOUT - if on_stderr: - handle = win32.STDERR - csbi = win32.GetConsoleScreenBufferInfo(handle) - # get the number of character cells in the current buffer - cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y - # get number of character cells before current cursor position - cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X - if mode == 0: - from_coord = csbi.dwCursorPosition - cells_to_erase = cells_in_screen - cells_before_cursor - elif mode == 1: - from_coord = win32.COORD(0, 0) - cells_to_erase = cells_before_cursor - elif mode == 2: - from_coord = win32.COORD(0, 0) - cells_to_erase = cells_in_screen - else: - # invalid mode - return - # fill the entire screen with blanks - win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) - # now set the buffer's attributes accordingly - win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) - if mode == 2: - # put the cursor where needed - win32.SetConsoleCursorPosition(handle, (1, 1)) - - def erase_line(self, mode=0, on_stderr=False): - # 0 should clear from the cursor to the end of the line. - # 1 should clear from the cursor to the beginning of the line. - # 2 should clear the entire line. - handle = win32.STDOUT - if on_stderr: - handle = win32.STDERR - csbi = win32.GetConsoleScreenBufferInfo(handle) - if mode == 0: - from_coord = csbi.dwCursorPosition - cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X - elif mode == 1: - from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) - cells_to_erase = csbi.dwCursorPosition.X - elif mode == 2: - from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) - cells_to_erase = csbi.dwSize.X - else: - # invalid mode - return - # fill the entire screen with blanks - win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) - # now set the buffer's attributes accordingly - win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) - - def set_title(self, title): - win32.SetConsoleTitle(title) - - -def enable_vt_processing(fd): - if win32.windll is None or not win32.winapi_test(): - return False - - try: - handle = get_osfhandle(fd) - mode = win32.GetConsoleMode(handle) - win32.SetConsoleMode( - handle, - mode | win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING, - ) - - mode = win32.GetConsoleMode(handle) - if mode & win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING: - return True - # Can get TypeError in testsuite where 'fd' is a Mock() - except (OSError, TypeError): - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py deleted file mode 100644 index e999438..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012-2023 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -import logging - -__version__ = '0.3.8' - - -class DistlibException(Exception): - pass - - -try: - from logging import NullHandler -except ImportError: # pragma: no cover - - class NullHandler(logging.Handler): - - def handle(self, record): - pass - - def emit(self, record): - pass - - def createLock(self): - self.lock = None - - -logger = logging.getLogger(__name__) -logger.addHandler(NullHandler()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 21405bf..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc deleted file mode 100644 index fe9156d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc deleted file mode 100644 index 911a8a2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc deleted file mode 100644 index 2e43dca..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc deleted file mode 100644 index 6436368..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc deleted file mode 100644 index 9aedf9d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc deleted file mode 100644 index 3cd3d25..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc deleted file mode 100644 index 261c867..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc deleted file mode 100644 index d7bc472..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc deleted file mode 100644 index 44da4dc..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc deleted file mode 100644 index 4c7b2c1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-311.pyc deleted file mode 100644 index 32e4329..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc deleted file mode 100644 index 4edef25..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py deleted file mode 100644 index e93dc27..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py +++ /dev/null @@ -1,1138 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2013-2017 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -from __future__ import absolute_import - -import os -import re -import shutil -import sys - -try: - import ssl -except ImportError: # pragma: no cover - ssl = None - -if sys.version_info[0] < 3: # pragma: no cover - from StringIO import StringIO - string_types = basestring, - text_type = unicode - from types import FileType as file_type - import __builtin__ as builtins - import ConfigParser as configparser - from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit - from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, - pathname2url, ContentTooShortError, splittype) - - def quote(s): - if isinstance(s, unicode): - s = s.encode('utf-8') - return _quote(s) - - import urllib2 - from urllib2 import (Request, urlopen, URLError, HTTPError, - HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, - HTTPRedirectHandler, build_opener) - if ssl: - from urllib2 import HTTPSHandler - import httplib - import xmlrpclib - import Queue as queue - from HTMLParser import HTMLParser - import htmlentitydefs - raw_input = raw_input - from itertools import ifilter as filter - from itertools import ifilterfalse as filterfalse - - # Leaving this around for now, in case it needs resurrecting in some way - # _userprog = None - # def splituser(host): - # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" - # global _userprog - # if _userprog is None: - # import re - # _userprog = re.compile('^(.*)@(.*)$') - - # match = _userprog.match(host) - # if match: return match.group(1, 2) - # return None, host - -else: # pragma: no cover - from io import StringIO - string_types = str, - text_type = str - from io import TextIOWrapper as file_type - import builtins - import configparser - from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, - urlsplit, urlunsplit, splittype) - from urllib.request import (urlopen, urlretrieve, Request, url2pathname, - pathname2url, HTTPBasicAuthHandler, - HTTPPasswordMgr, HTTPHandler, - HTTPRedirectHandler, build_opener) - if ssl: - from urllib.request import HTTPSHandler - from urllib.error import HTTPError, URLError, ContentTooShortError - import http.client as httplib - import urllib.request as urllib2 - import xmlrpc.client as xmlrpclib - import queue - from html.parser import HTMLParser - import html.entities as htmlentitydefs - raw_input = input - from itertools import filterfalse - filter = filter - -try: - from ssl import match_hostname, CertificateError -except ImportError: # pragma: no cover - - class CertificateError(ValueError): - pass - - def _dnsname_match(dn, hostname, max_wildcards=1): - """Matching according to RFC 6125, section 6.4.3 - - http://tools.ietf.org/html/rfc6125#section-6.4.3 - """ - pats = [] - if not dn: - return False - - parts = dn.split('.') - leftmost, remainder = parts[0], parts[1:] - - wildcards = leftmost.count('*') - if wildcards > max_wildcards: - # Issue #17980: avoid denials of service by refusing more - # than one wildcard per fragment. A survey of established - # policy among SSL implementations showed it to be a - # reasonable choice. - raise CertificateError( - "too many wildcards in certificate DNS name: " + repr(dn)) - - # speed up common case w/o wildcards - if not wildcards: - return dn.lower() == hostname.lower() - - # RFC 6125, section 6.4.3, subitem 1. - # The client SHOULD NOT attempt to match a presented identifier in which - # the wildcard character comprises a label other than the left-most label. - if leftmost == '*': - # When '*' is a fragment by itself, it matches a non-empty dotless - # fragment. - pats.append('[^.]+') - elif leftmost.startswith('xn--') or hostname.startswith('xn--'): - # RFC 6125, section 6.4.3, subitem 3. - # The client SHOULD NOT attempt to match a presented identifier - # where the wildcard character is embedded within an A-label or - # U-label of an internationalized domain name. - pats.append(re.escape(leftmost)) - else: - # Otherwise, '*' matches any dotless string, e.g. www* - pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) - - # add the remaining fragments, ignore any wildcards - for frag in remainder: - pats.append(re.escape(frag)) - - pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) - return pat.match(hostname) - - def match_hostname(cert, hostname): - """Verify that *cert* (in decoded format as returned by - SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 - rules are followed, but IP addresses are not accepted for *hostname*. - - CertificateError is raised on failure. On success, the function - returns nothing. - """ - if not cert: - raise ValueError("empty or no certificate, match_hostname needs a " - "SSL socket or SSL context with either " - "CERT_OPTIONAL or CERT_REQUIRED") - dnsnames = [] - san = cert.get('subjectAltName', ()) - for key, value in san: - if key == 'DNS': - if _dnsname_match(value, hostname): - return - dnsnames.append(value) - if not dnsnames: - # The subject is only checked when there is no dNSName entry - # in subjectAltName - for sub in cert.get('subject', ()): - for key, value in sub: - # XXX according to RFC 2818, the most specific Common Name - # must be used. - if key == 'commonName': - if _dnsname_match(value, hostname): - return - dnsnames.append(value) - if len(dnsnames) > 1: - raise CertificateError("hostname %r " - "doesn't match either of %s" % - (hostname, ', '.join(map(repr, dnsnames)))) - elif len(dnsnames) == 1: - raise CertificateError("hostname %r " - "doesn't match %r" % - (hostname, dnsnames[0])) - else: - raise CertificateError("no appropriate commonName or " - "subjectAltName fields were found") - - -try: - from types import SimpleNamespace as Container -except ImportError: # pragma: no cover - - class Container(object): - """ - A generic container for when multiple values need to be returned - """ - - def __init__(self, **kwargs): - self.__dict__.update(kwargs) - - -try: - from shutil import which -except ImportError: # pragma: no cover - # Implementation from Python 3.3 - def which(cmd, mode=os.F_OK | os.X_OK, path=None): - """Given a command, mode, and a PATH string, return the path which - conforms to the given mode on the PATH, or None if there is no such - file. - - `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result - of os.environ.get("PATH"), or can be overridden with a custom search - path. - - """ - - # Check that a given file can be accessed with the correct mode. - # Additionally check that `file` is not a directory, as on Windows - # directories pass the os.access check. - def _access_check(fn, mode): - return (os.path.exists(fn) and os.access(fn, mode) - and not os.path.isdir(fn)) - - # If we're given a path with a directory part, look it up directly rather - # than referring to PATH directories. This includes checking relative to the - # current directory, e.g. ./script - if os.path.dirname(cmd): - if _access_check(cmd, mode): - return cmd - return None - - if path is None: - path = os.environ.get("PATH", os.defpath) - if not path: - return None - path = path.split(os.pathsep) - - if sys.platform == "win32": - # The current directory takes precedence on Windows. - if os.curdir not in path: - path.insert(0, os.curdir) - - # PATHEXT is necessary to check on Windows. - pathext = os.environ.get("PATHEXT", "").split(os.pathsep) - # See if the given file matches any of the expected path extensions. - # This will allow us to short circuit when given "python.exe". - # If it does match, only test that one, otherwise we have to try - # others. - if any(cmd.lower().endswith(ext.lower()) for ext in pathext): - files = [cmd] - else: - files = [cmd + ext for ext in pathext] - else: - # On other platforms you don't have things like PATHEXT to tell you - # what file suffixes are executable, so just pass on cmd as-is. - files = [cmd] - - seen = set() - for dir in path: - normdir = os.path.normcase(dir) - if normdir not in seen: - seen.add(normdir) - for thefile in files: - name = os.path.join(dir, thefile) - if _access_check(name, mode): - return name - return None - - -# ZipFile is a context manager in 2.7, but not in 2.6 - -from zipfile import ZipFile as BaseZipFile - -if hasattr(BaseZipFile, '__enter__'): # pragma: no cover - ZipFile = BaseZipFile -else: # pragma: no cover - from zipfile import ZipExtFile as BaseZipExtFile - - class ZipExtFile(BaseZipExtFile): - - def __init__(self, base): - self.__dict__.update(base.__dict__) - - def __enter__(self): - return self - - def __exit__(self, *exc_info): - self.close() - # return None, so if an exception occurred, it will propagate - - class ZipFile(BaseZipFile): - - def __enter__(self): - return self - - def __exit__(self, *exc_info): - self.close() - # return None, so if an exception occurred, it will propagate - - def open(self, *args, **kwargs): - base = BaseZipFile.open(self, *args, **kwargs) - return ZipExtFile(base) - - -try: - from platform import python_implementation -except ImportError: # pragma: no cover - - def python_implementation(): - """Return a string identifying the Python implementation.""" - if 'PyPy' in sys.version: - return 'PyPy' - if os.name == 'java': - return 'Jython' - if sys.version.startswith('IronPython'): - return 'IronPython' - return 'CPython' - - -import sysconfig - -try: - callable = callable -except NameError: # pragma: no cover - from collections.abc import Callable - - def callable(obj): - return isinstance(obj, Callable) - - -try: - fsencode = os.fsencode - fsdecode = os.fsdecode -except AttributeError: # pragma: no cover - # Issue #99: on some systems (e.g. containerised), - # sys.getfilesystemencoding() returns None, and we need a real value, - # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and - # sys.getfilesystemencoding(): the return value is "the user’s preference - # according to the result of nl_langinfo(CODESET), or None if the - # nl_langinfo(CODESET) failed." - _fsencoding = sys.getfilesystemencoding() or 'utf-8' - if _fsencoding == 'mbcs': - _fserrors = 'strict' - else: - _fserrors = 'surrogateescape' - - def fsencode(filename): - if isinstance(filename, bytes): - return filename - elif isinstance(filename, text_type): - return filename.encode(_fsencoding, _fserrors) - else: - raise TypeError("expect bytes or str, not %s" % - type(filename).__name__) - - def fsdecode(filename): - if isinstance(filename, text_type): - return filename - elif isinstance(filename, bytes): - return filename.decode(_fsencoding, _fserrors) - else: - raise TypeError("expect bytes or str, not %s" % - type(filename).__name__) - - -try: - from tokenize import detect_encoding -except ImportError: # pragma: no cover - from codecs import BOM_UTF8, lookup - - cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") - - def _get_normal_name(orig_enc): - """Imitates get_normal_name in tokenizer.c.""" - # Only care about the first 12 characters. - enc = orig_enc[:12].lower().replace("_", "-") - if enc == "utf-8" or enc.startswith("utf-8-"): - return "utf-8" - if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ - enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): - return "iso-8859-1" - return orig_enc - - def detect_encoding(readline): - """ - The detect_encoding() function is used to detect the encoding that should - be used to decode a Python source file. It requires one argument, readline, - in the same way as the tokenize() generator. - - It will call readline a maximum of twice, and return the encoding used - (as a string) and a list of any lines (left as bytes) it has read in. - - It detects the encoding from the presence of a utf-8 bom or an encoding - cookie as specified in pep-0263. If both a bom and a cookie are present, - but disagree, a SyntaxError will be raised. If the encoding cookie is an - invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, - 'utf-8-sig' is returned. - - If no encoding is specified, then the default of 'utf-8' will be returned. - """ - try: - filename = readline.__self__.name - except AttributeError: - filename = None - bom_found = False - encoding = None - default = 'utf-8' - - def read_or_stop(): - try: - return readline() - except StopIteration: - return b'' - - def find_cookie(line): - try: - # Decode as UTF-8. Either the line is an encoding declaration, - # in which case it should be pure ASCII, or it must be UTF-8 - # per default encoding. - line_string = line.decode('utf-8') - except UnicodeDecodeError: - msg = "invalid or missing encoding declaration" - if filename is not None: - msg = '{} for {!r}'.format(msg, filename) - raise SyntaxError(msg) - - matches = cookie_re.findall(line_string) - if not matches: - return None - encoding = _get_normal_name(matches[0]) - try: - codec = lookup(encoding) - except LookupError: - # This behaviour mimics the Python interpreter - if filename is None: - msg = "unknown encoding: " + encoding - else: - msg = "unknown encoding for {!r}: {}".format( - filename, encoding) - raise SyntaxError(msg) - - if bom_found: - if codec.name != 'utf-8': - # This behaviour mimics the Python interpreter - if filename is None: - msg = 'encoding problem: utf-8' - else: - msg = 'encoding problem for {!r}: utf-8'.format( - filename) - raise SyntaxError(msg) - encoding += '-sig' - return encoding - - first = read_or_stop() - if first.startswith(BOM_UTF8): - bom_found = True - first = first[3:] - default = 'utf-8-sig' - if not first: - return default, [] - - encoding = find_cookie(first) - if encoding: - return encoding, [first] - - second = read_or_stop() - if not second: - return default, [first] - - encoding = find_cookie(second) - if encoding: - return encoding, [first, second] - - return default, [first, second] - - -# For converting & <-> & etc. -try: - from html import escape -except ImportError: - from cgi import escape -if sys.version_info[:2] < (3, 4): - unescape = HTMLParser().unescape -else: - from html import unescape - -try: - from collections import ChainMap -except ImportError: # pragma: no cover - from collections import MutableMapping - - try: - from reprlib import recursive_repr as _recursive_repr - except ImportError: - - def _recursive_repr(fillvalue='...'): - ''' - Decorator to make a repr function return fillvalue for a recursive - call - ''' - - def decorating_function(user_function): - repr_running = set() - - def wrapper(self): - key = id(self), get_ident() - if key in repr_running: - return fillvalue - repr_running.add(key) - try: - result = user_function(self) - finally: - repr_running.discard(key) - return result - - # Can't use functools.wraps() here because of bootstrap issues - wrapper.__module__ = getattr(user_function, '__module__') - wrapper.__doc__ = getattr(user_function, '__doc__') - wrapper.__name__ = getattr(user_function, '__name__') - wrapper.__annotations__ = getattr(user_function, - '__annotations__', {}) - return wrapper - - return decorating_function - - class ChainMap(MutableMapping): - ''' - A ChainMap groups multiple dicts (or other mappings) together - to create a single, updateable view. - - The underlying mappings are stored in a list. That list is public and can - accessed or updated using the *maps* attribute. There is no other state. - - Lookups search the underlying mappings successively until a key is found. - In contrast, writes, updates, and deletions only operate on the first - mapping. - ''' - - def __init__(self, *maps): - '''Initialize a ChainMap by setting *maps* to the given mappings. - If no mappings are provided, a single empty dictionary is used. - - ''' - self.maps = list(maps) or [{}] # always at least one map - - def __missing__(self, key): - raise KeyError(key) - - def __getitem__(self, key): - for mapping in self.maps: - try: - return mapping[ - key] # can't use 'key in mapping' with defaultdict - except KeyError: - pass - return self.__missing__( - key) # support subclasses that define __missing__ - - def get(self, key, default=None): - return self[key] if key in self else default - - def __len__(self): - return len(set().union( - *self.maps)) # reuses stored hash values if possible - - def __iter__(self): - return iter(set().union(*self.maps)) - - def __contains__(self, key): - return any(key in m for m in self.maps) - - def __bool__(self): - return any(self.maps) - - @_recursive_repr() - def __repr__(self): - return '{0.__class__.__name__}({1})'.format( - self, ', '.join(map(repr, self.maps))) - - @classmethod - def fromkeys(cls, iterable, *args): - 'Create a ChainMap with a single dict created from the iterable.' - return cls(dict.fromkeys(iterable, *args)) - - def copy(self): - 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' - return self.__class__(self.maps[0].copy(), *self.maps[1:]) - - __copy__ = copy - - def new_child(self): # like Django's Context.push() - 'New ChainMap with a new dict followed by all previous maps.' - return self.__class__({}, *self.maps) - - @property - def parents(self): # like Django's Context.pop() - 'New ChainMap from maps[1:].' - return self.__class__(*self.maps[1:]) - - def __setitem__(self, key, value): - self.maps[0][key] = value - - def __delitem__(self, key): - try: - del self.maps[0][key] - except KeyError: - raise KeyError( - 'Key not found in the first mapping: {!r}'.format(key)) - - def popitem(self): - 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' - try: - return self.maps[0].popitem() - except KeyError: - raise KeyError('No keys found in the first mapping.') - - def pop(self, key, *args): - 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' - try: - return self.maps[0].pop(key, *args) - except KeyError: - raise KeyError( - 'Key not found in the first mapping: {!r}'.format(key)) - - def clear(self): - 'Clear maps[0], leaving maps[1:] intact.' - self.maps[0].clear() - - -try: - from importlib.util import cache_from_source # Python >= 3.4 -except ImportError: # pragma: no cover - - def cache_from_source(path, debug_override=None): - assert path.endswith('.py') - if debug_override is None: - debug_override = __debug__ - if debug_override: - suffix = 'c' - else: - suffix = 'o' - return path + suffix - - -try: - from collections import OrderedDict -except ImportError: # pragma: no cover - # {{{ http://code.activestate.com/recipes/576693/ (r9) - # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. - # Passes Python2.7's test suite and incorporates all the latest updates. - try: - from thread import get_ident as _get_ident - except ImportError: - from dummy_thread import get_ident as _get_ident - - try: - from _abcoll import KeysView, ValuesView, ItemsView - except ImportError: - pass - - class OrderedDict(dict): - 'Dictionary that remembers insertion order' - - # An inherited dict maps keys to values. - # The inherited dict provides __getitem__, __len__, __contains__, and get. - # The remaining methods are order-aware. - # Big-O running times for all methods are the same as for regular dictionaries. - - # The internal self.__map dictionary maps keys to links in a doubly linked list. - # The circular doubly linked list starts and ends with a sentinel element. - # The sentinel element never gets deleted (this simplifies the algorithm). - # Each link is stored as a list of length three: [PREV, NEXT, KEY]. - - def __init__(self, *args, **kwds): - '''Initialize an ordered dictionary. Signature is the same as for - regular dictionaries, but keyword arguments are not recommended - because their insertion order is arbitrary. - - ''' - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % - len(args)) - try: - self.__root - except AttributeError: - self.__root = root = [] # sentinel node - root[:] = [root, root, None] - self.__map = {} - self.__update(*args, **kwds) - - def __setitem__(self, key, value, dict_setitem=dict.__setitem__): - 'od.__setitem__(i, y) <==> od[i]=y' - # Setting a new item creates a new link which goes at the end of the linked - # list, and the inherited dictionary is updated with the new key/value pair. - if key not in self: - root = self.__root - last = root[0] - last[1] = root[0] = self.__map[key] = [last, root, key] - dict_setitem(self, key, value) - - def __delitem__(self, key, dict_delitem=dict.__delitem__): - 'od.__delitem__(y) <==> del od[y]' - # Deleting an existing item uses self.__map to find the link which is - # then removed by updating the links in the predecessor and successor nodes. - dict_delitem(self, key) - link_prev, link_next, key = self.__map.pop(key) - link_prev[1] = link_next - link_next[0] = link_prev - - def __iter__(self): - 'od.__iter__() <==> iter(od)' - root = self.__root - curr = root[1] - while curr is not root: - yield curr[2] - curr = curr[1] - - def __reversed__(self): - 'od.__reversed__() <==> reversed(od)' - root = self.__root - curr = root[0] - while curr is not root: - yield curr[2] - curr = curr[0] - - def clear(self): - 'od.clear() -> None. Remove all items from od.' - try: - for node in self.__map.itervalues(): - del node[:] - root = self.__root - root[:] = [root, root, None] - self.__map.clear() - except AttributeError: - pass - dict.clear(self) - - def popitem(self, last=True): - '''od.popitem() -> (k, v), return and remove a (key, value) pair. - Pairs are returned in LIFO order if last is true or FIFO order if false. - - ''' - if not self: - raise KeyError('dictionary is empty') - root = self.__root - if last: - link = root[0] - link_prev = link[0] - link_prev[1] = root - root[0] = link_prev - else: - link = root[1] - link_next = link[1] - root[1] = link_next - link_next[0] = root - key = link[2] - del self.__map[key] - value = dict.pop(self, key) - return key, value - - # -- the following methods do not depend on the internal structure -- - - def keys(self): - 'od.keys() -> list of keys in od' - return list(self) - - def values(self): - 'od.values() -> list of values in od' - return [self[key] for key in self] - - def items(self): - 'od.items() -> list of (key, value) pairs in od' - return [(key, self[key]) for key in self] - - def iterkeys(self): - 'od.iterkeys() -> an iterator over the keys in od' - return iter(self) - - def itervalues(self): - 'od.itervalues -> an iterator over the values in od' - for k in self: - yield self[k] - - def iteritems(self): - 'od.iteritems -> an iterator over the (key, value) items in od' - for k in self: - yield (k, self[k]) - - def update(*args, **kwds): - '''od.update(E, **F) -> None. Update od from dict/iterable E and F. - - If E is a dict instance, does: for k in E: od[k] = E[k] - If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] - Or if E is an iterable of items, does: for k, v in E: od[k] = v - In either case, this is followed by: for k, v in F.items(): od[k] = v - - ''' - if len(args) > 2: - raise TypeError('update() takes at most 2 positional ' - 'arguments (%d given)' % (len(args), )) - elif not args: - raise TypeError('update() takes at least 1 argument (0 given)') - self = args[0] - # Make progressively weaker assumptions about "other" - other = () - if len(args) == 2: - other = args[1] - if isinstance(other, dict): - for key in other: - self[key] = other[key] - elif hasattr(other, 'keys'): - for key in other.keys(): - self[key] = other[key] - else: - for key, value in other: - self[key] = value - for key, value in kwds.items(): - self[key] = value - - __update = update # let subclasses override update without breaking __init__ - - __marker = object() - - def pop(self, key, default=__marker): - '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. - If key is not found, d is returned if given, otherwise KeyError is raised. - - ''' - if key in self: - result = self[key] - del self[key] - return result - if default is self.__marker: - raise KeyError(key) - return default - - def setdefault(self, key, default=None): - 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' - if key in self: - return self[key] - self[key] = default - return default - - def __repr__(self, _repr_running=None): - 'od.__repr__() <==> repr(od)' - if not _repr_running: - _repr_running = {} - call_key = id(self), _get_ident() - if call_key in _repr_running: - return '...' - _repr_running[call_key] = 1 - try: - if not self: - return '%s()' % (self.__class__.__name__, ) - return '%s(%r)' % (self.__class__.__name__, self.items()) - finally: - del _repr_running[call_key] - - def __reduce__(self): - 'Return state information for pickling' - items = [[k, self[k]] for k in self] - inst_dict = vars(self).copy() - for k in vars(OrderedDict()): - inst_dict.pop(k, None) - if inst_dict: - return (self.__class__, (items, ), inst_dict) - return self.__class__, (items, ) - - def copy(self): - 'od.copy() -> a shallow copy of od' - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S - and values equal to v (which defaults to None). - - ''' - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive - while comparison to a regular mapping is order-insensitive. - - ''' - if isinstance(other, OrderedDict): - return len(self) == len( - other) and self.items() == other.items() - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other - - # -- the following methods are only used in Python 2.7 -- - - def viewkeys(self): - "od.viewkeys() -> a set-like object providing a view on od's keys" - return KeysView(self) - - def viewvalues(self): - "od.viewvalues() -> an object providing a view on od's values" - return ValuesView(self) - - def viewitems(self): - "od.viewitems() -> a set-like object providing a view on od's items" - return ItemsView(self) - - -try: - from logging.config import BaseConfigurator, valid_ident -except ImportError: # pragma: no cover - IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) - - def valid_ident(s): - m = IDENTIFIER.match(s) - if not m: - raise ValueError('Not a valid Python identifier: %r' % s) - return True - - # The ConvertingXXX classes are wrappers around standard Python containers, - # and they serve to convert any suitable values in the container. The - # conversion converts base dicts, lists and tuples to their wrapped - # equivalents, whereas strings which match a conversion format are converted - # appropriately. - # - # Each wrapper should have a configurator attribute holding the actual - # configurator to use for conversion. - - class ConvertingDict(dict): - """A converting dictionary wrapper.""" - - def __getitem__(self, key): - value = dict.__getitem__(self, key) - result = self.configurator.convert(value) - # If the converted value is different, save for next time - if value is not result: - self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - result.key = key - return result - - def get(self, key, default=None): - value = dict.get(self, key, default) - result = self.configurator.convert(value) - # If the converted value is different, save for next time - if value is not result: - self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - result.key = key - return result - - def pop(self, key, default=None): - value = dict.pop(self, key, default) - result = self.configurator.convert(value) - if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - result.key = key - return result - - class ConvertingList(list): - """A converting list wrapper.""" - - def __getitem__(self, key): - value = list.__getitem__(self, key) - result = self.configurator.convert(value) - # If the converted value is different, save for next time - if value is not result: - self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - result.key = key - return result - - def pop(self, idx=-1): - value = list.pop(self, idx) - result = self.configurator.convert(value) - if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - return result - - class ConvertingTuple(tuple): - """A converting tuple wrapper.""" - - def __getitem__(self, key): - value = tuple.__getitem__(self, key) - result = self.configurator.convert(value) - if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): - result.parent = self - result.key = key - return result - - class BaseConfigurator(object): - """ - The configurator base class which defines some useful defaults. - """ - - CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') - - WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') - DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') - INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') - DIGIT_PATTERN = re.compile(r'^\d+$') - - value_converters = { - 'ext': 'ext_convert', - 'cfg': 'cfg_convert', - } - - # We might want to use a different one, e.g. importlib - importer = staticmethod(__import__) - - def __init__(self, config): - self.config = ConvertingDict(config) - self.config.configurator = self - - def resolve(self, s): - """ - Resolve strings to objects using standard import and attribute - syntax. - """ - name = s.split('.') - used = name.pop(0) - try: - found = self.importer(used) - for frag in name: - used += '.' + frag - try: - found = getattr(found, frag) - except AttributeError: - self.importer(used) - found = getattr(found, frag) - return found - except ImportError: - e, tb = sys.exc_info()[1:] - v = ValueError('Cannot resolve %r: %s' % (s, e)) - v.__cause__, v.__traceback__ = e, tb - raise v - - def ext_convert(self, value): - """Default converter for the ext:// protocol.""" - return self.resolve(value) - - def cfg_convert(self, value): - """Default converter for the cfg:// protocol.""" - rest = value - m = self.WORD_PATTERN.match(rest) - if m is None: - raise ValueError("Unable to convert %r" % value) - else: - rest = rest[m.end():] - d = self.config[m.groups()[0]] - while rest: - m = self.DOT_PATTERN.match(rest) - if m: - d = d[m.groups()[0]] - else: - m = self.INDEX_PATTERN.match(rest) - if m: - idx = m.groups()[0] - if not self.DIGIT_PATTERN.match(idx): - d = d[idx] - else: - try: - n = int( - idx - ) # try as number first (most likely) - d = d[n] - except TypeError: - d = d[idx] - if m: - rest = rest[m.end():] - else: - raise ValueError('Unable to convert ' - '%r at %r' % (value, rest)) - # rest should be empty - return d - - def convert(self, value): - """ - Convert values to an appropriate type. dicts, lists and tuples are - replaced by their converting alternatives. Strings are checked to - see if they have a conversion format and are converted if they do. - """ - if not isinstance(value, ConvertingDict) and isinstance( - value, dict): - value = ConvertingDict(value) - value.configurator = self - elif not isinstance(value, ConvertingList) and isinstance( - value, list): - value = ConvertingList(value) - value.configurator = self - elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): - value = ConvertingTuple(value) - value.configurator = self - elif isinstance(value, string_types): - m = self.CONVERT_PATTERN.match(value) - if m: - d = m.groupdict() - prefix = d['prefix'] - converter = self.value_converters.get(prefix, None) - if converter: - suffix = d['suffix'] - converter = getattr(self, converter) - value = converter(suffix) - return value - - def configure_custom(self, config): - """Configure an object with a user-supplied factory.""" - c = config.pop('()') - if not callable(c): - c = self.resolve(c) - props = config.pop('.', None) - # Check for valid identifiers - kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) - result = c(**kwargs) - if props: - for name, value in props.items(): - setattr(result, name, value) - return result - - def as_tuple(self, value): - """Utility function which converts lists to tuples.""" - if isinstance(value, list): - value = tuple(value) - return value diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py deleted file mode 100644 index eb3765f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py +++ /dev/null @@ -1,1359 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012-2023 The Python Software Foundation. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -"""PEP 376 implementation.""" - -from __future__ import unicode_literals - -import base64 -import codecs -import contextlib -import hashlib -import logging -import os -import posixpath -import sys -import zipimport - -from . import DistlibException, resources -from .compat import StringIO -from .version import get_scheme, UnsupportedVersionError -from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, - LEGACY_METADATA_FILENAME) -from .util import (parse_requirement, cached_property, parse_name_and_version, - read_exports, write_exports, CSVReader, CSVWriter) - -__all__ = [ - 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', - 'EggInfoDistribution', 'DistributionPath' -] - -logger = logging.getLogger(__name__) - -EXPORTS_FILENAME = 'pydist-exports.json' -COMMANDS_FILENAME = 'pydist-commands.json' - -DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', - 'RESOURCES', EXPORTS_FILENAME, 'SHARED') - -DISTINFO_EXT = '.dist-info' - - -class _Cache(object): - """ - A simple cache mapping names and .dist-info paths to distributions - """ - - def __init__(self): - """ - Initialise an instance. There is normally one for each DistributionPath. - """ - self.name = {} - self.path = {} - self.generated = False - - def clear(self): - """ - Clear the cache, setting it to its initial state. - """ - self.name.clear() - self.path.clear() - self.generated = False - - def add(self, dist): - """ - Add a distribution to the cache. - :param dist: The distribution to add. - """ - if dist.path not in self.path: - self.path[dist.path] = dist - self.name.setdefault(dist.key, []).append(dist) - - -class DistributionPath(object): - """ - Represents a set of distributions installed on a path (typically sys.path). - """ - - def __init__(self, path=None, include_egg=False): - """ - Create an instance from a path, optionally including legacy (distutils/ - setuptools/distribute) distributions. - :param path: The path to use, as a list of directories. If not specified, - sys.path is used. - :param include_egg: If True, this instance will look for and return legacy - distributions as well as those based on PEP 376. - """ - if path is None: - path = sys.path - self.path = path - self._include_dist = True - self._include_egg = include_egg - - self._cache = _Cache() - self._cache_egg = _Cache() - self._cache_enabled = True - self._scheme = get_scheme('default') - - def _get_cache_enabled(self): - return self._cache_enabled - - def _set_cache_enabled(self, value): - self._cache_enabled = value - - cache_enabled = property(_get_cache_enabled, _set_cache_enabled) - - def clear_cache(self): - """ - Clears the internal cache. - """ - self._cache.clear() - self._cache_egg.clear() - - def _yield_distributions(self): - """ - Yield .dist-info and/or .egg(-info) distributions. - """ - # We need to check if we've seen some resources already, because on - # some Linux systems (e.g. some Debian/Ubuntu variants) there are - # symlinks which alias other files in the environment. - seen = set() - for path in self.path: - finder = resources.finder_for_path(path) - if finder is None: - continue - r = finder.find('') - if not r or not r.is_container: - continue - rset = sorted(r.resources) - for entry in rset: - r = finder.find(entry) - if not r or r.path in seen: - continue - try: - if self._include_dist and entry.endswith(DISTINFO_EXT): - possible_filenames = [ - METADATA_FILENAME, WHEEL_METADATA_FILENAME, - LEGACY_METADATA_FILENAME - ] - for metadata_filename in possible_filenames: - metadata_path = posixpath.join( - entry, metadata_filename) - pydist = finder.find(metadata_path) - if pydist: - break - else: - continue - - with contextlib.closing(pydist.as_stream()) as stream: - metadata = Metadata(fileobj=stream, - scheme='legacy') - logger.debug('Found %s', r.path) - seen.add(r.path) - yield new_dist_class(r.path, - metadata=metadata, - env=self) - elif self._include_egg and entry.endswith( - ('.egg-info', '.egg')): - logger.debug('Found %s', r.path) - seen.add(r.path) - yield old_dist_class(r.path, self) - except Exception as e: - msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' - logger.warning(msg, r.path, e) - import warnings - warnings.warn(msg % (r.path, e), stacklevel=2) - - def _generate_cache(self): - """ - Scan the path for distributions and populate the cache with - those that are found. - """ - gen_dist = not self._cache.generated - gen_egg = self._include_egg and not self._cache_egg.generated - if gen_dist or gen_egg: - for dist in self._yield_distributions(): - if isinstance(dist, InstalledDistribution): - self._cache.add(dist) - else: - self._cache_egg.add(dist) - - if gen_dist: - self._cache.generated = True - if gen_egg: - self._cache_egg.generated = True - - @classmethod - def distinfo_dirname(cls, name, version): - """ - The *name* and *version* parameters are converted into their - filename-escaped form, i.e. any ``'-'`` characters are replaced - with ``'_'`` other than the one in ``'dist-info'`` and the one - separating the name from the version number. - - :parameter name: is converted to a standard distribution name by replacing - any runs of non- alphanumeric characters with a single - ``'-'``. - :type name: string - :parameter version: is converted to a standard version string. Spaces - become dots, and all other non-alphanumeric characters - (except dots) become dashes, with runs of multiple - dashes condensed to a single dash. - :type version: string - :returns: directory name - :rtype: string""" - name = name.replace('-', '_') - return '-'.join([name, version]) + DISTINFO_EXT - - def get_distributions(self): - """ - Provides an iterator that looks for distributions and returns - :class:`InstalledDistribution` or - :class:`EggInfoDistribution` instances for each one of them. - - :rtype: iterator of :class:`InstalledDistribution` and - :class:`EggInfoDistribution` instances - """ - if not self._cache_enabled: - for dist in self._yield_distributions(): - yield dist - else: - self._generate_cache() - - for dist in self._cache.path.values(): - yield dist - - if self._include_egg: - for dist in self._cache_egg.path.values(): - yield dist - - def get_distribution(self, name): - """ - Looks for a named distribution on the path. - - This function only returns the first result found, as no more than one - value is expected. If nothing is found, ``None`` is returned. - - :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` - or ``None`` - """ - result = None - name = name.lower() - if not self._cache_enabled: - for dist in self._yield_distributions(): - if dist.key == name: - result = dist - break - else: - self._generate_cache() - - if name in self._cache.name: - result = self._cache.name[name][0] - elif self._include_egg and name in self._cache_egg.name: - result = self._cache_egg.name[name][0] - return result - - def provides_distribution(self, name, version=None): - """ - Iterates over all distributions to find which distributions provide *name*. - If a *version* is provided, it will be used to filter the results. - - This function only returns the first result found, since no more than - one values are expected. If the directory is not found, returns ``None``. - - :parameter version: a version specifier that indicates the version - required, conforming to the format in ``PEP-345`` - - :type name: string - :type version: string - """ - matcher = None - if version is not None: - try: - matcher = self._scheme.matcher('%s (%s)' % (name, version)) - except ValueError: - raise DistlibException('invalid name or version: %r, %r' % - (name, version)) - - for dist in self.get_distributions(): - # We hit a problem on Travis where enum34 was installed and doesn't - # have a provides attribute ... - if not hasattr(dist, 'provides'): - logger.debug('No "provides": %s', dist) - else: - provided = dist.provides - - for p in provided: - p_name, p_ver = parse_name_and_version(p) - if matcher is None: - if p_name == name: - yield dist - break - else: - if p_name == name and matcher.match(p_ver): - yield dist - break - - def get_file_path(self, name, relative_path): - """ - Return the path to a resource file. - """ - dist = self.get_distribution(name) - if dist is None: - raise LookupError('no distribution named %r found' % name) - return dist.get_resource_path(relative_path) - - def get_exported_entries(self, category, name=None): - """ - Return all of the exported entries in a particular category. - - :param category: The category to search for entries. - :param name: If specified, only entries with that name are returned. - """ - for dist in self.get_distributions(): - r = dist.exports - if category in r: - d = r[category] - if name is not None: - if name in d: - yield d[name] - else: - for v in d.values(): - yield v - - -class Distribution(object): - """ - A base class for distributions, whether installed or from indexes. - Either way, it must have some metadata, so that's all that's needed - for construction. - """ - - build_time_dependency = False - """ - Set to True if it's known to be only a build-time dependency (i.e. - not needed after installation). - """ - - requested = False - """A boolean that indicates whether the ``REQUESTED`` metadata file is - present (in other words, whether the package was installed by user - request or it was installed as a dependency).""" - - def __init__(self, metadata): - """ - Initialise an instance. - :param metadata: The instance of :class:`Metadata` describing this - distribution. - """ - self.metadata = metadata - self.name = metadata.name - self.key = self.name.lower() # for case-insensitive comparisons - self.version = metadata.version - self.locator = None - self.digest = None - self.extras = None # additional features requested - self.context = None # environment marker overrides - self.download_urls = set() - self.digests = {} - - @property - def source_url(self): - """ - The source archive download URL for this distribution. - """ - return self.metadata.source_url - - download_url = source_url # Backward compatibility - - @property - def name_and_version(self): - """ - A utility property which displays the name and version in parentheses. - """ - return '%s (%s)' % (self.name, self.version) - - @property - def provides(self): - """ - A set of distribution names and versions provided by this distribution. - :return: A set of "name (version)" strings. - """ - plist = self.metadata.provides - s = '%s (%s)' % (self.name, self.version) - if s not in plist: - plist.append(s) - return plist - - def _get_requirements(self, req_attr): - md = self.metadata - reqts = getattr(md, req_attr) - logger.debug('%s: got requirements %r from metadata: %r', self.name, - req_attr, reqts) - return set( - md.get_requirements(reqts, extras=self.extras, env=self.context)) - - @property - def run_requires(self): - return self._get_requirements('run_requires') - - @property - def meta_requires(self): - return self._get_requirements('meta_requires') - - @property - def build_requires(self): - return self._get_requirements('build_requires') - - @property - def test_requires(self): - return self._get_requirements('test_requires') - - @property - def dev_requires(self): - return self._get_requirements('dev_requires') - - def matches_requirement(self, req): - """ - Say if this instance matches (fulfills) a requirement. - :param req: The requirement to match. - :rtype req: str - :return: True if it matches, else False. - """ - # Requirement may contain extras - parse to lose those - # from what's passed to the matcher - r = parse_requirement(req) - scheme = get_scheme(self.metadata.scheme) - try: - matcher = scheme.matcher(r.requirement) - except UnsupportedVersionError: - # XXX compat-mode if cannot read the version - logger.warning('could not read version %r - using name only', req) - name = req.split()[0] - matcher = scheme.matcher(name) - - name = matcher.key # case-insensitive - - result = False - for p in self.provides: - p_name, p_ver = parse_name_and_version(p) - if p_name != name: - continue - try: - result = matcher.match(p_ver) - break - except UnsupportedVersionError: - pass - return result - - def __repr__(self): - """ - Return a textual representation of this instance, - """ - if self.source_url: - suffix = ' [%s]' % self.source_url - else: - suffix = '' - return '' % (self.name, self.version, suffix) - - def __eq__(self, other): - """ - See if this distribution is the same as another. - :param other: The distribution to compare with. To be equal to one - another. distributions must have the same type, name, - version and source_url. - :return: True if it is the same, else False. - """ - if type(other) is not type(self): - result = False - else: - result = (self.name == other.name and self.version == other.version - and self.source_url == other.source_url) - return result - - def __hash__(self): - """ - Compute hash in a way which matches the equality test. - """ - return hash(self.name) + hash(self.version) + hash(self.source_url) - - -class BaseInstalledDistribution(Distribution): - """ - This is the base class for installed distributions (whether PEP 376 or - legacy). - """ - - hasher = None - - def __init__(self, metadata, path, env=None): - """ - Initialise an instance. - :param metadata: An instance of :class:`Metadata` which describes the - distribution. This will normally have been initialised - from a metadata file in the ``path``. - :param path: The path of the ``.dist-info`` or ``.egg-info`` - directory for the distribution. - :param env: This is normally the :class:`DistributionPath` - instance where this distribution was found. - """ - super(BaseInstalledDistribution, self).__init__(metadata) - self.path = path - self.dist_path = env - - def get_hash(self, data, hasher=None): - """ - Get the hash of some data, using a particular hash algorithm, if - specified. - - :param data: The data to be hashed. - :type data: bytes - :param hasher: The name of a hash implementation, supported by hashlib, - or ``None``. Examples of valid values are ``'sha1'``, - ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and - ``'sha512'``. If no hasher is specified, the ``hasher`` - attribute of the :class:`InstalledDistribution` instance - is used. If the hasher is determined to be ``None``, MD5 - is used as the hashing algorithm. - :returns: The hash of the data. If a hasher was explicitly specified, - the returned hash will be prefixed with the specified hasher - followed by '='. - :rtype: str - """ - if hasher is None: - hasher = self.hasher - if hasher is None: - hasher = hashlib.md5 - prefix = '' - else: - hasher = getattr(hashlib, hasher) - prefix = '%s=' % self.hasher - digest = hasher(data).digest() - digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') - return '%s%s' % (prefix, digest) - - -class InstalledDistribution(BaseInstalledDistribution): - """ - Created with the *path* of the ``.dist-info`` directory provided to the - constructor. It reads the metadata contained in ``pydist.json`` when it is - instantiated., or uses a passed in Metadata instance (useful for when - dry-run mode is being used). - """ - - hasher = 'sha256' - - def __init__(self, path, metadata=None, env=None): - self.modules = [] - self.finder = finder = resources.finder_for_path(path) - if finder is None: - raise ValueError('finder unavailable for %s' % path) - if env and env._cache_enabled and path in env._cache.path: - metadata = env._cache.path[path].metadata - elif metadata is None: - r = finder.find(METADATA_FILENAME) - # Temporary - for Wheel 0.23 support - if r is None: - r = finder.find(WHEEL_METADATA_FILENAME) - # Temporary - for legacy support - if r is None: - r = finder.find(LEGACY_METADATA_FILENAME) - if r is None: - raise ValueError('no %s found in %s' % - (METADATA_FILENAME, path)) - with contextlib.closing(r.as_stream()) as stream: - metadata = Metadata(fileobj=stream, scheme='legacy') - - super(InstalledDistribution, self).__init__(metadata, path, env) - - if env and env._cache_enabled: - env._cache.add(self) - - r = finder.find('REQUESTED') - self.requested = r is not None - p = os.path.join(path, 'top_level.txt') - if os.path.exists(p): - with open(p, 'rb') as f: - data = f.read().decode('utf-8') - self.modules = data.splitlines() - - def __repr__(self): - return '' % ( - self.name, self.version, self.path) - - def __str__(self): - return "%s %s" % (self.name, self.version) - - def _get_records(self): - """ - Get the list of installed files for the distribution - :return: A list of tuples of path, hash and size. Note that hash and - size might be ``None`` for some entries. The path is exactly - as stored in the file (which is as in PEP 376). - """ - results = [] - r = self.get_distinfo_resource('RECORD') - with contextlib.closing(r.as_stream()) as stream: - with CSVReader(stream=stream) as record_reader: - # Base location is parent dir of .dist-info dir - # base_location = os.path.dirname(self.path) - # base_location = os.path.abspath(base_location) - for row in record_reader: - missing = [None for i in range(len(row), 3)] - path, checksum, size = row + missing - # if not os.path.isabs(path): - # path = path.replace('/', os.sep) - # path = os.path.join(base_location, path) - results.append((path, checksum, size)) - return results - - @cached_property - def exports(self): - """ - Return the information exported by this distribution. - :return: A dictionary of exports, mapping an export category to a dict - of :class:`ExportEntry` instances describing the individual - export entries, and keyed by name. - """ - result = {} - r = self.get_distinfo_resource(EXPORTS_FILENAME) - if r: - result = self.read_exports() - return result - - def read_exports(self): - """ - Read exports data from a file in .ini format. - - :return: A dictionary of exports, mapping an export category to a list - of :class:`ExportEntry` instances describing the individual - export entries. - """ - result = {} - r = self.get_distinfo_resource(EXPORTS_FILENAME) - if r: - with contextlib.closing(r.as_stream()) as stream: - result = read_exports(stream) - return result - - def write_exports(self, exports): - """ - Write a dictionary of exports to a file in .ini format. - :param exports: A dictionary of exports, mapping an export category to - a list of :class:`ExportEntry` instances describing the - individual export entries. - """ - rf = self.get_distinfo_file(EXPORTS_FILENAME) - with open(rf, 'w') as f: - write_exports(exports, f) - - def get_resource_path(self, relative_path): - """ - NOTE: This API may change in the future. - - Return the absolute path to a resource file with the given relative - path. - - :param relative_path: The path, relative to .dist-info, of the resource - of interest. - :return: The absolute path where the resource is to be found. - """ - r = self.get_distinfo_resource('RESOURCES') - with contextlib.closing(r.as_stream()) as stream: - with CSVReader(stream=stream) as resources_reader: - for relative, destination in resources_reader: - if relative == relative_path: - return destination - raise KeyError('no resource file with relative path %r ' - 'is installed' % relative_path) - - def list_installed_files(self): - """ - Iterates over the ``RECORD`` entries and returns a tuple - ``(path, hash, size)`` for each line. - - :returns: iterator of (path, hash, size) - """ - for result in self._get_records(): - yield result - - def write_installed_files(self, paths, prefix, dry_run=False): - """ - Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any - existing ``RECORD`` file is silently overwritten. - - prefix is used to determine when to write absolute paths. - """ - prefix = os.path.join(prefix, '') - base = os.path.dirname(self.path) - base_under_prefix = base.startswith(prefix) - base = os.path.join(base, '') - record_path = self.get_distinfo_file('RECORD') - logger.info('creating %s', record_path) - if dry_run: - return None - with CSVWriter(record_path) as writer: - for path in paths: - if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): - # do not put size and hash, as in PEP-376 - hash_value = size = '' - else: - size = '%d' % os.path.getsize(path) - with open(path, 'rb') as fp: - hash_value = self.get_hash(fp.read()) - if path.startswith(base) or (base_under_prefix - and path.startswith(prefix)): - path = os.path.relpath(path, base) - writer.writerow((path, hash_value, size)) - - # add the RECORD file itself - if record_path.startswith(base): - record_path = os.path.relpath(record_path, base) - writer.writerow((record_path, '', '')) - return record_path - - def check_installed_files(self): - """ - Checks that the hashes and sizes of the files in ``RECORD`` are - matched by the files themselves. Returns a (possibly empty) list of - mismatches. Each entry in the mismatch list will be a tuple consisting - of the path, 'exists', 'size' or 'hash' according to what didn't match - (existence is checked first, then size, then hash), the expected - value and the actual value. - """ - mismatches = [] - base = os.path.dirname(self.path) - record_path = self.get_distinfo_file('RECORD') - for path, hash_value, size in self.list_installed_files(): - if not os.path.isabs(path): - path = os.path.join(base, path) - if path == record_path: - continue - if not os.path.exists(path): - mismatches.append((path, 'exists', True, False)) - elif os.path.isfile(path): - actual_size = str(os.path.getsize(path)) - if size and actual_size != size: - mismatches.append((path, 'size', size, actual_size)) - elif hash_value: - if '=' in hash_value: - hasher = hash_value.split('=', 1)[0] - else: - hasher = None - - with open(path, 'rb') as f: - actual_hash = self.get_hash(f.read(), hasher) - if actual_hash != hash_value: - mismatches.append( - (path, 'hash', hash_value, actual_hash)) - return mismatches - - @cached_property - def shared_locations(self): - """ - A dictionary of shared locations whose keys are in the set 'prefix', - 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. - The corresponding value is the absolute path of that category for - this distribution, and takes into account any paths selected by the - user at installation time (e.g. via command-line arguments). In the - case of the 'namespace' key, this would be a list of absolute paths - for the roots of namespace packages in this distribution. - - The first time this property is accessed, the relevant information is - read from the SHARED file in the .dist-info directory. - """ - result = {} - shared_path = os.path.join(self.path, 'SHARED') - if os.path.isfile(shared_path): - with codecs.open(shared_path, 'r', encoding='utf-8') as f: - lines = f.read().splitlines() - for line in lines: - key, value = line.split('=', 1) - if key == 'namespace': - result.setdefault(key, []).append(value) - else: - result[key] = value - return result - - def write_shared_locations(self, paths, dry_run=False): - """ - Write shared location information to the SHARED file in .dist-info. - :param paths: A dictionary as described in the documentation for - :meth:`shared_locations`. - :param dry_run: If True, the action is logged but no file is actually - written. - :return: The path of the file written to. - """ - shared_path = os.path.join(self.path, 'SHARED') - logger.info('creating %s', shared_path) - if dry_run: - return None - lines = [] - for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): - path = paths[key] - if os.path.isdir(paths[key]): - lines.append('%s=%s' % (key, path)) - for ns in paths.get('namespace', ()): - lines.append('namespace=%s' % ns) - - with codecs.open(shared_path, 'w', encoding='utf-8') as f: - f.write('\n'.join(lines)) - return shared_path - - def get_distinfo_resource(self, path): - if path not in DIST_FILES: - raise DistlibException('invalid path for a dist-info file: ' - '%r at %r' % (path, self.path)) - finder = resources.finder_for_path(self.path) - if finder is None: - raise DistlibException('Unable to get a finder for %s' % self.path) - return finder.find(path) - - def get_distinfo_file(self, path): - """ - Returns a path located under the ``.dist-info`` directory. Returns a - string representing the path. - - :parameter path: a ``'/'``-separated path relative to the - ``.dist-info`` directory or an absolute path; - If *path* is an absolute path and doesn't start - with the ``.dist-info`` directory path, - a :class:`DistlibException` is raised - :type path: str - :rtype: str - """ - # Check if it is an absolute path # XXX use relpath, add tests - if path.find(os.sep) >= 0: - # it's an absolute path? - distinfo_dirname, path = path.split(os.sep)[-2:] - if distinfo_dirname != self.path.split(os.sep)[-1]: - raise DistlibException( - 'dist-info file %r does not belong to the %r %s ' - 'distribution' % (path, self.name, self.version)) - - # The file must be relative - if path not in DIST_FILES: - raise DistlibException('invalid path for a dist-info file: ' - '%r at %r' % (path, self.path)) - - return os.path.join(self.path, path) - - def list_distinfo_files(self): - """ - Iterates over the ``RECORD`` entries and returns paths for each line if - the path is pointing to a file located in the ``.dist-info`` directory - or one of its subdirectories. - - :returns: iterator of paths - """ - base = os.path.dirname(self.path) - for path, checksum, size in self._get_records(): - # XXX add separator or use real relpath algo - if not os.path.isabs(path): - path = os.path.join(base, path) - if path.startswith(self.path): - yield path - - def __eq__(self, other): - return (isinstance(other, InstalledDistribution) - and self.path == other.path) - - # See http://docs.python.org/reference/datamodel#object.__hash__ - __hash__ = object.__hash__ - - -class EggInfoDistribution(BaseInstalledDistribution): - """Created with the *path* of the ``.egg-info`` directory or file provided - to the constructor. It reads the metadata contained in the file itself, or - if the given path happens to be a directory, the metadata is read from the - file ``PKG-INFO`` under that directory.""" - - requested = True # as we have no way of knowing, assume it was - shared_locations = {} - - def __init__(self, path, env=None): - - def set_name_and_version(s, n, v): - s.name = n - s.key = n.lower() # for case-insensitive comparisons - s.version = v - - self.path = path - self.dist_path = env - if env and env._cache_enabled and path in env._cache_egg.path: - metadata = env._cache_egg.path[path].metadata - set_name_and_version(self, metadata.name, metadata.version) - else: - metadata = self._get_metadata(path) - - # Need to be set before caching - set_name_and_version(self, metadata.name, metadata.version) - - if env and env._cache_enabled: - env._cache_egg.add(self) - super(EggInfoDistribution, self).__init__(metadata, path, env) - - def _get_metadata(self, path): - requires = None - - def parse_requires_data(data): - """Create a list of dependencies from a requires.txt file. - - *data*: the contents of a setuptools-produced requires.txt file. - """ - reqs = [] - lines = data.splitlines() - for line in lines: - line = line.strip() - # sectioned files have bare newlines (separating sections) - if not line: # pragma: no cover - continue - if line.startswith('['): # pragma: no cover - logger.warning( - 'Unexpected line: quitting requirement scan: %r', line) - break - r = parse_requirement(line) - if not r: # pragma: no cover - logger.warning('Not recognised as a requirement: %r', line) - continue - if r.extras: # pragma: no cover - logger.warning('extra requirements in requires.txt are ' - 'not supported') - if not r.constraints: - reqs.append(r.name) - else: - cons = ', '.join('%s%s' % c for c in r.constraints) - reqs.append('%s (%s)' % (r.name, cons)) - return reqs - - def parse_requires_path(req_path): - """Create a list of dependencies from a requires.txt file. - - *req_path*: the path to a setuptools-produced requires.txt file. - """ - - reqs = [] - try: - with codecs.open(req_path, 'r', 'utf-8') as fp: - reqs = parse_requires_data(fp.read()) - except IOError: - pass - return reqs - - tl_path = tl_data = None - if path.endswith('.egg'): - if os.path.isdir(path): - p = os.path.join(path, 'EGG-INFO') - meta_path = os.path.join(p, 'PKG-INFO') - metadata = Metadata(path=meta_path, scheme='legacy') - req_path = os.path.join(p, 'requires.txt') - tl_path = os.path.join(p, 'top_level.txt') - requires = parse_requires_path(req_path) - else: - # FIXME handle the case where zipfile is not available - zipf = zipimport.zipimporter(path) - fileobj = StringIO( - zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) - metadata = Metadata(fileobj=fileobj, scheme='legacy') - try: - data = zipf.get_data('EGG-INFO/requires.txt') - tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode( - 'utf-8') - requires = parse_requires_data(data.decode('utf-8')) - except IOError: - requires = None - elif path.endswith('.egg-info'): - if os.path.isdir(path): - req_path = os.path.join(path, 'requires.txt') - requires = parse_requires_path(req_path) - path = os.path.join(path, 'PKG-INFO') - tl_path = os.path.join(path, 'top_level.txt') - metadata = Metadata(path=path, scheme='legacy') - else: - raise DistlibException('path must end with .egg-info or .egg, ' - 'got %r' % path) - - if requires: - metadata.add_requirements(requires) - # look for top-level modules in top_level.txt, if present - if tl_data is None: - if tl_path is not None and os.path.exists(tl_path): - with open(tl_path, 'rb') as f: - tl_data = f.read().decode('utf-8') - if not tl_data: - tl_data = [] - else: - tl_data = tl_data.splitlines() - self.modules = tl_data - return metadata - - def __repr__(self): - return '' % (self.name, self.version, - self.path) - - def __str__(self): - return "%s %s" % (self.name, self.version) - - def check_installed_files(self): - """ - Checks that the hashes and sizes of the files in ``RECORD`` are - matched by the files themselves. Returns a (possibly empty) list of - mismatches. Each entry in the mismatch list will be a tuple consisting - of the path, 'exists', 'size' or 'hash' according to what didn't match - (existence is checked first, then size, then hash), the expected - value and the actual value. - """ - mismatches = [] - record_path = os.path.join(self.path, 'installed-files.txt') - if os.path.exists(record_path): - for path, _, _ in self.list_installed_files(): - if path == record_path: - continue - if not os.path.exists(path): - mismatches.append((path, 'exists', True, False)) - return mismatches - - def list_installed_files(self): - """ - Iterates over the ``installed-files.txt`` entries and returns a tuple - ``(path, hash, size)`` for each line. - - :returns: a list of (path, hash, size) - """ - - def _md5(path): - f = open(path, 'rb') - try: - content = f.read() - finally: - f.close() - return hashlib.md5(content).hexdigest() - - def _size(path): - return os.stat(path).st_size - - record_path = os.path.join(self.path, 'installed-files.txt') - result = [] - if os.path.exists(record_path): - with codecs.open(record_path, 'r', encoding='utf-8') as f: - for line in f: - line = line.strip() - p = os.path.normpath(os.path.join(self.path, line)) - # "./" is present as a marker between installed files - # and installation metadata files - if not os.path.exists(p): - logger.warning('Non-existent file: %s', p) - if p.endswith(('.pyc', '.pyo')): - continue - # otherwise fall through and fail - if not os.path.isdir(p): - result.append((p, _md5(p), _size(p))) - result.append((record_path, None, None)) - return result - - def list_distinfo_files(self, absolute=False): - """ - Iterates over the ``installed-files.txt`` entries and returns paths for - each line if the path is pointing to a file located in the - ``.egg-info`` directory or one of its subdirectories. - - :parameter absolute: If *absolute* is ``True``, each returned path is - transformed into a local absolute path. Otherwise the - raw value from ``installed-files.txt`` is returned. - :type absolute: boolean - :returns: iterator of paths - """ - record_path = os.path.join(self.path, 'installed-files.txt') - if os.path.exists(record_path): - skip = True - with codecs.open(record_path, 'r', encoding='utf-8') as f: - for line in f: - line = line.strip() - if line == './': - skip = False - continue - if not skip: - p = os.path.normpath(os.path.join(self.path, line)) - if p.startswith(self.path): - if absolute: - yield p - else: - yield line - - def __eq__(self, other): - return (isinstance(other, EggInfoDistribution) - and self.path == other.path) - - # See http://docs.python.org/reference/datamodel#object.__hash__ - __hash__ = object.__hash__ - - -new_dist_class = InstalledDistribution -old_dist_class = EggInfoDistribution - - -class DependencyGraph(object): - """ - Represents a dependency graph between distributions. - - The dependency relationships are stored in an ``adjacency_list`` that maps - distributions to a list of ``(other, label)`` tuples where ``other`` - is a distribution and the edge is labeled with ``label`` (i.e. the version - specifier, if such was provided). Also, for more efficient traversal, for - every distribution ``x``, a list of predecessors is kept in - ``reverse_list[x]``. An edge from distribution ``a`` to - distribution ``b`` means that ``a`` depends on ``b``. If any missing - dependencies are found, they are stored in ``missing``, which is a - dictionary that maps distributions to a list of requirements that were not - provided by any other distributions. - """ - - def __init__(self): - self.adjacency_list = {} - self.reverse_list = {} - self.missing = {} - - def add_distribution(self, distribution): - """Add the *distribution* to the graph. - - :type distribution: :class:`distutils2.database.InstalledDistribution` - or :class:`distutils2.database.EggInfoDistribution` - """ - self.adjacency_list[distribution] = [] - self.reverse_list[distribution] = [] - # self.missing[distribution] = [] - - def add_edge(self, x, y, label=None): - """Add an edge from distribution *x* to distribution *y* with the given - *label*. - - :type x: :class:`distutils2.database.InstalledDistribution` or - :class:`distutils2.database.EggInfoDistribution` - :type y: :class:`distutils2.database.InstalledDistribution` or - :class:`distutils2.database.EggInfoDistribution` - :type label: ``str`` or ``None`` - """ - self.adjacency_list[x].append((y, label)) - # multiple edges are allowed, so be careful - if x not in self.reverse_list[y]: - self.reverse_list[y].append(x) - - def add_missing(self, distribution, requirement): - """ - Add a missing *requirement* for the given *distribution*. - - :type distribution: :class:`distutils2.database.InstalledDistribution` - or :class:`distutils2.database.EggInfoDistribution` - :type requirement: ``str`` - """ - logger.debug('%s missing %r', distribution, requirement) - self.missing.setdefault(distribution, []).append(requirement) - - def _repr_dist(self, dist): - return '%s %s' % (dist.name, dist.version) - - def repr_node(self, dist, level=1): - """Prints only a subgraph""" - output = [self._repr_dist(dist)] - for other, label in self.adjacency_list[dist]: - dist = self._repr_dist(other) - if label is not None: - dist = '%s [%s]' % (dist, label) - output.append(' ' * level + str(dist)) - suboutput = self.repr_node(other, level + 1) - subs = suboutput.split('\n') - output.extend(subs[1:]) - return '\n'.join(output) - - def to_dot(self, f, skip_disconnected=True): - """Writes a DOT output for the graph to the provided file *f*. - - If *skip_disconnected* is set to ``True``, then all distributions - that are not dependent on any other distribution are skipped. - - :type f: has to support ``file``-like operations - :type skip_disconnected: ``bool`` - """ - disconnected = [] - - f.write("digraph dependencies {\n") - for dist, adjs in self.adjacency_list.items(): - if len(adjs) == 0 and not skip_disconnected: - disconnected.append(dist) - for other, label in adjs: - if label is not None: - f.write('"%s" -> "%s" [label="%s"]\n' % - (dist.name, other.name, label)) - else: - f.write('"%s" -> "%s"\n' % (dist.name, other.name)) - if not skip_disconnected and len(disconnected) > 0: - f.write('subgraph disconnected {\n') - f.write('label = "Disconnected"\n') - f.write('bgcolor = red\n') - - for dist in disconnected: - f.write('"%s"' % dist.name) - f.write('\n') - f.write('}\n') - f.write('}\n') - - def topological_sort(self): - """ - Perform a topological sort of the graph. - :return: A tuple, the first element of which is a topologically sorted - list of distributions, and the second element of which is a - list of distributions that cannot be sorted because they have - circular dependencies and so form a cycle. - """ - result = [] - # Make a shallow copy of the adjacency list - alist = {} - for k, v in self.adjacency_list.items(): - alist[k] = v[:] - while True: - # See what we can remove in this run - to_remove = [] - for k, v in list(alist.items())[:]: - if not v: - to_remove.append(k) - del alist[k] - if not to_remove: - # What's left in alist (if anything) is a cycle. - break - # Remove from the adjacency list of others - for k, v in alist.items(): - alist[k] = [(d, r) for d, r in v if d not in to_remove] - logger.debug('Moving to result: %s', - ['%s (%s)' % (d.name, d.version) for d in to_remove]) - result.extend(to_remove) - return result, list(alist.keys()) - - def __repr__(self): - """Representation of the graph""" - output = [] - for dist, adjs in self.adjacency_list.items(): - output.append(self.repr_node(dist)) - return '\n'.join(output) - - -def make_graph(dists, scheme='default'): - """Makes a dependency graph from the given distributions. - - :parameter dists: a list of distributions - :type dists: list of :class:`distutils2.database.InstalledDistribution` and - :class:`distutils2.database.EggInfoDistribution` instances - :rtype: a :class:`DependencyGraph` instance - """ - scheme = get_scheme(scheme) - graph = DependencyGraph() - provided = {} # maps names to lists of (version, dist) tuples - - # first, build the graph and find out what's provided - for dist in dists: - graph.add_distribution(dist) - - for p in dist.provides: - name, version = parse_name_and_version(p) - logger.debug('Add to provided: %s, %s, %s', name, version, dist) - provided.setdefault(name, []).append((version, dist)) - - # now make the edges - for dist in dists: - requires = (dist.run_requires | dist.meta_requires - | dist.build_requires | dist.dev_requires) - for req in requires: - try: - matcher = scheme.matcher(req) - except UnsupportedVersionError: - # XXX compat-mode if cannot read the version - logger.warning('could not read version %r - using name only', - req) - name = req.split()[0] - matcher = scheme.matcher(name) - - name = matcher.key # case-insensitive - - matched = False - if name in provided: - for version, provider in provided[name]: - try: - match = matcher.match(version) - except UnsupportedVersionError: - match = False - - if match: - graph.add_edge(dist, provider, req) - matched = True - break - if not matched: - graph.add_missing(dist, req) - return graph - - -def get_dependent_dists(dists, dist): - """Recursively generate a list of distributions from *dists* that are - dependent on *dist*. - - :param dists: a list of distributions - :param dist: a distribution, member of *dists* for which we are interested - """ - if dist not in dists: - raise DistlibException('given distribution %r is not a member ' - 'of the list' % dist.name) - graph = make_graph(dists) - - dep = [dist] # dependent distributions - todo = graph.reverse_list[dist] # list of nodes we should inspect - - while todo: - d = todo.pop() - dep.append(d) - for succ in graph.reverse_list[d]: - if succ not in dep: - todo.append(succ) - - dep.pop(0) # remove dist from dep, was there to prevent infinite loops - return dep - - -def get_required_dists(dists, dist): - """Recursively generate a list of distributions from *dists* that are - required by *dist*. - - :param dists: a list of distributions - :param dist: a distribution, member of *dists* for which we are interested - in finding the dependencies. - """ - if dist not in dists: - raise DistlibException('given distribution %r is not a member ' - 'of the list' % dist.name) - graph = make_graph(dists) - - req = set() # required distributions - todo = graph.adjacency_list[dist] # list of nodes we should inspect - seen = set(t[0] for t in todo) # already added to todo - - while todo: - d = todo.pop()[0] - req.add(d) - pred_list = graph.adjacency_list[d] - for pred in pred_list: - d = pred[0] - if d not in req and d not in seen: - seen.add(d) - todo.append(pred) - return req - - -def make_dist(name, version, **kwargs): - """ - A convenience method for making a dist given just a name and version. - """ - summary = kwargs.pop('summary', 'Placeholder for summary') - md = Metadata(**kwargs) - md.name = name - md.version = version - md.summary = summary or 'Placeholder for summary' - return Distribution(md) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py deleted file mode 100644 index 56cd286..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py +++ /dev/null @@ -1,508 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2013-2023 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -import hashlib -import logging -import os -import shutil -import subprocess -import tempfile -try: - from threading import Thread -except ImportError: # pragma: no cover - from dummy_threading import Thread - -from . import DistlibException -from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, - urlparse, build_opener, string_types) -from .util import zip_dir, ServerProxy - -logger = logging.getLogger(__name__) - -DEFAULT_INDEX = 'https://pypi.org/pypi' -DEFAULT_REALM = 'pypi' - - -class PackageIndex(object): - """ - This class represents a package index compatible with PyPI, the Python - Package Index. - """ - - boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' - - def __init__(self, url=None): - """ - Initialise an instance. - - :param url: The URL of the index. If not specified, the URL for PyPI is - used. - """ - self.url = url or DEFAULT_INDEX - self.read_configuration() - scheme, netloc, path, params, query, frag = urlparse(self.url) - if params or query or frag or scheme not in ('http', 'https'): - raise DistlibException('invalid repository: %s' % self.url) - self.password_handler = None - self.ssl_verifier = None - self.gpg = None - self.gpg_home = None - with open(os.devnull, 'w') as sink: - # Use gpg by default rather than gpg2, as gpg2 insists on - # prompting for passwords - for s in ('gpg', 'gpg2'): - try: - rc = subprocess.check_call([s, '--version'], stdout=sink, - stderr=sink) - if rc == 0: - self.gpg = s - break - except OSError: - pass - - def _get_pypirc_command(self): - """ - Get the distutils command for interacting with PyPI configurations. - :return: the command. - """ - from .util import _get_pypirc_command as cmd - return cmd() - - def read_configuration(self): - """ - Read the PyPI access configuration as supported by distutils. This populates - ``username``, ``password``, ``realm`` and ``url`` attributes from the - configuration. - """ - from .util import _load_pypirc - cfg = _load_pypirc(self) - self.username = cfg.get('username') - self.password = cfg.get('password') - self.realm = cfg.get('realm', 'pypi') - self.url = cfg.get('repository', self.url) - - def save_configuration(self): - """ - Save the PyPI access configuration. You must have set ``username`` and - ``password`` attributes before calling this method. - """ - self.check_credentials() - from .util import _store_pypirc - _store_pypirc(self) - - def check_credentials(self): - """ - Check that ``username`` and ``password`` have been set, and raise an - exception if not. - """ - if self.username is None or self.password is None: - raise DistlibException('username and password must be set') - pm = HTTPPasswordMgr() - _, netloc, _, _, _, _ = urlparse(self.url) - pm.add_password(self.realm, netloc, self.username, self.password) - self.password_handler = HTTPBasicAuthHandler(pm) - - def register(self, metadata): # pragma: no cover - """ - Register a distribution on PyPI, using the provided metadata. - - :param metadata: A :class:`Metadata` instance defining at least a name - and version number for the distribution to be - registered. - :return: The HTTP response received from PyPI upon submission of the - request. - """ - self.check_credentials() - metadata.validate() - d = metadata.todict() - d[':action'] = 'verify' - request = self.encode_request(d.items(), []) - self.send_request(request) - d[':action'] = 'submit' - request = self.encode_request(d.items(), []) - return self.send_request(request) - - def _reader(self, name, stream, outbuf): - """ - Thread runner for reading lines of from a subprocess into a buffer. - - :param name: The logical name of the stream (used for logging only). - :param stream: The stream to read from. This will typically a pipe - connected to the output stream of a subprocess. - :param outbuf: The list to append the read lines to. - """ - while True: - s = stream.readline() - if not s: - break - s = s.decode('utf-8').rstrip() - outbuf.append(s) - logger.debug('%s: %s' % (name, s)) - stream.close() - - def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover - """ - Return a suitable command for signing a file. - - :param filename: The pathname to the file to be signed. - :param signer: The identifier of the signer of the file. - :param sign_password: The passphrase for the signer's - private key used for signing. - :param keystore: The path to a directory which contains the keys - used in verification. If not specified, the - instance's ``gpg_home`` attribute is used instead. - :return: The signing command as a list suitable to be - passed to :class:`subprocess.Popen`. - """ - cmd = [self.gpg, '--status-fd', '2', '--no-tty'] - if keystore is None: - keystore = self.gpg_home - if keystore: - cmd.extend(['--homedir', keystore]) - if sign_password is not None: - cmd.extend(['--batch', '--passphrase-fd', '0']) - td = tempfile.mkdtemp() - sf = os.path.join(td, os.path.basename(filename) + '.asc') - cmd.extend(['--detach-sign', '--armor', '--local-user', - signer, '--output', sf, filename]) - logger.debug('invoking: %s', ' '.join(cmd)) - return cmd, sf - - def run_command(self, cmd, input_data=None): - """ - Run a command in a child process , passing it any input data specified. - - :param cmd: The command to run. - :param input_data: If specified, this must be a byte string containing - data to be sent to the child process. - :return: A tuple consisting of the subprocess' exit code, a list of - lines read from the subprocess' ``stdout``, and a list of - lines read from the subprocess' ``stderr``. - """ - kwargs = { - 'stdout': subprocess.PIPE, - 'stderr': subprocess.PIPE, - } - if input_data is not None: - kwargs['stdin'] = subprocess.PIPE - stdout = [] - stderr = [] - p = subprocess.Popen(cmd, **kwargs) - # We don't use communicate() here because we may need to - # get clever with interacting with the command - t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) - t1.start() - t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) - t2.start() - if input_data is not None: - p.stdin.write(input_data) - p.stdin.close() - - p.wait() - t1.join() - t2.join() - return p.returncode, stdout, stderr - - def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover - """ - Sign a file. - - :param filename: The pathname to the file to be signed. - :param signer: The identifier of the signer of the file. - :param sign_password: The passphrase for the signer's - private key used for signing. - :param keystore: The path to a directory which contains the keys - used in signing. If not specified, the instance's - ``gpg_home`` attribute is used instead. - :return: The absolute pathname of the file where the signature is - stored. - """ - cmd, sig_file = self.get_sign_command(filename, signer, sign_password, - keystore) - rc, stdout, stderr = self.run_command(cmd, - sign_password.encode('utf-8')) - if rc != 0: - raise DistlibException('sign command failed with error ' - 'code %s' % rc) - return sig_file - - def upload_file(self, metadata, filename, signer=None, sign_password=None, - filetype='sdist', pyversion='source', keystore=None): - """ - Upload a release file to the index. - - :param metadata: A :class:`Metadata` instance defining at least a name - and version number for the file to be uploaded. - :param filename: The pathname of the file to be uploaded. - :param signer: The identifier of the signer of the file. - :param sign_password: The passphrase for the signer's - private key used for signing. - :param filetype: The type of the file being uploaded. This is the - distutils command which produced that file, e.g. - ``sdist`` or ``bdist_wheel``. - :param pyversion: The version of Python which the release relates - to. For code compatible with any Python, this would - be ``source``, otherwise it would be e.g. ``3.2``. - :param keystore: The path to a directory which contains the keys - used in signing. If not specified, the instance's - ``gpg_home`` attribute is used instead. - :return: The HTTP response received from PyPI upon submission of the - request. - """ - self.check_credentials() - if not os.path.exists(filename): - raise DistlibException('not found: %s' % filename) - metadata.validate() - d = metadata.todict() - sig_file = None - if signer: - if not self.gpg: - logger.warning('no signing program available - not signed') - else: - sig_file = self.sign_file(filename, signer, sign_password, - keystore) - with open(filename, 'rb') as f: - file_data = f.read() - md5_digest = hashlib.md5(file_data).hexdigest() - sha256_digest = hashlib.sha256(file_data).hexdigest() - d.update({ - ':action': 'file_upload', - 'protocol_version': '1', - 'filetype': filetype, - 'pyversion': pyversion, - 'md5_digest': md5_digest, - 'sha256_digest': sha256_digest, - }) - files = [('content', os.path.basename(filename), file_data)] - if sig_file: - with open(sig_file, 'rb') as f: - sig_data = f.read() - files.append(('gpg_signature', os.path.basename(sig_file), - sig_data)) - shutil.rmtree(os.path.dirname(sig_file)) - request = self.encode_request(d.items(), files) - return self.send_request(request) - - def upload_documentation(self, metadata, doc_dir): # pragma: no cover - """ - Upload documentation to the index. - - :param metadata: A :class:`Metadata` instance defining at least a name - and version number for the documentation to be - uploaded. - :param doc_dir: The pathname of the directory which contains the - documentation. This should be the directory that - contains the ``index.html`` for the documentation. - :return: The HTTP response received from PyPI upon submission of the - request. - """ - self.check_credentials() - if not os.path.isdir(doc_dir): - raise DistlibException('not a directory: %r' % doc_dir) - fn = os.path.join(doc_dir, 'index.html') - if not os.path.exists(fn): - raise DistlibException('not found: %r' % fn) - metadata.validate() - name, version = metadata.name, metadata.version - zip_data = zip_dir(doc_dir).getvalue() - fields = [(':action', 'doc_upload'), - ('name', name), ('version', version)] - files = [('content', name, zip_data)] - request = self.encode_request(fields, files) - return self.send_request(request) - - def get_verify_command(self, signature_filename, data_filename, - keystore=None): - """ - Return a suitable command for verifying a file. - - :param signature_filename: The pathname to the file containing the - signature. - :param data_filename: The pathname to the file containing the - signed data. - :param keystore: The path to a directory which contains the keys - used in verification. If not specified, the - instance's ``gpg_home`` attribute is used instead. - :return: The verifying command as a list suitable to be - passed to :class:`subprocess.Popen`. - """ - cmd = [self.gpg, '--status-fd', '2', '--no-tty'] - if keystore is None: - keystore = self.gpg_home - if keystore: - cmd.extend(['--homedir', keystore]) - cmd.extend(['--verify', signature_filename, data_filename]) - logger.debug('invoking: %s', ' '.join(cmd)) - return cmd - - def verify_signature(self, signature_filename, data_filename, - keystore=None): - """ - Verify a signature for a file. - - :param signature_filename: The pathname to the file containing the - signature. - :param data_filename: The pathname to the file containing the - signed data. - :param keystore: The path to a directory which contains the keys - used in verification. If not specified, the - instance's ``gpg_home`` attribute is used instead. - :return: True if the signature was verified, else False. - """ - if not self.gpg: - raise DistlibException('verification unavailable because gpg ' - 'unavailable') - cmd = self.get_verify_command(signature_filename, data_filename, - keystore) - rc, stdout, stderr = self.run_command(cmd) - if rc not in (0, 1): - raise DistlibException('verify command failed with error code %s' % rc) - return rc == 0 - - def download_file(self, url, destfile, digest=None, reporthook=None): - """ - This is a convenience method for downloading a file from an URL. - Normally, this will be a file from the index, though currently - no check is made for this (i.e. a file can be downloaded from - anywhere). - - The method is just like the :func:`urlretrieve` function in the - standard library, except that it allows digest computation to be - done during download and checking that the downloaded data - matched any expected value. - - :param url: The URL of the file to be downloaded (assumed to be - available via an HTTP GET request). - :param destfile: The pathname where the downloaded file is to be - saved. - :param digest: If specified, this must be a (hasher, value) - tuple, where hasher is the algorithm used (e.g. - ``'md5'``) and ``value`` is the expected value. - :param reporthook: The same as for :func:`urlretrieve` in the - standard library. - """ - if digest is None: - digester = None - logger.debug('No digest specified') - else: - if isinstance(digest, (list, tuple)): - hasher, digest = digest - else: - hasher = 'md5' - digester = getattr(hashlib, hasher)() - logger.debug('Digest specified: %s' % digest) - # The following code is equivalent to urlretrieve. - # We need to do it this way so that we can compute the - # digest of the file as we go. - with open(destfile, 'wb') as dfp: - # addinfourl is not a context manager on 2.x - # so we have to use try/finally - sfp = self.send_request(Request(url)) - try: - headers = sfp.info() - blocksize = 8192 - size = -1 - read = 0 - blocknum = 0 - if "content-length" in headers: - size = int(headers["Content-Length"]) - if reporthook: - reporthook(blocknum, blocksize, size) - while True: - block = sfp.read(blocksize) - if not block: - break - read += len(block) - dfp.write(block) - if digester: - digester.update(block) - blocknum += 1 - if reporthook: - reporthook(blocknum, blocksize, size) - finally: - sfp.close() - - # check that we got the whole file, if we can - if size >= 0 and read < size: - raise DistlibException( - 'retrieval incomplete: got only %d out of %d bytes' - % (read, size)) - # if we have a digest, it must match. - if digester: - actual = digester.hexdigest() - if digest != actual: - raise DistlibException('%s digest mismatch for %s: expected ' - '%s, got %s' % (hasher, destfile, - digest, actual)) - logger.debug('Digest verified: %s', digest) - - def send_request(self, req): - """ - Send a standard library :class:`Request` to PyPI and return its - response. - - :param req: The request to send. - :return: The HTTP response from PyPI (a standard library HTTPResponse). - """ - handlers = [] - if self.password_handler: - handlers.append(self.password_handler) - if self.ssl_verifier: - handlers.append(self.ssl_verifier) - opener = build_opener(*handlers) - return opener.open(req) - - def encode_request(self, fields, files): - """ - Encode fields and files for posting to an HTTP server. - - :param fields: The fields to send as a list of (fieldname, value) - tuples. - :param files: The files to send as a list of (fieldname, filename, - file_bytes) tuple. - """ - # Adapted from packaging, which in turn was adapted from - # http://code.activestate.com/recipes/146306 - - parts = [] - boundary = self.boundary - for k, values in fields: - if not isinstance(values, (list, tuple)): - values = [values] - - for v in values: - parts.extend(( - b'--' + boundary, - ('Content-Disposition: form-data; name="%s"' % - k).encode('utf-8'), - b'', - v.encode('utf-8'))) - for key, filename, value in files: - parts.extend(( - b'--' + boundary, - ('Content-Disposition: form-data; name="%s"; filename="%s"' % - (key, filename)).encode('utf-8'), - b'', - value)) - - parts.extend((b'--' + boundary + b'--', b'')) - - body = b'\r\n'.join(parts) - ct = b'multipart/form-data; boundary=' + boundary - headers = { - 'Content-type': ct, - 'Content-length': str(len(body)) - } - return Request(self.url, body, headers) - - def search(self, terms, operator=None): # pragma: no cover - if isinstance(terms, string_types): - terms = {'name': terms} - rpc_proxy = ServerProxy(self.url, timeout=3.0) - try: - return rpc_proxy.search(terms, operator or 'and') - finally: - rpc_proxy('close')() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py deleted file mode 100644 index f9f0788..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py +++ /dev/null @@ -1,1303 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012-2023 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# - -import gzip -from io import BytesIO -import json -import logging -import os -import posixpath -import re -try: - import threading -except ImportError: # pragma: no cover - import dummy_threading as threading -import zlib - -from . import DistlibException -from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, - queue, quote, unescape, build_opener, - HTTPRedirectHandler as BaseRedirectHandler, text_type, - Request, HTTPError, URLError) -from .database import Distribution, DistributionPath, make_dist -from .metadata import Metadata, MetadataInvalidError -from .util import (cached_property, ensure_slash, split_filename, get_project_data, - parse_requirement, parse_name_and_version, ServerProxy, - normalize_name) -from .version import get_scheme, UnsupportedVersionError -from .wheel import Wheel, is_compatible - -logger = logging.getLogger(__name__) - -HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') -CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) -HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') -DEFAULT_INDEX = 'https://pypi.org/pypi' - - -def get_all_distribution_names(url=None): - """ - Return all distribution names known by an index. - :param url: The URL of the index. - :return: A list of all known distribution names. - """ - if url is None: - url = DEFAULT_INDEX - client = ServerProxy(url, timeout=3.0) - try: - return client.list_packages() - finally: - client('close')() - - -class RedirectHandler(BaseRedirectHandler): - """ - A class to work around a bug in some Python 3.2.x releases. - """ - # There's a bug in the base version for some 3.2.x - # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header - # returns e.g. /abc, it bails because it says the scheme '' - # is bogus, when actually it should use the request's - # URL for the scheme. See Python issue #13696. - def http_error_302(self, req, fp, code, msg, headers): - # Some servers (incorrectly) return multiple Location headers - # (so probably same goes for URI). Use first header. - newurl = None - for key in ('location', 'uri'): - if key in headers: - newurl = headers[key] - break - if newurl is None: # pragma: no cover - return - urlparts = urlparse(newurl) - if urlparts.scheme == '': - newurl = urljoin(req.get_full_url(), newurl) - if hasattr(headers, 'replace_header'): - headers.replace_header(key, newurl) - else: - headers[key] = newurl - return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, - headers) - - http_error_301 = http_error_303 = http_error_307 = http_error_302 - - -class Locator(object): - """ - A base class for locators - things that locate distributions. - """ - source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') - binary_extensions = ('.egg', '.exe', '.whl') - excluded_extensions = ('.pdf',) - - # A list of tags indicating which wheels you want to match. The default - # value of None matches against the tags compatible with the running - # Python. If you want to match other values, set wheel_tags on a locator - # instance to a list of tuples (pyver, abi, arch) which you want to match. - wheel_tags = None - - downloadable_extensions = source_extensions + ('.whl',) - - def __init__(self, scheme='default'): - """ - Initialise an instance. - :param scheme: Because locators look for most recent versions, they - need to know the version scheme to use. This specifies - the current PEP-recommended scheme - use ``'legacy'`` - if you need to support existing distributions on PyPI. - """ - self._cache = {} - self.scheme = scheme - # Because of bugs in some of the handlers on some of the platforms, - # we use our own opener rather than just using urlopen. - self.opener = build_opener(RedirectHandler()) - # If get_project() is called from locate(), the matcher instance - # is set from the requirement passed to locate(). See issue #18 for - # why this can be useful to know. - self.matcher = None - self.errors = queue.Queue() - - def get_errors(self): - """ - Return any errors which have occurred. - """ - result = [] - while not self.errors.empty(): # pragma: no cover - try: - e = self.errors.get(False) - result.append(e) - except self.errors.Empty: - continue - self.errors.task_done() - return result - - def clear_errors(self): - """ - Clear any errors which may have been logged. - """ - # Just get the errors and throw them away - self.get_errors() - - def clear_cache(self): - self._cache.clear() - - def _get_scheme(self): - return self._scheme - - def _set_scheme(self, value): - self._scheme = value - - scheme = property(_get_scheme, _set_scheme) - - def _get_project(self, name): - """ - For a given project, get a dictionary mapping available versions to Distribution - instances. - - This should be implemented in subclasses. - - If called from a locate() request, self.matcher will be set to a - matcher for the requirement to satisfy, otherwise it will be None. - """ - raise NotImplementedError('Please implement in the subclass') - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - raise NotImplementedError('Please implement in the subclass') - - def get_project(self, name): - """ - For a given project, get a dictionary mapping available versions to Distribution - instances. - - This calls _get_project to do all the work, and just implements a caching layer on top. - """ - if self._cache is None: # pragma: no cover - result = self._get_project(name) - elif name in self._cache: - result = self._cache[name] - else: - self.clear_errors() - result = self._get_project(name) - self._cache[name] = result - return result - - def score_url(self, url): - """ - Give an url a score which can be used to choose preferred URLs - for a given project release. - """ - t = urlparse(url) - basename = posixpath.basename(t.path) - compatible = True - is_wheel = basename.endswith('.whl') - is_downloadable = basename.endswith(self.downloadable_extensions) - if is_wheel: - compatible = is_compatible(Wheel(basename), self.wheel_tags) - return (t.scheme == 'https', 'pypi.org' in t.netloc, - is_downloadable, is_wheel, compatible, basename) - - def prefer_url(self, url1, url2): - """ - Choose one of two URLs where both are candidates for distribution - archives for the same version of a distribution (for example, - .tar.gz vs. zip). - - The current implementation favours https:// URLs over http://, archives - from PyPI over those from other locations, wheel compatibility (if a - wheel) and then the archive name. - """ - result = url2 - if url1: - s1 = self.score_url(url1) - s2 = self.score_url(url2) - if s1 > s2: - result = url1 - if result != url2: - logger.debug('Not replacing %r with %r', url1, url2) - else: - logger.debug('Replacing %r with %r', url1, url2) - return result - - def split_filename(self, filename, project_name): - """ - Attempt to split a filename in project name, version and Python version. - """ - return split_filename(filename, project_name) - - def convert_url_to_download_info(self, url, project_name): - """ - See if a URL is a candidate for a download URL for a project (the URL - has typically been scraped from an HTML page). - - If it is, a dictionary is returned with keys "name", "version", - "filename" and "url"; otherwise, None is returned. - """ - def same_project(name1, name2): - return normalize_name(name1) == normalize_name(name2) - - result = None - scheme, netloc, path, params, query, frag = urlparse(url) - if frag.lower().startswith('egg='): # pragma: no cover - logger.debug('%s: version hint in fragment: %r', - project_name, frag) - m = HASHER_HASH.match(frag) - if m: - algo, digest = m.groups() - else: - algo, digest = None, None - origpath = path - if path and path[-1] == '/': # pragma: no cover - path = path[:-1] - if path.endswith('.whl'): - try: - wheel = Wheel(path) - if not is_compatible(wheel, self.wheel_tags): - logger.debug('Wheel not compatible: %s', path) - else: - if project_name is None: - include = True - else: - include = same_project(wheel.name, project_name) - if include: - result = { - 'name': wheel.name, - 'version': wheel.version, - 'filename': wheel.filename, - 'url': urlunparse((scheme, netloc, origpath, - params, query, '')), - 'python-version': ', '.join( - ['.'.join(list(v[2:])) for v in wheel.pyver]), - } - except Exception: # pragma: no cover - logger.warning('invalid path for wheel: %s', path) - elif not path.endswith(self.downloadable_extensions): # pragma: no cover - logger.debug('Not downloadable: %s', path) - else: # downloadable extension - path = filename = posixpath.basename(path) - for ext in self.downloadable_extensions: - if path.endswith(ext): - path = path[:-len(ext)] - t = self.split_filename(path, project_name) - if not t: # pragma: no cover - logger.debug('No match for project/version: %s', path) - else: - name, version, pyver = t - if not project_name or same_project(project_name, name): - result = { - 'name': name, - 'version': version, - 'filename': filename, - 'url': urlunparse((scheme, netloc, origpath, - params, query, '')), - } - if pyver: # pragma: no cover - result['python-version'] = pyver - break - if result and algo: - result['%s_digest' % algo] = digest - return result - - def _get_digest(self, info): - """ - Get a digest from a dictionary by looking at a "digests" dictionary - or keys of the form 'algo_digest'. - - Returns a 2-tuple (algo, digest) if found, else None. Currently - looks only for SHA256, then MD5. - """ - result = None - if 'digests' in info: - digests = info['digests'] - for algo in ('sha256', 'md5'): - if algo in digests: - result = (algo, digests[algo]) - break - if not result: - for algo in ('sha256', 'md5'): - key = '%s_digest' % algo - if key in info: - result = (algo, info[key]) - break - return result - - def _update_version_data(self, result, info): - """ - Update a result dictionary (the final result from _get_project) with a - dictionary for a specific version, which typically holds information - gleaned from a filename or URL for an archive for the distribution. - """ - name = info.pop('name') - version = info.pop('version') - if version in result: - dist = result[version] - md = dist.metadata - else: - dist = make_dist(name, version, scheme=self.scheme) - md = dist.metadata - dist.digest = digest = self._get_digest(info) - url = info['url'] - result['digests'][url] = digest - if md.source_url != info['url']: - md.source_url = self.prefer_url(md.source_url, url) - result['urls'].setdefault(version, set()).add(url) - dist.locator = self - result[version] = dist - - def locate(self, requirement, prereleases=False): - """ - Find the most recent distribution which matches the given - requirement. - - :param requirement: A requirement of the form 'foo (1.0)' or perhaps - 'foo (>= 1.0, < 2.0, != 1.3)' - :param prereleases: If ``True``, allow pre-release versions - to be located. Otherwise, pre-release versions - are not returned. - :return: A :class:`Distribution` instance, or ``None`` if no such - distribution could be located. - """ - result = None - r = parse_requirement(requirement) - if r is None: # pragma: no cover - raise DistlibException('Not a valid requirement: %r' % requirement) - scheme = get_scheme(self.scheme) - self.matcher = matcher = scheme.matcher(r.requirement) - logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) - versions = self.get_project(r.name) - if len(versions) > 2: # urls and digests keys are present - # sometimes, versions are invalid - slist = [] - vcls = matcher.version_class - for k in versions: - if k in ('urls', 'digests'): - continue - try: - if not matcher.match(k): - pass # logger.debug('%s did not match %r', matcher, k) - else: - if prereleases or not vcls(k).is_prerelease: - slist.append(k) - except Exception: # pragma: no cover - logger.warning('error matching %s with %r', matcher, k) - pass # slist.append(k) - if len(slist) > 1: - slist = sorted(slist, key=scheme.key) - if slist: - logger.debug('sorted list: %s', slist) - version = slist[-1] - result = versions[version] - if result: - if r.extras: - result.extras = r.extras - result.download_urls = versions.get('urls', {}).get(version, set()) - d = {} - sd = versions.get('digests', {}) - for url in result.download_urls: - if url in sd: # pragma: no cover - d[url] = sd[url] - result.digests = d - self.matcher = None - return result - - -class PyPIRPCLocator(Locator): - """ - This locator uses XML-RPC to locate distributions. It therefore - cannot be used with simple mirrors (that only mirror file content). - """ - def __init__(self, url, **kwargs): - """ - Initialise an instance. - - :param url: The URL to use for XML-RPC. - :param kwargs: Passed to the superclass constructor. - """ - super(PyPIRPCLocator, self).__init__(**kwargs) - self.base_url = url - self.client = ServerProxy(url, timeout=3.0) - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - return set(self.client.list_packages()) - - def _get_project(self, name): - result = {'urls': {}, 'digests': {}} - versions = self.client.package_releases(name, True) - for v in versions: - urls = self.client.release_urls(name, v) - data = self.client.release_data(name, v) - metadata = Metadata(scheme=self.scheme) - metadata.name = data['name'] - metadata.version = data['version'] - metadata.license = data.get('license') - metadata.keywords = data.get('keywords', []) - metadata.summary = data.get('summary') - dist = Distribution(metadata) - if urls: - info = urls[0] - metadata.source_url = info['url'] - dist.digest = self._get_digest(info) - dist.locator = self - result[v] = dist - for info in urls: - url = info['url'] - digest = self._get_digest(info) - result['urls'].setdefault(v, set()).add(url) - result['digests'][url] = digest - return result - - -class PyPIJSONLocator(Locator): - """ - This locator uses PyPI's JSON interface. It's very limited in functionality - and probably not worth using. - """ - def __init__(self, url, **kwargs): - super(PyPIJSONLocator, self).__init__(**kwargs) - self.base_url = ensure_slash(url) - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - raise NotImplementedError('Not available from this locator') - - def _get_project(self, name): - result = {'urls': {}, 'digests': {}} - url = urljoin(self.base_url, '%s/json' % quote(name)) - try: - resp = self.opener.open(url) - data = resp.read().decode() # for now - d = json.loads(data) - md = Metadata(scheme=self.scheme) - data = d['info'] - md.name = data['name'] - md.version = data['version'] - md.license = data.get('license') - md.keywords = data.get('keywords', []) - md.summary = data.get('summary') - dist = Distribution(md) - dist.locator = self - # urls = d['urls'] - result[md.version] = dist - for info in d['urls']: - url = info['url'] - dist.download_urls.add(url) - dist.digests[url] = self._get_digest(info) - result['urls'].setdefault(md.version, set()).add(url) - result['digests'][url] = self._get_digest(info) - # Now get other releases - for version, infos in d['releases'].items(): - if version == md.version: - continue # already done - omd = Metadata(scheme=self.scheme) - omd.name = md.name - omd.version = version - odist = Distribution(omd) - odist.locator = self - result[version] = odist - for info in infos: - url = info['url'] - odist.download_urls.add(url) - odist.digests[url] = self._get_digest(info) - result['urls'].setdefault(version, set()).add(url) - result['digests'][url] = self._get_digest(info) -# for info in urls: -# md.source_url = info['url'] -# dist.digest = self._get_digest(info) -# dist.locator = self -# for info in urls: -# url = info['url'] -# result['urls'].setdefault(md.version, set()).add(url) -# result['digests'][url] = self._get_digest(info) - except Exception as e: - self.errors.put(text_type(e)) - logger.exception('JSON fetch failed: %s', e) - return result - - -class Page(object): - """ - This class represents a scraped HTML page. - """ - # The following slightly hairy-looking regex just looks for the contents of - # an anchor link, which has an attribute "href" either immediately preceded - # or immediately followed by a "rel" attribute. The attribute values can be - # declared with double quotes, single quotes or no quotes - which leads to - # the length of the expression. - _href = re.compile(""" -(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? -href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) -(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? -""", re.I | re.S | re.X) - _base = re.compile(r"""]+)""", re.I | re.S) - - def __init__(self, data, url): - """ - Initialise an instance with the Unicode page contents and the URL they - came from. - """ - self.data = data - self.base_url = self.url = url - m = self._base.search(self.data) - if m: - self.base_url = m.group(1) - - _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) - - @cached_property - def links(self): - """ - Return the URLs of all the links on a page together with information - about their "rel" attribute, for determining which ones to treat as - downloads and which ones to queue for further scraping. - """ - def clean(url): - "Tidy up an URL." - scheme, netloc, path, params, query, frag = urlparse(url) - return urlunparse((scheme, netloc, quote(path), - params, query, frag)) - - result = set() - for match in self._href.finditer(self.data): - d = match.groupdict('') - rel = (d['rel1'] or d['rel2'] or d['rel3'] or - d['rel4'] or d['rel5'] or d['rel6']) - url = d['url1'] or d['url2'] or d['url3'] - url = urljoin(self.base_url, url) - url = unescape(url) - url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) - result.add((url, rel)) - # We sort the result, hoping to bring the most recent versions - # to the front - result = sorted(result, key=lambda t: t[0], reverse=True) - return result - - -class SimpleScrapingLocator(Locator): - """ - A locator which scrapes HTML pages to locate downloads for a distribution. - This runs multiple threads to do the I/O; performance is at least as good - as pip's PackageFinder, which works in an analogous fashion. - """ - - # These are used to deal with various Content-Encoding schemes. - decoders = { - 'deflate': zlib.decompress, - 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), - 'none': lambda b: b, - } - - def __init__(self, url, timeout=None, num_workers=10, **kwargs): - """ - Initialise an instance. - :param url: The root URL to use for scraping. - :param timeout: The timeout, in seconds, to be applied to requests. - This defaults to ``None`` (no timeout specified). - :param num_workers: The number of worker threads you want to do I/O, - This defaults to 10. - :param kwargs: Passed to the superclass. - """ - super(SimpleScrapingLocator, self).__init__(**kwargs) - self.base_url = ensure_slash(url) - self.timeout = timeout - self._page_cache = {} - self._seen = set() - self._to_fetch = queue.Queue() - self._bad_hosts = set() - self.skip_externals = False - self.num_workers = num_workers - self._lock = threading.RLock() - # See issue #45: we need to be resilient when the locator is used - # in a thread, e.g. with concurrent.futures. We can't use self._lock - # as it is for coordinating our internal threads - the ones created - # in _prepare_threads. - self._gplock = threading.RLock() - self.platform_check = False # See issue #112 - - def _prepare_threads(self): - """ - Threads are created only when get_project is called, and terminate - before it returns. They are there primarily to parallelise I/O (i.e. - fetching web pages). - """ - self._threads = [] - for i in range(self.num_workers): - t = threading.Thread(target=self._fetch) - t.daemon = True - t.start() - self._threads.append(t) - - def _wait_threads(self): - """ - Tell all the threads to terminate (by sending a sentinel value) and - wait for them to do so. - """ - # Note that you need two loops, since you can't say which - # thread will get each sentinel - for t in self._threads: - self._to_fetch.put(None) # sentinel - for t in self._threads: - t.join() - self._threads = [] - - def _get_project(self, name): - result = {'urls': {}, 'digests': {}} - with self._gplock: - self.result = result - self.project_name = name - url = urljoin(self.base_url, '%s/' % quote(name)) - self._seen.clear() - self._page_cache.clear() - self._prepare_threads() - try: - logger.debug('Queueing %s', url) - self._to_fetch.put(url) - self._to_fetch.join() - finally: - self._wait_threads() - del self.result - return result - - platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' - r'win(32|_amd64)|macosx_?\d+)\b', re.I) - - def _is_platform_dependent(self, url): - """ - Does an URL refer to a platform-specific download? - """ - return self.platform_dependent.search(url) - - def _process_download(self, url): - """ - See if an URL is a suitable download for a project. - - If it is, register information in the result dictionary (for - _get_project) about the specific version it's for. - - Note that the return value isn't actually used other than as a boolean - value. - """ - if self.platform_check and self._is_platform_dependent(url): - info = None - else: - info = self.convert_url_to_download_info(url, self.project_name) - logger.debug('process_download: %s -> %s', url, info) - if info: - with self._lock: # needed because self.result is shared - self._update_version_data(self.result, info) - return info - - def _should_queue(self, link, referrer, rel): - """ - Determine whether a link URL from a referring page and with a - particular "rel" attribute should be queued for scraping. - """ - scheme, netloc, path, _, _, _ = urlparse(link) - if path.endswith(self.source_extensions + self.binary_extensions + - self.excluded_extensions): - result = False - elif self.skip_externals and not link.startswith(self.base_url): - result = False - elif not referrer.startswith(self.base_url): - result = False - elif rel not in ('homepage', 'download'): - result = False - elif scheme not in ('http', 'https', 'ftp'): - result = False - elif self._is_platform_dependent(link): - result = False - else: - host = netloc.split(':', 1)[0] - if host.lower() == 'localhost': - result = False - else: - result = True - logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, - referrer, result) - return result - - def _fetch(self): - """ - Get a URL to fetch from the work queue, get the HTML page, examine its - links for download candidates and candidates for further scraping. - - This is a handy method to run in a thread. - """ - while True: - url = self._to_fetch.get() - try: - if url: - page = self.get_page(url) - if page is None: # e.g. after an error - continue - for link, rel in page.links: - if link not in self._seen: - try: - self._seen.add(link) - if (not self._process_download(link) and - self._should_queue(link, url, rel)): - logger.debug('Queueing %s from %s', link, url) - self._to_fetch.put(link) - except MetadataInvalidError: # e.g. invalid versions - pass - except Exception as e: # pragma: no cover - self.errors.put(text_type(e)) - finally: - # always do this, to avoid hangs :-) - self._to_fetch.task_done() - if not url: - # logger.debug('Sentinel seen, quitting.') - break - - def get_page(self, url): - """ - Get the HTML for an URL, possibly from an in-memory cache. - - XXX TODO Note: this cache is never actually cleared. It's assumed that - the data won't get stale over the lifetime of a locator instance (not - necessarily true for the default_locator). - """ - # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api - scheme, netloc, path, _, _, _ = urlparse(url) - if scheme == 'file' and os.path.isdir(url2pathname(path)): - url = urljoin(ensure_slash(url), 'index.html') - - if url in self._page_cache: - result = self._page_cache[url] - logger.debug('Returning %s from cache: %s', url, result) - else: - host = netloc.split(':', 1)[0] - result = None - if host in self._bad_hosts: - logger.debug('Skipping %s due to bad host %s', url, host) - else: - req = Request(url, headers={'Accept-encoding': 'identity'}) - try: - logger.debug('Fetching %s', url) - resp = self.opener.open(req, timeout=self.timeout) - logger.debug('Fetched %s', url) - headers = resp.info() - content_type = headers.get('Content-Type', '') - if HTML_CONTENT_TYPE.match(content_type): - final_url = resp.geturl() - data = resp.read() - encoding = headers.get('Content-Encoding') - if encoding: - decoder = self.decoders[encoding] # fail if not found - data = decoder(data) - encoding = 'utf-8' - m = CHARSET.search(content_type) - if m: - encoding = m.group(1) - try: - data = data.decode(encoding) - except UnicodeError: # pragma: no cover - data = data.decode('latin-1') # fallback - result = Page(data, final_url) - self._page_cache[final_url] = result - except HTTPError as e: - if e.code != 404: - logger.exception('Fetch failed: %s: %s', url, e) - except URLError as e: # pragma: no cover - logger.exception('Fetch failed: %s: %s', url, e) - with self._lock: - self._bad_hosts.add(host) - except Exception as e: # pragma: no cover - logger.exception('Fetch failed: %s: %s', url, e) - finally: - self._page_cache[url] = result # even if None (failure) - return result - - _distname_re = re.compile(']*>([^<]+)<') - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - result = set() - page = self.get_page(self.base_url) - if not page: - raise DistlibException('Unable to get %s' % self.base_url) - for match in self._distname_re.finditer(page.data): - result.add(match.group(1)) - return result - - -class DirectoryLocator(Locator): - """ - This class locates distributions in a directory tree. - """ - - def __init__(self, path, **kwargs): - """ - Initialise an instance. - :param path: The root of the directory tree to search. - :param kwargs: Passed to the superclass constructor, - except for: - * recursive - if True (the default), subdirectories are - recursed into. If False, only the top-level directory - is searched, - """ - self.recursive = kwargs.pop('recursive', True) - super(DirectoryLocator, self).__init__(**kwargs) - path = os.path.abspath(path) - if not os.path.isdir(path): # pragma: no cover - raise DistlibException('Not a directory: %r' % path) - self.base_dir = path - - def should_include(self, filename, parent): - """ - Should a filename be considered as a candidate for a distribution - archive? As well as the filename, the directory which contains it - is provided, though not used by the current implementation. - """ - return filename.endswith(self.downloadable_extensions) - - def _get_project(self, name): - result = {'urls': {}, 'digests': {}} - for root, dirs, files in os.walk(self.base_dir): - for fn in files: - if self.should_include(fn, root): - fn = os.path.join(root, fn) - url = urlunparse(('file', '', - pathname2url(os.path.abspath(fn)), - '', '', '')) - info = self.convert_url_to_download_info(url, name) - if info: - self._update_version_data(result, info) - if not self.recursive: - break - return result - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - result = set() - for root, dirs, files in os.walk(self.base_dir): - for fn in files: - if self.should_include(fn, root): - fn = os.path.join(root, fn) - url = urlunparse(('file', '', - pathname2url(os.path.abspath(fn)), - '', '', '')) - info = self.convert_url_to_download_info(url, None) - if info: - result.add(info['name']) - if not self.recursive: - break - return result - - -class JSONLocator(Locator): - """ - This locator uses special extended metadata (not available on PyPI) and is - the basis of performant dependency resolution in distlib. Other locators - require archive downloads before dependencies can be determined! As you - might imagine, that can be slow. - """ - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - raise NotImplementedError('Not available from this locator') - - def _get_project(self, name): - result = {'urls': {}, 'digests': {}} - data = get_project_data(name) - if data: - for info in data.get('files', []): - if info['ptype'] != 'sdist' or info['pyversion'] != 'source': - continue - # We don't store summary in project metadata as it makes - # the data bigger for no benefit during dependency - # resolution - dist = make_dist(data['name'], info['version'], - summary=data.get('summary', - 'Placeholder for summary'), - scheme=self.scheme) - md = dist.metadata - md.source_url = info['url'] - # TODO SHA256 digest - if 'digest' in info and info['digest']: - dist.digest = ('md5', info['digest']) - md.dependencies = info.get('requirements', {}) - dist.exports = info.get('exports', {}) - result[dist.version] = dist - result['urls'].setdefault(dist.version, set()).add(info['url']) - return result - - -class DistPathLocator(Locator): - """ - This locator finds installed distributions in a path. It can be useful for - adding to an :class:`AggregatingLocator`. - """ - def __init__(self, distpath, **kwargs): - """ - Initialise an instance. - - :param distpath: A :class:`DistributionPath` instance to search. - """ - super(DistPathLocator, self).__init__(**kwargs) - assert isinstance(distpath, DistributionPath) - self.distpath = distpath - - def _get_project(self, name): - dist = self.distpath.get_distribution(name) - if dist is None: - result = {'urls': {}, 'digests': {}} - else: - result = { - dist.version: dist, - 'urls': {dist.version: set([dist.source_url])}, - 'digests': {dist.version: set([None])} - } - return result - - -class AggregatingLocator(Locator): - """ - This class allows you to chain and/or merge a list of locators. - """ - def __init__(self, *locators, **kwargs): - """ - Initialise an instance. - - :param locators: The list of locators to search. - :param kwargs: Passed to the superclass constructor, - except for: - * merge - if False (the default), the first successful - search from any of the locators is returned. If True, - the results from all locators are merged (this can be - slow). - """ - self.merge = kwargs.pop('merge', False) - self.locators = locators - super(AggregatingLocator, self).__init__(**kwargs) - - def clear_cache(self): - super(AggregatingLocator, self).clear_cache() - for locator in self.locators: - locator.clear_cache() - - def _set_scheme(self, value): - self._scheme = value - for locator in self.locators: - locator.scheme = value - - scheme = property(Locator.scheme.fget, _set_scheme) - - def _get_project(self, name): - result = {} - for locator in self.locators: - d = locator.get_project(name) - if d: - if self.merge: - files = result.get('urls', {}) - digests = result.get('digests', {}) - # next line could overwrite result['urls'], result['digests'] - result.update(d) - df = result.get('urls') - if files and df: - for k, v in files.items(): - if k in df: - df[k] |= v - else: - df[k] = v - dd = result.get('digests') - if digests and dd: - dd.update(digests) - else: - # See issue #18. If any dists are found and we're looking - # for specific constraints, we only return something if - # a match is found. For example, if a DirectoryLocator - # returns just foo (1.0) while we're looking for - # foo (>= 2.0), we'll pretend there was nothing there so - # that subsequent locators can be queried. Otherwise we - # would just return foo (1.0) which would then lead to a - # failure to find foo (>= 2.0), because other locators - # weren't searched. Note that this only matters when - # merge=False. - if self.matcher is None: - found = True - else: - found = False - for k in d: - if self.matcher.match(k): - found = True - break - if found: - result = d - break - return result - - def get_distribution_names(self): - """ - Return all the distribution names known to this locator. - """ - result = set() - for locator in self.locators: - try: - result |= locator.get_distribution_names() - except NotImplementedError: - pass - return result - - -# We use a legacy scheme simply because most of the dists on PyPI use legacy -# versions which don't conform to PEP 440. -default_locator = AggregatingLocator( - # JSONLocator(), # don't use as PEP 426 is withdrawn - SimpleScrapingLocator('https://pypi.org/simple/', - timeout=3.0), - scheme='legacy') - -locate = default_locator.locate - - -class DependencyFinder(object): - """ - Locate dependencies for distributions. - """ - - def __init__(self, locator=None): - """ - Initialise an instance, using the specified locator - to locate distributions. - """ - self.locator = locator or default_locator - self.scheme = get_scheme(self.locator.scheme) - - def add_distribution(self, dist): - """ - Add a distribution to the finder. This will update internal information - about who provides what. - :param dist: The distribution to add. - """ - logger.debug('adding distribution %s', dist) - name = dist.key - self.dists_by_name[name] = dist - self.dists[(name, dist.version)] = dist - for p in dist.provides: - name, version = parse_name_and_version(p) - logger.debug('Add to provided: %s, %s, %s', name, version, dist) - self.provided.setdefault(name, set()).add((version, dist)) - - def remove_distribution(self, dist): - """ - Remove a distribution from the finder. This will update internal - information about who provides what. - :param dist: The distribution to remove. - """ - logger.debug('removing distribution %s', dist) - name = dist.key - del self.dists_by_name[name] - del self.dists[(name, dist.version)] - for p in dist.provides: - name, version = parse_name_and_version(p) - logger.debug('Remove from provided: %s, %s, %s', name, version, dist) - s = self.provided[name] - s.remove((version, dist)) - if not s: - del self.provided[name] - - def get_matcher(self, reqt): - """ - Get a version matcher for a requirement. - :param reqt: The requirement - :type reqt: str - :return: A version matcher (an instance of - :class:`distlib.version.Matcher`). - """ - try: - matcher = self.scheme.matcher(reqt) - except UnsupportedVersionError: # pragma: no cover - # XXX compat-mode if cannot read the version - name = reqt.split()[0] - matcher = self.scheme.matcher(name) - return matcher - - def find_providers(self, reqt): - """ - Find the distributions which can fulfill a requirement. - - :param reqt: The requirement. - :type reqt: str - :return: A set of distribution which can fulfill the requirement. - """ - matcher = self.get_matcher(reqt) - name = matcher.key # case-insensitive - result = set() - provided = self.provided - if name in provided: - for version, provider in provided[name]: - try: - match = matcher.match(version) - except UnsupportedVersionError: - match = False - - if match: - result.add(provider) - break - return result - - def try_to_replace(self, provider, other, problems): - """ - Attempt to replace one provider with another. This is typically used - when resolving dependencies from multiple sources, e.g. A requires - (B >= 1.0) while C requires (B >= 1.1). - - For successful replacement, ``provider`` must meet all the requirements - which ``other`` fulfills. - - :param provider: The provider we are trying to replace with. - :param other: The provider we're trying to replace. - :param problems: If False is returned, this will contain what - problems prevented replacement. This is currently - a tuple of the literal string 'cantreplace', - ``provider``, ``other`` and the set of requirements - that ``provider`` couldn't fulfill. - :return: True if we can replace ``other`` with ``provider``, else - False. - """ - rlist = self.reqts[other] - unmatched = set() - for s in rlist: - matcher = self.get_matcher(s) - if not matcher.match(provider.version): - unmatched.add(s) - if unmatched: - # can't replace other with provider - problems.add(('cantreplace', provider, other, - frozenset(unmatched))) - result = False - else: - # can replace other with provider - self.remove_distribution(other) - del self.reqts[other] - for s in rlist: - self.reqts.setdefault(provider, set()).add(s) - self.add_distribution(provider) - result = True - return result - - def find(self, requirement, meta_extras=None, prereleases=False): - """ - Find a distribution and all distributions it depends on. - - :param requirement: The requirement specifying the distribution to - find, or a Distribution instance. - :param meta_extras: A list of meta extras such as :test:, :build: and - so on. - :param prereleases: If ``True``, allow pre-release versions to be - returned - otherwise, don't return prereleases - unless they're all that's available. - - Return a set of :class:`Distribution` instances and a set of - problems. - - The distributions returned should be such that they have the - :attr:`required` attribute set to ``True`` if they were - from the ``requirement`` passed to ``find()``, and they have the - :attr:`build_time_dependency` attribute set to ``True`` unless they - are post-installation dependencies of the ``requirement``. - - The problems should be a tuple consisting of the string - ``'unsatisfied'`` and the requirement which couldn't be satisfied - by any distribution known to the locator. - """ - - self.provided = {} - self.dists = {} - self.dists_by_name = {} - self.reqts = {} - - meta_extras = set(meta_extras or []) - if ':*:' in meta_extras: - meta_extras.remove(':*:') - # :meta: and :run: are implicitly included - meta_extras |= set([':test:', ':build:', ':dev:']) - - if isinstance(requirement, Distribution): - dist = odist = requirement - logger.debug('passed %s as requirement', odist) - else: - dist = odist = self.locator.locate(requirement, - prereleases=prereleases) - if dist is None: - raise DistlibException('Unable to locate %r' % requirement) - logger.debug('located %s', odist) - dist.requested = True - problems = set() - todo = set([dist]) - install_dists = set([odist]) - while todo: - dist = todo.pop() - name = dist.key # case-insensitive - if name not in self.dists_by_name: - self.add_distribution(dist) - else: - # import pdb; pdb.set_trace() - other = self.dists_by_name[name] - if other != dist: - self.try_to_replace(dist, other, problems) - - ireqts = dist.run_requires | dist.meta_requires - sreqts = dist.build_requires - ereqts = set() - if meta_extras and dist in install_dists: - for key in ('test', 'build', 'dev'): - e = ':%s:' % key - if e in meta_extras: - ereqts |= getattr(dist, '%s_requires' % key) - all_reqts = ireqts | sreqts | ereqts - for r in all_reqts: - providers = self.find_providers(r) - if not providers: - logger.debug('No providers found for %r', r) - provider = self.locator.locate(r, prereleases=prereleases) - # If no provider is found and we didn't consider - # prereleases, consider them now. - if provider is None and not prereleases: - provider = self.locator.locate(r, prereleases=True) - if provider is None: - logger.debug('Cannot satisfy %r', r) - problems.add(('unsatisfied', r)) - else: - n, v = provider.key, provider.version - if (n, v) not in self.dists: - todo.add(provider) - providers.add(provider) - if r in ireqts and dist in install_dists: - install_dists.add(provider) - logger.debug('Adding %s to install_dists', - provider.name_and_version) - for p in providers: - name = p.key - if name not in self.dists_by_name: - self.reqts.setdefault(p, set()).add(r) - else: - other = self.dists_by_name[name] - if other != p: - # see if other can be replaced by p - self.try_to_replace(p, other, problems) - - dists = set(self.dists.values()) - for dist in dists: - dist.build_time_dependency = dist not in install_dists - if dist.build_time_dependency: - logger.debug('%s is a build-time dependency only.', - dist.name_and_version) - logger.debug('find done for %s', odist) - return dists, problems diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py deleted file mode 100644 index 420dcf1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py +++ /dev/null @@ -1,384 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012-2023 Python Software Foundation. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -""" -Class representing the list of files in a distribution. - -Equivalent to distutils.filelist, but fixes some problems. -""" -import fnmatch -import logging -import os -import re -import sys - -from . import DistlibException -from .compat import fsdecode -from .util import convert_path - - -__all__ = ['Manifest'] - -logger = logging.getLogger(__name__) - -# a \ followed by some spaces + EOL -_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) -_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) - -# -# Due to the different results returned by fnmatch.translate, we need -# to do slightly different processing for Python 2.7 and 3.2 ... this needed -# to be brought in for Python 3.6 onwards. -# -_PYTHON_VERSION = sys.version_info[:2] - - -class Manifest(object): - """ - A list of files built by exploring the filesystem and filtered by applying various - patterns to what we find there. - """ - - def __init__(self, base=None): - """ - Initialise an instance. - - :param base: The base directory to explore under. - """ - self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) - self.prefix = self.base + os.sep - self.allfiles = None - self.files = set() - - # - # Public API - # - - def findall(self): - """Find all files under the base and set ``allfiles`` to the absolute - pathnames of files found. - """ - from stat import S_ISREG, S_ISDIR, S_ISLNK - - self.allfiles = allfiles = [] - root = self.base - stack = [root] - pop = stack.pop - push = stack.append - - while stack: - root = pop() - names = os.listdir(root) - - for name in names: - fullname = os.path.join(root, name) - - # Avoid excess stat calls -- just one will do, thank you! - stat = os.stat(fullname) - mode = stat.st_mode - if S_ISREG(mode): - allfiles.append(fsdecode(fullname)) - elif S_ISDIR(mode) and not S_ISLNK(mode): - push(fullname) - - def add(self, item): - """ - Add a file to the manifest. - - :param item: The pathname to add. This can be relative to the base. - """ - if not item.startswith(self.prefix): - item = os.path.join(self.base, item) - self.files.add(os.path.normpath(item)) - - def add_many(self, items): - """ - Add a list of files to the manifest. - - :param items: The pathnames to add. These can be relative to the base. - """ - for item in items: - self.add(item) - - def sorted(self, wantdirs=False): - """ - Return sorted files in directory order - """ - - def add_dir(dirs, d): - dirs.add(d) - logger.debug('add_dir added %s', d) - if d != self.base: - parent, _ = os.path.split(d) - assert parent not in ('', '/') - add_dir(dirs, parent) - - result = set(self.files) # make a copy! - if wantdirs: - dirs = set() - for f in result: - add_dir(dirs, os.path.dirname(f)) - result |= dirs - return [os.path.join(*path_tuple) for path_tuple in - sorted(os.path.split(path) for path in result)] - - def clear(self): - """Clear all collected files.""" - self.files = set() - self.allfiles = [] - - def process_directive(self, directive): - """ - Process a directive which either adds some files from ``allfiles`` to - ``files``, or removes some files from ``files``. - - :param directive: The directive to process. This should be in a format - compatible with distutils ``MANIFEST.in`` files: - - http://docs.python.org/distutils/sourcedist.html#commands - """ - # Parse the line: split it up, make sure the right number of words - # is there, and return the relevant words. 'action' is always - # defined: it's the first word of the line. Which of the other - # three are defined depends on the action; it'll be either - # patterns, (dir and patterns), or (dirpattern). - action, patterns, thedir, dirpattern = self._parse_directive(directive) - - # OK, now we know that the action is valid and we have the - # right number of words on the line for that action -- so we - # can proceed with minimal error-checking. - if action == 'include': - for pattern in patterns: - if not self._include_pattern(pattern, anchor=True): - logger.warning('no files found matching %r', pattern) - - elif action == 'exclude': - for pattern in patterns: - self._exclude_pattern(pattern, anchor=True) - - elif action == 'global-include': - for pattern in patterns: - if not self._include_pattern(pattern, anchor=False): - logger.warning('no files found matching %r ' - 'anywhere in distribution', pattern) - - elif action == 'global-exclude': - for pattern in patterns: - self._exclude_pattern(pattern, anchor=False) - - elif action == 'recursive-include': - for pattern in patterns: - if not self._include_pattern(pattern, prefix=thedir): - logger.warning('no files found matching %r ' - 'under directory %r', pattern, thedir) - - elif action == 'recursive-exclude': - for pattern in patterns: - self._exclude_pattern(pattern, prefix=thedir) - - elif action == 'graft': - if not self._include_pattern(None, prefix=dirpattern): - logger.warning('no directories found matching %r', - dirpattern) - - elif action == 'prune': - if not self._exclude_pattern(None, prefix=dirpattern): - logger.warning('no previously-included directories found ' - 'matching %r', dirpattern) - else: # pragma: no cover - # This should never happen, as it should be caught in - # _parse_template_line - raise DistlibException( - 'invalid action %r' % action) - - # - # Private API - # - - def _parse_directive(self, directive): - """ - Validate a directive. - :param directive: The directive to validate. - :return: A tuple of action, patterns, thedir, dir_patterns - """ - words = directive.split() - if len(words) == 1 and words[0] not in ('include', 'exclude', - 'global-include', - 'global-exclude', - 'recursive-include', - 'recursive-exclude', - 'graft', 'prune'): - # no action given, let's use the default 'include' - words.insert(0, 'include') - - action = words[0] - patterns = thedir = dir_pattern = None - - if action in ('include', 'exclude', - 'global-include', 'global-exclude'): - if len(words) < 2: - raise DistlibException( - '%r expects ...' % action) - - patterns = [convert_path(word) for word in words[1:]] - - elif action in ('recursive-include', 'recursive-exclude'): - if len(words) < 3: - raise DistlibException( - '%r expects ...' % action) - - thedir = convert_path(words[1]) - patterns = [convert_path(word) for word in words[2:]] - - elif action in ('graft', 'prune'): - if len(words) != 2: - raise DistlibException( - '%r expects a single ' % action) - - dir_pattern = convert_path(words[1]) - - else: - raise DistlibException('unknown action %r' % action) - - return action, patterns, thedir, dir_pattern - - def _include_pattern(self, pattern, anchor=True, prefix=None, - is_regex=False): - """Select strings (presumably filenames) from 'self.files' that - match 'pattern', a Unix-style wildcard (glob) pattern. - - Patterns are not quite the same as implemented by the 'fnmatch' - module: '*' and '?' match non-special characters, where "special" - is platform-dependent: slash on Unix; colon, slash, and backslash on - DOS/Windows; and colon on Mac OS. - - If 'anchor' is true (the default), then the pattern match is more - stringent: "*.py" will match "foo.py" but not "foo/bar.py". If - 'anchor' is false, both of these will match. - - If 'prefix' is supplied, then only filenames starting with 'prefix' - (itself a pattern) and ending with 'pattern', with anything in between - them, will match. 'anchor' is ignored in this case. - - If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and - 'pattern' is assumed to be either a string containing a regex or a - regex object -- no translation is done, the regex is just compiled - and used as-is. - - Selected strings will be added to self.files. - - Return True if files are found. - """ - # XXX docstring lying about what the special chars are? - found = False - pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) - - # delayed loading of allfiles list - if self.allfiles is None: - self.findall() - - for name in self.allfiles: - if pattern_re.search(name): - self.files.add(name) - found = True - return found - - def _exclude_pattern(self, pattern, anchor=True, prefix=None, - is_regex=False): - """Remove strings (presumably filenames) from 'files' that match - 'pattern'. - - Other parameters are the same as for 'include_pattern()', above. - The list 'self.files' is modified in place. Return True if files are - found. - - This API is public to allow e.g. exclusion of SCM subdirs, e.g. when - packaging source distributions - """ - found = False - pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) - for f in list(self.files): - if pattern_re.search(f): - self.files.remove(f) - found = True - return found - - def _translate_pattern(self, pattern, anchor=True, prefix=None, - is_regex=False): - """Translate a shell-like wildcard pattern to a compiled regular - expression. - - Return the compiled regex. If 'is_regex' true, - then 'pattern' is directly compiled to a regex (if it's a string) - or just returned as-is (assumes it's a regex object). - """ - if is_regex: - if isinstance(pattern, str): - return re.compile(pattern) - else: - return pattern - - if _PYTHON_VERSION > (3, 2): - # ditch start and end characters - start, _, end = self._glob_to_re('_').partition('_') - - if pattern: - pattern_re = self._glob_to_re(pattern) - if _PYTHON_VERSION > (3, 2): - assert pattern_re.startswith(start) and pattern_re.endswith(end) - else: - pattern_re = '' - - base = re.escape(os.path.join(self.base, '')) - if prefix is not None: - # ditch end of pattern character - if _PYTHON_VERSION <= (3, 2): - empty_pattern = self._glob_to_re('') - prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] - else: - prefix_re = self._glob_to_re(prefix) - assert prefix_re.startswith(start) and prefix_re.endswith(end) - prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] - sep = os.sep - if os.sep == '\\': - sep = r'\\' - if _PYTHON_VERSION <= (3, 2): - pattern_re = '^' + base + sep.join((prefix_re, - '.*' + pattern_re)) - else: - pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] - pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, - pattern_re, end) - else: # no prefix -- respect anchor flag - if anchor: - if _PYTHON_VERSION <= (3, 2): - pattern_re = '^' + base + pattern_re - else: - pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) - - return re.compile(pattern_re) - - def _glob_to_re(self, pattern): - """Translate a shell-like glob pattern to a regular expression. - - Return a string containing the regex. Differs from - 'fnmatch.translate()' in that '*' does not match "special characters" - (which are platform-specific). - """ - pattern_re = fnmatch.translate(pattern) - - # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which - # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, - # and by extension they shouldn't match such "special characters" under - # any OS. So change all non-escaped dots in the RE to match any - # character except the special characters (currently: just os.sep). - sep = os.sep - if os.sep == '\\': - # we're using a regex to manipulate a regex, so we need - # to escape the backslash twice - sep = r'\\\\' - escaped = r'\1[^%s]' % sep - pattern_re = re.sub(r'((? y, - '!=': lambda x, y: x != y, - '<': lambda x, y: x < y, - '<=': lambda x, y: x == y or x < y, - '>': lambda x, y: x > y, - '>=': lambda x, y: x == y or x > y, - 'and': lambda x, y: x and y, - 'or': lambda x, y: x or y, - 'in': lambda x, y: x in y, - 'not in': lambda x, y: x not in y, - } - - def evaluate(self, expr, context): - """ - Evaluate a marker expression returned by the :func:`parse_requirement` - function in the specified context. - """ - if isinstance(expr, string_types): - if expr[0] in '\'"': - result = expr[1:-1] - else: - if expr not in context: - raise SyntaxError('unknown variable: %s' % expr) - result = context[expr] - else: - assert isinstance(expr, dict) - op = expr['op'] - if op not in self.operations: - raise NotImplementedError('op not implemented: %s' % op) - elhs = expr['lhs'] - erhs = expr['rhs'] - if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): - raise SyntaxError('invalid comparison: %s %s %s' % - (elhs, op, erhs)) - - lhs = self.evaluate(elhs, context) - rhs = self.evaluate(erhs, context) - if ((_is_version_marker(elhs) or _is_version_marker(erhs)) - and op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): - lhs = LV(lhs) - rhs = LV(rhs) - elif _is_version_marker(elhs) and op in ('in', 'not in'): - lhs = LV(lhs) - rhs = _get_versions(rhs) - result = self.operations[op](lhs, rhs) - return result - - -_DIGITS = re.compile(r'\d+\.\d+') - - -def default_context(): - - def format_full_version(info): - version = '%s.%s.%s' % (info.major, info.minor, info.micro) - kind = info.releaselevel - if kind != 'final': - version += kind[0] + str(info.serial) - return version - - if hasattr(sys, 'implementation'): - implementation_version = format_full_version( - sys.implementation.version) - implementation_name = sys.implementation.name - else: - implementation_version = '0' - implementation_name = '' - - ppv = platform.python_version() - m = _DIGITS.match(ppv) - pv = m.group(0) - result = { - 'implementation_name': implementation_name, - 'implementation_version': implementation_version, - 'os_name': os.name, - 'platform_machine': platform.machine(), - 'platform_python_implementation': platform.python_implementation(), - 'platform_release': platform.release(), - 'platform_system': platform.system(), - 'platform_version': platform.version(), - 'platform_in_venv': str(in_venv()), - 'python_full_version': ppv, - 'python_version': pv, - 'sys_platform': sys.platform, - } - return result - - -DEFAULT_CONTEXT = default_context() -del default_context - -evaluator = Evaluator() - - -def interpret(marker, execution_context=None): - """ - Interpret a marker and return a result depending on environment. - - :param marker: The marker to interpret. - :type marker: str - :param execution_context: The context used for name lookup. - :type execution_context: mapping - """ - try: - expr, rest = parse_marker(marker) - except Exception as e: - raise SyntaxError('Unable to interpret marker syntax: %s: %s' % - (marker, e)) - if rest and rest[0] != '#': - raise SyntaxError('unexpected trailing data in marker: %s: %s' % - (marker, rest)) - context = dict(DEFAULT_CONTEXT) - if execution_context: - context.update(execution_context) - return evaluator.evaluate(expr, context) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py deleted file mode 100644 index 7189aee..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py +++ /dev/null @@ -1,1068 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012 The Python Software Foundation. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -"""Implementation of the Metadata for Python packages PEPs. - -Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and 2.2). -""" -from __future__ import unicode_literals - -import codecs -from email import message_from_file -import json -import logging -import re - - -from . import DistlibException, __version__ -from .compat import StringIO, string_types, text_type -from .markers import interpret -from .util import extract_by_key, get_extras -from .version import get_scheme, PEP440_VERSION_RE - -logger = logging.getLogger(__name__) - - -class MetadataMissingError(DistlibException): - """A required metadata is missing""" - - -class MetadataConflictError(DistlibException): - """Attempt to read or write metadata fields that are conflictual.""" - - -class MetadataUnrecognizedVersionError(DistlibException): - """Unknown metadata version number.""" - - -class MetadataInvalidError(DistlibException): - """A metadata value is invalid""" - -# public API of this module -__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] - -# Encoding used for the PKG-INFO files -PKG_INFO_ENCODING = 'utf-8' - -# preferred version. Hopefully will be changed -# to 1.2 once PEP 345 is supported everywhere -PKG_INFO_PREFERRED_VERSION = '1.1' - -_LINE_PREFIX_1_2 = re.compile('\n \\|') -_LINE_PREFIX_PRE_1_2 = re.compile('\n ') -_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', - 'Summary', 'Description', - 'Keywords', 'Home-page', 'Author', 'Author-email', - 'License') - -_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', - 'Supported-Platform', 'Summary', 'Description', - 'Keywords', 'Home-page', 'Author', 'Author-email', - 'License', 'Classifier', 'Download-URL', 'Obsoletes', - 'Provides', 'Requires') - -_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', - 'Download-URL') - -_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', - 'Supported-Platform', 'Summary', 'Description', - 'Keywords', 'Home-page', 'Author', 'Author-email', - 'Maintainer', 'Maintainer-email', 'License', - 'Classifier', 'Download-URL', 'Obsoletes-Dist', - 'Project-URL', 'Provides-Dist', 'Requires-Dist', - 'Requires-Python', 'Requires-External') - -_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', - 'Obsoletes-Dist', 'Requires-External', 'Maintainer', - 'Maintainer-email', 'Project-URL') - -_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', - 'Supported-Platform', 'Summary', 'Description', - 'Keywords', 'Home-page', 'Author', 'Author-email', - 'Maintainer', 'Maintainer-email', 'License', - 'Classifier', 'Download-URL', 'Obsoletes-Dist', - 'Project-URL', 'Provides-Dist', 'Requires-Dist', - 'Requires-Python', 'Requires-External', 'Private-Version', - 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', - 'Provides-Extra') - -_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', - 'Setup-Requires-Dist', 'Extension') - -# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in -# the metadata. Include them in the tuple literal below to allow them -# (for now). -# Ditto for Obsoletes - see issue #140. -_566_FIELDS = _426_FIELDS + ('Description-Content-Type', - 'Requires', 'Provides', 'Obsoletes') - -_566_MARKERS = ('Description-Content-Type',) - -_643_MARKERS = ('Dynamic', 'License-File') - -_643_FIELDS = _566_FIELDS + _643_MARKERS - -_ALL_FIELDS = set() -_ALL_FIELDS.update(_241_FIELDS) -_ALL_FIELDS.update(_314_FIELDS) -_ALL_FIELDS.update(_345_FIELDS) -_ALL_FIELDS.update(_426_FIELDS) -_ALL_FIELDS.update(_566_FIELDS) -_ALL_FIELDS.update(_643_FIELDS) - -EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') - - -def _version2fieldlist(version): - if version == '1.0': - return _241_FIELDS - elif version == '1.1': - return _314_FIELDS - elif version == '1.2': - return _345_FIELDS - elif version in ('1.3', '2.1'): - # avoid adding field names if already there - return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) - elif version == '2.0': - raise ValueError('Metadata 2.0 is withdrawn and not supported') - # return _426_FIELDS - elif version == '2.2': - return _643_FIELDS - raise MetadataUnrecognizedVersionError(version) - - -def _best_version(fields): - """Detect the best version depending on the fields used.""" - def _has_marker(keys, markers): - return any(marker in keys for marker in markers) - - keys = [key for key, value in fields.items() if value not in ([], 'UNKNOWN', None)] - possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.1', '2.2'] # 2.0 removed - - # first let's try to see if a field is not part of one of the version - for key in keys: - if key not in _241_FIELDS and '1.0' in possible_versions: - possible_versions.remove('1.0') - logger.debug('Removed 1.0 due to %s', key) - if key not in _314_FIELDS and '1.1' in possible_versions: - possible_versions.remove('1.1') - logger.debug('Removed 1.1 due to %s', key) - if key not in _345_FIELDS and '1.2' in possible_versions: - possible_versions.remove('1.2') - logger.debug('Removed 1.2 due to %s', key) - if key not in _566_FIELDS and '1.3' in possible_versions: - possible_versions.remove('1.3') - logger.debug('Removed 1.3 due to %s', key) - if key not in _566_FIELDS and '2.1' in possible_versions: - if key != 'Description': # In 2.1, description allowed after headers - possible_versions.remove('2.1') - logger.debug('Removed 2.1 due to %s', key) - if key not in _643_FIELDS and '2.2' in possible_versions: - possible_versions.remove('2.2') - logger.debug('Removed 2.2 due to %s', key) - # if key not in _426_FIELDS and '2.0' in possible_versions: - # possible_versions.remove('2.0') - # logger.debug('Removed 2.0 due to %s', key) - - # possible_version contains qualified versions - if len(possible_versions) == 1: - return possible_versions[0] # found ! - elif len(possible_versions) == 0: - logger.debug('Out of options - unknown metadata set: %s', fields) - raise MetadataConflictError('Unknown metadata set') - - # let's see if one unique marker is found - is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) - is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) - is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) - # is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) - is_2_2 = '2.2' in possible_versions and _has_marker(keys, _643_MARKERS) - if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_2) > 1: - raise MetadataConflictError('You used incompatible 1.1/1.2/2.1/2.2 fields') - - # we have the choice, 1.0, or 1.2, 2.1 or 2.2 - # - 1.0 has a broken Summary field but works with all tools - # - 1.1 is to avoid - # - 1.2 fixes Summary but has little adoption - # - 2.1 adds more features - # - 2.2 is the latest - if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_2: - # we couldn't find any specific marker - if PKG_INFO_PREFERRED_VERSION in possible_versions: - return PKG_INFO_PREFERRED_VERSION - if is_1_1: - return '1.1' - if is_1_2: - return '1.2' - if is_2_1: - return '2.1' - # if is_2_2: - # return '2.2' - - return '2.2' - -# This follows the rules about transforming keys as described in -# https://www.python.org/dev/peps/pep-0566/#id17 -_ATTR2FIELD = { - name.lower().replace("-", "_"): name for name in _ALL_FIELDS -} -_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} - -_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') -_VERSIONS_FIELDS = ('Requires-Python',) -_VERSION_FIELDS = ('Version',) -_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', - 'Requires', 'Provides', 'Obsoletes-Dist', - 'Provides-Dist', 'Requires-Dist', 'Requires-External', - 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', - 'Provides-Extra', 'Extension', 'License-File') -_LISTTUPLEFIELDS = ('Project-URL',) - -_ELEMENTSFIELD = ('Keywords',) - -_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') - -_MISSING = object() - -_FILESAFE = re.compile('[^A-Za-z0-9.]+') - - -def _get_name_and_version(name, version, for_filename=False): - """Return the distribution name with version. - - If for_filename is true, return a filename-escaped form.""" - if for_filename: - # For both name and version any runs of non-alphanumeric or '.' - # characters are replaced with a single '-'. Additionally any - # spaces in the version string become '.' - name = _FILESAFE.sub('-', name) - version = _FILESAFE.sub('-', version.replace(' ', '.')) - return '%s-%s' % (name, version) - - -class LegacyMetadata(object): - """The legacy metadata of a release. - - Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can - instantiate the class with one of these arguments (or none): - - *path*, the path to a metadata file - - *fileobj* give a file-like object with metadata as content - - *mapping* is a dict-like object - - *scheme* is a version scheme name - """ - # TODO document the mapping API and UNKNOWN default key - - def __init__(self, path=None, fileobj=None, mapping=None, - scheme='default'): - if [path, fileobj, mapping].count(None) < 2: - raise TypeError('path, fileobj and mapping are exclusive') - self._fields = {} - self.requires_files = [] - self._dependencies = None - self.scheme = scheme - if path is not None: - self.read(path) - elif fileobj is not None: - self.read_file(fileobj) - elif mapping is not None: - self.update(mapping) - self.set_metadata_version() - - def set_metadata_version(self): - self._fields['Metadata-Version'] = _best_version(self._fields) - - def _write_field(self, fileobj, name, value): - fileobj.write('%s: %s\n' % (name, value)) - - def __getitem__(self, name): - return self.get(name) - - def __setitem__(self, name, value): - return self.set(name, value) - - def __delitem__(self, name): - field_name = self._convert_name(name) - try: - del self._fields[field_name] - except KeyError: - raise KeyError(name) - - def __contains__(self, name): - return (name in self._fields or - self._convert_name(name) in self._fields) - - def _convert_name(self, name): - if name in _ALL_FIELDS: - return name - name = name.replace('-', '_').lower() - return _ATTR2FIELD.get(name, name) - - def _default_value(self, name): - if name in _LISTFIELDS or name in _ELEMENTSFIELD: - return [] - return 'UNKNOWN' - - def _remove_line_prefix(self, value): - if self.metadata_version in ('1.0', '1.1'): - return _LINE_PREFIX_PRE_1_2.sub('\n', value) - else: - return _LINE_PREFIX_1_2.sub('\n', value) - - def __getattr__(self, name): - if name in _ATTR2FIELD: - return self[name] - raise AttributeError(name) - - # - # Public API - # - -# dependencies = property(_get_dependencies, _set_dependencies) - - def get_fullname(self, filesafe=False): - """Return the distribution name with version. - - If filesafe is true, return a filename-escaped form.""" - return _get_name_and_version(self['Name'], self['Version'], filesafe) - - def is_field(self, name): - """return True if name is a valid metadata key""" - name = self._convert_name(name) - return name in _ALL_FIELDS - - def is_multi_field(self, name): - name = self._convert_name(name) - return name in _LISTFIELDS - - def read(self, filepath): - """Read the metadata values from a file path.""" - fp = codecs.open(filepath, 'r', encoding='utf-8') - try: - self.read_file(fp) - finally: - fp.close() - - def read_file(self, fileob): - """Read the metadata values from a file object.""" - msg = message_from_file(fileob) - self._fields['Metadata-Version'] = msg['metadata-version'] - - # When reading, get all the fields we can - for field in _ALL_FIELDS: - if field not in msg: - continue - if field in _LISTFIELDS: - # we can have multiple lines - values = msg.get_all(field) - if field in _LISTTUPLEFIELDS and values is not None: - values = [tuple(value.split(',')) for value in values] - self.set(field, values) - else: - # single line - value = msg[field] - if value is not None and value != 'UNKNOWN': - self.set(field, value) - - # PEP 566 specifies that the body be used for the description, if - # available - body = msg.get_payload() - self["Description"] = body if body else self["Description"] - # logger.debug('Attempting to set metadata for %s', self) - # self.set_metadata_version() - - def write(self, filepath, skip_unknown=False): - """Write the metadata fields to filepath.""" - fp = codecs.open(filepath, 'w', encoding='utf-8') - try: - self.write_file(fp, skip_unknown) - finally: - fp.close() - - def write_file(self, fileobject, skip_unknown=False): - """Write the PKG-INFO format data to a file object.""" - self.set_metadata_version() - - for field in _version2fieldlist(self['Metadata-Version']): - values = self.get(field) - if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): - continue - if field in _ELEMENTSFIELD: - self._write_field(fileobject, field, ','.join(values)) - continue - if field not in _LISTFIELDS: - if field == 'Description': - if self.metadata_version in ('1.0', '1.1'): - values = values.replace('\n', '\n ') - else: - values = values.replace('\n', '\n |') - values = [values] - - if field in _LISTTUPLEFIELDS: - values = [','.join(value) for value in values] - - for value in values: - self._write_field(fileobject, field, value) - - def update(self, other=None, **kwargs): - """Set metadata values from the given iterable `other` and kwargs. - - Behavior is like `dict.update`: If `other` has a ``keys`` method, - they are looped over and ``self[key]`` is assigned ``other[key]``. - Else, ``other`` is an iterable of ``(key, value)`` iterables. - - Keys that don't match a metadata field or that have an empty value are - dropped. - """ - def _set(key, value): - if key in _ATTR2FIELD and value: - self.set(self._convert_name(key), value) - - if not other: - # other is None or empty container - pass - elif hasattr(other, 'keys'): - for k in other.keys(): - _set(k, other[k]) - else: - for k, v in other: - _set(k, v) - - if kwargs: - for k, v in kwargs.items(): - _set(k, v) - - def set(self, name, value): - """Control then set a metadata field.""" - name = self._convert_name(name) - - if ((name in _ELEMENTSFIELD or name == 'Platform') and - not isinstance(value, (list, tuple))): - if isinstance(value, string_types): - value = [v.strip() for v in value.split(',')] - else: - value = [] - elif (name in _LISTFIELDS and - not isinstance(value, (list, tuple))): - if isinstance(value, string_types): - value = [value] - else: - value = [] - - if logger.isEnabledFor(logging.WARNING): - project_name = self['Name'] - - scheme = get_scheme(self.scheme) - if name in _PREDICATE_FIELDS and value is not None: - for v in value: - # check that the values are valid - if not scheme.is_valid_matcher(v.split(';')[0]): - logger.warning( - "'%s': '%s' is not valid (field '%s')", - project_name, v, name) - # FIXME this rejects UNKNOWN, is that right? - elif name in _VERSIONS_FIELDS and value is not None: - if not scheme.is_valid_constraint_list(value): - logger.warning("'%s': '%s' is not a valid version (field '%s')", - project_name, value, name) - elif name in _VERSION_FIELDS and value is not None: - if not scheme.is_valid_version(value): - logger.warning("'%s': '%s' is not a valid version (field '%s')", - project_name, value, name) - - if name in _UNICODEFIELDS: - if name == 'Description': - value = self._remove_line_prefix(value) - - self._fields[name] = value - - def get(self, name, default=_MISSING): - """Get a metadata field.""" - name = self._convert_name(name) - if name not in self._fields: - if default is _MISSING: - default = self._default_value(name) - return default - if name in _UNICODEFIELDS: - value = self._fields[name] - return value - elif name in _LISTFIELDS: - value = self._fields[name] - if value is None: - return [] - res = [] - for val in value: - if name not in _LISTTUPLEFIELDS: - res.append(val) - else: - # That's for Project-URL - res.append((val[0], val[1])) - return res - - elif name in _ELEMENTSFIELD: - value = self._fields[name] - if isinstance(value, string_types): - return value.split(',') - return self._fields[name] - - def check(self, strict=False): - """Check if the metadata is compliant. If strict is True then raise if - no Name or Version are provided""" - self.set_metadata_version() - - # XXX should check the versions (if the file was loaded) - missing, warnings = [], [] - - for attr in ('Name', 'Version'): # required by PEP 345 - if attr not in self: - missing.append(attr) - - if strict and missing != []: - msg = 'missing required metadata: %s' % ', '.join(missing) - raise MetadataMissingError(msg) - - for attr in ('Home-page', 'Author'): - if attr not in self: - missing.append(attr) - - # checking metadata 1.2 (XXX needs to check 1.1, 1.0) - if self['Metadata-Version'] != '1.2': - return missing, warnings - - scheme = get_scheme(self.scheme) - - def are_valid_constraints(value): - for v in value: - if not scheme.is_valid_matcher(v.split(';')[0]): - return False - return True - - for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), - (_VERSIONS_FIELDS, - scheme.is_valid_constraint_list), - (_VERSION_FIELDS, - scheme.is_valid_version)): - for field in fields: - value = self.get(field, None) - if value is not None and not controller(value): - warnings.append("Wrong value for '%s': %s" % (field, value)) - - return missing, warnings - - def todict(self, skip_missing=False): - """Return fields as a dict. - - Field names will be converted to use the underscore-lowercase style - instead of hyphen-mixed case (i.e. home_page instead of Home-page). - This is as per https://www.python.org/dev/peps/pep-0566/#id17. - """ - self.set_metadata_version() - - fields = _version2fieldlist(self['Metadata-Version']) - - data = {} - - for field_name in fields: - if not skip_missing or field_name in self._fields: - key = _FIELD2ATTR[field_name] - if key != 'project_url': - data[key] = self[field_name] - else: - data[key] = [','.join(u) for u in self[field_name]] - - return data - - def add_requirements(self, requirements): - if self['Metadata-Version'] == '1.1': - # we can't have 1.1 metadata *and* Setuptools requires - for field in ('Obsoletes', 'Requires', 'Provides'): - if field in self: - del self[field] - self['Requires-Dist'] += requirements - - # Mapping API - # TODO could add iter* variants - - def keys(self): - return list(_version2fieldlist(self['Metadata-Version'])) - - def __iter__(self): - for key in self.keys(): - yield key - - def values(self): - return [self[key] for key in self.keys()] - - def items(self): - return [(key, self[key]) for key in self.keys()] - - def __repr__(self): - return '<%s %s %s>' % (self.__class__.__name__, self.name, - self.version) - - -METADATA_FILENAME = 'pydist.json' -WHEEL_METADATA_FILENAME = 'metadata.json' -LEGACY_METADATA_FILENAME = 'METADATA' - - -class Metadata(object): - """ - The metadata of a release. This implementation uses 2.1 - metadata where possible. If not possible, it wraps a LegacyMetadata - instance which handles the key-value metadata format. - """ - - METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') - - NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) - - FIELDNAME_MATCHER = re.compile('^[A-Z]([0-9A-Z-]*[0-9A-Z])?$', re.I) - - VERSION_MATCHER = PEP440_VERSION_RE - - SUMMARY_MATCHER = re.compile('.{1,2047}') - - METADATA_VERSION = '2.0' - - GENERATOR = 'distlib (%s)' % __version__ - - MANDATORY_KEYS = { - 'name': (), - 'version': (), - 'summary': ('legacy',), - } - - INDEX_KEYS = ('name version license summary description author ' - 'author_email keywords platform home_page classifiers ' - 'download_url') - - DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' - 'dev_requires provides meta_requires obsoleted_by ' - 'supports_environments') - - SYNTAX_VALIDATORS = { - 'metadata_version': (METADATA_VERSION_MATCHER, ()), - 'name': (NAME_MATCHER, ('legacy',)), - 'version': (VERSION_MATCHER, ('legacy',)), - 'summary': (SUMMARY_MATCHER, ('legacy',)), - 'dynamic': (FIELDNAME_MATCHER, ('legacy',)), - } - - __slots__ = ('_legacy', '_data', 'scheme') - - def __init__(self, path=None, fileobj=None, mapping=None, - scheme='default'): - if [path, fileobj, mapping].count(None) < 2: - raise TypeError('path, fileobj and mapping are exclusive') - self._legacy = None - self._data = None - self.scheme = scheme - #import pdb; pdb.set_trace() - if mapping is not None: - try: - self._validate_mapping(mapping, scheme) - self._data = mapping - except MetadataUnrecognizedVersionError: - self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) - self.validate() - else: - data = None - if path: - with open(path, 'rb') as f: - data = f.read() - elif fileobj: - data = fileobj.read() - if data is None: - # Initialised with no args - to be added - self._data = { - 'metadata_version': self.METADATA_VERSION, - 'generator': self.GENERATOR, - } - else: - if not isinstance(data, text_type): - data = data.decode('utf-8') - try: - self._data = json.loads(data) - self._validate_mapping(self._data, scheme) - except ValueError: - # Note: MetadataUnrecognizedVersionError does not - # inherit from ValueError (it's a DistlibException, - # which should not inherit from ValueError). - # The ValueError comes from the json.load - if that - # succeeds and we get a validation error, we want - # that to propagate - self._legacy = LegacyMetadata(fileobj=StringIO(data), - scheme=scheme) - self.validate() - - common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) - - none_list = (None, list) - none_dict = (None, dict) - - mapped_keys = { - 'run_requires': ('Requires-Dist', list), - 'build_requires': ('Setup-Requires-Dist', list), - 'dev_requires': none_list, - 'test_requires': none_list, - 'meta_requires': none_list, - 'extras': ('Provides-Extra', list), - 'modules': none_list, - 'namespaces': none_list, - 'exports': none_dict, - 'commands': none_dict, - 'classifiers': ('Classifier', list), - 'source_url': ('Download-URL', None), - 'metadata_version': ('Metadata-Version', None), - } - - del none_list, none_dict - - def __getattribute__(self, key): - common = object.__getattribute__(self, 'common_keys') - mapped = object.__getattribute__(self, 'mapped_keys') - if key in mapped: - lk, maker = mapped[key] - if self._legacy: - if lk is None: - result = None if maker is None else maker() - else: - result = self._legacy.get(lk) - else: - value = None if maker is None else maker() - if key not in ('commands', 'exports', 'modules', 'namespaces', - 'classifiers'): - result = self._data.get(key, value) - else: - # special cases for PEP 459 - sentinel = object() - result = sentinel - d = self._data.get('extensions') - if d: - if key == 'commands': - result = d.get('python.commands', value) - elif key == 'classifiers': - d = d.get('python.details') - if d: - result = d.get(key, value) - else: - d = d.get('python.exports') - if not d: - d = self._data.get('python.exports') - if d: - result = d.get(key, value) - if result is sentinel: - result = value - elif key not in common: - result = object.__getattribute__(self, key) - elif self._legacy: - result = self._legacy.get(key) - else: - result = self._data.get(key) - return result - - def _validate_value(self, key, value, scheme=None): - if key in self.SYNTAX_VALIDATORS: - pattern, exclusions = self.SYNTAX_VALIDATORS[key] - if (scheme or self.scheme) not in exclusions: - m = pattern.match(value) - if not m: - raise MetadataInvalidError("'%s' is an invalid value for " - "the '%s' property" % (value, - key)) - - def __setattr__(self, key, value): - self._validate_value(key, value) - common = object.__getattribute__(self, 'common_keys') - mapped = object.__getattribute__(self, 'mapped_keys') - if key in mapped: - lk, _ = mapped[key] - if self._legacy: - if lk is None: - raise NotImplementedError - self._legacy[lk] = value - elif key not in ('commands', 'exports', 'modules', 'namespaces', - 'classifiers'): - self._data[key] = value - else: - # special cases for PEP 459 - d = self._data.setdefault('extensions', {}) - if key == 'commands': - d['python.commands'] = value - elif key == 'classifiers': - d = d.setdefault('python.details', {}) - d[key] = value - else: - d = d.setdefault('python.exports', {}) - d[key] = value - elif key not in common: - object.__setattr__(self, key, value) - else: - if key == 'keywords': - if isinstance(value, string_types): - value = value.strip() - if value: - value = value.split() - else: - value = [] - if self._legacy: - self._legacy[key] = value - else: - self._data[key] = value - - @property - def name_and_version(self): - return _get_name_and_version(self.name, self.version, True) - - @property - def provides(self): - if self._legacy: - result = self._legacy['Provides-Dist'] - else: - result = self._data.setdefault('provides', []) - s = '%s (%s)' % (self.name, self.version) - if s not in result: - result.append(s) - return result - - @provides.setter - def provides(self, value): - if self._legacy: - self._legacy['Provides-Dist'] = value - else: - self._data['provides'] = value - - def get_requirements(self, reqts, extras=None, env=None): - """ - Base method to get dependencies, given a set of extras - to satisfy and an optional environment context. - :param reqts: A list of sometimes-wanted dependencies, - perhaps dependent on extras and environment. - :param extras: A list of optional components being requested. - :param env: An optional environment for marker evaluation. - """ - if self._legacy: - result = reqts - else: - result = [] - extras = get_extras(extras or [], self.extras) - for d in reqts: - if 'extra' not in d and 'environment' not in d: - # unconditional - include = True - else: - if 'extra' not in d: - # Not extra-dependent - only environment-dependent - include = True - else: - include = d.get('extra') in extras - if include: - # Not excluded because of extras, check environment - marker = d.get('environment') - if marker: - include = interpret(marker, env) - if include: - result.extend(d['requires']) - for key in ('build', 'dev', 'test'): - e = ':%s:' % key - if e in extras: - extras.remove(e) - # A recursive call, but it should terminate since 'test' - # has been removed from the extras - reqts = self._data.get('%s_requires' % key, []) - result.extend(self.get_requirements(reqts, extras=extras, - env=env)) - return result - - @property - def dictionary(self): - if self._legacy: - return self._from_legacy() - return self._data - - @property - def dependencies(self): - if self._legacy: - raise NotImplementedError - else: - return extract_by_key(self._data, self.DEPENDENCY_KEYS) - - @dependencies.setter - def dependencies(self, value): - if self._legacy: - raise NotImplementedError - else: - self._data.update(value) - - def _validate_mapping(self, mapping, scheme): - if mapping.get('metadata_version') != self.METADATA_VERSION: - raise MetadataUnrecognizedVersionError() - missing = [] - for key, exclusions in self.MANDATORY_KEYS.items(): - if key not in mapping: - if scheme not in exclusions: - missing.append(key) - if missing: - msg = 'Missing metadata items: %s' % ', '.join(missing) - raise MetadataMissingError(msg) - for k, v in mapping.items(): - self._validate_value(k, v, scheme) - - def validate(self): - if self._legacy: - missing, warnings = self._legacy.check(True) - if missing or warnings: - logger.warning('Metadata: missing: %s, warnings: %s', - missing, warnings) - else: - self._validate_mapping(self._data, self.scheme) - - def todict(self): - if self._legacy: - return self._legacy.todict(True) - else: - result = extract_by_key(self._data, self.INDEX_KEYS) - return result - - def _from_legacy(self): - assert self._legacy and not self._data - result = { - 'metadata_version': self.METADATA_VERSION, - 'generator': self.GENERATOR, - } - lmd = self._legacy.todict(True) # skip missing ones - for k in ('name', 'version', 'license', 'summary', 'description', - 'classifier'): - if k in lmd: - if k == 'classifier': - nk = 'classifiers' - else: - nk = k - result[nk] = lmd[k] - kw = lmd.get('Keywords', []) - if kw == ['']: - kw = [] - result['keywords'] = kw - keys = (('requires_dist', 'run_requires'), - ('setup_requires_dist', 'build_requires')) - for ok, nk in keys: - if ok in lmd and lmd[ok]: - result[nk] = [{'requires': lmd[ok]}] - result['provides'] = self.provides - author = {} - maintainer = {} - return result - - LEGACY_MAPPING = { - 'name': 'Name', - 'version': 'Version', - ('extensions', 'python.details', 'license'): 'License', - 'summary': 'Summary', - 'description': 'Description', - ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', - ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', - ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', - 'source_url': 'Download-URL', - ('extensions', 'python.details', 'classifiers'): 'Classifier', - } - - def _to_legacy(self): - def process_entries(entries): - reqts = set() - for e in entries: - extra = e.get('extra') - env = e.get('environment') - rlist = e['requires'] - for r in rlist: - if not env and not extra: - reqts.add(r) - else: - marker = '' - if extra: - marker = 'extra == "%s"' % extra - if env: - if marker: - marker = '(%s) and %s' % (env, marker) - else: - marker = env - reqts.add(';'.join((r, marker))) - return reqts - - assert self._data and not self._legacy - result = LegacyMetadata() - nmd = self._data - # import pdb; pdb.set_trace() - for nk, ok in self.LEGACY_MAPPING.items(): - if not isinstance(nk, tuple): - if nk in nmd: - result[ok] = nmd[nk] - else: - d = nmd - found = True - for k in nk: - try: - d = d[k] - except (KeyError, IndexError): - found = False - break - if found: - result[ok] = d - r1 = process_entries(self.run_requires + self.meta_requires) - r2 = process_entries(self.build_requires + self.dev_requires) - if self.extras: - result['Provides-Extra'] = sorted(self.extras) - result['Requires-Dist'] = sorted(r1) - result['Setup-Requires-Dist'] = sorted(r2) - # TODO: any other fields wanted - return result - - def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): - if [path, fileobj].count(None) != 1: - raise ValueError('Exactly one of path and fileobj is needed') - self.validate() - if legacy: - if self._legacy: - legacy_md = self._legacy - else: - legacy_md = self._to_legacy() - if path: - legacy_md.write(path, skip_unknown=skip_unknown) - else: - legacy_md.write_file(fileobj, skip_unknown=skip_unknown) - else: - if self._legacy: - d = self._from_legacy() - else: - d = self._data - if fileobj: - json.dump(d, fileobj, ensure_ascii=True, indent=2, - sort_keys=True) - else: - with codecs.open(path, 'w', 'utf-8') as f: - json.dump(d, f, ensure_ascii=True, indent=2, - sort_keys=True) - - def add_requirements(self, requirements): - if self._legacy: - self._legacy.add_requirements(requirements) - else: - run_requires = self._data.setdefault('run_requires', []) - always = None - for entry in run_requires: - if 'environment' not in entry and 'extra' not in entry: - always = entry - break - if always is None: - always = { 'requires': requirements } - run_requires.insert(0, always) - else: - rset = set(always['requires']) | set(requirements) - always['requires'] = sorted(rset) - - def __repr__(self): - name = self.name or '(no name)' - version = self.version or 'no version' - return '<%s %s %s (%s)>' % (self.__class__.__name__, - self.metadata_version, name, version) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py deleted file mode 100644 index fef52aa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py +++ /dev/null @@ -1,358 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2013-2017 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -from __future__ import unicode_literals - -import bisect -import io -import logging -import os -import pkgutil -import sys -import types -import zipimport - -from . import DistlibException -from .util import cached_property, get_cache_base, Cache - -logger = logging.getLogger(__name__) - - -cache = None # created when needed - - -class ResourceCache(Cache): - def __init__(self, base=None): - if base is None: - # Use native string to avoid issues on 2.x: see Python #20140. - base = os.path.join(get_cache_base(), str('resource-cache')) - super(ResourceCache, self).__init__(base) - - def is_stale(self, resource, path): - """ - Is the cache stale for the given resource? - - :param resource: The :class:`Resource` being cached. - :param path: The path of the resource in the cache. - :return: True if the cache is stale. - """ - # Cache invalidation is a hard problem :-) - return True - - def get(self, resource): - """ - Get a resource into the cache, - - :param resource: A :class:`Resource` instance. - :return: The pathname of the resource in the cache. - """ - prefix, path = resource.finder.get_cache_info(resource) - if prefix is None: - result = path - else: - result = os.path.join(self.base, self.prefix_to_dir(prefix), path) - dirname = os.path.dirname(result) - if not os.path.isdir(dirname): - os.makedirs(dirname) - if not os.path.exists(result): - stale = True - else: - stale = self.is_stale(resource, path) - if stale: - # write the bytes of the resource to the cache location - with open(result, 'wb') as f: - f.write(resource.bytes) - return result - - -class ResourceBase(object): - def __init__(self, finder, name): - self.finder = finder - self.name = name - - -class Resource(ResourceBase): - """ - A class representing an in-package resource, such as a data file. This is - not normally instantiated by user code, but rather by a - :class:`ResourceFinder` which manages the resource. - """ - is_container = False # Backwards compatibility - - def as_stream(self): - """ - Get the resource as a stream. - - This is not a property to make it obvious that it returns a new stream - each time. - """ - return self.finder.get_stream(self) - - @cached_property - def file_path(self): - global cache - if cache is None: - cache = ResourceCache() - return cache.get(self) - - @cached_property - def bytes(self): - return self.finder.get_bytes(self) - - @cached_property - def size(self): - return self.finder.get_size(self) - - -class ResourceContainer(ResourceBase): - is_container = True # Backwards compatibility - - @cached_property - def resources(self): - return self.finder.get_resources(self) - - -class ResourceFinder(object): - """ - Resource finder for file system resources. - """ - - if sys.platform.startswith('java'): - skipped_extensions = ('.pyc', '.pyo', '.class') - else: - skipped_extensions = ('.pyc', '.pyo') - - def __init__(self, module): - self.module = module - self.loader = getattr(module, '__loader__', None) - self.base = os.path.dirname(getattr(module, '__file__', '')) - - def _adjust_path(self, path): - return os.path.realpath(path) - - def _make_path(self, resource_name): - # Issue #50: need to preserve type of path on Python 2.x - # like os.path._get_sep - if isinstance(resource_name, bytes): # should only happen on 2.x - sep = b'/' - else: - sep = '/' - parts = resource_name.split(sep) - parts.insert(0, self.base) - result = os.path.join(*parts) - return self._adjust_path(result) - - def _find(self, path): - return os.path.exists(path) - - def get_cache_info(self, resource): - return None, resource.path - - def find(self, resource_name): - path = self._make_path(resource_name) - if not self._find(path): - result = None - else: - if self._is_directory(path): - result = ResourceContainer(self, resource_name) - else: - result = Resource(self, resource_name) - result.path = path - return result - - def get_stream(self, resource): - return open(resource.path, 'rb') - - def get_bytes(self, resource): - with open(resource.path, 'rb') as f: - return f.read() - - def get_size(self, resource): - return os.path.getsize(resource.path) - - def get_resources(self, resource): - def allowed(f): - return (f != '__pycache__' and not - f.endswith(self.skipped_extensions)) - return set([f for f in os.listdir(resource.path) if allowed(f)]) - - def is_container(self, resource): - return self._is_directory(resource.path) - - _is_directory = staticmethod(os.path.isdir) - - def iterator(self, resource_name): - resource = self.find(resource_name) - if resource is not None: - todo = [resource] - while todo: - resource = todo.pop(0) - yield resource - if resource.is_container: - rname = resource.name - for name in resource.resources: - if not rname: - new_name = name - else: - new_name = '/'.join([rname, name]) - child = self.find(new_name) - if child.is_container: - todo.append(child) - else: - yield child - - -class ZipResourceFinder(ResourceFinder): - """ - Resource finder for resources in .zip files. - """ - def __init__(self, module): - super(ZipResourceFinder, self).__init__(module) - archive = self.loader.archive - self.prefix_len = 1 + len(archive) - # PyPy doesn't have a _files attr on zipimporter, and you can't set one - if hasattr(self.loader, '_files'): - self._files = self.loader._files - else: - self._files = zipimport._zip_directory_cache[archive] - self.index = sorted(self._files) - - def _adjust_path(self, path): - return path - - def _find(self, path): - path = path[self.prefix_len:] - if path in self._files: - result = True - else: - if path and path[-1] != os.sep: - path = path + os.sep - i = bisect.bisect(self.index, path) - try: - result = self.index[i].startswith(path) - except IndexError: - result = False - if not result: - logger.debug('_find failed: %r %r', path, self.loader.prefix) - else: - logger.debug('_find worked: %r %r', path, self.loader.prefix) - return result - - def get_cache_info(self, resource): - prefix = self.loader.archive - path = resource.path[1 + len(prefix):] - return prefix, path - - def get_bytes(self, resource): - return self.loader.get_data(resource.path) - - def get_stream(self, resource): - return io.BytesIO(self.get_bytes(resource)) - - def get_size(self, resource): - path = resource.path[self.prefix_len:] - return self._files[path][3] - - def get_resources(self, resource): - path = resource.path[self.prefix_len:] - if path and path[-1] != os.sep: - path += os.sep - plen = len(path) - result = set() - i = bisect.bisect(self.index, path) - while i < len(self.index): - if not self.index[i].startswith(path): - break - s = self.index[i][plen:] - result.add(s.split(os.sep, 1)[0]) # only immediate children - i += 1 - return result - - def _is_directory(self, path): - path = path[self.prefix_len:] - if path and path[-1] != os.sep: - path += os.sep - i = bisect.bisect(self.index, path) - try: - result = self.index[i].startswith(path) - except IndexError: - result = False - return result - - -_finder_registry = { - type(None): ResourceFinder, - zipimport.zipimporter: ZipResourceFinder -} - -try: - # In Python 3.6, _frozen_importlib -> _frozen_importlib_external - try: - import _frozen_importlib_external as _fi - except ImportError: - import _frozen_importlib as _fi - _finder_registry[_fi.SourceFileLoader] = ResourceFinder - _finder_registry[_fi.FileFinder] = ResourceFinder - # See issue #146 - _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder - del _fi -except (ImportError, AttributeError): - pass - - -def register_finder(loader, finder_maker): - _finder_registry[type(loader)] = finder_maker - - -_finder_cache = {} - - -def finder(package): - """ - Return a resource finder for a package. - :param package: The name of the package. - :return: A :class:`ResourceFinder` instance for the package. - """ - if package in _finder_cache: - result = _finder_cache[package] - else: - if package not in sys.modules: - __import__(package) - module = sys.modules[package] - path = getattr(module, '__path__', None) - if path is None: - raise DistlibException('You cannot get a finder for a module, ' - 'only for a package') - loader = getattr(module, '__loader__', None) - finder_maker = _finder_registry.get(type(loader)) - if finder_maker is None: - raise DistlibException('Unable to locate finder for %r' % package) - result = finder_maker(module) - _finder_cache[package] = result - return result - - -_dummy_module = types.ModuleType(str('__dummy__')) - - -def finder_for_path(path): - """ - Return a resource finder for a path, which should represent a container. - - :param path: The path. - :return: A :class:`ResourceFinder` instance for the path. - """ - result = None - # calls any path hooks, gets importer into cache - pkgutil.get_importer(path) - loader = sys.path_importer_cache.get(path) - finder = _finder_registry.get(type(loader)) - if finder: - module = _dummy_module - module.__file__ = os.path.join(path, '') - module.__loader__ = loader - result = finder(module) - return result diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py deleted file mode 100644 index cfa45d2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py +++ /dev/null @@ -1,452 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2013-2023 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -from io import BytesIO -import logging -import os -import re -import struct -import sys -import time -from zipfile import ZipInfo - -from .compat import sysconfig, detect_encoding, ZipFile -from .resources import finder -from .util import (FileOperator, get_export_entry, convert_path, - get_executable, get_platform, in_venv) - -logger = logging.getLogger(__name__) - -_DEFAULT_MANIFEST = ''' - - - - - - - - - - - - -'''.strip() - -# check if Python is called on the first line with this expression -FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') -SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- -import re -import sys -from %(module)s import %(import_name)s -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(%(func)s()) -''' - - -def enquote_executable(executable): - if ' ' in executable: - # make sure we quote only the executable in case of env - # for example /usr/bin/env "/dir with spaces/bin/jython" - # instead of "/usr/bin/env /dir with spaces/bin/jython" - # otherwise whole - if executable.startswith('/usr/bin/env '): - env, _executable = executable.split(' ', 1) - if ' ' in _executable and not _executable.startswith('"'): - executable = '%s "%s"' % (env, _executable) - else: - if not executable.startswith('"'): - executable = '"%s"' % executable - return executable - - -# Keep the old name around (for now), as there is at least one project using it! -_enquote_executable = enquote_executable - - -class ScriptMaker(object): - """ - A class to copy or create scripts from source scripts or callable - specifications. - """ - script_template = SCRIPT_TEMPLATE - - executable = None # for shebangs - - def __init__(self, - source_dir, - target_dir, - add_launchers=True, - dry_run=False, - fileop=None): - self.source_dir = source_dir - self.target_dir = target_dir - self.add_launchers = add_launchers - self.force = False - self.clobber = False - # It only makes sense to set mode bits on POSIX. - self.set_mode = (os.name == 'posix') or (os.name == 'java' - and os._name == 'posix') - self.variants = set(('', 'X.Y')) - self._fileop = fileop or FileOperator(dry_run) - - self._is_nt = os.name == 'nt' or (os.name == 'java' - and os._name == 'nt') - self.version_info = sys.version_info - - def _get_alternate_executable(self, executable, options): - if options.get('gui', False) and self._is_nt: # pragma: no cover - dn, fn = os.path.split(executable) - fn = fn.replace('python', 'pythonw') - executable = os.path.join(dn, fn) - return executable - - if sys.platform.startswith('java'): # pragma: no cover - - def _is_shell(self, executable): - """ - Determine if the specified executable is a script - (contains a #! line) - """ - try: - with open(executable) as fp: - return fp.read(2) == '#!' - except (OSError, IOError): - logger.warning('Failed to open %s', executable) - return False - - def _fix_jython_executable(self, executable): - if self._is_shell(executable): - # Workaround for Jython is not needed on Linux systems. - import java - - if java.lang.System.getProperty('os.name') == 'Linux': - return executable - elif executable.lower().endswith('jython.exe'): - # Use wrapper exe for Jython on Windows - return executable - return '/usr/bin/env %s' % executable - - def _build_shebang(self, executable, post_interp): - """ - Build a shebang line. In the simple case (on Windows, or a shebang line - which is not too long or contains spaces) use a simple formulation for - the shebang. Otherwise, use /bin/sh as the executable, with a contrived - shebang which allows the script to run either under Python or sh, using - suitable quoting. Thanks to Harald Nordgren for his input. - - See also: http://www.in-ulm.de/~mascheck/various/shebang/#length - https://hg.mozilla.org/mozilla-central/file/tip/mach - """ - if os.name != 'posix': - simple_shebang = True - else: - # Add 3 for '#!' prefix and newline suffix. - shebang_length = len(executable) + len(post_interp) + 3 - if sys.platform == 'darwin': - max_shebang_length = 512 - else: - max_shebang_length = 127 - simple_shebang = ((b' ' not in executable) - and (shebang_length <= max_shebang_length)) - - if simple_shebang: - result = b'#!' + executable + post_interp + b'\n' - else: - result = b'#!/bin/sh\n' - result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' - result += b"' '''" - return result - - def _get_shebang(self, encoding, post_interp=b'', options=None): - enquote = True - if self.executable: - executable = self.executable - enquote = False # assume this will be taken care of - elif not sysconfig.is_python_build(): - executable = get_executable() - elif in_venv(): # pragma: no cover - executable = os.path.join( - sysconfig.get_path('scripts'), - 'python%s' % sysconfig.get_config_var('EXE')) - else: # pragma: no cover - if os.name == 'nt': - # for Python builds from source on Windows, no Python executables with - # a version suffix are created, so we use python.exe - executable = os.path.join( - sysconfig.get_config_var('BINDIR'), - 'python%s' % (sysconfig.get_config_var('EXE'))) - else: - executable = os.path.join( - sysconfig.get_config_var('BINDIR'), - 'python%s%s' % (sysconfig.get_config_var('VERSION'), - sysconfig.get_config_var('EXE'))) - if options: - executable = self._get_alternate_executable(executable, options) - - if sys.platform.startswith('java'): # pragma: no cover - executable = self._fix_jython_executable(executable) - - # Normalise case for Windows - COMMENTED OUT - # executable = os.path.normcase(executable) - # N.B. The normalising operation above has been commented out: See - # issue #124. Although paths in Windows are generally case-insensitive, - # they aren't always. For example, a path containing a ẞ (which is a - # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a - # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by - # Windows as equivalent in path names. - - # If the user didn't specify an executable, it may be necessary to - # cater for executable paths with spaces (not uncommon on Windows) - if enquote: - executable = enquote_executable(executable) - # Issue #51: don't use fsencode, since we later try to - # check that the shebang is decodable using utf-8. - executable = executable.encode('utf-8') - # in case of IronPython, play safe and enable frames support - if (sys.platform == 'cli' and '-X:Frames' not in post_interp - and '-X:FullFrames' not in post_interp): # pragma: no cover - post_interp += b' -X:Frames' - shebang = self._build_shebang(executable, post_interp) - # Python parser starts to read a script using UTF-8 until - # it gets a #coding:xxx cookie. The shebang has to be the - # first line of a file, the #coding:xxx cookie cannot be - # written before. So the shebang has to be decodable from - # UTF-8. - try: - shebang.decode('utf-8') - except UnicodeDecodeError: # pragma: no cover - raise ValueError('The shebang (%r) is not decodable from utf-8' % - shebang) - # If the script is encoded to a custom encoding (use a - # #coding:xxx cookie), the shebang has to be decodable from - # the script encoding too. - if encoding != 'utf-8': - try: - shebang.decode(encoding) - except UnicodeDecodeError: # pragma: no cover - raise ValueError('The shebang (%r) is not decodable ' - 'from the script encoding (%r)' % - (shebang, encoding)) - return shebang - - def _get_script_text(self, entry): - return self.script_template % dict( - module=entry.prefix, - import_name=entry.suffix.split('.')[0], - func=entry.suffix) - - manifest = _DEFAULT_MANIFEST - - def get_manifest(self, exename): - base = os.path.basename(exename) - return self.manifest % base - - def _write_script(self, names, shebang, script_bytes, filenames, ext): - use_launcher = self.add_launchers and self._is_nt - linesep = os.linesep.encode('utf-8') - if not shebang.endswith(linesep): - shebang += linesep - if not use_launcher: - script_bytes = shebang + script_bytes - else: # pragma: no cover - if ext == 'py': - launcher = self._get_launcher('t') - else: - launcher = self._get_launcher('w') - stream = BytesIO() - with ZipFile(stream, 'w') as zf: - source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') - if source_date_epoch: - date_time = time.gmtime(int(source_date_epoch))[:6] - zinfo = ZipInfo(filename='__main__.py', - date_time=date_time) - zf.writestr(zinfo, script_bytes) - else: - zf.writestr('__main__.py', script_bytes) - zip_data = stream.getvalue() - script_bytes = launcher + shebang + zip_data - for name in names: - outname = os.path.join(self.target_dir, name) - if use_launcher: # pragma: no cover - n, e = os.path.splitext(outname) - if e.startswith('.py'): - outname = n - outname = '%s.exe' % outname - try: - self._fileop.write_binary_file(outname, script_bytes) - except Exception: - # Failed writing an executable - it might be in use. - logger.warning('Failed to write executable - trying to ' - 'use .deleteme logic') - dfname = '%s.deleteme' % outname - if os.path.exists(dfname): - os.remove(dfname) # Not allowed to fail here - os.rename(outname, dfname) # nor here - self._fileop.write_binary_file(outname, script_bytes) - logger.debug('Able to replace executable using ' - '.deleteme logic') - try: - os.remove(dfname) - except Exception: - pass # still in use - ignore error - else: - if self._is_nt and not outname.endswith( - '.' + ext): # pragma: no cover - outname = '%s.%s' % (outname, ext) - if os.path.exists(outname) and not self.clobber: - logger.warning('Skipping existing file %s', outname) - continue - self._fileop.write_binary_file(outname, script_bytes) - if self.set_mode: - self._fileop.set_executable_mode([outname]) - filenames.append(outname) - - variant_separator = '-' - - def get_script_filenames(self, name): - result = set() - if '' in self.variants: - result.add(name) - if 'X' in self.variants: - result.add('%s%s' % (name, self.version_info[0])) - if 'X.Y' in self.variants: - result.add('%s%s%s.%s' % - (name, self.variant_separator, self.version_info[0], - self.version_info[1])) - return result - - def _make_script(self, entry, filenames, options=None): - post_interp = b'' - if options: - args = options.get('interpreter_args', []) - if args: - args = ' %s' % ' '.join(args) - post_interp = args.encode('utf-8') - shebang = self._get_shebang('utf-8', post_interp, options=options) - script = self._get_script_text(entry).encode('utf-8') - scriptnames = self.get_script_filenames(entry.name) - if options and options.get('gui', False): - ext = 'pyw' - else: - ext = 'py' - self._write_script(scriptnames, shebang, script, filenames, ext) - - def _copy_script(self, script, filenames): - adjust = False - script = os.path.join(self.source_dir, convert_path(script)) - outname = os.path.join(self.target_dir, os.path.basename(script)) - if not self.force and not self._fileop.newer(script, outname): - logger.debug('not copying %s (up-to-date)', script) - return - - # Always open the file, but ignore failures in dry-run mode -- - # that way, we'll get accurate feedback if we can read the - # script. - try: - f = open(script, 'rb') - except IOError: # pragma: no cover - if not self.dry_run: - raise - f = None - else: - first_line = f.readline() - if not first_line: # pragma: no cover - logger.warning('%s is an empty file (skipping)', script) - return - - match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) - if match: - adjust = True - post_interp = match.group(1) or b'' - - if not adjust: - if f: - f.close() - self._fileop.copy_file(script, outname) - if self.set_mode: - self._fileop.set_executable_mode([outname]) - filenames.append(outname) - else: - logger.info('copying and adjusting %s -> %s', script, - self.target_dir) - if not self._fileop.dry_run: - encoding, lines = detect_encoding(f.readline) - f.seek(0) - shebang = self._get_shebang(encoding, post_interp) - if b'pythonw' in first_line: # pragma: no cover - ext = 'pyw' - else: - ext = 'py' - n = os.path.basename(outname) - self._write_script([n], shebang, f.read(), filenames, ext) - if f: - f.close() - - @property - def dry_run(self): - return self._fileop.dry_run - - @dry_run.setter - def dry_run(self, value): - self._fileop.dry_run = value - - if os.name == 'nt' or (os.name == 'java' - and os._name == 'nt'): # pragma: no cover - # Executable launcher support. - # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ - - def _get_launcher(self, kind): - if struct.calcsize('P') == 8: # 64-bit - bits = '64' - else: - bits = '32' - platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' - name = '%s%s%s.exe' % (kind, bits, platform_suffix) - # Issue 31: don't hardcode an absolute package name, but - # determine it relative to the current package - distlib_package = __name__.rsplit('.', 1)[0] - resource = finder(distlib_package).find(name) - if not resource: - msg = ('Unable to find resource %s in package %s' % - (name, distlib_package)) - raise ValueError(msg) - return resource.bytes - - # Public API follows - - def make(self, specification, options=None): - """ - Make a script. - - :param specification: The specification, which is either a valid export - entry specification (to make a script from a - callable) or a filename (to make a script by - copying from a source location). - :param options: A dictionary of options controlling script generation. - :return: A list of all absolute pathnames written to. - """ - filenames = [] - entry = get_export_entry(specification) - if entry is None: - self._copy_script(specification, filenames) - else: - self._make_script(entry, filenames, options=options) - return filenames - - def make_multiple(self, specifications, options=None): - """ - Take a list of specifications and make scripts from them, - :param specifications: A list of specifications. - :return: A list of all absolute pathnames written to, - """ - filenames = [] - for specification in specifications: - filenames.extend(self.make(specification, options)) - return filenames diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py deleted file mode 100644 index ba58858..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py +++ /dev/null @@ -1,2025 +0,0 @@ -# -# Copyright (C) 2012-2023 The Python Software Foundation. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -import codecs -from collections import deque -import contextlib -import csv -from glob import iglob as std_iglob -import io -import json -import logging -import os -import py_compile -import re -import socket -try: - import ssl -except ImportError: # pragma: no cover - ssl = None -import subprocess -import sys -import tarfile -import tempfile -import textwrap - -try: - import threading -except ImportError: # pragma: no cover - import dummy_threading as threading -import time - -from . import DistlibException -from .compat import (string_types, text_type, shutil, raw_input, StringIO, - cache_from_source, urlopen, urljoin, httplib, xmlrpclib, - HTTPHandler, BaseConfigurator, valid_ident, - Container, configparser, URLError, ZipFile, fsdecode, - unquote, urlparse) - -logger = logging.getLogger(__name__) - -# -# Requirement parsing code as per PEP 508 -# - -IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') -VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') -COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') -MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') -OR = re.compile(r'^or\b\s*') -AND = re.compile(r'^and\b\s*') -NON_SPACE = re.compile(r'(\S+)\s*') -STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') - - -def parse_marker(marker_string): - """ - Parse a marker string and return a dictionary containing a marker expression. - - The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in - the expression grammar, or strings. A string contained in quotes is to be - interpreted as a literal string, and a string not contained in quotes is a - variable (such as os_name). - """ - - def marker_var(remaining): - # either identifier, or literal string - m = IDENTIFIER.match(remaining) - if m: - result = m.groups()[0] - remaining = remaining[m.end():] - elif not remaining: - raise SyntaxError('unexpected end of input') - else: - q = remaining[0] - if q not in '\'"': - raise SyntaxError('invalid expression: %s' % remaining) - oq = '\'"'.replace(q, '') - remaining = remaining[1:] - parts = [q] - while remaining: - # either a string chunk, or oq, or q to terminate - if remaining[0] == q: - break - elif remaining[0] == oq: - parts.append(oq) - remaining = remaining[1:] - else: - m = STRING_CHUNK.match(remaining) - if not m: - raise SyntaxError('error in string literal: %s' % - remaining) - parts.append(m.groups()[0]) - remaining = remaining[m.end():] - else: - s = ''.join(parts) - raise SyntaxError('unterminated string: %s' % s) - parts.append(q) - result = ''.join(parts) - remaining = remaining[1:].lstrip() # skip past closing quote - return result, remaining - - def marker_expr(remaining): - if remaining and remaining[0] == '(': - result, remaining = marker(remaining[1:].lstrip()) - if remaining[0] != ')': - raise SyntaxError('unterminated parenthesis: %s' % remaining) - remaining = remaining[1:].lstrip() - else: - lhs, remaining = marker_var(remaining) - while remaining: - m = MARKER_OP.match(remaining) - if not m: - break - op = m.groups()[0] - remaining = remaining[m.end():] - rhs, remaining = marker_var(remaining) - lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} - result = lhs - return result, remaining - - def marker_and(remaining): - lhs, remaining = marker_expr(remaining) - while remaining: - m = AND.match(remaining) - if not m: - break - remaining = remaining[m.end():] - rhs, remaining = marker_expr(remaining) - lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} - return lhs, remaining - - def marker(remaining): - lhs, remaining = marker_and(remaining) - while remaining: - m = OR.match(remaining) - if not m: - break - remaining = remaining[m.end():] - rhs, remaining = marker_and(remaining) - lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} - return lhs, remaining - - return marker(marker_string) - - -def parse_requirement(req): - """ - Parse a requirement passed in as a string. Return a Container - whose attributes contain the various parts of the requirement. - """ - remaining = req.strip() - if not remaining or remaining.startswith('#'): - return None - m = IDENTIFIER.match(remaining) - if not m: - raise SyntaxError('name expected: %s' % remaining) - distname = m.groups()[0] - remaining = remaining[m.end():] - extras = mark_expr = versions = uri = None - if remaining and remaining[0] == '[': - i = remaining.find(']', 1) - if i < 0: - raise SyntaxError('unterminated extra: %s' % remaining) - s = remaining[1:i] - remaining = remaining[i + 1:].lstrip() - extras = [] - while s: - m = IDENTIFIER.match(s) - if not m: - raise SyntaxError('malformed extra: %s' % s) - extras.append(m.groups()[0]) - s = s[m.end():] - if not s: - break - if s[0] != ',': - raise SyntaxError('comma expected in extras: %s' % s) - s = s[1:].lstrip() - if not extras: - extras = None - if remaining: - if remaining[0] == '@': - # it's a URI - remaining = remaining[1:].lstrip() - m = NON_SPACE.match(remaining) - if not m: - raise SyntaxError('invalid URI: %s' % remaining) - uri = m.groups()[0] - t = urlparse(uri) - # there are issues with Python and URL parsing, so this test - # is a bit crude. See bpo-20271, bpo-23505. Python doesn't - # always parse invalid URLs correctly - it should raise - # exceptions for malformed URLs - if not (t.scheme and t.netloc): - raise SyntaxError('Invalid URL: %s' % uri) - remaining = remaining[m.end():].lstrip() - else: - - def get_versions(ver_remaining): - """ - Return a list of operator, version tuples if any are - specified, else None. - """ - m = COMPARE_OP.match(ver_remaining) - versions = None - if m: - versions = [] - while True: - op = m.groups()[0] - ver_remaining = ver_remaining[m.end():] - m = VERSION_IDENTIFIER.match(ver_remaining) - if not m: - raise SyntaxError('invalid version: %s' % - ver_remaining) - v = m.groups()[0] - versions.append((op, v)) - ver_remaining = ver_remaining[m.end():] - if not ver_remaining or ver_remaining[0] != ',': - break - ver_remaining = ver_remaining[1:].lstrip() - # Some packages have a trailing comma which would break things - # See issue #148 - if not ver_remaining: - break - m = COMPARE_OP.match(ver_remaining) - if not m: - raise SyntaxError('invalid constraint: %s' % - ver_remaining) - if not versions: - versions = None - return versions, ver_remaining - - if remaining[0] != '(': - versions, remaining = get_versions(remaining) - else: - i = remaining.find(')', 1) - if i < 0: - raise SyntaxError('unterminated parenthesis: %s' % - remaining) - s = remaining[1:i] - remaining = remaining[i + 1:].lstrip() - # As a special diversion from PEP 508, allow a version number - # a.b.c in parentheses as a synonym for ~= a.b.c (because this - # is allowed in earlier PEPs) - if COMPARE_OP.match(s): - versions, _ = get_versions(s) - else: - m = VERSION_IDENTIFIER.match(s) - if not m: - raise SyntaxError('invalid constraint: %s' % s) - v = m.groups()[0] - s = s[m.end():].lstrip() - if s: - raise SyntaxError('invalid constraint: %s' % s) - versions = [('~=', v)] - - if remaining: - if remaining[0] != ';': - raise SyntaxError('invalid requirement: %s' % remaining) - remaining = remaining[1:].lstrip() - - mark_expr, remaining = parse_marker(remaining) - - if remaining and remaining[0] != '#': - raise SyntaxError('unexpected trailing data: %s' % remaining) - - if not versions: - rs = distname - else: - rs = '%s %s' % (distname, ', '.join( - ['%s %s' % con for con in versions])) - return Container(name=distname, - extras=extras, - constraints=versions, - marker=mark_expr, - url=uri, - requirement=rs) - - -def get_resources_dests(resources_root, rules): - """Find destinations for resources files""" - - def get_rel_path(root, path): - # normalizes and returns a lstripped-/-separated path - root = root.replace(os.path.sep, '/') - path = path.replace(os.path.sep, '/') - assert path.startswith(root) - return path[len(root):].lstrip('/') - - destinations = {} - for base, suffix, dest in rules: - prefix = os.path.join(resources_root, base) - for abs_base in iglob(prefix): - abs_glob = os.path.join(abs_base, suffix) - for abs_path in iglob(abs_glob): - resource_file = get_rel_path(resources_root, abs_path) - if dest is None: # remove the entry if it was here - destinations.pop(resource_file, None) - else: - rel_path = get_rel_path(abs_base, abs_path) - rel_dest = dest.replace(os.path.sep, '/').rstrip('/') - destinations[resource_file] = rel_dest + '/' + rel_path - return destinations - - -def in_venv(): - if hasattr(sys, 'real_prefix'): - # virtualenv venvs - result = True - else: - # PEP 405 venvs - result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) - return result - - -def get_executable(): - # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as - # changes to the stub launcher mean that sys.executable always points - # to the stub on OS X - # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' - # in os.environ): - # result = os.environ['__PYVENV_LAUNCHER__'] - # else: - # result = sys.executable - # return result - # Avoid normcasing: see issue #143 - # result = os.path.normcase(sys.executable) - result = sys.executable - if not isinstance(result, text_type): - result = fsdecode(result) - return result - - -def proceed(prompt, allowed_chars, error_prompt=None, default=None): - p = prompt - while True: - s = raw_input(p) - p = prompt - if not s and default: - s = default - if s: - c = s[0].lower() - if c in allowed_chars: - break - if error_prompt: - p = '%c: %s\n%s' % (c, error_prompt, prompt) - return c - - -def extract_by_key(d, keys): - if isinstance(keys, string_types): - keys = keys.split() - result = {} - for key in keys: - if key in d: - result[key] = d[key] - return result - - -def read_exports(stream): - if sys.version_info[0] >= 3: - # needs to be a text stream - stream = codecs.getreader('utf-8')(stream) - # Try to load as JSON, falling back on legacy format - data = stream.read() - stream = StringIO(data) - try: - jdata = json.load(stream) - result = jdata['extensions']['python.exports']['exports'] - for group, entries in result.items(): - for k, v in entries.items(): - s = '%s = %s' % (k, v) - entry = get_export_entry(s) - assert entry is not None - entries[k] = entry - return result - except Exception: - stream.seek(0, 0) - - def read_stream(cp, stream): - if hasattr(cp, 'read_file'): - cp.read_file(stream) - else: - cp.readfp(stream) - - cp = configparser.ConfigParser() - try: - read_stream(cp, stream) - except configparser.MissingSectionHeaderError: - stream.close() - data = textwrap.dedent(data) - stream = StringIO(data) - read_stream(cp, stream) - - result = {} - for key in cp.sections(): - result[key] = entries = {} - for name, value in cp.items(key): - s = '%s = %s' % (name, value) - entry = get_export_entry(s) - assert entry is not None - # entry.dist = self - entries[name] = entry - return result - - -def write_exports(exports, stream): - if sys.version_info[0] >= 3: - # needs to be a text stream - stream = codecs.getwriter('utf-8')(stream) - cp = configparser.ConfigParser() - for k, v in exports.items(): - # TODO check k, v for valid values - cp.add_section(k) - for entry in v.values(): - if entry.suffix is None: - s = entry.prefix - else: - s = '%s:%s' % (entry.prefix, entry.suffix) - if entry.flags: - s = '%s [%s]' % (s, ', '.join(entry.flags)) - cp.set(k, entry.name, s) - cp.write(stream) - - -@contextlib.contextmanager -def tempdir(): - td = tempfile.mkdtemp() - try: - yield td - finally: - shutil.rmtree(td) - - -@contextlib.contextmanager -def chdir(d): - cwd = os.getcwd() - try: - os.chdir(d) - yield - finally: - os.chdir(cwd) - - -@contextlib.contextmanager -def socket_timeout(seconds=15): - cto = socket.getdefaulttimeout() - try: - socket.setdefaulttimeout(seconds) - yield - finally: - socket.setdefaulttimeout(cto) - - -class cached_property(object): - - def __init__(self, func): - self.func = func - # for attr in ('__name__', '__module__', '__doc__'): - # setattr(self, attr, getattr(func, attr, None)) - - def __get__(self, obj, cls=None): - if obj is None: - return self - value = self.func(obj) - object.__setattr__(obj, self.func.__name__, value) - # obj.__dict__[self.func.__name__] = value = self.func(obj) - return value - - -def convert_path(pathname): - """Return 'pathname' as a name that will work on the native filesystem. - - The path is split on '/' and put back together again using the current - directory separator. Needed because filenames in the setup script are - always supplied in Unix style, and have to be converted to the local - convention before we can actually use them in the filesystem. Raises - ValueError on non-Unix-ish systems if 'pathname' either starts or - ends with a slash. - """ - if os.sep == '/': - return pathname - if not pathname: - return pathname - if pathname[0] == '/': - raise ValueError("path '%s' cannot be absolute" % pathname) - if pathname[-1] == '/': - raise ValueError("path '%s' cannot end with '/'" % pathname) - - paths = pathname.split('/') - while os.curdir in paths: - paths.remove(os.curdir) - if not paths: - return os.curdir - return os.path.join(*paths) - - -class FileOperator(object): - - def __init__(self, dry_run=False): - self.dry_run = dry_run - self.ensured = set() - self._init_record() - - def _init_record(self): - self.record = False - self.files_written = set() - self.dirs_created = set() - - def record_as_written(self, path): - if self.record: - self.files_written.add(path) - - def newer(self, source, target): - """Tell if the target is newer than the source. - - Returns true if 'source' exists and is more recently modified than - 'target', or if 'source' exists and 'target' doesn't. - - Returns false if both exist and 'target' is the same age or younger - than 'source'. Raise PackagingFileError if 'source' does not exist. - - Note that this test is not very accurate: files created in the same - second will have the same "age". - """ - if not os.path.exists(source): - raise DistlibException("file '%r' does not exist" % - os.path.abspath(source)) - if not os.path.exists(target): - return True - - return os.stat(source).st_mtime > os.stat(target).st_mtime - - def copy_file(self, infile, outfile, check=True): - """Copy a file respecting dry-run and force flags. - """ - self.ensure_dir(os.path.dirname(outfile)) - logger.info('Copying %s to %s', infile, outfile) - if not self.dry_run: - msg = None - if check: - if os.path.islink(outfile): - msg = '%s is a symlink' % outfile - elif os.path.exists(outfile) and not os.path.isfile(outfile): - msg = '%s is a non-regular file' % outfile - if msg: - raise ValueError(msg + ' which would be overwritten') - shutil.copyfile(infile, outfile) - self.record_as_written(outfile) - - def copy_stream(self, instream, outfile, encoding=None): - assert not os.path.isdir(outfile) - self.ensure_dir(os.path.dirname(outfile)) - logger.info('Copying stream %s to %s', instream, outfile) - if not self.dry_run: - if encoding is None: - outstream = open(outfile, 'wb') - else: - outstream = codecs.open(outfile, 'w', encoding=encoding) - try: - shutil.copyfileobj(instream, outstream) - finally: - outstream.close() - self.record_as_written(outfile) - - def write_binary_file(self, path, data): - self.ensure_dir(os.path.dirname(path)) - if not self.dry_run: - if os.path.exists(path): - os.remove(path) - with open(path, 'wb') as f: - f.write(data) - self.record_as_written(path) - - def write_text_file(self, path, data, encoding): - self.write_binary_file(path, data.encode(encoding)) - - def set_mode(self, bits, mask, files): - if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): - # Set the executable bits (owner, group, and world) on - # all the files specified. - for f in files: - if self.dry_run: - logger.info("changing mode of %s", f) - else: - mode = (os.stat(f).st_mode | bits) & mask - logger.info("changing mode of %s to %o", f, mode) - os.chmod(f, mode) - - set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) - - def ensure_dir(self, path): - path = os.path.abspath(path) - if path not in self.ensured and not os.path.exists(path): - self.ensured.add(path) - d, f = os.path.split(path) - self.ensure_dir(d) - logger.info('Creating %s' % path) - if not self.dry_run: - os.mkdir(path) - if self.record: - self.dirs_created.add(path) - - def byte_compile(self, - path, - optimize=False, - force=False, - prefix=None, - hashed_invalidation=False): - dpath = cache_from_source(path, not optimize) - logger.info('Byte-compiling %s to %s', path, dpath) - if not self.dry_run: - if force or self.newer(path, dpath): - if not prefix: - diagpath = None - else: - assert path.startswith(prefix) - diagpath = path[len(prefix):] - compile_kwargs = {} - if hashed_invalidation and hasattr(py_compile, - 'PycInvalidationMode'): - compile_kwargs[ - 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH - py_compile.compile(path, dpath, diagpath, True, - **compile_kwargs) # raise error - self.record_as_written(dpath) - return dpath - - def ensure_removed(self, path): - if os.path.exists(path): - if os.path.isdir(path) and not os.path.islink(path): - logger.debug('Removing directory tree at %s', path) - if not self.dry_run: - shutil.rmtree(path) - if self.record: - if path in self.dirs_created: - self.dirs_created.remove(path) - else: - if os.path.islink(path): - s = 'link' - else: - s = 'file' - logger.debug('Removing %s %s', s, path) - if not self.dry_run: - os.remove(path) - if self.record: - if path in self.files_written: - self.files_written.remove(path) - - def is_writable(self, path): - result = False - while not result: - if os.path.exists(path): - result = os.access(path, os.W_OK) - break - parent = os.path.dirname(path) - if parent == path: - break - path = parent - return result - - def commit(self): - """ - Commit recorded changes, turn off recording, return - changes. - """ - assert self.record - result = self.files_written, self.dirs_created - self._init_record() - return result - - def rollback(self): - if not self.dry_run: - for f in list(self.files_written): - if os.path.exists(f): - os.remove(f) - # dirs should all be empty now, except perhaps for - # __pycache__ subdirs - # reverse so that subdirs appear before their parents - dirs = sorted(self.dirs_created, reverse=True) - for d in dirs: - flist = os.listdir(d) - if flist: - assert flist == ['__pycache__'] - sd = os.path.join(d, flist[0]) - os.rmdir(sd) - os.rmdir(d) # should fail if non-empty - self._init_record() - - -def resolve(module_name, dotted_path): - if module_name in sys.modules: - mod = sys.modules[module_name] - else: - mod = __import__(module_name) - if dotted_path is None: - result = mod - else: - parts = dotted_path.split('.') - result = getattr(mod, parts.pop(0)) - for p in parts: - result = getattr(result, p) - return result - - -class ExportEntry(object): - - def __init__(self, name, prefix, suffix, flags): - self.name = name - self.prefix = prefix - self.suffix = suffix - self.flags = flags - - @cached_property - def value(self): - return resolve(self.prefix, self.suffix) - - def __repr__(self): # pragma: no cover - return '' % (self.name, self.prefix, - self.suffix, self.flags) - - def __eq__(self, other): - if not isinstance(other, ExportEntry): - result = False - else: - result = (self.name == other.name and self.prefix == other.prefix - and self.suffix == other.suffix - and self.flags == other.flags) - return result - - __hash__ = object.__hash__ - - -ENTRY_RE = re.compile( - r'''(?P([^\[]\S*)) - \s*=\s*(?P(\w+)([:\.]\w+)*) - \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? - ''', re.VERBOSE) - - -def get_export_entry(specification): - m = ENTRY_RE.search(specification) - if not m: - result = None - if '[' in specification or ']' in specification: - raise DistlibException("Invalid specification " - "'%s'" % specification) - else: - d = m.groupdict() - name = d['name'] - path = d['callable'] - colons = path.count(':') - if colons == 0: - prefix, suffix = path, None - else: - if colons != 1: - raise DistlibException("Invalid specification " - "'%s'" % specification) - prefix, suffix = path.split(':') - flags = d['flags'] - if flags is None: - if '[' in specification or ']' in specification: - raise DistlibException("Invalid specification " - "'%s'" % specification) - flags = [] - else: - flags = [f.strip() for f in flags.split(',')] - result = ExportEntry(name, prefix, suffix, flags) - return result - - -def get_cache_base(suffix=None): - """ - Return the default base location for distlib caches. If the directory does - not exist, it is created. Use the suffix provided for the base directory, - and default to '.distlib' if it isn't provided. - - On Windows, if LOCALAPPDATA is defined in the environment, then it is - assumed to be a directory, and will be the parent directory of the result. - On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home - directory - using os.expanduser('~') - will be the parent directory of - the result. - - The result is just the directory '.distlib' in the parent directory as - determined above, or with the name specified with ``suffix``. - """ - if suffix is None: - suffix = '.distlib' - if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: - result = os.path.expandvars('$localappdata') - else: - # Assume posix, or old Windows - result = os.path.expanduser('~') - # we use 'isdir' instead of 'exists', because we want to - # fail if there's a file with that name - if os.path.isdir(result): - usable = os.access(result, os.W_OK) - if not usable: - logger.warning('Directory exists but is not writable: %s', result) - else: - try: - os.makedirs(result) - usable = True - except OSError: - logger.warning('Unable to create %s', result, exc_info=True) - usable = False - if not usable: - result = tempfile.mkdtemp() - logger.warning('Default location unusable, using %s', result) - return os.path.join(result, suffix) - - -def path_to_cache_dir(path): - """ - Convert an absolute path to a directory name for use in a cache. - - The algorithm used is: - - #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. - #. Any occurrence of ``os.sep`` is replaced with ``'--'``. - #. ``'.cache'`` is appended. - """ - d, p = os.path.splitdrive(os.path.abspath(path)) - if d: - d = d.replace(':', '---') - p = p.replace(os.sep, '--') - return d + p + '.cache' - - -def ensure_slash(s): - if not s.endswith('/'): - return s + '/' - return s - - -def parse_credentials(netloc): - username = password = None - if '@' in netloc: - prefix, netloc = netloc.rsplit('@', 1) - if ':' not in prefix: - username = prefix - else: - username, password = prefix.split(':', 1) - if username: - username = unquote(username) - if password: - password = unquote(password) - return username, password, netloc - - -def get_process_umask(): - result = os.umask(0o22) - os.umask(result) - return result - - -def is_string_sequence(seq): - result = True - i = None - for i, s in enumerate(seq): - if not isinstance(s, string_types): - result = False - break - assert i is not None - return result - - -PROJECT_NAME_AND_VERSION = re.compile( - '([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' - '([a-z0-9_.+-]+)', re.I) -PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') - - -def split_filename(filename, project_name=None): - """ - Extract name, version, python version from a filename (no extension) - - Return name, version, pyver or None - """ - result = None - pyver = None - filename = unquote(filename).replace(' ', '-') - m = PYTHON_VERSION.search(filename) - if m: - pyver = m.group(1) - filename = filename[:m.start()] - if project_name and len(filename) > len(project_name) + 1: - m = re.match(re.escape(project_name) + r'\b', filename) - if m: - n = m.end() - result = filename[:n], filename[n + 1:], pyver - if result is None: - m = PROJECT_NAME_AND_VERSION.match(filename) - if m: - result = m.group(1), m.group(3), pyver - return result - - -# Allow spaces in name because of legacy dists like "Twisted Core" -NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' - r'\(\s*(?P[^\s)]+)\)$') - - -def parse_name_and_version(p): - """ - A utility method used to get name and version from a string. - - From e.g. a Provides-Dist value. - - :param p: A value in a form 'foo (1.0)' - :return: The name and version as a tuple. - """ - m = NAME_VERSION_RE.match(p) - if not m: - raise DistlibException('Ill-formed name/version string: \'%s\'' % p) - d = m.groupdict() - return d['name'].strip().lower(), d['ver'] - - -def get_extras(requested, available): - result = set() - requested = set(requested or []) - available = set(available or []) - if '*' in requested: - requested.remove('*') - result |= available - for r in requested: - if r == '-': - result.add(r) - elif r.startswith('-'): - unwanted = r[1:] - if unwanted not in available: - logger.warning('undeclared extra: %s' % unwanted) - if unwanted in result: - result.remove(unwanted) - else: - if r not in available: - logger.warning('undeclared extra: %s' % r) - result.add(r) - return result - - -# -# Extended metadata functionality -# - - -def _get_external_data(url): - result = {} - try: - # urlopen might fail if it runs into redirections, - # because of Python issue #13696. Fixed in locators - # using a custom redirect handler. - resp = urlopen(url) - headers = resp.info() - ct = headers.get('Content-Type') - if not ct.startswith('application/json'): - logger.debug('Unexpected response for JSON request: %s', ct) - else: - reader = codecs.getreader('utf-8')(resp) - # data = reader.read().decode('utf-8') - # result = json.loads(data) - result = json.load(reader) - except Exception as e: - logger.exception('Failed to get external data for %s: %s', url, e) - return result - - -_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' - - -def get_project_data(name): - url = '%s/%s/project.json' % (name[0].upper(), name) - url = urljoin(_external_data_base_url, url) - result = _get_external_data(url) - return result - - -def get_package_data(name, version): - url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) - url = urljoin(_external_data_base_url, url) - return _get_external_data(url) - - -class Cache(object): - """ - A class implementing a cache for resources that need to live in the file system - e.g. shared libraries. This class was moved from resources to here because it - could be used by other modules, e.g. the wheel module. - """ - - def __init__(self, base): - """ - Initialise an instance. - - :param base: The base directory where the cache should be located. - """ - # we use 'isdir' instead of 'exists', because we want to - # fail if there's a file with that name - if not os.path.isdir(base): # pragma: no cover - os.makedirs(base) - if (os.stat(base).st_mode & 0o77) != 0: - logger.warning('Directory \'%s\' is not private', base) - self.base = os.path.abspath(os.path.normpath(base)) - - def prefix_to_dir(self, prefix): - """ - Converts a resource prefix to a directory name in the cache. - """ - return path_to_cache_dir(prefix) - - def clear(self): - """ - Clear the cache. - """ - not_removed = [] - for fn in os.listdir(self.base): - fn = os.path.join(self.base, fn) - try: - if os.path.islink(fn) or os.path.isfile(fn): - os.remove(fn) - elif os.path.isdir(fn): - shutil.rmtree(fn) - except Exception: - not_removed.append(fn) - return not_removed - - -class EventMixin(object): - """ - A very simple publish/subscribe system. - """ - - def __init__(self): - self._subscribers = {} - - def add(self, event, subscriber, append=True): - """ - Add a subscriber for an event. - - :param event: The name of an event. - :param subscriber: The subscriber to be added (and called when the - event is published). - :param append: Whether to append or prepend the subscriber to an - existing subscriber list for the event. - """ - subs = self._subscribers - if event not in subs: - subs[event] = deque([subscriber]) - else: - sq = subs[event] - if append: - sq.append(subscriber) - else: - sq.appendleft(subscriber) - - def remove(self, event, subscriber): - """ - Remove a subscriber for an event. - - :param event: The name of an event. - :param subscriber: The subscriber to be removed. - """ - subs = self._subscribers - if event not in subs: - raise ValueError('No subscribers: %r' % event) - subs[event].remove(subscriber) - - def get_subscribers(self, event): - """ - Return an iterator for the subscribers for an event. - :param event: The event to return subscribers for. - """ - return iter(self._subscribers.get(event, ())) - - def publish(self, event, *args, **kwargs): - """ - Publish a event and return a list of values returned by its - subscribers. - - :param event: The event to publish. - :param args: The positional arguments to pass to the event's - subscribers. - :param kwargs: The keyword arguments to pass to the event's - subscribers. - """ - result = [] - for subscriber in self.get_subscribers(event): - try: - value = subscriber(event, *args, **kwargs) - except Exception: - logger.exception('Exception during event publication') - value = None - result.append(value) - logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, - args, kwargs, result) - return result - - -# -# Simple sequencing -# -class Sequencer(object): - - def __init__(self): - self._preds = {} - self._succs = {} - self._nodes = set() # nodes with no preds/succs - - def add_node(self, node): - self._nodes.add(node) - - def remove_node(self, node, edges=False): - if node in self._nodes: - self._nodes.remove(node) - if edges: - for p in set(self._preds.get(node, ())): - self.remove(p, node) - for s in set(self._succs.get(node, ())): - self.remove(node, s) - # Remove empties - for k, v in list(self._preds.items()): - if not v: - del self._preds[k] - for k, v in list(self._succs.items()): - if not v: - del self._succs[k] - - def add(self, pred, succ): - assert pred != succ - self._preds.setdefault(succ, set()).add(pred) - self._succs.setdefault(pred, set()).add(succ) - - def remove(self, pred, succ): - assert pred != succ - try: - preds = self._preds[succ] - succs = self._succs[pred] - except KeyError: # pragma: no cover - raise ValueError('%r not a successor of anything' % succ) - try: - preds.remove(pred) - succs.remove(succ) - except KeyError: # pragma: no cover - raise ValueError('%r not a successor of %r' % (succ, pred)) - - def is_step(self, step): - return (step in self._preds or step in self._succs - or step in self._nodes) - - def get_steps(self, final): - if not self.is_step(final): - raise ValueError('Unknown: %r' % final) - result = [] - todo = [] - seen = set() - todo.append(final) - while todo: - step = todo.pop(0) - if step in seen: - # if a step was already seen, - # move it to the end (so it will appear earlier - # when reversed on return) ... but not for the - # final step, as that would be confusing for - # users - if step != final: - result.remove(step) - result.append(step) - else: - seen.add(step) - result.append(step) - preds = self._preds.get(step, ()) - todo.extend(preds) - return reversed(result) - - @property - def strong_connections(self): - # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm - index_counter = [0] - stack = [] - lowlinks = {} - index = {} - result = [] - - graph = self._succs - - def strongconnect(node): - # set the depth index for this node to the smallest unused index - index[node] = index_counter[0] - lowlinks[node] = index_counter[0] - index_counter[0] += 1 - stack.append(node) - - # Consider successors - try: - successors = graph[node] - except Exception: - successors = [] - for successor in successors: - if successor not in lowlinks: - # Successor has not yet been visited - strongconnect(successor) - lowlinks[node] = min(lowlinks[node], lowlinks[successor]) - elif successor in stack: - # the successor is in the stack and hence in the current - # strongly connected component (SCC) - lowlinks[node] = min(lowlinks[node], index[successor]) - - # If `node` is a root node, pop the stack and generate an SCC - if lowlinks[node] == index[node]: - connected_component = [] - - while True: - successor = stack.pop() - connected_component.append(successor) - if successor == node: - break - component = tuple(connected_component) - # storing the result - result.append(component) - - for node in graph: - if node not in lowlinks: - strongconnect(node) - - return result - - @property - def dot(self): - result = ['digraph G {'] - for succ in self._preds: - preds = self._preds[succ] - for pred in preds: - result.append(' %s -> %s;' % (pred, succ)) - for node in self._nodes: - result.append(' %s;' % node) - result.append('}') - return '\n'.join(result) - - -# -# Unarchiving functionality for zip, tar, tgz, tbz, whl -# - -ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', - '.whl') - - -def unarchive(archive_filename, dest_dir, format=None, check=True): - - def check_path(path): - if not isinstance(path, text_type): - path = path.decode('utf-8') - p = os.path.abspath(os.path.join(dest_dir, path)) - if not p.startswith(dest_dir) or p[plen] != os.sep: - raise ValueError('path outside destination: %r' % p) - - dest_dir = os.path.abspath(dest_dir) - plen = len(dest_dir) - archive = None - if format is None: - if archive_filename.endswith(('.zip', '.whl')): - format = 'zip' - elif archive_filename.endswith(('.tar.gz', '.tgz')): - format = 'tgz' - mode = 'r:gz' - elif archive_filename.endswith(('.tar.bz2', '.tbz')): - format = 'tbz' - mode = 'r:bz2' - elif archive_filename.endswith('.tar'): - format = 'tar' - mode = 'r' - else: # pragma: no cover - raise ValueError('Unknown format for %r' % archive_filename) - try: - if format == 'zip': - archive = ZipFile(archive_filename, 'r') - if check: - names = archive.namelist() - for name in names: - check_path(name) - else: - archive = tarfile.open(archive_filename, mode) - if check: - names = archive.getnames() - for name in names: - check_path(name) - if format != 'zip' and sys.version_info[0] < 3: - # See Python issue 17153. If the dest path contains Unicode, - # tarfile extraction fails on Python 2.x if a member path name - # contains non-ASCII characters - it leads to an implicit - # bytes -> unicode conversion using ASCII to decode. - for tarinfo in archive.getmembers(): - if not isinstance(tarinfo.name, text_type): - tarinfo.name = tarinfo.name.decode('utf-8') - - # Limit extraction of dangerous items, if this Python - # allows it easily. If not, just trust the input. - # See: https://docs.python.org/3/library/tarfile.html#extraction-filters - def extraction_filter(member, path): - """Run tarfile.tar_filter, but raise the expected ValueError""" - # This is only called if the current Python has tarfile filters - try: - return tarfile.tar_filter(member, path) - except tarfile.FilterError as exc: - raise ValueError(str(exc)) - - archive.extraction_filter = extraction_filter - - archive.extractall(dest_dir) - - finally: - if archive: - archive.close() - - -def zip_dir(directory): - """zip a directory tree into a BytesIO object""" - result = io.BytesIO() - dlen = len(directory) - with ZipFile(result, "w") as zf: - for root, dirs, files in os.walk(directory): - for name in files: - full = os.path.join(root, name) - rel = root[dlen:] - dest = os.path.join(rel, name) - zf.write(full, dest) - return result - - -# -# Simple progress bar -# - -UNITS = ('', 'K', 'M', 'G', 'T', 'P') - - -class Progress(object): - unknown = 'UNKNOWN' - - def __init__(self, minval=0, maxval=100): - assert maxval is None or maxval >= minval - self.min = self.cur = minval - self.max = maxval - self.started = None - self.elapsed = 0 - self.done = False - - def update(self, curval): - assert self.min <= curval - assert self.max is None or curval <= self.max - self.cur = curval - now = time.time() - if self.started is None: - self.started = now - else: - self.elapsed = now - self.started - - def increment(self, incr): - assert incr >= 0 - self.update(self.cur + incr) - - def start(self): - self.update(self.min) - return self - - def stop(self): - if self.max is not None: - self.update(self.max) - self.done = True - - @property - def maximum(self): - return self.unknown if self.max is None else self.max - - @property - def percentage(self): - if self.done: - result = '100 %' - elif self.max is None: - result = ' ?? %' - else: - v = 100.0 * (self.cur - self.min) / (self.max - self.min) - result = '%3d %%' % v - return result - - def format_duration(self, duration): - if (duration <= 0) and self.max is None or self.cur == self.min: - result = '??:??:??' - # elif duration < 1: - # result = '--:--:--' - else: - result = time.strftime('%H:%M:%S', time.gmtime(duration)) - return result - - @property - def ETA(self): - if self.done: - prefix = 'Done' - t = self.elapsed - # import pdb; pdb.set_trace() - else: - prefix = 'ETA ' - if self.max is None: - t = -1 - elif self.elapsed == 0 or (self.cur == self.min): - t = 0 - else: - # import pdb; pdb.set_trace() - t = float(self.max - self.min) - t /= self.cur - self.min - t = (t - 1) * self.elapsed - return '%s: %s' % (prefix, self.format_duration(t)) - - @property - def speed(self): - if self.elapsed == 0: - result = 0.0 - else: - result = (self.cur - self.min) / self.elapsed - for unit in UNITS: - if result < 1000: - break - result /= 1000.0 - return '%d %sB/s' % (result, unit) - - -# -# Glob functionality -# - -RICH_GLOB = re.compile(r'\{([^}]*)\}') -_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') -_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') - - -def iglob(path_glob): - """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" - if _CHECK_RECURSIVE_GLOB.search(path_glob): - msg = """invalid glob %r: recursive glob "**" must be used alone""" - raise ValueError(msg % path_glob) - if _CHECK_MISMATCH_SET.search(path_glob): - msg = """invalid glob %r: mismatching set marker '{' or '}'""" - raise ValueError(msg % path_glob) - return _iglob(path_glob) - - -def _iglob(path_glob): - rich_path_glob = RICH_GLOB.split(path_glob, 1) - if len(rich_path_glob) > 1: - assert len(rich_path_glob) == 3, rich_path_glob - prefix, set, suffix = rich_path_glob - for item in set.split(','): - for path in _iglob(''.join((prefix, item, suffix))): - yield path - else: - if '**' not in path_glob: - for item in std_iglob(path_glob): - yield item - else: - prefix, radical = path_glob.split('**', 1) - if prefix == '': - prefix = '.' - if radical == '': - radical = '*' - else: - # we support both - radical = radical.lstrip('/') - radical = radical.lstrip('\\') - for path, dir, files in os.walk(prefix): - path = os.path.normpath(path) - for fn in _iglob(os.path.join(path, radical)): - yield fn - - -if ssl: - from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, - CertificateError) - - # - # HTTPSConnection which verifies certificates/matches domains - # - - class HTTPSConnection(httplib.HTTPSConnection): - ca_certs = None # set this to the path to the certs file (.pem) - check_domain = True # only used if ca_certs is not None - - # noinspection PyPropertyAccess - def connect(self): - sock = socket.create_connection((self.host, self.port), - self.timeout) - if getattr(self, '_tunnel_host', False): - self.sock = sock - self._tunnel() - - context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) - if hasattr(ssl, 'OP_NO_SSLv2'): - context.options |= ssl.OP_NO_SSLv2 - if getattr(self, 'cert_file', None): - context.load_cert_chain(self.cert_file, self.key_file) - kwargs = {} - if self.ca_certs: - context.verify_mode = ssl.CERT_REQUIRED - context.load_verify_locations(cafile=self.ca_certs) - if getattr(ssl, 'HAS_SNI', False): - kwargs['server_hostname'] = self.host - - self.sock = context.wrap_socket(sock, **kwargs) - if self.ca_certs and self.check_domain: - try: - match_hostname(self.sock.getpeercert(), self.host) - logger.debug('Host verified: %s', self.host) - except CertificateError: # pragma: no cover - self.sock.shutdown(socket.SHUT_RDWR) - self.sock.close() - raise - - class HTTPSHandler(BaseHTTPSHandler): - - def __init__(self, ca_certs, check_domain=True): - BaseHTTPSHandler.__init__(self) - self.ca_certs = ca_certs - self.check_domain = check_domain - - def _conn_maker(self, *args, **kwargs): - """ - This is called to create a connection instance. Normally you'd - pass a connection class to do_open, but it doesn't actually check for - a class, and just expects a callable. As long as we behave just as a - constructor would have, we should be OK. If it ever changes so that - we *must* pass a class, we'll create an UnsafeHTTPSConnection class - which just sets check_domain to False in the class definition, and - choose which one to pass to do_open. - """ - result = HTTPSConnection(*args, **kwargs) - if self.ca_certs: - result.ca_certs = self.ca_certs - result.check_domain = self.check_domain - return result - - def https_open(self, req): - try: - return self.do_open(self._conn_maker, req) - except URLError as e: - if 'certificate verify failed' in str(e.reason): - raise CertificateError( - 'Unable to verify server certificate ' - 'for %s' % req.host) - else: - raise - - # - # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- - # Middle proxy using HTTP listens on port 443, or an index mistakenly serves - # HTML containing a http://xyz link when it should be https://xyz), - # you can use the following handler class, which does not allow HTTP traffic. - # - # It works by inheriting from HTTPHandler - so build_opener won't add a - # handler for HTTP itself. - # - class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): - - def http_open(self, req): - raise URLError( - 'Unexpected HTTP request on what should be a secure ' - 'connection: %s' % req) - - -# -# XML-RPC with timeouts -# -class Transport(xmlrpclib.Transport): - - def __init__(self, timeout, use_datetime=0): - self.timeout = timeout - xmlrpclib.Transport.__init__(self, use_datetime) - - def make_connection(self, host): - h, eh, x509 = self.get_host_info(host) - if not self._connection or host != self._connection[0]: - self._extra_headers = eh - self._connection = host, httplib.HTTPConnection(h) - return self._connection[1] - - -if ssl: - - class SafeTransport(xmlrpclib.SafeTransport): - - def __init__(self, timeout, use_datetime=0): - self.timeout = timeout - xmlrpclib.SafeTransport.__init__(self, use_datetime) - - def make_connection(self, host): - h, eh, kwargs = self.get_host_info(host) - if not kwargs: - kwargs = {} - kwargs['timeout'] = self.timeout - if not self._connection or host != self._connection[0]: - self._extra_headers = eh - self._connection = host, httplib.HTTPSConnection( - h, None, **kwargs) - return self._connection[1] - - -class ServerProxy(xmlrpclib.ServerProxy): - - def __init__(self, uri, **kwargs): - self.timeout = timeout = kwargs.pop('timeout', None) - # The above classes only come into play if a timeout - # is specified - if timeout is not None: - # scheme = splittype(uri) # deprecated as of Python 3.8 - scheme = urlparse(uri)[0] - use_datetime = kwargs.get('use_datetime', 0) - if scheme == 'https': - tcls = SafeTransport - else: - tcls = Transport - kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) - self.transport = t - xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) - - -# -# CSV functionality. This is provided because on 2.x, the csv module can't -# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. -# - - -def _csv_open(fn, mode, **kwargs): - if sys.version_info[0] < 3: - mode += 'b' - else: - kwargs['newline'] = '' - # Python 3 determines encoding from locale. Force 'utf-8' - # file encoding to match other forced utf-8 encoding - kwargs['encoding'] = 'utf-8' - return open(fn, mode, **kwargs) - - -class CSVBase(object): - defaults = { - 'delimiter': str(','), # The strs are used because we need native - 'quotechar': str('"'), # str in the csv API (2.x won't take - 'lineterminator': str('\n') # Unicode) - } - - def __enter__(self): - return self - - def __exit__(self, *exc_info): - self.stream.close() - - -class CSVReader(CSVBase): - - def __init__(self, **kwargs): - if 'stream' in kwargs: - stream = kwargs['stream'] - if sys.version_info[0] >= 3: - # needs to be a text stream - stream = codecs.getreader('utf-8')(stream) - self.stream = stream - else: - self.stream = _csv_open(kwargs['path'], 'r') - self.reader = csv.reader(self.stream, **self.defaults) - - def __iter__(self): - return self - - def next(self): - result = next(self.reader) - if sys.version_info[0] < 3: - for i, item in enumerate(result): - if not isinstance(item, text_type): - result[i] = item.decode('utf-8') - return result - - __next__ = next - - -class CSVWriter(CSVBase): - - def __init__(self, fn, **kwargs): - self.stream = _csv_open(fn, 'w') - self.writer = csv.writer(self.stream, **self.defaults) - - def writerow(self, row): - if sys.version_info[0] < 3: - r = [] - for item in row: - if isinstance(item, text_type): - item = item.encode('utf-8') - r.append(item) - row = r - self.writer.writerow(row) - - -# -# Configurator functionality -# - - -class Configurator(BaseConfigurator): - - value_converters = dict(BaseConfigurator.value_converters) - value_converters['inc'] = 'inc_convert' - - def __init__(self, config, base=None): - super(Configurator, self).__init__(config) - self.base = base or os.getcwd() - - def configure_custom(self, config): - - def convert(o): - if isinstance(o, (list, tuple)): - result = type(o)([convert(i) for i in o]) - elif isinstance(o, dict): - if '()' in o: - result = self.configure_custom(o) - else: - result = {} - for k in o: - result[k] = convert(o[k]) - else: - result = self.convert(o) - return result - - c = config.pop('()') - if not callable(c): - c = self.resolve(c) - props = config.pop('.', None) - # Check for valid identifiers - args = config.pop('[]', ()) - if args: - args = tuple([convert(o) for o in args]) - items = [(k, convert(config[k])) for k in config if valid_ident(k)] - kwargs = dict(items) - result = c(*args, **kwargs) - if props: - for n, v in props.items(): - setattr(result, n, convert(v)) - return result - - def __getitem__(self, key): - result = self.config[key] - if isinstance(result, dict) and '()' in result: - self.config[key] = result = self.configure_custom(result) - return result - - def inc_convert(self, value): - """Default converter for the inc:// protocol.""" - if not os.path.isabs(value): - value = os.path.join(self.base, value) - with codecs.open(value, 'r', encoding='utf-8') as f: - result = json.load(f) - return result - - -class SubprocessMixin(object): - """ - Mixin for running subprocesses and capturing their output - """ - - def __init__(self, verbose=False, progress=None): - self.verbose = verbose - self.progress = progress - - def reader(self, stream, context): - """ - Read lines from a subprocess' output stream and either pass to a progress - callable (if specified) or write progress information to sys.stderr. - """ - progress = self.progress - verbose = self.verbose - while True: - s = stream.readline() - if not s: - break - if progress is not None: - progress(s, context) - else: - if not verbose: - sys.stderr.write('.') - else: - sys.stderr.write(s.decode('utf-8')) - sys.stderr.flush() - stream.close() - - def run_command(self, cmd, **kwargs): - p = subprocess.Popen(cmd, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - **kwargs) - t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) - t1.start() - t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) - t2.start() - p.wait() - t1.join() - t2.join() - if self.progress is not None: - self.progress('done.', 'main') - elif self.verbose: - sys.stderr.write('done.\n') - return p - - -def normalize_name(name): - """Normalize a python package name a la PEP 503""" - # https://www.python.org/dev/peps/pep-0503/#normalized-names - return re.sub('[-_.]+', '-', name).lower() - - -# def _get_pypirc_command(): -# """ -# Get the distutils command for interacting with PyPI configurations. -# :return: the command. -# """ -# from distutils.core import Distribution -# from distutils.config import PyPIRCCommand -# d = Distribution() -# return PyPIRCCommand(d) - - -class PyPIRCFile(object): - - DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' - DEFAULT_REALM = 'pypi' - - def __init__(self, fn=None, url=None): - if fn is None: - fn = os.path.join(os.path.expanduser('~'), '.pypirc') - self.filename = fn - self.url = url - - def read(self): - result = {} - - if os.path.exists(self.filename): - repository = self.url or self.DEFAULT_REPOSITORY - - config = configparser.RawConfigParser() - config.read(self.filename) - sections = config.sections() - if 'distutils' in sections: - # let's get the list of servers - index_servers = config.get('distutils', 'index-servers') - _servers = [ - server.strip() for server in index_servers.split('\n') - if server.strip() != '' - ] - if _servers == []: - # nothing set, let's try to get the default pypi - if 'pypi' in sections: - _servers = ['pypi'] - else: - for server in _servers: - result = {'server': server} - result['username'] = config.get(server, 'username') - - # optional params - for key, default in (('repository', - self.DEFAULT_REPOSITORY), - ('realm', self.DEFAULT_REALM), - ('password', None)): - if config.has_option(server, key): - result[key] = config.get(server, key) - else: - result[key] = default - - # work around people having "repository" for the "pypi" - # section of their config set to the HTTP (rather than - # HTTPS) URL - if (server == 'pypi' and repository - in (self.DEFAULT_REPOSITORY, 'pypi')): - result['repository'] = self.DEFAULT_REPOSITORY - elif (result['server'] != repository - and result['repository'] != repository): - result = {} - elif 'server-login' in sections: - # old format - server = 'server-login' - if config.has_option(server, 'repository'): - repository = config.get(server, 'repository') - else: - repository = self.DEFAULT_REPOSITORY - result = { - 'username': config.get(server, 'username'), - 'password': config.get(server, 'password'), - 'repository': repository, - 'server': server, - 'realm': self.DEFAULT_REALM - } - return result - - def update(self, username, password): - # import pdb; pdb.set_trace() - config = configparser.RawConfigParser() - fn = self.filename - config.read(fn) - if not config.has_section('pypi'): - config.add_section('pypi') - config.set('pypi', 'username', username) - config.set('pypi', 'password', password) - with open(fn, 'w') as f: - config.write(f) - - -def _load_pypirc(index): - """ - Read the PyPI access configuration as supported by distutils. - """ - return PyPIRCFile(url=index.url).read() - - -def _store_pypirc(index): - PyPIRCFile().update(index.username, index.password) - - -# -# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor -# tweaks -# - - -def get_host_platform(): - """Return a string that identifies the current platform. This is used mainly to - distinguish platform-specific build directories and platform-specific built - distributions. Typically includes the OS name and version and the - architecture (as supplied by 'os.uname()'), although the exact information - included depends on the OS; eg. on Linux, the kernel version isn't - particularly important. - - Examples of returned values: - linux-i586 - linux-alpha (?) - solaris-2.6-sun4u - - Windows will return one of: - win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) - win32 (all others - specifically, sys.platform is returned) - - For other non-POSIX platforms, currently just returns 'sys.platform'. - - """ - if os.name == 'nt': - if 'amd64' in sys.version.lower(): - return 'win-amd64' - if '(arm)' in sys.version.lower(): - return 'win-arm32' - if '(arm64)' in sys.version.lower(): - return 'win-arm64' - return sys.platform - - # Set for cross builds explicitly - if "_PYTHON_HOST_PLATFORM" in os.environ: - return os.environ["_PYTHON_HOST_PLATFORM"] - - if os.name != 'posix' or not hasattr(os, 'uname'): - # XXX what about the architecture? NT is Intel or Alpha, - # Mac OS is M68k or PPC, etc. - return sys.platform - - # Try to distinguish various flavours of Unix - - (osname, host, release, version, machine) = os.uname() - - # Convert the OS name to lowercase, remove '/' characters, and translate - # spaces (for "Power Macintosh") - osname = osname.lower().replace('/', '') - machine = machine.replace(' ', '_').replace('/', '-') - - if osname[:5] == 'linux': - # At least on Linux/Intel, 'machine' is the processor -- - # i386, etc. - # XXX what about Alpha, SPARC, etc? - return "%s-%s" % (osname, machine) - - elif osname[:5] == 'sunos': - if release[0] >= '5': # SunOS 5 == Solaris 2 - osname = 'solaris' - release = '%d.%s' % (int(release[0]) - 3, release[2:]) - # We can't use 'platform.architecture()[0]' because a - # bootstrap problem. We use a dict to get an error - # if some suspicious happens. - bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} - machine += '.%s' % bitness[sys.maxsize] - # fall through to standard osname-release-machine representation - elif osname[:3] == 'aix': - from _aix_support import aix_platform - return aix_platform() - elif osname[:6] == 'cygwin': - osname = 'cygwin' - rel_re = re.compile(r'[\d.]+', re.ASCII) - m = rel_re.match(release) - if m: - release = m.group() - elif osname[:6] == 'darwin': - import _osx_support - try: - from distutils import sysconfig - except ImportError: - import sysconfig - osname, release, machine = _osx_support.get_platform_osx( - sysconfig.get_config_vars(), osname, release, machine) - - return '%s-%s-%s' % (osname, release, machine) - - -_TARGET_TO_PLAT = { - 'x86': 'win32', - 'x64': 'win-amd64', - 'arm': 'win-arm32', -} - - -def get_platform(): - if os.name != 'nt': - return get_host_platform() - cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') - if cross_compilation_target not in _TARGET_TO_PLAT: - return get_host_platform() - return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py deleted file mode 100644 index 14171ac..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py +++ /dev/null @@ -1,751 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2012-2023 The Python Software Foundation. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -""" -Implementation of a flexible versioning scheme providing support for PEP-440, -setuptools-compatible and semantic versioning. -""" - -import logging -import re - -from .compat import string_types -from .util import parse_requirement - -__all__ = ['NormalizedVersion', 'NormalizedMatcher', - 'LegacyVersion', 'LegacyMatcher', - 'SemanticVersion', 'SemanticMatcher', - 'UnsupportedVersionError', 'get_scheme'] - -logger = logging.getLogger(__name__) - - -class UnsupportedVersionError(ValueError): - """This is an unsupported version.""" - pass - - -class Version(object): - def __init__(self, s): - self._string = s = s.strip() - self._parts = parts = self.parse(s) - assert isinstance(parts, tuple) - assert len(parts) > 0 - - def parse(self, s): - raise NotImplementedError('please implement in a subclass') - - def _check_compatible(self, other): - if type(self) != type(other): - raise TypeError('cannot compare %r and %r' % (self, other)) - - def __eq__(self, other): - self._check_compatible(other) - return self._parts == other._parts - - def __ne__(self, other): - return not self.__eq__(other) - - def __lt__(self, other): - self._check_compatible(other) - return self._parts < other._parts - - def __gt__(self, other): - return not (self.__lt__(other) or self.__eq__(other)) - - def __le__(self, other): - return self.__lt__(other) or self.__eq__(other) - - def __ge__(self, other): - return self.__gt__(other) or self.__eq__(other) - - # See http://docs.python.org/reference/datamodel#object.__hash__ - def __hash__(self): - return hash(self._parts) - - def __repr__(self): - return "%s('%s')" % (self.__class__.__name__, self._string) - - def __str__(self): - return self._string - - @property - def is_prerelease(self): - raise NotImplementedError('Please implement in subclasses.') - - -class Matcher(object): - version_class = None - - # value is either a callable or the name of a method - _operators = { - '<': lambda v, c, p: v < c, - '>': lambda v, c, p: v > c, - '<=': lambda v, c, p: v == c or v < c, - '>=': lambda v, c, p: v == c or v > c, - '==': lambda v, c, p: v == c, - '===': lambda v, c, p: v == c, - # by default, compatible => >=. - '~=': lambda v, c, p: v == c or v > c, - '!=': lambda v, c, p: v != c, - } - - # this is a method only to support alternative implementations - # via overriding - def parse_requirement(self, s): - return parse_requirement(s) - - def __init__(self, s): - if self.version_class is None: - raise ValueError('Please specify a version class') - self._string = s = s.strip() - r = self.parse_requirement(s) - if not r: - raise ValueError('Not valid: %r' % s) - self.name = r.name - self.key = self.name.lower() # for case-insensitive comparisons - clist = [] - if r.constraints: - # import pdb; pdb.set_trace() - for op, s in r.constraints: - if s.endswith('.*'): - if op not in ('==', '!='): - raise ValueError('\'.*\' not allowed for ' - '%r constraints' % op) - # Could be a partial version (e.g. for '2.*') which - # won't parse as a version, so keep it as a string - vn, prefix = s[:-2], True - # Just to check that vn is a valid version - self.version_class(vn) - else: - # Should parse as a version, so we can create an - # instance for the comparison - vn, prefix = self.version_class(s), False - clist.append((op, vn, prefix)) - self._parts = tuple(clist) - - def match(self, version): - """ - Check if the provided version matches the constraints. - - :param version: The version to match against this instance. - :type version: String or :class:`Version` instance. - """ - if isinstance(version, string_types): - version = self.version_class(version) - for operator, constraint, prefix in self._parts: - f = self._operators.get(operator) - if isinstance(f, string_types): - f = getattr(self, f) - if not f: - msg = ('%r not implemented ' - 'for %s' % (operator, self.__class__.__name__)) - raise NotImplementedError(msg) - if not f(version, constraint, prefix): - return False - return True - - @property - def exact_version(self): - result = None - if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): - result = self._parts[0][1] - return result - - def _check_compatible(self, other): - if type(self) != type(other) or self.name != other.name: - raise TypeError('cannot compare %s and %s' % (self, other)) - - def __eq__(self, other): - self._check_compatible(other) - return self.key == other.key and self._parts == other._parts - - def __ne__(self, other): - return not self.__eq__(other) - - # See http://docs.python.org/reference/datamodel#object.__hash__ - def __hash__(self): - return hash(self.key) + hash(self._parts) - - def __repr__(self): - return "%s(%r)" % (self.__class__.__name__, self._string) - - def __str__(self): - return self._string - - -PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' - r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' - r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) - - -def _pep_440_key(s): - s = s.strip() - m = PEP440_VERSION_RE.match(s) - if not m: - raise UnsupportedVersionError('Not a valid version: %s' % s) - groups = m.groups() - nums = tuple(int(v) for v in groups[1].split('.')) - while len(nums) > 1 and nums[-1] == 0: - nums = nums[:-1] - - if not groups[0]: - epoch = 0 - else: - epoch = int(groups[0][:-1]) - pre = groups[4:6] - post = groups[7:9] - dev = groups[10:12] - local = groups[13] - if pre == (None, None): - pre = () - else: - if pre[1] is None: - pre = pre[0], 0 - else: - pre = pre[0], int(pre[1]) - if post == (None, None): - post = () - else: - if post[1] is None: - post = post[0], 0 - else: - post = post[0], int(post[1]) - if dev == (None, None): - dev = () - else: - if dev[1] is None: - dev = dev[0], 0 - else: - dev = dev[0], int(dev[1]) - if local is None: - local = () - else: - parts = [] - for part in local.split('.'): - # to ensure that numeric compares as > lexicographic, avoid - # comparing them directly, but encode a tuple which ensures - # correct sorting - if part.isdigit(): - part = (1, int(part)) - else: - part = (0, part) - parts.append(part) - local = tuple(parts) - if not pre: - # either before pre-release, or final release and after - if not post and dev: - # before pre-release - pre = ('a', -1) # to sort before a0 - else: - pre = ('z',) # to sort after all pre-releases - # now look at the state of post and dev. - if not post: - post = ('_',) # sort before 'a' - if not dev: - dev = ('final',) - - return epoch, nums, pre, post, dev, local - - -_normalized_key = _pep_440_key - - -class NormalizedVersion(Version): - """A rational version. - - Good: - 1.2 # equivalent to "1.2.0" - 1.2.0 - 1.2a1 - 1.2.3a2 - 1.2.3b1 - 1.2.3c1 - 1.2.3.4 - TODO: fill this out - - Bad: - 1 # minimum two numbers - 1.2a # release level must have a release serial - 1.2.3b - """ - def parse(self, s): - result = _normalized_key(s) - # _normalized_key loses trailing zeroes in the release - # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 - # However, PEP 440 prefix matching needs it: for example, - # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). - m = PEP440_VERSION_RE.match(s) # must succeed - groups = m.groups() - self._release_clause = tuple(int(v) for v in groups[1].split('.')) - return result - - PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) - - @property - def is_prerelease(self): - return any(t[0] in self.PREREL_TAGS for t in self._parts if t) - - -def _match_prefix(x, y): - x = str(x) - y = str(y) - if x == y: - return True - if not x.startswith(y): - return False - n = len(y) - return x[n] == '.' - - -class NormalizedMatcher(Matcher): - version_class = NormalizedVersion - - # value is either a callable or the name of a method - _operators = { - '~=': '_match_compatible', - '<': '_match_lt', - '>': '_match_gt', - '<=': '_match_le', - '>=': '_match_ge', - '==': '_match_eq', - '===': '_match_arbitrary', - '!=': '_match_ne', - } - - def _adjust_local(self, version, constraint, prefix): - if prefix: - strip_local = '+' not in constraint and version._parts[-1] - else: - # both constraint and version are - # NormalizedVersion instances. - # If constraint does not have a local component, - # ensure the version doesn't, either. - strip_local = not constraint._parts[-1] and version._parts[-1] - if strip_local: - s = version._string.split('+', 1)[0] - version = self.version_class(s) - return version, constraint - - def _match_lt(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - if version >= constraint: - return False - release_clause = constraint._release_clause - pfx = '.'.join([str(i) for i in release_clause]) - return not _match_prefix(version, pfx) - - def _match_gt(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - if version <= constraint: - return False - release_clause = constraint._release_clause - pfx = '.'.join([str(i) for i in release_clause]) - return not _match_prefix(version, pfx) - - def _match_le(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - return version <= constraint - - def _match_ge(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - return version >= constraint - - def _match_eq(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - if not prefix: - result = (version == constraint) - else: - result = _match_prefix(version, constraint) - return result - - def _match_arbitrary(self, version, constraint, prefix): - return str(version) == str(constraint) - - def _match_ne(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - if not prefix: - result = (version != constraint) - else: - result = not _match_prefix(version, constraint) - return result - - def _match_compatible(self, version, constraint, prefix): - version, constraint = self._adjust_local(version, constraint, prefix) - if version == constraint: - return True - if version < constraint: - return False -# if not prefix: -# return True - release_clause = constraint._release_clause - if len(release_clause) > 1: - release_clause = release_clause[:-1] - pfx = '.'.join([str(i) for i in release_clause]) - return _match_prefix(version, pfx) - - -_REPLACEMENTS = ( - (re.compile('[.+-]$'), ''), # remove trailing puncts - (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start - (re.compile('^[.-]'), ''), # remove leading puncts - (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses - (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) - (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) - (re.compile('[.]{2,}'), '.'), # multiple runs of '.' - (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha - (re.compile(r'\b(pre-alpha|prealpha)\b'), - 'pre.alpha'), # standardise - (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses -) - -_SUFFIX_REPLACEMENTS = ( - (re.compile('^[:~._+-]+'), ''), # remove leading puncts - (re.compile('[,*")([\\]]'), ''), # remove unwanted chars - (re.compile('[~:+_ -]'), '.'), # replace illegal chars - (re.compile('[.]{2,}'), '.'), # multiple runs of '.' - (re.compile(r'\.$'), ''), # trailing '.' -) - -_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') - - -def _suggest_semantic_version(s): - """ - Try to suggest a semantic form for a version for which - _suggest_normalized_version couldn't come up with anything. - """ - result = s.strip().lower() - for pat, repl in _REPLACEMENTS: - result = pat.sub(repl, result) - if not result: - result = '0.0.0' - - # Now look for numeric prefix, and separate it out from - # the rest. - # import pdb; pdb.set_trace() - m = _NUMERIC_PREFIX.match(result) - if not m: - prefix = '0.0.0' - suffix = result - else: - prefix = m.groups()[0].split('.') - prefix = [int(i) for i in prefix] - while len(prefix) < 3: - prefix.append(0) - if len(prefix) == 3: - suffix = result[m.end():] - else: - suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] - prefix = prefix[:3] - prefix = '.'.join([str(i) for i in prefix]) - suffix = suffix.strip() - if suffix: - # import pdb; pdb.set_trace() - # massage the suffix. - for pat, repl in _SUFFIX_REPLACEMENTS: - suffix = pat.sub(repl, suffix) - - if not suffix: - result = prefix - else: - sep = '-' if 'dev' in suffix else '+' - result = prefix + sep + suffix - if not is_semver(result): - result = None - return result - - -def _suggest_normalized_version(s): - """Suggest a normalized version close to the given version string. - - If you have a version string that isn't rational (i.e. NormalizedVersion - doesn't like it) then you might be able to get an equivalent (or close) - rational version from this function. - - This does a number of simple normalizations to the given string, based - on observation of versions currently in use on PyPI. Given a dump of - those version during PyCon 2009, 4287 of them: - - 2312 (53.93%) match NormalizedVersion without change - with the automatic suggestion - - 3474 (81.04%) match when using this suggestion method - - @param s {str} An irrational version string. - @returns A rational version string, or None, if couldn't determine one. - """ - try: - _normalized_key(s) - return s # already rational - except UnsupportedVersionError: - pass - - rs = s.lower() - - # part of this could use maketrans - for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), - ('beta', 'b'), ('rc', 'c'), ('-final', ''), - ('-pre', 'c'), - ('-release', ''), ('.release', ''), ('-stable', ''), - ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), - ('final', '')): - rs = rs.replace(orig, repl) - - # if something ends with dev or pre, we add a 0 - rs = re.sub(r"pre$", r"pre0", rs) - rs = re.sub(r"dev$", r"dev0", rs) - - # if we have something like "b-2" or "a.2" at the end of the - # version, that is probably beta, alpha, etc - # let's remove the dash or dot - rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) - - # 1.0-dev-r371 -> 1.0.dev371 - # 0.1-dev-r79 -> 0.1.dev79 - rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) - - # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 - rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) - - # Clean: v0.3, v1.0 - if rs.startswith('v'): - rs = rs[1:] - - # Clean leading '0's on numbers. - # TODO: unintended side-effect on, e.g., "2003.05.09" - # PyPI stats: 77 (~2%) better - rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) - - # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers - # zero. - # PyPI stats: 245 (7.56%) better - rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) - - # the 'dev-rNNN' tag is a dev tag - rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) - - # clean the - when used as a pre delimiter - rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) - - # a terminal "dev" or "devel" can be changed into ".dev0" - rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) - - # a terminal "dev" can be changed into ".dev0" - rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) - - # a terminal "final" or "stable" can be removed - rs = re.sub(r"(final|stable)$", "", rs) - - # The 'r' and the '-' tags are post release tags - # 0.4a1.r10 -> 0.4a1.post10 - # 0.9.33-17222 -> 0.9.33.post17222 - # 0.9.33-r17222 -> 0.9.33.post17222 - rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) - - # Clean 'r' instead of 'dev' usage: - # 0.9.33+r17222 -> 0.9.33.dev17222 - # 1.0dev123 -> 1.0.dev123 - # 1.0.git123 -> 1.0.dev123 - # 1.0.bzr123 -> 1.0.dev123 - # 0.1a0dev.123 -> 0.1a0.dev123 - # PyPI stats: ~150 (~4%) better - rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) - - # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: - # 0.2.pre1 -> 0.2c1 - # 0.2-c1 -> 0.2c1 - # 1.0preview123 -> 1.0c123 - # PyPI stats: ~21 (0.62%) better - rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) - - # Tcl/Tk uses "px" for their post release markers - rs = re.sub(r"p(\d+)$", r".post\1", rs) - - try: - _normalized_key(rs) - except UnsupportedVersionError: - rs = None - return rs - -# -# Legacy version processing (distribute-compatible) -# - - -_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) -_VERSION_REPLACE = { - 'pre': 'c', - 'preview': 'c', - '-': 'final-', - 'rc': 'c', - 'dev': '@', - '': None, - '.': None, -} - - -def _legacy_key(s): - def get_parts(s): - result = [] - for p in _VERSION_PART.split(s.lower()): - p = _VERSION_REPLACE.get(p, p) - if p: - if '0' <= p[:1] <= '9': - p = p.zfill(8) - else: - p = '*' + p - result.append(p) - result.append('*final') - return result - - result = [] - for p in get_parts(s): - if p.startswith('*'): - if p < '*final': - while result and result[-1] == '*final-': - result.pop() - while result and result[-1] == '00000000': - result.pop() - result.append(p) - return tuple(result) - - -class LegacyVersion(Version): - def parse(self, s): - return _legacy_key(s) - - @property - def is_prerelease(self): - result = False - for x in self._parts: - if (isinstance(x, string_types) and x.startswith('*') and - x < '*final'): - result = True - break - return result - - -class LegacyMatcher(Matcher): - version_class = LegacyVersion - - _operators = dict(Matcher._operators) - _operators['~='] = '_match_compatible' - - numeric_re = re.compile(r'^(\d+(\.\d+)*)') - - def _match_compatible(self, version, constraint, prefix): - if version < constraint: - return False - m = self.numeric_re.match(str(constraint)) - if not m: - logger.warning('Cannot compute compatible match for version %s ' - ' and constraint %s', version, constraint) - return True - s = m.groups()[0] - if '.' in s: - s = s.rsplit('.', 1)[0] - return _match_prefix(version, s) - -# -# Semantic versioning -# - - -_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' - r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' - r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) - - -def is_semver(s): - return _SEMVER_RE.match(s) - - -def _semantic_key(s): - def make_tuple(s, absent): - if s is None: - result = (absent,) - else: - parts = s[1:].split('.') - # We can't compare ints and strings on Python 3, so fudge it - # by zero-filling numeric values so simulate a numeric comparison - result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) - return result - - m = is_semver(s) - if not m: - raise UnsupportedVersionError(s) - groups = m.groups() - major, minor, patch = [int(i) for i in groups[:3]] - # choose the '|' and '*' so that versions sort correctly - pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') - return (major, minor, patch), pre, build - - -class SemanticVersion(Version): - def parse(self, s): - return _semantic_key(s) - - @property - def is_prerelease(self): - return self._parts[1][0] != '|' - - -class SemanticMatcher(Matcher): - version_class = SemanticVersion - - -class VersionScheme(object): - def __init__(self, key, matcher, suggester=None): - self.key = key - self.matcher = matcher - self.suggester = suggester - - def is_valid_version(self, s): - try: - self.matcher.version_class(s) - result = True - except UnsupportedVersionError: - result = False - return result - - def is_valid_matcher(self, s): - try: - self.matcher(s) - result = True - except UnsupportedVersionError: - result = False - return result - - def is_valid_constraint_list(self, s): - """ - Used for processing some metadata fields - """ - # See issue #140. Be tolerant of a single trailing comma. - if s.endswith(','): - s = s[:-1] - return self.is_valid_matcher('dummy_name (%s)' % s) - - def suggest(self, s): - if self.suggester is None: - result = None - else: - result = self.suggester(s) - return result - - -_SCHEMES = { - 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, - _suggest_normalized_version), - 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), - 'semantic': VersionScheme(_semantic_key, SemanticMatcher, - _suggest_semantic_version), -} - -_SCHEMES['default'] = _SCHEMES['normalized'] - - -def get_scheme(name): - if name not in _SCHEMES: - raise ValueError('unknown scheme name: %r' % name) - return _SCHEMES[name] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py deleted file mode 100644 index 4a5a30e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py +++ /dev/null @@ -1,1099 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (C) 2013-2023 Vinay Sajip. -# Licensed to the Python Software Foundation under a contributor agreement. -# See LICENSE.txt and CONTRIBUTORS.txt. -# -from __future__ import unicode_literals - -import base64 -import codecs -import datetime -from email import message_from_file -import hashlib -import json -import logging -import os -import posixpath -import re -import shutil -import sys -import tempfile -import zipfile - -from . import __version__, DistlibException -from .compat import sysconfig, ZipFile, fsdecode, text_type, filter -from .database import InstalledDistribution -from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME -from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, - cached_property, get_cache_base, read_exports, tempdir, - get_platform) -from .version import NormalizedVersion, UnsupportedVersionError - -logger = logging.getLogger(__name__) - -cache = None # created when needed - -if hasattr(sys, 'pypy_version_info'): # pragma: no cover - IMP_PREFIX = 'pp' -elif sys.platform.startswith('java'): # pragma: no cover - IMP_PREFIX = 'jy' -elif sys.platform == 'cli': # pragma: no cover - IMP_PREFIX = 'ip' -else: - IMP_PREFIX = 'cp' - -VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') -if not VER_SUFFIX: # pragma: no cover - VER_SUFFIX = '%s%s' % sys.version_info[:2] -PYVER = 'py' + VER_SUFFIX -IMPVER = IMP_PREFIX + VER_SUFFIX - -ARCH = get_platform().replace('-', '_').replace('.', '_') - -ABI = sysconfig.get_config_var('SOABI') -if ABI and ABI.startswith('cpython-'): - ABI = ABI.replace('cpython-', 'cp').split('-')[0] -else: - - def _derive_abi(): - parts = ['cp', VER_SUFFIX] - if sysconfig.get_config_var('Py_DEBUG'): - parts.append('d') - if IMP_PREFIX == 'cp': - vi = sys.version_info[:2] - if vi < (3, 8): - wpm = sysconfig.get_config_var('WITH_PYMALLOC') - if wpm is None: - wpm = True - if wpm: - parts.append('m') - if vi < (3, 3): - us = sysconfig.get_config_var('Py_UNICODE_SIZE') - if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): - parts.append('u') - return ''.join(parts) - - ABI = _derive_abi() - del _derive_abi - -FILENAME_RE = re.compile( - r''' -(?P[^-]+) --(?P\d+[^-]*) -(-(?P\d+[^-]*))? --(?P\w+\d+(\.\w+\d+)*) --(?P\w+) --(?P\w+(\.\w+)*) -\.whl$ -''', re.IGNORECASE | re.VERBOSE) - -NAME_VERSION_RE = re.compile( - r''' -(?P[^-]+) --(?P\d+[^-]*) -(-(?P\d+[^-]*))?$ -''', re.IGNORECASE | re.VERBOSE) - -SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') -SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') -SHEBANG_PYTHON = b'#!python' -SHEBANG_PYTHONW = b'#!pythonw' - -if os.sep == '/': - to_posix = lambda o: o -else: - to_posix = lambda o: o.replace(os.sep, '/') - -if sys.version_info[0] < 3: - import imp -else: - imp = None - import importlib.machinery - import importlib.util - - -def _get_suffixes(): - if imp: - return [s[0] for s in imp.get_suffixes()] - else: - return importlib.machinery.EXTENSION_SUFFIXES - - -def _load_dynamic(name, path): - # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly - if imp: - return imp.load_dynamic(name, path) - else: - spec = importlib.util.spec_from_file_location(name, path) - module = importlib.util.module_from_spec(spec) - sys.modules[name] = module - spec.loader.exec_module(module) - return module - - -class Mounter(object): - - def __init__(self): - self.impure_wheels = {} - self.libs = {} - - def add(self, pathname, extensions): - self.impure_wheels[pathname] = extensions - self.libs.update(extensions) - - def remove(self, pathname): - extensions = self.impure_wheels.pop(pathname) - for k, v in extensions: - if k in self.libs: - del self.libs[k] - - def find_module(self, fullname, path=None): - if fullname in self.libs: - result = self - else: - result = None - return result - - def load_module(self, fullname): - if fullname in sys.modules: - result = sys.modules[fullname] - else: - if fullname not in self.libs: - raise ImportError('unable to find extension for %s' % fullname) - result = _load_dynamic(fullname, self.libs[fullname]) - result.__loader__ = self - parts = fullname.rsplit('.', 1) - if len(parts) > 1: - result.__package__ = parts[0] - return result - - -_hook = Mounter() - - -class Wheel(object): - """ - Class to build and install from Wheel files (PEP 427). - """ - - wheel_version = (1, 1) - hash_kind = 'sha256' - - def __init__(self, filename=None, sign=False, verify=False): - """ - Initialise an instance using a (valid) filename. - """ - self.sign = sign - self.should_verify = verify - self.buildver = '' - self.pyver = [PYVER] - self.abi = ['none'] - self.arch = ['any'] - self.dirname = os.getcwd() - if filename is None: - self.name = 'dummy' - self.version = '0.1' - self._filename = self.filename - else: - m = NAME_VERSION_RE.match(filename) - if m: - info = m.groupdict('') - self.name = info['nm'] - # Reinstate the local version separator - self.version = info['vn'].replace('_', '-') - self.buildver = info['bn'] - self._filename = self.filename - else: - dirname, filename = os.path.split(filename) - m = FILENAME_RE.match(filename) - if not m: - raise DistlibException('Invalid name or ' - 'filename: %r' % filename) - if dirname: - self.dirname = os.path.abspath(dirname) - self._filename = filename - info = m.groupdict('') - self.name = info['nm'] - self.version = info['vn'] - self.buildver = info['bn'] - self.pyver = info['py'].split('.') - self.abi = info['bi'].split('.') - self.arch = info['ar'].split('.') - - @property - def filename(self): - """ - Build and return a filename from the various components. - """ - if self.buildver: - buildver = '-' + self.buildver - else: - buildver = '' - pyver = '.'.join(self.pyver) - abi = '.'.join(self.abi) - arch = '.'.join(self.arch) - # replace - with _ as a local version separator - version = self.version.replace('-', '_') - return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, - abi, arch) - - @property - def exists(self): - path = os.path.join(self.dirname, self.filename) - return os.path.isfile(path) - - @property - def tags(self): - for pyver in self.pyver: - for abi in self.abi: - for arch in self.arch: - yield pyver, abi, arch - - @cached_property - def metadata(self): - pathname = os.path.join(self.dirname, self.filename) - name_ver = '%s-%s' % (self.name, self.version) - info_dir = '%s.dist-info' % name_ver - wrapper = codecs.getreader('utf-8') - with ZipFile(pathname, 'r') as zf: - self.get_wheel_metadata(zf) - # wv = wheel_metadata['Wheel-Version'].split('.', 1) - # file_version = tuple([int(i) for i in wv]) - # if file_version < (1, 1): - # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, - # LEGACY_METADATA_FILENAME] - # else: - # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] - fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] - result = None - for fn in fns: - try: - metadata_filename = posixpath.join(info_dir, fn) - with zf.open(metadata_filename) as bf: - wf = wrapper(bf) - result = Metadata(fileobj=wf) - if result: - break - except KeyError: - pass - if not result: - raise ValueError('Invalid wheel, because metadata is ' - 'missing: looked in %s' % ', '.join(fns)) - return result - - def get_wheel_metadata(self, zf): - name_ver = '%s-%s' % (self.name, self.version) - info_dir = '%s.dist-info' % name_ver - metadata_filename = posixpath.join(info_dir, 'WHEEL') - with zf.open(metadata_filename) as bf: - wf = codecs.getreader('utf-8')(bf) - message = message_from_file(wf) - return dict(message) - - @cached_property - def info(self): - pathname = os.path.join(self.dirname, self.filename) - with ZipFile(pathname, 'r') as zf: - result = self.get_wheel_metadata(zf) - return result - - def process_shebang(self, data): - m = SHEBANG_RE.match(data) - if m: - end = m.end() - shebang, data_after_shebang = data[:end], data[end:] - # Preserve any arguments after the interpreter - if b'pythonw' in shebang.lower(): - shebang_python = SHEBANG_PYTHONW - else: - shebang_python = SHEBANG_PYTHON - m = SHEBANG_DETAIL_RE.match(shebang) - if m: - args = b' ' + m.groups()[-1] - else: - args = b'' - shebang = shebang_python + args - data = shebang + data_after_shebang - else: - cr = data.find(b'\r') - lf = data.find(b'\n') - if cr < 0 or cr > lf: - term = b'\n' - else: - if data[cr:cr + 2] == b'\r\n': - term = b'\r\n' - else: - term = b'\r' - data = SHEBANG_PYTHON + term + data - return data - - def get_hash(self, data, hash_kind=None): - if hash_kind is None: - hash_kind = self.hash_kind - try: - hasher = getattr(hashlib, hash_kind) - except AttributeError: - raise DistlibException('Unsupported hash algorithm: %r' % - hash_kind) - result = hasher(data).digest() - result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') - return hash_kind, result - - def write_record(self, records, record_path, archive_record_path): - records = list(records) # make a copy, as mutated - records.append((archive_record_path, '', '')) - with CSVWriter(record_path) as writer: - for row in records: - writer.writerow(row) - - def write_records(self, info, libdir, archive_paths): - records = [] - distinfo, info_dir = info - # hasher = getattr(hashlib, self.hash_kind) - for ap, p in archive_paths: - with open(p, 'rb') as f: - data = f.read() - digest = '%s=%s' % self.get_hash(data) - size = os.path.getsize(p) - records.append((ap, digest, size)) - - p = os.path.join(distinfo, 'RECORD') - ap = to_posix(os.path.join(info_dir, 'RECORD')) - self.write_record(records, p, ap) - archive_paths.append((ap, p)) - - def build_zip(self, pathname, archive_paths): - with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: - for ap, p in archive_paths: - logger.debug('Wrote %s to %s in wheel', p, ap) - zf.write(p, ap) - - def build(self, paths, tags=None, wheel_version=None): - """ - Build a wheel from files in specified paths, and use any specified tags - when determining the name of the wheel. - """ - if tags is None: - tags = {} - - libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] - if libkey == 'platlib': - is_pure = 'false' - default_pyver = [IMPVER] - default_abi = [ABI] - default_arch = [ARCH] - else: - is_pure = 'true' - default_pyver = [PYVER] - default_abi = ['none'] - default_arch = ['any'] - - self.pyver = tags.get('pyver', default_pyver) - self.abi = tags.get('abi', default_abi) - self.arch = tags.get('arch', default_arch) - - libdir = paths[libkey] - - name_ver = '%s-%s' % (self.name, self.version) - data_dir = '%s.data' % name_ver - info_dir = '%s.dist-info' % name_ver - - archive_paths = [] - - # First, stuff which is not in site-packages - for key in ('data', 'headers', 'scripts'): - if key not in paths: - continue - path = paths[key] - if os.path.isdir(path): - for root, dirs, files in os.walk(path): - for fn in files: - p = fsdecode(os.path.join(root, fn)) - rp = os.path.relpath(p, path) - ap = to_posix(os.path.join(data_dir, key, rp)) - archive_paths.append((ap, p)) - if key == 'scripts' and not p.endswith('.exe'): - with open(p, 'rb') as f: - data = f.read() - data = self.process_shebang(data) - with open(p, 'wb') as f: - f.write(data) - - # Now, stuff which is in site-packages, other than the - # distinfo stuff. - path = libdir - distinfo = None - for root, dirs, files in os.walk(path): - if root == path: - # At the top level only, save distinfo for later - # and skip it for now - for i, dn in enumerate(dirs): - dn = fsdecode(dn) - if dn.endswith('.dist-info'): - distinfo = os.path.join(root, dn) - del dirs[i] - break - assert distinfo, '.dist-info directory expected, not found' - - for fn in files: - # comment out next suite to leave .pyc files in - if fsdecode(fn).endswith(('.pyc', '.pyo')): - continue - p = os.path.join(root, fn) - rp = to_posix(os.path.relpath(p, path)) - archive_paths.append((rp, p)) - - # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. - files = os.listdir(distinfo) - for fn in files: - if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): - p = fsdecode(os.path.join(distinfo, fn)) - ap = to_posix(os.path.join(info_dir, fn)) - archive_paths.append((ap, p)) - - wheel_metadata = [ - 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), - 'Generator: distlib %s' % __version__, - 'Root-Is-Purelib: %s' % is_pure, - ] - for pyver, abi, arch in self.tags: - wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) - p = os.path.join(distinfo, 'WHEEL') - with open(p, 'w') as f: - f.write('\n'.join(wheel_metadata)) - ap = to_posix(os.path.join(info_dir, 'WHEEL')) - archive_paths.append((ap, p)) - - # sort the entries by archive path. Not needed by any spec, but it - # keeps the archive listing and RECORD tidier than they would otherwise - # be. Use the number of path segments to keep directory entries together, - # and keep the dist-info stuff at the end. - def sorter(t): - ap = t[0] - n = ap.count('/') - if '.dist-info' in ap: - n += 10000 - return (n, ap) - - archive_paths = sorted(archive_paths, key=sorter) - - # Now, at last, RECORD. - # Paths in here are archive paths - nothing else makes sense. - self.write_records((distinfo, info_dir), libdir, archive_paths) - # Now, ready to build the zip file - pathname = os.path.join(self.dirname, self.filename) - self.build_zip(pathname, archive_paths) - return pathname - - def skip_entry(self, arcname): - """ - Determine whether an archive entry should be skipped when verifying - or installing. - """ - # The signature file won't be in RECORD, - # and we don't currently don't do anything with it - # We also skip directories, as they won't be in RECORD - # either. See: - # - # https://github.com/pypa/wheel/issues/294 - # https://github.com/pypa/wheel/issues/287 - # https://github.com/pypa/wheel/pull/289 - # - return arcname.endswith(('/', '/RECORD.jws')) - - def install(self, paths, maker, **kwargs): - """ - Install a wheel to the specified paths. If kwarg ``warner`` is - specified, it should be a callable, which will be called with two - tuples indicating the wheel version of this software and the wheel - version in the file, if there is a discrepancy in the versions. - This can be used to issue any warnings to raise any exceptions. - If kwarg ``lib_only`` is True, only the purelib/platlib files are - installed, and the headers, scripts, data and dist-info metadata are - not written. If kwarg ``bytecode_hashed_invalidation`` is True, written - bytecode will try to use file-hash based invalidation (PEP-552) on - supported interpreter versions (CPython 2.7+). - - The return value is a :class:`InstalledDistribution` instance unless - ``options.lib_only`` is True, in which case the return value is ``None``. - """ - - dry_run = maker.dry_run - warner = kwargs.get('warner') - lib_only = kwargs.get('lib_only', False) - bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', - False) - - pathname = os.path.join(self.dirname, self.filename) - name_ver = '%s-%s' % (self.name, self.version) - data_dir = '%s.data' % name_ver - info_dir = '%s.dist-info' % name_ver - - metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) - wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') - record_name = posixpath.join(info_dir, 'RECORD') - - wrapper = codecs.getreader('utf-8') - - with ZipFile(pathname, 'r') as zf: - with zf.open(wheel_metadata_name) as bwf: - wf = wrapper(bwf) - message = message_from_file(wf) - wv = message['Wheel-Version'].split('.', 1) - file_version = tuple([int(i) for i in wv]) - if (file_version != self.wheel_version) and warner: - warner(self.wheel_version, file_version) - - if message['Root-Is-Purelib'] == 'true': - libdir = paths['purelib'] - else: - libdir = paths['platlib'] - - records = {} - with zf.open(record_name) as bf: - with CSVReader(stream=bf) as reader: - for row in reader: - p = row[0] - records[p] = row - - data_pfx = posixpath.join(data_dir, '') - info_pfx = posixpath.join(info_dir, '') - script_pfx = posixpath.join(data_dir, 'scripts', '') - - # make a new instance rather than a copy of maker's, - # as we mutate it - fileop = FileOperator(dry_run=dry_run) - fileop.record = True # so we can rollback if needed - - bc = not sys.dont_write_bytecode # Double negatives. Lovely! - - outfiles = [] # for RECORD writing - - # for script copying/shebang processing - workdir = tempfile.mkdtemp() - # set target dir later - # we default add_launchers to False, as the - # Python Launcher should be used instead - maker.source_dir = workdir - maker.target_dir = None - try: - for zinfo in zf.infolist(): - arcname = zinfo.filename - if isinstance(arcname, text_type): - u_arcname = arcname - else: - u_arcname = arcname.decode('utf-8') - if self.skip_entry(u_arcname): - continue - row = records[u_arcname] - if row[2] and str(zinfo.file_size) != row[2]: - raise DistlibException('size mismatch for ' - '%s' % u_arcname) - if row[1]: - kind, value = row[1].split('=', 1) - with zf.open(arcname) as bf: - data = bf.read() - _, digest = self.get_hash(data, kind) - if digest != value: - raise DistlibException('digest mismatch for ' - '%s' % arcname) - - if lib_only and u_arcname.startswith((info_pfx, data_pfx)): - logger.debug('lib_only: skipping %s', u_arcname) - continue - is_script = (u_arcname.startswith(script_pfx) - and not u_arcname.endswith('.exe')) - - if u_arcname.startswith(data_pfx): - _, where, rp = u_arcname.split('/', 2) - outfile = os.path.join(paths[where], convert_path(rp)) - else: - # meant for site-packages. - if u_arcname in (wheel_metadata_name, record_name): - continue - outfile = os.path.join(libdir, convert_path(u_arcname)) - if not is_script: - with zf.open(arcname) as bf: - fileop.copy_stream(bf, outfile) - # Issue #147: permission bits aren't preserved. Using - # zf.extract(zinfo, libdir) should have worked, but didn't, - # see https://www.thetopsites.net/article/53834422.shtml - # So ... manually preserve permission bits as given in zinfo - if os.name == 'posix': - # just set the normal permission bits - os.chmod(outfile, - (zinfo.external_attr >> 16) & 0x1FF) - outfiles.append(outfile) - # Double check the digest of the written file - if not dry_run and row[1]: - with open(outfile, 'rb') as bf: - data = bf.read() - _, newdigest = self.get_hash(data, kind) - if newdigest != digest: - raise DistlibException('digest mismatch ' - 'on write for ' - '%s' % outfile) - if bc and outfile.endswith('.py'): - try: - pyc = fileop.byte_compile( - outfile, - hashed_invalidation=bc_hashed_invalidation) - outfiles.append(pyc) - except Exception: - # Don't give up if byte-compilation fails, - # but log it and perhaps warn the user - logger.warning('Byte-compilation failed', - exc_info=True) - else: - fn = os.path.basename(convert_path(arcname)) - workname = os.path.join(workdir, fn) - with zf.open(arcname) as bf: - fileop.copy_stream(bf, workname) - - dn, fn = os.path.split(outfile) - maker.target_dir = dn - filenames = maker.make(fn) - fileop.set_executable_mode(filenames) - outfiles.extend(filenames) - - if lib_only: - logger.debug('lib_only: returning None') - dist = None - else: - # Generate scripts - - # Try to get pydist.json so we can see if there are - # any commands to generate. If this fails (e.g. because - # of a legacy wheel), log a warning but don't give up. - commands = None - file_version = self.info['Wheel-Version'] - if file_version == '1.0': - # Use legacy info - ep = posixpath.join(info_dir, 'entry_points.txt') - try: - with zf.open(ep) as bwf: - epdata = read_exports(bwf) - commands = {} - for key in ('console', 'gui'): - k = '%s_scripts' % key - if k in epdata: - commands['wrap_%s' % key] = d = {} - for v in epdata[k].values(): - s = '%s:%s' % (v.prefix, v.suffix) - if v.flags: - s += ' [%s]' % ','.join(v.flags) - d[v.name] = s - except Exception: - logger.warning('Unable to read legacy script ' - 'metadata, so cannot generate ' - 'scripts') - else: - try: - with zf.open(metadata_name) as bwf: - wf = wrapper(bwf) - commands = json.load(wf).get('extensions') - if commands: - commands = commands.get('python.commands') - except Exception: - logger.warning('Unable to read JSON metadata, so ' - 'cannot generate scripts') - if commands: - console_scripts = commands.get('wrap_console', {}) - gui_scripts = commands.get('wrap_gui', {}) - if console_scripts or gui_scripts: - script_dir = paths.get('scripts', '') - if not os.path.isdir(script_dir): - raise ValueError('Valid script path not ' - 'specified') - maker.target_dir = script_dir - for k, v in console_scripts.items(): - script = '%s = %s' % (k, v) - filenames = maker.make(script) - fileop.set_executable_mode(filenames) - - if gui_scripts: - options = {'gui': True} - for k, v in gui_scripts.items(): - script = '%s = %s' % (k, v) - filenames = maker.make(script, options) - fileop.set_executable_mode(filenames) - - p = os.path.join(libdir, info_dir) - dist = InstalledDistribution(p) - - # Write SHARED - paths = dict(paths) # don't change passed in dict - del paths['purelib'] - del paths['platlib'] - paths['lib'] = libdir - p = dist.write_shared_locations(paths, dry_run) - if p: - outfiles.append(p) - - # Write RECORD - dist.write_installed_files(outfiles, paths['prefix'], - dry_run) - return dist - except Exception: # pragma: no cover - logger.exception('installation failed.') - fileop.rollback() - raise - finally: - shutil.rmtree(workdir) - - def _get_dylib_cache(self): - global cache - if cache is None: - # Use native string to avoid issues on 2.x: see Python #20140. - base = os.path.join(get_cache_base(), str('dylib-cache'), - '%s.%s' % sys.version_info[:2]) - cache = Cache(base) - return cache - - def _get_extensions(self): - pathname = os.path.join(self.dirname, self.filename) - name_ver = '%s-%s' % (self.name, self.version) - info_dir = '%s.dist-info' % name_ver - arcname = posixpath.join(info_dir, 'EXTENSIONS') - wrapper = codecs.getreader('utf-8') - result = [] - with ZipFile(pathname, 'r') as zf: - try: - with zf.open(arcname) as bf: - wf = wrapper(bf) - extensions = json.load(wf) - cache = self._get_dylib_cache() - prefix = cache.prefix_to_dir(pathname) - cache_base = os.path.join(cache.base, prefix) - if not os.path.isdir(cache_base): - os.makedirs(cache_base) - for name, relpath in extensions.items(): - dest = os.path.join(cache_base, convert_path(relpath)) - if not os.path.exists(dest): - extract = True - else: - file_time = os.stat(dest).st_mtime - file_time = datetime.datetime.fromtimestamp( - file_time) - info = zf.getinfo(relpath) - wheel_time = datetime.datetime(*info.date_time) - extract = wheel_time > file_time - if extract: - zf.extract(relpath, cache_base) - result.append((name, dest)) - except KeyError: - pass - return result - - def is_compatible(self): - """ - Determine if a wheel is compatible with the running system. - """ - return is_compatible(self) - - def is_mountable(self): - """ - Determine if a wheel is asserted as mountable by its metadata. - """ - return True # for now - metadata details TBD - - def mount(self, append=False): - pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) - if not self.is_compatible(): - msg = 'Wheel %s not compatible with this Python.' % pathname - raise DistlibException(msg) - if not self.is_mountable(): - msg = 'Wheel %s is marked as not mountable.' % pathname - raise DistlibException(msg) - if pathname in sys.path: - logger.debug('%s already in path', pathname) - else: - if append: - sys.path.append(pathname) - else: - sys.path.insert(0, pathname) - extensions = self._get_extensions() - if extensions: - if _hook not in sys.meta_path: - sys.meta_path.append(_hook) - _hook.add(pathname, extensions) - - def unmount(self): - pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) - if pathname not in sys.path: - logger.debug('%s not in path', pathname) - else: - sys.path.remove(pathname) - if pathname in _hook.impure_wheels: - _hook.remove(pathname) - if not _hook.impure_wheels: - if _hook in sys.meta_path: - sys.meta_path.remove(_hook) - - def verify(self): - pathname = os.path.join(self.dirname, self.filename) - name_ver = '%s-%s' % (self.name, self.version) - # data_dir = '%s.data' % name_ver - info_dir = '%s.dist-info' % name_ver - - # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) - wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') - record_name = posixpath.join(info_dir, 'RECORD') - - wrapper = codecs.getreader('utf-8') - - with ZipFile(pathname, 'r') as zf: - with zf.open(wheel_metadata_name) as bwf: - wf = wrapper(bwf) - message_from_file(wf) - # wv = message['Wheel-Version'].split('.', 1) - # file_version = tuple([int(i) for i in wv]) - # TODO version verification - - records = {} - with zf.open(record_name) as bf: - with CSVReader(stream=bf) as reader: - for row in reader: - p = row[0] - records[p] = row - - for zinfo in zf.infolist(): - arcname = zinfo.filename - if isinstance(arcname, text_type): - u_arcname = arcname - else: - u_arcname = arcname.decode('utf-8') - # See issue #115: some wheels have .. in their entries, but - # in the filename ... e.g. __main__..py ! So the check is - # updated to look for .. in the directory portions - p = u_arcname.split('/') - if '..' in p: - raise DistlibException('invalid entry in ' - 'wheel: %r' % u_arcname) - - if self.skip_entry(u_arcname): - continue - row = records[u_arcname] - if row[2] and str(zinfo.file_size) != row[2]: - raise DistlibException('size mismatch for ' - '%s' % u_arcname) - if row[1]: - kind, value = row[1].split('=', 1) - with zf.open(arcname) as bf: - data = bf.read() - _, digest = self.get_hash(data, kind) - if digest != value: - raise DistlibException('digest mismatch for ' - '%s' % arcname) - - def update(self, modifier, dest_dir=None, **kwargs): - """ - Update the contents of a wheel in a generic way. The modifier should - be a callable which expects a dictionary argument: its keys are - archive-entry paths, and its values are absolute filesystem paths - where the contents the corresponding archive entries can be found. The - modifier is free to change the contents of the files pointed to, add - new entries and remove entries, before returning. This method will - extract the entire contents of the wheel to a temporary location, call - the modifier, and then use the passed (and possibly updated) - dictionary to write a new wheel. If ``dest_dir`` is specified, the new - wheel is written there -- otherwise, the original wheel is overwritten. - - The modifier should return True if it updated the wheel, else False. - This method returns the same value the modifier returns. - """ - - def get_version(path_map, info_dir): - version = path = None - key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) - if key not in path_map: - key = '%s/PKG-INFO' % info_dir - if key in path_map: - path = path_map[key] - version = Metadata(path=path).version - return version, path - - def update_version(version, path): - updated = None - try: - NormalizedVersion(version) - i = version.find('-') - if i < 0: - updated = '%s+1' % version - else: - parts = [int(s) for s in version[i + 1:].split('.')] - parts[-1] += 1 - updated = '%s+%s' % (version[:i], '.'.join( - str(i) for i in parts)) - except UnsupportedVersionError: - logger.debug( - 'Cannot update non-compliant (PEP-440) ' - 'version %r', version) - if updated: - md = Metadata(path=path) - md.version = updated - legacy = path.endswith(LEGACY_METADATA_FILENAME) - md.write(path=path, legacy=legacy) - logger.debug('Version updated from %r to %r', version, updated) - - pathname = os.path.join(self.dirname, self.filename) - name_ver = '%s-%s' % (self.name, self.version) - info_dir = '%s.dist-info' % name_ver - record_name = posixpath.join(info_dir, 'RECORD') - with tempdir() as workdir: - with ZipFile(pathname, 'r') as zf: - path_map = {} - for zinfo in zf.infolist(): - arcname = zinfo.filename - if isinstance(arcname, text_type): - u_arcname = arcname - else: - u_arcname = arcname.decode('utf-8') - if u_arcname == record_name: - continue - if '..' in u_arcname: - raise DistlibException('invalid entry in ' - 'wheel: %r' % u_arcname) - zf.extract(zinfo, workdir) - path = os.path.join(workdir, convert_path(u_arcname)) - path_map[u_arcname] = path - - # Remember the version. - original_version, _ = get_version(path_map, info_dir) - # Files extracted. Call the modifier. - modified = modifier(path_map, **kwargs) - if modified: - # Something changed - need to build a new wheel. - current_version, path = get_version(path_map, info_dir) - if current_version and (current_version == original_version): - # Add or update local version to signify changes. - update_version(current_version, path) - # Decide where the new wheel goes. - if dest_dir is None: - fd, newpath = tempfile.mkstemp(suffix='.whl', - prefix='wheel-update-', - dir=workdir) - os.close(fd) - else: - if not os.path.isdir(dest_dir): - raise DistlibException('Not a directory: %r' % - dest_dir) - newpath = os.path.join(dest_dir, self.filename) - archive_paths = list(path_map.items()) - distinfo = os.path.join(workdir, info_dir) - info = distinfo, info_dir - self.write_records(info, workdir, archive_paths) - self.build_zip(newpath, archive_paths) - if dest_dir is None: - shutil.copyfile(newpath, pathname) - return modified - - -def _get_glibc_version(): - import platform - ver = platform.libc_ver() - result = [] - if ver[0] == 'glibc': - for s in ver[1].split('.'): - result.append(int(s) if s.isdigit() else 0) - result = tuple(result) - return result - - -def compatible_tags(): - """ - Return (pyver, abi, arch) tuples compatible with this Python. - """ - versions = [VER_SUFFIX] - major = VER_SUFFIX[0] - for minor in range(sys.version_info[1] - 1, -1, -1): - versions.append(''.join([major, str(minor)])) - - abis = [] - for suffix in _get_suffixes(): - if suffix.startswith('.abi'): - abis.append(suffix.split('.', 2)[1]) - abis.sort() - if ABI != 'none': - abis.insert(0, ABI) - abis.append('none') - result = [] - - arches = [ARCH] - if sys.platform == 'darwin': - m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) - if m: - name, major, minor, arch = m.groups() - minor = int(minor) - matches = [arch] - if arch in ('i386', 'ppc'): - matches.append('fat') - if arch in ('i386', 'ppc', 'x86_64'): - matches.append('fat3') - if arch in ('ppc64', 'x86_64'): - matches.append('fat64') - if arch in ('i386', 'x86_64'): - matches.append('intel') - if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): - matches.append('universal') - while minor >= 0: - for match in matches: - s = '%s_%s_%s_%s' % (name, major, minor, match) - if s != ARCH: # already there - arches.append(s) - minor -= 1 - - # Most specific - our Python version, ABI and arch - for abi in abis: - for arch in arches: - result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) - # manylinux - if abi != 'none' and sys.platform.startswith('linux'): - arch = arch.replace('linux_', '') - parts = _get_glibc_version() - if len(parts) == 2: - if parts >= (2, 5): - result.append((''.join((IMP_PREFIX, versions[0])), abi, - 'manylinux1_%s' % arch)) - if parts >= (2, 12): - result.append((''.join((IMP_PREFIX, versions[0])), abi, - 'manylinux2010_%s' % arch)) - if parts >= (2, 17): - result.append((''.join((IMP_PREFIX, versions[0])), abi, - 'manylinux2014_%s' % arch)) - result.append( - (''.join((IMP_PREFIX, versions[0])), abi, - 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) - - # where no ABI / arch dependency, but IMP_PREFIX dependency - for i, version in enumerate(versions): - result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) - if i == 0: - result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) - - # no IMP_PREFIX, ABI or arch dependency - for i, version in enumerate(versions): - result.append((''.join(('py', version)), 'none', 'any')) - if i == 0: - result.append((''.join(('py', version[0])), 'none', 'any')) - - return set(result) - - -COMPATIBLE_TAGS = compatible_tags() - -del compatible_tags - - -def is_compatible(wheel, tags=None): - if not isinstance(wheel, Wheel): - wheel = Wheel(wheel) # assume it's a filename - result = False - if tags is None: - tags = COMPATIBLE_TAGS - for ver, abi, arch in tags: - if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: - result = True - break - return result diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py deleted file mode 100644 index 7686fe8..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py +++ /dev/null @@ -1,54 +0,0 @@ -from .distro import ( - NORMALIZED_DISTRO_ID, - NORMALIZED_LSB_ID, - NORMALIZED_OS_ID, - LinuxDistribution, - __version__, - build_number, - codename, - distro_release_attr, - distro_release_info, - id, - info, - like, - linux_distribution, - lsb_release_attr, - lsb_release_info, - major_version, - minor_version, - name, - os_release_attr, - os_release_info, - uname_attr, - uname_info, - version, - version_parts, -) - -__all__ = [ - "NORMALIZED_DISTRO_ID", - "NORMALIZED_LSB_ID", - "NORMALIZED_OS_ID", - "LinuxDistribution", - "build_number", - "codename", - "distro_release_attr", - "distro_release_info", - "id", - "info", - "like", - "linux_distribution", - "lsb_release_attr", - "lsb_release_info", - "major_version", - "minor_version", - "name", - "os_release_attr", - "os_release_info", - "uname_attr", - "uname_info", - "version", - "version_parts", -] - -__version__ = __version__ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py deleted file mode 100644 index 0c01d5b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py +++ /dev/null @@ -1,4 +0,0 @@ -from .distro import main - -if __name__ == "__main__": - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3b8e850..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index cd22843..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc deleted file mode 100644 index ff0d703..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py deleted file mode 100644 index 89e1868..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py +++ /dev/null @@ -1,1399 +0,0 @@ -#!/usr/bin/env python -# Copyright 2015,2016,2017 Nir Cohen -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -""" -The ``distro`` package (``distro`` stands for Linux Distribution) provides -information about the Linux distribution it runs on, such as a reliable -machine-readable distro ID, or version information. - -It is the recommended replacement for Python's original -:py:func:`platform.linux_distribution` function, but it provides much more -functionality. An alternative implementation became necessary because Python -3.5 deprecated this function, and Python 3.8 removed it altogether. Its -predecessor function :py:func:`platform.dist` was already deprecated since -Python 2.6 and removed in Python 3.8. Still, there are many cases in which -access to OS distribution information is needed. See `Python issue 1322 -`_ for more information. -""" - -import argparse -import json -import logging -import os -import re -import shlex -import subprocess -import sys -import warnings -from typing import ( - Any, - Callable, - Dict, - Iterable, - Optional, - Sequence, - TextIO, - Tuple, - Type, -) - -try: - from typing import TypedDict -except ImportError: - # Python 3.7 - TypedDict = dict - -__version__ = "1.8.0" - - -class VersionDict(TypedDict): - major: str - minor: str - build_number: str - - -class InfoDict(TypedDict): - id: str - version: str - version_parts: VersionDict - like: str - codename: str - - -_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") -_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") -_OS_RELEASE_BASENAME = "os-release" - -#: Translation table for normalizing the "ID" attribute defined in os-release -#: files, for use by the :func:`distro.id` method. -#: -#: * Key: Value as defined in the os-release file, translated to lower case, -#: with blanks translated to underscores. -#: -#: * Value: Normalized value. -NORMALIZED_OS_ID = { - "ol": "oracle", # Oracle Linux - "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap -} - -#: Translation table for normalizing the "Distributor ID" attribute returned by -#: the lsb_release command, for use by the :func:`distro.id` method. -#: -#: * Key: Value as returned by the lsb_release command, translated to lower -#: case, with blanks translated to underscores. -#: -#: * Value: Normalized value. -NORMALIZED_LSB_ID = { - "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 - "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 - "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation - "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server - "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode -} - -#: Translation table for normalizing the distro ID derived from the file name -#: of distro release files, for use by the :func:`distro.id` method. -#: -#: * Key: Value as derived from the file name of a distro release file, -#: translated to lower case, with blanks translated to underscores. -#: -#: * Value: Normalized value. -NORMALIZED_DISTRO_ID = { - "redhat": "rhel", # RHEL 6.x, 7.x -} - -# Pattern for content of distro release file (reversed) -_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( - r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" -) - -# Pattern for base file name of distro release file -_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") - -# Base file names to be looked up for if _UNIXCONFDIR is not readable. -_DISTRO_RELEASE_BASENAMES = [ - "SuSE-release", - "arch-release", - "base-release", - "centos-release", - "fedora-release", - "gentoo-release", - "mageia-release", - "mandrake-release", - "mandriva-release", - "mandrivalinux-release", - "manjaro-release", - "oracle-release", - "redhat-release", - "rocky-release", - "sl-release", - "slackware-version", -] - -# Base file names to be ignored when searching for distro release file -_DISTRO_RELEASE_IGNORE_BASENAMES = ( - "debian_version", - "lsb-release", - "oem-release", - _OS_RELEASE_BASENAME, - "system-release", - "plesk-release", - "iredmail-release", -) - - -def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: - """ - .. deprecated:: 1.6.0 - - :func:`distro.linux_distribution()` is deprecated. It should only be - used as a compatibility shim with Python's - :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, - :func:`distro.version` and :func:`distro.name` instead. - - Return information about the current OS distribution as a tuple - ``(id_name, version, codename)`` with items as follows: - - * ``id_name``: If *full_distribution_name* is false, the result of - :func:`distro.id`. Otherwise, the result of :func:`distro.name`. - - * ``version``: The result of :func:`distro.version`. - - * ``codename``: The extra item (usually in parentheses) after the - os-release version number, or the result of :func:`distro.codename`. - - The interface of this function is compatible with the original - :py:func:`platform.linux_distribution` function, supporting a subset of - its parameters. - - The data it returns may not exactly be the same, because it uses more data - sources than the original function, and that may lead to different data if - the OS distribution is not consistent across multiple data sources it - provides (there are indeed such distributions ...). - - Another reason for differences is the fact that the :func:`distro.id` - method normalizes the distro ID string to a reliable machine-readable value - for a number of popular OS distributions. - """ - warnings.warn( - "distro.linux_distribution() is deprecated. It should only be used as a " - "compatibility shim with Python's platform.linux_distribution(). Please use " - "distro.id(), distro.version() and distro.name() instead.", - DeprecationWarning, - stacklevel=2, - ) - return _distro.linux_distribution(full_distribution_name) - - -def id() -> str: - """ - Return the distro ID of the current distribution, as a - machine-readable string. - - For a number of OS distributions, the returned distro ID value is - *reliable*, in the sense that it is documented and that it does not change - across releases of the distribution. - - This package maintains the following reliable distro ID values: - - ============== ========================================= - Distro ID Distribution - ============== ========================================= - "ubuntu" Ubuntu - "debian" Debian - "rhel" RedHat Enterprise Linux - "centos" CentOS - "fedora" Fedora - "sles" SUSE Linux Enterprise Server - "opensuse" openSUSE - "amzn" Amazon Linux - "arch" Arch Linux - "buildroot" Buildroot - "cloudlinux" CloudLinux OS - "exherbo" Exherbo Linux - "gentoo" GenToo Linux - "ibm_powerkvm" IBM PowerKVM - "kvmibm" KVM for IBM z Systems - "linuxmint" Linux Mint - "mageia" Mageia - "mandriva" Mandriva Linux - "parallels" Parallels - "pidora" Pidora - "raspbian" Raspbian - "oracle" Oracle Linux (and Oracle Enterprise Linux) - "scientific" Scientific Linux - "slackware" Slackware - "xenserver" XenServer - "openbsd" OpenBSD - "netbsd" NetBSD - "freebsd" FreeBSD - "midnightbsd" MidnightBSD - "rocky" Rocky Linux - "aix" AIX - "guix" Guix System - ============== ========================================= - - If you have a need to get distros for reliable IDs added into this set, - or if you find that the :func:`distro.id` function returns a different - distro ID for one of the listed distros, please create an issue in the - `distro issue tracker`_. - - **Lookup hierarchy and transformations:** - - First, the ID is obtained from the following sources, in the specified - order. The first available and non-empty value is used: - - * the value of the "ID" attribute of the os-release file, - - * the value of the "Distributor ID" attribute returned by the lsb_release - command, - - * the first part of the file name of the distro release file, - - The so determined ID value then passes the following transformations, - before it is returned by this method: - - * it is translated to lower case, - - * blanks (which should not be there anyway) are translated to underscores, - - * a normalization of the ID is performed, based upon - `normalization tables`_. The purpose of this normalization is to ensure - that the ID is as reliable as possible, even across incompatible changes - in the OS distributions. A common reason for an incompatible change is - the addition of an os-release file, or the addition of the lsb_release - command, with ID values that differ from what was previously determined - from the distro release file name. - """ - return _distro.id() - - -def name(pretty: bool = False) -> str: - """ - Return the name of the current OS distribution, as a human-readable - string. - - If *pretty* is false, the name is returned without version or codename. - (e.g. "CentOS Linux") - - If *pretty* is true, the version and codename are appended. - (e.g. "CentOS Linux 7.1.1503 (Core)") - - **Lookup hierarchy:** - - The name is obtained from the following sources, in the specified order. - The first available and non-empty value is used: - - * If *pretty* is false: - - - the value of the "NAME" attribute of the os-release file, - - - the value of the "Distributor ID" attribute returned by the lsb_release - command, - - - the value of the "" field of the distro release file. - - * If *pretty* is true: - - - the value of the "PRETTY_NAME" attribute of the os-release file, - - - the value of the "Description" attribute returned by the lsb_release - command, - - - the value of the "" field of the distro release file, appended - with the value of the pretty version ("" and "" - fields) of the distro release file, if available. - """ - return _distro.name(pretty) - - -def version(pretty: bool = False, best: bool = False) -> str: - """ - Return the version of the current OS distribution, as a human-readable - string. - - If *pretty* is false, the version is returned without codename (e.g. - "7.0"). - - If *pretty* is true, the codename in parenthesis is appended, if the - codename is non-empty (e.g. "7.0 (Maipo)"). - - Some distributions provide version numbers with different precisions in - the different sources of distribution information. Examining the different - sources in a fixed priority order does not always yield the most precise - version (e.g. for Debian 8.2, or CentOS 7.1). - - Some other distributions may not provide this kind of information. In these - cases, an empty string would be returned. This behavior can be observed - with rolling releases distributions (e.g. Arch Linux). - - The *best* parameter can be used to control the approach for the returned - version: - - If *best* is false, the first non-empty version number in priority order of - the examined sources is returned. - - If *best* is true, the most precise version number out of all examined - sources is returned. - - **Lookup hierarchy:** - - In all cases, the version number is obtained from the following sources. - If *best* is false, this order represents the priority order: - - * the value of the "VERSION_ID" attribute of the os-release file, - * the value of the "Release" attribute returned by the lsb_release - command, - * the version number parsed from the "" field of the first line - of the distro release file, - * the version number parsed from the "PRETTY_NAME" attribute of the - os-release file, if it follows the format of the distro release files. - * the version number parsed from the "Description" attribute returned by - the lsb_release command, if it follows the format of the distro release - files. - """ - return _distro.version(pretty, best) - - -def version_parts(best: bool = False) -> Tuple[str, str, str]: - """ - Return the version of the current OS distribution as a tuple - ``(major, minor, build_number)`` with items as follows: - - * ``major``: The result of :func:`distro.major_version`. - - * ``minor``: The result of :func:`distro.minor_version`. - - * ``build_number``: The result of :func:`distro.build_number`. - - For a description of the *best* parameter, see the :func:`distro.version` - method. - """ - return _distro.version_parts(best) - - -def major_version(best: bool = False) -> str: - """ - Return the major version of the current OS distribution, as a string, - if provided. - Otherwise, the empty string is returned. The major version is the first - part of the dot-separated version string. - - For a description of the *best* parameter, see the :func:`distro.version` - method. - """ - return _distro.major_version(best) - - -def minor_version(best: bool = False) -> str: - """ - Return the minor version of the current OS distribution, as a string, - if provided. - Otherwise, the empty string is returned. The minor version is the second - part of the dot-separated version string. - - For a description of the *best* parameter, see the :func:`distro.version` - method. - """ - return _distro.minor_version(best) - - -def build_number(best: bool = False) -> str: - """ - Return the build number of the current OS distribution, as a string, - if provided. - Otherwise, the empty string is returned. The build number is the third part - of the dot-separated version string. - - For a description of the *best* parameter, see the :func:`distro.version` - method. - """ - return _distro.build_number(best) - - -def like() -> str: - """ - Return a space-separated list of distro IDs of distributions that are - closely related to the current OS distribution in regards to packaging - and programming interfaces, for example distributions the current - distribution is a derivative from. - - **Lookup hierarchy:** - - This information item is only provided by the os-release file. - For details, see the description of the "ID_LIKE" attribute in the - `os-release man page - `_. - """ - return _distro.like() - - -def codename() -> str: - """ - Return the codename for the release of the current OS distribution, - as a string. - - If the distribution does not have a codename, an empty string is returned. - - Note that the returned codename is not always really a codename. For - example, openSUSE returns "x86_64". This function does not handle such - cases in any special way and just returns the string it finds, if any. - - **Lookup hierarchy:** - - * the codename within the "VERSION" attribute of the os-release file, if - provided, - - * the value of the "Codename" attribute returned by the lsb_release - command, - - * the value of the "" field of the distro release file. - """ - return _distro.codename() - - -def info(pretty: bool = False, best: bool = False) -> InfoDict: - """ - Return certain machine-readable information items about the current OS - distribution in a dictionary, as shown in the following example: - - .. sourcecode:: python - - { - 'id': 'rhel', - 'version': '7.0', - 'version_parts': { - 'major': '7', - 'minor': '0', - 'build_number': '' - }, - 'like': 'fedora', - 'codename': 'Maipo' - } - - The dictionary structure and keys are always the same, regardless of which - information items are available in the underlying data sources. The values - for the various keys are as follows: - - * ``id``: The result of :func:`distro.id`. - - * ``version``: The result of :func:`distro.version`. - - * ``version_parts -> major``: The result of :func:`distro.major_version`. - - * ``version_parts -> minor``: The result of :func:`distro.minor_version`. - - * ``version_parts -> build_number``: The result of - :func:`distro.build_number`. - - * ``like``: The result of :func:`distro.like`. - - * ``codename``: The result of :func:`distro.codename`. - - For a description of the *pretty* and *best* parameters, see the - :func:`distro.version` method. - """ - return _distro.info(pretty, best) - - -def os_release_info() -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information items - from the os-release file data source of the current OS distribution. - - See `os-release file`_ for details about these information items. - """ - return _distro.os_release_info() - - -def lsb_release_info() -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information items - from the lsb_release command data source of the current OS distribution. - - See `lsb_release command output`_ for details about these information - items. - """ - return _distro.lsb_release_info() - - -def distro_release_info() -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information items - from the distro release file data source of the current OS distribution. - - See `distro release file`_ for details about these information items. - """ - return _distro.distro_release_info() - - -def uname_info() -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information items - from the distro release file data source of the current OS distribution. - """ - return _distro.uname_info() - - -def os_release_attr(attribute: str) -> str: - """ - Return a single named information item from the os-release file data source - of the current OS distribution. - - Parameters: - - * ``attribute`` (string): Key of the information item. - - Returns: - - * (string): Value of the information item, if the item exists. - The empty string, if the item does not exist. - - See `os-release file`_ for details about these information items. - """ - return _distro.os_release_attr(attribute) - - -def lsb_release_attr(attribute: str) -> str: - """ - Return a single named information item from the lsb_release command output - data source of the current OS distribution. - - Parameters: - - * ``attribute`` (string): Key of the information item. - - Returns: - - * (string): Value of the information item, if the item exists. - The empty string, if the item does not exist. - - See `lsb_release command output`_ for details about these information - items. - """ - return _distro.lsb_release_attr(attribute) - - -def distro_release_attr(attribute: str) -> str: - """ - Return a single named information item from the distro release file - data source of the current OS distribution. - - Parameters: - - * ``attribute`` (string): Key of the information item. - - Returns: - - * (string): Value of the information item, if the item exists. - The empty string, if the item does not exist. - - See `distro release file`_ for details about these information items. - """ - return _distro.distro_release_attr(attribute) - - -def uname_attr(attribute: str) -> str: - """ - Return a single named information item from the distro release file - data source of the current OS distribution. - - Parameters: - - * ``attribute`` (string): Key of the information item. - - Returns: - - * (string): Value of the information item, if the item exists. - The empty string, if the item does not exist. - """ - return _distro.uname_attr(attribute) - - -try: - from functools import cached_property -except ImportError: - # Python < 3.8 - class cached_property: # type: ignore - """A version of @property which caches the value. On access, it calls the - underlying function and sets the value in `__dict__` so future accesses - will not re-call the property. - """ - - def __init__(self, f: Callable[[Any], Any]) -> None: - self._fname = f.__name__ - self._f = f - - def __get__(self, obj: Any, owner: Type[Any]) -> Any: - assert obj is not None, f"call {self._fname} on an instance" - ret = obj.__dict__[self._fname] = self._f(obj) - return ret - - -class LinuxDistribution: - """ - Provides information about a OS distribution. - - This package creates a private module-global instance of this class with - default initialization arguments, that is used by the - `consolidated accessor functions`_ and `single source accessor functions`_. - By using default initialization arguments, that module-global instance - returns data about the current OS distribution (i.e. the distro this - package runs on). - - Normally, it is not necessary to create additional instances of this class. - However, in situations where control is needed over the exact data sources - that are used, instances of this class can be created with a specific - distro release file, or a specific os-release file, or without invoking the - lsb_release command. - """ - - def __init__( - self, - include_lsb: Optional[bool] = None, - os_release_file: str = "", - distro_release_file: str = "", - include_uname: Optional[bool] = None, - root_dir: Optional[str] = None, - include_oslevel: Optional[bool] = None, - ) -> None: - """ - The initialization method of this class gathers information from the - available data sources, and stores that in private instance attributes. - Subsequent access to the information items uses these private instance - attributes, so that the data sources are read only once. - - Parameters: - - * ``include_lsb`` (bool): Controls whether the - `lsb_release command output`_ is included as a data source. - - If the lsb_release command is not available in the program execution - path, the data source for the lsb_release command will be empty. - - * ``os_release_file`` (string): The path name of the - `os-release file`_ that is to be used as a data source. - - An empty string (the default) will cause the default path name to - be used (see `os-release file`_ for details). - - If the specified or defaulted os-release file does not exist, the - data source for the os-release file will be empty. - - * ``distro_release_file`` (string): The path name of the - `distro release file`_ that is to be used as a data source. - - An empty string (the default) will cause a default search algorithm - to be used (see `distro release file`_ for details). - - If the specified distro release file does not exist, or if no default - distro release file can be found, the data source for the distro - release file will be empty. - - * ``include_uname`` (bool): Controls whether uname command output is - included as a data source. If the uname command is not available in - the program execution path the data source for the uname command will - be empty. - - * ``root_dir`` (string): The absolute path to the root directory to use - to find distro-related information files. Note that ``include_*`` - parameters must not be enabled in combination with ``root_dir``. - - * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command - output is included as a data source. If the oslevel command is not - available in the program execution path the data source will be - empty. - - Public instance attributes: - - * ``os_release_file`` (string): The path name of the - `os-release file`_ that is actually used as a data source. The - empty string if no distro release file is used as a data source. - - * ``distro_release_file`` (string): The path name of the - `distro release file`_ that is actually used as a data source. The - empty string if no distro release file is used as a data source. - - * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. - This controls whether the lsb information will be loaded. - - * ``include_uname`` (bool): The result of the ``include_uname`` - parameter. This controls whether the uname information will - be loaded. - - * ``include_oslevel`` (bool): The result of the ``include_oslevel`` - parameter. This controls whether (AIX) oslevel information will be - loaded. - - * ``root_dir`` (string): The result of the ``root_dir`` parameter. - The absolute path to the root directory to use to find distro-related - information files. - - Raises: - - * :py:exc:`ValueError`: Initialization parameters combination is not - supported. - - * :py:exc:`OSError`: Some I/O issue with an os-release file or distro - release file. - - * :py:exc:`UnicodeError`: A data source has unexpected characters or - uses an unexpected encoding. - """ - self.root_dir = root_dir - self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR - self.usr_lib_dir = ( - os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR - ) - - if os_release_file: - self.os_release_file = os_release_file - else: - etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) - usr_lib_os_release_file = os.path.join( - self.usr_lib_dir, _OS_RELEASE_BASENAME - ) - - # NOTE: The idea is to respect order **and** have it set - # at all times for API backwards compatibility. - if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( - usr_lib_os_release_file - ): - self.os_release_file = etc_dir_os_release_file - else: - self.os_release_file = usr_lib_os_release_file - - self.distro_release_file = distro_release_file or "" # updated later - - is_root_dir_defined = root_dir is not None - if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): - raise ValueError( - "Including subprocess data sources from specific root_dir is disallowed" - " to prevent false information" - ) - self.include_lsb = ( - include_lsb if include_lsb is not None else not is_root_dir_defined - ) - self.include_uname = ( - include_uname if include_uname is not None else not is_root_dir_defined - ) - self.include_oslevel = ( - include_oslevel if include_oslevel is not None else not is_root_dir_defined - ) - - def __repr__(self) -> str: - """Return repr of all info""" - return ( - "LinuxDistribution(" - "os_release_file={self.os_release_file!r}, " - "distro_release_file={self.distro_release_file!r}, " - "include_lsb={self.include_lsb!r}, " - "include_uname={self.include_uname!r}, " - "include_oslevel={self.include_oslevel!r}, " - "root_dir={self.root_dir!r}, " - "_os_release_info={self._os_release_info!r}, " - "_lsb_release_info={self._lsb_release_info!r}, " - "_distro_release_info={self._distro_release_info!r}, " - "_uname_info={self._uname_info!r}, " - "_oslevel_info={self._oslevel_info!r})".format(self=self) - ) - - def linux_distribution( - self, full_distribution_name: bool = True - ) -> Tuple[str, str, str]: - """ - Return information about the OS distribution that is compatible - with Python's :func:`platform.linux_distribution`, supporting a subset - of its parameters. - - For details, see :func:`distro.linux_distribution`. - """ - return ( - self.name() if full_distribution_name else self.id(), - self.version(), - self._os_release_info.get("release_codename") or self.codename(), - ) - - def id(self) -> str: - """Return the distro ID of the OS distribution, as a string. - - For details, see :func:`distro.id`. - """ - - def normalize(distro_id: str, table: Dict[str, str]) -> str: - distro_id = distro_id.lower().replace(" ", "_") - return table.get(distro_id, distro_id) - - distro_id = self.os_release_attr("id") - if distro_id: - return normalize(distro_id, NORMALIZED_OS_ID) - - distro_id = self.lsb_release_attr("distributor_id") - if distro_id: - return normalize(distro_id, NORMALIZED_LSB_ID) - - distro_id = self.distro_release_attr("id") - if distro_id: - return normalize(distro_id, NORMALIZED_DISTRO_ID) - - distro_id = self.uname_attr("id") - if distro_id: - return normalize(distro_id, NORMALIZED_DISTRO_ID) - - return "" - - def name(self, pretty: bool = False) -> str: - """ - Return the name of the OS distribution, as a string. - - For details, see :func:`distro.name`. - """ - name = ( - self.os_release_attr("name") - or self.lsb_release_attr("distributor_id") - or self.distro_release_attr("name") - or self.uname_attr("name") - ) - if pretty: - name = self.os_release_attr("pretty_name") or self.lsb_release_attr( - "description" - ) - if not name: - name = self.distro_release_attr("name") or self.uname_attr("name") - version = self.version(pretty=True) - if version: - name = f"{name} {version}" - return name or "" - - def version(self, pretty: bool = False, best: bool = False) -> str: - """ - Return the version of the OS distribution, as a string. - - For details, see :func:`distro.version`. - """ - versions = [ - self.os_release_attr("version_id"), - self.lsb_release_attr("release"), - self.distro_release_attr("version_id"), - self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( - "version_id", "" - ), - self._parse_distro_release_content( - self.lsb_release_attr("description") - ).get("version_id", ""), - self.uname_attr("release"), - ] - if self.uname_attr("id").startswith("aix"): - # On AIX platforms, prefer oslevel command output. - versions.insert(0, self.oslevel_info()) - elif self.id() == "debian" or "debian" in self.like().split(): - # On Debian-like, add debian_version file content to candidates list. - versions.append(self._debian_version) - version = "" - if best: - # This algorithm uses the last version in priority order that has - # the best precision. If the versions are not in conflict, that - # does not matter; otherwise, using the last one instead of the - # first one might be considered a surprise. - for v in versions: - if v.count(".") > version.count(".") or version == "": - version = v - else: - for v in versions: - if v != "": - version = v - break - if pretty and version and self.codename(): - version = f"{version} ({self.codename()})" - return version - - def version_parts(self, best: bool = False) -> Tuple[str, str, str]: - """ - Return the version of the OS distribution, as a tuple of version - numbers. - - For details, see :func:`distro.version_parts`. - """ - version_str = self.version(best=best) - if version_str: - version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") - matches = version_regex.match(version_str) - if matches: - major, minor, build_number = matches.groups() - return major, minor or "", build_number or "" - return "", "", "" - - def major_version(self, best: bool = False) -> str: - """ - Return the major version number of the current distribution. - - For details, see :func:`distro.major_version`. - """ - return self.version_parts(best)[0] - - def minor_version(self, best: bool = False) -> str: - """ - Return the minor version number of the current distribution. - - For details, see :func:`distro.minor_version`. - """ - return self.version_parts(best)[1] - - def build_number(self, best: bool = False) -> str: - """ - Return the build number of the current distribution. - - For details, see :func:`distro.build_number`. - """ - return self.version_parts(best)[2] - - def like(self) -> str: - """ - Return the IDs of distributions that are like the OS distribution. - - For details, see :func:`distro.like`. - """ - return self.os_release_attr("id_like") or "" - - def codename(self) -> str: - """ - Return the codename of the OS distribution. - - For details, see :func:`distro.codename`. - """ - try: - # Handle os_release specially since distros might purposefully set - # this to empty string to have no codename - return self._os_release_info["codename"] - except KeyError: - return ( - self.lsb_release_attr("codename") - or self.distro_release_attr("codename") - or "" - ) - - def info(self, pretty: bool = False, best: bool = False) -> InfoDict: - """ - Return certain machine-readable information about the OS - distribution. - - For details, see :func:`distro.info`. - """ - return dict( - id=self.id(), - version=self.version(pretty, best), - version_parts=dict( - major=self.major_version(best), - minor=self.minor_version(best), - build_number=self.build_number(best), - ), - like=self.like(), - codename=self.codename(), - ) - - def os_release_info(self) -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information - items from the os-release file data source of the OS distribution. - - For details, see :func:`distro.os_release_info`. - """ - return self._os_release_info - - def lsb_release_info(self) -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information - items from the lsb_release command data source of the OS - distribution. - - For details, see :func:`distro.lsb_release_info`. - """ - return self._lsb_release_info - - def distro_release_info(self) -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information - items from the distro release file data source of the OS - distribution. - - For details, see :func:`distro.distro_release_info`. - """ - return self._distro_release_info - - def uname_info(self) -> Dict[str, str]: - """ - Return a dictionary containing key-value pairs for the information - items from the uname command data source of the OS distribution. - - For details, see :func:`distro.uname_info`. - """ - return self._uname_info - - def oslevel_info(self) -> str: - """ - Return AIX' oslevel command output. - """ - return self._oslevel_info - - def os_release_attr(self, attribute: str) -> str: - """ - Return a single named information item from the os-release file data - source of the OS distribution. - - For details, see :func:`distro.os_release_attr`. - """ - return self._os_release_info.get(attribute, "") - - def lsb_release_attr(self, attribute: str) -> str: - """ - Return a single named information item from the lsb_release command - output data source of the OS distribution. - - For details, see :func:`distro.lsb_release_attr`. - """ - return self._lsb_release_info.get(attribute, "") - - def distro_release_attr(self, attribute: str) -> str: - """ - Return a single named information item from the distro release file - data source of the OS distribution. - - For details, see :func:`distro.distro_release_attr`. - """ - return self._distro_release_info.get(attribute, "") - - def uname_attr(self, attribute: str) -> str: - """ - Return a single named information item from the uname command - output data source of the OS distribution. - - For details, see :func:`distro.uname_attr`. - """ - return self._uname_info.get(attribute, "") - - @cached_property - def _os_release_info(self) -> Dict[str, str]: - """ - Get the information items from the specified os-release file. - - Returns: - A dictionary containing all information items. - """ - if os.path.isfile(self.os_release_file): - with open(self.os_release_file, encoding="utf-8") as release_file: - return self._parse_os_release_content(release_file) - return {} - - @staticmethod - def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: - """ - Parse the lines of an os-release file. - - Parameters: - - * lines: Iterable through the lines in the os-release file. - Each line must be a unicode string or a UTF-8 encoded byte - string. - - Returns: - A dictionary containing all information items. - """ - props = {} - lexer = shlex.shlex(lines, posix=True) - lexer.whitespace_split = True - - tokens = list(lexer) - for token in tokens: - # At this point, all shell-like parsing has been done (i.e. - # comments processed, quotes and backslash escape sequences - # processed, multi-line values assembled, trailing newlines - # stripped, etc.), so the tokens are now either: - # * variable assignments: var=value - # * commands or their arguments (not allowed in os-release) - # Ignore any tokens that are not variable assignments - if "=" in token: - k, v = token.split("=", 1) - props[k.lower()] = v - - if "version" in props: - # extract release codename (if any) from version attribute - match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) - if match: - release_codename = match.group(1) or match.group(2) - props["codename"] = props["release_codename"] = release_codename - - if "version_codename" in props: - # os-release added a version_codename field. Use that in - # preference to anything else Note that some distros purposefully - # do not have code names. They should be setting - # version_codename="" - props["codename"] = props["version_codename"] - elif "ubuntu_codename" in props: - # Same as above but a non-standard field name used on older Ubuntus - props["codename"] = props["ubuntu_codename"] - - return props - - @cached_property - def _lsb_release_info(self) -> Dict[str, str]: - """ - Get the information items from the lsb_release command output. - - Returns: - A dictionary containing all information items. - """ - if not self.include_lsb: - return {} - try: - cmd = ("lsb_release", "-a") - stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) - # Command not found or lsb_release returned error - except (OSError, subprocess.CalledProcessError): - return {} - content = self._to_str(stdout).splitlines() - return self._parse_lsb_release_content(content) - - @staticmethod - def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: - """ - Parse the output of the lsb_release command. - - Parameters: - - * lines: Iterable through the lines of the lsb_release output. - Each line must be a unicode string or a UTF-8 encoded byte - string. - - Returns: - A dictionary containing all information items. - """ - props = {} - for line in lines: - kv = line.strip("\n").split(":", 1) - if len(kv) != 2: - # Ignore lines without colon. - continue - k, v = kv - props.update({k.replace(" ", "_").lower(): v.strip()}) - return props - - @cached_property - def _uname_info(self) -> Dict[str, str]: - if not self.include_uname: - return {} - try: - cmd = ("uname", "-rs") - stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) - except OSError: - return {} - content = self._to_str(stdout).splitlines() - return self._parse_uname_content(content) - - @cached_property - def _oslevel_info(self) -> str: - if not self.include_oslevel: - return "" - try: - stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) - except (OSError, subprocess.CalledProcessError): - return "" - return self._to_str(stdout).strip() - - @cached_property - def _debian_version(self) -> str: - try: - with open( - os.path.join(self.etc_dir, "debian_version"), encoding="ascii" - ) as fp: - return fp.readline().rstrip() - except FileNotFoundError: - return "" - - @staticmethod - def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: - if not lines: - return {} - props = {} - match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) - if match: - name, version = match.groups() - - # This is to prevent the Linux kernel version from - # appearing as the 'best' version on otherwise - # identifiable distributions. - if name == "Linux": - return {} - props["id"] = name.lower() - props["name"] = name - props["release"] = version - return props - - @staticmethod - def _to_str(bytestring: bytes) -> str: - encoding = sys.getfilesystemencoding() - return bytestring.decode(encoding) - - @cached_property - def _distro_release_info(self) -> Dict[str, str]: - """ - Get the information items from the specified distro release file. - - Returns: - A dictionary containing all information items. - """ - if self.distro_release_file: - # If it was specified, we use it and parse what we can, even if - # its file name or content does not match the expected pattern. - distro_info = self._parse_distro_release_file(self.distro_release_file) - basename = os.path.basename(self.distro_release_file) - # The file name pattern for user-specified distro release files - # is somewhat more tolerant (compared to when searching for the - # file), because we want to use what was specified as best as - # possible. - match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) - else: - try: - basenames = [ - basename - for basename in os.listdir(self.etc_dir) - if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES - and os.path.isfile(os.path.join(self.etc_dir, basename)) - ] - # We sort for repeatability in cases where there are multiple - # distro specific files; e.g. CentOS, Oracle, Enterprise all - # containing `redhat-release` on top of their own. - basenames.sort() - except OSError: - # This may occur when /etc is not readable but we can't be - # sure about the *-release files. Check common entries of - # /etc for information. If they turn out to not be there the - # error is handled in `_parse_distro_release_file()`. - basenames = _DISTRO_RELEASE_BASENAMES - for basename in basenames: - match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) - if match is None: - continue - filepath = os.path.join(self.etc_dir, basename) - distro_info = self._parse_distro_release_file(filepath) - # The name is always present if the pattern matches. - if "name" not in distro_info: - continue - self.distro_release_file = filepath - break - else: # the loop didn't "break": no candidate. - return {} - - if match is not None: - distro_info["id"] = match.group(1) - - # CloudLinux < 7: manually enrich info with proper id. - if "cloudlinux" in distro_info.get("name", "").lower(): - distro_info["id"] = "cloudlinux" - - return distro_info - - def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: - """ - Parse a distro release file. - - Parameters: - - * filepath: Path name of the distro release file. - - Returns: - A dictionary containing all information items. - """ - try: - with open(filepath, encoding="utf-8") as fp: - # Only parse the first line. For instance, on SLES there - # are multiple lines. We don't want them... - return self._parse_distro_release_content(fp.readline()) - except OSError: - # Ignore not being able to read a specific, seemingly version - # related file. - # See https://github.com/python-distro/distro/issues/162 - return {} - - @staticmethod - def _parse_distro_release_content(line: str) -> Dict[str, str]: - """ - Parse a line from a distro release file. - - Parameters: - * line: Line from the distro release file. Must be a unicode string - or a UTF-8 encoded byte string. - - Returns: - A dictionary containing all information items. - """ - matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) - distro_info = {} - if matches: - # regexp ensures non-None - distro_info["name"] = matches.group(3)[::-1] - if matches.group(2): - distro_info["version_id"] = matches.group(2)[::-1] - if matches.group(1): - distro_info["codename"] = matches.group(1)[::-1] - elif line: - distro_info["name"] = line.strip() - return distro_info - - -_distro = LinuxDistribution() - - -def main() -> None: - logger = logging.getLogger(__name__) - logger.setLevel(logging.DEBUG) - logger.addHandler(logging.StreamHandler(sys.stdout)) - - parser = argparse.ArgumentParser(description="OS distro info tool") - parser.add_argument( - "--json", "-j", help="Output in machine readable format", action="store_true" - ) - - parser.add_argument( - "--root-dir", - "-r", - type=str, - dest="root_dir", - help="Path to the root filesystem directory (defaults to /)", - ) - - args = parser.parse_args() - - if args.root_dir: - dist = LinuxDistribution( - include_lsb=False, - include_uname=False, - include_oslevel=False, - root_dir=args.root_dir, - ) - else: - dist = _distro - - if args.json: - logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) - else: - logger.info("Name: %s", dist.name(pretty=True)) - distribution_version = dist.version(pretty=True) - logger.info("Version: %s", distribution_version) - distribution_codename = dist.codename() - logger.info("Codename: %s", distribution_codename) - - -if __name__ == "__main__": - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py deleted file mode 100644 index a40eeaf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py +++ /dev/null @@ -1,44 +0,0 @@ -from .package_data import __version__ -from .core import ( - IDNABidiError, - IDNAError, - InvalidCodepoint, - InvalidCodepointContext, - alabel, - check_bidi, - check_hyphen_ok, - check_initial_combiner, - check_label, - check_nfc, - decode, - encode, - ulabel, - uts46_remap, - valid_contextj, - valid_contexto, - valid_label_length, - valid_string_length, -) -from .intranges import intranges_contain - -__all__ = [ - "IDNABidiError", - "IDNAError", - "InvalidCodepoint", - "InvalidCodepointContext", - "alabel", - "check_bidi", - "check_hyphen_ok", - "check_initial_combiner", - "check_label", - "check_nfc", - "decode", - "encode", - "intranges_contain", - "ulabel", - "uts46_remap", - "valid_contextj", - "valid_contexto", - "valid_label_length", - "valid_string_length", -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0cd027f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-311.pyc deleted file mode 100644 index 98eb5aa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc deleted file mode 100644 index 03e9507..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc deleted file mode 100644 index e3092c9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc deleted file mode 100644 index 1f6e3af..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc deleted file mode 100644 index 6e059f2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc deleted file mode 100644 index 4713980..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc deleted file mode 100644 index e682eb2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py deleted file mode 100644 index 1ca9ba6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py +++ /dev/null @@ -1,112 +0,0 @@ -from .core import encode, decode, alabel, ulabel, IDNAError -import codecs -import re -from typing import Tuple, Optional - -_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') - -class Codec(codecs.Codec): - - def encode(self, data: str, errors: str = 'strict') -> Tuple[bytes, int]: - if errors != 'strict': - raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) - - if not data: - return b"", 0 - - return encode(data), len(data) - - def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: - if errors != 'strict': - raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) - - if not data: - return '', 0 - - return decode(data), len(data) - -class IncrementalEncoder(codecs.BufferedIncrementalEncoder): - def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore - if errors != 'strict': - raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) - - if not data: - return "", 0 - - labels = _unicode_dots_re.split(data) - trailing_dot = '' - if labels: - if not labels[-1]: - trailing_dot = '.' - del labels[-1] - elif not final: - # Keep potentially unfinished label until the next call - del labels[-1] - if labels: - trailing_dot = '.' - - result = [] - size = 0 - for label in labels: - result.append(alabel(label)) - if size: - size += 1 - size += len(label) - - # Join with U+002E - result_str = '.'.join(result) + trailing_dot # type: ignore - size += len(trailing_dot) - return result_str, size - -class IncrementalDecoder(codecs.BufferedIncrementalDecoder): - def _buffer_decode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore - if errors != 'strict': - raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) - - if not data: - return ('', 0) - - labels = _unicode_dots_re.split(data) - trailing_dot = '' - if labels: - if not labels[-1]: - trailing_dot = '.' - del labels[-1] - elif not final: - # Keep potentially unfinished label until the next call - del labels[-1] - if labels: - trailing_dot = '.' - - result = [] - size = 0 - for label in labels: - result.append(ulabel(label)) - if size: - size += 1 - size += len(label) - - result_str = '.'.join(result) + trailing_dot - size += len(trailing_dot) - return (result_str, size) - - -class StreamWriter(Codec, codecs.StreamWriter): - pass - - -class StreamReader(Codec, codecs.StreamReader): - pass - - -def getregentry() -> codecs.CodecInfo: - # Compatibility as a search_function for codecs.register() - return codecs.CodecInfo( - name='idna', - encode=Codec().encode, # type: ignore - decode=Codec().decode, # type: ignore - incrementalencoder=IncrementalEncoder, - incrementaldecoder=IncrementalDecoder, - streamwriter=StreamWriter, - streamreader=StreamReader, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py deleted file mode 100644 index 786e6bd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py +++ /dev/null @@ -1,13 +0,0 @@ -from .core import * -from .codec import * -from typing import Any, Union - -def ToASCII(label: str) -> bytes: - return encode(label) - -def ToUnicode(label: Union[bytes, bytearray]) -> str: - return decode(label) - -def nameprep(s: Any) -> None: - raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py deleted file mode 100644 index 4f30037..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py +++ /dev/null @@ -1,400 +0,0 @@ -from . import idnadata -import bisect -import unicodedata -import re -from typing import Union, Optional -from .intranges import intranges_contain - -_virama_combining_class = 9 -_alabel_prefix = b'xn--' -_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') - -class IDNAError(UnicodeError): - """ Base exception for all IDNA-encoding related problems """ - pass - - -class IDNABidiError(IDNAError): - """ Exception when bidirectional requirements are not satisfied """ - pass - - -class InvalidCodepoint(IDNAError): - """ Exception when a disallowed or unallocated codepoint is used """ - pass - - -class InvalidCodepointContext(IDNAError): - """ Exception when the codepoint is not valid in the context it is used """ - pass - - -def _combining_class(cp: int) -> int: - v = unicodedata.combining(chr(cp)) - if v == 0: - if not unicodedata.name(chr(cp)): - raise ValueError('Unknown character in unicodedata') - return v - -def _is_script(cp: str, script: str) -> bool: - return intranges_contain(ord(cp), idnadata.scripts[script]) - -def _punycode(s: str) -> bytes: - return s.encode('punycode') - -def _unot(s: int) -> str: - return 'U+{:04X}'.format(s) - - -def valid_label_length(label: Union[bytes, str]) -> bool: - if len(label) > 63: - return False - return True - - -def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: - if len(label) > (254 if trailing_dot else 253): - return False - return True - - -def check_bidi(label: str, check_ltr: bool = False) -> bool: - # Bidi rules should only be applied if string contains RTL characters - bidi_label = False - for (idx, cp) in enumerate(label, 1): - direction = unicodedata.bidirectional(cp) - if direction == '': - # String likely comes from a newer version of Unicode - raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) - if direction in ['R', 'AL', 'AN']: - bidi_label = True - if not bidi_label and not check_ltr: - return True - - # Bidi rule 1 - direction = unicodedata.bidirectional(label[0]) - if direction in ['R', 'AL']: - rtl = True - elif direction == 'L': - rtl = False - else: - raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) - - valid_ending = False - number_type = None # type: Optional[str] - for (idx, cp) in enumerate(label, 1): - direction = unicodedata.bidirectional(cp) - - if rtl: - # Bidi rule 2 - if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: - raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) - # Bidi rule 3 - if direction in ['R', 'AL', 'EN', 'AN']: - valid_ending = True - elif direction != 'NSM': - valid_ending = False - # Bidi rule 4 - if direction in ['AN', 'EN']: - if not number_type: - number_type = direction - else: - if number_type != direction: - raise IDNABidiError('Can not mix numeral types in a right-to-left label') - else: - # Bidi rule 5 - if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: - raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) - # Bidi rule 6 - if direction in ['L', 'EN']: - valid_ending = True - elif direction != 'NSM': - valid_ending = False - - if not valid_ending: - raise IDNABidiError('Label ends with illegal codepoint directionality') - - return True - - -def check_initial_combiner(label: str) -> bool: - if unicodedata.category(label[0])[0] == 'M': - raise IDNAError('Label begins with an illegal combining character') - return True - - -def check_hyphen_ok(label: str) -> bool: - if label[2:4] == '--': - raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') - if label[0] == '-' or label[-1] == '-': - raise IDNAError('Label must not start or end with a hyphen') - return True - - -def check_nfc(label: str) -> None: - if unicodedata.normalize('NFC', label) != label: - raise IDNAError('Label must be in Normalization Form C') - - -def valid_contextj(label: str, pos: int) -> bool: - cp_value = ord(label[pos]) - - if cp_value == 0x200c: - - if pos > 0: - if _combining_class(ord(label[pos - 1])) == _virama_combining_class: - return True - - ok = False - for i in range(pos-1, -1, -1): - joining_type = idnadata.joining_types.get(ord(label[i])) - if joining_type == ord('T'): - continue - if joining_type in [ord('L'), ord('D')]: - ok = True - break - - if not ok: - return False - - ok = False - for i in range(pos+1, len(label)): - joining_type = idnadata.joining_types.get(ord(label[i])) - if joining_type == ord('T'): - continue - if joining_type in [ord('R'), ord('D')]: - ok = True - break - return ok - - if cp_value == 0x200d: - - if pos > 0: - if _combining_class(ord(label[pos - 1])) == _virama_combining_class: - return True - return False - - else: - - return False - - -def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: - cp_value = ord(label[pos]) - - if cp_value == 0x00b7: - if 0 < pos < len(label)-1: - if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: - return True - return False - - elif cp_value == 0x0375: - if pos < len(label)-1 and len(label) > 1: - return _is_script(label[pos + 1], 'Greek') - return False - - elif cp_value == 0x05f3 or cp_value == 0x05f4: - if pos > 0: - return _is_script(label[pos - 1], 'Hebrew') - return False - - elif cp_value == 0x30fb: - for cp in label: - if cp == '\u30fb': - continue - if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): - return True - return False - - elif 0x660 <= cp_value <= 0x669: - for cp in label: - if 0x6f0 <= ord(cp) <= 0x06f9: - return False - return True - - elif 0x6f0 <= cp_value <= 0x6f9: - for cp in label: - if 0x660 <= ord(cp) <= 0x0669: - return False - return True - - return False - - -def check_label(label: Union[str, bytes, bytearray]) -> None: - if isinstance(label, (bytes, bytearray)): - label = label.decode('utf-8') - if len(label) == 0: - raise IDNAError('Empty Label') - - check_nfc(label) - check_hyphen_ok(label) - check_initial_combiner(label) - - for (pos, cp) in enumerate(label): - cp_value = ord(cp) - if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): - continue - elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): - try: - if not valid_contextj(label, pos): - raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( - _unot(cp_value), pos+1, repr(label))) - except ValueError: - raise IDNAError('Unknown codepoint adjacent to joiner {} at position {} in {}'.format( - _unot(cp_value), pos+1, repr(label))) - elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): - if not valid_contexto(label, pos): - raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) - else: - raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) - - check_bidi(label) - - -def alabel(label: str) -> bytes: - try: - label_bytes = label.encode('ascii') - ulabel(label_bytes) - if not valid_label_length(label_bytes): - raise IDNAError('Label too long') - return label_bytes - except UnicodeEncodeError: - pass - - if not label: - raise IDNAError('No Input') - - label = str(label) - check_label(label) - label_bytes = _punycode(label) - label_bytes = _alabel_prefix + label_bytes - - if not valid_label_length(label_bytes): - raise IDNAError('Label too long') - - return label_bytes - - -def ulabel(label: Union[str, bytes, bytearray]) -> str: - if not isinstance(label, (bytes, bytearray)): - try: - label_bytes = label.encode('ascii') - except UnicodeEncodeError: - check_label(label) - return label - else: - label_bytes = label - - label_bytes = label_bytes.lower() - if label_bytes.startswith(_alabel_prefix): - label_bytes = label_bytes[len(_alabel_prefix):] - if not label_bytes: - raise IDNAError('Malformed A-label, no Punycode eligible content found') - if label_bytes.decode('ascii')[-1] == '-': - raise IDNAError('A-label must not end with a hyphen') - else: - check_label(label_bytes) - return label_bytes.decode('ascii') - - try: - label = label_bytes.decode('punycode') - except UnicodeError: - raise IDNAError('Invalid A-label') - check_label(label) - return label - - -def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: - """Re-map the characters in the string according to UTS46 processing.""" - from .uts46data import uts46data - output = '' - - for pos, char in enumerate(domain): - code_point = ord(char) - try: - uts46row = uts46data[code_point if code_point < 256 else - bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] - status = uts46row[1] - replacement = None # type: Optional[str] - if len(uts46row) == 3: - replacement = uts46row[2] # type: ignore - if (status == 'V' or - (status == 'D' and not transitional) or - (status == '3' and not std3_rules and replacement is None)): - output += char - elif replacement is not None and (status == 'M' or - (status == '3' and not std3_rules) or - (status == 'D' and transitional)): - output += replacement - elif status != 'I': - raise IndexError() - except IndexError: - raise InvalidCodepoint( - 'Codepoint {} not allowed at position {} in {}'.format( - _unot(code_point), pos + 1, repr(domain))) - - return unicodedata.normalize('NFC', output) - - -def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: - if isinstance(s, (bytes, bytearray)): - try: - s = s.decode('ascii') - except UnicodeDecodeError: - raise IDNAError('should pass a unicode string to the function rather than a byte string.') - if uts46: - s = uts46_remap(s, std3_rules, transitional) - trailing_dot = False - result = [] - if strict: - labels = s.split('.') - else: - labels = _unicode_dots_re.split(s) - if not labels or labels == ['']: - raise IDNAError('Empty domain') - if labels[-1] == '': - del labels[-1] - trailing_dot = True - for label in labels: - s = alabel(label) - if s: - result.append(s) - else: - raise IDNAError('Empty label') - if trailing_dot: - result.append(b'') - s = b'.'.join(result) - if not valid_string_length(s, trailing_dot): - raise IDNAError('Domain too long') - return s - - -def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: - try: - if isinstance(s, (bytes, bytearray)): - s = s.decode('ascii') - except UnicodeDecodeError: - raise IDNAError('Invalid ASCII in A-label') - if uts46: - s = uts46_remap(s, std3_rules, False) - trailing_dot = False - result = [] - if not strict: - labels = _unicode_dots_re.split(s) - else: - labels = s.split('.') - if not labels or labels == ['']: - raise IDNAError('Empty domain') - if not labels[-1]: - del labels[-1] - trailing_dot = True - for label in labels: - s = ulabel(label) - if s: - result.append(s) - else: - raise IDNAError('Empty label') - if trailing_dot: - result.append('') - return '.'.join(result) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py deleted file mode 100644 index 67db462..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py +++ /dev/null @@ -1,2151 +0,0 @@ -# This file is automatically generated by tools/idna-data - -__version__ = '15.0.0' -scripts = { - 'Greek': ( - 0x37000000374, - 0x37500000378, - 0x37a0000037e, - 0x37f00000380, - 0x38400000385, - 0x38600000387, - 0x3880000038b, - 0x38c0000038d, - 0x38e000003a2, - 0x3a3000003e2, - 0x3f000000400, - 0x1d2600001d2b, - 0x1d5d00001d62, - 0x1d6600001d6b, - 0x1dbf00001dc0, - 0x1f0000001f16, - 0x1f1800001f1e, - 0x1f2000001f46, - 0x1f4800001f4e, - 0x1f5000001f58, - 0x1f5900001f5a, - 0x1f5b00001f5c, - 0x1f5d00001f5e, - 0x1f5f00001f7e, - 0x1f8000001fb5, - 0x1fb600001fc5, - 0x1fc600001fd4, - 0x1fd600001fdc, - 0x1fdd00001ff0, - 0x1ff200001ff5, - 0x1ff600001fff, - 0x212600002127, - 0xab650000ab66, - 0x101400001018f, - 0x101a0000101a1, - 0x1d2000001d246, - ), - 'Han': ( - 0x2e8000002e9a, - 0x2e9b00002ef4, - 0x2f0000002fd6, - 0x300500003006, - 0x300700003008, - 0x30210000302a, - 0x30380000303c, - 0x340000004dc0, - 0x4e000000a000, - 0xf9000000fa6e, - 0xfa700000fada, - 0x16fe200016fe4, - 0x16ff000016ff2, - 0x200000002a6e0, - 0x2a7000002b73a, - 0x2b7400002b81e, - 0x2b8200002cea2, - 0x2ceb00002ebe1, - 0x2f8000002fa1e, - 0x300000003134b, - 0x31350000323b0, - ), - 'Hebrew': ( - 0x591000005c8, - 0x5d0000005eb, - 0x5ef000005f5, - 0xfb1d0000fb37, - 0xfb380000fb3d, - 0xfb3e0000fb3f, - 0xfb400000fb42, - 0xfb430000fb45, - 0xfb460000fb50, - ), - 'Hiragana': ( - 0x304100003097, - 0x309d000030a0, - 0x1b0010001b120, - 0x1b1320001b133, - 0x1b1500001b153, - 0x1f2000001f201, - ), - 'Katakana': ( - 0x30a1000030fb, - 0x30fd00003100, - 0x31f000003200, - 0x32d0000032ff, - 0x330000003358, - 0xff660000ff70, - 0xff710000ff9e, - 0x1aff00001aff4, - 0x1aff50001affc, - 0x1affd0001afff, - 0x1b0000001b001, - 0x1b1200001b123, - 0x1b1550001b156, - 0x1b1640001b168, - ), -} -joining_types = { - 0x600: 85, - 0x601: 85, - 0x602: 85, - 0x603: 85, - 0x604: 85, - 0x605: 85, - 0x608: 85, - 0x60b: 85, - 0x620: 68, - 0x621: 85, - 0x622: 82, - 0x623: 82, - 0x624: 82, - 0x625: 82, - 0x626: 68, - 0x627: 82, - 0x628: 68, - 0x629: 82, - 0x62a: 68, - 0x62b: 68, - 0x62c: 68, - 0x62d: 68, - 0x62e: 68, - 0x62f: 82, - 0x630: 82, - 0x631: 82, - 0x632: 82, - 0x633: 68, - 0x634: 68, - 0x635: 68, - 0x636: 68, - 0x637: 68, - 0x638: 68, - 0x639: 68, - 0x63a: 68, - 0x63b: 68, - 0x63c: 68, - 0x63d: 68, - 0x63e: 68, - 0x63f: 68, - 0x640: 67, - 0x641: 68, - 0x642: 68, - 0x643: 68, - 0x644: 68, - 0x645: 68, - 0x646: 68, - 0x647: 68, - 0x648: 82, - 0x649: 68, - 0x64a: 68, - 0x66e: 68, - 0x66f: 68, - 0x671: 82, - 0x672: 82, - 0x673: 82, - 0x674: 85, - 0x675: 82, - 0x676: 82, - 0x677: 82, - 0x678: 68, - 0x679: 68, - 0x67a: 68, - 0x67b: 68, - 0x67c: 68, - 0x67d: 68, - 0x67e: 68, - 0x67f: 68, - 0x680: 68, - 0x681: 68, - 0x682: 68, - 0x683: 68, - 0x684: 68, - 0x685: 68, - 0x686: 68, - 0x687: 68, - 0x688: 82, - 0x689: 82, - 0x68a: 82, - 0x68b: 82, - 0x68c: 82, - 0x68d: 82, - 0x68e: 82, - 0x68f: 82, - 0x690: 82, - 0x691: 82, - 0x692: 82, - 0x693: 82, - 0x694: 82, - 0x695: 82, - 0x696: 82, - 0x697: 82, - 0x698: 82, - 0x699: 82, - 0x69a: 68, - 0x69b: 68, - 0x69c: 68, - 0x69d: 68, - 0x69e: 68, - 0x69f: 68, - 0x6a0: 68, - 0x6a1: 68, - 0x6a2: 68, - 0x6a3: 68, - 0x6a4: 68, - 0x6a5: 68, - 0x6a6: 68, - 0x6a7: 68, - 0x6a8: 68, - 0x6a9: 68, - 0x6aa: 68, - 0x6ab: 68, - 0x6ac: 68, - 0x6ad: 68, - 0x6ae: 68, - 0x6af: 68, - 0x6b0: 68, - 0x6b1: 68, - 0x6b2: 68, - 0x6b3: 68, - 0x6b4: 68, - 0x6b5: 68, - 0x6b6: 68, - 0x6b7: 68, - 0x6b8: 68, - 0x6b9: 68, - 0x6ba: 68, - 0x6bb: 68, - 0x6bc: 68, - 0x6bd: 68, - 0x6be: 68, - 0x6bf: 68, - 0x6c0: 82, - 0x6c1: 68, - 0x6c2: 68, - 0x6c3: 82, - 0x6c4: 82, - 0x6c5: 82, - 0x6c6: 82, - 0x6c7: 82, - 0x6c8: 82, - 0x6c9: 82, - 0x6ca: 82, - 0x6cb: 82, - 0x6cc: 68, - 0x6cd: 82, - 0x6ce: 68, - 0x6cf: 82, - 0x6d0: 68, - 0x6d1: 68, - 0x6d2: 82, - 0x6d3: 82, - 0x6d5: 82, - 0x6dd: 85, - 0x6ee: 82, - 0x6ef: 82, - 0x6fa: 68, - 0x6fb: 68, - 0x6fc: 68, - 0x6ff: 68, - 0x70f: 84, - 0x710: 82, - 0x712: 68, - 0x713: 68, - 0x714: 68, - 0x715: 82, - 0x716: 82, - 0x717: 82, - 0x718: 82, - 0x719: 82, - 0x71a: 68, - 0x71b: 68, - 0x71c: 68, - 0x71d: 68, - 0x71e: 82, - 0x71f: 68, - 0x720: 68, - 0x721: 68, - 0x722: 68, - 0x723: 68, - 0x724: 68, - 0x725: 68, - 0x726: 68, - 0x727: 68, - 0x728: 82, - 0x729: 68, - 0x72a: 82, - 0x72b: 68, - 0x72c: 82, - 0x72d: 68, - 0x72e: 68, - 0x72f: 82, - 0x74d: 82, - 0x74e: 68, - 0x74f: 68, - 0x750: 68, - 0x751: 68, - 0x752: 68, - 0x753: 68, - 0x754: 68, - 0x755: 68, - 0x756: 68, - 0x757: 68, - 0x758: 68, - 0x759: 82, - 0x75a: 82, - 0x75b: 82, - 0x75c: 68, - 0x75d: 68, - 0x75e: 68, - 0x75f: 68, - 0x760: 68, - 0x761: 68, - 0x762: 68, - 0x763: 68, - 0x764: 68, - 0x765: 68, - 0x766: 68, - 0x767: 68, - 0x768: 68, - 0x769: 68, - 0x76a: 68, - 0x76b: 82, - 0x76c: 82, - 0x76d: 68, - 0x76e: 68, - 0x76f: 68, - 0x770: 68, - 0x771: 82, - 0x772: 68, - 0x773: 82, - 0x774: 82, - 0x775: 68, - 0x776: 68, - 0x777: 68, - 0x778: 82, - 0x779: 82, - 0x77a: 68, - 0x77b: 68, - 0x77c: 68, - 0x77d: 68, - 0x77e: 68, - 0x77f: 68, - 0x7ca: 68, - 0x7cb: 68, - 0x7cc: 68, - 0x7cd: 68, - 0x7ce: 68, - 0x7cf: 68, - 0x7d0: 68, - 0x7d1: 68, - 0x7d2: 68, - 0x7d3: 68, - 0x7d4: 68, - 0x7d5: 68, - 0x7d6: 68, - 0x7d7: 68, - 0x7d8: 68, - 0x7d9: 68, - 0x7da: 68, - 0x7db: 68, - 0x7dc: 68, - 0x7dd: 68, - 0x7de: 68, - 0x7df: 68, - 0x7e0: 68, - 0x7e1: 68, - 0x7e2: 68, - 0x7e3: 68, - 0x7e4: 68, - 0x7e5: 68, - 0x7e6: 68, - 0x7e7: 68, - 0x7e8: 68, - 0x7e9: 68, - 0x7ea: 68, - 0x7fa: 67, - 0x840: 82, - 0x841: 68, - 0x842: 68, - 0x843: 68, - 0x844: 68, - 0x845: 68, - 0x846: 82, - 0x847: 82, - 0x848: 68, - 0x849: 82, - 0x84a: 68, - 0x84b: 68, - 0x84c: 68, - 0x84d: 68, - 0x84e: 68, - 0x84f: 68, - 0x850: 68, - 0x851: 68, - 0x852: 68, - 0x853: 68, - 0x854: 82, - 0x855: 68, - 0x856: 82, - 0x857: 82, - 0x858: 82, - 0x860: 68, - 0x861: 85, - 0x862: 68, - 0x863: 68, - 0x864: 68, - 0x865: 68, - 0x866: 85, - 0x867: 82, - 0x868: 68, - 0x869: 82, - 0x86a: 82, - 0x870: 82, - 0x871: 82, - 0x872: 82, - 0x873: 82, - 0x874: 82, - 0x875: 82, - 0x876: 82, - 0x877: 82, - 0x878: 82, - 0x879: 82, - 0x87a: 82, - 0x87b: 82, - 0x87c: 82, - 0x87d: 82, - 0x87e: 82, - 0x87f: 82, - 0x880: 82, - 0x881: 82, - 0x882: 82, - 0x883: 67, - 0x884: 67, - 0x885: 67, - 0x886: 68, - 0x887: 85, - 0x888: 85, - 0x889: 68, - 0x88a: 68, - 0x88b: 68, - 0x88c: 68, - 0x88d: 68, - 0x88e: 82, - 0x890: 85, - 0x891: 85, - 0x8a0: 68, - 0x8a1: 68, - 0x8a2: 68, - 0x8a3: 68, - 0x8a4: 68, - 0x8a5: 68, - 0x8a6: 68, - 0x8a7: 68, - 0x8a8: 68, - 0x8a9: 68, - 0x8aa: 82, - 0x8ab: 82, - 0x8ac: 82, - 0x8ad: 85, - 0x8ae: 82, - 0x8af: 68, - 0x8b0: 68, - 0x8b1: 82, - 0x8b2: 82, - 0x8b3: 68, - 0x8b4: 68, - 0x8b5: 68, - 0x8b6: 68, - 0x8b7: 68, - 0x8b8: 68, - 0x8b9: 82, - 0x8ba: 68, - 0x8bb: 68, - 0x8bc: 68, - 0x8bd: 68, - 0x8be: 68, - 0x8bf: 68, - 0x8c0: 68, - 0x8c1: 68, - 0x8c2: 68, - 0x8c3: 68, - 0x8c4: 68, - 0x8c5: 68, - 0x8c6: 68, - 0x8c7: 68, - 0x8c8: 68, - 0x8e2: 85, - 0x1806: 85, - 0x1807: 68, - 0x180a: 67, - 0x180e: 85, - 0x1820: 68, - 0x1821: 68, - 0x1822: 68, - 0x1823: 68, - 0x1824: 68, - 0x1825: 68, - 0x1826: 68, - 0x1827: 68, - 0x1828: 68, - 0x1829: 68, - 0x182a: 68, - 0x182b: 68, - 0x182c: 68, - 0x182d: 68, - 0x182e: 68, - 0x182f: 68, - 0x1830: 68, - 0x1831: 68, - 0x1832: 68, - 0x1833: 68, - 0x1834: 68, - 0x1835: 68, - 0x1836: 68, - 0x1837: 68, - 0x1838: 68, - 0x1839: 68, - 0x183a: 68, - 0x183b: 68, - 0x183c: 68, - 0x183d: 68, - 0x183e: 68, - 0x183f: 68, - 0x1840: 68, - 0x1841: 68, - 0x1842: 68, - 0x1843: 68, - 0x1844: 68, - 0x1845: 68, - 0x1846: 68, - 0x1847: 68, - 0x1848: 68, - 0x1849: 68, - 0x184a: 68, - 0x184b: 68, - 0x184c: 68, - 0x184d: 68, - 0x184e: 68, - 0x184f: 68, - 0x1850: 68, - 0x1851: 68, - 0x1852: 68, - 0x1853: 68, - 0x1854: 68, - 0x1855: 68, - 0x1856: 68, - 0x1857: 68, - 0x1858: 68, - 0x1859: 68, - 0x185a: 68, - 0x185b: 68, - 0x185c: 68, - 0x185d: 68, - 0x185e: 68, - 0x185f: 68, - 0x1860: 68, - 0x1861: 68, - 0x1862: 68, - 0x1863: 68, - 0x1864: 68, - 0x1865: 68, - 0x1866: 68, - 0x1867: 68, - 0x1868: 68, - 0x1869: 68, - 0x186a: 68, - 0x186b: 68, - 0x186c: 68, - 0x186d: 68, - 0x186e: 68, - 0x186f: 68, - 0x1870: 68, - 0x1871: 68, - 0x1872: 68, - 0x1873: 68, - 0x1874: 68, - 0x1875: 68, - 0x1876: 68, - 0x1877: 68, - 0x1878: 68, - 0x1880: 85, - 0x1881: 85, - 0x1882: 85, - 0x1883: 85, - 0x1884: 85, - 0x1885: 84, - 0x1886: 84, - 0x1887: 68, - 0x1888: 68, - 0x1889: 68, - 0x188a: 68, - 0x188b: 68, - 0x188c: 68, - 0x188d: 68, - 0x188e: 68, - 0x188f: 68, - 0x1890: 68, - 0x1891: 68, - 0x1892: 68, - 0x1893: 68, - 0x1894: 68, - 0x1895: 68, - 0x1896: 68, - 0x1897: 68, - 0x1898: 68, - 0x1899: 68, - 0x189a: 68, - 0x189b: 68, - 0x189c: 68, - 0x189d: 68, - 0x189e: 68, - 0x189f: 68, - 0x18a0: 68, - 0x18a1: 68, - 0x18a2: 68, - 0x18a3: 68, - 0x18a4: 68, - 0x18a5: 68, - 0x18a6: 68, - 0x18a7: 68, - 0x18a8: 68, - 0x18aa: 68, - 0x200c: 85, - 0x200d: 67, - 0x202f: 85, - 0x2066: 85, - 0x2067: 85, - 0x2068: 85, - 0x2069: 85, - 0xa840: 68, - 0xa841: 68, - 0xa842: 68, - 0xa843: 68, - 0xa844: 68, - 0xa845: 68, - 0xa846: 68, - 0xa847: 68, - 0xa848: 68, - 0xa849: 68, - 0xa84a: 68, - 0xa84b: 68, - 0xa84c: 68, - 0xa84d: 68, - 0xa84e: 68, - 0xa84f: 68, - 0xa850: 68, - 0xa851: 68, - 0xa852: 68, - 0xa853: 68, - 0xa854: 68, - 0xa855: 68, - 0xa856: 68, - 0xa857: 68, - 0xa858: 68, - 0xa859: 68, - 0xa85a: 68, - 0xa85b: 68, - 0xa85c: 68, - 0xa85d: 68, - 0xa85e: 68, - 0xa85f: 68, - 0xa860: 68, - 0xa861: 68, - 0xa862: 68, - 0xa863: 68, - 0xa864: 68, - 0xa865: 68, - 0xa866: 68, - 0xa867: 68, - 0xa868: 68, - 0xa869: 68, - 0xa86a: 68, - 0xa86b: 68, - 0xa86c: 68, - 0xa86d: 68, - 0xa86e: 68, - 0xa86f: 68, - 0xa870: 68, - 0xa871: 68, - 0xa872: 76, - 0xa873: 85, - 0x10ac0: 68, - 0x10ac1: 68, - 0x10ac2: 68, - 0x10ac3: 68, - 0x10ac4: 68, - 0x10ac5: 82, - 0x10ac6: 85, - 0x10ac7: 82, - 0x10ac8: 85, - 0x10ac9: 82, - 0x10aca: 82, - 0x10acb: 85, - 0x10acc: 85, - 0x10acd: 76, - 0x10ace: 82, - 0x10acf: 82, - 0x10ad0: 82, - 0x10ad1: 82, - 0x10ad2: 82, - 0x10ad3: 68, - 0x10ad4: 68, - 0x10ad5: 68, - 0x10ad6: 68, - 0x10ad7: 76, - 0x10ad8: 68, - 0x10ad9: 68, - 0x10ada: 68, - 0x10adb: 68, - 0x10adc: 68, - 0x10add: 82, - 0x10ade: 68, - 0x10adf: 68, - 0x10ae0: 68, - 0x10ae1: 82, - 0x10ae2: 85, - 0x10ae3: 85, - 0x10ae4: 82, - 0x10aeb: 68, - 0x10aec: 68, - 0x10aed: 68, - 0x10aee: 68, - 0x10aef: 82, - 0x10b80: 68, - 0x10b81: 82, - 0x10b82: 68, - 0x10b83: 82, - 0x10b84: 82, - 0x10b85: 82, - 0x10b86: 68, - 0x10b87: 68, - 0x10b88: 68, - 0x10b89: 82, - 0x10b8a: 68, - 0x10b8b: 68, - 0x10b8c: 82, - 0x10b8d: 68, - 0x10b8e: 82, - 0x10b8f: 82, - 0x10b90: 68, - 0x10b91: 82, - 0x10ba9: 82, - 0x10baa: 82, - 0x10bab: 82, - 0x10bac: 82, - 0x10bad: 68, - 0x10bae: 68, - 0x10baf: 85, - 0x10d00: 76, - 0x10d01: 68, - 0x10d02: 68, - 0x10d03: 68, - 0x10d04: 68, - 0x10d05: 68, - 0x10d06: 68, - 0x10d07: 68, - 0x10d08: 68, - 0x10d09: 68, - 0x10d0a: 68, - 0x10d0b: 68, - 0x10d0c: 68, - 0x10d0d: 68, - 0x10d0e: 68, - 0x10d0f: 68, - 0x10d10: 68, - 0x10d11: 68, - 0x10d12: 68, - 0x10d13: 68, - 0x10d14: 68, - 0x10d15: 68, - 0x10d16: 68, - 0x10d17: 68, - 0x10d18: 68, - 0x10d19: 68, - 0x10d1a: 68, - 0x10d1b: 68, - 0x10d1c: 68, - 0x10d1d: 68, - 0x10d1e: 68, - 0x10d1f: 68, - 0x10d20: 68, - 0x10d21: 68, - 0x10d22: 82, - 0x10d23: 68, - 0x10f30: 68, - 0x10f31: 68, - 0x10f32: 68, - 0x10f33: 82, - 0x10f34: 68, - 0x10f35: 68, - 0x10f36: 68, - 0x10f37: 68, - 0x10f38: 68, - 0x10f39: 68, - 0x10f3a: 68, - 0x10f3b: 68, - 0x10f3c: 68, - 0x10f3d: 68, - 0x10f3e: 68, - 0x10f3f: 68, - 0x10f40: 68, - 0x10f41: 68, - 0x10f42: 68, - 0x10f43: 68, - 0x10f44: 68, - 0x10f45: 85, - 0x10f51: 68, - 0x10f52: 68, - 0x10f53: 68, - 0x10f54: 82, - 0x10f70: 68, - 0x10f71: 68, - 0x10f72: 68, - 0x10f73: 68, - 0x10f74: 82, - 0x10f75: 82, - 0x10f76: 68, - 0x10f77: 68, - 0x10f78: 68, - 0x10f79: 68, - 0x10f7a: 68, - 0x10f7b: 68, - 0x10f7c: 68, - 0x10f7d: 68, - 0x10f7e: 68, - 0x10f7f: 68, - 0x10f80: 68, - 0x10f81: 68, - 0x10fb0: 68, - 0x10fb1: 85, - 0x10fb2: 68, - 0x10fb3: 68, - 0x10fb4: 82, - 0x10fb5: 82, - 0x10fb6: 82, - 0x10fb7: 85, - 0x10fb8: 68, - 0x10fb9: 82, - 0x10fba: 82, - 0x10fbb: 68, - 0x10fbc: 68, - 0x10fbd: 82, - 0x10fbe: 68, - 0x10fbf: 68, - 0x10fc0: 85, - 0x10fc1: 68, - 0x10fc2: 82, - 0x10fc3: 82, - 0x10fc4: 68, - 0x10fc5: 85, - 0x10fc6: 85, - 0x10fc7: 85, - 0x10fc8: 85, - 0x10fc9: 82, - 0x10fca: 68, - 0x10fcb: 76, - 0x110bd: 85, - 0x110cd: 85, - 0x1e900: 68, - 0x1e901: 68, - 0x1e902: 68, - 0x1e903: 68, - 0x1e904: 68, - 0x1e905: 68, - 0x1e906: 68, - 0x1e907: 68, - 0x1e908: 68, - 0x1e909: 68, - 0x1e90a: 68, - 0x1e90b: 68, - 0x1e90c: 68, - 0x1e90d: 68, - 0x1e90e: 68, - 0x1e90f: 68, - 0x1e910: 68, - 0x1e911: 68, - 0x1e912: 68, - 0x1e913: 68, - 0x1e914: 68, - 0x1e915: 68, - 0x1e916: 68, - 0x1e917: 68, - 0x1e918: 68, - 0x1e919: 68, - 0x1e91a: 68, - 0x1e91b: 68, - 0x1e91c: 68, - 0x1e91d: 68, - 0x1e91e: 68, - 0x1e91f: 68, - 0x1e920: 68, - 0x1e921: 68, - 0x1e922: 68, - 0x1e923: 68, - 0x1e924: 68, - 0x1e925: 68, - 0x1e926: 68, - 0x1e927: 68, - 0x1e928: 68, - 0x1e929: 68, - 0x1e92a: 68, - 0x1e92b: 68, - 0x1e92c: 68, - 0x1e92d: 68, - 0x1e92e: 68, - 0x1e92f: 68, - 0x1e930: 68, - 0x1e931: 68, - 0x1e932: 68, - 0x1e933: 68, - 0x1e934: 68, - 0x1e935: 68, - 0x1e936: 68, - 0x1e937: 68, - 0x1e938: 68, - 0x1e939: 68, - 0x1e93a: 68, - 0x1e93b: 68, - 0x1e93c: 68, - 0x1e93d: 68, - 0x1e93e: 68, - 0x1e93f: 68, - 0x1e940: 68, - 0x1e941: 68, - 0x1e942: 68, - 0x1e943: 68, - 0x1e94b: 84, -} -codepoint_classes = { - 'PVALID': ( - 0x2d0000002e, - 0x300000003a, - 0x610000007b, - 0xdf000000f7, - 0xf800000100, - 0x10100000102, - 0x10300000104, - 0x10500000106, - 0x10700000108, - 0x1090000010a, - 0x10b0000010c, - 0x10d0000010e, - 0x10f00000110, - 0x11100000112, - 0x11300000114, - 0x11500000116, - 0x11700000118, - 0x1190000011a, - 0x11b0000011c, - 0x11d0000011e, - 0x11f00000120, - 0x12100000122, - 0x12300000124, - 0x12500000126, - 0x12700000128, - 0x1290000012a, - 0x12b0000012c, - 0x12d0000012e, - 0x12f00000130, - 0x13100000132, - 0x13500000136, - 0x13700000139, - 0x13a0000013b, - 0x13c0000013d, - 0x13e0000013f, - 0x14200000143, - 0x14400000145, - 0x14600000147, - 0x14800000149, - 0x14b0000014c, - 0x14d0000014e, - 0x14f00000150, - 0x15100000152, - 0x15300000154, - 0x15500000156, - 0x15700000158, - 0x1590000015a, - 0x15b0000015c, - 0x15d0000015e, - 0x15f00000160, - 0x16100000162, - 0x16300000164, - 0x16500000166, - 0x16700000168, - 0x1690000016a, - 0x16b0000016c, - 0x16d0000016e, - 0x16f00000170, - 0x17100000172, - 0x17300000174, - 0x17500000176, - 0x17700000178, - 0x17a0000017b, - 0x17c0000017d, - 0x17e0000017f, - 0x18000000181, - 0x18300000184, - 0x18500000186, - 0x18800000189, - 0x18c0000018e, - 0x19200000193, - 0x19500000196, - 0x1990000019c, - 0x19e0000019f, - 0x1a1000001a2, - 0x1a3000001a4, - 0x1a5000001a6, - 0x1a8000001a9, - 0x1aa000001ac, - 0x1ad000001ae, - 0x1b0000001b1, - 0x1b4000001b5, - 0x1b6000001b7, - 0x1b9000001bc, - 0x1bd000001c4, - 0x1ce000001cf, - 0x1d0000001d1, - 0x1d2000001d3, - 0x1d4000001d5, - 0x1d6000001d7, - 0x1d8000001d9, - 0x1da000001db, - 0x1dc000001de, - 0x1df000001e0, - 0x1e1000001e2, - 0x1e3000001e4, - 0x1e5000001e6, - 0x1e7000001e8, - 0x1e9000001ea, - 0x1eb000001ec, - 0x1ed000001ee, - 0x1ef000001f1, - 0x1f5000001f6, - 0x1f9000001fa, - 0x1fb000001fc, - 0x1fd000001fe, - 0x1ff00000200, - 0x20100000202, - 0x20300000204, - 0x20500000206, - 0x20700000208, - 0x2090000020a, - 0x20b0000020c, - 0x20d0000020e, - 0x20f00000210, - 0x21100000212, - 0x21300000214, - 0x21500000216, - 0x21700000218, - 0x2190000021a, - 0x21b0000021c, - 0x21d0000021e, - 0x21f00000220, - 0x22100000222, - 0x22300000224, - 0x22500000226, - 0x22700000228, - 0x2290000022a, - 0x22b0000022c, - 0x22d0000022e, - 0x22f00000230, - 0x23100000232, - 0x2330000023a, - 0x23c0000023d, - 0x23f00000241, - 0x24200000243, - 0x24700000248, - 0x2490000024a, - 0x24b0000024c, - 0x24d0000024e, - 0x24f000002b0, - 0x2b9000002c2, - 0x2c6000002d2, - 0x2ec000002ed, - 0x2ee000002ef, - 0x30000000340, - 0x34200000343, - 0x3460000034f, - 0x35000000370, - 0x37100000372, - 0x37300000374, - 0x37700000378, - 0x37b0000037e, - 0x39000000391, - 0x3ac000003cf, - 0x3d7000003d8, - 0x3d9000003da, - 0x3db000003dc, - 0x3dd000003de, - 0x3df000003e0, - 0x3e1000003e2, - 0x3e3000003e4, - 0x3e5000003e6, - 0x3e7000003e8, - 0x3e9000003ea, - 0x3eb000003ec, - 0x3ed000003ee, - 0x3ef000003f0, - 0x3f3000003f4, - 0x3f8000003f9, - 0x3fb000003fd, - 0x43000000460, - 0x46100000462, - 0x46300000464, - 0x46500000466, - 0x46700000468, - 0x4690000046a, - 0x46b0000046c, - 0x46d0000046e, - 0x46f00000470, - 0x47100000472, - 0x47300000474, - 0x47500000476, - 0x47700000478, - 0x4790000047a, - 0x47b0000047c, - 0x47d0000047e, - 0x47f00000480, - 0x48100000482, - 0x48300000488, - 0x48b0000048c, - 0x48d0000048e, - 0x48f00000490, - 0x49100000492, - 0x49300000494, - 0x49500000496, - 0x49700000498, - 0x4990000049a, - 0x49b0000049c, - 0x49d0000049e, - 0x49f000004a0, - 0x4a1000004a2, - 0x4a3000004a4, - 0x4a5000004a6, - 0x4a7000004a8, - 0x4a9000004aa, - 0x4ab000004ac, - 0x4ad000004ae, - 0x4af000004b0, - 0x4b1000004b2, - 0x4b3000004b4, - 0x4b5000004b6, - 0x4b7000004b8, - 0x4b9000004ba, - 0x4bb000004bc, - 0x4bd000004be, - 0x4bf000004c0, - 0x4c2000004c3, - 0x4c4000004c5, - 0x4c6000004c7, - 0x4c8000004c9, - 0x4ca000004cb, - 0x4cc000004cd, - 0x4ce000004d0, - 0x4d1000004d2, - 0x4d3000004d4, - 0x4d5000004d6, - 0x4d7000004d8, - 0x4d9000004da, - 0x4db000004dc, - 0x4dd000004de, - 0x4df000004e0, - 0x4e1000004e2, - 0x4e3000004e4, - 0x4e5000004e6, - 0x4e7000004e8, - 0x4e9000004ea, - 0x4eb000004ec, - 0x4ed000004ee, - 0x4ef000004f0, - 0x4f1000004f2, - 0x4f3000004f4, - 0x4f5000004f6, - 0x4f7000004f8, - 0x4f9000004fa, - 0x4fb000004fc, - 0x4fd000004fe, - 0x4ff00000500, - 0x50100000502, - 0x50300000504, - 0x50500000506, - 0x50700000508, - 0x5090000050a, - 0x50b0000050c, - 0x50d0000050e, - 0x50f00000510, - 0x51100000512, - 0x51300000514, - 0x51500000516, - 0x51700000518, - 0x5190000051a, - 0x51b0000051c, - 0x51d0000051e, - 0x51f00000520, - 0x52100000522, - 0x52300000524, - 0x52500000526, - 0x52700000528, - 0x5290000052a, - 0x52b0000052c, - 0x52d0000052e, - 0x52f00000530, - 0x5590000055a, - 0x56000000587, - 0x58800000589, - 0x591000005be, - 0x5bf000005c0, - 0x5c1000005c3, - 0x5c4000005c6, - 0x5c7000005c8, - 0x5d0000005eb, - 0x5ef000005f3, - 0x6100000061b, - 0x62000000640, - 0x64100000660, - 0x66e00000675, - 0x679000006d4, - 0x6d5000006dd, - 0x6df000006e9, - 0x6ea000006f0, - 0x6fa00000700, - 0x7100000074b, - 0x74d000007b2, - 0x7c0000007f6, - 0x7fd000007fe, - 0x8000000082e, - 0x8400000085c, - 0x8600000086b, - 0x87000000888, - 0x8890000088f, - 0x898000008e2, - 0x8e300000958, - 0x96000000964, - 0x96600000970, - 0x97100000984, - 0x9850000098d, - 0x98f00000991, - 0x993000009a9, - 0x9aa000009b1, - 0x9b2000009b3, - 0x9b6000009ba, - 0x9bc000009c5, - 0x9c7000009c9, - 0x9cb000009cf, - 0x9d7000009d8, - 0x9e0000009e4, - 0x9e6000009f2, - 0x9fc000009fd, - 0x9fe000009ff, - 0xa0100000a04, - 0xa0500000a0b, - 0xa0f00000a11, - 0xa1300000a29, - 0xa2a00000a31, - 0xa3200000a33, - 0xa3500000a36, - 0xa3800000a3a, - 0xa3c00000a3d, - 0xa3e00000a43, - 0xa4700000a49, - 0xa4b00000a4e, - 0xa5100000a52, - 0xa5c00000a5d, - 0xa6600000a76, - 0xa8100000a84, - 0xa8500000a8e, - 0xa8f00000a92, - 0xa9300000aa9, - 0xaaa00000ab1, - 0xab200000ab4, - 0xab500000aba, - 0xabc00000ac6, - 0xac700000aca, - 0xacb00000ace, - 0xad000000ad1, - 0xae000000ae4, - 0xae600000af0, - 0xaf900000b00, - 0xb0100000b04, - 0xb0500000b0d, - 0xb0f00000b11, - 0xb1300000b29, - 0xb2a00000b31, - 0xb3200000b34, - 0xb3500000b3a, - 0xb3c00000b45, - 0xb4700000b49, - 0xb4b00000b4e, - 0xb5500000b58, - 0xb5f00000b64, - 0xb6600000b70, - 0xb7100000b72, - 0xb8200000b84, - 0xb8500000b8b, - 0xb8e00000b91, - 0xb9200000b96, - 0xb9900000b9b, - 0xb9c00000b9d, - 0xb9e00000ba0, - 0xba300000ba5, - 0xba800000bab, - 0xbae00000bba, - 0xbbe00000bc3, - 0xbc600000bc9, - 0xbca00000bce, - 0xbd000000bd1, - 0xbd700000bd8, - 0xbe600000bf0, - 0xc0000000c0d, - 0xc0e00000c11, - 0xc1200000c29, - 0xc2a00000c3a, - 0xc3c00000c45, - 0xc4600000c49, - 0xc4a00000c4e, - 0xc5500000c57, - 0xc5800000c5b, - 0xc5d00000c5e, - 0xc6000000c64, - 0xc6600000c70, - 0xc8000000c84, - 0xc8500000c8d, - 0xc8e00000c91, - 0xc9200000ca9, - 0xcaa00000cb4, - 0xcb500000cba, - 0xcbc00000cc5, - 0xcc600000cc9, - 0xcca00000cce, - 0xcd500000cd7, - 0xcdd00000cdf, - 0xce000000ce4, - 0xce600000cf0, - 0xcf100000cf4, - 0xd0000000d0d, - 0xd0e00000d11, - 0xd1200000d45, - 0xd4600000d49, - 0xd4a00000d4f, - 0xd5400000d58, - 0xd5f00000d64, - 0xd6600000d70, - 0xd7a00000d80, - 0xd8100000d84, - 0xd8500000d97, - 0xd9a00000db2, - 0xdb300000dbc, - 0xdbd00000dbe, - 0xdc000000dc7, - 0xdca00000dcb, - 0xdcf00000dd5, - 0xdd600000dd7, - 0xdd800000de0, - 0xde600000df0, - 0xdf200000df4, - 0xe0100000e33, - 0xe3400000e3b, - 0xe4000000e4f, - 0xe5000000e5a, - 0xe8100000e83, - 0xe8400000e85, - 0xe8600000e8b, - 0xe8c00000ea4, - 0xea500000ea6, - 0xea700000eb3, - 0xeb400000ebe, - 0xec000000ec5, - 0xec600000ec7, - 0xec800000ecf, - 0xed000000eda, - 0xede00000ee0, - 0xf0000000f01, - 0xf0b00000f0c, - 0xf1800000f1a, - 0xf2000000f2a, - 0xf3500000f36, - 0xf3700000f38, - 0xf3900000f3a, - 0xf3e00000f43, - 0xf4400000f48, - 0xf4900000f4d, - 0xf4e00000f52, - 0xf5300000f57, - 0xf5800000f5c, - 0xf5d00000f69, - 0xf6a00000f6d, - 0xf7100000f73, - 0xf7400000f75, - 0xf7a00000f81, - 0xf8200000f85, - 0xf8600000f93, - 0xf9400000f98, - 0xf9900000f9d, - 0xf9e00000fa2, - 0xfa300000fa7, - 0xfa800000fac, - 0xfad00000fb9, - 0xfba00000fbd, - 0xfc600000fc7, - 0x10000000104a, - 0x10500000109e, - 0x10d0000010fb, - 0x10fd00001100, - 0x120000001249, - 0x124a0000124e, - 0x125000001257, - 0x125800001259, - 0x125a0000125e, - 0x126000001289, - 0x128a0000128e, - 0x1290000012b1, - 0x12b2000012b6, - 0x12b8000012bf, - 0x12c0000012c1, - 0x12c2000012c6, - 0x12c8000012d7, - 0x12d800001311, - 0x131200001316, - 0x13180000135b, - 0x135d00001360, - 0x138000001390, - 0x13a0000013f6, - 0x14010000166d, - 0x166f00001680, - 0x16810000169b, - 0x16a0000016eb, - 0x16f1000016f9, - 0x170000001716, - 0x171f00001735, - 0x174000001754, - 0x17600000176d, - 0x176e00001771, - 0x177200001774, - 0x1780000017b4, - 0x17b6000017d4, - 0x17d7000017d8, - 0x17dc000017de, - 0x17e0000017ea, - 0x18100000181a, - 0x182000001879, - 0x1880000018ab, - 0x18b0000018f6, - 0x19000000191f, - 0x19200000192c, - 0x19300000193c, - 0x19460000196e, - 0x197000001975, - 0x1980000019ac, - 0x19b0000019ca, - 0x19d0000019da, - 0x1a0000001a1c, - 0x1a2000001a5f, - 0x1a6000001a7d, - 0x1a7f00001a8a, - 0x1a9000001a9a, - 0x1aa700001aa8, - 0x1ab000001abe, - 0x1abf00001acf, - 0x1b0000001b4d, - 0x1b5000001b5a, - 0x1b6b00001b74, - 0x1b8000001bf4, - 0x1c0000001c38, - 0x1c4000001c4a, - 0x1c4d00001c7e, - 0x1cd000001cd3, - 0x1cd400001cfb, - 0x1d0000001d2c, - 0x1d2f00001d30, - 0x1d3b00001d3c, - 0x1d4e00001d4f, - 0x1d6b00001d78, - 0x1d7900001d9b, - 0x1dc000001e00, - 0x1e0100001e02, - 0x1e0300001e04, - 0x1e0500001e06, - 0x1e0700001e08, - 0x1e0900001e0a, - 0x1e0b00001e0c, - 0x1e0d00001e0e, - 0x1e0f00001e10, - 0x1e1100001e12, - 0x1e1300001e14, - 0x1e1500001e16, - 0x1e1700001e18, - 0x1e1900001e1a, - 0x1e1b00001e1c, - 0x1e1d00001e1e, - 0x1e1f00001e20, - 0x1e2100001e22, - 0x1e2300001e24, - 0x1e2500001e26, - 0x1e2700001e28, - 0x1e2900001e2a, - 0x1e2b00001e2c, - 0x1e2d00001e2e, - 0x1e2f00001e30, - 0x1e3100001e32, - 0x1e3300001e34, - 0x1e3500001e36, - 0x1e3700001e38, - 0x1e3900001e3a, - 0x1e3b00001e3c, - 0x1e3d00001e3e, - 0x1e3f00001e40, - 0x1e4100001e42, - 0x1e4300001e44, - 0x1e4500001e46, - 0x1e4700001e48, - 0x1e4900001e4a, - 0x1e4b00001e4c, - 0x1e4d00001e4e, - 0x1e4f00001e50, - 0x1e5100001e52, - 0x1e5300001e54, - 0x1e5500001e56, - 0x1e5700001e58, - 0x1e5900001e5a, - 0x1e5b00001e5c, - 0x1e5d00001e5e, - 0x1e5f00001e60, - 0x1e6100001e62, - 0x1e6300001e64, - 0x1e6500001e66, - 0x1e6700001e68, - 0x1e6900001e6a, - 0x1e6b00001e6c, - 0x1e6d00001e6e, - 0x1e6f00001e70, - 0x1e7100001e72, - 0x1e7300001e74, - 0x1e7500001e76, - 0x1e7700001e78, - 0x1e7900001e7a, - 0x1e7b00001e7c, - 0x1e7d00001e7e, - 0x1e7f00001e80, - 0x1e8100001e82, - 0x1e8300001e84, - 0x1e8500001e86, - 0x1e8700001e88, - 0x1e8900001e8a, - 0x1e8b00001e8c, - 0x1e8d00001e8e, - 0x1e8f00001e90, - 0x1e9100001e92, - 0x1e9300001e94, - 0x1e9500001e9a, - 0x1e9c00001e9e, - 0x1e9f00001ea0, - 0x1ea100001ea2, - 0x1ea300001ea4, - 0x1ea500001ea6, - 0x1ea700001ea8, - 0x1ea900001eaa, - 0x1eab00001eac, - 0x1ead00001eae, - 0x1eaf00001eb0, - 0x1eb100001eb2, - 0x1eb300001eb4, - 0x1eb500001eb6, - 0x1eb700001eb8, - 0x1eb900001eba, - 0x1ebb00001ebc, - 0x1ebd00001ebe, - 0x1ebf00001ec0, - 0x1ec100001ec2, - 0x1ec300001ec4, - 0x1ec500001ec6, - 0x1ec700001ec8, - 0x1ec900001eca, - 0x1ecb00001ecc, - 0x1ecd00001ece, - 0x1ecf00001ed0, - 0x1ed100001ed2, - 0x1ed300001ed4, - 0x1ed500001ed6, - 0x1ed700001ed8, - 0x1ed900001eda, - 0x1edb00001edc, - 0x1edd00001ede, - 0x1edf00001ee0, - 0x1ee100001ee2, - 0x1ee300001ee4, - 0x1ee500001ee6, - 0x1ee700001ee8, - 0x1ee900001eea, - 0x1eeb00001eec, - 0x1eed00001eee, - 0x1eef00001ef0, - 0x1ef100001ef2, - 0x1ef300001ef4, - 0x1ef500001ef6, - 0x1ef700001ef8, - 0x1ef900001efa, - 0x1efb00001efc, - 0x1efd00001efe, - 0x1eff00001f08, - 0x1f1000001f16, - 0x1f2000001f28, - 0x1f3000001f38, - 0x1f4000001f46, - 0x1f5000001f58, - 0x1f6000001f68, - 0x1f7000001f71, - 0x1f7200001f73, - 0x1f7400001f75, - 0x1f7600001f77, - 0x1f7800001f79, - 0x1f7a00001f7b, - 0x1f7c00001f7d, - 0x1fb000001fb2, - 0x1fb600001fb7, - 0x1fc600001fc7, - 0x1fd000001fd3, - 0x1fd600001fd8, - 0x1fe000001fe3, - 0x1fe400001fe8, - 0x1ff600001ff7, - 0x214e0000214f, - 0x218400002185, - 0x2c3000002c60, - 0x2c6100002c62, - 0x2c6500002c67, - 0x2c6800002c69, - 0x2c6a00002c6b, - 0x2c6c00002c6d, - 0x2c7100002c72, - 0x2c7300002c75, - 0x2c7600002c7c, - 0x2c8100002c82, - 0x2c8300002c84, - 0x2c8500002c86, - 0x2c8700002c88, - 0x2c8900002c8a, - 0x2c8b00002c8c, - 0x2c8d00002c8e, - 0x2c8f00002c90, - 0x2c9100002c92, - 0x2c9300002c94, - 0x2c9500002c96, - 0x2c9700002c98, - 0x2c9900002c9a, - 0x2c9b00002c9c, - 0x2c9d00002c9e, - 0x2c9f00002ca0, - 0x2ca100002ca2, - 0x2ca300002ca4, - 0x2ca500002ca6, - 0x2ca700002ca8, - 0x2ca900002caa, - 0x2cab00002cac, - 0x2cad00002cae, - 0x2caf00002cb0, - 0x2cb100002cb2, - 0x2cb300002cb4, - 0x2cb500002cb6, - 0x2cb700002cb8, - 0x2cb900002cba, - 0x2cbb00002cbc, - 0x2cbd00002cbe, - 0x2cbf00002cc0, - 0x2cc100002cc2, - 0x2cc300002cc4, - 0x2cc500002cc6, - 0x2cc700002cc8, - 0x2cc900002cca, - 0x2ccb00002ccc, - 0x2ccd00002cce, - 0x2ccf00002cd0, - 0x2cd100002cd2, - 0x2cd300002cd4, - 0x2cd500002cd6, - 0x2cd700002cd8, - 0x2cd900002cda, - 0x2cdb00002cdc, - 0x2cdd00002cde, - 0x2cdf00002ce0, - 0x2ce100002ce2, - 0x2ce300002ce5, - 0x2cec00002ced, - 0x2cee00002cf2, - 0x2cf300002cf4, - 0x2d0000002d26, - 0x2d2700002d28, - 0x2d2d00002d2e, - 0x2d3000002d68, - 0x2d7f00002d97, - 0x2da000002da7, - 0x2da800002daf, - 0x2db000002db7, - 0x2db800002dbf, - 0x2dc000002dc7, - 0x2dc800002dcf, - 0x2dd000002dd7, - 0x2dd800002ddf, - 0x2de000002e00, - 0x2e2f00002e30, - 0x300500003008, - 0x302a0000302e, - 0x303c0000303d, - 0x304100003097, - 0x30990000309b, - 0x309d0000309f, - 0x30a1000030fb, - 0x30fc000030ff, - 0x310500003130, - 0x31a0000031c0, - 0x31f000003200, - 0x340000004dc0, - 0x4e000000a48d, - 0xa4d00000a4fe, - 0xa5000000a60d, - 0xa6100000a62c, - 0xa6410000a642, - 0xa6430000a644, - 0xa6450000a646, - 0xa6470000a648, - 0xa6490000a64a, - 0xa64b0000a64c, - 0xa64d0000a64e, - 0xa64f0000a650, - 0xa6510000a652, - 0xa6530000a654, - 0xa6550000a656, - 0xa6570000a658, - 0xa6590000a65a, - 0xa65b0000a65c, - 0xa65d0000a65e, - 0xa65f0000a660, - 0xa6610000a662, - 0xa6630000a664, - 0xa6650000a666, - 0xa6670000a668, - 0xa6690000a66a, - 0xa66b0000a66c, - 0xa66d0000a670, - 0xa6740000a67e, - 0xa67f0000a680, - 0xa6810000a682, - 0xa6830000a684, - 0xa6850000a686, - 0xa6870000a688, - 0xa6890000a68a, - 0xa68b0000a68c, - 0xa68d0000a68e, - 0xa68f0000a690, - 0xa6910000a692, - 0xa6930000a694, - 0xa6950000a696, - 0xa6970000a698, - 0xa6990000a69a, - 0xa69b0000a69c, - 0xa69e0000a6e6, - 0xa6f00000a6f2, - 0xa7170000a720, - 0xa7230000a724, - 0xa7250000a726, - 0xa7270000a728, - 0xa7290000a72a, - 0xa72b0000a72c, - 0xa72d0000a72e, - 0xa72f0000a732, - 0xa7330000a734, - 0xa7350000a736, - 0xa7370000a738, - 0xa7390000a73a, - 0xa73b0000a73c, - 0xa73d0000a73e, - 0xa73f0000a740, - 0xa7410000a742, - 0xa7430000a744, - 0xa7450000a746, - 0xa7470000a748, - 0xa7490000a74a, - 0xa74b0000a74c, - 0xa74d0000a74e, - 0xa74f0000a750, - 0xa7510000a752, - 0xa7530000a754, - 0xa7550000a756, - 0xa7570000a758, - 0xa7590000a75a, - 0xa75b0000a75c, - 0xa75d0000a75e, - 0xa75f0000a760, - 0xa7610000a762, - 0xa7630000a764, - 0xa7650000a766, - 0xa7670000a768, - 0xa7690000a76a, - 0xa76b0000a76c, - 0xa76d0000a76e, - 0xa76f0000a770, - 0xa7710000a779, - 0xa77a0000a77b, - 0xa77c0000a77d, - 0xa77f0000a780, - 0xa7810000a782, - 0xa7830000a784, - 0xa7850000a786, - 0xa7870000a789, - 0xa78c0000a78d, - 0xa78e0000a790, - 0xa7910000a792, - 0xa7930000a796, - 0xa7970000a798, - 0xa7990000a79a, - 0xa79b0000a79c, - 0xa79d0000a79e, - 0xa79f0000a7a0, - 0xa7a10000a7a2, - 0xa7a30000a7a4, - 0xa7a50000a7a6, - 0xa7a70000a7a8, - 0xa7a90000a7aa, - 0xa7af0000a7b0, - 0xa7b50000a7b6, - 0xa7b70000a7b8, - 0xa7b90000a7ba, - 0xa7bb0000a7bc, - 0xa7bd0000a7be, - 0xa7bf0000a7c0, - 0xa7c10000a7c2, - 0xa7c30000a7c4, - 0xa7c80000a7c9, - 0xa7ca0000a7cb, - 0xa7d10000a7d2, - 0xa7d30000a7d4, - 0xa7d50000a7d6, - 0xa7d70000a7d8, - 0xa7d90000a7da, - 0xa7f20000a7f5, - 0xa7f60000a7f8, - 0xa7fa0000a828, - 0xa82c0000a82d, - 0xa8400000a874, - 0xa8800000a8c6, - 0xa8d00000a8da, - 0xa8e00000a8f8, - 0xa8fb0000a8fc, - 0xa8fd0000a92e, - 0xa9300000a954, - 0xa9800000a9c1, - 0xa9cf0000a9da, - 0xa9e00000a9ff, - 0xaa000000aa37, - 0xaa400000aa4e, - 0xaa500000aa5a, - 0xaa600000aa77, - 0xaa7a0000aac3, - 0xaadb0000aade, - 0xaae00000aaf0, - 0xaaf20000aaf7, - 0xab010000ab07, - 0xab090000ab0f, - 0xab110000ab17, - 0xab200000ab27, - 0xab280000ab2f, - 0xab300000ab5b, - 0xab600000ab69, - 0xabc00000abeb, - 0xabec0000abee, - 0xabf00000abfa, - 0xac000000d7a4, - 0xfa0e0000fa10, - 0xfa110000fa12, - 0xfa130000fa15, - 0xfa1f0000fa20, - 0xfa210000fa22, - 0xfa230000fa25, - 0xfa270000fa2a, - 0xfb1e0000fb1f, - 0xfe200000fe30, - 0xfe730000fe74, - 0x100000001000c, - 0x1000d00010027, - 0x100280001003b, - 0x1003c0001003e, - 0x1003f0001004e, - 0x100500001005e, - 0x10080000100fb, - 0x101fd000101fe, - 0x102800001029d, - 0x102a0000102d1, - 0x102e0000102e1, - 0x1030000010320, - 0x1032d00010341, - 0x103420001034a, - 0x103500001037b, - 0x103800001039e, - 0x103a0000103c4, - 0x103c8000103d0, - 0x104280001049e, - 0x104a0000104aa, - 0x104d8000104fc, - 0x1050000010528, - 0x1053000010564, - 0x10597000105a2, - 0x105a3000105b2, - 0x105b3000105ba, - 0x105bb000105bd, - 0x1060000010737, - 0x1074000010756, - 0x1076000010768, - 0x1078000010786, - 0x10787000107b1, - 0x107b2000107bb, - 0x1080000010806, - 0x1080800010809, - 0x1080a00010836, - 0x1083700010839, - 0x1083c0001083d, - 0x1083f00010856, - 0x1086000010877, - 0x108800001089f, - 0x108e0000108f3, - 0x108f4000108f6, - 0x1090000010916, - 0x109200001093a, - 0x10980000109b8, - 0x109be000109c0, - 0x10a0000010a04, - 0x10a0500010a07, - 0x10a0c00010a14, - 0x10a1500010a18, - 0x10a1900010a36, - 0x10a3800010a3b, - 0x10a3f00010a40, - 0x10a6000010a7d, - 0x10a8000010a9d, - 0x10ac000010ac8, - 0x10ac900010ae7, - 0x10b0000010b36, - 0x10b4000010b56, - 0x10b6000010b73, - 0x10b8000010b92, - 0x10c0000010c49, - 0x10cc000010cf3, - 0x10d0000010d28, - 0x10d3000010d3a, - 0x10e8000010eaa, - 0x10eab00010ead, - 0x10eb000010eb2, - 0x10efd00010f1d, - 0x10f2700010f28, - 0x10f3000010f51, - 0x10f7000010f86, - 0x10fb000010fc5, - 0x10fe000010ff7, - 0x1100000011047, - 0x1106600011076, - 0x1107f000110bb, - 0x110c2000110c3, - 0x110d0000110e9, - 0x110f0000110fa, - 0x1110000011135, - 0x1113600011140, - 0x1114400011148, - 0x1115000011174, - 0x1117600011177, - 0x11180000111c5, - 0x111c9000111cd, - 0x111ce000111db, - 0x111dc000111dd, - 0x1120000011212, - 0x1121300011238, - 0x1123e00011242, - 0x1128000011287, - 0x1128800011289, - 0x1128a0001128e, - 0x1128f0001129e, - 0x1129f000112a9, - 0x112b0000112eb, - 0x112f0000112fa, - 0x1130000011304, - 0x113050001130d, - 0x1130f00011311, - 0x1131300011329, - 0x1132a00011331, - 0x1133200011334, - 0x113350001133a, - 0x1133b00011345, - 0x1134700011349, - 0x1134b0001134e, - 0x1135000011351, - 0x1135700011358, - 0x1135d00011364, - 0x113660001136d, - 0x1137000011375, - 0x114000001144b, - 0x114500001145a, - 0x1145e00011462, - 0x11480000114c6, - 0x114c7000114c8, - 0x114d0000114da, - 0x11580000115b6, - 0x115b8000115c1, - 0x115d8000115de, - 0x1160000011641, - 0x1164400011645, - 0x116500001165a, - 0x11680000116b9, - 0x116c0000116ca, - 0x117000001171b, - 0x1171d0001172c, - 0x117300001173a, - 0x1174000011747, - 0x118000001183b, - 0x118c0000118ea, - 0x118ff00011907, - 0x119090001190a, - 0x1190c00011914, - 0x1191500011917, - 0x1191800011936, - 0x1193700011939, - 0x1193b00011944, - 0x119500001195a, - 0x119a0000119a8, - 0x119aa000119d8, - 0x119da000119e2, - 0x119e3000119e5, - 0x11a0000011a3f, - 0x11a4700011a48, - 0x11a5000011a9a, - 0x11a9d00011a9e, - 0x11ab000011af9, - 0x11c0000011c09, - 0x11c0a00011c37, - 0x11c3800011c41, - 0x11c5000011c5a, - 0x11c7200011c90, - 0x11c9200011ca8, - 0x11ca900011cb7, - 0x11d0000011d07, - 0x11d0800011d0a, - 0x11d0b00011d37, - 0x11d3a00011d3b, - 0x11d3c00011d3e, - 0x11d3f00011d48, - 0x11d5000011d5a, - 0x11d6000011d66, - 0x11d6700011d69, - 0x11d6a00011d8f, - 0x11d9000011d92, - 0x11d9300011d99, - 0x11da000011daa, - 0x11ee000011ef7, - 0x11f0000011f11, - 0x11f1200011f3b, - 0x11f3e00011f43, - 0x11f5000011f5a, - 0x11fb000011fb1, - 0x120000001239a, - 0x1248000012544, - 0x12f9000012ff1, - 0x1300000013430, - 0x1344000013456, - 0x1440000014647, - 0x1680000016a39, - 0x16a4000016a5f, - 0x16a6000016a6a, - 0x16a7000016abf, - 0x16ac000016aca, - 0x16ad000016aee, - 0x16af000016af5, - 0x16b0000016b37, - 0x16b4000016b44, - 0x16b5000016b5a, - 0x16b6300016b78, - 0x16b7d00016b90, - 0x16e6000016e80, - 0x16f0000016f4b, - 0x16f4f00016f88, - 0x16f8f00016fa0, - 0x16fe000016fe2, - 0x16fe300016fe5, - 0x16ff000016ff2, - 0x17000000187f8, - 0x1880000018cd6, - 0x18d0000018d09, - 0x1aff00001aff4, - 0x1aff50001affc, - 0x1affd0001afff, - 0x1b0000001b123, - 0x1b1320001b133, - 0x1b1500001b153, - 0x1b1550001b156, - 0x1b1640001b168, - 0x1b1700001b2fc, - 0x1bc000001bc6b, - 0x1bc700001bc7d, - 0x1bc800001bc89, - 0x1bc900001bc9a, - 0x1bc9d0001bc9f, - 0x1cf000001cf2e, - 0x1cf300001cf47, - 0x1da000001da37, - 0x1da3b0001da6d, - 0x1da750001da76, - 0x1da840001da85, - 0x1da9b0001daa0, - 0x1daa10001dab0, - 0x1df000001df1f, - 0x1df250001df2b, - 0x1e0000001e007, - 0x1e0080001e019, - 0x1e01b0001e022, - 0x1e0230001e025, - 0x1e0260001e02b, - 0x1e0300001e06e, - 0x1e08f0001e090, - 0x1e1000001e12d, - 0x1e1300001e13e, - 0x1e1400001e14a, - 0x1e14e0001e14f, - 0x1e2900001e2af, - 0x1e2c00001e2fa, - 0x1e4d00001e4fa, - 0x1e7e00001e7e7, - 0x1e7e80001e7ec, - 0x1e7ed0001e7ef, - 0x1e7f00001e7ff, - 0x1e8000001e8c5, - 0x1e8d00001e8d7, - 0x1e9220001e94c, - 0x1e9500001e95a, - 0x200000002a6e0, - 0x2a7000002b73a, - 0x2b7400002b81e, - 0x2b8200002cea2, - 0x2ceb00002ebe1, - 0x300000003134b, - 0x31350000323b0, - ), - 'CONTEXTJ': ( - 0x200c0000200e, - ), - 'CONTEXTO': ( - 0xb7000000b8, - 0x37500000376, - 0x5f3000005f5, - 0x6600000066a, - 0x6f0000006fa, - 0x30fb000030fc, - ), -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py deleted file mode 100644 index 6a43b04..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -Given a list of integers, made up of (hopefully) a small number of long runs -of consecutive integers, compute a representation of the form -((start1, end1), (start2, end2) ...). Then answer the question "was x present -in the original list?" in time O(log(# runs)). -""" - -import bisect -from typing import List, Tuple - -def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: - """Represent a list of integers as a sequence of ranges: - ((start_0, end_0), (start_1, end_1), ...), such that the original - integers are exactly those x such that start_i <= x < end_i for some i. - - Ranges are encoded as single integers (start << 32 | end), not as tuples. - """ - - sorted_list = sorted(list_) - ranges = [] - last_write = -1 - for i in range(len(sorted_list)): - if i+1 < len(sorted_list): - if sorted_list[i] == sorted_list[i+1]-1: - continue - current_range = sorted_list[last_write+1:i+1] - ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) - last_write = i - - return tuple(ranges) - -def _encode_range(start: int, end: int) -> int: - return (start << 32) | end - -def _decode_range(r: int) -> Tuple[int, int]: - return (r >> 32), (r & ((1 << 32) - 1)) - - -def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: - """Determine if `int_` falls into one of the ranges in `ranges`.""" - tuple_ = _encode_range(int_, 0) - pos = bisect.bisect_left(ranges, tuple_) - # we could be immediately ahead of a tuple (start, end) - # with start < int_ <= end - if pos > 0: - left, right = _decode_range(ranges[pos-1]) - if left <= int_ < right: - return True - # or we could be immediately behind a tuple (int_, end) - if pos < len(ranges): - left, _ = _decode_range(ranges[pos]) - if left == int_: - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py deleted file mode 100644 index 8501893..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py +++ /dev/null @@ -1,2 +0,0 @@ -__version__ = '3.4' - diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py deleted file mode 100644 index 186796c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py +++ /dev/null @@ -1,8600 +0,0 @@ -# This file is automatically generated by tools/idna-data -# vim: set fileencoding=utf-8 : - -from typing import List, Tuple, Union - - -"""IDNA Mapping Table from UTS46.""" - - -__version__ = '15.0.0' -def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x0, '3'), - (0x1, '3'), - (0x2, '3'), - (0x3, '3'), - (0x4, '3'), - (0x5, '3'), - (0x6, '3'), - (0x7, '3'), - (0x8, '3'), - (0x9, '3'), - (0xA, '3'), - (0xB, '3'), - (0xC, '3'), - (0xD, '3'), - (0xE, '3'), - (0xF, '3'), - (0x10, '3'), - (0x11, '3'), - (0x12, '3'), - (0x13, '3'), - (0x14, '3'), - (0x15, '3'), - (0x16, '3'), - (0x17, '3'), - (0x18, '3'), - (0x19, '3'), - (0x1A, '3'), - (0x1B, '3'), - (0x1C, '3'), - (0x1D, '3'), - (0x1E, '3'), - (0x1F, '3'), - (0x20, '3'), - (0x21, '3'), - (0x22, '3'), - (0x23, '3'), - (0x24, '3'), - (0x25, '3'), - (0x26, '3'), - (0x27, '3'), - (0x28, '3'), - (0x29, '3'), - (0x2A, '3'), - (0x2B, '3'), - (0x2C, '3'), - (0x2D, 'V'), - (0x2E, 'V'), - (0x2F, '3'), - (0x30, 'V'), - (0x31, 'V'), - (0x32, 'V'), - (0x33, 'V'), - (0x34, 'V'), - (0x35, 'V'), - (0x36, 'V'), - (0x37, 'V'), - (0x38, 'V'), - (0x39, 'V'), - (0x3A, '3'), - (0x3B, '3'), - (0x3C, '3'), - (0x3D, '3'), - (0x3E, '3'), - (0x3F, '3'), - (0x40, '3'), - (0x41, 'M', 'a'), - (0x42, 'M', 'b'), - (0x43, 'M', 'c'), - (0x44, 'M', 'd'), - (0x45, 'M', 'e'), - (0x46, 'M', 'f'), - (0x47, 'M', 'g'), - (0x48, 'M', 'h'), - (0x49, 'M', 'i'), - (0x4A, 'M', 'j'), - (0x4B, 'M', 'k'), - (0x4C, 'M', 'l'), - (0x4D, 'M', 'm'), - (0x4E, 'M', 'n'), - (0x4F, 'M', 'o'), - (0x50, 'M', 'p'), - (0x51, 'M', 'q'), - (0x52, 'M', 'r'), - (0x53, 'M', 's'), - (0x54, 'M', 't'), - (0x55, 'M', 'u'), - (0x56, 'M', 'v'), - (0x57, 'M', 'w'), - (0x58, 'M', 'x'), - (0x59, 'M', 'y'), - (0x5A, 'M', 'z'), - (0x5B, '3'), - (0x5C, '3'), - (0x5D, '3'), - (0x5E, '3'), - (0x5F, '3'), - (0x60, '3'), - (0x61, 'V'), - (0x62, 'V'), - (0x63, 'V'), - ] - -def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x64, 'V'), - (0x65, 'V'), - (0x66, 'V'), - (0x67, 'V'), - (0x68, 'V'), - (0x69, 'V'), - (0x6A, 'V'), - (0x6B, 'V'), - (0x6C, 'V'), - (0x6D, 'V'), - (0x6E, 'V'), - (0x6F, 'V'), - (0x70, 'V'), - (0x71, 'V'), - (0x72, 'V'), - (0x73, 'V'), - (0x74, 'V'), - (0x75, 'V'), - (0x76, 'V'), - (0x77, 'V'), - (0x78, 'V'), - (0x79, 'V'), - (0x7A, 'V'), - (0x7B, '3'), - (0x7C, '3'), - (0x7D, '3'), - (0x7E, '3'), - (0x7F, '3'), - (0x80, 'X'), - (0x81, 'X'), - (0x82, 'X'), - (0x83, 'X'), - (0x84, 'X'), - (0x85, 'X'), - (0x86, 'X'), - (0x87, 'X'), - (0x88, 'X'), - (0x89, 'X'), - (0x8A, 'X'), - (0x8B, 'X'), - (0x8C, 'X'), - (0x8D, 'X'), - (0x8E, 'X'), - (0x8F, 'X'), - (0x90, 'X'), - (0x91, 'X'), - (0x92, 'X'), - (0x93, 'X'), - (0x94, 'X'), - (0x95, 'X'), - (0x96, 'X'), - (0x97, 'X'), - (0x98, 'X'), - (0x99, 'X'), - (0x9A, 'X'), - (0x9B, 'X'), - (0x9C, 'X'), - (0x9D, 'X'), - (0x9E, 'X'), - (0x9F, 'X'), - (0xA0, '3', ' '), - (0xA1, 'V'), - (0xA2, 'V'), - (0xA3, 'V'), - (0xA4, 'V'), - (0xA5, 'V'), - (0xA6, 'V'), - (0xA7, 'V'), - (0xA8, '3', ' ̈'), - (0xA9, 'V'), - (0xAA, 'M', 'a'), - (0xAB, 'V'), - (0xAC, 'V'), - (0xAD, 'I'), - (0xAE, 'V'), - (0xAF, '3', ' ̄'), - (0xB0, 'V'), - (0xB1, 'V'), - (0xB2, 'M', '2'), - (0xB3, 'M', '3'), - (0xB4, '3', ' ́'), - (0xB5, 'M', 'μ'), - (0xB6, 'V'), - (0xB7, 'V'), - (0xB8, '3', ' ̧'), - (0xB9, 'M', '1'), - (0xBA, 'M', 'o'), - (0xBB, 'V'), - (0xBC, 'M', '1⁄4'), - (0xBD, 'M', '1⁄2'), - (0xBE, 'M', '3⁄4'), - (0xBF, 'V'), - (0xC0, 'M', 'à'), - (0xC1, 'M', 'á'), - (0xC2, 'M', 'â'), - (0xC3, 'M', 'ã'), - (0xC4, 'M', 'ä'), - (0xC5, 'M', 'å'), - (0xC6, 'M', 'æ'), - (0xC7, 'M', 'ç'), - ] - -def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xC8, 'M', 'è'), - (0xC9, 'M', 'é'), - (0xCA, 'M', 'ê'), - (0xCB, 'M', 'ë'), - (0xCC, 'M', 'ì'), - (0xCD, 'M', 'í'), - (0xCE, 'M', 'î'), - (0xCF, 'M', 'ï'), - (0xD0, 'M', 'ð'), - (0xD1, 'M', 'ñ'), - (0xD2, 'M', 'ò'), - (0xD3, 'M', 'ó'), - (0xD4, 'M', 'ô'), - (0xD5, 'M', 'õ'), - (0xD6, 'M', 'ö'), - (0xD7, 'V'), - (0xD8, 'M', 'ø'), - (0xD9, 'M', 'ù'), - (0xDA, 'M', 'ú'), - (0xDB, 'M', 'û'), - (0xDC, 'M', 'ü'), - (0xDD, 'M', 'ý'), - (0xDE, 'M', 'þ'), - (0xDF, 'D', 'ss'), - (0xE0, 'V'), - (0xE1, 'V'), - (0xE2, 'V'), - (0xE3, 'V'), - (0xE4, 'V'), - (0xE5, 'V'), - (0xE6, 'V'), - (0xE7, 'V'), - (0xE8, 'V'), - (0xE9, 'V'), - (0xEA, 'V'), - (0xEB, 'V'), - (0xEC, 'V'), - (0xED, 'V'), - (0xEE, 'V'), - (0xEF, 'V'), - (0xF0, 'V'), - (0xF1, 'V'), - (0xF2, 'V'), - (0xF3, 'V'), - (0xF4, 'V'), - (0xF5, 'V'), - (0xF6, 'V'), - (0xF7, 'V'), - (0xF8, 'V'), - (0xF9, 'V'), - (0xFA, 'V'), - (0xFB, 'V'), - (0xFC, 'V'), - (0xFD, 'V'), - (0xFE, 'V'), - (0xFF, 'V'), - (0x100, 'M', 'ā'), - (0x101, 'V'), - (0x102, 'M', 'ă'), - (0x103, 'V'), - (0x104, 'M', 'ą'), - (0x105, 'V'), - (0x106, 'M', 'ć'), - (0x107, 'V'), - (0x108, 'M', 'ĉ'), - (0x109, 'V'), - (0x10A, 'M', 'ċ'), - (0x10B, 'V'), - (0x10C, 'M', 'č'), - (0x10D, 'V'), - (0x10E, 'M', 'ď'), - (0x10F, 'V'), - (0x110, 'M', 'đ'), - (0x111, 'V'), - (0x112, 'M', 'ē'), - (0x113, 'V'), - (0x114, 'M', 'ĕ'), - (0x115, 'V'), - (0x116, 'M', 'ė'), - (0x117, 'V'), - (0x118, 'M', 'ę'), - (0x119, 'V'), - (0x11A, 'M', 'ě'), - (0x11B, 'V'), - (0x11C, 'M', 'ĝ'), - (0x11D, 'V'), - (0x11E, 'M', 'ğ'), - (0x11F, 'V'), - (0x120, 'M', 'ġ'), - (0x121, 'V'), - (0x122, 'M', 'ģ'), - (0x123, 'V'), - (0x124, 'M', 'ĥ'), - (0x125, 'V'), - (0x126, 'M', 'ħ'), - (0x127, 'V'), - (0x128, 'M', 'ĩ'), - (0x129, 'V'), - (0x12A, 'M', 'ī'), - (0x12B, 'V'), - ] - -def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x12C, 'M', 'ĭ'), - (0x12D, 'V'), - (0x12E, 'M', 'į'), - (0x12F, 'V'), - (0x130, 'M', 'i̇'), - (0x131, 'V'), - (0x132, 'M', 'ij'), - (0x134, 'M', 'ĵ'), - (0x135, 'V'), - (0x136, 'M', 'ķ'), - (0x137, 'V'), - (0x139, 'M', 'ĺ'), - (0x13A, 'V'), - (0x13B, 'M', 'ļ'), - (0x13C, 'V'), - (0x13D, 'M', 'ľ'), - (0x13E, 'V'), - (0x13F, 'M', 'l·'), - (0x141, 'M', 'ł'), - (0x142, 'V'), - (0x143, 'M', 'ń'), - (0x144, 'V'), - (0x145, 'M', 'ņ'), - (0x146, 'V'), - (0x147, 'M', 'ň'), - (0x148, 'V'), - (0x149, 'M', 'ʼn'), - (0x14A, 'M', 'ŋ'), - (0x14B, 'V'), - (0x14C, 'M', 'ō'), - (0x14D, 'V'), - (0x14E, 'M', 'ŏ'), - (0x14F, 'V'), - (0x150, 'M', 'ő'), - (0x151, 'V'), - (0x152, 'M', 'œ'), - (0x153, 'V'), - (0x154, 'M', 'ŕ'), - (0x155, 'V'), - (0x156, 'M', 'ŗ'), - (0x157, 'V'), - (0x158, 'M', 'ř'), - (0x159, 'V'), - (0x15A, 'M', 'ś'), - (0x15B, 'V'), - (0x15C, 'M', 'ŝ'), - (0x15D, 'V'), - (0x15E, 'M', 'ş'), - (0x15F, 'V'), - (0x160, 'M', 'š'), - (0x161, 'V'), - (0x162, 'M', 'ţ'), - (0x163, 'V'), - (0x164, 'M', 'ť'), - (0x165, 'V'), - (0x166, 'M', 'ŧ'), - (0x167, 'V'), - (0x168, 'M', 'ũ'), - (0x169, 'V'), - (0x16A, 'M', 'ū'), - (0x16B, 'V'), - (0x16C, 'M', 'ŭ'), - (0x16D, 'V'), - (0x16E, 'M', 'ů'), - (0x16F, 'V'), - (0x170, 'M', 'ű'), - (0x171, 'V'), - (0x172, 'M', 'ų'), - (0x173, 'V'), - (0x174, 'M', 'ŵ'), - (0x175, 'V'), - (0x176, 'M', 'ŷ'), - (0x177, 'V'), - (0x178, 'M', 'ÿ'), - (0x179, 'M', 'ź'), - (0x17A, 'V'), - (0x17B, 'M', 'ż'), - (0x17C, 'V'), - (0x17D, 'M', 'ž'), - (0x17E, 'V'), - (0x17F, 'M', 's'), - (0x180, 'V'), - (0x181, 'M', 'ɓ'), - (0x182, 'M', 'ƃ'), - (0x183, 'V'), - (0x184, 'M', 'ƅ'), - (0x185, 'V'), - (0x186, 'M', 'ɔ'), - (0x187, 'M', 'ƈ'), - (0x188, 'V'), - (0x189, 'M', 'ɖ'), - (0x18A, 'M', 'ɗ'), - (0x18B, 'M', 'ƌ'), - (0x18C, 'V'), - (0x18E, 'M', 'ǝ'), - (0x18F, 'M', 'ə'), - (0x190, 'M', 'ɛ'), - (0x191, 'M', 'ƒ'), - (0x192, 'V'), - (0x193, 'M', 'ɠ'), - ] - -def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x194, 'M', 'ɣ'), - (0x195, 'V'), - (0x196, 'M', 'ɩ'), - (0x197, 'M', 'ɨ'), - (0x198, 'M', 'ƙ'), - (0x199, 'V'), - (0x19C, 'M', 'ɯ'), - (0x19D, 'M', 'ɲ'), - (0x19E, 'V'), - (0x19F, 'M', 'ɵ'), - (0x1A0, 'M', 'ơ'), - (0x1A1, 'V'), - (0x1A2, 'M', 'ƣ'), - (0x1A3, 'V'), - (0x1A4, 'M', 'ƥ'), - (0x1A5, 'V'), - (0x1A6, 'M', 'ʀ'), - (0x1A7, 'M', 'ƨ'), - (0x1A8, 'V'), - (0x1A9, 'M', 'ʃ'), - (0x1AA, 'V'), - (0x1AC, 'M', 'ƭ'), - (0x1AD, 'V'), - (0x1AE, 'M', 'ʈ'), - (0x1AF, 'M', 'ư'), - (0x1B0, 'V'), - (0x1B1, 'M', 'ʊ'), - (0x1B2, 'M', 'ʋ'), - (0x1B3, 'M', 'ƴ'), - (0x1B4, 'V'), - (0x1B5, 'M', 'ƶ'), - (0x1B6, 'V'), - (0x1B7, 'M', 'ʒ'), - (0x1B8, 'M', 'ƹ'), - (0x1B9, 'V'), - (0x1BC, 'M', 'ƽ'), - (0x1BD, 'V'), - (0x1C4, 'M', 'dž'), - (0x1C7, 'M', 'lj'), - (0x1CA, 'M', 'nj'), - (0x1CD, 'M', 'ǎ'), - (0x1CE, 'V'), - (0x1CF, 'M', 'ǐ'), - (0x1D0, 'V'), - (0x1D1, 'M', 'ǒ'), - (0x1D2, 'V'), - (0x1D3, 'M', 'ǔ'), - (0x1D4, 'V'), - (0x1D5, 'M', 'ǖ'), - (0x1D6, 'V'), - (0x1D7, 'M', 'ǘ'), - (0x1D8, 'V'), - (0x1D9, 'M', 'ǚ'), - (0x1DA, 'V'), - (0x1DB, 'M', 'ǜ'), - (0x1DC, 'V'), - (0x1DE, 'M', 'ǟ'), - (0x1DF, 'V'), - (0x1E0, 'M', 'ǡ'), - (0x1E1, 'V'), - (0x1E2, 'M', 'ǣ'), - (0x1E3, 'V'), - (0x1E4, 'M', 'ǥ'), - (0x1E5, 'V'), - (0x1E6, 'M', 'ǧ'), - (0x1E7, 'V'), - (0x1E8, 'M', 'ǩ'), - (0x1E9, 'V'), - (0x1EA, 'M', 'ǫ'), - (0x1EB, 'V'), - (0x1EC, 'M', 'ǭ'), - (0x1ED, 'V'), - (0x1EE, 'M', 'ǯ'), - (0x1EF, 'V'), - (0x1F1, 'M', 'dz'), - (0x1F4, 'M', 'ǵ'), - (0x1F5, 'V'), - (0x1F6, 'M', 'ƕ'), - (0x1F7, 'M', 'ƿ'), - (0x1F8, 'M', 'ǹ'), - (0x1F9, 'V'), - (0x1FA, 'M', 'ǻ'), - (0x1FB, 'V'), - (0x1FC, 'M', 'ǽ'), - (0x1FD, 'V'), - (0x1FE, 'M', 'ǿ'), - (0x1FF, 'V'), - (0x200, 'M', 'ȁ'), - (0x201, 'V'), - (0x202, 'M', 'ȃ'), - (0x203, 'V'), - (0x204, 'M', 'ȅ'), - (0x205, 'V'), - (0x206, 'M', 'ȇ'), - (0x207, 'V'), - (0x208, 'M', 'ȉ'), - (0x209, 'V'), - (0x20A, 'M', 'ȋ'), - (0x20B, 'V'), - (0x20C, 'M', 'ȍ'), - ] - -def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x20D, 'V'), - (0x20E, 'M', 'ȏ'), - (0x20F, 'V'), - (0x210, 'M', 'ȑ'), - (0x211, 'V'), - (0x212, 'M', 'ȓ'), - (0x213, 'V'), - (0x214, 'M', 'ȕ'), - (0x215, 'V'), - (0x216, 'M', 'ȗ'), - (0x217, 'V'), - (0x218, 'M', 'ș'), - (0x219, 'V'), - (0x21A, 'M', 'ț'), - (0x21B, 'V'), - (0x21C, 'M', 'ȝ'), - (0x21D, 'V'), - (0x21E, 'M', 'ȟ'), - (0x21F, 'V'), - (0x220, 'M', 'ƞ'), - (0x221, 'V'), - (0x222, 'M', 'ȣ'), - (0x223, 'V'), - (0x224, 'M', 'ȥ'), - (0x225, 'V'), - (0x226, 'M', 'ȧ'), - (0x227, 'V'), - (0x228, 'M', 'ȩ'), - (0x229, 'V'), - (0x22A, 'M', 'ȫ'), - (0x22B, 'V'), - (0x22C, 'M', 'ȭ'), - (0x22D, 'V'), - (0x22E, 'M', 'ȯ'), - (0x22F, 'V'), - (0x230, 'M', 'ȱ'), - (0x231, 'V'), - (0x232, 'M', 'ȳ'), - (0x233, 'V'), - (0x23A, 'M', 'ⱥ'), - (0x23B, 'M', 'ȼ'), - (0x23C, 'V'), - (0x23D, 'M', 'ƚ'), - (0x23E, 'M', 'ⱦ'), - (0x23F, 'V'), - (0x241, 'M', 'ɂ'), - (0x242, 'V'), - (0x243, 'M', 'ƀ'), - (0x244, 'M', 'ʉ'), - (0x245, 'M', 'ʌ'), - (0x246, 'M', 'ɇ'), - (0x247, 'V'), - (0x248, 'M', 'ɉ'), - (0x249, 'V'), - (0x24A, 'M', 'ɋ'), - (0x24B, 'V'), - (0x24C, 'M', 'ɍ'), - (0x24D, 'V'), - (0x24E, 'M', 'ɏ'), - (0x24F, 'V'), - (0x2B0, 'M', 'h'), - (0x2B1, 'M', 'ɦ'), - (0x2B2, 'M', 'j'), - (0x2B3, 'M', 'r'), - (0x2B4, 'M', 'ɹ'), - (0x2B5, 'M', 'ɻ'), - (0x2B6, 'M', 'ʁ'), - (0x2B7, 'M', 'w'), - (0x2B8, 'M', 'y'), - (0x2B9, 'V'), - (0x2D8, '3', ' ̆'), - (0x2D9, '3', ' ̇'), - (0x2DA, '3', ' ̊'), - (0x2DB, '3', ' ̨'), - (0x2DC, '3', ' ̃'), - (0x2DD, '3', ' ̋'), - (0x2DE, 'V'), - (0x2E0, 'M', 'ɣ'), - (0x2E1, 'M', 'l'), - (0x2E2, 'M', 's'), - (0x2E3, 'M', 'x'), - (0x2E4, 'M', 'ʕ'), - (0x2E5, 'V'), - (0x340, 'M', '̀'), - (0x341, 'M', '́'), - (0x342, 'V'), - (0x343, 'M', '̓'), - (0x344, 'M', '̈́'), - (0x345, 'M', 'ι'), - (0x346, 'V'), - (0x34F, 'I'), - (0x350, 'V'), - (0x370, 'M', 'ͱ'), - (0x371, 'V'), - (0x372, 'M', 'ͳ'), - (0x373, 'V'), - (0x374, 'M', 'ʹ'), - (0x375, 'V'), - (0x376, 'M', 'ͷ'), - (0x377, 'V'), - ] - -def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x378, 'X'), - (0x37A, '3', ' ι'), - (0x37B, 'V'), - (0x37E, '3', ';'), - (0x37F, 'M', 'ϳ'), - (0x380, 'X'), - (0x384, '3', ' ́'), - (0x385, '3', ' ̈́'), - (0x386, 'M', 'ά'), - (0x387, 'M', '·'), - (0x388, 'M', 'έ'), - (0x389, 'M', 'ή'), - (0x38A, 'M', 'ί'), - (0x38B, 'X'), - (0x38C, 'M', 'ό'), - (0x38D, 'X'), - (0x38E, 'M', 'ύ'), - (0x38F, 'M', 'ώ'), - (0x390, 'V'), - (0x391, 'M', 'α'), - (0x392, 'M', 'β'), - (0x393, 'M', 'γ'), - (0x394, 'M', 'δ'), - (0x395, 'M', 'ε'), - (0x396, 'M', 'ζ'), - (0x397, 'M', 'η'), - (0x398, 'M', 'θ'), - (0x399, 'M', 'ι'), - (0x39A, 'M', 'κ'), - (0x39B, 'M', 'λ'), - (0x39C, 'M', 'μ'), - (0x39D, 'M', 'ν'), - (0x39E, 'M', 'ξ'), - (0x39F, 'M', 'ο'), - (0x3A0, 'M', 'π'), - (0x3A1, 'M', 'ρ'), - (0x3A2, 'X'), - (0x3A3, 'M', 'σ'), - (0x3A4, 'M', 'τ'), - (0x3A5, 'M', 'υ'), - (0x3A6, 'M', 'φ'), - (0x3A7, 'M', 'χ'), - (0x3A8, 'M', 'ψ'), - (0x3A9, 'M', 'ω'), - (0x3AA, 'M', 'ϊ'), - (0x3AB, 'M', 'ϋ'), - (0x3AC, 'V'), - (0x3C2, 'D', 'σ'), - (0x3C3, 'V'), - (0x3CF, 'M', 'ϗ'), - (0x3D0, 'M', 'β'), - (0x3D1, 'M', 'θ'), - (0x3D2, 'M', 'υ'), - (0x3D3, 'M', 'ύ'), - (0x3D4, 'M', 'ϋ'), - (0x3D5, 'M', 'φ'), - (0x3D6, 'M', 'π'), - (0x3D7, 'V'), - (0x3D8, 'M', 'ϙ'), - (0x3D9, 'V'), - (0x3DA, 'M', 'ϛ'), - (0x3DB, 'V'), - (0x3DC, 'M', 'ϝ'), - (0x3DD, 'V'), - (0x3DE, 'M', 'ϟ'), - (0x3DF, 'V'), - (0x3E0, 'M', 'ϡ'), - (0x3E1, 'V'), - (0x3E2, 'M', 'ϣ'), - (0x3E3, 'V'), - (0x3E4, 'M', 'ϥ'), - (0x3E5, 'V'), - (0x3E6, 'M', 'ϧ'), - (0x3E7, 'V'), - (0x3E8, 'M', 'ϩ'), - (0x3E9, 'V'), - (0x3EA, 'M', 'ϫ'), - (0x3EB, 'V'), - (0x3EC, 'M', 'ϭ'), - (0x3ED, 'V'), - (0x3EE, 'M', 'ϯ'), - (0x3EF, 'V'), - (0x3F0, 'M', 'κ'), - (0x3F1, 'M', 'ρ'), - (0x3F2, 'M', 'σ'), - (0x3F3, 'V'), - (0x3F4, 'M', 'θ'), - (0x3F5, 'M', 'ε'), - (0x3F6, 'V'), - (0x3F7, 'M', 'ϸ'), - (0x3F8, 'V'), - (0x3F9, 'M', 'σ'), - (0x3FA, 'M', 'ϻ'), - (0x3FB, 'V'), - (0x3FD, 'M', 'ͻ'), - (0x3FE, 'M', 'ͼ'), - (0x3FF, 'M', 'ͽ'), - (0x400, 'M', 'ѐ'), - (0x401, 'M', 'ё'), - (0x402, 'M', 'ђ'), - ] - -def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x403, 'M', 'ѓ'), - (0x404, 'M', 'є'), - (0x405, 'M', 'ѕ'), - (0x406, 'M', 'і'), - (0x407, 'M', 'ї'), - (0x408, 'M', 'ј'), - (0x409, 'M', 'љ'), - (0x40A, 'M', 'њ'), - (0x40B, 'M', 'ћ'), - (0x40C, 'M', 'ќ'), - (0x40D, 'M', 'ѝ'), - (0x40E, 'M', 'ў'), - (0x40F, 'M', 'џ'), - (0x410, 'M', 'а'), - (0x411, 'M', 'б'), - (0x412, 'M', 'в'), - (0x413, 'M', 'г'), - (0x414, 'M', 'д'), - (0x415, 'M', 'е'), - (0x416, 'M', 'ж'), - (0x417, 'M', 'з'), - (0x418, 'M', 'и'), - (0x419, 'M', 'й'), - (0x41A, 'M', 'к'), - (0x41B, 'M', 'л'), - (0x41C, 'M', 'м'), - (0x41D, 'M', 'н'), - (0x41E, 'M', 'о'), - (0x41F, 'M', 'п'), - (0x420, 'M', 'р'), - (0x421, 'M', 'с'), - (0x422, 'M', 'т'), - (0x423, 'M', 'у'), - (0x424, 'M', 'ф'), - (0x425, 'M', 'х'), - (0x426, 'M', 'ц'), - (0x427, 'M', 'ч'), - (0x428, 'M', 'ш'), - (0x429, 'M', 'щ'), - (0x42A, 'M', 'ъ'), - (0x42B, 'M', 'ы'), - (0x42C, 'M', 'ь'), - (0x42D, 'M', 'э'), - (0x42E, 'M', 'ю'), - (0x42F, 'M', 'я'), - (0x430, 'V'), - (0x460, 'M', 'ѡ'), - (0x461, 'V'), - (0x462, 'M', 'ѣ'), - (0x463, 'V'), - (0x464, 'M', 'ѥ'), - (0x465, 'V'), - (0x466, 'M', 'ѧ'), - (0x467, 'V'), - (0x468, 'M', 'ѩ'), - (0x469, 'V'), - (0x46A, 'M', 'ѫ'), - (0x46B, 'V'), - (0x46C, 'M', 'ѭ'), - (0x46D, 'V'), - (0x46E, 'M', 'ѯ'), - (0x46F, 'V'), - (0x470, 'M', 'ѱ'), - (0x471, 'V'), - (0x472, 'M', 'ѳ'), - (0x473, 'V'), - (0x474, 'M', 'ѵ'), - (0x475, 'V'), - (0x476, 'M', 'ѷ'), - (0x477, 'V'), - (0x478, 'M', 'ѹ'), - (0x479, 'V'), - (0x47A, 'M', 'ѻ'), - (0x47B, 'V'), - (0x47C, 'M', 'ѽ'), - (0x47D, 'V'), - (0x47E, 'M', 'ѿ'), - (0x47F, 'V'), - (0x480, 'M', 'ҁ'), - (0x481, 'V'), - (0x48A, 'M', 'ҋ'), - (0x48B, 'V'), - (0x48C, 'M', 'ҍ'), - (0x48D, 'V'), - (0x48E, 'M', 'ҏ'), - (0x48F, 'V'), - (0x490, 'M', 'ґ'), - (0x491, 'V'), - (0x492, 'M', 'ғ'), - (0x493, 'V'), - (0x494, 'M', 'ҕ'), - (0x495, 'V'), - (0x496, 'M', 'җ'), - (0x497, 'V'), - (0x498, 'M', 'ҙ'), - (0x499, 'V'), - (0x49A, 'M', 'қ'), - (0x49B, 'V'), - (0x49C, 'M', 'ҝ'), - (0x49D, 'V'), - ] - -def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x49E, 'M', 'ҟ'), - (0x49F, 'V'), - (0x4A0, 'M', 'ҡ'), - (0x4A1, 'V'), - (0x4A2, 'M', 'ң'), - (0x4A3, 'V'), - (0x4A4, 'M', 'ҥ'), - (0x4A5, 'V'), - (0x4A6, 'M', 'ҧ'), - (0x4A7, 'V'), - (0x4A8, 'M', 'ҩ'), - (0x4A9, 'V'), - (0x4AA, 'M', 'ҫ'), - (0x4AB, 'V'), - (0x4AC, 'M', 'ҭ'), - (0x4AD, 'V'), - (0x4AE, 'M', 'ү'), - (0x4AF, 'V'), - (0x4B0, 'M', 'ұ'), - (0x4B1, 'V'), - (0x4B2, 'M', 'ҳ'), - (0x4B3, 'V'), - (0x4B4, 'M', 'ҵ'), - (0x4B5, 'V'), - (0x4B6, 'M', 'ҷ'), - (0x4B7, 'V'), - (0x4B8, 'M', 'ҹ'), - (0x4B9, 'V'), - (0x4BA, 'M', 'һ'), - (0x4BB, 'V'), - (0x4BC, 'M', 'ҽ'), - (0x4BD, 'V'), - (0x4BE, 'M', 'ҿ'), - (0x4BF, 'V'), - (0x4C0, 'X'), - (0x4C1, 'M', 'ӂ'), - (0x4C2, 'V'), - (0x4C3, 'M', 'ӄ'), - (0x4C4, 'V'), - (0x4C5, 'M', 'ӆ'), - (0x4C6, 'V'), - (0x4C7, 'M', 'ӈ'), - (0x4C8, 'V'), - (0x4C9, 'M', 'ӊ'), - (0x4CA, 'V'), - (0x4CB, 'M', 'ӌ'), - (0x4CC, 'V'), - (0x4CD, 'M', 'ӎ'), - (0x4CE, 'V'), - (0x4D0, 'M', 'ӑ'), - (0x4D1, 'V'), - (0x4D2, 'M', 'ӓ'), - (0x4D3, 'V'), - (0x4D4, 'M', 'ӕ'), - (0x4D5, 'V'), - (0x4D6, 'M', 'ӗ'), - (0x4D7, 'V'), - (0x4D8, 'M', 'ә'), - (0x4D9, 'V'), - (0x4DA, 'M', 'ӛ'), - (0x4DB, 'V'), - (0x4DC, 'M', 'ӝ'), - (0x4DD, 'V'), - (0x4DE, 'M', 'ӟ'), - (0x4DF, 'V'), - (0x4E0, 'M', 'ӡ'), - (0x4E1, 'V'), - (0x4E2, 'M', 'ӣ'), - (0x4E3, 'V'), - (0x4E4, 'M', 'ӥ'), - (0x4E5, 'V'), - (0x4E6, 'M', 'ӧ'), - (0x4E7, 'V'), - (0x4E8, 'M', 'ө'), - (0x4E9, 'V'), - (0x4EA, 'M', 'ӫ'), - (0x4EB, 'V'), - (0x4EC, 'M', 'ӭ'), - (0x4ED, 'V'), - (0x4EE, 'M', 'ӯ'), - (0x4EF, 'V'), - (0x4F0, 'M', 'ӱ'), - (0x4F1, 'V'), - (0x4F2, 'M', 'ӳ'), - (0x4F3, 'V'), - (0x4F4, 'M', 'ӵ'), - (0x4F5, 'V'), - (0x4F6, 'M', 'ӷ'), - (0x4F7, 'V'), - (0x4F8, 'M', 'ӹ'), - (0x4F9, 'V'), - (0x4FA, 'M', 'ӻ'), - (0x4FB, 'V'), - (0x4FC, 'M', 'ӽ'), - (0x4FD, 'V'), - (0x4FE, 'M', 'ӿ'), - (0x4FF, 'V'), - (0x500, 'M', 'ԁ'), - (0x501, 'V'), - (0x502, 'M', 'ԃ'), - ] - -def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x503, 'V'), - (0x504, 'M', 'ԅ'), - (0x505, 'V'), - (0x506, 'M', 'ԇ'), - (0x507, 'V'), - (0x508, 'M', 'ԉ'), - (0x509, 'V'), - (0x50A, 'M', 'ԋ'), - (0x50B, 'V'), - (0x50C, 'M', 'ԍ'), - (0x50D, 'V'), - (0x50E, 'M', 'ԏ'), - (0x50F, 'V'), - (0x510, 'M', 'ԑ'), - (0x511, 'V'), - (0x512, 'M', 'ԓ'), - (0x513, 'V'), - (0x514, 'M', 'ԕ'), - (0x515, 'V'), - (0x516, 'M', 'ԗ'), - (0x517, 'V'), - (0x518, 'M', 'ԙ'), - (0x519, 'V'), - (0x51A, 'M', 'ԛ'), - (0x51B, 'V'), - (0x51C, 'M', 'ԝ'), - (0x51D, 'V'), - (0x51E, 'M', 'ԟ'), - (0x51F, 'V'), - (0x520, 'M', 'ԡ'), - (0x521, 'V'), - (0x522, 'M', 'ԣ'), - (0x523, 'V'), - (0x524, 'M', 'ԥ'), - (0x525, 'V'), - (0x526, 'M', 'ԧ'), - (0x527, 'V'), - (0x528, 'M', 'ԩ'), - (0x529, 'V'), - (0x52A, 'M', 'ԫ'), - (0x52B, 'V'), - (0x52C, 'M', 'ԭ'), - (0x52D, 'V'), - (0x52E, 'M', 'ԯ'), - (0x52F, 'V'), - (0x530, 'X'), - (0x531, 'M', 'ա'), - (0x532, 'M', 'բ'), - (0x533, 'M', 'գ'), - (0x534, 'M', 'դ'), - (0x535, 'M', 'ե'), - (0x536, 'M', 'զ'), - (0x537, 'M', 'է'), - (0x538, 'M', 'ը'), - (0x539, 'M', 'թ'), - (0x53A, 'M', 'ժ'), - (0x53B, 'M', 'ի'), - (0x53C, 'M', 'լ'), - (0x53D, 'M', 'խ'), - (0x53E, 'M', 'ծ'), - (0x53F, 'M', 'կ'), - (0x540, 'M', 'հ'), - (0x541, 'M', 'ձ'), - (0x542, 'M', 'ղ'), - (0x543, 'M', 'ճ'), - (0x544, 'M', 'մ'), - (0x545, 'M', 'յ'), - (0x546, 'M', 'ն'), - (0x547, 'M', 'շ'), - (0x548, 'M', 'ո'), - (0x549, 'M', 'չ'), - (0x54A, 'M', 'պ'), - (0x54B, 'M', 'ջ'), - (0x54C, 'M', 'ռ'), - (0x54D, 'M', 'ս'), - (0x54E, 'M', 'վ'), - (0x54F, 'M', 'տ'), - (0x550, 'M', 'ր'), - (0x551, 'M', 'ց'), - (0x552, 'M', 'ւ'), - (0x553, 'M', 'փ'), - (0x554, 'M', 'ք'), - (0x555, 'M', 'օ'), - (0x556, 'M', 'ֆ'), - (0x557, 'X'), - (0x559, 'V'), - (0x587, 'M', 'եւ'), - (0x588, 'V'), - (0x58B, 'X'), - (0x58D, 'V'), - (0x590, 'X'), - (0x591, 'V'), - (0x5C8, 'X'), - (0x5D0, 'V'), - (0x5EB, 'X'), - (0x5EF, 'V'), - (0x5F5, 'X'), - (0x606, 'V'), - (0x61C, 'X'), - (0x61D, 'V'), - ] - -def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x675, 'M', 'اٴ'), - (0x676, 'M', 'وٴ'), - (0x677, 'M', 'ۇٴ'), - (0x678, 'M', 'يٴ'), - (0x679, 'V'), - (0x6DD, 'X'), - (0x6DE, 'V'), - (0x70E, 'X'), - (0x710, 'V'), - (0x74B, 'X'), - (0x74D, 'V'), - (0x7B2, 'X'), - (0x7C0, 'V'), - (0x7FB, 'X'), - (0x7FD, 'V'), - (0x82E, 'X'), - (0x830, 'V'), - (0x83F, 'X'), - (0x840, 'V'), - (0x85C, 'X'), - (0x85E, 'V'), - (0x85F, 'X'), - (0x860, 'V'), - (0x86B, 'X'), - (0x870, 'V'), - (0x88F, 'X'), - (0x898, 'V'), - (0x8E2, 'X'), - (0x8E3, 'V'), - (0x958, 'M', 'क़'), - (0x959, 'M', 'ख़'), - (0x95A, 'M', 'ग़'), - (0x95B, 'M', 'ज़'), - (0x95C, 'M', 'ड़'), - (0x95D, 'M', 'ढ़'), - (0x95E, 'M', 'फ़'), - (0x95F, 'M', 'य़'), - (0x960, 'V'), - (0x984, 'X'), - (0x985, 'V'), - (0x98D, 'X'), - (0x98F, 'V'), - (0x991, 'X'), - (0x993, 'V'), - (0x9A9, 'X'), - (0x9AA, 'V'), - (0x9B1, 'X'), - (0x9B2, 'V'), - (0x9B3, 'X'), - (0x9B6, 'V'), - (0x9BA, 'X'), - (0x9BC, 'V'), - (0x9C5, 'X'), - (0x9C7, 'V'), - (0x9C9, 'X'), - (0x9CB, 'V'), - (0x9CF, 'X'), - (0x9D7, 'V'), - (0x9D8, 'X'), - (0x9DC, 'M', 'ড়'), - (0x9DD, 'M', 'ঢ়'), - (0x9DE, 'X'), - (0x9DF, 'M', 'য়'), - (0x9E0, 'V'), - (0x9E4, 'X'), - (0x9E6, 'V'), - (0x9FF, 'X'), - (0xA01, 'V'), - (0xA04, 'X'), - (0xA05, 'V'), - (0xA0B, 'X'), - (0xA0F, 'V'), - (0xA11, 'X'), - (0xA13, 'V'), - (0xA29, 'X'), - (0xA2A, 'V'), - (0xA31, 'X'), - (0xA32, 'V'), - (0xA33, 'M', 'ਲ਼'), - (0xA34, 'X'), - (0xA35, 'V'), - (0xA36, 'M', 'ਸ਼'), - (0xA37, 'X'), - (0xA38, 'V'), - (0xA3A, 'X'), - (0xA3C, 'V'), - (0xA3D, 'X'), - (0xA3E, 'V'), - (0xA43, 'X'), - (0xA47, 'V'), - (0xA49, 'X'), - (0xA4B, 'V'), - (0xA4E, 'X'), - (0xA51, 'V'), - (0xA52, 'X'), - (0xA59, 'M', 'ਖ਼'), - (0xA5A, 'M', 'ਗ਼'), - (0xA5B, 'M', 'ਜ਼'), - (0xA5C, 'V'), - (0xA5D, 'X'), - ] - -def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xA5E, 'M', 'ਫ਼'), - (0xA5F, 'X'), - (0xA66, 'V'), - (0xA77, 'X'), - (0xA81, 'V'), - (0xA84, 'X'), - (0xA85, 'V'), - (0xA8E, 'X'), - (0xA8F, 'V'), - (0xA92, 'X'), - (0xA93, 'V'), - (0xAA9, 'X'), - (0xAAA, 'V'), - (0xAB1, 'X'), - (0xAB2, 'V'), - (0xAB4, 'X'), - (0xAB5, 'V'), - (0xABA, 'X'), - (0xABC, 'V'), - (0xAC6, 'X'), - (0xAC7, 'V'), - (0xACA, 'X'), - (0xACB, 'V'), - (0xACE, 'X'), - (0xAD0, 'V'), - (0xAD1, 'X'), - (0xAE0, 'V'), - (0xAE4, 'X'), - (0xAE6, 'V'), - (0xAF2, 'X'), - (0xAF9, 'V'), - (0xB00, 'X'), - (0xB01, 'V'), - (0xB04, 'X'), - (0xB05, 'V'), - (0xB0D, 'X'), - (0xB0F, 'V'), - (0xB11, 'X'), - (0xB13, 'V'), - (0xB29, 'X'), - (0xB2A, 'V'), - (0xB31, 'X'), - (0xB32, 'V'), - (0xB34, 'X'), - (0xB35, 'V'), - (0xB3A, 'X'), - (0xB3C, 'V'), - (0xB45, 'X'), - (0xB47, 'V'), - (0xB49, 'X'), - (0xB4B, 'V'), - (0xB4E, 'X'), - (0xB55, 'V'), - (0xB58, 'X'), - (0xB5C, 'M', 'ଡ଼'), - (0xB5D, 'M', 'ଢ଼'), - (0xB5E, 'X'), - (0xB5F, 'V'), - (0xB64, 'X'), - (0xB66, 'V'), - (0xB78, 'X'), - (0xB82, 'V'), - (0xB84, 'X'), - (0xB85, 'V'), - (0xB8B, 'X'), - (0xB8E, 'V'), - (0xB91, 'X'), - (0xB92, 'V'), - (0xB96, 'X'), - (0xB99, 'V'), - (0xB9B, 'X'), - (0xB9C, 'V'), - (0xB9D, 'X'), - (0xB9E, 'V'), - (0xBA0, 'X'), - (0xBA3, 'V'), - (0xBA5, 'X'), - (0xBA8, 'V'), - (0xBAB, 'X'), - (0xBAE, 'V'), - (0xBBA, 'X'), - (0xBBE, 'V'), - (0xBC3, 'X'), - (0xBC6, 'V'), - (0xBC9, 'X'), - (0xBCA, 'V'), - (0xBCE, 'X'), - (0xBD0, 'V'), - (0xBD1, 'X'), - (0xBD7, 'V'), - (0xBD8, 'X'), - (0xBE6, 'V'), - (0xBFB, 'X'), - (0xC00, 'V'), - (0xC0D, 'X'), - (0xC0E, 'V'), - (0xC11, 'X'), - (0xC12, 'V'), - (0xC29, 'X'), - (0xC2A, 'V'), - ] - -def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xC3A, 'X'), - (0xC3C, 'V'), - (0xC45, 'X'), - (0xC46, 'V'), - (0xC49, 'X'), - (0xC4A, 'V'), - (0xC4E, 'X'), - (0xC55, 'V'), - (0xC57, 'X'), - (0xC58, 'V'), - (0xC5B, 'X'), - (0xC5D, 'V'), - (0xC5E, 'X'), - (0xC60, 'V'), - (0xC64, 'X'), - (0xC66, 'V'), - (0xC70, 'X'), - (0xC77, 'V'), - (0xC8D, 'X'), - (0xC8E, 'V'), - (0xC91, 'X'), - (0xC92, 'V'), - (0xCA9, 'X'), - (0xCAA, 'V'), - (0xCB4, 'X'), - (0xCB5, 'V'), - (0xCBA, 'X'), - (0xCBC, 'V'), - (0xCC5, 'X'), - (0xCC6, 'V'), - (0xCC9, 'X'), - (0xCCA, 'V'), - (0xCCE, 'X'), - (0xCD5, 'V'), - (0xCD7, 'X'), - (0xCDD, 'V'), - (0xCDF, 'X'), - (0xCE0, 'V'), - (0xCE4, 'X'), - (0xCE6, 'V'), - (0xCF0, 'X'), - (0xCF1, 'V'), - (0xCF4, 'X'), - (0xD00, 'V'), - (0xD0D, 'X'), - (0xD0E, 'V'), - (0xD11, 'X'), - (0xD12, 'V'), - (0xD45, 'X'), - (0xD46, 'V'), - (0xD49, 'X'), - (0xD4A, 'V'), - (0xD50, 'X'), - (0xD54, 'V'), - (0xD64, 'X'), - (0xD66, 'V'), - (0xD80, 'X'), - (0xD81, 'V'), - (0xD84, 'X'), - (0xD85, 'V'), - (0xD97, 'X'), - (0xD9A, 'V'), - (0xDB2, 'X'), - (0xDB3, 'V'), - (0xDBC, 'X'), - (0xDBD, 'V'), - (0xDBE, 'X'), - (0xDC0, 'V'), - (0xDC7, 'X'), - (0xDCA, 'V'), - (0xDCB, 'X'), - (0xDCF, 'V'), - (0xDD5, 'X'), - (0xDD6, 'V'), - (0xDD7, 'X'), - (0xDD8, 'V'), - (0xDE0, 'X'), - (0xDE6, 'V'), - (0xDF0, 'X'), - (0xDF2, 'V'), - (0xDF5, 'X'), - (0xE01, 'V'), - (0xE33, 'M', 'ํา'), - (0xE34, 'V'), - (0xE3B, 'X'), - (0xE3F, 'V'), - (0xE5C, 'X'), - (0xE81, 'V'), - (0xE83, 'X'), - (0xE84, 'V'), - (0xE85, 'X'), - (0xE86, 'V'), - (0xE8B, 'X'), - (0xE8C, 'V'), - (0xEA4, 'X'), - (0xEA5, 'V'), - (0xEA6, 'X'), - (0xEA7, 'V'), - (0xEB3, 'M', 'ໍາ'), - (0xEB4, 'V'), - ] - -def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xEBE, 'X'), - (0xEC0, 'V'), - (0xEC5, 'X'), - (0xEC6, 'V'), - (0xEC7, 'X'), - (0xEC8, 'V'), - (0xECF, 'X'), - (0xED0, 'V'), - (0xEDA, 'X'), - (0xEDC, 'M', 'ຫນ'), - (0xEDD, 'M', 'ຫມ'), - (0xEDE, 'V'), - (0xEE0, 'X'), - (0xF00, 'V'), - (0xF0C, 'M', '་'), - (0xF0D, 'V'), - (0xF43, 'M', 'གྷ'), - (0xF44, 'V'), - (0xF48, 'X'), - (0xF49, 'V'), - (0xF4D, 'M', 'ཌྷ'), - (0xF4E, 'V'), - (0xF52, 'M', 'དྷ'), - (0xF53, 'V'), - (0xF57, 'M', 'བྷ'), - (0xF58, 'V'), - (0xF5C, 'M', 'ཛྷ'), - (0xF5D, 'V'), - (0xF69, 'M', 'ཀྵ'), - (0xF6A, 'V'), - (0xF6D, 'X'), - (0xF71, 'V'), - (0xF73, 'M', 'ཱི'), - (0xF74, 'V'), - (0xF75, 'M', 'ཱུ'), - (0xF76, 'M', 'ྲྀ'), - (0xF77, 'M', 'ྲཱྀ'), - (0xF78, 'M', 'ླྀ'), - (0xF79, 'M', 'ླཱྀ'), - (0xF7A, 'V'), - (0xF81, 'M', 'ཱྀ'), - (0xF82, 'V'), - (0xF93, 'M', 'ྒྷ'), - (0xF94, 'V'), - (0xF98, 'X'), - (0xF99, 'V'), - (0xF9D, 'M', 'ྜྷ'), - (0xF9E, 'V'), - (0xFA2, 'M', 'ྡྷ'), - (0xFA3, 'V'), - (0xFA7, 'M', 'ྦྷ'), - (0xFA8, 'V'), - (0xFAC, 'M', 'ྫྷ'), - (0xFAD, 'V'), - (0xFB9, 'M', 'ྐྵ'), - (0xFBA, 'V'), - (0xFBD, 'X'), - (0xFBE, 'V'), - (0xFCD, 'X'), - (0xFCE, 'V'), - (0xFDB, 'X'), - (0x1000, 'V'), - (0x10A0, 'X'), - (0x10C7, 'M', 'ⴧ'), - (0x10C8, 'X'), - (0x10CD, 'M', 'ⴭ'), - (0x10CE, 'X'), - (0x10D0, 'V'), - (0x10FC, 'M', 'ნ'), - (0x10FD, 'V'), - (0x115F, 'X'), - (0x1161, 'V'), - (0x1249, 'X'), - (0x124A, 'V'), - (0x124E, 'X'), - (0x1250, 'V'), - (0x1257, 'X'), - (0x1258, 'V'), - (0x1259, 'X'), - (0x125A, 'V'), - (0x125E, 'X'), - (0x1260, 'V'), - (0x1289, 'X'), - (0x128A, 'V'), - (0x128E, 'X'), - (0x1290, 'V'), - (0x12B1, 'X'), - (0x12B2, 'V'), - (0x12B6, 'X'), - (0x12B8, 'V'), - (0x12BF, 'X'), - (0x12C0, 'V'), - (0x12C1, 'X'), - (0x12C2, 'V'), - (0x12C6, 'X'), - (0x12C8, 'V'), - (0x12D7, 'X'), - (0x12D8, 'V'), - (0x1311, 'X'), - (0x1312, 'V'), - ] - -def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1316, 'X'), - (0x1318, 'V'), - (0x135B, 'X'), - (0x135D, 'V'), - (0x137D, 'X'), - (0x1380, 'V'), - (0x139A, 'X'), - (0x13A0, 'V'), - (0x13F6, 'X'), - (0x13F8, 'M', 'Ᏸ'), - (0x13F9, 'M', 'Ᏹ'), - (0x13FA, 'M', 'Ᏺ'), - (0x13FB, 'M', 'Ᏻ'), - (0x13FC, 'M', 'Ᏼ'), - (0x13FD, 'M', 'Ᏽ'), - (0x13FE, 'X'), - (0x1400, 'V'), - (0x1680, 'X'), - (0x1681, 'V'), - (0x169D, 'X'), - (0x16A0, 'V'), - (0x16F9, 'X'), - (0x1700, 'V'), - (0x1716, 'X'), - (0x171F, 'V'), - (0x1737, 'X'), - (0x1740, 'V'), - (0x1754, 'X'), - (0x1760, 'V'), - (0x176D, 'X'), - (0x176E, 'V'), - (0x1771, 'X'), - (0x1772, 'V'), - (0x1774, 'X'), - (0x1780, 'V'), - (0x17B4, 'X'), - (0x17B6, 'V'), - (0x17DE, 'X'), - (0x17E0, 'V'), - (0x17EA, 'X'), - (0x17F0, 'V'), - (0x17FA, 'X'), - (0x1800, 'V'), - (0x1806, 'X'), - (0x1807, 'V'), - (0x180B, 'I'), - (0x180E, 'X'), - (0x180F, 'I'), - (0x1810, 'V'), - (0x181A, 'X'), - (0x1820, 'V'), - (0x1879, 'X'), - (0x1880, 'V'), - (0x18AB, 'X'), - (0x18B0, 'V'), - (0x18F6, 'X'), - (0x1900, 'V'), - (0x191F, 'X'), - (0x1920, 'V'), - (0x192C, 'X'), - (0x1930, 'V'), - (0x193C, 'X'), - (0x1940, 'V'), - (0x1941, 'X'), - (0x1944, 'V'), - (0x196E, 'X'), - (0x1970, 'V'), - (0x1975, 'X'), - (0x1980, 'V'), - (0x19AC, 'X'), - (0x19B0, 'V'), - (0x19CA, 'X'), - (0x19D0, 'V'), - (0x19DB, 'X'), - (0x19DE, 'V'), - (0x1A1C, 'X'), - (0x1A1E, 'V'), - (0x1A5F, 'X'), - (0x1A60, 'V'), - (0x1A7D, 'X'), - (0x1A7F, 'V'), - (0x1A8A, 'X'), - (0x1A90, 'V'), - (0x1A9A, 'X'), - (0x1AA0, 'V'), - (0x1AAE, 'X'), - (0x1AB0, 'V'), - (0x1ACF, 'X'), - (0x1B00, 'V'), - (0x1B4D, 'X'), - (0x1B50, 'V'), - (0x1B7F, 'X'), - (0x1B80, 'V'), - (0x1BF4, 'X'), - (0x1BFC, 'V'), - (0x1C38, 'X'), - (0x1C3B, 'V'), - (0x1C4A, 'X'), - (0x1C4D, 'V'), - (0x1C80, 'M', 'в'), - ] - -def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1C81, 'M', 'д'), - (0x1C82, 'M', 'о'), - (0x1C83, 'M', 'с'), - (0x1C84, 'M', 'т'), - (0x1C86, 'M', 'ъ'), - (0x1C87, 'M', 'ѣ'), - (0x1C88, 'M', 'ꙋ'), - (0x1C89, 'X'), - (0x1C90, 'M', 'ა'), - (0x1C91, 'M', 'ბ'), - (0x1C92, 'M', 'გ'), - (0x1C93, 'M', 'დ'), - (0x1C94, 'M', 'ე'), - (0x1C95, 'M', 'ვ'), - (0x1C96, 'M', 'ზ'), - (0x1C97, 'M', 'თ'), - (0x1C98, 'M', 'ი'), - (0x1C99, 'M', 'კ'), - (0x1C9A, 'M', 'ლ'), - (0x1C9B, 'M', 'მ'), - (0x1C9C, 'M', 'ნ'), - (0x1C9D, 'M', 'ო'), - (0x1C9E, 'M', 'პ'), - (0x1C9F, 'M', 'ჟ'), - (0x1CA0, 'M', 'რ'), - (0x1CA1, 'M', 'ს'), - (0x1CA2, 'M', 'ტ'), - (0x1CA3, 'M', 'უ'), - (0x1CA4, 'M', 'ფ'), - (0x1CA5, 'M', 'ქ'), - (0x1CA6, 'M', 'ღ'), - (0x1CA7, 'M', 'ყ'), - (0x1CA8, 'M', 'შ'), - (0x1CA9, 'M', 'ჩ'), - (0x1CAA, 'M', 'ც'), - (0x1CAB, 'M', 'ძ'), - (0x1CAC, 'M', 'წ'), - (0x1CAD, 'M', 'ჭ'), - (0x1CAE, 'M', 'ხ'), - (0x1CAF, 'M', 'ჯ'), - (0x1CB0, 'M', 'ჰ'), - (0x1CB1, 'M', 'ჱ'), - (0x1CB2, 'M', 'ჲ'), - (0x1CB3, 'M', 'ჳ'), - (0x1CB4, 'M', 'ჴ'), - (0x1CB5, 'M', 'ჵ'), - (0x1CB6, 'M', 'ჶ'), - (0x1CB7, 'M', 'ჷ'), - (0x1CB8, 'M', 'ჸ'), - (0x1CB9, 'M', 'ჹ'), - (0x1CBA, 'M', 'ჺ'), - (0x1CBB, 'X'), - (0x1CBD, 'M', 'ჽ'), - (0x1CBE, 'M', 'ჾ'), - (0x1CBF, 'M', 'ჿ'), - (0x1CC0, 'V'), - (0x1CC8, 'X'), - (0x1CD0, 'V'), - (0x1CFB, 'X'), - (0x1D00, 'V'), - (0x1D2C, 'M', 'a'), - (0x1D2D, 'M', 'æ'), - (0x1D2E, 'M', 'b'), - (0x1D2F, 'V'), - (0x1D30, 'M', 'd'), - (0x1D31, 'M', 'e'), - (0x1D32, 'M', 'ǝ'), - (0x1D33, 'M', 'g'), - (0x1D34, 'M', 'h'), - (0x1D35, 'M', 'i'), - (0x1D36, 'M', 'j'), - (0x1D37, 'M', 'k'), - (0x1D38, 'M', 'l'), - (0x1D39, 'M', 'm'), - (0x1D3A, 'M', 'n'), - (0x1D3B, 'V'), - (0x1D3C, 'M', 'o'), - (0x1D3D, 'M', 'ȣ'), - (0x1D3E, 'M', 'p'), - (0x1D3F, 'M', 'r'), - (0x1D40, 'M', 't'), - (0x1D41, 'M', 'u'), - (0x1D42, 'M', 'w'), - (0x1D43, 'M', 'a'), - (0x1D44, 'M', 'ɐ'), - (0x1D45, 'M', 'ɑ'), - (0x1D46, 'M', 'ᴂ'), - (0x1D47, 'M', 'b'), - (0x1D48, 'M', 'd'), - (0x1D49, 'M', 'e'), - (0x1D4A, 'M', 'ə'), - (0x1D4B, 'M', 'ɛ'), - (0x1D4C, 'M', 'ɜ'), - (0x1D4D, 'M', 'g'), - (0x1D4E, 'V'), - (0x1D4F, 'M', 'k'), - (0x1D50, 'M', 'm'), - (0x1D51, 'M', 'ŋ'), - (0x1D52, 'M', 'o'), - (0x1D53, 'M', 'ɔ'), - ] - -def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D54, 'M', 'ᴖ'), - (0x1D55, 'M', 'ᴗ'), - (0x1D56, 'M', 'p'), - (0x1D57, 'M', 't'), - (0x1D58, 'M', 'u'), - (0x1D59, 'M', 'ᴝ'), - (0x1D5A, 'M', 'ɯ'), - (0x1D5B, 'M', 'v'), - (0x1D5C, 'M', 'ᴥ'), - (0x1D5D, 'M', 'β'), - (0x1D5E, 'M', 'γ'), - (0x1D5F, 'M', 'δ'), - (0x1D60, 'M', 'φ'), - (0x1D61, 'M', 'χ'), - (0x1D62, 'M', 'i'), - (0x1D63, 'M', 'r'), - (0x1D64, 'M', 'u'), - (0x1D65, 'M', 'v'), - (0x1D66, 'M', 'β'), - (0x1D67, 'M', 'γ'), - (0x1D68, 'M', 'ρ'), - (0x1D69, 'M', 'φ'), - (0x1D6A, 'M', 'χ'), - (0x1D6B, 'V'), - (0x1D78, 'M', 'н'), - (0x1D79, 'V'), - (0x1D9B, 'M', 'ɒ'), - (0x1D9C, 'M', 'c'), - (0x1D9D, 'M', 'ɕ'), - (0x1D9E, 'M', 'ð'), - (0x1D9F, 'M', 'ɜ'), - (0x1DA0, 'M', 'f'), - (0x1DA1, 'M', 'ɟ'), - (0x1DA2, 'M', 'ɡ'), - (0x1DA3, 'M', 'ɥ'), - (0x1DA4, 'M', 'ɨ'), - (0x1DA5, 'M', 'ɩ'), - (0x1DA6, 'M', 'ɪ'), - (0x1DA7, 'M', 'ᵻ'), - (0x1DA8, 'M', 'ʝ'), - (0x1DA9, 'M', 'ɭ'), - (0x1DAA, 'M', 'ᶅ'), - (0x1DAB, 'M', 'ʟ'), - (0x1DAC, 'M', 'ɱ'), - (0x1DAD, 'M', 'ɰ'), - (0x1DAE, 'M', 'ɲ'), - (0x1DAF, 'M', 'ɳ'), - (0x1DB0, 'M', 'ɴ'), - (0x1DB1, 'M', 'ɵ'), - (0x1DB2, 'M', 'ɸ'), - (0x1DB3, 'M', 'ʂ'), - (0x1DB4, 'M', 'ʃ'), - (0x1DB5, 'M', 'ƫ'), - (0x1DB6, 'M', 'ʉ'), - (0x1DB7, 'M', 'ʊ'), - (0x1DB8, 'M', 'ᴜ'), - (0x1DB9, 'M', 'ʋ'), - (0x1DBA, 'M', 'ʌ'), - (0x1DBB, 'M', 'z'), - (0x1DBC, 'M', 'ʐ'), - (0x1DBD, 'M', 'ʑ'), - (0x1DBE, 'M', 'ʒ'), - (0x1DBF, 'M', 'θ'), - (0x1DC0, 'V'), - (0x1E00, 'M', 'ḁ'), - (0x1E01, 'V'), - (0x1E02, 'M', 'ḃ'), - (0x1E03, 'V'), - (0x1E04, 'M', 'ḅ'), - (0x1E05, 'V'), - (0x1E06, 'M', 'ḇ'), - (0x1E07, 'V'), - (0x1E08, 'M', 'ḉ'), - (0x1E09, 'V'), - (0x1E0A, 'M', 'ḋ'), - (0x1E0B, 'V'), - (0x1E0C, 'M', 'ḍ'), - (0x1E0D, 'V'), - (0x1E0E, 'M', 'ḏ'), - (0x1E0F, 'V'), - (0x1E10, 'M', 'ḑ'), - (0x1E11, 'V'), - (0x1E12, 'M', 'ḓ'), - (0x1E13, 'V'), - (0x1E14, 'M', 'ḕ'), - (0x1E15, 'V'), - (0x1E16, 'M', 'ḗ'), - (0x1E17, 'V'), - (0x1E18, 'M', 'ḙ'), - (0x1E19, 'V'), - (0x1E1A, 'M', 'ḛ'), - (0x1E1B, 'V'), - (0x1E1C, 'M', 'ḝ'), - (0x1E1D, 'V'), - (0x1E1E, 'M', 'ḟ'), - (0x1E1F, 'V'), - (0x1E20, 'M', 'ḡ'), - (0x1E21, 'V'), - (0x1E22, 'M', 'ḣ'), - (0x1E23, 'V'), - ] - -def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1E24, 'M', 'ḥ'), - (0x1E25, 'V'), - (0x1E26, 'M', 'ḧ'), - (0x1E27, 'V'), - (0x1E28, 'M', 'ḩ'), - (0x1E29, 'V'), - (0x1E2A, 'M', 'ḫ'), - (0x1E2B, 'V'), - (0x1E2C, 'M', 'ḭ'), - (0x1E2D, 'V'), - (0x1E2E, 'M', 'ḯ'), - (0x1E2F, 'V'), - (0x1E30, 'M', 'ḱ'), - (0x1E31, 'V'), - (0x1E32, 'M', 'ḳ'), - (0x1E33, 'V'), - (0x1E34, 'M', 'ḵ'), - (0x1E35, 'V'), - (0x1E36, 'M', 'ḷ'), - (0x1E37, 'V'), - (0x1E38, 'M', 'ḹ'), - (0x1E39, 'V'), - (0x1E3A, 'M', 'ḻ'), - (0x1E3B, 'V'), - (0x1E3C, 'M', 'ḽ'), - (0x1E3D, 'V'), - (0x1E3E, 'M', 'ḿ'), - (0x1E3F, 'V'), - (0x1E40, 'M', 'ṁ'), - (0x1E41, 'V'), - (0x1E42, 'M', 'ṃ'), - (0x1E43, 'V'), - (0x1E44, 'M', 'ṅ'), - (0x1E45, 'V'), - (0x1E46, 'M', 'ṇ'), - (0x1E47, 'V'), - (0x1E48, 'M', 'ṉ'), - (0x1E49, 'V'), - (0x1E4A, 'M', 'ṋ'), - (0x1E4B, 'V'), - (0x1E4C, 'M', 'ṍ'), - (0x1E4D, 'V'), - (0x1E4E, 'M', 'ṏ'), - (0x1E4F, 'V'), - (0x1E50, 'M', 'ṑ'), - (0x1E51, 'V'), - (0x1E52, 'M', 'ṓ'), - (0x1E53, 'V'), - (0x1E54, 'M', 'ṕ'), - (0x1E55, 'V'), - (0x1E56, 'M', 'ṗ'), - (0x1E57, 'V'), - (0x1E58, 'M', 'ṙ'), - (0x1E59, 'V'), - (0x1E5A, 'M', 'ṛ'), - (0x1E5B, 'V'), - (0x1E5C, 'M', 'ṝ'), - (0x1E5D, 'V'), - (0x1E5E, 'M', 'ṟ'), - (0x1E5F, 'V'), - (0x1E60, 'M', 'ṡ'), - (0x1E61, 'V'), - (0x1E62, 'M', 'ṣ'), - (0x1E63, 'V'), - (0x1E64, 'M', 'ṥ'), - (0x1E65, 'V'), - (0x1E66, 'M', 'ṧ'), - (0x1E67, 'V'), - (0x1E68, 'M', 'ṩ'), - (0x1E69, 'V'), - (0x1E6A, 'M', 'ṫ'), - (0x1E6B, 'V'), - (0x1E6C, 'M', 'ṭ'), - (0x1E6D, 'V'), - (0x1E6E, 'M', 'ṯ'), - (0x1E6F, 'V'), - (0x1E70, 'M', 'ṱ'), - (0x1E71, 'V'), - (0x1E72, 'M', 'ṳ'), - (0x1E73, 'V'), - (0x1E74, 'M', 'ṵ'), - (0x1E75, 'V'), - (0x1E76, 'M', 'ṷ'), - (0x1E77, 'V'), - (0x1E78, 'M', 'ṹ'), - (0x1E79, 'V'), - (0x1E7A, 'M', 'ṻ'), - (0x1E7B, 'V'), - (0x1E7C, 'M', 'ṽ'), - (0x1E7D, 'V'), - (0x1E7E, 'M', 'ṿ'), - (0x1E7F, 'V'), - (0x1E80, 'M', 'ẁ'), - (0x1E81, 'V'), - (0x1E82, 'M', 'ẃ'), - (0x1E83, 'V'), - (0x1E84, 'M', 'ẅ'), - (0x1E85, 'V'), - (0x1E86, 'M', 'ẇ'), - (0x1E87, 'V'), - ] - -def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1E88, 'M', 'ẉ'), - (0x1E89, 'V'), - (0x1E8A, 'M', 'ẋ'), - (0x1E8B, 'V'), - (0x1E8C, 'M', 'ẍ'), - (0x1E8D, 'V'), - (0x1E8E, 'M', 'ẏ'), - (0x1E8F, 'V'), - (0x1E90, 'M', 'ẑ'), - (0x1E91, 'V'), - (0x1E92, 'M', 'ẓ'), - (0x1E93, 'V'), - (0x1E94, 'M', 'ẕ'), - (0x1E95, 'V'), - (0x1E9A, 'M', 'aʾ'), - (0x1E9B, 'M', 'ṡ'), - (0x1E9C, 'V'), - (0x1E9E, 'M', 'ss'), - (0x1E9F, 'V'), - (0x1EA0, 'M', 'ạ'), - (0x1EA1, 'V'), - (0x1EA2, 'M', 'ả'), - (0x1EA3, 'V'), - (0x1EA4, 'M', 'ấ'), - (0x1EA5, 'V'), - (0x1EA6, 'M', 'ầ'), - (0x1EA7, 'V'), - (0x1EA8, 'M', 'ẩ'), - (0x1EA9, 'V'), - (0x1EAA, 'M', 'ẫ'), - (0x1EAB, 'V'), - (0x1EAC, 'M', 'ậ'), - (0x1EAD, 'V'), - (0x1EAE, 'M', 'ắ'), - (0x1EAF, 'V'), - (0x1EB0, 'M', 'ằ'), - (0x1EB1, 'V'), - (0x1EB2, 'M', 'ẳ'), - (0x1EB3, 'V'), - (0x1EB4, 'M', 'ẵ'), - (0x1EB5, 'V'), - (0x1EB6, 'M', 'ặ'), - (0x1EB7, 'V'), - (0x1EB8, 'M', 'ẹ'), - (0x1EB9, 'V'), - (0x1EBA, 'M', 'ẻ'), - (0x1EBB, 'V'), - (0x1EBC, 'M', 'ẽ'), - (0x1EBD, 'V'), - (0x1EBE, 'M', 'ế'), - (0x1EBF, 'V'), - (0x1EC0, 'M', 'ề'), - (0x1EC1, 'V'), - (0x1EC2, 'M', 'ể'), - (0x1EC3, 'V'), - (0x1EC4, 'M', 'ễ'), - (0x1EC5, 'V'), - (0x1EC6, 'M', 'ệ'), - (0x1EC7, 'V'), - (0x1EC8, 'M', 'ỉ'), - (0x1EC9, 'V'), - (0x1ECA, 'M', 'ị'), - (0x1ECB, 'V'), - (0x1ECC, 'M', 'ọ'), - (0x1ECD, 'V'), - (0x1ECE, 'M', 'ỏ'), - (0x1ECF, 'V'), - (0x1ED0, 'M', 'ố'), - (0x1ED1, 'V'), - (0x1ED2, 'M', 'ồ'), - (0x1ED3, 'V'), - (0x1ED4, 'M', 'ổ'), - (0x1ED5, 'V'), - (0x1ED6, 'M', 'ỗ'), - (0x1ED7, 'V'), - (0x1ED8, 'M', 'ộ'), - (0x1ED9, 'V'), - (0x1EDA, 'M', 'ớ'), - (0x1EDB, 'V'), - (0x1EDC, 'M', 'ờ'), - (0x1EDD, 'V'), - (0x1EDE, 'M', 'ở'), - (0x1EDF, 'V'), - (0x1EE0, 'M', 'ỡ'), - (0x1EE1, 'V'), - (0x1EE2, 'M', 'ợ'), - (0x1EE3, 'V'), - (0x1EE4, 'M', 'ụ'), - (0x1EE5, 'V'), - (0x1EE6, 'M', 'ủ'), - (0x1EE7, 'V'), - (0x1EE8, 'M', 'ứ'), - (0x1EE9, 'V'), - (0x1EEA, 'M', 'ừ'), - (0x1EEB, 'V'), - (0x1EEC, 'M', 'ử'), - (0x1EED, 'V'), - (0x1EEE, 'M', 'ữ'), - (0x1EEF, 'V'), - (0x1EF0, 'M', 'ự'), - ] - -def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1EF1, 'V'), - (0x1EF2, 'M', 'ỳ'), - (0x1EF3, 'V'), - (0x1EF4, 'M', 'ỵ'), - (0x1EF5, 'V'), - (0x1EF6, 'M', 'ỷ'), - (0x1EF7, 'V'), - (0x1EF8, 'M', 'ỹ'), - (0x1EF9, 'V'), - (0x1EFA, 'M', 'ỻ'), - (0x1EFB, 'V'), - (0x1EFC, 'M', 'ỽ'), - (0x1EFD, 'V'), - (0x1EFE, 'M', 'ỿ'), - (0x1EFF, 'V'), - (0x1F08, 'M', 'ἀ'), - (0x1F09, 'M', 'ἁ'), - (0x1F0A, 'M', 'ἂ'), - (0x1F0B, 'M', 'ἃ'), - (0x1F0C, 'M', 'ἄ'), - (0x1F0D, 'M', 'ἅ'), - (0x1F0E, 'M', 'ἆ'), - (0x1F0F, 'M', 'ἇ'), - (0x1F10, 'V'), - (0x1F16, 'X'), - (0x1F18, 'M', 'ἐ'), - (0x1F19, 'M', 'ἑ'), - (0x1F1A, 'M', 'ἒ'), - (0x1F1B, 'M', 'ἓ'), - (0x1F1C, 'M', 'ἔ'), - (0x1F1D, 'M', 'ἕ'), - (0x1F1E, 'X'), - (0x1F20, 'V'), - (0x1F28, 'M', 'ἠ'), - (0x1F29, 'M', 'ἡ'), - (0x1F2A, 'M', 'ἢ'), - (0x1F2B, 'M', 'ἣ'), - (0x1F2C, 'M', 'ἤ'), - (0x1F2D, 'M', 'ἥ'), - (0x1F2E, 'M', 'ἦ'), - (0x1F2F, 'M', 'ἧ'), - (0x1F30, 'V'), - (0x1F38, 'M', 'ἰ'), - (0x1F39, 'M', 'ἱ'), - (0x1F3A, 'M', 'ἲ'), - (0x1F3B, 'M', 'ἳ'), - (0x1F3C, 'M', 'ἴ'), - (0x1F3D, 'M', 'ἵ'), - (0x1F3E, 'M', 'ἶ'), - (0x1F3F, 'M', 'ἷ'), - (0x1F40, 'V'), - (0x1F46, 'X'), - (0x1F48, 'M', 'ὀ'), - (0x1F49, 'M', 'ὁ'), - (0x1F4A, 'M', 'ὂ'), - (0x1F4B, 'M', 'ὃ'), - (0x1F4C, 'M', 'ὄ'), - (0x1F4D, 'M', 'ὅ'), - (0x1F4E, 'X'), - (0x1F50, 'V'), - (0x1F58, 'X'), - (0x1F59, 'M', 'ὑ'), - (0x1F5A, 'X'), - (0x1F5B, 'M', 'ὓ'), - (0x1F5C, 'X'), - (0x1F5D, 'M', 'ὕ'), - (0x1F5E, 'X'), - (0x1F5F, 'M', 'ὗ'), - (0x1F60, 'V'), - (0x1F68, 'M', 'ὠ'), - (0x1F69, 'M', 'ὡ'), - (0x1F6A, 'M', 'ὢ'), - (0x1F6B, 'M', 'ὣ'), - (0x1F6C, 'M', 'ὤ'), - (0x1F6D, 'M', 'ὥ'), - (0x1F6E, 'M', 'ὦ'), - (0x1F6F, 'M', 'ὧ'), - (0x1F70, 'V'), - (0x1F71, 'M', 'ά'), - (0x1F72, 'V'), - (0x1F73, 'M', 'έ'), - (0x1F74, 'V'), - (0x1F75, 'M', 'ή'), - (0x1F76, 'V'), - (0x1F77, 'M', 'ί'), - (0x1F78, 'V'), - (0x1F79, 'M', 'ό'), - (0x1F7A, 'V'), - (0x1F7B, 'M', 'ύ'), - (0x1F7C, 'V'), - (0x1F7D, 'M', 'ώ'), - (0x1F7E, 'X'), - (0x1F80, 'M', 'ἀι'), - (0x1F81, 'M', 'ἁι'), - (0x1F82, 'M', 'ἂι'), - (0x1F83, 'M', 'ἃι'), - (0x1F84, 'M', 'ἄι'), - (0x1F85, 'M', 'ἅι'), - (0x1F86, 'M', 'ἆι'), - (0x1F87, 'M', 'ἇι'), - ] - -def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1F88, 'M', 'ἀι'), - (0x1F89, 'M', 'ἁι'), - (0x1F8A, 'M', 'ἂι'), - (0x1F8B, 'M', 'ἃι'), - (0x1F8C, 'M', 'ἄι'), - (0x1F8D, 'M', 'ἅι'), - (0x1F8E, 'M', 'ἆι'), - (0x1F8F, 'M', 'ἇι'), - (0x1F90, 'M', 'ἠι'), - (0x1F91, 'M', 'ἡι'), - (0x1F92, 'M', 'ἢι'), - (0x1F93, 'M', 'ἣι'), - (0x1F94, 'M', 'ἤι'), - (0x1F95, 'M', 'ἥι'), - (0x1F96, 'M', 'ἦι'), - (0x1F97, 'M', 'ἧι'), - (0x1F98, 'M', 'ἠι'), - (0x1F99, 'M', 'ἡι'), - (0x1F9A, 'M', 'ἢι'), - (0x1F9B, 'M', 'ἣι'), - (0x1F9C, 'M', 'ἤι'), - (0x1F9D, 'M', 'ἥι'), - (0x1F9E, 'M', 'ἦι'), - (0x1F9F, 'M', 'ἧι'), - (0x1FA0, 'M', 'ὠι'), - (0x1FA1, 'M', 'ὡι'), - (0x1FA2, 'M', 'ὢι'), - (0x1FA3, 'M', 'ὣι'), - (0x1FA4, 'M', 'ὤι'), - (0x1FA5, 'M', 'ὥι'), - (0x1FA6, 'M', 'ὦι'), - (0x1FA7, 'M', 'ὧι'), - (0x1FA8, 'M', 'ὠι'), - (0x1FA9, 'M', 'ὡι'), - (0x1FAA, 'M', 'ὢι'), - (0x1FAB, 'M', 'ὣι'), - (0x1FAC, 'M', 'ὤι'), - (0x1FAD, 'M', 'ὥι'), - (0x1FAE, 'M', 'ὦι'), - (0x1FAF, 'M', 'ὧι'), - (0x1FB0, 'V'), - (0x1FB2, 'M', 'ὰι'), - (0x1FB3, 'M', 'αι'), - (0x1FB4, 'M', 'άι'), - (0x1FB5, 'X'), - (0x1FB6, 'V'), - (0x1FB7, 'M', 'ᾶι'), - (0x1FB8, 'M', 'ᾰ'), - (0x1FB9, 'M', 'ᾱ'), - (0x1FBA, 'M', 'ὰ'), - (0x1FBB, 'M', 'ά'), - (0x1FBC, 'M', 'αι'), - (0x1FBD, '3', ' ̓'), - (0x1FBE, 'M', 'ι'), - (0x1FBF, '3', ' ̓'), - (0x1FC0, '3', ' ͂'), - (0x1FC1, '3', ' ̈͂'), - (0x1FC2, 'M', 'ὴι'), - (0x1FC3, 'M', 'ηι'), - (0x1FC4, 'M', 'ήι'), - (0x1FC5, 'X'), - (0x1FC6, 'V'), - (0x1FC7, 'M', 'ῆι'), - (0x1FC8, 'M', 'ὲ'), - (0x1FC9, 'M', 'έ'), - (0x1FCA, 'M', 'ὴ'), - (0x1FCB, 'M', 'ή'), - (0x1FCC, 'M', 'ηι'), - (0x1FCD, '3', ' ̓̀'), - (0x1FCE, '3', ' ̓́'), - (0x1FCF, '3', ' ̓͂'), - (0x1FD0, 'V'), - (0x1FD3, 'M', 'ΐ'), - (0x1FD4, 'X'), - (0x1FD6, 'V'), - (0x1FD8, 'M', 'ῐ'), - (0x1FD9, 'M', 'ῑ'), - (0x1FDA, 'M', 'ὶ'), - (0x1FDB, 'M', 'ί'), - (0x1FDC, 'X'), - (0x1FDD, '3', ' ̔̀'), - (0x1FDE, '3', ' ̔́'), - (0x1FDF, '3', ' ̔͂'), - (0x1FE0, 'V'), - (0x1FE3, 'M', 'ΰ'), - (0x1FE4, 'V'), - (0x1FE8, 'M', 'ῠ'), - (0x1FE9, 'M', 'ῡ'), - (0x1FEA, 'M', 'ὺ'), - (0x1FEB, 'M', 'ύ'), - (0x1FEC, 'M', 'ῥ'), - (0x1FED, '3', ' ̈̀'), - (0x1FEE, '3', ' ̈́'), - (0x1FEF, '3', '`'), - (0x1FF0, 'X'), - (0x1FF2, 'M', 'ὼι'), - (0x1FF3, 'M', 'ωι'), - (0x1FF4, 'M', 'ώι'), - (0x1FF5, 'X'), - (0x1FF6, 'V'), - ] - -def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1FF7, 'M', 'ῶι'), - (0x1FF8, 'M', 'ὸ'), - (0x1FF9, 'M', 'ό'), - (0x1FFA, 'M', 'ὼ'), - (0x1FFB, 'M', 'ώ'), - (0x1FFC, 'M', 'ωι'), - (0x1FFD, '3', ' ́'), - (0x1FFE, '3', ' ̔'), - (0x1FFF, 'X'), - (0x2000, '3', ' '), - (0x200B, 'I'), - (0x200C, 'D', ''), - (0x200E, 'X'), - (0x2010, 'V'), - (0x2011, 'M', '‐'), - (0x2012, 'V'), - (0x2017, '3', ' ̳'), - (0x2018, 'V'), - (0x2024, 'X'), - (0x2027, 'V'), - (0x2028, 'X'), - (0x202F, '3', ' '), - (0x2030, 'V'), - (0x2033, 'M', '′′'), - (0x2034, 'M', '′′′'), - (0x2035, 'V'), - (0x2036, 'M', '‵‵'), - (0x2037, 'M', '‵‵‵'), - (0x2038, 'V'), - (0x203C, '3', '!!'), - (0x203D, 'V'), - (0x203E, '3', ' ̅'), - (0x203F, 'V'), - (0x2047, '3', '??'), - (0x2048, '3', '?!'), - (0x2049, '3', '!?'), - (0x204A, 'V'), - (0x2057, 'M', '′′′′'), - (0x2058, 'V'), - (0x205F, '3', ' '), - (0x2060, 'I'), - (0x2061, 'X'), - (0x2064, 'I'), - (0x2065, 'X'), - (0x2070, 'M', '0'), - (0x2071, 'M', 'i'), - (0x2072, 'X'), - (0x2074, 'M', '4'), - (0x2075, 'M', '5'), - (0x2076, 'M', '6'), - (0x2077, 'M', '7'), - (0x2078, 'M', '8'), - (0x2079, 'M', '9'), - (0x207A, '3', '+'), - (0x207B, 'M', '−'), - (0x207C, '3', '='), - (0x207D, '3', '('), - (0x207E, '3', ')'), - (0x207F, 'M', 'n'), - (0x2080, 'M', '0'), - (0x2081, 'M', '1'), - (0x2082, 'M', '2'), - (0x2083, 'M', '3'), - (0x2084, 'M', '4'), - (0x2085, 'M', '5'), - (0x2086, 'M', '6'), - (0x2087, 'M', '7'), - (0x2088, 'M', '8'), - (0x2089, 'M', '9'), - (0x208A, '3', '+'), - (0x208B, 'M', '−'), - (0x208C, '3', '='), - (0x208D, '3', '('), - (0x208E, '3', ')'), - (0x208F, 'X'), - (0x2090, 'M', 'a'), - (0x2091, 'M', 'e'), - (0x2092, 'M', 'o'), - (0x2093, 'M', 'x'), - (0x2094, 'M', 'ə'), - (0x2095, 'M', 'h'), - (0x2096, 'M', 'k'), - (0x2097, 'M', 'l'), - (0x2098, 'M', 'm'), - (0x2099, 'M', 'n'), - (0x209A, 'M', 'p'), - (0x209B, 'M', 's'), - (0x209C, 'M', 't'), - (0x209D, 'X'), - (0x20A0, 'V'), - (0x20A8, 'M', 'rs'), - (0x20A9, 'V'), - (0x20C1, 'X'), - (0x20D0, 'V'), - (0x20F1, 'X'), - (0x2100, '3', 'a/c'), - (0x2101, '3', 'a/s'), - (0x2102, 'M', 'c'), - (0x2103, 'M', '°c'), - (0x2104, 'V'), - ] - -def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2105, '3', 'c/o'), - (0x2106, '3', 'c/u'), - (0x2107, 'M', 'ɛ'), - (0x2108, 'V'), - (0x2109, 'M', '°f'), - (0x210A, 'M', 'g'), - (0x210B, 'M', 'h'), - (0x210F, 'M', 'ħ'), - (0x2110, 'M', 'i'), - (0x2112, 'M', 'l'), - (0x2114, 'V'), - (0x2115, 'M', 'n'), - (0x2116, 'M', 'no'), - (0x2117, 'V'), - (0x2119, 'M', 'p'), - (0x211A, 'M', 'q'), - (0x211B, 'M', 'r'), - (0x211E, 'V'), - (0x2120, 'M', 'sm'), - (0x2121, 'M', 'tel'), - (0x2122, 'M', 'tm'), - (0x2123, 'V'), - (0x2124, 'M', 'z'), - (0x2125, 'V'), - (0x2126, 'M', 'ω'), - (0x2127, 'V'), - (0x2128, 'M', 'z'), - (0x2129, 'V'), - (0x212A, 'M', 'k'), - (0x212B, 'M', 'å'), - (0x212C, 'M', 'b'), - (0x212D, 'M', 'c'), - (0x212E, 'V'), - (0x212F, 'M', 'e'), - (0x2131, 'M', 'f'), - (0x2132, 'X'), - (0x2133, 'M', 'm'), - (0x2134, 'M', 'o'), - (0x2135, 'M', 'א'), - (0x2136, 'M', 'ב'), - (0x2137, 'M', 'ג'), - (0x2138, 'M', 'ד'), - (0x2139, 'M', 'i'), - (0x213A, 'V'), - (0x213B, 'M', 'fax'), - (0x213C, 'M', 'π'), - (0x213D, 'M', 'γ'), - (0x213F, 'M', 'π'), - (0x2140, 'M', '∑'), - (0x2141, 'V'), - (0x2145, 'M', 'd'), - (0x2147, 'M', 'e'), - (0x2148, 'M', 'i'), - (0x2149, 'M', 'j'), - (0x214A, 'V'), - (0x2150, 'M', '1⁄7'), - (0x2151, 'M', '1⁄9'), - (0x2152, 'M', '1⁄10'), - (0x2153, 'M', '1⁄3'), - (0x2154, 'M', '2⁄3'), - (0x2155, 'M', '1⁄5'), - (0x2156, 'M', '2⁄5'), - (0x2157, 'M', '3⁄5'), - (0x2158, 'M', '4⁄5'), - (0x2159, 'M', '1⁄6'), - (0x215A, 'M', '5⁄6'), - (0x215B, 'M', '1⁄8'), - (0x215C, 'M', '3⁄8'), - (0x215D, 'M', '5⁄8'), - (0x215E, 'M', '7⁄8'), - (0x215F, 'M', '1⁄'), - (0x2160, 'M', 'i'), - (0x2161, 'M', 'ii'), - (0x2162, 'M', 'iii'), - (0x2163, 'M', 'iv'), - (0x2164, 'M', 'v'), - (0x2165, 'M', 'vi'), - (0x2166, 'M', 'vii'), - (0x2167, 'M', 'viii'), - (0x2168, 'M', 'ix'), - (0x2169, 'M', 'x'), - (0x216A, 'M', 'xi'), - (0x216B, 'M', 'xii'), - (0x216C, 'M', 'l'), - (0x216D, 'M', 'c'), - (0x216E, 'M', 'd'), - (0x216F, 'M', 'm'), - (0x2170, 'M', 'i'), - (0x2171, 'M', 'ii'), - (0x2172, 'M', 'iii'), - (0x2173, 'M', 'iv'), - (0x2174, 'M', 'v'), - (0x2175, 'M', 'vi'), - (0x2176, 'M', 'vii'), - (0x2177, 'M', 'viii'), - (0x2178, 'M', 'ix'), - (0x2179, 'M', 'x'), - (0x217A, 'M', 'xi'), - (0x217B, 'M', 'xii'), - (0x217C, 'M', 'l'), - ] - -def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x217D, 'M', 'c'), - (0x217E, 'M', 'd'), - (0x217F, 'M', 'm'), - (0x2180, 'V'), - (0x2183, 'X'), - (0x2184, 'V'), - (0x2189, 'M', '0⁄3'), - (0x218A, 'V'), - (0x218C, 'X'), - (0x2190, 'V'), - (0x222C, 'M', '∫∫'), - (0x222D, 'M', '∫∫∫'), - (0x222E, 'V'), - (0x222F, 'M', '∮∮'), - (0x2230, 'M', '∮∮∮'), - (0x2231, 'V'), - (0x2260, '3'), - (0x2261, 'V'), - (0x226E, '3'), - (0x2270, 'V'), - (0x2329, 'M', '〈'), - (0x232A, 'M', '〉'), - (0x232B, 'V'), - (0x2427, 'X'), - (0x2440, 'V'), - (0x244B, 'X'), - (0x2460, 'M', '1'), - (0x2461, 'M', '2'), - (0x2462, 'M', '3'), - (0x2463, 'M', '4'), - (0x2464, 'M', '5'), - (0x2465, 'M', '6'), - (0x2466, 'M', '7'), - (0x2467, 'M', '8'), - (0x2468, 'M', '9'), - (0x2469, 'M', '10'), - (0x246A, 'M', '11'), - (0x246B, 'M', '12'), - (0x246C, 'M', '13'), - (0x246D, 'M', '14'), - (0x246E, 'M', '15'), - (0x246F, 'M', '16'), - (0x2470, 'M', '17'), - (0x2471, 'M', '18'), - (0x2472, 'M', '19'), - (0x2473, 'M', '20'), - (0x2474, '3', '(1)'), - (0x2475, '3', '(2)'), - (0x2476, '3', '(3)'), - (0x2477, '3', '(4)'), - (0x2478, '3', '(5)'), - (0x2479, '3', '(6)'), - (0x247A, '3', '(7)'), - (0x247B, '3', '(8)'), - (0x247C, '3', '(9)'), - (0x247D, '3', '(10)'), - (0x247E, '3', '(11)'), - (0x247F, '3', '(12)'), - (0x2480, '3', '(13)'), - (0x2481, '3', '(14)'), - (0x2482, '3', '(15)'), - (0x2483, '3', '(16)'), - (0x2484, '3', '(17)'), - (0x2485, '3', '(18)'), - (0x2486, '3', '(19)'), - (0x2487, '3', '(20)'), - (0x2488, 'X'), - (0x249C, '3', '(a)'), - (0x249D, '3', '(b)'), - (0x249E, '3', '(c)'), - (0x249F, '3', '(d)'), - (0x24A0, '3', '(e)'), - (0x24A1, '3', '(f)'), - (0x24A2, '3', '(g)'), - (0x24A3, '3', '(h)'), - (0x24A4, '3', '(i)'), - (0x24A5, '3', '(j)'), - (0x24A6, '3', '(k)'), - (0x24A7, '3', '(l)'), - (0x24A8, '3', '(m)'), - (0x24A9, '3', '(n)'), - (0x24AA, '3', '(o)'), - (0x24AB, '3', '(p)'), - (0x24AC, '3', '(q)'), - (0x24AD, '3', '(r)'), - (0x24AE, '3', '(s)'), - (0x24AF, '3', '(t)'), - (0x24B0, '3', '(u)'), - (0x24B1, '3', '(v)'), - (0x24B2, '3', '(w)'), - (0x24B3, '3', '(x)'), - (0x24B4, '3', '(y)'), - (0x24B5, '3', '(z)'), - (0x24B6, 'M', 'a'), - (0x24B7, 'M', 'b'), - (0x24B8, 'M', 'c'), - (0x24B9, 'M', 'd'), - (0x24BA, 'M', 'e'), - (0x24BB, 'M', 'f'), - (0x24BC, 'M', 'g'), - ] - -def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x24BD, 'M', 'h'), - (0x24BE, 'M', 'i'), - (0x24BF, 'M', 'j'), - (0x24C0, 'M', 'k'), - (0x24C1, 'M', 'l'), - (0x24C2, 'M', 'm'), - (0x24C3, 'M', 'n'), - (0x24C4, 'M', 'o'), - (0x24C5, 'M', 'p'), - (0x24C6, 'M', 'q'), - (0x24C7, 'M', 'r'), - (0x24C8, 'M', 's'), - (0x24C9, 'M', 't'), - (0x24CA, 'M', 'u'), - (0x24CB, 'M', 'v'), - (0x24CC, 'M', 'w'), - (0x24CD, 'M', 'x'), - (0x24CE, 'M', 'y'), - (0x24CF, 'M', 'z'), - (0x24D0, 'M', 'a'), - (0x24D1, 'M', 'b'), - (0x24D2, 'M', 'c'), - (0x24D3, 'M', 'd'), - (0x24D4, 'M', 'e'), - (0x24D5, 'M', 'f'), - (0x24D6, 'M', 'g'), - (0x24D7, 'M', 'h'), - (0x24D8, 'M', 'i'), - (0x24D9, 'M', 'j'), - (0x24DA, 'M', 'k'), - (0x24DB, 'M', 'l'), - (0x24DC, 'M', 'm'), - (0x24DD, 'M', 'n'), - (0x24DE, 'M', 'o'), - (0x24DF, 'M', 'p'), - (0x24E0, 'M', 'q'), - (0x24E1, 'M', 'r'), - (0x24E2, 'M', 's'), - (0x24E3, 'M', 't'), - (0x24E4, 'M', 'u'), - (0x24E5, 'M', 'v'), - (0x24E6, 'M', 'w'), - (0x24E7, 'M', 'x'), - (0x24E8, 'M', 'y'), - (0x24E9, 'M', 'z'), - (0x24EA, 'M', '0'), - (0x24EB, 'V'), - (0x2A0C, 'M', '∫∫∫∫'), - (0x2A0D, 'V'), - (0x2A74, '3', '::='), - (0x2A75, '3', '=='), - (0x2A76, '3', '==='), - (0x2A77, 'V'), - (0x2ADC, 'M', '⫝̸'), - (0x2ADD, 'V'), - (0x2B74, 'X'), - (0x2B76, 'V'), - (0x2B96, 'X'), - (0x2B97, 'V'), - (0x2C00, 'M', 'ⰰ'), - (0x2C01, 'M', 'ⰱ'), - (0x2C02, 'M', 'ⰲ'), - (0x2C03, 'M', 'ⰳ'), - (0x2C04, 'M', 'ⰴ'), - (0x2C05, 'M', 'ⰵ'), - (0x2C06, 'M', 'ⰶ'), - (0x2C07, 'M', 'ⰷ'), - (0x2C08, 'M', 'ⰸ'), - (0x2C09, 'M', 'ⰹ'), - (0x2C0A, 'M', 'ⰺ'), - (0x2C0B, 'M', 'ⰻ'), - (0x2C0C, 'M', 'ⰼ'), - (0x2C0D, 'M', 'ⰽ'), - (0x2C0E, 'M', 'ⰾ'), - (0x2C0F, 'M', 'ⰿ'), - (0x2C10, 'M', 'ⱀ'), - (0x2C11, 'M', 'ⱁ'), - (0x2C12, 'M', 'ⱂ'), - (0x2C13, 'M', 'ⱃ'), - (0x2C14, 'M', 'ⱄ'), - (0x2C15, 'M', 'ⱅ'), - (0x2C16, 'M', 'ⱆ'), - (0x2C17, 'M', 'ⱇ'), - (0x2C18, 'M', 'ⱈ'), - (0x2C19, 'M', 'ⱉ'), - (0x2C1A, 'M', 'ⱊ'), - (0x2C1B, 'M', 'ⱋ'), - (0x2C1C, 'M', 'ⱌ'), - (0x2C1D, 'M', 'ⱍ'), - (0x2C1E, 'M', 'ⱎ'), - (0x2C1F, 'M', 'ⱏ'), - (0x2C20, 'M', 'ⱐ'), - (0x2C21, 'M', 'ⱑ'), - (0x2C22, 'M', 'ⱒ'), - (0x2C23, 'M', 'ⱓ'), - (0x2C24, 'M', 'ⱔ'), - (0x2C25, 'M', 'ⱕ'), - (0x2C26, 'M', 'ⱖ'), - (0x2C27, 'M', 'ⱗ'), - (0x2C28, 'M', 'ⱘ'), - ] - -def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2C29, 'M', 'ⱙ'), - (0x2C2A, 'M', 'ⱚ'), - (0x2C2B, 'M', 'ⱛ'), - (0x2C2C, 'M', 'ⱜ'), - (0x2C2D, 'M', 'ⱝ'), - (0x2C2E, 'M', 'ⱞ'), - (0x2C2F, 'M', 'ⱟ'), - (0x2C30, 'V'), - (0x2C60, 'M', 'ⱡ'), - (0x2C61, 'V'), - (0x2C62, 'M', 'ɫ'), - (0x2C63, 'M', 'ᵽ'), - (0x2C64, 'M', 'ɽ'), - (0x2C65, 'V'), - (0x2C67, 'M', 'ⱨ'), - (0x2C68, 'V'), - (0x2C69, 'M', 'ⱪ'), - (0x2C6A, 'V'), - (0x2C6B, 'M', 'ⱬ'), - (0x2C6C, 'V'), - (0x2C6D, 'M', 'ɑ'), - (0x2C6E, 'M', 'ɱ'), - (0x2C6F, 'M', 'ɐ'), - (0x2C70, 'M', 'ɒ'), - (0x2C71, 'V'), - (0x2C72, 'M', 'ⱳ'), - (0x2C73, 'V'), - (0x2C75, 'M', 'ⱶ'), - (0x2C76, 'V'), - (0x2C7C, 'M', 'j'), - (0x2C7D, 'M', 'v'), - (0x2C7E, 'M', 'ȿ'), - (0x2C7F, 'M', 'ɀ'), - (0x2C80, 'M', 'ⲁ'), - (0x2C81, 'V'), - (0x2C82, 'M', 'ⲃ'), - (0x2C83, 'V'), - (0x2C84, 'M', 'ⲅ'), - (0x2C85, 'V'), - (0x2C86, 'M', 'ⲇ'), - (0x2C87, 'V'), - (0x2C88, 'M', 'ⲉ'), - (0x2C89, 'V'), - (0x2C8A, 'M', 'ⲋ'), - (0x2C8B, 'V'), - (0x2C8C, 'M', 'ⲍ'), - (0x2C8D, 'V'), - (0x2C8E, 'M', 'ⲏ'), - (0x2C8F, 'V'), - (0x2C90, 'M', 'ⲑ'), - (0x2C91, 'V'), - (0x2C92, 'M', 'ⲓ'), - (0x2C93, 'V'), - (0x2C94, 'M', 'ⲕ'), - (0x2C95, 'V'), - (0x2C96, 'M', 'ⲗ'), - (0x2C97, 'V'), - (0x2C98, 'M', 'ⲙ'), - (0x2C99, 'V'), - (0x2C9A, 'M', 'ⲛ'), - (0x2C9B, 'V'), - (0x2C9C, 'M', 'ⲝ'), - (0x2C9D, 'V'), - (0x2C9E, 'M', 'ⲟ'), - (0x2C9F, 'V'), - (0x2CA0, 'M', 'ⲡ'), - (0x2CA1, 'V'), - (0x2CA2, 'M', 'ⲣ'), - (0x2CA3, 'V'), - (0x2CA4, 'M', 'ⲥ'), - (0x2CA5, 'V'), - (0x2CA6, 'M', 'ⲧ'), - (0x2CA7, 'V'), - (0x2CA8, 'M', 'ⲩ'), - (0x2CA9, 'V'), - (0x2CAA, 'M', 'ⲫ'), - (0x2CAB, 'V'), - (0x2CAC, 'M', 'ⲭ'), - (0x2CAD, 'V'), - (0x2CAE, 'M', 'ⲯ'), - (0x2CAF, 'V'), - (0x2CB0, 'M', 'ⲱ'), - (0x2CB1, 'V'), - (0x2CB2, 'M', 'ⲳ'), - (0x2CB3, 'V'), - (0x2CB4, 'M', 'ⲵ'), - (0x2CB5, 'V'), - (0x2CB6, 'M', 'ⲷ'), - (0x2CB7, 'V'), - (0x2CB8, 'M', 'ⲹ'), - (0x2CB9, 'V'), - (0x2CBA, 'M', 'ⲻ'), - (0x2CBB, 'V'), - (0x2CBC, 'M', 'ⲽ'), - (0x2CBD, 'V'), - (0x2CBE, 'M', 'ⲿ'), - (0x2CBF, 'V'), - (0x2CC0, 'M', 'ⳁ'), - (0x2CC1, 'V'), - (0x2CC2, 'M', 'ⳃ'), - ] - -def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2CC3, 'V'), - (0x2CC4, 'M', 'ⳅ'), - (0x2CC5, 'V'), - (0x2CC6, 'M', 'ⳇ'), - (0x2CC7, 'V'), - (0x2CC8, 'M', 'ⳉ'), - (0x2CC9, 'V'), - (0x2CCA, 'M', 'ⳋ'), - (0x2CCB, 'V'), - (0x2CCC, 'M', 'ⳍ'), - (0x2CCD, 'V'), - (0x2CCE, 'M', 'ⳏ'), - (0x2CCF, 'V'), - (0x2CD0, 'M', 'ⳑ'), - (0x2CD1, 'V'), - (0x2CD2, 'M', 'ⳓ'), - (0x2CD3, 'V'), - (0x2CD4, 'M', 'ⳕ'), - (0x2CD5, 'V'), - (0x2CD6, 'M', 'ⳗ'), - (0x2CD7, 'V'), - (0x2CD8, 'M', 'ⳙ'), - (0x2CD9, 'V'), - (0x2CDA, 'M', 'ⳛ'), - (0x2CDB, 'V'), - (0x2CDC, 'M', 'ⳝ'), - (0x2CDD, 'V'), - (0x2CDE, 'M', 'ⳟ'), - (0x2CDF, 'V'), - (0x2CE0, 'M', 'ⳡ'), - (0x2CE1, 'V'), - (0x2CE2, 'M', 'ⳣ'), - (0x2CE3, 'V'), - (0x2CEB, 'M', 'ⳬ'), - (0x2CEC, 'V'), - (0x2CED, 'M', 'ⳮ'), - (0x2CEE, 'V'), - (0x2CF2, 'M', 'ⳳ'), - (0x2CF3, 'V'), - (0x2CF4, 'X'), - (0x2CF9, 'V'), - (0x2D26, 'X'), - (0x2D27, 'V'), - (0x2D28, 'X'), - (0x2D2D, 'V'), - (0x2D2E, 'X'), - (0x2D30, 'V'), - (0x2D68, 'X'), - (0x2D6F, 'M', 'ⵡ'), - (0x2D70, 'V'), - (0x2D71, 'X'), - (0x2D7F, 'V'), - (0x2D97, 'X'), - (0x2DA0, 'V'), - (0x2DA7, 'X'), - (0x2DA8, 'V'), - (0x2DAF, 'X'), - (0x2DB0, 'V'), - (0x2DB7, 'X'), - (0x2DB8, 'V'), - (0x2DBF, 'X'), - (0x2DC0, 'V'), - (0x2DC7, 'X'), - (0x2DC8, 'V'), - (0x2DCF, 'X'), - (0x2DD0, 'V'), - (0x2DD7, 'X'), - (0x2DD8, 'V'), - (0x2DDF, 'X'), - (0x2DE0, 'V'), - (0x2E5E, 'X'), - (0x2E80, 'V'), - (0x2E9A, 'X'), - (0x2E9B, 'V'), - (0x2E9F, 'M', '母'), - (0x2EA0, 'V'), - (0x2EF3, 'M', '龟'), - (0x2EF4, 'X'), - (0x2F00, 'M', '一'), - (0x2F01, 'M', '丨'), - (0x2F02, 'M', '丶'), - (0x2F03, 'M', '丿'), - (0x2F04, 'M', '乙'), - (0x2F05, 'M', '亅'), - (0x2F06, 'M', '二'), - (0x2F07, 'M', '亠'), - (0x2F08, 'M', '人'), - (0x2F09, 'M', '儿'), - (0x2F0A, 'M', '入'), - (0x2F0B, 'M', '八'), - (0x2F0C, 'M', '冂'), - (0x2F0D, 'M', '冖'), - (0x2F0E, 'M', '冫'), - (0x2F0F, 'M', '几'), - (0x2F10, 'M', '凵'), - (0x2F11, 'M', '刀'), - (0x2F12, 'M', '力'), - (0x2F13, 'M', '勹'), - (0x2F14, 'M', '匕'), - (0x2F15, 'M', '匚'), - ] - -def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F16, 'M', '匸'), - (0x2F17, 'M', '十'), - (0x2F18, 'M', '卜'), - (0x2F19, 'M', '卩'), - (0x2F1A, 'M', '厂'), - (0x2F1B, 'M', '厶'), - (0x2F1C, 'M', '又'), - (0x2F1D, 'M', '口'), - (0x2F1E, 'M', '囗'), - (0x2F1F, 'M', '土'), - (0x2F20, 'M', '士'), - (0x2F21, 'M', '夂'), - (0x2F22, 'M', '夊'), - (0x2F23, 'M', '夕'), - (0x2F24, 'M', '大'), - (0x2F25, 'M', '女'), - (0x2F26, 'M', '子'), - (0x2F27, 'M', '宀'), - (0x2F28, 'M', '寸'), - (0x2F29, 'M', '小'), - (0x2F2A, 'M', '尢'), - (0x2F2B, 'M', '尸'), - (0x2F2C, 'M', '屮'), - (0x2F2D, 'M', '山'), - (0x2F2E, 'M', '巛'), - (0x2F2F, 'M', '工'), - (0x2F30, 'M', '己'), - (0x2F31, 'M', '巾'), - (0x2F32, 'M', '干'), - (0x2F33, 'M', '幺'), - (0x2F34, 'M', '广'), - (0x2F35, 'M', '廴'), - (0x2F36, 'M', '廾'), - (0x2F37, 'M', '弋'), - (0x2F38, 'M', '弓'), - (0x2F39, 'M', '彐'), - (0x2F3A, 'M', '彡'), - (0x2F3B, 'M', '彳'), - (0x2F3C, 'M', '心'), - (0x2F3D, 'M', '戈'), - (0x2F3E, 'M', '戶'), - (0x2F3F, 'M', '手'), - (0x2F40, 'M', '支'), - (0x2F41, 'M', '攴'), - (0x2F42, 'M', '文'), - (0x2F43, 'M', '斗'), - (0x2F44, 'M', '斤'), - (0x2F45, 'M', '方'), - (0x2F46, 'M', '无'), - (0x2F47, 'M', '日'), - (0x2F48, 'M', '曰'), - (0x2F49, 'M', '月'), - (0x2F4A, 'M', '木'), - (0x2F4B, 'M', '欠'), - (0x2F4C, 'M', '止'), - (0x2F4D, 'M', '歹'), - (0x2F4E, 'M', '殳'), - (0x2F4F, 'M', '毋'), - (0x2F50, 'M', '比'), - (0x2F51, 'M', '毛'), - (0x2F52, 'M', '氏'), - (0x2F53, 'M', '气'), - (0x2F54, 'M', '水'), - (0x2F55, 'M', '火'), - (0x2F56, 'M', '爪'), - (0x2F57, 'M', '父'), - (0x2F58, 'M', '爻'), - (0x2F59, 'M', '爿'), - (0x2F5A, 'M', '片'), - (0x2F5B, 'M', '牙'), - (0x2F5C, 'M', '牛'), - (0x2F5D, 'M', '犬'), - (0x2F5E, 'M', '玄'), - (0x2F5F, 'M', '玉'), - (0x2F60, 'M', '瓜'), - (0x2F61, 'M', '瓦'), - (0x2F62, 'M', '甘'), - (0x2F63, 'M', '生'), - (0x2F64, 'M', '用'), - (0x2F65, 'M', '田'), - (0x2F66, 'M', '疋'), - (0x2F67, 'M', '疒'), - (0x2F68, 'M', '癶'), - (0x2F69, 'M', '白'), - (0x2F6A, 'M', '皮'), - (0x2F6B, 'M', '皿'), - (0x2F6C, 'M', '目'), - (0x2F6D, 'M', '矛'), - (0x2F6E, 'M', '矢'), - (0x2F6F, 'M', '石'), - (0x2F70, 'M', '示'), - (0x2F71, 'M', '禸'), - (0x2F72, 'M', '禾'), - (0x2F73, 'M', '穴'), - (0x2F74, 'M', '立'), - (0x2F75, 'M', '竹'), - (0x2F76, 'M', '米'), - (0x2F77, 'M', '糸'), - (0x2F78, 'M', '缶'), - (0x2F79, 'M', '网'), - ] - -def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F7A, 'M', '羊'), - (0x2F7B, 'M', '羽'), - (0x2F7C, 'M', '老'), - (0x2F7D, 'M', '而'), - (0x2F7E, 'M', '耒'), - (0x2F7F, 'M', '耳'), - (0x2F80, 'M', '聿'), - (0x2F81, 'M', '肉'), - (0x2F82, 'M', '臣'), - (0x2F83, 'M', '自'), - (0x2F84, 'M', '至'), - (0x2F85, 'M', '臼'), - (0x2F86, 'M', '舌'), - (0x2F87, 'M', '舛'), - (0x2F88, 'M', '舟'), - (0x2F89, 'M', '艮'), - (0x2F8A, 'M', '色'), - (0x2F8B, 'M', '艸'), - (0x2F8C, 'M', '虍'), - (0x2F8D, 'M', '虫'), - (0x2F8E, 'M', '血'), - (0x2F8F, 'M', '行'), - (0x2F90, 'M', '衣'), - (0x2F91, 'M', '襾'), - (0x2F92, 'M', '見'), - (0x2F93, 'M', '角'), - (0x2F94, 'M', '言'), - (0x2F95, 'M', '谷'), - (0x2F96, 'M', '豆'), - (0x2F97, 'M', '豕'), - (0x2F98, 'M', '豸'), - (0x2F99, 'M', '貝'), - (0x2F9A, 'M', '赤'), - (0x2F9B, 'M', '走'), - (0x2F9C, 'M', '足'), - (0x2F9D, 'M', '身'), - (0x2F9E, 'M', '車'), - (0x2F9F, 'M', '辛'), - (0x2FA0, 'M', '辰'), - (0x2FA1, 'M', '辵'), - (0x2FA2, 'M', '邑'), - (0x2FA3, 'M', '酉'), - (0x2FA4, 'M', '釆'), - (0x2FA5, 'M', '里'), - (0x2FA6, 'M', '金'), - (0x2FA7, 'M', '長'), - (0x2FA8, 'M', '門'), - (0x2FA9, 'M', '阜'), - (0x2FAA, 'M', '隶'), - (0x2FAB, 'M', '隹'), - (0x2FAC, 'M', '雨'), - (0x2FAD, 'M', '靑'), - (0x2FAE, 'M', '非'), - (0x2FAF, 'M', '面'), - (0x2FB0, 'M', '革'), - (0x2FB1, 'M', '韋'), - (0x2FB2, 'M', '韭'), - (0x2FB3, 'M', '音'), - (0x2FB4, 'M', '頁'), - (0x2FB5, 'M', '風'), - (0x2FB6, 'M', '飛'), - (0x2FB7, 'M', '食'), - (0x2FB8, 'M', '首'), - (0x2FB9, 'M', '香'), - (0x2FBA, 'M', '馬'), - (0x2FBB, 'M', '骨'), - (0x2FBC, 'M', '高'), - (0x2FBD, 'M', '髟'), - (0x2FBE, 'M', '鬥'), - (0x2FBF, 'M', '鬯'), - (0x2FC0, 'M', '鬲'), - (0x2FC1, 'M', '鬼'), - (0x2FC2, 'M', '魚'), - (0x2FC3, 'M', '鳥'), - (0x2FC4, 'M', '鹵'), - (0x2FC5, 'M', '鹿'), - (0x2FC6, 'M', '麥'), - (0x2FC7, 'M', '麻'), - (0x2FC8, 'M', '黃'), - (0x2FC9, 'M', '黍'), - (0x2FCA, 'M', '黑'), - (0x2FCB, 'M', '黹'), - (0x2FCC, 'M', '黽'), - (0x2FCD, 'M', '鼎'), - (0x2FCE, 'M', '鼓'), - (0x2FCF, 'M', '鼠'), - (0x2FD0, 'M', '鼻'), - (0x2FD1, 'M', '齊'), - (0x2FD2, 'M', '齒'), - (0x2FD3, 'M', '龍'), - (0x2FD4, 'M', '龜'), - (0x2FD5, 'M', '龠'), - (0x2FD6, 'X'), - (0x3000, '3', ' '), - (0x3001, 'V'), - (0x3002, 'M', '.'), - (0x3003, 'V'), - (0x3036, 'M', '〒'), - (0x3037, 'V'), - (0x3038, 'M', '十'), - ] - -def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x3039, 'M', '卄'), - (0x303A, 'M', '卅'), - (0x303B, 'V'), - (0x3040, 'X'), - (0x3041, 'V'), - (0x3097, 'X'), - (0x3099, 'V'), - (0x309B, '3', ' ゙'), - (0x309C, '3', ' ゚'), - (0x309D, 'V'), - (0x309F, 'M', 'より'), - (0x30A0, 'V'), - (0x30FF, 'M', 'コト'), - (0x3100, 'X'), - (0x3105, 'V'), - (0x3130, 'X'), - (0x3131, 'M', 'ᄀ'), - (0x3132, 'M', 'ᄁ'), - (0x3133, 'M', 'ᆪ'), - (0x3134, 'M', 'ᄂ'), - (0x3135, 'M', 'ᆬ'), - (0x3136, 'M', 'ᆭ'), - (0x3137, 'M', 'ᄃ'), - (0x3138, 'M', 'ᄄ'), - (0x3139, 'M', 'ᄅ'), - (0x313A, 'M', 'ᆰ'), - (0x313B, 'M', 'ᆱ'), - (0x313C, 'M', 'ᆲ'), - (0x313D, 'M', 'ᆳ'), - (0x313E, 'M', 'ᆴ'), - (0x313F, 'M', 'ᆵ'), - (0x3140, 'M', 'ᄚ'), - (0x3141, 'M', 'ᄆ'), - (0x3142, 'M', 'ᄇ'), - (0x3143, 'M', 'ᄈ'), - (0x3144, 'M', 'ᄡ'), - (0x3145, 'M', 'ᄉ'), - (0x3146, 'M', 'ᄊ'), - (0x3147, 'M', 'ᄋ'), - (0x3148, 'M', 'ᄌ'), - (0x3149, 'M', 'ᄍ'), - (0x314A, 'M', 'ᄎ'), - (0x314B, 'M', 'ᄏ'), - (0x314C, 'M', 'ᄐ'), - (0x314D, 'M', 'ᄑ'), - (0x314E, 'M', 'ᄒ'), - (0x314F, 'M', 'ᅡ'), - (0x3150, 'M', 'ᅢ'), - (0x3151, 'M', 'ᅣ'), - (0x3152, 'M', 'ᅤ'), - (0x3153, 'M', 'ᅥ'), - (0x3154, 'M', 'ᅦ'), - (0x3155, 'M', 'ᅧ'), - (0x3156, 'M', 'ᅨ'), - (0x3157, 'M', 'ᅩ'), - (0x3158, 'M', 'ᅪ'), - (0x3159, 'M', 'ᅫ'), - (0x315A, 'M', 'ᅬ'), - (0x315B, 'M', 'ᅭ'), - (0x315C, 'M', 'ᅮ'), - (0x315D, 'M', 'ᅯ'), - (0x315E, 'M', 'ᅰ'), - (0x315F, 'M', 'ᅱ'), - (0x3160, 'M', 'ᅲ'), - (0x3161, 'M', 'ᅳ'), - (0x3162, 'M', 'ᅴ'), - (0x3163, 'M', 'ᅵ'), - (0x3164, 'X'), - (0x3165, 'M', 'ᄔ'), - (0x3166, 'M', 'ᄕ'), - (0x3167, 'M', 'ᇇ'), - (0x3168, 'M', 'ᇈ'), - (0x3169, 'M', 'ᇌ'), - (0x316A, 'M', 'ᇎ'), - (0x316B, 'M', 'ᇓ'), - (0x316C, 'M', 'ᇗ'), - (0x316D, 'M', 'ᇙ'), - (0x316E, 'M', 'ᄜ'), - (0x316F, 'M', 'ᇝ'), - (0x3170, 'M', 'ᇟ'), - (0x3171, 'M', 'ᄝ'), - (0x3172, 'M', 'ᄞ'), - (0x3173, 'M', 'ᄠ'), - (0x3174, 'M', 'ᄢ'), - (0x3175, 'M', 'ᄣ'), - (0x3176, 'M', 'ᄧ'), - (0x3177, 'M', 'ᄩ'), - (0x3178, 'M', 'ᄫ'), - (0x3179, 'M', 'ᄬ'), - (0x317A, 'M', 'ᄭ'), - (0x317B, 'M', 'ᄮ'), - (0x317C, 'M', 'ᄯ'), - (0x317D, 'M', 'ᄲ'), - (0x317E, 'M', 'ᄶ'), - (0x317F, 'M', 'ᅀ'), - (0x3180, 'M', 'ᅇ'), - (0x3181, 'M', 'ᅌ'), - (0x3182, 'M', 'ᇱ'), - (0x3183, 'M', 'ᇲ'), - (0x3184, 'M', 'ᅗ'), - ] - -def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x3185, 'M', 'ᅘ'), - (0x3186, 'M', 'ᅙ'), - (0x3187, 'M', 'ᆄ'), - (0x3188, 'M', 'ᆅ'), - (0x3189, 'M', 'ᆈ'), - (0x318A, 'M', 'ᆑ'), - (0x318B, 'M', 'ᆒ'), - (0x318C, 'M', 'ᆔ'), - (0x318D, 'M', 'ᆞ'), - (0x318E, 'M', 'ᆡ'), - (0x318F, 'X'), - (0x3190, 'V'), - (0x3192, 'M', '一'), - (0x3193, 'M', '二'), - (0x3194, 'M', '三'), - (0x3195, 'M', '四'), - (0x3196, 'M', '上'), - (0x3197, 'M', '中'), - (0x3198, 'M', '下'), - (0x3199, 'M', '甲'), - (0x319A, 'M', '乙'), - (0x319B, 'M', '丙'), - (0x319C, 'M', '丁'), - (0x319D, 'M', '天'), - (0x319E, 'M', '地'), - (0x319F, 'M', '人'), - (0x31A0, 'V'), - (0x31E4, 'X'), - (0x31F0, 'V'), - (0x3200, '3', '(ᄀ)'), - (0x3201, '3', '(ᄂ)'), - (0x3202, '3', '(ᄃ)'), - (0x3203, '3', '(ᄅ)'), - (0x3204, '3', '(ᄆ)'), - (0x3205, '3', '(ᄇ)'), - (0x3206, '3', '(ᄉ)'), - (0x3207, '3', '(ᄋ)'), - (0x3208, '3', '(ᄌ)'), - (0x3209, '3', '(ᄎ)'), - (0x320A, '3', '(ᄏ)'), - (0x320B, '3', '(ᄐ)'), - (0x320C, '3', '(ᄑ)'), - (0x320D, '3', '(ᄒ)'), - (0x320E, '3', '(가)'), - (0x320F, '3', '(나)'), - (0x3210, '3', '(다)'), - (0x3211, '3', '(라)'), - (0x3212, '3', '(마)'), - (0x3213, '3', '(바)'), - (0x3214, '3', '(사)'), - (0x3215, '3', '(아)'), - (0x3216, '3', '(자)'), - (0x3217, '3', '(차)'), - (0x3218, '3', '(카)'), - (0x3219, '3', '(타)'), - (0x321A, '3', '(파)'), - (0x321B, '3', '(하)'), - (0x321C, '3', '(주)'), - (0x321D, '3', '(오전)'), - (0x321E, '3', '(오후)'), - (0x321F, 'X'), - (0x3220, '3', '(一)'), - (0x3221, '3', '(二)'), - (0x3222, '3', '(三)'), - (0x3223, '3', '(四)'), - (0x3224, '3', '(五)'), - (0x3225, '3', '(六)'), - (0x3226, '3', '(七)'), - (0x3227, '3', '(八)'), - (0x3228, '3', '(九)'), - (0x3229, '3', '(十)'), - (0x322A, '3', '(月)'), - (0x322B, '3', '(火)'), - (0x322C, '3', '(水)'), - (0x322D, '3', '(木)'), - (0x322E, '3', '(金)'), - (0x322F, '3', '(土)'), - (0x3230, '3', '(日)'), - (0x3231, '3', '(株)'), - (0x3232, '3', '(有)'), - (0x3233, '3', '(社)'), - (0x3234, '3', '(名)'), - (0x3235, '3', '(特)'), - (0x3236, '3', '(財)'), - (0x3237, '3', '(祝)'), - (0x3238, '3', '(労)'), - (0x3239, '3', '(代)'), - (0x323A, '3', '(呼)'), - (0x323B, '3', '(学)'), - (0x323C, '3', '(監)'), - (0x323D, '3', '(企)'), - (0x323E, '3', '(資)'), - (0x323F, '3', '(協)'), - (0x3240, '3', '(祭)'), - (0x3241, '3', '(休)'), - (0x3242, '3', '(自)'), - (0x3243, '3', '(至)'), - (0x3244, 'M', '問'), - (0x3245, 'M', '幼'), - (0x3246, 'M', '文'), - ] - -def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x3247, 'M', '箏'), - (0x3248, 'V'), - (0x3250, 'M', 'pte'), - (0x3251, 'M', '21'), - (0x3252, 'M', '22'), - (0x3253, 'M', '23'), - (0x3254, 'M', '24'), - (0x3255, 'M', '25'), - (0x3256, 'M', '26'), - (0x3257, 'M', '27'), - (0x3258, 'M', '28'), - (0x3259, 'M', '29'), - (0x325A, 'M', '30'), - (0x325B, 'M', '31'), - (0x325C, 'M', '32'), - (0x325D, 'M', '33'), - (0x325E, 'M', '34'), - (0x325F, 'M', '35'), - (0x3260, 'M', 'ᄀ'), - (0x3261, 'M', 'ᄂ'), - (0x3262, 'M', 'ᄃ'), - (0x3263, 'M', 'ᄅ'), - (0x3264, 'M', 'ᄆ'), - (0x3265, 'M', 'ᄇ'), - (0x3266, 'M', 'ᄉ'), - (0x3267, 'M', 'ᄋ'), - (0x3268, 'M', 'ᄌ'), - (0x3269, 'M', 'ᄎ'), - (0x326A, 'M', 'ᄏ'), - (0x326B, 'M', 'ᄐ'), - (0x326C, 'M', 'ᄑ'), - (0x326D, 'M', 'ᄒ'), - (0x326E, 'M', '가'), - (0x326F, 'M', '나'), - (0x3270, 'M', '다'), - (0x3271, 'M', '라'), - (0x3272, 'M', '마'), - (0x3273, 'M', '바'), - (0x3274, 'M', '사'), - (0x3275, 'M', '아'), - (0x3276, 'M', '자'), - (0x3277, 'M', '차'), - (0x3278, 'M', '카'), - (0x3279, 'M', '타'), - (0x327A, 'M', '파'), - (0x327B, 'M', '하'), - (0x327C, 'M', '참고'), - (0x327D, 'M', '주의'), - (0x327E, 'M', '우'), - (0x327F, 'V'), - (0x3280, 'M', '一'), - (0x3281, 'M', '二'), - (0x3282, 'M', '三'), - (0x3283, 'M', '四'), - (0x3284, 'M', '五'), - (0x3285, 'M', '六'), - (0x3286, 'M', '七'), - (0x3287, 'M', '八'), - (0x3288, 'M', '九'), - (0x3289, 'M', '十'), - (0x328A, 'M', '月'), - (0x328B, 'M', '火'), - (0x328C, 'M', '水'), - (0x328D, 'M', '木'), - (0x328E, 'M', '金'), - (0x328F, 'M', '土'), - (0x3290, 'M', '日'), - (0x3291, 'M', '株'), - (0x3292, 'M', '有'), - (0x3293, 'M', '社'), - (0x3294, 'M', '名'), - (0x3295, 'M', '特'), - (0x3296, 'M', '財'), - (0x3297, 'M', '祝'), - (0x3298, 'M', '労'), - (0x3299, 'M', '秘'), - (0x329A, 'M', '男'), - (0x329B, 'M', '女'), - (0x329C, 'M', '適'), - (0x329D, 'M', '優'), - (0x329E, 'M', '印'), - (0x329F, 'M', '注'), - (0x32A0, 'M', '項'), - (0x32A1, 'M', '休'), - (0x32A2, 'M', '写'), - (0x32A3, 'M', '正'), - (0x32A4, 'M', '上'), - (0x32A5, 'M', '中'), - (0x32A6, 'M', '下'), - (0x32A7, 'M', '左'), - (0x32A8, 'M', '右'), - (0x32A9, 'M', '医'), - (0x32AA, 'M', '宗'), - (0x32AB, 'M', '学'), - (0x32AC, 'M', '監'), - (0x32AD, 'M', '企'), - (0x32AE, 'M', '資'), - (0x32AF, 'M', '協'), - (0x32B0, 'M', '夜'), - (0x32B1, 'M', '36'), - ] - -def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x32B2, 'M', '37'), - (0x32B3, 'M', '38'), - (0x32B4, 'M', '39'), - (0x32B5, 'M', '40'), - (0x32B6, 'M', '41'), - (0x32B7, 'M', '42'), - (0x32B8, 'M', '43'), - (0x32B9, 'M', '44'), - (0x32BA, 'M', '45'), - (0x32BB, 'M', '46'), - (0x32BC, 'M', '47'), - (0x32BD, 'M', '48'), - (0x32BE, 'M', '49'), - (0x32BF, 'M', '50'), - (0x32C0, 'M', '1月'), - (0x32C1, 'M', '2月'), - (0x32C2, 'M', '3月'), - (0x32C3, 'M', '4月'), - (0x32C4, 'M', '5月'), - (0x32C5, 'M', '6月'), - (0x32C6, 'M', '7月'), - (0x32C7, 'M', '8月'), - (0x32C8, 'M', '9月'), - (0x32C9, 'M', '10月'), - (0x32CA, 'M', '11月'), - (0x32CB, 'M', '12月'), - (0x32CC, 'M', 'hg'), - (0x32CD, 'M', 'erg'), - (0x32CE, 'M', 'ev'), - (0x32CF, 'M', 'ltd'), - (0x32D0, 'M', 'ア'), - (0x32D1, 'M', 'イ'), - (0x32D2, 'M', 'ウ'), - (0x32D3, 'M', 'エ'), - (0x32D4, 'M', 'オ'), - (0x32D5, 'M', 'カ'), - (0x32D6, 'M', 'キ'), - (0x32D7, 'M', 'ク'), - (0x32D8, 'M', 'ケ'), - (0x32D9, 'M', 'コ'), - (0x32DA, 'M', 'サ'), - (0x32DB, 'M', 'シ'), - (0x32DC, 'M', 'ス'), - (0x32DD, 'M', 'セ'), - (0x32DE, 'M', 'ソ'), - (0x32DF, 'M', 'タ'), - (0x32E0, 'M', 'チ'), - (0x32E1, 'M', 'ツ'), - (0x32E2, 'M', 'テ'), - (0x32E3, 'M', 'ト'), - (0x32E4, 'M', 'ナ'), - (0x32E5, 'M', 'ニ'), - (0x32E6, 'M', 'ヌ'), - (0x32E7, 'M', 'ネ'), - (0x32E8, 'M', 'ノ'), - (0x32E9, 'M', 'ハ'), - (0x32EA, 'M', 'ヒ'), - (0x32EB, 'M', 'フ'), - (0x32EC, 'M', 'ヘ'), - (0x32ED, 'M', 'ホ'), - (0x32EE, 'M', 'マ'), - (0x32EF, 'M', 'ミ'), - (0x32F0, 'M', 'ム'), - (0x32F1, 'M', 'メ'), - (0x32F2, 'M', 'モ'), - (0x32F3, 'M', 'ヤ'), - (0x32F4, 'M', 'ユ'), - (0x32F5, 'M', 'ヨ'), - (0x32F6, 'M', 'ラ'), - (0x32F7, 'M', 'リ'), - (0x32F8, 'M', 'ル'), - (0x32F9, 'M', 'レ'), - (0x32FA, 'M', 'ロ'), - (0x32FB, 'M', 'ワ'), - (0x32FC, 'M', 'ヰ'), - (0x32FD, 'M', 'ヱ'), - (0x32FE, 'M', 'ヲ'), - (0x32FF, 'M', '令和'), - (0x3300, 'M', 'アパート'), - (0x3301, 'M', 'アルファ'), - (0x3302, 'M', 'アンペア'), - (0x3303, 'M', 'アール'), - (0x3304, 'M', 'イニング'), - (0x3305, 'M', 'インチ'), - (0x3306, 'M', 'ウォン'), - (0x3307, 'M', 'エスクード'), - (0x3308, 'M', 'エーカー'), - (0x3309, 'M', 'オンス'), - (0x330A, 'M', 'オーム'), - (0x330B, 'M', 'カイリ'), - (0x330C, 'M', 'カラット'), - (0x330D, 'M', 'カロリー'), - (0x330E, 'M', 'ガロン'), - (0x330F, 'M', 'ガンマ'), - (0x3310, 'M', 'ギガ'), - (0x3311, 'M', 'ギニー'), - (0x3312, 'M', 'キュリー'), - (0x3313, 'M', 'ギルダー'), - (0x3314, 'M', 'キロ'), - (0x3315, 'M', 'キログラム'), - ] - -def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x3316, 'M', 'キロメートル'), - (0x3317, 'M', 'キロワット'), - (0x3318, 'M', 'グラム'), - (0x3319, 'M', 'グラムトン'), - (0x331A, 'M', 'クルゼイロ'), - (0x331B, 'M', 'クローネ'), - (0x331C, 'M', 'ケース'), - (0x331D, 'M', 'コルナ'), - (0x331E, 'M', 'コーポ'), - (0x331F, 'M', 'サイクル'), - (0x3320, 'M', 'サンチーム'), - (0x3321, 'M', 'シリング'), - (0x3322, 'M', 'センチ'), - (0x3323, 'M', 'セント'), - (0x3324, 'M', 'ダース'), - (0x3325, 'M', 'デシ'), - (0x3326, 'M', 'ドル'), - (0x3327, 'M', 'トン'), - (0x3328, 'M', 'ナノ'), - (0x3329, 'M', 'ノット'), - (0x332A, 'M', 'ハイツ'), - (0x332B, 'M', 'パーセント'), - (0x332C, 'M', 'パーツ'), - (0x332D, 'M', 'バーレル'), - (0x332E, 'M', 'ピアストル'), - (0x332F, 'M', 'ピクル'), - (0x3330, 'M', 'ピコ'), - (0x3331, 'M', 'ビル'), - (0x3332, 'M', 'ファラッド'), - (0x3333, 'M', 'フィート'), - (0x3334, 'M', 'ブッシェル'), - (0x3335, 'M', 'フラン'), - (0x3336, 'M', 'ヘクタール'), - (0x3337, 'M', 'ペソ'), - (0x3338, 'M', 'ペニヒ'), - (0x3339, 'M', 'ヘルツ'), - (0x333A, 'M', 'ペンス'), - (0x333B, 'M', 'ページ'), - (0x333C, 'M', 'ベータ'), - (0x333D, 'M', 'ポイント'), - (0x333E, 'M', 'ボルト'), - (0x333F, 'M', 'ホン'), - (0x3340, 'M', 'ポンド'), - (0x3341, 'M', 'ホール'), - (0x3342, 'M', 'ホーン'), - (0x3343, 'M', 'マイクロ'), - (0x3344, 'M', 'マイル'), - (0x3345, 'M', 'マッハ'), - (0x3346, 'M', 'マルク'), - (0x3347, 'M', 'マンション'), - (0x3348, 'M', 'ミクロン'), - (0x3349, 'M', 'ミリ'), - (0x334A, 'M', 'ミリバール'), - (0x334B, 'M', 'メガ'), - (0x334C, 'M', 'メガトン'), - (0x334D, 'M', 'メートル'), - (0x334E, 'M', 'ヤード'), - (0x334F, 'M', 'ヤール'), - (0x3350, 'M', 'ユアン'), - (0x3351, 'M', 'リットル'), - (0x3352, 'M', 'リラ'), - (0x3353, 'M', 'ルピー'), - (0x3354, 'M', 'ルーブル'), - (0x3355, 'M', 'レム'), - (0x3356, 'M', 'レントゲン'), - (0x3357, 'M', 'ワット'), - (0x3358, 'M', '0点'), - (0x3359, 'M', '1点'), - (0x335A, 'M', '2点'), - (0x335B, 'M', '3点'), - (0x335C, 'M', '4点'), - (0x335D, 'M', '5点'), - (0x335E, 'M', '6点'), - (0x335F, 'M', '7点'), - (0x3360, 'M', '8点'), - (0x3361, 'M', '9点'), - (0x3362, 'M', '10点'), - (0x3363, 'M', '11点'), - (0x3364, 'M', '12点'), - (0x3365, 'M', '13点'), - (0x3366, 'M', '14点'), - (0x3367, 'M', '15点'), - (0x3368, 'M', '16点'), - (0x3369, 'M', '17点'), - (0x336A, 'M', '18点'), - (0x336B, 'M', '19点'), - (0x336C, 'M', '20点'), - (0x336D, 'M', '21点'), - (0x336E, 'M', '22点'), - (0x336F, 'M', '23点'), - (0x3370, 'M', '24点'), - (0x3371, 'M', 'hpa'), - (0x3372, 'M', 'da'), - (0x3373, 'M', 'au'), - (0x3374, 'M', 'bar'), - (0x3375, 'M', 'ov'), - (0x3376, 'M', 'pc'), - (0x3377, 'M', 'dm'), - (0x3378, 'M', 'dm2'), - (0x3379, 'M', 'dm3'), - ] - -def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x337A, 'M', 'iu'), - (0x337B, 'M', '平成'), - (0x337C, 'M', '昭和'), - (0x337D, 'M', '大正'), - (0x337E, 'M', '明治'), - (0x337F, 'M', '株式会社'), - (0x3380, 'M', 'pa'), - (0x3381, 'M', 'na'), - (0x3382, 'M', 'μa'), - (0x3383, 'M', 'ma'), - (0x3384, 'M', 'ka'), - (0x3385, 'M', 'kb'), - (0x3386, 'M', 'mb'), - (0x3387, 'M', 'gb'), - (0x3388, 'M', 'cal'), - (0x3389, 'M', 'kcal'), - (0x338A, 'M', 'pf'), - (0x338B, 'M', 'nf'), - (0x338C, 'M', 'μf'), - (0x338D, 'M', 'μg'), - (0x338E, 'M', 'mg'), - (0x338F, 'M', 'kg'), - (0x3390, 'M', 'hz'), - (0x3391, 'M', 'khz'), - (0x3392, 'M', 'mhz'), - (0x3393, 'M', 'ghz'), - (0x3394, 'M', 'thz'), - (0x3395, 'M', 'μl'), - (0x3396, 'M', 'ml'), - (0x3397, 'M', 'dl'), - (0x3398, 'M', 'kl'), - (0x3399, 'M', 'fm'), - (0x339A, 'M', 'nm'), - (0x339B, 'M', 'μm'), - (0x339C, 'M', 'mm'), - (0x339D, 'M', 'cm'), - (0x339E, 'M', 'km'), - (0x339F, 'M', 'mm2'), - (0x33A0, 'M', 'cm2'), - (0x33A1, 'M', 'm2'), - (0x33A2, 'M', 'km2'), - (0x33A3, 'M', 'mm3'), - (0x33A4, 'M', 'cm3'), - (0x33A5, 'M', 'm3'), - (0x33A6, 'M', 'km3'), - (0x33A7, 'M', 'm∕s'), - (0x33A8, 'M', 'm∕s2'), - (0x33A9, 'M', 'pa'), - (0x33AA, 'M', 'kpa'), - (0x33AB, 'M', 'mpa'), - (0x33AC, 'M', 'gpa'), - (0x33AD, 'M', 'rad'), - (0x33AE, 'M', 'rad∕s'), - (0x33AF, 'M', 'rad∕s2'), - (0x33B0, 'M', 'ps'), - (0x33B1, 'M', 'ns'), - (0x33B2, 'M', 'μs'), - (0x33B3, 'M', 'ms'), - (0x33B4, 'M', 'pv'), - (0x33B5, 'M', 'nv'), - (0x33B6, 'M', 'μv'), - (0x33B7, 'M', 'mv'), - (0x33B8, 'M', 'kv'), - (0x33B9, 'M', 'mv'), - (0x33BA, 'M', 'pw'), - (0x33BB, 'M', 'nw'), - (0x33BC, 'M', 'μw'), - (0x33BD, 'M', 'mw'), - (0x33BE, 'M', 'kw'), - (0x33BF, 'M', 'mw'), - (0x33C0, 'M', 'kω'), - (0x33C1, 'M', 'mω'), - (0x33C2, 'X'), - (0x33C3, 'M', 'bq'), - (0x33C4, 'M', 'cc'), - (0x33C5, 'M', 'cd'), - (0x33C6, 'M', 'c∕kg'), - (0x33C7, 'X'), - (0x33C8, 'M', 'db'), - (0x33C9, 'M', 'gy'), - (0x33CA, 'M', 'ha'), - (0x33CB, 'M', 'hp'), - (0x33CC, 'M', 'in'), - (0x33CD, 'M', 'kk'), - (0x33CE, 'M', 'km'), - (0x33CF, 'M', 'kt'), - (0x33D0, 'M', 'lm'), - (0x33D1, 'M', 'ln'), - (0x33D2, 'M', 'log'), - (0x33D3, 'M', 'lx'), - (0x33D4, 'M', 'mb'), - (0x33D5, 'M', 'mil'), - (0x33D6, 'M', 'mol'), - (0x33D7, 'M', 'ph'), - (0x33D8, 'X'), - (0x33D9, 'M', 'ppm'), - (0x33DA, 'M', 'pr'), - (0x33DB, 'M', 'sr'), - (0x33DC, 'M', 'sv'), - (0x33DD, 'M', 'wb'), - ] - -def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x33DE, 'M', 'v∕m'), - (0x33DF, 'M', 'a∕m'), - (0x33E0, 'M', '1日'), - (0x33E1, 'M', '2日'), - (0x33E2, 'M', '3日'), - (0x33E3, 'M', '4日'), - (0x33E4, 'M', '5日'), - (0x33E5, 'M', '6日'), - (0x33E6, 'M', '7日'), - (0x33E7, 'M', '8日'), - (0x33E8, 'M', '9日'), - (0x33E9, 'M', '10日'), - (0x33EA, 'M', '11日'), - (0x33EB, 'M', '12日'), - (0x33EC, 'M', '13日'), - (0x33ED, 'M', '14日'), - (0x33EE, 'M', '15日'), - (0x33EF, 'M', '16日'), - (0x33F0, 'M', '17日'), - (0x33F1, 'M', '18日'), - (0x33F2, 'M', '19日'), - (0x33F3, 'M', '20日'), - (0x33F4, 'M', '21日'), - (0x33F5, 'M', '22日'), - (0x33F6, 'M', '23日'), - (0x33F7, 'M', '24日'), - (0x33F8, 'M', '25日'), - (0x33F9, 'M', '26日'), - (0x33FA, 'M', '27日'), - (0x33FB, 'M', '28日'), - (0x33FC, 'M', '29日'), - (0x33FD, 'M', '30日'), - (0x33FE, 'M', '31日'), - (0x33FF, 'M', 'gal'), - (0x3400, 'V'), - (0xA48D, 'X'), - (0xA490, 'V'), - (0xA4C7, 'X'), - (0xA4D0, 'V'), - (0xA62C, 'X'), - (0xA640, 'M', 'ꙁ'), - (0xA641, 'V'), - (0xA642, 'M', 'ꙃ'), - (0xA643, 'V'), - (0xA644, 'M', 'ꙅ'), - (0xA645, 'V'), - (0xA646, 'M', 'ꙇ'), - (0xA647, 'V'), - (0xA648, 'M', 'ꙉ'), - (0xA649, 'V'), - (0xA64A, 'M', 'ꙋ'), - (0xA64B, 'V'), - (0xA64C, 'M', 'ꙍ'), - (0xA64D, 'V'), - (0xA64E, 'M', 'ꙏ'), - (0xA64F, 'V'), - (0xA650, 'M', 'ꙑ'), - (0xA651, 'V'), - (0xA652, 'M', 'ꙓ'), - (0xA653, 'V'), - (0xA654, 'M', 'ꙕ'), - (0xA655, 'V'), - (0xA656, 'M', 'ꙗ'), - (0xA657, 'V'), - (0xA658, 'M', 'ꙙ'), - (0xA659, 'V'), - (0xA65A, 'M', 'ꙛ'), - (0xA65B, 'V'), - (0xA65C, 'M', 'ꙝ'), - (0xA65D, 'V'), - (0xA65E, 'M', 'ꙟ'), - (0xA65F, 'V'), - (0xA660, 'M', 'ꙡ'), - (0xA661, 'V'), - (0xA662, 'M', 'ꙣ'), - (0xA663, 'V'), - (0xA664, 'M', 'ꙥ'), - (0xA665, 'V'), - (0xA666, 'M', 'ꙧ'), - (0xA667, 'V'), - (0xA668, 'M', 'ꙩ'), - (0xA669, 'V'), - (0xA66A, 'M', 'ꙫ'), - (0xA66B, 'V'), - (0xA66C, 'M', 'ꙭ'), - (0xA66D, 'V'), - (0xA680, 'M', 'ꚁ'), - (0xA681, 'V'), - (0xA682, 'M', 'ꚃ'), - (0xA683, 'V'), - (0xA684, 'M', 'ꚅ'), - (0xA685, 'V'), - (0xA686, 'M', 'ꚇ'), - (0xA687, 'V'), - (0xA688, 'M', 'ꚉ'), - (0xA689, 'V'), - (0xA68A, 'M', 'ꚋ'), - (0xA68B, 'V'), - (0xA68C, 'M', 'ꚍ'), - (0xA68D, 'V'), - ] - -def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xA68E, 'M', 'ꚏ'), - (0xA68F, 'V'), - (0xA690, 'M', 'ꚑ'), - (0xA691, 'V'), - (0xA692, 'M', 'ꚓ'), - (0xA693, 'V'), - (0xA694, 'M', 'ꚕ'), - (0xA695, 'V'), - (0xA696, 'M', 'ꚗ'), - (0xA697, 'V'), - (0xA698, 'M', 'ꚙ'), - (0xA699, 'V'), - (0xA69A, 'M', 'ꚛ'), - (0xA69B, 'V'), - (0xA69C, 'M', 'ъ'), - (0xA69D, 'M', 'ь'), - (0xA69E, 'V'), - (0xA6F8, 'X'), - (0xA700, 'V'), - (0xA722, 'M', 'ꜣ'), - (0xA723, 'V'), - (0xA724, 'M', 'ꜥ'), - (0xA725, 'V'), - (0xA726, 'M', 'ꜧ'), - (0xA727, 'V'), - (0xA728, 'M', 'ꜩ'), - (0xA729, 'V'), - (0xA72A, 'M', 'ꜫ'), - (0xA72B, 'V'), - (0xA72C, 'M', 'ꜭ'), - (0xA72D, 'V'), - (0xA72E, 'M', 'ꜯ'), - (0xA72F, 'V'), - (0xA732, 'M', 'ꜳ'), - (0xA733, 'V'), - (0xA734, 'M', 'ꜵ'), - (0xA735, 'V'), - (0xA736, 'M', 'ꜷ'), - (0xA737, 'V'), - (0xA738, 'M', 'ꜹ'), - (0xA739, 'V'), - (0xA73A, 'M', 'ꜻ'), - (0xA73B, 'V'), - (0xA73C, 'M', 'ꜽ'), - (0xA73D, 'V'), - (0xA73E, 'M', 'ꜿ'), - (0xA73F, 'V'), - (0xA740, 'M', 'ꝁ'), - (0xA741, 'V'), - (0xA742, 'M', 'ꝃ'), - (0xA743, 'V'), - (0xA744, 'M', 'ꝅ'), - (0xA745, 'V'), - (0xA746, 'M', 'ꝇ'), - (0xA747, 'V'), - (0xA748, 'M', 'ꝉ'), - (0xA749, 'V'), - (0xA74A, 'M', 'ꝋ'), - (0xA74B, 'V'), - (0xA74C, 'M', 'ꝍ'), - (0xA74D, 'V'), - (0xA74E, 'M', 'ꝏ'), - (0xA74F, 'V'), - (0xA750, 'M', 'ꝑ'), - (0xA751, 'V'), - (0xA752, 'M', 'ꝓ'), - (0xA753, 'V'), - (0xA754, 'M', 'ꝕ'), - (0xA755, 'V'), - (0xA756, 'M', 'ꝗ'), - (0xA757, 'V'), - (0xA758, 'M', 'ꝙ'), - (0xA759, 'V'), - (0xA75A, 'M', 'ꝛ'), - (0xA75B, 'V'), - (0xA75C, 'M', 'ꝝ'), - (0xA75D, 'V'), - (0xA75E, 'M', 'ꝟ'), - (0xA75F, 'V'), - (0xA760, 'M', 'ꝡ'), - (0xA761, 'V'), - (0xA762, 'M', 'ꝣ'), - (0xA763, 'V'), - (0xA764, 'M', 'ꝥ'), - (0xA765, 'V'), - (0xA766, 'M', 'ꝧ'), - (0xA767, 'V'), - (0xA768, 'M', 'ꝩ'), - (0xA769, 'V'), - (0xA76A, 'M', 'ꝫ'), - (0xA76B, 'V'), - (0xA76C, 'M', 'ꝭ'), - (0xA76D, 'V'), - (0xA76E, 'M', 'ꝯ'), - (0xA76F, 'V'), - (0xA770, 'M', 'ꝯ'), - (0xA771, 'V'), - (0xA779, 'M', 'ꝺ'), - (0xA77A, 'V'), - (0xA77B, 'M', 'ꝼ'), - ] - -def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xA77C, 'V'), - (0xA77D, 'M', 'ᵹ'), - (0xA77E, 'M', 'ꝿ'), - (0xA77F, 'V'), - (0xA780, 'M', 'ꞁ'), - (0xA781, 'V'), - (0xA782, 'M', 'ꞃ'), - (0xA783, 'V'), - (0xA784, 'M', 'ꞅ'), - (0xA785, 'V'), - (0xA786, 'M', 'ꞇ'), - (0xA787, 'V'), - (0xA78B, 'M', 'ꞌ'), - (0xA78C, 'V'), - (0xA78D, 'M', 'ɥ'), - (0xA78E, 'V'), - (0xA790, 'M', 'ꞑ'), - (0xA791, 'V'), - (0xA792, 'M', 'ꞓ'), - (0xA793, 'V'), - (0xA796, 'M', 'ꞗ'), - (0xA797, 'V'), - (0xA798, 'M', 'ꞙ'), - (0xA799, 'V'), - (0xA79A, 'M', 'ꞛ'), - (0xA79B, 'V'), - (0xA79C, 'M', 'ꞝ'), - (0xA79D, 'V'), - (0xA79E, 'M', 'ꞟ'), - (0xA79F, 'V'), - (0xA7A0, 'M', 'ꞡ'), - (0xA7A1, 'V'), - (0xA7A2, 'M', 'ꞣ'), - (0xA7A3, 'V'), - (0xA7A4, 'M', 'ꞥ'), - (0xA7A5, 'V'), - (0xA7A6, 'M', 'ꞧ'), - (0xA7A7, 'V'), - (0xA7A8, 'M', 'ꞩ'), - (0xA7A9, 'V'), - (0xA7AA, 'M', 'ɦ'), - (0xA7AB, 'M', 'ɜ'), - (0xA7AC, 'M', 'ɡ'), - (0xA7AD, 'M', 'ɬ'), - (0xA7AE, 'M', 'ɪ'), - (0xA7AF, 'V'), - (0xA7B0, 'M', 'ʞ'), - (0xA7B1, 'M', 'ʇ'), - (0xA7B2, 'M', 'ʝ'), - (0xA7B3, 'M', 'ꭓ'), - (0xA7B4, 'M', 'ꞵ'), - (0xA7B5, 'V'), - (0xA7B6, 'M', 'ꞷ'), - (0xA7B7, 'V'), - (0xA7B8, 'M', 'ꞹ'), - (0xA7B9, 'V'), - (0xA7BA, 'M', 'ꞻ'), - (0xA7BB, 'V'), - (0xA7BC, 'M', 'ꞽ'), - (0xA7BD, 'V'), - (0xA7BE, 'M', 'ꞿ'), - (0xA7BF, 'V'), - (0xA7C0, 'M', 'ꟁ'), - (0xA7C1, 'V'), - (0xA7C2, 'M', 'ꟃ'), - (0xA7C3, 'V'), - (0xA7C4, 'M', 'ꞔ'), - (0xA7C5, 'M', 'ʂ'), - (0xA7C6, 'M', 'ᶎ'), - (0xA7C7, 'M', 'ꟈ'), - (0xA7C8, 'V'), - (0xA7C9, 'M', 'ꟊ'), - (0xA7CA, 'V'), - (0xA7CB, 'X'), - (0xA7D0, 'M', 'ꟑ'), - (0xA7D1, 'V'), - (0xA7D2, 'X'), - (0xA7D3, 'V'), - (0xA7D4, 'X'), - (0xA7D5, 'V'), - (0xA7D6, 'M', 'ꟗ'), - (0xA7D7, 'V'), - (0xA7D8, 'M', 'ꟙ'), - (0xA7D9, 'V'), - (0xA7DA, 'X'), - (0xA7F2, 'M', 'c'), - (0xA7F3, 'M', 'f'), - (0xA7F4, 'M', 'q'), - (0xA7F5, 'M', 'ꟶ'), - (0xA7F6, 'V'), - (0xA7F8, 'M', 'ħ'), - (0xA7F9, 'M', 'œ'), - (0xA7FA, 'V'), - (0xA82D, 'X'), - (0xA830, 'V'), - (0xA83A, 'X'), - (0xA840, 'V'), - (0xA878, 'X'), - (0xA880, 'V'), - (0xA8C6, 'X'), - ] - -def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xA8CE, 'V'), - (0xA8DA, 'X'), - (0xA8E0, 'V'), - (0xA954, 'X'), - (0xA95F, 'V'), - (0xA97D, 'X'), - (0xA980, 'V'), - (0xA9CE, 'X'), - (0xA9CF, 'V'), - (0xA9DA, 'X'), - (0xA9DE, 'V'), - (0xA9FF, 'X'), - (0xAA00, 'V'), - (0xAA37, 'X'), - (0xAA40, 'V'), - (0xAA4E, 'X'), - (0xAA50, 'V'), - (0xAA5A, 'X'), - (0xAA5C, 'V'), - (0xAAC3, 'X'), - (0xAADB, 'V'), - (0xAAF7, 'X'), - (0xAB01, 'V'), - (0xAB07, 'X'), - (0xAB09, 'V'), - (0xAB0F, 'X'), - (0xAB11, 'V'), - (0xAB17, 'X'), - (0xAB20, 'V'), - (0xAB27, 'X'), - (0xAB28, 'V'), - (0xAB2F, 'X'), - (0xAB30, 'V'), - (0xAB5C, 'M', 'ꜧ'), - (0xAB5D, 'M', 'ꬷ'), - (0xAB5E, 'M', 'ɫ'), - (0xAB5F, 'M', 'ꭒ'), - (0xAB60, 'V'), - (0xAB69, 'M', 'ʍ'), - (0xAB6A, 'V'), - (0xAB6C, 'X'), - (0xAB70, 'M', 'Ꭰ'), - (0xAB71, 'M', 'Ꭱ'), - (0xAB72, 'M', 'Ꭲ'), - (0xAB73, 'M', 'Ꭳ'), - (0xAB74, 'M', 'Ꭴ'), - (0xAB75, 'M', 'Ꭵ'), - (0xAB76, 'M', 'Ꭶ'), - (0xAB77, 'M', 'Ꭷ'), - (0xAB78, 'M', 'Ꭸ'), - (0xAB79, 'M', 'Ꭹ'), - (0xAB7A, 'M', 'Ꭺ'), - (0xAB7B, 'M', 'Ꭻ'), - (0xAB7C, 'M', 'Ꭼ'), - (0xAB7D, 'M', 'Ꭽ'), - (0xAB7E, 'M', 'Ꭾ'), - (0xAB7F, 'M', 'Ꭿ'), - (0xAB80, 'M', 'Ꮀ'), - (0xAB81, 'M', 'Ꮁ'), - (0xAB82, 'M', 'Ꮂ'), - (0xAB83, 'M', 'Ꮃ'), - (0xAB84, 'M', 'Ꮄ'), - (0xAB85, 'M', 'Ꮅ'), - (0xAB86, 'M', 'Ꮆ'), - (0xAB87, 'M', 'Ꮇ'), - (0xAB88, 'M', 'Ꮈ'), - (0xAB89, 'M', 'Ꮉ'), - (0xAB8A, 'M', 'Ꮊ'), - (0xAB8B, 'M', 'Ꮋ'), - (0xAB8C, 'M', 'Ꮌ'), - (0xAB8D, 'M', 'Ꮍ'), - (0xAB8E, 'M', 'Ꮎ'), - (0xAB8F, 'M', 'Ꮏ'), - (0xAB90, 'M', 'Ꮐ'), - (0xAB91, 'M', 'Ꮑ'), - (0xAB92, 'M', 'Ꮒ'), - (0xAB93, 'M', 'Ꮓ'), - (0xAB94, 'M', 'Ꮔ'), - (0xAB95, 'M', 'Ꮕ'), - (0xAB96, 'M', 'Ꮖ'), - (0xAB97, 'M', 'Ꮗ'), - (0xAB98, 'M', 'Ꮘ'), - (0xAB99, 'M', 'Ꮙ'), - (0xAB9A, 'M', 'Ꮚ'), - (0xAB9B, 'M', 'Ꮛ'), - (0xAB9C, 'M', 'Ꮜ'), - (0xAB9D, 'M', 'Ꮝ'), - (0xAB9E, 'M', 'Ꮞ'), - (0xAB9F, 'M', 'Ꮟ'), - (0xABA0, 'M', 'Ꮠ'), - (0xABA1, 'M', 'Ꮡ'), - (0xABA2, 'M', 'Ꮢ'), - (0xABA3, 'M', 'Ꮣ'), - (0xABA4, 'M', 'Ꮤ'), - (0xABA5, 'M', 'Ꮥ'), - (0xABA6, 'M', 'Ꮦ'), - (0xABA7, 'M', 'Ꮧ'), - (0xABA8, 'M', 'Ꮨ'), - (0xABA9, 'M', 'Ꮩ'), - (0xABAA, 'M', 'Ꮪ'), - ] - -def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xABAB, 'M', 'Ꮫ'), - (0xABAC, 'M', 'Ꮬ'), - (0xABAD, 'M', 'Ꮭ'), - (0xABAE, 'M', 'Ꮮ'), - (0xABAF, 'M', 'Ꮯ'), - (0xABB0, 'M', 'Ꮰ'), - (0xABB1, 'M', 'Ꮱ'), - (0xABB2, 'M', 'Ꮲ'), - (0xABB3, 'M', 'Ꮳ'), - (0xABB4, 'M', 'Ꮴ'), - (0xABB5, 'M', 'Ꮵ'), - (0xABB6, 'M', 'Ꮶ'), - (0xABB7, 'M', 'Ꮷ'), - (0xABB8, 'M', 'Ꮸ'), - (0xABB9, 'M', 'Ꮹ'), - (0xABBA, 'M', 'Ꮺ'), - (0xABBB, 'M', 'Ꮻ'), - (0xABBC, 'M', 'Ꮼ'), - (0xABBD, 'M', 'Ꮽ'), - (0xABBE, 'M', 'Ꮾ'), - (0xABBF, 'M', 'Ꮿ'), - (0xABC0, 'V'), - (0xABEE, 'X'), - (0xABF0, 'V'), - (0xABFA, 'X'), - (0xAC00, 'V'), - (0xD7A4, 'X'), - (0xD7B0, 'V'), - (0xD7C7, 'X'), - (0xD7CB, 'V'), - (0xD7FC, 'X'), - (0xF900, 'M', '豈'), - (0xF901, 'M', '更'), - (0xF902, 'M', '車'), - (0xF903, 'M', '賈'), - (0xF904, 'M', '滑'), - (0xF905, 'M', '串'), - (0xF906, 'M', '句'), - (0xF907, 'M', '龜'), - (0xF909, 'M', '契'), - (0xF90A, 'M', '金'), - (0xF90B, 'M', '喇'), - (0xF90C, 'M', '奈'), - (0xF90D, 'M', '懶'), - (0xF90E, 'M', '癩'), - (0xF90F, 'M', '羅'), - (0xF910, 'M', '蘿'), - (0xF911, 'M', '螺'), - (0xF912, 'M', '裸'), - (0xF913, 'M', '邏'), - (0xF914, 'M', '樂'), - (0xF915, 'M', '洛'), - (0xF916, 'M', '烙'), - (0xF917, 'M', '珞'), - (0xF918, 'M', '落'), - (0xF919, 'M', '酪'), - (0xF91A, 'M', '駱'), - (0xF91B, 'M', '亂'), - (0xF91C, 'M', '卵'), - (0xF91D, 'M', '欄'), - (0xF91E, 'M', '爛'), - (0xF91F, 'M', '蘭'), - (0xF920, 'M', '鸞'), - (0xF921, 'M', '嵐'), - (0xF922, 'M', '濫'), - (0xF923, 'M', '藍'), - (0xF924, 'M', '襤'), - (0xF925, 'M', '拉'), - (0xF926, 'M', '臘'), - (0xF927, 'M', '蠟'), - (0xF928, 'M', '廊'), - (0xF929, 'M', '朗'), - (0xF92A, 'M', '浪'), - (0xF92B, 'M', '狼'), - (0xF92C, 'M', '郎'), - (0xF92D, 'M', '來'), - (0xF92E, 'M', '冷'), - (0xF92F, 'M', '勞'), - (0xF930, 'M', '擄'), - (0xF931, 'M', '櫓'), - (0xF932, 'M', '爐'), - (0xF933, 'M', '盧'), - (0xF934, 'M', '老'), - (0xF935, 'M', '蘆'), - (0xF936, 'M', '虜'), - (0xF937, 'M', '路'), - (0xF938, 'M', '露'), - (0xF939, 'M', '魯'), - (0xF93A, 'M', '鷺'), - (0xF93B, 'M', '碌'), - (0xF93C, 'M', '祿'), - (0xF93D, 'M', '綠'), - (0xF93E, 'M', '菉'), - (0xF93F, 'M', '錄'), - (0xF940, 'M', '鹿'), - (0xF941, 'M', '論'), - (0xF942, 'M', '壟'), - (0xF943, 'M', '弄'), - (0xF944, 'M', '籠'), - (0xF945, 'M', '聾'), - ] - -def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xF946, 'M', '牢'), - (0xF947, 'M', '磊'), - (0xF948, 'M', '賂'), - (0xF949, 'M', '雷'), - (0xF94A, 'M', '壘'), - (0xF94B, 'M', '屢'), - (0xF94C, 'M', '樓'), - (0xF94D, 'M', '淚'), - (0xF94E, 'M', '漏'), - (0xF94F, 'M', '累'), - (0xF950, 'M', '縷'), - (0xF951, 'M', '陋'), - (0xF952, 'M', '勒'), - (0xF953, 'M', '肋'), - (0xF954, 'M', '凜'), - (0xF955, 'M', '凌'), - (0xF956, 'M', '稜'), - (0xF957, 'M', '綾'), - (0xF958, 'M', '菱'), - (0xF959, 'M', '陵'), - (0xF95A, 'M', '讀'), - (0xF95B, 'M', '拏'), - (0xF95C, 'M', '樂'), - (0xF95D, 'M', '諾'), - (0xF95E, 'M', '丹'), - (0xF95F, 'M', '寧'), - (0xF960, 'M', '怒'), - (0xF961, 'M', '率'), - (0xF962, 'M', '異'), - (0xF963, 'M', '北'), - (0xF964, 'M', '磻'), - (0xF965, 'M', '便'), - (0xF966, 'M', '復'), - (0xF967, 'M', '不'), - (0xF968, 'M', '泌'), - (0xF969, 'M', '數'), - (0xF96A, 'M', '索'), - (0xF96B, 'M', '參'), - (0xF96C, 'M', '塞'), - (0xF96D, 'M', '省'), - (0xF96E, 'M', '葉'), - (0xF96F, 'M', '說'), - (0xF970, 'M', '殺'), - (0xF971, 'M', '辰'), - (0xF972, 'M', '沈'), - (0xF973, 'M', '拾'), - (0xF974, 'M', '若'), - (0xF975, 'M', '掠'), - (0xF976, 'M', '略'), - (0xF977, 'M', '亮'), - (0xF978, 'M', '兩'), - (0xF979, 'M', '凉'), - (0xF97A, 'M', '梁'), - (0xF97B, 'M', '糧'), - (0xF97C, 'M', '良'), - (0xF97D, 'M', '諒'), - (0xF97E, 'M', '量'), - (0xF97F, 'M', '勵'), - (0xF980, 'M', '呂'), - (0xF981, 'M', '女'), - (0xF982, 'M', '廬'), - (0xF983, 'M', '旅'), - (0xF984, 'M', '濾'), - (0xF985, 'M', '礪'), - (0xF986, 'M', '閭'), - (0xF987, 'M', '驪'), - (0xF988, 'M', '麗'), - (0xF989, 'M', '黎'), - (0xF98A, 'M', '力'), - (0xF98B, 'M', '曆'), - (0xF98C, 'M', '歷'), - (0xF98D, 'M', '轢'), - (0xF98E, 'M', '年'), - (0xF98F, 'M', '憐'), - (0xF990, 'M', '戀'), - (0xF991, 'M', '撚'), - (0xF992, 'M', '漣'), - (0xF993, 'M', '煉'), - (0xF994, 'M', '璉'), - (0xF995, 'M', '秊'), - (0xF996, 'M', '練'), - (0xF997, 'M', '聯'), - (0xF998, 'M', '輦'), - (0xF999, 'M', '蓮'), - (0xF99A, 'M', '連'), - (0xF99B, 'M', '鍊'), - (0xF99C, 'M', '列'), - (0xF99D, 'M', '劣'), - (0xF99E, 'M', '咽'), - (0xF99F, 'M', '烈'), - (0xF9A0, 'M', '裂'), - (0xF9A1, 'M', '說'), - (0xF9A2, 'M', '廉'), - (0xF9A3, 'M', '念'), - (0xF9A4, 'M', '捻'), - (0xF9A5, 'M', '殮'), - (0xF9A6, 'M', '簾'), - (0xF9A7, 'M', '獵'), - (0xF9A8, 'M', '令'), - (0xF9A9, 'M', '囹'), - ] - -def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xF9AA, 'M', '寧'), - (0xF9AB, 'M', '嶺'), - (0xF9AC, 'M', '怜'), - (0xF9AD, 'M', '玲'), - (0xF9AE, 'M', '瑩'), - (0xF9AF, 'M', '羚'), - (0xF9B0, 'M', '聆'), - (0xF9B1, 'M', '鈴'), - (0xF9B2, 'M', '零'), - (0xF9B3, 'M', '靈'), - (0xF9B4, 'M', '領'), - (0xF9B5, 'M', '例'), - (0xF9B6, 'M', '禮'), - (0xF9B7, 'M', '醴'), - (0xF9B8, 'M', '隸'), - (0xF9B9, 'M', '惡'), - (0xF9BA, 'M', '了'), - (0xF9BB, 'M', '僚'), - (0xF9BC, 'M', '寮'), - (0xF9BD, 'M', '尿'), - (0xF9BE, 'M', '料'), - (0xF9BF, 'M', '樂'), - (0xF9C0, 'M', '燎'), - (0xF9C1, 'M', '療'), - (0xF9C2, 'M', '蓼'), - (0xF9C3, 'M', '遼'), - (0xF9C4, 'M', '龍'), - (0xF9C5, 'M', '暈'), - (0xF9C6, 'M', '阮'), - (0xF9C7, 'M', '劉'), - (0xF9C8, 'M', '杻'), - (0xF9C9, 'M', '柳'), - (0xF9CA, 'M', '流'), - (0xF9CB, 'M', '溜'), - (0xF9CC, 'M', '琉'), - (0xF9CD, 'M', '留'), - (0xF9CE, 'M', '硫'), - (0xF9CF, 'M', '紐'), - (0xF9D0, 'M', '類'), - (0xF9D1, 'M', '六'), - (0xF9D2, 'M', '戮'), - (0xF9D3, 'M', '陸'), - (0xF9D4, 'M', '倫'), - (0xF9D5, 'M', '崙'), - (0xF9D6, 'M', '淪'), - (0xF9D7, 'M', '輪'), - (0xF9D8, 'M', '律'), - (0xF9D9, 'M', '慄'), - (0xF9DA, 'M', '栗'), - (0xF9DB, 'M', '率'), - (0xF9DC, 'M', '隆'), - (0xF9DD, 'M', '利'), - (0xF9DE, 'M', '吏'), - (0xF9DF, 'M', '履'), - (0xF9E0, 'M', '易'), - (0xF9E1, 'M', '李'), - (0xF9E2, 'M', '梨'), - (0xF9E3, 'M', '泥'), - (0xF9E4, 'M', '理'), - (0xF9E5, 'M', '痢'), - (0xF9E6, 'M', '罹'), - (0xF9E7, 'M', '裏'), - (0xF9E8, 'M', '裡'), - (0xF9E9, 'M', '里'), - (0xF9EA, 'M', '離'), - (0xF9EB, 'M', '匿'), - (0xF9EC, 'M', '溺'), - (0xF9ED, 'M', '吝'), - (0xF9EE, 'M', '燐'), - (0xF9EF, 'M', '璘'), - (0xF9F0, 'M', '藺'), - (0xF9F1, 'M', '隣'), - (0xF9F2, 'M', '鱗'), - (0xF9F3, 'M', '麟'), - (0xF9F4, 'M', '林'), - (0xF9F5, 'M', '淋'), - (0xF9F6, 'M', '臨'), - (0xF9F7, 'M', '立'), - (0xF9F8, 'M', '笠'), - (0xF9F9, 'M', '粒'), - (0xF9FA, 'M', '狀'), - (0xF9FB, 'M', '炙'), - (0xF9FC, 'M', '識'), - (0xF9FD, 'M', '什'), - (0xF9FE, 'M', '茶'), - (0xF9FF, 'M', '刺'), - (0xFA00, 'M', '切'), - (0xFA01, 'M', '度'), - (0xFA02, 'M', '拓'), - (0xFA03, 'M', '糖'), - (0xFA04, 'M', '宅'), - (0xFA05, 'M', '洞'), - (0xFA06, 'M', '暴'), - (0xFA07, 'M', '輻'), - (0xFA08, 'M', '行'), - (0xFA09, 'M', '降'), - (0xFA0A, 'M', '見'), - (0xFA0B, 'M', '廓'), - (0xFA0C, 'M', '兀'), - (0xFA0D, 'M', '嗀'), - ] - -def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFA0E, 'V'), - (0xFA10, 'M', '塚'), - (0xFA11, 'V'), - (0xFA12, 'M', '晴'), - (0xFA13, 'V'), - (0xFA15, 'M', '凞'), - (0xFA16, 'M', '猪'), - (0xFA17, 'M', '益'), - (0xFA18, 'M', '礼'), - (0xFA19, 'M', '神'), - (0xFA1A, 'M', '祥'), - (0xFA1B, 'M', '福'), - (0xFA1C, 'M', '靖'), - (0xFA1D, 'M', '精'), - (0xFA1E, 'M', '羽'), - (0xFA1F, 'V'), - (0xFA20, 'M', '蘒'), - (0xFA21, 'V'), - (0xFA22, 'M', '諸'), - (0xFA23, 'V'), - (0xFA25, 'M', '逸'), - (0xFA26, 'M', '都'), - (0xFA27, 'V'), - (0xFA2A, 'M', '飯'), - (0xFA2B, 'M', '飼'), - (0xFA2C, 'M', '館'), - (0xFA2D, 'M', '鶴'), - (0xFA2E, 'M', '郞'), - (0xFA2F, 'M', '隷'), - (0xFA30, 'M', '侮'), - (0xFA31, 'M', '僧'), - (0xFA32, 'M', '免'), - (0xFA33, 'M', '勉'), - (0xFA34, 'M', '勤'), - (0xFA35, 'M', '卑'), - (0xFA36, 'M', '喝'), - (0xFA37, 'M', '嘆'), - (0xFA38, 'M', '器'), - (0xFA39, 'M', '塀'), - (0xFA3A, 'M', '墨'), - (0xFA3B, 'M', '層'), - (0xFA3C, 'M', '屮'), - (0xFA3D, 'M', '悔'), - (0xFA3E, 'M', '慨'), - (0xFA3F, 'M', '憎'), - (0xFA40, 'M', '懲'), - (0xFA41, 'M', '敏'), - (0xFA42, 'M', '既'), - (0xFA43, 'M', '暑'), - (0xFA44, 'M', '梅'), - (0xFA45, 'M', '海'), - (0xFA46, 'M', '渚'), - (0xFA47, 'M', '漢'), - (0xFA48, 'M', '煮'), - (0xFA49, 'M', '爫'), - (0xFA4A, 'M', '琢'), - (0xFA4B, 'M', '碑'), - (0xFA4C, 'M', '社'), - (0xFA4D, 'M', '祉'), - (0xFA4E, 'M', '祈'), - (0xFA4F, 'M', '祐'), - (0xFA50, 'M', '祖'), - (0xFA51, 'M', '祝'), - (0xFA52, 'M', '禍'), - (0xFA53, 'M', '禎'), - (0xFA54, 'M', '穀'), - (0xFA55, 'M', '突'), - (0xFA56, 'M', '節'), - (0xFA57, 'M', '練'), - (0xFA58, 'M', '縉'), - (0xFA59, 'M', '繁'), - (0xFA5A, 'M', '署'), - (0xFA5B, 'M', '者'), - (0xFA5C, 'M', '臭'), - (0xFA5D, 'M', '艹'), - (0xFA5F, 'M', '著'), - (0xFA60, 'M', '褐'), - (0xFA61, 'M', '視'), - (0xFA62, 'M', '謁'), - (0xFA63, 'M', '謹'), - (0xFA64, 'M', '賓'), - (0xFA65, 'M', '贈'), - (0xFA66, 'M', '辶'), - (0xFA67, 'M', '逸'), - (0xFA68, 'M', '難'), - (0xFA69, 'M', '響'), - (0xFA6A, 'M', '頻'), - (0xFA6B, 'M', '恵'), - (0xFA6C, 'M', '𤋮'), - (0xFA6D, 'M', '舘'), - (0xFA6E, 'X'), - (0xFA70, 'M', '並'), - (0xFA71, 'M', '况'), - (0xFA72, 'M', '全'), - (0xFA73, 'M', '侀'), - (0xFA74, 'M', '充'), - (0xFA75, 'M', '冀'), - (0xFA76, 'M', '勇'), - (0xFA77, 'M', '勺'), - (0xFA78, 'M', '喝'), - ] - -def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFA79, 'M', '啕'), - (0xFA7A, 'M', '喙'), - (0xFA7B, 'M', '嗢'), - (0xFA7C, 'M', '塚'), - (0xFA7D, 'M', '墳'), - (0xFA7E, 'M', '奄'), - (0xFA7F, 'M', '奔'), - (0xFA80, 'M', '婢'), - (0xFA81, 'M', '嬨'), - (0xFA82, 'M', '廒'), - (0xFA83, 'M', '廙'), - (0xFA84, 'M', '彩'), - (0xFA85, 'M', '徭'), - (0xFA86, 'M', '惘'), - (0xFA87, 'M', '慎'), - (0xFA88, 'M', '愈'), - (0xFA89, 'M', '憎'), - (0xFA8A, 'M', '慠'), - (0xFA8B, 'M', '懲'), - (0xFA8C, 'M', '戴'), - (0xFA8D, 'M', '揄'), - (0xFA8E, 'M', '搜'), - (0xFA8F, 'M', '摒'), - (0xFA90, 'M', '敖'), - (0xFA91, 'M', '晴'), - (0xFA92, 'M', '朗'), - (0xFA93, 'M', '望'), - (0xFA94, 'M', '杖'), - (0xFA95, 'M', '歹'), - (0xFA96, 'M', '殺'), - (0xFA97, 'M', '流'), - (0xFA98, 'M', '滛'), - (0xFA99, 'M', '滋'), - (0xFA9A, 'M', '漢'), - (0xFA9B, 'M', '瀞'), - (0xFA9C, 'M', '煮'), - (0xFA9D, 'M', '瞧'), - (0xFA9E, 'M', '爵'), - (0xFA9F, 'M', '犯'), - (0xFAA0, 'M', '猪'), - (0xFAA1, 'M', '瑱'), - (0xFAA2, 'M', '甆'), - (0xFAA3, 'M', '画'), - (0xFAA4, 'M', '瘝'), - (0xFAA5, 'M', '瘟'), - (0xFAA6, 'M', '益'), - (0xFAA7, 'M', '盛'), - (0xFAA8, 'M', '直'), - (0xFAA9, 'M', '睊'), - (0xFAAA, 'M', '着'), - (0xFAAB, 'M', '磌'), - (0xFAAC, 'M', '窱'), - (0xFAAD, 'M', '節'), - (0xFAAE, 'M', '类'), - (0xFAAF, 'M', '絛'), - (0xFAB0, 'M', '練'), - (0xFAB1, 'M', '缾'), - (0xFAB2, 'M', '者'), - (0xFAB3, 'M', '荒'), - (0xFAB4, 'M', '華'), - (0xFAB5, 'M', '蝹'), - (0xFAB6, 'M', '襁'), - (0xFAB7, 'M', '覆'), - (0xFAB8, 'M', '視'), - (0xFAB9, 'M', '調'), - (0xFABA, 'M', '諸'), - (0xFABB, 'M', '請'), - (0xFABC, 'M', '謁'), - (0xFABD, 'M', '諾'), - (0xFABE, 'M', '諭'), - (0xFABF, 'M', '謹'), - (0xFAC0, 'M', '變'), - (0xFAC1, 'M', '贈'), - (0xFAC2, 'M', '輸'), - (0xFAC3, 'M', '遲'), - (0xFAC4, 'M', '醙'), - (0xFAC5, 'M', '鉶'), - (0xFAC6, 'M', '陼'), - (0xFAC7, 'M', '難'), - (0xFAC8, 'M', '靖'), - (0xFAC9, 'M', '韛'), - (0xFACA, 'M', '響'), - (0xFACB, 'M', '頋'), - (0xFACC, 'M', '頻'), - (0xFACD, 'M', '鬒'), - (0xFACE, 'M', '龜'), - (0xFACF, 'M', '𢡊'), - (0xFAD0, 'M', '𢡄'), - (0xFAD1, 'M', '𣏕'), - (0xFAD2, 'M', '㮝'), - (0xFAD3, 'M', '䀘'), - (0xFAD4, 'M', '䀹'), - (0xFAD5, 'M', '𥉉'), - (0xFAD6, 'M', '𥳐'), - (0xFAD7, 'M', '𧻓'), - (0xFAD8, 'M', '齃'), - (0xFAD9, 'M', '龎'), - (0xFADA, 'X'), - (0xFB00, 'M', 'ff'), - (0xFB01, 'M', 'fi'), - ] - -def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFB02, 'M', 'fl'), - (0xFB03, 'M', 'ffi'), - (0xFB04, 'M', 'ffl'), - (0xFB05, 'M', 'st'), - (0xFB07, 'X'), - (0xFB13, 'M', 'մն'), - (0xFB14, 'M', 'մե'), - (0xFB15, 'M', 'մի'), - (0xFB16, 'M', 'վն'), - (0xFB17, 'M', 'մխ'), - (0xFB18, 'X'), - (0xFB1D, 'M', 'יִ'), - (0xFB1E, 'V'), - (0xFB1F, 'M', 'ײַ'), - (0xFB20, 'M', 'ע'), - (0xFB21, 'M', 'א'), - (0xFB22, 'M', 'ד'), - (0xFB23, 'M', 'ה'), - (0xFB24, 'M', 'כ'), - (0xFB25, 'M', 'ל'), - (0xFB26, 'M', 'ם'), - (0xFB27, 'M', 'ר'), - (0xFB28, 'M', 'ת'), - (0xFB29, '3', '+'), - (0xFB2A, 'M', 'שׁ'), - (0xFB2B, 'M', 'שׂ'), - (0xFB2C, 'M', 'שּׁ'), - (0xFB2D, 'M', 'שּׂ'), - (0xFB2E, 'M', 'אַ'), - (0xFB2F, 'M', 'אָ'), - (0xFB30, 'M', 'אּ'), - (0xFB31, 'M', 'בּ'), - (0xFB32, 'M', 'גּ'), - (0xFB33, 'M', 'דּ'), - (0xFB34, 'M', 'הּ'), - (0xFB35, 'M', 'וּ'), - (0xFB36, 'M', 'זּ'), - (0xFB37, 'X'), - (0xFB38, 'M', 'טּ'), - (0xFB39, 'M', 'יּ'), - (0xFB3A, 'M', 'ךּ'), - (0xFB3B, 'M', 'כּ'), - (0xFB3C, 'M', 'לּ'), - (0xFB3D, 'X'), - (0xFB3E, 'M', 'מּ'), - (0xFB3F, 'X'), - (0xFB40, 'M', 'נּ'), - (0xFB41, 'M', 'סּ'), - (0xFB42, 'X'), - (0xFB43, 'M', 'ףּ'), - (0xFB44, 'M', 'פּ'), - (0xFB45, 'X'), - (0xFB46, 'M', 'צּ'), - (0xFB47, 'M', 'קּ'), - (0xFB48, 'M', 'רּ'), - (0xFB49, 'M', 'שּ'), - (0xFB4A, 'M', 'תּ'), - (0xFB4B, 'M', 'וֹ'), - (0xFB4C, 'M', 'בֿ'), - (0xFB4D, 'M', 'כֿ'), - (0xFB4E, 'M', 'פֿ'), - (0xFB4F, 'M', 'אל'), - (0xFB50, 'M', 'ٱ'), - (0xFB52, 'M', 'ٻ'), - (0xFB56, 'M', 'پ'), - (0xFB5A, 'M', 'ڀ'), - (0xFB5E, 'M', 'ٺ'), - (0xFB62, 'M', 'ٿ'), - (0xFB66, 'M', 'ٹ'), - (0xFB6A, 'M', 'ڤ'), - (0xFB6E, 'M', 'ڦ'), - (0xFB72, 'M', 'ڄ'), - (0xFB76, 'M', 'ڃ'), - (0xFB7A, 'M', 'چ'), - (0xFB7E, 'M', 'ڇ'), - (0xFB82, 'M', 'ڍ'), - (0xFB84, 'M', 'ڌ'), - (0xFB86, 'M', 'ڎ'), - (0xFB88, 'M', 'ڈ'), - (0xFB8A, 'M', 'ژ'), - (0xFB8C, 'M', 'ڑ'), - (0xFB8E, 'M', 'ک'), - (0xFB92, 'M', 'گ'), - (0xFB96, 'M', 'ڳ'), - (0xFB9A, 'M', 'ڱ'), - (0xFB9E, 'M', 'ں'), - (0xFBA0, 'M', 'ڻ'), - (0xFBA4, 'M', 'ۀ'), - (0xFBA6, 'M', 'ہ'), - (0xFBAA, 'M', 'ھ'), - (0xFBAE, 'M', 'ے'), - (0xFBB0, 'M', 'ۓ'), - (0xFBB2, 'V'), - (0xFBC3, 'X'), - (0xFBD3, 'M', 'ڭ'), - (0xFBD7, 'M', 'ۇ'), - (0xFBD9, 'M', 'ۆ'), - (0xFBDB, 'M', 'ۈ'), - (0xFBDD, 'M', 'ۇٴ'), - (0xFBDE, 'M', 'ۋ'), - ] - -def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFBE0, 'M', 'ۅ'), - (0xFBE2, 'M', 'ۉ'), - (0xFBE4, 'M', 'ې'), - (0xFBE8, 'M', 'ى'), - (0xFBEA, 'M', 'ئا'), - (0xFBEC, 'M', 'ئە'), - (0xFBEE, 'M', 'ئو'), - (0xFBF0, 'M', 'ئۇ'), - (0xFBF2, 'M', 'ئۆ'), - (0xFBF4, 'M', 'ئۈ'), - (0xFBF6, 'M', 'ئې'), - (0xFBF9, 'M', 'ئى'), - (0xFBFC, 'M', 'ی'), - (0xFC00, 'M', 'ئج'), - (0xFC01, 'M', 'ئح'), - (0xFC02, 'M', 'ئم'), - (0xFC03, 'M', 'ئى'), - (0xFC04, 'M', 'ئي'), - (0xFC05, 'M', 'بج'), - (0xFC06, 'M', 'بح'), - (0xFC07, 'M', 'بخ'), - (0xFC08, 'M', 'بم'), - (0xFC09, 'M', 'بى'), - (0xFC0A, 'M', 'بي'), - (0xFC0B, 'M', 'تج'), - (0xFC0C, 'M', 'تح'), - (0xFC0D, 'M', 'تخ'), - (0xFC0E, 'M', 'تم'), - (0xFC0F, 'M', 'تى'), - (0xFC10, 'M', 'تي'), - (0xFC11, 'M', 'ثج'), - (0xFC12, 'M', 'ثم'), - (0xFC13, 'M', 'ثى'), - (0xFC14, 'M', 'ثي'), - (0xFC15, 'M', 'جح'), - (0xFC16, 'M', 'جم'), - (0xFC17, 'M', 'حج'), - (0xFC18, 'M', 'حم'), - (0xFC19, 'M', 'خج'), - (0xFC1A, 'M', 'خح'), - (0xFC1B, 'M', 'خم'), - (0xFC1C, 'M', 'سج'), - (0xFC1D, 'M', 'سح'), - (0xFC1E, 'M', 'سخ'), - (0xFC1F, 'M', 'سم'), - (0xFC20, 'M', 'صح'), - (0xFC21, 'M', 'صم'), - (0xFC22, 'M', 'ضج'), - (0xFC23, 'M', 'ضح'), - (0xFC24, 'M', 'ضخ'), - (0xFC25, 'M', 'ضم'), - (0xFC26, 'M', 'طح'), - (0xFC27, 'M', 'طم'), - (0xFC28, 'M', 'ظم'), - (0xFC29, 'M', 'عج'), - (0xFC2A, 'M', 'عم'), - (0xFC2B, 'M', 'غج'), - (0xFC2C, 'M', 'غم'), - (0xFC2D, 'M', 'فج'), - (0xFC2E, 'M', 'فح'), - (0xFC2F, 'M', 'فخ'), - (0xFC30, 'M', 'فم'), - (0xFC31, 'M', 'فى'), - (0xFC32, 'M', 'في'), - (0xFC33, 'M', 'قح'), - (0xFC34, 'M', 'قم'), - (0xFC35, 'M', 'قى'), - (0xFC36, 'M', 'قي'), - (0xFC37, 'M', 'كا'), - (0xFC38, 'M', 'كج'), - (0xFC39, 'M', 'كح'), - (0xFC3A, 'M', 'كخ'), - (0xFC3B, 'M', 'كل'), - (0xFC3C, 'M', 'كم'), - (0xFC3D, 'M', 'كى'), - (0xFC3E, 'M', 'كي'), - (0xFC3F, 'M', 'لج'), - (0xFC40, 'M', 'لح'), - (0xFC41, 'M', 'لخ'), - (0xFC42, 'M', 'لم'), - (0xFC43, 'M', 'لى'), - (0xFC44, 'M', 'لي'), - (0xFC45, 'M', 'مج'), - (0xFC46, 'M', 'مح'), - (0xFC47, 'M', 'مخ'), - (0xFC48, 'M', 'مم'), - (0xFC49, 'M', 'مى'), - (0xFC4A, 'M', 'مي'), - (0xFC4B, 'M', 'نج'), - (0xFC4C, 'M', 'نح'), - (0xFC4D, 'M', 'نخ'), - (0xFC4E, 'M', 'نم'), - (0xFC4F, 'M', 'نى'), - (0xFC50, 'M', 'ني'), - (0xFC51, 'M', 'هج'), - (0xFC52, 'M', 'هم'), - (0xFC53, 'M', 'هى'), - (0xFC54, 'M', 'هي'), - (0xFC55, 'M', 'يج'), - (0xFC56, 'M', 'يح'), - ] - -def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFC57, 'M', 'يخ'), - (0xFC58, 'M', 'يم'), - (0xFC59, 'M', 'يى'), - (0xFC5A, 'M', 'يي'), - (0xFC5B, 'M', 'ذٰ'), - (0xFC5C, 'M', 'رٰ'), - (0xFC5D, 'M', 'ىٰ'), - (0xFC5E, '3', ' ٌّ'), - (0xFC5F, '3', ' ٍّ'), - (0xFC60, '3', ' َّ'), - (0xFC61, '3', ' ُّ'), - (0xFC62, '3', ' ِّ'), - (0xFC63, '3', ' ّٰ'), - (0xFC64, 'M', 'ئر'), - (0xFC65, 'M', 'ئز'), - (0xFC66, 'M', 'ئم'), - (0xFC67, 'M', 'ئن'), - (0xFC68, 'M', 'ئى'), - (0xFC69, 'M', 'ئي'), - (0xFC6A, 'M', 'بر'), - (0xFC6B, 'M', 'بز'), - (0xFC6C, 'M', 'بم'), - (0xFC6D, 'M', 'بن'), - (0xFC6E, 'M', 'بى'), - (0xFC6F, 'M', 'بي'), - (0xFC70, 'M', 'تر'), - (0xFC71, 'M', 'تز'), - (0xFC72, 'M', 'تم'), - (0xFC73, 'M', 'تن'), - (0xFC74, 'M', 'تى'), - (0xFC75, 'M', 'تي'), - (0xFC76, 'M', 'ثر'), - (0xFC77, 'M', 'ثز'), - (0xFC78, 'M', 'ثم'), - (0xFC79, 'M', 'ثن'), - (0xFC7A, 'M', 'ثى'), - (0xFC7B, 'M', 'ثي'), - (0xFC7C, 'M', 'فى'), - (0xFC7D, 'M', 'في'), - (0xFC7E, 'M', 'قى'), - (0xFC7F, 'M', 'قي'), - (0xFC80, 'M', 'كا'), - (0xFC81, 'M', 'كل'), - (0xFC82, 'M', 'كم'), - (0xFC83, 'M', 'كى'), - (0xFC84, 'M', 'كي'), - (0xFC85, 'M', 'لم'), - (0xFC86, 'M', 'لى'), - (0xFC87, 'M', 'لي'), - (0xFC88, 'M', 'ما'), - (0xFC89, 'M', 'مم'), - (0xFC8A, 'M', 'نر'), - (0xFC8B, 'M', 'نز'), - (0xFC8C, 'M', 'نم'), - (0xFC8D, 'M', 'نن'), - (0xFC8E, 'M', 'نى'), - (0xFC8F, 'M', 'ني'), - (0xFC90, 'M', 'ىٰ'), - (0xFC91, 'M', 'ير'), - (0xFC92, 'M', 'يز'), - (0xFC93, 'M', 'يم'), - (0xFC94, 'M', 'ين'), - (0xFC95, 'M', 'يى'), - (0xFC96, 'M', 'يي'), - (0xFC97, 'M', 'ئج'), - (0xFC98, 'M', 'ئح'), - (0xFC99, 'M', 'ئخ'), - (0xFC9A, 'M', 'ئم'), - (0xFC9B, 'M', 'ئه'), - (0xFC9C, 'M', 'بج'), - (0xFC9D, 'M', 'بح'), - (0xFC9E, 'M', 'بخ'), - (0xFC9F, 'M', 'بم'), - (0xFCA0, 'M', 'به'), - (0xFCA1, 'M', 'تج'), - (0xFCA2, 'M', 'تح'), - (0xFCA3, 'M', 'تخ'), - (0xFCA4, 'M', 'تم'), - (0xFCA5, 'M', 'ته'), - (0xFCA6, 'M', 'ثم'), - (0xFCA7, 'M', 'جح'), - (0xFCA8, 'M', 'جم'), - (0xFCA9, 'M', 'حج'), - (0xFCAA, 'M', 'حم'), - (0xFCAB, 'M', 'خج'), - (0xFCAC, 'M', 'خم'), - (0xFCAD, 'M', 'سج'), - (0xFCAE, 'M', 'سح'), - (0xFCAF, 'M', 'سخ'), - (0xFCB0, 'M', 'سم'), - (0xFCB1, 'M', 'صح'), - (0xFCB2, 'M', 'صخ'), - (0xFCB3, 'M', 'صم'), - (0xFCB4, 'M', 'ضج'), - (0xFCB5, 'M', 'ضح'), - (0xFCB6, 'M', 'ضخ'), - (0xFCB7, 'M', 'ضم'), - (0xFCB8, 'M', 'طح'), - (0xFCB9, 'M', 'ظم'), - (0xFCBA, 'M', 'عج'), - ] - -def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFCBB, 'M', 'عم'), - (0xFCBC, 'M', 'غج'), - (0xFCBD, 'M', 'غم'), - (0xFCBE, 'M', 'فج'), - (0xFCBF, 'M', 'فح'), - (0xFCC0, 'M', 'فخ'), - (0xFCC1, 'M', 'فم'), - (0xFCC2, 'M', 'قح'), - (0xFCC3, 'M', 'قم'), - (0xFCC4, 'M', 'كج'), - (0xFCC5, 'M', 'كح'), - (0xFCC6, 'M', 'كخ'), - (0xFCC7, 'M', 'كل'), - (0xFCC8, 'M', 'كم'), - (0xFCC9, 'M', 'لج'), - (0xFCCA, 'M', 'لح'), - (0xFCCB, 'M', 'لخ'), - (0xFCCC, 'M', 'لم'), - (0xFCCD, 'M', 'له'), - (0xFCCE, 'M', 'مج'), - (0xFCCF, 'M', 'مح'), - (0xFCD0, 'M', 'مخ'), - (0xFCD1, 'M', 'مم'), - (0xFCD2, 'M', 'نج'), - (0xFCD3, 'M', 'نح'), - (0xFCD4, 'M', 'نخ'), - (0xFCD5, 'M', 'نم'), - (0xFCD6, 'M', 'نه'), - (0xFCD7, 'M', 'هج'), - (0xFCD8, 'M', 'هم'), - (0xFCD9, 'M', 'هٰ'), - (0xFCDA, 'M', 'يج'), - (0xFCDB, 'M', 'يح'), - (0xFCDC, 'M', 'يخ'), - (0xFCDD, 'M', 'يم'), - (0xFCDE, 'M', 'يه'), - (0xFCDF, 'M', 'ئم'), - (0xFCE0, 'M', 'ئه'), - (0xFCE1, 'M', 'بم'), - (0xFCE2, 'M', 'به'), - (0xFCE3, 'M', 'تم'), - (0xFCE4, 'M', 'ته'), - (0xFCE5, 'M', 'ثم'), - (0xFCE6, 'M', 'ثه'), - (0xFCE7, 'M', 'سم'), - (0xFCE8, 'M', 'سه'), - (0xFCE9, 'M', 'شم'), - (0xFCEA, 'M', 'شه'), - (0xFCEB, 'M', 'كل'), - (0xFCEC, 'M', 'كم'), - (0xFCED, 'M', 'لم'), - (0xFCEE, 'M', 'نم'), - (0xFCEF, 'M', 'نه'), - (0xFCF0, 'M', 'يم'), - (0xFCF1, 'M', 'يه'), - (0xFCF2, 'M', 'ـَّ'), - (0xFCF3, 'M', 'ـُّ'), - (0xFCF4, 'M', 'ـِّ'), - (0xFCF5, 'M', 'طى'), - (0xFCF6, 'M', 'طي'), - (0xFCF7, 'M', 'عى'), - (0xFCF8, 'M', 'عي'), - (0xFCF9, 'M', 'غى'), - (0xFCFA, 'M', 'غي'), - (0xFCFB, 'M', 'سى'), - (0xFCFC, 'M', 'سي'), - (0xFCFD, 'M', 'شى'), - (0xFCFE, 'M', 'شي'), - (0xFCFF, 'M', 'حى'), - (0xFD00, 'M', 'حي'), - (0xFD01, 'M', 'جى'), - (0xFD02, 'M', 'جي'), - (0xFD03, 'M', 'خى'), - (0xFD04, 'M', 'خي'), - (0xFD05, 'M', 'صى'), - (0xFD06, 'M', 'صي'), - (0xFD07, 'M', 'ضى'), - (0xFD08, 'M', 'ضي'), - (0xFD09, 'M', 'شج'), - (0xFD0A, 'M', 'شح'), - (0xFD0B, 'M', 'شخ'), - (0xFD0C, 'M', 'شم'), - (0xFD0D, 'M', 'شر'), - (0xFD0E, 'M', 'سر'), - (0xFD0F, 'M', 'صر'), - (0xFD10, 'M', 'ضر'), - (0xFD11, 'M', 'طى'), - (0xFD12, 'M', 'طي'), - (0xFD13, 'M', 'عى'), - (0xFD14, 'M', 'عي'), - (0xFD15, 'M', 'غى'), - (0xFD16, 'M', 'غي'), - (0xFD17, 'M', 'سى'), - (0xFD18, 'M', 'سي'), - (0xFD19, 'M', 'شى'), - (0xFD1A, 'M', 'شي'), - (0xFD1B, 'M', 'حى'), - (0xFD1C, 'M', 'حي'), - (0xFD1D, 'M', 'جى'), - (0xFD1E, 'M', 'جي'), - ] - -def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFD1F, 'M', 'خى'), - (0xFD20, 'M', 'خي'), - (0xFD21, 'M', 'صى'), - (0xFD22, 'M', 'صي'), - (0xFD23, 'M', 'ضى'), - (0xFD24, 'M', 'ضي'), - (0xFD25, 'M', 'شج'), - (0xFD26, 'M', 'شح'), - (0xFD27, 'M', 'شخ'), - (0xFD28, 'M', 'شم'), - (0xFD29, 'M', 'شر'), - (0xFD2A, 'M', 'سر'), - (0xFD2B, 'M', 'صر'), - (0xFD2C, 'M', 'ضر'), - (0xFD2D, 'M', 'شج'), - (0xFD2E, 'M', 'شح'), - (0xFD2F, 'M', 'شخ'), - (0xFD30, 'M', 'شم'), - (0xFD31, 'M', 'سه'), - (0xFD32, 'M', 'شه'), - (0xFD33, 'M', 'طم'), - (0xFD34, 'M', 'سج'), - (0xFD35, 'M', 'سح'), - (0xFD36, 'M', 'سخ'), - (0xFD37, 'M', 'شج'), - (0xFD38, 'M', 'شح'), - (0xFD39, 'M', 'شخ'), - (0xFD3A, 'M', 'طم'), - (0xFD3B, 'M', 'ظم'), - (0xFD3C, 'M', 'اً'), - (0xFD3E, 'V'), - (0xFD50, 'M', 'تجم'), - (0xFD51, 'M', 'تحج'), - (0xFD53, 'M', 'تحم'), - (0xFD54, 'M', 'تخم'), - (0xFD55, 'M', 'تمج'), - (0xFD56, 'M', 'تمح'), - (0xFD57, 'M', 'تمخ'), - (0xFD58, 'M', 'جمح'), - (0xFD5A, 'M', 'حمي'), - (0xFD5B, 'M', 'حمى'), - (0xFD5C, 'M', 'سحج'), - (0xFD5D, 'M', 'سجح'), - (0xFD5E, 'M', 'سجى'), - (0xFD5F, 'M', 'سمح'), - (0xFD61, 'M', 'سمج'), - (0xFD62, 'M', 'سمم'), - (0xFD64, 'M', 'صحح'), - (0xFD66, 'M', 'صمم'), - (0xFD67, 'M', 'شحم'), - (0xFD69, 'M', 'شجي'), - (0xFD6A, 'M', 'شمخ'), - (0xFD6C, 'M', 'شمم'), - (0xFD6E, 'M', 'ضحى'), - (0xFD6F, 'M', 'ضخم'), - (0xFD71, 'M', 'طمح'), - (0xFD73, 'M', 'طمم'), - (0xFD74, 'M', 'طمي'), - (0xFD75, 'M', 'عجم'), - (0xFD76, 'M', 'عمم'), - (0xFD78, 'M', 'عمى'), - (0xFD79, 'M', 'غمم'), - (0xFD7A, 'M', 'غمي'), - (0xFD7B, 'M', 'غمى'), - (0xFD7C, 'M', 'فخم'), - (0xFD7E, 'M', 'قمح'), - (0xFD7F, 'M', 'قمم'), - (0xFD80, 'M', 'لحم'), - (0xFD81, 'M', 'لحي'), - (0xFD82, 'M', 'لحى'), - (0xFD83, 'M', 'لجج'), - (0xFD85, 'M', 'لخم'), - (0xFD87, 'M', 'لمح'), - (0xFD89, 'M', 'محج'), - (0xFD8A, 'M', 'محم'), - (0xFD8B, 'M', 'محي'), - (0xFD8C, 'M', 'مجح'), - (0xFD8D, 'M', 'مجم'), - (0xFD8E, 'M', 'مخج'), - (0xFD8F, 'M', 'مخم'), - (0xFD90, 'X'), - (0xFD92, 'M', 'مجخ'), - (0xFD93, 'M', 'همج'), - (0xFD94, 'M', 'همم'), - (0xFD95, 'M', 'نحم'), - (0xFD96, 'M', 'نحى'), - (0xFD97, 'M', 'نجم'), - (0xFD99, 'M', 'نجى'), - (0xFD9A, 'M', 'نمي'), - (0xFD9B, 'M', 'نمى'), - (0xFD9C, 'M', 'يمم'), - (0xFD9E, 'M', 'بخي'), - (0xFD9F, 'M', 'تجي'), - (0xFDA0, 'M', 'تجى'), - (0xFDA1, 'M', 'تخي'), - (0xFDA2, 'M', 'تخى'), - (0xFDA3, 'M', 'تمي'), - (0xFDA4, 'M', 'تمى'), - (0xFDA5, 'M', 'جمي'), - (0xFDA6, 'M', 'جحى'), - ] - -def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFDA7, 'M', 'جمى'), - (0xFDA8, 'M', 'سخى'), - (0xFDA9, 'M', 'صحي'), - (0xFDAA, 'M', 'شحي'), - (0xFDAB, 'M', 'ضحي'), - (0xFDAC, 'M', 'لجي'), - (0xFDAD, 'M', 'لمي'), - (0xFDAE, 'M', 'يحي'), - (0xFDAF, 'M', 'يجي'), - (0xFDB0, 'M', 'يمي'), - (0xFDB1, 'M', 'ممي'), - (0xFDB2, 'M', 'قمي'), - (0xFDB3, 'M', 'نحي'), - (0xFDB4, 'M', 'قمح'), - (0xFDB5, 'M', 'لحم'), - (0xFDB6, 'M', 'عمي'), - (0xFDB7, 'M', 'كمي'), - (0xFDB8, 'M', 'نجح'), - (0xFDB9, 'M', 'مخي'), - (0xFDBA, 'M', 'لجم'), - (0xFDBB, 'M', 'كمم'), - (0xFDBC, 'M', 'لجم'), - (0xFDBD, 'M', 'نجح'), - (0xFDBE, 'M', 'جحي'), - (0xFDBF, 'M', 'حجي'), - (0xFDC0, 'M', 'مجي'), - (0xFDC1, 'M', 'فمي'), - (0xFDC2, 'M', 'بحي'), - (0xFDC3, 'M', 'كمم'), - (0xFDC4, 'M', 'عجم'), - (0xFDC5, 'M', 'صمم'), - (0xFDC6, 'M', 'سخي'), - (0xFDC7, 'M', 'نجي'), - (0xFDC8, 'X'), - (0xFDCF, 'V'), - (0xFDD0, 'X'), - (0xFDF0, 'M', 'صلے'), - (0xFDF1, 'M', 'قلے'), - (0xFDF2, 'M', 'الله'), - (0xFDF3, 'M', 'اكبر'), - (0xFDF4, 'M', 'محمد'), - (0xFDF5, 'M', 'صلعم'), - (0xFDF6, 'M', 'رسول'), - (0xFDF7, 'M', 'عليه'), - (0xFDF8, 'M', 'وسلم'), - (0xFDF9, 'M', 'صلى'), - (0xFDFA, '3', 'صلى الله عليه وسلم'), - (0xFDFB, '3', 'جل جلاله'), - (0xFDFC, 'M', 'ریال'), - (0xFDFD, 'V'), - (0xFE00, 'I'), - (0xFE10, '3', ','), - (0xFE11, 'M', '、'), - (0xFE12, 'X'), - (0xFE13, '3', ':'), - (0xFE14, '3', ';'), - (0xFE15, '3', '!'), - (0xFE16, '3', '?'), - (0xFE17, 'M', '〖'), - (0xFE18, 'M', '〗'), - (0xFE19, 'X'), - (0xFE20, 'V'), - (0xFE30, 'X'), - (0xFE31, 'M', '—'), - (0xFE32, 'M', '–'), - (0xFE33, '3', '_'), - (0xFE35, '3', '('), - (0xFE36, '3', ')'), - (0xFE37, '3', '{'), - (0xFE38, '3', '}'), - (0xFE39, 'M', '〔'), - (0xFE3A, 'M', '〕'), - (0xFE3B, 'M', '【'), - (0xFE3C, 'M', '】'), - (0xFE3D, 'M', '《'), - (0xFE3E, 'M', '》'), - (0xFE3F, 'M', '〈'), - (0xFE40, 'M', '〉'), - (0xFE41, 'M', '「'), - (0xFE42, 'M', '」'), - (0xFE43, 'M', '『'), - (0xFE44, 'M', '』'), - (0xFE45, 'V'), - (0xFE47, '3', '['), - (0xFE48, '3', ']'), - (0xFE49, '3', ' ̅'), - (0xFE4D, '3', '_'), - (0xFE50, '3', ','), - (0xFE51, 'M', '、'), - (0xFE52, 'X'), - (0xFE54, '3', ';'), - (0xFE55, '3', ':'), - (0xFE56, '3', '?'), - (0xFE57, '3', '!'), - (0xFE58, 'M', '—'), - (0xFE59, '3', '('), - (0xFE5A, '3', ')'), - (0xFE5B, '3', '{'), - (0xFE5C, '3', '}'), - (0xFE5D, 'M', '〔'), - ] - -def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFE5E, 'M', '〕'), - (0xFE5F, '3', '#'), - (0xFE60, '3', '&'), - (0xFE61, '3', '*'), - (0xFE62, '3', '+'), - (0xFE63, 'M', '-'), - (0xFE64, '3', '<'), - (0xFE65, '3', '>'), - (0xFE66, '3', '='), - (0xFE67, 'X'), - (0xFE68, '3', '\\'), - (0xFE69, '3', '$'), - (0xFE6A, '3', '%'), - (0xFE6B, '3', '@'), - (0xFE6C, 'X'), - (0xFE70, '3', ' ً'), - (0xFE71, 'M', 'ـً'), - (0xFE72, '3', ' ٌ'), - (0xFE73, 'V'), - (0xFE74, '3', ' ٍ'), - (0xFE75, 'X'), - (0xFE76, '3', ' َ'), - (0xFE77, 'M', 'ـَ'), - (0xFE78, '3', ' ُ'), - (0xFE79, 'M', 'ـُ'), - (0xFE7A, '3', ' ِ'), - (0xFE7B, 'M', 'ـِ'), - (0xFE7C, '3', ' ّ'), - (0xFE7D, 'M', 'ـّ'), - (0xFE7E, '3', ' ْ'), - (0xFE7F, 'M', 'ـْ'), - (0xFE80, 'M', 'ء'), - (0xFE81, 'M', 'آ'), - (0xFE83, 'M', 'أ'), - (0xFE85, 'M', 'ؤ'), - (0xFE87, 'M', 'إ'), - (0xFE89, 'M', 'ئ'), - (0xFE8D, 'M', 'ا'), - (0xFE8F, 'M', 'ب'), - (0xFE93, 'M', 'ة'), - (0xFE95, 'M', 'ت'), - (0xFE99, 'M', 'ث'), - (0xFE9D, 'M', 'ج'), - (0xFEA1, 'M', 'ح'), - (0xFEA5, 'M', 'خ'), - (0xFEA9, 'M', 'د'), - (0xFEAB, 'M', 'ذ'), - (0xFEAD, 'M', 'ر'), - (0xFEAF, 'M', 'ز'), - (0xFEB1, 'M', 'س'), - (0xFEB5, 'M', 'ش'), - (0xFEB9, 'M', 'ص'), - (0xFEBD, 'M', 'ض'), - (0xFEC1, 'M', 'ط'), - (0xFEC5, 'M', 'ظ'), - (0xFEC9, 'M', 'ع'), - (0xFECD, 'M', 'غ'), - (0xFED1, 'M', 'ف'), - (0xFED5, 'M', 'ق'), - (0xFED9, 'M', 'ك'), - (0xFEDD, 'M', 'ل'), - (0xFEE1, 'M', 'م'), - (0xFEE5, 'M', 'ن'), - (0xFEE9, 'M', 'ه'), - (0xFEED, 'M', 'و'), - (0xFEEF, 'M', 'ى'), - (0xFEF1, 'M', 'ي'), - (0xFEF5, 'M', 'لآ'), - (0xFEF7, 'M', 'لأ'), - (0xFEF9, 'M', 'لإ'), - (0xFEFB, 'M', 'لا'), - (0xFEFD, 'X'), - (0xFEFF, 'I'), - (0xFF00, 'X'), - (0xFF01, '3', '!'), - (0xFF02, '3', '"'), - (0xFF03, '3', '#'), - (0xFF04, '3', '$'), - (0xFF05, '3', '%'), - (0xFF06, '3', '&'), - (0xFF07, '3', '\''), - (0xFF08, '3', '('), - (0xFF09, '3', ')'), - (0xFF0A, '3', '*'), - (0xFF0B, '3', '+'), - (0xFF0C, '3', ','), - (0xFF0D, 'M', '-'), - (0xFF0E, 'M', '.'), - (0xFF0F, '3', '/'), - (0xFF10, 'M', '0'), - (0xFF11, 'M', '1'), - (0xFF12, 'M', '2'), - (0xFF13, 'M', '3'), - (0xFF14, 'M', '4'), - (0xFF15, 'M', '5'), - (0xFF16, 'M', '6'), - (0xFF17, 'M', '7'), - (0xFF18, 'M', '8'), - (0xFF19, 'M', '9'), - (0xFF1A, '3', ':'), - ] - -def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFF1B, '3', ';'), - (0xFF1C, '3', '<'), - (0xFF1D, '3', '='), - (0xFF1E, '3', '>'), - (0xFF1F, '3', '?'), - (0xFF20, '3', '@'), - (0xFF21, 'M', 'a'), - (0xFF22, 'M', 'b'), - (0xFF23, 'M', 'c'), - (0xFF24, 'M', 'd'), - (0xFF25, 'M', 'e'), - (0xFF26, 'M', 'f'), - (0xFF27, 'M', 'g'), - (0xFF28, 'M', 'h'), - (0xFF29, 'M', 'i'), - (0xFF2A, 'M', 'j'), - (0xFF2B, 'M', 'k'), - (0xFF2C, 'M', 'l'), - (0xFF2D, 'M', 'm'), - (0xFF2E, 'M', 'n'), - (0xFF2F, 'M', 'o'), - (0xFF30, 'M', 'p'), - (0xFF31, 'M', 'q'), - (0xFF32, 'M', 'r'), - (0xFF33, 'M', 's'), - (0xFF34, 'M', 't'), - (0xFF35, 'M', 'u'), - (0xFF36, 'M', 'v'), - (0xFF37, 'M', 'w'), - (0xFF38, 'M', 'x'), - (0xFF39, 'M', 'y'), - (0xFF3A, 'M', 'z'), - (0xFF3B, '3', '['), - (0xFF3C, '3', '\\'), - (0xFF3D, '3', ']'), - (0xFF3E, '3', '^'), - (0xFF3F, '3', '_'), - (0xFF40, '3', '`'), - (0xFF41, 'M', 'a'), - (0xFF42, 'M', 'b'), - (0xFF43, 'M', 'c'), - (0xFF44, 'M', 'd'), - (0xFF45, 'M', 'e'), - (0xFF46, 'M', 'f'), - (0xFF47, 'M', 'g'), - (0xFF48, 'M', 'h'), - (0xFF49, 'M', 'i'), - (0xFF4A, 'M', 'j'), - (0xFF4B, 'M', 'k'), - (0xFF4C, 'M', 'l'), - (0xFF4D, 'M', 'm'), - (0xFF4E, 'M', 'n'), - (0xFF4F, 'M', 'o'), - (0xFF50, 'M', 'p'), - (0xFF51, 'M', 'q'), - (0xFF52, 'M', 'r'), - (0xFF53, 'M', 's'), - (0xFF54, 'M', 't'), - (0xFF55, 'M', 'u'), - (0xFF56, 'M', 'v'), - (0xFF57, 'M', 'w'), - (0xFF58, 'M', 'x'), - (0xFF59, 'M', 'y'), - (0xFF5A, 'M', 'z'), - (0xFF5B, '3', '{'), - (0xFF5C, '3', '|'), - (0xFF5D, '3', '}'), - (0xFF5E, '3', '~'), - (0xFF5F, 'M', '⦅'), - (0xFF60, 'M', '⦆'), - (0xFF61, 'M', '.'), - (0xFF62, 'M', '「'), - (0xFF63, 'M', '」'), - (0xFF64, 'M', '、'), - (0xFF65, 'M', '・'), - (0xFF66, 'M', 'ヲ'), - (0xFF67, 'M', 'ァ'), - (0xFF68, 'M', 'ィ'), - (0xFF69, 'M', 'ゥ'), - (0xFF6A, 'M', 'ェ'), - (0xFF6B, 'M', 'ォ'), - (0xFF6C, 'M', 'ャ'), - (0xFF6D, 'M', 'ュ'), - (0xFF6E, 'M', 'ョ'), - (0xFF6F, 'M', 'ッ'), - (0xFF70, 'M', 'ー'), - (0xFF71, 'M', 'ア'), - (0xFF72, 'M', 'イ'), - (0xFF73, 'M', 'ウ'), - (0xFF74, 'M', 'エ'), - (0xFF75, 'M', 'オ'), - (0xFF76, 'M', 'カ'), - (0xFF77, 'M', 'キ'), - (0xFF78, 'M', 'ク'), - (0xFF79, 'M', 'ケ'), - (0xFF7A, 'M', 'コ'), - (0xFF7B, 'M', 'サ'), - (0xFF7C, 'M', 'シ'), - (0xFF7D, 'M', 'ス'), - (0xFF7E, 'M', 'セ'), - ] - -def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFF7F, 'M', 'ソ'), - (0xFF80, 'M', 'タ'), - (0xFF81, 'M', 'チ'), - (0xFF82, 'M', 'ツ'), - (0xFF83, 'M', 'テ'), - (0xFF84, 'M', 'ト'), - (0xFF85, 'M', 'ナ'), - (0xFF86, 'M', 'ニ'), - (0xFF87, 'M', 'ヌ'), - (0xFF88, 'M', 'ネ'), - (0xFF89, 'M', 'ノ'), - (0xFF8A, 'M', 'ハ'), - (0xFF8B, 'M', 'ヒ'), - (0xFF8C, 'M', 'フ'), - (0xFF8D, 'M', 'ヘ'), - (0xFF8E, 'M', 'ホ'), - (0xFF8F, 'M', 'マ'), - (0xFF90, 'M', 'ミ'), - (0xFF91, 'M', 'ム'), - (0xFF92, 'M', 'メ'), - (0xFF93, 'M', 'モ'), - (0xFF94, 'M', 'ヤ'), - (0xFF95, 'M', 'ユ'), - (0xFF96, 'M', 'ヨ'), - (0xFF97, 'M', 'ラ'), - (0xFF98, 'M', 'リ'), - (0xFF99, 'M', 'ル'), - (0xFF9A, 'M', 'レ'), - (0xFF9B, 'M', 'ロ'), - (0xFF9C, 'M', 'ワ'), - (0xFF9D, 'M', 'ン'), - (0xFF9E, 'M', '゙'), - (0xFF9F, 'M', '゚'), - (0xFFA0, 'X'), - (0xFFA1, 'M', 'ᄀ'), - (0xFFA2, 'M', 'ᄁ'), - (0xFFA3, 'M', 'ᆪ'), - (0xFFA4, 'M', 'ᄂ'), - (0xFFA5, 'M', 'ᆬ'), - (0xFFA6, 'M', 'ᆭ'), - (0xFFA7, 'M', 'ᄃ'), - (0xFFA8, 'M', 'ᄄ'), - (0xFFA9, 'M', 'ᄅ'), - (0xFFAA, 'M', 'ᆰ'), - (0xFFAB, 'M', 'ᆱ'), - (0xFFAC, 'M', 'ᆲ'), - (0xFFAD, 'M', 'ᆳ'), - (0xFFAE, 'M', 'ᆴ'), - (0xFFAF, 'M', 'ᆵ'), - (0xFFB0, 'M', 'ᄚ'), - (0xFFB1, 'M', 'ᄆ'), - (0xFFB2, 'M', 'ᄇ'), - (0xFFB3, 'M', 'ᄈ'), - (0xFFB4, 'M', 'ᄡ'), - (0xFFB5, 'M', 'ᄉ'), - (0xFFB6, 'M', 'ᄊ'), - (0xFFB7, 'M', 'ᄋ'), - (0xFFB8, 'M', 'ᄌ'), - (0xFFB9, 'M', 'ᄍ'), - (0xFFBA, 'M', 'ᄎ'), - (0xFFBB, 'M', 'ᄏ'), - (0xFFBC, 'M', 'ᄐ'), - (0xFFBD, 'M', 'ᄑ'), - (0xFFBE, 'M', 'ᄒ'), - (0xFFBF, 'X'), - (0xFFC2, 'M', 'ᅡ'), - (0xFFC3, 'M', 'ᅢ'), - (0xFFC4, 'M', 'ᅣ'), - (0xFFC5, 'M', 'ᅤ'), - (0xFFC6, 'M', 'ᅥ'), - (0xFFC7, 'M', 'ᅦ'), - (0xFFC8, 'X'), - (0xFFCA, 'M', 'ᅧ'), - (0xFFCB, 'M', 'ᅨ'), - (0xFFCC, 'M', 'ᅩ'), - (0xFFCD, 'M', 'ᅪ'), - (0xFFCE, 'M', 'ᅫ'), - (0xFFCF, 'M', 'ᅬ'), - (0xFFD0, 'X'), - (0xFFD2, 'M', 'ᅭ'), - (0xFFD3, 'M', 'ᅮ'), - (0xFFD4, 'M', 'ᅯ'), - (0xFFD5, 'M', 'ᅰ'), - (0xFFD6, 'M', 'ᅱ'), - (0xFFD7, 'M', 'ᅲ'), - (0xFFD8, 'X'), - (0xFFDA, 'M', 'ᅳ'), - (0xFFDB, 'M', 'ᅴ'), - (0xFFDC, 'M', 'ᅵ'), - (0xFFDD, 'X'), - (0xFFE0, 'M', '¢'), - (0xFFE1, 'M', '£'), - (0xFFE2, 'M', '¬'), - (0xFFE3, '3', ' ̄'), - (0xFFE4, 'M', '¦'), - (0xFFE5, 'M', '¥'), - (0xFFE6, 'M', '₩'), - (0xFFE7, 'X'), - (0xFFE8, 'M', '│'), - (0xFFE9, 'M', '←'), - ] - -def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0xFFEA, 'M', '↑'), - (0xFFEB, 'M', '→'), - (0xFFEC, 'M', '↓'), - (0xFFED, 'M', '■'), - (0xFFEE, 'M', '○'), - (0xFFEF, 'X'), - (0x10000, 'V'), - (0x1000C, 'X'), - (0x1000D, 'V'), - (0x10027, 'X'), - (0x10028, 'V'), - (0x1003B, 'X'), - (0x1003C, 'V'), - (0x1003E, 'X'), - (0x1003F, 'V'), - (0x1004E, 'X'), - (0x10050, 'V'), - (0x1005E, 'X'), - (0x10080, 'V'), - (0x100FB, 'X'), - (0x10100, 'V'), - (0x10103, 'X'), - (0x10107, 'V'), - (0x10134, 'X'), - (0x10137, 'V'), - (0x1018F, 'X'), - (0x10190, 'V'), - (0x1019D, 'X'), - (0x101A0, 'V'), - (0x101A1, 'X'), - (0x101D0, 'V'), - (0x101FE, 'X'), - (0x10280, 'V'), - (0x1029D, 'X'), - (0x102A0, 'V'), - (0x102D1, 'X'), - (0x102E0, 'V'), - (0x102FC, 'X'), - (0x10300, 'V'), - (0x10324, 'X'), - (0x1032D, 'V'), - (0x1034B, 'X'), - (0x10350, 'V'), - (0x1037B, 'X'), - (0x10380, 'V'), - (0x1039E, 'X'), - (0x1039F, 'V'), - (0x103C4, 'X'), - (0x103C8, 'V'), - (0x103D6, 'X'), - (0x10400, 'M', '𐐨'), - (0x10401, 'M', '𐐩'), - (0x10402, 'M', '𐐪'), - (0x10403, 'M', '𐐫'), - (0x10404, 'M', '𐐬'), - (0x10405, 'M', '𐐭'), - (0x10406, 'M', '𐐮'), - (0x10407, 'M', '𐐯'), - (0x10408, 'M', '𐐰'), - (0x10409, 'M', '𐐱'), - (0x1040A, 'M', '𐐲'), - (0x1040B, 'M', '𐐳'), - (0x1040C, 'M', '𐐴'), - (0x1040D, 'M', '𐐵'), - (0x1040E, 'M', '𐐶'), - (0x1040F, 'M', '𐐷'), - (0x10410, 'M', '𐐸'), - (0x10411, 'M', '𐐹'), - (0x10412, 'M', '𐐺'), - (0x10413, 'M', '𐐻'), - (0x10414, 'M', '𐐼'), - (0x10415, 'M', '𐐽'), - (0x10416, 'M', '𐐾'), - (0x10417, 'M', '𐐿'), - (0x10418, 'M', '𐑀'), - (0x10419, 'M', '𐑁'), - (0x1041A, 'M', '𐑂'), - (0x1041B, 'M', '𐑃'), - (0x1041C, 'M', '𐑄'), - (0x1041D, 'M', '𐑅'), - (0x1041E, 'M', '𐑆'), - (0x1041F, 'M', '𐑇'), - (0x10420, 'M', '𐑈'), - (0x10421, 'M', '𐑉'), - (0x10422, 'M', '𐑊'), - (0x10423, 'M', '𐑋'), - (0x10424, 'M', '𐑌'), - (0x10425, 'M', '𐑍'), - (0x10426, 'M', '𐑎'), - (0x10427, 'M', '𐑏'), - (0x10428, 'V'), - (0x1049E, 'X'), - (0x104A0, 'V'), - (0x104AA, 'X'), - (0x104B0, 'M', '𐓘'), - (0x104B1, 'M', '𐓙'), - (0x104B2, 'M', '𐓚'), - (0x104B3, 'M', '𐓛'), - (0x104B4, 'M', '𐓜'), - (0x104B5, 'M', '𐓝'), - ] - -def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x104B6, 'M', '𐓞'), - (0x104B7, 'M', '𐓟'), - (0x104B8, 'M', '𐓠'), - (0x104B9, 'M', '𐓡'), - (0x104BA, 'M', '𐓢'), - (0x104BB, 'M', '𐓣'), - (0x104BC, 'M', '𐓤'), - (0x104BD, 'M', '𐓥'), - (0x104BE, 'M', '𐓦'), - (0x104BF, 'M', '𐓧'), - (0x104C0, 'M', '𐓨'), - (0x104C1, 'M', '𐓩'), - (0x104C2, 'M', '𐓪'), - (0x104C3, 'M', '𐓫'), - (0x104C4, 'M', '𐓬'), - (0x104C5, 'M', '𐓭'), - (0x104C6, 'M', '𐓮'), - (0x104C7, 'M', '𐓯'), - (0x104C8, 'M', '𐓰'), - (0x104C9, 'M', '𐓱'), - (0x104CA, 'M', '𐓲'), - (0x104CB, 'M', '𐓳'), - (0x104CC, 'M', '𐓴'), - (0x104CD, 'M', '𐓵'), - (0x104CE, 'M', '𐓶'), - (0x104CF, 'M', '𐓷'), - (0x104D0, 'M', '𐓸'), - (0x104D1, 'M', '𐓹'), - (0x104D2, 'M', '𐓺'), - (0x104D3, 'M', '𐓻'), - (0x104D4, 'X'), - (0x104D8, 'V'), - (0x104FC, 'X'), - (0x10500, 'V'), - (0x10528, 'X'), - (0x10530, 'V'), - (0x10564, 'X'), - (0x1056F, 'V'), - (0x10570, 'M', '𐖗'), - (0x10571, 'M', '𐖘'), - (0x10572, 'M', '𐖙'), - (0x10573, 'M', '𐖚'), - (0x10574, 'M', '𐖛'), - (0x10575, 'M', '𐖜'), - (0x10576, 'M', '𐖝'), - (0x10577, 'M', '𐖞'), - (0x10578, 'M', '𐖟'), - (0x10579, 'M', '𐖠'), - (0x1057A, 'M', '𐖡'), - (0x1057B, 'X'), - (0x1057C, 'M', '𐖣'), - (0x1057D, 'M', '𐖤'), - (0x1057E, 'M', '𐖥'), - (0x1057F, 'M', '𐖦'), - (0x10580, 'M', '𐖧'), - (0x10581, 'M', '𐖨'), - (0x10582, 'M', '𐖩'), - (0x10583, 'M', '𐖪'), - (0x10584, 'M', '𐖫'), - (0x10585, 'M', '𐖬'), - (0x10586, 'M', '𐖭'), - (0x10587, 'M', '𐖮'), - (0x10588, 'M', '𐖯'), - (0x10589, 'M', '𐖰'), - (0x1058A, 'M', '𐖱'), - (0x1058B, 'X'), - (0x1058C, 'M', '𐖳'), - (0x1058D, 'M', '𐖴'), - (0x1058E, 'M', '𐖵'), - (0x1058F, 'M', '𐖶'), - (0x10590, 'M', '𐖷'), - (0x10591, 'M', '𐖸'), - (0x10592, 'M', '𐖹'), - (0x10593, 'X'), - (0x10594, 'M', '𐖻'), - (0x10595, 'M', '𐖼'), - (0x10596, 'X'), - (0x10597, 'V'), - (0x105A2, 'X'), - (0x105A3, 'V'), - (0x105B2, 'X'), - (0x105B3, 'V'), - (0x105BA, 'X'), - (0x105BB, 'V'), - (0x105BD, 'X'), - (0x10600, 'V'), - (0x10737, 'X'), - (0x10740, 'V'), - (0x10756, 'X'), - (0x10760, 'V'), - (0x10768, 'X'), - (0x10780, 'V'), - (0x10781, 'M', 'ː'), - (0x10782, 'M', 'ˑ'), - (0x10783, 'M', 'æ'), - (0x10784, 'M', 'ʙ'), - (0x10785, 'M', 'ɓ'), - (0x10786, 'X'), - (0x10787, 'M', 'ʣ'), - (0x10788, 'M', 'ꭦ'), - ] - -def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x10789, 'M', 'ʥ'), - (0x1078A, 'M', 'ʤ'), - (0x1078B, 'M', 'ɖ'), - (0x1078C, 'M', 'ɗ'), - (0x1078D, 'M', 'ᶑ'), - (0x1078E, 'M', 'ɘ'), - (0x1078F, 'M', 'ɞ'), - (0x10790, 'M', 'ʩ'), - (0x10791, 'M', 'ɤ'), - (0x10792, 'M', 'ɢ'), - (0x10793, 'M', 'ɠ'), - (0x10794, 'M', 'ʛ'), - (0x10795, 'M', 'ħ'), - (0x10796, 'M', 'ʜ'), - (0x10797, 'M', 'ɧ'), - (0x10798, 'M', 'ʄ'), - (0x10799, 'M', 'ʪ'), - (0x1079A, 'M', 'ʫ'), - (0x1079B, 'M', 'ɬ'), - (0x1079C, 'M', '𝼄'), - (0x1079D, 'M', 'ꞎ'), - (0x1079E, 'M', 'ɮ'), - (0x1079F, 'M', '𝼅'), - (0x107A0, 'M', 'ʎ'), - (0x107A1, 'M', '𝼆'), - (0x107A2, 'M', 'ø'), - (0x107A3, 'M', 'ɶ'), - (0x107A4, 'M', 'ɷ'), - (0x107A5, 'M', 'q'), - (0x107A6, 'M', 'ɺ'), - (0x107A7, 'M', '𝼈'), - (0x107A8, 'M', 'ɽ'), - (0x107A9, 'M', 'ɾ'), - (0x107AA, 'M', 'ʀ'), - (0x107AB, 'M', 'ʨ'), - (0x107AC, 'M', 'ʦ'), - (0x107AD, 'M', 'ꭧ'), - (0x107AE, 'M', 'ʧ'), - (0x107AF, 'M', 'ʈ'), - (0x107B0, 'M', 'ⱱ'), - (0x107B1, 'X'), - (0x107B2, 'M', 'ʏ'), - (0x107B3, 'M', 'ʡ'), - (0x107B4, 'M', 'ʢ'), - (0x107B5, 'M', 'ʘ'), - (0x107B6, 'M', 'ǀ'), - (0x107B7, 'M', 'ǁ'), - (0x107B8, 'M', 'ǂ'), - (0x107B9, 'M', '𝼊'), - (0x107BA, 'M', '𝼞'), - (0x107BB, 'X'), - (0x10800, 'V'), - (0x10806, 'X'), - (0x10808, 'V'), - (0x10809, 'X'), - (0x1080A, 'V'), - (0x10836, 'X'), - (0x10837, 'V'), - (0x10839, 'X'), - (0x1083C, 'V'), - (0x1083D, 'X'), - (0x1083F, 'V'), - (0x10856, 'X'), - (0x10857, 'V'), - (0x1089F, 'X'), - (0x108A7, 'V'), - (0x108B0, 'X'), - (0x108E0, 'V'), - (0x108F3, 'X'), - (0x108F4, 'V'), - (0x108F6, 'X'), - (0x108FB, 'V'), - (0x1091C, 'X'), - (0x1091F, 'V'), - (0x1093A, 'X'), - (0x1093F, 'V'), - (0x10940, 'X'), - (0x10980, 'V'), - (0x109B8, 'X'), - (0x109BC, 'V'), - (0x109D0, 'X'), - (0x109D2, 'V'), - (0x10A04, 'X'), - (0x10A05, 'V'), - (0x10A07, 'X'), - (0x10A0C, 'V'), - (0x10A14, 'X'), - (0x10A15, 'V'), - (0x10A18, 'X'), - (0x10A19, 'V'), - (0x10A36, 'X'), - (0x10A38, 'V'), - (0x10A3B, 'X'), - (0x10A3F, 'V'), - (0x10A49, 'X'), - (0x10A50, 'V'), - (0x10A59, 'X'), - (0x10A60, 'V'), - (0x10AA0, 'X'), - (0x10AC0, 'V'), - ] - -def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x10AE7, 'X'), - (0x10AEB, 'V'), - (0x10AF7, 'X'), - (0x10B00, 'V'), - (0x10B36, 'X'), - (0x10B39, 'V'), - (0x10B56, 'X'), - (0x10B58, 'V'), - (0x10B73, 'X'), - (0x10B78, 'V'), - (0x10B92, 'X'), - (0x10B99, 'V'), - (0x10B9D, 'X'), - (0x10BA9, 'V'), - (0x10BB0, 'X'), - (0x10C00, 'V'), - (0x10C49, 'X'), - (0x10C80, 'M', '𐳀'), - (0x10C81, 'M', '𐳁'), - (0x10C82, 'M', '𐳂'), - (0x10C83, 'M', '𐳃'), - (0x10C84, 'M', '𐳄'), - (0x10C85, 'M', '𐳅'), - (0x10C86, 'M', '𐳆'), - (0x10C87, 'M', '𐳇'), - (0x10C88, 'M', '𐳈'), - (0x10C89, 'M', '𐳉'), - (0x10C8A, 'M', '𐳊'), - (0x10C8B, 'M', '𐳋'), - (0x10C8C, 'M', '𐳌'), - (0x10C8D, 'M', '𐳍'), - (0x10C8E, 'M', '𐳎'), - (0x10C8F, 'M', '𐳏'), - (0x10C90, 'M', '𐳐'), - (0x10C91, 'M', '𐳑'), - (0x10C92, 'M', '𐳒'), - (0x10C93, 'M', '𐳓'), - (0x10C94, 'M', '𐳔'), - (0x10C95, 'M', '𐳕'), - (0x10C96, 'M', '𐳖'), - (0x10C97, 'M', '𐳗'), - (0x10C98, 'M', '𐳘'), - (0x10C99, 'M', '𐳙'), - (0x10C9A, 'M', '𐳚'), - (0x10C9B, 'M', '𐳛'), - (0x10C9C, 'M', '𐳜'), - (0x10C9D, 'M', '𐳝'), - (0x10C9E, 'M', '𐳞'), - (0x10C9F, 'M', '𐳟'), - (0x10CA0, 'M', '𐳠'), - (0x10CA1, 'M', '𐳡'), - (0x10CA2, 'M', '𐳢'), - (0x10CA3, 'M', '𐳣'), - (0x10CA4, 'M', '𐳤'), - (0x10CA5, 'M', '𐳥'), - (0x10CA6, 'M', '𐳦'), - (0x10CA7, 'M', '𐳧'), - (0x10CA8, 'M', '𐳨'), - (0x10CA9, 'M', '𐳩'), - (0x10CAA, 'M', '𐳪'), - (0x10CAB, 'M', '𐳫'), - (0x10CAC, 'M', '𐳬'), - (0x10CAD, 'M', '𐳭'), - (0x10CAE, 'M', '𐳮'), - (0x10CAF, 'M', '𐳯'), - (0x10CB0, 'M', '𐳰'), - (0x10CB1, 'M', '𐳱'), - (0x10CB2, 'M', '𐳲'), - (0x10CB3, 'X'), - (0x10CC0, 'V'), - (0x10CF3, 'X'), - (0x10CFA, 'V'), - (0x10D28, 'X'), - (0x10D30, 'V'), - (0x10D3A, 'X'), - (0x10E60, 'V'), - (0x10E7F, 'X'), - (0x10E80, 'V'), - (0x10EAA, 'X'), - (0x10EAB, 'V'), - (0x10EAE, 'X'), - (0x10EB0, 'V'), - (0x10EB2, 'X'), - (0x10EFD, 'V'), - (0x10F28, 'X'), - (0x10F30, 'V'), - (0x10F5A, 'X'), - (0x10F70, 'V'), - (0x10F8A, 'X'), - (0x10FB0, 'V'), - (0x10FCC, 'X'), - (0x10FE0, 'V'), - (0x10FF7, 'X'), - (0x11000, 'V'), - (0x1104E, 'X'), - (0x11052, 'V'), - (0x11076, 'X'), - (0x1107F, 'V'), - (0x110BD, 'X'), - (0x110BE, 'V'), - ] - -def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x110C3, 'X'), - (0x110D0, 'V'), - (0x110E9, 'X'), - (0x110F0, 'V'), - (0x110FA, 'X'), - (0x11100, 'V'), - (0x11135, 'X'), - (0x11136, 'V'), - (0x11148, 'X'), - (0x11150, 'V'), - (0x11177, 'X'), - (0x11180, 'V'), - (0x111E0, 'X'), - (0x111E1, 'V'), - (0x111F5, 'X'), - (0x11200, 'V'), - (0x11212, 'X'), - (0x11213, 'V'), - (0x11242, 'X'), - (0x11280, 'V'), - (0x11287, 'X'), - (0x11288, 'V'), - (0x11289, 'X'), - (0x1128A, 'V'), - (0x1128E, 'X'), - (0x1128F, 'V'), - (0x1129E, 'X'), - (0x1129F, 'V'), - (0x112AA, 'X'), - (0x112B0, 'V'), - (0x112EB, 'X'), - (0x112F0, 'V'), - (0x112FA, 'X'), - (0x11300, 'V'), - (0x11304, 'X'), - (0x11305, 'V'), - (0x1130D, 'X'), - (0x1130F, 'V'), - (0x11311, 'X'), - (0x11313, 'V'), - (0x11329, 'X'), - (0x1132A, 'V'), - (0x11331, 'X'), - (0x11332, 'V'), - (0x11334, 'X'), - (0x11335, 'V'), - (0x1133A, 'X'), - (0x1133B, 'V'), - (0x11345, 'X'), - (0x11347, 'V'), - (0x11349, 'X'), - (0x1134B, 'V'), - (0x1134E, 'X'), - (0x11350, 'V'), - (0x11351, 'X'), - (0x11357, 'V'), - (0x11358, 'X'), - (0x1135D, 'V'), - (0x11364, 'X'), - (0x11366, 'V'), - (0x1136D, 'X'), - (0x11370, 'V'), - (0x11375, 'X'), - (0x11400, 'V'), - (0x1145C, 'X'), - (0x1145D, 'V'), - (0x11462, 'X'), - (0x11480, 'V'), - (0x114C8, 'X'), - (0x114D0, 'V'), - (0x114DA, 'X'), - (0x11580, 'V'), - (0x115B6, 'X'), - (0x115B8, 'V'), - (0x115DE, 'X'), - (0x11600, 'V'), - (0x11645, 'X'), - (0x11650, 'V'), - (0x1165A, 'X'), - (0x11660, 'V'), - (0x1166D, 'X'), - (0x11680, 'V'), - (0x116BA, 'X'), - (0x116C0, 'V'), - (0x116CA, 'X'), - (0x11700, 'V'), - (0x1171B, 'X'), - (0x1171D, 'V'), - (0x1172C, 'X'), - (0x11730, 'V'), - (0x11747, 'X'), - (0x11800, 'V'), - (0x1183C, 'X'), - (0x118A0, 'M', '𑣀'), - (0x118A1, 'M', '𑣁'), - (0x118A2, 'M', '𑣂'), - (0x118A3, 'M', '𑣃'), - (0x118A4, 'M', '𑣄'), - (0x118A5, 'M', '𑣅'), - (0x118A6, 'M', '𑣆'), - ] - -def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x118A7, 'M', '𑣇'), - (0x118A8, 'M', '𑣈'), - (0x118A9, 'M', '𑣉'), - (0x118AA, 'M', '𑣊'), - (0x118AB, 'M', '𑣋'), - (0x118AC, 'M', '𑣌'), - (0x118AD, 'M', '𑣍'), - (0x118AE, 'M', '𑣎'), - (0x118AF, 'M', '𑣏'), - (0x118B0, 'M', '𑣐'), - (0x118B1, 'M', '𑣑'), - (0x118B2, 'M', '𑣒'), - (0x118B3, 'M', '𑣓'), - (0x118B4, 'M', '𑣔'), - (0x118B5, 'M', '𑣕'), - (0x118B6, 'M', '𑣖'), - (0x118B7, 'M', '𑣗'), - (0x118B8, 'M', '𑣘'), - (0x118B9, 'M', '𑣙'), - (0x118BA, 'M', '𑣚'), - (0x118BB, 'M', '𑣛'), - (0x118BC, 'M', '𑣜'), - (0x118BD, 'M', '𑣝'), - (0x118BE, 'M', '𑣞'), - (0x118BF, 'M', '𑣟'), - (0x118C0, 'V'), - (0x118F3, 'X'), - (0x118FF, 'V'), - (0x11907, 'X'), - (0x11909, 'V'), - (0x1190A, 'X'), - (0x1190C, 'V'), - (0x11914, 'X'), - (0x11915, 'V'), - (0x11917, 'X'), - (0x11918, 'V'), - (0x11936, 'X'), - (0x11937, 'V'), - (0x11939, 'X'), - (0x1193B, 'V'), - (0x11947, 'X'), - (0x11950, 'V'), - (0x1195A, 'X'), - (0x119A0, 'V'), - (0x119A8, 'X'), - (0x119AA, 'V'), - (0x119D8, 'X'), - (0x119DA, 'V'), - (0x119E5, 'X'), - (0x11A00, 'V'), - (0x11A48, 'X'), - (0x11A50, 'V'), - (0x11AA3, 'X'), - (0x11AB0, 'V'), - (0x11AF9, 'X'), - (0x11B00, 'V'), - (0x11B0A, 'X'), - (0x11C00, 'V'), - (0x11C09, 'X'), - (0x11C0A, 'V'), - (0x11C37, 'X'), - (0x11C38, 'V'), - (0x11C46, 'X'), - (0x11C50, 'V'), - (0x11C6D, 'X'), - (0x11C70, 'V'), - (0x11C90, 'X'), - (0x11C92, 'V'), - (0x11CA8, 'X'), - (0x11CA9, 'V'), - (0x11CB7, 'X'), - (0x11D00, 'V'), - (0x11D07, 'X'), - (0x11D08, 'V'), - (0x11D0A, 'X'), - (0x11D0B, 'V'), - (0x11D37, 'X'), - (0x11D3A, 'V'), - (0x11D3B, 'X'), - (0x11D3C, 'V'), - (0x11D3E, 'X'), - (0x11D3F, 'V'), - (0x11D48, 'X'), - (0x11D50, 'V'), - (0x11D5A, 'X'), - (0x11D60, 'V'), - (0x11D66, 'X'), - (0x11D67, 'V'), - (0x11D69, 'X'), - (0x11D6A, 'V'), - (0x11D8F, 'X'), - (0x11D90, 'V'), - (0x11D92, 'X'), - (0x11D93, 'V'), - (0x11D99, 'X'), - (0x11DA0, 'V'), - (0x11DAA, 'X'), - (0x11EE0, 'V'), - (0x11EF9, 'X'), - (0x11F00, 'V'), - ] - -def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x11F11, 'X'), - (0x11F12, 'V'), - (0x11F3B, 'X'), - (0x11F3E, 'V'), - (0x11F5A, 'X'), - (0x11FB0, 'V'), - (0x11FB1, 'X'), - (0x11FC0, 'V'), - (0x11FF2, 'X'), - (0x11FFF, 'V'), - (0x1239A, 'X'), - (0x12400, 'V'), - (0x1246F, 'X'), - (0x12470, 'V'), - (0x12475, 'X'), - (0x12480, 'V'), - (0x12544, 'X'), - (0x12F90, 'V'), - (0x12FF3, 'X'), - (0x13000, 'V'), - (0x13430, 'X'), - (0x13440, 'V'), - (0x13456, 'X'), - (0x14400, 'V'), - (0x14647, 'X'), - (0x16800, 'V'), - (0x16A39, 'X'), - (0x16A40, 'V'), - (0x16A5F, 'X'), - (0x16A60, 'V'), - (0x16A6A, 'X'), - (0x16A6E, 'V'), - (0x16ABF, 'X'), - (0x16AC0, 'V'), - (0x16ACA, 'X'), - (0x16AD0, 'V'), - (0x16AEE, 'X'), - (0x16AF0, 'V'), - (0x16AF6, 'X'), - (0x16B00, 'V'), - (0x16B46, 'X'), - (0x16B50, 'V'), - (0x16B5A, 'X'), - (0x16B5B, 'V'), - (0x16B62, 'X'), - (0x16B63, 'V'), - (0x16B78, 'X'), - (0x16B7D, 'V'), - (0x16B90, 'X'), - (0x16E40, 'M', '𖹠'), - (0x16E41, 'M', '𖹡'), - (0x16E42, 'M', '𖹢'), - (0x16E43, 'M', '𖹣'), - (0x16E44, 'M', '𖹤'), - (0x16E45, 'M', '𖹥'), - (0x16E46, 'M', '𖹦'), - (0x16E47, 'M', '𖹧'), - (0x16E48, 'M', '𖹨'), - (0x16E49, 'M', '𖹩'), - (0x16E4A, 'M', '𖹪'), - (0x16E4B, 'M', '𖹫'), - (0x16E4C, 'M', '𖹬'), - (0x16E4D, 'M', '𖹭'), - (0x16E4E, 'M', '𖹮'), - (0x16E4F, 'M', '𖹯'), - (0x16E50, 'M', '𖹰'), - (0x16E51, 'M', '𖹱'), - (0x16E52, 'M', '𖹲'), - (0x16E53, 'M', '𖹳'), - (0x16E54, 'M', '𖹴'), - (0x16E55, 'M', '𖹵'), - (0x16E56, 'M', '𖹶'), - (0x16E57, 'M', '𖹷'), - (0x16E58, 'M', '𖹸'), - (0x16E59, 'M', '𖹹'), - (0x16E5A, 'M', '𖹺'), - (0x16E5B, 'M', '𖹻'), - (0x16E5C, 'M', '𖹼'), - (0x16E5D, 'M', '𖹽'), - (0x16E5E, 'M', '𖹾'), - (0x16E5F, 'M', '𖹿'), - (0x16E60, 'V'), - (0x16E9B, 'X'), - (0x16F00, 'V'), - (0x16F4B, 'X'), - (0x16F4F, 'V'), - (0x16F88, 'X'), - (0x16F8F, 'V'), - (0x16FA0, 'X'), - (0x16FE0, 'V'), - (0x16FE5, 'X'), - (0x16FF0, 'V'), - (0x16FF2, 'X'), - (0x17000, 'V'), - (0x187F8, 'X'), - (0x18800, 'V'), - (0x18CD6, 'X'), - (0x18D00, 'V'), - (0x18D09, 'X'), - (0x1AFF0, 'V'), - ] - -def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1AFF4, 'X'), - (0x1AFF5, 'V'), - (0x1AFFC, 'X'), - (0x1AFFD, 'V'), - (0x1AFFF, 'X'), - (0x1B000, 'V'), - (0x1B123, 'X'), - (0x1B132, 'V'), - (0x1B133, 'X'), - (0x1B150, 'V'), - (0x1B153, 'X'), - (0x1B155, 'V'), - (0x1B156, 'X'), - (0x1B164, 'V'), - (0x1B168, 'X'), - (0x1B170, 'V'), - (0x1B2FC, 'X'), - (0x1BC00, 'V'), - (0x1BC6B, 'X'), - (0x1BC70, 'V'), - (0x1BC7D, 'X'), - (0x1BC80, 'V'), - (0x1BC89, 'X'), - (0x1BC90, 'V'), - (0x1BC9A, 'X'), - (0x1BC9C, 'V'), - (0x1BCA0, 'I'), - (0x1BCA4, 'X'), - (0x1CF00, 'V'), - (0x1CF2E, 'X'), - (0x1CF30, 'V'), - (0x1CF47, 'X'), - (0x1CF50, 'V'), - (0x1CFC4, 'X'), - (0x1D000, 'V'), - (0x1D0F6, 'X'), - (0x1D100, 'V'), - (0x1D127, 'X'), - (0x1D129, 'V'), - (0x1D15E, 'M', '𝅗𝅥'), - (0x1D15F, 'M', '𝅘𝅥'), - (0x1D160, 'M', '𝅘𝅥𝅮'), - (0x1D161, 'M', '𝅘𝅥𝅯'), - (0x1D162, 'M', '𝅘𝅥𝅰'), - (0x1D163, 'M', '𝅘𝅥𝅱'), - (0x1D164, 'M', '𝅘𝅥𝅲'), - (0x1D165, 'V'), - (0x1D173, 'X'), - (0x1D17B, 'V'), - (0x1D1BB, 'M', '𝆹𝅥'), - (0x1D1BC, 'M', '𝆺𝅥'), - (0x1D1BD, 'M', '𝆹𝅥𝅮'), - (0x1D1BE, 'M', '𝆺𝅥𝅮'), - (0x1D1BF, 'M', '𝆹𝅥𝅯'), - (0x1D1C0, 'M', '𝆺𝅥𝅯'), - (0x1D1C1, 'V'), - (0x1D1EB, 'X'), - (0x1D200, 'V'), - (0x1D246, 'X'), - (0x1D2C0, 'V'), - (0x1D2D4, 'X'), - (0x1D2E0, 'V'), - (0x1D2F4, 'X'), - (0x1D300, 'V'), - (0x1D357, 'X'), - (0x1D360, 'V'), - (0x1D379, 'X'), - (0x1D400, 'M', 'a'), - (0x1D401, 'M', 'b'), - (0x1D402, 'M', 'c'), - (0x1D403, 'M', 'd'), - (0x1D404, 'M', 'e'), - (0x1D405, 'M', 'f'), - (0x1D406, 'M', 'g'), - (0x1D407, 'M', 'h'), - (0x1D408, 'M', 'i'), - (0x1D409, 'M', 'j'), - (0x1D40A, 'M', 'k'), - (0x1D40B, 'M', 'l'), - (0x1D40C, 'M', 'm'), - (0x1D40D, 'M', 'n'), - (0x1D40E, 'M', 'o'), - (0x1D40F, 'M', 'p'), - (0x1D410, 'M', 'q'), - (0x1D411, 'M', 'r'), - (0x1D412, 'M', 's'), - (0x1D413, 'M', 't'), - (0x1D414, 'M', 'u'), - (0x1D415, 'M', 'v'), - (0x1D416, 'M', 'w'), - (0x1D417, 'M', 'x'), - (0x1D418, 'M', 'y'), - (0x1D419, 'M', 'z'), - (0x1D41A, 'M', 'a'), - (0x1D41B, 'M', 'b'), - (0x1D41C, 'M', 'c'), - (0x1D41D, 'M', 'd'), - (0x1D41E, 'M', 'e'), - (0x1D41F, 'M', 'f'), - (0x1D420, 'M', 'g'), - ] - -def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D421, 'M', 'h'), - (0x1D422, 'M', 'i'), - (0x1D423, 'M', 'j'), - (0x1D424, 'M', 'k'), - (0x1D425, 'M', 'l'), - (0x1D426, 'M', 'm'), - (0x1D427, 'M', 'n'), - (0x1D428, 'M', 'o'), - (0x1D429, 'M', 'p'), - (0x1D42A, 'M', 'q'), - (0x1D42B, 'M', 'r'), - (0x1D42C, 'M', 's'), - (0x1D42D, 'M', 't'), - (0x1D42E, 'M', 'u'), - (0x1D42F, 'M', 'v'), - (0x1D430, 'M', 'w'), - (0x1D431, 'M', 'x'), - (0x1D432, 'M', 'y'), - (0x1D433, 'M', 'z'), - (0x1D434, 'M', 'a'), - (0x1D435, 'M', 'b'), - (0x1D436, 'M', 'c'), - (0x1D437, 'M', 'd'), - (0x1D438, 'M', 'e'), - (0x1D439, 'M', 'f'), - (0x1D43A, 'M', 'g'), - (0x1D43B, 'M', 'h'), - (0x1D43C, 'M', 'i'), - (0x1D43D, 'M', 'j'), - (0x1D43E, 'M', 'k'), - (0x1D43F, 'M', 'l'), - (0x1D440, 'M', 'm'), - (0x1D441, 'M', 'n'), - (0x1D442, 'M', 'o'), - (0x1D443, 'M', 'p'), - (0x1D444, 'M', 'q'), - (0x1D445, 'M', 'r'), - (0x1D446, 'M', 's'), - (0x1D447, 'M', 't'), - (0x1D448, 'M', 'u'), - (0x1D449, 'M', 'v'), - (0x1D44A, 'M', 'w'), - (0x1D44B, 'M', 'x'), - (0x1D44C, 'M', 'y'), - (0x1D44D, 'M', 'z'), - (0x1D44E, 'M', 'a'), - (0x1D44F, 'M', 'b'), - (0x1D450, 'M', 'c'), - (0x1D451, 'M', 'd'), - (0x1D452, 'M', 'e'), - (0x1D453, 'M', 'f'), - (0x1D454, 'M', 'g'), - (0x1D455, 'X'), - (0x1D456, 'M', 'i'), - (0x1D457, 'M', 'j'), - (0x1D458, 'M', 'k'), - (0x1D459, 'M', 'l'), - (0x1D45A, 'M', 'm'), - (0x1D45B, 'M', 'n'), - (0x1D45C, 'M', 'o'), - (0x1D45D, 'M', 'p'), - (0x1D45E, 'M', 'q'), - (0x1D45F, 'M', 'r'), - (0x1D460, 'M', 's'), - (0x1D461, 'M', 't'), - (0x1D462, 'M', 'u'), - (0x1D463, 'M', 'v'), - (0x1D464, 'M', 'w'), - (0x1D465, 'M', 'x'), - (0x1D466, 'M', 'y'), - (0x1D467, 'M', 'z'), - (0x1D468, 'M', 'a'), - (0x1D469, 'M', 'b'), - (0x1D46A, 'M', 'c'), - (0x1D46B, 'M', 'd'), - (0x1D46C, 'M', 'e'), - (0x1D46D, 'M', 'f'), - (0x1D46E, 'M', 'g'), - (0x1D46F, 'M', 'h'), - (0x1D470, 'M', 'i'), - (0x1D471, 'M', 'j'), - (0x1D472, 'M', 'k'), - (0x1D473, 'M', 'l'), - (0x1D474, 'M', 'm'), - (0x1D475, 'M', 'n'), - (0x1D476, 'M', 'o'), - (0x1D477, 'M', 'p'), - (0x1D478, 'M', 'q'), - (0x1D479, 'M', 'r'), - (0x1D47A, 'M', 's'), - (0x1D47B, 'M', 't'), - (0x1D47C, 'M', 'u'), - (0x1D47D, 'M', 'v'), - (0x1D47E, 'M', 'w'), - (0x1D47F, 'M', 'x'), - (0x1D480, 'M', 'y'), - (0x1D481, 'M', 'z'), - (0x1D482, 'M', 'a'), - (0x1D483, 'M', 'b'), - (0x1D484, 'M', 'c'), - ] - -def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D485, 'M', 'd'), - (0x1D486, 'M', 'e'), - (0x1D487, 'M', 'f'), - (0x1D488, 'M', 'g'), - (0x1D489, 'M', 'h'), - (0x1D48A, 'M', 'i'), - (0x1D48B, 'M', 'j'), - (0x1D48C, 'M', 'k'), - (0x1D48D, 'M', 'l'), - (0x1D48E, 'M', 'm'), - (0x1D48F, 'M', 'n'), - (0x1D490, 'M', 'o'), - (0x1D491, 'M', 'p'), - (0x1D492, 'M', 'q'), - (0x1D493, 'M', 'r'), - (0x1D494, 'M', 's'), - (0x1D495, 'M', 't'), - (0x1D496, 'M', 'u'), - (0x1D497, 'M', 'v'), - (0x1D498, 'M', 'w'), - (0x1D499, 'M', 'x'), - (0x1D49A, 'M', 'y'), - (0x1D49B, 'M', 'z'), - (0x1D49C, 'M', 'a'), - (0x1D49D, 'X'), - (0x1D49E, 'M', 'c'), - (0x1D49F, 'M', 'd'), - (0x1D4A0, 'X'), - (0x1D4A2, 'M', 'g'), - (0x1D4A3, 'X'), - (0x1D4A5, 'M', 'j'), - (0x1D4A6, 'M', 'k'), - (0x1D4A7, 'X'), - (0x1D4A9, 'M', 'n'), - (0x1D4AA, 'M', 'o'), - (0x1D4AB, 'M', 'p'), - (0x1D4AC, 'M', 'q'), - (0x1D4AD, 'X'), - (0x1D4AE, 'M', 's'), - (0x1D4AF, 'M', 't'), - (0x1D4B0, 'M', 'u'), - (0x1D4B1, 'M', 'v'), - (0x1D4B2, 'M', 'w'), - (0x1D4B3, 'M', 'x'), - (0x1D4B4, 'M', 'y'), - (0x1D4B5, 'M', 'z'), - (0x1D4B6, 'M', 'a'), - (0x1D4B7, 'M', 'b'), - (0x1D4B8, 'M', 'c'), - (0x1D4B9, 'M', 'd'), - (0x1D4BA, 'X'), - (0x1D4BB, 'M', 'f'), - (0x1D4BC, 'X'), - (0x1D4BD, 'M', 'h'), - (0x1D4BE, 'M', 'i'), - (0x1D4BF, 'M', 'j'), - (0x1D4C0, 'M', 'k'), - (0x1D4C1, 'M', 'l'), - (0x1D4C2, 'M', 'm'), - (0x1D4C3, 'M', 'n'), - (0x1D4C4, 'X'), - (0x1D4C5, 'M', 'p'), - (0x1D4C6, 'M', 'q'), - (0x1D4C7, 'M', 'r'), - (0x1D4C8, 'M', 's'), - (0x1D4C9, 'M', 't'), - (0x1D4CA, 'M', 'u'), - (0x1D4CB, 'M', 'v'), - (0x1D4CC, 'M', 'w'), - (0x1D4CD, 'M', 'x'), - (0x1D4CE, 'M', 'y'), - (0x1D4CF, 'M', 'z'), - (0x1D4D0, 'M', 'a'), - (0x1D4D1, 'M', 'b'), - (0x1D4D2, 'M', 'c'), - (0x1D4D3, 'M', 'd'), - (0x1D4D4, 'M', 'e'), - (0x1D4D5, 'M', 'f'), - (0x1D4D6, 'M', 'g'), - (0x1D4D7, 'M', 'h'), - (0x1D4D8, 'M', 'i'), - (0x1D4D9, 'M', 'j'), - (0x1D4DA, 'M', 'k'), - (0x1D4DB, 'M', 'l'), - (0x1D4DC, 'M', 'm'), - (0x1D4DD, 'M', 'n'), - (0x1D4DE, 'M', 'o'), - (0x1D4DF, 'M', 'p'), - (0x1D4E0, 'M', 'q'), - (0x1D4E1, 'M', 'r'), - (0x1D4E2, 'M', 's'), - (0x1D4E3, 'M', 't'), - (0x1D4E4, 'M', 'u'), - (0x1D4E5, 'M', 'v'), - (0x1D4E6, 'M', 'w'), - (0x1D4E7, 'M', 'x'), - (0x1D4E8, 'M', 'y'), - (0x1D4E9, 'M', 'z'), - (0x1D4EA, 'M', 'a'), - (0x1D4EB, 'M', 'b'), - ] - -def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D4EC, 'M', 'c'), - (0x1D4ED, 'M', 'd'), - (0x1D4EE, 'M', 'e'), - (0x1D4EF, 'M', 'f'), - (0x1D4F0, 'M', 'g'), - (0x1D4F1, 'M', 'h'), - (0x1D4F2, 'M', 'i'), - (0x1D4F3, 'M', 'j'), - (0x1D4F4, 'M', 'k'), - (0x1D4F5, 'M', 'l'), - (0x1D4F6, 'M', 'm'), - (0x1D4F7, 'M', 'n'), - (0x1D4F8, 'M', 'o'), - (0x1D4F9, 'M', 'p'), - (0x1D4FA, 'M', 'q'), - (0x1D4FB, 'M', 'r'), - (0x1D4FC, 'M', 's'), - (0x1D4FD, 'M', 't'), - (0x1D4FE, 'M', 'u'), - (0x1D4FF, 'M', 'v'), - (0x1D500, 'M', 'w'), - (0x1D501, 'M', 'x'), - (0x1D502, 'M', 'y'), - (0x1D503, 'M', 'z'), - (0x1D504, 'M', 'a'), - (0x1D505, 'M', 'b'), - (0x1D506, 'X'), - (0x1D507, 'M', 'd'), - (0x1D508, 'M', 'e'), - (0x1D509, 'M', 'f'), - (0x1D50A, 'M', 'g'), - (0x1D50B, 'X'), - (0x1D50D, 'M', 'j'), - (0x1D50E, 'M', 'k'), - (0x1D50F, 'M', 'l'), - (0x1D510, 'M', 'm'), - (0x1D511, 'M', 'n'), - (0x1D512, 'M', 'o'), - (0x1D513, 'M', 'p'), - (0x1D514, 'M', 'q'), - (0x1D515, 'X'), - (0x1D516, 'M', 's'), - (0x1D517, 'M', 't'), - (0x1D518, 'M', 'u'), - (0x1D519, 'M', 'v'), - (0x1D51A, 'M', 'w'), - (0x1D51B, 'M', 'x'), - (0x1D51C, 'M', 'y'), - (0x1D51D, 'X'), - (0x1D51E, 'M', 'a'), - (0x1D51F, 'M', 'b'), - (0x1D520, 'M', 'c'), - (0x1D521, 'M', 'd'), - (0x1D522, 'M', 'e'), - (0x1D523, 'M', 'f'), - (0x1D524, 'M', 'g'), - (0x1D525, 'M', 'h'), - (0x1D526, 'M', 'i'), - (0x1D527, 'M', 'j'), - (0x1D528, 'M', 'k'), - (0x1D529, 'M', 'l'), - (0x1D52A, 'M', 'm'), - (0x1D52B, 'M', 'n'), - (0x1D52C, 'M', 'o'), - (0x1D52D, 'M', 'p'), - (0x1D52E, 'M', 'q'), - (0x1D52F, 'M', 'r'), - (0x1D530, 'M', 's'), - (0x1D531, 'M', 't'), - (0x1D532, 'M', 'u'), - (0x1D533, 'M', 'v'), - (0x1D534, 'M', 'w'), - (0x1D535, 'M', 'x'), - (0x1D536, 'M', 'y'), - (0x1D537, 'M', 'z'), - (0x1D538, 'M', 'a'), - (0x1D539, 'M', 'b'), - (0x1D53A, 'X'), - (0x1D53B, 'M', 'd'), - (0x1D53C, 'M', 'e'), - (0x1D53D, 'M', 'f'), - (0x1D53E, 'M', 'g'), - (0x1D53F, 'X'), - (0x1D540, 'M', 'i'), - (0x1D541, 'M', 'j'), - (0x1D542, 'M', 'k'), - (0x1D543, 'M', 'l'), - (0x1D544, 'M', 'm'), - (0x1D545, 'X'), - (0x1D546, 'M', 'o'), - (0x1D547, 'X'), - (0x1D54A, 'M', 's'), - (0x1D54B, 'M', 't'), - (0x1D54C, 'M', 'u'), - (0x1D54D, 'M', 'v'), - (0x1D54E, 'M', 'w'), - (0x1D54F, 'M', 'x'), - (0x1D550, 'M', 'y'), - (0x1D551, 'X'), - (0x1D552, 'M', 'a'), - ] - -def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D553, 'M', 'b'), - (0x1D554, 'M', 'c'), - (0x1D555, 'M', 'd'), - (0x1D556, 'M', 'e'), - (0x1D557, 'M', 'f'), - (0x1D558, 'M', 'g'), - (0x1D559, 'M', 'h'), - (0x1D55A, 'M', 'i'), - (0x1D55B, 'M', 'j'), - (0x1D55C, 'M', 'k'), - (0x1D55D, 'M', 'l'), - (0x1D55E, 'M', 'm'), - (0x1D55F, 'M', 'n'), - (0x1D560, 'M', 'o'), - (0x1D561, 'M', 'p'), - (0x1D562, 'M', 'q'), - (0x1D563, 'M', 'r'), - (0x1D564, 'M', 's'), - (0x1D565, 'M', 't'), - (0x1D566, 'M', 'u'), - (0x1D567, 'M', 'v'), - (0x1D568, 'M', 'w'), - (0x1D569, 'M', 'x'), - (0x1D56A, 'M', 'y'), - (0x1D56B, 'M', 'z'), - (0x1D56C, 'M', 'a'), - (0x1D56D, 'M', 'b'), - (0x1D56E, 'M', 'c'), - (0x1D56F, 'M', 'd'), - (0x1D570, 'M', 'e'), - (0x1D571, 'M', 'f'), - (0x1D572, 'M', 'g'), - (0x1D573, 'M', 'h'), - (0x1D574, 'M', 'i'), - (0x1D575, 'M', 'j'), - (0x1D576, 'M', 'k'), - (0x1D577, 'M', 'l'), - (0x1D578, 'M', 'm'), - (0x1D579, 'M', 'n'), - (0x1D57A, 'M', 'o'), - (0x1D57B, 'M', 'p'), - (0x1D57C, 'M', 'q'), - (0x1D57D, 'M', 'r'), - (0x1D57E, 'M', 's'), - (0x1D57F, 'M', 't'), - (0x1D580, 'M', 'u'), - (0x1D581, 'M', 'v'), - (0x1D582, 'M', 'w'), - (0x1D583, 'M', 'x'), - (0x1D584, 'M', 'y'), - (0x1D585, 'M', 'z'), - (0x1D586, 'M', 'a'), - (0x1D587, 'M', 'b'), - (0x1D588, 'M', 'c'), - (0x1D589, 'M', 'd'), - (0x1D58A, 'M', 'e'), - (0x1D58B, 'M', 'f'), - (0x1D58C, 'M', 'g'), - (0x1D58D, 'M', 'h'), - (0x1D58E, 'M', 'i'), - (0x1D58F, 'M', 'j'), - (0x1D590, 'M', 'k'), - (0x1D591, 'M', 'l'), - (0x1D592, 'M', 'm'), - (0x1D593, 'M', 'n'), - (0x1D594, 'M', 'o'), - (0x1D595, 'M', 'p'), - (0x1D596, 'M', 'q'), - (0x1D597, 'M', 'r'), - (0x1D598, 'M', 's'), - (0x1D599, 'M', 't'), - (0x1D59A, 'M', 'u'), - (0x1D59B, 'M', 'v'), - (0x1D59C, 'M', 'w'), - (0x1D59D, 'M', 'x'), - (0x1D59E, 'M', 'y'), - (0x1D59F, 'M', 'z'), - (0x1D5A0, 'M', 'a'), - (0x1D5A1, 'M', 'b'), - (0x1D5A2, 'M', 'c'), - (0x1D5A3, 'M', 'd'), - (0x1D5A4, 'M', 'e'), - (0x1D5A5, 'M', 'f'), - (0x1D5A6, 'M', 'g'), - (0x1D5A7, 'M', 'h'), - (0x1D5A8, 'M', 'i'), - (0x1D5A9, 'M', 'j'), - (0x1D5AA, 'M', 'k'), - (0x1D5AB, 'M', 'l'), - (0x1D5AC, 'M', 'm'), - (0x1D5AD, 'M', 'n'), - (0x1D5AE, 'M', 'o'), - (0x1D5AF, 'M', 'p'), - (0x1D5B0, 'M', 'q'), - (0x1D5B1, 'M', 'r'), - (0x1D5B2, 'M', 's'), - (0x1D5B3, 'M', 't'), - (0x1D5B4, 'M', 'u'), - (0x1D5B5, 'M', 'v'), - (0x1D5B6, 'M', 'w'), - ] - -def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D5B7, 'M', 'x'), - (0x1D5B8, 'M', 'y'), - (0x1D5B9, 'M', 'z'), - (0x1D5BA, 'M', 'a'), - (0x1D5BB, 'M', 'b'), - (0x1D5BC, 'M', 'c'), - (0x1D5BD, 'M', 'd'), - (0x1D5BE, 'M', 'e'), - (0x1D5BF, 'M', 'f'), - (0x1D5C0, 'M', 'g'), - (0x1D5C1, 'M', 'h'), - (0x1D5C2, 'M', 'i'), - (0x1D5C3, 'M', 'j'), - (0x1D5C4, 'M', 'k'), - (0x1D5C5, 'M', 'l'), - (0x1D5C6, 'M', 'm'), - (0x1D5C7, 'M', 'n'), - (0x1D5C8, 'M', 'o'), - (0x1D5C9, 'M', 'p'), - (0x1D5CA, 'M', 'q'), - (0x1D5CB, 'M', 'r'), - (0x1D5CC, 'M', 's'), - (0x1D5CD, 'M', 't'), - (0x1D5CE, 'M', 'u'), - (0x1D5CF, 'M', 'v'), - (0x1D5D0, 'M', 'w'), - (0x1D5D1, 'M', 'x'), - (0x1D5D2, 'M', 'y'), - (0x1D5D3, 'M', 'z'), - (0x1D5D4, 'M', 'a'), - (0x1D5D5, 'M', 'b'), - (0x1D5D6, 'M', 'c'), - (0x1D5D7, 'M', 'd'), - (0x1D5D8, 'M', 'e'), - (0x1D5D9, 'M', 'f'), - (0x1D5DA, 'M', 'g'), - (0x1D5DB, 'M', 'h'), - (0x1D5DC, 'M', 'i'), - (0x1D5DD, 'M', 'j'), - (0x1D5DE, 'M', 'k'), - (0x1D5DF, 'M', 'l'), - (0x1D5E0, 'M', 'm'), - (0x1D5E1, 'M', 'n'), - (0x1D5E2, 'M', 'o'), - (0x1D5E3, 'M', 'p'), - (0x1D5E4, 'M', 'q'), - (0x1D5E5, 'M', 'r'), - (0x1D5E6, 'M', 's'), - (0x1D5E7, 'M', 't'), - (0x1D5E8, 'M', 'u'), - (0x1D5E9, 'M', 'v'), - (0x1D5EA, 'M', 'w'), - (0x1D5EB, 'M', 'x'), - (0x1D5EC, 'M', 'y'), - (0x1D5ED, 'M', 'z'), - (0x1D5EE, 'M', 'a'), - (0x1D5EF, 'M', 'b'), - (0x1D5F0, 'M', 'c'), - (0x1D5F1, 'M', 'd'), - (0x1D5F2, 'M', 'e'), - (0x1D5F3, 'M', 'f'), - (0x1D5F4, 'M', 'g'), - (0x1D5F5, 'M', 'h'), - (0x1D5F6, 'M', 'i'), - (0x1D5F7, 'M', 'j'), - (0x1D5F8, 'M', 'k'), - (0x1D5F9, 'M', 'l'), - (0x1D5FA, 'M', 'm'), - (0x1D5FB, 'M', 'n'), - (0x1D5FC, 'M', 'o'), - (0x1D5FD, 'M', 'p'), - (0x1D5FE, 'M', 'q'), - (0x1D5FF, 'M', 'r'), - (0x1D600, 'M', 's'), - (0x1D601, 'M', 't'), - (0x1D602, 'M', 'u'), - (0x1D603, 'M', 'v'), - (0x1D604, 'M', 'w'), - (0x1D605, 'M', 'x'), - (0x1D606, 'M', 'y'), - (0x1D607, 'M', 'z'), - (0x1D608, 'M', 'a'), - (0x1D609, 'M', 'b'), - (0x1D60A, 'M', 'c'), - (0x1D60B, 'M', 'd'), - (0x1D60C, 'M', 'e'), - (0x1D60D, 'M', 'f'), - (0x1D60E, 'M', 'g'), - (0x1D60F, 'M', 'h'), - (0x1D610, 'M', 'i'), - (0x1D611, 'M', 'j'), - (0x1D612, 'M', 'k'), - (0x1D613, 'M', 'l'), - (0x1D614, 'M', 'm'), - (0x1D615, 'M', 'n'), - (0x1D616, 'M', 'o'), - (0x1D617, 'M', 'p'), - (0x1D618, 'M', 'q'), - (0x1D619, 'M', 'r'), - (0x1D61A, 'M', 's'), - ] - -def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D61B, 'M', 't'), - (0x1D61C, 'M', 'u'), - (0x1D61D, 'M', 'v'), - (0x1D61E, 'M', 'w'), - (0x1D61F, 'M', 'x'), - (0x1D620, 'M', 'y'), - (0x1D621, 'M', 'z'), - (0x1D622, 'M', 'a'), - (0x1D623, 'M', 'b'), - (0x1D624, 'M', 'c'), - (0x1D625, 'M', 'd'), - (0x1D626, 'M', 'e'), - (0x1D627, 'M', 'f'), - (0x1D628, 'M', 'g'), - (0x1D629, 'M', 'h'), - (0x1D62A, 'M', 'i'), - (0x1D62B, 'M', 'j'), - (0x1D62C, 'M', 'k'), - (0x1D62D, 'M', 'l'), - (0x1D62E, 'M', 'm'), - (0x1D62F, 'M', 'n'), - (0x1D630, 'M', 'o'), - (0x1D631, 'M', 'p'), - (0x1D632, 'M', 'q'), - (0x1D633, 'M', 'r'), - (0x1D634, 'M', 's'), - (0x1D635, 'M', 't'), - (0x1D636, 'M', 'u'), - (0x1D637, 'M', 'v'), - (0x1D638, 'M', 'w'), - (0x1D639, 'M', 'x'), - (0x1D63A, 'M', 'y'), - (0x1D63B, 'M', 'z'), - (0x1D63C, 'M', 'a'), - (0x1D63D, 'M', 'b'), - (0x1D63E, 'M', 'c'), - (0x1D63F, 'M', 'd'), - (0x1D640, 'M', 'e'), - (0x1D641, 'M', 'f'), - (0x1D642, 'M', 'g'), - (0x1D643, 'M', 'h'), - (0x1D644, 'M', 'i'), - (0x1D645, 'M', 'j'), - (0x1D646, 'M', 'k'), - (0x1D647, 'M', 'l'), - (0x1D648, 'M', 'm'), - (0x1D649, 'M', 'n'), - (0x1D64A, 'M', 'o'), - (0x1D64B, 'M', 'p'), - (0x1D64C, 'M', 'q'), - (0x1D64D, 'M', 'r'), - (0x1D64E, 'M', 's'), - (0x1D64F, 'M', 't'), - (0x1D650, 'M', 'u'), - (0x1D651, 'M', 'v'), - (0x1D652, 'M', 'w'), - (0x1D653, 'M', 'x'), - (0x1D654, 'M', 'y'), - (0x1D655, 'M', 'z'), - (0x1D656, 'M', 'a'), - (0x1D657, 'M', 'b'), - (0x1D658, 'M', 'c'), - (0x1D659, 'M', 'd'), - (0x1D65A, 'M', 'e'), - (0x1D65B, 'M', 'f'), - (0x1D65C, 'M', 'g'), - (0x1D65D, 'M', 'h'), - (0x1D65E, 'M', 'i'), - (0x1D65F, 'M', 'j'), - (0x1D660, 'M', 'k'), - (0x1D661, 'M', 'l'), - (0x1D662, 'M', 'm'), - (0x1D663, 'M', 'n'), - (0x1D664, 'M', 'o'), - (0x1D665, 'M', 'p'), - (0x1D666, 'M', 'q'), - (0x1D667, 'M', 'r'), - (0x1D668, 'M', 's'), - (0x1D669, 'M', 't'), - (0x1D66A, 'M', 'u'), - (0x1D66B, 'M', 'v'), - (0x1D66C, 'M', 'w'), - (0x1D66D, 'M', 'x'), - (0x1D66E, 'M', 'y'), - (0x1D66F, 'M', 'z'), - (0x1D670, 'M', 'a'), - (0x1D671, 'M', 'b'), - (0x1D672, 'M', 'c'), - (0x1D673, 'M', 'd'), - (0x1D674, 'M', 'e'), - (0x1D675, 'M', 'f'), - (0x1D676, 'M', 'g'), - (0x1D677, 'M', 'h'), - (0x1D678, 'M', 'i'), - (0x1D679, 'M', 'j'), - (0x1D67A, 'M', 'k'), - (0x1D67B, 'M', 'l'), - (0x1D67C, 'M', 'm'), - (0x1D67D, 'M', 'n'), - (0x1D67E, 'M', 'o'), - ] - -def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D67F, 'M', 'p'), - (0x1D680, 'M', 'q'), - (0x1D681, 'M', 'r'), - (0x1D682, 'M', 's'), - (0x1D683, 'M', 't'), - (0x1D684, 'M', 'u'), - (0x1D685, 'M', 'v'), - (0x1D686, 'M', 'w'), - (0x1D687, 'M', 'x'), - (0x1D688, 'M', 'y'), - (0x1D689, 'M', 'z'), - (0x1D68A, 'M', 'a'), - (0x1D68B, 'M', 'b'), - (0x1D68C, 'M', 'c'), - (0x1D68D, 'M', 'd'), - (0x1D68E, 'M', 'e'), - (0x1D68F, 'M', 'f'), - (0x1D690, 'M', 'g'), - (0x1D691, 'M', 'h'), - (0x1D692, 'M', 'i'), - (0x1D693, 'M', 'j'), - (0x1D694, 'M', 'k'), - (0x1D695, 'M', 'l'), - (0x1D696, 'M', 'm'), - (0x1D697, 'M', 'n'), - (0x1D698, 'M', 'o'), - (0x1D699, 'M', 'p'), - (0x1D69A, 'M', 'q'), - (0x1D69B, 'M', 'r'), - (0x1D69C, 'M', 's'), - (0x1D69D, 'M', 't'), - (0x1D69E, 'M', 'u'), - (0x1D69F, 'M', 'v'), - (0x1D6A0, 'M', 'w'), - (0x1D6A1, 'M', 'x'), - (0x1D6A2, 'M', 'y'), - (0x1D6A3, 'M', 'z'), - (0x1D6A4, 'M', 'ı'), - (0x1D6A5, 'M', 'ȷ'), - (0x1D6A6, 'X'), - (0x1D6A8, 'M', 'α'), - (0x1D6A9, 'M', 'β'), - (0x1D6AA, 'M', 'γ'), - (0x1D6AB, 'M', 'δ'), - (0x1D6AC, 'M', 'ε'), - (0x1D6AD, 'M', 'ζ'), - (0x1D6AE, 'M', 'η'), - (0x1D6AF, 'M', 'θ'), - (0x1D6B0, 'M', 'ι'), - (0x1D6B1, 'M', 'κ'), - (0x1D6B2, 'M', 'λ'), - (0x1D6B3, 'M', 'μ'), - (0x1D6B4, 'M', 'ν'), - (0x1D6B5, 'M', 'ξ'), - (0x1D6B6, 'M', 'ο'), - (0x1D6B7, 'M', 'π'), - (0x1D6B8, 'M', 'ρ'), - (0x1D6B9, 'M', 'θ'), - (0x1D6BA, 'M', 'σ'), - (0x1D6BB, 'M', 'τ'), - (0x1D6BC, 'M', 'υ'), - (0x1D6BD, 'M', 'φ'), - (0x1D6BE, 'M', 'χ'), - (0x1D6BF, 'M', 'ψ'), - (0x1D6C0, 'M', 'ω'), - (0x1D6C1, 'M', '∇'), - (0x1D6C2, 'M', 'α'), - (0x1D6C3, 'M', 'β'), - (0x1D6C4, 'M', 'γ'), - (0x1D6C5, 'M', 'δ'), - (0x1D6C6, 'M', 'ε'), - (0x1D6C7, 'M', 'ζ'), - (0x1D6C8, 'M', 'η'), - (0x1D6C9, 'M', 'θ'), - (0x1D6CA, 'M', 'ι'), - (0x1D6CB, 'M', 'κ'), - (0x1D6CC, 'M', 'λ'), - (0x1D6CD, 'M', 'μ'), - (0x1D6CE, 'M', 'ν'), - (0x1D6CF, 'M', 'ξ'), - (0x1D6D0, 'M', 'ο'), - (0x1D6D1, 'M', 'π'), - (0x1D6D2, 'M', 'ρ'), - (0x1D6D3, 'M', 'σ'), - (0x1D6D5, 'M', 'τ'), - (0x1D6D6, 'M', 'υ'), - (0x1D6D7, 'M', 'φ'), - (0x1D6D8, 'M', 'χ'), - (0x1D6D9, 'M', 'ψ'), - (0x1D6DA, 'M', 'ω'), - (0x1D6DB, 'M', '∂'), - (0x1D6DC, 'M', 'ε'), - (0x1D6DD, 'M', 'θ'), - (0x1D6DE, 'M', 'κ'), - (0x1D6DF, 'M', 'φ'), - (0x1D6E0, 'M', 'ρ'), - (0x1D6E1, 'M', 'π'), - (0x1D6E2, 'M', 'α'), - (0x1D6E3, 'M', 'β'), - (0x1D6E4, 'M', 'γ'), - ] - -def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D6E5, 'M', 'δ'), - (0x1D6E6, 'M', 'ε'), - (0x1D6E7, 'M', 'ζ'), - (0x1D6E8, 'M', 'η'), - (0x1D6E9, 'M', 'θ'), - (0x1D6EA, 'M', 'ι'), - (0x1D6EB, 'M', 'κ'), - (0x1D6EC, 'M', 'λ'), - (0x1D6ED, 'M', 'μ'), - (0x1D6EE, 'M', 'ν'), - (0x1D6EF, 'M', 'ξ'), - (0x1D6F0, 'M', 'ο'), - (0x1D6F1, 'M', 'π'), - (0x1D6F2, 'M', 'ρ'), - (0x1D6F3, 'M', 'θ'), - (0x1D6F4, 'M', 'σ'), - (0x1D6F5, 'M', 'τ'), - (0x1D6F6, 'M', 'υ'), - (0x1D6F7, 'M', 'φ'), - (0x1D6F8, 'M', 'χ'), - (0x1D6F9, 'M', 'ψ'), - (0x1D6FA, 'M', 'ω'), - (0x1D6FB, 'M', '∇'), - (0x1D6FC, 'M', 'α'), - (0x1D6FD, 'M', 'β'), - (0x1D6FE, 'M', 'γ'), - (0x1D6FF, 'M', 'δ'), - (0x1D700, 'M', 'ε'), - (0x1D701, 'M', 'ζ'), - (0x1D702, 'M', 'η'), - (0x1D703, 'M', 'θ'), - (0x1D704, 'M', 'ι'), - (0x1D705, 'M', 'κ'), - (0x1D706, 'M', 'λ'), - (0x1D707, 'M', 'μ'), - (0x1D708, 'M', 'ν'), - (0x1D709, 'M', 'ξ'), - (0x1D70A, 'M', 'ο'), - (0x1D70B, 'M', 'π'), - (0x1D70C, 'M', 'ρ'), - (0x1D70D, 'M', 'σ'), - (0x1D70F, 'M', 'τ'), - (0x1D710, 'M', 'υ'), - (0x1D711, 'M', 'φ'), - (0x1D712, 'M', 'χ'), - (0x1D713, 'M', 'ψ'), - (0x1D714, 'M', 'ω'), - (0x1D715, 'M', '∂'), - (0x1D716, 'M', 'ε'), - (0x1D717, 'M', 'θ'), - (0x1D718, 'M', 'κ'), - (0x1D719, 'M', 'φ'), - (0x1D71A, 'M', 'ρ'), - (0x1D71B, 'M', 'π'), - (0x1D71C, 'M', 'α'), - (0x1D71D, 'M', 'β'), - (0x1D71E, 'M', 'γ'), - (0x1D71F, 'M', 'δ'), - (0x1D720, 'M', 'ε'), - (0x1D721, 'M', 'ζ'), - (0x1D722, 'M', 'η'), - (0x1D723, 'M', 'θ'), - (0x1D724, 'M', 'ι'), - (0x1D725, 'M', 'κ'), - (0x1D726, 'M', 'λ'), - (0x1D727, 'M', 'μ'), - (0x1D728, 'M', 'ν'), - (0x1D729, 'M', 'ξ'), - (0x1D72A, 'M', 'ο'), - (0x1D72B, 'M', 'π'), - (0x1D72C, 'M', 'ρ'), - (0x1D72D, 'M', 'θ'), - (0x1D72E, 'M', 'σ'), - (0x1D72F, 'M', 'τ'), - (0x1D730, 'M', 'υ'), - (0x1D731, 'M', 'φ'), - (0x1D732, 'M', 'χ'), - (0x1D733, 'M', 'ψ'), - (0x1D734, 'M', 'ω'), - (0x1D735, 'M', '∇'), - (0x1D736, 'M', 'α'), - (0x1D737, 'M', 'β'), - (0x1D738, 'M', 'γ'), - (0x1D739, 'M', 'δ'), - (0x1D73A, 'M', 'ε'), - (0x1D73B, 'M', 'ζ'), - (0x1D73C, 'M', 'η'), - (0x1D73D, 'M', 'θ'), - (0x1D73E, 'M', 'ι'), - (0x1D73F, 'M', 'κ'), - (0x1D740, 'M', 'λ'), - (0x1D741, 'M', 'μ'), - (0x1D742, 'M', 'ν'), - (0x1D743, 'M', 'ξ'), - (0x1D744, 'M', 'ο'), - (0x1D745, 'M', 'π'), - (0x1D746, 'M', 'ρ'), - (0x1D747, 'M', 'σ'), - (0x1D749, 'M', 'τ'), - (0x1D74A, 'M', 'υ'), - ] - -def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D74B, 'M', 'φ'), - (0x1D74C, 'M', 'χ'), - (0x1D74D, 'M', 'ψ'), - (0x1D74E, 'M', 'ω'), - (0x1D74F, 'M', '∂'), - (0x1D750, 'M', 'ε'), - (0x1D751, 'M', 'θ'), - (0x1D752, 'M', 'κ'), - (0x1D753, 'M', 'φ'), - (0x1D754, 'M', 'ρ'), - (0x1D755, 'M', 'π'), - (0x1D756, 'M', 'α'), - (0x1D757, 'M', 'β'), - (0x1D758, 'M', 'γ'), - (0x1D759, 'M', 'δ'), - (0x1D75A, 'M', 'ε'), - (0x1D75B, 'M', 'ζ'), - (0x1D75C, 'M', 'η'), - (0x1D75D, 'M', 'θ'), - (0x1D75E, 'M', 'ι'), - (0x1D75F, 'M', 'κ'), - (0x1D760, 'M', 'λ'), - (0x1D761, 'M', 'μ'), - (0x1D762, 'M', 'ν'), - (0x1D763, 'M', 'ξ'), - (0x1D764, 'M', 'ο'), - (0x1D765, 'M', 'π'), - (0x1D766, 'M', 'ρ'), - (0x1D767, 'M', 'θ'), - (0x1D768, 'M', 'σ'), - (0x1D769, 'M', 'τ'), - (0x1D76A, 'M', 'υ'), - (0x1D76B, 'M', 'φ'), - (0x1D76C, 'M', 'χ'), - (0x1D76D, 'M', 'ψ'), - (0x1D76E, 'M', 'ω'), - (0x1D76F, 'M', '∇'), - (0x1D770, 'M', 'α'), - (0x1D771, 'M', 'β'), - (0x1D772, 'M', 'γ'), - (0x1D773, 'M', 'δ'), - (0x1D774, 'M', 'ε'), - (0x1D775, 'M', 'ζ'), - (0x1D776, 'M', 'η'), - (0x1D777, 'M', 'θ'), - (0x1D778, 'M', 'ι'), - (0x1D779, 'M', 'κ'), - (0x1D77A, 'M', 'λ'), - (0x1D77B, 'M', 'μ'), - (0x1D77C, 'M', 'ν'), - (0x1D77D, 'M', 'ξ'), - (0x1D77E, 'M', 'ο'), - (0x1D77F, 'M', 'π'), - (0x1D780, 'M', 'ρ'), - (0x1D781, 'M', 'σ'), - (0x1D783, 'M', 'τ'), - (0x1D784, 'M', 'υ'), - (0x1D785, 'M', 'φ'), - (0x1D786, 'M', 'χ'), - (0x1D787, 'M', 'ψ'), - (0x1D788, 'M', 'ω'), - (0x1D789, 'M', '∂'), - (0x1D78A, 'M', 'ε'), - (0x1D78B, 'M', 'θ'), - (0x1D78C, 'M', 'κ'), - (0x1D78D, 'M', 'φ'), - (0x1D78E, 'M', 'ρ'), - (0x1D78F, 'M', 'π'), - (0x1D790, 'M', 'α'), - (0x1D791, 'M', 'β'), - (0x1D792, 'M', 'γ'), - (0x1D793, 'M', 'δ'), - (0x1D794, 'M', 'ε'), - (0x1D795, 'M', 'ζ'), - (0x1D796, 'M', 'η'), - (0x1D797, 'M', 'θ'), - (0x1D798, 'M', 'ι'), - (0x1D799, 'M', 'κ'), - (0x1D79A, 'M', 'λ'), - (0x1D79B, 'M', 'μ'), - (0x1D79C, 'M', 'ν'), - (0x1D79D, 'M', 'ξ'), - (0x1D79E, 'M', 'ο'), - (0x1D79F, 'M', 'π'), - (0x1D7A0, 'M', 'ρ'), - (0x1D7A1, 'M', 'θ'), - (0x1D7A2, 'M', 'σ'), - (0x1D7A3, 'M', 'τ'), - (0x1D7A4, 'M', 'υ'), - (0x1D7A5, 'M', 'φ'), - (0x1D7A6, 'M', 'χ'), - (0x1D7A7, 'M', 'ψ'), - (0x1D7A8, 'M', 'ω'), - (0x1D7A9, 'M', '∇'), - (0x1D7AA, 'M', 'α'), - (0x1D7AB, 'M', 'β'), - (0x1D7AC, 'M', 'γ'), - (0x1D7AD, 'M', 'δ'), - (0x1D7AE, 'M', 'ε'), - (0x1D7AF, 'M', 'ζ'), - ] - -def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1D7B0, 'M', 'η'), - (0x1D7B1, 'M', 'θ'), - (0x1D7B2, 'M', 'ι'), - (0x1D7B3, 'M', 'κ'), - (0x1D7B4, 'M', 'λ'), - (0x1D7B5, 'M', 'μ'), - (0x1D7B6, 'M', 'ν'), - (0x1D7B7, 'M', 'ξ'), - (0x1D7B8, 'M', 'ο'), - (0x1D7B9, 'M', 'π'), - (0x1D7BA, 'M', 'ρ'), - (0x1D7BB, 'M', 'σ'), - (0x1D7BD, 'M', 'τ'), - (0x1D7BE, 'M', 'υ'), - (0x1D7BF, 'M', 'φ'), - (0x1D7C0, 'M', 'χ'), - (0x1D7C1, 'M', 'ψ'), - (0x1D7C2, 'M', 'ω'), - (0x1D7C3, 'M', '∂'), - (0x1D7C4, 'M', 'ε'), - (0x1D7C5, 'M', 'θ'), - (0x1D7C6, 'M', 'κ'), - (0x1D7C7, 'M', 'φ'), - (0x1D7C8, 'M', 'ρ'), - (0x1D7C9, 'M', 'π'), - (0x1D7CA, 'M', 'ϝ'), - (0x1D7CC, 'X'), - (0x1D7CE, 'M', '0'), - (0x1D7CF, 'M', '1'), - (0x1D7D0, 'M', '2'), - (0x1D7D1, 'M', '3'), - (0x1D7D2, 'M', '4'), - (0x1D7D3, 'M', '5'), - (0x1D7D4, 'M', '6'), - (0x1D7D5, 'M', '7'), - (0x1D7D6, 'M', '8'), - (0x1D7D7, 'M', '9'), - (0x1D7D8, 'M', '0'), - (0x1D7D9, 'M', '1'), - (0x1D7DA, 'M', '2'), - (0x1D7DB, 'M', '3'), - (0x1D7DC, 'M', '4'), - (0x1D7DD, 'M', '5'), - (0x1D7DE, 'M', '6'), - (0x1D7DF, 'M', '7'), - (0x1D7E0, 'M', '8'), - (0x1D7E1, 'M', '9'), - (0x1D7E2, 'M', '0'), - (0x1D7E3, 'M', '1'), - (0x1D7E4, 'M', '2'), - (0x1D7E5, 'M', '3'), - (0x1D7E6, 'M', '4'), - (0x1D7E7, 'M', '5'), - (0x1D7E8, 'M', '6'), - (0x1D7E9, 'M', '7'), - (0x1D7EA, 'M', '8'), - (0x1D7EB, 'M', '9'), - (0x1D7EC, 'M', '0'), - (0x1D7ED, 'M', '1'), - (0x1D7EE, 'M', '2'), - (0x1D7EF, 'M', '3'), - (0x1D7F0, 'M', '4'), - (0x1D7F1, 'M', '5'), - (0x1D7F2, 'M', '6'), - (0x1D7F3, 'M', '7'), - (0x1D7F4, 'M', '8'), - (0x1D7F5, 'M', '9'), - (0x1D7F6, 'M', '0'), - (0x1D7F7, 'M', '1'), - (0x1D7F8, 'M', '2'), - (0x1D7F9, 'M', '3'), - (0x1D7FA, 'M', '4'), - (0x1D7FB, 'M', '5'), - (0x1D7FC, 'M', '6'), - (0x1D7FD, 'M', '7'), - (0x1D7FE, 'M', '8'), - (0x1D7FF, 'M', '9'), - (0x1D800, 'V'), - (0x1DA8C, 'X'), - (0x1DA9B, 'V'), - (0x1DAA0, 'X'), - (0x1DAA1, 'V'), - (0x1DAB0, 'X'), - (0x1DF00, 'V'), - (0x1DF1F, 'X'), - (0x1DF25, 'V'), - (0x1DF2B, 'X'), - (0x1E000, 'V'), - (0x1E007, 'X'), - (0x1E008, 'V'), - (0x1E019, 'X'), - (0x1E01B, 'V'), - (0x1E022, 'X'), - (0x1E023, 'V'), - (0x1E025, 'X'), - (0x1E026, 'V'), - (0x1E02B, 'X'), - (0x1E030, 'M', 'а'), - (0x1E031, 'M', 'б'), - (0x1E032, 'M', 'в'), - ] - -def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1E033, 'M', 'г'), - (0x1E034, 'M', 'д'), - (0x1E035, 'M', 'е'), - (0x1E036, 'M', 'ж'), - (0x1E037, 'M', 'з'), - (0x1E038, 'M', 'и'), - (0x1E039, 'M', 'к'), - (0x1E03A, 'M', 'л'), - (0x1E03B, 'M', 'м'), - (0x1E03C, 'M', 'о'), - (0x1E03D, 'M', 'п'), - (0x1E03E, 'M', 'р'), - (0x1E03F, 'M', 'с'), - (0x1E040, 'M', 'т'), - (0x1E041, 'M', 'у'), - (0x1E042, 'M', 'ф'), - (0x1E043, 'M', 'х'), - (0x1E044, 'M', 'ц'), - (0x1E045, 'M', 'ч'), - (0x1E046, 'M', 'ш'), - (0x1E047, 'M', 'ы'), - (0x1E048, 'M', 'э'), - (0x1E049, 'M', 'ю'), - (0x1E04A, 'M', 'ꚉ'), - (0x1E04B, 'M', 'ә'), - (0x1E04C, 'M', 'і'), - (0x1E04D, 'M', 'ј'), - (0x1E04E, 'M', 'ө'), - (0x1E04F, 'M', 'ү'), - (0x1E050, 'M', 'ӏ'), - (0x1E051, 'M', 'а'), - (0x1E052, 'M', 'б'), - (0x1E053, 'M', 'в'), - (0x1E054, 'M', 'г'), - (0x1E055, 'M', 'д'), - (0x1E056, 'M', 'е'), - (0x1E057, 'M', 'ж'), - (0x1E058, 'M', 'з'), - (0x1E059, 'M', 'и'), - (0x1E05A, 'M', 'к'), - (0x1E05B, 'M', 'л'), - (0x1E05C, 'M', 'о'), - (0x1E05D, 'M', 'п'), - (0x1E05E, 'M', 'с'), - (0x1E05F, 'M', 'у'), - (0x1E060, 'M', 'ф'), - (0x1E061, 'M', 'х'), - (0x1E062, 'M', 'ц'), - (0x1E063, 'M', 'ч'), - (0x1E064, 'M', 'ш'), - (0x1E065, 'M', 'ъ'), - (0x1E066, 'M', 'ы'), - (0x1E067, 'M', 'ґ'), - (0x1E068, 'M', 'і'), - (0x1E069, 'M', 'ѕ'), - (0x1E06A, 'M', 'џ'), - (0x1E06B, 'M', 'ҫ'), - (0x1E06C, 'M', 'ꙑ'), - (0x1E06D, 'M', 'ұ'), - (0x1E06E, 'X'), - (0x1E08F, 'V'), - (0x1E090, 'X'), - (0x1E100, 'V'), - (0x1E12D, 'X'), - (0x1E130, 'V'), - (0x1E13E, 'X'), - (0x1E140, 'V'), - (0x1E14A, 'X'), - (0x1E14E, 'V'), - (0x1E150, 'X'), - (0x1E290, 'V'), - (0x1E2AF, 'X'), - (0x1E2C0, 'V'), - (0x1E2FA, 'X'), - (0x1E2FF, 'V'), - (0x1E300, 'X'), - (0x1E4D0, 'V'), - (0x1E4FA, 'X'), - (0x1E7E0, 'V'), - (0x1E7E7, 'X'), - (0x1E7E8, 'V'), - (0x1E7EC, 'X'), - (0x1E7ED, 'V'), - (0x1E7EF, 'X'), - (0x1E7F0, 'V'), - (0x1E7FF, 'X'), - (0x1E800, 'V'), - (0x1E8C5, 'X'), - (0x1E8C7, 'V'), - (0x1E8D7, 'X'), - (0x1E900, 'M', '𞤢'), - (0x1E901, 'M', '𞤣'), - (0x1E902, 'M', '𞤤'), - (0x1E903, 'M', '𞤥'), - (0x1E904, 'M', '𞤦'), - (0x1E905, 'M', '𞤧'), - (0x1E906, 'M', '𞤨'), - (0x1E907, 'M', '𞤩'), - (0x1E908, 'M', '𞤪'), - (0x1E909, 'M', '𞤫'), - ] - -def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1E90A, 'M', '𞤬'), - (0x1E90B, 'M', '𞤭'), - (0x1E90C, 'M', '𞤮'), - (0x1E90D, 'M', '𞤯'), - (0x1E90E, 'M', '𞤰'), - (0x1E90F, 'M', '𞤱'), - (0x1E910, 'M', '𞤲'), - (0x1E911, 'M', '𞤳'), - (0x1E912, 'M', '𞤴'), - (0x1E913, 'M', '𞤵'), - (0x1E914, 'M', '𞤶'), - (0x1E915, 'M', '𞤷'), - (0x1E916, 'M', '𞤸'), - (0x1E917, 'M', '𞤹'), - (0x1E918, 'M', '𞤺'), - (0x1E919, 'M', '𞤻'), - (0x1E91A, 'M', '𞤼'), - (0x1E91B, 'M', '𞤽'), - (0x1E91C, 'M', '𞤾'), - (0x1E91D, 'M', '𞤿'), - (0x1E91E, 'M', '𞥀'), - (0x1E91F, 'M', '𞥁'), - (0x1E920, 'M', '𞥂'), - (0x1E921, 'M', '𞥃'), - (0x1E922, 'V'), - (0x1E94C, 'X'), - (0x1E950, 'V'), - (0x1E95A, 'X'), - (0x1E95E, 'V'), - (0x1E960, 'X'), - (0x1EC71, 'V'), - (0x1ECB5, 'X'), - (0x1ED01, 'V'), - (0x1ED3E, 'X'), - (0x1EE00, 'M', 'ا'), - (0x1EE01, 'M', 'ب'), - (0x1EE02, 'M', 'ج'), - (0x1EE03, 'M', 'د'), - (0x1EE04, 'X'), - (0x1EE05, 'M', 'و'), - (0x1EE06, 'M', 'ز'), - (0x1EE07, 'M', 'ح'), - (0x1EE08, 'M', 'ط'), - (0x1EE09, 'M', 'ي'), - (0x1EE0A, 'M', 'ك'), - (0x1EE0B, 'M', 'ل'), - (0x1EE0C, 'M', 'م'), - (0x1EE0D, 'M', 'ن'), - (0x1EE0E, 'M', 'س'), - (0x1EE0F, 'M', 'ع'), - (0x1EE10, 'M', 'ف'), - (0x1EE11, 'M', 'ص'), - (0x1EE12, 'M', 'ق'), - (0x1EE13, 'M', 'ر'), - (0x1EE14, 'M', 'ش'), - (0x1EE15, 'M', 'ت'), - (0x1EE16, 'M', 'ث'), - (0x1EE17, 'M', 'خ'), - (0x1EE18, 'M', 'ذ'), - (0x1EE19, 'M', 'ض'), - (0x1EE1A, 'M', 'ظ'), - (0x1EE1B, 'M', 'غ'), - (0x1EE1C, 'M', 'ٮ'), - (0x1EE1D, 'M', 'ں'), - (0x1EE1E, 'M', 'ڡ'), - (0x1EE1F, 'M', 'ٯ'), - (0x1EE20, 'X'), - (0x1EE21, 'M', 'ب'), - (0x1EE22, 'M', 'ج'), - (0x1EE23, 'X'), - (0x1EE24, 'M', 'ه'), - (0x1EE25, 'X'), - (0x1EE27, 'M', 'ح'), - (0x1EE28, 'X'), - (0x1EE29, 'M', 'ي'), - (0x1EE2A, 'M', 'ك'), - (0x1EE2B, 'M', 'ل'), - (0x1EE2C, 'M', 'م'), - (0x1EE2D, 'M', 'ن'), - (0x1EE2E, 'M', 'س'), - (0x1EE2F, 'M', 'ع'), - (0x1EE30, 'M', 'ف'), - (0x1EE31, 'M', 'ص'), - (0x1EE32, 'M', 'ق'), - (0x1EE33, 'X'), - (0x1EE34, 'M', 'ش'), - (0x1EE35, 'M', 'ت'), - (0x1EE36, 'M', 'ث'), - (0x1EE37, 'M', 'خ'), - (0x1EE38, 'X'), - (0x1EE39, 'M', 'ض'), - (0x1EE3A, 'X'), - (0x1EE3B, 'M', 'غ'), - (0x1EE3C, 'X'), - (0x1EE42, 'M', 'ج'), - (0x1EE43, 'X'), - (0x1EE47, 'M', 'ح'), - (0x1EE48, 'X'), - (0x1EE49, 'M', 'ي'), - (0x1EE4A, 'X'), - ] - -def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1EE4B, 'M', 'ل'), - (0x1EE4C, 'X'), - (0x1EE4D, 'M', 'ن'), - (0x1EE4E, 'M', 'س'), - (0x1EE4F, 'M', 'ع'), - (0x1EE50, 'X'), - (0x1EE51, 'M', 'ص'), - (0x1EE52, 'M', 'ق'), - (0x1EE53, 'X'), - (0x1EE54, 'M', 'ش'), - (0x1EE55, 'X'), - (0x1EE57, 'M', 'خ'), - (0x1EE58, 'X'), - (0x1EE59, 'M', 'ض'), - (0x1EE5A, 'X'), - (0x1EE5B, 'M', 'غ'), - (0x1EE5C, 'X'), - (0x1EE5D, 'M', 'ں'), - (0x1EE5E, 'X'), - (0x1EE5F, 'M', 'ٯ'), - (0x1EE60, 'X'), - (0x1EE61, 'M', 'ب'), - (0x1EE62, 'M', 'ج'), - (0x1EE63, 'X'), - (0x1EE64, 'M', 'ه'), - (0x1EE65, 'X'), - (0x1EE67, 'M', 'ح'), - (0x1EE68, 'M', 'ط'), - (0x1EE69, 'M', 'ي'), - (0x1EE6A, 'M', 'ك'), - (0x1EE6B, 'X'), - (0x1EE6C, 'M', 'م'), - (0x1EE6D, 'M', 'ن'), - (0x1EE6E, 'M', 'س'), - (0x1EE6F, 'M', 'ع'), - (0x1EE70, 'M', 'ف'), - (0x1EE71, 'M', 'ص'), - (0x1EE72, 'M', 'ق'), - (0x1EE73, 'X'), - (0x1EE74, 'M', 'ش'), - (0x1EE75, 'M', 'ت'), - (0x1EE76, 'M', 'ث'), - (0x1EE77, 'M', 'خ'), - (0x1EE78, 'X'), - (0x1EE79, 'M', 'ض'), - (0x1EE7A, 'M', 'ظ'), - (0x1EE7B, 'M', 'غ'), - (0x1EE7C, 'M', 'ٮ'), - (0x1EE7D, 'X'), - (0x1EE7E, 'M', 'ڡ'), - (0x1EE7F, 'X'), - (0x1EE80, 'M', 'ا'), - (0x1EE81, 'M', 'ب'), - (0x1EE82, 'M', 'ج'), - (0x1EE83, 'M', 'د'), - (0x1EE84, 'M', 'ه'), - (0x1EE85, 'M', 'و'), - (0x1EE86, 'M', 'ز'), - (0x1EE87, 'M', 'ح'), - (0x1EE88, 'M', 'ط'), - (0x1EE89, 'M', 'ي'), - (0x1EE8A, 'X'), - (0x1EE8B, 'M', 'ل'), - (0x1EE8C, 'M', 'م'), - (0x1EE8D, 'M', 'ن'), - (0x1EE8E, 'M', 'س'), - (0x1EE8F, 'M', 'ع'), - (0x1EE90, 'M', 'ف'), - (0x1EE91, 'M', 'ص'), - (0x1EE92, 'M', 'ق'), - (0x1EE93, 'M', 'ر'), - (0x1EE94, 'M', 'ش'), - (0x1EE95, 'M', 'ت'), - (0x1EE96, 'M', 'ث'), - (0x1EE97, 'M', 'خ'), - (0x1EE98, 'M', 'ذ'), - (0x1EE99, 'M', 'ض'), - (0x1EE9A, 'M', 'ظ'), - (0x1EE9B, 'M', 'غ'), - (0x1EE9C, 'X'), - (0x1EEA1, 'M', 'ب'), - (0x1EEA2, 'M', 'ج'), - (0x1EEA3, 'M', 'د'), - (0x1EEA4, 'X'), - (0x1EEA5, 'M', 'و'), - (0x1EEA6, 'M', 'ز'), - (0x1EEA7, 'M', 'ح'), - (0x1EEA8, 'M', 'ط'), - (0x1EEA9, 'M', 'ي'), - (0x1EEAA, 'X'), - (0x1EEAB, 'M', 'ل'), - (0x1EEAC, 'M', 'م'), - (0x1EEAD, 'M', 'ن'), - (0x1EEAE, 'M', 'س'), - (0x1EEAF, 'M', 'ع'), - (0x1EEB0, 'M', 'ف'), - (0x1EEB1, 'M', 'ص'), - (0x1EEB2, 'M', 'ق'), - (0x1EEB3, 'M', 'ر'), - (0x1EEB4, 'M', 'ش'), - ] - -def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1EEB5, 'M', 'ت'), - (0x1EEB6, 'M', 'ث'), - (0x1EEB7, 'M', 'خ'), - (0x1EEB8, 'M', 'ذ'), - (0x1EEB9, 'M', 'ض'), - (0x1EEBA, 'M', 'ظ'), - (0x1EEBB, 'M', 'غ'), - (0x1EEBC, 'X'), - (0x1EEF0, 'V'), - (0x1EEF2, 'X'), - (0x1F000, 'V'), - (0x1F02C, 'X'), - (0x1F030, 'V'), - (0x1F094, 'X'), - (0x1F0A0, 'V'), - (0x1F0AF, 'X'), - (0x1F0B1, 'V'), - (0x1F0C0, 'X'), - (0x1F0C1, 'V'), - (0x1F0D0, 'X'), - (0x1F0D1, 'V'), - (0x1F0F6, 'X'), - (0x1F101, '3', '0,'), - (0x1F102, '3', '1,'), - (0x1F103, '3', '2,'), - (0x1F104, '3', '3,'), - (0x1F105, '3', '4,'), - (0x1F106, '3', '5,'), - (0x1F107, '3', '6,'), - (0x1F108, '3', '7,'), - (0x1F109, '3', '8,'), - (0x1F10A, '3', '9,'), - (0x1F10B, 'V'), - (0x1F110, '3', '(a)'), - (0x1F111, '3', '(b)'), - (0x1F112, '3', '(c)'), - (0x1F113, '3', '(d)'), - (0x1F114, '3', '(e)'), - (0x1F115, '3', '(f)'), - (0x1F116, '3', '(g)'), - (0x1F117, '3', '(h)'), - (0x1F118, '3', '(i)'), - (0x1F119, '3', '(j)'), - (0x1F11A, '3', '(k)'), - (0x1F11B, '3', '(l)'), - (0x1F11C, '3', '(m)'), - (0x1F11D, '3', '(n)'), - (0x1F11E, '3', '(o)'), - (0x1F11F, '3', '(p)'), - (0x1F120, '3', '(q)'), - (0x1F121, '3', '(r)'), - (0x1F122, '3', '(s)'), - (0x1F123, '3', '(t)'), - (0x1F124, '3', '(u)'), - (0x1F125, '3', '(v)'), - (0x1F126, '3', '(w)'), - (0x1F127, '3', '(x)'), - (0x1F128, '3', '(y)'), - (0x1F129, '3', '(z)'), - (0x1F12A, 'M', '〔s〕'), - (0x1F12B, 'M', 'c'), - (0x1F12C, 'M', 'r'), - (0x1F12D, 'M', 'cd'), - (0x1F12E, 'M', 'wz'), - (0x1F12F, 'V'), - (0x1F130, 'M', 'a'), - (0x1F131, 'M', 'b'), - (0x1F132, 'M', 'c'), - (0x1F133, 'M', 'd'), - (0x1F134, 'M', 'e'), - (0x1F135, 'M', 'f'), - (0x1F136, 'M', 'g'), - (0x1F137, 'M', 'h'), - (0x1F138, 'M', 'i'), - (0x1F139, 'M', 'j'), - (0x1F13A, 'M', 'k'), - (0x1F13B, 'M', 'l'), - (0x1F13C, 'M', 'm'), - (0x1F13D, 'M', 'n'), - (0x1F13E, 'M', 'o'), - (0x1F13F, 'M', 'p'), - (0x1F140, 'M', 'q'), - (0x1F141, 'M', 'r'), - (0x1F142, 'M', 's'), - (0x1F143, 'M', 't'), - (0x1F144, 'M', 'u'), - (0x1F145, 'M', 'v'), - (0x1F146, 'M', 'w'), - (0x1F147, 'M', 'x'), - (0x1F148, 'M', 'y'), - (0x1F149, 'M', 'z'), - (0x1F14A, 'M', 'hv'), - (0x1F14B, 'M', 'mv'), - (0x1F14C, 'M', 'sd'), - (0x1F14D, 'M', 'ss'), - (0x1F14E, 'M', 'ppv'), - (0x1F14F, 'M', 'wc'), - (0x1F150, 'V'), - (0x1F16A, 'M', 'mc'), - (0x1F16B, 'M', 'md'), - ] - -def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1F16C, 'M', 'mr'), - (0x1F16D, 'V'), - (0x1F190, 'M', 'dj'), - (0x1F191, 'V'), - (0x1F1AE, 'X'), - (0x1F1E6, 'V'), - (0x1F200, 'M', 'ほか'), - (0x1F201, 'M', 'ココ'), - (0x1F202, 'M', 'サ'), - (0x1F203, 'X'), - (0x1F210, 'M', '手'), - (0x1F211, 'M', '字'), - (0x1F212, 'M', '双'), - (0x1F213, 'M', 'デ'), - (0x1F214, 'M', '二'), - (0x1F215, 'M', '多'), - (0x1F216, 'M', '解'), - (0x1F217, 'M', '天'), - (0x1F218, 'M', '交'), - (0x1F219, 'M', '映'), - (0x1F21A, 'M', '無'), - (0x1F21B, 'M', '料'), - (0x1F21C, 'M', '前'), - (0x1F21D, 'M', '後'), - (0x1F21E, 'M', '再'), - (0x1F21F, 'M', '新'), - (0x1F220, 'M', '初'), - (0x1F221, 'M', '終'), - (0x1F222, 'M', '生'), - (0x1F223, 'M', '販'), - (0x1F224, 'M', '声'), - (0x1F225, 'M', '吹'), - (0x1F226, 'M', '演'), - (0x1F227, 'M', '投'), - (0x1F228, 'M', '捕'), - (0x1F229, 'M', '一'), - (0x1F22A, 'M', '三'), - (0x1F22B, 'M', '遊'), - (0x1F22C, 'M', '左'), - (0x1F22D, 'M', '中'), - (0x1F22E, 'M', '右'), - (0x1F22F, 'M', '指'), - (0x1F230, 'M', '走'), - (0x1F231, 'M', '打'), - (0x1F232, 'M', '禁'), - (0x1F233, 'M', '空'), - (0x1F234, 'M', '合'), - (0x1F235, 'M', '満'), - (0x1F236, 'M', '有'), - (0x1F237, 'M', '月'), - (0x1F238, 'M', '申'), - (0x1F239, 'M', '割'), - (0x1F23A, 'M', '営'), - (0x1F23B, 'M', '配'), - (0x1F23C, 'X'), - (0x1F240, 'M', '〔本〕'), - (0x1F241, 'M', '〔三〕'), - (0x1F242, 'M', '〔二〕'), - (0x1F243, 'M', '〔安〕'), - (0x1F244, 'M', '〔点〕'), - (0x1F245, 'M', '〔打〕'), - (0x1F246, 'M', '〔盗〕'), - (0x1F247, 'M', '〔勝〕'), - (0x1F248, 'M', '〔敗〕'), - (0x1F249, 'X'), - (0x1F250, 'M', '得'), - (0x1F251, 'M', '可'), - (0x1F252, 'X'), - (0x1F260, 'V'), - (0x1F266, 'X'), - (0x1F300, 'V'), - (0x1F6D8, 'X'), - (0x1F6DC, 'V'), - (0x1F6ED, 'X'), - (0x1F6F0, 'V'), - (0x1F6FD, 'X'), - (0x1F700, 'V'), - (0x1F777, 'X'), - (0x1F77B, 'V'), - (0x1F7DA, 'X'), - (0x1F7E0, 'V'), - (0x1F7EC, 'X'), - (0x1F7F0, 'V'), - (0x1F7F1, 'X'), - (0x1F800, 'V'), - (0x1F80C, 'X'), - (0x1F810, 'V'), - (0x1F848, 'X'), - (0x1F850, 'V'), - (0x1F85A, 'X'), - (0x1F860, 'V'), - (0x1F888, 'X'), - (0x1F890, 'V'), - (0x1F8AE, 'X'), - (0x1F8B0, 'V'), - (0x1F8B2, 'X'), - (0x1F900, 'V'), - (0x1FA54, 'X'), - (0x1FA60, 'V'), - (0x1FA6E, 'X'), - ] - -def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x1FA70, 'V'), - (0x1FA7D, 'X'), - (0x1FA80, 'V'), - (0x1FA89, 'X'), - (0x1FA90, 'V'), - (0x1FABE, 'X'), - (0x1FABF, 'V'), - (0x1FAC6, 'X'), - (0x1FACE, 'V'), - (0x1FADC, 'X'), - (0x1FAE0, 'V'), - (0x1FAE9, 'X'), - (0x1FAF0, 'V'), - (0x1FAF9, 'X'), - (0x1FB00, 'V'), - (0x1FB93, 'X'), - (0x1FB94, 'V'), - (0x1FBCB, 'X'), - (0x1FBF0, 'M', '0'), - (0x1FBF1, 'M', '1'), - (0x1FBF2, 'M', '2'), - (0x1FBF3, 'M', '3'), - (0x1FBF4, 'M', '4'), - (0x1FBF5, 'M', '5'), - (0x1FBF6, 'M', '6'), - (0x1FBF7, 'M', '7'), - (0x1FBF8, 'M', '8'), - (0x1FBF9, 'M', '9'), - (0x1FBFA, 'X'), - (0x20000, 'V'), - (0x2A6E0, 'X'), - (0x2A700, 'V'), - (0x2B73A, 'X'), - (0x2B740, 'V'), - (0x2B81E, 'X'), - (0x2B820, 'V'), - (0x2CEA2, 'X'), - (0x2CEB0, 'V'), - (0x2EBE1, 'X'), - (0x2F800, 'M', '丽'), - (0x2F801, 'M', '丸'), - (0x2F802, 'M', '乁'), - (0x2F803, 'M', '𠄢'), - (0x2F804, 'M', '你'), - (0x2F805, 'M', '侮'), - (0x2F806, 'M', '侻'), - (0x2F807, 'M', '倂'), - (0x2F808, 'M', '偺'), - (0x2F809, 'M', '備'), - (0x2F80A, 'M', '僧'), - (0x2F80B, 'M', '像'), - (0x2F80C, 'M', '㒞'), - (0x2F80D, 'M', '𠘺'), - (0x2F80E, 'M', '免'), - (0x2F80F, 'M', '兔'), - (0x2F810, 'M', '兤'), - (0x2F811, 'M', '具'), - (0x2F812, 'M', '𠔜'), - (0x2F813, 'M', '㒹'), - (0x2F814, 'M', '內'), - (0x2F815, 'M', '再'), - (0x2F816, 'M', '𠕋'), - (0x2F817, 'M', '冗'), - (0x2F818, 'M', '冤'), - (0x2F819, 'M', '仌'), - (0x2F81A, 'M', '冬'), - (0x2F81B, 'M', '况'), - (0x2F81C, 'M', '𩇟'), - (0x2F81D, 'M', '凵'), - (0x2F81E, 'M', '刃'), - (0x2F81F, 'M', '㓟'), - (0x2F820, 'M', '刻'), - (0x2F821, 'M', '剆'), - (0x2F822, 'M', '割'), - (0x2F823, 'M', '剷'), - (0x2F824, 'M', '㔕'), - (0x2F825, 'M', '勇'), - (0x2F826, 'M', '勉'), - (0x2F827, 'M', '勤'), - (0x2F828, 'M', '勺'), - (0x2F829, 'M', '包'), - (0x2F82A, 'M', '匆'), - (0x2F82B, 'M', '北'), - (0x2F82C, 'M', '卉'), - (0x2F82D, 'M', '卑'), - (0x2F82E, 'M', '博'), - (0x2F82F, 'M', '即'), - (0x2F830, 'M', '卽'), - (0x2F831, 'M', '卿'), - (0x2F834, 'M', '𠨬'), - (0x2F835, 'M', '灰'), - (0x2F836, 'M', '及'), - (0x2F837, 'M', '叟'), - (0x2F838, 'M', '𠭣'), - (0x2F839, 'M', '叫'), - (0x2F83A, 'M', '叱'), - (0x2F83B, 'M', '吆'), - (0x2F83C, 'M', '咞'), - (0x2F83D, 'M', '吸'), - (0x2F83E, 'M', '呈'), - ] - -def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F83F, 'M', '周'), - (0x2F840, 'M', '咢'), - (0x2F841, 'M', '哶'), - (0x2F842, 'M', '唐'), - (0x2F843, 'M', '啓'), - (0x2F844, 'M', '啣'), - (0x2F845, 'M', '善'), - (0x2F847, 'M', '喙'), - (0x2F848, 'M', '喫'), - (0x2F849, 'M', '喳'), - (0x2F84A, 'M', '嗂'), - (0x2F84B, 'M', '圖'), - (0x2F84C, 'M', '嘆'), - (0x2F84D, 'M', '圗'), - (0x2F84E, 'M', '噑'), - (0x2F84F, 'M', '噴'), - (0x2F850, 'M', '切'), - (0x2F851, 'M', '壮'), - (0x2F852, 'M', '城'), - (0x2F853, 'M', '埴'), - (0x2F854, 'M', '堍'), - (0x2F855, 'M', '型'), - (0x2F856, 'M', '堲'), - (0x2F857, 'M', '報'), - (0x2F858, 'M', '墬'), - (0x2F859, 'M', '𡓤'), - (0x2F85A, 'M', '売'), - (0x2F85B, 'M', '壷'), - (0x2F85C, 'M', '夆'), - (0x2F85D, 'M', '多'), - (0x2F85E, 'M', '夢'), - (0x2F85F, 'M', '奢'), - (0x2F860, 'M', '𡚨'), - (0x2F861, 'M', '𡛪'), - (0x2F862, 'M', '姬'), - (0x2F863, 'M', '娛'), - (0x2F864, 'M', '娧'), - (0x2F865, 'M', '姘'), - (0x2F866, 'M', '婦'), - (0x2F867, 'M', '㛮'), - (0x2F868, 'X'), - (0x2F869, 'M', '嬈'), - (0x2F86A, 'M', '嬾'), - (0x2F86C, 'M', '𡧈'), - (0x2F86D, 'M', '寃'), - (0x2F86E, 'M', '寘'), - (0x2F86F, 'M', '寧'), - (0x2F870, 'M', '寳'), - (0x2F871, 'M', '𡬘'), - (0x2F872, 'M', '寿'), - (0x2F873, 'M', '将'), - (0x2F874, 'X'), - (0x2F875, 'M', '尢'), - (0x2F876, 'M', '㞁'), - (0x2F877, 'M', '屠'), - (0x2F878, 'M', '屮'), - (0x2F879, 'M', '峀'), - (0x2F87A, 'M', '岍'), - (0x2F87B, 'M', '𡷤'), - (0x2F87C, 'M', '嵃'), - (0x2F87D, 'M', '𡷦'), - (0x2F87E, 'M', '嵮'), - (0x2F87F, 'M', '嵫'), - (0x2F880, 'M', '嵼'), - (0x2F881, 'M', '巡'), - (0x2F882, 'M', '巢'), - (0x2F883, 'M', '㠯'), - (0x2F884, 'M', '巽'), - (0x2F885, 'M', '帨'), - (0x2F886, 'M', '帽'), - (0x2F887, 'M', '幩'), - (0x2F888, 'M', '㡢'), - (0x2F889, 'M', '𢆃'), - (0x2F88A, 'M', '㡼'), - (0x2F88B, 'M', '庰'), - (0x2F88C, 'M', '庳'), - (0x2F88D, 'M', '庶'), - (0x2F88E, 'M', '廊'), - (0x2F88F, 'M', '𪎒'), - (0x2F890, 'M', '廾'), - (0x2F891, 'M', '𢌱'), - (0x2F893, 'M', '舁'), - (0x2F894, 'M', '弢'), - (0x2F896, 'M', '㣇'), - (0x2F897, 'M', '𣊸'), - (0x2F898, 'M', '𦇚'), - (0x2F899, 'M', '形'), - (0x2F89A, 'M', '彫'), - (0x2F89B, 'M', '㣣'), - (0x2F89C, 'M', '徚'), - (0x2F89D, 'M', '忍'), - (0x2F89E, 'M', '志'), - (0x2F89F, 'M', '忹'), - (0x2F8A0, 'M', '悁'), - (0x2F8A1, 'M', '㤺'), - (0x2F8A2, 'M', '㤜'), - (0x2F8A3, 'M', '悔'), - (0x2F8A4, 'M', '𢛔'), - (0x2F8A5, 'M', '惇'), - (0x2F8A6, 'M', '慈'), - ] - -def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F8A7, 'M', '慌'), - (0x2F8A8, 'M', '慎'), - (0x2F8A9, 'M', '慌'), - (0x2F8AA, 'M', '慺'), - (0x2F8AB, 'M', '憎'), - (0x2F8AC, 'M', '憲'), - (0x2F8AD, 'M', '憤'), - (0x2F8AE, 'M', '憯'), - (0x2F8AF, 'M', '懞'), - (0x2F8B0, 'M', '懲'), - (0x2F8B1, 'M', '懶'), - (0x2F8B2, 'M', '成'), - (0x2F8B3, 'M', '戛'), - (0x2F8B4, 'M', '扝'), - (0x2F8B5, 'M', '抱'), - (0x2F8B6, 'M', '拔'), - (0x2F8B7, 'M', '捐'), - (0x2F8B8, 'M', '𢬌'), - (0x2F8B9, 'M', '挽'), - (0x2F8BA, 'M', '拼'), - (0x2F8BB, 'M', '捨'), - (0x2F8BC, 'M', '掃'), - (0x2F8BD, 'M', '揤'), - (0x2F8BE, 'M', '𢯱'), - (0x2F8BF, 'M', '搢'), - (0x2F8C0, 'M', '揅'), - (0x2F8C1, 'M', '掩'), - (0x2F8C2, 'M', '㨮'), - (0x2F8C3, 'M', '摩'), - (0x2F8C4, 'M', '摾'), - (0x2F8C5, 'M', '撝'), - (0x2F8C6, 'M', '摷'), - (0x2F8C7, 'M', '㩬'), - (0x2F8C8, 'M', '敏'), - (0x2F8C9, 'M', '敬'), - (0x2F8CA, 'M', '𣀊'), - (0x2F8CB, 'M', '旣'), - (0x2F8CC, 'M', '書'), - (0x2F8CD, 'M', '晉'), - (0x2F8CE, 'M', '㬙'), - (0x2F8CF, 'M', '暑'), - (0x2F8D0, 'M', '㬈'), - (0x2F8D1, 'M', '㫤'), - (0x2F8D2, 'M', '冒'), - (0x2F8D3, 'M', '冕'), - (0x2F8D4, 'M', '最'), - (0x2F8D5, 'M', '暜'), - (0x2F8D6, 'M', '肭'), - (0x2F8D7, 'M', '䏙'), - (0x2F8D8, 'M', '朗'), - (0x2F8D9, 'M', '望'), - (0x2F8DA, 'M', '朡'), - (0x2F8DB, 'M', '杞'), - (0x2F8DC, 'M', '杓'), - (0x2F8DD, 'M', '𣏃'), - (0x2F8DE, 'M', '㭉'), - (0x2F8DF, 'M', '柺'), - (0x2F8E0, 'M', '枅'), - (0x2F8E1, 'M', '桒'), - (0x2F8E2, 'M', '梅'), - (0x2F8E3, 'M', '𣑭'), - (0x2F8E4, 'M', '梎'), - (0x2F8E5, 'M', '栟'), - (0x2F8E6, 'M', '椔'), - (0x2F8E7, 'M', '㮝'), - (0x2F8E8, 'M', '楂'), - (0x2F8E9, 'M', '榣'), - (0x2F8EA, 'M', '槪'), - (0x2F8EB, 'M', '檨'), - (0x2F8EC, 'M', '𣚣'), - (0x2F8ED, 'M', '櫛'), - (0x2F8EE, 'M', '㰘'), - (0x2F8EF, 'M', '次'), - (0x2F8F0, 'M', '𣢧'), - (0x2F8F1, 'M', '歔'), - (0x2F8F2, 'M', '㱎'), - (0x2F8F3, 'M', '歲'), - (0x2F8F4, 'M', '殟'), - (0x2F8F5, 'M', '殺'), - (0x2F8F6, 'M', '殻'), - (0x2F8F7, 'M', '𣪍'), - (0x2F8F8, 'M', '𡴋'), - (0x2F8F9, 'M', '𣫺'), - (0x2F8FA, 'M', '汎'), - (0x2F8FB, 'M', '𣲼'), - (0x2F8FC, 'M', '沿'), - (0x2F8FD, 'M', '泍'), - (0x2F8FE, 'M', '汧'), - (0x2F8FF, 'M', '洖'), - (0x2F900, 'M', '派'), - (0x2F901, 'M', '海'), - (0x2F902, 'M', '流'), - (0x2F903, 'M', '浩'), - (0x2F904, 'M', '浸'), - (0x2F905, 'M', '涅'), - (0x2F906, 'M', '𣴞'), - (0x2F907, 'M', '洴'), - (0x2F908, 'M', '港'), - (0x2F909, 'M', '湮'), - (0x2F90A, 'M', '㴳'), - ] - -def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F90B, 'M', '滋'), - (0x2F90C, 'M', '滇'), - (0x2F90D, 'M', '𣻑'), - (0x2F90E, 'M', '淹'), - (0x2F90F, 'M', '潮'), - (0x2F910, 'M', '𣽞'), - (0x2F911, 'M', '𣾎'), - (0x2F912, 'M', '濆'), - (0x2F913, 'M', '瀹'), - (0x2F914, 'M', '瀞'), - (0x2F915, 'M', '瀛'), - (0x2F916, 'M', '㶖'), - (0x2F917, 'M', '灊'), - (0x2F918, 'M', '災'), - (0x2F919, 'M', '灷'), - (0x2F91A, 'M', '炭'), - (0x2F91B, 'M', '𠔥'), - (0x2F91C, 'M', '煅'), - (0x2F91D, 'M', '𤉣'), - (0x2F91E, 'M', '熜'), - (0x2F91F, 'X'), - (0x2F920, 'M', '爨'), - (0x2F921, 'M', '爵'), - (0x2F922, 'M', '牐'), - (0x2F923, 'M', '𤘈'), - (0x2F924, 'M', '犀'), - (0x2F925, 'M', '犕'), - (0x2F926, 'M', '𤜵'), - (0x2F927, 'M', '𤠔'), - (0x2F928, 'M', '獺'), - (0x2F929, 'M', '王'), - (0x2F92A, 'M', '㺬'), - (0x2F92B, 'M', '玥'), - (0x2F92C, 'M', '㺸'), - (0x2F92E, 'M', '瑇'), - (0x2F92F, 'M', '瑜'), - (0x2F930, 'M', '瑱'), - (0x2F931, 'M', '璅'), - (0x2F932, 'M', '瓊'), - (0x2F933, 'M', '㼛'), - (0x2F934, 'M', '甤'), - (0x2F935, 'M', '𤰶'), - (0x2F936, 'M', '甾'), - (0x2F937, 'M', '𤲒'), - (0x2F938, 'M', '異'), - (0x2F939, 'M', '𢆟'), - (0x2F93A, 'M', '瘐'), - (0x2F93B, 'M', '𤾡'), - (0x2F93C, 'M', '𤾸'), - (0x2F93D, 'M', '𥁄'), - (0x2F93E, 'M', '㿼'), - (0x2F93F, 'M', '䀈'), - (0x2F940, 'M', '直'), - (0x2F941, 'M', '𥃳'), - (0x2F942, 'M', '𥃲'), - (0x2F943, 'M', '𥄙'), - (0x2F944, 'M', '𥄳'), - (0x2F945, 'M', '眞'), - (0x2F946, 'M', '真'), - (0x2F948, 'M', '睊'), - (0x2F949, 'M', '䀹'), - (0x2F94A, 'M', '瞋'), - (0x2F94B, 'M', '䁆'), - (0x2F94C, 'M', '䂖'), - (0x2F94D, 'M', '𥐝'), - (0x2F94E, 'M', '硎'), - (0x2F94F, 'M', '碌'), - (0x2F950, 'M', '磌'), - (0x2F951, 'M', '䃣'), - (0x2F952, 'M', '𥘦'), - (0x2F953, 'M', '祖'), - (0x2F954, 'M', '𥚚'), - (0x2F955, 'M', '𥛅'), - (0x2F956, 'M', '福'), - (0x2F957, 'M', '秫'), - (0x2F958, 'M', '䄯'), - (0x2F959, 'M', '穀'), - (0x2F95A, 'M', '穊'), - (0x2F95B, 'M', '穏'), - (0x2F95C, 'M', '𥥼'), - (0x2F95D, 'M', '𥪧'), - (0x2F95F, 'X'), - (0x2F960, 'M', '䈂'), - (0x2F961, 'M', '𥮫'), - (0x2F962, 'M', '篆'), - (0x2F963, 'M', '築'), - (0x2F964, 'M', '䈧'), - (0x2F965, 'M', '𥲀'), - (0x2F966, 'M', '糒'), - (0x2F967, 'M', '䊠'), - (0x2F968, 'M', '糨'), - (0x2F969, 'M', '糣'), - (0x2F96A, 'M', '紀'), - (0x2F96B, 'M', '𥾆'), - (0x2F96C, 'M', '絣'), - (0x2F96D, 'M', '䌁'), - (0x2F96E, 'M', '緇'), - (0x2F96F, 'M', '縂'), - (0x2F970, 'M', '繅'), - (0x2F971, 'M', '䌴'), - ] - -def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F972, 'M', '𦈨'), - (0x2F973, 'M', '𦉇'), - (0x2F974, 'M', '䍙'), - (0x2F975, 'M', '𦋙'), - (0x2F976, 'M', '罺'), - (0x2F977, 'M', '𦌾'), - (0x2F978, 'M', '羕'), - (0x2F979, 'M', '翺'), - (0x2F97A, 'M', '者'), - (0x2F97B, 'M', '𦓚'), - (0x2F97C, 'M', '𦔣'), - (0x2F97D, 'M', '聠'), - (0x2F97E, 'M', '𦖨'), - (0x2F97F, 'M', '聰'), - (0x2F980, 'M', '𣍟'), - (0x2F981, 'M', '䏕'), - (0x2F982, 'M', '育'), - (0x2F983, 'M', '脃'), - (0x2F984, 'M', '䐋'), - (0x2F985, 'M', '脾'), - (0x2F986, 'M', '媵'), - (0x2F987, 'M', '𦞧'), - (0x2F988, 'M', '𦞵'), - (0x2F989, 'M', '𣎓'), - (0x2F98A, 'M', '𣎜'), - (0x2F98B, 'M', '舁'), - (0x2F98C, 'M', '舄'), - (0x2F98D, 'M', '辞'), - (0x2F98E, 'M', '䑫'), - (0x2F98F, 'M', '芑'), - (0x2F990, 'M', '芋'), - (0x2F991, 'M', '芝'), - (0x2F992, 'M', '劳'), - (0x2F993, 'M', '花'), - (0x2F994, 'M', '芳'), - (0x2F995, 'M', '芽'), - (0x2F996, 'M', '苦'), - (0x2F997, 'M', '𦬼'), - (0x2F998, 'M', '若'), - (0x2F999, 'M', '茝'), - (0x2F99A, 'M', '荣'), - (0x2F99B, 'M', '莭'), - (0x2F99C, 'M', '茣'), - (0x2F99D, 'M', '莽'), - (0x2F99E, 'M', '菧'), - (0x2F99F, 'M', '著'), - (0x2F9A0, 'M', '荓'), - (0x2F9A1, 'M', '菊'), - (0x2F9A2, 'M', '菌'), - (0x2F9A3, 'M', '菜'), - (0x2F9A4, 'M', '𦰶'), - (0x2F9A5, 'M', '𦵫'), - (0x2F9A6, 'M', '𦳕'), - (0x2F9A7, 'M', '䔫'), - (0x2F9A8, 'M', '蓱'), - (0x2F9A9, 'M', '蓳'), - (0x2F9AA, 'M', '蔖'), - (0x2F9AB, 'M', '𧏊'), - (0x2F9AC, 'M', '蕤'), - (0x2F9AD, 'M', '𦼬'), - (0x2F9AE, 'M', '䕝'), - (0x2F9AF, 'M', '䕡'), - (0x2F9B0, 'M', '𦾱'), - (0x2F9B1, 'M', '𧃒'), - (0x2F9B2, 'M', '䕫'), - (0x2F9B3, 'M', '虐'), - (0x2F9B4, 'M', '虜'), - (0x2F9B5, 'M', '虧'), - (0x2F9B6, 'M', '虩'), - (0x2F9B7, 'M', '蚩'), - (0x2F9B8, 'M', '蚈'), - (0x2F9B9, 'M', '蜎'), - (0x2F9BA, 'M', '蛢'), - (0x2F9BB, 'M', '蝹'), - (0x2F9BC, 'M', '蜨'), - (0x2F9BD, 'M', '蝫'), - (0x2F9BE, 'M', '螆'), - (0x2F9BF, 'X'), - (0x2F9C0, 'M', '蟡'), - (0x2F9C1, 'M', '蠁'), - (0x2F9C2, 'M', '䗹'), - (0x2F9C3, 'M', '衠'), - (0x2F9C4, 'M', '衣'), - (0x2F9C5, 'M', '𧙧'), - (0x2F9C6, 'M', '裗'), - (0x2F9C7, 'M', '裞'), - (0x2F9C8, 'M', '䘵'), - (0x2F9C9, 'M', '裺'), - (0x2F9CA, 'M', '㒻'), - (0x2F9CB, 'M', '𧢮'), - (0x2F9CC, 'M', '𧥦'), - (0x2F9CD, 'M', '䚾'), - (0x2F9CE, 'M', '䛇'), - (0x2F9CF, 'M', '誠'), - (0x2F9D0, 'M', '諭'), - (0x2F9D1, 'M', '變'), - (0x2F9D2, 'M', '豕'), - (0x2F9D3, 'M', '𧲨'), - (0x2F9D4, 'M', '貫'), - (0x2F9D5, 'M', '賁'), - ] - -def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: - return [ - (0x2F9D6, 'M', '贛'), - (0x2F9D7, 'M', '起'), - (0x2F9D8, 'M', '𧼯'), - (0x2F9D9, 'M', '𠠄'), - (0x2F9DA, 'M', '跋'), - (0x2F9DB, 'M', '趼'), - (0x2F9DC, 'M', '跰'), - (0x2F9DD, 'M', '𠣞'), - (0x2F9DE, 'M', '軔'), - (0x2F9DF, 'M', '輸'), - (0x2F9E0, 'M', '𨗒'), - (0x2F9E1, 'M', '𨗭'), - (0x2F9E2, 'M', '邔'), - (0x2F9E3, 'M', '郱'), - (0x2F9E4, 'M', '鄑'), - (0x2F9E5, 'M', '𨜮'), - (0x2F9E6, 'M', '鄛'), - (0x2F9E7, 'M', '鈸'), - (0x2F9E8, 'M', '鋗'), - (0x2F9E9, 'M', '鋘'), - (0x2F9EA, 'M', '鉼'), - (0x2F9EB, 'M', '鏹'), - (0x2F9EC, 'M', '鐕'), - (0x2F9ED, 'M', '𨯺'), - (0x2F9EE, 'M', '開'), - (0x2F9EF, 'M', '䦕'), - (0x2F9F0, 'M', '閷'), - (0x2F9F1, 'M', '𨵷'), - (0x2F9F2, 'M', '䧦'), - (0x2F9F3, 'M', '雃'), - (0x2F9F4, 'M', '嶲'), - (0x2F9F5, 'M', '霣'), - (0x2F9F6, 'M', '𩅅'), - (0x2F9F7, 'M', '𩈚'), - (0x2F9F8, 'M', '䩮'), - (0x2F9F9, 'M', '䩶'), - (0x2F9FA, 'M', '韠'), - (0x2F9FB, 'M', '𩐊'), - (0x2F9FC, 'M', '䪲'), - (0x2F9FD, 'M', '𩒖'), - (0x2F9FE, 'M', '頋'), - (0x2FA00, 'M', '頩'), - (0x2FA01, 'M', '𩖶'), - (0x2FA02, 'M', '飢'), - (0x2FA03, 'M', '䬳'), - (0x2FA04, 'M', '餩'), - (0x2FA05, 'M', '馧'), - (0x2FA06, 'M', '駂'), - (0x2FA07, 'M', '駾'), - (0x2FA08, 'M', '䯎'), - (0x2FA09, 'M', '𩬰'), - (0x2FA0A, 'M', '鬒'), - (0x2FA0B, 'M', '鱀'), - (0x2FA0C, 'M', '鳽'), - (0x2FA0D, 'M', '䳎'), - (0x2FA0E, 'M', '䳭'), - (0x2FA0F, 'M', '鵧'), - (0x2FA10, 'M', '𪃎'), - (0x2FA11, 'M', '䳸'), - (0x2FA12, 'M', '𪄅'), - (0x2FA13, 'M', '𪈎'), - (0x2FA14, 'M', '𪊑'), - (0x2FA15, 'M', '麻'), - (0x2FA16, 'M', '䵖'), - (0x2FA17, 'M', '黹'), - (0x2FA18, 'M', '黾'), - (0x2FA19, 'M', '鼅'), - (0x2FA1A, 'M', '鼏'), - (0x2FA1B, 'M', '鼖'), - (0x2FA1C, 'M', '鼻'), - (0x2FA1D, 'M', '𪘀'), - (0x2FA1E, 'X'), - (0x30000, 'V'), - (0x3134B, 'X'), - (0x31350, 'V'), - (0x323B0, 'X'), - (0xE0100, 'I'), - (0xE01F0, 'X'), - ] - -uts46data = tuple( - _seg_0() - + _seg_1() - + _seg_2() - + _seg_3() - + _seg_4() - + _seg_5() - + _seg_6() - + _seg_7() - + _seg_8() - + _seg_9() - + _seg_10() - + _seg_11() - + _seg_12() - + _seg_13() - + _seg_14() - + _seg_15() - + _seg_16() - + _seg_17() - + _seg_18() - + _seg_19() - + _seg_20() - + _seg_21() - + _seg_22() - + _seg_23() - + _seg_24() - + _seg_25() - + _seg_26() - + _seg_27() - + _seg_28() - + _seg_29() - + _seg_30() - + _seg_31() - + _seg_32() - + _seg_33() - + _seg_34() - + _seg_35() - + _seg_36() - + _seg_37() - + _seg_38() - + _seg_39() - + _seg_40() - + _seg_41() - + _seg_42() - + _seg_43() - + _seg_44() - + _seg_45() - + _seg_46() - + _seg_47() - + _seg_48() - + _seg_49() - + _seg_50() - + _seg_51() - + _seg_52() - + _seg_53() - + _seg_54() - + _seg_55() - + _seg_56() - + _seg_57() - + _seg_58() - + _seg_59() - + _seg_60() - + _seg_61() - + _seg_62() - + _seg_63() - + _seg_64() - + _seg_65() - + _seg_66() - + _seg_67() - + _seg_68() - + _seg_69() - + _seg_70() - + _seg_71() - + _seg_72() - + _seg_73() - + _seg_74() - + _seg_75() - + _seg_76() - + _seg_77() - + _seg_78() - + _seg_79() - + _seg_80() - + _seg_81() -) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py deleted file mode 100644 index 1300b86..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py +++ /dev/null @@ -1,57 +0,0 @@ -# coding: utf-8 -from .exceptions import * -from .ext import ExtType, Timestamp - -import os -import sys - - -version = (1, 0, 5) -__version__ = "1.0.5" - - -if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: - from .fallback import Packer, unpackb, Unpacker -else: - try: - from ._cmsgpack import Packer, unpackb, Unpacker - except ImportError: - from .fallback import Packer, unpackb, Unpacker - - -def pack(o, stream, **kwargs): - """ - Pack object `o` and write it to `stream` - - See :class:`Packer` for options. - """ - packer = Packer(**kwargs) - stream.write(packer.pack(o)) - - -def packb(o, **kwargs): - """ - Pack object `o` and return packed bytes - - See :class:`Packer` for options. - """ - return Packer(**kwargs).pack(o) - - -def unpack(stream, **kwargs): - """ - Unpack an object from `stream`. - - Raises `ExtraData` when `stream` contains extra bytes. - See :class:`Unpacker` for options. - """ - data = stream.read() - return unpackb(data, **kwargs) - - -# alias for compatibility to simplejson/marshal/pickle. -load = unpack -loads = unpackb - -dump = pack -dumps = packb diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0eb03f9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc deleted file mode 100644 index 2f66eee..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc deleted file mode 100644 index 4d7fc01..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc deleted file mode 100644 index 490fa02..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py deleted file mode 100644 index d6d2615..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py +++ /dev/null @@ -1,48 +0,0 @@ -class UnpackException(Exception): - """Base class for some exceptions raised while unpacking. - - NOTE: unpack may raise exception other than subclass of - UnpackException. If you want to catch all error, catch - Exception instead. - """ - - -class BufferFull(UnpackException): - pass - - -class OutOfData(UnpackException): - pass - - -class FormatError(ValueError, UnpackException): - """Invalid msgpack format""" - - -class StackError(ValueError, UnpackException): - """Too nested""" - - -# Deprecated. Use ValueError instead -UnpackValueError = ValueError - - -class ExtraData(UnpackValueError): - """ExtraData is raised when there is trailing data. - - This exception is raised while only one-shot (not streaming) - unpack. - """ - - def __init__(self, unpacked, extra): - self.unpacked = unpacked - self.extra = extra - - def __str__(self): - return "unpack(b) received extra data." - - -# Deprecated. Use Exception instead to catch all exception during packing. -PackException = Exception -PackValueError = ValueError -PackOverflowError = OverflowError diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py deleted file mode 100644 index 23e0d6b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py +++ /dev/null @@ -1,193 +0,0 @@ -# coding: utf-8 -from collections import namedtuple -import datetime -import sys -import struct - - -PY2 = sys.version_info[0] == 2 - -if PY2: - int_types = (int, long) - _utc = None -else: - int_types = int - try: - _utc = datetime.timezone.utc - except AttributeError: - _utc = datetime.timezone(datetime.timedelta(0)) - - -class ExtType(namedtuple("ExtType", "code data")): - """ExtType represents ext type in msgpack.""" - - def __new__(cls, code, data): - if not isinstance(code, int): - raise TypeError("code must be int") - if not isinstance(data, bytes): - raise TypeError("data must be bytes") - if not 0 <= code <= 127: - raise ValueError("code must be 0~127") - return super(ExtType, cls).__new__(cls, code, data) - - -class Timestamp(object): - """Timestamp represents the Timestamp extension type in msgpack. - - When built with Cython, msgpack uses C methods to pack and unpack `Timestamp`. When using pure-Python - msgpack, :func:`to_bytes` and :func:`from_bytes` are used to pack and unpack `Timestamp`. - - This class is immutable: Do not override seconds and nanoseconds. - """ - - __slots__ = ["seconds", "nanoseconds"] - - def __init__(self, seconds, nanoseconds=0): - """Initialize a Timestamp object. - - :param int seconds: - Number of seconds since the UNIX epoch (00:00:00 UTC Jan 1 1970, minus leap seconds). - May be negative. - - :param int nanoseconds: - Number of nanoseconds to add to `seconds` to get fractional time. - Maximum is 999_999_999. Default is 0. - - Note: Negative times (before the UNIX epoch) are represented as negative seconds + positive ns. - """ - if not isinstance(seconds, int_types): - raise TypeError("seconds must be an integer") - if not isinstance(nanoseconds, int_types): - raise TypeError("nanoseconds must be an integer") - if not (0 <= nanoseconds < 10**9): - raise ValueError( - "nanoseconds must be a non-negative integer less than 999999999." - ) - self.seconds = seconds - self.nanoseconds = nanoseconds - - def __repr__(self): - """String representation of Timestamp.""" - return "Timestamp(seconds={0}, nanoseconds={1})".format( - self.seconds, self.nanoseconds - ) - - def __eq__(self, other): - """Check for equality with another Timestamp object""" - if type(other) is self.__class__: - return ( - self.seconds == other.seconds and self.nanoseconds == other.nanoseconds - ) - return False - - def __ne__(self, other): - """not-equals method (see :func:`__eq__()`)""" - return not self.__eq__(other) - - def __hash__(self): - return hash((self.seconds, self.nanoseconds)) - - @staticmethod - def from_bytes(b): - """Unpack bytes into a `Timestamp` object. - - Used for pure-Python msgpack unpacking. - - :param b: Payload from msgpack ext message with code -1 - :type b: bytes - - :returns: Timestamp object unpacked from msgpack ext payload - :rtype: Timestamp - """ - if len(b) == 4: - seconds = struct.unpack("!L", b)[0] - nanoseconds = 0 - elif len(b) == 8: - data64 = struct.unpack("!Q", b)[0] - seconds = data64 & 0x00000003FFFFFFFF - nanoseconds = data64 >> 34 - elif len(b) == 12: - nanoseconds, seconds = struct.unpack("!Iq", b) - else: - raise ValueError( - "Timestamp type can only be created from 32, 64, or 96-bit byte objects" - ) - return Timestamp(seconds, nanoseconds) - - def to_bytes(self): - """Pack this Timestamp object into bytes. - - Used for pure-Python msgpack packing. - - :returns data: Payload for EXT message with code -1 (timestamp type) - :rtype: bytes - """ - if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits - data64 = self.nanoseconds << 34 | self.seconds - if data64 & 0xFFFFFFFF00000000 == 0: - # nanoseconds is zero and seconds < 2**32, so timestamp 32 - data = struct.pack("!L", data64) - else: - # timestamp 64 - data = struct.pack("!Q", data64) - else: - # timestamp 96 - data = struct.pack("!Iq", self.nanoseconds, self.seconds) - return data - - @staticmethod - def from_unix(unix_sec): - """Create a Timestamp from posix timestamp in seconds. - - :param unix_float: Posix timestamp in seconds. - :type unix_float: int or float. - """ - seconds = int(unix_sec // 1) - nanoseconds = int((unix_sec % 1) * 10**9) - return Timestamp(seconds, nanoseconds) - - def to_unix(self): - """Get the timestamp as a floating-point value. - - :returns: posix timestamp - :rtype: float - """ - return self.seconds + self.nanoseconds / 1e9 - - @staticmethod - def from_unix_nano(unix_ns): - """Create a Timestamp from posix timestamp in nanoseconds. - - :param int unix_ns: Posix timestamp in nanoseconds. - :rtype: Timestamp - """ - return Timestamp(*divmod(unix_ns, 10**9)) - - def to_unix_nano(self): - """Get the timestamp as a unixtime in nanoseconds. - - :returns: posix timestamp in nanoseconds - :rtype: int - """ - return self.seconds * 10**9 + self.nanoseconds - - def to_datetime(self): - """Get the timestamp as a UTC datetime. - - Python 2 is not supported. - - :rtype: datetime. - """ - return datetime.datetime.fromtimestamp(0, _utc) + datetime.timedelta( - seconds=self.to_unix() - ) - - @staticmethod - def from_datetime(dt): - """Create a Timestamp from datetime with tzinfo. - - Python 2 is not supported. - - :rtype: Timestamp - """ - return Timestamp.from_unix(dt.timestamp()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py deleted file mode 100644 index e8cebc1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py +++ /dev/null @@ -1,1010 +0,0 @@ -"""Fallback pure Python implementation of msgpack""" -from datetime import datetime as _DateTime -import sys -import struct - - -PY2 = sys.version_info[0] == 2 -if PY2: - int_types = (int, long) - - def dict_iteritems(d): - return d.iteritems() - -else: - int_types = int - unicode = str - xrange = range - - def dict_iteritems(d): - return d.items() - - -if sys.version_info < (3, 5): - # Ugly hack... - RecursionError = RuntimeError - - def _is_recursionerror(e): - return ( - len(e.args) == 1 - and isinstance(e.args[0], str) - and e.args[0].startswith("maximum recursion depth exceeded") - ) - -else: - - def _is_recursionerror(e): - return True - - -if hasattr(sys, "pypy_version_info"): - # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own - # StringBuilder is fastest. - from __pypy__ import newlist_hint - - try: - from __pypy__.builders import BytesBuilder as StringBuilder - except ImportError: - from __pypy__.builders import StringBuilder - USING_STRINGBUILDER = True - - class StringIO(object): - def __init__(self, s=b""): - if s: - self.builder = StringBuilder(len(s)) - self.builder.append(s) - else: - self.builder = StringBuilder() - - def write(self, s): - if isinstance(s, memoryview): - s = s.tobytes() - elif isinstance(s, bytearray): - s = bytes(s) - self.builder.append(s) - - def getvalue(self): - return self.builder.build() - -else: - USING_STRINGBUILDER = False - from io import BytesIO as StringIO - - newlist_hint = lambda size: [] - - -from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError - -from .ext import ExtType, Timestamp - - -EX_SKIP = 0 -EX_CONSTRUCT = 1 -EX_READ_ARRAY_HEADER = 2 -EX_READ_MAP_HEADER = 3 - -TYPE_IMMEDIATE = 0 -TYPE_ARRAY = 1 -TYPE_MAP = 2 -TYPE_RAW = 3 -TYPE_BIN = 4 -TYPE_EXT = 5 - -DEFAULT_RECURSE_LIMIT = 511 - - -def _check_type_strict(obj, t, type=type, tuple=tuple): - if type(t) is tuple: - return type(obj) in t - else: - return type(obj) is t - - -def _get_data_from_buffer(obj): - view = memoryview(obj) - if view.itemsize != 1: - raise ValueError("cannot unpack from multi-byte object") - return view - - -def unpackb(packed, **kwargs): - """ - Unpack an object from `packed`. - - Raises ``ExtraData`` when *packed* contains extra bytes. - Raises ``ValueError`` when *packed* is incomplete. - Raises ``FormatError`` when *packed* is not valid msgpack. - Raises ``StackError`` when *packed* contains too nested. - Other exceptions can be raised during unpacking. - - See :class:`Unpacker` for options. - """ - unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) - unpacker.feed(packed) - try: - ret = unpacker._unpack() - except OutOfData: - raise ValueError("Unpack failed: incomplete input") - except RecursionError as e: - if _is_recursionerror(e): - raise StackError - raise - if unpacker._got_extradata(): - raise ExtraData(ret, unpacker._get_extradata()) - return ret - - -if sys.version_info < (2, 7, 6): - - def _unpack_from(f, b, o=0): - """Explicit type cast for legacy struct.unpack_from""" - return struct.unpack_from(f, bytes(b), o) - -else: - _unpack_from = struct.unpack_from - -_NO_FORMAT_USED = "" -_MSGPACK_HEADERS = { - 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), - 0xC5: (2, ">H", TYPE_BIN), - 0xC6: (4, ">I", TYPE_BIN), - 0xC7: (2, "Bb", TYPE_EXT), - 0xC8: (3, ">Hb", TYPE_EXT), - 0xC9: (5, ">Ib", TYPE_EXT), - 0xCA: (4, ">f"), - 0xCB: (8, ">d"), - 0xCC: (1, _NO_FORMAT_USED), - 0xCD: (2, ">H"), - 0xCE: (4, ">I"), - 0xCF: (8, ">Q"), - 0xD0: (1, "b"), - 0xD1: (2, ">h"), - 0xD2: (4, ">i"), - 0xD3: (8, ">q"), - 0xD4: (1, "b1s", TYPE_EXT), - 0xD5: (2, "b2s", TYPE_EXT), - 0xD6: (4, "b4s", TYPE_EXT), - 0xD7: (8, "b8s", TYPE_EXT), - 0xD8: (16, "b16s", TYPE_EXT), - 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), - 0xDA: (2, ">H", TYPE_RAW), - 0xDB: (4, ">I", TYPE_RAW), - 0xDC: (2, ">H", TYPE_ARRAY), - 0xDD: (4, ">I", TYPE_ARRAY), - 0xDE: (2, ">H", TYPE_MAP), - 0xDF: (4, ">I", TYPE_MAP), -} - - -class Unpacker(object): - """Streaming unpacker. - - Arguments: - - :param file_like: - File-like object having `.read(n)` method. - If specified, unpacker reads serialized data from it and :meth:`feed()` is not usable. - - :param int read_size: - Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) - - :param bool use_list: - If true, unpack msgpack array to Python list. - Otherwise, unpack to Python tuple. (default: True) - - :param bool raw: - If true, unpack msgpack raw to Python bytes. - Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). - - :param int timestamp: - Control how timestamp type is unpacked: - - 0 - Timestamp - 1 - float (Seconds from the EPOCH) - 2 - int (Nanoseconds from the EPOCH) - 3 - datetime.datetime (UTC). Python 2 is not supported. - - :param bool strict_map_key: - If true (default), only str or bytes are accepted for map (dict) keys. - - :param callable object_hook: - When specified, it should be callable. - Unpacker calls it with a dict argument after unpacking msgpack map. - (See also simplejson) - - :param callable object_pairs_hook: - When specified, it should be callable. - Unpacker calls it with a list of key-value pairs after unpacking msgpack map. - (See also simplejson) - - :param str unicode_errors: - The error handler for decoding unicode. (default: 'strict') - This option should be used only when you have msgpack data which - contains invalid UTF-8 string. - - :param int max_buffer_size: - Limits size of data waiting unpacked. 0 means 2**32-1. - The default value is 100*1024*1024 (100MiB). - Raises `BufferFull` exception when it is insufficient. - You should set this parameter when unpacking data from untrusted source. - - :param int max_str_len: - Deprecated, use *max_buffer_size* instead. - Limits max length of str. (default: max_buffer_size) - - :param int max_bin_len: - Deprecated, use *max_buffer_size* instead. - Limits max length of bin. (default: max_buffer_size) - - :param int max_array_len: - Limits max length of array. - (default: max_buffer_size) - - :param int max_map_len: - Limits max length of map. - (default: max_buffer_size//2) - - :param int max_ext_len: - Deprecated, use *max_buffer_size* instead. - Limits max size of ext type. (default: max_buffer_size) - - Example of streaming deserialize from file-like object:: - - unpacker = Unpacker(file_like) - for o in unpacker: - process(o) - - Example of streaming deserialize from socket:: - - unpacker = Unpacker() - while True: - buf = sock.recv(1024**2) - if not buf: - break - unpacker.feed(buf) - for o in unpacker: - process(o) - - Raises ``ExtraData`` when *packed* contains extra bytes. - Raises ``OutOfData`` when *packed* is incomplete. - Raises ``FormatError`` when *packed* is not valid msgpack. - Raises ``StackError`` when *packed* contains too nested. - Other exceptions can be raised during unpacking. - """ - - def __init__( - self, - file_like=None, - read_size=0, - use_list=True, - raw=False, - timestamp=0, - strict_map_key=True, - object_hook=None, - object_pairs_hook=None, - list_hook=None, - unicode_errors=None, - max_buffer_size=100 * 1024 * 1024, - ext_hook=ExtType, - max_str_len=-1, - max_bin_len=-1, - max_array_len=-1, - max_map_len=-1, - max_ext_len=-1, - ): - if unicode_errors is None: - unicode_errors = "strict" - - if file_like is None: - self._feeding = True - else: - if not callable(file_like.read): - raise TypeError("`file_like.read` must be callable") - self.file_like = file_like - self._feeding = False - - #: array of bytes fed. - self._buffer = bytearray() - #: Which position we currently reads - self._buff_i = 0 - - # When Unpacker is used as an iterable, between the calls to next(), - # the buffer is not "consumed" completely, for efficiency sake. - # Instead, it is done sloppily. To make sure we raise BufferFull at - # the correct moments, we have to keep track of how sloppy we were. - # Furthermore, when the buffer is incomplete (that is: in the case - # we raise an OutOfData) we need to rollback the buffer to the correct - # state, which _buf_checkpoint records. - self._buf_checkpoint = 0 - - if not max_buffer_size: - max_buffer_size = 2**31 - 1 - if max_str_len == -1: - max_str_len = max_buffer_size - if max_bin_len == -1: - max_bin_len = max_buffer_size - if max_array_len == -1: - max_array_len = max_buffer_size - if max_map_len == -1: - max_map_len = max_buffer_size // 2 - if max_ext_len == -1: - max_ext_len = max_buffer_size - - self._max_buffer_size = max_buffer_size - if read_size > self._max_buffer_size: - raise ValueError("read_size must be smaller than max_buffer_size") - self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) - self._raw = bool(raw) - self._strict_map_key = bool(strict_map_key) - self._unicode_errors = unicode_errors - self._use_list = use_list - if not (0 <= timestamp <= 3): - raise ValueError("timestamp must be 0..3") - self._timestamp = timestamp - self._list_hook = list_hook - self._object_hook = object_hook - self._object_pairs_hook = object_pairs_hook - self._ext_hook = ext_hook - self._max_str_len = max_str_len - self._max_bin_len = max_bin_len - self._max_array_len = max_array_len - self._max_map_len = max_map_len - self._max_ext_len = max_ext_len - self._stream_offset = 0 - - if list_hook is not None and not callable(list_hook): - raise TypeError("`list_hook` is not callable") - if object_hook is not None and not callable(object_hook): - raise TypeError("`object_hook` is not callable") - if object_pairs_hook is not None and not callable(object_pairs_hook): - raise TypeError("`object_pairs_hook` is not callable") - if object_hook is not None and object_pairs_hook is not None: - raise TypeError( - "object_pairs_hook and object_hook are mutually " "exclusive" - ) - if not callable(ext_hook): - raise TypeError("`ext_hook` is not callable") - - def feed(self, next_bytes): - assert self._feeding - view = _get_data_from_buffer(next_bytes) - if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: - raise BufferFull - - # Strip buffer before checkpoint before reading file. - if self._buf_checkpoint > 0: - del self._buffer[: self._buf_checkpoint] - self._buff_i -= self._buf_checkpoint - self._buf_checkpoint = 0 - - # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython - self._buffer.extend(view) - - def _consume(self): - """Gets rid of the used parts of the buffer.""" - self._stream_offset += self._buff_i - self._buf_checkpoint - self._buf_checkpoint = self._buff_i - - def _got_extradata(self): - return self._buff_i < len(self._buffer) - - def _get_extradata(self): - return self._buffer[self._buff_i :] - - def read_bytes(self, n): - ret = self._read(n, raise_outofdata=False) - self._consume() - return ret - - def _read(self, n, raise_outofdata=True): - # (int) -> bytearray - self._reserve(n, raise_outofdata=raise_outofdata) - i = self._buff_i - ret = self._buffer[i : i + n] - self._buff_i = i + len(ret) - return ret - - def _reserve(self, n, raise_outofdata=True): - remain_bytes = len(self._buffer) - self._buff_i - n - - # Fast path: buffer has n bytes already - if remain_bytes >= 0: - return - - if self._feeding: - self._buff_i = self._buf_checkpoint - raise OutOfData - - # Strip buffer before checkpoint before reading file. - if self._buf_checkpoint > 0: - del self._buffer[: self._buf_checkpoint] - self._buff_i -= self._buf_checkpoint - self._buf_checkpoint = 0 - - # Read from file - remain_bytes = -remain_bytes - if remain_bytes + len(self._buffer) > self._max_buffer_size: - raise BufferFull - while remain_bytes > 0: - to_read_bytes = max(self._read_size, remain_bytes) - read_data = self.file_like.read(to_read_bytes) - if not read_data: - break - assert isinstance(read_data, bytes) - self._buffer += read_data - remain_bytes -= len(read_data) - - if len(self._buffer) < n + self._buff_i and raise_outofdata: - self._buff_i = 0 # rollback - raise OutOfData - - def _read_header(self): - typ = TYPE_IMMEDIATE - n = 0 - obj = None - self._reserve(1) - b = self._buffer[self._buff_i] - self._buff_i += 1 - if b & 0b10000000 == 0: - obj = b - elif b & 0b11100000 == 0b11100000: - obj = -1 - (b ^ 0xFF) - elif b & 0b11100000 == 0b10100000: - n = b & 0b00011111 - typ = TYPE_RAW - if n > self._max_str_len: - raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) - obj = self._read(n) - elif b & 0b11110000 == 0b10010000: - n = b & 0b00001111 - typ = TYPE_ARRAY - if n > self._max_array_len: - raise ValueError( - "%s exceeds max_array_len(%s)" % (n, self._max_array_len) - ) - elif b & 0b11110000 == 0b10000000: - n = b & 0b00001111 - typ = TYPE_MAP - if n > self._max_map_len: - raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) - elif b == 0xC0: - obj = None - elif b == 0xC2: - obj = False - elif b == 0xC3: - obj = True - elif 0xC4 <= b <= 0xC6: - size, fmt, typ = _MSGPACK_HEADERS[b] - self._reserve(size) - if len(fmt) > 0: - n = _unpack_from(fmt, self._buffer, self._buff_i)[0] - else: - n = self._buffer[self._buff_i] - self._buff_i += size - if n > self._max_bin_len: - raise ValueError("%s exceeds max_bin_len(%s)" % (n, self._max_bin_len)) - obj = self._read(n) - elif 0xC7 <= b <= 0xC9: - size, fmt, typ = _MSGPACK_HEADERS[b] - self._reserve(size) - L, n = _unpack_from(fmt, self._buffer, self._buff_i) - self._buff_i += size - if L > self._max_ext_len: - raise ValueError("%s exceeds max_ext_len(%s)" % (L, self._max_ext_len)) - obj = self._read(L) - elif 0xCA <= b <= 0xD3: - size, fmt = _MSGPACK_HEADERS[b] - self._reserve(size) - if len(fmt) > 0: - obj = _unpack_from(fmt, self._buffer, self._buff_i)[0] - else: - obj = self._buffer[self._buff_i] - self._buff_i += size - elif 0xD4 <= b <= 0xD8: - size, fmt, typ = _MSGPACK_HEADERS[b] - if self._max_ext_len < size: - raise ValueError( - "%s exceeds max_ext_len(%s)" % (size, self._max_ext_len) - ) - self._reserve(size + 1) - n, obj = _unpack_from(fmt, self._buffer, self._buff_i) - self._buff_i += size + 1 - elif 0xD9 <= b <= 0xDB: - size, fmt, typ = _MSGPACK_HEADERS[b] - self._reserve(size) - if len(fmt) > 0: - (n,) = _unpack_from(fmt, self._buffer, self._buff_i) - else: - n = self._buffer[self._buff_i] - self._buff_i += size - if n > self._max_str_len: - raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) - obj = self._read(n) - elif 0xDC <= b <= 0xDD: - size, fmt, typ = _MSGPACK_HEADERS[b] - self._reserve(size) - (n,) = _unpack_from(fmt, self._buffer, self._buff_i) - self._buff_i += size - if n > self._max_array_len: - raise ValueError( - "%s exceeds max_array_len(%s)" % (n, self._max_array_len) - ) - elif 0xDE <= b <= 0xDF: - size, fmt, typ = _MSGPACK_HEADERS[b] - self._reserve(size) - (n,) = _unpack_from(fmt, self._buffer, self._buff_i) - self._buff_i += size - if n > self._max_map_len: - raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) - else: - raise FormatError("Unknown header: 0x%x" % b) - return typ, n, obj - - def _unpack(self, execute=EX_CONSTRUCT): - typ, n, obj = self._read_header() - - if execute == EX_READ_ARRAY_HEADER: - if typ != TYPE_ARRAY: - raise ValueError("Expected array") - return n - if execute == EX_READ_MAP_HEADER: - if typ != TYPE_MAP: - raise ValueError("Expected map") - return n - # TODO should we eliminate the recursion? - if typ == TYPE_ARRAY: - if execute == EX_SKIP: - for i in xrange(n): - # TODO check whether we need to call `list_hook` - self._unpack(EX_SKIP) - return - ret = newlist_hint(n) - for i in xrange(n): - ret.append(self._unpack(EX_CONSTRUCT)) - if self._list_hook is not None: - ret = self._list_hook(ret) - # TODO is the interaction between `list_hook` and `use_list` ok? - return ret if self._use_list else tuple(ret) - if typ == TYPE_MAP: - if execute == EX_SKIP: - for i in xrange(n): - # TODO check whether we need to call hooks - self._unpack(EX_SKIP) - self._unpack(EX_SKIP) - return - if self._object_pairs_hook is not None: - ret = self._object_pairs_hook( - (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) - for _ in xrange(n) - ) - else: - ret = {} - for _ in xrange(n): - key = self._unpack(EX_CONSTRUCT) - if self._strict_map_key and type(key) not in (unicode, bytes): - raise ValueError( - "%s is not allowed for map key" % str(type(key)) - ) - if not PY2 and type(key) is str: - key = sys.intern(key) - ret[key] = self._unpack(EX_CONSTRUCT) - if self._object_hook is not None: - ret = self._object_hook(ret) - return ret - if execute == EX_SKIP: - return - if typ == TYPE_RAW: - if self._raw: - obj = bytes(obj) - else: - obj = obj.decode("utf_8", self._unicode_errors) - return obj - if typ == TYPE_BIN: - return bytes(obj) - if typ == TYPE_EXT: - if n == -1: # timestamp - ts = Timestamp.from_bytes(bytes(obj)) - if self._timestamp == 1: - return ts.to_unix() - elif self._timestamp == 2: - return ts.to_unix_nano() - elif self._timestamp == 3: - return ts.to_datetime() - else: - return ts - else: - return self._ext_hook(n, bytes(obj)) - assert typ == TYPE_IMMEDIATE - return obj - - def __iter__(self): - return self - - def __next__(self): - try: - ret = self._unpack(EX_CONSTRUCT) - self._consume() - return ret - except OutOfData: - self._consume() - raise StopIteration - except RecursionError: - raise StackError - - next = __next__ - - def skip(self): - self._unpack(EX_SKIP) - self._consume() - - def unpack(self): - try: - ret = self._unpack(EX_CONSTRUCT) - except RecursionError: - raise StackError - self._consume() - return ret - - def read_array_header(self): - ret = self._unpack(EX_READ_ARRAY_HEADER) - self._consume() - return ret - - def read_map_header(self): - ret = self._unpack(EX_READ_MAP_HEADER) - self._consume() - return ret - - def tell(self): - return self._stream_offset - - -class Packer(object): - """ - MessagePack Packer - - Usage:: - - packer = Packer() - astream.write(packer.pack(a)) - astream.write(packer.pack(b)) - - Packer's constructor has some keyword arguments: - - :param callable default: - Convert user type to builtin type that Packer supports. - See also simplejson's document. - - :param bool use_single_float: - Use single precision float type for float. (default: False) - - :param bool autoreset: - Reset buffer after each pack and return its content as `bytes`. (default: True). - If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. - - :param bool use_bin_type: - Use bin type introduced in msgpack spec 2.0 for bytes. - It also enables str8 type for unicode. (default: True) - - :param bool strict_types: - If set to true, types will be checked to be exact. Derived classes - from serializable types will not be serialized and will be - treated as unsupported type and forwarded to default. - Additionally tuples will not be serialized as lists. - This is useful when trying to implement accurate serialization - for python types. - - :param bool datetime: - If set to true, datetime with tzinfo is packed into Timestamp type. - Note that the tzinfo is stripped in the timestamp. - You can get UTC datetime with `timestamp=3` option of the Unpacker. - (Python 2 is not supported). - - :param str unicode_errors: - The error handler for encoding unicode. (default: 'strict') - DO NOT USE THIS!! This option is kept for very specific usage. - - Example of streaming deserialize from file-like object:: - - unpacker = Unpacker(file_like) - for o in unpacker: - process(o) - - Example of streaming deserialize from socket:: - - unpacker = Unpacker() - while True: - buf = sock.recv(1024**2) - if not buf: - break - unpacker.feed(buf) - for o in unpacker: - process(o) - - Raises ``ExtraData`` when *packed* contains extra bytes. - Raises ``OutOfData`` when *packed* is incomplete. - Raises ``FormatError`` when *packed* is not valid msgpack. - Raises ``StackError`` when *packed* contains too nested. - Other exceptions can be raised during unpacking. - """ - - def __init__( - self, - default=None, - use_single_float=False, - autoreset=True, - use_bin_type=True, - strict_types=False, - datetime=False, - unicode_errors=None, - ): - self._strict_types = strict_types - self._use_float = use_single_float - self._autoreset = autoreset - self._use_bin_type = use_bin_type - self._buffer = StringIO() - if PY2 and datetime: - raise ValueError("datetime is not supported in Python 2") - self._datetime = bool(datetime) - self._unicode_errors = unicode_errors or "strict" - if default is not None: - if not callable(default): - raise TypeError("default must be callable") - self._default = default - - def _pack( - self, - obj, - nest_limit=DEFAULT_RECURSE_LIMIT, - check=isinstance, - check_type_strict=_check_type_strict, - ): - default_used = False - if self._strict_types: - check = check_type_strict - list_types = list - else: - list_types = (list, tuple) - while True: - if nest_limit < 0: - raise ValueError("recursion limit exceeded") - if obj is None: - return self._buffer.write(b"\xc0") - if check(obj, bool): - if obj: - return self._buffer.write(b"\xc3") - return self._buffer.write(b"\xc2") - if check(obj, int_types): - if 0 <= obj < 0x80: - return self._buffer.write(struct.pack("B", obj)) - if -0x20 <= obj < 0: - return self._buffer.write(struct.pack("b", obj)) - if 0x80 <= obj <= 0xFF: - return self._buffer.write(struct.pack("BB", 0xCC, obj)) - if -0x80 <= obj < 0: - return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) - if 0xFF < obj <= 0xFFFF: - return self._buffer.write(struct.pack(">BH", 0xCD, obj)) - if -0x8000 <= obj < -0x80: - return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) - if 0xFFFF < obj <= 0xFFFFFFFF: - return self._buffer.write(struct.pack(">BI", 0xCE, obj)) - if -0x80000000 <= obj < -0x8000: - return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) - if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: - return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) - if -0x8000000000000000 <= obj < -0x80000000: - return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) - if not default_used and self._default is not None: - obj = self._default(obj) - default_used = True - continue - raise OverflowError("Integer value out of range") - if check(obj, (bytes, bytearray)): - n = len(obj) - if n >= 2**32: - raise ValueError("%s is too large" % type(obj).__name__) - self._pack_bin_header(n) - return self._buffer.write(obj) - if check(obj, unicode): - obj = obj.encode("utf-8", self._unicode_errors) - n = len(obj) - if n >= 2**32: - raise ValueError("String is too large") - self._pack_raw_header(n) - return self._buffer.write(obj) - if check(obj, memoryview): - n = obj.nbytes - if n >= 2**32: - raise ValueError("Memoryview is too large") - self._pack_bin_header(n) - return self._buffer.write(obj) - if check(obj, float): - if self._use_float: - return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) - return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) - if check(obj, (ExtType, Timestamp)): - if check(obj, Timestamp): - code = -1 - data = obj.to_bytes() - else: - code = obj.code - data = obj.data - assert isinstance(code, int) - assert isinstance(data, bytes) - L = len(data) - if L == 1: - self._buffer.write(b"\xd4") - elif L == 2: - self._buffer.write(b"\xd5") - elif L == 4: - self._buffer.write(b"\xd6") - elif L == 8: - self._buffer.write(b"\xd7") - elif L == 16: - self._buffer.write(b"\xd8") - elif L <= 0xFF: - self._buffer.write(struct.pack(">BB", 0xC7, L)) - elif L <= 0xFFFF: - self._buffer.write(struct.pack(">BH", 0xC8, L)) - else: - self._buffer.write(struct.pack(">BI", 0xC9, L)) - self._buffer.write(struct.pack("b", code)) - self._buffer.write(data) - return - if check(obj, list_types): - n = len(obj) - self._pack_array_header(n) - for i in xrange(n): - self._pack(obj[i], nest_limit - 1) - return - if check(obj, dict): - return self._pack_map_pairs( - len(obj), dict_iteritems(obj), nest_limit - 1 - ) - - if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: - obj = Timestamp.from_datetime(obj) - default_used = 1 - continue - - if not default_used and self._default is not None: - obj = self._default(obj) - default_used = 1 - continue - - if self._datetime and check(obj, _DateTime): - raise ValueError("Cannot serialize %r where tzinfo=None" % (obj,)) - - raise TypeError("Cannot serialize %r" % (obj,)) - - def pack(self, obj): - try: - self._pack(obj) - except: - self._buffer = StringIO() # force reset - raise - if self._autoreset: - ret = self._buffer.getvalue() - self._buffer = StringIO() - return ret - - def pack_map_pairs(self, pairs): - self._pack_map_pairs(len(pairs), pairs) - if self._autoreset: - ret = self._buffer.getvalue() - self._buffer = StringIO() - return ret - - def pack_array_header(self, n): - if n >= 2**32: - raise ValueError - self._pack_array_header(n) - if self._autoreset: - ret = self._buffer.getvalue() - self._buffer = StringIO() - return ret - - def pack_map_header(self, n): - if n >= 2**32: - raise ValueError - self._pack_map_header(n) - if self._autoreset: - ret = self._buffer.getvalue() - self._buffer = StringIO() - return ret - - def pack_ext_type(self, typecode, data): - if not isinstance(typecode, int): - raise TypeError("typecode must have int type.") - if not 0 <= typecode <= 127: - raise ValueError("typecode should be 0-127") - if not isinstance(data, bytes): - raise TypeError("data must have bytes type") - L = len(data) - if L > 0xFFFFFFFF: - raise ValueError("Too large data") - if L == 1: - self._buffer.write(b"\xd4") - elif L == 2: - self._buffer.write(b"\xd5") - elif L == 4: - self._buffer.write(b"\xd6") - elif L == 8: - self._buffer.write(b"\xd7") - elif L == 16: - self._buffer.write(b"\xd8") - elif L <= 0xFF: - self._buffer.write(b"\xc7" + struct.pack("B", L)) - elif L <= 0xFFFF: - self._buffer.write(b"\xc8" + struct.pack(">H", L)) - else: - self._buffer.write(b"\xc9" + struct.pack(">I", L)) - self._buffer.write(struct.pack("B", typecode)) - self._buffer.write(data) - - def _pack_array_header(self, n): - if n <= 0x0F: - return self._buffer.write(struct.pack("B", 0x90 + n)) - if n <= 0xFFFF: - return self._buffer.write(struct.pack(">BH", 0xDC, n)) - if n <= 0xFFFFFFFF: - return self._buffer.write(struct.pack(">BI", 0xDD, n)) - raise ValueError("Array is too large") - - def _pack_map_header(self, n): - if n <= 0x0F: - return self._buffer.write(struct.pack("B", 0x80 + n)) - if n <= 0xFFFF: - return self._buffer.write(struct.pack(">BH", 0xDE, n)) - if n <= 0xFFFFFFFF: - return self._buffer.write(struct.pack(">BI", 0xDF, n)) - raise ValueError("Dict is too large") - - def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): - self._pack_map_header(n) - for (k, v) in pairs: - self._pack(k, nest_limit - 1) - self._pack(v, nest_limit - 1) - - def _pack_raw_header(self, n): - if n <= 0x1F: - self._buffer.write(struct.pack("B", 0xA0 + n)) - elif self._use_bin_type and n <= 0xFF: - self._buffer.write(struct.pack(">BB", 0xD9, n)) - elif n <= 0xFFFF: - self._buffer.write(struct.pack(">BH", 0xDA, n)) - elif n <= 0xFFFFFFFF: - self._buffer.write(struct.pack(">BI", 0xDB, n)) - else: - raise ValueError("Raw is too large") - - def _pack_bin_header(self, n): - if not self._use_bin_type: - return self._pack_raw_header(n) - elif n <= 0xFF: - return self._buffer.write(struct.pack(">BB", 0xC4, n)) - elif n <= 0xFFFF: - return self._buffer.write(struct.pack(">BH", 0xC5, n)) - elif n <= 0xFFFFFFFF: - return self._buffer.write(struct.pack(">BI", 0xC6, n)) - else: - raise ValueError("Bin is too large") - - def bytes(self): - """Return internal buffer contents as bytes object""" - return self._buffer.getvalue() - - def reset(self): - """Reset internal buffer. - - This method is useful only when autoreset=False. - """ - self._buffer = StringIO() - - def getbuffer(self): - """Return view of internal buffer.""" - if USING_STRINGBUILDER or PY2: - return memoryview(self.bytes()) - else: - return self._buffer.getbuffer() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py deleted file mode 100644 index 3551bc2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py +++ /dev/null @@ -1,26 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -__all__ = [ - "__title__", - "__summary__", - "__uri__", - "__version__", - "__author__", - "__email__", - "__license__", - "__copyright__", -] - -__title__ = "packaging" -__summary__ = "Core utilities for Python packages" -__uri__ = "https://github.com/pypa/packaging" - -__version__ = "21.3" - -__author__ = "Donald Stufft and individual contributors" -__email__ = "donald@stufft.io" - -__license__ = "BSD-2-Clause or Apache-2.0" -__copyright__ = "2014-2019 %s" % __author__ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py deleted file mode 100644 index 3c50c5d..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -from .__about__ import ( - __author__, - __copyright__, - __email__, - __license__, - __summary__, - __title__, - __uri__, - __version__, -) - -__all__ = [ - "__title__", - "__summary__", - "__uri__", - "__version__", - "__author__", - "__email__", - "__license__", - "__copyright__", -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc deleted file mode 100644 index 1d7d48b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9f6b336..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc deleted file mode 100644 index 1ff262b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc deleted file mode 100644 index ac7236d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc deleted file mode 100644 index 9cda0e3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc deleted file mode 100644 index c03ae7a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc deleted file mode 100644 index ba675de..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc deleted file mode 100644 index c3bba2a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc deleted file mode 100644 index f354b93..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 428b0b8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc deleted file mode 100644 index ec5eca2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py deleted file mode 100644 index 4c379aa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py +++ /dev/null @@ -1,301 +0,0 @@ -import collections -import functools -import os -import re -import struct -import sys -import warnings -from typing import IO, Dict, Iterator, NamedTuple, Optional, Tuple - - -# Python does not provide platform information at sufficient granularity to -# identify the architecture of the running executable in some cases, so we -# determine it dynamically by reading the information from the running -# process. This only applies on Linux, which uses the ELF format. -class _ELFFileHeader: - # https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header - class _InvalidELFFileHeader(ValueError): - """ - An invalid ELF file header was found. - """ - - ELF_MAGIC_NUMBER = 0x7F454C46 - ELFCLASS32 = 1 - ELFCLASS64 = 2 - ELFDATA2LSB = 1 - ELFDATA2MSB = 2 - EM_386 = 3 - EM_S390 = 22 - EM_ARM = 40 - EM_X86_64 = 62 - EF_ARM_ABIMASK = 0xFF000000 - EF_ARM_ABI_VER5 = 0x05000000 - EF_ARM_ABI_FLOAT_HARD = 0x00000400 - - def __init__(self, file: IO[bytes]) -> None: - def unpack(fmt: str) -> int: - try: - data = file.read(struct.calcsize(fmt)) - result: Tuple[int, ...] = struct.unpack(fmt, data) - except struct.error: - raise _ELFFileHeader._InvalidELFFileHeader() - return result[0] - - self.e_ident_magic = unpack(">I") - if self.e_ident_magic != self.ELF_MAGIC_NUMBER: - raise _ELFFileHeader._InvalidELFFileHeader() - self.e_ident_class = unpack("B") - if self.e_ident_class not in {self.ELFCLASS32, self.ELFCLASS64}: - raise _ELFFileHeader._InvalidELFFileHeader() - self.e_ident_data = unpack("B") - if self.e_ident_data not in {self.ELFDATA2LSB, self.ELFDATA2MSB}: - raise _ELFFileHeader._InvalidELFFileHeader() - self.e_ident_version = unpack("B") - self.e_ident_osabi = unpack("B") - self.e_ident_abiversion = unpack("B") - self.e_ident_pad = file.read(7) - format_h = "H" - format_i = "I" - format_q = "Q" - format_p = format_i if self.e_ident_class == self.ELFCLASS32 else format_q - self.e_type = unpack(format_h) - self.e_machine = unpack(format_h) - self.e_version = unpack(format_i) - self.e_entry = unpack(format_p) - self.e_phoff = unpack(format_p) - self.e_shoff = unpack(format_p) - self.e_flags = unpack(format_i) - self.e_ehsize = unpack(format_h) - self.e_phentsize = unpack(format_h) - self.e_phnum = unpack(format_h) - self.e_shentsize = unpack(format_h) - self.e_shnum = unpack(format_h) - self.e_shstrndx = unpack(format_h) - - -def _get_elf_header() -> Optional[_ELFFileHeader]: - try: - with open(sys.executable, "rb") as f: - elf_header = _ELFFileHeader(f) - except (OSError, TypeError, _ELFFileHeader._InvalidELFFileHeader): - return None - return elf_header - - -def _is_linux_armhf() -> bool: - # hard-float ABI can be detected from the ELF header of the running - # process - # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf - elf_header = _get_elf_header() - if elf_header is None: - return False - result = elf_header.e_ident_class == elf_header.ELFCLASS32 - result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB - result &= elf_header.e_machine == elf_header.EM_ARM - result &= ( - elf_header.e_flags & elf_header.EF_ARM_ABIMASK - ) == elf_header.EF_ARM_ABI_VER5 - result &= ( - elf_header.e_flags & elf_header.EF_ARM_ABI_FLOAT_HARD - ) == elf_header.EF_ARM_ABI_FLOAT_HARD - return result - - -def _is_linux_i686() -> bool: - elf_header = _get_elf_header() - if elf_header is None: - return False - result = elf_header.e_ident_class == elf_header.ELFCLASS32 - result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB - result &= elf_header.e_machine == elf_header.EM_386 - return result - - -def _have_compatible_abi(arch: str) -> bool: - if arch == "armv7l": - return _is_linux_armhf() - if arch == "i686": - return _is_linux_i686() - return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"} - - -# If glibc ever changes its major version, we need to know what the last -# minor version was, so we can build the complete list of all versions. -# For now, guess what the highest minor version might be, assume it will -# be 50 for testing. Once this actually happens, update the dictionary -# with the actual value. -_LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50) - - -class _GLibCVersion(NamedTuple): - major: int - minor: int - - -def _glibc_version_string_confstr() -> Optional[str]: - """ - Primary implementation of glibc_version_string using os.confstr. - """ - # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely - # to be broken or missing. This strategy is used in the standard library - # platform module. - # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 - try: - # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17". - version_string = os.confstr("CS_GNU_LIBC_VERSION") - assert version_string is not None - _, version = version_string.split() - except (AssertionError, AttributeError, OSError, ValueError): - # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... - return None - return version - - -def _glibc_version_string_ctypes() -> Optional[str]: - """ - Fallback implementation of glibc_version_string using ctypes. - """ - try: - import ctypes - except ImportError: - return None - - # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen - # manpage says, "If filename is NULL, then the returned handle is for the - # main program". This way we can let the linker do the work to figure out - # which libc our process is actually using. - # - # We must also handle the special case where the executable is not a - # dynamically linked executable. This can occur when using musl libc, - # for example. In this situation, dlopen() will error, leading to an - # OSError. Interestingly, at least in the case of musl, there is no - # errno set on the OSError. The single string argument used to construct - # OSError comes from libc itself and is therefore not portable to - # hard code here. In any case, failure to call dlopen() means we - # can proceed, so we bail on our attempt. - try: - process_namespace = ctypes.CDLL(None) - except OSError: - return None - - try: - gnu_get_libc_version = process_namespace.gnu_get_libc_version - except AttributeError: - # Symbol doesn't exist -> therefore, we are not linked to - # glibc. - return None - - # Call gnu_get_libc_version, which returns a string like "2.5" - gnu_get_libc_version.restype = ctypes.c_char_p - version_str: str = gnu_get_libc_version() - # py2 / py3 compatibility: - if not isinstance(version_str, str): - version_str = version_str.decode("ascii") - - return version_str - - -def _glibc_version_string() -> Optional[str]: - """Returns glibc version string, or None if not using glibc.""" - return _glibc_version_string_confstr() or _glibc_version_string_ctypes() - - -def _parse_glibc_version(version_str: str) -> Tuple[int, int]: - """Parse glibc version. - - We use a regexp instead of str.split because we want to discard any - random junk that might come after the minor version -- this might happen - in patched/forked versions of glibc (e.g. Linaro's version of glibc - uses version strings like "2.20-2014.11"). See gh-3588. - """ - m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) - if not m: - warnings.warn( - "Expected glibc version with 2 components major.minor," - " got: %s" % version_str, - RuntimeWarning, - ) - return -1, -1 - return int(m.group("major")), int(m.group("minor")) - - -@functools.lru_cache() -def _get_glibc_version() -> Tuple[int, int]: - version_str = _glibc_version_string() - if version_str is None: - return (-1, -1) - return _parse_glibc_version(version_str) - - -# From PEP 513, PEP 600 -def _is_compatible(name: str, arch: str, version: _GLibCVersion) -> bool: - sys_glibc = _get_glibc_version() - if sys_glibc < version: - return False - # Check for presence of _manylinux module. - try: - import _manylinux # noqa - except ImportError: - return True - if hasattr(_manylinux, "manylinux_compatible"): - result = _manylinux.manylinux_compatible(version[0], version[1], arch) - if result is not None: - return bool(result) - return True - if version == _GLibCVersion(2, 5): - if hasattr(_manylinux, "manylinux1_compatible"): - return bool(_manylinux.manylinux1_compatible) - if version == _GLibCVersion(2, 12): - if hasattr(_manylinux, "manylinux2010_compatible"): - return bool(_manylinux.manylinux2010_compatible) - if version == _GLibCVersion(2, 17): - if hasattr(_manylinux, "manylinux2014_compatible"): - return bool(_manylinux.manylinux2014_compatible) - return True - - -_LEGACY_MANYLINUX_MAP = { - # CentOS 7 w/ glibc 2.17 (PEP 599) - (2, 17): "manylinux2014", - # CentOS 6 w/ glibc 2.12 (PEP 571) - (2, 12): "manylinux2010", - # CentOS 5 w/ glibc 2.5 (PEP 513) - (2, 5): "manylinux1", -} - - -def platform_tags(linux: str, arch: str) -> Iterator[str]: - if not _have_compatible_abi(arch): - return - # Oldest glibc to be supported regardless of architecture is (2, 17). - too_old_glibc2 = _GLibCVersion(2, 16) - if arch in {"x86_64", "i686"}: - # On x86/i686 also oldest glibc to be supported is (2, 5). - too_old_glibc2 = _GLibCVersion(2, 4) - current_glibc = _GLibCVersion(*_get_glibc_version()) - glibc_max_list = [current_glibc] - # We can assume compatibility across glibc major versions. - # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 - # - # Build a list of maximum glibc versions so that we can - # output the canonical list of all glibc from current_glibc - # down to too_old_glibc2, including all intermediary versions. - for glibc_major in range(current_glibc.major - 1, 1, -1): - glibc_minor = _LAST_GLIBC_MINOR[glibc_major] - glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) - for glibc_max in glibc_max_list: - if glibc_max.major == too_old_glibc2.major: - min_minor = too_old_glibc2.minor - else: - # For other glibc major versions oldest supported is (x, 0). - min_minor = -1 - for glibc_minor in range(glibc_max.minor, min_minor, -1): - glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) - tag = "manylinux_{}_{}".format(*glibc_version) - if _is_compatible(tag, arch, glibc_version): - yield linux.replace("linux", tag) - # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. - if glibc_version in _LEGACY_MANYLINUX_MAP: - legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] - if _is_compatible(legacy_tag, arch, glibc_version): - yield linux.replace("linux", legacy_tag) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py deleted file mode 100644 index 8ac3059..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py +++ /dev/null @@ -1,136 +0,0 @@ -"""PEP 656 support. - -This module implements logic to detect if the currently running Python is -linked against musl, and what musl version is used. -""" - -import contextlib -import functools -import operator -import os -import re -import struct -import subprocess -import sys -from typing import IO, Iterator, NamedTuple, Optional, Tuple - - -def _read_unpacked(f: IO[bytes], fmt: str) -> Tuple[int, ...]: - return struct.unpack(fmt, f.read(struct.calcsize(fmt))) - - -def _parse_ld_musl_from_elf(f: IO[bytes]) -> Optional[str]: - """Detect musl libc location by parsing the Python executable. - - Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca - ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html - """ - f.seek(0) - try: - ident = _read_unpacked(f, "16B") - except struct.error: - return None - if ident[:4] != tuple(b"\x7fELF"): # Invalid magic, not ELF. - return None - f.seek(struct.calcsize("HHI"), 1) # Skip file type, machine, and version. - - try: - # e_fmt: Format for program header. - # p_fmt: Format for section header. - # p_idx: Indexes to find p_type, p_offset, and p_filesz. - e_fmt, p_fmt, p_idx = { - 1: ("IIIIHHH", "IIIIIIII", (0, 1, 4)), # 32-bit. - 2: ("QQQIHHH", "IIQQQQQQ", (0, 2, 5)), # 64-bit. - }[ident[4]] - except KeyError: - return None - else: - p_get = operator.itemgetter(*p_idx) - - # Find the interpreter section and return its content. - try: - _, e_phoff, _, _, _, e_phentsize, e_phnum = _read_unpacked(f, e_fmt) - except struct.error: - return None - for i in range(e_phnum + 1): - f.seek(e_phoff + e_phentsize * i) - try: - p_type, p_offset, p_filesz = p_get(_read_unpacked(f, p_fmt)) - except struct.error: - return None - if p_type != 3: # Not PT_INTERP. - continue - f.seek(p_offset) - interpreter = os.fsdecode(f.read(p_filesz)).strip("\0") - if "musl" not in interpreter: - return None - return interpreter - return None - - -class _MuslVersion(NamedTuple): - major: int - minor: int - - -def _parse_musl_version(output: str) -> Optional[_MuslVersion]: - lines = [n for n in (n.strip() for n in output.splitlines()) if n] - if len(lines) < 2 or lines[0][:4] != "musl": - return None - m = re.match(r"Version (\d+)\.(\d+)", lines[1]) - if not m: - return None - return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) - - -@functools.lru_cache() -def _get_musl_version(executable: str) -> Optional[_MuslVersion]: - """Detect currently-running musl runtime version. - - This is done by checking the specified executable's dynamic linking - information, and invoking the loader to parse its output for a version - string. If the loader is musl, the output would be something like:: - - musl libc (x86_64) - Version 1.2.2 - Dynamic Program Loader - """ - with contextlib.ExitStack() as stack: - try: - f = stack.enter_context(open(executable, "rb")) - except OSError: - return None - ld = _parse_ld_musl_from_elf(f) - if not ld: - return None - proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True) - return _parse_musl_version(proc.stderr) - - -def platform_tags(arch: str) -> Iterator[str]: - """Generate musllinux tags compatible to the current platform. - - :param arch: Should be the part of platform tag after the ``linux_`` - prefix, e.g. ``x86_64``. The ``linux_`` prefix is assumed as a - prerequisite for the current platform to be musllinux-compatible. - - :returns: An iterator of compatible musllinux tags. - """ - sys_musl = _get_musl_version(sys.executable) - if sys_musl is None: # Python not dynamically linked against musl. - return - for minor in range(sys_musl.minor, -1, -1): - yield f"musllinux_{sys_musl.major}_{minor}_{arch}" - - -if __name__ == "__main__": # pragma: no cover - import sysconfig - - plat = sysconfig.get_platform() - assert plat.startswith("linux-"), "not linux" - - print("plat:", plat) - print("musl:", _get_musl_version(sys.executable)) - print("tags:", end=" ") - for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): - print(t, end="\n ") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py deleted file mode 100644 index 90a6465..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py +++ /dev/null @@ -1,61 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - - -class InfinityType: - def __repr__(self) -> str: - return "Infinity" - - def __hash__(self) -> int: - return hash(repr(self)) - - def __lt__(self, other: object) -> bool: - return False - - def __le__(self, other: object) -> bool: - return False - - def __eq__(self, other: object) -> bool: - return isinstance(other, self.__class__) - - def __gt__(self, other: object) -> bool: - return True - - def __ge__(self, other: object) -> bool: - return True - - def __neg__(self: object) -> "NegativeInfinityType": - return NegativeInfinity - - -Infinity = InfinityType() - - -class NegativeInfinityType: - def __repr__(self) -> str: - return "-Infinity" - - def __hash__(self) -> int: - return hash(repr(self)) - - def __lt__(self, other: object) -> bool: - return True - - def __le__(self, other: object) -> bool: - return True - - def __eq__(self, other: object) -> bool: - return isinstance(other, self.__class__) - - def __gt__(self, other: object) -> bool: - return False - - def __ge__(self, other: object) -> bool: - return False - - def __neg__(self: object) -> InfinityType: - return Infinity - - -NegativeInfinity = NegativeInfinityType() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py deleted file mode 100644 index 540e7a4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py +++ /dev/null @@ -1,304 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import operator -import os -import platform -import sys -from typing import Any, Callable, Dict, List, Optional, Tuple, Union - -from pip._vendor.pyparsing import ( # noqa: N817 - Forward, - Group, - Literal as L, - ParseException, - ParseResults, - QuotedString, - ZeroOrMore, - stringEnd, - stringStart, -) - -from .specifiers import InvalidSpecifier, Specifier - -__all__ = [ - "InvalidMarker", - "UndefinedComparison", - "UndefinedEnvironmentName", - "Marker", - "default_environment", -] - -Operator = Callable[[str, str], bool] - - -class InvalidMarker(ValueError): - """ - An invalid marker was found, users should refer to PEP 508. - """ - - -class UndefinedComparison(ValueError): - """ - An invalid operation was attempted on a value that doesn't support it. - """ - - -class UndefinedEnvironmentName(ValueError): - """ - A name was attempted to be used that does not exist inside of the - environment. - """ - - -class Node: - def __init__(self, value: Any) -> None: - self.value = value - - def __str__(self) -> str: - return str(self.value) - - def __repr__(self) -> str: - return f"<{self.__class__.__name__}('{self}')>" - - def serialize(self) -> str: - raise NotImplementedError - - -class Variable(Node): - def serialize(self) -> str: - return str(self) - - -class Value(Node): - def serialize(self) -> str: - return f'"{self}"' - - -class Op(Node): - def serialize(self) -> str: - return str(self) - - -VARIABLE = ( - L("implementation_version") - | L("platform_python_implementation") - | L("implementation_name") - | L("python_full_version") - | L("platform_release") - | L("platform_version") - | L("platform_machine") - | L("platform_system") - | L("python_version") - | L("sys_platform") - | L("os_name") - | L("os.name") # PEP-345 - | L("sys.platform") # PEP-345 - | L("platform.version") # PEP-345 - | L("platform.machine") # PEP-345 - | L("platform.python_implementation") # PEP-345 - | L("python_implementation") # undocumented setuptools legacy - | L("extra") # PEP-508 -) -ALIASES = { - "os.name": "os_name", - "sys.platform": "sys_platform", - "platform.version": "platform_version", - "platform.machine": "platform_machine", - "platform.python_implementation": "platform_python_implementation", - "python_implementation": "platform_python_implementation", -} -VARIABLE.setParseAction(lambda s, l, t: Variable(ALIASES.get(t[0], t[0]))) - -VERSION_CMP = ( - L("===") | L("==") | L(">=") | L("<=") | L("!=") | L("~=") | L(">") | L("<") -) - -MARKER_OP = VERSION_CMP | L("not in") | L("in") -MARKER_OP.setParseAction(lambda s, l, t: Op(t[0])) - -MARKER_VALUE = QuotedString("'") | QuotedString('"') -MARKER_VALUE.setParseAction(lambda s, l, t: Value(t[0])) - -BOOLOP = L("and") | L("or") - -MARKER_VAR = VARIABLE | MARKER_VALUE - -MARKER_ITEM = Group(MARKER_VAR + MARKER_OP + MARKER_VAR) -MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0])) - -LPAREN = L("(").suppress() -RPAREN = L(")").suppress() - -MARKER_EXPR = Forward() -MARKER_ATOM = MARKER_ITEM | Group(LPAREN + MARKER_EXPR + RPAREN) -MARKER_EXPR << MARKER_ATOM + ZeroOrMore(BOOLOP + MARKER_EXPR) - -MARKER = stringStart + MARKER_EXPR + stringEnd - - -def _coerce_parse_result(results: Union[ParseResults, List[Any]]) -> List[Any]: - if isinstance(results, ParseResults): - return [_coerce_parse_result(i) for i in results] - else: - return results - - -def _format_marker( - marker: Union[List[str], Tuple[Node, ...], str], first: Optional[bool] = True -) -> str: - - assert isinstance(marker, (list, tuple, str)) - - # Sometimes we have a structure like [[...]] which is a single item list - # where the single item is itself it's own list. In that case we want skip - # the rest of this function so that we don't get extraneous () on the - # outside. - if ( - isinstance(marker, list) - and len(marker) == 1 - and isinstance(marker[0], (list, tuple)) - ): - return _format_marker(marker[0]) - - if isinstance(marker, list): - inner = (_format_marker(m, first=False) for m in marker) - if first: - return " ".join(inner) - else: - return "(" + " ".join(inner) + ")" - elif isinstance(marker, tuple): - return " ".join([m.serialize() for m in marker]) - else: - return marker - - -_operators: Dict[str, Operator] = { - "in": lambda lhs, rhs: lhs in rhs, - "not in": lambda lhs, rhs: lhs not in rhs, - "<": operator.lt, - "<=": operator.le, - "==": operator.eq, - "!=": operator.ne, - ">=": operator.ge, - ">": operator.gt, -} - - -def _eval_op(lhs: str, op: Op, rhs: str) -> bool: - try: - spec = Specifier("".join([op.serialize(), rhs])) - except InvalidSpecifier: - pass - else: - return spec.contains(lhs) - - oper: Optional[Operator] = _operators.get(op.serialize()) - if oper is None: - raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") - - return oper(lhs, rhs) - - -class Undefined: - pass - - -_undefined = Undefined() - - -def _get_env(environment: Dict[str, str], name: str) -> str: - value: Union[str, Undefined] = environment.get(name, _undefined) - - if isinstance(value, Undefined): - raise UndefinedEnvironmentName( - f"{name!r} does not exist in evaluation environment." - ) - - return value - - -def _evaluate_markers(markers: List[Any], environment: Dict[str, str]) -> bool: - groups: List[List[bool]] = [[]] - - for marker in markers: - assert isinstance(marker, (list, tuple, str)) - - if isinstance(marker, list): - groups[-1].append(_evaluate_markers(marker, environment)) - elif isinstance(marker, tuple): - lhs, op, rhs = marker - - if isinstance(lhs, Variable): - lhs_value = _get_env(environment, lhs.value) - rhs_value = rhs.value - else: - lhs_value = lhs.value - rhs_value = _get_env(environment, rhs.value) - - groups[-1].append(_eval_op(lhs_value, op, rhs_value)) - else: - assert marker in ["and", "or"] - if marker == "or": - groups.append([]) - - return any(all(item) for item in groups) - - -def format_full_version(info: "sys._version_info") -> str: - version = "{0.major}.{0.minor}.{0.micro}".format(info) - kind = info.releaselevel - if kind != "final": - version += kind[0] + str(info.serial) - return version - - -def default_environment() -> Dict[str, str]: - iver = format_full_version(sys.implementation.version) - implementation_name = sys.implementation.name - return { - "implementation_name": implementation_name, - "implementation_version": iver, - "os_name": os.name, - "platform_machine": platform.machine(), - "platform_release": platform.release(), - "platform_system": platform.system(), - "platform_version": platform.version(), - "python_full_version": platform.python_version(), - "platform_python_implementation": platform.python_implementation(), - "python_version": ".".join(platform.python_version_tuple()[:2]), - "sys_platform": sys.platform, - } - - -class Marker: - def __init__(self, marker: str) -> None: - try: - self._markers = _coerce_parse_result(MARKER.parseString(marker)) - except ParseException as e: - raise InvalidMarker( - f"Invalid marker: {marker!r}, parse error at " - f"{marker[e.loc : e.loc + 8]!r}" - ) - - def __str__(self) -> str: - return _format_marker(self._markers) - - def __repr__(self) -> str: - return f"" - - def evaluate(self, environment: Optional[Dict[str, str]] = None) -> bool: - """Evaluate a marker. - - Return the boolean from evaluating the given marker against the - environment. environment is an optional argument to override all or - part of the determined environment. - - The environment is determined from the current Python process. - """ - current_environment = default_environment() - if environment is not None: - current_environment.update(environment) - - return _evaluate_markers(self._markers, current_environment) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py deleted file mode 100644 index 1eab7dd..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py +++ /dev/null @@ -1,146 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import re -import string -import urllib.parse -from typing import List, Optional as TOptional, Set - -from pip._vendor.pyparsing import ( # noqa - Combine, - Literal as L, - Optional, - ParseException, - Regex, - Word, - ZeroOrMore, - originalTextFor, - stringEnd, - stringStart, -) - -from .markers import MARKER_EXPR, Marker -from .specifiers import LegacySpecifier, Specifier, SpecifierSet - - -class InvalidRequirement(ValueError): - """ - An invalid requirement was found, users should refer to PEP 508. - """ - - -ALPHANUM = Word(string.ascii_letters + string.digits) - -LBRACKET = L("[").suppress() -RBRACKET = L("]").suppress() -LPAREN = L("(").suppress() -RPAREN = L(")").suppress() -COMMA = L(",").suppress() -SEMICOLON = L(";").suppress() -AT = L("@").suppress() - -PUNCTUATION = Word("-_.") -IDENTIFIER_END = ALPHANUM | (ZeroOrMore(PUNCTUATION) + ALPHANUM) -IDENTIFIER = Combine(ALPHANUM + ZeroOrMore(IDENTIFIER_END)) - -NAME = IDENTIFIER("name") -EXTRA = IDENTIFIER - -URI = Regex(r"[^ ]+")("url") -URL = AT + URI - -EXTRAS_LIST = EXTRA + ZeroOrMore(COMMA + EXTRA) -EXTRAS = (LBRACKET + Optional(EXTRAS_LIST) + RBRACKET)("extras") - -VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) -VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE) - -VERSION_ONE = VERSION_PEP440 ^ VERSION_LEGACY -VERSION_MANY = Combine( - VERSION_ONE + ZeroOrMore(COMMA + VERSION_ONE), joinString=",", adjacent=False -)("_raw_spec") -_VERSION_SPEC = Optional((LPAREN + VERSION_MANY + RPAREN) | VERSION_MANY) -_VERSION_SPEC.setParseAction(lambda s, l, t: t._raw_spec or "") - -VERSION_SPEC = originalTextFor(_VERSION_SPEC)("specifier") -VERSION_SPEC.setParseAction(lambda s, l, t: t[1]) - -MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker") -MARKER_EXPR.setParseAction( - lambda s, l, t: Marker(s[t._original_start : t._original_end]) -) -MARKER_SEPARATOR = SEMICOLON -MARKER = MARKER_SEPARATOR + MARKER_EXPR - -VERSION_AND_MARKER = VERSION_SPEC + Optional(MARKER) -URL_AND_MARKER = URL + Optional(MARKER) - -NAMED_REQUIREMENT = NAME + Optional(EXTRAS) + (URL_AND_MARKER | VERSION_AND_MARKER) - -REQUIREMENT = stringStart + NAMED_REQUIREMENT + stringEnd -# pyparsing isn't thread safe during initialization, so we do it eagerly, see -# issue #104 -REQUIREMENT.parseString("x[]") - - -class Requirement: - """Parse a requirement. - - Parse a given requirement string into its parts, such as name, specifier, - URL, and extras. Raises InvalidRequirement on a badly-formed requirement - string. - """ - - # TODO: Can we test whether something is contained within a requirement? - # If so how do we do that? Do we need to test against the _name_ of - # the thing as well as the version? What about the markers? - # TODO: Can we normalize the name and extra name? - - def __init__(self, requirement_string: str) -> None: - try: - req = REQUIREMENT.parseString(requirement_string) - except ParseException as e: - raise InvalidRequirement( - f'Parse error at "{ requirement_string[e.loc : e.loc + 8]!r}": {e.msg}' - ) - - self.name: str = req.name - if req.url: - parsed_url = urllib.parse.urlparse(req.url) - if parsed_url.scheme == "file": - if urllib.parse.urlunparse(parsed_url) != req.url: - raise InvalidRequirement("Invalid URL given") - elif not (parsed_url.scheme and parsed_url.netloc) or ( - not parsed_url.scheme and not parsed_url.netloc - ): - raise InvalidRequirement(f"Invalid URL: {req.url}") - self.url: TOptional[str] = req.url - else: - self.url = None - self.extras: Set[str] = set(req.extras.asList() if req.extras else []) - self.specifier: SpecifierSet = SpecifierSet(req.specifier) - self.marker: TOptional[Marker] = req.marker if req.marker else None - - def __str__(self) -> str: - parts: List[str] = [self.name] - - if self.extras: - formatted_extras = ",".join(sorted(self.extras)) - parts.append(f"[{formatted_extras}]") - - if self.specifier: - parts.append(str(self.specifier)) - - if self.url: - parts.append(f"@ {self.url}") - if self.marker: - parts.append(" ") - - if self.marker: - parts.append(f"; {self.marker}") - - return "".join(parts) - - def __repr__(self) -> str: - return f"" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py deleted file mode 100644 index 0e218a6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py +++ /dev/null @@ -1,802 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import abc -import functools -import itertools -import re -import warnings -from typing import ( - Callable, - Dict, - Iterable, - Iterator, - List, - Optional, - Pattern, - Set, - Tuple, - TypeVar, - Union, -) - -from .utils import canonicalize_version -from .version import LegacyVersion, Version, parse - -ParsedVersion = Union[Version, LegacyVersion] -UnparsedVersion = Union[Version, LegacyVersion, str] -VersionTypeVar = TypeVar("VersionTypeVar", bound=UnparsedVersion) -CallableOperator = Callable[[ParsedVersion, str], bool] - - -class InvalidSpecifier(ValueError): - """ - An invalid specifier was found, users should refer to PEP 440. - """ - - -class BaseSpecifier(metaclass=abc.ABCMeta): - @abc.abstractmethod - def __str__(self) -> str: - """ - Returns the str representation of this Specifier like object. This - should be representative of the Specifier itself. - """ - - @abc.abstractmethod - def __hash__(self) -> int: - """ - Returns a hash value for this Specifier like object. - """ - - @abc.abstractmethod - def __eq__(self, other: object) -> bool: - """ - Returns a boolean representing whether or not the two Specifier like - objects are equal. - """ - - @abc.abstractproperty - def prereleases(self) -> Optional[bool]: - """ - Returns whether or not pre-releases as a whole are allowed by this - specifier. - """ - - @prereleases.setter - def prereleases(self, value: bool) -> None: - """ - Sets whether or not pre-releases as a whole are allowed by this - specifier. - """ - - @abc.abstractmethod - def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: - """ - Determines if the given item is contained within this specifier. - """ - - @abc.abstractmethod - def filter( - self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None - ) -> Iterable[VersionTypeVar]: - """ - Takes an iterable of items and filters them so that only items which - are contained within this specifier are allowed in it. - """ - - -class _IndividualSpecifier(BaseSpecifier): - - _operators: Dict[str, str] = {} - _regex: Pattern[str] - - def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: - match = self._regex.search(spec) - if not match: - raise InvalidSpecifier(f"Invalid specifier: '{spec}'") - - self._spec: Tuple[str, str] = ( - match.group("operator").strip(), - match.group("version").strip(), - ) - - # Store whether or not this Specifier should accept prereleases - self._prereleases = prereleases - - def __repr__(self) -> str: - pre = ( - f", prereleases={self.prereleases!r}" - if self._prereleases is not None - else "" - ) - - return f"<{self.__class__.__name__}({str(self)!r}{pre})>" - - def __str__(self) -> str: - return "{}{}".format(*self._spec) - - @property - def _canonical_spec(self) -> Tuple[str, str]: - return self._spec[0], canonicalize_version(self._spec[1]) - - def __hash__(self) -> int: - return hash(self._canonical_spec) - - def __eq__(self, other: object) -> bool: - if isinstance(other, str): - try: - other = self.__class__(str(other)) - except InvalidSpecifier: - return NotImplemented - elif not isinstance(other, self.__class__): - return NotImplemented - - return self._canonical_spec == other._canonical_spec - - def _get_operator(self, op: str) -> CallableOperator: - operator_callable: CallableOperator = getattr( - self, f"_compare_{self._operators[op]}" - ) - return operator_callable - - def _coerce_version(self, version: UnparsedVersion) -> ParsedVersion: - if not isinstance(version, (LegacyVersion, Version)): - version = parse(version) - return version - - @property - def operator(self) -> str: - return self._spec[0] - - @property - def version(self) -> str: - return self._spec[1] - - @property - def prereleases(self) -> Optional[bool]: - return self._prereleases - - @prereleases.setter - def prereleases(self, value: bool) -> None: - self._prereleases = value - - def __contains__(self, item: str) -> bool: - return self.contains(item) - - def contains( - self, item: UnparsedVersion, prereleases: Optional[bool] = None - ) -> bool: - - # Determine if prereleases are to be allowed or not. - if prereleases is None: - prereleases = self.prereleases - - # Normalize item to a Version or LegacyVersion, this allows us to have - # a shortcut for ``"2.0" in Specifier(">=2") - normalized_item = self._coerce_version(item) - - # Determine if we should be supporting prereleases in this specifier - # or not, if we do not support prereleases than we can short circuit - # logic if this version is a prereleases. - if normalized_item.is_prerelease and not prereleases: - return False - - # Actually do the comparison to determine if this item is contained - # within this Specifier or not. - operator_callable: CallableOperator = self._get_operator(self.operator) - return operator_callable(normalized_item, self.version) - - def filter( - self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None - ) -> Iterable[VersionTypeVar]: - - yielded = False - found_prereleases = [] - - kw = {"prereleases": prereleases if prereleases is not None else True} - - # Attempt to iterate over all the values in the iterable and if any of - # them match, yield them. - for version in iterable: - parsed_version = self._coerce_version(version) - - if self.contains(parsed_version, **kw): - # If our version is a prerelease, and we were not set to allow - # prereleases, then we'll store it for later in case nothing - # else matches this specifier. - if parsed_version.is_prerelease and not ( - prereleases or self.prereleases - ): - found_prereleases.append(version) - # Either this is not a prerelease, or we should have been - # accepting prereleases from the beginning. - else: - yielded = True - yield version - - # Now that we've iterated over everything, determine if we've yielded - # any values, and if we have not and we have any prereleases stored up - # then we will go ahead and yield the prereleases. - if not yielded and found_prereleases: - for version in found_prereleases: - yield version - - -class LegacySpecifier(_IndividualSpecifier): - - _regex_str = r""" - (?P(==|!=|<=|>=|<|>)) - \s* - (?P - [^,;\s)]* # Since this is a "legacy" specifier, and the version - # string can be just about anything, we match everything - # except for whitespace, a semi-colon for marker support, - # a closing paren since versions can be enclosed in - # them, and a comma since it's a version separator. - ) - """ - - _regex = re.compile(r"^\s*" + _regex_str + r"\s*$", re.VERBOSE | re.IGNORECASE) - - _operators = { - "==": "equal", - "!=": "not_equal", - "<=": "less_than_equal", - ">=": "greater_than_equal", - "<": "less_than", - ">": "greater_than", - } - - def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: - super().__init__(spec, prereleases) - - warnings.warn( - "Creating a LegacyVersion has been deprecated and will be " - "removed in the next major release", - DeprecationWarning, - ) - - def _coerce_version(self, version: UnparsedVersion) -> LegacyVersion: - if not isinstance(version, LegacyVersion): - version = LegacyVersion(str(version)) - return version - - def _compare_equal(self, prospective: LegacyVersion, spec: str) -> bool: - return prospective == self._coerce_version(spec) - - def _compare_not_equal(self, prospective: LegacyVersion, spec: str) -> bool: - return prospective != self._coerce_version(spec) - - def _compare_less_than_equal(self, prospective: LegacyVersion, spec: str) -> bool: - return prospective <= self._coerce_version(spec) - - def _compare_greater_than_equal( - self, prospective: LegacyVersion, spec: str - ) -> bool: - return prospective >= self._coerce_version(spec) - - def _compare_less_than(self, prospective: LegacyVersion, spec: str) -> bool: - return prospective < self._coerce_version(spec) - - def _compare_greater_than(self, prospective: LegacyVersion, spec: str) -> bool: - return prospective > self._coerce_version(spec) - - -def _require_version_compare( - fn: Callable[["Specifier", ParsedVersion, str], bool] -) -> Callable[["Specifier", ParsedVersion, str], bool]: - @functools.wraps(fn) - def wrapped(self: "Specifier", prospective: ParsedVersion, spec: str) -> bool: - if not isinstance(prospective, Version): - return False - return fn(self, prospective, spec) - - return wrapped - - -class Specifier(_IndividualSpecifier): - - _regex_str = r""" - (?P(~=|==|!=|<=|>=|<|>|===)) - (?P - (?: - # The identity operators allow for an escape hatch that will - # do an exact string match of the version you wish to install. - # This will not be parsed by PEP 440 and we cannot determine - # any semantic meaning from it. This operator is discouraged - # but included entirely as an escape hatch. - (?<====) # Only match for the identity operator - \s* - [^\s]* # We just match everything, except for whitespace - # since we are only testing for strict identity. - ) - | - (?: - # The (non)equality operators allow for wild card and local - # versions to be specified so we have to define these two - # operators separately to enable that. - (?<===|!=) # Only match for equals and not equals - - \s* - v? - (?:[0-9]+!)? # epoch - [0-9]+(?:\.[0-9]+)* # release - (?: # pre release - [-_\.]? - (a|b|c|rc|alpha|beta|pre|preview) - [-_\.]? - [0-9]* - )? - (?: # post release - (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) - )? - - # You cannot use a wild card and a dev or local version - # together so group them with a | and make them optional. - (?: - (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release - (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local - | - \.\* # Wild card syntax of .* - )? - ) - | - (?: - # The compatible operator requires at least two digits in the - # release segment. - (?<=~=) # Only match for the compatible operator - - \s* - v? - (?:[0-9]+!)? # epoch - [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) - (?: # pre release - [-_\.]? - (a|b|c|rc|alpha|beta|pre|preview) - [-_\.]? - [0-9]* - )? - (?: # post release - (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) - )? - (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release - ) - | - (?: - # All other operators only allow a sub set of what the - # (non)equality operators do. Specifically they do not allow - # local versions to be specified nor do they allow the prefix - # matching wild cards. - (?=": "greater_than_equal", - "<": "less_than", - ">": "greater_than", - "===": "arbitrary", - } - - @_require_version_compare - def _compare_compatible(self, prospective: ParsedVersion, spec: str) -> bool: - - # Compatible releases have an equivalent combination of >= and ==. That - # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to - # implement this in terms of the other specifiers instead of - # implementing it ourselves. The only thing we need to do is construct - # the other specifiers. - - # We want everything but the last item in the version, but we want to - # ignore suffix segments. - prefix = ".".join( - list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] - ) - - # Add the prefix notation to the end of our string - prefix += ".*" - - return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( - prospective, prefix - ) - - @_require_version_compare - def _compare_equal(self, prospective: ParsedVersion, spec: str) -> bool: - - # We need special logic to handle prefix matching - if spec.endswith(".*"): - # In the case of prefix matching we want to ignore local segment. - prospective = Version(prospective.public) - # Split the spec out by dots, and pretend that there is an implicit - # dot in between a release segment and a pre-release segment. - split_spec = _version_split(spec[:-2]) # Remove the trailing .* - - # Split the prospective version out by dots, and pretend that there - # is an implicit dot in between a release segment and a pre-release - # segment. - split_prospective = _version_split(str(prospective)) - - # Shorten the prospective version to be the same length as the spec - # so that we can determine if the specifier is a prefix of the - # prospective version or not. - shortened_prospective = split_prospective[: len(split_spec)] - - # Pad out our two sides with zeros so that they both equal the same - # length. - padded_spec, padded_prospective = _pad_version( - split_spec, shortened_prospective - ) - - return padded_prospective == padded_spec - else: - # Convert our spec string into a Version - spec_version = Version(spec) - - # If the specifier does not have a local segment, then we want to - # act as if the prospective version also does not have a local - # segment. - if not spec_version.local: - prospective = Version(prospective.public) - - return prospective == spec_version - - @_require_version_compare - def _compare_not_equal(self, prospective: ParsedVersion, spec: str) -> bool: - return not self._compare_equal(prospective, spec) - - @_require_version_compare - def _compare_less_than_equal(self, prospective: ParsedVersion, spec: str) -> bool: - - # NB: Local version identifiers are NOT permitted in the version - # specifier, so local version labels can be universally removed from - # the prospective version. - return Version(prospective.public) <= Version(spec) - - @_require_version_compare - def _compare_greater_than_equal( - self, prospective: ParsedVersion, spec: str - ) -> bool: - - # NB: Local version identifiers are NOT permitted in the version - # specifier, so local version labels can be universally removed from - # the prospective version. - return Version(prospective.public) >= Version(spec) - - @_require_version_compare - def _compare_less_than(self, prospective: ParsedVersion, spec_str: str) -> bool: - - # Convert our spec to a Version instance, since we'll want to work with - # it as a version. - spec = Version(spec_str) - - # Check to see if the prospective version is less than the spec - # version. If it's not we can short circuit and just return False now - # instead of doing extra unneeded work. - if not prospective < spec: - return False - - # This special case is here so that, unless the specifier itself - # includes is a pre-release version, that we do not accept pre-release - # versions for the version mentioned in the specifier (e.g. <3.1 should - # not match 3.1.dev0, but should match 3.0.dev0). - if not spec.is_prerelease and prospective.is_prerelease: - if Version(prospective.base_version) == Version(spec.base_version): - return False - - # If we've gotten to here, it means that prospective version is both - # less than the spec version *and* it's not a pre-release of the same - # version in the spec. - return True - - @_require_version_compare - def _compare_greater_than(self, prospective: ParsedVersion, spec_str: str) -> bool: - - # Convert our spec to a Version instance, since we'll want to work with - # it as a version. - spec = Version(spec_str) - - # Check to see if the prospective version is greater than the spec - # version. If it's not we can short circuit and just return False now - # instead of doing extra unneeded work. - if not prospective > spec: - return False - - # This special case is here so that, unless the specifier itself - # includes is a post-release version, that we do not accept - # post-release versions for the version mentioned in the specifier - # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). - if not spec.is_postrelease and prospective.is_postrelease: - if Version(prospective.base_version) == Version(spec.base_version): - return False - - # Ensure that we do not allow a local version of the version mentioned - # in the specifier, which is technically greater than, to match. - if prospective.local is not None: - if Version(prospective.base_version) == Version(spec.base_version): - return False - - # If we've gotten to here, it means that prospective version is both - # greater than the spec version *and* it's not a pre-release of the - # same version in the spec. - return True - - def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: - return str(prospective).lower() == str(spec).lower() - - @property - def prereleases(self) -> bool: - - # If there is an explicit prereleases set for this, then we'll just - # blindly use that. - if self._prereleases is not None: - return self._prereleases - - # Look at all of our specifiers and determine if they are inclusive - # operators, and if they are if they are including an explicit - # prerelease. - operator, version = self._spec - if operator in ["==", ">=", "<=", "~=", "==="]: - # The == specifier can include a trailing .*, if it does we - # want to remove before parsing. - if operator == "==" and version.endswith(".*"): - version = version[:-2] - - # Parse the version, and if it is a pre-release than this - # specifier allows pre-releases. - if parse(version).is_prerelease: - return True - - return False - - @prereleases.setter - def prereleases(self, value: bool) -> None: - self._prereleases = value - - -_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") - - -def _version_split(version: str) -> List[str]: - result: List[str] = [] - for item in version.split("."): - match = _prefix_regex.search(item) - if match: - result.extend(match.groups()) - else: - result.append(item) - return result - - -def _is_not_suffix(segment: str) -> bool: - return not any( - segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") - ) - - -def _pad_version(left: List[str], right: List[str]) -> Tuple[List[str], List[str]]: - left_split, right_split = [], [] - - # Get the release segment of our versions - left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) - right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) - - # Get the rest of our versions - left_split.append(left[len(left_split[0]) :]) - right_split.append(right[len(right_split[0]) :]) - - # Insert our padding - left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) - right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) - - return (list(itertools.chain(*left_split)), list(itertools.chain(*right_split))) - - -class SpecifierSet(BaseSpecifier): - def __init__( - self, specifiers: str = "", prereleases: Optional[bool] = None - ) -> None: - - # Split on , to break each individual specifier into it's own item, and - # strip each item to remove leading/trailing whitespace. - split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] - - # Parsed each individual specifier, attempting first to make it a - # Specifier and falling back to a LegacySpecifier. - parsed: Set[_IndividualSpecifier] = set() - for specifier in split_specifiers: - try: - parsed.add(Specifier(specifier)) - except InvalidSpecifier: - parsed.add(LegacySpecifier(specifier)) - - # Turn our parsed specifiers into a frozen set and save them for later. - self._specs = frozenset(parsed) - - # Store our prereleases value so we can use it later to determine if - # we accept prereleases or not. - self._prereleases = prereleases - - def __repr__(self) -> str: - pre = ( - f", prereleases={self.prereleases!r}" - if self._prereleases is not None - else "" - ) - - return f"" - - def __str__(self) -> str: - return ",".join(sorted(str(s) for s in self._specs)) - - def __hash__(self) -> int: - return hash(self._specs) - - def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": - if isinstance(other, str): - other = SpecifierSet(other) - elif not isinstance(other, SpecifierSet): - return NotImplemented - - specifier = SpecifierSet() - specifier._specs = frozenset(self._specs | other._specs) - - if self._prereleases is None and other._prereleases is not None: - specifier._prereleases = other._prereleases - elif self._prereleases is not None and other._prereleases is None: - specifier._prereleases = self._prereleases - elif self._prereleases == other._prereleases: - specifier._prereleases = self._prereleases - else: - raise ValueError( - "Cannot combine SpecifierSets with True and False prerelease " - "overrides." - ) - - return specifier - - def __eq__(self, other: object) -> bool: - if isinstance(other, (str, _IndividualSpecifier)): - other = SpecifierSet(str(other)) - elif not isinstance(other, SpecifierSet): - return NotImplemented - - return self._specs == other._specs - - def __len__(self) -> int: - return len(self._specs) - - def __iter__(self) -> Iterator[_IndividualSpecifier]: - return iter(self._specs) - - @property - def prereleases(self) -> Optional[bool]: - - # If we have been given an explicit prerelease modifier, then we'll - # pass that through here. - if self._prereleases is not None: - return self._prereleases - - # If we don't have any specifiers, and we don't have a forced value, - # then we'll just return None since we don't know if this should have - # pre-releases or not. - if not self._specs: - return None - - # Otherwise we'll see if any of the given specifiers accept - # prereleases, if any of them do we'll return True, otherwise False. - return any(s.prereleases for s in self._specs) - - @prereleases.setter - def prereleases(self, value: bool) -> None: - self._prereleases = value - - def __contains__(self, item: UnparsedVersion) -> bool: - return self.contains(item) - - def contains( - self, item: UnparsedVersion, prereleases: Optional[bool] = None - ) -> bool: - - # Ensure that our item is a Version or LegacyVersion instance. - if not isinstance(item, (LegacyVersion, Version)): - item = parse(item) - - # Determine if we're forcing a prerelease or not, if we're not forcing - # one for this particular filter call, then we'll use whatever the - # SpecifierSet thinks for whether or not we should support prereleases. - if prereleases is None: - prereleases = self.prereleases - - # We can determine if we're going to allow pre-releases by looking to - # see if any of the underlying items supports them. If none of them do - # and this item is a pre-release then we do not allow it and we can - # short circuit that here. - # Note: This means that 1.0.dev1 would not be contained in something - # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 - if not prereleases and item.is_prerelease: - return False - - # We simply dispatch to the underlying specs here to make sure that the - # given version is contained within all of them. - # Note: This use of all() here means that an empty set of specifiers - # will always return True, this is an explicit design decision. - return all(s.contains(item, prereleases=prereleases) for s in self._specs) - - def filter( - self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None - ) -> Iterable[VersionTypeVar]: - - # Determine if we're forcing a prerelease or not, if we're not forcing - # one for this particular filter call, then we'll use whatever the - # SpecifierSet thinks for whether or not we should support prereleases. - if prereleases is None: - prereleases = self.prereleases - - # If we have any specifiers, then we want to wrap our iterable in the - # filter method for each one, this will act as a logical AND amongst - # each specifier. - if self._specs: - for spec in self._specs: - iterable = spec.filter(iterable, prereleases=bool(prereleases)) - return iterable - # If we do not have any specifiers, then we need to have a rough filter - # which will filter out any pre-releases, unless there are no final - # releases, and which will filter out LegacyVersion in general. - else: - filtered: List[VersionTypeVar] = [] - found_prereleases: List[VersionTypeVar] = [] - - item: UnparsedVersion - parsed_version: Union[Version, LegacyVersion] - - for item in iterable: - # Ensure that we some kind of Version class for this item. - if not isinstance(item, (LegacyVersion, Version)): - parsed_version = parse(item) - else: - parsed_version = item - - # Filter out any item which is parsed as a LegacyVersion - if isinstance(parsed_version, LegacyVersion): - continue - - # Store any item which is a pre-release for later unless we've - # already found a final version or we are accepting prereleases - if parsed_version.is_prerelease and not prereleases: - if not filtered: - found_prereleases.append(item) - else: - filtered.append(item) - - # If we've found no items except for pre-releases, then we'll go - # ahead and use the pre-releases - if not filtered and found_prereleases and prereleases is None: - return found_prereleases - - return filtered diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py deleted file mode 100644 index 9a3d25a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py +++ /dev/null @@ -1,487 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import logging -import platform -import sys -import sysconfig -from importlib.machinery import EXTENSION_SUFFIXES -from typing import ( - Dict, - FrozenSet, - Iterable, - Iterator, - List, - Optional, - Sequence, - Tuple, - Union, - cast, -) - -from . import _manylinux, _musllinux - -logger = logging.getLogger(__name__) - -PythonVersion = Sequence[int] -MacVersion = Tuple[int, int] - -INTERPRETER_SHORT_NAMES: Dict[str, str] = { - "python": "py", # Generic. - "cpython": "cp", - "pypy": "pp", - "ironpython": "ip", - "jython": "jy", -} - - -_32_BIT_INTERPRETER = sys.maxsize <= 2 ** 32 - - -class Tag: - """ - A representation of the tag triple for a wheel. - - Instances are considered immutable and thus are hashable. Equality checking - is also supported. - """ - - __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] - - def __init__(self, interpreter: str, abi: str, platform: str) -> None: - self._interpreter = interpreter.lower() - self._abi = abi.lower() - self._platform = platform.lower() - # The __hash__ of every single element in a Set[Tag] will be evaluated each time - # that a set calls its `.disjoint()` method, which may be called hundreds of - # times when scanning a page of links for packages with tags matching that - # Set[Tag]. Pre-computing the value here produces significant speedups for - # downstream consumers. - self._hash = hash((self._interpreter, self._abi, self._platform)) - - @property - def interpreter(self) -> str: - return self._interpreter - - @property - def abi(self) -> str: - return self._abi - - @property - def platform(self) -> str: - return self._platform - - def __eq__(self, other: object) -> bool: - if not isinstance(other, Tag): - return NotImplemented - - return ( - (self._hash == other._hash) # Short-circuit ASAP for perf reasons. - and (self._platform == other._platform) - and (self._abi == other._abi) - and (self._interpreter == other._interpreter) - ) - - def __hash__(self) -> int: - return self._hash - - def __str__(self) -> str: - return f"{self._interpreter}-{self._abi}-{self._platform}" - - def __repr__(self) -> str: - return f"<{self} @ {id(self)}>" - - -def parse_tag(tag: str) -> FrozenSet[Tag]: - """ - Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. - - Returning a set is required due to the possibility that the tag is a - compressed tag set. - """ - tags = set() - interpreters, abis, platforms = tag.split("-") - for interpreter in interpreters.split("."): - for abi in abis.split("."): - for platform_ in platforms.split("."): - tags.add(Tag(interpreter, abi, platform_)) - return frozenset(tags) - - -def _get_config_var(name: str, warn: bool = False) -> Union[int, str, None]: - value = sysconfig.get_config_var(name) - if value is None and warn: - logger.debug( - "Config variable '%s' is unset, Python ABI tag may be incorrect", name - ) - return value - - -def _normalize_string(string: str) -> str: - return string.replace(".", "_").replace("-", "_") - - -def _abi3_applies(python_version: PythonVersion) -> bool: - """ - Determine if the Python version supports abi3. - - PEP 384 was first implemented in Python 3.2. - """ - return len(python_version) > 1 and tuple(python_version) >= (3, 2) - - -def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> List[str]: - py_version = tuple(py_version) # To allow for version comparison. - abis = [] - version = _version_nodot(py_version[:2]) - debug = pymalloc = ucs4 = "" - with_debug = _get_config_var("Py_DEBUG", warn) - has_refcount = hasattr(sys, "gettotalrefcount") - # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled - # extension modules is the best option. - # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 - has_ext = "_d.pyd" in EXTENSION_SUFFIXES - if with_debug or (with_debug is None and (has_refcount or has_ext)): - debug = "d" - if py_version < (3, 8): - with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) - if with_pymalloc or with_pymalloc is None: - pymalloc = "m" - if py_version < (3, 3): - unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) - if unicode_size == 4 or ( - unicode_size is None and sys.maxunicode == 0x10FFFF - ): - ucs4 = "u" - elif debug: - # Debug builds can also load "normal" extension modules. - # We can also assume no UCS-4 or pymalloc requirement. - abis.append(f"cp{version}") - abis.insert( - 0, - "cp{version}{debug}{pymalloc}{ucs4}".format( - version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 - ), - ) - return abis - - -def cpython_tags( - python_version: Optional[PythonVersion] = None, - abis: Optional[Iterable[str]] = None, - platforms: Optional[Iterable[str]] = None, - *, - warn: bool = False, -) -> Iterator[Tag]: - """ - Yields the tags for a CPython interpreter. - - The tags consist of: - - cp-- - - cp-abi3- - - cp-none- - - cp-abi3- # Older Python versions down to 3.2. - - If python_version only specifies a major version then user-provided ABIs and - the 'none' ABItag will be used. - - If 'abi3' or 'none' are specified in 'abis' then they will be yielded at - their normal position and not at the beginning. - """ - if not python_version: - python_version = sys.version_info[:2] - - interpreter = f"cp{_version_nodot(python_version[:2])}" - - if abis is None: - if len(python_version) > 1: - abis = _cpython_abis(python_version, warn) - else: - abis = [] - abis = list(abis) - # 'abi3' and 'none' are explicitly handled later. - for explicit_abi in ("abi3", "none"): - try: - abis.remove(explicit_abi) - except ValueError: - pass - - platforms = list(platforms or platform_tags()) - for abi in abis: - for platform_ in platforms: - yield Tag(interpreter, abi, platform_) - if _abi3_applies(python_version): - yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) - yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) - - if _abi3_applies(python_version): - for minor_version in range(python_version[1] - 1, 1, -1): - for platform_ in platforms: - interpreter = "cp{version}".format( - version=_version_nodot((python_version[0], minor_version)) - ) - yield Tag(interpreter, "abi3", platform_) - - -def _generic_abi() -> Iterator[str]: - abi = sysconfig.get_config_var("SOABI") - if abi: - yield _normalize_string(abi) - - -def generic_tags( - interpreter: Optional[str] = None, - abis: Optional[Iterable[str]] = None, - platforms: Optional[Iterable[str]] = None, - *, - warn: bool = False, -) -> Iterator[Tag]: - """ - Yields the tags for a generic interpreter. - - The tags consist of: - - -- - - The "none" ABI will be added if it was not explicitly provided. - """ - if not interpreter: - interp_name = interpreter_name() - interp_version = interpreter_version(warn=warn) - interpreter = "".join([interp_name, interp_version]) - if abis is None: - abis = _generic_abi() - platforms = list(platforms or platform_tags()) - abis = list(abis) - if "none" not in abis: - abis.append("none") - for abi in abis: - for platform_ in platforms: - yield Tag(interpreter, abi, platform_) - - -def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: - """ - Yields Python versions in descending order. - - After the latest version, the major-only version will be yielded, and then - all previous versions of that major version. - """ - if len(py_version) > 1: - yield f"py{_version_nodot(py_version[:2])}" - yield f"py{py_version[0]}" - if len(py_version) > 1: - for minor in range(py_version[1] - 1, -1, -1): - yield f"py{_version_nodot((py_version[0], minor))}" - - -def compatible_tags( - python_version: Optional[PythonVersion] = None, - interpreter: Optional[str] = None, - platforms: Optional[Iterable[str]] = None, -) -> Iterator[Tag]: - """ - Yields the sequence of tags that are compatible with a specific version of Python. - - The tags consist of: - - py*-none- - - -none-any # ... if `interpreter` is provided. - - py*-none-any - """ - if not python_version: - python_version = sys.version_info[:2] - platforms = list(platforms or platform_tags()) - for version in _py_interpreter_range(python_version): - for platform_ in platforms: - yield Tag(version, "none", platform_) - if interpreter: - yield Tag(interpreter, "none", "any") - for version in _py_interpreter_range(python_version): - yield Tag(version, "none", "any") - - -def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: - if not is_32bit: - return arch - - if arch.startswith("ppc"): - return "ppc" - - return "i386" - - -def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> List[str]: - formats = [cpu_arch] - if cpu_arch == "x86_64": - if version < (10, 4): - return [] - formats.extend(["intel", "fat64", "fat32"]) - - elif cpu_arch == "i386": - if version < (10, 4): - return [] - formats.extend(["intel", "fat32", "fat"]) - - elif cpu_arch == "ppc64": - # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? - if version > (10, 5) or version < (10, 4): - return [] - formats.append("fat64") - - elif cpu_arch == "ppc": - if version > (10, 6): - return [] - formats.extend(["fat32", "fat"]) - - if cpu_arch in {"arm64", "x86_64"}: - formats.append("universal2") - - if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: - formats.append("universal") - - return formats - - -def mac_platforms( - version: Optional[MacVersion] = None, arch: Optional[str] = None -) -> Iterator[str]: - """ - Yields the platform tags for a macOS system. - - The `version` parameter is a two-item tuple specifying the macOS version to - generate platform tags for. The `arch` parameter is the CPU architecture to - generate platform tags for. Both parameters default to the appropriate value - for the current system. - """ - version_str, _, cpu_arch = platform.mac_ver() - if version is None: - version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) - else: - version = version - if arch is None: - arch = _mac_arch(cpu_arch) - else: - arch = arch - - if (10, 0) <= version and version < (11, 0): - # Prior to Mac OS 11, each yearly release of Mac OS bumped the - # "minor" version number. The major version was always 10. - for minor_version in range(version[1], -1, -1): - compat_version = 10, minor_version - binary_formats = _mac_binary_formats(compat_version, arch) - for binary_format in binary_formats: - yield "macosx_{major}_{minor}_{binary_format}".format( - major=10, minor=minor_version, binary_format=binary_format - ) - - if version >= (11, 0): - # Starting with Mac OS 11, each yearly release bumps the major version - # number. The minor versions are now the midyear updates. - for major_version in range(version[0], 10, -1): - compat_version = major_version, 0 - binary_formats = _mac_binary_formats(compat_version, arch) - for binary_format in binary_formats: - yield "macosx_{major}_{minor}_{binary_format}".format( - major=major_version, minor=0, binary_format=binary_format - ) - - if version >= (11, 0): - # Mac OS 11 on x86_64 is compatible with binaries from previous releases. - # Arm64 support was introduced in 11.0, so no Arm binaries from previous - # releases exist. - # - # However, the "universal2" binary format can have a - # macOS version earlier than 11.0 when the x86_64 part of the binary supports - # that version of macOS. - if arch == "x86_64": - for minor_version in range(16, 3, -1): - compat_version = 10, minor_version - binary_formats = _mac_binary_formats(compat_version, arch) - for binary_format in binary_formats: - yield "macosx_{major}_{minor}_{binary_format}".format( - major=compat_version[0], - minor=compat_version[1], - binary_format=binary_format, - ) - else: - for minor_version in range(16, 3, -1): - compat_version = 10, minor_version - binary_format = "universal2" - yield "macosx_{major}_{minor}_{binary_format}".format( - major=compat_version[0], - minor=compat_version[1], - binary_format=binary_format, - ) - - -def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: - linux = _normalize_string(sysconfig.get_platform()) - if is_32bit: - if linux == "linux_x86_64": - linux = "linux_i686" - elif linux == "linux_aarch64": - linux = "linux_armv7l" - _, arch = linux.split("_", 1) - yield from _manylinux.platform_tags(linux, arch) - yield from _musllinux.platform_tags(arch) - yield linux - - -def _generic_platforms() -> Iterator[str]: - yield _normalize_string(sysconfig.get_platform()) - - -def platform_tags() -> Iterator[str]: - """ - Provides the platform tags for this installation. - """ - if platform.system() == "Darwin": - return mac_platforms() - elif platform.system() == "Linux": - return _linux_platforms() - else: - return _generic_platforms() - - -def interpreter_name() -> str: - """ - Returns the name of the running interpreter. - """ - name = sys.implementation.name - return INTERPRETER_SHORT_NAMES.get(name) or name - - -def interpreter_version(*, warn: bool = False) -> str: - """ - Returns the version of the running interpreter. - """ - version = _get_config_var("py_version_nodot", warn=warn) - if version: - version = str(version) - else: - version = _version_nodot(sys.version_info[:2]) - return version - - -def _version_nodot(version: PythonVersion) -> str: - return "".join(map(str, version)) - - -def sys_tags(*, warn: bool = False) -> Iterator[Tag]: - """ - Returns the sequence of tag triples for the running interpreter. - - The order of the sequence corresponds to priority order for the - interpreter, from most to least important. - """ - - interp_name = interpreter_name() - if interp_name == "cp": - yield from cpython_tags(warn=warn) - else: - yield from generic_tags() - - if interp_name == "pp": - yield from compatible_tags(interpreter="pp3") - else: - yield from compatible_tags() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py deleted file mode 100644 index bab11b8..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py +++ /dev/null @@ -1,136 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import re -from typing import FrozenSet, NewType, Tuple, Union, cast - -from .tags import Tag, parse_tag -from .version import InvalidVersion, Version - -BuildTag = Union[Tuple[()], Tuple[int, str]] -NormalizedName = NewType("NormalizedName", str) - - -class InvalidWheelFilename(ValueError): - """ - An invalid wheel filename was found, users should refer to PEP 427. - """ - - -class InvalidSdistFilename(ValueError): - """ - An invalid sdist filename was found, users should refer to the packaging user guide. - """ - - -_canonicalize_regex = re.compile(r"[-_.]+") -# PEP 427: The build number must start with a digit. -_build_tag_regex = re.compile(r"(\d+)(.*)") - - -def canonicalize_name(name: str) -> NormalizedName: - # This is taken from PEP 503. - value = _canonicalize_regex.sub("-", name).lower() - return cast(NormalizedName, value) - - -def canonicalize_version(version: Union[Version, str]) -> str: - """ - This is very similar to Version.__str__, but has one subtle difference - with the way it handles the release segment. - """ - if isinstance(version, str): - try: - parsed = Version(version) - except InvalidVersion: - # Legacy versions cannot be normalized - return version - else: - parsed = version - - parts = [] - - # Epoch - if parsed.epoch != 0: - parts.append(f"{parsed.epoch}!") - - # Release segment - # NB: This strips trailing '.0's to normalize - parts.append(re.sub(r"(\.0)+$", "", ".".join(str(x) for x in parsed.release))) - - # Pre-release - if parsed.pre is not None: - parts.append("".join(str(x) for x in parsed.pre)) - - # Post-release - if parsed.post is not None: - parts.append(f".post{parsed.post}") - - # Development release - if parsed.dev is not None: - parts.append(f".dev{parsed.dev}") - - # Local version segment - if parsed.local is not None: - parts.append(f"+{parsed.local}") - - return "".join(parts) - - -def parse_wheel_filename( - filename: str, -) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]: - if not filename.endswith(".whl"): - raise InvalidWheelFilename( - f"Invalid wheel filename (extension must be '.whl'): {filename}" - ) - - filename = filename[:-4] - dashes = filename.count("-") - if dashes not in (4, 5): - raise InvalidWheelFilename( - f"Invalid wheel filename (wrong number of parts): {filename}" - ) - - parts = filename.split("-", dashes - 2) - name_part = parts[0] - # See PEP 427 for the rules on escaping the project name - if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: - raise InvalidWheelFilename(f"Invalid project name: {filename}") - name = canonicalize_name(name_part) - version = Version(parts[1]) - if dashes == 5: - build_part = parts[2] - build_match = _build_tag_regex.match(build_part) - if build_match is None: - raise InvalidWheelFilename( - f"Invalid build number: {build_part} in '{filename}'" - ) - build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) - else: - build = () - tags = parse_tag(parts[-1]) - return (name, version, build, tags) - - -def parse_sdist_filename(filename: str) -> Tuple[NormalizedName, Version]: - if filename.endswith(".tar.gz"): - file_stem = filename[: -len(".tar.gz")] - elif filename.endswith(".zip"): - file_stem = filename[: -len(".zip")] - else: - raise InvalidSdistFilename( - f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" - f" {filename}" - ) - - # We are requiring a PEP 440 version, which cannot contain dashes, - # so we split on the last dash. - name_part, sep, version_part = file_stem.rpartition("-") - if not sep: - raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") - - name = canonicalize_name(name_part) - version = Version(version_part) - return (name, version) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py deleted file mode 100644 index de9a09a..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py +++ /dev/null @@ -1,504 +0,0 @@ -# This file is dual licensed under the terms of the Apache License, Version -# 2.0, and the BSD License. See the LICENSE file in the root of this repository -# for complete details. - -import collections -import itertools -import re -import warnings -from typing import Callable, Iterator, List, Optional, SupportsInt, Tuple, Union - -from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType - -__all__ = ["parse", "Version", "LegacyVersion", "InvalidVersion", "VERSION_PATTERN"] - -InfiniteTypes = Union[InfinityType, NegativeInfinityType] -PrePostDevType = Union[InfiniteTypes, Tuple[str, int]] -SubLocalType = Union[InfiniteTypes, int, str] -LocalType = Union[ - NegativeInfinityType, - Tuple[ - Union[ - SubLocalType, - Tuple[SubLocalType, str], - Tuple[NegativeInfinityType, SubLocalType], - ], - ..., - ], -] -CmpKey = Tuple[ - int, Tuple[int, ...], PrePostDevType, PrePostDevType, PrePostDevType, LocalType -] -LegacyCmpKey = Tuple[int, Tuple[str, ...]] -VersionComparisonMethod = Callable[ - [Union[CmpKey, LegacyCmpKey], Union[CmpKey, LegacyCmpKey]], bool -] - -_Version = collections.namedtuple( - "_Version", ["epoch", "release", "dev", "pre", "post", "local"] -) - - -def parse(version: str) -> Union["LegacyVersion", "Version"]: - """ - Parse the given version string and return either a :class:`Version` object - or a :class:`LegacyVersion` object depending on if the given version is - a valid PEP 440 version or a legacy version. - """ - try: - return Version(version) - except InvalidVersion: - return LegacyVersion(version) - - -class InvalidVersion(ValueError): - """ - An invalid version was found, users should refer to PEP 440. - """ - - -class _BaseVersion: - _key: Union[CmpKey, LegacyCmpKey] - - def __hash__(self) -> int: - return hash(self._key) - - # Please keep the duplicated `isinstance` check - # in the six comparisons hereunder - # unless you find a way to avoid adding overhead function calls. - def __lt__(self, other: "_BaseVersion") -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key < other._key - - def __le__(self, other: "_BaseVersion") -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key <= other._key - - def __eq__(self, other: object) -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key == other._key - - def __ge__(self, other: "_BaseVersion") -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key >= other._key - - def __gt__(self, other: "_BaseVersion") -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key > other._key - - def __ne__(self, other: object) -> bool: - if not isinstance(other, _BaseVersion): - return NotImplemented - - return self._key != other._key - - -class LegacyVersion(_BaseVersion): - def __init__(self, version: str) -> None: - self._version = str(version) - self._key = _legacy_cmpkey(self._version) - - warnings.warn( - "Creating a LegacyVersion has been deprecated and will be " - "removed in the next major release", - DeprecationWarning, - ) - - def __str__(self) -> str: - return self._version - - def __repr__(self) -> str: - return f"" - - @property - def public(self) -> str: - return self._version - - @property - def base_version(self) -> str: - return self._version - - @property - def epoch(self) -> int: - return -1 - - @property - def release(self) -> None: - return None - - @property - def pre(self) -> None: - return None - - @property - def post(self) -> None: - return None - - @property - def dev(self) -> None: - return None - - @property - def local(self) -> None: - return None - - @property - def is_prerelease(self) -> bool: - return False - - @property - def is_postrelease(self) -> bool: - return False - - @property - def is_devrelease(self) -> bool: - return False - - -_legacy_version_component_re = re.compile(r"(\d+ | [a-z]+ | \.| -)", re.VERBOSE) - -_legacy_version_replacement_map = { - "pre": "c", - "preview": "c", - "-": "final-", - "rc": "c", - "dev": "@", -} - - -def _parse_version_parts(s: str) -> Iterator[str]: - for part in _legacy_version_component_re.split(s): - part = _legacy_version_replacement_map.get(part, part) - - if not part or part == ".": - continue - - if part[:1] in "0123456789": - # pad for numeric comparison - yield part.zfill(8) - else: - yield "*" + part - - # ensure that alpha/beta/candidate are before final - yield "*final" - - -def _legacy_cmpkey(version: str) -> LegacyCmpKey: - - # We hardcode an epoch of -1 here. A PEP 440 version can only have a epoch - # greater than or equal to 0. This will effectively put the LegacyVersion, - # which uses the defacto standard originally implemented by setuptools, - # as before all PEP 440 versions. - epoch = -1 - - # This scheme is taken from pkg_resources.parse_version setuptools prior to - # it's adoption of the packaging library. - parts: List[str] = [] - for part in _parse_version_parts(version.lower()): - if part.startswith("*"): - # remove "-" before a prerelease tag - if part < "*final": - while parts and parts[-1] == "*final-": - parts.pop() - - # remove trailing zeros from each series of numeric parts - while parts and parts[-1] == "00000000": - parts.pop() - - parts.append(part) - - return epoch, tuple(parts) - - -# Deliberately not anchored to the start and end of the string, to make it -# easier for 3rd party code to reuse -VERSION_PATTERN = r""" - v? - (?: - (?:(?P[0-9]+)!)? # epoch - (?P[0-9]+(?:\.[0-9]+)*) # release segment - (?P
                                          # pre-release
-            [-_\.]?
-            (?P(a|b|c|rc|alpha|beta|pre|preview))
-            [-_\.]?
-            (?P[0-9]+)?
-        )?
-        (?P                                         # post release
-            (?:-(?P[0-9]+))
-            |
-            (?:
-                [-_\.]?
-                (?Ppost|rev|r)
-                [-_\.]?
-                (?P[0-9]+)?
-            )
-        )?
-        (?P                                          # dev release
-            [-_\.]?
-            (?Pdev)
-            [-_\.]?
-            (?P[0-9]+)?
-        )?
-    )
-    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
-"""
-
-
-class Version(_BaseVersion):
-
-    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
-
-    def __init__(self, version: str) -> None:
-
-        # Validate the version and parse it into pieces
-        match = self._regex.search(version)
-        if not match:
-            raise InvalidVersion(f"Invalid version: '{version}'")
-
-        # Store the parsed out pieces of the version
-        self._version = _Version(
-            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
-            release=tuple(int(i) for i in match.group("release").split(".")),
-            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
-            post=_parse_letter_version(
-                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
-            ),
-            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
-            local=_parse_local_version(match.group("local")),
-        )
-
-        # Generate a key which will be used for sorting
-        self._key = _cmpkey(
-            self._version.epoch,
-            self._version.release,
-            self._version.pre,
-            self._version.post,
-            self._version.dev,
-            self._version.local,
-        )
-
-    def __repr__(self) -> str:
-        return f""
-
-    def __str__(self) -> str:
-        parts = []
-
-        # Epoch
-        if self.epoch != 0:
-            parts.append(f"{self.epoch}!")
-
-        # Release segment
-        parts.append(".".join(str(x) for x in self.release))
-
-        # Pre-release
-        if self.pre is not None:
-            parts.append("".join(str(x) for x in self.pre))
-
-        # Post-release
-        if self.post is not None:
-            parts.append(f".post{self.post}")
-
-        # Development release
-        if self.dev is not None:
-            parts.append(f".dev{self.dev}")
-
-        # Local version segment
-        if self.local is not None:
-            parts.append(f"+{self.local}")
-
-        return "".join(parts)
-
-    @property
-    def epoch(self) -> int:
-        _epoch: int = self._version.epoch
-        return _epoch
-
-    @property
-    def release(self) -> Tuple[int, ...]:
-        _release: Tuple[int, ...] = self._version.release
-        return _release
-
-    @property
-    def pre(self) -> Optional[Tuple[str, int]]:
-        _pre: Optional[Tuple[str, int]] = self._version.pre
-        return _pre
-
-    @property
-    def post(self) -> Optional[int]:
-        return self._version.post[1] if self._version.post else None
-
-    @property
-    def dev(self) -> Optional[int]:
-        return self._version.dev[1] if self._version.dev else None
-
-    @property
-    def local(self) -> Optional[str]:
-        if self._version.local:
-            return ".".join(str(x) for x in self._version.local)
-        else:
-            return None
-
-    @property
-    def public(self) -> str:
-        return str(self).split("+", 1)[0]
-
-    @property
-    def base_version(self) -> str:
-        parts = []
-
-        # Epoch
-        if self.epoch != 0:
-            parts.append(f"{self.epoch}!")
-
-        # Release segment
-        parts.append(".".join(str(x) for x in self.release))
-
-        return "".join(parts)
-
-    @property
-    def is_prerelease(self) -> bool:
-        return self.dev is not None or self.pre is not None
-
-    @property
-    def is_postrelease(self) -> bool:
-        return self.post is not None
-
-    @property
-    def is_devrelease(self) -> bool:
-        return self.dev is not None
-
-    @property
-    def major(self) -> int:
-        return self.release[0] if len(self.release) >= 1 else 0
-
-    @property
-    def minor(self) -> int:
-        return self.release[1] if len(self.release) >= 2 else 0
-
-    @property
-    def micro(self) -> int:
-        return self.release[2] if len(self.release) >= 3 else 0
-
-
-def _parse_letter_version(
-    letter: str, number: Union[str, bytes, SupportsInt]
-) -> Optional[Tuple[str, int]]:
-
-    if letter:
-        # We consider there to be an implicit 0 in a pre-release if there is
-        # not a numeral associated with it.
-        if number is None:
-            number = 0
-
-        # We normalize any letters to their lower case form
-        letter = letter.lower()
-
-        # We consider some words to be alternate spellings of other words and
-        # in those cases we want to normalize the spellings to our preferred
-        # spelling.
-        if letter == "alpha":
-            letter = "a"
-        elif letter == "beta":
-            letter = "b"
-        elif letter in ["c", "pre", "preview"]:
-            letter = "rc"
-        elif letter in ["rev", "r"]:
-            letter = "post"
-
-        return letter, int(number)
-    if not letter and number:
-        # We assume if we are given a number, but we are not given a letter
-        # then this is using the implicit post release syntax (e.g. 1.0-1)
-        letter = "post"
-
-        return letter, int(number)
-
-    return None
-
-
-_local_version_separators = re.compile(r"[\._-]")
-
-
-def _parse_local_version(local: str) -> Optional[LocalType]:
-    """
-    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
-    """
-    if local is not None:
-        return tuple(
-            part.lower() if not part.isdigit() else int(part)
-            for part in _local_version_separators.split(local)
-        )
-    return None
-
-
-def _cmpkey(
-    epoch: int,
-    release: Tuple[int, ...],
-    pre: Optional[Tuple[str, int]],
-    post: Optional[Tuple[str, int]],
-    dev: Optional[Tuple[str, int]],
-    local: Optional[Tuple[SubLocalType]],
-) -> CmpKey:
-
-    # When we compare a release version, we want to compare it with all of the
-    # trailing zeros removed. So we'll use a reverse the list, drop all the now
-    # leading zeros until we come to something non zero, then take the rest
-    # re-reverse it back into the correct order and make it a tuple and use
-    # that for our sorting key.
-    _release = tuple(
-        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
-    )
-
-    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
-    # We'll do this by abusing the pre segment, but we _only_ want to do this
-    # if there is not a pre or a post segment. If we have one of those then
-    # the normal sorting rules will handle this case correctly.
-    if pre is None and post is None and dev is not None:
-        _pre: PrePostDevType = NegativeInfinity
-    # Versions without a pre-release (except as noted above) should sort after
-    # those with one.
-    elif pre is None:
-        _pre = Infinity
-    else:
-        _pre = pre
-
-    # Versions without a post segment should sort before those with one.
-    if post is None:
-        _post: PrePostDevType = NegativeInfinity
-
-    else:
-        _post = post
-
-    # Versions without a development segment should sort after those with one.
-    if dev is None:
-        _dev: PrePostDevType = Infinity
-
-    else:
-        _dev = dev
-
-    if local is None:
-        # Versions without a local segment should sort before those with one.
-        _local: LocalType = NegativeInfinity
-    else:
-        # Versions with a local segment need that segment parsed to implement
-        # the sorting rules in PEP440.
-        # - Alpha numeric segments sort before numeric segments
-        # - Alpha numeric segments sort lexicographically
-        # - Numeric segments sort numerically
-        # - Shorter versions sort before longer versions when the prefixes
-        #   match exactly
-        _local = tuple(
-            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
-        )
-
-    return epoch, _release, _pre, _post, _dev, _local
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py
deleted file mode 100644
index ad27940..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py
+++ /dev/null
@@ -1,3361 +0,0 @@
-"""
-Package resource API
---------------------
-
-A resource is a logical file contained within a package, or a logical
-subdirectory thereof.  The package resource API expects resource names
-to have their path parts separated with ``/``, *not* whatever the local
-path separator is.  Do not use os.path operations to manipulate resource
-names being passed into the API.
-
-The package resource API is designed to work with normal filesystem packages,
-.egg files, and unpacked .egg files.  It can also work in a limited way with
-.zip files and with custom PEP 302 loaders that support the ``get_data()``
-method.
-
-This module is deprecated. Users are directed to :mod:`importlib.resources`,
-:mod:`importlib.metadata` and :pypi:`packaging` instead.
-"""
-
-import sys
-import os
-import io
-import time
-import re
-import types
-import zipfile
-import zipimport
-import warnings
-import stat
-import functools
-import pkgutil
-import operator
-import platform
-import collections
-import plistlib
-import email.parser
-import errno
-import tempfile
-import textwrap
-import inspect
-import ntpath
-import posixpath
-import importlib
-from pkgutil import get_importer
-
-try:
-    import _imp
-except ImportError:
-    # Python 3.2 compatibility
-    import imp as _imp
-
-try:
-    FileExistsError
-except NameError:
-    FileExistsError = OSError
-
-# capture these to bypass sandboxing
-from os import utime
-
-try:
-    from os import mkdir, rename, unlink
-
-    WRITE_SUPPORT = True
-except ImportError:
-    # no write support, probably under GAE
-    WRITE_SUPPORT = False
-
-from os import open as os_open
-from os.path import isdir, split
-
-try:
-    import importlib.machinery as importlib_machinery
-
-    # access attribute to force import under delayed import mechanisms.
-    importlib_machinery.__name__
-except ImportError:
-    importlib_machinery = None
-
-from pip._internal.utils._jaraco_text import (
-    yield_lines,
-    drop_comment,
-    join_continuation,
-)
-
-from pip._vendor import platformdirs
-from pip._vendor import packaging
-
-__import__('pip._vendor.packaging.version')
-__import__('pip._vendor.packaging.specifiers')
-__import__('pip._vendor.packaging.requirements')
-__import__('pip._vendor.packaging.markers')
-__import__('pip._vendor.packaging.utils')
-
-if sys.version_info < (3, 5):
-    raise RuntimeError("Python 3.5 or later is required")
-
-# declare some globals that will be defined later to
-# satisfy the linters.
-require = None
-working_set = None
-add_activation_listener = None
-resources_stream = None
-cleanup_resources = None
-resource_dir = None
-resource_stream = None
-set_extraction_path = None
-resource_isdir = None
-resource_string = None
-iter_entry_points = None
-resource_listdir = None
-resource_filename = None
-resource_exists = None
-_distribution_finders = None
-_namespace_handlers = None
-_namespace_packages = None
-
-
-warnings.warn(
-    "pkg_resources is deprecated as an API. "
-    "See https://setuptools.pypa.io/en/latest/pkg_resources.html",
-    DeprecationWarning,
-    stacklevel=2
-)
-
-
-_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
-
-
-class PEP440Warning(RuntimeWarning):
-    """
-    Used when there is an issue with a version or specifier not complying with
-    PEP 440.
-    """
-
-
-parse_version = packaging.version.Version
-
-
-_state_vars = {}
-
-
-def _declare_state(vartype, **kw):
-    globals().update(kw)
-    _state_vars.update(dict.fromkeys(kw, vartype))
-
-
-def __getstate__():
-    state = {}
-    g = globals()
-    for k, v in _state_vars.items():
-        state[k] = g['_sget_' + v](g[k])
-    return state
-
-
-def __setstate__(state):
-    g = globals()
-    for k, v in state.items():
-        g['_sset_' + _state_vars[k]](k, g[k], v)
-    return state
-
-
-def _sget_dict(val):
-    return val.copy()
-
-
-def _sset_dict(key, ob, state):
-    ob.clear()
-    ob.update(state)
-
-
-def _sget_object(val):
-    return val.__getstate__()
-
-
-def _sset_object(key, ob, state):
-    ob.__setstate__(state)
-
-
-_sget_none = _sset_none = lambda *args: None
-
-
-def get_supported_platform():
-    """Return this platform's maximum compatible version.
-
-    distutils.util.get_platform() normally reports the minimum version
-    of macOS that would be required to *use* extensions produced by
-    distutils.  But what we want when checking compatibility is to know the
-    version of macOS that we are *running*.  To allow usage of packages that
-    explicitly require a newer version of macOS, we must also know the
-    current version of the OS.
-
-    If this condition occurs for any other platform with a version in its
-    platform strings, this function should be extended accordingly.
-    """
-    plat = get_build_platform()
-    m = macosVersionString.match(plat)
-    if m is not None and sys.platform == "darwin":
-        try:
-            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
-        except ValueError:
-            # not macOS
-            pass
-    return plat
-
-
-__all__ = [
-    # Basic resource access and distribution/entry point discovery
-    'require',
-    'run_script',
-    'get_provider',
-    'get_distribution',
-    'load_entry_point',
-    'get_entry_map',
-    'get_entry_info',
-    'iter_entry_points',
-    'resource_string',
-    'resource_stream',
-    'resource_filename',
-    'resource_listdir',
-    'resource_exists',
-    'resource_isdir',
-    # Environmental control
-    'declare_namespace',
-    'working_set',
-    'add_activation_listener',
-    'find_distributions',
-    'set_extraction_path',
-    'cleanup_resources',
-    'get_default_cache',
-    # Primary implementation classes
-    'Environment',
-    'WorkingSet',
-    'ResourceManager',
-    'Distribution',
-    'Requirement',
-    'EntryPoint',
-    # Exceptions
-    'ResolutionError',
-    'VersionConflict',
-    'DistributionNotFound',
-    'UnknownExtra',
-    'ExtractionError',
-    # Warnings
-    'PEP440Warning',
-    # Parsing functions and string utilities
-    'parse_requirements',
-    'parse_version',
-    'safe_name',
-    'safe_version',
-    'get_platform',
-    'compatible_platforms',
-    'yield_lines',
-    'split_sections',
-    'safe_extra',
-    'to_filename',
-    'invalid_marker',
-    'evaluate_marker',
-    # filesystem utilities
-    'ensure_directory',
-    'normalize_path',
-    # Distribution "precedence" constants
-    'EGG_DIST',
-    'BINARY_DIST',
-    'SOURCE_DIST',
-    'CHECKOUT_DIST',
-    'DEVELOP_DIST',
-    # "Provider" interfaces, implementations, and registration/lookup APIs
-    'IMetadataProvider',
-    'IResourceProvider',
-    'FileMetadata',
-    'PathMetadata',
-    'EggMetadata',
-    'EmptyProvider',
-    'empty_provider',
-    'NullProvider',
-    'EggProvider',
-    'DefaultProvider',
-    'ZipProvider',
-    'register_finder',
-    'register_namespace_handler',
-    'register_loader_type',
-    'fixup_namespace_packages',
-    'get_importer',
-    # Warnings
-    'PkgResourcesDeprecationWarning',
-    # Deprecated/backward compatibility only
-    'run_main',
-    'AvailableDistributions',
-]
-
-
-class ResolutionError(Exception):
-    """Abstract base for dependency resolution errors"""
-
-    def __repr__(self):
-        return self.__class__.__name__ + repr(self.args)
-
-
-class VersionConflict(ResolutionError):
-    """
-    An already-installed version conflicts with the requested version.
-
-    Should be initialized with the installed Distribution and the requested
-    Requirement.
-    """
-
-    _template = "{self.dist} is installed but {self.req} is required"
-
-    @property
-    def dist(self):
-        return self.args[0]
-
-    @property
-    def req(self):
-        return self.args[1]
-
-    def report(self):
-        return self._template.format(**locals())
-
-    def with_context(self, required_by):
-        """
-        If required_by is non-empty, return a version of self that is a
-        ContextualVersionConflict.
-        """
-        if not required_by:
-            return self
-        args = self.args + (required_by,)
-        return ContextualVersionConflict(*args)
-
-
-class ContextualVersionConflict(VersionConflict):
-    """
-    A VersionConflict that accepts a third parameter, the set of the
-    requirements that required the installed Distribution.
-    """
-
-    _template = VersionConflict._template + ' by {self.required_by}'
-
-    @property
-    def required_by(self):
-        return self.args[2]
-
-
-class DistributionNotFound(ResolutionError):
-    """A requested distribution was not found"""
-
-    _template = (
-        "The '{self.req}' distribution was not found "
-        "and is required by {self.requirers_str}"
-    )
-
-    @property
-    def req(self):
-        return self.args[0]
-
-    @property
-    def requirers(self):
-        return self.args[1]
-
-    @property
-    def requirers_str(self):
-        if not self.requirers:
-            return 'the application'
-        return ', '.join(self.requirers)
-
-    def report(self):
-        return self._template.format(**locals())
-
-    def __str__(self):
-        return self.report()
-
-
-class UnknownExtra(ResolutionError):
-    """Distribution doesn't have an "extra feature" of the given name"""
-
-
-_provider_factories = {}
-
-PY_MAJOR = '{}.{}'.format(*sys.version_info)
-EGG_DIST = 3
-BINARY_DIST = 2
-SOURCE_DIST = 1
-CHECKOUT_DIST = 0
-DEVELOP_DIST = -1
-
-
-def register_loader_type(loader_type, provider_factory):
-    """Register `provider_factory` to make providers for `loader_type`
-
-    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
-    and `provider_factory` is a function that, passed a *module* object,
-    returns an ``IResourceProvider`` for that module.
-    """
-    _provider_factories[loader_type] = provider_factory
-
-
-def get_provider(moduleOrReq):
-    """Return an IResourceProvider for the named module or requirement"""
-    if isinstance(moduleOrReq, Requirement):
-        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
-    try:
-        module = sys.modules[moduleOrReq]
-    except KeyError:
-        __import__(moduleOrReq)
-        module = sys.modules[moduleOrReq]
-    loader = getattr(module, '__loader__', None)
-    return _find_adapter(_provider_factories, loader)(module)
-
-
-def _macos_vers(_cache=[]):
-    if not _cache:
-        version = platform.mac_ver()[0]
-        # fallback for MacPorts
-        if version == '':
-            plist = '/System/Library/CoreServices/SystemVersion.plist'
-            if os.path.exists(plist):
-                if hasattr(plistlib, 'readPlist'):
-                    plist_content = plistlib.readPlist(plist)
-                    if 'ProductVersion' in plist_content:
-                        version = plist_content['ProductVersion']
-
-        _cache.append(version.split('.'))
-    return _cache[0]
-
-
-def _macos_arch(machine):
-    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
-
-
-def get_build_platform():
-    """Return this platform's string for platform-specific distributions
-
-    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
-    needs some hacks for Linux and macOS.
-    """
-    from sysconfig import get_platform
-
-    plat = get_platform()
-    if sys.platform == "darwin" and not plat.startswith('macosx-'):
-        try:
-            version = _macos_vers()
-            machine = os.uname()[4].replace(" ", "_")
-            return "macosx-%d.%d-%s" % (
-                int(version[0]),
-                int(version[1]),
-                _macos_arch(machine),
-            )
-        except ValueError:
-            # if someone is running a non-Mac darwin system, this will fall
-            # through to the default implementation
-            pass
-    return plat
-
-
-macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
-darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
-# XXX backward compat
-get_platform = get_build_platform
-
-
-def compatible_platforms(provided, required):
-    """Can code for the `provided` platform run on the `required` platform?
-
-    Returns true if either platform is ``None``, or the platforms are equal.
-
-    XXX Needs compatibility checks for Linux and other unixy OSes.
-    """
-    if provided is None or required is None or provided == required:
-        # easy case
-        return True
-
-    # macOS special cases
-    reqMac = macosVersionString.match(required)
-    if reqMac:
-        provMac = macosVersionString.match(provided)
-
-        # is this a Mac package?
-        if not provMac:
-            # this is backwards compatibility for packages built before
-            # setuptools 0.6. All packages built after this point will
-            # use the new macOS designation.
-            provDarwin = darwinVersionString.match(provided)
-            if provDarwin:
-                dversion = int(provDarwin.group(1))
-                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
-                if (
-                    dversion == 7
-                    and macosversion >= "10.3"
-                    or dversion == 8
-                    and macosversion >= "10.4"
-                ):
-                    return True
-            # egg isn't macOS or legacy darwin
-            return False
-
-        # are they the same major version and machine type?
-        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
-            return False
-
-        # is the required OS major update >= the provided one?
-        if int(provMac.group(2)) > int(reqMac.group(2)):
-            return False
-
-        return True
-
-    # XXX Linux and other platforms' special cases should go here
-    return False
-
-
-def run_script(dist_spec, script_name):
-    """Locate distribution `dist_spec` and run its `script_name` script"""
-    ns = sys._getframe(1).f_globals
-    name = ns['__name__']
-    ns.clear()
-    ns['__name__'] = name
-    require(dist_spec)[0].run_script(script_name, ns)
-
-
-# backward compatibility
-run_main = run_script
-
-
-def get_distribution(dist):
-    """Return a current distribution object for a Requirement or string"""
-    if isinstance(dist, str):
-        dist = Requirement.parse(dist)
-    if isinstance(dist, Requirement):
-        dist = get_provider(dist)
-    if not isinstance(dist, Distribution):
-        raise TypeError("Expected string, Requirement, or Distribution", dist)
-    return dist
-
-
-def load_entry_point(dist, group, name):
-    """Return `name` entry point of `group` for `dist` or raise ImportError"""
-    return get_distribution(dist).load_entry_point(group, name)
-
-
-def get_entry_map(dist, group=None):
-    """Return the entry point map for `group`, or the full entry map"""
-    return get_distribution(dist).get_entry_map(group)
-
-
-def get_entry_info(dist, group, name):
-    """Return the EntryPoint object for `group`+`name`, or ``None``"""
-    return get_distribution(dist).get_entry_info(group, name)
-
-
-class IMetadataProvider:
-    def has_metadata(name):
-        """Does the package's distribution contain the named metadata?"""
-
-    def get_metadata(name):
-        """The named metadata resource as a string"""
-
-    def get_metadata_lines(name):
-        """Yield named metadata resource as list of non-blank non-comment lines
-
-        Leading and trailing whitespace is stripped from each line, and lines
-        with ``#`` as the first non-blank character are omitted."""
-
-    def metadata_isdir(name):
-        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
-
-    def metadata_listdir(name):
-        """List of metadata names in the directory (like ``os.listdir()``)"""
-
-    def run_script(script_name, namespace):
-        """Execute the named script in the supplied namespace dictionary"""
-
-
-class IResourceProvider(IMetadataProvider):
-    """An object that provides access to package resources"""
-
-    def get_resource_filename(manager, resource_name):
-        """Return a true filesystem path for `resource_name`
-
-        `manager` must be an ``IResourceManager``"""
-
-    def get_resource_stream(manager, resource_name):
-        """Return a readable file-like object for `resource_name`
-
-        `manager` must be an ``IResourceManager``"""
-
-    def get_resource_string(manager, resource_name):
-        """Return a string containing the contents of `resource_name`
-
-        `manager` must be an ``IResourceManager``"""
-
-    def has_resource(resource_name):
-        """Does the package contain the named resource?"""
-
-    def resource_isdir(resource_name):
-        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
-
-    def resource_listdir(resource_name):
-        """List of resource names in the directory (like ``os.listdir()``)"""
-
-
-class WorkingSet:
-    """A collection of active distributions on sys.path (or a similar list)"""
-
-    def __init__(self, entries=None):
-        """Create working set from list of path entries (default=sys.path)"""
-        self.entries = []
-        self.entry_keys = {}
-        self.by_key = {}
-        self.normalized_to_canonical_keys = {}
-        self.callbacks = []
-
-        if entries is None:
-            entries = sys.path
-
-        for entry in entries:
-            self.add_entry(entry)
-
-    @classmethod
-    def _build_master(cls):
-        """
-        Prepare the master working set.
-        """
-        ws = cls()
-        try:
-            from __main__ import __requires__
-        except ImportError:
-            # The main program does not list any requirements
-            return ws
-
-        # ensure the requirements are met
-        try:
-            ws.require(__requires__)
-        except VersionConflict:
-            return cls._build_from_requirements(__requires__)
-
-        return ws
-
-    @classmethod
-    def _build_from_requirements(cls, req_spec):
-        """
-        Build a working set from a requirement spec. Rewrites sys.path.
-        """
-        # try it without defaults already on sys.path
-        # by starting with an empty path
-        ws = cls([])
-        reqs = parse_requirements(req_spec)
-        dists = ws.resolve(reqs, Environment())
-        for dist in dists:
-            ws.add(dist)
-
-        # add any missing entries from sys.path
-        for entry in sys.path:
-            if entry not in ws.entries:
-                ws.add_entry(entry)
-
-        # then copy back to sys.path
-        sys.path[:] = ws.entries
-        return ws
-
-    def add_entry(self, entry):
-        """Add a path item to ``.entries``, finding any distributions on it
-
-        ``find_distributions(entry, True)`` is used to find distributions
-        corresponding to the path entry, and they are added.  `entry` is
-        always appended to ``.entries``, even if it is already present.
-        (This is because ``sys.path`` can contain the same value more than
-        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
-        equal ``sys.path``.)
-        """
-        self.entry_keys.setdefault(entry, [])
-        self.entries.append(entry)
-        for dist in find_distributions(entry, True):
-            self.add(dist, entry, False)
-
-    def __contains__(self, dist):
-        """True if `dist` is the active distribution for its project"""
-        return self.by_key.get(dist.key) == dist
-
-    def find(self, req):
-        """Find a distribution matching requirement `req`
-
-        If there is an active distribution for the requested project, this
-        returns it as long as it meets the version requirement specified by
-        `req`.  But, if there is an active distribution for the project and it
-        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
-        If there is no active distribution for the requested project, ``None``
-        is returned.
-        """
-        dist = self.by_key.get(req.key)
-
-        if dist is None:
-            canonical_key = self.normalized_to_canonical_keys.get(req.key)
-
-            if canonical_key is not None:
-                req.key = canonical_key
-                dist = self.by_key.get(canonical_key)
-
-        if dist is not None and dist not in req:
-            # XXX add more info
-            raise VersionConflict(dist, req)
-        return dist
-
-    def iter_entry_points(self, group, name=None):
-        """Yield entry point objects from `group` matching `name`
-
-        If `name` is None, yields all entry points in `group` from all
-        distributions in the working set, otherwise only ones matching
-        both `group` and `name` are yielded (in distribution order).
-        """
-        return (
-            entry
-            for dist in self
-            for entry in dist.get_entry_map(group).values()
-            if name is None or name == entry.name
-        )
-
-    def run_script(self, requires, script_name):
-        """Locate distribution for `requires` and run `script_name` script"""
-        ns = sys._getframe(1).f_globals
-        name = ns['__name__']
-        ns.clear()
-        ns['__name__'] = name
-        self.require(requires)[0].run_script(script_name, ns)
-
-    def __iter__(self):
-        """Yield distributions for non-duplicate projects in the working set
-
-        The yield order is the order in which the items' path entries were
-        added to the working set.
-        """
-        seen = {}
-        for item in self.entries:
-            if item not in self.entry_keys:
-                # workaround a cache issue
-                continue
-
-            for key in self.entry_keys[item]:
-                if key not in seen:
-                    seen[key] = 1
-                    yield self.by_key[key]
-
-    def add(self, dist, entry=None, insert=True, replace=False):
-        """Add `dist` to working set, associated with `entry`
-
-        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
-        On exit from this routine, `entry` is added to the end of the working
-        set's ``.entries`` (if it wasn't already present).
-
-        `dist` is only added to the working set if it's for a project that
-        doesn't already have a distribution in the set, unless `replace=True`.
-        If it's added, any callbacks registered with the ``subscribe()`` method
-        will be called.
-        """
-        if insert:
-            dist.insert_on(self.entries, entry, replace=replace)
-
-        if entry is None:
-            entry = dist.location
-        keys = self.entry_keys.setdefault(entry, [])
-        keys2 = self.entry_keys.setdefault(dist.location, [])
-        if not replace and dist.key in self.by_key:
-            # ignore hidden distros
-            return
-
-        self.by_key[dist.key] = dist
-        normalized_name = packaging.utils.canonicalize_name(dist.key)
-        self.normalized_to_canonical_keys[normalized_name] = dist.key
-        if dist.key not in keys:
-            keys.append(dist.key)
-        if dist.key not in keys2:
-            keys2.append(dist.key)
-        self._added_new(dist)
-
-    def resolve(
-        self,
-        requirements,
-        env=None,
-        installer=None,
-        replace_conflicting=False,
-        extras=None,
-    ):
-        """List all distributions needed to (recursively) meet `requirements`
-
-        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
-        if supplied, should be an ``Environment`` instance.  If
-        not supplied, it defaults to all distributions available within any
-        entry or distribution in the working set.  `installer`, if supplied,
-        will be invoked with each requirement that cannot be met by an
-        already-installed distribution; it should return a ``Distribution`` or
-        ``None``.
-
-        Unless `replace_conflicting=True`, raises a VersionConflict exception
-        if
-        any requirements are found on the path that have the correct name but
-        the wrong version.  Otherwise, if an `installer` is supplied it will be
-        invoked to obtain the correct version of the requirement and activate
-        it.
-
-        `extras` is a list of the extras to be used with these requirements.
-        This is important because extra requirements may look like `my_req;
-        extra = "my_extra"`, which would otherwise be interpreted as a purely
-        optional requirement.  Instead, we want to be able to assert that these
-        requirements are truly required.
-        """
-
-        # set up the stack
-        requirements = list(requirements)[::-1]
-        # set of processed requirements
-        processed = {}
-        # key -> dist
-        best = {}
-        to_activate = []
-
-        req_extras = _ReqExtras()
-
-        # Mapping of requirement to set of distributions that required it;
-        # useful for reporting info about conflicts.
-        required_by = collections.defaultdict(set)
-
-        while requirements:
-            # process dependencies breadth-first
-            req = requirements.pop(0)
-            if req in processed:
-                # Ignore cyclic or redundant dependencies
-                continue
-
-            if not req_extras.markers_pass(req, extras):
-                continue
-
-            dist = self._resolve_dist(
-                req, best, replace_conflicting, env, installer, required_by, to_activate
-            )
-
-            # push the new requirements onto the stack
-            new_requirements = dist.requires(req.extras)[::-1]
-            requirements.extend(new_requirements)
-
-            # Register the new requirements needed by req
-            for new_requirement in new_requirements:
-                required_by[new_requirement].add(req.project_name)
-                req_extras[new_requirement] = req.extras
-
-            processed[req] = True
-
-        # return list of distros to activate
-        return to_activate
-
-    def _resolve_dist(
-        self, req, best, replace_conflicting, env, installer, required_by, to_activate
-    ):
-        dist = best.get(req.key)
-        if dist is None:
-            # Find the best distribution and add it to the map
-            dist = self.by_key.get(req.key)
-            if dist is None or (dist not in req and replace_conflicting):
-                ws = self
-                if env is None:
-                    if dist is None:
-                        env = Environment(self.entries)
-                    else:
-                        # Use an empty environment and workingset to avoid
-                        # any further conflicts with the conflicting
-                        # distribution
-                        env = Environment([])
-                        ws = WorkingSet([])
-                dist = best[req.key] = env.best_match(
-                    req, ws, installer, replace_conflicting=replace_conflicting
-                )
-                if dist is None:
-                    requirers = required_by.get(req, None)
-                    raise DistributionNotFound(req, requirers)
-            to_activate.append(dist)
-        if dist not in req:
-            # Oops, the "best" so far conflicts with a dependency
-            dependent_req = required_by[req]
-            raise VersionConflict(dist, req).with_context(dependent_req)
-        return dist
-
-    def find_plugins(self, plugin_env, full_env=None, installer=None, fallback=True):
-        """Find all activatable distributions in `plugin_env`
-
-        Example usage::
-
-            distributions, errors = working_set.find_plugins(
-                Environment(plugin_dirlist)
-            )
-            # add plugins+libs to sys.path
-            map(working_set.add, distributions)
-            # display errors
-            print('Could not load', errors)
-
-        The `plugin_env` should be an ``Environment`` instance that contains
-        only distributions that are in the project's "plugin directory" or
-        directories. The `full_env`, if supplied, should be an ``Environment``
-        contains all currently-available distributions.  If `full_env` is not
-        supplied, one is created automatically from the ``WorkingSet`` this
-        method is called on, which will typically mean that every directory on
-        ``sys.path`` will be scanned for distributions.
-
-        `installer` is a standard installer callback as used by the
-        ``resolve()`` method. The `fallback` flag indicates whether we should
-        attempt to resolve older versions of a plugin if the newest version
-        cannot be resolved.
-
-        This method returns a 2-tuple: (`distributions`, `error_info`), where
-        `distributions` is a list of the distributions found in `plugin_env`
-        that were loadable, along with any other distributions that are needed
-        to resolve their dependencies.  `error_info` is a dictionary mapping
-        unloadable plugin distributions to an exception instance describing the
-        error that occurred. Usually this will be a ``DistributionNotFound`` or
-        ``VersionConflict`` instance.
-        """
-
-        plugin_projects = list(plugin_env)
-        # scan project names in alphabetic order
-        plugin_projects.sort()
-
-        error_info = {}
-        distributions = {}
-
-        if full_env is None:
-            env = Environment(self.entries)
-            env += plugin_env
-        else:
-            env = full_env + plugin_env
-
-        shadow_set = self.__class__([])
-        # put all our entries in shadow_set
-        list(map(shadow_set.add, self))
-
-        for project_name in plugin_projects:
-            for dist in plugin_env[project_name]:
-                req = [dist.as_requirement()]
-
-                try:
-                    resolvees = shadow_set.resolve(req, env, installer)
-
-                except ResolutionError as v:
-                    # save error info
-                    error_info[dist] = v
-                    if fallback:
-                        # try the next older version of project
-                        continue
-                    else:
-                        # give up on this project, keep going
-                        break
-
-                else:
-                    list(map(shadow_set.add, resolvees))
-                    distributions.update(dict.fromkeys(resolvees))
-
-                    # success, no need to try any more versions of this project
-                    break
-
-        distributions = list(distributions)
-        distributions.sort()
-
-        return distributions, error_info
-
-    def require(self, *requirements):
-        """Ensure that distributions matching `requirements` are activated
-
-        `requirements` must be a string or a (possibly-nested) sequence
-        thereof, specifying the distributions and versions required.  The
-        return value is a sequence of the distributions that needed to be
-        activated to fulfill the requirements; all relevant distributions are
-        included, even if they were already activated in this working set.
-        """
-        needed = self.resolve(parse_requirements(requirements))
-
-        for dist in needed:
-            self.add(dist)
-
-        return needed
-
-    def subscribe(self, callback, existing=True):
-        """Invoke `callback` for all distributions
-
-        If `existing=True` (default),
-        call on all existing ones, as well.
-        """
-        if callback in self.callbacks:
-            return
-        self.callbacks.append(callback)
-        if not existing:
-            return
-        for dist in self:
-            callback(dist)
-
-    def _added_new(self, dist):
-        for callback in self.callbacks:
-            callback(dist)
-
-    def __getstate__(self):
-        return (
-            self.entries[:],
-            self.entry_keys.copy(),
-            self.by_key.copy(),
-            self.normalized_to_canonical_keys.copy(),
-            self.callbacks[:],
-        )
-
-    def __setstate__(self, e_k_b_n_c):
-        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
-        self.entries = entries[:]
-        self.entry_keys = keys.copy()
-        self.by_key = by_key.copy()
-        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
-        self.callbacks = callbacks[:]
-
-
-class _ReqExtras(dict):
-    """
-    Map each requirement to the extras that demanded it.
-    """
-
-    def markers_pass(self, req, extras=None):
-        """
-        Evaluate markers for req against each extra that
-        demanded it.
-
-        Return False if the req has a marker and fails
-        evaluation. Otherwise, return True.
-        """
-        extra_evals = (
-            req.marker.evaluate({'extra': extra})
-            for extra in self.get(req, ()) + (extras or (None,))
-        )
-        return not req.marker or any(extra_evals)
-
-
-class Environment:
-    """Searchable snapshot of distributions on a search path"""
-
-    def __init__(
-        self, search_path=None, platform=get_supported_platform(), python=PY_MAJOR
-    ):
-        """Snapshot distributions available on a search path
-
-        Any distributions found on `search_path` are added to the environment.
-        `search_path` should be a sequence of ``sys.path`` items.  If not
-        supplied, ``sys.path`` is used.
-
-        `platform` is an optional string specifying the name of the platform
-        that platform-specific distributions must be compatible with.  If
-        unspecified, it defaults to the current platform.  `python` is an
-        optional string naming the desired version of Python (e.g. ``'3.6'``);
-        it defaults to the current version.
-
-        You may explicitly set `platform` (and/or `python`) to ``None`` if you
-        wish to map *all* distributions, not just those compatible with the
-        running platform or Python version.
-        """
-        self._distmap = {}
-        self.platform = platform
-        self.python = python
-        self.scan(search_path)
-
-    def can_add(self, dist):
-        """Is distribution `dist` acceptable for this environment?
-
-        The distribution must match the platform and python version
-        requirements specified when this environment was created, or False
-        is returned.
-        """
-        py_compat = (
-            self.python is None
-            or dist.py_version is None
-            or dist.py_version == self.python
-        )
-        return py_compat and compatible_platforms(dist.platform, self.platform)
-
-    def remove(self, dist):
-        """Remove `dist` from the environment"""
-        self._distmap[dist.key].remove(dist)
-
-    def scan(self, search_path=None):
-        """Scan `search_path` for distributions usable in this environment
-
-        Any distributions found are added to the environment.
-        `search_path` should be a sequence of ``sys.path`` items.  If not
-        supplied, ``sys.path`` is used.  Only distributions conforming to
-        the platform/python version defined at initialization are added.
-        """
-        if search_path is None:
-            search_path = sys.path
-
-        for item in search_path:
-            for dist in find_distributions(item):
-                self.add(dist)
-
-    def __getitem__(self, project_name):
-        """Return a newest-to-oldest list of distributions for `project_name`
-
-        Uses case-insensitive `project_name` comparison, assuming all the
-        project's distributions use their project's name converted to all
-        lowercase as their key.
-
-        """
-        distribution_key = project_name.lower()
-        return self._distmap.get(distribution_key, [])
-
-    def add(self, dist):
-        """Add `dist` if we ``can_add()`` it and it has not already been added"""
-        if self.can_add(dist) and dist.has_version():
-            dists = self._distmap.setdefault(dist.key, [])
-            if dist not in dists:
-                dists.append(dist)
-                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
-
-    def best_match(self, req, working_set, installer=None, replace_conflicting=False):
-        """Find distribution best matching `req` and usable on `working_set`
-
-        This calls the ``find(req)`` method of the `working_set` to see if a
-        suitable distribution is already active.  (This may raise
-        ``VersionConflict`` if an unsuitable version of the project is already
-        active in the specified `working_set`.)  If a suitable distribution
-        isn't active, this method returns the newest distribution in the
-        environment that meets the ``Requirement`` in `req`.  If no suitable
-        distribution is found, and `installer` is supplied, then the result of
-        calling the environment's ``obtain(req, installer)`` method will be
-        returned.
-        """
-        try:
-            dist = working_set.find(req)
-        except VersionConflict:
-            if not replace_conflicting:
-                raise
-            dist = None
-        if dist is not None:
-            return dist
-        for dist in self[req.key]:
-            if dist in req:
-                return dist
-        # try to download/install
-        return self.obtain(req, installer)
-
-    def obtain(self, requirement, installer=None):
-        """Obtain a distribution matching `requirement` (e.g. via download)
-
-        Obtain a distro that matches requirement (e.g. via download).  In the
-        base ``Environment`` class, this routine just returns
-        ``installer(requirement)``, unless `installer` is None, in which case
-        None is returned instead.  This method is a hook that allows subclasses
-        to attempt other ways of obtaining a distribution before falling back
-        to the `installer` argument."""
-        if installer is not None:
-            return installer(requirement)
-
-    def __iter__(self):
-        """Yield the unique project names of the available distributions"""
-        for key in self._distmap.keys():
-            if self[key]:
-                yield key
-
-    def __iadd__(self, other):
-        """In-place addition of a distribution or environment"""
-        if isinstance(other, Distribution):
-            self.add(other)
-        elif isinstance(other, Environment):
-            for project in other:
-                for dist in other[project]:
-                    self.add(dist)
-        else:
-            raise TypeError("Can't add %r to environment" % (other,))
-        return self
-
-    def __add__(self, other):
-        """Add an environment or distribution to an environment"""
-        new = self.__class__([], platform=None, python=None)
-        for env in self, other:
-            new += env
-        return new
-
-
-# XXX backward compatibility
-AvailableDistributions = Environment
-
-
-class ExtractionError(RuntimeError):
-    """An error occurred extracting a resource
-
-    The following attributes are available from instances of this exception:
-
-    manager
-        The resource manager that raised this exception
-
-    cache_path
-        The base directory for resource extraction
-
-    original_error
-        The exception instance that caused extraction to fail
-    """
-
-
-class ResourceManager:
-    """Manage resource extraction and packages"""
-
-    extraction_path = None
-
-    def __init__(self):
-        self.cached_files = {}
-
-    def resource_exists(self, package_or_requirement, resource_name):
-        """Does the named resource exist?"""
-        return get_provider(package_or_requirement).has_resource(resource_name)
-
-    def resource_isdir(self, package_or_requirement, resource_name):
-        """Is the named resource an existing directory?"""
-        return get_provider(package_or_requirement).resource_isdir(resource_name)
-
-    def resource_filename(self, package_or_requirement, resource_name):
-        """Return a true filesystem path for specified resource"""
-        return get_provider(package_or_requirement).get_resource_filename(
-            self, resource_name
-        )
-
-    def resource_stream(self, package_or_requirement, resource_name):
-        """Return a readable file-like object for specified resource"""
-        return get_provider(package_or_requirement).get_resource_stream(
-            self, resource_name
-        )
-
-    def resource_string(self, package_or_requirement, resource_name):
-        """Return specified resource as a string"""
-        return get_provider(package_or_requirement).get_resource_string(
-            self, resource_name
-        )
-
-    def resource_listdir(self, package_or_requirement, resource_name):
-        """List the contents of the named resource directory"""
-        return get_provider(package_or_requirement).resource_listdir(resource_name)
-
-    def extraction_error(self):
-        """Give an error message for problems extracting file(s)"""
-
-        old_exc = sys.exc_info()[1]
-        cache_path = self.extraction_path or get_default_cache()
-
-        tmpl = textwrap.dedent(
-            """
-            Can't extract file(s) to egg cache
-
-            The following error occurred while trying to extract file(s)
-            to the Python egg cache:
-
-              {old_exc}
-
-            The Python egg cache directory is currently set to:
-
-              {cache_path}
-
-            Perhaps your account does not have write access to this directory?
-            You can change the cache directory by setting the PYTHON_EGG_CACHE
-            environment variable to point to an accessible directory.
-            """
-        ).lstrip()
-        err = ExtractionError(tmpl.format(**locals()))
-        err.manager = self
-        err.cache_path = cache_path
-        err.original_error = old_exc
-        raise err
-
-    def get_cache_path(self, archive_name, names=()):
-        """Return absolute location in cache for `archive_name` and `names`
-
-        The parent directory of the resulting path will be created if it does
-        not already exist.  `archive_name` should be the base filename of the
-        enclosing egg (which may not be the name of the enclosing zipfile!),
-        including its ".egg" extension.  `names`, if provided, should be a
-        sequence of path name parts "under" the egg's extraction location.
-
-        This method should only be called by resource providers that need to
-        obtain an extraction location, and only for names they intend to
-        extract, as it tracks the generated names for possible cleanup later.
-        """
-        extract_path = self.extraction_path or get_default_cache()
-        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
-        try:
-            _bypass_ensure_directory(target_path)
-        except Exception:
-            self.extraction_error()
-
-        self._warn_unsafe_extraction_path(extract_path)
-
-        self.cached_files[target_path] = 1
-        return target_path
-
-    @staticmethod
-    def _warn_unsafe_extraction_path(path):
-        """
-        If the default extraction path is overridden and set to an insecure
-        location, such as /tmp, it opens up an opportunity for an attacker to
-        replace an extracted file with an unauthorized payload. Warn the user
-        if a known insecure location is used.
-
-        See Distribute #375 for more details.
-        """
-        if os.name == 'nt' and not path.startswith(os.environ['windir']):
-            # On Windows, permissions are generally restrictive by default
-            #  and temp directories are not writable by other users, so
-            #  bypass the warning.
-            return
-        mode = os.stat(path).st_mode
-        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
-            msg = (
-                "Extraction path is writable by group/others "
-                "and vulnerable to attack when "
-                "used with get_resource_filename ({path}). "
-                "Consider a more secure "
-                "location (set with .set_extraction_path or the "
-                "PYTHON_EGG_CACHE environment variable)."
-            ).format(**locals())
-            warnings.warn(msg, UserWarning)
-
-    def postprocess(self, tempname, filename):
-        """Perform any platform-specific postprocessing of `tempname`
-
-        This is where Mac header rewrites should be done; other platforms don't
-        have anything special they should do.
-
-        Resource providers should call this method ONLY after successfully
-        extracting a compressed resource.  They must NOT call it on resources
-        that are already in the filesystem.
-
-        `tempname` is the current (temporary) name of the file, and `filename`
-        is the name it will be renamed to by the caller after this routine
-        returns.
-        """
-
-        if os.name == 'posix':
-            # Make the resource executable
-            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
-            os.chmod(tempname, mode)
-
-    def set_extraction_path(self, path):
-        """Set the base path where resources will be extracted to, if needed.
-
-        If you do not call this routine before any extractions take place, the
-        path defaults to the return value of ``get_default_cache()``.  (Which
-        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
-        platform-specific fallbacks.  See that routine's documentation for more
-        details.)
-
-        Resources are extracted to subdirectories of this path based upon
-        information given by the ``IResourceProvider``.  You may set this to a
-        temporary directory, but then you must call ``cleanup_resources()`` to
-        delete the extracted files when done.  There is no guarantee that
-        ``cleanup_resources()`` will be able to remove all extracted files.
-
-        (Note: you may not change the extraction path for a given resource
-        manager once resources have been extracted, unless you first call
-        ``cleanup_resources()``.)
-        """
-        if self.cached_files:
-            raise ValueError("Can't change extraction path, files already extracted")
-
-        self.extraction_path = path
-
-    def cleanup_resources(self, force=False):
-        """
-        Delete all extracted resource files and directories, returning a list
-        of the file and directory names that could not be successfully removed.
-        This function does not have any concurrency protection, so it should
-        generally only be called when the extraction path is a temporary
-        directory exclusive to a single process.  This method is not
-        automatically called; you must call it explicitly or register it as an
-        ``atexit`` function if you wish to ensure cleanup of a temporary
-        directory used for extractions.
-        """
-        # XXX
-
-
-def get_default_cache():
-    """
-    Return the ``PYTHON_EGG_CACHE`` environment variable
-    or a platform-relevant user cache dir for an app
-    named "Python-Eggs".
-    """
-    return os.environ.get('PYTHON_EGG_CACHE') or platformdirs.user_cache_dir(
-        appname='Python-Eggs'
-    )
-
-
-def safe_name(name):
-    """Convert an arbitrary string to a standard distribution name
-
-    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
-    """
-    return re.sub('[^A-Za-z0-9.]+', '-', name)
-
-
-def safe_version(version):
-    """
-    Convert an arbitrary string to a standard version string
-    """
-    try:
-        # normalize the version
-        return str(packaging.version.Version(version))
-    except packaging.version.InvalidVersion:
-        version = version.replace(' ', '.')
-        return re.sub('[^A-Za-z0-9.]+', '-', version)
-
-
-def _forgiving_version(version):
-    """Fallback when ``safe_version`` is not safe enough
-    >>> parse_version(_forgiving_version('0.23ubuntu1'))
-    
-    >>> parse_version(_forgiving_version('0.23-'))
-    
-    >>> parse_version(_forgiving_version('0.-_'))
-    
-    >>> parse_version(_forgiving_version('42.+?1'))
-    
-    >>> parse_version(_forgiving_version('hello world'))
-    
-    """
-    version = version.replace(' ', '.')
-    match = _PEP440_FALLBACK.search(version)
-    if match:
-        safe = match["safe"]
-        rest = version[len(safe):]
-    else:
-        safe = "0"
-        rest = version
-    local = f"sanitized.{_safe_segment(rest)}".strip(".")
-    return f"{safe}.dev0+{local}"
-
-
-def _safe_segment(segment):
-    """Convert an arbitrary string into a safe segment"""
-    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
-    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
-    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
-
-
-def safe_extra(extra):
-    """Convert an arbitrary string to a standard 'extra' name
-
-    Any runs of non-alphanumeric characters are replaced with a single '_',
-    and the result is always lowercased.
-    """
-    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
-
-
-def to_filename(name):
-    """Convert a project or version name to its filename-escaped form
-
-    Any '-' characters are currently replaced with '_'.
-    """
-    return name.replace('-', '_')
-
-
-def invalid_marker(text):
-    """
-    Validate text as a PEP 508 environment marker; return an exception
-    if invalid or False otherwise.
-    """
-    try:
-        evaluate_marker(text)
-    except SyntaxError as e:
-        e.filename = None
-        e.lineno = None
-        return e
-    return False
-
-
-def evaluate_marker(text, extra=None):
-    """
-    Evaluate a PEP 508 environment marker.
-    Return a boolean indicating the marker result in this environment.
-    Raise SyntaxError if marker is invalid.
-
-    This implementation uses the 'pyparsing' module.
-    """
-    try:
-        marker = packaging.markers.Marker(text)
-        return marker.evaluate()
-    except packaging.markers.InvalidMarker as e:
-        raise SyntaxError(e) from e
-
-
-class NullProvider:
-    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
-
-    egg_name = None
-    egg_info = None
-    loader = None
-
-    def __init__(self, module):
-        self.loader = getattr(module, '__loader__', None)
-        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
-
-    def get_resource_filename(self, manager, resource_name):
-        return self._fn(self.module_path, resource_name)
-
-    def get_resource_stream(self, manager, resource_name):
-        return io.BytesIO(self.get_resource_string(manager, resource_name))
-
-    def get_resource_string(self, manager, resource_name):
-        return self._get(self._fn(self.module_path, resource_name))
-
-    def has_resource(self, resource_name):
-        return self._has(self._fn(self.module_path, resource_name))
-
-    def _get_metadata_path(self, name):
-        return self._fn(self.egg_info, name)
-
-    def has_metadata(self, name):
-        if not self.egg_info:
-            return self.egg_info
-
-        path = self._get_metadata_path(name)
-        return self._has(path)
-
-    def get_metadata(self, name):
-        if not self.egg_info:
-            return ""
-        path = self._get_metadata_path(name)
-        value = self._get(path)
-        try:
-            return value.decode('utf-8')
-        except UnicodeDecodeError as exc:
-            # Include the path in the error message to simplify
-            # troubleshooting, and without changing the exception type.
-            exc.reason += ' in {} file at path: {}'.format(name, path)
-            raise
-
-    def get_metadata_lines(self, name):
-        return yield_lines(self.get_metadata(name))
-
-    def resource_isdir(self, resource_name):
-        return self._isdir(self._fn(self.module_path, resource_name))
-
-    def metadata_isdir(self, name):
-        return self.egg_info and self._isdir(self._fn(self.egg_info, name))
-
-    def resource_listdir(self, resource_name):
-        return self._listdir(self._fn(self.module_path, resource_name))
-
-    def metadata_listdir(self, name):
-        if self.egg_info:
-            return self._listdir(self._fn(self.egg_info, name))
-        return []
-
-    def run_script(self, script_name, namespace):
-        script = 'scripts/' + script_name
-        if not self.has_metadata(script):
-            raise ResolutionError(
-                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
-                    **locals()
-                ),
-            )
-        script_text = self.get_metadata(script).replace('\r\n', '\n')
-        script_text = script_text.replace('\r', '\n')
-        script_filename = self._fn(self.egg_info, script)
-        namespace['__file__'] = script_filename
-        if os.path.exists(script_filename):
-            with open(script_filename) as fid:
-                source = fid.read()
-            code = compile(source, script_filename, 'exec')
-            exec(code, namespace, namespace)
-        else:
-            from linecache import cache
-
-            cache[script_filename] = (
-                len(script_text),
-                0,
-                script_text.split('\n'),
-                script_filename,
-            )
-            script_code = compile(script_text, script_filename, 'exec')
-            exec(script_code, namespace, namespace)
-
-    def _has(self, path):
-        raise NotImplementedError(
-            "Can't perform this operation for unregistered loader type"
-        )
-
-    def _isdir(self, path):
-        raise NotImplementedError(
-            "Can't perform this operation for unregistered loader type"
-        )
-
-    def _listdir(self, path):
-        raise NotImplementedError(
-            "Can't perform this operation for unregistered loader type"
-        )
-
-    def _fn(self, base, resource_name):
-        self._validate_resource_path(resource_name)
-        if resource_name:
-            return os.path.join(base, *resource_name.split('/'))
-        return base
-
-    @staticmethod
-    def _validate_resource_path(path):
-        """
-        Validate the resource paths according to the docs.
-        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
-
-        >>> warned = getfixture('recwarn')
-        >>> warnings.simplefilter('always')
-        >>> vrp = NullProvider._validate_resource_path
-        >>> vrp('foo/bar.txt')
-        >>> bool(warned)
-        False
-        >>> vrp('../foo/bar.txt')
-        >>> bool(warned)
-        True
-        >>> warned.clear()
-        >>> vrp('/foo/bar.txt')
-        >>> bool(warned)
-        True
-        >>> vrp('foo/../../bar.txt')
-        >>> bool(warned)
-        True
-        >>> warned.clear()
-        >>> vrp('foo/f../bar.txt')
-        >>> bool(warned)
-        False
-
-        Windows path separators are straight-up disallowed.
-        >>> vrp(r'\\foo/bar.txt')
-        Traceback (most recent call last):
-        ...
-        ValueError: Use of .. or absolute path in a resource path \
-is not allowed.
-
-        >>> vrp(r'C:\\foo/bar.txt')
-        Traceback (most recent call last):
-        ...
-        ValueError: Use of .. or absolute path in a resource path \
-is not allowed.
-
-        Blank values are allowed
-
-        >>> vrp('')
-        >>> bool(warned)
-        False
-
-        Non-string values are not.
-
-        >>> vrp(None)
-        Traceback (most recent call last):
-        ...
-        AttributeError: ...
-        """
-        invalid = (
-            os.path.pardir in path.split(posixpath.sep)
-            or posixpath.isabs(path)
-            or ntpath.isabs(path)
-        )
-        if not invalid:
-            return
-
-        msg = "Use of .. or absolute path in a resource path is not allowed."
-
-        # Aggressively disallow Windows absolute paths
-        if ntpath.isabs(path) and not posixpath.isabs(path):
-            raise ValueError(msg)
-
-        # for compatibility, warn; in future
-        # raise ValueError(msg)
-        issue_warning(
-            msg[:-1] + " and will raise exceptions in a future release.",
-            DeprecationWarning,
-        )
-
-    def _get(self, path):
-        if hasattr(self.loader, 'get_data'):
-            return self.loader.get_data(path)
-        raise NotImplementedError(
-            "Can't perform this operation for loaders without 'get_data()'"
-        )
-
-
-register_loader_type(object, NullProvider)
-
-
-def _parents(path):
-    """
-    yield all parents of path including path
-    """
-    last = None
-    while path != last:
-        yield path
-        last = path
-        path, _ = os.path.split(path)
-
-
-class EggProvider(NullProvider):
-    """Provider based on a virtual filesystem"""
-
-    def __init__(self, module):
-        super().__init__(module)
-        self._setup_prefix()
-
-    def _setup_prefix(self):
-        # Assume that metadata may be nested inside a "basket"
-        # of multiple eggs and use module_path instead of .archive.
-        eggs = filter(_is_egg_path, _parents(self.module_path))
-        egg = next(eggs, None)
-        egg and self._set_egg(egg)
-
-    def _set_egg(self, path):
-        self.egg_name = os.path.basename(path)
-        self.egg_info = os.path.join(path, 'EGG-INFO')
-        self.egg_root = path
-
-
-class DefaultProvider(EggProvider):
-    """Provides access to package resources in the filesystem"""
-
-    def _has(self, path):
-        return os.path.exists(path)
-
-    def _isdir(self, path):
-        return os.path.isdir(path)
-
-    def _listdir(self, path):
-        return os.listdir(path)
-
-    def get_resource_stream(self, manager, resource_name):
-        return open(self._fn(self.module_path, resource_name), 'rb')
-
-    def _get(self, path):
-        with open(path, 'rb') as stream:
-            return stream.read()
-
-    @classmethod
-    def _register(cls):
-        loader_names = (
-            'SourceFileLoader',
-            'SourcelessFileLoader',
-        )
-        for name in loader_names:
-            loader_cls = getattr(importlib_machinery, name, type(None))
-            register_loader_type(loader_cls, cls)
-
-
-DefaultProvider._register()
-
-
-class EmptyProvider(NullProvider):
-    """Provider that returns nothing for all requests"""
-
-    module_path = None
-
-    _isdir = _has = lambda self, path: False
-
-    def _get(self, path):
-        return ''
-
-    def _listdir(self, path):
-        return []
-
-    def __init__(self):
-        pass
-
-
-empty_provider = EmptyProvider()
-
-
-class ZipManifests(dict):
-    """
-    zip manifest builder
-    """
-
-    @classmethod
-    def build(cls, path):
-        """
-        Build a dictionary similar to the zipimport directory
-        caches, except instead of tuples, store ZipInfo objects.
-
-        Use a platform-specific path separator (os.sep) for the path keys
-        for compatibility with pypy on Windows.
-        """
-        with zipfile.ZipFile(path) as zfile:
-            items = (
-                (
-                    name.replace('/', os.sep),
-                    zfile.getinfo(name),
-                )
-                for name in zfile.namelist()
-            )
-            return dict(items)
-
-    load = build
-
-
-class MemoizedZipManifests(ZipManifests):
-    """
-    Memoized zipfile manifests.
-    """
-
-    manifest_mod = collections.namedtuple('manifest_mod', 'manifest mtime')
-
-    def load(self, path):
-        """
-        Load a manifest at path or return a suitable manifest already loaded.
-        """
-        path = os.path.normpath(path)
-        mtime = os.stat(path).st_mtime
-
-        if path not in self or self[path].mtime != mtime:
-            manifest = self.build(path)
-            self[path] = self.manifest_mod(manifest, mtime)
-
-        return self[path].manifest
-
-
-class ZipProvider(EggProvider):
-    """Resource support for zips and eggs"""
-
-    eagers = None
-    _zip_manifests = MemoizedZipManifests()
-
-    def __init__(self, module):
-        super().__init__(module)
-        self.zip_pre = self.loader.archive + os.sep
-
-    def _zipinfo_name(self, fspath):
-        # Convert a virtual filename (full path to file) into a zipfile subpath
-        # usable with the zipimport directory cache for our target archive
-        fspath = fspath.rstrip(os.sep)
-        if fspath == self.loader.archive:
-            return ''
-        if fspath.startswith(self.zip_pre):
-            return fspath[len(self.zip_pre) :]
-        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
-
-    def _parts(self, zip_path):
-        # Convert a zipfile subpath into an egg-relative path part list.
-        # pseudo-fs path
-        fspath = self.zip_pre + zip_path
-        if fspath.startswith(self.egg_root + os.sep):
-            return fspath[len(self.egg_root) + 1 :].split(os.sep)
-        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
-
-    @property
-    def zipinfo(self):
-        return self._zip_manifests.load(self.loader.archive)
-
-    def get_resource_filename(self, manager, resource_name):
-        if not self.egg_name:
-            raise NotImplementedError(
-                "resource_filename() only supported for .egg, not .zip"
-            )
-        # no need to lock for extraction, since we use temp names
-        zip_path = self._resource_to_zip(resource_name)
-        eagers = self._get_eager_resources()
-        if '/'.join(self._parts(zip_path)) in eagers:
-            for name in eagers:
-                self._extract_resource(manager, self._eager_to_zip(name))
-        return self._extract_resource(manager, zip_path)
-
-    @staticmethod
-    def _get_date_and_size(zip_stat):
-        size = zip_stat.file_size
-        # ymdhms+wday, yday, dst
-        date_time = zip_stat.date_time + (0, 0, -1)
-        # 1980 offset already done
-        timestamp = time.mktime(date_time)
-        return timestamp, size
-
-    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
-    def _extract_resource(self, manager, zip_path):  # noqa: C901
-        if zip_path in self._index():
-            for name in self._index()[zip_path]:
-                last = self._extract_resource(manager, os.path.join(zip_path, name))
-            # return the extracted directory name
-            return os.path.dirname(last)
-
-        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
-
-        if not WRITE_SUPPORT:
-            raise IOError(
-                '"os.rename" and "os.unlink" are not supported ' 'on this platform'
-            )
-        try:
-            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
-
-            if self._is_current(real_path, zip_path):
-                return real_path
-
-            outf, tmpnam = _mkstemp(
-                ".$extract",
-                dir=os.path.dirname(real_path),
-            )
-            os.write(outf, self.loader.get_data(zip_path))
-            os.close(outf)
-            utime(tmpnam, (timestamp, timestamp))
-            manager.postprocess(tmpnam, real_path)
-
-            try:
-                rename(tmpnam, real_path)
-
-            except os.error:
-                if os.path.isfile(real_path):
-                    if self._is_current(real_path, zip_path):
-                        # the file became current since it was checked above,
-                        #  so proceed.
-                        return real_path
-                    # Windows, del old file and retry
-                    elif os.name == 'nt':
-                        unlink(real_path)
-                        rename(tmpnam, real_path)
-                        return real_path
-                raise
-
-        except os.error:
-            # report a user-friendly error
-            manager.extraction_error()
-
-        return real_path
-
-    def _is_current(self, file_path, zip_path):
-        """
-        Return True if the file_path is current for this zip_path
-        """
-        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
-        if not os.path.isfile(file_path):
-            return False
-        stat = os.stat(file_path)
-        if stat.st_size != size or stat.st_mtime != timestamp:
-            return False
-        # check that the contents match
-        zip_contents = self.loader.get_data(zip_path)
-        with open(file_path, 'rb') as f:
-            file_contents = f.read()
-        return zip_contents == file_contents
-
-    def _get_eager_resources(self):
-        if self.eagers is None:
-            eagers = []
-            for name in ('native_libs.txt', 'eager_resources.txt'):
-                if self.has_metadata(name):
-                    eagers.extend(self.get_metadata_lines(name))
-            self.eagers = eagers
-        return self.eagers
-
-    def _index(self):
-        try:
-            return self._dirindex
-        except AttributeError:
-            ind = {}
-            for path in self.zipinfo:
-                parts = path.split(os.sep)
-                while parts:
-                    parent = os.sep.join(parts[:-1])
-                    if parent in ind:
-                        ind[parent].append(parts[-1])
-                        break
-                    else:
-                        ind[parent] = [parts.pop()]
-            self._dirindex = ind
-            return ind
-
-    def _has(self, fspath):
-        zip_path = self._zipinfo_name(fspath)
-        return zip_path in self.zipinfo or zip_path in self._index()
-
-    def _isdir(self, fspath):
-        return self._zipinfo_name(fspath) in self._index()
-
-    def _listdir(self, fspath):
-        return list(self._index().get(self._zipinfo_name(fspath), ()))
-
-    def _eager_to_zip(self, resource_name):
-        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
-
-    def _resource_to_zip(self, resource_name):
-        return self._zipinfo_name(self._fn(self.module_path, resource_name))
-
-
-register_loader_type(zipimport.zipimporter, ZipProvider)
-
-
-class FileMetadata(EmptyProvider):
-    """Metadata handler for standalone PKG-INFO files
-
-    Usage::
-
-        metadata = FileMetadata("/path/to/PKG-INFO")
-
-    This provider rejects all data and metadata requests except for PKG-INFO,
-    which is treated as existing, and will be the contents of the file at
-    the provided location.
-    """
-
-    def __init__(self, path):
-        self.path = path
-
-    def _get_metadata_path(self, name):
-        return self.path
-
-    def has_metadata(self, name):
-        return name == 'PKG-INFO' and os.path.isfile(self.path)
-
-    def get_metadata(self, name):
-        if name != 'PKG-INFO':
-            raise KeyError("No metadata except PKG-INFO is available")
-
-        with io.open(self.path, encoding='utf-8', errors="replace") as f:
-            metadata = f.read()
-        self._warn_on_replacement(metadata)
-        return metadata
-
-    def _warn_on_replacement(self, metadata):
-        replacement_char = '�'
-        if replacement_char in metadata:
-            tmpl = "{self.path} could not be properly decoded in UTF-8"
-            msg = tmpl.format(**locals())
-            warnings.warn(msg)
-
-    def get_metadata_lines(self, name):
-        return yield_lines(self.get_metadata(name))
-
-
-class PathMetadata(DefaultProvider):
-    """Metadata provider for egg directories
-
-    Usage::
-
-        # Development eggs:
-
-        egg_info = "/path/to/PackageName.egg-info"
-        base_dir = os.path.dirname(egg_info)
-        metadata = PathMetadata(base_dir, egg_info)
-        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
-        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
-
-        # Unpacked egg directories:
-
-        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
-        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
-        dist = Distribution.from_filename(egg_path, metadata=metadata)
-    """
-
-    def __init__(self, path, egg_info):
-        self.module_path = path
-        self.egg_info = egg_info
-
-
-class EggMetadata(ZipProvider):
-    """Metadata provider for .egg files"""
-
-    def __init__(self, importer):
-        """Create a metadata provider from a zipimporter"""
-
-        self.zip_pre = importer.archive + os.sep
-        self.loader = importer
-        if importer.prefix:
-            self.module_path = os.path.join(importer.archive, importer.prefix)
-        else:
-            self.module_path = importer.archive
-        self._setup_prefix()
-
-
-_declare_state('dict', _distribution_finders={})
-
-
-def register_finder(importer_type, distribution_finder):
-    """Register `distribution_finder` to find distributions in sys.path items
-
-    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
-    handler), and `distribution_finder` is a callable that, passed a path
-    item and the importer instance, yields ``Distribution`` instances found on
-    that path item.  See ``pkg_resources.find_on_path`` for an example."""
-    _distribution_finders[importer_type] = distribution_finder
-
-
-def find_distributions(path_item, only=False):
-    """Yield distributions accessible via `path_item`"""
-    importer = get_importer(path_item)
-    finder = _find_adapter(_distribution_finders, importer)
-    return finder(importer, path_item, only)
-
-
-def find_eggs_in_zip(importer, path_item, only=False):
-    """
-    Find eggs in zip files; possibly multiple nested eggs.
-    """
-    if importer.archive.endswith('.whl'):
-        # wheels are not supported with this finder
-        # they don't have PKG-INFO metadata, and won't ever contain eggs
-        return
-    metadata = EggMetadata(importer)
-    if metadata.has_metadata('PKG-INFO'):
-        yield Distribution.from_filename(path_item, metadata=metadata)
-    if only:
-        # don't yield nested distros
-        return
-    for subitem in metadata.resource_listdir(''):
-        if _is_egg_path(subitem):
-            subpath = os.path.join(path_item, subitem)
-            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
-            for dist in dists:
-                yield dist
-        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
-            subpath = os.path.join(path_item, subitem)
-            submeta = EggMetadata(zipimport.zipimporter(subpath))
-            submeta.egg_info = subpath
-            yield Distribution.from_location(path_item, subitem, submeta)
-
-
-register_finder(zipimport.zipimporter, find_eggs_in_zip)
-
-
-def find_nothing(importer, path_item, only=False):
-    return ()
-
-
-register_finder(object, find_nothing)
-
-
-def find_on_path(importer, path_item, only=False):
-    """Yield distributions accessible on a sys.path directory"""
-    path_item = _normalize_cached(path_item)
-
-    if _is_unpacked_egg(path_item):
-        yield Distribution.from_filename(
-            path_item,
-            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
-        )
-        return
-
-    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
-
-    # scan for .egg and .egg-info in directory
-    for entry in sorted(entries):
-        fullpath = os.path.join(path_item, entry)
-        factory = dist_factory(path_item, entry, only)
-        for dist in factory(fullpath):
-            yield dist
-
-
-def dist_factory(path_item, entry, only):
-    """Return a dist_factory for the given entry."""
-    lower = entry.lower()
-    is_egg_info = lower.endswith('.egg-info')
-    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
-        os.path.join(path_item, entry)
-    )
-    is_meta = is_egg_info or is_dist_info
-    return (
-        distributions_from_metadata
-        if is_meta
-        else find_distributions
-        if not only and _is_egg_path(entry)
-        else resolve_egg_link
-        if not only and lower.endswith('.egg-link')
-        else NoDists()
-    )
-
-
-class NoDists:
-    """
-    >>> bool(NoDists())
-    False
-
-    >>> list(NoDists()('anything'))
-    []
-    """
-
-    def __bool__(self):
-        return False
-
-    def __call__(self, fullpath):
-        return iter(())
-
-
-def safe_listdir(path):
-    """
-    Attempt to list contents of path, but suppress some exceptions.
-    """
-    try:
-        return os.listdir(path)
-    except (PermissionError, NotADirectoryError):
-        pass
-    except OSError as e:
-        # Ignore the directory if does not exist, not a directory or
-        # permission denied
-        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
-            raise
-    return ()
-
-
-def distributions_from_metadata(path):
-    root = os.path.dirname(path)
-    if os.path.isdir(path):
-        if len(os.listdir(path)) == 0:
-            # empty metadata dir; skip
-            return
-        metadata = PathMetadata(root, path)
-    else:
-        metadata = FileMetadata(path)
-    entry = os.path.basename(path)
-    yield Distribution.from_location(
-        root,
-        entry,
-        metadata,
-        precedence=DEVELOP_DIST,
-    )
-
-
-def non_empty_lines(path):
-    """
-    Yield non-empty lines from file at path
-    """
-    with open(path) as f:
-        for line in f:
-            line = line.strip()
-            if line:
-                yield line
-
-
-def resolve_egg_link(path):
-    """
-    Given a path to an .egg-link, resolve distributions
-    present in the referenced path.
-    """
-    referenced_paths = non_empty_lines(path)
-    resolved_paths = (
-        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
-    )
-    dist_groups = map(find_distributions, resolved_paths)
-    return next(dist_groups, ())
-
-
-if hasattr(pkgutil, 'ImpImporter'):
-    register_finder(pkgutil.ImpImporter, find_on_path)
-
-register_finder(importlib_machinery.FileFinder, find_on_path)
-
-_declare_state('dict', _namespace_handlers={})
-_declare_state('dict', _namespace_packages={})
-
-
-def register_namespace_handler(importer_type, namespace_handler):
-    """Register `namespace_handler` to declare namespace packages
-
-    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
-    handler), and `namespace_handler` is a callable like this::
-
-        def namespace_handler(importer, path_entry, moduleName, module):
-            # return a path_entry to use for child packages
-
-    Namespace handlers are only called if the importer object has already
-    agreed that it can handle the relevant path item, and they should only
-    return a subpath if the module __path__ does not already contain an
-    equivalent subpath.  For an example namespace handler, see
-    ``pkg_resources.file_ns_handler``.
-    """
-    _namespace_handlers[importer_type] = namespace_handler
-
-
-def _handle_ns(packageName, path_item):
-    """Ensure that named package includes a subpath of path_item (if needed)"""
-
-    importer = get_importer(path_item)
-    if importer is None:
-        return None
-
-    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
-    try:
-        spec = importer.find_spec(packageName)
-    except AttributeError:
-        # capture warnings due to #1111
-        with warnings.catch_warnings():
-            warnings.simplefilter("ignore")
-            loader = importer.find_module(packageName)
-    else:
-        loader = spec.loader if spec else None
-
-    if loader is None:
-        return None
-    module = sys.modules.get(packageName)
-    if module is None:
-        module = sys.modules[packageName] = types.ModuleType(packageName)
-        module.__path__ = []
-        _set_parent_ns(packageName)
-    elif not hasattr(module, '__path__'):
-        raise TypeError("Not a package:", packageName)
-    handler = _find_adapter(_namespace_handlers, importer)
-    subpath = handler(importer, path_item, packageName, module)
-    if subpath is not None:
-        path = module.__path__
-        path.append(subpath)
-        importlib.import_module(packageName)
-        _rebuild_mod_path(path, packageName, module)
-    return subpath
-
-
-def _rebuild_mod_path(orig_path, package_name, module):
-    """
-    Rebuild module.__path__ ensuring that all entries are ordered
-    corresponding to their sys.path order
-    """
-    sys_path = [_normalize_cached(p) for p in sys.path]
-
-    def safe_sys_path_index(entry):
-        """
-        Workaround for #520 and #513.
-        """
-        try:
-            return sys_path.index(entry)
-        except ValueError:
-            return float('inf')
-
-    def position_in_sys_path(path):
-        """
-        Return the ordinal of the path based on its position in sys.path
-        """
-        path_parts = path.split(os.sep)
-        module_parts = package_name.count('.') + 1
-        parts = path_parts[:-module_parts]
-        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
-
-    new_path = sorted(orig_path, key=position_in_sys_path)
-    new_path = [_normalize_cached(p) for p in new_path]
-
-    if isinstance(module.__path__, list):
-        module.__path__[:] = new_path
-    else:
-        module.__path__ = new_path
-
-
-def declare_namespace(packageName):
-    """Declare that package 'packageName' is a namespace package"""
-
-    msg = (
-        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
-        "Implementing implicit namespace packages (as specified in PEP 420) "
-        "is preferred to `pkg_resources.declare_namespace`. "
-        "See https://setuptools.pypa.io/en/latest/references/"
-        "keywords.html#keyword-namespace-packages"
-    )
-    warnings.warn(msg, DeprecationWarning, stacklevel=2)
-
-    _imp.acquire_lock()
-    try:
-        if packageName in _namespace_packages:
-            return
-
-        path = sys.path
-        parent, _, _ = packageName.rpartition('.')
-
-        if parent:
-            declare_namespace(parent)
-            if parent not in _namespace_packages:
-                __import__(parent)
-            try:
-                path = sys.modules[parent].__path__
-            except AttributeError as e:
-                raise TypeError("Not a package:", parent) from e
-
-        # Track what packages are namespaces, so when new path items are added,
-        # they can be updated
-        _namespace_packages.setdefault(parent or None, []).append(packageName)
-        _namespace_packages.setdefault(packageName, [])
-
-        for path_item in path:
-            # Ensure all the parent's path items are reflected in the child,
-            # if they apply
-            _handle_ns(packageName, path_item)
-
-    finally:
-        _imp.release_lock()
-
-
-def fixup_namespace_packages(path_item, parent=None):
-    """Ensure that previously-declared namespace packages include path_item"""
-    _imp.acquire_lock()
-    try:
-        for package in _namespace_packages.get(parent, ()):
-            subpath = _handle_ns(package, path_item)
-            if subpath:
-                fixup_namespace_packages(subpath, package)
-    finally:
-        _imp.release_lock()
-
-
-def file_ns_handler(importer, path_item, packageName, module):
-    """Compute an ns-package subpath for a filesystem or zipfile importer"""
-
-    subpath = os.path.join(path_item, packageName.split('.')[-1])
-    normalized = _normalize_cached(subpath)
-    for item in module.__path__:
-        if _normalize_cached(item) == normalized:
-            break
-    else:
-        # Only return the path if it's not already there
-        return subpath
-
-
-if hasattr(pkgutil, 'ImpImporter'):
-    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
-
-register_namespace_handler(zipimport.zipimporter, file_ns_handler)
-register_namespace_handler(importlib_machinery.FileFinder, file_ns_handler)
-
-
-def null_ns_handler(importer, path_item, packageName, module):
-    return None
-
-
-register_namespace_handler(object, null_ns_handler)
-
-
-def normalize_path(filename):
-    """Normalize a file/dir name for comparison purposes"""
-    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
-
-
-def _cygwin_patch(filename):  # pragma: nocover
-    """
-    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
-    symlink components. Using
-    os.path.abspath() works around this limitation. A fix in os.getcwd()
-    would probably better, in Cygwin even more so, except
-    that this seems to be by design...
-    """
-    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
-
-
-def _normalize_cached(filename, _cache={}):
-    try:
-        return _cache[filename]
-    except KeyError:
-        _cache[filename] = result = normalize_path(filename)
-        return result
-
-
-def _is_egg_path(path):
-    """
-    Determine if given path appears to be an egg.
-    """
-    return _is_zip_egg(path) or _is_unpacked_egg(path)
-
-
-def _is_zip_egg(path):
-    return (
-        path.lower().endswith('.egg')
-        and os.path.isfile(path)
-        and zipfile.is_zipfile(path)
-    )
-
-
-def _is_unpacked_egg(path):
-    """
-    Determine if given path appears to be an unpacked egg.
-    """
-    return path.lower().endswith('.egg') and os.path.isfile(
-        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
-    )
-
-
-def _set_parent_ns(packageName):
-    parts = packageName.split('.')
-    name = parts.pop()
-    if parts:
-        parent = '.'.join(parts)
-        setattr(sys.modules[parent], name, sys.modules[packageName])
-
-
-MODULE = re.compile(r"\w+(\.\w+)*$").match
-EGG_NAME = re.compile(
-    r"""
-    (?P[^-]+) (
-        -(?P[^-]+) (
-            -py(?P[^-]+) (
-                -(?P.+)
-            )?
-        )?
-    )?
-    """,
-    re.VERBOSE | re.IGNORECASE,
-).match
-
-
-class EntryPoint:
-    """Object representing an advertised importable object"""
-
-    def __init__(self, name, module_name, attrs=(), extras=(), dist=None):
-        if not MODULE(module_name):
-            raise ValueError("Invalid module name", module_name)
-        self.name = name
-        self.module_name = module_name
-        self.attrs = tuple(attrs)
-        self.extras = tuple(extras)
-        self.dist = dist
-
-    def __str__(self):
-        s = "%s = %s" % (self.name, self.module_name)
-        if self.attrs:
-            s += ':' + '.'.join(self.attrs)
-        if self.extras:
-            s += ' [%s]' % ','.join(self.extras)
-        return s
-
-    def __repr__(self):
-        return "EntryPoint.parse(%r)" % str(self)
-
-    def load(self, require=True, *args, **kwargs):
-        """
-        Require packages for this EntryPoint, then resolve it.
-        """
-        if not require or args or kwargs:
-            warnings.warn(
-                "Parameters to load are deprecated.  Call .resolve and "
-                ".require separately.",
-                PkgResourcesDeprecationWarning,
-                stacklevel=2,
-            )
-        if require:
-            self.require(*args, **kwargs)
-        return self.resolve()
-
-    def resolve(self):
-        """
-        Resolve the entry point from its module and attrs.
-        """
-        module = __import__(self.module_name, fromlist=['__name__'], level=0)
-        try:
-            return functools.reduce(getattr, self.attrs, module)
-        except AttributeError as exc:
-            raise ImportError(str(exc)) from exc
-
-    def require(self, env=None, installer=None):
-        if self.extras and not self.dist:
-            raise UnknownExtra("Can't require() without a distribution", self)
-
-        # Get the requirements for this entry point with all its extras and
-        # then resolve them. We have to pass `extras` along when resolving so
-        # that the working set knows what extras we want. Otherwise, for
-        # dist-info distributions, the working set will assume that the
-        # requirements for that extra are purely optional and skip over them.
-        reqs = self.dist.requires(self.extras)
-        items = working_set.resolve(reqs, env, installer, extras=self.extras)
-        list(map(working_set.add, items))
-
-    pattern = re.compile(
-        r'\s*'
-        r'(?P.+?)\s*'
-        r'=\s*'
-        r'(?P[\w.]+)\s*'
-        r'(:\s*(?P[\w.]+))?\s*'
-        r'(?P\[.*\])?\s*$'
-    )
-
-    @classmethod
-    def parse(cls, src, dist=None):
-        """Parse a single entry point from string `src`
-
-        Entry point syntax follows the form::
-
-            name = some.module:some.attr [extra1, extra2]
-
-        The entry name and module name are required, but the ``:attrs`` and
-        ``[extras]`` parts are optional
-        """
-        m = cls.pattern.match(src)
-        if not m:
-            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
-            raise ValueError(msg, src)
-        res = m.groupdict()
-        extras = cls._parse_extras(res['extras'])
-        attrs = res['attr'].split('.') if res['attr'] else ()
-        return cls(res['name'], res['module'], attrs, extras, dist)
-
-    @classmethod
-    def _parse_extras(cls, extras_spec):
-        if not extras_spec:
-            return ()
-        req = Requirement.parse('x' + extras_spec)
-        if req.specs:
-            raise ValueError()
-        return req.extras
-
-    @classmethod
-    def parse_group(cls, group, lines, dist=None):
-        """Parse an entry point group"""
-        if not MODULE(group):
-            raise ValueError("Invalid group name", group)
-        this = {}
-        for line in yield_lines(lines):
-            ep = cls.parse(line, dist)
-            if ep.name in this:
-                raise ValueError("Duplicate entry point", group, ep.name)
-            this[ep.name] = ep
-        return this
-
-    @classmethod
-    def parse_map(cls, data, dist=None):
-        """Parse a map of entry point groups"""
-        if isinstance(data, dict):
-            data = data.items()
-        else:
-            data = split_sections(data)
-        maps = {}
-        for group, lines in data:
-            if group is None:
-                if not lines:
-                    continue
-                raise ValueError("Entry points must be listed in groups")
-            group = group.strip()
-            if group in maps:
-                raise ValueError("Duplicate group name", group)
-            maps[group] = cls.parse_group(group, lines, dist)
-        return maps
-
-
-def _version_from_file(lines):
-    """
-    Given an iterable of lines from a Metadata file, return
-    the value of the Version field, if present, or None otherwise.
-    """
-
-    def is_version_line(line):
-        return line.lower().startswith('version:')
-
-    version_lines = filter(is_version_line, lines)
-    line = next(iter(version_lines), '')
-    _, _, value = line.partition(':')
-    return safe_version(value.strip()) or None
-
-
-class Distribution:
-    """Wrap an actual or potential sys.path entry w/metadata"""
-
-    PKG_INFO = 'PKG-INFO'
-
-    def __init__(
-        self,
-        location=None,
-        metadata=None,
-        project_name=None,
-        version=None,
-        py_version=PY_MAJOR,
-        platform=None,
-        precedence=EGG_DIST,
-    ):
-        self.project_name = safe_name(project_name or 'Unknown')
-        if version is not None:
-            self._version = safe_version(version)
-        self.py_version = py_version
-        self.platform = platform
-        self.location = location
-        self.precedence = precedence
-        self._provider = metadata or empty_provider
-
-    @classmethod
-    def from_location(cls, location, basename, metadata=None, **kw):
-        project_name, version, py_version, platform = [None] * 4
-        basename, ext = os.path.splitext(basename)
-        if ext.lower() in _distributionImpl:
-            cls = _distributionImpl[ext.lower()]
-
-            match = EGG_NAME(basename)
-            if match:
-                project_name, version, py_version, platform = match.group(
-                    'name', 'ver', 'pyver', 'plat'
-                )
-        return cls(
-            location,
-            metadata,
-            project_name=project_name,
-            version=version,
-            py_version=py_version,
-            platform=platform,
-            **kw,
-        )._reload_version()
-
-    def _reload_version(self):
-        return self
-
-    @property
-    def hashcmp(self):
-        return (
-            self._forgiving_parsed_version,
-            self.precedence,
-            self.key,
-            self.location,
-            self.py_version or '',
-            self.platform or '',
-        )
-
-    def __hash__(self):
-        return hash(self.hashcmp)
-
-    def __lt__(self, other):
-        return self.hashcmp < other.hashcmp
-
-    def __le__(self, other):
-        return self.hashcmp <= other.hashcmp
-
-    def __gt__(self, other):
-        return self.hashcmp > other.hashcmp
-
-    def __ge__(self, other):
-        return self.hashcmp >= other.hashcmp
-
-    def __eq__(self, other):
-        if not isinstance(other, self.__class__):
-            # It's not a Distribution, so they are not equal
-            return False
-        return self.hashcmp == other.hashcmp
-
-    def __ne__(self, other):
-        return not self == other
-
-    # These properties have to be lazy so that we don't have to load any
-    # metadata until/unless it's actually needed.  (i.e., some distributions
-    # may not know their name or version without loading PKG-INFO)
-
-    @property
-    def key(self):
-        try:
-            return self._key
-        except AttributeError:
-            self._key = key = self.project_name.lower()
-            return key
-
-    @property
-    def parsed_version(self):
-        if not hasattr(self, "_parsed_version"):
-            try:
-                self._parsed_version = parse_version(self.version)
-            except packaging.version.InvalidVersion as ex:
-                info = f"(package: {self.project_name})"
-                if hasattr(ex, "add_note"):
-                    ex.add_note(info)  # PEP 678
-                    raise
-                raise packaging.version.InvalidVersion(f"{str(ex)} {info}") from None
-
-        return self._parsed_version
-
-    @property
-    def _forgiving_parsed_version(self):
-        try:
-            return self.parsed_version
-        except packaging.version.InvalidVersion as ex:
-            self._parsed_version = parse_version(_forgiving_version(self.version))
-
-            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
-            msg = f"""!!\n\n
-            *************************************************************************
-            {str(ex)}\n{notes}
-
-            This is a long overdue deprecation.
-            For the time being, `pkg_resources` will use `{self._parsed_version}`
-            as a replacement to avoid breaking existing environments,
-            but no future compatibility is guaranteed.
-
-            If you maintain package {self.project_name} you should implement
-            the relevant changes to adequate the project to PEP 440 immediately.
-            *************************************************************************
-            \n\n!!
-            """
-            warnings.warn(msg, DeprecationWarning)
-
-            return self._parsed_version
-
-    @property
-    def version(self):
-        try:
-            return self._version
-        except AttributeError as e:
-            version = self._get_version()
-            if version is None:
-                path = self._get_metadata_path_for_display(self.PKG_INFO)
-                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
-                    self.PKG_INFO, path
-                )
-                raise ValueError(msg, self) from e
-
-            return version
-
-    @property
-    def _dep_map(self):
-        """
-        A map of extra to its list of (direct) requirements
-        for this distribution, including the null extra.
-        """
-        try:
-            return self.__dep_map
-        except AttributeError:
-            self.__dep_map = self._filter_extras(self._build_dep_map())
-        return self.__dep_map
-
-    @staticmethod
-    def _filter_extras(dm):
-        """
-        Given a mapping of extras to dependencies, strip off
-        environment markers and filter out any dependencies
-        not matching the markers.
-        """
-        for extra in list(filter(None, dm)):
-            new_extra = extra
-            reqs = dm.pop(extra)
-            new_extra, _, marker = extra.partition(':')
-            fails_marker = marker and (
-                invalid_marker(marker) or not evaluate_marker(marker)
-            )
-            if fails_marker:
-                reqs = []
-            new_extra = safe_extra(new_extra) or None
-
-            dm.setdefault(new_extra, []).extend(reqs)
-        return dm
-
-    def _build_dep_map(self):
-        dm = {}
-        for name in 'requires.txt', 'depends.txt':
-            for extra, reqs in split_sections(self._get_metadata(name)):
-                dm.setdefault(extra, []).extend(parse_requirements(reqs))
-        return dm
-
-    def requires(self, extras=()):
-        """List of Requirements needed for this distro if `extras` are used"""
-        dm = self._dep_map
-        deps = []
-        deps.extend(dm.get(None, ()))
-        for ext in extras:
-            try:
-                deps.extend(dm[safe_extra(ext)])
-            except KeyError as e:
-                raise UnknownExtra(
-                    "%s has no such extra feature %r" % (self, ext)
-                ) from e
-        return deps
-
-    def _get_metadata_path_for_display(self, name):
-        """
-        Return the path to the given metadata file, if available.
-        """
-        try:
-            # We need to access _get_metadata_path() on the provider object
-            # directly rather than through this class's __getattr__()
-            # since _get_metadata_path() is marked private.
-            path = self._provider._get_metadata_path(name)
-
-        # Handle exceptions e.g. in case the distribution's metadata
-        # provider doesn't support _get_metadata_path().
-        except Exception:
-            return '[could not detect]'
-
-        return path
-
-    def _get_metadata(self, name):
-        if self.has_metadata(name):
-            for line in self.get_metadata_lines(name):
-                yield line
-
-    def _get_version(self):
-        lines = self._get_metadata(self.PKG_INFO)
-        version = _version_from_file(lines)
-
-        return version
-
-    def activate(self, path=None, replace=False):
-        """Ensure distribution is importable on `path` (default=sys.path)"""
-        if path is None:
-            path = sys.path
-        self.insert_on(path, replace=replace)
-        if path is sys.path:
-            fixup_namespace_packages(self.location)
-            for pkg in self._get_metadata('namespace_packages.txt'):
-                if pkg in sys.modules:
-                    declare_namespace(pkg)
-
-    def egg_name(self):
-        """Return what this distribution's standard .egg filename should be"""
-        filename = "%s-%s-py%s" % (
-            to_filename(self.project_name),
-            to_filename(self.version),
-            self.py_version or PY_MAJOR,
-        )
-
-        if self.platform:
-            filename += '-' + self.platform
-        return filename
-
-    def __repr__(self):
-        if self.location:
-            return "%s (%s)" % (self, self.location)
-        else:
-            return str(self)
-
-    def __str__(self):
-        try:
-            version = getattr(self, 'version', None)
-        except ValueError:
-            version = None
-        version = version or "[unknown version]"
-        return "%s %s" % (self.project_name, version)
-
-    def __getattr__(self, attr):
-        """Delegate all unrecognized public attributes to .metadata provider"""
-        if attr.startswith('_'):
-            raise AttributeError(attr)
-        return getattr(self._provider, attr)
-
-    def __dir__(self):
-        return list(
-            set(super(Distribution, self).__dir__())
-            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
-        )
-
-    @classmethod
-    def from_filename(cls, filename, metadata=None, **kw):
-        return cls.from_location(
-            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
-        )
-
-    def as_requirement(self):
-        """Return a ``Requirement`` that matches this distribution exactly"""
-        if isinstance(self.parsed_version, packaging.version.Version):
-            spec = "%s==%s" % (self.project_name, self.parsed_version)
-        else:
-            spec = "%s===%s" % (self.project_name, self.parsed_version)
-
-        return Requirement.parse(spec)
-
-    def load_entry_point(self, group, name):
-        """Return the `name` entry point of `group` or raise ImportError"""
-        ep = self.get_entry_info(group, name)
-        if ep is None:
-            raise ImportError("Entry point %r not found" % ((group, name),))
-        return ep.load()
-
-    def get_entry_map(self, group=None):
-        """Return the entry point map for `group`, or the full entry map"""
-        try:
-            ep_map = self._ep_map
-        except AttributeError:
-            ep_map = self._ep_map = EntryPoint.parse_map(
-                self._get_metadata('entry_points.txt'), self
-            )
-        if group is not None:
-            return ep_map.get(group, {})
-        return ep_map
-
-    def get_entry_info(self, group, name):
-        """Return the EntryPoint object for `group`+`name`, or ``None``"""
-        return self.get_entry_map(group).get(name)
-
-    # FIXME: 'Distribution.insert_on' is too complex (13)
-    def insert_on(self, path, loc=None, replace=False):  # noqa: C901
-        """Ensure self.location is on path
-
-        If replace=False (default):
-            - If location is already in path anywhere, do nothing.
-            - Else:
-              - If it's an egg and its parent directory is on path,
-                insert just ahead of the parent.
-              - Else: add to the end of path.
-        If replace=True:
-            - If location is already on path anywhere (not eggs)
-              or higher priority than its parent (eggs)
-              do nothing.
-            - Else:
-              - If it's an egg and its parent directory is on path,
-                insert just ahead of the parent,
-                removing any lower-priority entries.
-              - Else: add it to the front of path.
-        """
-
-        loc = loc or self.location
-        if not loc:
-            return
-
-        nloc = _normalize_cached(loc)
-        bdir = os.path.dirname(nloc)
-        npath = [(p and _normalize_cached(p) or p) for p in path]
-
-        for p, item in enumerate(npath):
-            if item == nloc:
-                if replace:
-                    break
-                else:
-                    # don't modify path (even removing duplicates) if
-                    # found and not replace
-                    return
-            elif item == bdir and self.precedence == EGG_DIST:
-                # if it's an .egg, give it precedence over its directory
-                # UNLESS it's already been added to sys.path and replace=False
-                if (not replace) and nloc in npath[p:]:
-                    return
-                if path is sys.path:
-                    self.check_version_conflict()
-                path.insert(p, loc)
-                npath.insert(p, nloc)
-                break
-        else:
-            if path is sys.path:
-                self.check_version_conflict()
-            if replace:
-                path.insert(0, loc)
-            else:
-                path.append(loc)
-            return
-
-        # p is the spot where we found or inserted loc; now remove duplicates
-        while True:
-            try:
-                np = npath.index(nloc, p + 1)
-            except ValueError:
-                break
-            else:
-                del npath[np], path[np]
-                # ha!
-                p = np
-
-        return
-
-    def check_version_conflict(self):
-        if self.key == 'setuptools':
-            # ignore the inevitable setuptools self-conflicts  :(
-            return
-
-        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
-        loc = normalize_path(self.location)
-        for modname in self._get_metadata('top_level.txt'):
-            if (
-                modname not in sys.modules
-                or modname in nsp
-                or modname in _namespace_packages
-            ):
-                continue
-            if modname in ('pkg_resources', 'setuptools', 'site'):
-                continue
-            fn = getattr(sys.modules[modname], '__file__', None)
-            if fn and (
-                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
-            ):
-                continue
-            issue_warning(
-                "Module %s was already imported from %s, but %s is being added"
-                " to sys.path" % (modname, fn, self.location),
-            )
-
-    def has_version(self):
-        try:
-            self.version
-        except ValueError:
-            issue_warning("Unbuilt egg for " + repr(self))
-            return False
-        except SystemError:
-            # TODO: remove this except clause when python/cpython#103632 is fixed.
-            return False
-        return True
-
-    def clone(self, **kw):
-        """Copy this distribution, substituting in any changed keyword args"""
-        names = 'project_name version py_version platform location precedence'
-        for attr in names.split():
-            kw.setdefault(attr, getattr(self, attr, None))
-        kw.setdefault('metadata', self._provider)
-        return self.__class__(**kw)
-
-    @property
-    def extras(self):
-        return [dep for dep in self._dep_map if dep]
-
-
-class EggInfoDistribution(Distribution):
-    def _reload_version(self):
-        """
-        Packages installed by distutils (e.g. numpy or scipy),
-        which uses an old safe_version, and so
-        their version numbers can get mangled when
-        converted to filenames (e.g., 1.11.0.dev0+2329eae to
-        1.11.0.dev0_2329eae). These distributions will not be
-        parsed properly
-        downstream by Distribution and safe_version, so
-        take an extra step and try to get the version number from
-        the metadata file itself instead of the filename.
-        """
-        md_version = self._get_version()
-        if md_version:
-            self._version = md_version
-        return self
-
-
-class DistInfoDistribution(Distribution):
-    """
-    Wrap an actual or potential sys.path entry
-    w/metadata, .dist-info style.
-    """
-
-    PKG_INFO = 'METADATA'
-    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
-
-    @property
-    def _parsed_pkg_info(self):
-        """Parse and cache metadata"""
-        try:
-            return self._pkg_info
-        except AttributeError:
-            metadata = self.get_metadata(self.PKG_INFO)
-            self._pkg_info = email.parser.Parser().parsestr(metadata)
-            return self._pkg_info
-
-    @property
-    def _dep_map(self):
-        try:
-            return self.__dep_map
-        except AttributeError:
-            self.__dep_map = self._compute_dependencies()
-            return self.__dep_map
-
-    def _compute_dependencies(self):
-        """Recompute this distribution's dependencies."""
-        dm = self.__dep_map = {None: []}
-
-        reqs = []
-        # Including any condition expressions
-        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
-            reqs.extend(parse_requirements(req))
-
-        def reqs_for_extra(extra):
-            for req in reqs:
-                if not req.marker or req.marker.evaluate({'extra': extra}):
-                    yield req
-
-        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
-        dm[None].extend(common)
-
-        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
-            s_extra = safe_extra(extra.strip())
-            dm[s_extra] = [r for r in reqs_for_extra(extra) if r not in common]
-
-        return dm
-
-
-_distributionImpl = {
-    '.egg': Distribution,
-    '.egg-info': EggInfoDistribution,
-    '.dist-info': DistInfoDistribution,
-}
-
-
-def issue_warning(*args, **kw):
-    level = 1
-    g = globals()
-    try:
-        # find the first stack frame that is *not* code in
-        # the pkg_resources module, to use for the warning
-        while sys._getframe(level).f_globals is g:
-            level += 1
-    except ValueError:
-        pass
-    warnings.warn(stacklevel=level + 1, *args, **kw)
-
-
-def parse_requirements(strs):
-    """
-    Yield ``Requirement`` objects for each specification in `strs`.
-
-    `strs` must be a string, or a (possibly-nested) iterable thereof.
-    """
-    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
-
-
-class RequirementParseError(packaging.requirements.InvalidRequirement):
-    "Compatibility wrapper for InvalidRequirement"
-
-
-class Requirement(packaging.requirements.Requirement):
-    def __init__(self, requirement_string):
-        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
-        super(Requirement, self).__init__(requirement_string)
-        self.unsafe_name = self.name
-        project_name = safe_name(self.name)
-        self.project_name, self.key = project_name, project_name.lower()
-        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
-        self.extras = tuple(map(safe_extra, self.extras))
-        self.hashCmp = (
-            self.key,
-            self.url,
-            self.specifier,
-            frozenset(self.extras),
-            str(self.marker) if self.marker else None,
-        )
-        self.__hash = hash(self.hashCmp)
-
-    def __eq__(self, other):
-        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
-
-    def __ne__(self, other):
-        return not self == other
-
-    def __contains__(self, item):
-        if isinstance(item, Distribution):
-            if item.key != self.key:
-                return False
-
-            item = item.version
-
-        # Allow prereleases always in order to match the previous behavior of
-        # this method. In the future this should be smarter and follow PEP 440
-        # more accurately.
-        return self.specifier.contains(item, prereleases=True)
-
-    def __hash__(self):
-        return self.__hash
-
-    def __repr__(self):
-        return "Requirement.parse(%r)" % str(self)
-
-    @staticmethod
-    def parse(s):
-        (req,) = parse_requirements(s)
-        return req
-
-
-def _always_object(classes):
-    """
-    Ensure object appears in the mro even
-    for old-style classes.
-    """
-    if object not in classes:
-        return classes + (object,)
-    return classes
-
-
-def _find_adapter(registry, ob):
-    """Return an adapter factory for `ob` from `registry`"""
-    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
-    for t in types:
-        if t in registry:
-            return registry[t]
-
-
-def ensure_directory(path):
-    """Ensure that the parent directory of `path` exists"""
-    dirname = os.path.dirname(path)
-    os.makedirs(dirname, exist_ok=True)
-
-
-def _bypass_ensure_directory(path):
-    """Sandbox-bypassing version of ensure_directory()"""
-    if not WRITE_SUPPORT:
-        raise IOError('"os.mkdir" not supported on this platform.')
-    dirname, filename = split(path)
-    if dirname and filename and not isdir(dirname):
-        _bypass_ensure_directory(dirname)
-        try:
-            mkdir(dirname, 0o755)
-        except FileExistsError:
-            pass
-
-
-def split_sections(s):
-    """Split a string or iterable thereof into (section, content) pairs
-
-    Each ``section`` is a stripped version of the section header ("[section]")
-    and each ``content`` is a list of stripped lines excluding blank lines and
-    comment-only lines.  If there are any such lines before the first section
-    header, they're returned in a first ``section`` of ``None``.
-    """
-    section = None
-    content = []
-    for line in yield_lines(s):
-        if line.startswith("["):
-            if line.endswith("]"):
-                if section or content:
-                    yield section, content
-                section = line[1:-1].strip()
-                content = []
-            else:
-                raise ValueError("Invalid section heading", line)
-        else:
-            content.append(line)
-
-    # wrap up last segment
-    yield section, content
-
-
-def _mkstemp(*args, **kw):
-    old_open = os.open
-    try:
-        # temporarily bypass sandboxing
-        os.open = os_open
-        return tempfile.mkstemp(*args, **kw)
-    finally:
-        # and then put it back
-        os.open = old_open
-
-
-# Silence the PEP440Warning by default, so that end users don't get hit by it
-# randomly just because they use pkg_resources. We want to append the rule
-# because we want earlier uses of filterwarnings to take precedence over this
-# one.
-warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
-
-
-# from jaraco.functools 1.3
-def _call_aside(f, *args, **kwargs):
-    f(*args, **kwargs)
-    return f
-
-
-@_call_aside
-def _initialize(g=globals()):
-    "Set up global resource manager (deliberately not state-saved)"
-    manager = ResourceManager()
-    g['_manager'] = manager
-    g.update(
-        (name, getattr(manager, name))
-        for name in dir(manager)
-        if not name.startswith('_')
-    )
-
-
-class PkgResourcesDeprecationWarning(Warning):
-    """
-    Base class for warning about deprecations in ``pkg_resources``
-
-    This class is not derived from ``DeprecationWarning``, and as such is
-    visible by default.
-    """
-
-
-@_call_aside
-def _initialize_master_working_set():
-    """
-    Prepare the master working set and make the ``require()``
-    API available.
-
-    This function has explicit effects on the global state
-    of pkg_resources. It is intended to be invoked once at
-    the initialization of this module.
-
-    Invocation by other packages is unsupported and done
-    at their own risk.
-    """
-    working_set = WorkingSet._build_master()
-    _declare_state('object', working_set=working_set)
-
-    require = working_set.require
-    iter_entry_points = working_set.iter_entry_points
-    add_activation_listener = working_set.subscribe
-    run_script = working_set.run_script
-    # backward compatibility
-    run_main = run_script
-    # Activate all distributions already on sys.path with replace=False and
-    # ensure that all distributions added to the working set in the future
-    # (e.g. by calling ``require()``) will get activated as well,
-    # with higher priority (replace=True).
-    tuple(dist.activate(replace=False) for dist in working_set)
-    add_activation_listener(
-        lambda dist: dist.activate(replace=True),
-        existing=False,
-    )
-    working_set.entries = []
-    # match order
-    list(map(working_set.add_entry, sys.path))
-    globals().update(locals())
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index 1aedb74..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py
deleted file mode 100644
index 5ebf595..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py
+++ /dev/null
@@ -1,566 +0,0 @@
-"""
-Utilities for determining application-specific dirs. See  for details and
-usage.
-"""
-from __future__ import annotations
-
-import os
-import sys
-from typing import TYPE_CHECKING
-
-from .api import PlatformDirsABC
-from .version import __version__
-from .version import __version_tuple__ as __version_info__
-
-if TYPE_CHECKING:
-    from pathlib import Path
-
-    if sys.version_info >= (3, 8):  # pragma: no cover (py38+)
-        from typing import Literal
-    else:  # pragma: no cover (py38+)
-        from pip._vendor.typing_extensions import Literal
-
-
-def _set_platform_dir_class() -> type[PlatformDirsABC]:
-    if sys.platform == "win32":
-        from pip._vendor.platformdirs.windows import Windows as Result
-    elif sys.platform == "darwin":
-        from pip._vendor.platformdirs.macos import MacOS as Result
-    else:
-        from pip._vendor.platformdirs.unix import Unix as Result
-
-    if os.getenv("ANDROID_DATA") == "/data" and os.getenv("ANDROID_ROOT") == "/system":
-        if os.getenv("SHELL") or os.getenv("PREFIX"):
-            return Result
-
-        from pip._vendor.platformdirs.android import _android_folder
-
-        if _android_folder() is not None:
-            from pip._vendor.platformdirs.android import Android
-
-            return Android  # return to avoid redefinition of result
-
-    return Result
-
-
-PlatformDirs = _set_platform_dir_class()  #: Currently active platform
-AppDirs = PlatformDirs  #: Backwards compatibility with appdirs
-
-
-def user_data_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: data directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_data_dir
-
-
-def site_data_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    multipath: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param multipath: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: data directory shared by users
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        multipath=multipath,
-        ensure_exists=ensure_exists,
-    ).site_data_dir
-
-
-def user_config_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: config directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_config_dir
-
-
-def site_config_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    multipath: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param multipath: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: config directory shared by the users
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        multipath=multipath,
-        ensure_exists=ensure_exists,
-    ).site_config_dir
-
-
-def user_cache_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: cache directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_cache_dir
-
-
-def site_cache_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `opinion `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: cache directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).site_cache_dir
-
-
-def user_state_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: state directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_state_dir
-
-
-def user_log_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: log directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_log_dir
-
-
-def user_documents_dir() -> str:
-    """:returns: documents directory tied to the user"""
-    return PlatformDirs().user_documents_dir
-
-
-def user_downloads_dir() -> str:
-    """:returns: downloads directory tied to the user"""
-    return PlatformDirs().user_downloads_dir
-
-
-def user_pictures_dir() -> str:
-    """:returns: pictures directory tied to the user"""
-    return PlatformDirs().user_pictures_dir
-
-
-def user_videos_dir() -> str:
-    """:returns: videos directory tied to the user"""
-    return PlatformDirs().user_videos_dir
-
-
-def user_music_dir() -> str:
-    """:returns: music directory tied to the user"""
-    return PlatformDirs().user_music_dir
-
-
-def user_runtime_dir(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> str:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `opinion `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: runtime directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_runtime_dir
-
-
-def user_data_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: data path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_data_path
-
-
-def site_data_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    multipath: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param multipath: See `multipath `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: data path shared by users
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        multipath=multipath,
-        ensure_exists=ensure_exists,
-    ).site_data_path
-
-
-def user_config_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: config path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_config_path
-
-
-def site_config_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    multipath: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param multipath: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: config path shared by the users
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        multipath=multipath,
-        ensure_exists=ensure_exists,
-    ).site_config_path
-
-
-def site_cache_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `opinion `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: cache directory tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).site_cache_path
-
-
-def user_cache_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: cache path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_cache_path
-
-
-def user_state_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    roaming: bool = False,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param roaming: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: state path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        roaming=roaming,
-        ensure_exists=ensure_exists,
-    ).user_state_path
-
-
-def user_log_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `roaming `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: log path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_log_path
-
-
-def user_documents_path() -> Path:
-    """:returns: documents path tied to the user"""
-    return PlatformDirs().user_documents_path
-
-
-def user_downloads_path() -> Path:
-    """:returns: downloads path tied to the user"""
-    return PlatformDirs().user_downloads_path
-
-
-def user_pictures_path() -> Path:
-    """:returns: pictures path tied to the user"""
-    return PlatformDirs().user_pictures_path
-
-
-def user_videos_path() -> Path:
-    """:returns: videos path tied to the user"""
-    return PlatformDirs().user_videos_path
-
-
-def user_music_path() -> Path:
-    """:returns: music path tied to the user"""
-    return PlatformDirs().user_music_path
-
-
-def user_runtime_path(
-    appname: str | None = None,
-    appauthor: str | None | Literal[False] = None,
-    version: str | None = None,
-    opinion: bool = True,  # noqa: FBT001, FBT002
-    ensure_exists: bool = False,  # noqa: FBT001, FBT002
-) -> Path:
-    """
-    :param appname: See `appname `.
-    :param appauthor: See `appauthor `.
-    :param version: See `version `.
-    :param opinion: See `opinion `.
-    :param ensure_exists: See `ensure_exists `.
-    :returns: runtime path tied to the user
-    """
-    return PlatformDirs(
-        appname=appname,
-        appauthor=appauthor,
-        version=version,
-        opinion=opinion,
-        ensure_exists=ensure_exists,
-    ).user_runtime_path
-
-
-__all__ = [
-    "__version__",
-    "__version_info__",
-    "PlatformDirs",
-    "AppDirs",
-    "PlatformDirsABC",
-    "user_data_dir",
-    "user_config_dir",
-    "user_cache_dir",
-    "user_state_dir",
-    "user_log_dir",
-    "user_documents_dir",
-    "user_downloads_dir",
-    "user_pictures_dir",
-    "user_videos_dir",
-    "user_music_dir",
-    "user_runtime_dir",
-    "site_data_dir",
-    "site_config_dir",
-    "site_cache_dir",
-    "user_data_path",
-    "user_config_path",
-    "user_cache_path",
-    "user_state_path",
-    "user_log_path",
-    "user_documents_path",
-    "user_downloads_path",
-    "user_pictures_path",
-    "user_videos_path",
-    "user_music_path",
-    "user_runtime_path",
-    "site_data_path",
-    "site_config_path",
-    "site_cache_path",
-]
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py
deleted file mode 100644
index 6a0d6dd..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py
+++ /dev/null
@@ -1,53 +0,0 @@
-"""Main entry point."""
-from __future__ import annotations
-
-from pip._vendor.platformdirs import PlatformDirs, __version__
-
-PROPS = (
-    "user_data_dir",
-    "user_config_dir",
-    "user_cache_dir",
-    "user_state_dir",
-    "user_log_dir",
-    "user_documents_dir",
-    "user_downloads_dir",
-    "user_pictures_dir",
-    "user_videos_dir",
-    "user_music_dir",
-    "user_runtime_dir",
-    "site_data_dir",
-    "site_config_dir",
-    "site_cache_dir",
-)
-
-
-def main() -> None:
-    """Run main entry point."""
-    app_name = "MyApp"
-    app_author = "MyCompany"
-
-    print(f"-- platformdirs {__version__} --")  # noqa: T201
-
-    print("-- app dirs (with optional 'version')")  # noqa: T201
-    dirs = PlatformDirs(app_name, app_author, version="1.0")
-    for prop in PROPS:
-        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
-
-    print("\n-- app dirs (without optional 'version')")  # noqa: T201
-    dirs = PlatformDirs(app_name, app_author)
-    for prop in PROPS:
-        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
-
-    print("\n-- app dirs (without optional 'appauthor')")  # noqa: T201
-    dirs = PlatformDirs(app_name)
-    for prop in PROPS:
-        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
-
-    print("\n-- app dirs (with disabled 'appauthor')")  # noqa: T201
-    dirs = PlatformDirs(app_name, appauthor=False)
-    for prop in PROPS:
-        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
-
-
-if __name__ == "__main__":
-    main()
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index d178ec9..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc
deleted file mode 100644
index 392a731..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc
deleted file mode 100644
index f7941ff..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc
deleted file mode 100644
index e507211..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc
deleted file mode 100644
index 5828c4c..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc
deleted file mode 100644
index e171fb0..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc
deleted file mode 100644
index 72eda0c..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc
deleted file mode 100644
index bbb826b..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py
deleted file mode 100644
index 76527dd..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py
+++ /dev/null
@@ -1,210 +0,0 @@
-"""Android."""
-from __future__ import annotations
-
-import os
-import re
-import sys
-from functools import lru_cache
-from typing import cast
-
-from .api import PlatformDirsABC
-
-
-class Android(PlatformDirsABC):
-    """
-    Follows the guidance `from here `_. Makes use of the
-    `appname `,
-    `version `,
-    `ensure_exists `.
-    """
-
-    @property
-    def user_data_dir(self) -> str:
-        """:return: data directory tied to the user, e.g. ``/data/user///files/``"""
-        return self._append_app_name_and_version(cast(str, _android_folder()), "files")
-
-    @property
-    def site_data_dir(self) -> str:
-        """:return: data directory shared by users, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def user_config_dir(self) -> str:
-        """
-        :return: config directory tied to the user, e.g. \
-        ``/data/user///shared_prefs/``
-        """
-        return self._append_app_name_and_version(cast(str, _android_folder()), "shared_prefs")
-
-    @property
-    def site_config_dir(self) -> str:
-        """:return: config directory shared by the users, same as `user_config_dir`"""
-        return self.user_config_dir
-
-    @property
-    def user_cache_dir(self) -> str:
-        """:return: cache directory tied to the user, e.g. e.g. ``/data/user///cache/``"""
-        return self._append_app_name_and_version(cast(str, _android_folder()), "cache")
-
-    @property
-    def site_cache_dir(self) -> str:
-        """:return: cache directory shared by users, same as `user_cache_dir`"""
-        return self.user_cache_dir
-
-    @property
-    def user_state_dir(self) -> str:
-        """:return: state directory tied to the user, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def user_log_dir(self) -> str:
-        """
-        :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it,
-          e.g. ``/data/user///cache//log``
-        """
-        path = self.user_cache_dir
-        if self.opinion:
-            path = os.path.join(path, "log")  # noqa: PTH118
-        return path
-
-    @property
-    def user_documents_dir(self) -> str:
-        """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``"""
-        return _android_documents_folder()
-
-    @property
-    def user_downloads_dir(self) -> str:
-        """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``"""
-        return _android_downloads_folder()
-
-    @property
-    def user_pictures_dir(self) -> str:
-        """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``"""
-        return _android_pictures_folder()
-
-    @property
-    def user_videos_dir(self) -> str:
-        """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``"""
-        return _android_videos_folder()
-
-    @property
-    def user_music_dir(self) -> str:
-        """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``"""
-        return _android_music_folder()
-
-    @property
-    def user_runtime_dir(self) -> str:
-        """
-        :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it,
-          e.g. ``/data/user///cache//tmp``
-        """
-        path = self.user_cache_dir
-        if self.opinion:
-            path = os.path.join(path, "tmp")  # noqa: PTH118
-        return path
-
-
-@lru_cache(maxsize=1)
-def _android_folder() -> str | None:
-    """:return: base folder for the Android OS or None if it cannot be found"""
-    try:
-        # First try to get path to android app via pyjnius
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        result: str | None = context.getFilesDir().getParentFile().getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        # if fails find an android folder looking path on the sys.path
-        pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files")
-        for path in sys.path:
-            if pattern.match(path):
-                result = path.split("/files")[0]
-                break
-        else:
-            result = None
-    return result
-
-
-@lru_cache(maxsize=1)
-def _android_documents_folder() -> str:
-    """:return: documents folder for the Android OS"""
-    # Get directories with pyjnius
-    try:
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        environment = autoclass("android.os.Environment")
-        documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        documents_dir = "/storage/emulated/0/Documents"
-
-    return documents_dir
-
-
-@lru_cache(maxsize=1)
-def _android_downloads_folder() -> str:
-    """:return: downloads folder for the Android OS"""
-    # Get directories with pyjnius
-    try:
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        environment = autoclass("android.os.Environment")
-        downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        downloads_dir = "/storage/emulated/0/Downloads"
-
-    return downloads_dir
-
-
-@lru_cache(maxsize=1)
-def _android_pictures_folder() -> str:
-    """:return: pictures folder for the Android OS"""
-    # Get directories with pyjnius
-    try:
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        environment = autoclass("android.os.Environment")
-        pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        pictures_dir = "/storage/emulated/0/Pictures"
-
-    return pictures_dir
-
-
-@lru_cache(maxsize=1)
-def _android_videos_folder() -> str:
-    """:return: videos folder for the Android OS"""
-    # Get directories with pyjnius
-    try:
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        environment = autoclass("android.os.Environment")
-        videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        videos_dir = "/storage/emulated/0/DCIM/Camera"
-
-    return videos_dir
-
-
-@lru_cache(maxsize=1)
-def _android_music_folder() -> str:
-    """:return: music folder for the Android OS"""
-    # Get directories with pyjnius
-    try:
-        from jnius import autoclass
-
-        context = autoclass("android.content.Context")
-        environment = autoclass("android.os.Environment")
-        music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath()
-    except Exception:  # noqa: BLE001
-        music_dir = "/storage/emulated/0/Music"
-
-    return music_dir
-
-
-__all__ = [
-    "Android",
-]
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py
deleted file mode 100644
index d64ebb9..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py
+++ /dev/null
@@ -1,223 +0,0 @@
-"""Base API."""
-from __future__ import annotations
-
-import os
-from abc import ABC, abstractmethod
-from pathlib import Path
-from typing import TYPE_CHECKING
-
-if TYPE_CHECKING:
-    import sys
-
-    if sys.version_info >= (3, 8):  # pragma: no cover (py38+)
-        from typing import Literal
-    else:  # pragma: no cover (py38+)
-        from pip._vendor.typing_extensions import Literal
-
-
-class PlatformDirsABC(ABC):
-    """Abstract base class for platform directories."""
-
-    def __init__(  # noqa: PLR0913
-        self,
-        appname: str | None = None,
-        appauthor: str | None | Literal[False] = None,
-        version: str | None = None,
-        roaming: bool = False,  # noqa: FBT001, FBT002
-        multipath: bool = False,  # noqa: FBT001, FBT002
-        opinion: bool = True,  # noqa: FBT001, FBT002
-        ensure_exists: bool = False,  # noqa: FBT001, FBT002
-    ) -> None:
-        """
-        Create a new platform directory.
-
-        :param appname: See `appname`.
-        :param appauthor: See `appauthor`.
-        :param version: See `version`.
-        :param roaming: See `roaming`.
-        :param multipath: See `multipath`.
-        :param opinion: See `opinion`.
-        :param ensure_exists: See `ensure_exists`.
-        """
-        self.appname = appname  #: The name of application.
-        self.appauthor = appauthor
-        """
-        The name of the app author or distributing body for this application. Typically, it is the owning company name.
-        Defaults to `appname`. You may pass ``False`` to disable it.
-        """
-        self.version = version
-        """
-        An optional version path element to append to the path. You might want to use this if you want multiple versions
-        of your app to be able to run independently. If used, this would typically be ``.``.
-        """
-        self.roaming = roaming
-        """
-        Whether to use the roaming appdata directory on Windows. That means that for users on a Windows network setup
-        for roaming profiles, this user data will be synced on login (see
-        `here `_).
-        """
-        self.multipath = multipath
-        """
-        An optional parameter only applicable to Unix/Linux which indicates that the entire list of data dirs should be
-        returned. By default, the first item would only be returned.
-        """
-        self.opinion = opinion  #: A flag to indicating to use opinionated values.
-        self.ensure_exists = ensure_exists
-        """
-        Optionally create the directory (and any missing parents) upon access if it does not exist.
-        By default, no directories are created.
-        """
-
-    def _append_app_name_and_version(self, *base: str) -> str:
-        params = list(base[1:])
-        if self.appname:
-            params.append(self.appname)
-            if self.version:
-                params.append(self.version)
-        path = os.path.join(base[0], *params)  # noqa: PTH118
-        self._optionally_create_directory(path)
-        return path
-
-    def _optionally_create_directory(self, path: str) -> None:
-        if self.ensure_exists:
-            Path(path).mkdir(parents=True, exist_ok=True)
-
-    @property
-    @abstractmethod
-    def user_data_dir(self) -> str:
-        """:return: data directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def site_data_dir(self) -> str:
-        """:return: data directory shared by users"""
-
-    @property
-    @abstractmethod
-    def user_config_dir(self) -> str:
-        """:return: config directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def site_config_dir(self) -> str:
-        """:return: config directory shared by the users"""
-
-    @property
-    @abstractmethod
-    def user_cache_dir(self) -> str:
-        """:return: cache directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def site_cache_dir(self) -> str:
-        """:return: cache directory shared by users"""
-
-    @property
-    @abstractmethod
-    def user_state_dir(self) -> str:
-        """:return: state directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_log_dir(self) -> str:
-        """:return: log directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_documents_dir(self) -> str:
-        """:return: documents directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_downloads_dir(self) -> str:
-        """:return: downloads directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_pictures_dir(self) -> str:
-        """:return: pictures directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_videos_dir(self) -> str:
-        """:return: videos directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_music_dir(self) -> str:
-        """:return: music directory tied to the user"""
-
-    @property
-    @abstractmethod
-    def user_runtime_dir(self) -> str:
-        """:return: runtime directory tied to the user"""
-
-    @property
-    def user_data_path(self) -> Path:
-        """:return: data path tied to the user"""
-        return Path(self.user_data_dir)
-
-    @property
-    def site_data_path(self) -> Path:
-        """:return: data path shared by users"""
-        return Path(self.site_data_dir)
-
-    @property
-    def user_config_path(self) -> Path:
-        """:return: config path tied to the user"""
-        return Path(self.user_config_dir)
-
-    @property
-    def site_config_path(self) -> Path:
-        """:return: config path shared by the users"""
-        return Path(self.site_config_dir)
-
-    @property
-    def user_cache_path(self) -> Path:
-        """:return: cache path tied to the user"""
-        return Path(self.user_cache_dir)
-
-    @property
-    def site_cache_path(self) -> Path:
-        """:return: cache path shared by users"""
-        return Path(self.site_cache_dir)
-
-    @property
-    def user_state_path(self) -> Path:
-        """:return: state path tied to the user"""
-        return Path(self.user_state_dir)
-
-    @property
-    def user_log_path(self) -> Path:
-        """:return: log path tied to the user"""
-        return Path(self.user_log_dir)
-
-    @property
-    def user_documents_path(self) -> Path:
-        """:return: documents path tied to the user"""
-        return Path(self.user_documents_dir)
-
-    @property
-    def user_downloads_path(self) -> Path:
-        """:return: downloads path tied to the user"""
-        return Path(self.user_downloads_dir)
-
-    @property
-    def user_pictures_path(self) -> Path:
-        """:return: pictures path tied to the user"""
-        return Path(self.user_pictures_dir)
-
-    @property
-    def user_videos_path(self) -> Path:
-        """:return: videos path tied to the user"""
-        return Path(self.user_videos_dir)
-
-    @property
-    def user_music_path(self) -> Path:
-        """:return: music path tied to the user"""
-        return Path(self.user_music_dir)
-
-    @property
-    def user_runtime_path(self) -> Path:
-        """:return: runtime path tied to the user"""
-        return Path(self.user_runtime_dir)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py
deleted file mode 100644
index a753e2a..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py
+++ /dev/null
@@ -1,91 +0,0 @@
-"""macOS."""
-from __future__ import annotations
-
-import os.path
-
-from .api import PlatformDirsABC
-
-
-class MacOS(PlatformDirsABC):
-    """
-    Platform directories for the macOS operating system. Follows the guidance from `Apple documentation
-    `_.
-    Makes use of the `appname `,
-    `version `,
-    `ensure_exists `.
-    """
-
-    @property
-    def user_data_dir(self) -> str:
-        """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``"""
-        return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support"))  # noqa: PTH111
-
-    @property
-    def site_data_dir(self) -> str:
-        """:return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``"""
-        return self._append_app_name_and_version("/Library/Application Support")
-
-    @property
-    def user_config_dir(self) -> str:
-        """:return: config directory tied to the user, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def site_config_dir(self) -> str:
-        """:return: config directory shared by the users, same as `site_data_dir`"""
-        return self.site_data_dir
-
-    @property
-    def user_cache_dir(self) -> str:
-        """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``"""
-        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches"))  # noqa: PTH111
-
-    @property
-    def site_cache_dir(self) -> str:
-        """:return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``"""
-        return self._append_app_name_and_version("/Library/Caches")
-
-    @property
-    def user_state_dir(self) -> str:
-        """:return: state directory tied to the user, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def user_log_dir(self) -> str:
-        """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``"""
-        return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs"))  # noqa: PTH111
-
-    @property
-    def user_documents_dir(self) -> str:
-        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
-        return os.path.expanduser("~/Documents")  # noqa: PTH111
-
-    @property
-    def user_downloads_dir(self) -> str:
-        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
-        return os.path.expanduser("~/Downloads")  # noqa: PTH111
-
-    @property
-    def user_pictures_dir(self) -> str:
-        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
-        return os.path.expanduser("~/Pictures")  # noqa: PTH111
-
-    @property
-    def user_videos_dir(self) -> str:
-        """:return: videos directory tied to the user, e.g. ``~/Movies``"""
-        return os.path.expanduser("~/Movies")  # noqa: PTH111
-
-    @property
-    def user_music_dir(self) -> str:
-        """:return: music directory tied to the user, e.g. ``~/Music``"""
-        return os.path.expanduser("~/Music")  # noqa: PTH111
-
-    @property
-    def user_runtime_dir(self) -> str:
-        """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``"""
-        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems"))  # noqa: PTH111
-
-
-__all__ = [
-    "MacOS",
-]
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed
deleted file mode 100644
index e69de29..0000000
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py
deleted file mode 100644
index 468b0ab..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py
+++ /dev/null
@@ -1,223 +0,0 @@
-"""Unix."""
-from __future__ import annotations
-
-import os
-import sys
-from configparser import ConfigParser
-from pathlib import Path
-
-from .api import PlatformDirsABC
-
-if sys.platform == "win32":
-
-    def getuid() -> int:
-        msg = "should only be used on Unix"
-        raise RuntimeError(msg)
-
-else:
-    from os import getuid
-
-
-class Unix(PlatformDirsABC):
-    """
-    On Unix/Linux, we follow the
-    `XDG Basedir Spec `_. The spec allows
-    overriding directories with environment variables. The examples show are the default values, alongside the name of
-    the environment variable that overrides them. Makes use of the
-    `appname `,
-    `version `,
-    `multipath `,
-    `opinion `,
-    `ensure_exists `.
-    """
-
-    @property
-    def user_data_dir(self) -> str:
-        """
-        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
-         ``$XDG_DATA_HOME/$appname/$version``
-        """
-        path = os.environ.get("XDG_DATA_HOME", "")
-        if not path.strip():
-            path = os.path.expanduser("~/.local/share")  # noqa: PTH111
-        return self._append_app_name_and_version(path)
-
-    @property
-    def site_data_dir(self) -> str:
-        """
-        :return: data directories shared by users (if `multipath ` is
-         enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
-         path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
-        """
-        # XDG default for $XDG_DATA_DIRS; only first, if multipath is False
-        path = os.environ.get("XDG_DATA_DIRS", "")
-        if not path.strip():
-            path = f"/usr/local/share{os.pathsep}/usr/share"
-        return self._with_multi_path(path)
-
-    def _with_multi_path(self, path: str) -> str:
-        path_list = path.split(os.pathsep)
-        if not self.multipath:
-            path_list = path_list[0:1]
-        path_list = [self._append_app_name_and_version(os.path.expanduser(p)) for p in path_list]  # noqa: PTH111
-        return os.pathsep.join(path_list)
-
-    @property
-    def user_config_dir(self) -> str:
-        """
-        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
-         ``$XDG_CONFIG_HOME/$appname/$version``
-        """
-        path = os.environ.get("XDG_CONFIG_HOME", "")
-        if not path.strip():
-            path = os.path.expanduser("~/.config")  # noqa: PTH111
-        return self._append_app_name_and_version(path)
-
-    @property
-    def site_config_dir(self) -> str:
-        """
-        :return: config directories shared by users (if `multipath `
-         is enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
-         path separator), e.g. ``/etc/xdg/$appname/$version``
-        """
-        # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False
-        path = os.environ.get("XDG_CONFIG_DIRS", "")
-        if not path.strip():
-            path = "/etc/xdg"
-        return self._with_multi_path(path)
-
-    @property
-    def user_cache_dir(self) -> str:
-        """
-        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
-         ``~/$XDG_CACHE_HOME/$appname/$version``
-        """
-        path = os.environ.get("XDG_CACHE_HOME", "")
-        if not path.strip():
-            path = os.path.expanduser("~/.cache")  # noqa: PTH111
-        return self._append_app_name_and_version(path)
-
-    @property
-    def site_cache_dir(self) -> str:
-        """:return: cache directory shared by users, e.g. ``/var/tmp/$appname/$version``"""
-        return self._append_app_name_and_version("/var/tmp")  # noqa: S108
-
-    @property
-    def user_state_dir(self) -> str:
-        """
-        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
-         ``$XDG_STATE_HOME/$appname/$version``
-        """
-        path = os.environ.get("XDG_STATE_HOME", "")
-        if not path.strip():
-            path = os.path.expanduser("~/.local/state")  # noqa: PTH111
-        return self._append_app_name_and_version(path)
-
-    @property
-    def user_log_dir(self) -> str:
-        """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it"""
-        path = self.user_state_dir
-        if self.opinion:
-            path = os.path.join(path, "log")  # noqa: PTH118
-        return path
-
-    @property
-    def user_documents_dir(self) -> str:
-        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
-        return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents")
-
-    @property
-    def user_downloads_dir(self) -> str:
-        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
-        return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads")
-
-    @property
-    def user_pictures_dir(self) -> str:
-        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
-        return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures")
-
-    @property
-    def user_videos_dir(self) -> str:
-        """:return: videos directory tied to the user, e.g. ``~/Videos``"""
-        return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos")
-
-    @property
-    def user_music_dir(self) -> str:
-        """:return: music directory tied to the user, e.g. ``~/Music``"""
-        return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music")
-
-    @property
-    def user_runtime_dir(self) -> str:
-        """
-        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
-         ``$XDG_RUNTIME_DIR/$appname/$version``.
-
-         For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if
-         exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR``
-         is not set.
-        """
-        path = os.environ.get("XDG_RUNTIME_DIR", "")
-        if not path.strip():
-            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
-                path = f"/var/run/user/{getuid()}"
-                if not Path(path).exists():
-                    path = f"/tmp/runtime-{getuid()}"  # noqa: S108
-            else:
-                path = f"/run/user/{getuid()}"
-        return self._append_app_name_and_version(path)
-
-    @property
-    def site_data_path(self) -> Path:
-        """:return: data path shared by users. Only return first item, even if ``multipath`` is set to ``True``"""
-        return self._first_item_as_path_if_multipath(self.site_data_dir)
-
-    @property
-    def site_config_path(self) -> Path:
-        """:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``"""
-        return self._first_item_as_path_if_multipath(self.site_config_dir)
-
-    @property
-    def site_cache_path(self) -> Path:
-        """:return: cache path shared by users. Only return first item, even if ``multipath`` is set to ``True``"""
-        return self._first_item_as_path_if_multipath(self.site_cache_dir)
-
-    def _first_item_as_path_if_multipath(self, directory: str) -> Path:
-        if self.multipath:
-            # If multipath is True, the first path is returned.
-            directory = directory.split(os.pathsep)[0]
-        return Path(directory)
-
-
-def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str:
-    media_dir = _get_user_dirs_folder(env_var)
-    if media_dir is None:
-        media_dir = os.environ.get(env_var, "").strip()
-        if not media_dir:
-            media_dir = os.path.expanduser(fallback_tilde_path)  # noqa: PTH111
-
-    return media_dir
-
-
-def _get_user_dirs_folder(key: str) -> str | None:
-    """Return directory from user-dirs.dirs config file. See https://freedesktop.org/wiki/Software/xdg-user-dirs/."""
-    user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs"
-    if user_dirs_config_path.exists():
-        parser = ConfigParser()
-
-        with user_dirs_config_path.open() as stream:
-            # Add fake section header, so ConfigParser doesn't complain
-            parser.read_string(f"[top]\n{stream.read()}")
-
-        if key not in parser["top"]:
-            return None
-
-        path = parser["top"][key].strip('"')
-        # Handle relative home paths
-        return path.replace("$HOME", os.path.expanduser("~"))  # noqa: PTH111
-
-    return None
-
-
-__all__ = [
-    "Unix",
-]
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py
deleted file mode 100644
index dc8c44c..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py
+++ /dev/null
@@ -1,4 +0,0 @@
-# file generated by setuptools_scm
-# don't change, don't track in version control
-__version__ = version = '3.8.1'
-__version_tuple__ = version_tuple = (3, 8, 1)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py
deleted file mode 100644
index b52c9c6..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py
+++ /dev/null
@@ -1,255 +0,0 @@
-"""Windows."""
-from __future__ import annotations
-
-import ctypes
-import os
-import sys
-from functools import lru_cache
-from typing import TYPE_CHECKING
-
-from .api import PlatformDirsABC
-
-if TYPE_CHECKING:
-    from collections.abc import Callable
-
-
-class Windows(PlatformDirsABC):
-    """
-    `MSDN on where to store app data files
-    `_.
-    Makes use of the
-    `appname `,
-    `appauthor `,
-    `version `,
-    `roaming `,
-    `opinion `,
-    `ensure_exists `.
-    """
-
-    @property
-    def user_data_dir(self) -> str:
-        """
-        :return: data directory tied to the user, e.g.
-         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or
-         ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming)
-        """
-        const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA"
-        path = os.path.normpath(get_win_folder(const))
-        return self._append_parts(path)
-
-    def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str:
-        params = []
-        if self.appname:
-            if self.appauthor is not False:
-                author = self.appauthor or self.appname
-                params.append(author)
-            params.append(self.appname)
-            if opinion_value is not None and self.opinion:
-                params.append(opinion_value)
-            if self.version:
-                params.append(self.version)
-        path = os.path.join(path, *params)  # noqa: PTH118
-        self._optionally_create_directory(path)
-        return path
-
-    @property
-    def site_data_dir(self) -> str:
-        """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``"""
-        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
-        return self._append_parts(path)
-
-    @property
-    def user_config_dir(self) -> str:
-        """:return: config directory tied to the user, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def site_config_dir(self) -> str:
-        """:return: config directory shared by the users, same as `site_data_dir`"""
-        return self.site_data_dir
-
-    @property
-    def user_cache_dir(self) -> str:
-        """
-        :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g.
-         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version``
-        """
-        path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA"))
-        return self._append_parts(path, opinion_value="Cache")
-
-    @property
-    def site_cache_dir(self) -> str:
-        """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``"""
-        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
-        return self._append_parts(path, opinion_value="Cache")
-
-    @property
-    def user_state_dir(self) -> str:
-        """:return: state directory tied to the user, same as `user_data_dir`"""
-        return self.user_data_dir
-
-    @property
-    def user_log_dir(self) -> str:
-        """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it"""
-        path = self.user_data_dir
-        if self.opinion:
-            path = os.path.join(path, "Logs")  # noqa: PTH118
-            self._optionally_create_directory(path)
-        return path
-
-    @property
-    def user_documents_dir(self) -> str:
-        """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``"""
-        return os.path.normpath(get_win_folder("CSIDL_PERSONAL"))
-
-    @property
-    def user_downloads_dir(self) -> str:
-        """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``"""
-        return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS"))
-
-    @property
-    def user_pictures_dir(self) -> str:
-        """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``"""
-        return os.path.normpath(get_win_folder("CSIDL_MYPICTURES"))
-
-    @property
-    def user_videos_dir(self) -> str:
-        """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``"""
-        return os.path.normpath(get_win_folder("CSIDL_MYVIDEO"))
-
-    @property
-    def user_music_dir(self) -> str:
-        """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``"""
-        return os.path.normpath(get_win_folder("CSIDL_MYMUSIC"))
-
-    @property
-    def user_runtime_dir(self) -> str:
-        """
-        :return: runtime directory tied to the user, e.g.
-         ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname``
-        """
-        path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp"))  # noqa: PTH118
-        return self._append_parts(path)
-
-
-def get_win_folder_from_env_vars(csidl_name: str) -> str:
-    """Get folder from environment variables."""
-    result = get_win_folder_if_csidl_name_not_env_var(csidl_name)
-    if result is not None:
-        return result
-
-    env_var_name = {
-        "CSIDL_APPDATA": "APPDATA",
-        "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE",
-        "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA",
-    }.get(csidl_name)
-    if env_var_name is None:
-        msg = f"Unknown CSIDL name: {csidl_name}"
-        raise ValueError(msg)
-    result = os.environ.get(env_var_name)
-    if result is None:
-        msg = f"Unset environment variable: {env_var_name}"
-        raise ValueError(msg)
-    return result
-
-
-def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None:
-    """Get folder for a CSIDL name that does not exist as an environment variable."""
-    if csidl_name == "CSIDL_PERSONAL":
-        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents")  # noqa: PTH118
-
-    if csidl_name == "CSIDL_DOWNLOADS":
-        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads")  # noqa: PTH118
-
-    if csidl_name == "CSIDL_MYPICTURES":
-        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures")  # noqa: PTH118
-
-    if csidl_name == "CSIDL_MYVIDEO":
-        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos")  # noqa: PTH118
-
-    if csidl_name == "CSIDL_MYMUSIC":
-        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music")  # noqa: PTH118
-    return None
-
-
-def get_win_folder_from_registry(csidl_name: str) -> str:
-    """
-    Get folder from the registry.
-
-    This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer
-    for all CSIDL_* names.
-    """
-    shell_folder_name = {
-        "CSIDL_APPDATA": "AppData",
-        "CSIDL_COMMON_APPDATA": "Common AppData",
-        "CSIDL_LOCAL_APPDATA": "Local AppData",
-        "CSIDL_PERSONAL": "Personal",
-        "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}",
-        "CSIDL_MYPICTURES": "My Pictures",
-        "CSIDL_MYVIDEO": "My Video",
-        "CSIDL_MYMUSIC": "My Music",
-    }.get(csidl_name)
-    if shell_folder_name is None:
-        msg = f"Unknown CSIDL name: {csidl_name}"
-        raise ValueError(msg)
-    if sys.platform != "win32":  # only needed for mypy type checker to know that this code runs only on Windows
-        raise NotImplementedError
-    import winreg
-
-    key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders")
-    directory, _ = winreg.QueryValueEx(key, shell_folder_name)
-    return str(directory)
-
-
-def get_win_folder_via_ctypes(csidl_name: str) -> str:
-    """Get folder with ctypes."""
-    # There is no 'CSIDL_DOWNLOADS'.
-    # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead.
-    # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid
-
-    csidl_const = {
-        "CSIDL_APPDATA": 26,
-        "CSIDL_COMMON_APPDATA": 35,
-        "CSIDL_LOCAL_APPDATA": 28,
-        "CSIDL_PERSONAL": 5,
-        "CSIDL_MYPICTURES": 39,
-        "CSIDL_MYVIDEO": 14,
-        "CSIDL_MYMUSIC": 13,
-        "CSIDL_DOWNLOADS": 40,
-    }.get(csidl_name)
-    if csidl_const is None:
-        msg = f"Unknown CSIDL name: {csidl_name}"
-        raise ValueError(msg)
-
-    buf = ctypes.create_unicode_buffer(1024)
-    windll = getattr(ctypes, "windll")  # noqa: B009 # using getattr to avoid false positive with mypy type checker
-    windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
-
-    # Downgrade to short path name if it has highbit chars.
-    if any(ord(c) > 255 for c in buf):  # noqa: PLR2004
-        buf2 = ctypes.create_unicode_buffer(1024)
-        if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
-            buf = buf2
-
-    if csidl_name == "CSIDL_DOWNLOADS":
-        return os.path.join(buf.value, "Downloads")  # noqa: PTH118
-
-    return buf.value
-
-
-def _pick_get_win_folder() -> Callable[[str], str]:
-    if hasattr(ctypes, "windll"):
-        return get_win_folder_via_ctypes
-    try:
-        import winreg  # noqa: F401
-    except ImportError:
-        return get_win_folder_from_env_vars
-    else:
-        return get_win_folder_from_registry
-
-
-get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder())
-
-__all__ = [
-    "Windows",
-]
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py
deleted file mode 100644
index 39c84aa..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py
+++ /dev/null
@@ -1,82 +0,0 @@
-"""
-    Pygments
-    ~~~~~~~~
-
-    Pygments is a syntax highlighting package written in Python.
-
-    It is a generic syntax highlighter for general use in all kinds of software
-    such as forum systems, wikis or other applications that need to prettify
-    source code. Highlights are:
-
-    * a wide range of common languages and markup formats is supported
-    * special attention is paid to details, increasing quality by a fair amount
-    * support for new languages and formats are added easily
-    * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image
-      formats that PIL supports, and ANSI sequences
-    * it is usable as a command-line tool and as a library
-    * ... and it highlights even Brainfuck!
-
-    The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``.
-
-    .. _Pygments master branch:
-       https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-from io import StringIO, BytesIO
-
-__version__ = '2.15.1'
-__docformat__ = 'restructuredtext'
-
-__all__ = ['lex', 'format', 'highlight']
-
-
-def lex(code, lexer):
-    """
-    Lex `code` with the `lexer` (must be a `Lexer` instance)
-    and return an iterable of tokens. Currently, this only calls
-    `lexer.get_tokens()`.
-    """
-    try:
-        return lexer.get_tokens(code)
-    except TypeError:
-        # Heuristic to catch a common mistake.
-        from pip._vendor.pygments.lexer import RegexLexer
-        if isinstance(lexer, type) and issubclass(lexer, RegexLexer):
-            raise TypeError('lex() argument must be a lexer instance, '
-                            'not a class')
-        raise
-
-
-def format(tokens, formatter, outfile=None):  # pylint: disable=redefined-builtin
-    """
-    Format ``tokens`` (an iterable of tokens) with the formatter ``formatter``
-    (a `Formatter` instance).
-
-    If ``outfile`` is given and a valid file object (an object with a
-    ``write`` method), the result will be written to it, otherwise it
-    is returned as a string.
-    """
-    try:
-        if not outfile:
-            realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO()
-            formatter.format(tokens, realoutfile)
-            return realoutfile.getvalue()
-        else:
-            formatter.format(tokens, outfile)
-    except TypeError:
-        # Heuristic to catch a common mistake.
-        from pip._vendor.pygments.formatter import Formatter
-        if isinstance(formatter, type) and issubclass(formatter, Formatter):
-            raise TypeError('format() argument must be a formatter instance, '
-                            'not a class')
-        raise
-
-
-def highlight(code, lexer, formatter, outfile=None):
-    """
-    This is the most high-level highlighting function. It combines `lex` and
-    `format` in one function.
-    """
-    return format(lex(code, lexer), formatter, outfile)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py
deleted file mode 100644
index 2f7f8cb..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py
+++ /dev/null
@@ -1,17 +0,0 @@
-"""
-    pygments.__main__
-    ~~~~~~~~~~~~~~~~~
-
-    Main entry point for ``python -m pygments``.
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-
-import sys
-from pip._vendor.pygments.cmdline import main
-
-try:
-    sys.exit(main(sys.argv))
-except KeyboardInterrupt:
-    sys.exit(1)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index 4fa0485..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc
deleted file mode 100644
index 4eb3aca..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc
deleted file mode 100644
index 73b1143..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-311.pyc
deleted file mode 100644
index 34602d1..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc
deleted file mode 100644
index f9528fe..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc
deleted file mode 100644
index 5c04667..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc
deleted file mode 100644
index 0039286..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc
deleted file mode 100644
index 1408455..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc
deleted file mode 100644
index 484e212..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc
deleted file mode 100644
index 9b426d1..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc
deleted file mode 100644
index d9921f3..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc
deleted file mode 100644
index 2ffe26c..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc
deleted file mode 100644
index 749a5c2..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc
deleted file mode 100644
index 074436c..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc
deleted file mode 100644
index 3a807b8..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc
deleted file mode 100644
index 609ba05..0000000
Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc and /dev/null differ
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py
deleted file mode 100644
index eec1775..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py
+++ /dev/null
@@ -1,668 +0,0 @@
-"""
-    pygments.cmdline
-    ~~~~~~~~~~~~~~~~
-
-    Command line interface.
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-
-import os
-import sys
-import shutil
-import argparse
-from textwrap import dedent
-
-from pip._vendor.pygments import __version__, highlight
-from pip._vendor.pygments.util import ClassNotFound, OptionError, docstring_headline, \
-    guess_decode, guess_decode_from_terminal, terminal_encoding, \
-    UnclosingTextIOWrapper
-from pip._vendor.pygments.lexers import get_all_lexers, get_lexer_by_name, guess_lexer, \
-    load_lexer_from_file, get_lexer_for_filename, find_lexer_class_for_filename
-from pip._vendor.pygments.lexers.special import TextLexer
-from pip._vendor.pygments.formatters.latex import LatexEmbeddedLexer, LatexFormatter
-from pip._vendor.pygments.formatters import get_all_formatters, get_formatter_by_name, \
-    load_formatter_from_file, get_formatter_for_filename, find_formatter_class
-from pip._vendor.pygments.formatters.terminal import TerminalFormatter
-from pip._vendor.pygments.formatters.terminal256 import Terminal256Formatter, TerminalTrueColorFormatter
-from pip._vendor.pygments.filters import get_all_filters, find_filter_class
-from pip._vendor.pygments.styles import get_all_styles, get_style_by_name
-
-
-def _parse_options(o_strs):
-    opts = {}
-    if not o_strs:
-        return opts
-    for o_str in o_strs:
-        if not o_str.strip():
-            continue
-        o_args = o_str.split(',')
-        for o_arg in o_args:
-            o_arg = o_arg.strip()
-            try:
-                o_key, o_val = o_arg.split('=', 1)
-                o_key = o_key.strip()
-                o_val = o_val.strip()
-            except ValueError:
-                opts[o_arg] = True
-            else:
-                opts[o_key] = o_val
-    return opts
-
-
-def _parse_filters(f_strs):
-    filters = []
-    if not f_strs:
-        return filters
-    for f_str in f_strs:
-        if ':' in f_str:
-            fname, fopts = f_str.split(':', 1)
-            filters.append((fname, _parse_options([fopts])))
-        else:
-            filters.append((f_str, {}))
-    return filters
-
-
-def _print_help(what, name):
-    try:
-        if what == 'lexer':
-            cls = get_lexer_by_name(name)
-            print("Help on the %s lexer:" % cls.name)
-            print(dedent(cls.__doc__))
-        elif what == 'formatter':
-            cls = find_formatter_class(name)
-            print("Help on the %s formatter:" % cls.name)
-            print(dedent(cls.__doc__))
-        elif what == 'filter':
-            cls = find_filter_class(name)
-            print("Help on the %s filter:" % name)
-            print(dedent(cls.__doc__))
-        return 0
-    except (AttributeError, ValueError):
-        print("%s not found!" % what, file=sys.stderr)
-        return 1
-
-
-def _print_list(what):
-    if what == 'lexer':
-        print()
-        print("Lexers:")
-        print("~~~~~~~")
-
-        info = []
-        for fullname, names, exts, _ in get_all_lexers():
-            tup = (', '.join(names)+':', fullname,
-                   exts and '(filenames ' + ', '.join(exts) + ')' or '')
-            info.append(tup)
-        info.sort()
-        for i in info:
-            print(('* %s\n    %s %s') % i)
-
-    elif what == 'formatter':
-        print()
-        print("Formatters:")
-        print("~~~~~~~~~~~")
-
-        info = []
-        for cls in get_all_formatters():
-            doc = docstring_headline(cls)
-            tup = (', '.join(cls.aliases) + ':', doc, cls.filenames and
-                   '(filenames ' + ', '.join(cls.filenames) + ')' or '')
-            info.append(tup)
-        info.sort()
-        for i in info:
-            print(('* %s\n    %s %s') % i)
-
-    elif what == 'filter':
-        print()
-        print("Filters:")
-        print("~~~~~~~~")
-
-        for name in get_all_filters():
-            cls = find_filter_class(name)
-            print("* " + name + ':')
-            print("    %s" % docstring_headline(cls))
-
-    elif what == 'style':
-        print()
-        print("Styles:")
-        print("~~~~~~~")
-
-        for name in get_all_styles():
-            cls = get_style_by_name(name)
-            print("* " + name + ':')
-            print("    %s" % docstring_headline(cls))
-
-
-def _print_list_as_json(requested_items):
-    import json
-    result = {}
-    if 'lexer' in requested_items:
-        info = {}
-        for fullname, names, filenames, mimetypes in get_all_lexers():
-            info[fullname] = {
-                'aliases': names,
-                'filenames': filenames,
-                'mimetypes': mimetypes
-            }
-        result['lexers'] = info
-
-    if 'formatter' in requested_items:
-        info = {}
-        for cls in get_all_formatters():
-            doc = docstring_headline(cls)
-            info[cls.name] = {
-                'aliases': cls.aliases,
-                'filenames': cls.filenames,
-                'doc': doc
-            }
-        result['formatters'] = info
-
-    if 'filter' in requested_items:
-        info = {}
-        for name in get_all_filters():
-            cls = find_filter_class(name)
-            info[name] = {
-                'doc': docstring_headline(cls)
-            }
-        result['filters'] = info
-
-    if 'style' in requested_items:
-        info = {}
-        for name in get_all_styles():
-            cls = get_style_by_name(name)
-            info[name] = {
-                'doc': docstring_headline(cls)
-            }
-        result['styles'] = info
-
-    json.dump(result, sys.stdout)
-
-def main_inner(parser, argns):
-    if argns.help:
-        parser.print_help()
-        return 0
-
-    if argns.V:
-        print('Pygments version %s, (c) 2006-2023 by Georg Brandl, Matthäus '
-              'Chajdas and contributors.' % __version__)
-        return 0
-
-    def is_only_option(opt):
-        return not any(v for (k, v) in vars(argns).items() if k != opt)
-
-    # handle ``pygmentize -L``
-    if argns.L is not None:
-        arg_set = set()
-        for k, v in vars(argns).items():
-            if v:
-                arg_set.add(k)
-
-        arg_set.discard('L')
-        arg_set.discard('json')
-
-        if arg_set:
-            parser.print_help(sys.stderr)
-            return 2
-
-        # print version
-        if not argns.json:
-            main(['', '-V'])
-        allowed_types = {'lexer', 'formatter', 'filter', 'style'}
-        largs = [arg.rstrip('s') for arg in argns.L]
-        if any(arg not in allowed_types for arg in largs):
-            parser.print_help(sys.stderr)
-            return 0
-        if not largs:
-            largs = allowed_types
-        if not argns.json:
-            for arg in largs:
-                _print_list(arg)
-        else:
-            _print_list_as_json(largs)
-        return 0
-
-    # handle ``pygmentize -H``
-    if argns.H:
-        if not is_only_option('H'):
-            parser.print_help(sys.stderr)
-            return 2
-        what, name = argns.H
-        if what not in ('lexer', 'formatter', 'filter'):
-            parser.print_help(sys.stderr)
-            return 2
-        return _print_help(what, name)
-
-    # parse -O options
-    parsed_opts = _parse_options(argns.O or [])
-
-    # parse -P options
-    for p_opt in argns.P or []:
-        try:
-            name, value = p_opt.split('=', 1)
-        except ValueError:
-            parsed_opts[p_opt] = True
-        else:
-            parsed_opts[name] = value
-
-    # encodings
-    inencoding = parsed_opts.get('inencoding', parsed_opts.get('encoding'))
-    outencoding = parsed_opts.get('outencoding', parsed_opts.get('encoding'))
-
-    # handle ``pygmentize -N``
-    if argns.N:
-        lexer = find_lexer_class_for_filename(argns.N)
-        if lexer is None:
-            lexer = TextLexer
-
-        print(lexer.aliases[0])
-        return 0
-
-    # handle ``pygmentize -C``
-    if argns.C:
-        inp = sys.stdin.buffer.read()
-        try:
-            lexer = guess_lexer(inp, inencoding=inencoding)
-        except ClassNotFound:
-            lexer = TextLexer
-
-        print(lexer.aliases[0])
-        return 0
-
-    # handle ``pygmentize -S``
-    S_opt = argns.S
-    a_opt = argns.a
-    if S_opt is not None:
-        f_opt = argns.f
-        if not f_opt:
-            parser.print_help(sys.stderr)
-            return 2
-        if argns.l or argns.INPUTFILE:
-            parser.print_help(sys.stderr)
-            return 2
-
-        try:
-            parsed_opts['style'] = S_opt
-            fmter = get_formatter_by_name(f_opt, **parsed_opts)
-        except ClassNotFound as err:
-            print(err, file=sys.stderr)
-            return 1
-
-        print(fmter.get_style_defs(a_opt or ''))
-        return 0
-
-    # if no -S is given, -a is not allowed
-    if argns.a is not None:
-        parser.print_help(sys.stderr)
-        return 2
-
-    # parse -F options
-    F_opts = _parse_filters(argns.F or [])
-
-    # -x: allow custom (eXternal) lexers and formatters
-    allow_custom_lexer_formatter = bool(argns.x)
-
-    # select lexer
-    lexer = None
-
-    # given by name?
-    lexername = argns.l
-    if lexername:
-        # custom lexer, located relative to user's cwd
-        if allow_custom_lexer_formatter and '.py' in lexername:
-            try:
-                filename = None
-                name = None
-                if ':' in lexername:
-                    filename, name = lexername.rsplit(':', 1)
-
-                    if '.py' in name:
-                        # This can happen on Windows: If the lexername is
-                        # C:\lexer.py -- return to normal load path in that case
-                        name = None
-
-                if filename and name:
-                    lexer = load_lexer_from_file(filename, name,
-                                                 **parsed_opts)
-                else:
-                    lexer = load_lexer_from_file(lexername, **parsed_opts)
-            except ClassNotFound as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-        else:
-            try:
-                lexer = get_lexer_by_name(lexername, **parsed_opts)
-            except (OptionError, ClassNotFound) as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-
-    # read input code
-    code = None
-
-    if argns.INPUTFILE:
-        if argns.s:
-            print('Error: -s option not usable when input file specified',
-                  file=sys.stderr)
-            return 2
-
-        infn = argns.INPUTFILE
-        try:
-            with open(infn, 'rb') as infp:
-                code = infp.read()
-        except Exception as err:
-            print('Error: cannot read infile:', err, file=sys.stderr)
-            return 1
-        if not inencoding:
-            code, inencoding = guess_decode(code)
-
-        # do we have to guess the lexer?
-        if not lexer:
-            try:
-                lexer = get_lexer_for_filename(infn, code, **parsed_opts)
-            except ClassNotFound as err:
-                if argns.g:
-                    try:
-                        lexer = guess_lexer(code, **parsed_opts)
-                    except ClassNotFound:
-                        lexer = TextLexer(**parsed_opts)
-                else:
-                    print('Error:', err, file=sys.stderr)
-                    return 1
-            except OptionError as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-
-    elif not argns.s:  # treat stdin as full file (-s support is later)
-        # read code from terminal, always in binary mode since we want to
-        # decode ourselves and be tolerant with it
-        code = sys.stdin.buffer.read()  # use .buffer to get a binary stream
-        if not inencoding:
-            code, inencoding = guess_decode_from_terminal(code, sys.stdin)
-            # else the lexer will do the decoding
-        if not lexer:
-            try:
-                lexer = guess_lexer(code, **parsed_opts)
-            except ClassNotFound:
-                lexer = TextLexer(**parsed_opts)
-
-    else:  # -s option needs a lexer with -l
-        if not lexer:
-            print('Error: when using -s a lexer has to be selected with -l',
-                  file=sys.stderr)
-            return 2
-
-    # process filters
-    for fname, fopts in F_opts:
-        try:
-            lexer.add_filter(fname, **fopts)
-        except ClassNotFound as err:
-            print('Error:', err, file=sys.stderr)
-            return 1
-
-    # select formatter
-    outfn = argns.o
-    fmter = argns.f
-    if fmter:
-        # custom formatter, located relative to user's cwd
-        if allow_custom_lexer_formatter and '.py' in fmter:
-            try:
-                filename = None
-                name = None
-                if ':' in fmter:
-                    # Same logic as above for custom lexer
-                    filename, name = fmter.rsplit(':', 1)
-
-                    if '.py' in name:
-                        name = None
-
-                if filename and name:
-                    fmter = load_formatter_from_file(filename, name,
-                                                     **parsed_opts)
-                else:
-                    fmter = load_formatter_from_file(fmter, **parsed_opts)
-            except ClassNotFound as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-        else:
-            try:
-                fmter = get_formatter_by_name(fmter, **parsed_opts)
-            except (OptionError, ClassNotFound) as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-
-    if outfn:
-        if not fmter:
-            try:
-                fmter = get_formatter_for_filename(outfn, **parsed_opts)
-            except (OptionError, ClassNotFound) as err:
-                print('Error:', err, file=sys.stderr)
-                return 1
-        try:
-            outfile = open(outfn, 'wb')
-        except Exception as err:
-            print('Error: cannot open outfile:', err, file=sys.stderr)
-            return 1
-    else:
-        if not fmter:
-            if os.environ.get('COLORTERM','') in ('truecolor', '24bit'):
-                fmter = TerminalTrueColorFormatter(**parsed_opts)
-            elif '256' in os.environ.get('TERM', ''):
-                fmter = Terminal256Formatter(**parsed_opts)
-            else:
-                fmter = TerminalFormatter(**parsed_opts)
-        outfile = sys.stdout.buffer
-
-    # determine output encoding if not explicitly selected
-    if not outencoding:
-        if outfn:
-            # output file? use lexer encoding for now (can still be None)
-            fmter.encoding = inencoding
-        else:
-            # else use terminal encoding
-            fmter.encoding = terminal_encoding(sys.stdout)
-
-    # provide coloring under Windows, if possible
-    if not outfn and sys.platform in ('win32', 'cygwin') and \
-       fmter.name in ('Terminal', 'Terminal256'):  # pragma: no cover
-        # unfortunately colorama doesn't support binary streams on Py3
-        outfile = UnclosingTextIOWrapper(outfile, encoding=fmter.encoding)
-        fmter.encoding = None
-        try:
-            import pip._vendor.colorama.initialise as colorama_initialise
-        except ImportError:
-            pass
-        else:
-            outfile = colorama_initialise.wrap_stream(
-                outfile, convert=None, strip=None, autoreset=False, wrap=True)
-
-    # When using the LaTeX formatter and the option `escapeinside` is
-    # specified, we need a special lexer which collects escaped text
-    # before running the chosen language lexer.
-    escapeinside = parsed_opts.get('escapeinside', '')
-    if len(escapeinside) == 2 and isinstance(fmter, LatexFormatter):
-        left = escapeinside[0]
-        right = escapeinside[1]
-        lexer = LatexEmbeddedLexer(left, right, lexer)
-
-    # ... and do it!
-    if not argns.s:
-        # process whole input as per normal...
-        try:
-            highlight(code, lexer, fmter, outfile)
-        finally:
-            if outfn:
-                outfile.close()
-        return 0
-    else:
-        # line by line processing of stdin (eg: for 'tail -f')...
-        try:
-            while 1:
-                line = sys.stdin.buffer.readline()
-                if not line:
-                    break
-                if not inencoding:
-                    line = guess_decode_from_terminal(line, sys.stdin)[0]
-                highlight(line, lexer, fmter, outfile)
-                if hasattr(outfile, 'flush'):
-                    outfile.flush()
-            return 0
-        except KeyboardInterrupt:  # pragma: no cover
-            return 0
-        finally:
-            if outfn:
-                outfile.close()
-
-
-class HelpFormatter(argparse.HelpFormatter):
-    def __init__(self, prog, indent_increment=2, max_help_position=16, width=None):
-        if width is None:
-            try:
-                width = shutil.get_terminal_size().columns - 2
-            except Exception:
-                pass
-        argparse.HelpFormatter.__init__(self, prog, indent_increment,
-                                        max_help_position, width)
-
-
-def main(args=sys.argv):
-    """
-    Main command line entry point.
-    """
-    desc = "Highlight an input file and write the result to an output file."
-    parser = argparse.ArgumentParser(description=desc, add_help=False,
-                                     formatter_class=HelpFormatter)
-
-    operation = parser.add_argument_group('Main operation')
-    lexersel = operation.add_mutually_exclusive_group()
-    lexersel.add_argument(
-        '-l', metavar='LEXER',
-        help='Specify the lexer to use.  (Query names with -L.)  If not '
-        'given and -g is not present, the lexer is guessed from the filename.')
-    lexersel.add_argument(
-        '-g', action='store_true',
-        help='Guess the lexer from the file contents, or pass through '
-        'as plain text if nothing can be guessed.')
-    operation.add_argument(
-        '-F', metavar='FILTER[:options]', action='append',
-        help='Add a filter to the token stream.  (Query names with -L.) '
-        'Filter options are given after a colon if necessary.')
-    operation.add_argument(
-        '-f', metavar='FORMATTER',
-        help='Specify the formatter to use.  (Query names with -L.) '
-        'If not given, the formatter is guessed from the output filename, '
-        'and defaults to the terminal formatter if the output is to the '
-        'terminal or an unknown file extension.')
-    operation.add_argument(
-        '-O', metavar='OPTION=value[,OPTION=value,...]', action='append',
-        help='Give options to the lexer and formatter as a comma-separated '
-        'list of key-value pairs. '
-        'Example: `-O bg=light,python=cool`.')
-    operation.add_argument(
-        '-P', metavar='OPTION=value', action='append',
-        help='Give a single option to the lexer and formatter - with this '
-        'you can pass options whose value contains commas and equal signs. '
-        'Example: `-P "heading=Pygments, the Python highlighter"`.')
-    operation.add_argument(
-        '-o', metavar='OUTPUTFILE',
-        help='Where to write the output.  Defaults to standard output.')
-
-    operation.add_argument(
-        'INPUTFILE', nargs='?',
-        help='Where to read the input.  Defaults to standard input.')
-
-    flags = parser.add_argument_group('Operation flags')
-    flags.add_argument(
-        '-v', action='store_true',
-        help='Print a detailed traceback on unhandled exceptions, which '
-        'is useful for debugging and bug reports.')
-    flags.add_argument(
-        '-s', action='store_true',
-        help='Process lines one at a time until EOF, rather than waiting to '
-        'process the entire file.  This only works for stdin, only for lexers '
-        'with no line-spanning constructs, and is intended for streaming '
-        'input such as you get from `tail -f`. '
-        'Example usage: `tail -f sql.log | pygmentize -s -l sql`.')
-    flags.add_argument(
-        '-x', action='store_true',
-        help='Allow custom lexers and formatters to be loaded from a .py file '
-        'relative to the current working directory. For example, '
-        '`-l ./customlexer.py -x`. By default, this option expects a file '
-        'with a class named CustomLexer or CustomFormatter; you can also '
-        'specify your own class name with a colon (`-l ./lexer.py:MyLexer`). '
-        'Users should be very careful not to use this option with untrusted '
-        'files, because it will import and run them.')
-    flags.add_argument('--json', help='Output as JSON. This can '
-        'be only used in conjunction with -L.',
-        default=False,
-        action='store_true')
-
-    special_modes_group = parser.add_argument_group(
-        'Special modes - do not do any highlighting')
-    special_modes = special_modes_group.add_mutually_exclusive_group()
-    special_modes.add_argument(
-        '-S', metavar='STYLE -f formatter',
-        help='Print style definitions for STYLE for a formatter '
-        'given with -f. The argument given by -a is formatter '
-        'dependent.')
-    special_modes.add_argument(
-        '-L', nargs='*', metavar='WHAT',
-        help='List lexers, formatters, styles or filters -- '
-        'give additional arguments for the thing(s) you want to list '
-        '(e.g. "styles"), or omit them to list everything.')
-    special_modes.add_argument(
-        '-N', metavar='FILENAME',
-        help='Guess and print out a lexer name based solely on the given '
-        'filename. Does not take input or highlight anything. If no specific '
-        'lexer can be determined, "text" is printed.')
-    special_modes.add_argument(
-        '-C', action='store_true',
-        help='Like -N, but print out a lexer name based solely on '
-        'a given content from standard input.')
-    special_modes.add_argument(
-        '-H', action='store', nargs=2, metavar=('NAME', 'TYPE'),
-        help='Print detailed help for the object  of type , '
-        'where  is one of "lexer", "formatter" or "filter".')
-    special_modes.add_argument(
-        '-V', action='store_true',
-        help='Print the package version.')
-    special_modes.add_argument(
-        '-h', '--help', action='store_true',
-        help='Print this help.')
-    special_modes_group.add_argument(
-        '-a', metavar='ARG',
-        help='Formatter-specific additional argument for the -S (print '
-        'style sheet) mode.')
-
-    argns = parser.parse_args(args[1:])
-
-    try:
-        return main_inner(parser, argns)
-    except BrokenPipeError:
-        # someone closed our stdout, e.g. by quitting a pager.
-        return 0
-    except Exception:
-        if argns.v:
-            print(file=sys.stderr)
-            print('*' * 65, file=sys.stderr)
-            print('An unhandled exception occurred while highlighting.',
-                  file=sys.stderr)
-            print('Please report the whole traceback to the issue tracker at',
-                  file=sys.stderr)
-            print('.',
-                  file=sys.stderr)
-            print('*' * 65, file=sys.stderr)
-            print(file=sys.stderr)
-            raise
-        import traceback
-        info = traceback.format_exception(*sys.exc_info())
-        msg = info[-1].strip()
-        if len(info) >= 3:
-            # extract relevant file and position info
-            msg += '\n   (f%s)' % info[-2].split('\n')[0].strip()[1:]
-        print(file=sys.stderr)
-        print('*** Error while highlighting:', file=sys.stderr)
-        print(msg, file=sys.stderr)
-        print('*** If this is a bug you want to report, please rerun with -v.',
-              file=sys.stderr)
-        return 1
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py
deleted file mode 100644
index deb4937..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py
+++ /dev/null
@@ -1,70 +0,0 @@
-"""
-    pygments.console
-    ~~~~~~~~~~~~~~~~
-
-    Format colored console output.
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-
-esc = "\x1b["
-
-codes = {}
-codes[""] = ""
-codes["reset"] = esc + "39;49;00m"
-
-codes["bold"] = esc + "01m"
-codes["faint"] = esc + "02m"
-codes["standout"] = esc + "03m"
-codes["underline"] = esc + "04m"
-codes["blink"] = esc + "05m"
-codes["overline"] = esc + "06m"
-
-dark_colors = ["black", "red", "green", "yellow", "blue",
-               "magenta", "cyan", "gray"]
-light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue",
-                "brightmagenta", "brightcyan", "white"]
-
-x = 30
-for d, l in zip(dark_colors, light_colors):
-    codes[d] = esc + "%im" % x
-    codes[l] = esc + "%im" % (60 + x)
-    x += 1
-
-del d, l, x
-
-codes["white"] = codes["bold"]
-
-
-def reset_color():
-    return codes["reset"]
-
-
-def colorize(color_key, text):
-    return codes[color_key] + text + codes["reset"]
-
-
-def ansiformat(attr, text):
-    """
-    Format ``text`` with a color and/or some attributes::
-
-        color       normal color
-        *color*     bold color
-        _color_     underlined color
-        +color+     blinking color
-    """
-    result = []
-    if attr[:1] == attr[-1:] == '+':
-        result.append(codes['blink'])
-        attr = attr[1:-1]
-    if attr[:1] == attr[-1:] == '*':
-        result.append(codes['bold'])
-        attr = attr[1:-1]
-    if attr[:1] == attr[-1:] == '_':
-        result.append(codes['underline'])
-        attr = attr[1:-1]
-    result.append(codes[attr])
-    result.append(text)
-    result.append(codes['reset'])
-    return ''.join(result)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py
deleted file mode 100644
index dafa08d..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-    pygments.filter
-    ~~~~~~~~~~~~~~~
-
-    Module that implements the default filter.
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-
-
-def apply_filters(stream, filters, lexer=None):
-    """
-    Use this method to apply an iterable of filters to
-    a stream. If lexer is given it's forwarded to the
-    filter, otherwise the filter receives `None`.
-    """
-    def _apply(filter_, stream):
-        yield from filter_.filter(lexer, stream)
-    for filter_ in filters:
-        stream = _apply(filter_, stream)
-    return stream
-
-
-def simplefilter(f):
-    """
-    Decorator that converts a function into a filter::
-
-        @simplefilter
-        def lowercase(self, lexer, stream, options):
-            for ttype, value in stream:
-                yield ttype, value.lower()
-    """
-    return type(f.__name__, (FunctionFilter,), {
-        '__module__': getattr(f, '__module__'),
-        '__doc__': f.__doc__,
-        'function': f,
-    })
-
-
-class Filter:
-    """
-    Default filter. Subclass this class or use the `simplefilter`
-    decorator to create own filters.
-    """
-
-    def __init__(self, **options):
-        self.options = options
-
-    def filter(self, lexer, stream):
-        raise NotImplementedError()
-
-
-class FunctionFilter(Filter):
-    """
-    Abstract class used by `simplefilter` to create simple
-    function filters on the fly. The `simplefilter` decorator
-    automatically creates subclasses of this class for
-    functions passed to it.
-    """
-    function = None
-
-    def __init__(self, **options):
-        if not hasattr(self, 'function'):
-            raise TypeError('%r used without bound function' %
-                            self.__class__.__name__)
-        Filter.__init__(self, **options)
-
-    def filter(self, lexer, stream):
-        # pylint: disable=not-callable
-        yield from self.function(lexer, stream, self.options)
diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py
deleted file mode 100644
index 5aa9ecb..0000000
--- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py
+++ /dev/null
@@ -1,940 +0,0 @@
-"""
-    pygments.filters
-    ~~~~~~~~~~~~~~~~
-
-    Module containing filter lookup functions and default
-    filters.
-
-    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-"""
-
-import re
-
-from pip._vendor.pygments.token import String, Comment, Keyword, Name, Error, Whitespace, \
-    string_to_tokentype
-from pip._vendor.pygments.filter import Filter
-from pip._vendor.pygments.util import get_list_opt, get_int_opt, get_bool_opt, \
-    get_choice_opt, ClassNotFound, OptionError
-from pip._vendor.pygments.plugin import find_plugin_filters
-
-
-def find_filter_class(filtername):
-    """Lookup a filter by name. Return None if not found."""
-    if filtername in FILTERS:
-        return FILTERS[filtername]
-    for name, cls in find_plugin_filters():
-        if name == filtername:
-            return cls
-    return None
-
-
-def get_filter_by_name(filtername, **options):
-    """Return an instantiated filter.
-
-    Options are passed to the filter initializer if wanted.
-    Raise a ClassNotFound if not found.
-    """
-    cls = find_filter_class(filtername)
-    if cls:
-        return cls(**options)
-    else:
-        raise ClassNotFound('filter %r not found' % filtername)
-
-
-def get_all_filters():
-    """Return a generator of all filter names."""
-    yield from FILTERS
-    for name, _ in find_plugin_filters():
-        yield name
-
-
-def _replace_special(ttype, value, regex, specialttype,
-                     replacefunc=lambda x: x):
-    last = 0
-    for match in regex.finditer(value):
-        start, end = match.start(), match.end()
-        if start != last:
-            yield ttype, value[last:start]
-        yield specialttype, replacefunc(value[start:end])
-        last = end
-    if last != len(value):
-        yield ttype, value[last:]
-
-
-class CodeTagFilter(Filter):
-    """Highlight special code tags in comments and docstrings.
-
-    Options accepted:
-
-    `codetags` : list of strings
-       A list of strings that are flagged as code tags.  The default is to
-       highlight ``XXX``, ``TODO``, ``FIXME``, ``BUG`` and ``NOTE``.
-
-    .. versionchanged:: 2.13
-       Now recognizes ``FIXME`` by default.
-    """
-
-    def __init__(self, **options):
-        Filter.__init__(self, **options)
-        tags = get_list_opt(options, 'codetags',
-                            ['XXX', 'TODO', 'FIXME', 'BUG', 'NOTE'])
-        self.tag_re = re.compile(r'\b(%s)\b' % '|'.join([
-            re.escape(tag) for tag in tags if tag
-        ]))
-
-    def filter(self, lexer, stream):
-        regex = self.tag_re
-        for ttype, value in stream:
-            if ttype in String.Doc or \
-               ttype in Comment and \
-               ttype not in Comment.Preproc:
-                yield from _replace_special(ttype, value, regex, Comment.Special)
-            else:
-                yield ttype, value
-
-
-class SymbolFilter(Filter):
-    """Convert mathematical symbols such as \\ in Isabelle
-    or \\longrightarrow in LaTeX into Unicode characters.
-
-    This is mostly useful for HTML or console output when you want to
-    approximate the source rendering you'd see in an IDE.
-
-    Options accepted:
-
-    `lang` : string
-       The symbol language. Must be one of ``'isabelle'`` or
-       ``'latex'``.  The default is ``'isabelle'``.
-    """
-
-    latex_symbols = {
-        '\\alpha'                : '\U000003b1',
-        '\\beta'                 : '\U000003b2',
-        '\\gamma'                : '\U000003b3',
-        '\\delta'                : '\U000003b4',
-        '\\varepsilon'           : '\U000003b5',
-        '\\zeta'                 : '\U000003b6',
-        '\\eta'                  : '\U000003b7',
-        '\\vartheta'             : '\U000003b8',
-        '\\iota'                 : '\U000003b9',
-        '\\kappa'                : '\U000003ba',
-        '\\lambda'               : '\U000003bb',
-        '\\mu'                   : '\U000003bc',
-        '\\nu'                   : '\U000003bd',
-        '\\xi'                   : '\U000003be',
-        '\\pi'                   : '\U000003c0',
-        '\\varrho'               : '\U000003c1',
-        '\\sigma'                : '\U000003c3',
-        '\\tau'                  : '\U000003c4',
-        '\\upsilon'              : '\U000003c5',
-        '\\varphi'               : '\U000003c6',
-        '\\chi'                  : '\U000003c7',
-        '\\psi'                  : '\U000003c8',
-        '\\omega'                : '\U000003c9',
-        '\\Gamma'                : '\U00000393',
-        '\\Delta'                : '\U00000394',
-        '\\Theta'                : '\U00000398',
-        '\\Lambda'               : '\U0000039b',
-        '\\Xi'                   : '\U0000039e',
-        '\\Pi'                   : '\U000003a0',
-        '\\Sigma'                : '\U000003a3',
-        '\\Upsilon'              : '\U000003a5',
-        '\\Phi'                  : '\U000003a6',
-        '\\Psi'                  : '\U000003a8',
-        '\\Omega'                : '\U000003a9',
-        '\\leftarrow'            : '\U00002190',
-        '\\longleftarrow'        : '\U000027f5',
-        '\\rightarrow'           : '\U00002192',
-        '\\longrightarrow'       : '\U000027f6',
-        '\\Leftarrow'            : '\U000021d0',
-        '\\Longleftarrow'        : '\U000027f8',
-        '\\Rightarrow'           : '\U000021d2',
-        '\\Longrightarrow'       : '\U000027f9',
-        '\\leftrightarrow'       : '\U00002194',
-        '\\longleftrightarrow'   : '\U000027f7',
-        '\\Leftrightarrow'       : '\U000021d4',
-        '\\Longleftrightarrow'   : '\U000027fa',
-        '\\mapsto'               : '\U000021a6',
-        '\\longmapsto'           : '\U000027fc',
-        '\\relbar'               : '\U00002500',
-        '\\Relbar'               : '\U00002550',
-        '\\hookleftarrow'        : '\U000021a9',
-        '\\hookrightarrow'       : '\U000021aa',
-        '\\leftharpoondown'      : '\U000021bd',
-        '\\rightharpoondown'     : '\U000021c1',
-        '\\leftharpoonup'        : '\U000021bc',
-        '\\rightharpoonup'       : '\U000021c0',
-        '\\rightleftharpoons'    : '\U000021cc',
-        '\\leadsto'              : '\U0000219d',
-        '\\downharpoonleft'      : '\U000021c3',
-        '\\downharpoonright'     : '\U000021c2',
-        '\\upharpoonleft'        : '\U000021bf',
-        '\\upharpoonright'       : '\U000021be',
-        '\\restriction'          : '\U000021be',
-        '\\uparrow'              : '\U00002191',
-        '\\Uparrow'              : '\U000021d1',
-        '\\downarrow'            : '\U00002193',
-        '\\Downarrow'            : '\U000021d3',
-        '\\updownarrow'          : '\U00002195',
-        '\\Updownarrow'          : '\U000021d5',
-        '\\langle'               : '\U000027e8',
-        '\\rangle'               : '\U000027e9',
-        '\\lceil'                : '\U00002308',
-        '\\rceil'                : '\U00002309',
-        '\\lfloor'               : '\U0000230a',
-        '\\rfloor'               : '\U0000230b',
-        '\\flqq'                 : '\U000000ab',
-        '\\frqq'                 : '\U000000bb',
-        '\\bot'                  : '\U000022a5',
-        '\\top'                  : '\U000022a4',
-        '\\wedge'                : '\U00002227',
-        '\\bigwedge'             : '\U000022c0',
-        '\\vee'                  : '\U00002228',
-        '\\bigvee'               : '\U000022c1',
-        '\\forall'               : '\U00002200',
-        '\\exists'               : '\U00002203',
-        '\\nexists'              : '\U00002204',
-        '\\neg'                  : '\U000000ac',
-        '\\Box'                  : '\U000025a1',
-        '\\Diamond'              : '\U000025c7',
-        '\\vdash'                : '\U000022a2',
-        '\\models'               : '\U000022a8',
-        '\\dashv'                : '\U000022a3',
-        '\\surd'                 : '\U0000221a',
-        '\\le'                   : '\U00002264',
-        '\\ge'                   : '\U00002265',
-        '\\ll'                   : '\U0000226a',
-        '\\gg'                   : '\U0000226b',
-        '\\lesssim'              : '\U00002272',
-        '\\gtrsim'               : '\U00002273',
-        '\\lessapprox'           : '\U00002a85',
-        '\\gtrapprox'            : '\U00002a86',
-        '\\in'                   : '\U00002208',
-        '\\notin'                : '\U00002209',
-        '\\subset'               : '\U00002282',
-        '\\supset'               : '\U00002283',
-        '\\subseteq'             : '\U00002286',
-        '\\supseteq'             : '\U00002287',
-        '\\sqsubset'             : '\U0000228f',
-        '\\sqsupset'             : '\U00002290',
-        '\\sqsubseteq'           : '\U00002291',
-        '\\sqsupseteq'           : '\U00002292',
-        '\\cap'                  : '\U00002229',
-        '\\bigcap'               : '\U000022c2',
-        '\\cup'                  : '\U0000222a',
-        '\\bigcup'               : '\U000022c3',
-        '\\sqcup'                : '\U00002294',
-        '\\bigsqcup'             : '\U00002a06',
-        '\\sqcap'                : '\U00002293',
-        '\\Bigsqcap'             : '\U00002a05',
-        '\\setminus'             : '\U00002216',
-        '\\propto'               : '\U0000221d',
-        '\\uplus'                : '\U0000228e',
-        '\\bigplus'              : '\U00002a04',
-        '\\sim'                  : '\U0000223c',
-        '\\doteq'                : '\U00002250',
-        '\\simeq'                : '\U00002243',
-        '\\approx'               : '\U00002248',
-        '\\asymp'                : '\U0000224d',
-        '\\cong'                 : '\U00002245',
-        '\\equiv'                : '\U00002261',
-        '\\Join'                 : '\U000022c8',
-        '\\bowtie'               : '\U00002a1d',
-        '\\prec'                 : '\U0000227a',
-        '\\succ'                 : '\U0000227b',
-        '\\preceq'               : '\U0000227c',
-        '\\succeq'               : '\U0000227d',
-        '\\parallel'             : '\U00002225',
-        '\\mid'                  : '\U000000a6',
-        '\\pm'                   : '\U000000b1',
-        '\\mp'                   : '\U00002213',
-        '\\times'                : '\U000000d7',
-        '\\div'                  : '\U000000f7',
-        '\\cdot'                 : '\U000022c5',
-        '\\star'                 : '\U000022c6',
-        '\\circ'                 : '\U00002218',
-        '\\dagger'               : '\U00002020',
-        '\\ddagger'              : '\U00002021',
-        '\\lhd'                  : '\U000022b2',
-        '\\rhd'                  : '\U000022b3',
-        '\\unlhd'                : '\U000022b4',
-        '\\unrhd'                : '\U000022b5',
-        '\\triangleleft'         : '\U000025c3',
-        '\\triangleright'        : '\U000025b9',
-        '\\triangle'             : '\U000025b3',
-        '\\triangleq'            : '\U0000225c',
-        '\\oplus'                : '\U00002295',
-        '\\bigoplus'             : '\U00002a01',
-        '\\otimes'               : '\U00002297',
-        '\\bigotimes'            : '\U00002a02',
-        '\\odot'                 : '\U00002299',
-        '\\bigodot'              : '\U00002a00',
-        '\\ominus'               : '\U00002296',
-        '\\oslash'               : '\U00002298',
-        '\\dots'                 : '\U00002026',
-        '\\cdots'                : '\U000022ef',
-        '\\sum'                  : '\U00002211',
-        '\\prod'                 : '\U0000220f',
-        '\\coprod'               : '\U00002210',
-        '\\infty'                : '\U0000221e',
-        '\\int'                  : '\U0000222b',
-        '\\oint'                 : '\U0000222e',
-        '\\clubsuit'             : '\U00002663',
-        '\\diamondsuit'          : '\U00002662',
-        '\\heartsuit'            : '\U00002661',
-        '\\spadesuit'            : '\U00002660',
-        '\\aleph'                : '\U00002135',
-        '\\emptyset'             : '\U00002205',
-        '\\nabla'                : '\U00002207',
-        '\\partial'              : '\U00002202',
-        '\\flat'                 : '\U0000266d',
-        '\\natural'              : '\U0000266e',
-        '\\sharp'                : '\U0000266f',
-        '\\angle'                : '\U00002220',
-        '\\copyright'            : '\U000000a9',
-        '\\textregistered'       : '\U000000ae',
-        '\\textonequarter'       : '\U000000bc',
-        '\\textonehalf'          : '\U000000bd',
-        '\\textthreequarters'    : '\U000000be',
-        '\\textordfeminine'      : '\U000000aa',
-        '\\textordmasculine'     : '\U000000ba',
-        '\\euro'                 : '\U000020ac',
-        '\\pounds'               : '\U000000a3',
-        '\\yen'                  : '\U000000a5',
-        '\\textcent'             : '\U000000a2',
-        '\\textcurrency'         : '\U000000a4',
-        '\\textdegree'           : '\U000000b0',
-    }
-
-    isabelle_symbols = {
-        '\\'                 : '\U0001d7ec',
-        '\\'                  : '\U0001d7ed',
-        '\\'                  : '\U0001d7ee',
-        '\\'                : '\U0001d7ef',
-        '\\'                 : '\U0001d7f0',
-        '\\'                 : '\U0001d7f1',
-        '\\'                  : '\U0001d7f2',
-        '\\'                : '\U0001d7f3',
-        '\\'                : '\U0001d7f4',
-        '\\'                 : '\U0001d7f5',
-        '\\'                    : '\U0001d49c',
-        '\\'                    : '\U0000212c',
-        '\\'                    : '\U0001d49e',
-        '\\'                    : '\U0001d49f',
-        '\\'                    : '\U00002130',
-        '\\'                    : '\U00002131',
-        '\\'                    : '\U0001d4a2',
-        '\\'                    : '\U0000210b',
-        '\\'                    : '\U00002110',
-        '\\'                    : '\U0001d4a5',
-        '\\'                    : '\U0001d4a6',
-        '\\'                    : '\U00002112',
-        '\\'                    : '\U00002133',
-        '\\'                    : '\U0001d4a9',
-        '\\'                    : '\U0001d4aa',
-        '\\

' : '\U0001d5c9', - '\\' : '\U0001d5ca', - '\\' : '\U0001d5cb', - '\\' : '\U0001d5cc', - '\\' : '\U0001d5cd', - '\\' : '\U0001d5ce', - '\\' : '\U0001d5cf', - '\\' : '\U0001d5d0', - '\\' : '\U0001d5d1', - '\\' : '\U0001d5d2', - '\\' : '\U0001d5d3', - '\\' : '\U0001d504', - '\\' : '\U0001d505', - '\\' : '\U0000212d', - '\\

' : '\U0001d507', - '\\' : '\U0001d508', - '\\' : '\U0001d509', - '\\' : '\U0001d50a', - '\\' : '\U0000210c', - '\\' : '\U00002111', - '\\' : '\U0001d50d', - '\\' : '\U0001d50e', - '\\' : '\U0001d50f', - '\\' : '\U0001d510', - '\\' : '\U0001d511', - '\\' : '\U0001d512', - '\\' : '\U0001d513', - '\\' : '\U0001d514', - '\\' : '\U0000211c', - '\\' : '\U0001d516', - '\\' : '\U0001d517', - '\\' : '\U0001d518', - '\\' : '\U0001d519', - '\\' : '\U0001d51a', - '\\' : '\U0001d51b', - '\\' : '\U0001d51c', - '\\' : '\U00002128', - '\\' : '\U0001d51e', - '\\' : '\U0001d51f', - '\\' : '\U0001d520', - '\\
' : '\U0001d521', - '\\' : '\U0001d522', - '\\' : '\U0001d523', - '\\' : '\U0001d524', - '\\' : '\U0001d525', - '\\' : '\U0001d526', - '\\' : '\U0001d527', - '\\' : '\U0001d528', - '\\' : '\U0001d529', - '\\' : '\U0001d52a', - '\\' : '\U0001d52b', - '\\' : '\U0001d52c', - '\\' : '\U0001d52d', - '\\' : '\U0001d52e', - '\\' : '\U0001d52f', - '\\' : '\U0001d530', - '\\' : '\U0001d531', - '\\' : '\U0001d532', - '\\' : '\U0001d533', - '\\' : '\U0001d534', - '\\' : '\U0001d535', - '\\' : '\U0001d536', - '\\' : '\U0001d537', - '\\' : '\U000003b1', - '\\' : '\U000003b2', - '\\' : '\U000003b3', - '\\' : '\U000003b4', - '\\' : '\U000003b5', - '\\' : '\U000003b6', - '\\' : '\U000003b7', - '\\' : '\U000003b8', - '\\' : '\U000003b9', - '\\' : '\U000003ba', - '\\' : '\U000003bb', - '\\' : '\U000003bc', - '\\' : '\U000003bd', - '\\' : '\U000003be', - '\\' : '\U000003c0', - '\\' : '\U000003c1', - '\\' : '\U000003c3', - '\\' : '\U000003c4', - '\\' : '\U000003c5', - '\\' : '\U000003c6', - '\\' : '\U000003c7', - '\\' : '\U000003c8', - '\\' : '\U000003c9', - '\\' : '\U00000393', - '\\' : '\U00000394', - '\\' : '\U00000398', - '\\' : '\U0000039b', - '\\' : '\U0000039e', - '\\' : '\U000003a0', - '\\' : '\U000003a3', - '\\' : '\U000003a5', - '\\' : '\U000003a6', - '\\' : '\U000003a8', - '\\' : '\U000003a9', - '\\' : '\U0001d539', - '\\' : '\U00002102', - '\\' : '\U00002115', - '\\' : '\U0000211a', - '\\' : '\U0000211d', - '\\' : '\U00002124', - '\\' : '\U00002190', - '\\' : '\U000027f5', - '\\' : '\U00002192', - '\\' : '\U000027f6', - '\\' : '\U000021d0', - '\\' : '\U000027f8', - '\\' : '\U000021d2', - '\\' : '\U000027f9', - '\\' : '\U00002194', - '\\' : '\U000027f7', - '\\' : '\U000021d4', - '\\' : '\U000027fa', - '\\' : '\U000021a6', - '\\' : '\U000027fc', - '\\' : '\U00002500', - '\\' : '\U00002550', - '\\' : '\U000021a9', - '\\' : '\U000021aa', - '\\' : '\U000021bd', - '\\' : '\U000021c1', - '\\' : '\U000021bc', - '\\' : '\U000021c0', - '\\' : '\U000021cc', - '\\' : '\U0000219d', - '\\' : '\U000021c3', - '\\' : '\U000021c2', - '\\' : '\U000021bf', - '\\' : '\U000021be', - '\\' : '\U000021be', - '\\' : '\U00002237', - '\\' : '\U00002191', - '\\' : '\U000021d1', - '\\' : '\U00002193', - '\\' : '\U000021d3', - '\\' : '\U00002195', - '\\' : '\U000021d5', - '\\' : '\U000027e8', - '\\' : '\U000027e9', - '\\' : '\U00002308', - '\\' : '\U00002309', - '\\' : '\U0000230a', - '\\' : '\U0000230b', - '\\' : '\U00002987', - '\\' : '\U00002988', - '\\' : '\U000027e6', - '\\' : '\U000027e7', - '\\' : '\U00002983', - '\\' : '\U00002984', - '\\' : '\U000000ab', - '\\' : '\U000000bb', - '\\' : '\U000022a5', - '\\' : '\U000022a4', - '\\' : '\U00002227', - '\\' : '\U000022c0', - '\\' : '\U00002228', - '\\' : '\U000022c1', - '\\' : '\U00002200', - '\\' : '\U00002203', - '\\' : '\U00002204', - '\\' : '\U000000ac', - '\\' : '\U000025a1', - '\\' : '\U000025c7', - '\\' : '\U000022a2', - '\\' : '\U000022a8', - '\\' : '\U000022a9', - '\\' : '\U000022ab', - '\\' : '\U000022a3', - '\\' : '\U0000221a', - '\\' : '\U00002264', - '\\' : '\U00002265', - '\\' : '\U0000226a', - '\\' : '\U0000226b', - '\\' : '\U00002272', - '\\' : '\U00002273', - '\\' : '\U00002a85', - '\\' : '\U00002a86', - '\\' : '\U00002208', - '\\' : '\U00002209', - '\\' : '\U00002282', - '\\' : '\U00002283', - '\\' : '\U00002286', - '\\' : '\U00002287', - '\\' : '\U0000228f', - '\\' : '\U00002290', - '\\' : '\U00002291', - '\\' : '\U00002292', - '\\' : '\U00002229', - '\\' : '\U000022c2', - '\\' : '\U0000222a', - '\\' : '\U000022c3', - '\\' : '\U00002294', - '\\' : '\U00002a06', - '\\' : '\U00002293', - '\\' : '\U00002a05', - '\\' : '\U00002216', - '\\' : '\U0000221d', - '\\' : '\U0000228e', - '\\' : '\U00002a04', - '\\' : '\U00002260', - '\\' : '\U0000223c', - '\\' : '\U00002250', - '\\' : '\U00002243', - '\\' : '\U00002248', - '\\' : '\U0000224d', - '\\' : '\U00002245', - '\\' : '\U00002323', - '\\' : '\U00002261', - '\\' : '\U00002322', - '\\' : '\U000022c8', - '\\' : '\U00002a1d', - '\\' : '\U0000227a', - '\\' : '\U0000227b', - '\\' : '\U0000227c', - '\\' : '\U0000227d', - '\\' : '\U00002225', - '\\' : '\U000000a6', - '\\' : '\U000000b1', - '\\' : '\U00002213', - '\\' : '\U000000d7', - '\\
' : '\U000000f7', - '\\' : '\U000022c5', - '\\' : '\U000022c6', - '\\' : '\U00002219', - '\\' : '\U00002218', - '\\' : '\U00002020', - '\\' : '\U00002021', - '\\' : '\U000022b2', - '\\' : '\U000022b3', - '\\' : '\U000022b4', - '\\' : '\U000022b5', - '\\' : '\U000025c3', - '\\' : '\U000025b9', - '\\' : '\U000025b3', - '\\' : '\U0000225c', - '\\' : '\U00002295', - '\\' : '\U00002a01', - '\\' : '\U00002297', - '\\' : '\U00002a02', - '\\' : '\U00002299', - '\\' : '\U00002a00', - '\\' : '\U00002296', - '\\' : '\U00002298', - '\\' : '\U00002026', - '\\' : '\U000022ef', - '\\' : '\U00002211', - '\\' : '\U0000220f', - '\\' : '\U00002210', - '\\' : '\U0000221e', - '\\' : '\U0000222b', - '\\' : '\U0000222e', - '\\' : '\U00002663', - '\\' : '\U00002662', - '\\' : '\U00002661', - '\\' : '\U00002660', - '\\' : '\U00002135', - '\\' : '\U00002205', - '\\' : '\U00002207', - '\\' : '\U00002202', - '\\' : '\U0000266d', - '\\' : '\U0000266e', - '\\' : '\U0000266f', - '\\' : '\U00002220', - '\\' : '\U000000a9', - '\\' : '\U000000ae', - '\\' : '\U000000ad', - '\\' : '\U000000af', - '\\' : '\U000000bc', - '\\' : '\U000000bd', - '\\' : '\U000000be', - '\\' : '\U000000aa', - '\\' : '\U000000ba', - '\\
' : '\U000000a7', - '\\' : '\U000000b6', - '\\' : '\U000000a1', - '\\' : '\U000000bf', - '\\' : '\U000020ac', - '\\' : '\U000000a3', - '\\' : '\U000000a5', - '\\' : '\U000000a2', - '\\' : '\U000000a4', - '\\' : '\U000000b0', - '\\' : '\U00002a3f', - '\\' : '\U00002127', - '\\' : '\U000025ca', - '\\' : '\U00002118', - '\\' : '\U00002240', - '\\' : '\U000022c4', - '\\' : '\U000000b4', - '\\' : '\U00000131', - '\\' : '\U000000a8', - '\\' : '\U000000b8', - '\\' : '\U000002dd', - '\\' : '\U000003f5', - '\\' : '\U000023ce', - '\\' : '\U00002039', - '\\' : '\U0000203a', - '\\' : '\U00002302', - '\\<^sub>' : '\U000021e9', - '\\<^sup>' : '\U000021e7', - '\\<^bold>' : '\U00002759', - '\\<^bsub>' : '\U000021d8', - '\\<^esub>' : '\U000021d9', - '\\<^bsup>' : '\U000021d7', - '\\<^esup>' : '\U000021d6', - } - - lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} - - def __init__(self, **options): - Filter.__init__(self, **options) - lang = get_choice_opt(options, 'lang', - ['isabelle', 'latex'], 'isabelle') - self.symbols = self.lang_map[lang] - - def filter(self, lexer, stream): - for ttype, value in stream: - if value in self.symbols: - yield ttype, self.symbols[value] - else: - yield ttype, value - - -class KeywordCaseFilter(Filter): - """Convert keywords to lowercase or uppercase or capitalize them, which - means first letter uppercase, rest lowercase. - - This can be useful e.g. if you highlight Pascal code and want to adapt the - code to your styleguide. - - Options accepted: - - `case` : string - The casing to convert keywords to. Must be one of ``'lower'``, - ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. - """ - - def __init__(self, **options): - Filter.__init__(self, **options) - case = get_choice_opt(options, 'case', - ['lower', 'upper', 'capitalize'], 'lower') - self.convert = getattr(str, case) - - def filter(self, lexer, stream): - for ttype, value in stream: - if ttype in Keyword: - yield ttype, self.convert(value) - else: - yield ttype, value - - -class NameHighlightFilter(Filter): - """Highlight a normal Name (and Name.*) token with a different token type. - - Example:: - - filter = NameHighlightFilter( - names=['foo', 'bar', 'baz'], - tokentype=Name.Function, - ) - - This would highlight the names "foo", "bar" and "baz" - as functions. `Name.Function` is the default token type. - - Options accepted: - - `names` : list of strings - A list of names that should be given the different token type. - There is no default. - `tokentype` : TokenType or string - A token type or a string containing a token type name that is - used for highlighting the strings in `names`. The default is - `Name.Function`. - """ - - def __init__(self, **options): - Filter.__init__(self, **options) - self.names = set(get_list_opt(options, 'names', [])) - tokentype = options.get('tokentype') - if tokentype: - self.tokentype = string_to_tokentype(tokentype) - else: - self.tokentype = Name.Function - - def filter(self, lexer, stream): - for ttype, value in stream: - if ttype in Name and value in self.names: - yield self.tokentype, value - else: - yield ttype, value - - -class ErrorToken(Exception): - pass - - -class RaiseOnErrorTokenFilter(Filter): - """Raise an exception when the lexer generates an error token. - - Options accepted: - - `excclass` : Exception class - The exception class to raise. - The default is `pygments.filters.ErrorToken`. - - .. versionadded:: 0.8 - """ - - def __init__(self, **options): - Filter.__init__(self, **options) - self.exception = options.get('excclass', ErrorToken) - try: - # issubclass() will raise TypeError if first argument is not a class - if not issubclass(self.exception, Exception): - raise TypeError - except TypeError: - raise OptionError('excclass option is not an exception class') - - def filter(self, lexer, stream): - for ttype, value in stream: - if ttype is Error: - raise self.exception(value) - yield ttype, value - - -class VisibleWhitespaceFilter(Filter): - """Convert tabs, newlines and/or spaces to visible characters. - - Options accepted: - - `spaces` : string or bool - If this is a one-character string, spaces will be replaces by this string. - If it is another true value, spaces will be replaced by ``·`` (unicode - MIDDLE DOT). If it is a false value, spaces will not be replaced. The - default is ``False``. - `tabs` : string or bool - The same as for `spaces`, but the default replacement character is ``»`` - (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value - is ``False``. Note: this will not work if the `tabsize` option for the - lexer is nonzero, as tabs will already have been expanded then. - `tabsize` : int - If tabs are to be replaced by this filter (see the `tabs` option), this - is the total number of characters that a tab should be expanded to. - The default is ``8``. - `newlines` : string or bool - The same as for `spaces`, but the default replacement character is ``¶`` - (unicode PILCROW SIGN). The default value is ``False``. - `wstokentype` : bool - If true, give whitespace the special `Whitespace` token type. This allows - styling the visible whitespace differently (e.g. greyed out), but it can - disrupt background colors. The default is ``True``. - - .. versionadded:: 0.8 - """ - - def __init__(self, **options): - Filter.__init__(self, **options) - for name, default in [('spaces', '·'), - ('tabs', '»'), - ('newlines', '¶')]: - opt = options.get(name, False) - if isinstance(opt, str) and len(opt) == 1: - setattr(self, name, opt) - else: - setattr(self, name, (opt and default or '')) - tabsize = get_int_opt(options, 'tabsize', 8) - if self.tabs: - self.tabs += ' ' * (tabsize - 1) - if self.newlines: - self.newlines += '\n' - self.wstt = get_bool_opt(options, 'wstokentype', True) - - def filter(self, lexer, stream): - if self.wstt: - spaces = self.spaces or ' ' - tabs = self.tabs or '\t' - newlines = self.newlines or '\n' - regex = re.compile(r'\s') - - def replacefunc(wschar): - if wschar == ' ': - return spaces - elif wschar == '\t': - return tabs - elif wschar == '\n': - return newlines - return wschar - - for ttype, value in stream: - yield from _replace_special(ttype, value, regex, Whitespace, - replacefunc) - else: - spaces, tabs, newlines = self.spaces, self.tabs, self.newlines - # simpler processing - for ttype, value in stream: - if spaces: - value = value.replace(' ', spaces) - if tabs: - value = value.replace('\t', tabs) - if newlines: - value = value.replace('\n', newlines) - yield ttype, value - - -class GobbleFilter(Filter): - """Gobbles source code lines (eats initial characters). - - This filter drops the first ``n`` characters off every line of code. This - may be useful when the source code fed to the lexer is indented by a fixed - amount of space that isn't desired in the output. - - Options accepted: - - `n` : int - The number of characters to gobble. - - .. versionadded:: 1.2 - """ - def __init__(self, **options): - Filter.__init__(self, **options) - self.n = get_int_opt(options, 'n', 0) - - def gobble(self, value, left): - if left < len(value): - return value[left:], 0 - else: - return '', left - len(value) - - def filter(self, lexer, stream): - n = self.n - left = n # How many characters left to gobble. - for ttype, value in stream: - # Remove ``left`` tokens from first line, ``n`` from all others. - parts = value.split('\n') - (parts[0], left) = self.gobble(parts[0], left) - for i in range(1, len(parts)): - (parts[i], left) = self.gobble(parts[i], n) - value = '\n'.join(parts) - - if value != '': - yield ttype, value - - -class TokenMergeFilter(Filter): - """Merges consecutive tokens with the same token type in the output - stream of a lexer. - - .. versionadded:: 1.2 - """ - def __init__(self, **options): - Filter.__init__(self, **options) - - def filter(self, lexer, stream): - current_type = None - current_value = None - for ttype, value in stream: - if ttype is current_type: - current_value += value - else: - if current_type is not None: - yield current_type, current_value - current_type = ttype - current_value = value - if current_type is not None: - yield current_type, current_value - - -FILTERS = { - 'codetagify': CodeTagFilter, - 'keywordcase': KeywordCaseFilter, - 'highlight': NameHighlightFilter, - 'raiseonerror': RaiseOnErrorTokenFilter, - 'whitespace': VisibleWhitespaceFilter, - 'gobble': GobbleFilter, - 'tokenmerge': TokenMergeFilter, - 'symbols': SymbolFilter, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b450bf8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py deleted file mode 100644 index 3ca4892..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py +++ /dev/null @@ -1,124 +0,0 @@ -""" - pygments.formatter - ~~~~~~~~~~~~~~~~~~ - - Base formatter class. - - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import codecs - -from pip._vendor.pygments.util import get_bool_opt -from pip._vendor.pygments.styles import get_style_by_name - -__all__ = ['Formatter'] - - -def _lookup_style(style): - if isinstance(style, str): - return get_style_by_name(style) - return style - - -class Formatter: - """ - Converts a token stream to text. - - Formatters should have attributes to help selecting them. These - are similar to the corresponding :class:`~pygments.lexer.Lexer` - attributes. - - .. autoattribute:: name - :no-value: - - .. autoattribute:: aliases - :no-value: - - .. autoattribute:: filenames - :no-value: - - You can pass options as keyword arguments to the constructor. - All formatters accept these basic options: - - ``style`` - The style to use, can be a string or a Style subclass - (default: "default"). Not used by e.g. the - TerminalFormatter. - ``full`` - Tells the formatter to output a "full" document, i.e. - a complete self-contained document. This doesn't have - any effect for some formatters (default: false). - ``title`` - If ``full`` is true, the title that should be used to - caption the document (default: ''). - ``encoding`` - If given, must be an encoding name. This will be used to - convert the Unicode token strings to byte strings in the - output. If it is "" or None, Unicode strings will be written - to the output file, which most file-like objects do not - support (default: None). - ``outencoding`` - Overrides ``encoding`` if given. - - """ - - #: Full name for the formatter, in human-readable form. - name = None - - #: A list of short, unique identifiers that can be used to lookup - #: the formatter from a list, e.g. using :func:`.get_formatter_by_name()`. - aliases = [] - - #: A list of fnmatch patterns that match filenames for which this - #: formatter can produce output. The patterns in this list should be unique - #: among all formatters. - filenames = [] - - #: If True, this formatter outputs Unicode strings when no encoding - #: option is given. - unicodeoutput = True - - def __init__(self, **options): - """ - As with lexers, this constructor takes arbitrary optional arguments, - and if you override it, you should first process your own options, then - call the base class implementation. - """ - self.style = _lookup_style(options.get('style', 'default')) - self.full = get_bool_opt(options, 'full', False) - self.title = options.get('title', '') - self.encoding = options.get('encoding', None) or None - if self.encoding in ('guess', 'chardet'): - # can happen for e.g. pygmentize -O encoding=guess - self.encoding = 'utf-8' - self.encoding = options.get('outencoding') or self.encoding - self.options = options - - def get_style_defs(self, arg=''): - """ - This method must return statements or declarations suitable to define - the current style for subsequent highlighted text (e.g. CSS classes - in the `HTMLFormatter`). - - The optional argument `arg` can be used to modify the generation and - is formatter dependent (it is standardized because it can be given on - the command line). - - This method is called by the ``-S`` :doc:`command-line option `, - the `arg` is then given by the ``-a`` option. - """ - return '' - - def format(self, tokensource, outfile): - """ - This method must format the tokens from the `tokensource` iterable and - write the formatted version to the file object `outfile`. - - Formatter options can control how exactly the tokens are converted. - """ - if self.encoding: - # wrap the outfile in a StreamWriter - outfile = codecs.lookup(self.encoding)[3](outfile) - return self.format_unencoded(tokensource, outfile) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py deleted file mode 100644 index 39db842..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py +++ /dev/null @@ -1,158 +0,0 @@ -""" - pygments.formatters - ~~~~~~~~~~~~~~~~~~~ - - Pygments formatters. - - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import re -import sys -import types -import fnmatch -from os.path import basename - -from pip._vendor.pygments.formatters._mapping import FORMATTERS -from pip._vendor.pygments.plugin import find_plugin_formatters -from pip._vendor.pygments.util import ClassNotFound - -__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', - 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) - -_formatter_cache = {} # classes by name -_pattern_cache = {} - - -def _fn_matches(fn, glob): - """Return whether the supplied file name fn matches pattern filename.""" - if glob not in _pattern_cache: - pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) - return pattern.match(fn) - return _pattern_cache[glob].match(fn) - - -def _load_formatters(module_name): - """Load a formatter (and all others in the module too).""" - mod = __import__(module_name, None, None, ['__all__']) - for formatter_name in mod.__all__: - cls = getattr(mod, formatter_name) - _formatter_cache[cls.name] = cls - - -def get_all_formatters(): - """Return a generator for all formatter classes.""" - # NB: this returns formatter classes, not info like get_all_lexers(). - for info in FORMATTERS.values(): - if info[1] not in _formatter_cache: - _load_formatters(info[0]) - yield _formatter_cache[info[1]] - for _, formatter in find_plugin_formatters(): - yield formatter - - -def find_formatter_class(alias): - """Lookup a formatter by alias. - - Returns None if not found. - """ - for module_name, name, aliases, _, _ in FORMATTERS.values(): - if alias in aliases: - if name not in _formatter_cache: - _load_formatters(module_name) - return _formatter_cache[name] - for _, cls in find_plugin_formatters(): - if alias in cls.aliases: - return cls - - -def get_formatter_by_name(_alias, **options): - """ - Return an instance of a :class:`.Formatter` subclass that has `alias` in its - aliases list. The formatter is given the `options` at its instantiation. - - Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that - alias is found. - """ - cls = find_formatter_class(_alias) - if cls is None: - raise ClassNotFound("no formatter found for name %r" % _alias) - return cls(**options) - - -def load_formatter_from_file(filename, formattername="CustomFormatter", **options): - """ - Return a `Formatter` subclass instance loaded from the provided file, relative - to the current directory. - - The file is expected to contain a Formatter class named ``formattername`` - (by default, CustomFormatter). Users should be very careful with the input, because - this method is equivalent to running ``eval()`` on the input file. The formatter is - given the `options` at its instantiation. - - :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading - the formatter. - - .. versionadded:: 2.2 - """ - try: - # This empty dict will contain the namespace for the exec'd file - custom_namespace = {} - with open(filename, 'rb') as f: - exec(f.read(), custom_namespace) - # Retrieve the class `formattername` from that namespace - if formattername not in custom_namespace: - raise ClassNotFound('no valid %s class found in %s' % - (formattername, filename)) - formatter_class = custom_namespace[formattername] - # And finally instantiate it with the options - return formatter_class(**options) - except OSError as err: - raise ClassNotFound('cannot read %s: %s' % (filename, err)) - except ClassNotFound: - raise - except Exception as err: - raise ClassNotFound('error when loading custom formatter: %s' % err) - - -def get_formatter_for_filename(fn, **options): - """ - Return a :class:`.Formatter` subclass instance that has a filename pattern - matching `fn`. The formatter is given the `options` at its instantiation. - - Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename - is found. - """ - fn = basename(fn) - for modname, name, _, filenames, _ in FORMATTERS.values(): - for filename in filenames: - if _fn_matches(fn, filename): - if name not in _formatter_cache: - _load_formatters(modname) - return _formatter_cache[name](**options) - for cls in find_plugin_formatters(): - for filename in cls.filenames: - if _fn_matches(fn, filename): - return cls(**options) - raise ClassNotFound("no formatter found for file name %r" % fn) - - -class _automodule(types.ModuleType): - """Automatically import formatters.""" - - def __getattr__(self, name): - info = FORMATTERS.get(name) - if info: - _load_formatters(info[0]) - cls = _formatter_cache[info[1]] - setattr(self, name, cls) - return cls - raise AttributeError(name) - - -oldmod = sys.modules[__name__] -newmod = _automodule(__name__) -newmod.__dict__.update(oldmod.__dict__) -sys.modules[__name__] = newmod -del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a1298d0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc deleted file mode 100644 index cf30bba..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc deleted file mode 100644 index 69d9aa1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc deleted file mode 100644 index f29056a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc deleted file mode 100644 index 400592f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc deleted file mode 100644 index d2cc95d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc deleted file mode 100644 index 0245814..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc deleted file mode 100644 index 927b3d4..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc deleted file mode 100644 index 342e4dd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc deleted file mode 100644 index 10fff4e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc deleted file mode 100644 index 275d6ed..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc deleted file mode 100644 index acc4738..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc deleted file mode 100644 index 4785e25..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc deleted file mode 100644 index 28def5c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py deleted file mode 100644 index 72ca840..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically generated by scripts/gen_mapfiles.py. -# DO NOT EDIT BY HAND; run `tox -e mapfiles` instead. - -FORMATTERS = { - 'BBCodeFormatter': ('pygments.formatters.bbcode', 'BBCode', ('bbcode', 'bb'), (), 'Format tokens with BBcodes. These formatting codes are used by many bulletin boards, so you can highlight your sourcecode with pygments before posting it there.'), - 'BmpImageFormatter': ('pygments.formatters.img', 'img_bmp', ('bmp', 'bitmap'), ('*.bmp',), 'Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), - 'GifImageFormatter': ('pygments.formatters.img', 'img_gif', ('gif',), ('*.gif',), 'Create a GIF image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), - 'GroffFormatter': ('pygments.formatters.groff', 'groff', ('groff', 'troff', 'roff'), (), 'Format tokens with groff escapes to change their color and font style.'), - 'HtmlFormatter': ('pygments.formatters.html', 'HTML', ('html',), ('*.html', '*.htm'), "Format tokens as HTML 4 ```` tags. By default, the content is enclosed in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). The ``
``'s CSS class can be set by the `cssclass` option."), - 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), - 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), - 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), - 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), - 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), - 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), - 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), - 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), - 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), - 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), - 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), - 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), - 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py deleted file mode 100644 index c4db8f4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py +++ /dev/null @@ -1,108 +0,0 @@ -""" - pygments.formatters.bbcode - ~~~~~~~~~~~~~~~~~~~~~~~~~~ - - BBcode formatter. - - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - - -from pip._vendor.pygments.formatter import Formatter -from pip._vendor.pygments.util import get_bool_opt - -__all__ = ['BBCodeFormatter'] - - -class BBCodeFormatter(Formatter): - """ - Format tokens with BBcodes. These formatting codes are used by many - bulletin boards, so you can highlight your sourcecode with pygments before - posting it there. - - This formatter has no support for background colors and borders, as there - are no common BBcode tags for that. - - Some board systems (e.g. phpBB) don't support colors in their [code] tag, - so you can't use the highlighting together with that tag. - Text in a [code] tag usually is shown with a monospace font (which this - formatter can do with the ``monofont`` option) and no spaces (which you - need for indentation) are removed. - - Additional options accepted: - - `style` - The style to use, can be a string or a Style subclass (default: - ``'default'``). - - `codetag` - If set to true, put the output into ``[code]`` tags (default: - ``false``) - - `monofont` - If set to true, add a tag to show the code with a monospace font - (default: ``false``). - """ - name = 'BBCode' - aliases = ['bbcode', 'bb'] - filenames = [] - - def __init__(self, **options): - Formatter.__init__(self, **options) - self._code = get_bool_opt(options, 'codetag', False) - self._mono = get_bool_opt(options, 'monofont', False) - - self.styles = {} - self._make_styles() - - def _make_styles(self): - for ttype, ndef in self.style: - start = end = '' - if ndef['color']: - start += '[color=#%s]' % ndef['color'] - end = '[/color]' + end - if ndef['bold']: - start += '[b]' - end = '[/b]' + end - if ndef['italic']: - start += '[i]' - end = '[/i]' + end - if ndef['underline']: - start += '[u]' - end = '[/u]' + end - # there are no common BBcodes for background-color and border - - self.styles[ttype] = start, end - - def format_unencoded(self, tokensource, outfile): - if self._code: - outfile.write('[code]') - if self._mono: - outfile.write('[font=monospace]') - - lastval = '' - lasttype = None - - for ttype, value in tokensource: - while ttype not in self.styles: - ttype = ttype.parent - if ttype == lasttype: - lastval += value - else: - if lastval: - start, end = self.styles[lasttype] - outfile.write(''.join((start, lastval, end))) - lastval = value - lasttype = ttype - - if lastval: - start, end = self.styles[lasttype] - outfile.write(''.join((start, lastval, end))) - - if self._mono: - outfile.write('[/font]') - if self._code: - outfile.write('[/code]') - if self._code or self._mono: - outfile.write('\n') diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py deleted file mode 100644 index 30a528e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py +++ /dev/null @@ -1,170 +0,0 @@ -""" - pygments.formatters.groff - ~~~~~~~~~~~~~~~~~~~~~~~~~ - - Formatter for groff output. - - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import math -from pip._vendor.pygments.formatter import Formatter -from pip._vendor.pygments.util import get_bool_opt, get_int_opt - -__all__ = ['GroffFormatter'] - - -class GroffFormatter(Formatter): - """ - Format tokens with groff escapes to change their color and font style. - - .. versionadded:: 2.11 - - Additional options accepted: - - `style` - The style to use, can be a string or a Style subclass (default: - ``'default'``). - - `monospaced` - If set to true, monospace font will be used (default: ``true``). - - `linenos` - If set to true, print the line numbers (default: ``false``). - - `wrap` - Wrap lines to the specified number of characters. Disabled if set to 0 - (default: ``0``). - """ - - name = 'groff' - aliases = ['groff','troff','roff'] - filenames = [] - - def __init__(self, **options): - Formatter.__init__(self, **options) - - self.monospaced = get_bool_opt(options, 'monospaced', True) - self.linenos = get_bool_opt(options, 'linenos', False) - self._lineno = 0 - self.wrap = get_int_opt(options, 'wrap', 0) - self._linelen = 0 - - self.styles = {} - self._make_styles() - - - def _make_styles(self): - regular = '\\f[CR]' if self.monospaced else '\\f[R]' - bold = '\\f[CB]' if self.monospaced else '\\f[B]' - italic = '\\f[CI]' if self.monospaced else '\\f[I]' - - for ttype, ndef in self.style: - start = end = '' - if ndef['color']: - start += '\\m[%s]' % ndef['color'] - end = '\\m[]' + end - if ndef['bold']: - start += bold - end = regular + end - if ndef['italic']: - start += italic - end = regular + end - if ndef['bgcolor']: - start += '\\M[%s]' % ndef['bgcolor'] - end = '\\M[]' + end - - self.styles[ttype] = start, end - - - def _define_colors(self, outfile): - colors = set() - for _, ndef in self.style: - if ndef['color'] is not None: - colors.add(ndef['color']) - - for color in sorted(colors): - outfile.write('.defcolor ' + color + ' rgb #' + color + '\n') - - - def _write_lineno(self, outfile): - self._lineno += 1 - outfile.write("%s% 4d " % (self._lineno != 1 and '\n' or '', self._lineno)) - - - def _wrap_line(self, line): - length = len(line.rstrip('\n')) - space = ' ' if self.linenos else '' - newline = '' - - if length > self.wrap: - for i in range(0, math.floor(length / self.wrap)): - chunk = line[i*self.wrap:i*self.wrap+self.wrap] - newline += (chunk + '\n' + space) - remainder = length % self.wrap - if remainder > 0: - newline += line[-remainder-1:] - self._linelen = remainder - elif self._linelen + length > self.wrap: - newline = ('\n' + space) + line - self._linelen = length - else: - newline = line - self._linelen += length - - return newline - - - def _escape_chars(self, text): - text = text.replace('\\', '\\[u005C]'). \ - replace('.', '\\[char46]'). \ - replace('\'', '\\[u0027]'). \ - replace('`', '\\[u0060]'). \ - replace('~', '\\[u007E]') - copy = text - - for char in copy: - if len(char) != len(char.encode()): - uni = char.encode('unicode_escape') \ - .decode()[1:] \ - .replace('x', 'u00') \ - .upper() - text = text.replace(char, '\\[u' + uni[1:] + ']') - - return text - - - def format_unencoded(self, tokensource, outfile): - self._define_colors(outfile) - - outfile.write('.nf\n\\f[CR]\n') - - if self.linenos: - self._write_lineno(outfile) - - for ttype, value in tokensource: - while ttype not in self.styles: - ttype = ttype.parent - start, end = self.styles[ttype] - - for line in value.splitlines(True): - if self.wrap > 0: - line = self._wrap_line(line) - - if start and end: - text = self._escape_chars(line.rstrip('\n')) - if text != '': - outfile.write(''.join((start, text, end))) - else: - outfile.write(self._escape_chars(line.rstrip('\n'))) - - if line.endswith('\n'): - if self.linenos: - self._write_lineno(outfile) - self._linelen = 0 - else: - outfile.write('\n') - self._linelen = 0 - - outfile.write('\n.fi') diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py deleted file mode 100644 index 931d7c3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py +++ /dev/null @@ -1,989 +0,0 @@ -""" - pygments.formatters.html - ~~~~~~~~~~~~~~~~~~~~~~~~ - - Formatter for HTML output. - - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import functools -import os -import sys -import os.path -from io import StringIO - -from pip._vendor.pygments.formatter import Formatter -from pip._vendor.pygments.token import Token, Text, STANDARD_TYPES -from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt - -try: - import ctags -except ImportError: - ctags = None - -__all__ = ['HtmlFormatter'] - - -_escape_html_table = { - ord('&'): '&', - ord('<'): '<', - ord('>'): '>', - ord('"'): '"', - ord("'"): ''', -} - - -def escape_html(text, table=_escape_html_table): - """Escape &, <, > as well as single and double quotes for HTML.""" - return text.translate(table) - - -def webify(color): - if color.startswith('calc') or color.startswith('var'): - return color - else: - return '#' + color - - -def _get_ttype_class(ttype): - fname = STANDARD_TYPES.get(ttype) - if fname: - return fname - aname = '' - while fname is None: - aname = '-' + ttype[-1] + aname - ttype = ttype.parent - fname = STANDARD_TYPES.get(ttype) - return fname + aname - - -CSSFILE_TEMPLATE = '''\ -/* -generated by Pygments -Copyright 2006-2023 by the Pygments team. -Licensed under the BSD license, see LICENSE for details. -*/ -%(styledefs)s -''' - -DOC_HEADER = '''\ - - - - - %(title)s - - - - -

%(title)s

- -''' - -DOC_HEADER_EXTERNALCSS = '''\ - - - - - %(title)s - - - - -

%(title)s

- -''' - -DOC_FOOTER = '''\ - - -''' - - -class HtmlFormatter(Formatter): - r""" - Format tokens as HTML 4 ```` tags. By default, the content is enclosed - in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). - The ``
``'s CSS class can be set by the `cssclass` option. - - If the `linenos` option is set to ``"table"``, the ``
`` is
-    additionally wrapped inside a ```` which has one row and two
-    cells: one containing the line numbers and one containing the code.
-    Example:
-
-    .. sourcecode:: html
-
-        
-
- - -
-
1
-            2
-
-
def foo(bar):
-              pass
-            
-
- - (whitespace added to improve clarity). - - A list of lines can be specified using the `hl_lines` option to make these - lines highlighted (as of Pygments 0.11). - - With the `full` option, a complete HTML 4 document is output, including - the style definitions inside a `` - {% else %} - {{ head | safe }} - {% endif %} -{% if not embed %} - - -{% endif %} -{{ body | safe }} -{% for diagram in diagrams %} -
-

{{ diagram.title }}

-
{{ diagram.text }}
-
- {{ diagram.svg }} -
-
-{% endfor %} -{% if not embed %} - - -{% endif %} -""" - -template = Template(jinja2_template_source) - -# Note: ideally this would be a dataclass, but we're supporting Python 3.5+ so we can't do this yet -NamedDiagram = NamedTuple( - "NamedDiagram", - [("name", str), ("diagram", typing.Optional[railroad.DiagramItem]), ("index", int)], -) -""" -A simple structure for associating a name with a railroad diagram -""" - -T = TypeVar("T") - - -class EachItem(railroad.Group): - """ - Custom railroad item to compose a: - - Group containing a - - OneOrMore containing a - - Choice of the elements in the Each - with the group label indicating that all must be matched - """ - - all_label = "[ALL]" - - def __init__(self, *items): - choice_item = railroad.Choice(len(items) - 1, *items) - one_or_more_item = railroad.OneOrMore(item=choice_item) - super().__init__(one_or_more_item, label=self.all_label) - - -class AnnotatedItem(railroad.Group): - """ - Simple subclass of Group that creates an annotation label - """ - - def __init__(self, label: str, item): - super().__init__(item=item, label="[{}]".format(label) if label else label) - - -class EditablePartial(Generic[T]): - """ - Acts like a functools.partial, but can be edited. In other words, it represents a type that hasn't yet been - constructed. - """ - - # We need this here because the railroad constructors actually transform the data, so can't be called until the - # entire tree is assembled - - def __init__(self, func: Callable[..., T], args: list, kwargs: dict): - self.func = func - self.args = args - self.kwargs = kwargs - - @classmethod - def from_call(cls, func: Callable[..., T], *args, **kwargs) -> "EditablePartial[T]": - """ - If you call this function in the same way that you would call the constructor, it will store the arguments - as you expect. For example EditablePartial.from_call(Fraction, 1, 3)() == Fraction(1, 3) - """ - return EditablePartial(func=func, args=list(args), kwargs=kwargs) - - @property - def name(self): - return self.kwargs["name"] - - def __call__(self) -> T: - """ - Evaluate the partial and return the result - """ - args = self.args.copy() - kwargs = self.kwargs.copy() - - # This is a helpful hack to allow you to specify varargs parameters (e.g. *args) as keyword args (e.g. - # args=['list', 'of', 'things']) - arg_spec = inspect.getfullargspec(self.func) - if arg_spec.varargs in self.kwargs: - args += kwargs.pop(arg_spec.varargs) - - return self.func(*args, **kwargs) - - -def railroad_to_html(diagrams: List[NamedDiagram], embed=False, **kwargs) -> str: - """ - Given a list of NamedDiagram, produce a single HTML string that visualises those diagrams - :params kwargs: kwargs to be passed in to the template - """ - data = [] - for diagram in diagrams: - if diagram.diagram is None: - continue - io = StringIO() - try: - css = kwargs.get('css') - diagram.diagram.writeStandalone(io.write, css=css) - except AttributeError: - diagram.diagram.writeSvg(io.write) - title = diagram.name - if diagram.index == 0: - title += " (root)" - data.append({"title": title, "text": "", "svg": io.getvalue()}) - - return template.render(diagrams=data, embed=embed, **kwargs) - - -def resolve_partial(partial: "EditablePartial[T]") -> T: - """ - Recursively resolves a collection of Partials into whatever type they are - """ - if isinstance(partial, EditablePartial): - partial.args = resolve_partial(partial.args) - partial.kwargs = resolve_partial(partial.kwargs) - return partial() - elif isinstance(partial, list): - return [resolve_partial(x) for x in partial] - elif isinstance(partial, dict): - return {key: resolve_partial(x) for key, x in partial.items()} - else: - return partial - - -def to_railroad( - element: pyparsing.ParserElement, - diagram_kwargs: typing.Optional[dict] = None, - vertical: int = 3, - show_results_names: bool = False, - show_groups: bool = False, -) -> List[NamedDiagram]: - """ - Convert a pyparsing element tree into a list of diagrams. This is the recommended entrypoint to diagram - creation if you want to access the Railroad tree before it is converted to HTML - :param element: base element of the parser being diagrammed - :param diagram_kwargs: kwargs to pass to the Diagram() constructor - :param vertical: (optional) - int - limit at which number of alternatives should be - shown vertically instead of horizontally - :param show_results_names - bool to indicate whether results name annotations should be - included in the diagram - :param show_groups - bool to indicate whether groups should be highlighted with an unlabeled - surrounding box - """ - # Convert the whole tree underneath the root - lookup = ConverterState(diagram_kwargs=diagram_kwargs or {}) - _to_diagram_element( - element, - lookup=lookup, - parent=None, - vertical=vertical, - show_results_names=show_results_names, - show_groups=show_groups, - ) - - root_id = id(element) - # Convert the root if it hasn't been already - if root_id in lookup: - if not element.customName: - lookup[root_id].name = "" - lookup[root_id].mark_for_extraction(root_id, lookup, force=True) - - # Now that we're finished, we can convert from intermediate structures into Railroad elements - diags = list(lookup.diagrams.values()) - if len(diags) > 1: - # collapse out duplicate diags with the same name - seen = set() - deduped_diags = [] - for d in diags: - # don't extract SkipTo elements, they are uninformative as subdiagrams - if d.name == "...": - continue - if d.name is not None and d.name not in seen: - seen.add(d.name) - deduped_diags.append(d) - resolved = [resolve_partial(partial) for partial in deduped_diags] - else: - # special case - if just one diagram, always display it, even if - # it has no name - resolved = [resolve_partial(partial) for partial in diags] - return sorted(resolved, key=lambda diag: diag.index) - - -def _should_vertical( - specification: int, exprs: Iterable[pyparsing.ParserElement] -) -> bool: - """ - Returns true if we should return a vertical list of elements - """ - if specification is None: - return False - else: - return len(_visible_exprs(exprs)) >= specification - - -class ElementState: - """ - State recorded for an individual pyparsing Element - """ - - # Note: this should be a dataclass, but we have to support Python 3.5 - def __init__( - self, - element: pyparsing.ParserElement, - converted: EditablePartial, - parent: EditablePartial, - number: int, - name: str = None, - parent_index: typing.Optional[int] = None, - ): - #: The pyparsing element that this represents - self.element: pyparsing.ParserElement = element - #: The name of the element - self.name: typing.Optional[str] = name - #: The output Railroad element in an unconverted state - self.converted: EditablePartial = converted - #: The parent Railroad element, which we store so that we can extract this if it's duplicated - self.parent: EditablePartial = parent - #: The order in which we found this element, used for sorting diagrams if this is extracted into a diagram - self.number: int = number - #: The index of this inside its parent - self.parent_index: typing.Optional[int] = parent_index - #: If true, we should extract this out into a subdiagram - self.extract: bool = False - #: If true, all of this element's children have been filled out - self.complete: bool = False - - def mark_for_extraction( - self, el_id: int, state: "ConverterState", name: str = None, force: bool = False - ): - """ - Called when this instance has been seen twice, and thus should eventually be extracted into a sub-diagram - :param el_id: id of the element - :param state: element/diagram state tracker - :param name: name to use for this element's text - :param force: If true, force extraction now, regardless of the state of this. Only useful for extracting the - root element when we know we're finished - """ - self.extract = True - - # Set the name - if not self.name: - if name: - # Allow forcing a custom name - self.name = name - elif self.element.customName: - self.name = self.element.customName - else: - self.name = "" - - # Just because this is marked for extraction doesn't mean we can do it yet. We may have to wait for children - # to be added - # Also, if this is just a string literal etc, don't bother extracting it - if force or (self.complete and _worth_extracting(self.element)): - state.extract_into_diagram(el_id) - - -class ConverterState: - """ - Stores some state that persists between recursions into the element tree - """ - - def __init__(self, diagram_kwargs: typing.Optional[dict] = None): - #: A dictionary mapping ParserElements to state relating to them - self._element_diagram_states: Dict[int, ElementState] = {} - #: A dictionary mapping ParserElement IDs to subdiagrams generated from them - self.diagrams: Dict[int, EditablePartial[NamedDiagram]] = {} - #: The index of the next unnamed element - self.unnamed_index: int = 1 - #: The index of the next element. This is used for sorting - self.index: int = 0 - #: Shared kwargs that are used to customize the construction of diagrams - self.diagram_kwargs: dict = diagram_kwargs or {} - self.extracted_diagram_names: Set[str] = set() - - def __setitem__(self, key: int, value: ElementState): - self._element_diagram_states[key] = value - - def __getitem__(self, key: int) -> ElementState: - return self._element_diagram_states[key] - - def __delitem__(self, key: int): - del self._element_diagram_states[key] - - def __contains__(self, key: int): - return key in self._element_diagram_states - - def generate_unnamed(self) -> int: - """ - Generate a number used in the name of an otherwise unnamed diagram - """ - self.unnamed_index += 1 - return self.unnamed_index - - def generate_index(self) -> int: - """ - Generate a number used to index a diagram - """ - self.index += 1 - return self.index - - def extract_into_diagram(self, el_id: int): - """ - Used when we encounter the same token twice in the same tree. When this - happens, we replace all instances of that token with a terminal, and - create a new subdiagram for the token - """ - position = self[el_id] - - # Replace the original definition of this element with a regular block - if position.parent: - ret = EditablePartial.from_call(railroad.NonTerminal, text=position.name) - if "item" in position.parent.kwargs: - position.parent.kwargs["item"] = ret - elif "items" in position.parent.kwargs: - position.parent.kwargs["items"][position.parent_index] = ret - - # If the element we're extracting is a group, skip to its content but keep the title - if position.converted.func == railroad.Group: - content = position.converted.kwargs["item"] - else: - content = position.converted - - self.diagrams[el_id] = EditablePartial.from_call( - NamedDiagram, - name=position.name, - diagram=EditablePartial.from_call( - railroad.Diagram, content, **self.diagram_kwargs - ), - index=position.number, - ) - - del self[el_id] - - -def _worth_extracting(element: pyparsing.ParserElement) -> bool: - """ - Returns true if this element is worth having its own sub-diagram. Simply, if any of its children - themselves have children, then its complex enough to extract - """ - children = element.recurse() - return any(child.recurse() for child in children) - - -def _apply_diagram_item_enhancements(fn): - """ - decorator to ensure enhancements to a diagram item (such as results name annotations) - get applied on return from _to_diagram_element (we do this since there are several - returns in _to_diagram_element) - """ - - def _inner( - element: pyparsing.ParserElement, - parent: typing.Optional[EditablePartial], - lookup: ConverterState = None, - vertical: int = None, - index: int = 0, - name_hint: str = None, - show_results_names: bool = False, - show_groups: bool = False, - ) -> typing.Optional[EditablePartial]: - ret = fn( - element, - parent, - lookup, - vertical, - index, - name_hint, - show_results_names, - show_groups, - ) - - # apply annotation for results name, if present - if show_results_names and ret is not None: - element_results_name = element.resultsName - if element_results_name: - # add "*" to indicate if this is a "list all results" name - element_results_name += "" if element.modalResults else "*" - ret = EditablePartial.from_call( - railroad.Group, item=ret, label=element_results_name - ) - - return ret - - return _inner - - -def _visible_exprs(exprs: Iterable[pyparsing.ParserElement]): - non_diagramming_exprs = ( - pyparsing.ParseElementEnhance, - pyparsing.PositionToken, - pyparsing.And._ErrorStop, - ) - return [ - e - for e in exprs - if not (e.customName or e.resultsName or isinstance(e, non_diagramming_exprs)) - ] - - -@_apply_diagram_item_enhancements -def _to_diagram_element( - element: pyparsing.ParserElement, - parent: typing.Optional[EditablePartial], - lookup: ConverterState = None, - vertical: int = None, - index: int = 0, - name_hint: str = None, - show_results_names: bool = False, - show_groups: bool = False, -) -> typing.Optional[EditablePartial]: - """ - Recursively converts a PyParsing Element to a railroad Element - :param lookup: The shared converter state that keeps track of useful things - :param index: The index of this element within the parent - :param parent: The parent of this element in the output tree - :param vertical: Controls at what point we make a list of elements vertical. If this is an integer (the default), - it sets the threshold of the number of items before we go vertical. If True, always go vertical, if False, never - do so - :param name_hint: If provided, this will override the generated name - :param show_results_names: bool flag indicating whether to add annotations for results names - :returns: The converted version of the input element, but as a Partial that hasn't yet been constructed - :param show_groups: bool flag indicating whether to show groups using bounding box - """ - exprs = element.recurse() - name = name_hint or element.customName or element.__class__.__name__ - - # Python's id() is used to provide a unique identifier for elements - el_id = id(element) - - element_results_name = element.resultsName - - # Here we basically bypass processing certain wrapper elements if they contribute nothing to the diagram - if not element.customName: - if isinstance( - element, - ( - # pyparsing.TokenConverter, - # pyparsing.Forward, - pyparsing.Located, - ), - ): - # However, if this element has a useful custom name, and its child does not, we can pass it on to the child - if exprs: - if not exprs[0].customName: - propagated_name = name - else: - propagated_name = None - - return _to_diagram_element( - element.expr, - parent=parent, - lookup=lookup, - vertical=vertical, - index=index, - name_hint=propagated_name, - show_results_names=show_results_names, - show_groups=show_groups, - ) - - # If the element isn't worth extracting, we always treat it as the first time we say it - if _worth_extracting(element): - if el_id in lookup: - # If we've seen this element exactly once before, we are only just now finding out that it's a duplicate, - # so we have to extract it into a new diagram. - looked_up = lookup[el_id] - looked_up.mark_for_extraction(el_id, lookup, name=name_hint) - ret = EditablePartial.from_call(railroad.NonTerminal, text=looked_up.name) - return ret - - elif el_id in lookup.diagrams: - # If we have seen the element at least twice before, and have already extracted it into a subdiagram, we - # just put in a marker element that refers to the sub-diagram - ret = EditablePartial.from_call( - railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] - ) - return ret - - # Recursively convert child elements - # Here we find the most relevant Railroad element for matching pyparsing Element - # We use ``items=[]`` here to hold the place for where the child elements will go once created - if isinstance(element, pyparsing.And): - # detect And's created with ``expr*N`` notation - for these use a OneOrMore with a repeat - # (all will have the same name, and resultsName) - if not exprs: - return None - if len(set((e.name, e.resultsName) for e in exprs)) == 1: - ret = EditablePartial.from_call( - railroad.OneOrMore, item="", repeat=str(len(exprs)) - ) - elif _should_vertical(vertical, exprs): - ret = EditablePartial.from_call(railroad.Stack, items=[]) - else: - ret = EditablePartial.from_call(railroad.Sequence, items=[]) - elif isinstance(element, (pyparsing.Or, pyparsing.MatchFirst)): - if not exprs: - return None - if _should_vertical(vertical, exprs): - ret = EditablePartial.from_call(railroad.Choice, 0, items=[]) - else: - ret = EditablePartial.from_call(railroad.HorizontalChoice, items=[]) - elif isinstance(element, pyparsing.Each): - if not exprs: - return None - ret = EditablePartial.from_call(EachItem, items=[]) - elif isinstance(element, pyparsing.NotAny): - ret = EditablePartial.from_call(AnnotatedItem, label="NOT", item="") - elif isinstance(element, pyparsing.FollowedBy): - ret = EditablePartial.from_call(AnnotatedItem, label="LOOKAHEAD", item="") - elif isinstance(element, pyparsing.PrecededBy): - ret = EditablePartial.from_call(AnnotatedItem, label="LOOKBEHIND", item="") - elif isinstance(element, pyparsing.Group): - if show_groups: - ret = EditablePartial.from_call(AnnotatedItem, label="", item="") - else: - ret = EditablePartial.from_call(railroad.Group, label="", item="") - elif isinstance(element, pyparsing.TokenConverter): - label = type(element).__name__.lower() - if label == "tokenconverter": - ret = EditablePartial.from_call(railroad.Sequence, items=[]) - else: - ret = EditablePartial.from_call(AnnotatedItem, label=label, item="") - elif isinstance(element, pyparsing.Opt): - ret = EditablePartial.from_call(railroad.Optional, item="") - elif isinstance(element, pyparsing.OneOrMore): - ret = EditablePartial.from_call(railroad.OneOrMore, item="") - elif isinstance(element, pyparsing.ZeroOrMore): - ret = EditablePartial.from_call(railroad.ZeroOrMore, item="") - elif isinstance(element, pyparsing.Group): - ret = EditablePartial.from_call( - railroad.Group, item=None, label=element_results_name - ) - elif isinstance(element, pyparsing.Empty) and not element.customName: - # Skip unnamed "Empty" elements - ret = None - elif isinstance(element, pyparsing.ParseElementEnhance): - ret = EditablePartial.from_call(railroad.Sequence, items=[]) - elif len(exprs) > 0 and not element_results_name: - ret = EditablePartial.from_call(railroad.Group, item="", label=name) - elif len(exprs) > 0: - ret = EditablePartial.from_call(railroad.Sequence, items=[]) - else: - terminal = EditablePartial.from_call(railroad.Terminal, element.defaultName) - ret = terminal - - if ret is None: - return - - # Indicate this element's position in the tree so we can extract it if necessary - lookup[el_id] = ElementState( - element=element, - converted=ret, - parent=parent, - parent_index=index, - number=lookup.generate_index(), - ) - if element.customName: - lookup[el_id].mark_for_extraction(el_id, lookup, element.customName) - - i = 0 - for expr in exprs: - # Add a placeholder index in case we have to extract the child before we even add it to the parent - if "items" in ret.kwargs: - ret.kwargs["items"].insert(i, None) - - item = _to_diagram_element( - expr, - parent=ret, - lookup=lookup, - vertical=vertical, - index=i, - show_results_names=show_results_names, - show_groups=show_groups, - ) - - # Some elements don't need to be shown in the diagram - if item is not None: - if "item" in ret.kwargs: - ret.kwargs["item"] = item - elif "items" in ret.kwargs: - # If we've already extracted the child, don't touch this index, since it's occupied by a nonterminal - ret.kwargs["items"][i] = item - i += 1 - elif "items" in ret.kwargs: - # If we're supposed to skip this element, remove it from the parent - del ret.kwargs["items"][i] - - # If all this items children are none, skip this item - if ret and ( - ("items" in ret.kwargs and len(ret.kwargs["items"]) == 0) - or ("item" in ret.kwargs and ret.kwargs["item"] is None) - ): - ret = EditablePartial.from_call(railroad.Terminal, name) - - # Mark this element as "complete", ie it has all of its children - if el_id in lookup: - lookup[el_id].complete = True - - if el_id in lookup and lookup[el_id].extract and lookup[el_id].complete: - lookup.extract_into_diagram(el_id) - if ret is not None: - ret = EditablePartial.from_call( - railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] - ) - - return ret diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7773b47..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py deleted file mode 100644 index 12219f1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py +++ /dev/null @@ -1,299 +0,0 @@ -# exceptions.py - -import re -import sys -import typing - -from .util import ( - col, - line, - lineno, - _collapse_string_to_ranges, - replaced_by_pep8, -) -from .unicode import pyparsing_unicode as ppu - - -class ExceptionWordUnicode(ppu.Latin1, ppu.LatinA, ppu.LatinB, ppu.Greek, ppu.Cyrillic): - pass - - -_extract_alphanums = _collapse_string_to_ranges(ExceptionWordUnicode.alphanums) -_exception_word_extractor = re.compile("([" + _extract_alphanums + "]{1,16})|.") - - -class ParseBaseException(Exception): - """base exception class for all parsing runtime exceptions""" - - loc: int - msg: str - pstr: str - parser_element: typing.Any # "ParserElement" - args: typing.Tuple[str, int, typing.Optional[str]] - - __slots__ = ( - "loc", - "msg", - "pstr", - "parser_element", - "args", - ) - - # Performance tuning: we construct a *lot* of these, so keep this - # constructor as small and fast as possible - def __init__( - self, - pstr: str, - loc: int = 0, - msg: typing.Optional[str] = None, - elem=None, - ): - self.loc = loc - if msg is None: - self.msg = pstr - self.pstr = "" - else: - self.msg = msg - self.pstr = pstr - self.parser_element = elem - self.args = (pstr, loc, msg) - - @staticmethod - def explain_exception(exc, depth=16): - """ - Method to take an exception and translate the Python internal traceback into a list - of the pyparsing expressions that caused the exception to be raised. - - Parameters: - - - exc - exception raised during parsing (need not be a ParseException, in support - of Python exceptions that might be raised in a parse action) - - depth (default=16) - number of levels back in the stack trace to list expression - and function names; if None, the full stack trace names will be listed; if 0, only - the failing input line, marker, and exception string will be shown - - Returns a multi-line string listing the ParserElements and/or function names in the - exception's stack trace. - """ - import inspect - from .core import ParserElement - - if depth is None: - depth = sys.getrecursionlimit() - ret = [] - if isinstance(exc, ParseBaseException): - ret.append(exc.line) - ret.append(" " * (exc.column - 1) + "^") - ret.append(f"{type(exc).__name__}: {exc}") - - if depth > 0: - callers = inspect.getinnerframes(exc.__traceback__, context=depth) - seen = set() - for i, ff in enumerate(callers[-depth:]): - frm = ff[0] - - f_self = frm.f_locals.get("self", None) - if isinstance(f_self, ParserElement): - if not frm.f_code.co_name.startswith( - ("parseImpl", "_parseNoCache") - ): - continue - if id(f_self) in seen: - continue - seen.add(id(f_self)) - - self_type = type(f_self) - ret.append( - f"{self_type.__module__}.{self_type.__name__} - {f_self}" - ) - - elif f_self is not None: - self_type = type(f_self) - ret.append(f"{self_type.__module__}.{self_type.__name__}") - - else: - code = frm.f_code - if code.co_name in ("wrapper", ""): - continue - - ret.append(code.co_name) - - depth -= 1 - if not depth: - break - - return "\n".join(ret) - - @classmethod - def _from_exception(cls, pe): - """ - internal factory method to simplify creating one type of ParseException - from another - avoids having __init__ signature conflicts among subclasses - """ - return cls(pe.pstr, pe.loc, pe.msg, pe.parser_element) - - @property - def line(self) -> str: - """ - Return the line of text where the exception occurred. - """ - return line(self.loc, self.pstr) - - @property - def lineno(self) -> int: - """ - Return the 1-based line number of text where the exception occurred. - """ - return lineno(self.loc, self.pstr) - - @property - def col(self) -> int: - """ - Return the 1-based column on the line of text where the exception occurred. - """ - return col(self.loc, self.pstr) - - @property - def column(self) -> int: - """ - Return the 1-based column on the line of text where the exception occurred. - """ - return col(self.loc, self.pstr) - - # pre-PEP8 compatibility - @property - def parserElement(self): - return self.parser_element - - @parserElement.setter - def parserElement(self, elem): - self.parser_element = elem - - def __str__(self) -> str: - if self.pstr: - if self.loc >= len(self.pstr): - foundstr = ", found end of text" - else: - # pull out next word at error location - found_match = _exception_word_extractor.match(self.pstr, self.loc) - if found_match is not None: - found = found_match.group(0) - else: - found = self.pstr[self.loc : self.loc + 1] - foundstr = (", found %r" % found).replace(r"\\", "\\") - else: - foundstr = "" - return f"{self.msg}{foundstr} (at char {self.loc}), (line:{self.lineno}, col:{self.column})" - - def __repr__(self): - return str(self) - - def mark_input_line( - self, marker_string: typing.Optional[str] = None, *, markerString: str = ">!<" - ) -> str: - """ - Extracts the exception line from the input string, and marks - the location of the exception with a special symbol. - """ - markerString = marker_string if marker_string is not None else markerString - line_str = self.line - line_column = self.column - 1 - if markerString: - line_str = "".join( - (line_str[:line_column], markerString, line_str[line_column:]) - ) - return line_str.strip() - - def explain(self, depth=16) -> str: - """ - Method to translate the Python internal traceback into a list - of the pyparsing expressions that caused the exception to be raised. - - Parameters: - - - depth (default=16) - number of levels back in the stack trace to list expression - and function names; if None, the full stack trace names will be listed; if 0, only - the failing input line, marker, and exception string will be shown - - Returns a multi-line string listing the ParserElements and/or function names in the - exception's stack trace. - - Example:: - - expr = pp.Word(pp.nums) * 3 - try: - expr.parse_string("123 456 A789") - except pp.ParseException as pe: - print(pe.explain(depth=0)) - - prints:: - - 123 456 A789 - ^ - ParseException: Expected W:(0-9), found 'A' (at char 8), (line:1, col:9) - - Note: the diagnostic output will include string representations of the expressions - that failed to parse. These representations will be more helpful if you use `set_name` to - give identifiable names to your expressions. Otherwise they will use the default string - forms, which may be cryptic to read. - - Note: pyparsing's default truncation of exception tracebacks may also truncate the - stack of expressions that are displayed in the ``explain`` output. To get the full listing - of parser expressions, you may have to set ``ParserElement.verbose_stacktrace = True`` - """ - return self.explain_exception(self, depth) - - # fmt: off - @replaced_by_pep8(mark_input_line) - def markInputline(self): ... - # fmt: on - - -class ParseException(ParseBaseException): - """ - Exception thrown when a parse expression doesn't match the input string - - Example:: - - try: - Word(nums).set_name("integer").parse_string("ABC") - except ParseException as pe: - print(pe) - print("column: {}".format(pe.column)) - - prints:: - - Expected integer (at char 0), (line:1, col:1) - column: 1 - - """ - - -class ParseFatalException(ParseBaseException): - """ - User-throwable exception thrown when inconsistent parse content - is found; stops all parsing immediately - """ - - -class ParseSyntaxException(ParseFatalException): - """ - Just like :class:`ParseFatalException`, but thrown internally - when an :class:`ErrorStop` ('-' operator) indicates - that parsing is to stop immediately because an unbacktrackable - syntax error has been found. - """ - - -class RecursiveGrammarException(Exception): - """ - Exception thrown by :class:`ParserElement.validate` if the - grammar could be left-recursive; parser may need to enable - left recursion using :class:`ParserElement.enable_left_recursion` - """ - - def __init__(self, parseElementList): - self.parseElementTrace = parseElementList - - def __str__(self) -> str: - return f"RecursiveGrammarException: {self.parseElementTrace}" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py deleted file mode 100644 index 018f0d6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py +++ /dev/null @@ -1,1100 +0,0 @@ -# helpers.py -import html.entities -import re -import sys -import typing - -from . import __diag__ -from .core import * -from .util import ( - _bslash, - _flatten, - _escape_regex_range_chars, - replaced_by_pep8, -) - - -# -# global helpers -# -def counted_array( - expr: ParserElement, - int_expr: typing.Optional[ParserElement] = None, - *, - intExpr: typing.Optional[ParserElement] = None, -) -> ParserElement: - """Helper to define a counted list of expressions. - - This helper defines a pattern of the form:: - - integer expr expr expr... - - where the leading integer tells how many expr expressions follow. - The matched tokens returns the array of expr tokens as a list - the - leading count token is suppressed. - - If ``int_expr`` is specified, it should be a pyparsing expression - that produces an integer value. - - Example:: - - counted_array(Word(alphas)).parse_string('2 ab cd ef') # -> ['ab', 'cd'] - - # in this parser, the leading integer value is given in binary, - # '10' indicating that 2 values are in the array - binary_constant = Word('01').set_parse_action(lambda t: int(t[0], 2)) - counted_array(Word(alphas), int_expr=binary_constant).parse_string('10 ab cd ef') # -> ['ab', 'cd'] - - # if other fields must be parsed after the count but before the - # list items, give the fields results names and they will - # be preserved in the returned ParseResults: - count_with_metadata = integer + Word(alphas)("type") - typed_array = counted_array(Word(alphanums), int_expr=count_with_metadata)("items") - result = typed_array.parse_string("3 bool True True False") - print(result.dump()) - - # prints - # ['True', 'True', 'False'] - # - items: ['True', 'True', 'False'] - # - type: 'bool' - """ - intExpr = intExpr or int_expr - array_expr = Forward() - - def count_field_parse_action(s, l, t): - nonlocal array_expr - n = t[0] - array_expr <<= (expr * n) if n else Empty() - # clear list contents, but keep any named results - del t[:] - - if intExpr is None: - intExpr = Word(nums).set_parse_action(lambda t: int(t[0])) - else: - intExpr = intExpr.copy() - intExpr.set_name("arrayLen") - intExpr.add_parse_action(count_field_parse_action, call_during_try=True) - return (intExpr + array_expr).set_name("(len) " + str(expr) + "...") - - -def match_previous_literal(expr: ParserElement) -> ParserElement: - """Helper to define an expression that is indirectly defined from - the tokens matched in a previous expression, that is, it looks for - a 'repeat' of a previous expression. For example:: - - first = Word(nums) - second = match_previous_literal(first) - match_expr = first + ":" + second - - will match ``"1:1"``, but not ``"1:2"``. Because this - matches a previous literal, will also match the leading - ``"1:1"`` in ``"1:10"``. If this is not desired, use - :class:`match_previous_expr`. Do *not* use with packrat parsing - enabled. - """ - rep = Forward() - - def copy_token_to_repeater(s, l, t): - if t: - if len(t) == 1: - rep << t[0] - else: - # flatten t tokens - tflat = _flatten(t.as_list()) - rep << And(Literal(tt) for tt in tflat) - else: - rep << Empty() - - expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) - rep.set_name("(prev) " + str(expr)) - return rep - - -def match_previous_expr(expr: ParserElement) -> ParserElement: - """Helper to define an expression that is indirectly defined from - the tokens matched in a previous expression, that is, it looks for - a 'repeat' of a previous expression. For example:: - - first = Word(nums) - second = match_previous_expr(first) - match_expr = first + ":" + second - - will match ``"1:1"``, but not ``"1:2"``. Because this - matches by expressions, will *not* match the leading ``"1:1"`` - in ``"1:10"``; the expressions are evaluated first, and then - compared, so ``"1"`` is compared with ``"10"``. Do *not* use - with packrat parsing enabled. - """ - rep = Forward() - e2 = expr.copy() - rep <<= e2 - - def copy_token_to_repeater(s, l, t): - matchTokens = _flatten(t.as_list()) - - def must_match_these_tokens(s, l, t): - theseTokens = _flatten(t.as_list()) - if theseTokens != matchTokens: - raise ParseException( - s, l, f"Expected {matchTokens}, found{theseTokens}" - ) - - rep.set_parse_action(must_match_these_tokens, callDuringTry=True) - - expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) - rep.set_name("(prev) " + str(expr)) - return rep - - -def one_of( - strs: Union[typing.Iterable[str], str], - caseless: bool = False, - use_regex: bool = True, - as_keyword: bool = False, - *, - useRegex: bool = True, - asKeyword: bool = False, -) -> ParserElement: - """Helper to quickly define a set of alternative :class:`Literal` s, - and makes sure to do longest-first testing when there is a conflict, - regardless of the input order, but returns - a :class:`MatchFirst` for best performance. - - Parameters: - - - ``strs`` - a string of space-delimited literals, or a collection of - string literals - - ``caseless`` - treat all literals as caseless - (default= ``False``) - - ``use_regex`` - as an optimization, will - generate a :class:`Regex` object; otherwise, will generate - a :class:`MatchFirst` object (if ``caseless=True`` or ``as_keyword=True``, or if - creating a :class:`Regex` raises an exception) - (default= ``True``) - - ``as_keyword`` - enforce :class:`Keyword`-style matching on the - generated expressions - (default= ``False``) - - ``asKeyword`` and ``useRegex`` are retained for pre-PEP8 compatibility, - but will be removed in a future release - - Example:: - - comp_oper = one_of("< = > <= >= !=") - var = Word(alphas) - number = Word(nums) - term = var | number - comparison_expr = term + comp_oper + term - print(comparison_expr.search_string("B = 12 AA=23 B<=AA AA>12")) - - prints:: - - [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']] - """ - asKeyword = asKeyword or as_keyword - useRegex = useRegex and use_regex - - if ( - isinstance(caseless, str_type) - and __diag__.warn_on_multiple_string_args_to_oneof - ): - warnings.warn( - "More than one string argument passed to one_of, pass" - " choices as a list or space-delimited string", - stacklevel=2, - ) - - if caseless: - isequal = lambda a, b: a.upper() == b.upper() - masks = lambda a, b: b.upper().startswith(a.upper()) - parseElementClass = CaselessKeyword if asKeyword else CaselessLiteral - else: - isequal = lambda a, b: a == b - masks = lambda a, b: b.startswith(a) - parseElementClass = Keyword if asKeyword else Literal - - symbols: List[str] = [] - if isinstance(strs, str_type): - strs = typing.cast(str, strs) - symbols = strs.split() - elif isinstance(strs, Iterable): - symbols = list(strs) - else: - raise TypeError("Invalid argument to one_of, expected string or iterable") - if not symbols: - return NoMatch() - - # reorder given symbols to take care to avoid masking longer choices with shorter ones - # (but only if the given symbols are not just single characters) - if any(len(sym) > 1 for sym in symbols): - i = 0 - while i < len(symbols) - 1: - cur = symbols[i] - for j, other in enumerate(symbols[i + 1 :]): - if isequal(other, cur): - del symbols[i + j + 1] - break - elif masks(cur, other): - del symbols[i + j + 1] - symbols.insert(i, other) - break - else: - i += 1 - - if useRegex: - re_flags: int = re.IGNORECASE if caseless else 0 - - try: - if all(len(sym) == 1 for sym in symbols): - # symbols are just single characters, create range regex pattern - patt = f"[{''.join(_escape_regex_range_chars(sym) for sym in symbols)}]" - else: - patt = "|".join(re.escape(sym) for sym in symbols) - - # wrap with \b word break markers if defining as keywords - if asKeyword: - patt = rf"\b(?:{patt})\b" - - ret = Regex(patt, flags=re_flags).set_name(" | ".join(symbols)) - - if caseless: - # add parse action to return symbols as specified, not in random - # casing as found in input string - symbol_map = {sym.lower(): sym for sym in symbols} - ret.add_parse_action(lambda s, l, t: symbol_map[t[0].lower()]) - - return ret - - except re.error: - warnings.warn( - "Exception creating Regex for one_of, building MatchFirst", stacklevel=2 - ) - - # last resort, just use MatchFirst - return MatchFirst(parseElementClass(sym) for sym in symbols).set_name( - " | ".join(symbols) - ) - - -def dict_of(key: ParserElement, value: ParserElement) -> ParserElement: - """Helper to easily and clearly define a dictionary by specifying - the respective patterns for the key and value. Takes care of - defining the :class:`Dict`, :class:`ZeroOrMore`, and - :class:`Group` tokens in the proper order. The key pattern - can include delimiting markers or punctuation, as long as they are - suppressed, thereby leaving the significant key text. The value - pattern can include named results, so that the :class:`Dict` results - can include named token fields. - - Example:: - - text = "shape: SQUARE posn: upper left color: light blue texture: burlap" - attr_expr = (label + Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join)) - print(attr_expr[1, ...].parse_string(text).dump()) - - attr_label = label - attr_value = Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join) - - # similar to Dict, but simpler call format - result = dict_of(attr_label, attr_value).parse_string(text) - print(result.dump()) - print(result['shape']) - print(result.shape) # object attribute access works too - print(result.as_dict()) - - prints:: - - [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] - - color: 'light blue' - - posn: 'upper left' - - shape: 'SQUARE' - - texture: 'burlap' - SQUARE - SQUARE - {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'} - """ - return Dict(OneOrMore(Group(key + value))) - - -def original_text_for( - expr: ParserElement, as_string: bool = True, *, asString: bool = True -) -> ParserElement: - """Helper to return the original, untokenized text for a given - expression. Useful to restore the parsed fields of an HTML start - tag into the raw tag text itself, or to revert separate tokens with - intervening whitespace back to the original matching input text. By - default, returns a string containing the original parsed text. - - If the optional ``as_string`` argument is passed as - ``False``, then the return value is - a :class:`ParseResults` containing any results names that - were originally matched, and a single token containing the original - matched text from the input string. So if the expression passed to - :class:`original_text_for` contains expressions with defined - results names, you must set ``as_string`` to ``False`` if you - want to preserve those results name values. - - The ``asString`` pre-PEP8 argument is retained for compatibility, - but will be removed in a future release. - - Example:: - - src = "this is test bold text normal text " - for tag in ("b", "i"): - opener, closer = make_html_tags(tag) - patt = original_text_for(opener + ... + closer) - print(patt.search_string(src)[0]) - - prints:: - - [' bold text '] - ['text'] - """ - asString = asString and as_string - - locMarker = Empty().set_parse_action(lambda s, loc, t: loc) - endlocMarker = locMarker.copy() - endlocMarker.callPreparse = False - matchExpr = locMarker("_original_start") + expr + endlocMarker("_original_end") - if asString: - extractText = lambda s, l, t: s[t._original_start : t._original_end] - else: - - def extractText(s, l, t): - t[:] = [s[t.pop("_original_start") : t.pop("_original_end")]] - - matchExpr.set_parse_action(extractText) - matchExpr.ignoreExprs = expr.ignoreExprs - matchExpr.suppress_warning(Diagnostics.warn_ungrouped_named_tokens_in_collection) - return matchExpr - - -def ungroup(expr: ParserElement) -> ParserElement: - """Helper to undo pyparsing's default grouping of And expressions, - even if all but one are non-empty. - """ - return TokenConverter(expr).add_parse_action(lambda t: t[0]) - - -def locatedExpr(expr: ParserElement) -> ParserElement: - """ - (DEPRECATED - future code should use the :class:`Located` class) - Helper to decorate a returned token with its starting and ending - locations in the input string. - - This helper adds the following results names: - - - ``locn_start`` - location where matched expression begins - - ``locn_end`` - location where matched expression ends - - ``value`` - the actual parsed results - - Be careful if the input text contains ```` characters, you - may want to call :class:`ParserElement.parse_with_tabs` - - Example:: - - wd = Word(alphas) - for match in locatedExpr(wd).search_string("ljsdf123lksdjjf123lkkjj1222"): - print(match) - - prints:: - - [[0, 'ljsdf', 5]] - [[8, 'lksdjjf', 15]] - [[18, 'lkkjj', 23]] - """ - locator = Empty().set_parse_action(lambda ss, ll, tt: ll) - return Group( - locator("locn_start") - + expr("value") - + locator.copy().leaveWhitespace()("locn_end") - ) - - -def nested_expr( - opener: Union[str, ParserElement] = "(", - closer: Union[str, ParserElement] = ")", - content: typing.Optional[ParserElement] = None, - ignore_expr: ParserElement = quoted_string(), - *, - ignoreExpr: ParserElement = quoted_string(), -) -> ParserElement: - """Helper method for defining nested lists enclosed in opening and - closing delimiters (``"("`` and ``")"`` are the default). - - Parameters: - - - ``opener`` - opening character for a nested list - (default= ``"("``); can also be a pyparsing expression - - ``closer`` - closing character for a nested list - (default= ``")"``); can also be a pyparsing expression - - ``content`` - expression for items within the nested lists - (default= ``None``) - - ``ignore_expr`` - expression for ignoring opening and closing delimiters - (default= :class:`quoted_string`) - - ``ignoreExpr`` - this pre-PEP8 argument is retained for compatibility - but will be removed in a future release - - If an expression is not provided for the content argument, the - nested expression will capture all whitespace-delimited content - between delimiters as a list of separate values. - - Use the ``ignore_expr`` argument to define expressions that may - contain opening or closing characters that should not be treated as - opening or closing characters for nesting, such as quoted_string or - a comment expression. Specify multiple expressions using an - :class:`Or` or :class:`MatchFirst`. The default is - :class:`quoted_string`, but if no expressions are to be ignored, then - pass ``None`` for this argument. - - Example:: - - data_type = one_of("void int short long char float double") - decl_data_type = Combine(data_type + Opt(Word('*'))) - ident = Word(alphas+'_', alphanums+'_') - number = pyparsing_common.number - arg = Group(decl_data_type + ident) - LPAR, RPAR = map(Suppress, "()") - - code_body = nested_expr('{', '}', ignore_expr=(quoted_string | c_style_comment)) - - c_function = (decl_data_type("type") - + ident("name") - + LPAR + Opt(DelimitedList(arg), [])("args") + RPAR - + code_body("body")) - c_function.ignore(c_style_comment) - - source_code = ''' - int is_odd(int x) { - return (x%2); - } - - int dec_to_hex(char hchar) { - if (hchar >= '0' && hchar <= '9') { - return (ord(hchar)-ord('0')); - } else { - return (10+ord(hchar)-ord('A')); - } - } - ''' - for func in c_function.search_string(source_code): - print("%(name)s (%(type)s) args: %(args)s" % func) - - - prints:: - - is_odd (int) args: [['int', 'x']] - dec_to_hex (int) args: [['char', 'hchar']] - """ - if ignoreExpr != ignore_expr: - ignoreExpr = ignore_expr if ignoreExpr == quoted_string() else ignoreExpr - if opener == closer: - raise ValueError("opening and closing strings cannot be the same") - if content is None: - if isinstance(opener, str_type) and isinstance(closer, str_type): - opener = typing.cast(str, opener) - closer = typing.cast(str, closer) - if len(opener) == 1 and len(closer) == 1: - if ignoreExpr is not None: - content = Combine( - OneOrMore( - ~ignoreExpr - + CharsNotIn( - opener + closer + ParserElement.DEFAULT_WHITE_CHARS, - exact=1, - ) - ) - ).set_parse_action(lambda t: t[0].strip()) - else: - content = empty.copy() + CharsNotIn( - opener + closer + ParserElement.DEFAULT_WHITE_CHARS - ).set_parse_action(lambda t: t[0].strip()) - else: - if ignoreExpr is not None: - content = Combine( - OneOrMore( - ~ignoreExpr - + ~Literal(opener) - + ~Literal(closer) - + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) - ) - ).set_parse_action(lambda t: t[0].strip()) - else: - content = Combine( - OneOrMore( - ~Literal(opener) - + ~Literal(closer) - + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) - ) - ).set_parse_action(lambda t: t[0].strip()) - else: - raise ValueError( - "opening and closing arguments must be strings if no content expression is given" - ) - ret = Forward() - if ignoreExpr is not None: - ret <<= Group( - Suppress(opener) + ZeroOrMore(ignoreExpr | ret | content) + Suppress(closer) - ) - else: - ret <<= Group(Suppress(opener) + ZeroOrMore(ret | content) + Suppress(closer)) - ret.set_name("nested %s%s expression" % (opener, closer)) - return ret - - -def _makeTags(tagStr, xml, suppress_LT=Suppress("<"), suppress_GT=Suppress(">")): - """Internal helper to construct opening and closing tag expressions, given a tag name""" - if isinstance(tagStr, str_type): - resname = tagStr - tagStr = Keyword(tagStr, caseless=not xml) - else: - resname = tagStr.name - - tagAttrName = Word(alphas, alphanums + "_-:") - if xml: - tagAttrValue = dbl_quoted_string.copy().set_parse_action(remove_quotes) - openTag = ( - suppress_LT - + tagStr("tag") - + Dict(ZeroOrMore(Group(tagAttrName + Suppress("=") + tagAttrValue))) - + Opt("/", default=[False])("empty").set_parse_action( - lambda s, l, t: t[0] == "/" - ) - + suppress_GT - ) - else: - tagAttrValue = quoted_string.copy().set_parse_action(remove_quotes) | Word( - printables, exclude_chars=">" - ) - openTag = ( - suppress_LT - + tagStr("tag") - + Dict( - ZeroOrMore( - Group( - tagAttrName.set_parse_action(lambda t: t[0].lower()) - + Opt(Suppress("=") + tagAttrValue) - ) - ) - ) - + Opt("/", default=[False])("empty").set_parse_action( - lambda s, l, t: t[0] == "/" - ) - + suppress_GT - ) - closeTag = Combine(Literal("", adjacent=False) - - openTag.set_name("<%s>" % resname) - # add start results name in parse action now that ungrouped names are not reported at two levels - openTag.add_parse_action( - lambda t: t.__setitem__( - "start" + "".join(resname.replace(":", " ").title().split()), t.copy() - ) - ) - closeTag = closeTag( - "end" + "".join(resname.replace(":", " ").title().split()) - ).set_name("" % resname) - openTag.tag = resname - closeTag.tag = resname - openTag.tag_body = SkipTo(closeTag()) - return openTag, closeTag - - -def make_html_tags( - tag_str: Union[str, ParserElement] -) -> Tuple[ParserElement, ParserElement]: - """Helper to construct opening and closing tag expressions for HTML, - given a tag name. Matches tags in either upper or lower case, - attributes with namespaces and with quoted or unquoted values. - - Example:: - - text = 'More info at the
pyparsing wiki page' - # make_html_tags returns pyparsing expressions for the opening and - # closing tags as a 2-tuple - a, a_end = make_html_tags("A") - link_expr = a + SkipTo(a_end)("link_text") + a_end - - for link in link_expr.search_string(text): - # attributes in the tag (like "href" shown here) are - # also accessible as named results - print(link.link_text, '->', link.href) - - prints:: - - pyparsing -> https://github.com/pyparsing/pyparsing/wiki - """ - return _makeTags(tag_str, False) - - -def make_xml_tags( - tag_str: Union[str, ParserElement] -) -> Tuple[ParserElement, ParserElement]: - """Helper to construct opening and closing tag expressions for XML, - given a tag name. Matches tags only in the given upper/lower case. - - Example: similar to :class:`make_html_tags` - """ - return _makeTags(tag_str, True) - - -any_open_tag: ParserElement -any_close_tag: ParserElement -any_open_tag, any_close_tag = make_html_tags( - Word(alphas, alphanums + "_:").set_name("any tag") -) - -_htmlEntityMap = {k.rstrip(";"): v for k, v in html.entities.html5.items()} -common_html_entity = Regex("&(?P" + "|".join(_htmlEntityMap) + ");").set_name( - "common HTML entity" -) - - -def replace_html_entity(s, l, t): - """Helper parser action to replace common HTML entities with their special characters""" - return _htmlEntityMap.get(t.entity) - - -class OpAssoc(Enum): - """Enumeration of operator associativity - - used in constructing InfixNotationOperatorSpec for :class:`infix_notation`""" - - LEFT = 1 - RIGHT = 2 - - -InfixNotationOperatorArgType = Union[ - ParserElement, str, Tuple[Union[ParserElement, str], Union[ParserElement, str]] -] -InfixNotationOperatorSpec = Union[ - Tuple[ - InfixNotationOperatorArgType, - int, - OpAssoc, - typing.Optional[ParseAction], - ], - Tuple[ - InfixNotationOperatorArgType, - int, - OpAssoc, - ], -] - - -def infix_notation( - base_expr: ParserElement, - op_list: List[InfixNotationOperatorSpec], - lpar: Union[str, ParserElement] = Suppress("("), - rpar: Union[str, ParserElement] = Suppress(")"), -) -> ParserElement: - """Helper method for constructing grammars of expressions made up of - operators working in a precedence hierarchy. Operators may be unary - or binary, left- or right-associative. Parse actions can also be - attached to operator expressions. The generated parser will also - recognize the use of parentheses to override operator precedences - (see example below). - - Note: if you define a deep operator list, you may see performance - issues when using infix_notation. See - :class:`ParserElement.enable_packrat` for a mechanism to potentially - improve your parser performance. - - Parameters: - - - ``base_expr`` - expression representing the most basic operand to - be used in the expression - - ``op_list`` - list of tuples, one for each operator precedence level - in the expression grammar; each tuple is of the form ``(op_expr, - num_operands, right_left_assoc, (optional)parse_action)``, where: - - - ``op_expr`` is the pyparsing expression for the operator; may also - be a string, which will be converted to a Literal; if ``num_operands`` - is 3, ``op_expr`` is a tuple of two expressions, for the two - operators separating the 3 terms - - ``num_operands`` is the number of terms for this operator (must be 1, - 2, or 3) - - ``right_left_assoc`` is the indicator whether the operator is right - or left associative, using the pyparsing-defined constants - ``OpAssoc.RIGHT`` and ``OpAssoc.LEFT``. - - ``parse_action`` is the parse action to be associated with - expressions matching this operator expression (the parse action - tuple member may be omitted); if the parse action is passed - a tuple or list of functions, this is equivalent to calling - ``set_parse_action(*fn)`` - (:class:`ParserElement.set_parse_action`) - - ``lpar`` - expression for matching left-parentheses; if passed as a - str, then will be parsed as ``Suppress(lpar)``. If lpar is passed as - an expression (such as ``Literal('(')``), then it will be kept in - the parsed results, and grouped with them. (default= ``Suppress('(')``) - - ``rpar`` - expression for matching right-parentheses; if passed as a - str, then will be parsed as ``Suppress(rpar)``. If rpar is passed as - an expression (such as ``Literal(')')``), then it will be kept in - the parsed results, and grouped with them. (default= ``Suppress(')')``) - - Example:: - - # simple example of four-function arithmetic with ints and - # variable names - integer = pyparsing_common.signed_integer - varname = pyparsing_common.identifier - - arith_expr = infix_notation(integer | varname, - [ - ('-', 1, OpAssoc.RIGHT), - (one_of('* /'), 2, OpAssoc.LEFT), - (one_of('+ -'), 2, OpAssoc.LEFT), - ]) - - arith_expr.run_tests(''' - 5+3*6 - (5+3)*6 - -2--11 - ''', full_dump=False) - - prints:: - - 5+3*6 - [[5, '+', [3, '*', 6]]] - - (5+3)*6 - [[[5, '+', 3], '*', 6]] - - (5+x)*y - [[[5, '+', 'x'], '*', 'y']] - - -2--11 - [[['-', 2], '-', ['-', 11]]] - """ - - # captive version of FollowedBy that does not do parse actions or capture results names - class _FB(FollowedBy): - def parseImpl(self, instring, loc, doActions=True): - self.expr.try_parse(instring, loc) - return loc, [] - - _FB.__name__ = "FollowedBy>" - - ret = Forward() - if isinstance(lpar, str): - lpar = Suppress(lpar) - if isinstance(rpar, str): - rpar = Suppress(rpar) - - # if lpar and rpar are not suppressed, wrap in group - if not (isinstance(rpar, Suppress) and isinstance(rpar, Suppress)): - lastExpr = base_expr | Group(lpar + ret + rpar) - else: - lastExpr = base_expr | (lpar + ret + rpar) - - arity: int - rightLeftAssoc: opAssoc - pa: typing.Optional[ParseAction] - opExpr1: ParserElement - opExpr2: ParserElement - for i, operDef in enumerate(op_list): - opExpr, arity, rightLeftAssoc, pa = (operDef + (None,))[:4] # type: ignore[assignment] - if isinstance(opExpr, str_type): - opExpr = ParserElement._literalStringClass(opExpr) - opExpr = typing.cast(ParserElement, opExpr) - if arity == 3: - if not isinstance(opExpr, (tuple, list)) or len(opExpr) != 2: - raise ValueError( - "if numterms=3, opExpr must be a tuple or list of two expressions" - ) - opExpr1, opExpr2 = opExpr - term_name = f"{opExpr1}{opExpr2} term" - else: - term_name = f"{opExpr} term" - - if not 1 <= arity <= 3: - raise ValueError("operator must be unary (1), binary (2), or ternary (3)") - - if rightLeftAssoc not in (OpAssoc.LEFT, OpAssoc.RIGHT): - raise ValueError("operator must indicate right or left associativity") - - thisExpr: ParserElement = Forward().set_name(term_name) - thisExpr = typing.cast(Forward, thisExpr) - if rightLeftAssoc is OpAssoc.LEFT: - if arity == 1: - matchExpr = _FB(lastExpr + opExpr) + Group(lastExpr + opExpr[1, ...]) - elif arity == 2: - if opExpr is not None: - matchExpr = _FB(lastExpr + opExpr + lastExpr) + Group( - lastExpr + (opExpr + lastExpr)[1, ...] - ) - else: - matchExpr = _FB(lastExpr + lastExpr) + Group(lastExpr[2, ...]) - elif arity == 3: - matchExpr = _FB( - lastExpr + opExpr1 + lastExpr + opExpr2 + lastExpr - ) + Group(lastExpr + OneOrMore(opExpr1 + lastExpr + opExpr2 + lastExpr)) - elif rightLeftAssoc is OpAssoc.RIGHT: - if arity == 1: - # try to avoid LR with this extra test - if not isinstance(opExpr, Opt): - opExpr = Opt(opExpr) - matchExpr = _FB(opExpr.expr + thisExpr) + Group(opExpr + thisExpr) - elif arity == 2: - if opExpr is not None: - matchExpr = _FB(lastExpr + opExpr + thisExpr) + Group( - lastExpr + (opExpr + thisExpr)[1, ...] - ) - else: - matchExpr = _FB(lastExpr + thisExpr) + Group( - lastExpr + thisExpr[1, ...] - ) - elif arity == 3: - matchExpr = _FB( - lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr - ) + Group(lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr) - if pa: - if isinstance(pa, (tuple, list)): - matchExpr.set_parse_action(*pa) - else: - matchExpr.set_parse_action(pa) - thisExpr <<= (matchExpr | lastExpr).setName(term_name) - lastExpr = thisExpr - ret <<= lastExpr - return ret - - -def indentedBlock(blockStatementExpr, indentStack, indent=True, backup_stacks=[]): - """ - (DEPRECATED - use :class:`IndentedBlock` class instead) - Helper method for defining space-delimited indentation blocks, - such as those used to define block statements in Python source code. - - Parameters: - - - ``blockStatementExpr`` - expression defining syntax of statement that - is repeated within the indented block - - ``indentStack`` - list created by caller to manage indentation stack - (multiple ``statementWithIndentedBlock`` expressions within a single - grammar should share a common ``indentStack``) - - ``indent`` - boolean indicating whether block must be indented beyond - the current level; set to ``False`` for block of left-most statements - (default= ``True``) - - A valid block must contain at least one ``blockStatement``. - - (Note that indentedBlock uses internal parse actions which make it - incompatible with packrat parsing.) - - Example:: - - data = ''' - def A(z): - A1 - B = 100 - G = A2 - A2 - A3 - B - def BB(a,b,c): - BB1 - def BBA(): - bba1 - bba2 - bba3 - C - D - def spam(x,y): - def eggs(z): - pass - ''' - - - indentStack = [1] - stmt = Forward() - - identifier = Word(alphas, alphanums) - funcDecl = ("def" + identifier + Group("(" + Opt(delimitedList(identifier)) + ")") + ":") - func_body = indentedBlock(stmt, indentStack) - funcDef = Group(funcDecl + func_body) - - rvalue = Forward() - funcCall = Group(identifier + "(" + Opt(delimitedList(rvalue)) + ")") - rvalue << (funcCall | identifier | Word(nums)) - assignment = Group(identifier + "=" + rvalue) - stmt << (funcDef | assignment | identifier) - - module_body = stmt[1, ...] - - parseTree = module_body.parseString(data) - parseTree.pprint() - - prints:: - - [['def', - 'A', - ['(', 'z', ')'], - ':', - [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]], - 'B', - ['def', - 'BB', - ['(', 'a', 'b', 'c', ')'], - ':', - [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]], - 'C', - 'D', - ['def', - 'spam', - ['(', 'x', 'y', ')'], - ':', - [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] - """ - backup_stacks.append(indentStack[:]) - - def reset_stack(): - indentStack[:] = backup_stacks[-1] - - def checkPeerIndent(s, l, t): - if l >= len(s): - return - curCol = col(l, s) - if curCol != indentStack[-1]: - if curCol > indentStack[-1]: - raise ParseException(s, l, "illegal nesting") - raise ParseException(s, l, "not a peer entry") - - def checkSubIndent(s, l, t): - curCol = col(l, s) - if curCol > indentStack[-1]: - indentStack.append(curCol) - else: - raise ParseException(s, l, "not a subentry") - - def checkUnindent(s, l, t): - if l >= len(s): - return - curCol = col(l, s) - if not (indentStack and curCol in indentStack): - raise ParseException(s, l, "not an unindent") - if curCol < indentStack[-1]: - indentStack.pop() - - NL = OneOrMore(LineEnd().set_whitespace_chars("\t ").suppress()) - INDENT = (Empty() + Empty().set_parse_action(checkSubIndent)).set_name("INDENT") - PEER = Empty().set_parse_action(checkPeerIndent).set_name("") - UNDENT = Empty().set_parse_action(checkUnindent).set_name("UNINDENT") - if indent: - smExpr = Group( - Opt(NL) - + INDENT - + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) - + UNDENT - ) - else: - smExpr = Group( - Opt(NL) - + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) - + Opt(UNDENT) - ) - - # add a parse action to remove backup_stack from list of backups - smExpr.add_parse_action( - lambda: backup_stacks.pop(-1) and None if backup_stacks else None - ) - smExpr.set_fail_action(lambda a, b, c, d: reset_stack()) - blockStatementExpr.ignore(_bslash + LineEnd()) - return smExpr.set_name("indented block") - - -# it's easy to get these comment structures wrong - they're very common, so may as well make them available -c_style_comment = Combine(Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/").set_name( - "C style comment" -) -"Comment of the form ``/* ... */``" - -html_comment = Regex(r"").set_name("HTML comment") -"Comment of the form ````" - -rest_of_line = Regex(r".*").leave_whitespace().set_name("rest of line") -dbl_slash_comment = Regex(r"//(?:\\\n|[^\n])*").set_name("// comment") -"Comment of the form ``// ... (to end of line)``" - -cpp_style_comment = Combine( - Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/" | dbl_slash_comment -).set_name("C++ style comment") -"Comment of either form :class:`c_style_comment` or :class:`dbl_slash_comment`" - -java_style_comment = cpp_style_comment -"Same as :class:`cpp_style_comment`" - -python_style_comment = Regex(r"#.*").set_name("Python style comment") -"Comment of the form ``# ... (to end of line)``" - - -# build list of built-in expressions, for future reference if a global default value -# gets updated -_builtin_exprs: List[ParserElement] = [ - v for v in vars().values() if isinstance(v, ParserElement) -] - - -# compatibility function, superseded by DelimitedList class -def delimited_list( - expr: Union[str, ParserElement], - delim: Union[str, ParserElement] = ",", - combine: bool = False, - min: typing.Optional[int] = None, - max: typing.Optional[int] = None, - *, - allow_trailing_delim: bool = False, -) -> ParserElement: - """(DEPRECATED - use :class:`DelimitedList` class)""" - return DelimitedList( - expr, delim, combine, min, max, allow_trailing_delim=allow_trailing_delim - ) - - -# pre-PEP8 compatible names -# fmt: off -opAssoc = OpAssoc -anyOpenTag = any_open_tag -anyCloseTag = any_close_tag -commonHTMLEntity = common_html_entity -cStyleComment = c_style_comment -htmlComment = html_comment -restOfLine = rest_of_line -dblSlashComment = dbl_slash_comment -cppStyleComment = cpp_style_comment -javaStyleComment = java_style_comment -pythonStyleComment = python_style_comment - -@replaced_by_pep8(DelimitedList) -def delimitedList(): ... - -@replaced_by_pep8(DelimitedList) -def delimited_list(): ... - -@replaced_by_pep8(counted_array) -def countedArray(): ... - -@replaced_by_pep8(match_previous_literal) -def matchPreviousLiteral(): ... - -@replaced_by_pep8(match_previous_expr) -def matchPreviousExpr(): ... - -@replaced_by_pep8(one_of) -def oneOf(): ... - -@replaced_by_pep8(dict_of) -def dictOf(): ... - -@replaced_by_pep8(original_text_for) -def originalTextFor(): ... - -@replaced_by_pep8(nested_expr) -def nestedExpr(): ... - -@replaced_by_pep8(make_html_tags) -def makeHTMLTags(): ... - -@replaced_by_pep8(make_xml_tags) -def makeXMLTags(): ... - -@replaced_by_pep8(replace_html_entity) -def replaceHTMLEntity(): ... - -@replaced_by_pep8(infix_notation) -def infixNotation(): ... -# fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py deleted file mode 100644 index 0313049..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py +++ /dev/null @@ -1,796 +0,0 @@ -# results.py -from collections.abc import ( - MutableMapping, - Mapping, - MutableSequence, - Iterator, - Sequence, - Container, -) -import pprint -from typing import Tuple, Any, Dict, Set, List - -str_type: Tuple[type, ...] = (str, bytes) -_generator_type = type((_ for _ in ())) - - -class _ParseResultsWithOffset: - tup: Tuple["ParseResults", int] - __slots__ = ["tup"] - - def __init__(self, p1: "ParseResults", p2: int): - self.tup: Tuple[ParseResults, int] = (p1, p2) - - def __getitem__(self, i): - return self.tup[i] - - def __getstate__(self): - return self.tup - - def __setstate__(self, *args): - self.tup = args[0] - - -class ParseResults: - """Structured parse results, to provide multiple means of access to - the parsed data: - - - as a list (``len(results)``) - - by list index (``results[0], results[1]``, etc.) - - by attribute (``results.`` - see :class:`ParserElement.set_results_name`) - - Example:: - - integer = Word(nums) - date_str = (integer.set_results_name("year") + '/' - + integer.set_results_name("month") + '/' - + integer.set_results_name("day")) - # equivalent form: - # date_str = (integer("year") + '/' - # + integer("month") + '/' - # + integer("day")) - - # parse_string returns a ParseResults object - result = date_str.parse_string("1999/12/31") - - def test(s, fn=repr): - print(f"{s} -> {fn(eval(s))}") - test("list(result)") - test("result[0]") - test("result['month']") - test("result.day") - test("'month' in result") - test("'minutes' in result") - test("result.dump()", str) - - prints:: - - list(result) -> ['1999', '/', '12', '/', '31'] - result[0] -> '1999' - result['month'] -> '12' - result.day -> '31' - 'month' in result -> True - 'minutes' in result -> False - result.dump() -> ['1999', '/', '12', '/', '31'] - - day: '31' - - month: '12' - - year: '1999' - """ - - _null_values: Tuple[Any, ...] = (None, [], ()) - - _name: str - _parent: "ParseResults" - _all_names: Set[str] - _modal: bool - _toklist: List[Any] - _tokdict: Dict[str, Any] - - __slots__ = ( - "_name", - "_parent", - "_all_names", - "_modal", - "_toklist", - "_tokdict", - ) - - class List(list): - """ - Simple wrapper class to distinguish parsed list results that should be preserved - as actual Python lists, instead of being converted to :class:`ParseResults`:: - - LBRACK, RBRACK = map(pp.Suppress, "[]") - element = pp.Forward() - item = ppc.integer - element_list = LBRACK + pp.DelimitedList(element) + RBRACK - - # add parse actions to convert from ParseResults to actual Python collection types - def as_python_list(t): - return pp.ParseResults.List(t.as_list()) - element_list.add_parse_action(as_python_list) - - element <<= item | element_list - - element.run_tests(''' - 100 - [2,3,4] - [[2, 1],3,4] - [(2, 1),3,4] - (2,3,4) - ''', post_parse=lambda s, r: (r[0], type(r[0]))) - - prints:: - - 100 - (100, ) - - [2,3,4] - ([2, 3, 4], ) - - [[2, 1],3,4] - ([[2, 1], 3, 4], ) - - (Used internally by :class:`Group` when `aslist=True`.) - """ - - def __new__(cls, contained=None): - if contained is None: - contained = [] - - if not isinstance(contained, list): - raise TypeError( - f"{cls.__name__} may only be constructed with a list, not {type(contained).__name__}" - ) - - return list.__new__(cls) - - def __new__(cls, toklist=None, name=None, **kwargs): - if isinstance(toklist, ParseResults): - return toklist - self = object.__new__(cls) - self._name = None - self._parent = None - self._all_names = set() - - if toklist is None: - self._toklist = [] - elif isinstance(toklist, (list, _generator_type)): - self._toklist = ( - [toklist[:]] - if isinstance(toklist, ParseResults.List) - else list(toklist) - ) - else: - self._toklist = [toklist] - self._tokdict = dict() - return self - - # Performance tuning: we construct a *lot* of these, so keep this - # constructor as small and fast as possible - def __init__( - self, toklist=None, name=None, asList=True, modal=True, isinstance=isinstance - ): - self._tokdict: Dict[str, _ParseResultsWithOffset] - self._modal = modal - if name is not None and name != "": - if isinstance(name, int): - name = str(name) - if not modal: - self._all_names = {name} - self._name = name - if toklist not in self._null_values: - if isinstance(toklist, (str_type, type)): - toklist = [toklist] - if asList: - if isinstance(toklist, ParseResults): - self[name] = _ParseResultsWithOffset( - ParseResults(toklist._toklist), 0 - ) - else: - self[name] = _ParseResultsWithOffset( - ParseResults(toklist[0]), 0 - ) - self[name]._name = name - else: - try: - self[name] = toklist[0] - except (KeyError, TypeError, IndexError): - if toklist is not self: - self[name] = toklist - else: - self._name = name - - def __getitem__(self, i): - if isinstance(i, (int, slice)): - return self._toklist[i] - else: - if i not in self._all_names: - return self._tokdict[i][-1][0] - else: - return ParseResults([v[0] for v in self._tokdict[i]]) - - def __setitem__(self, k, v, isinstance=isinstance): - if isinstance(v, _ParseResultsWithOffset): - self._tokdict[k] = self._tokdict.get(k, list()) + [v] - sub = v[0] - elif isinstance(k, (int, slice)): - self._toklist[k] = v - sub = v - else: - self._tokdict[k] = self._tokdict.get(k, list()) + [ - _ParseResultsWithOffset(v, 0) - ] - sub = v - if isinstance(sub, ParseResults): - sub._parent = self - - def __delitem__(self, i): - if isinstance(i, (int, slice)): - mylen = len(self._toklist) - del self._toklist[i] - - # convert int to slice - if isinstance(i, int): - if i < 0: - i += mylen - i = slice(i, i + 1) - # get removed indices - removed = list(range(*i.indices(mylen))) - removed.reverse() - # fixup indices in token dictionary - for name, occurrences in self._tokdict.items(): - for j in removed: - for k, (value, position) in enumerate(occurrences): - occurrences[k] = _ParseResultsWithOffset( - value, position - (position > j) - ) - else: - del self._tokdict[i] - - def __contains__(self, k) -> bool: - return k in self._tokdict - - def __len__(self) -> int: - return len(self._toklist) - - def __bool__(self) -> bool: - return not not (self._toklist or self._tokdict) - - def __iter__(self) -> Iterator: - return iter(self._toklist) - - def __reversed__(self) -> Iterator: - return iter(self._toklist[::-1]) - - def keys(self): - return iter(self._tokdict) - - def values(self): - return (self[k] for k in self.keys()) - - def items(self): - return ((k, self[k]) for k in self.keys()) - - def haskeys(self) -> bool: - """ - Since ``keys()`` returns an iterator, this method is helpful in bypassing - code that looks for the existence of any defined results names.""" - return not not self._tokdict - - def pop(self, *args, **kwargs): - """ - Removes and returns item at specified index (default= ``last``). - Supports both ``list`` and ``dict`` semantics for ``pop()``. If - passed no argument or an integer argument, it will use ``list`` - semantics and pop tokens from the list of parsed tokens. If passed - a non-integer argument (most likely a string), it will use ``dict`` - semantics and pop the corresponding value from any defined results - names. A second default return value argument is supported, just as in - ``dict.pop()``. - - Example:: - - numlist = Word(nums)[...] - print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] - - def remove_first(tokens): - tokens.pop(0) - numlist.add_parse_action(remove_first) - print(numlist.parse_string("0 123 321")) # -> ['123', '321'] - - label = Word(alphas) - patt = label("LABEL") + Word(nums)[1, ...] - print(patt.parse_string("AAB 123 321").dump()) - - # Use pop() in a parse action to remove named result (note that corresponding value is not - # removed from list form of results) - def remove_LABEL(tokens): - tokens.pop("LABEL") - return tokens - patt.add_parse_action(remove_LABEL) - print(patt.parse_string("AAB 123 321").dump()) - - prints:: - - ['AAB', '123', '321'] - - LABEL: 'AAB' - - ['AAB', '123', '321'] - """ - if not args: - args = [-1] - for k, v in kwargs.items(): - if k == "default": - args = (args[0], v) - else: - raise TypeError(f"pop() got an unexpected keyword argument {k!r}") - if isinstance(args[0], int) or len(args) == 1 or args[0] in self: - index = args[0] - ret = self[index] - del self[index] - return ret - else: - defaultvalue = args[1] - return defaultvalue - - def get(self, key, default_value=None): - """ - Returns named result matching the given key, or if there is no - such name, then returns the given ``default_value`` or ``None`` if no - ``default_value`` is specified. - - Similar to ``dict.get()``. - - Example:: - - integer = Word(nums) - date_str = integer("year") + '/' + integer("month") + '/' + integer("day") - - result = date_str.parse_string("1999/12/31") - print(result.get("year")) # -> '1999' - print(result.get("hour", "not specified")) # -> 'not specified' - print(result.get("hour")) # -> None - """ - if key in self: - return self[key] - else: - return default_value - - def insert(self, index, ins_string): - """ - Inserts new element at location index in the list of parsed tokens. - - Similar to ``list.insert()``. - - Example:: - - numlist = Word(nums)[...] - print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] - - # use a parse action to insert the parse location in the front of the parsed results - def insert_locn(locn, tokens): - tokens.insert(0, locn) - numlist.add_parse_action(insert_locn) - print(numlist.parse_string("0 123 321")) # -> [0, '0', '123', '321'] - """ - self._toklist.insert(index, ins_string) - # fixup indices in token dictionary - for name, occurrences in self._tokdict.items(): - for k, (value, position) in enumerate(occurrences): - occurrences[k] = _ParseResultsWithOffset( - value, position + (position > index) - ) - - def append(self, item): - """ - Add single element to end of ``ParseResults`` list of elements. - - Example:: - - numlist = Word(nums)[...] - print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] - - # use a parse action to compute the sum of the parsed integers, and add it to the end - def append_sum(tokens): - tokens.append(sum(map(int, tokens))) - numlist.add_parse_action(append_sum) - print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321', 444] - """ - self._toklist.append(item) - - def extend(self, itemseq): - """ - Add sequence of elements to end of ``ParseResults`` list of elements. - - Example:: - - patt = Word(alphas)[1, ...] - - # use a parse action to append the reverse of the matched strings, to make a palindrome - def make_palindrome(tokens): - tokens.extend(reversed([t[::-1] for t in tokens])) - return ''.join(tokens) - patt.add_parse_action(make_palindrome) - print(patt.parse_string("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl' - """ - if isinstance(itemseq, ParseResults): - self.__iadd__(itemseq) - else: - self._toklist.extend(itemseq) - - def clear(self): - """ - Clear all elements and results names. - """ - del self._toklist[:] - self._tokdict.clear() - - def __getattr__(self, name): - try: - return self[name] - except KeyError: - if name.startswith("__"): - raise AttributeError(name) - return "" - - def __add__(self, other: "ParseResults") -> "ParseResults": - ret = self.copy() - ret += other - return ret - - def __iadd__(self, other: "ParseResults") -> "ParseResults": - if not other: - return self - - if other._tokdict: - offset = len(self._toklist) - addoffset = lambda a: offset if a < 0 else a + offset - otheritems = other._tokdict.items() - otherdictitems = [ - (k, _ParseResultsWithOffset(v[0], addoffset(v[1]))) - for k, vlist in otheritems - for v in vlist - ] - for k, v in otherdictitems: - self[k] = v - if isinstance(v[0], ParseResults): - v[0]._parent = self - - self._toklist += other._toklist - self._all_names |= other._all_names - return self - - def __radd__(self, other) -> "ParseResults": - if isinstance(other, int) and other == 0: - # useful for merging many ParseResults using sum() builtin - return self.copy() - else: - # this may raise a TypeError - so be it - return other + self - - def __repr__(self) -> str: - return f"{type(self).__name__}({self._toklist!r}, {self.as_dict()})" - - def __str__(self) -> str: - return ( - "[" - + ", ".join( - [ - str(i) if isinstance(i, ParseResults) else repr(i) - for i in self._toklist - ] - ) - + "]" - ) - - def _asStringList(self, sep=""): - out = [] - for item in self._toklist: - if out and sep: - out.append(sep) - if isinstance(item, ParseResults): - out += item._asStringList() - else: - out.append(str(item)) - return out - - def as_list(self) -> list: - """ - Returns the parse results as a nested list of matching tokens, all converted to strings. - - Example:: - - patt = Word(alphas)[1, ...] - result = patt.parse_string("sldkj lsdkj sldkj") - # even though the result prints in string-like form, it is actually a pyparsing ParseResults - print(type(result), result) # -> ['sldkj', 'lsdkj', 'sldkj'] - - # Use as_list() to create an actual list - result_list = result.as_list() - print(type(result_list), result_list) # -> ['sldkj', 'lsdkj', 'sldkj'] - """ - return [ - res.as_list() if isinstance(res, ParseResults) else res - for res in self._toklist - ] - - def as_dict(self) -> dict: - """ - Returns the named parse results as a nested dictionary. - - Example:: - - integer = Word(nums) - date_str = integer("year") + '/' + integer("month") + '/' + integer("day") - - result = date_str.parse_string('12/31/1999') - print(type(result), repr(result)) # -> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]}) - - result_dict = result.as_dict() - print(type(result_dict), repr(result_dict)) # -> {'day': '1999', 'year': '12', 'month': '31'} - - # even though a ParseResults supports dict-like access, sometime you just need to have a dict - import json - print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable - print(json.dumps(result.as_dict())) # -> {"month": "31", "day": "1999", "year": "12"} - """ - - def to_item(obj): - if isinstance(obj, ParseResults): - return obj.as_dict() if obj.haskeys() else [to_item(v) for v in obj] - else: - return obj - - return dict((k, to_item(v)) for k, v in self.items()) - - def copy(self) -> "ParseResults": - """ - Returns a new shallow copy of a :class:`ParseResults` object. `ParseResults` - items contained within the source are shared with the copy. Use - :class:`ParseResults.deepcopy()` to create a copy with its own separate - content values. - """ - ret = ParseResults(self._toklist) - ret._tokdict = self._tokdict.copy() - ret._parent = self._parent - ret._all_names |= self._all_names - ret._name = self._name - return ret - - def deepcopy(self) -> "ParseResults": - """ - Returns a new deep copy of a :class:`ParseResults` object. - """ - ret = self.copy() - # replace values with copies if they are of known mutable types - for i, obj in enumerate(self._toklist): - if isinstance(obj, ParseResults): - self._toklist[i] = obj.deepcopy() - elif isinstance(obj, (str, bytes)): - pass - elif isinstance(obj, MutableMapping): - self._toklist[i] = dest = type(obj)() - for k, v in obj.items(): - dest[k] = v.deepcopy() if isinstance(v, ParseResults) else v - elif isinstance(obj, Container): - self._toklist[i] = type(obj)( - v.deepcopy() if isinstance(v, ParseResults) else v for v in obj - ) - return ret - - def get_name(self): - r""" - Returns the results name for this token expression. Useful when several - different expressions might match at a particular location. - - Example:: - - integer = Word(nums) - ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d") - house_number_expr = Suppress('#') + Word(nums, alphanums) - user_data = (Group(house_number_expr)("house_number") - | Group(ssn_expr)("ssn") - | Group(integer)("age")) - user_info = user_data[1, ...] - - result = user_info.parse_string("22 111-22-3333 #221B") - for item in result: - print(item.get_name(), ':', item[0]) - - prints:: - - age : 22 - ssn : 111-22-3333 - house_number : 221B - """ - if self._name: - return self._name - elif self._parent: - par: "ParseResults" = self._parent - parent_tokdict_items = par._tokdict.items() - return next( - ( - k - for k, vlist in parent_tokdict_items - for v, loc in vlist - if v is self - ), - None, - ) - elif ( - len(self) == 1 - and len(self._tokdict) == 1 - and next(iter(self._tokdict.values()))[0][1] in (0, -1) - ): - return next(iter(self._tokdict.keys())) - else: - return None - - def dump(self, indent="", full=True, include_list=True, _depth=0) -> str: - """ - Diagnostic method for listing out the contents of - a :class:`ParseResults`. Accepts an optional ``indent`` argument so - that this string can be embedded in a nested display of other data. - - Example:: - - integer = Word(nums) - date_str = integer("year") + '/' + integer("month") + '/' + integer("day") - - result = date_str.parse_string('1999/12/31') - print(result.dump()) - - prints:: - - ['1999', '/', '12', '/', '31'] - - day: '31' - - month: '12' - - year: '1999' - """ - out = [] - NL = "\n" - out.append(indent + str(self.as_list()) if include_list else "") - - if full: - if self.haskeys(): - items = sorted((str(k), v) for k, v in self.items()) - for k, v in items: - if out: - out.append(NL) - out.append(f"{indent}{(' ' * _depth)}- {k}: ") - if isinstance(v, ParseResults): - if v: - out.append( - v.dump( - indent=indent, - full=full, - include_list=include_list, - _depth=_depth + 1, - ) - ) - else: - out.append(str(v)) - else: - out.append(repr(v)) - if any(isinstance(vv, ParseResults) for vv in self): - v = self - for i, vv in enumerate(v): - if isinstance(vv, ParseResults): - out.append( - "\n{}{}[{}]:\n{}{}{}".format( - indent, - (" " * (_depth)), - i, - indent, - (" " * (_depth + 1)), - vv.dump( - indent=indent, - full=full, - include_list=include_list, - _depth=_depth + 1, - ), - ) - ) - else: - out.append( - "\n%s%s[%d]:\n%s%s%s" - % ( - indent, - (" " * (_depth)), - i, - indent, - (" " * (_depth + 1)), - str(vv), - ) - ) - - return "".join(out) - - def pprint(self, *args, **kwargs): - """ - Pretty-printer for parsed results as a list, using the - `pprint `_ module. - Accepts additional positional or keyword args as defined for - `pprint.pprint `_ . - - Example:: - - ident = Word(alphas, alphanums) - num = Word(nums) - func = Forward() - term = ident | num | Group('(' + func + ')') - func <<= ident + Group(Optional(DelimitedList(term))) - result = func.parse_string("fna a,b,(fnb c,d,200),100") - result.pprint(width=40) - - prints:: - - ['fna', - ['a', - 'b', - ['(', 'fnb', ['c', 'd', '200'], ')'], - '100']] - """ - pprint.pprint(self.as_list(), *args, **kwargs) - - # add support for pickle protocol - def __getstate__(self): - return ( - self._toklist, - ( - self._tokdict.copy(), - None, - self._all_names, - self._name, - ), - ) - - def __setstate__(self, state): - self._toklist, (self._tokdict, par, inAccumNames, self._name) = state - self._all_names = set(inAccumNames) - self._parent = None - - def __getnewargs__(self): - return self._toklist, self._name - - def __dir__(self): - return dir(type(self)) + list(self.keys()) - - @classmethod - def from_dict(cls, other, name=None) -> "ParseResults": - """ - Helper classmethod to construct a ``ParseResults`` from a ``dict``, preserving the - name-value relations as results names. If an optional ``name`` argument is - given, a nested ``ParseResults`` will be returned. - """ - - def is_iterable(obj): - try: - iter(obj) - except Exception: - return False - # str's are iterable, but in pyparsing, we don't want to iterate over them - else: - return not isinstance(obj, str_type) - - ret = cls([]) - for k, v in other.items(): - if isinstance(v, Mapping): - ret += cls.from_dict(v, name=k) - else: - ret += cls([v], name=k, asList=is_iterable(v)) - if name is not None: - ret = cls([ret], name=name) - return ret - - asList = as_list - """Deprecated - use :class:`as_list`""" - asDict = as_dict - """Deprecated - use :class:`as_dict`""" - getName = get_name - """Deprecated - use :class:`get_name`""" - - -MutableMapping.register(ParseResults) -MutableSequence.register(ParseResults) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py deleted file mode 100644 index 6a254c1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py +++ /dev/null @@ -1,331 +0,0 @@ -# testing.py - -from contextlib import contextmanager -import typing - -from .core import ( - ParserElement, - ParseException, - Keyword, - __diag__, - __compat__, -) - - -class pyparsing_test: - """ - namespace class for classes useful in writing unit tests - """ - - class reset_pyparsing_context: - """ - Context manager to be used when writing unit tests that modify pyparsing config values: - - packrat parsing - - bounded recursion parsing - - default whitespace characters. - - default keyword characters - - literal string auto-conversion class - - __diag__ settings - - Example:: - - with reset_pyparsing_context(): - # test that literals used to construct a grammar are automatically suppressed - ParserElement.inlineLiteralsUsing(Suppress) - - term = Word(alphas) | Word(nums) - group = Group('(' + term[...] + ')') - - # assert that the '()' characters are not included in the parsed tokens - self.assertParseAndCheckList(group, "(abc 123 def)", ['abc', '123', 'def']) - - # after exiting context manager, literals are converted to Literal expressions again - """ - - def __init__(self): - self._save_context = {} - - def save(self): - self._save_context["default_whitespace"] = ParserElement.DEFAULT_WHITE_CHARS - self._save_context["default_keyword_chars"] = Keyword.DEFAULT_KEYWORD_CHARS - - self._save_context[ - "literal_string_class" - ] = ParserElement._literalStringClass - - self._save_context["verbose_stacktrace"] = ParserElement.verbose_stacktrace - - self._save_context["packrat_enabled"] = ParserElement._packratEnabled - if ParserElement._packratEnabled: - self._save_context[ - "packrat_cache_size" - ] = ParserElement.packrat_cache.size - else: - self._save_context["packrat_cache_size"] = None - self._save_context["packrat_parse"] = ParserElement._parse - self._save_context[ - "recursion_enabled" - ] = ParserElement._left_recursion_enabled - - self._save_context["__diag__"] = { - name: getattr(__diag__, name) for name in __diag__._all_names - } - - self._save_context["__compat__"] = { - "collect_all_And_tokens": __compat__.collect_all_And_tokens - } - - return self - - def restore(self): - # reset pyparsing global state - if ( - ParserElement.DEFAULT_WHITE_CHARS - != self._save_context["default_whitespace"] - ): - ParserElement.set_default_whitespace_chars( - self._save_context["default_whitespace"] - ) - - ParserElement.verbose_stacktrace = self._save_context["verbose_stacktrace"] - - Keyword.DEFAULT_KEYWORD_CHARS = self._save_context["default_keyword_chars"] - ParserElement.inlineLiteralsUsing( - self._save_context["literal_string_class"] - ) - - for name, value in self._save_context["__diag__"].items(): - (__diag__.enable if value else __diag__.disable)(name) - - ParserElement._packratEnabled = False - if self._save_context["packrat_enabled"]: - ParserElement.enable_packrat(self._save_context["packrat_cache_size"]) - else: - ParserElement._parse = self._save_context["packrat_parse"] - ParserElement._left_recursion_enabled = self._save_context[ - "recursion_enabled" - ] - - __compat__.collect_all_And_tokens = self._save_context["__compat__"] - - return self - - def copy(self): - ret = type(self)() - ret._save_context.update(self._save_context) - return ret - - def __enter__(self): - return self.save() - - def __exit__(self, *args): - self.restore() - - class TestParseResultsAsserts: - """ - A mixin class to add parse results assertion methods to normal unittest.TestCase classes. - """ - - def assertParseResultsEquals( - self, result, expected_list=None, expected_dict=None, msg=None - ): - """ - Unit test assertion to compare a :class:`ParseResults` object with an optional ``expected_list``, - and compare any defined results names with an optional ``expected_dict``. - """ - if expected_list is not None: - self.assertEqual(expected_list, result.as_list(), msg=msg) - if expected_dict is not None: - self.assertEqual(expected_dict, result.as_dict(), msg=msg) - - def assertParseAndCheckList( - self, expr, test_string, expected_list, msg=None, verbose=True - ): - """ - Convenience wrapper assert to test a parser element and input string, and assert that - the resulting ``ParseResults.asList()`` is equal to the ``expected_list``. - """ - result = expr.parse_string(test_string, parse_all=True) - if verbose: - print(result.dump()) - else: - print(result.as_list()) - self.assertParseResultsEquals(result, expected_list=expected_list, msg=msg) - - def assertParseAndCheckDict( - self, expr, test_string, expected_dict, msg=None, verbose=True - ): - """ - Convenience wrapper assert to test a parser element and input string, and assert that - the resulting ``ParseResults.asDict()`` is equal to the ``expected_dict``. - """ - result = expr.parse_string(test_string, parseAll=True) - if verbose: - print(result.dump()) - else: - print(result.as_list()) - self.assertParseResultsEquals(result, expected_dict=expected_dict, msg=msg) - - def assertRunTestResults( - self, run_tests_report, expected_parse_results=None, msg=None - ): - """ - Unit test assertion to evaluate output of ``ParserElement.runTests()``. If a list of - list-dict tuples is given as the ``expected_parse_results`` argument, then these are zipped - with the report tuples returned by ``runTests`` and evaluated using ``assertParseResultsEquals``. - Finally, asserts that the overall ``runTests()`` success value is ``True``. - - :param run_tests_report: tuple(bool, [tuple(str, ParseResults or Exception)]) returned from runTests - :param expected_parse_results (optional): [tuple(str, list, dict, Exception)] - """ - run_test_success, run_test_results = run_tests_report - - if expected_parse_results is not None: - merged = [ - (*rpt, expected) - for rpt, expected in zip(run_test_results, expected_parse_results) - ] - for test_string, result, expected in merged: - # expected should be a tuple containing a list and/or a dict or an exception, - # and optional failure message string - # an empty tuple will skip any result validation - fail_msg = next( - (exp for exp in expected if isinstance(exp, str)), None - ) - expected_exception = next( - ( - exp - for exp in expected - if isinstance(exp, type) and issubclass(exp, Exception) - ), - None, - ) - if expected_exception is not None: - with self.assertRaises( - expected_exception=expected_exception, msg=fail_msg or msg - ): - if isinstance(result, Exception): - raise result - else: - expected_list = next( - (exp for exp in expected if isinstance(exp, list)), None - ) - expected_dict = next( - (exp for exp in expected if isinstance(exp, dict)), None - ) - if (expected_list, expected_dict) != (None, None): - self.assertParseResultsEquals( - result, - expected_list=expected_list, - expected_dict=expected_dict, - msg=fail_msg or msg, - ) - else: - # warning here maybe? - print(f"no validation for {test_string!r}") - - # do this last, in case some specific test results can be reported instead - self.assertTrue( - run_test_success, msg=msg if msg is not None else "failed runTests" - ) - - @contextmanager - def assertRaisesParseException(self, exc_type=ParseException, msg=None): - with self.assertRaises(exc_type, msg=msg): - yield - - @staticmethod - def with_line_numbers( - s: str, - start_line: typing.Optional[int] = None, - end_line: typing.Optional[int] = None, - expand_tabs: bool = True, - eol_mark: str = "|", - mark_spaces: typing.Optional[str] = None, - mark_control: typing.Optional[str] = None, - ) -> str: - """ - Helpful method for debugging a parser - prints a string with line and column numbers. - (Line and column numbers are 1-based.) - - :param s: tuple(bool, str - string to be printed with line and column numbers - :param start_line: int - (optional) starting line number in s to print (default=1) - :param end_line: int - (optional) ending line number in s to print (default=len(s)) - :param expand_tabs: bool - (optional) expand tabs to spaces, to match the pyparsing default - :param eol_mark: str - (optional) string to mark the end of lines, helps visualize trailing spaces (default="|") - :param mark_spaces: str - (optional) special character to display in place of spaces - :param mark_control: str - (optional) convert non-printing control characters to a placeholding - character; valid values: - - "unicode" - replaces control chars with Unicode symbols, such as "␍" and "␊" - - any single character string - replace control characters with given string - - None (default) - string is displayed as-is - - :return: str - input string with leading line numbers and column number headers - """ - if expand_tabs: - s = s.expandtabs() - if mark_control is not None: - mark_control = typing.cast(str, mark_control) - if mark_control == "unicode": - transtable_map = { - c: u for c, u in zip(range(0, 33), range(0x2400, 0x2433)) - } - transtable_map[127] = 0x2421 - tbl = str.maketrans(transtable_map) - eol_mark = "" - else: - ord_mark_control = ord(mark_control) - tbl = str.maketrans( - {c: ord_mark_control for c in list(range(0, 32)) + [127]} - ) - s = s.translate(tbl) - if mark_spaces is not None and mark_spaces != " ": - if mark_spaces == "unicode": - tbl = str.maketrans({9: 0x2409, 32: 0x2423}) - s = s.translate(tbl) - else: - s = s.replace(" ", mark_spaces) - if start_line is None: - start_line = 1 - if end_line is None: - end_line = len(s) - end_line = min(end_line, len(s)) - start_line = min(max(1, start_line), end_line) - - if mark_control != "unicode": - s_lines = s.splitlines()[start_line - 1 : end_line] - else: - s_lines = [line + "␊" for line in s.split("␊")[start_line - 1 : end_line]] - if not s_lines: - return "" - - lineno_width = len(str(end_line)) - max_line_len = max(len(line) for line in s_lines) - lead = " " * (lineno_width + 1) - if max_line_len >= 99: - header0 = ( - lead - + "".join( - f"{' ' * 99}{(i + 1) % 100}" - for i in range(max(max_line_len // 100, 1)) - ) - + "\n" - ) - else: - header0 = "" - header1 = ( - header0 - + lead - + "".join(f" {(i + 1) % 10}" for i in range(-(-max_line_len // 10))) - + "\n" - ) - header2 = lead + "1234567890" * (-(-max_line_len // 10)) + "\n" - return ( - header1 - + header2 - + "\n".join( - f"{i:{lineno_width}d}:{line}{eol_mark}" - for i, line in enumerate(s_lines, start=start_line) - ) - + "\n" - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py deleted file mode 100644 index ec0b3a4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py +++ /dev/null @@ -1,361 +0,0 @@ -# unicode.py - -import sys -from itertools import filterfalse -from typing import List, Tuple, Union - - -class _lazyclassproperty: - def __init__(self, fn): - self.fn = fn - self.__doc__ = fn.__doc__ - self.__name__ = fn.__name__ - - def __get__(self, obj, cls): - if cls is None: - cls = type(obj) - if not hasattr(cls, "_intern") or any( - cls._intern is getattr(superclass, "_intern", []) - for superclass in cls.__mro__[1:] - ): - cls._intern = {} - attrname = self.fn.__name__ - if attrname not in cls._intern: - cls._intern[attrname] = self.fn(cls) - return cls._intern[attrname] - - -UnicodeRangeList = List[Union[Tuple[int, int], Tuple[int]]] - - -class unicode_set: - """ - A set of Unicode characters, for language-specific strings for - ``alphas``, ``nums``, ``alphanums``, and ``printables``. - A unicode_set is defined by a list of ranges in the Unicode character - set, in a class attribute ``_ranges``. Ranges can be specified using - 2-tuples or a 1-tuple, such as:: - - _ranges = [ - (0x0020, 0x007e), - (0x00a0, 0x00ff), - (0x0100,), - ] - - Ranges are left- and right-inclusive. A 1-tuple of (x,) is treated as (x, x). - - A unicode set can also be defined using multiple inheritance of other unicode sets:: - - class CJK(Chinese, Japanese, Korean): - pass - """ - - _ranges: UnicodeRangeList = [] - - @_lazyclassproperty - def _chars_for_ranges(cls): - ret = [] - for cc in cls.__mro__: - if cc is unicode_set: - break - for rr in getattr(cc, "_ranges", ()): - ret.extend(range(rr[0], rr[-1] + 1)) - return [chr(c) for c in sorted(set(ret))] - - @_lazyclassproperty - def printables(cls): - """all non-whitespace characters in this range""" - return "".join(filterfalse(str.isspace, cls._chars_for_ranges)) - - @_lazyclassproperty - def alphas(cls): - """all alphabetic characters in this range""" - return "".join(filter(str.isalpha, cls._chars_for_ranges)) - - @_lazyclassproperty - def nums(cls): - """all numeric digit characters in this range""" - return "".join(filter(str.isdigit, cls._chars_for_ranges)) - - @_lazyclassproperty - def alphanums(cls): - """all alphanumeric characters in this range""" - return cls.alphas + cls.nums - - @_lazyclassproperty - def identchars(cls): - """all characters in this range that are valid identifier characters, plus underscore '_'""" - return "".join( - sorted( - set( - "".join(filter(str.isidentifier, cls._chars_for_ranges)) - + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzªµº" - + "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ" - + "_" - ) - ) - ) - - @_lazyclassproperty - def identbodychars(cls): - """ - all characters in this range that are valid identifier body characters, - plus the digits 0-9, and · (Unicode MIDDLE DOT) - """ - return "".join( - sorted( - set( - cls.identchars - + "0123456789·" - + "".join( - [c for c in cls._chars_for_ranges if ("_" + c).isidentifier()] - ) - ) - ) - ) - - @_lazyclassproperty - def identifier(cls): - """ - a pyparsing Word expression for an identifier using this range's definitions for - identchars and identbodychars - """ - from pip._vendor.pyparsing import Word - - return Word(cls.identchars, cls.identbodychars) - - -class pyparsing_unicode(unicode_set): - """ - A namespace class for defining common language unicode_sets. - """ - - # fmt: off - - # define ranges in language character sets - _ranges: UnicodeRangeList = [ - (0x0020, sys.maxunicode), - ] - - class BasicMultilingualPlane(unicode_set): - """Unicode set for the Basic Multilingual Plane""" - _ranges: UnicodeRangeList = [ - (0x0020, 0xFFFF), - ] - - class Latin1(unicode_set): - """Unicode set for Latin-1 Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0020, 0x007E), - (0x00A0, 0x00FF), - ] - - class LatinA(unicode_set): - """Unicode set for Latin-A Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0100, 0x017F), - ] - - class LatinB(unicode_set): - """Unicode set for Latin-B Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0180, 0x024F), - ] - - class Greek(unicode_set): - """Unicode set for Greek Unicode Character Ranges""" - _ranges: UnicodeRangeList = [ - (0x0342, 0x0345), - (0x0370, 0x0377), - (0x037A, 0x037F), - (0x0384, 0x038A), - (0x038C,), - (0x038E, 0x03A1), - (0x03A3, 0x03E1), - (0x03F0, 0x03FF), - (0x1D26, 0x1D2A), - (0x1D5E,), - (0x1D60,), - (0x1D66, 0x1D6A), - (0x1F00, 0x1F15), - (0x1F18, 0x1F1D), - (0x1F20, 0x1F45), - (0x1F48, 0x1F4D), - (0x1F50, 0x1F57), - (0x1F59,), - (0x1F5B,), - (0x1F5D,), - (0x1F5F, 0x1F7D), - (0x1F80, 0x1FB4), - (0x1FB6, 0x1FC4), - (0x1FC6, 0x1FD3), - (0x1FD6, 0x1FDB), - (0x1FDD, 0x1FEF), - (0x1FF2, 0x1FF4), - (0x1FF6, 0x1FFE), - (0x2129,), - (0x2719, 0x271A), - (0xAB65,), - (0x10140, 0x1018D), - (0x101A0,), - (0x1D200, 0x1D245), - (0x1F7A1, 0x1F7A7), - ] - - class Cyrillic(unicode_set): - """Unicode set for Cyrillic Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0400, 0x052F), - (0x1C80, 0x1C88), - (0x1D2B,), - (0x1D78,), - (0x2DE0, 0x2DFF), - (0xA640, 0xA672), - (0xA674, 0xA69F), - (0xFE2E, 0xFE2F), - ] - - class Chinese(unicode_set): - """Unicode set for Chinese Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x2E80, 0x2E99), - (0x2E9B, 0x2EF3), - (0x31C0, 0x31E3), - (0x3400, 0x4DB5), - (0x4E00, 0x9FEF), - (0xA700, 0xA707), - (0xF900, 0xFA6D), - (0xFA70, 0xFAD9), - (0x16FE2, 0x16FE3), - (0x1F210, 0x1F212), - (0x1F214, 0x1F23B), - (0x1F240, 0x1F248), - (0x20000, 0x2A6D6), - (0x2A700, 0x2B734), - (0x2B740, 0x2B81D), - (0x2B820, 0x2CEA1), - (0x2CEB0, 0x2EBE0), - (0x2F800, 0x2FA1D), - ] - - class Japanese(unicode_set): - """Unicode set for Japanese Unicode Character Range, combining Kanji, Hiragana, and Katakana ranges""" - - class Kanji(unicode_set): - "Unicode set for Kanji Unicode Character Range" - _ranges: UnicodeRangeList = [ - (0x4E00, 0x9FBF), - (0x3000, 0x303F), - ] - - class Hiragana(unicode_set): - """Unicode set for Hiragana Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x3041, 0x3096), - (0x3099, 0x30A0), - (0x30FC,), - (0xFF70,), - (0x1B001,), - (0x1B150, 0x1B152), - (0x1F200,), - ] - - class Katakana(unicode_set): - """Unicode set for Katakana Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x3099, 0x309C), - (0x30A0, 0x30FF), - (0x31F0, 0x31FF), - (0x32D0, 0x32FE), - (0xFF65, 0xFF9F), - (0x1B000,), - (0x1B164, 0x1B167), - (0x1F201, 0x1F202), - (0x1F213,), - ] - - 漢字 = Kanji - カタカナ = Katakana - ひらがな = Hiragana - - _ranges = ( - Kanji._ranges - + Hiragana._ranges - + Katakana._ranges - ) - - class Hangul(unicode_set): - """Unicode set for Hangul (Korean) Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x1100, 0x11FF), - (0x302E, 0x302F), - (0x3131, 0x318E), - (0x3200, 0x321C), - (0x3260, 0x327B), - (0x327E,), - (0xA960, 0xA97C), - (0xAC00, 0xD7A3), - (0xD7B0, 0xD7C6), - (0xD7CB, 0xD7FB), - (0xFFA0, 0xFFBE), - (0xFFC2, 0xFFC7), - (0xFFCA, 0xFFCF), - (0xFFD2, 0xFFD7), - (0xFFDA, 0xFFDC), - ] - - Korean = Hangul - - class CJK(Chinese, Japanese, Hangul): - """Unicode set for combined Chinese, Japanese, and Korean (CJK) Unicode Character Range""" - - class Thai(unicode_set): - """Unicode set for Thai Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0E01, 0x0E3A), - (0x0E3F, 0x0E5B) - ] - - class Arabic(unicode_set): - """Unicode set for Arabic Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0600, 0x061B), - (0x061E, 0x06FF), - (0x0700, 0x077F), - ] - - class Hebrew(unicode_set): - """Unicode set for Hebrew Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0591, 0x05C7), - (0x05D0, 0x05EA), - (0x05EF, 0x05F4), - (0xFB1D, 0xFB36), - (0xFB38, 0xFB3C), - (0xFB3E,), - (0xFB40, 0xFB41), - (0xFB43, 0xFB44), - (0xFB46, 0xFB4F), - ] - - class Devanagari(unicode_set): - """Unicode set for Devanagari Unicode Character Range""" - _ranges: UnicodeRangeList = [ - (0x0900, 0x097F), - (0xA8E0, 0xA8FF) - ] - - BMP = BasicMultilingualPlane - - # add language identifiers using language Unicode - العربية = Arabic - 中文 = Chinese - кириллица = Cyrillic - Ελληνικά = Greek - עִברִית = Hebrew - 日本語 = Japanese - 한국어 = Korean - ไทย = Thai - देवनागरी = Devanagari - - # fmt: on diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py deleted file mode 100644 index d8d3f41..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py +++ /dev/null @@ -1,284 +0,0 @@ -# util.py -import inspect -import warnings -import types -import collections -import itertools -from functools import lru_cache, wraps -from typing import Callable, List, Union, Iterable, TypeVar, cast - -_bslash = chr(92) -C = TypeVar("C", bound=Callable) - - -class __config_flags: - """Internal class for defining compatibility and debugging flags""" - - _all_names: List[str] = [] - _fixed_names: List[str] = [] - _type_desc = "configuration" - - @classmethod - def _set(cls, dname, value): - if dname in cls._fixed_names: - warnings.warn( - f"{cls.__name__}.{dname} {cls._type_desc} is {str(getattr(cls, dname)).upper()}" - f" and cannot be overridden", - stacklevel=3, - ) - return - if dname in cls._all_names: - setattr(cls, dname, value) - else: - raise ValueError(f"no such {cls._type_desc} {dname!r}") - - enable = classmethod(lambda cls, name: cls._set(name, True)) - disable = classmethod(lambda cls, name: cls._set(name, False)) - - -@lru_cache(maxsize=128) -def col(loc: int, strg: str) -> int: - """ - Returns current column within a string, counting newlines as line separators. - The first column is number 1. - - Note: the default parsing behavior is to expand tabs in the input string - before starting the parsing process. See - :class:`ParserElement.parse_string` for more - information on parsing strings containing ```` s, and suggested - methods to maintain a consistent view of the parsed string, the parse - location, and line and column positions within the parsed string. - """ - s = strg - return 1 if 0 < loc < len(s) and s[loc - 1] == "\n" else loc - s.rfind("\n", 0, loc) - - -@lru_cache(maxsize=128) -def lineno(loc: int, strg: str) -> int: - """Returns current line number within a string, counting newlines as line separators. - The first line is number 1. - - Note - the default parsing behavior is to expand tabs in the input string - before starting the parsing process. See :class:`ParserElement.parse_string` - for more information on parsing strings containing ```` s, and - suggested methods to maintain a consistent view of the parsed string, the - parse location, and line and column positions within the parsed string. - """ - return strg.count("\n", 0, loc) + 1 - - -@lru_cache(maxsize=128) -def line(loc: int, strg: str) -> str: - """ - Returns the line of text containing loc within a string, counting newlines as line separators. - """ - last_cr = strg.rfind("\n", 0, loc) - next_cr = strg.find("\n", loc) - return strg[last_cr + 1 : next_cr] if next_cr >= 0 else strg[last_cr + 1 :] - - -class _UnboundedCache: - def __init__(self): - cache = {} - cache_get = cache.get - self.not_in_cache = not_in_cache = object() - - def get(_, key): - return cache_get(key, not_in_cache) - - def set_(_, key, value): - cache[key] = value - - def clear(_): - cache.clear() - - self.size = None - self.get = types.MethodType(get, self) - self.set = types.MethodType(set_, self) - self.clear = types.MethodType(clear, self) - - -class _FifoCache: - def __init__(self, size): - self.not_in_cache = not_in_cache = object() - cache = {} - keyring = [object()] * size - cache_get = cache.get - cache_pop = cache.pop - keyiter = itertools.cycle(range(size)) - - def get(_, key): - return cache_get(key, not_in_cache) - - def set_(_, key, value): - cache[key] = value - i = next(keyiter) - cache_pop(keyring[i], None) - keyring[i] = key - - def clear(_): - cache.clear() - keyring[:] = [object()] * size - - self.size = size - self.get = types.MethodType(get, self) - self.set = types.MethodType(set_, self) - self.clear = types.MethodType(clear, self) - - -class LRUMemo: - """ - A memoizing mapping that retains `capacity` deleted items - - The memo tracks retained items by their access order; once `capacity` items - are retained, the least recently used item is discarded. - """ - - def __init__(self, capacity): - self._capacity = capacity - self._active = {} - self._memory = collections.OrderedDict() - - def __getitem__(self, key): - try: - return self._active[key] - except KeyError: - self._memory.move_to_end(key) - return self._memory[key] - - def __setitem__(self, key, value): - self._memory.pop(key, None) - self._active[key] = value - - def __delitem__(self, key): - try: - value = self._active.pop(key) - except KeyError: - pass - else: - while len(self._memory) >= self._capacity: - self._memory.popitem(last=False) - self._memory[key] = value - - def clear(self): - self._active.clear() - self._memory.clear() - - -class UnboundedMemo(dict): - """ - A memoizing mapping that retains all deleted items - """ - - def __delitem__(self, key): - pass - - -def _escape_regex_range_chars(s: str) -> str: - # escape these chars: ^-[] - for c in r"\^-[]": - s = s.replace(c, _bslash + c) - s = s.replace("\n", r"\n") - s = s.replace("\t", r"\t") - return str(s) - - -def _collapse_string_to_ranges( - s: Union[str, Iterable[str]], re_escape: bool = True -) -> str: - def is_consecutive(c): - c_int = ord(c) - is_consecutive.prev, prev = c_int, is_consecutive.prev - if c_int - prev > 1: - is_consecutive.value = next(is_consecutive.counter) - return is_consecutive.value - - is_consecutive.prev = 0 # type: ignore [attr-defined] - is_consecutive.counter = itertools.count() # type: ignore [attr-defined] - is_consecutive.value = -1 # type: ignore [attr-defined] - - def escape_re_range_char(c): - return "\\" + c if c in r"\^-][" else c - - def no_escape_re_range_char(c): - return c - - if not re_escape: - escape_re_range_char = no_escape_re_range_char - - ret = [] - s = "".join(sorted(set(s))) - if len(s) > 3: - for _, chars in itertools.groupby(s, key=is_consecutive): - first = last = next(chars) - last = collections.deque( - itertools.chain(iter([last]), chars), maxlen=1 - ).pop() - if first == last: - ret.append(escape_re_range_char(first)) - else: - sep = "" if ord(last) == ord(first) + 1 else "-" - ret.append( - f"{escape_re_range_char(first)}{sep}{escape_re_range_char(last)}" - ) - else: - ret = [escape_re_range_char(c) for c in s] - - return "".join(ret) - - -def _flatten(ll: list) -> list: - ret = [] - for i in ll: - if isinstance(i, list): - ret.extend(_flatten(i)) - else: - ret.append(i) - return ret - - -def _make_synonym_function(compat_name: str, fn: C) -> C: - # In a future version, uncomment the code in the internal _inner() functions - # to begin emitting DeprecationWarnings. - - # Unwrap staticmethod/classmethod - fn = getattr(fn, "__func__", fn) - - # (Presence of 'self' arg in signature is used by explain_exception() methods, so we take - # some extra steps to add it if present in decorated function.) - if "self" == list(inspect.signature(fn).parameters)[0]: - - @wraps(fn) - def _inner(self, *args, **kwargs): - # warnings.warn( - # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 - # ) - return fn(self, *args, **kwargs) - - else: - - @wraps(fn) - def _inner(*args, **kwargs): - # warnings.warn( - # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 - # ) - return fn(*args, **kwargs) - - _inner.__doc__ = f"""Deprecated - use :class:`{fn.__name__}`""" - _inner.__name__ = compat_name - _inner.__annotations__ = fn.__annotations__ - if isinstance(fn, types.FunctionType): - _inner.__kwdefaults__ = fn.__kwdefaults__ - elif isinstance(fn, type) and hasattr(fn, "__init__"): - _inner.__kwdefaults__ = fn.__init__.__kwdefaults__ - else: - _inner.__kwdefaults__ = None - _inner.__qualname__ = fn.__qualname__ - return cast(C, _inner) - - -def replaced_by_pep8(fn: C) -> Callable[[Callable], C]: - """ - Decorator for pre-PEP8 compatibility synonyms, to link them to the new function. - """ - return lambda other: _make_synonym_function(other.__name__, fn) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py deleted file mode 100644 index ddfcf7f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -"""Wrappers to call pyproject.toml-based build backend hooks. -""" - -from ._impl import ( - BackendInvalid, - BackendUnavailable, - BuildBackendHookCaller, - HookMissing, - UnsupportedOperation, - default_subprocess_runner, - quiet_subprocess_runner, -) - -__version__ = '1.0.0' -__all__ = [ - 'BackendUnavailable', - 'BackendInvalid', - 'HookMissing', - 'UnsupportedOperation', - 'default_subprocess_runner', - 'quiet_subprocess_runner', - 'BuildBackendHookCaller', -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7029442..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc deleted file mode 100644 index 5ec95fb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc deleted file mode 100644 index 9a05a64..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py deleted file mode 100644 index 95e509c..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py +++ /dev/null @@ -1,8 +0,0 @@ -__all__ = ("tomllib",) - -import sys - -if sys.version_info >= (3, 11): - import tomllib -else: - from pip._vendor import tomli as tomllib diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py deleted file mode 100644 index 37b0e65..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py +++ /dev/null @@ -1,330 +0,0 @@ -import json -import os -import sys -import tempfile -from contextlib import contextmanager -from os.path import abspath -from os.path import join as pjoin -from subprocess import STDOUT, check_call, check_output - -from ._in_process import _in_proc_script_path - - -def write_json(obj, path, **kwargs): - with open(path, 'w', encoding='utf-8') as f: - json.dump(obj, f, **kwargs) - - -def read_json(path): - with open(path, encoding='utf-8') as f: - return json.load(f) - - -class BackendUnavailable(Exception): - """Will be raised if the backend cannot be imported in the hook process.""" - def __init__(self, traceback): - self.traceback = traceback - - -class BackendInvalid(Exception): - """Will be raised if the backend is invalid.""" - def __init__(self, backend_name, backend_path, message): - super().__init__(message) - self.backend_name = backend_name - self.backend_path = backend_path - - -class HookMissing(Exception): - """Will be raised on missing hooks (if a fallback can't be used).""" - def __init__(self, hook_name): - super().__init__(hook_name) - self.hook_name = hook_name - - -class UnsupportedOperation(Exception): - """May be raised by build_sdist if the backend indicates that it can't.""" - def __init__(self, traceback): - self.traceback = traceback - - -def default_subprocess_runner(cmd, cwd=None, extra_environ=None): - """The default method of calling the wrapper subprocess. - - This uses :func:`subprocess.check_call` under the hood. - """ - env = os.environ.copy() - if extra_environ: - env.update(extra_environ) - - check_call(cmd, cwd=cwd, env=env) - - -def quiet_subprocess_runner(cmd, cwd=None, extra_environ=None): - """Call the subprocess while suppressing output. - - This uses :func:`subprocess.check_output` under the hood. - """ - env = os.environ.copy() - if extra_environ: - env.update(extra_environ) - - check_output(cmd, cwd=cwd, env=env, stderr=STDOUT) - - -def norm_and_check(source_tree, requested): - """Normalise and check a backend path. - - Ensure that the requested backend path is specified as a relative path, - and resolves to a location under the given source tree. - - Return an absolute version of the requested path. - """ - if os.path.isabs(requested): - raise ValueError("paths must be relative") - - abs_source = os.path.abspath(source_tree) - abs_requested = os.path.normpath(os.path.join(abs_source, requested)) - # We have to use commonprefix for Python 2.7 compatibility. So we - # normalise case to avoid problems because commonprefix is a character - # based comparison :-( - norm_source = os.path.normcase(abs_source) - norm_requested = os.path.normcase(abs_requested) - if os.path.commonprefix([norm_source, norm_requested]) != norm_source: - raise ValueError("paths must be inside source tree") - - return abs_requested - - -class BuildBackendHookCaller: - """A wrapper to call the build backend hooks for a source directory. - """ - - def __init__( - self, - source_dir, - build_backend, - backend_path=None, - runner=None, - python_executable=None, - ): - """ - :param source_dir: The source directory to invoke the build backend for - :param build_backend: The build backend spec - :param backend_path: Additional path entries for the build backend spec - :param runner: The :ref:`subprocess runner ` to use - :param python_executable: - The Python executable used to invoke the build backend - """ - if runner is None: - runner = default_subprocess_runner - - self.source_dir = abspath(source_dir) - self.build_backend = build_backend - if backend_path: - backend_path = [ - norm_and_check(self.source_dir, p) for p in backend_path - ] - self.backend_path = backend_path - self._subprocess_runner = runner - if not python_executable: - python_executable = sys.executable - self.python_executable = python_executable - - @contextmanager - def subprocess_runner(self, runner): - """A context manager for temporarily overriding the default - :ref:`subprocess runner `. - - .. code-block:: python - - hook_caller = BuildBackendHookCaller(...) - with hook_caller.subprocess_runner(quiet_subprocess_runner): - ... - """ - prev = self._subprocess_runner - self._subprocess_runner = runner - try: - yield - finally: - self._subprocess_runner = prev - - def _supported_features(self): - """Return the list of optional features supported by the backend.""" - return self._call_hook('_supported_features', {}) - - def get_requires_for_build_wheel(self, config_settings=None): - """Get additional dependencies required for building a wheel. - - :returns: A list of :pep:`dependency specifiers <508>`. - :rtype: list[str] - - .. admonition:: Fallback - - If the build backend does not defined a hook with this name, an - empty list will be returned. - """ - return self._call_hook('get_requires_for_build_wheel', { - 'config_settings': config_settings - }) - - def prepare_metadata_for_build_wheel( - self, metadata_directory, config_settings=None, - _allow_fallback=True): - """Prepare a ``*.dist-info`` folder with metadata for this project. - - :returns: Name of the newly created subfolder within - ``metadata_directory``, containing the metadata. - :rtype: str - - .. admonition:: Fallback - - If the build backend does not define a hook with this name and - ``_allow_fallback`` is truthy, the backend will be asked to build a - wheel via the ``build_wheel`` hook and the dist-info extracted from - that will be returned. - """ - return self._call_hook('prepare_metadata_for_build_wheel', { - 'metadata_directory': abspath(metadata_directory), - 'config_settings': config_settings, - '_allow_fallback': _allow_fallback, - }) - - def build_wheel( - self, wheel_directory, config_settings=None, - metadata_directory=None): - """Build a wheel from this project. - - :returns: - The name of the newly created wheel within ``wheel_directory``. - - .. admonition:: Interaction with fallback - - If the ``build_wheel`` hook was called in the fallback for - :meth:`prepare_metadata_for_build_wheel`, the build backend would - not be invoked. Instead, the previously built wheel will be copied - to ``wheel_directory`` and the name of that file will be returned. - """ - if metadata_directory is not None: - metadata_directory = abspath(metadata_directory) - return self._call_hook('build_wheel', { - 'wheel_directory': abspath(wheel_directory), - 'config_settings': config_settings, - 'metadata_directory': metadata_directory, - }) - - def get_requires_for_build_editable(self, config_settings=None): - """Get additional dependencies required for building an editable wheel. - - :returns: A list of :pep:`dependency specifiers <508>`. - :rtype: list[str] - - .. admonition:: Fallback - - If the build backend does not defined a hook with this name, an - empty list will be returned. - """ - return self._call_hook('get_requires_for_build_editable', { - 'config_settings': config_settings - }) - - def prepare_metadata_for_build_editable( - self, metadata_directory, config_settings=None, - _allow_fallback=True): - """Prepare a ``*.dist-info`` folder with metadata for this project. - - :returns: Name of the newly created subfolder within - ``metadata_directory``, containing the metadata. - :rtype: str - - .. admonition:: Fallback - - If the build backend does not define a hook with this name and - ``_allow_fallback`` is truthy, the backend will be asked to build a - wheel via the ``build_editable`` hook and the dist-info - extracted from that will be returned. - """ - return self._call_hook('prepare_metadata_for_build_editable', { - 'metadata_directory': abspath(metadata_directory), - 'config_settings': config_settings, - '_allow_fallback': _allow_fallback, - }) - - def build_editable( - self, wheel_directory, config_settings=None, - metadata_directory=None): - """Build an editable wheel from this project. - - :returns: - The name of the newly created wheel within ``wheel_directory``. - - .. admonition:: Interaction with fallback - - If the ``build_editable`` hook was called in the fallback for - :meth:`prepare_metadata_for_build_editable`, the build backend - would not be invoked. Instead, the previously built wheel will be - copied to ``wheel_directory`` and the name of that file will be - returned. - """ - if metadata_directory is not None: - metadata_directory = abspath(metadata_directory) - return self._call_hook('build_editable', { - 'wheel_directory': abspath(wheel_directory), - 'config_settings': config_settings, - 'metadata_directory': metadata_directory, - }) - - def get_requires_for_build_sdist(self, config_settings=None): - """Get additional dependencies required for building an sdist. - - :returns: A list of :pep:`dependency specifiers <508>`. - :rtype: list[str] - """ - return self._call_hook('get_requires_for_build_sdist', { - 'config_settings': config_settings - }) - - def build_sdist(self, sdist_directory, config_settings=None): - """Build an sdist from this project. - - :returns: - The name of the newly created sdist within ``wheel_directory``. - """ - return self._call_hook('build_sdist', { - 'sdist_directory': abspath(sdist_directory), - 'config_settings': config_settings, - }) - - def _call_hook(self, hook_name, kwargs): - extra_environ = {'PEP517_BUILD_BACKEND': self.build_backend} - - if self.backend_path: - backend_path = os.pathsep.join(self.backend_path) - extra_environ['PEP517_BACKEND_PATH'] = backend_path - - with tempfile.TemporaryDirectory() as td: - hook_input = {'kwargs': kwargs} - write_json(hook_input, pjoin(td, 'input.json'), indent=2) - - # Run the hook in a subprocess - with _in_proc_script_path() as script: - python = self.python_executable - self._subprocess_runner( - [python, abspath(str(script)), hook_name, td], - cwd=self.source_dir, - extra_environ=extra_environ - ) - - data = read_json(pjoin(td, 'output.json')) - if data.get('unsupported'): - raise UnsupportedOperation(data.get('traceback', '')) - if data.get('no_backend'): - raise BackendUnavailable(data.get('traceback', '')) - if data.get('backend_invalid'): - raise BackendInvalid( - backend_name=self.build_backend, - backend_path=self.backend_path, - message=data.get('backend_error', '') - ) - if data.get('hook_missing'): - raise HookMissing(data.get('missing_hook_name') or hook_name) - return data['return_val'] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py deleted file mode 100644 index 917fa06..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +++ /dev/null @@ -1,18 +0,0 @@ -"""This is a subpackage because the directory is on sys.path for _in_process.py - -The subpackage should stay as empty as possible to avoid shadowing modules that -the backend might import. -""" - -import importlib.resources as resources - -try: - resources.files -except AttributeError: - # Python 3.8 compatibility - def _in_proc_script_path(): - return resources.path(__package__, '_in_process.py') -else: - def _in_proc_script_path(): - return resources.as_file( - resources.files(__package__).joinpath('_in_process.py')) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a72fff2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc deleted file mode 100644 index e2620c5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py deleted file mode 100644 index ee511ff..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +++ /dev/null @@ -1,353 +0,0 @@ -"""This is invoked in a subprocess to call the build backend hooks. - -It expects: -- Command line args: hook_name, control_dir -- Environment variables: - PEP517_BUILD_BACKEND=entry.point:spec - PEP517_BACKEND_PATH=paths (separated with os.pathsep) -- control_dir/input.json: - - {"kwargs": {...}} - -Results: -- control_dir/output.json - - {"return_val": ...} -""" -import json -import os -import os.path -import re -import shutil -import sys -import traceback -from glob import glob -from importlib import import_module -from os.path import join as pjoin - -# This file is run as a script, and `import wrappers` is not zip-safe, so we -# include write_json() and read_json() from wrappers.py. - - -def write_json(obj, path, **kwargs): - with open(path, 'w', encoding='utf-8') as f: - json.dump(obj, f, **kwargs) - - -def read_json(path): - with open(path, encoding='utf-8') as f: - return json.load(f) - - -class BackendUnavailable(Exception): - """Raised if we cannot import the backend""" - def __init__(self, traceback): - self.traceback = traceback - - -class BackendInvalid(Exception): - """Raised if the backend is invalid""" - def __init__(self, message): - self.message = message - - -class HookMissing(Exception): - """Raised if a hook is missing and we are not executing the fallback""" - def __init__(self, hook_name=None): - super().__init__(hook_name) - self.hook_name = hook_name - - -def contained_in(filename, directory): - """Test if a file is located within the given directory.""" - filename = os.path.normcase(os.path.abspath(filename)) - directory = os.path.normcase(os.path.abspath(directory)) - return os.path.commonprefix([filename, directory]) == directory - - -def _build_backend(): - """Find and load the build backend""" - # Add in-tree backend directories to the front of sys.path. - backend_path = os.environ.get('PEP517_BACKEND_PATH') - if backend_path: - extra_pathitems = backend_path.split(os.pathsep) - sys.path[:0] = extra_pathitems - - ep = os.environ['PEP517_BUILD_BACKEND'] - mod_path, _, obj_path = ep.partition(':') - try: - obj = import_module(mod_path) - except ImportError: - raise BackendUnavailable(traceback.format_exc()) - - if backend_path: - if not any( - contained_in(obj.__file__, path) - for path in extra_pathitems - ): - raise BackendInvalid("Backend was not loaded from backend-path") - - if obj_path: - for path_part in obj_path.split('.'): - obj = getattr(obj, path_part) - return obj - - -def _supported_features(): - """Return the list of options features supported by the backend. - - Returns a list of strings. - The only possible value is 'build_editable'. - """ - backend = _build_backend() - features = [] - if hasattr(backend, "build_editable"): - features.append("build_editable") - return features - - -def get_requires_for_build_wheel(config_settings): - """Invoke the optional get_requires_for_build_wheel hook - - Returns [] if the hook is not defined. - """ - backend = _build_backend() - try: - hook = backend.get_requires_for_build_wheel - except AttributeError: - return [] - else: - return hook(config_settings) - - -def get_requires_for_build_editable(config_settings): - """Invoke the optional get_requires_for_build_editable hook - - Returns [] if the hook is not defined. - """ - backend = _build_backend() - try: - hook = backend.get_requires_for_build_editable - except AttributeError: - return [] - else: - return hook(config_settings) - - -def prepare_metadata_for_build_wheel( - metadata_directory, config_settings, _allow_fallback): - """Invoke optional prepare_metadata_for_build_wheel - - Implements a fallback by building a wheel if the hook isn't defined, - unless _allow_fallback is False in which case HookMissing is raised. - """ - backend = _build_backend() - try: - hook = backend.prepare_metadata_for_build_wheel - except AttributeError: - if not _allow_fallback: - raise HookMissing() - else: - return hook(metadata_directory, config_settings) - # fallback to build_wheel outside the try block to avoid exception chaining - # which can be confusing to users and is not relevant - whl_basename = backend.build_wheel(metadata_directory, config_settings) - return _get_wheel_metadata_from_wheel(whl_basename, metadata_directory, - config_settings) - - -def prepare_metadata_for_build_editable( - metadata_directory, config_settings, _allow_fallback): - """Invoke optional prepare_metadata_for_build_editable - - Implements a fallback by building an editable wheel if the hook isn't - defined, unless _allow_fallback is False in which case HookMissing is - raised. - """ - backend = _build_backend() - try: - hook = backend.prepare_metadata_for_build_editable - except AttributeError: - if not _allow_fallback: - raise HookMissing() - try: - build_hook = backend.build_editable - except AttributeError: - raise HookMissing(hook_name='build_editable') - else: - whl_basename = build_hook(metadata_directory, config_settings) - return _get_wheel_metadata_from_wheel(whl_basename, - metadata_directory, - config_settings) - else: - return hook(metadata_directory, config_settings) - - -WHEEL_BUILT_MARKER = 'PEP517_ALREADY_BUILT_WHEEL' - - -def _dist_info_files(whl_zip): - """Identify the .dist-info folder inside a wheel ZipFile.""" - res = [] - for path in whl_zip.namelist(): - m = re.match(r'[^/\\]+-[^/\\]+\.dist-info/', path) - if m: - res.append(path) - if res: - return res - raise Exception("No .dist-info folder found in wheel") - - -def _get_wheel_metadata_from_wheel( - whl_basename, metadata_directory, config_settings): - """Extract the metadata from a wheel. - - Fallback for when the build backend does not - define the 'get_wheel_metadata' hook. - """ - from zipfile import ZipFile - with open(os.path.join(metadata_directory, WHEEL_BUILT_MARKER), 'wb'): - pass # Touch marker file - - whl_file = os.path.join(metadata_directory, whl_basename) - with ZipFile(whl_file) as zipf: - dist_info = _dist_info_files(zipf) - zipf.extractall(path=metadata_directory, members=dist_info) - return dist_info[0].split('/')[0] - - -def _find_already_built_wheel(metadata_directory): - """Check for a wheel already built during the get_wheel_metadata hook. - """ - if not metadata_directory: - return None - metadata_parent = os.path.dirname(metadata_directory) - if not os.path.isfile(pjoin(metadata_parent, WHEEL_BUILT_MARKER)): - return None - - whl_files = glob(os.path.join(metadata_parent, '*.whl')) - if not whl_files: - print('Found wheel built marker, but no .whl files') - return None - if len(whl_files) > 1: - print('Found multiple .whl files; unspecified behaviour. ' - 'Will call build_wheel.') - return None - - # Exactly one .whl file - return whl_files[0] - - -def build_wheel(wheel_directory, config_settings, metadata_directory=None): - """Invoke the mandatory build_wheel hook. - - If a wheel was already built in the - prepare_metadata_for_build_wheel fallback, this - will copy it rather than rebuilding the wheel. - """ - prebuilt_whl = _find_already_built_wheel(metadata_directory) - if prebuilt_whl: - shutil.copy2(prebuilt_whl, wheel_directory) - return os.path.basename(prebuilt_whl) - - return _build_backend().build_wheel(wheel_directory, config_settings, - metadata_directory) - - -def build_editable(wheel_directory, config_settings, metadata_directory=None): - """Invoke the optional build_editable hook. - - If a wheel was already built in the - prepare_metadata_for_build_editable fallback, this - will copy it rather than rebuilding the wheel. - """ - backend = _build_backend() - try: - hook = backend.build_editable - except AttributeError: - raise HookMissing() - else: - prebuilt_whl = _find_already_built_wheel(metadata_directory) - if prebuilt_whl: - shutil.copy2(prebuilt_whl, wheel_directory) - return os.path.basename(prebuilt_whl) - - return hook(wheel_directory, config_settings, metadata_directory) - - -def get_requires_for_build_sdist(config_settings): - """Invoke the optional get_requires_for_build_wheel hook - - Returns [] if the hook is not defined. - """ - backend = _build_backend() - try: - hook = backend.get_requires_for_build_sdist - except AttributeError: - return [] - else: - return hook(config_settings) - - -class _DummyException(Exception): - """Nothing should ever raise this exception""" - - -class GotUnsupportedOperation(Exception): - """For internal use when backend raises UnsupportedOperation""" - def __init__(self, traceback): - self.traceback = traceback - - -def build_sdist(sdist_directory, config_settings): - """Invoke the mandatory build_sdist hook.""" - backend = _build_backend() - try: - return backend.build_sdist(sdist_directory, config_settings) - except getattr(backend, 'UnsupportedOperation', _DummyException): - raise GotUnsupportedOperation(traceback.format_exc()) - - -HOOK_NAMES = { - 'get_requires_for_build_wheel', - 'prepare_metadata_for_build_wheel', - 'build_wheel', - 'get_requires_for_build_editable', - 'prepare_metadata_for_build_editable', - 'build_editable', - 'get_requires_for_build_sdist', - 'build_sdist', - '_supported_features', -} - - -def main(): - if len(sys.argv) < 3: - sys.exit("Needs args: hook_name, control_dir") - hook_name = sys.argv[1] - control_dir = sys.argv[2] - if hook_name not in HOOK_NAMES: - sys.exit("Unknown hook: %s" % hook_name) - hook = globals()[hook_name] - - hook_input = read_json(pjoin(control_dir, 'input.json')) - - json_out = {'unsupported': False, 'return_val': None} - try: - json_out['return_val'] = hook(**hook_input['kwargs']) - except BackendUnavailable as e: - json_out['no_backend'] = True - json_out['traceback'] = e.traceback - except BackendInvalid as e: - json_out['backend_invalid'] = True - json_out['backend_error'] = e.message - except GotUnsupportedOperation as e: - json_out['unsupported'] = True - json_out['traceback'] = e.traceback - except HookMissing as e: - json_out['hook_missing'] = True - json_out['missing_hook_name'] = e.hook_name or hook_name - - write_json(json_out, pjoin(control_dir, 'output.json'), indent=2) - - -if __name__ == '__main__': - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py deleted file mode 100644 index 10ff67f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py +++ /dev/null @@ -1,182 +0,0 @@ -# __ -# /__) _ _ _ _ _/ _ -# / ( (- (/ (/ (- _) / _) -# / - -""" -Requests HTTP Library -~~~~~~~~~~~~~~~~~~~~~ - -Requests is an HTTP library, written in Python, for human beings. -Basic GET usage: - - >>> import requests - >>> r = requests.get('https://www.python.org') - >>> r.status_code - 200 - >>> b'Python is a programming language' in r.content - True - -... or POST: - - >>> payload = dict(key1='value1', key2='value2') - >>> r = requests.post('https://httpbin.org/post', data=payload) - >>> print(r.text) - { - ... - "form": { - "key1": "value1", - "key2": "value2" - }, - ... - } - -The other HTTP methods are supported - see `requests.api`. Full documentation -is at . - -:copyright: (c) 2017 by Kenneth Reitz. -:license: Apache 2.0, see LICENSE for more details. -""" - -import warnings - -from pip._vendor import urllib3 - -from .exceptions import RequestsDependencyWarning - -charset_normalizer_version = None - -try: - from pip._vendor.chardet import __version__ as chardet_version -except ImportError: - chardet_version = None - - -def check_compatibility(urllib3_version, chardet_version, charset_normalizer_version): - urllib3_version = urllib3_version.split(".") - assert urllib3_version != ["dev"] # Verify urllib3 isn't installed from git. - - # Sometimes, urllib3 only reports its version as 16.1. - if len(urllib3_version) == 2: - urllib3_version.append("0") - - # Check urllib3 for compatibility. - major, minor, patch = urllib3_version # noqa: F811 - major, minor, patch = int(major), int(minor), int(patch) - # urllib3 >= 1.21.1 - assert major >= 1 - if major == 1: - assert minor >= 21 - - # Check charset_normalizer for compatibility. - if chardet_version: - major, minor, patch = chardet_version.split(".")[:3] - major, minor, patch = int(major), int(minor), int(patch) - # chardet_version >= 3.0.2, < 6.0.0 - assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0) - elif charset_normalizer_version: - major, minor, patch = charset_normalizer_version.split(".")[:3] - major, minor, patch = int(major), int(minor), int(patch) - # charset_normalizer >= 2.0.0 < 4.0.0 - assert (2, 0, 0) <= (major, minor, patch) < (4, 0, 0) - else: - raise Exception("You need either charset_normalizer or chardet installed") - - -def _check_cryptography(cryptography_version): - # cryptography < 1.3.4 - try: - cryptography_version = list(map(int, cryptography_version.split("."))) - except ValueError: - return - - if cryptography_version < [1, 3, 4]: - warning = "Old version of cryptography ({}) may cause slowdown.".format( - cryptography_version - ) - warnings.warn(warning, RequestsDependencyWarning) - - -# Check imported dependencies for compatibility. -try: - check_compatibility( - urllib3.__version__, chardet_version, charset_normalizer_version - ) -except (AssertionError, ValueError): - warnings.warn( - "urllib3 ({}) or chardet ({})/charset_normalizer ({}) doesn't match a supported " - "version!".format( - urllib3.__version__, chardet_version, charset_normalizer_version - ), - RequestsDependencyWarning, - ) - -# Attempt to enable urllib3's fallback for SNI support -# if the standard library doesn't support SNI or the -# 'ssl' library isn't available. -try: - # Note: This logic prevents upgrading cryptography on Windows, if imported - # as part of pip. - from pip._internal.utils.compat import WINDOWS - if not WINDOWS: - raise ImportError("pip internals: don't import cryptography on Windows") - try: - import ssl - except ImportError: - ssl = None - - if not getattr(ssl, "HAS_SNI", False): - from pip._vendor.urllib3.contrib import pyopenssl - - pyopenssl.inject_into_urllib3() - - # Check cryptography version - from cryptography import __version__ as cryptography_version - - _check_cryptography(cryptography_version) -except ImportError: - pass - -# urllib3's DependencyWarnings should be silenced. -from pip._vendor.urllib3.exceptions import DependencyWarning - -warnings.simplefilter("ignore", DependencyWarning) - -# Set default logging handler to avoid "No handler found" warnings. -import logging -from logging import NullHandler - -from . import packages, utils -from .__version__ import ( - __author__, - __author_email__, - __build__, - __cake__, - __copyright__, - __description__, - __license__, - __title__, - __url__, - __version__, -) -from .api import delete, get, head, options, patch, post, put, request -from .exceptions import ( - ConnectionError, - ConnectTimeout, - FileModeWarning, - HTTPError, - JSONDecodeError, - ReadTimeout, - RequestException, - Timeout, - TooManyRedirects, - URLRequired, -) -from .models import PreparedRequest, Request, Response -from .sessions import Session, session -from .status_codes import codes - -logging.getLogger(__name__).addHandler(NullHandler()) - -# FileModeWarnings go off per the default. -warnings.simplefilter("default", FileModeWarning, append=True) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a5f31ac..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc deleted file mode 100644 index 948d867..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc deleted file mode 100644 index 600cc93..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc deleted file mode 100644 index cc9d832..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc deleted file mode 100644 index a6ef74c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc deleted file mode 100644 index 09e490c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc deleted file mode 100644 index 3ce86a9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc deleted file mode 100644 index b5c33fa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc deleted file mode 100644 index a937679..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc deleted file mode 100644 index aa294de..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc deleted file mode 100644 index c60f3ac..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc deleted file mode 100644 index b2ff435..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc deleted file mode 100644 index fd2e15f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc deleted file mode 100644 index 8257a23..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc deleted file mode 100644 index 2e0bdbd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc deleted file mode 100644 index f336de1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc deleted file mode 100644 index b6a7381..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index f45c8f3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py deleted file mode 100644 index 5063c3f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py +++ /dev/null @@ -1,14 +0,0 @@ -# .-. .-. .-. . . .-. .-. .-. .-. -# |( |- |.| | | |- `-. | `-. -# ' ' `-' `-`.`-' `-' `-' ' `-' - -__title__ = "requests" -__description__ = "Python HTTP for Humans." -__url__ = "https://requests.readthedocs.io" -__version__ = "2.31.0" -__build__ = 0x023100 -__author__ = "Kenneth Reitz" -__author_email__ = "me@kennethreitz.org" -__license__ = "Apache 2.0" -__copyright__ = "Copyright Kenneth Reitz" -__cake__ = "\u2728 \U0001f370 \u2728" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py deleted file mode 100644 index f2cf635..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -requests._internal_utils -~~~~~~~~~~~~~~ - -Provides utility functions that are consumed internally by Requests -which depend on extremely few external helpers (such as compat) -""" -import re - -from .compat import builtin_str - -_VALID_HEADER_NAME_RE_BYTE = re.compile(rb"^[^:\s][^:\r\n]*$") -_VALID_HEADER_NAME_RE_STR = re.compile(r"^[^:\s][^:\r\n]*$") -_VALID_HEADER_VALUE_RE_BYTE = re.compile(rb"^\S[^\r\n]*$|^$") -_VALID_HEADER_VALUE_RE_STR = re.compile(r"^\S[^\r\n]*$|^$") - -_HEADER_VALIDATORS_STR = (_VALID_HEADER_NAME_RE_STR, _VALID_HEADER_VALUE_RE_STR) -_HEADER_VALIDATORS_BYTE = (_VALID_HEADER_NAME_RE_BYTE, _VALID_HEADER_VALUE_RE_BYTE) -HEADER_VALIDATORS = { - bytes: _HEADER_VALIDATORS_BYTE, - str: _HEADER_VALIDATORS_STR, -} - - -def to_native_string(string, encoding="ascii"): - """Given a string object, regardless of type, returns a representation of - that string in the native string type, encoding and decoding where - necessary. This assumes ASCII unless told otherwise. - """ - if isinstance(string, builtin_str): - out = string - else: - out = string.decode(encoding) - - return out - - -def unicode_is_ascii(u_string): - """Determine if unicode string only contains ASCII characters. - - :param str u_string: unicode string to check. Must be unicode - and not Python 2 `str`. - :rtype: bool - """ - assert isinstance(u_string, str) - try: - u_string.encode("ascii") - return True - except UnicodeEncodeError: - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py deleted file mode 100644 index 10c1767..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py +++ /dev/null @@ -1,538 +0,0 @@ -""" -requests.adapters -~~~~~~~~~~~~~~~~~ - -This module contains the transport adapters that Requests uses to define -and maintain connections. -""" - -import os.path -import socket # noqa: F401 - -from pip._vendor.urllib3.exceptions import ClosedPoolError, ConnectTimeoutError -from pip._vendor.urllib3.exceptions import HTTPError as _HTTPError -from pip._vendor.urllib3.exceptions import InvalidHeader as _InvalidHeader -from pip._vendor.urllib3.exceptions import ( - LocationValueError, - MaxRetryError, - NewConnectionError, - ProtocolError, -) -from pip._vendor.urllib3.exceptions import ProxyError as _ProxyError -from pip._vendor.urllib3.exceptions import ReadTimeoutError, ResponseError -from pip._vendor.urllib3.exceptions import SSLError as _SSLError -from pip._vendor.urllib3.poolmanager import PoolManager, proxy_from_url -from pip._vendor.urllib3.util import Timeout as TimeoutSauce -from pip._vendor.urllib3.util import parse_url -from pip._vendor.urllib3.util.retry import Retry - -from .auth import _basic_auth_str -from .compat import basestring, urlparse -from .cookies import extract_cookies_to_jar -from .exceptions import ( - ConnectionError, - ConnectTimeout, - InvalidHeader, - InvalidProxyURL, - InvalidSchema, - InvalidURL, - ProxyError, - ReadTimeout, - RetryError, - SSLError, -) -from .models import Response -from .structures import CaseInsensitiveDict -from .utils import ( - DEFAULT_CA_BUNDLE_PATH, - extract_zipped_paths, - get_auth_from_url, - get_encoding_from_headers, - prepend_scheme_if_needed, - select_proxy, - urldefragauth, -) - -try: - from pip._vendor.urllib3.contrib.socks import SOCKSProxyManager -except ImportError: - - def SOCKSProxyManager(*args, **kwargs): - raise InvalidSchema("Missing dependencies for SOCKS support.") - - -DEFAULT_POOLBLOCK = False -DEFAULT_POOLSIZE = 10 -DEFAULT_RETRIES = 0 -DEFAULT_POOL_TIMEOUT = None - - -class BaseAdapter: - """The Base Transport Adapter""" - - def __init__(self): - super().__init__() - - def send( - self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None - ): - """Sends PreparedRequest object. Returns Response object. - - :param request: The :class:`PreparedRequest ` being sent. - :param stream: (optional) Whether to stream the request content. - :param timeout: (optional) How long to wait for the server to send - data before giving up, as a float, or a :ref:`(connect timeout, - read timeout) ` tuple. - :type timeout: float or tuple - :param verify: (optional) Either a boolean, in which case it controls whether we verify - the server's TLS certificate, or a string, in which case it must be a path - to a CA bundle to use - :param cert: (optional) Any user-provided SSL certificate to be trusted. - :param proxies: (optional) The proxies dictionary to apply to the request. - """ - raise NotImplementedError - - def close(self): - """Cleans up adapter specific items.""" - raise NotImplementedError - - -class HTTPAdapter(BaseAdapter): - """The built-in HTTP Adapter for urllib3. - - Provides a general-case interface for Requests sessions to contact HTTP and - HTTPS urls by implementing the Transport Adapter interface. This class will - usually be created by the :class:`Session ` class under the - covers. - - :param pool_connections: The number of urllib3 connection pools to cache. - :param pool_maxsize: The maximum number of connections to save in the pool. - :param max_retries: The maximum number of retries each connection - should attempt. Note, this applies only to failed DNS lookups, socket - connections and connection timeouts, never to requests where data has - made it to the server. By default, Requests does not retry failed - connections. If you need granular control over the conditions under - which we retry a request, import urllib3's ``Retry`` class and pass - that instead. - :param pool_block: Whether the connection pool should block for connections. - - Usage:: - - >>> import requests - >>> s = requests.Session() - >>> a = requests.adapters.HTTPAdapter(max_retries=3) - >>> s.mount('http://', a) - """ - - __attrs__ = [ - "max_retries", - "config", - "_pool_connections", - "_pool_maxsize", - "_pool_block", - ] - - def __init__( - self, - pool_connections=DEFAULT_POOLSIZE, - pool_maxsize=DEFAULT_POOLSIZE, - max_retries=DEFAULT_RETRIES, - pool_block=DEFAULT_POOLBLOCK, - ): - if max_retries == DEFAULT_RETRIES: - self.max_retries = Retry(0, read=False) - else: - self.max_retries = Retry.from_int(max_retries) - self.config = {} - self.proxy_manager = {} - - super().__init__() - - self._pool_connections = pool_connections - self._pool_maxsize = pool_maxsize - self._pool_block = pool_block - - self.init_poolmanager(pool_connections, pool_maxsize, block=pool_block) - - def __getstate__(self): - return {attr: getattr(self, attr, None) for attr in self.__attrs__} - - def __setstate__(self, state): - # Can't handle by adding 'proxy_manager' to self.__attrs__ because - # self.poolmanager uses a lambda function, which isn't pickleable. - self.proxy_manager = {} - self.config = {} - - for attr, value in state.items(): - setattr(self, attr, value) - - self.init_poolmanager( - self._pool_connections, self._pool_maxsize, block=self._pool_block - ) - - def init_poolmanager( - self, connections, maxsize, block=DEFAULT_POOLBLOCK, **pool_kwargs - ): - """Initializes a urllib3 PoolManager. - - This method should not be called from user code, and is only - exposed for use when subclassing the - :class:`HTTPAdapter `. - - :param connections: The number of urllib3 connection pools to cache. - :param maxsize: The maximum number of connections to save in the pool. - :param block: Block when no free connections are available. - :param pool_kwargs: Extra keyword arguments used to initialize the Pool Manager. - """ - # save these values for pickling - self._pool_connections = connections - self._pool_maxsize = maxsize - self._pool_block = block - - self.poolmanager = PoolManager( - num_pools=connections, - maxsize=maxsize, - block=block, - **pool_kwargs, - ) - - def proxy_manager_for(self, proxy, **proxy_kwargs): - """Return urllib3 ProxyManager for the given proxy. - - This method should not be called from user code, and is only - exposed for use when subclassing the - :class:`HTTPAdapter `. - - :param proxy: The proxy to return a urllib3 ProxyManager for. - :param proxy_kwargs: Extra keyword arguments used to configure the Proxy Manager. - :returns: ProxyManager - :rtype: urllib3.ProxyManager - """ - if proxy in self.proxy_manager: - manager = self.proxy_manager[proxy] - elif proxy.lower().startswith("socks"): - username, password = get_auth_from_url(proxy) - manager = self.proxy_manager[proxy] = SOCKSProxyManager( - proxy, - username=username, - password=password, - num_pools=self._pool_connections, - maxsize=self._pool_maxsize, - block=self._pool_block, - **proxy_kwargs, - ) - else: - proxy_headers = self.proxy_headers(proxy) - manager = self.proxy_manager[proxy] = proxy_from_url( - proxy, - proxy_headers=proxy_headers, - num_pools=self._pool_connections, - maxsize=self._pool_maxsize, - block=self._pool_block, - **proxy_kwargs, - ) - - return manager - - def cert_verify(self, conn, url, verify, cert): - """Verify a SSL certificate. This method should not be called from user - code, and is only exposed for use when subclassing the - :class:`HTTPAdapter `. - - :param conn: The urllib3 connection object associated with the cert. - :param url: The requested URL. - :param verify: Either a boolean, in which case it controls whether we verify - the server's TLS certificate, or a string, in which case it must be a path - to a CA bundle to use - :param cert: The SSL certificate to verify. - """ - if url.lower().startswith("https") and verify: - - cert_loc = None - - # Allow self-specified cert location. - if verify is not True: - cert_loc = verify - - if not cert_loc: - cert_loc = extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH) - - if not cert_loc or not os.path.exists(cert_loc): - raise OSError( - f"Could not find a suitable TLS CA certificate bundle, " - f"invalid path: {cert_loc}" - ) - - conn.cert_reqs = "CERT_REQUIRED" - - if not os.path.isdir(cert_loc): - conn.ca_certs = cert_loc - else: - conn.ca_cert_dir = cert_loc - else: - conn.cert_reqs = "CERT_NONE" - conn.ca_certs = None - conn.ca_cert_dir = None - - if cert: - if not isinstance(cert, basestring): - conn.cert_file = cert[0] - conn.key_file = cert[1] - else: - conn.cert_file = cert - conn.key_file = None - if conn.cert_file and not os.path.exists(conn.cert_file): - raise OSError( - f"Could not find the TLS certificate file, " - f"invalid path: {conn.cert_file}" - ) - if conn.key_file and not os.path.exists(conn.key_file): - raise OSError( - f"Could not find the TLS key file, invalid path: {conn.key_file}" - ) - - def build_response(self, req, resp): - """Builds a :class:`Response ` object from a urllib3 - response. This should not be called from user code, and is only exposed - for use when subclassing the - :class:`HTTPAdapter ` - - :param req: The :class:`PreparedRequest ` used to generate the response. - :param resp: The urllib3 response object. - :rtype: requests.Response - """ - response = Response() - - # Fallback to None if there's no status_code, for whatever reason. - response.status_code = getattr(resp, "status", None) - - # Make headers case-insensitive. - response.headers = CaseInsensitiveDict(getattr(resp, "headers", {})) - - # Set encoding. - response.encoding = get_encoding_from_headers(response.headers) - response.raw = resp - response.reason = response.raw.reason - - if isinstance(req.url, bytes): - response.url = req.url.decode("utf-8") - else: - response.url = req.url - - # Add new cookies from the server. - extract_cookies_to_jar(response.cookies, req, resp) - - # Give the Response some context. - response.request = req - response.connection = self - - return response - - def get_connection(self, url, proxies=None): - """Returns a urllib3 connection for the given URL. This should not be - called from user code, and is only exposed for use when subclassing the - :class:`HTTPAdapter `. - - :param url: The URL to connect to. - :param proxies: (optional) A Requests-style dictionary of proxies used on this request. - :rtype: urllib3.ConnectionPool - """ - proxy = select_proxy(url, proxies) - - if proxy: - proxy = prepend_scheme_if_needed(proxy, "http") - proxy_url = parse_url(proxy) - if not proxy_url.host: - raise InvalidProxyURL( - "Please check proxy URL. It is malformed " - "and could be missing the host." - ) - proxy_manager = self.proxy_manager_for(proxy) - conn = proxy_manager.connection_from_url(url) - else: - # Only scheme should be lower case - parsed = urlparse(url) - url = parsed.geturl() - conn = self.poolmanager.connection_from_url(url) - - return conn - - def close(self): - """Disposes of any internal state. - - Currently, this closes the PoolManager and any active ProxyManager, - which closes any pooled connections. - """ - self.poolmanager.clear() - for proxy in self.proxy_manager.values(): - proxy.clear() - - def request_url(self, request, proxies): - """Obtain the url to use when making the final request. - - If the message is being sent through a HTTP proxy, the full URL has to - be used. Otherwise, we should only use the path portion of the URL. - - This should not be called from user code, and is only exposed for use - when subclassing the - :class:`HTTPAdapter `. - - :param request: The :class:`PreparedRequest ` being sent. - :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs. - :rtype: str - """ - proxy = select_proxy(request.url, proxies) - scheme = urlparse(request.url).scheme - - is_proxied_http_request = proxy and scheme != "https" - using_socks_proxy = False - if proxy: - proxy_scheme = urlparse(proxy).scheme.lower() - using_socks_proxy = proxy_scheme.startswith("socks") - - url = request.path_url - if is_proxied_http_request and not using_socks_proxy: - url = urldefragauth(request.url) - - return url - - def add_headers(self, request, **kwargs): - """Add any headers needed by the connection. As of v2.0 this does - nothing by default, but is left for overriding by users that subclass - the :class:`HTTPAdapter `. - - This should not be called from user code, and is only exposed for use - when subclassing the - :class:`HTTPAdapter `. - - :param request: The :class:`PreparedRequest ` to add headers to. - :param kwargs: The keyword arguments from the call to send(). - """ - pass - - def proxy_headers(self, proxy): - """Returns a dictionary of the headers to add to any request sent - through a proxy. This works with urllib3 magic to ensure that they are - correctly sent to the proxy, rather than in a tunnelled request if - CONNECT is being used. - - This should not be called from user code, and is only exposed for use - when subclassing the - :class:`HTTPAdapter `. - - :param proxy: The url of the proxy being used for this request. - :rtype: dict - """ - headers = {} - username, password = get_auth_from_url(proxy) - - if username: - headers["Proxy-Authorization"] = _basic_auth_str(username, password) - - return headers - - def send( - self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None - ): - """Sends PreparedRequest object. Returns Response object. - - :param request: The :class:`PreparedRequest ` being sent. - :param stream: (optional) Whether to stream the request content. - :param timeout: (optional) How long to wait for the server to send - data before giving up, as a float, or a :ref:`(connect timeout, - read timeout) ` tuple. - :type timeout: float or tuple or urllib3 Timeout object - :param verify: (optional) Either a boolean, in which case it controls whether - we verify the server's TLS certificate, or a string, in which case it - must be a path to a CA bundle to use - :param cert: (optional) Any user-provided SSL certificate to be trusted. - :param proxies: (optional) The proxies dictionary to apply to the request. - :rtype: requests.Response - """ - - try: - conn = self.get_connection(request.url, proxies) - except LocationValueError as e: - raise InvalidURL(e, request=request) - - self.cert_verify(conn, request.url, verify, cert) - url = self.request_url(request, proxies) - self.add_headers( - request, - stream=stream, - timeout=timeout, - verify=verify, - cert=cert, - proxies=proxies, - ) - - chunked = not (request.body is None or "Content-Length" in request.headers) - - if isinstance(timeout, tuple): - try: - connect, read = timeout - timeout = TimeoutSauce(connect=connect, read=read) - except ValueError: - raise ValueError( - f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " - f"or a single float to set both timeouts to the same value." - ) - elif isinstance(timeout, TimeoutSauce): - pass - else: - timeout = TimeoutSauce(connect=timeout, read=timeout) - - try: - resp = conn.urlopen( - method=request.method, - url=url, - body=request.body, - headers=request.headers, - redirect=False, - assert_same_host=False, - preload_content=False, - decode_content=False, - retries=self.max_retries, - timeout=timeout, - chunked=chunked, - ) - - except (ProtocolError, OSError) as err: - raise ConnectionError(err, request=request) - - except MaxRetryError as e: - if isinstance(e.reason, ConnectTimeoutError): - # TODO: Remove this in 3.0.0: see #2811 - if not isinstance(e.reason, NewConnectionError): - raise ConnectTimeout(e, request=request) - - if isinstance(e.reason, ResponseError): - raise RetryError(e, request=request) - - if isinstance(e.reason, _ProxyError): - raise ProxyError(e, request=request) - - if isinstance(e.reason, _SSLError): - # This branch is for urllib3 v1.22 and later. - raise SSLError(e, request=request) - - raise ConnectionError(e, request=request) - - except ClosedPoolError as e: - raise ConnectionError(e, request=request) - - except _ProxyError as e: - raise ProxyError(e) - - except (_SSLError, _HTTPError) as e: - if isinstance(e, _SSLError): - # This branch is for urllib3 versions earlier than v1.22 - raise SSLError(e, request=request) - elif isinstance(e, ReadTimeoutError): - raise ReadTimeout(e, request=request) - elif isinstance(e, _InvalidHeader): - raise InvalidHeader(e, request=request) - else: - raise - - return self.build_response(request, resp) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py deleted file mode 100644 index cd0b3ee..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py +++ /dev/null @@ -1,157 +0,0 @@ -""" -requests.api -~~~~~~~~~~~~ - -This module implements the Requests API. - -:copyright: (c) 2012 by Kenneth Reitz. -:license: Apache2, see LICENSE for more details. -""" - -from . import sessions - - -def request(method, url, **kwargs): - """Constructs and sends a :class:`Request `. - - :param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``. - :param url: URL for the new :class:`Request` object. - :param params: (optional) Dictionary, list of tuples or bytes to send - in the query string for the :class:`Request`. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. - :param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`. - :param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`. - :param files: (optional) Dictionary of ``'name': file-like-objects`` (or ``{'name': file-tuple}``) for multipart encoding upload. - ``file-tuple`` can be a 2-tuple ``('filename', fileobj)``, 3-tuple ``('filename', fileobj, 'content_type')`` - or a 4-tuple ``('filename', fileobj, 'content_type', custom_headers)``, where ``'content-type'`` is a string - defining the content type of the given file and ``custom_headers`` a dict-like object containing additional headers - to add for the file. - :param auth: (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth. - :param timeout: (optional) How many seconds to wait for the server to send data - before giving up, as a float, or a :ref:`(connect timeout, read - timeout) ` tuple. - :type timeout: float or tuple - :param allow_redirects: (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``. - :type allow_redirects: bool - :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. - :param verify: (optional) Either a boolean, in which case it controls whether we verify - the server's TLS certificate, or a string, in which case it must be a path - to a CA bundle to use. Defaults to ``True``. - :param stream: (optional) if ``False``, the response content will be immediately downloaded. - :param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. - :return: :class:`Response ` object - :rtype: requests.Response - - Usage:: - - >>> import requests - >>> req = requests.request('GET', 'https://httpbin.org/get') - >>> req - - """ - - # By using the 'with' statement we are sure the session is closed, thus we - # avoid leaving sockets open which can trigger a ResourceWarning in some - # cases, and look like a memory leak in others. - with sessions.Session() as session: - return session.request(method=method, url=url, **kwargs) - - -def get(url, params=None, **kwargs): - r"""Sends a GET request. - - :param url: URL for the new :class:`Request` object. - :param params: (optional) Dictionary, list of tuples or bytes to send - in the query string for the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("get", url, params=params, **kwargs) - - -def options(url, **kwargs): - r"""Sends an OPTIONS request. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("options", url, **kwargs) - - -def head(url, **kwargs): - r"""Sends a HEAD request. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. If - `allow_redirects` is not provided, it will be set to `False` (as - opposed to the default :meth:`request` behavior). - :return: :class:`Response ` object - :rtype: requests.Response - """ - - kwargs.setdefault("allow_redirects", False) - return request("head", url, **kwargs) - - -def post(url, data=None, json=None, **kwargs): - r"""Sends a POST request. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("post", url, data=data, json=json, **kwargs) - - -def put(url, data=None, **kwargs): - r"""Sends a PUT request. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("put", url, data=data, **kwargs) - - -def patch(url, data=None, **kwargs): - r"""Sends a PATCH request. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("patch", url, data=data, **kwargs) - - -def delete(url, **kwargs): - r"""Sends a DELETE request. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :return: :class:`Response ` object - :rtype: requests.Response - """ - - return request("delete", url, **kwargs) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py deleted file mode 100644 index 9733686..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py +++ /dev/null @@ -1,315 +0,0 @@ -""" -requests.auth -~~~~~~~~~~~~~ - -This module contains the authentication handlers for Requests. -""" - -import hashlib -import os -import re -import threading -import time -import warnings -from base64 import b64encode - -from ._internal_utils import to_native_string -from .compat import basestring, str, urlparse -from .cookies import extract_cookies_to_jar -from .utils import parse_dict_header - -CONTENT_TYPE_FORM_URLENCODED = "application/x-www-form-urlencoded" -CONTENT_TYPE_MULTI_PART = "multipart/form-data" - - -def _basic_auth_str(username, password): - """Returns a Basic Auth string.""" - - # "I want us to put a big-ol' comment on top of it that - # says that this behaviour is dumb but we need to preserve - # it because people are relying on it." - # - Lukasa - # - # These are here solely to maintain backwards compatibility - # for things like ints. This will be removed in 3.0.0. - if not isinstance(username, basestring): - warnings.warn( - "Non-string usernames will no longer be supported in Requests " - "3.0.0. Please convert the object you've passed in ({!r}) to " - "a string or bytes object in the near future to avoid " - "problems.".format(username), - category=DeprecationWarning, - ) - username = str(username) - - if not isinstance(password, basestring): - warnings.warn( - "Non-string passwords will no longer be supported in Requests " - "3.0.0. Please convert the object you've passed in ({!r}) to " - "a string or bytes object in the near future to avoid " - "problems.".format(type(password)), - category=DeprecationWarning, - ) - password = str(password) - # -- End Removal -- - - if isinstance(username, str): - username = username.encode("latin1") - - if isinstance(password, str): - password = password.encode("latin1") - - authstr = "Basic " + to_native_string( - b64encode(b":".join((username, password))).strip() - ) - - return authstr - - -class AuthBase: - """Base class that all auth implementations derive from""" - - def __call__(self, r): - raise NotImplementedError("Auth hooks must be callable.") - - -class HTTPBasicAuth(AuthBase): - """Attaches HTTP Basic Authentication to the given Request object.""" - - def __init__(self, username, password): - self.username = username - self.password = password - - def __eq__(self, other): - return all( - [ - self.username == getattr(other, "username", None), - self.password == getattr(other, "password", None), - ] - ) - - def __ne__(self, other): - return not self == other - - def __call__(self, r): - r.headers["Authorization"] = _basic_auth_str(self.username, self.password) - return r - - -class HTTPProxyAuth(HTTPBasicAuth): - """Attaches HTTP Proxy Authentication to a given Request object.""" - - def __call__(self, r): - r.headers["Proxy-Authorization"] = _basic_auth_str(self.username, self.password) - return r - - -class HTTPDigestAuth(AuthBase): - """Attaches HTTP Digest Authentication to the given Request object.""" - - def __init__(self, username, password): - self.username = username - self.password = password - # Keep state in per-thread local storage - self._thread_local = threading.local() - - def init_per_thread_state(self): - # Ensure state is initialized just once per-thread - if not hasattr(self._thread_local, "init"): - self._thread_local.init = True - self._thread_local.last_nonce = "" - self._thread_local.nonce_count = 0 - self._thread_local.chal = {} - self._thread_local.pos = None - self._thread_local.num_401_calls = None - - def build_digest_header(self, method, url): - """ - :rtype: str - """ - - realm = self._thread_local.chal["realm"] - nonce = self._thread_local.chal["nonce"] - qop = self._thread_local.chal.get("qop") - algorithm = self._thread_local.chal.get("algorithm") - opaque = self._thread_local.chal.get("opaque") - hash_utf8 = None - - if algorithm is None: - _algorithm = "MD5" - else: - _algorithm = algorithm.upper() - # lambdas assume digest modules are imported at the top level - if _algorithm == "MD5" or _algorithm == "MD5-SESS": - - def md5_utf8(x): - if isinstance(x, str): - x = x.encode("utf-8") - return hashlib.md5(x).hexdigest() - - hash_utf8 = md5_utf8 - elif _algorithm == "SHA": - - def sha_utf8(x): - if isinstance(x, str): - x = x.encode("utf-8") - return hashlib.sha1(x).hexdigest() - - hash_utf8 = sha_utf8 - elif _algorithm == "SHA-256": - - def sha256_utf8(x): - if isinstance(x, str): - x = x.encode("utf-8") - return hashlib.sha256(x).hexdigest() - - hash_utf8 = sha256_utf8 - elif _algorithm == "SHA-512": - - def sha512_utf8(x): - if isinstance(x, str): - x = x.encode("utf-8") - return hashlib.sha512(x).hexdigest() - - hash_utf8 = sha512_utf8 - - KD = lambda s, d: hash_utf8(f"{s}:{d}") # noqa:E731 - - if hash_utf8 is None: - return None - - # XXX not implemented yet - entdig = None - p_parsed = urlparse(url) - #: path is request-uri defined in RFC 2616 which should not be empty - path = p_parsed.path or "/" - if p_parsed.query: - path += f"?{p_parsed.query}" - - A1 = f"{self.username}:{realm}:{self.password}" - A2 = f"{method}:{path}" - - HA1 = hash_utf8(A1) - HA2 = hash_utf8(A2) - - if nonce == self._thread_local.last_nonce: - self._thread_local.nonce_count += 1 - else: - self._thread_local.nonce_count = 1 - ncvalue = f"{self._thread_local.nonce_count:08x}" - s = str(self._thread_local.nonce_count).encode("utf-8") - s += nonce.encode("utf-8") - s += time.ctime().encode("utf-8") - s += os.urandom(8) - - cnonce = hashlib.sha1(s).hexdigest()[:16] - if _algorithm == "MD5-SESS": - HA1 = hash_utf8(f"{HA1}:{nonce}:{cnonce}") - - if not qop: - respdig = KD(HA1, f"{nonce}:{HA2}") - elif qop == "auth" or "auth" in qop.split(","): - noncebit = f"{nonce}:{ncvalue}:{cnonce}:auth:{HA2}" - respdig = KD(HA1, noncebit) - else: - # XXX handle auth-int. - return None - - self._thread_local.last_nonce = nonce - - # XXX should the partial digests be encoded too? - base = ( - f'username="{self.username}", realm="{realm}", nonce="{nonce}", ' - f'uri="{path}", response="{respdig}"' - ) - if opaque: - base += f', opaque="{opaque}"' - if algorithm: - base += f', algorithm="{algorithm}"' - if entdig: - base += f', digest="{entdig}"' - if qop: - base += f', qop="auth", nc={ncvalue}, cnonce="{cnonce}"' - - return f"Digest {base}" - - def handle_redirect(self, r, **kwargs): - """Reset num_401_calls counter on redirects.""" - if r.is_redirect: - self._thread_local.num_401_calls = 1 - - def handle_401(self, r, **kwargs): - """ - Takes the given response and tries digest-auth, if needed. - - :rtype: requests.Response - """ - - # If response is not 4xx, do not auth - # See https://github.com/psf/requests/issues/3772 - if not 400 <= r.status_code < 500: - self._thread_local.num_401_calls = 1 - return r - - if self._thread_local.pos is not None: - # Rewind the file position indicator of the body to where - # it was to resend the request. - r.request.body.seek(self._thread_local.pos) - s_auth = r.headers.get("www-authenticate", "") - - if "digest" in s_auth.lower() and self._thread_local.num_401_calls < 2: - - self._thread_local.num_401_calls += 1 - pat = re.compile(r"digest ", flags=re.IGNORECASE) - self._thread_local.chal = parse_dict_header(pat.sub("", s_auth, count=1)) - - # Consume content and release the original connection - # to allow our new request to reuse the same one. - r.content - r.close() - prep = r.request.copy() - extract_cookies_to_jar(prep._cookies, r.request, r.raw) - prep.prepare_cookies(prep._cookies) - - prep.headers["Authorization"] = self.build_digest_header( - prep.method, prep.url - ) - _r = r.connection.send(prep, **kwargs) - _r.history.append(r) - _r.request = prep - - return _r - - self._thread_local.num_401_calls = 1 - return r - - def __call__(self, r): - # Initialize per-thread state, if needed - self.init_per_thread_state() - # If we have a saved nonce, skip the 401 - if self._thread_local.last_nonce: - r.headers["Authorization"] = self.build_digest_header(r.method, r.url) - try: - self._thread_local.pos = r.body.tell() - except AttributeError: - # In the case of HTTPDigestAuth being reused and the body of - # the previous request was a file-like object, pos has the - # file position of the previous body. Ensure it's set to - # None. - self._thread_local.pos = None - r.register_hook("response", self.handle_401) - r.register_hook("response", self.handle_redirect) - self._thread_local.num_401_calls = 1 - - return r - - def __eq__(self, other): - return all( - [ - self.username == getattr(other, "username", None), - self.password == getattr(other, "password", None), - ] - ) - - def __ne__(self, other): - return not self == other diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py deleted file mode 100644 index 38696a1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -""" -requests.certs -~~~~~~~~~~~~~~ - -This module returns the preferred default CA certificate bundle. There is -only one — the one from the certifi package. - -If you are packaging Requests, e.g., for a Linux distribution or a managed -environment, you can change the definition of where() to return a separately -packaged CA bundle. -""" - -import os - -if "_PIP_STANDALONE_CERT" not in os.environ: - from pip._vendor.certifi import where -else: - def where(): - return os.environ["_PIP_STANDALONE_CERT"] - -if __name__ == "__main__": - print(where()) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py deleted file mode 100644 index 9ab2bb4..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -requests.compat -~~~~~~~~~~~~~~~ - -This module previously handled import compatibility issues -between Python 2 and Python 3. It remains for backwards -compatibility until the next major version. -""" - -from pip._vendor import chardet - -import sys - -# ------- -# Pythons -# ------- - -# Syntax sugar. -_ver = sys.version_info - -#: Python 2.x? -is_py2 = _ver[0] == 2 - -#: Python 3.x? -is_py3 = _ver[0] == 3 - -# Note: We've patched out simplejson support in pip because it prevents -# upgrading simplejson on Windows. -import json -from json import JSONDecodeError - -# Keep OrderedDict for backwards compatibility. -from collections import OrderedDict -from collections.abc import Callable, Mapping, MutableMapping -from http import cookiejar as cookielib -from http.cookies import Morsel -from io import StringIO - -# -------------- -# Legacy Imports -# -------------- -from urllib.parse import ( - quote, - quote_plus, - unquote, - unquote_plus, - urldefrag, - urlencode, - urljoin, - urlparse, - urlsplit, - urlunparse, -) -from urllib.request import ( - getproxies, - getproxies_environment, - parse_http_list, - proxy_bypass, - proxy_bypass_environment, -) - -builtin_str = str -str = str -bytes = bytes -basestring = (str, bytes) -numeric_types = (int, float) -integer_types = (int,) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py deleted file mode 100644 index bf54ab2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py +++ /dev/null @@ -1,561 +0,0 @@ -""" -requests.cookies -~~~~~~~~~~~~~~~~ - -Compatibility code to be able to use `cookielib.CookieJar` with requests. - -requests.utils imports from here, so be careful with imports. -""" - -import calendar -import copy -import time - -from ._internal_utils import to_native_string -from .compat import Morsel, MutableMapping, cookielib, urlparse, urlunparse - -try: - import threading -except ImportError: - import dummy_threading as threading - - -class MockRequest: - """Wraps a `requests.Request` to mimic a `urllib2.Request`. - - The code in `cookielib.CookieJar` expects this interface in order to correctly - manage cookie policies, i.e., determine whether a cookie can be set, given the - domains of the request and the cookie. - - The original request object is read-only. The client is responsible for collecting - the new headers via `get_new_headers()` and interpreting them appropriately. You - probably want `get_cookie_header`, defined below. - """ - - def __init__(self, request): - self._r = request - self._new_headers = {} - self.type = urlparse(self._r.url).scheme - - def get_type(self): - return self.type - - def get_host(self): - return urlparse(self._r.url).netloc - - def get_origin_req_host(self): - return self.get_host() - - def get_full_url(self): - # Only return the response's URL if the user hadn't set the Host - # header - if not self._r.headers.get("Host"): - return self._r.url - # If they did set it, retrieve it and reconstruct the expected domain - host = to_native_string(self._r.headers["Host"], encoding="utf-8") - parsed = urlparse(self._r.url) - # Reconstruct the URL as we expect it - return urlunparse( - [ - parsed.scheme, - host, - parsed.path, - parsed.params, - parsed.query, - parsed.fragment, - ] - ) - - def is_unverifiable(self): - return True - - def has_header(self, name): - return name in self._r.headers or name in self._new_headers - - def get_header(self, name, default=None): - return self._r.headers.get(name, self._new_headers.get(name, default)) - - def add_header(self, key, val): - """cookielib has no legitimate use for this method; add it back if you find one.""" - raise NotImplementedError( - "Cookie headers should be added with add_unredirected_header()" - ) - - def add_unredirected_header(self, name, value): - self._new_headers[name] = value - - def get_new_headers(self): - return self._new_headers - - @property - def unverifiable(self): - return self.is_unverifiable() - - @property - def origin_req_host(self): - return self.get_origin_req_host() - - @property - def host(self): - return self.get_host() - - -class MockResponse: - """Wraps a `httplib.HTTPMessage` to mimic a `urllib.addinfourl`. - - ...what? Basically, expose the parsed HTTP headers from the server response - the way `cookielib` expects to see them. - """ - - def __init__(self, headers): - """Make a MockResponse for `cookielib` to read. - - :param headers: a httplib.HTTPMessage or analogous carrying the headers - """ - self._headers = headers - - def info(self): - return self._headers - - def getheaders(self, name): - self._headers.getheaders(name) - - -def extract_cookies_to_jar(jar, request, response): - """Extract the cookies from the response into a CookieJar. - - :param jar: cookielib.CookieJar (not necessarily a RequestsCookieJar) - :param request: our own requests.Request object - :param response: urllib3.HTTPResponse object - """ - if not (hasattr(response, "_original_response") and response._original_response): - return - # the _original_response field is the wrapped httplib.HTTPResponse object, - req = MockRequest(request) - # pull out the HTTPMessage with the headers and put it in the mock: - res = MockResponse(response._original_response.msg) - jar.extract_cookies(res, req) - - -def get_cookie_header(jar, request): - """ - Produce an appropriate Cookie header string to be sent with `request`, or None. - - :rtype: str - """ - r = MockRequest(request) - jar.add_cookie_header(r) - return r.get_new_headers().get("Cookie") - - -def remove_cookie_by_name(cookiejar, name, domain=None, path=None): - """Unsets a cookie by name, by default over all domains and paths. - - Wraps CookieJar.clear(), is O(n). - """ - clearables = [] - for cookie in cookiejar: - if cookie.name != name: - continue - if domain is not None and domain != cookie.domain: - continue - if path is not None and path != cookie.path: - continue - clearables.append((cookie.domain, cookie.path, cookie.name)) - - for domain, path, name in clearables: - cookiejar.clear(domain, path, name) - - -class CookieConflictError(RuntimeError): - """There are two cookies that meet the criteria specified in the cookie jar. - Use .get and .set and include domain and path args in order to be more specific. - """ - - -class RequestsCookieJar(cookielib.CookieJar, MutableMapping): - """Compatibility class; is a cookielib.CookieJar, but exposes a dict - interface. - - This is the CookieJar we create by default for requests and sessions that - don't specify one, since some clients may expect response.cookies and - session.cookies to support dict operations. - - Requests does not use the dict interface internally; it's just for - compatibility with external client code. All requests code should work - out of the box with externally provided instances of ``CookieJar``, e.g. - ``LWPCookieJar`` and ``FileCookieJar``. - - Unlike a regular CookieJar, this class is pickleable. - - .. warning:: dictionary operations that are normally O(1) may be O(n). - """ - - def get(self, name, default=None, domain=None, path=None): - """Dict-like get() that also supports optional domain and path args in - order to resolve naming collisions from using one cookie jar over - multiple domains. - - .. warning:: operation is O(n), not O(1). - """ - try: - return self._find_no_duplicates(name, domain, path) - except KeyError: - return default - - def set(self, name, value, **kwargs): - """Dict-like set() that also supports optional domain and path args in - order to resolve naming collisions from using one cookie jar over - multiple domains. - """ - # support client code that unsets cookies by assignment of a None value: - if value is None: - remove_cookie_by_name( - self, name, domain=kwargs.get("domain"), path=kwargs.get("path") - ) - return - - if isinstance(value, Morsel): - c = morsel_to_cookie(value) - else: - c = create_cookie(name, value, **kwargs) - self.set_cookie(c) - return c - - def iterkeys(self): - """Dict-like iterkeys() that returns an iterator of names of cookies - from the jar. - - .. seealso:: itervalues() and iteritems(). - """ - for cookie in iter(self): - yield cookie.name - - def keys(self): - """Dict-like keys() that returns a list of names of cookies from the - jar. - - .. seealso:: values() and items(). - """ - return list(self.iterkeys()) - - def itervalues(self): - """Dict-like itervalues() that returns an iterator of values of cookies - from the jar. - - .. seealso:: iterkeys() and iteritems(). - """ - for cookie in iter(self): - yield cookie.value - - def values(self): - """Dict-like values() that returns a list of values of cookies from the - jar. - - .. seealso:: keys() and items(). - """ - return list(self.itervalues()) - - def iteritems(self): - """Dict-like iteritems() that returns an iterator of name-value tuples - from the jar. - - .. seealso:: iterkeys() and itervalues(). - """ - for cookie in iter(self): - yield cookie.name, cookie.value - - def items(self): - """Dict-like items() that returns a list of name-value tuples from the - jar. Allows client-code to call ``dict(RequestsCookieJar)`` and get a - vanilla python dict of key value pairs. - - .. seealso:: keys() and values(). - """ - return list(self.iteritems()) - - def list_domains(self): - """Utility method to list all the domains in the jar.""" - domains = [] - for cookie in iter(self): - if cookie.domain not in domains: - domains.append(cookie.domain) - return domains - - def list_paths(self): - """Utility method to list all the paths in the jar.""" - paths = [] - for cookie in iter(self): - if cookie.path not in paths: - paths.append(cookie.path) - return paths - - def multiple_domains(self): - """Returns True if there are multiple domains in the jar. - Returns False otherwise. - - :rtype: bool - """ - domains = [] - for cookie in iter(self): - if cookie.domain is not None and cookie.domain in domains: - return True - domains.append(cookie.domain) - return False # there is only one domain in jar - - def get_dict(self, domain=None, path=None): - """Takes as an argument an optional domain and path and returns a plain - old Python dict of name-value pairs of cookies that meet the - requirements. - - :rtype: dict - """ - dictionary = {} - for cookie in iter(self): - if (domain is None or cookie.domain == domain) and ( - path is None or cookie.path == path - ): - dictionary[cookie.name] = cookie.value - return dictionary - - def __contains__(self, name): - try: - return super().__contains__(name) - except CookieConflictError: - return True - - def __getitem__(self, name): - """Dict-like __getitem__() for compatibility with client code. Throws - exception if there are more than one cookie with name. In that case, - use the more explicit get() method instead. - - .. warning:: operation is O(n), not O(1). - """ - return self._find_no_duplicates(name) - - def __setitem__(self, name, value): - """Dict-like __setitem__ for compatibility with client code. Throws - exception if there is already a cookie of that name in the jar. In that - case, use the more explicit set() method instead. - """ - self.set(name, value) - - def __delitem__(self, name): - """Deletes a cookie given a name. Wraps ``cookielib.CookieJar``'s - ``remove_cookie_by_name()``. - """ - remove_cookie_by_name(self, name) - - def set_cookie(self, cookie, *args, **kwargs): - if ( - hasattr(cookie.value, "startswith") - and cookie.value.startswith('"') - and cookie.value.endswith('"') - ): - cookie.value = cookie.value.replace('\\"', "") - return super().set_cookie(cookie, *args, **kwargs) - - def update(self, other): - """Updates this jar with cookies from another CookieJar or dict-like""" - if isinstance(other, cookielib.CookieJar): - for cookie in other: - self.set_cookie(copy.copy(cookie)) - else: - super().update(other) - - def _find(self, name, domain=None, path=None): - """Requests uses this method internally to get cookie values. - - If there are conflicting cookies, _find arbitrarily chooses one. - See _find_no_duplicates if you want an exception thrown if there are - conflicting cookies. - - :param name: a string containing name of cookie - :param domain: (optional) string containing domain of cookie - :param path: (optional) string containing path of cookie - :return: cookie.value - """ - for cookie in iter(self): - if cookie.name == name: - if domain is None or cookie.domain == domain: - if path is None or cookie.path == path: - return cookie.value - - raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") - - def _find_no_duplicates(self, name, domain=None, path=None): - """Both ``__get_item__`` and ``get`` call this function: it's never - used elsewhere in Requests. - - :param name: a string containing name of cookie - :param domain: (optional) string containing domain of cookie - :param path: (optional) string containing path of cookie - :raises KeyError: if cookie is not found - :raises CookieConflictError: if there are multiple cookies - that match name and optionally domain and path - :return: cookie.value - """ - toReturn = None - for cookie in iter(self): - if cookie.name == name: - if domain is None or cookie.domain == domain: - if path is None or cookie.path == path: - if toReturn is not None: - # if there are multiple cookies that meet passed in criteria - raise CookieConflictError( - f"There are multiple cookies with name, {name!r}" - ) - # we will eventually return this as long as no cookie conflict - toReturn = cookie.value - - if toReturn: - return toReturn - raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") - - def __getstate__(self): - """Unlike a normal CookieJar, this class is pickleable.""" - state = self.__dict__.copy() - # remove the unpickleable RLock object - state.pop("_cookies_lock") - return state - - def __setstate__(self, state): - """Unlike a normal CookieJar, this class is pickleable.""" - self.__dict__.update(state) - if "_cookies_lock" not in self.__dict__: - self._cookies_lock = threading.RLock() - - def copy(self): - """Return a copy of this RequestsCookieJar.""" - new_cj = RequestsCookieJar() - new_cj.set_policy(self.get_policy()) - new_cj.update(self) - return new_cj - - def get_policy(self): - """Return the CookiePolicy instance used.""" - return self._policy - - -def _copy_cookie_jar(jar): - if jar is None: - return None - - if hasattr(jar, "copy"): - # We're dealing with an instance of RequestsCookieJar - return jar.copy() - # We're dealing with a generic CookieJar instance - new_jar = copy.copy(jar) - new_jar.clear() - for cookie in jar: - new_jar.set_cookie(copy.copy(cookie)) - return new_jar - - -def create_cookie(name, value, **kwargs): - """Make a cookie from underspecified parameters. - - By default, the pair of `name` and `value` will be set for the domain '' - and sent on every request (this is sometimes called a "supercookie"). - """ - result = { - "version": 0, - "name": name, - "value": value, - "port": None, - "domain": "", - "path": "/", - "secure": False, - "expires": None, - "discard": True, - "comment": None, - "comment_url": None, - "rest": {"HttpOnly": None}, - "rfc2109": False, - } - - badargs = set(kwargs) - set(result) - if badargs: - raise TypeError( - f"create_cookie() got unexpected keyword arguments: {list(badargs)}" - ) - - result.update(kwargs) - result["port_specified"] = bool(result["port"]) - result["domain_specified"] = bool(result["domain"]) - result["domain_initial_dot"] = result["domain"].startswith(".") - result["path_specified"] = bool(result["path"]) - - return cookielib.Cookie(**result) - - -def morsel_to_cookie(morsel): - """Convert a Morsel object into a Cookie containing the one k/v pair.""" - - expires = None - if morsel["max-age"]: - try: - expires = int(time.time() + int(morsel["max-age"])) - except ValueError: - raise TypeError(f"max-age: {morsel['max-age']} must be integer") - elif morsel["expires"]: - time_template = "%a, %d-%b-%Y %H:%M:%S GMT" - expires = calendar.timegm(time.strptime(morsel["expires"], time_template)) - return create_cookie( - comment=morsel["comment"], - comment_url=bool(morsel["comment"]), - discard=False, - domain=morsel["domain"], - expires=expires, - name=morsel.key, - path=morsel["path"], - port=None, - rest={"HttpOnly": morsel["httponly"]}, - rfc2109=False, - secure=bool(morsel["secure"]), - value=morsel.value, - version=morsel["version"] or 0, - ) - - -def cookiejar_from_dict(cookie_dict, cookiejar=None, overwrite=True): - """Returns a CookieJar from a key/value dictionary. - - :param cookie_dict: Dict of key/values to insert into CookieJar. - :param cookiejar: (optional) A cookiejar to add the cookies to. - :param overwrite: (optional) If False, will not replace cookies - already in the jar with new ones. - :rtype: CookieJar - """ - if cookiejar is None: - cookiejar = RequestsCookieJar() - - if cookie_dict is not None: - names_from_jar = [cookie.name for cookie in cookiejar] - for name in cookie_dict: - if overwrite or (name not in names_from_jar): - cookiejar.set_cookie(create_cookie(name, cookie_dict[name])) - - return cookiejar - - -def merge_cookies(cookiejar, cookies): - """Add cookies to cookiejar and returns a merged CookieJar. - - :param cookiejar: CookieJar object to add the cookies to. - :param cookies: Dictionary or CookieJar object to be added. - :rtype: CookieJar - """ - if not isinstance(cookiejar, cookielib.CookieJar): - raise ValueError("You can only merge into CookieJar") - - if isinstance(cookies, dict): - cookiejar = cookiejar_from_dict(cookies, cookiejar=cookiejar, overwrite=False) - elif isinstance(cookies, cookielib.CookieJar): - try: - cookiejar.update(cookies) - except AttributeError: - for cookie_in_jar in cookies: - cookiejar.set_cookie(cookie_in_jar) - - return cookiejar diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py deleted file mode 100644 index 168d073..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py +++ /dev/null @@ -1,141 +0,0 @@ -""" -requests.exceptions -~~~~~~~~~~~~~~~~~~~ - -This module contains the set of Requests' exceptions. -""" -from pip._vendor.urllib3.exceptions import HTTPError as BaseHTTPError - -from .compat import JSONDecodeError as CompatJSONDecodeError - - -class RequestException(IOError): - """There was an ambiguous exception that occurred while handling your - request. - """ - - def __init__(self, *args, **kwargs): - """Initialize RequestException with `request` and `response` objects.""" - response = kwargs.pop("response", None) - self.response = response - self.request = kwargs.pop("request", None) - if response is not None and not self.request and hasattr(response, "request"): - self.request = self.response.request - super().__init__(*args, **kwargs) - - -class InvalidJSONError(RequestException): - """A JSON error occurred.""" - - -class JSONDecodeError(InvalidJSONError, CompatJSONDecodeError): - """Couldn't decode the text into json""" - - def __init__(self, *args, **kwargs): - """ - Construct the JSONDecodeError instance first with all - args. Then use it's args to construct the IOError so that - the json specific args aren't used as IOError specific args - and the error message from JSONDecodeError is preserved. - """ - CompatJSONDecodeError.__init__(self, *args) - InvalidJSONError.__init__(self, *self.args, **kwargs) - - -class HTTPError(RequestException): - """An HTTP error occurred.""" - - -class ConnectionError(RequestException): - """A Connection error occurred.""" - - -class ProxyError(ConnectionError): - """A proxy error occurred.""" - - -class SSLError(ConnectionError): - """An SSL error occurred.""" - - -class Timeout(RequestException): - """The request timed out. - - Catching this error will catch both - :exc:`~requests.exceptions.ConnectTimeout` and - :exc:`~requests.exceptions.ReadTimeout` errors. - """ - - -class ConnectTimeout(ConnectionError, Timeout): - """The request timed out while trying to connect to the remote server. - - Requests that produced this error are safe to retry. - """ - - -class ReadTimeout(Timeout): - """The server did not send any data in the allotted amount of time.""" - - -class URLRequired(RequestException): - """A valid URL is required to make a request.""" - - -class TooManyRedirects(RequestException): - """Too many redirects.""" - - -class MissingSchema(RequestException, ValueError): - """The URL scheme (e.g. http or https) is missing.""" - - -class InvalidSchema(RequestException, ValueError): - """The URL scheme provided is either invalid or unsupported.""" - - -class InvalidURL(RequestException, ValueError): - """The URL provided was somehow invalid.""" - - -class InvalidHeader(RequestException, ValueError): - """The header value provided was somehow invalid.""" - - -class InvalidProxyURL(InvalidURL): - """The proxy URL provided is invalid.""" - - -class ChunkedEncodingError(RequestException): - """The server declared chunked encoding but sent an invalid chunk.""" - - -class ContentDecodingError(RequestException, BaseHTTPError): - """Failed to decode response content.""" - - -class StreamConsumedError(RequestException, TypeError): - """The content for this response was already consumed.""" - - -class RetryError(RequestException): - """Custom retries logic failed""" - - -class UnrewindableBodyError(RequestException): - """Requests encountered an error when trying to rewind a body.""" - - -# Warnings - - -class RequestsWarning(Warning): - """Base warning for Requests.""" - - -class FileModeWarning(RequestsWarning, DeprecationWarning): - """A file was opened in text mode, but Requests determined its binary length.""" - - -class RequestsDependencyWarning(RequestsWarning): - """An imported dependency doesn't match the expected version range.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py deleted file mode 100644 index 2d292c2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py +++ /dev/null @@ -1,131 +0,0 @@ -"""Module containing bug report helper(s).""" - -import json -import platform -import ssl -import sys - -from pip._vendor import idna -from pip._vendor import urllib3 - -from . import __version__ as requests_version - -charset_normalizer = None - -try: - from pip._vendor import chardet -except ImportError: - chardet = None - -try: - from pip._vendor.urllib3.contrib import pyopenssl -except ImportError: - pyopenssl = None - OpenSSL = None - cryptography = None -else: - import cryptography - import OpenSSL - - -def _implementation(): - """Return a dict with the Python implementation and version. - - Provide both the name and the version of the Python implementation - currently running. For example, on CPython 3.10.3 it will return - {'name': 'CPython', 'version': '3.10.3'}. - - This function works best on CPython and PyPy: in particular, it probably - doesn't work for Jython or IronPython. Future investigation should be done - to work out the correct shape of the code for those platforms. - """ - implementation = platform.python_implementation() - - if implementation == "CPython": - implementation_version = platform.python_version() - elif implementation == "PyPy": - implementation_version = "{}.{}.{}".format( - sys.pypy_version_info.major, - sys.pypy_version_info.minor, - sys.pypy_version_info.micro, - ) - if sys.pypy_version_info.releaselevel != "final": - implementation_version = "".join( - [implementation_version, sys.pypy_version_info.releaselevel] - ) - elif implementation == "Jython": - implementation_version = platform.python_version() # Complete Guess - elif implementation == "IronPython": - implementation_version = platform.python_version() # Complete Guess - else: - implementation_version = "Unknown" - - return {"name": implementation, "version": implementation_version} - - -def info(): - """Generate information for a bug report.""" - try: - platform_info = { - "system": platform.system(), - "release": platform.release(), - } - except OSError: - platform_info = { - "system": "Unknown", - "release": "Unknown", - } - - implementation_info = _implementation() - urllib3_info = {"version": urllib3.__version__} - charset_normalizer_info = {"version": None} - chardet_info = {"version": None} - if charset_normalizer: - charset_normalizer_info = {"version": charset_normalizer.__version__} - if chardet: - chardet_info = {"version": chardet.__version__} - - pyopenssl_info = { - "version": None, - "openssl_version": "", - } - if OpenSSL: - pyopenssl_info = { - "version": OpenSSL.__version__, - "openssl_version": f"{OpenSSL.SSL.OPENSSL_VERSION_NUMBER:x}", - } - cryptography_info = { - "version": getattr(cryptography, "__version__", ""), - } - idna_info = { - "version": getattr(idna, "__version__", ""), - } - - system_ssl = ssl.OPENSSL_VERSION_NUMBER - system_ssl_info = {"version": f"{system_ssl:x}" if system_ssl is not None else ""} - - return { - "platform": platform_info, - "implementation": implementation_info, - "system_ssl": system_ssl_info, - "using_pyopenssl": pyopenssl is not None, - "using_charset_normalizer": chardet is None, - "pyOpenSSL": pyopenssl_info, - "urllib3": urllib3_info, - "chardet": chardet_info, - "charset_normalizer": charset_normalizer_info, - "cryptography": cryptography_info, - "idna": idna_info, - "requests": { - "version": requests_version, - }, - } - - -def main(): - """Pretty-print the bug information as JSON.""" - print(json.dumps(info(), sort_keys=True, indent=2)) - - -if __name__ == "__main__": - main() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py deleted file mode 100644 index d181ba2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -requests.hooks -~~~~~~~~~~~~~~ - -This module provides the capabilities for the Requests hooks system. - -Available hooks: - -``response``: - The response generated from a Request. -""" -HOOKS = ["response"] - - -def default_hooks(): - return {event: [] for event in HOOKS} - - -# TODO: response is the only one - - -def dispatch_hook(key, hooks, hook_data, **kwargs): - """Dispatches a hook dictionary on a given piece of data.""" - hooks = hooks or {} - hooks = hooks.get(key) - if hooks: - if hasattr(hooks, "__call__"): - hooks = [hooks] - for hook in hooks: - _hook_data = hook(hook_data, **kwargs) - if _hook_data is not None: - hook_data = _hook_data - return hook_data diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py deleted file mode 100644 index 76e6f19..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py +++ /dev/null @@ -1,1034 +0,0 @@ -""" -requests.models -~~~~~~~~~~~~~~~ - -This module contains the primary objects that power Requests. -""" - -import datetime - -# Import encoding now, to avoid implicit import later. -# Implicit import within threads may cause LookupError when standard library is in a ZIP, -# such as in Embedded Python. See https://github.com/psf/requests/issues/3578. -import encodings.idna # noqa: F401 -from io import UnsupportedOperation - -from pip._vendor.urllib3.exceptions import ( - DecodeError, - LocationParseError, - ProtocolError, - ReadTimeoutError, - SSLError, -) -from pip._vendor.urllib3.fields import RequestField -from pip._vendor.urllib3.filepost import encode_multipart_formdata -from pip._vendor.urllib3.util import parse_url - -from ._internal_utils import to_native_string, unicode_is_ascii -from .auth import HTTPBasicAuth -from .compat import ( - Callable, - JSONDecodeError, - Mapping, - basestring, - builtin_str, - chardet, - cookielib, -) -from .compat import json as complexjson -from .compat import urlencode, urlsplit, urlunparse -from .cookies import _copy_cookie_jar, cookiejar_from_dict, get_cookie_header -from .exceptions import ( - ChunkedEncodingError, - ConnectionError, - ContentDecodingError, - HTTPError, - InvalidJSONError, - InvalidURL, -) -from .exceptions import JSONDecodeError as RequestsJSONDecodeError -from .exceptions import MissingSchema -from .exceptions import SSLError as RequestsSSLError -from .exceptions import StreamConsumedError -from .hooks import default_hooks -from .status_codes import codes -from .structures import CaseInsensitiveDict -from .utils import ( - check_header_validity, - get_auth_from_url, - guess_filename, - guess_json_utf, - iter_slices, - parse_header_links, - requote_uri, - stream_decode_response_unicode, - super_len, - to_key_val_list, -) - -#: The set of HTTP status codes that indicate an automatically -#: processable redirect. -REDIRECT_STATI = ( - codes.moved, # 301 - codes.found, # 302 - codes.other, # 303 - codes.temporary_redirect, # 307 - codes.permanent_redirect, # 308 -) - -DEFAULT_REDIRECT_LIMIT = 30 -CONTENT_CHUNK_SIZE = 10 * 1024 -ITER_CHUNK_SIZE = 512 - - -class RequestEncodingMixin: - @property - def path_url(self): - """Build the path URL to use.""" - - url = [] - - p = urlsplit(self.url) - - path = p.path - if not path: - path = "/" - - url.append(path) - - query = p.query - if query: - url.append("?") - url.append(query) - - return "".join(url) - - @staticmethod - def _encode_params(data): - """Encode parameters in a piece of data. - - Will successfully encode parameters when passed as a dict or a list of - 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary - if parameters are supplied as a dict. - """ - - if isinstance(data, (str, bytes)): - return data - elif hasattr(data, "read"): - return data - elif hasattr(data, "__iter__"): - result = [] - for k, vs in to_key_val_list(data): - if isinstance(vs, basestring) or not hasattr(vs, "__iter__"): - vs = [vs] - for v in vs: - if v is not None: - result.append( - ( - k.encode("utf-8") if isinstance(k, str) else k, - v.encode("utf-8") if isinstance(v, str) else v, - ) - ) - return urlencode(result, doseq=True) - else: - return data - - @staticmethod - def _encode_files(files, data): - """Build the body for a multipart/form-data request. - - Will successfully encode files when passed as a dict or a list of - tuples. Order is retained if data is a list of tuples but arbitrary - if parameters are supplied as a dict. - The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) - or 4-tuples (filename, fileobj, contentype, custom_headers). - """ - if not files: - raise ValueError("Files must be provided.") - elif isinstance(data, basestring): - raise ValueError("Data must not be a string.") - - new_fields = [] - fields = to_key_val_list(data or {}) - files = to_key_val_list(files or {}) - - for field, val in fields: - if isinstance(val, basestring) or not hasattr(val, "__iter__"): - val = [val] - for v in val: - if v is not None: - # Don't call str() on bytestrings: in Py3 it all goes wrong. - if not isinstance(v, bytes): - v = str(v) - - new_fields.append( - ( - field.decode("utf-8") - if isinstance(field, bytes) - else field, - v.encode("utf-8") if isinstance(v, str) else v, - ) - ) - - for (k, v) in files: - # support for explicit filename - ft = None - fh = None - if isinstance(v, (tuple, list)): - if len(v) == 2: - fn, fp = v - elif len(v) == 3: - fn, fp, ft = v - else: - fn, fp, ft, fh = v - else: - fn = guess_filename(v) or k - fp = v - - if isinstance(fp, (str, bytes, bytearray)): - fdata = fp - elif hasattr(fp, "read"): - fdata = fp.read() - elif fp is None: - continue - else: - fdata = fp - - rf = RequestField(name=k, data=fdata, filename=fn, headers=fh) - rf.make_multipart(content_type=ft) - new_fields.append(rf) - - body, content_type = encode_multipart_formdata(new_fields) - - return body, content_type - - -class RequestHooksMixin: - def register_hook(self, event, hook): - """Properly register a hook.""" - - if event not in self.hooks: - raise ValueError(f'Unsupported event specified, with event name "{event}"') - - if isinstance(hook, Callable): - self.hooks[event].append(hook) - elif hasattr(hook, "__iter__"): - self.hooks[event].extend(h for h in hook if isinstance(h, Callable)) - - def deregister_hook(self, event, hook): - """Deregister a previously registered hook. - Returns True if the hook existed, False if not. - """ - - try: - self.hooks[event].remove(hook) - return True - except ValueError: - return False - - -class Request(RequestHooksMixin): - """A user-created :class:`Request ` object. - - Used to prepare a :class:`PreparedRequest `, which is sent to the server. - - :param method: HTTP method to use. - :param url: URL to send. - :param headers: dictionary of headers to send. - :param files: dictionary of {filename: fileobject} files to multipart upload. - :param data: the body to attach to the request. If a dictionary or - list of tuples ``[(key, value)]`` is provided, form-encoding will - take place. - :param json: json for the body to attach to the request (if files or data is not specified). - :param params: URL parameters to append to the URL. If a dictionary or - list of tuples ``[(key, value)]`` is provided, form-encoding will - take place. - :param auth: Auth handler or (user, pass) tuple. - :param cookies: dictionary or CookieJar of cookies to attach to this request. - :param hooks: dictionary of callback hooks, for internal usage. - - Usage:: - - >>> import requests - >>> req = requests.Request('GET', 'https://httpbin.org/get') - >>> req.prepare() - - """ - - def __init__( - self, - method=None, - url=None, - headers=None, - files=None, - data=None, - params=None, - auth=None, - cookies=None, - hooks=None, - json=None, - ): - - # Default empty dicts for dict params. - data = [] if data is None else data - files = [] if files is None else files - headers = {} if headers is None else headers - params = {} if params is None else params - hooks = {} if hooks is None else hooks - - self.hooks = default_hooks() - for (k, v) in list(hooks.items()): - self.register_hook(event=k, hook=v) - - self.method = method - self.url = url - self.headers = headers - self.files = files - self.data = data - self.json = json - self.params = params - self.auth = auth - self.cookies = cookies - - def __repr__(self): - return f"" - - def prepare(self): - """Constructs a :class:`PreparedRequest ` for transmission and returns it.""" - p = PreparedRequest() - p.prepare( - method=self.method, - url=self.url, - headers=self.headers, - files=self.files, - data=self.data, - json=self.json, - params=self.params, - auth=self.auth, - cookies=self.cookies, - hooks=self.hooks, - ) - return p - - -class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): - """The fully mutable :class:`PreparedRequest ` object, - containing the exact bytes that will be sent to the server. - - Instances are generated from a :class:`Request ` object, and - should not be instantiated manually; doing so may produce undesirable - effects. - - Usage:: - - >>> import requests - >>> req = requests.Request('GET', 'https://httpbin.org/get') - >>> r = req.prepare() - >>> r - - - >>> s = requests.Session() - >>> s.send(r) - - """ - - def __init__(self): - #: HTTP verb to send to the server. - self.method = None - #: HTTP URL to send the request to. - self.url = None - #: dictionary of HTTP headers. - self.headers = None - # The `CookieJar` used to create the Cookie header will be stored here - # after prepare_cookies is called - self._cookies = None - #: request body to send to the server. - self.body = None - #: dictionary of callback hooks, for internal usage. - self.hooks = default_hooks() - #: integer denoting starting position of a readable file-like body. - self._body_position = None - - def prepare( - self, - method=None, - url=None, - headers=None, - files=None, - data=None, - params=None, - auth=None, - cookies=None, - hooks=None, - json=None, - ): - """Prepares the entire request with the given parameters.""" - - self.prepare_method(method) - self.prepare_url(url, params) - self.prepare_headers(headers) - self.prepare_cookies(cookies) - self.prepare_body(data, files, json) - self.prepare_auth(auth, url) - - # Note that prepare_auth must be last to enable authentication schemes - # such as OAuth to work on a fully prepared request. - - # This MUST go after prepare_auth. Authenticators could add a hook - self.prepare_hooks(hooks) - - def __repr__(self): - return f"" - - def copy(self): - p = PreparedRequest() - p.method = self.method - p.url = self.url - p.headers = self.headers.copy() if self.headers is not None else None - p._cookies = _copy_cookie_jar(self._cookies) - p.body = self.body - p.hooks = self.hooks - p._body_position = self._body_position - return p - - def prepare_method(self, method): - """Prepares the given HTTP method.""" - self.method = method - if self.method is not None: - self.method = to_native_string(self.method.upper()) - - @staticmethod - def _get_idna_encoded_host(host): - from pip._vendor import idna - - try: - host = idna.encode(host, uts46=True).decode("utf-8") - except idna.IDNAError: - raise UnicodeError - return host - - def prepare_url(self, url, params): - """Prepares the given HTTP URL.""" - #: Accept objects that have string representations. - #: We're unable to blindly call unicode/str functions - #: as this will include the bytestring indicator (b'') - #: on python 3.x. - #: https://github.com/psf/requests/pull/2238 - if isinstance(url, bytes): - url = url.decode("utf8") - else: - url = str(url) - - # Remove leading whitespaces from url - url = url.lstrip() - - # Don't do any URL preparation for non-HTTP schemes like `mailto`, - # `data` etc to work around exceptions from `url_parse`, which - # handles RFC 3986 only. - if ":" in url and not url.lower().startswith("http"): - self.url = url - return - - # Support for unicode domain names and paths. - try: - scheme, auth, host, port, path, query, fragment = parse_url(url) - except LocationParseError as e: - raise InvalidURL(*e.args) - - if not scheme: - raise MissingSchema( - f"Invalid URL {url!r}: No scheme supplied. " - f"Perhaps you meant https://{url}?" - ) - - if not host: - raise InvalidURL(f"Invalid URL {url!r}: No host supplied") - - # In general, we want to try IDNA encoding the hostname if the string contains - # non-ASCII characters. This allows users to automatically get the correct IDNA - # behaviour. For strings containing only ASCII characters, we need to also verify - # it doesn't start with a wildcard (*), before allowing the unencoded hostname. - if not unicode_is_ascii(host): - try: - host = self._get_idna_encoded_host(host) - except UnicodeError: - raise InvalidURL("URL has an invalid label.") - elif host.startswith(("*", ".")): - raise InvalidURL("URL has an invalid label.") - - # Carefully reconstruct the network location - netloc = auth or "" - if netloc: - netloc += "@" - netloc += host - if port: - netloc += f":{port}" - - # Bare domains aren't valid URLs. - if not path: - path = "/" - - if isinstance(params, (str, bytes)): - params = to_native_string(params) - - enc_params = self._encode_params(params) - if enc_params: - if query: - query = f"{query}&{enc_params}" - else: - query = enc_params - - url = requote_uri(urlunparse([scheme, netloc, path, None, query, fragment])) - self.url = url - - def prepare_headers(self, headers): - """Prepares the given HTTP headers.""" - - self.headers = CaseInsensitiveDict() - if headers: - for header in headers.items(): - # Raise exception on invalid header value. - check_header_validity(header) - name, value = header - self.headers[to_native_string(name)] = value - - def prepare_body(self, data, files, json=None): - """Prepares the given HTTP body data.""" - - # Check if file, fo, generator, iterator. - # If not, run through normal process. - - # Nottin' on you. - body = None - content_type = None - - if not data and json is not None: - # urllib3 requires a bytes-like body. Python 2's json.dumps - # provides this natively, but Python 3 gives a Unicode string. - content_type = "application/json" - - try: - body = complexjson.dumps(json, allow_nan=False) - except ValueError as ve: - raise InvalidJSONError(ve, request=self) - - if not isinstance(body, bytes): - body = body.encode("utf-8") - - is_stream = all( - [ - hasattr(data, "__iter__"), - not isinstance(data, (basestring, list, tuple, Mapping)), - ] - ) - - if is_stream: - try: - length = super_len(data) - except (TypeError, AttributeError, UnsupportedOperation): - length = None - - body = data - - if getattr(body, "tell", None) is not None: - # Record the current file position before reading. - # This will allow us to rewind a file in the event - # of a redirect. - try: - self._body_position = body.tell() - except OSError: - # This differentiates from None, allowing us to catch - # a failed `tell()` later when trying to rewind the body - self._body_position = object() - - if files: - raise NotImplementedError( - "Streamed bodies and files are mutually exclusive." - ) - - if length: - self.headers["Content-Length"] = builtin_str(length) - else: - self.headers["Transfer-Encoding"] = "chunked" - else: - # Multi-part file uploads. - if files: - (body, content_type) = self._encode_files(files, data) - else: - if data: - body = self._encode_params(data) - if isinstance(data, basestring) or hasattr(data, "read"): - content_type = None - else: - content_type = "application/x-www-form-urlencoded" - - self.prepare_content_length(body) - - # Add content-type if it wasn't explicitly provided. - if content_type and ("content-type" not in self.headers): - self.headers["Content-Type"] = content_type - - self.body = body - - def prepare_content_length(self, body): - """Prepare Content-Length header based on request method and body""" - if body is not None: - length = super_len(body) - if length: - # If length exists, set it. Otherwise, we fallback - # to Transfer-Encoding: chunked. - self.headers["Content-Length"] = builtin_str(length) - elif ( - self.method not in ("GET", "HEAD") - and self.headers.get("Content-Length") is None - ): - # Set Content-Length to 0 for methods that can have a body - # but don't provide one. (i.e. not GET or HEAD) - self.headers["Content-Length"] = "0" - - def prepare_auth(self, auth, url=""): - """Prepares the given HTTP auth data.""" - - # If no Auth is explicitly provided, extract it from the URL first. - if auth is None: - url_auth = get_auth_from_url(self.url) - auth = url_auth if any(url_auth) else None - - if auth: - if isinstance(auth, tuple) and len(auth) == 2: - # special-case basic HTTP auth - auth = HTTPBasicAuth(*auth) - - # Allow auth to make its changes. - r = auth(self) - - # Update self to reflect the auth changes. - self.__dict__.update(r.__dict__) - - # Recompute Content-Length - self.prepare_content_length(self.body) - - def prepare_cookies(self, cookies): - """Prepares the given HTTP cookie data. - - This function eventually generates a ``Cookie`` header from the - given cookies using cookielib. Due to cookielib's design, the header - will not be regenerated if it already exists, meaning this function - can only be called once for the life of the - :class:`PreparedRequest ` object. Any subsequent calls - to ``prepare_cookies`` will have no actual effect, unless the "Cookie" - header is removed beforehand. - """ - if isinstance(cookies, cookielib.CookieJar): - self._cookies = cookies - else: - self._cookies = cookiejar_from_dict(cookies) - - cookie_header = get_cookie_header(self._cookies, self) - if cookie_header is not None: - self.headers["Cookie"] = cookie_header - - def prepare_hooks(self, hooks): - """Prepares the given hooks.""" - # hooks can be passed as None to the prepare method and to this - # method. To prevent iterating over None, simply use an empty list - # if hooks is False-y - hooks = hooks or [] - for event in hooks: - self.register_hook(event, hooks[event]) - - -class Response: - """The :class:`Response ` object, which contains a - server's response to an HTTP request. - """ - - __attrs__ = [ - "_content", - "status_code", - "headers", - "url", - "history", - "encoding", - "reason", - "cookies", - "elapsed", - "request", - ] - - def __init__(self): - self._content = False - self._content_consumed = False - self._next = None - - #: Integer Code of responded HTTP Status, e.g. 404 or 200. - self.status_code = None - - #: Case-insensitive Dictionary of Response Headers. - #: For example, ``headers['content-encoding']`` will return the - #: value of a ``'Content-Encoding'`` response header. - self.headers = CaseInsensitiveDict() - - #: File-like object representation of response (for advanced usage). - #: Use of ``raw`` requires that ``stream=True`` be set on the request. - #: This requirement does not apply for use internally to Requests. - self.raw = None - - #: Final URL location of Response. - self.url = None - - #: Encoding to decode with when accessing r.text. - self.encoding = None - - #: A list of :class:`Response ` objects from - #: the history of the Request. Any redirect responses will end - #: up here. The list is sorted from the oldest to the most recent request. - self.history = [] - - #: Textual reason of responded HTTP Status, e.g. "Not Found" or "OK". - self.reason = None - - #: A CookieJar of Cookies the server sent back. - self.cookies = cookiejar_from_dict({}) - - #: The amount of time elapsed between sending the request - #: and the arrival of the response (as a timedelta). - #: This property specifically measures the time taken between sending - #: the first byte of the request and finishing parsing the headers. It - #: is therefore unaffected by consuming the response content or the - #: value of the ``stream`` keyword argument. - self.elapsed = datetime.timedelta(0) - - #: The :class:`PreparedRequest ` object to which this - #: is a response. - self.request = None - - def __enter__(self): - return self - - def __exit__(self, *args): - self.close() - - def __getstate__(self): - # Consume everything; accessing the content attribute makes - # sure the content has been fully read. - if not self._content_consumed: - self.content - - return {attr: getattr(self, attr, None) for attr in self.__attrs__} - - def __setstate__(self, state): - for name, value in state.items(): - setattr(self, name, value) - - # pickled objects do not have .raw - setattr(self, "_content_consumed", True) - setattr(self, "raw", None) - - def __repr__(self): - return f"" - - def __bool__(self): - """Returns True if :attr:`status_code` is less than 400. - - This attribute checks if the status code of the response is between - 400 and 600 to see if there was a client error or a server error. If - the status code, is between 200 and 400, this will return True. This - is **not** a check to see if the response code is ``200 OK``. - """ - return self.ok - - def __nonzero__(self): - """Returns True if :attr:`status_code` is less than 400. - - This attribute checks if the status code of the response is between - 400 and 600 to see if there was a client error or a server error. If - the status code, is between 200 and 400, this will return True. This - is **not** a check to see if the response code is ``200 OK``. - """ - return self.ok - - def __iter__(self): - """Allows you to use a response as an iterator.""" - return self.iter_content(128) - - @property - def ok(self): - """Returns True if :attr:`status_code` is less than 400, False if not. - - This attribute checks if the status code of the response is between - 400 and 600 to see if there was a client error or a server error. If - the status code is between 200 and 400, this will return True. This - is **not** a check to see if the response code is ``200 OK``. - """ - try: - self.raise_for_status() - except HTTPError: - return False - return True - - @property - def is_redirect(self): - """True if this Response is a well-formed HTTP redirect that could have - been processed automatically (by :meth:`Session.resolve_redirects`). - """ - return "location" in self.headers and self.status_code in REDIRECT_STATI - - @property - def is_permanent_redirect(self): - """True if this Response one of the permanent versions of redirect.""" - return "location" in self.headers and self.status_code in ( - codes.moved_permanently, - codes.permanent_redirect, - ) - - @property - def next(self): - """Returns a PreparedRequest for the next request in a redirect chain, if there is one.""" - return self._next - - @property - def apparent_encoding(self): - """The apparent encoding, provided by the charset_normalizer or chardet libraries.""" - return chardet.detect(self.content)["encoding"] - - def iter_content(self, chunk_size=1, decode_unicode=False): - """Iterates over the response data. When stream=True is set on the - request, this avoids reading the content at once into memory for - large responses. The chunk size is the number of bytes it should - read into memory. This is not necessarily the length of each item - returned as decoding can take place. - - chunk_size must be of type int or None. A value of None will - function differently depending on the value of `stream`. - stream=True will read data as it arrives in whatever size the - chunks are received. If stream=False, data is returned as - a single chunk. - - If decode_unicode is True, content will be decoded using the best - available encoding based on the response. - """ - - def generate(): - # Special case for urllib3. - if hasattr(self.raw, "stream"): - try: - yield from self.raw.stream(chunk_size, decode_content=True) - except ProtocolError as e: - raise ChunkedEncodingError(e) - except DecodeError as e: - raise ContentDecodingError(e) - except ReadTimeoutError as e: - raise ConnectionError(e) - except SSLError as e: - raise RequestsSSLError(e) - else: - # Standard file-like object. - while True: - chunk = self.raw.read(chunk_size) - if not chunk: - break - yield chunk - - self._content_consumed = True - - if self._content_consumed and isinstance(self._content, bool): - raise StreamConsumedError() - elif chunk_size is not None and not isinstance(chunk_size, int): - raise TypeError( - f"chunk_size must be an int, it is instead a {type(chunk_size)}." - ) - # simulate reading small chunks of the content - reused_chunks = iter_slices(self._content, chunk_size) - - stream_chunks = generate() - - chunks = reused_chunks if self._content_consumed else stream_chunks - - if decode_unicode: - chunks = stream_decode_response_unicode(chunks, self) - - return chunks - - def iter_lines( - self, chunk_size=ITER_CHUNK_SIZE, decode_unicode=False, delimiter=None - ): - """Iterates over the response data, one line at a time. When - stream=True is set on the request, this avoids reading the - content at once into memory for large responses. - - .. note:: This method is not reentrant safe. - """ - - pending = None - - for chunk in self.iter_content( - chunk_size=chunk_size, decode_unicode=decode_unicode - ): - - if pending is not None: - chunk = pending + chunk - - if delimiter: - lines = chunk.split(delimiter) - else: - lines = chunk.splitlines() - - if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: - pending = lines.pop() - else: - pending = None - - yield from lines - - if pending is not None: - yield pending - - @property - def content(self): - """Content of the response, in bytes.""" - - if self._content is False: - # Read the contents. - if self._content_consumed: - raise RuntimeError("The content for this response was already consumed") - - if self.status_code == 0 or self.raw is None: - self._content = None - else: - self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b"" - - self._content_consumed = True - # don't need to release the connection; that's been handled by urllib3 - # since we exhausted the data. - return self._content - - @property - def text(self): - """Content of the response, in unicode. - - If Response.encoding is None, encoding will be guessed using - ``charset_normalizer`` or ``chardet``. - - The encoding of the response content is determined based solely on HTTP - headers, following RFC 2616 to the letter. If you can take advantage of - non-HTTP knowledge to make a better guess at the encoding, you should - set ``r.encoding`` appropriately before accessing this property. - """ - - # Try charset from content-type - content = None - encoding = self.encoding - - if not self.content: - return "" - - # Fallback to auto-detected encoding. - if self.encoding is None: - encoding = self.apparent_encoding - - # Decode unicode from given encoding. - try: - content = str(self.content, encoding, errors="replace") - except (LookupError, TypeError): - # A LookupError is raised if the encoding was not found which could - # indicate a misspelling or similar mistake. - # - # A TypeError can be raised if encoding is None - # - # So we try blindly encoding. - content = str(self.content, errors="replace") - - return content - - def json(self, **kwargs): - r"""Returns the json-encoded content of a response, if any. - - :param \*\*kwargs: Optional arguments that ``json.loads`` takes. - :raises requests.exceptions.JSONDecodeError: If the response body does not - contain valid json. - """ - - if not self.encoding and self.content and len(self.content) > 3: - # No encoding set. JSON RFC 4627 section 3 states we should expect - # UTF-8, -16 or -32. Detect which one to use; If the detection or - # decoding fails, fall back to `self.text` (using charset_normalizer to make - # a best guess). - encoding = guess_json_utf(self.content) - if encoding is not None: - try: - return complexjson.loads(self.content.decode(encoding), **kwargs) - except UnicodeDecodeError: - # Wrong UTF codec detected; usually because it's not UTF-8 - # but some other 8-bit codec. This is an RFC violation, - # and the server didn't bother to tell us what codec *was* - # used. - pass - except JSONDecodeError as e: - raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) - - try: - return complexjson.loads(self.text, **kwargs) - except JSONDecodeError as e: - # Catch JSON-related errors and raise as requests.JSONDecodeError - # This aliases json.JSONDecodeError and simplejson.JSONDecodeError - raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) - - @property - def links(self): - """Returns the parsed header links of the response, if any.""" - - header = self.headers.get("link") - - resolved_links = {} - - if header: - links = parse_header_links(header) - - for link in links: - key = link.get("rel") or link.get("url") - resolved_links[key] = link - - return resolved_links - - def raise_for_status(self): - """Raises :class:`HTTPError`, if one occurred.""" - - http_error_msg = "" - if isinstance(self.reason, bytes): - # We attempt to decode utf-8 first because some servers - # choose to localize their reason strings. If the string - # isn't utf-8, we fall back to iso-8859-1 for all other - # encodings. (See PR #3538) - try: - reason = self.reason.decode("utf-8") - except UnicodeDecodeError: - reason = self.reason.decode("iso-8859-1") - else: - reason = self.reason - - if 400 <= self.status_code < 500: - http_error_msg = ( - f"{self.status_code} Client Error: {reason} for url: {self.url}" - ) - - elif 500 <= self.status_code < 600: - http_error_msg = ( - f"{self.status_code} Server Error: {reason} for url: {self.url}" - ) - - if http_error_msg: - raise HTTPError(http_error_msg, response=self) - - def close(self): - """Releases the connection back to the pool. Once this method has been - called the underlying ``raw`` object must not be accessed again. - - *Note: Should not normally need to be called explicitly.* - """ - if not self._content_consumed: - self.raw.close() - - release_conn = getattr(self.raw, "release_conn", None) - if release_conn is not None: - release_conn() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py deleted file mode 100644 index 9582fa7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py +++ /dev/null @@ -1,16 +0,0 @@ -import sys - -# This code exists for backwards compatibility reasons. -# I don't like it either. Just look the other way. :) - -for package in ('urllib3', 'idna', 'chardet'): - vendored_package = "pip._vendor." + package - locals()[package] = __import__(vendored_package) - # This traversal is apparently necessary such that the identities are - # preserved (requests.packages.urllib3.* is urllib3.*) - for mod in list(sys.modules): - if mod == vendored_package or mod.startswith(vendored_package + '.'): - unprefixed_mod = mod[len("pip._vendor."):] - sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] - -# Kinda cool, though, right? diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py deleted file mode 100644 index dbcf2a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py +++ /dev/null @@ -1,833 +0,0 @@ -""" -requests.sessions -~~~~~~~~~~~~~~~~~ - -This module provides a Session object to manage and persist settings across -requests (cookies, auth, proxies). -""" -import os -import sys -import time -from collections import OrderedDict -from datetime import timedelta - -from ._internal_utils import to_native_string -from .adapters import HTTPAdapter -from .auth import _basic_auth_str -from .compat import Mapping, cookielib, urljoin, urlparse -from .cookies import ( - RequestsCookieJar, - cookiejar_from_dict, - extract_cookies_to_jar, - merge_cookies, -) -from .exceptions import ( - ChunkedEncodingError, - ContentDecodingError, - InvalidSchema, - TooManyRedirects, -) -from .hooks import default_hooks, dispatch_hook - -# formerly defined here, reexposed here for backward compatibility -from .models import ( # noqa: F401 - DEFAULT_REDIRECT_LIMIT, - REDIRECT_STATI, - PreparedRequest, - Request, -) -from .status_codes import codes -from .structures import CaseInsensitiveDict -from .utils import ( # noqa: F401 - DEFAULT_PORTS, - default_headers, - get_auth_from_url, - get_environ_proxies, - get_netrc_auth, - requote_uri, - resolve_proxies, - rewind_body, - should_bypass_proxies, - to_key_val_list, -) - -# Preferred clock, based on which one is more accurate on a given system. -if sys.platform == "win32": - preferred_clock = time.perf_counter -else: - preferred_clock = time.time - - -def merge_setting(request_setting, session_setting, dict_class=OrderedDict): - """Determines appropriate setting for a given request, taking into account - the explicit setting on that request, and the setting in the session. If a - setting is a dictionary, they will be merged together using `dict_class` - """ - - if session_setting is None: - return request_setting - - if request_setting is None: - return session_setting - - # Bypass if not a dictionary (e.g. verify) - if not ( - isinstance(session_setting, Mapping) and isinstance(request_setting, Mapping) - ): - return request_setting - - merged_setting = dict_class(to_key_val_list(session_setting)) - merged_setting.update(to_key_val_list(request_setting)) - - # Remove keys that are set to None. Extract keys first to avoid altering - # the dictionary during iteration. - none_keys = [k for (k, v) in merged_setting.items() if v is None] - for key in none_keys: - del merged_setting[key] - - return merged_setting - - -def merge_hooks(request_hooks, session_hooks, dict_class=OrderedDict): - """Properly merges both requests and session hooks. - - This is necessary because when request_hooks == {'response': []}, the - merge breaks Session hooks entirely. - """ - if session_hooks is None or session_hooks.get("response") == []: - return request_hooks - - if request_hooks is None or request_hooks.get("response") == []: - return session_hooks - - return merge_setting(request_hooks, session_hooks, dict_class) - - -class SessionRedirectMixin: - def get_redirect_target(self, resp): - """Receives a Response. Returns a redirect URI or ``None``""" - # Due to the nature of how requests processes redirects this method will - # be called at least once upon the original response and at least twice - # on each subsequent redirect response (if any). - # If a custom mixin is used to handle this logic, it may be advantageous - # to cache the redirect location onto the response object as a private - # attribute. - if resp.is_redirect: - location = resp.headers["location"] - # Currently the underlying http module on py3 decode headers - # in latin1, but empirical evidence suggests that latin1 is very - # rarely used with non-ASCII characters in HTTP headers. - # It is more likely to get UTF8 header rather than latin1. - # This causes incorrect handling of UTF8 encoded location headers. - # To solve this, we re-encode the location in latin1. - location = location.encode("latin1") - return to_native_string(location, "utf8") - return None - - def should_strip_auth(self, old_url, new_url): - """Decide whether Authorization header should be removed when redirecting""" - old_parsed = urlparse(old_url) - new_parsed = urlparse(new_url) - if old_parsed.hostname != new_parsed.hostname: - return True - # Special case: allow http -> https redirect when using the standard - # ports. This isn't specified by RFC 7235, but is kept to avoid - # breaking backwards compatibility with older versions of requests - # that allowed any redirects on the same host. - if ( - old_parsed.scheme == "http" - and old_parsed.port in (80, None) - and new_parsed.scheme == "https" - and new_parsed.port in (443, None) - ): - return False - - # Handle default port usage corresponding to scheme. - changed_port = old_parsed.port != new_parsed.port - changed_scheme = old_parsed.scheme != new_parsed.scheme - default_port = (DEFAULT_PORTS.get(old_parsed.scheme, None), None) - if ( - not changed_scheme - and old_parsed.port in default_port - and new_parsed.port in default_port - ): - return False - - # Standard case: root URI must match - return changed_port or changed_scheme - - def resolve_redirects( - self, - resp, - req, - stream=False, - timeout=None, - verify=True, - cert=None, - proxies=None, - yield_requests=False, - **adapter_kwargs, - ): - """Receives a Response. Returns a generator of Responses or Requests.""" - - hist = [] # keep track of history - - url = self.get_redirect_target(resp) - previous_fragment = urlparse(req.url).fragment - while url: - prepared_request = req.copy() - - # Update history and keep track of redirects. - # resp.history must ignore the original request in this loop - hist.append(resp) - resp.history = hist[1:] - - try: - resp.content # Consume socket so it can be released - except (ChunkedEncodingError, ContentDecodingError, RuntimeError): - resp.raw.read(decode_content=False) - - if len(resp.history) >= self.max_redirects: - raise TooManyRedirects( - f"Exceeded {self.max_redirects} redirects.", response=resp - ) - - # Release the connection back into the pool. - resp.close() - - # Handle redirection without scheme (see: RFC 1808 Section 4) - if url.startswith("//"): - parsed_rurl = urlparse(resp.url) - url = ":".join([to_native_string(parsed_rurl.scheme), url]) - - # Normalize url case and attach previous fragment if needed (RFC 7231 7.1.2) - parsed = urlparse(url) - if parsed.fragment == "" and previous_fragment: - parsed = parsed._replace(fragment=previous_fragment) - elif parsed.fragment: - previous_fragment = parsed.fragment - url = parsed.geturl() - - # Facilitate relative 'location' headers, as allowed by RFC 7231. - # (e.g. '/path/to/resource' instead of 'http://domain.tld/path/to/resource') - # Compliant with RFC3986, we percent encode the url. - if not parsed.netloc: - url = urljoin(resp.url, requote_uri(url)) - else: - url = requote_uri(url) - - prepared_request.url = to_native_string(url) - - self.rebuild_method(prepared_request, resp) - - # https://github.com/psf/requests/issues/1084 - if resp.status_code not in ( - codes.temporary_redirect, - codes.permanent_redirect, - ): - # https://github.com/psf/requests/issues/3490 - purged_headers = ("Content-Length", "Content-Type", "Transfer-Encoding") - for header in purged_headers: - prepared_request.headers.pop(header, None) - prepared_request.body = None - - headers = prepared_request.headers - headers.pop("Cookie", None) - - # Extract any cookies sent on the response to the cookiejar - # in the new request. Because we've mutated our copied prepared - # request, use the old one that we haven't yet touched. - extract_cookies_to_jar(prepared_request._cookies, req, resp.raw) - merge_cookies(prepared_request._cookies, self.cookies) - prepared_request.prepare_cookies(prepared_request._cookies) - - # Rebuild auth and proxy information. - proxies = self.rebuild_proxies(prepared_request, proxies) - self.rebuild_auth(prepared_request, resp) - - # A failed tell() sets `_body_position` to `object()`. This non-None - # value ensures `rewindable` will be True, allowing us to raise an - # UnrewindableBodyError, instead of hanging the connection. - rewindable = prepared_request._body_position is not None and ( - "Content-Length" in headers or "Transfer-Encoding" in headers - ) - - # Attempt to rewind consumed file-like object. - if rewindable: - rewind_body(prepared_request) - - # Override the original request. - req = prepared_request - - if yield_requests: - yield req - else: - - resp = self.send( - req, - stream=stream, - timeout=timeout, - verify=verify, - cert=cert, - proxies=proxies, - allow_redirects=False, - **adapter_kwargs, - ) - - extract_cookies_to_jar(self.cookies, prepared_request, resp.raw) - - # extract redirect url, if any, for the next loop - url = self.get_redirect_target(resp) - yield resp - - def rebuild_auth(self, prepared_request, response): - """When being redirected we may want to strip authentication from the - request to avoid leaking credentials. This method intelligently removes - and reapplies authentication where possible to avoid credential loss. - """ - headers = prepared_request.headers - url = prepared_request.url - - if "Authorization" in headers and self.should_strip_auth( - response.request.url, url - ): - # If we get redirected to a new host, we should strip out any - # authentication headers. - del headers["Authorization"] - - # .netrc might have more auth for us on our new host. - new_auth = get_netrc_auth(url) if self.trust_env else None - if new_auth is not None: - prepared_request.prepare_auth(new_auth) - - def rebuild_proxies(self, prepared_request, proxies): - """This method re-evaluates the proxy configuration by considering the - environment variables. If we are redirected to a URL covered by - NO_PROXY, we strip the proxy configuration. Otherwise, we set missing - proxy keys for this URL (in case they were stripped by a previous - redirect). - - This method also replaces the Proxy-Authorization header where - necessary. - - :rtype: dict - """ - headers = prepared_request.headers - scheme = urlparse(prepared_request.url).scheme - new_proxies = resolve_proxies(prepared_request, proxies, self.trust_env) - - if "Proxy-Authorization" in headers: - del headers["Proxy-Authorization"] - - try: - username, password = get_auth_from_url(new_proxies[scheme]) - except KeyError: - username, password = None, None - - # urllib3 handles proxy authorization for us in the standard adapter. - # Avoid appending this to TLS tunneled requests where it may be leaked. - if not scheme.startswith('https') and username and password: - headers["Proxy-Authorization"] = _basic_auth_str(username, password) - - return new_proxies - - def rebuild_method(self, prepared_request, response): - """When being redirected we may want to change the method of the request - based on certain specs or browser behavior. - """ - method = prepared_request.method - - # https://tools.ietf.org/html/rfc7231#section-6.4.4 - if response.status_code == codes.see_other and method != "HEAD": - method = "GET" - - # Do what the browsers do, despite standards... - # First, turn 302s into GETs. - if response.status_code == codes.found and method != "HEAD": - method = "GET" - - # Second, if a POST is responded to with a 301, turn it into a GET. - # This bizarre behaviour is explained in Issue 1704. - if response.status_code == codes.moved and method == "POST": - method = "GET" - - prepared_request.method = method - - -class Session(SessionRedirectMixin): - """A Requests session. - - Provides cookie persistence, connection-pooling, and configuration. - - Basic Usage:: - - >>> import requests - >>> s = requests.Session() - >>> s.get('https://httpbin.org/get') - - - Or as a context manager:: - - >>> with requests.Session() as s: - ... s.get('https://httpbin.org/get') - - """ - - __attrs__ = [ - "headers", - "cookies", - "auth", - "proxies", - "hooks", - "params", - "verify", - "cert", - "adapters", - "stream", - "trust_env", - "max_redirects", - ] - - def __init__(self): - - #: A case-insensitive dictionary of headers to be sent on each - #: :class:`Request ` sent from this - #: :class:`Session `. - self.headers = default_headers() - - #: Default Authentication tuple or object to attach to - #: :class:`Request `. - self.auth = None - - #: Dictionary mapping protocol or protocol and host to the URL of the proxy - #: (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to - #: be used on each :class:`Request `. - self.proxies = {} - - #: Event-handling hooks. - self.hooks = default_hooks() - - #: Dictionary of querystring data to attach to each - #: :class:`Request `. The dictionary values may be lists for - #: representing multivalued query parameters. - self.params = {} - - #: Stream response content default. - self.stream = False - - #: SSL Verification default. - #: Defaults to `True`, requiring requests to verify the TLS certificate at the - #: remote end. - #: If verify is set to `False`, requests will accept any TLS certificate - #: presented by the server, and will ignore hostname mismatches and/or - #: expired certificates, which will make your application vulnerable to - #: man-in-the-middle (MitM) attacks. - #: Only set this to `False` for testing. - self.verify = True - - #: SSL client certificate default, if String, path to ssl client - #: cert file (.pem). If Tuple, ('cert', 'key') pair. - self.cert = None - - #: Maximum number of redirects allowed. If the request exceeds this - #: limit, a :class:`TooManyRedirects` exception is raised. - #: This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is - #: 30. - self.max_redirects = DEFAULT_REDIRECT_LIMIT - - #: Trust environment settings for proxy configuration, default - #: authentication and similar. - self.trust_env = True - - #: A CookieJar containing all currently outstanding cookies set on this - #: session. By default it is a - #: :class:`RequestsCookieJar `, but - #: may be any other ``cookielib.CookieJar`` compatible object. - self.cookies = cookiejar_from_dict({}) - - # Default connection adapters. - self.adapters = OrderedDict() - self.mount("https://", HTTPAdapter()) - self.mount("http://", HTTPAdapter()) - - def __enter__(self): - return self - - def __exit__(self, *args): - self.close() - - def prepare_request(self, request): - """Constructs a :class:`PreparedRequest ` for - transmission and returns it. The :class:`PreparedRequest` has settings - merged from the :class:`Request ` instance and those of the - :class:`Session`. - - :param request: :class:`Request` instance to prepare with this - session's settings. - :rtype: requests.PreparedRequest - """ - cookies = request.cookies or {} - - # Bootstrap CookieJar. - if not isinstance(cookies, cookielib.CookieJar): - cookies = cookiejar_from_dict(cookies) - - # Merge with session cookies - merged_cookies = merge_cookies( - merge_cookies(RequestsCookieJar(), self.cookies), cookies - ) - - # Set environment's basic authentication if not explicitly set. - auth = request.auth - if self.trust_env and not auth and not self.auth: - auth = get_netrc_auth(request.url) - - p = PreparedRequest() - p.prepare( - method=request.method.upper(), - url=request.url, - files=request.files, - data=request.data, - json=request.json, - headers=merge_setting( - request.headers, self.headers, dict_class=CaseInsensitiveDict - ), - params=merge_setting(request.params, self.params), - auth=merge_setting(auth, self.auth), - cookies=merged_cookies, - hooks=merge_hooks(request.hooks, self.hooks), - ) - return p - - def request( - self, - method, - url, - params=None, - data=None, - headers=None, - cookies=None, - files=None, - auth=None, - timeout=None, - allow_redirects=True, - proxies=None, - hooks=None, - stream=None, - verify=None, - cert=None, - json=None, - ): - """Constructs a :class:`Request `, prepares it and sends it. - Returns :class:`Response ` object. - - :param method: method for the new :class:`Request` object. - :param url: URL for the new :class:`Request` object. - :param params: (optional) Dictionary or bytes to be sent in the query - string for the :class:`Request`. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) json to send in the body of the - :class:`Request`. - :param headers: (optional) Dictionary of HTTP Headers to send with the - :class:`Request`. - :param cookies: (optional) Dict or CookieJar object to send with the - :class:`Request`. - :param files: (optional) Dictionary of ``'filename': file-like-objects`` - for multipart encoding upload. - :param auth: (optional) Auth tuple or callable to enable - Basic/Digest/Custom HTTP Auth. - :param timeout: (optional) How long to wait for the server to send - data before giving up, as a float, or a :ref:`(connect timeout, - read timeout) ` tuple. - :type timeout: float or tuple - :param allow_redirects: (optional) Set to True by default. - :type allow_redirects: bool - :param proxies: (optional) Dictionary mapping protocol or protocol and - hostname to the URL of the proxy. - :param stream: (optional) whether to immediately download the response - content. Defaults to ``False``. - :param verify: (optional) Either a boolean, in which case it controls whether we verify - the server's TLS certificate, or a string, in which case it must be a path - to a CA bundle to use. Defaults to ``True``. When set to - ``False``, requests will accept any TLS certificate presented by - the server, and will ignore hostname mismatches and/or expired - certificates, which will make your application vulnerable to - man-in-the-middle (MitM) attacks. Setting verify to ``False`` - may be useful during local development or testing. - :param cert: (optional) if String, path to ssl client cert file (.pem). - If Tuple, ('cert', 'key') pair. - :rtype: requests.Response - """ - # Create the Request. - req = Request( - method=method.upper(), - url=url, - headers=headers, - files=files, - data=data or {}, - json=json, - params=params or {}, - auth=auth, - cookies=cookies, - hooks=hooks, - ) - prep = self.prepare_request(req) - - proxies = proxies or {} - - settings = self.merge_environment_settings( - prep.url, proxies, stream, verify, cert - ) - - # Send the request. - send_kwargs = { - "timeout": timeout, - "allow_redirects": allow_redirects, - } - send_kwargs.update(settings) - resp = self.send(prep, **send_kwargs) - - return resp - - def get(self, url, **kwargs): - r"""Sends a GET request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - kwargs.setdefault("allow_redirects", True) - return self.request("GET", url, **kwargs) - - def options(self, url, **kwargs): - r"""Sends a OPTIONS request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - kwargs.setdefault("allow_redirects", True) - return self.request("OPTIONS", url, **kwargs) - - def head(self, url, **kwargs): - r"""Sends a HEAD request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - kwargs.setdefault("allow_redirects", False) - return self.request("HEAD", url, **kwargs) - - def post(self, url, data=None, json=None, **kwargs): - r"""Sends a POST request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param json: (optional) json to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - return self.request("POST", url, data=data, json=json, **kwargs) - - def put(self, url, data=None, **kwargs): - r"""Sends a PUT request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - return self.request("PUT", url, data=data, **kwargs) - - def patch(self, url, data=None, **kwargs): - r"""Sends a PATCH request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param data: (optional) Dictionary, list of tuples, bytes, or file-like - object to send in the body of the :class:`Request`. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - return self.request("PATCH", url, data=data, **kwargs) - - def delete(self, url, **kwargs): - r"""Sends a DELETE request. Returns :class:`Response` object. - - :param url: URL for the new :class:`Request` object. - :param \*\*kwargs: Optional arguments that ``request`` takes. - :rtype: requests.Response - """ - - return self.request("DELETE", url, **kwargs) - - def send(self, request, **kwargs): - """Send a given PreparedRequest. - - :rtype: requests.Response - """ - # Set defaults that the hooks can utilize to ensure they always have - # the correct parameters to reproduce the previous request. - kwargs.setdefault("stream", self.stream) - kwargs.setdefault("verify", self.verify) - kwargs.setdefault("cert", self.cert) - if "proxies" not in kwargs: - kwargs["proxies"] = resolve_proxies(request, self.proxies, self.trust_env) - - # It's possible that users might accidentally send a Request object. - # Guard against that specific failure case. - if isinstance(request, Request): - raise ValueError("You can only send PreparedRequests.") - - # Set up variables needed for resolve_redirects and dispatching of hooks - allow_redirects = kwargs.pop("allow_redirects", True) - stream = kwargs.get("stream") - hooks = request.hooks - - # Get the appropriate adapter to use - adapter = self.get_adapter(url=request.url) - - # Start time (approximately) of the request - start = preferred_clock() - - # Send the request - r = adapter.send(request, **kwargs) - - # Total elapsed time of the request (approximately) - elapsed = preferred_clock() - start - r.elapsed = timedelta(seconds=elapsed) - - # Response manipulation hooks - r = dispatch_hook("response", hooks, r, **kwargs) - - # Persist cookies - if r.history: - - # If the hooks create history then we want those cookies too - for resp in r.history: - extract_cookies_to_jar(self.cookies, resp.request, resp.raw) - - extract_cookies_to_jar(self.cookies, request, r.raw) - - # Resolve redirects if allowed. - if allow_redirects: - # Redirect resolving generator. - gen = self.resolve_redirects(r, request, **kwargs) - history = [resp for resp in gen] - else: - history = [] - - # Shuffle things around if there's history. - if history: - # Insert the first (original) request at the start - history.insert(0, r) - # Get the last request made - r = history.pop() - r.history = history - - # If redirects aren't being followed, store the response on the Request for Response.next(). - if not allow_redirects: - try: - r._next = next( - self.resolve_redirects(r, request, yield_requests=True, **kwargs) - ) - except StopIteration: - pass - - if not stream: - r.content - - return r - - def merge_environment_settings(self, url, proxies, stream, verify, cert): - """ - Check the environment and merge it with some settings. - - :rtype: dict - """ - # Gather clues from the surrounding environment. - if self.trust_env: - # Set environment's proxies. - no_proxy = proxies.get("no_proxy") if proxies is not None else None - env_proxies = get_environ_proxies(url, no_proxy=no_proxy) - for (k, v) in env_proxies.items(): - proxies.setdefault(k, v) - - # Look for requests environment configuration - # and be compatible with cURL. - if verify is True or verify is None: - verify = ( - os.environ.get("REQUESTS_CA_BUNDLE") - or os.environ.get("CURL_CA_BUNDLE") - or verify - ) - - # Merge all the kwargs. - proxies = merge_setting(proxies, self.proxies) - stream = merge_setting(stream, self.stream) - verify = merge_setting(verify, self.verify) - cert = merge_setting(cert, self.cert) - - return {"proxies": proxies, "stream": stream, "verify": verify, "cert": cert} - - def get_adapter(self, url): - """ - Returns the appropriate connection adapter for the given URL. - - :rtype: requests.adapters.BaseAdapter - """ - for (prefix, adapter) in self.adapters.items(): - - if url.lower().startswith(prefix.lower()): - return adapter - - # Nothing matches :-/ - raise InvalidSchema(f"No connection adapters were found for {url!r}") - - def close(self): - """Closes all adapters and as such the session""" - for v in self.adapters.values(): - v.close() - - def mount(self, prefix, adapter): - """Registers a connection adapter to a prefix. - - Adapters are sorted in descending order by prefix length. - """ - self.adapters[prefix] = adapter - keys_to_move = [k for k in self.adapters if len(k) < len(prefix)] - - for key in keys_to_move: - self.adapters[key] = self.adapters.pop(key) - - def __getstate__(self): - state = {attr: getattr(self, attr, None) for attr in self.__attrs__} - return state - - def __setstate__(self, state): - for attr, value in state.items(): - setattr(self, attr, value) - - -def session(): - """ - Returns a :class:`Session` for context-management. - - .. deprecated:: 1.0.0 - - This method has been deprecated since version 1.0.0 and is only kept for - backwards compatibility. New code should use :class:`~requests.sessions.Session` - to create a session. This may be removed at a future date. - - :rtype: Session - """ - return Session() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py deleted file mode 100644 index 4bd072b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py +++ /dev/null @@ -1,128 +0,0 @@ -r""" -The ``codes`` object defines a mapping from common names for HTTP statuses -to their numerical codes, accessible either as attributes or as dictionary -items. - -Example:: - - >>> import requests - >>> requests.codes['temporary_redirect'] - 307 - >>> requests.codes.teapot - 418 - >>> requests.codes['\o/'] - 200 - -Some codes have multiple names, and both upper- and lower-case versions of -the names are allowed. For example, ``codes.ok``, ``codes.OK``, and -``codes.okay`` all correspond to the HTTP status code 200. -""" - -from .structures import LookupDict - -_codes = { - # Informational. - 100: ("continue",), - 101: ("switching_protocols",), - 102: ("processing",), - 103: ("checkpoint",), - 122: ("uri_too_long", "request_uri_too_long"), - 200: ("ok", "okay", "all_ok", "all_okay", "all_good", "\\o/", "✓"), - 201: ("created",), - 202: ("accepted",), - 203: ("non_authoritative_info", "non_authoritative_information"), - 204: ("no_content",), - 205: ("reset_content", "reset"), - 206: ("partial_content", "partial"), - 207: ("multi_status", "multiple_status", "multi_stati", "multiple_stati"), - 208: ("already_reported",), - 226: ("im_used",), - # Redirection. - 300: ("multiple_choices",), - 301: ("moved_permanently", "moved", "\\o-"), - 302: ("found",), - 303: ("see_other", "other"), - 304: ("not_modified",), - 305: ("use_proxy",), - 306: ("switch_proxy",), - 307: ("temporary_redirect", "temporary_moved", "temporary"), - 308: ( - "permanent_redirect", - "resume_incomplete", - "resume", - ), # "resume" and "resume_incomplete" to be removed in 3.0 - # Client Error. - 400: ("bad_request", "bad"), - 401: ("unauthorized",), - 402: ("payment_required", "payment"), - 403: ("forbidden",), - 404: ("not_found", "-o-"), - 405: ("method_not_allowed", "not_allowed"), - 406: ("not_acceptable",), - 407: ("proxy_authentication_required", "proxy_auth", "proxy_authentication"), - 408: ("request_timeout", "timeout"), - 409: ("conflict",), - 410: ("gone",), - 411: ("length_required",), - 412: ("precondition_failed", "precondition"), - 413: ("request_entity_too_large",), - 414: ("request_uri_too_large",), - 415: ("unsupported_media_type", "unsupported_media", "media_type"), - 416: ( - "requested_range_not_satisfiable", - "requested_range", - "range_not_satisfiable", - ), - 417: ("expectation_failed",), - 418: ("im_a_teapot", "teapot", "i_am_a_teapot"), - 421: ("misdirected_request",), - 422: ("unprocessable_entity", "unprocessable"), - 423: ("locked",), - 424: ("failed_dependency", "dependency"), - 425: ("unordered_collection", "unordered"), - 426: ("upgrade_required", "upgrade"), - 428: ("precondition_required", "precondition"), - 429: ("too_many_requests", "too_many"), - 431: ("header_fields_too_large", "fields_too_large"), - 444: ("no_response", "none"), - 449: ("retry_with", "retry"), - 450: ("blocked_by_windows_parental_controls", "parental_controls"), - 451: ("unavailable_for_legal_reasons", "legal_reasons"), - 499: ("client_closed_request",), - # Server Error. - 500: ("internal_server_error", "server_error", "/o\\", "✗"), - 501: ("not_implemented",), - 502: ("bad_gateway",), - 503: ("service_unavailable", "unavailable"), - 504: ("gateway_timeout",), - 505: ("http_version_not_supported", "http_version"), - 506: ("variant_also_negotiates",), - 507: ("insufficient_storage",), - 509: ("bandwidth_limit_exceeded", "bandwidth"), - 510: ("not_extended",), - 511: ("network_authentication_required", "network_auth", "network_authentication"), -} - -codes = LookupDict(name="status_codes") - - -def _init(): - for code, titles in _codes.items(): - for title in titles: - setattr(codes, title, code) - if not title.startswith(("\\", "/")): - setattr(codes, title.upper(), code) - - def doc(code): - names = ", ".join(f"``{n}``" for n in _codes[code]) - return "* %d: %s" % (code, names) - - global __doc__ - __doc__ = ( - __doc__ + "\n" + "\n".join(doc(code) for code in sorted(_codes)) - if __doc__ is not None - else None - ) - - -_init() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py deleted file mode 100644 index 188e13e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -requests.structures -~~~~~~~~~~~~~~~~~~~ - -Data structures that power Requests. -""" - -from collections import OrderedDict - -from .compat import Mapping, MutableMapping - - -class CaseInsensitiveDict(MutableMapping): - """A case-insensitive ``dict``-like object. - - Implements all methods and operations of - ``MutableMapping`` as well as dict's ``copy``. Also - provides ``lower_items``. - - All keys are expected to be strings. The structure remembers the - case of the last key to be set, and ``iter(instance)``, - ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` - will contain case-sensitive keys. However, querying and contains - testing is case insensitive:: - - cid = CaseInsensitiveDict() - cid['Accept'] = 'application/json' - cid['aCCEPT'] == 'application/json' # True - list(cid) == ['Accept'] # True - - For example, ``headers['content-encoding']`` will return the - value of a ``'Content-Encoding'`` response header, regardless - of how the header name was originally stored. - - If the constructor, ``.update``, or equality comparison - operations are given keys that have equal ``.lower()``s, the - behavior is undefined. - """ - - def __init__(self, data=None, **kwargs): - self._store = OrderedDict() - if data is None: - data = {} - self.update(data, **kwargs) - - def __setitem__(self, key, value): - # Use the lowercased key for lookups, but store the actual - # key alongside the value. - self._store[key.lower()] = (key, value) - - def __getitem__(self, key): - return self._store[key.lower()][1] - - def __delitem__(self, key): - del self._store[key.lower()] - - def __iter__(self): - return (casedkey for casedkey, mappedvalue in self._store.values()) - - def __len__(self): - return len(self._store) - - def lower_items(self): - """Like iteritems(), but with all lowercase keys.""" - return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items()) - - def __eq__(self, other): - if isinstance(other, Mapping): - other = CaseInsensitiveDict(other) - else: - return NotImplemented - # Compare insensitively - return dict(self.lower_items()) == dict(other.lower_items()) - - # Copy is required - def copy(self): - return CaseInsensitiveDict(self._store.values()) - - def __repr__(self): - return str(dict(self.items())) - - -class LookupDict(dict): - """Dictionary lookup object.""" - - def __init__(self, name=None): - self.name = name - super().__init__() - - def __repr__(self): - return f"" - - def __getitem__(self, key): - # We allow fall-through here, so values default to None - - return self.__dict__.get(key, None) - - def get(self, key, default=None): - return self.__dict__.get(key, default) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py deleted file mode 100644 index 36607ed..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py +++ /dev/null @@ -1,1094 +0,0 @@ -""" -requests.utils -~~~~~~~~~~~~~~ - -This module provides utility functions that are used within Requests -that are also useful for external consumption. -""" - -import codecs -import contextlib -import io -import os -import re -import socket -import struct -import sys -import tempfile -import warnings -import zipfile -from collections import OrderedDict - -from pip._vendor.urllib3.util import make_headers, parse_url - -from . import certs -from .__version__ import __version__ - -# to_native_string is unused here, but imported here for backwards compatibility -from ._internal_utils import ( # noqa: F401 - _HEADER_VALIDATORS_BYTE, - _HEADER_VALIDATORS_STR, - HEADER_VALIDATORS, - to_native_string, -) -from .compat import ( - Mapping, - basestring, - bytes, - getproxies, - getproxies_environment, - integer_types, -) -from .compat import parse_http_list as _parse_list_header -from .compat import ( - proxy_bypass, - proxy_bypass_environment, - quote, - str, - unquote, - urlparse, - urlunparse, -) -from .cookies import cookiejar_from_dict -from .exceptions import ( - FileModeWarning, - InvalidHeader, - InvalidURL, - UnrewindableBodyError, -) -from .structures import CaseInsensitiveDict - -NETRC_FILES = (".netrc", "_netrc") - -DEFAULT_CA_BUNDLE_PATH = certs.where() - -DEFAULT_PORTS = {"http": 80, "https": 443} - -# Ensure that ', ' is used to preserve previous delimiter behavior. -DEFAULT_ACCEPT_ENCODING = ", ".join( - re.split(r",\s*", make_headers(accept_encoding=True)["accept-encoding"]) -) - - -if sys.platform == "win32": - # provide a proxy_bypass version on Windows without DNS lookups - - def proxy_bypass_registry(host): - try: - import winreg - except ImportError: - return False - - try: - internetSettings = winreg.OpenKey( - winreg.HKEY_CURRENT_USER, - r"Software\Microsoft\Windows\CurrentVersion\Internet Settings", - ) - # ProxyEnable could be REG_SZ or REG_DWORD, normalizing it - proxyEnable = int(winreg.QueryValueEx(internetSettings, "ProxyEnable")[0]) - # ProxyOverride is almost always a string - proxyOverride = winreg.QueryValueEx(internetSettings, "ProxyOverride")[0] - except (OSError, ValueError): - return False - if not proxyEnable or not proxyOverride: - return False - - # make a check value list from the registry entry: replace the - # '' string by the localhost entry and the corresponding - # canonical entry. - proxyOverride = proxyOverride.split(";") - # now check if we match one of the registry values. - for test in proxyOverride: - if test == "": - if "." not in host: - return True - test = test.replace(".", r"\.") # mask dots - test = test.replace("*", r".*") # change glob sequence - test = test.replace("?", r".") # change glob char - if re.match(test, host, re.I): - return True - return False - - def proxy_bypass(host): # noqa - """Return True, if the host should be bypassed. - - Checks proxy settings gathered from the environment, if specified, - or the registry. - """ - if getproxies_environment(): - return proxy_bypass_environment(host) - else: - return proxy_bypass_registry(host) - - -def dict_to_sequence(d): - """Returns an internal sequence dictionary update.""" - - if hasattr(d, "items"): - d = d.items() - - return d - - -def super_len(o): - total_length = None - current_position = 0 - - if hasattr(o, "__len__"): - total_length = len(o) - - elif hasattr(o, "len"): - total_length = o.len - - elif hasattr(o, "fileno"): - try: - fileno = o.fileno() - except (io.UnsupportedOperation, AttributeError): - # AttributeError is a surprising exception, seeing as how we've just checked - # that `hasattr(o, 'fileno')`. It happens for objects obtained via - # `Tarfile.extractfile()`, per issue 5229. - pass - else: - total_length = os.fstat(fileno).st_size - - # Having used fstat to determine the file length, we need to - # confirm that this file was opened up in binary mode. - if "b" not in o.mode: - warnings.warn( - ( - "Requests has determined the content-length for this " - "request using the binary size of the file: however, the " - "file has been opened in text mode (i.e. without the 'b' " - "flag in the mode). This may lead to an incorrect " - "content-length. In Requests 3.0, support will be removed " - "for files in text mode." - ), - FileModeWarning, - ) - - if hasattr(o, "tell"): - try: - current_position = o.tell() - except OSError: - # This can happen in some weird situations, such as when the file - # is actually a special file descriptor like stdin. In this - # instance, we don't know what the length is, so set it to zero and - # let requests chunk it instead. - if total_length is not None: - current_position = total_length - else: - if hasattr(o, "seek") and total_length is None: - # StringIO and BytesIO have seek but no usable fileno - try: - # seek to end of file - o.seek(0, 2) - total_length = o.tell() - - # seek back to current position to support - # partially read file-like objects - o.seek(current_position or 0) - except OSError: - total_length = 0 - - if total_length is None: - total_length = 0 - - return max(0, total_length - current_position) - - -def get_netrc_auth(url, raise_errors=False): - """Returns the Requests tuple auth for a given url from netrc.""" - - netrc_file = os.environ.get("NETRC") - if netrc_file is not None: - netrc_locations = (netrc_file,) - else: - netrc_locations = (f"~/{f}" for f in NETRC_FILES) - - try: - from netrc import NetrcParseError, netrc - - netrc_path = None - - for f in netrc_locations: - try: - loc = os.path.expanduser(f) - except KeyError: - # os.path.expanduser can fail when $HOME is undefined and - # getpwuid fails. See https://bugs.python.org/issue20164 & - # https://github.com/psf/requests/issues/1846 - return - - if os.path.exists(loc): - netrc_path = loc - break - - # Abort early if there isn't one. - if netrc_path is None: - return - - ri = urlparse(url) - - # Strip port numbers from netloc. This weird `if...encode`` dance is - # used for Python 3.2, which doesn't support unicode literals. - splitstr = b":" - if isinstance(url, str): - splitstr = splitstr.decode("ascii") - host = ri.netloc.split(splitstr)[0] - - try: - _netrc = netrc(netrc_path).authenticators(host) - if _netrc: - # Return with login / password - login_i = 0 if _netrc[0] else 1 - return (_netrc[login_i], _netrc[2]) - except (NetrcParseError, OSError): - # If there was a parsing error or a permissions issue reading the file, - # we'll just skip netrc auth unless explicitly asked to raise errors. - if raise_errors: - raise - - # App Engine hackiness. - except (ImportError, AttributeError): - pass - - -def guess_filename(obj): - """Tries to guess the filename of the given object.""" - name = getattr(obj, "name", None) - if name and isinstance(name, basestring) and name[0] != "<" and name[-1] != ">": - return os.path.basename(name) - - -def extract_zipped_paths(path): - """Replace nonexistent paths that look like they refer to a member of a zip - archive with the location of an extracted copy of the target, or else - just return the provided path unchanged. - """ - if os.path.exists(path): - # this is already a valid path, no need to do anything further - return path - - # find the first valid part of the provided path and treat that as a zip archive - # assume the rest of the path is the name of a member in the archive - archive, member = os.path.split(path) - while archive and not os.path.exists(archive): - archive, prefix = os.path.split(archive) - if not prefix: - # If we don't check for an empty prefix after the split (in other words, archive remains unchanged after the split), - # we _can_ end up in an infinite loop on a rare corner case affecting a small number of users - break - member = "/".join([prefix, member]) - - if not zipfile.is_zipfile(archive): - return path - - zip_file = zipfile.ZipFile(archive) - if member not in zip_file.namelist(): - return path - - # we have a valid zip archive and a valid member of that archive - tmp = tempfile.gettempdir() - extracted_path = os.path.join(tmp, member.split("/")[-1]) - if not os.path.exists(extracted_path): - # use read + write to avoid the creating nested folders, we only want the file, avoids mkdir racing condition - with atomic_open(extracted_path) as file_handler: - file_handler.write(zip_file.read(member)) - return extracted_path - - -@contextlib.contextmanager -def atomic_open(filename): - """Write a file to the disk in an atomic fashion""" - tmp_descriptor, tmp_name = tempfile.mkstemp(dir=os.path.dirname(filename)) - try: - with os.fdopen(tmp_descriptor, "wb") as tmp_handler: - yield tmp_handler - os.replace(tmp_name, filename) - except BaseException: - os.remove(tmp_name) - raise - - -def from_key_val_list(value): - """Take an object and test to see if it can be represented as a - dictionary. Unless it can not be represented as such, return an - OrderedDict, e.g., - - :: - - >>> from_key_val_list([('key', 'val')]) - OrderedDict([('key', 'val')]) - >>> from_key_val_list('string') - Traceback (most recent call last): - ... - ValueError: cannot encode objects that are not 2-tuples - >>> from_key_val_list({'key': 'val'}) - OrderedDict([('key', 'val')]) - - :rtype: OrderedDict - """ - if value is None: - return None - - if isinstance(value, (str, bytes, bool, int)): - raise ValueError("cannot encode objects that are not 2-tuples") - - return OrderedDict(value) - - -def to_key_val_list(value): - """Take an object and test to see if it can be represented as a - dictionary. If it can be, return a list of tuples, e.g., - - :: - - >>> to_key_val_list([('key', 'val')]) - [('key', 'val')] - >>> to_key_val_list({'key': 'val'}) - [('key', 'val')] - >>> to_key_val_list('string') - Traceback (most recent call last): - ... - ValueError: cannot encode objects that are not 2-tuples - - :rtype: list - """ - if value is None: - return None - - if isinstance(value, (str, bytes, bool, int)): - raise ValueError("cannot encode objects that are not 2-tuples") - - if isinstance(value, Mapping): - value = value.items() - - return list(value) - - -# From mitsuhiko/werkzeug (used with permission). -def parse_list_header(value): - """Parse lists as described by RFC 2068 Section 2. - - In particular, parse comma-separated lists where the elements of - the list may include quoted-strings. A quoted-string could - contain a comma. A non-quoted string could have quotes in the - middle. Quotes are removed automatically after parsing. - - It basically works like :func:`parse_set_header` just that items - may appear multiple times and case sensitivity is preserved. - - The return value is a standard :class:`list`: - - >>> parse_list_header('token, "quoted value"') - ['token', 'quoted value'] - - To create a header from the :class:`list` again, use the - :func:`dump_header` function. - - :param value: a string with a list header. - :return: :class:`list` - :rtype: list - """ - result = [] - for item in _parse_list_header(value): - if item[:1] == item[-1:] == '"': - item = unquote_header_value(item[1:-1]) - result.append(item) - return result - - -# From mitsuhiko/werkzeug (used with permission). -def parse_dict_header(value): - """Parse lists of key, value pairs as described by RFC 2068 Section 2 and - convert them into a python dict: - - >>> d = parse_dict_header('foo="is a fish", bar="as well"') - >>> type(d) is dict - True - >>> sorted(d.items()) - [('bar', 'as well'), ('foo', 'is a fish')] - - If there is no value for a key it will be `None`: - - >>> parse_dict_header('key_without_value') - {'key_without_value': None} - - To create a header from the :class:`dict` again, use the - :func:`dump_header` function. - - :param value: a string with a dict header. - :return: :class:`dict` - :rtype: dict - """ - result = {} - for item in _parse_list_header(value): - if "=" not in item: - result[item] = None - continue - name, value = item.split("=", 1) - if value[:1] == value[-1:] == '"': - value = unquote_header_value(value[1:-1]) - result[name] = value - return result - - -# From mitsuhiko/werkzeug (used with permission). -def unquote_header_value(value, is_filename=False): - r"""Unquotes a header value. (Reversal of :func:`quote_header_value`). - This does not use the real unquoting but what browsers are actually - using for quoting. - - :param value: the header value to unquote. - :rtype: str - """ - if value and value[0] == value[-1] == '"': - # this is not the real unquoting, but fixing this so that the - # RFC is met will result in bugs with internet explorer and - # probably some other browsers as well. IE for example is - # uploading files with "C:\foo\bar.txt" as filename - value = value[1:-1] - - # if this is a filename and the starting characters look like - # a UNC path, then just return the value without quotes. Using the - # replace sequence below on a UNC path has the effect of turning - # the leading double slash into a single slash and then - # _fix_ie_filename() doesn't work correctly. See #458. - if not is_filename or value[:2] != "\\\\": - return value.replace("\\\\", "\\").replace('\\"', '"') - return value - - -def dict_from_cookiejar(cj): - """Returns a key/value dictionary from a CookieJar. - - :param cj: CookieJar object to extract cookies from. - :rtype: dict - """ - - cookie_dict = {} - - for cookie in cj: - cookie_dict[cookie.name] = cookie.value - - return cookie_dict - - -def add_dict_to_cookiejar(cj, cookie_dict): - """Returns a CookieJar from a key/value dictionary. - - :param cj: CookieJar to insert cookies into. - :param cookie_dict: Dict of key/values to insert into CookieJar. - :rtype: CookieJar - """ - - return cookiejar_from_dict(cookie_dict, cj) - - -def get_encodings_from_content(content): - """Returns encodings from given content string. - - :param content: bytestring to extract encodings from. - """ - warnings.warn( - ( - "In requests 3.0, get_encodings_from_content will be removed. For " - "more information, please see the discussion on issue #2266. (This" - " warning should only appear once.)" - ), - DeprecationWarning, - ) - - charset_re = re.compile(r']', flags=re.I) - pragma_re = re.compile(r']', flags=re.I) - xml_re = re.compile(r'^<\?xml.*?encoding=["\']*(.+?)["\'>]') - - return ( - charset_re.findall(content) - + pragma_re.findall(content) - + xml_re.findall(content) - ) - - -def _parse_content_type_header(header): - """Returns content type and parameters from given header - - :param header: string - :return: tuple containing content type and dictionary of - parameters - """ - - tokens = header.split(";") - content_type, params = tokens[0].strip(), tokens[1:] - params_dict = {} - items_to_strip = "\"' " - - for param in params: - param = param.strip() - if param: - key, value = param, True - index_of_equals = param.find("=") - if index_of_equals != -1: - key = param[:index_of_equals].strip(items_to_strip) - value = param[index_of_equals + 1 :].strip(items_to_strip) - params_dict[key.lower()] = value - return content_type, params_dict - - -def get_encoding_from_headers(headers): - """Returns encodings from given HTTP Header Dict. - - :param headers: dictionary to extract encoding from. - :rtype: str - """ - - content_type = headers.get("content-type") - - if not content_type: - return None - - content_type, params = _parse_content_type_header(content_type) - - if "charset" in params: - return params["charset"].strip("'\"") - - if "text" in content_type: - return "ISO-8859-1" - - if "application/json" in content_type: - # Assume UTF-8 based on RFC 4627: https://www.ietf.org/rfc/rfc4627.txt since the charset was unset - return "utf-8" - - -def stream_decode_response_unicode(iterator, r): - """Stream decodes an iterator.""" - - if r.encoding is None: - yield from iterator - return - - decoder = codecs.getincrementaldecoder(r.encoding)(errors="replace") - for chunk in iterator: - rv = decoder.decode(chunk) - if rv: - yield rv - rv = decoder.decode(b"", final=True) - if rv: - yield rv - - -def iter_slices(string, slice_length): - """Iterate over slices of a string.""" - pos = 0 - if slice_length is None or slice_length <= 0: - slice_length = len(string) - while pos < len(string): - yield string[pos : pos + slice_length] - pos += slice_length - - -def get_unicode_from_response(r): - """Returns the requested content back in unicode. - - :param r: Response object to get unicode content from. - - Tried: - - 1. charset from content-type - 2. fall back and replace all unicode characters - - :rtype: str - """ - warnings.warn( - ( - "In requests 3.0, get_unicode_from_response will be removed. For " - "more information, please see the discussion on issue #2266. (This" - " warning should only appear once.)" - ), - DeprecationWarning, - ) - - tried_encodings = [] - - # Try charset from content-type - encoding = get_encoding_from_headers(r.headers) - - if encoding: - try: - return str(r.content, encoding) - except UnicodeError: - tried_encodings.append(encoding) - - # Fall back: - try: - return str(r.content, encoding, errors="replace") - except TypeError: - return r.content - - -# The unreserved URI characters (RFC 3986) -UNRESERVED_SET = frozenset( - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + "0123456789-._~" -) - - -def unquote_unreserved(uri): - """Un-escape any percent-escape sequences in a URI that are unreserved - characters. This leaves all reserved, illegal and non-ASCII bytes encoded. - - :rtype: str - """ - parts = uri.split("%") - for i in range(1, len(parts)): - h = parts[i][0:2] - if len(h) == 2 and h.isalnum(): - try: - c = chr(int(h, 16)) - except ValueError: - raise InvalidURL(f"Invalid percent-escape sequence: '{h}'") - - if c in UNRESERVED_SET: - parts[i] = c + parts[i][2:] - else: - parts[i] = f"%{parts[i]}" - else: - parts[i] = f"%{parts[i]}" - return "".join(parts) - - -def requote_uri(uri): - """Re-quote the given URI. - - This function passes the given URI through an unquote/quote cycle to - ensure that it is fully and consistently quoted. - - :rtype: str - """ - safe_with_percent = "!#$%&'()*+,/:;=?@[]~" - safe_without_percent = "!#$&'()*+,/:;=?@[]~" - try: - # Unquote only the unreserved characters - # Then quote only illegal characters (do not quote reserved, - # unreserved, or '%') - return quote(unquote_unreserved(uri), safe=safe_with_percent) - except InvalidURL: - # We couldn't unquote the given URI, so let's try quoting it, but - # there may be unquoted '%'s in the URI. We need to make sure they're - # properly quoted so they do not cause issues elsewhere. - return quote(uri, safe=safe_without_percent) - - -def address_in_network(ip, net): - """This function allows you to check if an IP belongs to a network subnet - - Example: returns True if ip = 192.168.1.1 and net = 192.168.1.0/24 - returns False if ip = 192.168.1.1 and net = 192.168.100.0/24 - - :rtype: bool - """ - ipaddr = struct.unpack("=L", socket.inet_aton(ip))[0] - netaddr, bits = net.split("/") - netmask = struct.unpack("=L", socket.inet_aton(dotted_netmask(int(bits))))[0] - network = struct.unpack("=L", socket.inet_aton(netaddr))[0] & netmask - return (ipaddr & netmask) == (network & netmask) - - -def dotted_netmask(mask): - """Converts mask from /xx format to xxx.xxx.xxx.xxx - - Example: if mask is 24 function returns 255.255.255.0 - - :rtype: str - """ - bits = 0xFFFFFFFF ^ (1 << 32 - mask) - 1 - return socket.inet_ntoa(struct.pack(">I", bits)) - - -def is_ipv4_address(string_ip): - """ - :rtype: bool - """ - try: - socket.inet_aton(string_ip) - except OSError: - return False - return True - - -def is_valid_cidr(string_network): - """ - Very simple check of the cidr format in no_proxy variable. - - :rtype: bool - """ - if string_network.count("/") == 1: - try: - mask = int(string_network.split("/")[1]) - except ValueError: - return False - - if mask < 1 or mask > 32: - return False - - try: - socket.inet_aton(string_network.split("/")[0]) - except OSError: - return False - else: - return False - return True - - -@contextlib.contextmanager -def set_environ(env_name, value): - """Set the environment variable 'env_name' to 'value' - - Save previous value, yield, and then restore the previous value stored in - the environment variable 'env_name'. - - If 'value' is None, do nothing""" - value_changed = value is not None - if value_changed: - old_value = os.environ.get(env_name) - os.environ[env_name] = value - try: - yield - finally: - if value_changed: - if old_value is None: - del os.environ[env_name] - else: - os.environ[env_name] = old_value - - -def should_bypass_proxies(url, no_proxy): - """ - Returns whether we should bypass proxies or not. - - :rtype: bool - """ - # Prioritize lowercase environment variables over uppercase - # to keep a consistent behaviour with other http projects (curl, wget). - def get_proxy(key): - return os.environ.get(key) or os.environ.get(key.upper()) - - # First check whether no_proxy is defined. If it is, check that the URL - # we're getting isn't in the no_proxy list. - no_proxy_arg = no_proxy - if no_proxy is None: - no_proxy = get_proxy("no_proxy") - parsed = urlparse(url) - - if parsed.hostname is None: - # URLs don't always have hostnames, e.g. file:/// urls. - return True - - if no_proxy: - # We need to check whether we match here. We need to see if we match - # the end of the hostname, both with and without the port. - no_proxy = (host for host in no_proxy.replace(" ", "").split(",") if host) - - if is_ipv4_address(parsed.hostname): - for proxy_ip in no_proxy: - if is_valid_cidr(proxy_ip): - if address_in_network(parsed.hostname, proxy_ip): - return True - elif parsed.hostname == proxy_ip: - # If no_proxy ip was defined in plain IP notation instead of cidr notation & - # matches the IP of the index - return True - else: - host_with_port = parsed.hostname - if parsed.port: - host_with_port += f":{parsed.port}" - - for host in no_proxy: - if parsed.hostname.endswith(host) or host_with_port.endswith(host): - # The URL does match something in no_proxy, so we don't want - # to apply the proxies on this URL. - return True - - with set_environ("no_proxy", no_proxy_arg): - # parsed.hostname can be `None` in cases such as a file URI. - try: - bypass = proxy_bypass(parsed.hostname) - except (TypeError, socket.gaierror): - bypass = False - - if bypass: - return True - - return False - - -def get_environ_proxies(url, no_proxy=None): - """ - Return a dict of environment proxies. - - :rtype: dict - """ - if should_bypass_proxies(url, no_proxy=no_proxy): - return {} - else: - return getproxies() - - -def select_proxy(url, proxies): - """Select a proxy for the url, if applicable. - - :param url: The url being for the request - :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs - """ - proxies = proxies or {} - urlparts = urlparse(url) - if urlparts.hostname is None: - return proxies.get(urlparts.scheme, proxies.get("all")) - - proxy_keys = [ - urlparts.scheme + "://" + urlparts.hostname, - urlparts.scheme, - "all://" + urlparts.hostname, - "all", - ] - proxy = None - for proxy_key in proxy_keys: - if proxy_key in proxies: - proxy = proxies[proxy_key] - break - - return proxy - - -def resolve_proxies(request, proxies, trust_env=True): - """This method takes proxy information from a request and configuration - input to resolve a mapping of target proxies. This will consider settings - such a NO_PROXY to strip proxy configurations. - - :param request: Request or PreparedRequest - :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs - :param trust_env: Boolean declaring whether to trust environment configs - - :rtype: dict - """ - proxies = proxies if proxies is not None else {} - url = request.url - scheme = urlparse(url).scheme - no_proxy = proxies.get("no_proxy") - new_proxies = proxies.copy() - - if trust_env and not should_bypass_proxies(url, no_proxy=no_proxy): - environ_proxies = get_environ_proxies(url, no_proxy=no_proxy) - - proxy = environ_proxies.get(scheme, environ_proxies.get("all")) - - if proxy: - new_proxies.setdefault(scheme, proxy) - return new_proxies - - -def default_user_agent(name="python-requests"): - """ - Return a string representing the default user agent. - - :rtype: str - """ - return f"{name}/{__version__}" - - -def default_headers(): - """ - :rtype: requests.structures.CaseInsensitiveDict - """ - return CaseInsensitiveDict( - { - "User-Agent": default_user_agent(), - "Accept-Encoding": DEFAULT_ACCEPT_ENCODING, - "Accept": "*/*", - "Connection": "keep-alive", - } - ) - - -def parse_header_links(value): - """Return a list of parsed link headers proxies. - - i.e. Link: ; rel=front; type="image/jpeg",; rel=back;type="image/jpeg" - - :rtype: list - """ - - links = [] - - replace_chars = " '\"" - - value = value.strip(replace_chars) - if not value: - return links - - for val in re.split(", *<", value): - try: - url, params = val.split(";", 1) - except ValueError: - url, params = val, "" - - link = {"url": url.strip("<> '\"")} - - for param in params.split(";"): - try: - key, value = param.split("=") - except ValueError: - break - - link[key.strip(replace_chars)] = value.strip(replace_chars) - - links.append(link) - - return links - - -# Null bytes; no need to recreate these on each call to guess_json_utf -_null = "\x00".encode("ascii") # encoding to ASCII for Python 3 -_null2 = _null * 2 -_null3 = _null * 3 - - -def guess_json_utf(data): - """ - :rtype: str - """ - # JSON always starts with two ASCII characters, so detection is as - # easy as counting the nulls and from their location and count - # determine the encoding. Also detect a BOM, if present. - sample = data[:4] - if sample in (codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE): - return "utf-32" # BOM included - if sample[:3] == codecs.BOM_UTF8: - return "utf-8-sig" # BOM included, MS style (discouraged) - if sample[:2] in (codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE): - return "utf-16" # BOM included - nullcount = sample.count(_null) - if nullcount == 0: - return "utf-8" - if nullcount == 2: - if sample[::2] == _null2: # 1st and 3rd are null - return "utf-16-be" - if sample[1::2] == _null2: # 2nd and 4th are null - return "utf-16-le" - # Did not detect 2 valid UTF-16 ascii-range characters - if nullcount == 3: - if sample[:3] == _null3: - return "utf-32-be" - if sample[1:] == _null3: - return "utf-32-le" - # Did not detect a valid UTF-32 ascii-range character - return None - - -def prepend_scheme_if_needed(url, new_scheme): - """Given a URL that may or may not have a scheme, prepend the given scheme. - Does not replace a present scheme with the one provided as an argument. - - :rtype: str - """ - parsed = parse_url(url) - scheme, auth, host, port, path, query, fragment = parsed - - # A defect in urlparse determines that there isn't a netloc present in some - # urls. We previously assumed parsing was overly cautious, and swapped the - # netloc and path. Due to a lack of tests on the original defect, this is - # maintained with parse_url for backwards compatibility. - netloc = parsed.netloc - if not netloc: - netloc, path = path, netloc - - if auth: - # parse_url doesn't provide the netloc with auth - # so we'll add it ourselves. - netloc = "@".join([auth, netloc]) - if scheme is None: - scheme = new_scheme - if path is None: - path = "" - - return urlunparse((scheme, netloc, path, "", query, fragment)) - - -def get_auth_from_url(url): - """Given a url with authentication components, extract them into a tuple of - username,password. - - :rtype: (str,str) - """ - parsed = urlparse(url) - - try: - auth = (unquote(parsed.username), unquote(parsed.password)) - except (AttributeError, TypeError): - auth = ("", "") - - return auth - - -def check_header_validity(header): - """Verifies that header parts don't contain leading whitespace - reserved characters, or return characters. - - :param header: tuple, in the format (name, value). - """ - name, value = header - _validate_header_part(header, name, 0) - _validate_header_part(header, value, 1) - - -def _validate_header_part(header, header_part, header_validator_index): - if isinstance(header_part, str): - validator = _HEADER_VALIDATORS_STR[header_validator_index] - elif isinstance(header_part, bytes): - validator = _HEADER_VALIDATORS_BYTE[header_validator_index] - else: - raise InvalidHeader( - f"Header part ({header_part!r}) from {header} " - f"must be of type str or bytes, not {type(header_part)}" - ) - - if not validator.match(header_part): - header_kind = "name" if header_validator_index == 0 else "value" - raise InvalidHeader( - f"Invalid leading whitespace, reserved character(s), or return" - f"character(s) in header {header_kind}: {header_part!r}" - ) - - -def urldefragauth(url): - """ - Given a url remove the fragment and the authentication part. - - :rtype: str - """ - scheme, netloc, path, params, query, fragment = urlparse(url) - - # see func:`prepend_scheme_if_needed` - if not netloc: - netloc, path = path, netloc - - netloc = netloc.rsplit("@", 1)[-1] - - return urlunparse((scheme, netloc, path, params, query, "")) - - -def rewind_body(prepared_request): - """Move file pointer back to its recorded starting position - so it can be read again on redirect. - """ - body_seek = getattr(prepared_request.body, "seek", None) - if body_seek is not None and isinstance( - prepared_request._body_position, integer_types - ): - try: - body_seek(prepared_request._body_position) - except OSError: - raise UnrewindableBodyError( - "An error occurred when rewinding request body for redirect." - ) - else: - raise UnrewindableBodyError("Unable to rewind request body for redirect.") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py deleted file mode 100644 index d92acc7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -__all__ = [ - "__version__", - "AbstractProvider", - "AbstractResolver", - "BaseReporter", - "InconsistentCandidate", - "Resolver", - "RequirementsConflicted", - "ResolutionError", - "ResolutionImpossible", - "ResolutionTooDeep", -] - -__version__ = "1.0.1" - - -from .providers import AbstractProvider, AbstractResolver -from .reporters import BaseReporter -from .resolvers import ( - InconsistentCandidate, - RequirementsConflicted, - ResolutionError, - ResolutionImpossible, - ResolutionTooDeep, - Resolver, -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9fea8e7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc deleted file mode 100644 index 7423793..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc deleted file mode 100644 index adbc83e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc deleted file mode 100644 index dd41133..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc deleted file mode 100644 index c9573eb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index bcdda16..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc deleted file mode 100644 index 8b7e982..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py deleted file mode 100644 index 1becc50..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +++ /dev/null @@ -1,6 +0,0 @@ -__all__ = ["Mapping", "Sequence"] - -try: - from collections.abc import Mapping, Sequence -except ImportError: - from collections import Mapping, Sequence diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py deleted file mode 100644 index e99d87e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py +++ /dev/null @@ -1,133 +0,0 @@ -class AbstractProvider(object): - """Delegate class to provide the required interface for the resolver.""" - - def identify(self, requirement_or_candidate): - """Given a requirement, return an identifier for it. - - This is used to identify a requirement, e.g. whether two requirements - should have their specifier parts merged. - """ - raise NotImplementedError - - def get_preference( - self, - identifier, - resolutions, - candidates, - information, - backtrack_causes, - ): - """Produce a sort key for given requirement based on preference. - - The preference is defined as "I think this requirement should be - resolved first". The lower the return value is, the more preferred - this group of arguments is. - - :param identifier: An identifier as returned by ``identify()``. This - identifies the dependency matches which should be returned. - :param resolutions: Mapping of candidates currently pinned by the - resolver. Each key is an identifier, and the value is a candidate. - The candidate may conflict with requirements from ``information``. - :param candidates: Mapping of each dependency's possible candidates. - Each value is an iterator of candidates. - :param information: Mapping of requirement information of each package. - Each value is an iterator of *requirement information*. - :param backtrack_causes: Sequence of requirement information that were - the requirements that caused the resolver to most recently backtrack. - - A *requirement information* instance is a named tuple with two members: - - * ``requirement`` specifies a requirement contributing to the current - list of candidates. - * ``parent`` specifies the candidate that provides (depended on) the - requirement, or ``None`` to indicate a root requirement. - - The preference could depend on various issues, including (not - necessarily in this order): - - * Is this package pinned in the current resolution result? - * How relaxed is the requirement? Stricter ones should probably be - worked on first? (I don't know, actually.) - * How many possibilities are there to satisfy this requirement? Those - with few left should likely be worked on first, I guess? - * Are there any known conflicts for this requirement? We should - probably work on those with the most known conflicts. - - A sortable value should be returned (this will be used as the ``key`` - parameter of the built-in sorting function). The smaller the value is, - the more preferred this requirement is (i.e. the sorting function - is called with ``reverse=False``). - """ - raise NotImplementedError - - def find_matches(self, identifier, requirements, incompatibilities): - """Find all possible candidates that satisfy the given constraints. - - :param identifier: An identifier as returned by ``identify()``. This - identifies the dependency matches of which should be returned. - :param requirements: A mapping of requirements that all returned - candidates must satisfy. Each key is an identifier, and the value - an iterator of requirements for that dependency. - :param incompatibilities: A mapping of known incompatibilities of - each dependency. Each key is an identifier, and the value an - iterator of incompatibilities known to the resolver. All - incompatibilities *must* be excluded from the return value. - - This should try to get candidates based on the requirements' types. - For VCS, local, and archive requirements, the one-and-only match is - returned, and for a "named" requirement, the index(es) should be - consulted to find concrete candidates for this requirement. - - The return value should produce candidates ordered by preference; the - most preferred candidate should come first. The return type may be one - of the following: - - * A callable that returns an iterator that yields candidates. - * An collection of candidates. - * An iterable of candidates. This will be consumed immediately into a - list of candidates. - """ - raise NotImplementedError - - def is_satisfied_by(self, requirement, candidate): - """Whether the given requirement can be satisfied by a candidate. - - The candidate is guaranteed to have been generated from the - requirement. - - A boolean should be returned to indicate whether ``candidate`` is a - viable solution to the requirement. - """ - raise NotImplementedError - - def get_dependencies(self, candidate): - """Get dependencies of a candidate. - - This should return a collection of requirements that `candidate` - specifies as its dependencies. - """ - raise NotImplementedError - - -class AbstractResolver(object): - """The thing that performs the actual resolution work.""" - - base_exception = Exception - - def __init__(self, provider, reporter): - self.provider = provider - self.reporter = reporter - - def resolve(self, requirements, **kwargs): - """Take a collection of constraints, spit out the resolution result. - - This returns a representation of the final resolution state, with one - guarenteed attribute ``mapping`` that contains resolved candidates as - values. The keys are their respective identifiers. - - :param requirements: A collection of constraints. - :param kwargs: Additional keyword arguments that subclasses may accept. - - :raises: ``self.base_exception`` or its subclass. - """ - raise NotImplementedError diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed deleted file mode 100644 index e69de29..0000000 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py deleted file mode 100644 index 688b5e1..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py +++ /dev/null @@ -1,43 +0,0 @@ -class BaseReporter(object): - """Delegate class to provider progress reporting for the resolver.""" - - def starting(self): - """Called before the resolution actually starts.""" - - def starting_round(self, index): - """Called before each round of resolution starts. - - The index is zero-based. - """ - - def ending_round(self, index, state): - """Called before each round of resolution ends. - - This is NOT called if the resolution ends at this round. Use `ending` - if you want to report finalization. The index is zero-based. - """ - - def ending(self, state): - """Called before the resolution ends successfully.""" - - def adding_requirement(self, requirement, parent): - """Called when adding a new requirement into the resolve criteria. - - :param requirement: The additional requirement to be applied to filter - the available candidaites. - :param parent: The candidate that requires ``requirement`` as a - dependency, or None if ``requirement`` is one of the root - requirements passed in from ``Resolver.resolve()``. - """ - - def resolving_conflicts(self, causes): - """Called when starting to attempt requirement conflict resolution. - - :param causes: The information on the collision that caused the backtracking. - """ - - def rejecting_candidate(self, criterion, candidate): - """Called when rejecting a candidate during backtracking.""" - - def pinning(self, candidate): - """Called when adding a candidate to the potential solution.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py deleted file mode 100644 index 2c3d0e3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py +++ /dev/null @@ -1,547 +0,0 @@ -import collections -import itertools -import operator - -from .providers import AbstractResolver -from .structs import DirectedGraph, IteratorMapping, build_iter_view - -RequirementInformation = collections.namedtuple( - "RequirementInformation", ["requirement", "parent"] -) - - -class ResolverException(Exception): - """A base class for all exceptions raised by this module. - - Exceptions derived by this class should all be handled in this module. Any - bubbling pass the resolver should be treated as a bug. - """ - - -class RequirementsConflicted(ResolverException): - def __init__(self, criterion): - super(RequirementsConflicted, self).__init__(criterion) - self.criterion = criterion - - def __str__(self): - return "Requirements conflict: {}".format( - ", ".join(repr(r) for r in self.criterion.iter_requirement()), - ) - - -class InconsistentCandidate(ResolverException): - def __init__(self, candidate, criterion): - super(InconsistentCandidate, self).__init__(candidate, criterion) - self.candidate = candidate - self.criterion = criterion - - def __str__(self): - return "Provided candidate {!r} does not satisfy {}".format( - self.candidate, - ", ".join(repr(r) for r in self.criterion.iter_requirement()), - ) - - -class Criterion(object): - """Representation of possible resolution results of a package. - - This holds three attributes: - - * `information` is a collection of `RequirementInformation` pairs. - Each pair is a requirement contributing to this criterion, and the - candidate that provides the requirement. - * `incompatibilities` is a collection of all known not-to-work candidates - to exclude from consideration. - * `candidates` is a collection containing all possible candidates deducted - from the union of contributing requirements and known incompatibilities. - It should never be empty, except when the criterion is an attribute of a - raised `RequirementsConflicted` (in which case it is always empty). - - .. note:: - This class is intended to be externally immutable. **Do not** mutate - any of its attribute containers. - """ - - def __init__(self, candidates, information, incompatibilities): - self.candidates = candidates - self.information = information - self.incompatibilities = incompatibilities - - def __repr__(self): - requirements = ", ".join( - "({!r}, via={!r})".format(req, parent) - for req, parent in self.information - ) - return "Criterion({})".format(requirements) - - def iter_requirement(self): - return (i.requirement for i in self.information) - - def iter_parent(self): - return (i.parent for i in self.information) - - -class ResolutionError(ResolverException): - pass - - -class ResolutionImpossible(ResolutionError): - def __init__(self, causes): - super(ResolutionImpossible, self).__init__(causes) - # causes is a list of RequirementInformation objects - self.causes = causes - - -class ResolutionTooDeep(ResolutionError): - def __init__(self, round_count): - super(ResolutionTooDeep, self).__init__(round_count) - self.round_count = round_count - - -# Resolution state in a round. -State = collections.namedtuple("State", "mapping criteria backtrack_causes") - - -class Resolution(object): - """Stateful resolution object. - - This is designed as a one-off object that holds information to kick start - the resolution process, and holds the results afterwards. - """ - - def __init__(self, provider, reporter): - self._p = provider - self._r = reporter - self._states = [] - - @property - def state(self): - try: - return self._states[-1] - except IndexError: - raise AttributeError("state") - - def _push_new_state(self): - """Push a new state into history. - - This new state will be used to hold resolution results of the next - coming round. - """ - base = self._states[-1] - state = State( - mapping=base.mapping.copy(), - criteria=base.criteria.copy(), - backtrack_causes=base.backtrack_causes[:], - ) - self._states.append(state) - - def _add_to_criteria(self, criteria, requirement, parent): - self._r.adding_requirement(requirement=requirement, parent=parent) - - identifier = self._p.identify(requirement_or_candidate=requirement) - criterion = criteria.get(identifier) - if criterion: - incompatibilities = list(criterion.incompatibilities) - else: - incompatibilities = [] - - matches = self._p.find_matches( - identifier=identifier, - requirements=IteratorMapping( - criteria, - operator.methodcaller("iter_requirement"), - {identifier: [requirement]}, - ), - incompatibilities=IteratorMapping( - criteria, - operator.attrgetter("incompatibilities"), - {identifier: incompatibilities}, - ), - ) - - if criterion: - information = list(criterion.information) - information.append(RequirementInformation(requirement, parent)) - else: - information = [RequirementInformation(requirement, parent)] - - criterion = Criterion( - candidates=build_iter_view(matches), - information=information, - incompatibilities=incompatibilities, - ) - if not criterion.candidates: - raise RequirementsConflicted(criterion) - criteria[identifier] = criterion - - def _remove_information_from_criteria(self, criteria, parents): - """Remove information from parents of criteria. - - Concretely, removes all values from each criterion's ``information`` - field that have one of ``parents`` as provider of the requirement. - - :param criteria: The criteria to update. - :param parents: Identifiers for which to remove information from all criteria. - """ - if not parents: - return - for key, criterion in criteria.items(): - criteria[key] = Criterion( - criterion.candidates, - [ - information - for information in criterion.information - if ( - information.parent is None - or self._p.identify(information.parent) not in parents - ) - ], - criterion.incompatibilities, - ) - - def _get_preference(self, name): - return self._p.get_preference( - identifier=name, - resolutions=self.state.mapping, - candidates=IteratorMapping( - self.state.criteria, - operator.attrgetter("candidates"), - ), - information=IteratorMapping( - self.state.criteria, - operator.attrgetter("information"), - ), - backtrack_causes=self.state.backtrack_causes, - ) - - def _is_current_pin_satisfying(self, name, criterion): - try: - current_pin = self.state.mapping[name] - except KeyError: - return False - return all( - self._p.is_satisfied_by(requirement=r, candidate=current_pin) - for r in criterion.iter_requirement() - ) - - def _get_updated_criteria(self, candidate): - criteria = self.state.criteria.copy() - for requirement in self._p.get_dependencies(candidate=candidate): - self._add_to_criteria(criteria, requirement, parent=candidate) - return criteria - - def _attempt_to_pin_criterion(self, name): - criterion = self.state.criteria[name] - - causes = [] - for candidate in criterion.candidates: - try: - criteria = self._get_updated_criteria(candidate) - except RequirementsConflicted as e: - self._r.rejecting_candidate(e.criterion, candidate) - causes.append(e.criterion) - continue - - # Check the newly-pinned candidate actually works. This should - # always pass under normal circumstances, but in the case of a - # faulty provider, we will raise an error to notify the implementer - # to fix find_matches() and/or is_satisfied_by(). - satisfied = all( - self._p.is_satisfied_by(requirement=r, candidate=candidate) - for r in criterion.iter_requirement() - ) - if not satisfied: - raise InconsistentCandidate(candidate, criterion) - - self._r.pinning(candidate=candidate) - self.state.criteria.update(criteria) - - # Put newly-pinned candidate at the end. This is essential because - # backtracking looks at this mapping to get the last pin. - self.state.mapping.pop(name, None) - self.state.mapping[name] = candidate - - return [] - - # All candidates tried, nothing works. This criterion is a dead - # end, signal for backtracking. - return causes - - def _backjump(self, causes): - """Perform backjumping. - - When we enter here, the stack is like this:: - - [ state Z ] - [ state Y ] - [ state X ] - .... earlier states are irrelevant. - - 1. No pins worked for Z, so it does not have a pin. - 2. We want to reset state Y to unpinned, and pin another candidate. - 3. State X holds what state Y was before the pin, but does not - have the incompatibility information gathered in state Y. - - Each iteration of the loop will: - - 1. Identify Z. The incompatibility is not always caused by the latest - state. For example, given three requirements A, B and C, with - dependencies A1, B1 and C1, where A1 and B1 are incompatible: the - last state might be related to C, so we want to discard the - previous state. - 2. Discard Z. - 3. Discard Y but remember its incompatibility information gathered - previously, and the failure we're dealing with right now. - 4. Push a new state Y' based on X, and apply the incompatibility - information from Y to Y'. - 5a. If this causes Y' to conflict, we need to backtrack again. Make Y' - the new Z and go back to step 2. - 5b. If the incompatibilities apply cleanly, end backtracking. - """ - incompatible_reqs = itertools.chain( - (c.parent for c in causes if c.parent is not None), - (c.requirement for c in causes), - ) - incompatible_deps = {self._p.identify(r) for r in incompatible_reqs} - while len(self._states) >= 3: - # Remove the state that triggered backtracking. - del self._states[-1] - - # Ensure to backtrack to a state that caused the incompatibility - incompatible_state = False - while not incompatible_state: - # Retrieve the last candidate pin and known incompatibilities. - try: - broken_state = self._states.pop() - name, candidate = broken_state.mapping.popitem() - except (IndexError, KeyError): - raise ResolutionImpossible(causes) - current_dependencies = { - self._p.identify(d) - for d in self._p.get_dependencies(candidate) - } - incompatible_state = not current_dependencies.isdisjoint( - incompatible_deps - ) - - incompatibilities_from_broken = [ - (k, list(v.incompatibilities)) - for k, v in broken_state.criteria.items() - ] - - # Also mark the newly known incompatibility. - incompatibilities_from_broken.append((name, [candidate])) - - # Create a new state from the last known-to-work one, and apply - # the previously gathered incompatibility information. - def _patch_criteria(): - for k, incompatibilities in incompatibilities_from_broken: - if not incompatibilities: - continue - try: - criterion = self.state.criteria[k] - except KeyError: - continue - matches = self._p.find_matches( - identifier=k, - requirements=IteratorMapping( - self.state.criteria, - operator.methodcaller("iter_requirement"), - ), - incompatibilities=IteratorMapping( - self.state.criteria, - operator.attrgetter("incompatibilities"), - {k: incompatibilities}, - ), - ) - candidates = build_iter_view(matches) - if not candidates: - return False - incompatibilities.extend(criterion.incompatibilities) - self.state.criteria[k] = Criterion( - candidates=candidates, - information=list(criterion.information), - incompatibilities=incompatibilities, - ) - return True - - self._push_new_state() - success = _patch_criteria() - - # It works! Let's work on this new state. - if success: - return True - - # State does not work after applying known incompatibilities. - # Try the still previous state. - - # No way to backtrack anymore. - return False - - def resolve(self, requirements, max_rounds): - if self._states: - raise RuntimeError("already resolved") - - self._r.starting() - - # Initialize the root state. - self._states = [ - State( - mapping=collections.OrderedDict(), - criteria={}, - backtrack_causes=[], - ) - ] - for r in requirements: - try: - self._add_to_criteria(self.state.criteria, r, parent=None) - except RequirementsConflicted as e: - raise ResolutionImpossible(e.criterion.information) - - # The root state is saved as a sentinel so the first ever pin can have - # something to backtrack to if it fails. The root state is basically - # pinning the virtual "root" package in the graph. - self._push_new_state() - - for round_index in range(max_rounds): - self._r.starting_round(index=round_index) - - unsatisfied_names = [ - key - for key, criterion in self.state.criteria.items() - if not self._is_current_pin_satisfying(key, criterion) - ] - - # All criteria are accounted for. Nothing more to pin, we are done! - if not unsatisfied_names: - self._r.ending(state=self.state) - return self.state - - # keep track of satisfied names to calculate diff after pinning - satisfied_names = set(self.state.criteria.keys()) - set( - unsatisfied_names - ) - - # Choose the most preferred unpinned criterion to try. - name = min(unsatisfied_names, key=self._get_preference) - failure_causes = self._attempt_to_pin_criterion(name) - - if failure_causes: - causes = [i for c in failure_causes for i in c.information] - # Backjump if pinning fails. The backjump process puts us in - # an unpinned state, so we can work on it in the next round. - self._r.resolving_conflicts(causes=causes) - success = self._backjump(causes) - self.state.backtrack_causes[:] = causes - - # Dead ends everywhere. Give up. - if not success: - raise ResolutionImpossible(self.state.backtrack_causes) - else: - # discard as information sources any invalidated names - # (unsatisfied names that were previously satisfied) - newly_unsatisfied_names = { - key - for key, criterion in self.state.criteria.items() - if key in satisfied_names - and not self._is_current_pin_satisfying(key, criterion) - } - self._remove_information_from_criteria( - self.state.criteria, newly_unsatisfied_names - ) - # Pinning was successful. Push a new state to do another pin. - self._push_new_state() - - self._r.ending_round(index=round_index, state=self.state) - - raise ResolutionTooDeep(max_rounds) - - -def _has_route_to_root(criteria, key, all_keys, connected): - if key in connected: - return True - if key not in criteria: - return False - for p in criteria[key].iter_parent(): - try: - pkey = all_keys[id(p)] - except KeyError: - continue - if pkey in connected: - connected.add(key) - return True - if _has_route_to_root(criteria, pkey, all_keys, connected): - connected.add(key) - return True - return False - - -Result = collections.namedtuple("Result", "mapping graph criteria") - - -def _build_result(state): - mapping = state.mapping - all_keys = {id(v): k for k, v in mapping.items()} - all_keys[id(None)] = None - - graph = DirectedGraph() - graph.add(None) # Sentinel as root dependencies' parent. - - connected = {None} - for key, criterion in state.criteria.items(): - if not _has_route_to_root(state.criteria, key, all_keys, connected): - continue - if key not in graph: - graph.add(key) - for p in criterion.iter_parent(): - try: - pkey = all_keys[id(p)] - except KeyError: - continue - if pkey not in graph: - graph.add(pkey) - graph.connect(pkey, key) - - return Result( - mapping={k: v for k, v in mapping.items() if k in connected}, - graph=graph, - criteria=state.criteria, - ) - - -class Resolver(AbstractResolver): - """The thing that performs the actual resolution work.""" - - base_exception = ResolverException - - def resolve(self, requirements, max_rounds=100): - """Take a collection of constraints, spit out the resolution result. - - The return value is a representation to the final resolution result. It - is a tuple subclass with three public members: - - * `mapping`: A dict of resolved candidates. Each key is an identifier - of a requirement (as returned by the provider's `identify` method), - and the value is the resolved candidate. - * `graph`: A `DirectedGraph` instance representing the dependency tree. - The vertices are keys of `mapping`, and each edge represents *why* - a particular package is included. A special vertex `None` is - included to represent parents of user-supplied requirements. - * `criteria`: A dict of "criteria" that hold detailed information on - how edges in the graph are derived. Each key is an identifier of a - requirement, and the value is a `Criterion` instance. - - The following exceptions may be raised if a resolution cannot be found: - - * `ResolutionImpossible`: A resolution cannot be found for the given - combination of requirements. The `causes` attribute of the - exception is a list of (requirement, parent), giving the - requirements that could not be satisfied. - * `ResolutionTooDeep`: The dependency tree is too deeply nested and - the resolver gave up. This is usually caused by a circular - dependency, but you can try to resolve this by increasing the - `max_rounds` argument. - """ - resolution = Resolution(self.provider, self.reporter) - state = resolution.resolve(requirements, max_rounds=max_rounds) - return _build_result(state) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py deleted file mode 100644 index 359a34f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py +++ /dev/null @@ -1,170 +0,0 @@ -import itertools - -from .compat import collections_abc - - -class DirectedGraph(object): - """A graph structure with directed edges.""" - - def __init__(self): - self._vertices = set() - self._forwards = {} # -> Set[] - self._backwards = {} # -> Set[] - - def __iter__(self): - return iter(self._vertices) - - def __len__(self): - return len(self._vertices) - - def __contains__(self, key): - return key in self._vertices - - def copy(self): - """Return a shallow copy of this graph.""" - other = DirectedGraph() - other._vertices = set(self._vertices) - other._forwards = {k: set(v) for k, v in self._forwards.items()} - other._backwards = {k: set(v) for k, v in self._backwards.items()} - return other - - def add(self, key): - """Add a new vertex to the graph.""" - if key in self._vertices: - raise ValueError("vertex exists") - self._vertices.add(key) - self._forwards[key] = set() - self._backwards[key] = set() - - def remove(self, key): - """Remove a vertex from the graph, disconnecting all edges from/to it.""" - self._vertices.remove(key) - for f in self._forwards.pop(key): - self._backwards[f].remove(key) - for t in self._backwards.pop(key): - self._forwards[t].remove(key) - - def connected(self, f, t): - return f in self._backwards[t] and t in self._forwards[f] - - def connect(self, f, t): - """Connect two existing vertices. - - Nothing happens if the vertices are already connected. - """ - if t not in self._vertices: - raise KeyError(t) - self._forwards[f].add(t) - self._backwards[t].add(f) - - def iter_edges(self): - for f, children in self._forwards.items(): - for t in children: - yield f, t - - def iter_children(self, key): - return iter(self._forwards[key]) - - def iter_parents(self, key): - return iter(self._backwards[key]) - - -class IteratorMapping(collections_abc.Mapping): - def __init__(self, mapping, accessor, appends=None): - self._mapping = mapping - self._accessor = accessor - self._appends = appends or {} - - def __repr__(self): - return "IteratorMapping({!r}, {!r}, {!r})".format( - self._mapping, - self._accessor, - self._appends, - ) - - def __bool__(self): - return bool(self._mapping or self._appends) - - __nonzero__ = __bool__ # XXX: Python 2. - - def __contains__(self, key): - return key in self._mapping or key in self._appends - - def __getitem__(self, k): - try: - v = self._mapping[k] - except KeyError: - return iter(self._appends[k]) - return itertools.chain(self._accessor(v), self._appends.get(k, ())) - - def __iter__(self): - more = (k for k in self._appends if k not in self._mapping) - return itertools.chain(self._mapping, more) - - def __len__(self): - more = sum(1 for k in self._appends if k not in self._mapping) - return len(self._mapping) + more - - -class _FactoryIterableView(object): - """Wrap an iterator factory returned by `find_matches()`. - - Calling `iter()` on this class would invoke the underlying iterator - factory, making it a "collection with ordering" that can be iterated - through multiple times, but lacks random access methods presented in - built-in Python sequence types. - """ - - def __init__(self, factory): - self._factory = factory - self._iterable = None - - def __repr__(self): - return "{}({})".format(type(self).__name__, list(self)) - - def __bool__(self): - try: - next(iter(self)) - except StopIteration: - return False - return True - - __nonzero__ = __bool__ # XXX: Python 2. - - def __iter__(self): - iterable = ( - self._factory() if self._iterable is None else self._iterable - ) - self._iterable, current = itertools.tee(iterable) - return current - - -class _SequenceIterableView(object): - """Wrap an iterable returned by find_matches(). - - This is essentially just a proxy to the underlying sequence that provides - the same interface as `_FactoryIterableView`. - """ - - def __init__(self, sequence): - self._sequence = sequence - - def __repr__(self): - return "{}({})".format(type(self).__name__, self._sequence) - - def __bool__(self): - return bool(self._sequence) - - __nonzero__ = __bool__ # XXX: Python 2. - - def __iter__(self): - return iter(self._sequence) - - -def build_iter_view(matches): - """Build an iterable view from the value returned by `find_matches()`.""" - if callable(matches): - return _FactoryIterableView(matches) - if not isinstance(matches, collections_abc.Sequence): - matches = list(matches) - return _SequenceIterableView(matches) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py deleted file mode 100644 index 73f58d7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py +++ /dev/null @@ -1,177 +0,0 @@ -"""Rich text and beautiful formatting in the terminal.""" - -import os -from typing import IO, TYPE_CHECKING, Any, Callable, Optional, Union - -from ._extension import load_ipython_extension # noqa: F401 - -__all__ = ["get_console", "reconfigure", "print", "inspect", "print_json"] - -if TYPE_CHECKING: - from .console import Console - -# Global console used by alternative print -_console: Optional["Console"] = None - -try: - _IMPORT_CWD = os.path.abspath(os.getcwd()) -except FileNotFoundError: - # Can happen if the cwd has been deleted - _IMPORT_CWD = "" - - -def get_console() -> "Console": - """Get a global :class:`~rich.console.Console` instance. This function is used when Rich requires a Console, - and hasn't been explicitly given one. - - Returns: - Console: A console instance. - """ - global _console - if _console is None: - from .console import Console - - _console = Console() - - return _console - - -def reconfigure(*args: Any, **kwargs: Any) -> None: - """Reconfigures the global console by replacing it with another. - - Args: - *args (Any): Positional arguments for the replacement :class:`~rich.console.Console`. - **kwargs (Any): Keyword arguments for the replacement :class:`~rich.console.Console`. - """ - from pip._vendor.rich.console import Console - - new_console = Console(*args, **kwargs) - _console = get_console() - _console.__dict__ = new_console.__dict__ - - -def print( - *objects: Any, - sep: str = " ", - end: str = "\n", - file: Optional[IO[str]] = None, - flush: bool = False, -) -> None: - r"""Print object(s) supplied via positional arguments. - This function has an identical signature to the built-in print. - For more advanced features, see the :class:`~rich.console.Console` class. - - Args: - sep (str, optional): Separator between printed objects. Defaults to " ". - end (str, optional): Character to write at end of output. Defaults to "\\n". - file (IO[str], optional): File to write to, or None for stdout. Defaults to None. - flush (bool, optional): Has no effect as Rich always flushes output. Defaults to False. - - """ - from .console import Console - - write_console = get_console() if file is None else Console(file=file) - return write_console.print(*objects, sep=sep, end=end) - - -def print_json( - json: Optional[str] = None, - *, - data: Any = None, - indent: Union[None, int, str] = 2, - highlight: bool = True, - skip_keys: bool = False, - ensure_ascii: bool = False, - check_circular: bool = True, - allow_nan: bool = True, - default: Optional[Callable[[Any], Any]] = None, - sort_keys: bool = False, -) -> None: - """Pretty prints JSON. Output will be valid JSON. - - Args: - json (str): A string containing JSON. - data (Any): If json is not supplied, then encode this data. - indent (int, optional): Number of spaces to indent. Defaults to 2. - highlight (bool, optional): Enable highlighting of output: Defaults to True. - skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. - ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. - check_circular (bool, optional): Check for circular references. Defaults to True. - allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. - default (Callable, optional): A callable that converts values that can not be encoded - in to something that can be JSON encoded. Defaults to None. - sort_keys (bool, optional): Sort dictionary keys. Defaults to False. - """ - - get_console().print_json( - json, - data=data, - indent=indent, - highlight=highlight, - skip_keys=skip_keys, - ensure_ascii=ensure_ascii, - check_circular=check_circular, - allow_nan=allow_nan, - default=default, - sort_keys=sort_keys, - ) - - -def inspect( - obj: Any, - *, - console: Optional["Console"] = None, - title: Optional[str] = None, - help: bool = False, - methods: bool = False, - docs: bool = True, - private: bool = False, - dunder: bool = False, - sort: bool = True, - all: bool = False, - value: bool = True, -) -> None: - """Inspect any Python object. - - * inspect() to see summarized info. - * inspect(, methods=True) to see methods. - * inspect(, help=True) to see full (non-abbreviated) help. - * inspect(, private=True) to see private attributes (single underscore). - * inspect(, dunder=True) to see attributes beginning with double underscore. - * inspect(, all=True) to see all attributes. - - Args: - obj (Any): An object to inspect. - title (str, optional): Title to display over inspect result, or None use type. Defaults to None. - help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. - methods (bool, optional): Enable inspection of callables. Defaults to False. - docs (bool, optional): Also render doc strings. Defaults to True. - private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. - dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. - sort (bool, optional): Sort attributes alphabetically. Defaults to True. - all (bool, optional): Show all attributes. Defaults to False. - value (bool, optional): Pretty print value. Defaults to True. - """ - _console = console or get_console() - from pip._vendor.rich._inspect import Inspect - - # Special case for inspect(inspect) - is_inspect = obj is inspect - - _inspect = Inspect( - obj, - title=title, - help=is_inspect or help, - methods=is_inspect or methods, - docs=is_inspect or docs, - private=private, - dunder=dunder, - sort=sort, - all=all, - value=value, - ) - _console.print(_inspect) - - -if __name__ == "__main__": # pragma: no cover - print("Hello, **World**") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py deleted file mode 100644 index 270629f..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py +++ /dev/null @@ -1,274 +0,0 @@ -import colorsys -import io -from time import process_time - -from pip._vendor.rich import box -from pip._vendor.rich.color import Color -from pip._vendor.rich.console import Console, ConsoleOptions, Group, RenderableType, RenderResult -from pip._vendor.rich.markdown import Markdown -from pip._vendor.rich.measure import Measurement -from pip._vendor.rich.pretty import Pretty -from pip._vendor.rich.segment import Segment -from pip._vendor.rich.style import Style -from pip._vendor.rich.syntax import Syntax -from pip._vendor.rich.table import Table -from pip._vendor.rich.text import Text - - -class ColorBox: - def __rich_console__( - self, console: Console, options: ConsoleOptions - ) -> RenderResult: - for y in range(0, 5): - for x in range(options.max_width): - h = x / options.max_width - l = 0.1 + ((y / 5) * 0.7) - r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0) - r2, g2, b2 = colorsys.hls_to_rgb(h, l + 0.7 / 10, 1.0) - bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255) - color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255) - yield Segment("▄", Style(color=color, bgcolor=bgcolor)) - yield Segment.line() - - def __rich_measure__( - self, console: "Console", options: ConsoleOptions - ) -> Measurement: - return Measurement(1, options.max_width) - - -def make_test_card() -> Table: - """Get a renderable that demonstrates a number of features.""" - table = Table.grid(padding=1, pad_edge=True) - table.title = "Rich features" - table.add_column("Feature", no_wrap=True, justify="center", style="bold red") - table.add_column("Demonstration") - - color_table = Table( - box=None, - expand=False, - show_header=False, - show_edge=False, - pad_edge=False, - ) - color_table.add_row( - ( - "✓ [bold green]4-bit color[/]\n" - "✓ [bold blue]8-bit color[/]\n" - "✓ [bold magenta]Truecolor (16.7 million)[/]\n" - "✓ [bold yellow]Dumb terminals[/]\n" - "✓ [bold cyan]Automatic color conversion" - ), - ColorBox(), - ) - - table.add_row("Colors", color_table) - - table.add_row( - "Styles", - "All ansi styles: [bold]bold[/], [dim]dim[/], [italic]italic[/italic], [underline]underline[/], [strike]strikethrough[/], [reverse]reverse[/], and even [blink]blink[/].", - ) - - lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in metus sed sapien ultricies pretium a at justo. Maecenas luctus velit et auctor maximus." - lorem_table = Table.grid(padding=1, collapse_padding=True) - lorem_table.pad_edge = False - lorem_table.add_row( - Text(lorem, justify="left", style="green"), - Text(lorem, justify="center", style="yellow"), - Text(lorem, justify="right", style="blue"), - Text(lorem, justify="full", style="red"), - ) - table.add_row( - "Text", - Group( - Text.from_markup( - """Word wrap text. Justify [green]left[/], [yellow]center[/], [blue]right[/] or [red]full[/].\n""" - ), - lorem_table, - ), - ) - - def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table: - table = Table(show_header=False, pad_edge=False, box=None, expand=True) - table.add_column("1", ratio=1) - table.add_column("2", ratio=1) - table.add_row(renderable1, renderable2) - return table - - table.add_row( - "Asian\nlanguage\nsupport", - ":flag_for_china: 该库支持中文,日文和韩文文本!\n:flag_for_japan: ライブラリは中国語、日本語、韓国語のテキストをサポートしています\n:flag_for_south_korea: 이 라이브러리는 중국어, 일본어 및 한국어 텍스트를 지원합니다", - ) - - markup_example = ( - "[bold magenta]Rich[/] supports a simple [i]bbcode[/i]-like [b]markup[/b] for [yellow]color[/], [underline]style[/], and emoji! " - ":+1: :apple: :ant: :bear: :baguette_bread: :bus: " - ) - table.add_row("Markup", markup_example) - - example_table = Table( - show_edge=False, - show_header=True, - expand=False, - row_styles=["none", "dim"], - box=box.SIMPLE, - ) - example_table.add_column("[green]Date", style="green", no_wrap=True) - example_table.add_column("[blue]Title", style="blue") - example_table.add_column( - "[cyan]Production Budget", - style="cyan", - justify="right", - no_wrap=True, - ) - example_table.add_column( - "[magenta]Box Office", - style="magenta", - justify="right", - no_wrap=True, - ) - example_table.add_row( - "Dec 20, 2019", - "Star Wars: The Rise of Skywalker", - "$275,000,000", - "$375,126,118", - ) - example_table.add_row( - "May 25, 2018", - "[b]Solo[/]: A Star Wars Story", - "$275,000,000", - "$393,151,347", - ) - example_table.add_row( - "Dec 15, 2017", - "Star Wars Ep. VIII: The Last Jedi", - "$262,000,000", - "[bold]$1,332,539,889[/bold]", - ) - example_table.add_row( - "May 19, 1999", - "Star Wars Ep. [b]I[/b]: [i]The phantom Menace", - "$115,000,000", - "$1,027,044,677", - ) - - table.add_row("Tables", example_table) - - code = '''\ -def iter_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: - """Iterate and generate a tuple with a flag for last value.""" - iter_values = iter(values) - try: - previous_value = next(iter_values) - except StopIteration: - return - for value in iter_values: - yield False, previous_value - previous_value = value - yield True, previous_value''' - - pretty_data = { - "foo": [ - 3.1427, - ( - "Paul Atreides", - "Vladimir Harkonnen", - "Thufir Hawat", - ), - ], - "atomic": (False, True, None), - } - table.add_row( - "Syntax\nhighlighting\n&\npretty\nprinting", - comparison( - Syntax(code, "python3", line_numbers=True, indent_guides=True), - Pretty(pretty_data, indent_guides=True), - ), - ) - - markdown_example = """\ -# Markdown - -Supports much of the *markdown* __syntax__! - -- Headers -- Basic formatting: **bold**, *italic*, `code` -- Block quotes -- Lists, and more... - """ - table.add_row( - "Markdown", comparison("[cyan]" + markdown_example, Markdown(markdown_example)) - ) - - table.add_row( - "+more!", - """Progress bars, columns, styled logging handler, tracebacks, etc...""", - ) - return table - - -if __name__ == "__main__": # pragma: no cover - - console = Console( - file=io.StringIO(), - force_terminal=True, - ) - test_card = make_test_card() - - # Print once to warm cache - start = process_time() - console.print(test_card) - pre_cache_taken = round((process_time() - start) * 1000.0, 1) - - console.file = io.StringIO() - - start = process_time() - console.print(test_card) - taken = round((process_time() - start) * 1000.0, 1) - - c = Console(record=True) - c.print(test_card) - - print(f"rendered in {pre_cache_taken}ms (cold cache)") - print(f"rendered in {taken}ms (warm cache)") - - from pip._vendor.rich.panel import Panel - - console = Console() - - sponsor_message = Table.grid(padding=1) - sponsor_message.add_column(style="green", justify="right") - sponsor_message.add_column(no_wrap=True) - - sponsor_message.add_row( - "Textualize", - "[u blue link=https://github.com/textualize]https://github.com/textualize", - ) - sponsor_message.add_row( - "Twitter", - "[u blue link=https://twitter.com/willmcgugan]https://twitter.com/willmcgugan", - ) - - intro_message = Text.from_markup( - """\ -We hope you enjoy using Rich! - -Rich is maintained with [red]:heart:[/] by [link=https://www.textualize.io]Textualize.io[/] - -- Will McGugan""" - ) - - message = Table.grid(padding=2) - message.add_column() - message.add_column(no_wrap=True) - message.add_row(intro_message, sponsor_message) - - console.print( - Panel.fit( - message, - box=box.ROUNDED, - padding=(1, 2), - title="[b red]Thanks for trying out Rich!", - border_style="bright_blue", - ), - justify="center", - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index bab403f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc deleted file mode 100644 index fc03e45..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc deleted file mode 100644 index 6fcf12d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc deleted file mode 100644 index 809a8e6..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc deleted file mode 100644 index d68de30..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc deleted file mode 100644 index 194902f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc deleted file mode 100644 index 0bfa1de..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc deleted file mode 100644 index c0815ec..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc deleted file mode 100644 index cfe9adb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc deleted file mode 100644 index 309b76c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc deleted file mode 100644 index 682be86..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc deleted file mode 100644 index 8bc161e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc deleted file mode 100644 index e2e7ab5..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc deleted file mode 100644 index 31f2bec..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc deleted file mode 100644 index 2c606fa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc deleted file mode 100644 index 1599285..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc deleted file mode 100644 index 22443ff..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc deleted file mode 100644 index 7d2e9db..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc deleted file mode 100644 index 737c7ec..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc deleted file mode 100644 index 63cbec0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc deleted file mode 100644 index ea9134e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc deleted file mode 100644 index 4a5282a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc deleted file mode 100644 index afbd423..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc deleted file mode 100644 index d8c9b50..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc deleted file mode 100644 index 6e8ba6f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc deleted file mode 100644 index 73ab05b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc deleted file mode 100644 index 298ab99..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc deleted file mode 100644 index 6b1c3bd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc deleted file mode 100644 index e851a66..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc deleted file mode 100644 index b04de70..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc deleted file mode 100644 index 21cc5fe..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc deleted file mode 100644 index 8f088d3..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc deleted file mode 100644 index adc7306..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc deleted file mode 100644 index c675c1e..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc deleted file mode 100644 index f19439a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc deleted file mode 100644 index 0da4aca..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc deleted file mode 100644 index 5f24b9a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc deleted file mode 100644 index e552184..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc deleted file mode 100644 index 0bcc19f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc deleted file mode 100644 index 401c003..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc deleted file mode 100644 index a540fa2..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc deleted file mode 100644 index 8e78f92..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/json.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/json.cpython-311.pyc deleted file mode 100644 index 83d1b8c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/json.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc deleted file mode 100644 index 860d962..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc deleted file mode 100644 index eb1e285..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc deleted file mode 100644 index 319ee54..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc deleted file mode 100644 index 2f360fa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc deleted file mode 100644 index 7e77c6f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc deleted file mode 100644 index bd7307f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc deleted file mode 100644 index d2208ec..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc deleted file mode 100644 index e3c409d..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc deleted file mode 100644 index 29199aa..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc deleted file mode 100644 index a5dd5f1..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc deleted file mode 100644 index 0368560..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc deleted file mode 100644 index 165ae24..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc deleted file mode 100644 index eb232e7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc deleted file mode 100644 index 2e7c9df..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc deleted file mode 100644 index 56ee332..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc deleted file mode 100644 index ea220eb..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc deleted file mode 100644 index 7090d5c..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc deleted file mode 100644 index 9b8feba..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc deleted file mode 100644 index ba25921..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc deleted file mode 100644 index d28f9b9..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc deleted file mode 100644 index 0f693d8..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc deleted file mode 100644 index bb8de4f..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc deleted file mode 100644 index 524f158..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/status.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/status.cpython-311.pyc deleted file mode 100644 index f0a33da..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/status.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc deleted file mode 100644 index 5a0136a..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc deleted file mode 100644 index 2f6a43b..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc deleted file mode 100644 index 5f95276..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc deleted file mode 100644 index 34c16fd..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc deleted file mode 100644 index e0de4c0..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc deleted file mode 100644 index 497a432..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc deleted file mode 100644 index 949cbf7..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc deleted file mode 100644 index caaafcf..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc deleted file mode 100644 index 17c9141..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-311.pyc b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-311.pyc deleted file mode 100644 index b42fc11..0000000 Binary files a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-311.pyc and /dev/null differ diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py deleted file mode 100644 index 36286df..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py +++ /dev/null @@ -1,451 +0,0 @@ -# Auto generated by make_terminal_widths.py - -CELL_WIDTHS = [ - (0, 0, 0), - (1, 31, -1), - (127, 159, -1), - (768, 879, 0), - (1155, 1161, 0), - (1425, 1469, 0), - (1471, 1471, 0), - (1473, 1474, 0), - (1476, 1477, 0), - (1479, 1479, 0), - (1552, 1562, 0), - (1611, 1631, 0), - (1648, 1648, 0), - (1750, 1756, 0), - (1759, 1764, 0), - (1767, 1768, 0), - (1770, 1773, 0), - (1809, 1809, 0), - (1840, 1866, 0), - (1958, 1968, 0), - (2027, 2035, 0), - (2045, 2045, 0), - (2070, 2073, 0), - (2075, 2083, 0), - (2085, 2087, 0), - (2089, 2093, 0), - (2137, 2139, 0), - (2259, 2273, 0), - (2275, 2306, 0), - (2362, 2362, 0), - (2364, 2364, 0), - (2369, 2376, 0), - (2381, 2381, 0), - (2385, 2391, 0), - (2402, 2403, 0), - (2433, 2433, 0), - (2492, 2492, 0), - (2497, 2500, 0), - (2509, 2509, 0), - (2530, 2531, 0), - (2558, 2558, 0), - (2561, 2562, 0), - (2620, 2620, 0), - (2625, 2626, 0), - (2631, 2632, 0), - (2635, 2637, 0), - (2641, 2641, 0), - (2672, 2673, 0), - (2677, 2677, 0), - (2689, 2690, 0), - (2748, 2748, 0), - (2753, 2757, 0), - (2759, 2760, 0), - (2765, 2765, 0), - (2786, 2787, 0), - (2810, 2815, 0), - (2817, 2817, 0), - (2876, 2876, 0), - (2879, 2879, 0), - (2881, 2884, 0), - (2893, 2893, 0), - (2901, 2902, 0), - (2914, 2915, 0), - (2946, 2946, 0), - (3008, 3008, 0), - (3021, 3021, 0), - (3072, 3072, 0), - (3076, 3076, 0), - (3134, 3136, 0), - (3142, 3144, 0), - (3146, 3149, 0), - (3157, 3158, 0), - (3170, 3171, 0), - (3201, 3201, 0), - (3260, 3260, 0), - (3263, 3263, 0), - (3270, 3270, 0), - (3276, 3277, 0), - (3298, 3299, 0), - (3328, 3329, 0), - (3387, 3388, 0), - (3393, 3396, 0), - (3405, 3405, 0), - (3426, 3427, 0), - (3457, 3457, 0), - (3530, 3530, 0), - (3538, 3540, 0), - (3542, 3542, 0), - (3633, 3633, 0), - (3636, 3642, 0), - (3655, 3662, 0), - (3761, 3761, 0), - (3764, 3772, 0), - (3784, 3789, 0), - (3864, 3865, 0), - (3893, 3893, 0), - (3895, 3895, 0), - (3897, 3897, 0), - (3953, 3966, 0), - (3968, 3972, 0), - (3974, 3975, 0), - (3981, 3991, 0), - (3993, 4028, 0), - (4038, 4038, 0), - (4141, 4144, 0), - (4146, 4151, 0), - (4153, 4154, 0), - (4157, 4158, 0), - (4184, 4185, 0), - (4190, 4192, 0), - (4209, 4212, 0), - (4226, 4226, 0), - (4229, 4230, 0), - (4237, 4237, 0), - (4253, 4253, 0), - (4352, 4447, 2), - (4957, 4959, 0), - (5906, 5908, 0), - (5938, 5940, 0), - (5970, 5971, 0), - (6002, 6003, 0), - (6068, 6069, 0), - (6071, 6077, 0), - (6086, 6086, 0), - (6089, 6099, 0), - (6109, 6109, 0), - (6155, 6157, 0), - (6277, 6278, 0), - (6313, 6313, 0), - (6432, 6434, 0), - (6439, 6440, 0), - (6450, 6450, 0), - (6457, 6459, 0), - (6679, 6680, 0), - (6683, 6683, 0), - (6742, 6742, 0), - (6744, 6750, 0), - (6752, 6752, 0), - (6754, 6754, 0), - (6757, 6764, 0), - (6771, 6780, 0), - (6783, 6783, 0), - (6832, 6848, 0), - (6912, 6915, 0), - (6964, 6964, 0), - (6966, 6970, 0), - (6972, 6972, 0), - (6978, 6978, 0), - (7019, 7027, 0), - (7040, 7041, 0), - (7074, 7077, 0), - (7080, 7081, 0), - (7083, 7085, 0), - (7142, 7142, 0), - (7144, 7145, 0), - (7149, 7149, 0), - (7151, 7153, 0), - (7212, 7219, 0), - (7222, 7223, 0), - (7376, 7378, 0), - (7380, 7392, 0), - (7394, 7400, 0), - (7405, 7405, 0), - (7412, 7412, 0), - (7416, 7417, 0), - (7616, 7673, 0), - (7675, 7679, 0), - (8203, 8207, 0), - (8232, 8238, 0), - (8288, 8291, 0), - (8400, 8432, 0), - (8986, 8987, 2), - (9001, 9002, 2), - (9193, 9196, 2), - (9200, 9200, 2), - (9203, 9203, 2), - (9725, 9726, 2), - (9748, 9749, 2), - (9800, 9811, 2), - (9855, 9855, 2), - (9875, 9875, 2), - (9889, 9889, 2), - (9898, 9899, 2), - (9917, 9918, 2), - (9924, 9925, 2), - (9934, 9934, 2), - (9940, 9940, 2), - (9962, 9962, 2), - (9970, 9971, 2), - (9973, 9973, 2), - (9978, 9978, 2), - (9981, 9981, 2), - (9989, 9989, 2), - (9994, 9995, 2), - (10024, 10024, 2), - (10060, 10060, 2), - (10062, 10062, 2), - (10067, 10069, 2), - (10071, 10071, 2), - (10133, 10135, 2), - (10160, 10160, 2), - (10175, 10175, 2), - (11035, 11036, 2), - (11088, 11088, 2), - (11093, 11093, 2), - (11503, 11505, 0), - (11647, 11647, 0), - (11744, 11775, 0), - (11904, 11929, 2), - (11931, 12019, 2), - (12032, 12245, 2), - (12272, 12283, 2), - (12288, 12329, 2), - (12330, 12333, 0), - (12334, 12350, 2), - (12353, 12438, 2), - (12441, 12442, 0), - (12443, 12543, 2), - (12549, 12591, 2), - (12593, 12686, 2), - (12688, 12771, 2), - (12784, 12830, 2), - (12832, 12871, 2), - (12880, 19903, 2), - (19968, 42124, 2), - (42128, 42182, 2), - (42607, 42610, 0), - (42612, 42621, 0), - (42654, 42655, 0), - (42736, 42737, 0), - (43010, 43010, 0), - (43014, 43014, 0), - (43019, 43019, 0), - (43045, 43046, 0), - (43052, 43052, 0), - (43204, 43205, 0), - (43232, 43249, 0), - (43263, 43263, 0), - (43302, 43309, 0), - (43335, 43345, 0), - (43360, 43388, 2), - (43392, 43394, 0), - (43443, 43443, 0), - (43446, 43449, 0), - (43452, 43453, 0), - (43493, 43493, 0), - (43561, 43566, 0), - (43569, 43570, 0), - (43573, 43574, 0), - (43587, 43587, 0), - (43596, 43596, 0), - (43644, 43644, 0), - (43696, 43696, 0), - (43698, 43700, 0), - (43703, 43704, 0), - (43710, 43711, 0), - (43713, 43713, 0), - (43756, 43757, 0), - (43766, 43766, 0), - (44005, 44005, 0), - (44008, 44008, 0), - (44013, 44013, 0), - (44032, 55203, 2), - (63744, 64255, 2), - (64286, 64286, 0), - (65024, 65039, 0), - (65040, 65049, 2), - (65056, 65071, 0), - (65072, 65106, 2), - (65108, 65126, 2), - (65128, 65131, 2), - (65281, 65376, 2), - (65504, 65510, 2), - (66045, 66045, 0), - (66272, 66272, 0), - (66422, 66426, 0), - (68097, 68099, 0), - (68101, 68102, 0), - (68108, 68111, 0), - (68152, 68154, 0), - (68159, 68159, 0), - (68325, 68326, 0), - (68900, 68903, 0), - (69291, 69292, 0), - (69446, 69456, 0), - (69633, 69633, 0), - (69688, 69702, 0), - (69759, 69761, 0), - (69811, 69814, 0), - (69817, 69818, 0), - (69888, 69890, 0), - (69927, 69931, 0), - (69933, 69940, 0), - (70003, 70003, 0), - (70016, 70017, 0), - (70070, 70078, 0), - (70089, 70092, 0), - (70095, 70095, 0), - (70191, 70193, 0), - (70196, 70196, 0), - (70198, 70199, 0), - (70206, 70206, 0), - (70367, 70367, 0), - (70371, 70378, 0), - (70400, 70401, 0), - (70459, 70460, 0), - (70464, 70464, 0), - (70502, 70508, 0), - (70512, 70516, 0), - (70712, 70719, 0), - (70722, 70724, 0), - (70726, 70726, 0), - (70750, 70750, 0), - (70835, 70840, 0), - (70842, 70842, 0), - (70847, 70848, 0), - (70850, 70851, 0), - (71090, 71093, 0), - (71100, 71101, 0), - (71103, 71104, 0), - (71132, 71133, 0), - (71219, 71226, 0), - (71229, 71229, 0), - (71231, 71232, 0), - (71339, 71339, 0), - (71341, 71341, 0), - (71344, 71349, 0), - (71351, 71351, 0), - (71453, 71455, 0), - (71458, 71461, 0), - (71463, 71467, 0), - (71727, 71735, 0), - (71737, 71738, 0), - (71995, 71996, 0), - (71998, 71998, 0), - (72003, 72003, 0), - (72148, 72151, 0), - (72154, 72155, 0), - (72160, 72160, 0), - (72193, 72202, 0), - (72243, 72248, 0), - (72251, 72254, 0), - (72263, 72263, 0), - (72273, 72278, 0), - (72281, 72283, 0), - (72330, 72342, 0), - (72344, 72345, 0), - (72752, 72758, 0), - (72760, 72765, 0), - (72767, 72767, 0), - (72850, 72871, 0), - (72874, 72880, 0), - (72882, 72883, 0), - (72885, 72886, 0), - (73009, 73014, 0), - (73018, 73018, 0), - (73020, 73021, 0), - (73023, 73029, 0), - (73031, 73031, 0), - (73104, 73105, 0), - (73109, 73109, 0), - (73111, 73111, 0), - (73459, 73460, 0), - (92912, 92916, 0), - (92976, 92982, 0), - (94031, 94031, 0), - (94095, 94098, 0), - (94176, 94179, 2), - (94180, 94180, 0), - (94192, 94193, 2), - (94208, 100343, 2), - (100352, 101589, 2), - (101632, 101640, 2), - (110592, 110878, 2), - (110928, 110930, 2), - (110948, 110951, 2), - (110960, 111355, 2), - (113821, 113822, 0), - (119143, 119145, 0), - (119163, 119170, 0), - (119173, 119179, 0), - (119210, 119213, 0), - (119362, 119364, 0), - (121344, 121398, 0), - (121403, 121452, 0), - (121461, 121461, 0), - (121476, 121476, 0), - (121499, 121503, 0), - (121505, 121519, 0), - (122880, 122886, 0), - (122888, 122904, 0), - (122907, 122913, 0), - (122915, 122916, 0), - (122918, 122922, 0), - (123184, 123190, 0), - (123628, 123631, 0), - (125136, 125142, 0), - (125252, 125258, 0), - (126980, 126980, 2), - (127183, 127183, 2), - (127374, 127374, 2), - (127377, 127386, 2), - (127488, 127490, 2), - (127504, 127547, 2), - (127552, 127560, 2), - (127568, 127569, 2), - (127584, 127589, 2), - (127744, 127776, 2), - (127789, 127797, 2), - (127799, 127868, 2), - (127870, 127891, 2), - (127904, 127946, 2), - (127951, 127955, 2), - (127968, 127984, 2), - (127988, 127988, 2), - (127992, 128062, 2), - (128064, 128064, 2), - (128066, 128252, 2), - (128255, 128317, 2), - (128331, 128334, 2), - (128336, 128359, 2), - (128378, 128378, 2), - (128405, 128406, 2), - (128420, 128420, 2), - (128507, 128591, 2), - (128640, 128709, 2), - (128716, 128716, 2), - (128720, 128722, 2), - (128725, 128727, 2), - (128747, 128748, 2), - (128756, 128764, 2), - (128992, 129003, 2), - (129292, 129338, 2), - (129340, 129349, 2), - (129351, 129400, 2), - (129402, 129483, 2), - (129485, 129535, 2), - (129648, 129652, 2), - (129656, 129658, 2), - (129664, 129670, 2), - (129680, 129704, 2), - (129712, 129718, 2), - (129728, 129730, 2), - (129744, 129750, 2), - (131072, 196605, 2), - (196608, 262141, 2), - (917760, 917999, 0), -] diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py deleted file mode 100644 index 1f2877b..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py +++ /dev/null @@ -1,3610 +0,0 @@ -EMOJI = { - "1st_place_medal": "🥇", - "2nd_place_medal": "🥈", - "3rd_place_medal": "🥉", - "ab_button_(blood_type)": "🆎", - "atm_sign": "🏧", - "a_button_(blood_type)": "🅰", - "afghanistan": "🇦🇫", - "albania": "🇦🇱", - "algeria": "🇩🇿", - "american_samoa": "🇦🇸", - "andorra": "🇦🇩", - "angola": "🇦🇴", - "anguilla": "🇦🇮", - "antarctica": "🇦🇶", - "antigua_&_barbuda": "🇦🇬", - "aquarius": "♒", - "argentina": "🇦🇷", - "aries": "♈", - "armenia": "🇦🇲", - "aruba": "🇦🇼", - "ascension_island": "🇦🇨", - "australia": "🇦🇺", - "austria": "🇦🇹", - "azerbaijan": "🇦🇿", - "back_arrow": "🔙", - "b_button_(blood_type)": "🅱", - "bahamas": "🇧🇸", - "bahrain": "🇧🇭", - "bangladesh": "🇧🇩", - "barbados": "🇧🇧", - "belarus": "🇧🇾", - "belgium": "🇧🇪", - "belize": "🇧🇿", - "benin": "🇧🇯", - "bermuda": "🇧🇲", - "bhutan": "🇧🇹", - "bolivia": "🇧🇴", - "bosnia_&_herzegovina": "🇧🇦", - "botswana": "🇧🇼", - "bouvet_island": "🇧🇻", - "brazil": "🇧🇷", - "british_indian_ocean_territory": "🇮🇴", - "british_virgin_islands": "🇻🇬", - "brunei": "🇧🇳", - "bulgaria": "🇧🇬", - "burkina_faso": "🇧🇫", - "burundi": "🇧🇮", - "cl_button": "🆑", - "cool_button": "🆒", - "cambodia": "🇰🇭", - "cameroon": "🇨🇲", - "canada": "🇨🇦", - "canary_islands": "🇮🇨", - "cancer": "♋", - "cape_verde": "🇨🇻", - "capricorn": "♑", - "caribbean_netherlands": "🇧🇶", - "cayman_islands": "🇰🇾", - "central_african_republic": "🇨🇫", - "ceuta_&_melilla": "🇪🇦", - "chad": "🇹🇩", - "chile": "🇨🇱", - "china": "🇨🇳", - "christmas_island": "🇨🇽", - "christmas_tree": "🎄", - "clipperton_island": "🇨🇵", - "cocos_(keeling)_islands": "🇨🇨", - "colombia": "🇨🇴", - "comoros": "🇰🇲", - "congo_-_brazzaville": "🇨🇬", - "congo_-_kinshasa": "🇨🇩", - "cook_islands": "🇨🇰", - "costa_rica": "🇨🇷", - "croatia": "🇭🇷", - "cuba": "🇨🇺", - "curaçao": "🇨🇼", - "cyprus": "🇨🇾", - "czechia": "🇨🇿", - "côte_d’ivoire": "🇨🇮", - "denmark": "🇩🇰", - "diego_garcia": "🇩🇬", - "djibouti": "🇩🇯", - "dominica": "🇩🇲", - "dominican_republic": "🇩🇴", - "end_arrow": "🔚", - "ecuador": "🇪🇨", - "egypt": "🇪🇬", - "el_salvador": "🇸🇻", - "england": "🏴\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f", - "equatorial_guinea": "🇬🇶", - "eritrea": "🇪🇷", - "estonia": "🇪🇪", - "ethiopia": "🇪🇹", - "european_union": "🇪🇺", - "free_button": "🆓", - "falkland_islands": "🇫🇰", - "faroe_islands": "🇫🇴", - "fiji": "🇫🇯", - "finland": "🇫🇮", - "france": "🇫🇷", - "french_guiana": "🇬🇫", - "french_polynesia": "🇵🇫", - "french_southern_territories": "🇹🇫", - "gabon": "🇬🇦", - "gambia": "🇬🇲", - "gemini": "♊", - "georgia": "🇬🇪", - "germany": "🇩🇪", - "ghana": "🇬🇭", - "gibraltar": "🇬🇮", - "greece": "🇬🇷", - "greenland": "🇬🇱", - "grenada": "🇬🇩", - "guadeloupe": "🇬🇵", - "guam": "🇬🇺", - "guatemala": "🇬🇹", - "guernsey": "🇬🇬", - "guinea": "🇬🇳", - "guinea-bissau": "🇬🇼", - "guyana": "🇬🇾", - "haiti": "🇭🇹", - "heard_&_mcdonald_islands": "🇭🇲", - "honduras": "🇭🇳", - "hong_kong_sar_china": "🇭🇰", - "hungary": "🇭🇺", - "id_button": "🆔", - "iceland": "🇮🇸", - "india": "🇮🇳", - "indonesia": "🇮🇩", - "iran": "🇮🇷", - "iraq": "🇮🇶", - "ireland": "🇮🇪", - "isle_of_man": "🇮🇲", - "israel": "🇮🇱", - "italy": "🇮🇹", - "jamaica": "🇯🇲", - "japan": "🗾", - "japanese_acceptable_button": "🉑", - "japanese_application_button": "🈸", - "japanese_bargain_button": "🉐", - "japanese_castle": "🏯", - "japanese_congratulations_button": "㊗", - "japanese_discount_button": "🈹", - "japanese_dolls": "🎎", - "japanese_free_of_charge_button": "🈚", - "japanese_here_button": "🈁", - "japanese_monthly_amount_button": "🈷", - "japanese_no_vacancy_button": "🈵", - "japanese_not_free_of_charge_button": "🈶", - "japanese_open_for_business_button": "🈺", - "japanese_passing_grade_button": "🈴", - "japanese_post_office": "🏣", - "japanese_prohibited_button": "🈲", - "japanese_reserved_button": "🈯", - "japanese_secret_button": "㊙", - "japanese_service_charge_button": "🈂", - "japanese_symbol_for_beginner": "🔰", - "japanese_vacancy_button": "🈳", - "jersey": "🇯🇪", - "jordan": "🇯🇴", - "kazakhstan": "🇰🇿", - "kenya": "🇰🇪", - "kiribati": "🇰🇮", - "kosovo": "🇽🇰", - "kuwait": "🇰🇼", - "kyrgyzstan": "🇰🇬", - "laos": "🇱🇦", - "latvia": "🇱🇻", - "lebanon": "🇱🇧", - "leo": "♌", - "lesotho": "🇱🇸", - "liberia": "🇱🇷", - "libra": "♎", - "libya": "🇱🇾", - "liechtenstein": "🇱🇮", - "lithuania": "🇱🇹", - "luxembourg": "🇱🇺", - "macau_sar_china": "🇲🇴", - "macedonia": "🇲🇰", - "madagascar": "🇲🇬", - "malawi": "🇲🇼", - "malaysia": "🇲🇾", - "maldives": "🇲🇻", - "mali": "🇲🇱", - "malta": "🇲🇹", - "marshall_islands": "🇲🇭", - "martinique": "🇲🇶", - "mauritania": "🇲🇷", - "mauritius": "🇲🇺", - "mayotte": "🇾🇹", - "mexico": "🇲🇽", - "micronesia": "🇫🇲", - "moldova": "🇲🇩", - "monaco": "🇲🇨", - "mongolia": "🇲🇳", - "montenegro": "🇲🇪", - "montserrat": "🇲🇸", - "morocco": "🇲🇦", - "mozambique": "🇲🇿", - "mrs._claus": "🤶", - "mrs._claus_dark_skin_tone": "🤶🏿", - "mrs._claus_light_skin_tone": "🤶🏻", - "mrs._claus_medium-dark_skin_tone": "🤶🏾", - "mrs._claus_medium-light_skin_tone": "🤶🏼", - "mrs._claus_medium_skin_tone": "🤶🏽", - "myanmar_(burma)": "🇲🇲", - "new_button": "🆕", - "ng_button": "🆖", - "namibia": "🇳🇦", - "nauru": "🇳🇷", - "nepal": "🇳🇵", - "netherlands": "🇳🇱", - "new_caledonia": "🇳🇨", - "new_zealand": "🇳🇿", - "nicaragua": "🇳🇮", - "niger": "🇳🇪", - "nigeria": "🇳🇬", - "niue": "🇳🇺", - "norfolk_island": "🇳🇫", - "north_korea": "🇰🇵", - "northern_mariana_islands": "🇲🇵", - "norway": "🇳🇴", - "ok_button": "🆗", - "ok_hand": "👌", - "ok_hand_dark_skin_tone": "👌🏿", - "ok_hand_light_skin_tone": "👌🏻", - "ok_hand_medium-dark_skin_tone": "👌🏾", - "ok_hand_medium-light_skin_tone": "👌🏼", - "ok_hand_medium_skin_tone": "👌🏽", - "on!_arrow": "🔛", - "o_button_(blood_type)": "🅾", - "oman": "🇴🇲", - "ophiuchus": "⛎", - "p_button": "🅿", - "pakistan": "🇵🇰", - "palau": "🇵🇼", - "palestinian_territories": "🇵🇸", - "panama": "🇵🇦", - "papua_new_guinea": "🇵🇬", - "paraguay": "🇵🇾", - "peru": "🇵🇪", - "philippines": "🇵🇭", - "pisces": "♓", - "pitcairn_islands": "🇵🇳", - "poland": "🇵🇱", - "portugal": "🇵🇹", - "puerto_rico": "🇵🇷", - "qatar": "🇶🇦", - "romania": "🇷🇴", - "russia": "🇷🇺", - "rwanda": "🇷🇼", - "réunion": "🇷🇪", - "soon_arrow": "🔜", - "sos_button": "🆘", - "sagittarius": "♐", - "samoa": "🇼🇸", - "san_marino": "🇸🇲", - "santa_claus": "🎅", - "santa_claus_dark_skin_tone": "🎅🏿", - "santa_claus_light_skin_tone": "🎅🏻", - "santa_claus_medium-dark_skin_tone": "🎅🏾", - "santa_claus_medium-light_skin_tone": "🎅🏼", - "santa_claus_medium_skin_tone": "🎅🏽", - "saudi_arabia": "🇸🇦", - "scorpio": "♏", - "scotland": "🏴\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f", - "senegal": "🇸🇳", - "serbia": "🇷🇸", - "seychelles": "🇸🇨", - "sierra_leone": "🇸🇱", - "singapore": "🇸🇬", - "sint_maarten": "🇸🇽", - "slovakia": "🇸🇰", - "slovenia": "🇸🇮", - "solomon_islands": "🇸🇧", - "somalia": "🇸🇴", - "south_africa": "🇿🇦", - "south_georgia_&_south_sandwich_islands": "🇬🇸", - "south_korea": "🇰🇷", - "south_sudan": "🇸🇸", - "spain": "🇪🇸", - "sri_lanka": "🇱🇰", - "st._barthélemy": "🇧🇱", - "st._helena": "🇸🇭", - "st._kitts_&_nevis": "🇰🇳", - "st._lucia": "🇱🇨", - "st._martin": "🇲🇫", - "st._pierre_&_miquelon": "🇵🇲", - "st._vincent_&_grenadines": "🇻🇨", - "statue_of_liberty": "🗽", - "sudan": "🇸🇩", - "suriname": "🇸🇷", - "svalbard_&_jan_mayen": "🇸🇯", - "swaziland": "🇸🇿", - "sweden": "🇸🇪", - "switzerland": "🇨🇭", - "syria": "🇸🇾", - "são_tomé_&_príncipe": "🇸🇹", - "t-rex": "🦖", - "top_arrow": "🔝", - "taiwan": "🇹🇼", - "tajikistan": "🇹🇯", - "tanzania": "🇹🇿", - "taurus": "♉", - "thailand": "🇹🇭", - "timor-leste": "🇹🇱", - "togo": "🇹🇬", - "tokelau": "🇹🇰", - "tokyo_tower": "🗼", - "tonga": "🇹🇴", - "trinidad_&_tobago": "🇹🇹", - "tristan_da_cunha": "🇹🇦", - "tunisia": "🇹🇳", - "turkey": "🦃", - "turkmenistan": "🇹🇲", - "turks_&_caicos_islands": "🇹🇨", - "tuvalu": "🇹🇻", - "u.s._outlying_islands": "🇺🇲", - "u.s._virgin_islands": "🇻🇮", - "up!_button": "🆙", - "uganda": "🇺🇬", - "ukraine": "🇺🇦", - "united_arab_emirates": "🇦🇪", - "united_kingdom": "🇬🇧", - "united_nations": "🇺🇳", - "united_states": "🇺🇸", - "uruguay": "🇺🇾", - "uzbekistan": "🇺🇿", - "vs_button": "🆚", - "vanuatu": "🇻🇺", - "vatican_city": "🇻🇦", - "venezuela": "🇻🇪", - "vietnam": "🇻🇳", - "virgo": "♍", - "wales": "🏴\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f", - "wallis_&_futuna": "🇼🇫", - "western_sahara": "🇪🇭", - "yemen": "🇾🇪", - "zambia": "🇿🇲", - "zimbabwe": "🇿🇼", - "abacus": "🧮", - "adhesive_bandage": "🩹", - "admission_tickets": "🎟", - "adult": "🧑", - "adult_dark_skin_tone": "🧑🏿", - "adult_light_skin_tone": "🧑🏻", - "adult_medium-dark_skin_tone": "🧑🏾", - "adult_medium-light_skin_tone": "🧑🏼", - "adult_medium_skin_tone": "🧑🏽", - "aerial_tramway": "🚡", - "airplane": "✈", - "airplane_arrival": "🛬", - "airplane_departure": "🛫", - "alarm_clock": "⏰", - "alembic": "⚗", - "alien": "👽", - "alien_monster": "👾", - "ambulance": "🚑", - "american_football": "🏈", - "amphora": "🏺", - "anchor": "⚓", - "anger_symbol": "💢", - "angry_face": "😠", - "angry_face_with_horns": "👿", - "anguished_face": "😧", - "ant": "🐜", - "antenna_bars": "📶", - "anxious_face_with_sweat": "😰", - "articulated_lorry": "🚛", - "artist_palette": "🎨", - "astonished_face": "😲", - "atom_symbol": "⚛", - "auto_rickshaw": "🛺", - "automobile": "🚗", - "avocado": "🥑", - "axe": "🪓", - "baby": "👶", - "baby_angel": "👼", - "baby_angel_dark_skin_tone": "👼🏿", - "baby_angel_light_skin_tone": "👼🏻", - "baby_angel_medium-dark_skin_tone": "👼🏾", - "baby_angel_medium-light_skin_tone": "👼🏼", - "baby_angel_medium_skin_tone": "👼🏽", - "baby_bottle": "🍼", - "baby_chick": "🐤", - "baby_dark_skin_tone": "👶🏿", - "baby_light_skin_tone": "👶🏻", - "baby_medium-dark_skin_tone": "👶🏾", - "baby_medium-light_skin_tone": "👶🏼", - "baby_medium_skin_tone": "👶🏽", - "baby_symbol": "🚼", - "backhand_index_pointing_down": "👇", - "backhand_index_pointing_down_dark_skin_tone": "👇🏿", - "backhand_index_pointing_down_light_skin_tone": "👇🏻", - "backhand_index_pointing_down_medium-dark_skin_tone": "👇🏾", - "backhand_index_pointing_down_medium-light_skin_tone": "👇🏼", - "backhand_index_pointing_down_medium_skin_tone": "👇🏽", - "backhand_index_pointing_left": "👈", - "backhand_index_pointing_left_dark_skin_tone": "👈🏿", - "backhand_index_pointing_left_light_skin_tone": "👈🏻", - "backhand_index_pointing_left_medium-dark_skin_tone": "👈🏾", - "backhand_index_pointing_left_medium-light_skin_tone": "👈🏼", - "backhand_index_pointing_left_medium_skin_tone": "👈🏽", - "backhand_index_pointing_right": "👉", - "backhand_index_pointing_right_dark_skin_tone": "👉🏿", - "backhand_index_pointing_right_light_skin_tone": "👉🏻", - "backhand_index_pointing_right_medium-dark_skin_tone": "👉🏾", - "backhand_index_pointing_right_medium-light_skin_tone": "👉🏼", - "backhand_index_pointing_right_medium_skin_tone": "👉🏽", - "backhand_index_pointing_up": "👆", - "backhand_index_pointing_up_dark_skin_tone": "👆🏿", - "backhand_index_pointing_up_light_skin_tone": "👆🏻", - "backhand_index_pointing_up_medium-dark_skin_tone": "👆🏾", - "backhand_index_pointing_up_medium-light_skin_tone": "👆🏼", - "backhand_index_pointing_up_medium_skin_tone": "👆🏽", - "bacon": "🥓", - "badger": "🦡", - "badminton": "🏸", - "bagel": "🥯", - "baggage_claim": "🛄", - "baguette_bread": "🥖", - "balance_scale": "⚖", - "bald": "🦲", - "bald_man": "👨\u200d🦲", - "bald_woman": "👩\u200d🦲", - "ballet_shoes": "🩰", - "balloon": "🎈", - "ballot_box_with_ballot": "🗳", - "ballot_box_with_check": "☑", - "banana": "🍌", - "banjo": "🪕", - "bank": "🏦", - "bar_chart": "📊", - "barber_pole": "💈", - "baseball": "⚾", - "basket": "🧺", - "basketball": "🏀", - "bat": "🦇", - "bathtub": "🛁", - "battery": "🔋", - "beach_with_umbrella": "🏖", - "beaming_face_with_smiling_eyes": "😁", - "bear_face": "🐻", - "bearded_person": "🧔", - "bearded_person_dark_skin_tone": "🧔🏿", - "bearded_person_light_skin_tone": "🧔🏻", - "bearded_person_medium-dark_skin_tone": "🧔🏾", - "bearded_person_medium-light_skin_tone": "🧔🏼", - "bearded_person_medium_skin_tone": "🧔🏽", - "beating_heart": "💓", - "bed": "🛏", - "beer_mug": "🍺", - "bell": "🔔", - "bell_with_slash": "🔕", - "bellhop_bell": "🛎", - "bento_box": "🍱", - "beverage_box": "🧃", - "bicycle": "🚲", - "bikini": "👙", - "billed_cap": "🧢", - "biohazard": "☣", - "bird": "🐦", - "birthday_cake": "🎂", - "black_circle": "⚫", - "black_flag": "🏴", - "black_heart": "🖤", - "black_large_square": "⬛", - "black_medium-small_square": "◾", - "black_medium_square": "◼", - "black_nib": "✒", - "black_small_square": "▪", - "black_square_button": "🔲", - "blond-haired_man": "👱\u200d♂️", - "blond-haired_man_dark_skin_tone": "👱🏿\u200d♂️", - "blond-haired_man_light_skin_tone": "👱🏻\u200d♂️", - "blond-haired_man_medium-dark_skin_tone": "👱🏾\u200d♂️", - "blond-haired_man_medium-light_skin_tone": "👱🏼\u200d♂️", - "blond-haired_man_medium_skin_tone": "👱🏽\u200d♂️", - "blond-haired_person": "👱", - "blond-haired_person_dark_skin_tone": "👱🏿", - "blond-haired_person_light_skin_tone": "👱🏻", - "blond-haired_person_medium-dark_skin_tone": "👱🏾", - "blond-haired_person_medium-light_skin_tone": "👱🏼", - "blond-haired_person_medium_skin_tone": "👱🏽", - "blond-haired_woman": "👱\u200d♀️", - "blond-haired_woman_dark_skin_tone": "👱🏿\u200d♀️", - "blond-haired_woman_light_skin_tone": "👱🏻\u200d♀️", - "blond-haired_woman_medium-dark_skin_tone": "👱🏾\u200d♀️", - "blond-haired_woman_medium-light_skin_tone": "👱🏼\u200d♀️", - "blond-haired_woman_medium_skin_tone": "👱🏽\u200d♀️", - "blossom": "🌼", - "blowfish": "🐡", - "blue_book": "📘", - "blue_circle": "🔵", - "blue_heart": "💙", - "blue_square": "🟦", - "boar": "🐗", - "bomb": "💣", - "bone": "🦴", - "bookmark": "🔖", - "bookmark_tabs": "📑", - "books": "📚", - "bottle_with_popping_cork": "🍾", - "bouquet": "💐", - "bow_and_arrow": "🏹", - "bowl_with_spoon": "🥣", - "bowling": "🎳", - "boxing_glove": "🥊", - "boy": "👦", - "boy_dark_skin_tone": "👦🏿", - "boy_light_skin_tone": "👦🏻", - "boy_medium-dark_skin_tone": "👦🏾", - "boy_medium-light_skin_tone": "👦🏼", - "boy_medium_skin_tone": "👦🏽", - "brain": "🧠", - "bread": "🍞", - "breast-feeding": "🤱", - "breast-feeding_dark_skin_tone": "🤱🏿", - "breast-feeding_light_skin_tone": "🤱🏻", - "breast-feeding_medium-dark_skin_tone": "🤱🏾", - "breast-feeding_medium-light_skin_tone": "🤱🏼", - "breast-feeding_medium_skin_tone": "🤱🏽", - "brick": "🧱", - "bride_with_veil": "👰", - "bride_with_veil_dark_skin_tone": "👰🏿", - "bride_with_veil_light_skin_tone": "👰🏻", - "bride_with_veil_medium-dark_skin_tone": "👰🏾", - "bride_with_veil_medium-light_skin_tone": "👰🏼", - "bride_with_veil_medium_skin_tone": "👰🏽", - "bridge_at_night": "🌉", - "briefcase": "💼", - "briefs": "🩲", - "bright_button": "🔆", - "broccoli": "🥦", - "broken_heart": "💔", - "broom": "🧹", - "brown_circle": "🟤", - "brown_heart": "🤎", - "brown_square": "🟫", - "bug": "🐛", - "building_construction": "🏗", - "bullet_train": "🚅", - "burrito": "🌯", - "bus": "🚌", - "bus_stop": "🚏", - "bust_in_silhouette": "👤", - "busts_in_silhouette": "👥", - "butter": "🧈", - "butterfly": "🦋", - "cactus": "🌵", - "calendar": "📆", - "call_me_hand": "🤙", - "call_me_hand_dark_skin_tone": "🤙🏿", - "call_me_hand_light_skin_tone": "🤙🏻", - "call_me_hand_medium-dark_skin_tone": "🤙🏾", - "call_me_hand_medium-light_skin_tone": "🤙🏼", - "call_me_hand_medium_skin_tone": "🤙🏽", - "camel": "🐫", - "camera": "📷", - "camera_with_flash": "📸", - "camping": "🏕", - "candle": "🕯", - "candy": "🍬", - "canned_food": "🥫", - "canoe": "🛶", - "card_file_box": "🗃", - "card_index": "📇", - "card_index_dividers": "🗂", - "carousel_horse": "🎠", - "carp_streamer": "🎏", - "carrot": "🥕", - "castle": "🏰", - "cat": "🐱", - "cat_face": "🐱", - "cat_face_with_tears_of_joy": "😹", - "cat_face_with_wry_smile": "😼", - "chains": "⛓", - "chair": "🪑", - "chart_decreasing": "📉", - "chart_increasing": "📈", - "chart_increasing_with_yen": "💹", - "cheese_wedge": "🧀", - "chequered_flag": "🏁", - "cherries": "🍒", - "cherry_blossom": "🌸", - "chess_pawn": "♟", - "chestnut": "🌰", - "chicken": "🐔", - "child": "🧒", - "child_dark_skin_tone": "🧒🏿", - "child_light_skin_tone": "🧒🏻", - "child_medium-dark_skin_tone": "🧒🏾", - "child_medium-light_skin_tone": "🧒🏼", - "child_medium_skin_tone": "🧒🏽", - "children_crossing": "🚸", - "chipmunk": "🐿", - "chocolate_bar": "🍫", - "chopsticks": "🥢", - "church": "⛪", - "cigarette": "🚬", - "cinema": "🎦", - "circled_m": "Ⓜ", - "circus_tent": "🎪", - "cityscape": "🏙", - "cityscape_at_dusk": "🌆", - "clamp": "🗜", - "clapper_board": "🎬", - "clapping_hands": "👏", - "clapping_hands_dark_skin_tone": "👏🏿", - "clapping_hands_light_skin_tone": "👏🏻", - "clapping_hands_medium-dark_skin_tone": "👏🏾", - "clapping_hands_medium-light_skin_tone": "👏🏼", - "clapping_hands_medium_skin_tone": "👏🏽", - "classical_building": "🏛", - "clinking_beer_mugs": "🍻", - "clinking_glasses": "🥂", - "clipboard": "📋", - "clockwise_vertical_arrows": "🔃", - "closed_book": "📕", - "closed_mailbox_with_lowered_flag": "📪", - "closed_mailbox_with_raised_flag": "📫", - "closed_umbrella": "🌂", - "cloud": "☁", - "cloud_with_lightning": "🌩", - "cloud_with_lightning_and_rain": "⛈", - "cloud_with_rain": "🌧", - "cloud_with_snow": "🌨", - "clown_face": "🤡", - "club_suit": "♣", - "clutch_bag": "👝", - "coat": "🧥", - "cocktail_glass": "🍸", - "coconut": "🥥", - "coffin": "⚰", - "cold_face": "🥶", - "collision": "💥", - "comet": "☄", - "compass": "🧭", - "computer_disk": "💽", - "computer_mouse": "🖱", - "confetti_ball": "🎊", - "confounded_face": "😖", - "confused_face": "😕", - "construction": "🚧", - "construction_worker": "👷", - "construction_worker_dark_skin_tone": "👷🏿", - "construction_worker_light_skin_tone": "👷🏻", - "construction_worker_medium-dark_skin_tone": "👷🏾", - "construction_worker_medium-light_skin_tone": "👷🏼", - "construction_worker_medium_skin_tone": "👷🏽", - "control_knobs": "🎛", - "convenience_store": "🏪", - "cooked_rice": "🍚", - "cookie": "🍪", - "cooking": "🍳", - "copyright": "©", - "couch_and_lamp": "🛋", - "counterclockwise_arrows_button": "🔄", - "couple_with_heart": "💑", - "couple_with_heart_man_man": "👨\u200d❤️\u200d👨", - "couple_with_heart_woman_man": "👩\u200d❤️\u200d👨", - "couple_with_heart_woman_woman": "👩\u200d❤️\u200d👩", - "cow": "🐮", - "cow_face": "🐮", - "cowboy_hat_face": "🤠", - "crab": "🦀", - "crayon": "🖍", - "credit_card": "💳", - "crescent_moon": "🌙", - "cricket": "🦗", - "cricket_game": "🏏", - "crocodile": "🐊", - "croissant": "🥐", - "cross_mark": "❌", - "cross_mark_button": "❎", - "crossed_fingers": "🤞", - "crossed_fingers_dark_skin_tone": "🤞🏿", - "crossed_fingers_light_skin_tone": "🤞🏻", - "crossed_fingers_medium-dark_skin_tone": "🤞🏾", - "crossed_fingers_medium-light_skin_tone": "🤞🏼", - "crossed_fingers_medium_skin_tone": "🤞🏽", - "crossed_flags": "🎌", - "crossed_swords": "⚔", - "crown": "👑", - "crying_cat_face": "😿", - "crying_face": "😢", - "crystal_ball": "🔮", - "cucumber": "🥒", - "cupcake": "🧁", - "cup_with_straw": "🥤", - "curling_stone": "🥌", - "curly_hair": "🦱", - "curly-haired_man": "👨\u200d🦱", - "curly-haired_woman": "👩\u200d🦱", - "curly_loop": "➰", - "currency_exchange": "💱", - "curry_rice": "🍛", - "custard": "🍮", - "customs": "🛃", - "cut_of_meat": "🥩", - "cyclone": "🌀", - "dagger": "🗡", - "dango": "🍡", - "dashing_away": "💨", - "deaf_person": "🧏", - "deciduous_tree": "🌳", - "deer": "🦌", - "delivery_truck": "🚚", - "department_store": "🏬", - "derelict_house": "🏚", - "desert": "🏜", - "desert_island": "🏝", - "desktop_computer": "🖥", - "detective": "🕵", - "detective_dark_skin_tone": "🕵🏿", - "detective_light_skin_tone": "🕵🏻", - "detective_medium-dark_skin_tone": "🕵🏾", - "detective_medium-light_skin_tone": "🕵🏼", - "detective_medium_skin_tone": "🕵🏽", - "diamond_suit": "♦", - "diamond_with_a_dot": "💠", - "dim_button": "🔅", - "direct_hit": "🎯", - "disappointed_face": "😞", - "diving_mask": "🤿", - "diya_lamp": "🪔", - "dizzy": "💫", - "dizzy_face": "😵", - "dna": "🧬", - "dog": "🐶", - "dog_face": "🐶", - "dollar_banknote": "💵", - "dolphin": "🐬", - "door": "🚪", - "dotted_six-pointed_star": "🔯", - "double_curly_loop": "➿", - "double_exclamation_mark": "‼", - "doughnut": "🍩", - "dove": "🕊", - "down-left_arrow": "↙", - "down-right_arrow": "↘", - "down_arrow": "⬇", - "downcast_face_with_sweat": "😓", - "downwards_button": "🔽", - "dragon": "🐉", - "dragon_face": "🐲", - "dress": "👗", - "drooling_face": "🤤", - "drop_of_blood": "🩸", - "droplet": "💧", - "drum": "🥁", - "duck": "🦆", - "dumpling": "🥟", - "dvd": "📀", - "e-mail": "📧", - "eagle": "🦅", - "ear": "👂", - "ear_dark_skin_tone": "👂🏿", - "ear_light_skin_tone": "👂🏻", - "ear_medium-dark_skin_tone": "👂🏾", - "ear_medium-light_skin_tone": "👂🏼", - "ear_medium_skin_tone": "👂🏽", - "ear_of_corn": "🌽", - "ear_with_hearing_aid": "🦻", - "egg": "🍳", - "eggplant": "🍆", - "eight-pointed_star": "✴", - "eight-spoked_asterisk": "✳", - "eight-thirty": "🕣", - "eight_o’clock": "🕗", - "eject_button": "⏏", - "electric_plug": "🔌", - "elephant": "🐘", - "eleven-thirty": "🕦", - "eleven_o’clock": "🕚", - "elf": "🧝", - "elf_dark_skin_tone": "🧝🏿", - "elf_light_skin_tone": "🧝🏻", - "elf_medium-dark_skin_tone": "🧝🏾", - "elf_medium-light_skin_tone": "🧝🏼", - "elf_medium_skin_tone": "🧝🏽", - "envelope": "✉", - "envelope_with_arrow": "📩", - "euro_banknote": "💶", - "evergreen_tree": "🌲", - "ewe": "🐑", - "exclamation_mark": "❗", - "exclamation_question_mark": "⁉", - "exploding_head": "🤯", - "expressionless_face": "😑", - "eye": "👁", - "eye_in_speech_bubble": "👁️\u200d🗨️", - "eyes": "👀", - "face_blowing_a_kiss": "😘", - "face_savoring_food": "😋", - "face_screaming_in_fear": "😱", - "face_vomiting": "🤮", - "face_with_hand_over_mouth": "🤭", - "face_with_head-bandage": "🤕", - "face_with_medical_mask": "😷", - "face_with_monocle": "🧐", - "face_with_open_mouth": "😮", - "face_with_raised_eyebrow": "🤨", - "face_with_rolling_eyes": "🙄", - "face_with_steam_from_nose": "😤", - "face_with_symbols_on_mouth": "🤬", - "face_with_tears_of_joy": "😂", - "face_with_thermometer": "🤒", - "face_with_tongue": "😛", - "face_without_mouth": "😶", - "factory": "🏭", - "fairy": "🧚", - "fairy_dark_skin_tone": "🧚🏿", - "fairy_light_skin_tone": "🧚🏻", - "fairy_medium-dark_skin_tone": "🧚🏾", - "fairy_medium-light_skin_tone": "🧚🏼", - "fairy_medium_skin_tone": "🧚🏽", - "falafel": "🧆", - "fallen_leaf": "🍂", - "family": "👪", - "family_man_boy": "👨\u200d👦", - "family_man_boy_boy": "👨\u200d👦\u200d👦", - "family_man_girl": "👨\u200d👧", - "family_man_girl_boy": "👨\u200d👧\u200d👦", - "family_man_girl_girl": "👨\u200d👧\u200d👧", - "family_man_man_boy": "👨\u200d👨\u200d👦", - "family_man_man_boy_boy": "👨\u200d👨\u200d👦\u200d👦", - "family_man_man_girl": "👨\u200d👨\u200d👧", - "family_man_man_girl_boy": "👨\u200d👨\u200d👧\u200d👦", - "family_man_man_girl_girl": "👨\u200d👨\u200d👧\u200d👧", - "family_man_woman_boy": "👨\u200d👩\u200d👦", - "family_man_woman_boy_boy": "👨\u200d👩\u200d👦\u200d👦", - "family_man_woman_girl": "👨\u200d👩\u200d👧", - "family_man_woman_girl_boy": "👨\u200d👩\u200d👧\u200d👦", - "family_man_woman_girl_girl": "👨\u200d👩\u200d👧\u200d👧", - "family_woman_boy": "👩\u200d👦", - "family_woman_boy_boy": "👩\u200d👦\u200d👦", - "family_woman_girl": "👩\u200d👧", - "family_woman_girl_boy": "👩\u200d👧\u200d👦", - "family_woman_girl_girl": "👩\u200d👧\u200d👧", - "family_woman_woman_boy": "👩\u200d👩\u200d👦", - "family_woman_woman_boy_boy": "👩\u200d👩\u200d👦\u200d👦", - "family_woman_woman_girl": "👩\u200d👩\u200d👧", - "family_woman_woman_girl_boy": "👩\u200d👩\u200d👧\u200d👦", - "family_woman_woman_girl_girl": "👩\u200d👩\u200d👧\u200d👧", - "fast-forward_button": "⏩", - "fast_down_button": "⏬", - "fast_reverse_button": "⏪", - "fast_up_button": "⏫", - "fax_machine": "📠", - "fearful_face": "😨", - "female_sign": "♀", - "ferris_wheel": "🎡", - "ferry": "⛴", - "field_hockey": "🏑", - "file_cabinet": "🗄", - "file_folder": "📁", - "film_frames": "🎞", - "film_projector": "📽", - "fire": "🔥", - "fire_extinguisher": "🧯", - "firecracker": "🧨", - "fire_engine": "🚒", - "fireworks": "🎆", - "first_quarter_moon": "🌓", - "first_quarter_moon_face": "🌛", - "fish": "🐟", - "fish_cake_with_swirl": "🍥", - "fishing_pole": "🎣", - "five-thirty": "🕠", - "five_o’clock": "🕔", - "flag_in_hole": "⛳", - "flamingo": "🦩", - "flashlight": "🔦", - "flat_shoe": "🥿", - "fleur-de-lis": "⚜", - "flexed_biceps": "💪", - "flexed_biceps_dark_skin_tone": "💪🏿", - "flexed_biceps_light_skin_tone": "💪🏻", - "flexed_biceps_medium-dark_skin_tone": "💪🏾", - "flexed_biceps_medium-light_skin_tone": "💪🏼", - "flexed_biceps_medium_skin_tone": "💪🏽", - "floppy_disk": "💾", - "flower_playing_cards": "🎴", - "flushed_face": "😳", - "flying_disc": "🥏", - "flying_saucer": "🛸", - "fog": "🌫", - "foggy": "🌁", - "folded_hands": "🙏", - "folded_hands_dark_skin_tone": "🙏🏿", - "folded_hands_light_skin_tone": "🙏🏻", - "folded_hands_medium-dark_skin_tone": "🙏🏾", - "folded_hands_medium-light_skin_tone": "🙏🏼", - "folded_hands_medium_skin_tone": "🙏🏽", - "foot": "🦶", - "footprints": "👣", - "fork_and_knife": "🍴", - "fork_and_knife_with_plate": "🍽", - "fortune_cookie": "🥠", - "fountain": "⛲", - "fountain_pen": "🖋", - "four-thirty": "🕟", - "four_leaf_clover": "🍀", - "four_o’clock": "🕓", - "fox_face": "🦊", - "framed_picture": "🖼", - "french_fries": "🍟", - "fried_shrimp": "🍤", - "frog_face": "🐸", - "front-facing_baby_chick": "🐥", - "frowning_face": "☹", - "frowning_face_with_open_mouth": "😦", - "fuel_pump": "⛽", - "full_moon": "🌕", - "full_moon_face": "🌝", - "funeral_urn": "⚱", - "game_die": "🎲", - "garlic": "🧄", - "gear": "⚙", - "gem_stone": "💎", - "genie": "🧞", - "ghost": "👻", - "giraffe": "🦒", - "girl": "👧", - "girl_dark_skin_tone": "👧🏿", - "girl_light_skin_tone": "👧🏻", - "girl_medium-dark_skin_tone": "👧🏾", - "girl_medium-light_skin_tone": "👧🏼", - "girl_medium_skin_tone": "👧🏽", - "glass_of_milk": "🥛", - "glasses": "👓", - "globe_showing_americas": "🌎", - "globe_showing_asia-australia": "🌏", - "globe_showing_europe-africa": "🌍", - "globe_with_meridians": "🌐", - "gloves": "🧤", - "glowing_star": "🌟", - "goal_net": "🥅", - "goat": "🐐", - "goblin": "👺", - "goggles": "🥽", - "gorilla": "🦍", - "graduation_cap": "🎓", - "grapes": "🍇", - "green_apple": "🍏", - "green_book": "📗", - "green_circle": "🟢", - "green_heart": "💚", - "green_salad": "🥗", - "green_square": "🟩", - "grimacing_face": "😬", - "grinning_cat_face": "😺", - "grinning_cat_face_with_smiling_eyes": "😸", - "grinning_face": "😀", - "grinning_face_with_big_eyes": "😃", - "grinning_face_with_smiling_eyes": "😄", - "grinning_face_with_sweat": "😅", - "grinning_squinting_face": "😆", - "growing_heart": "💗", - "guard": "💂", - "guard_dark_skin_tone": "💂🏿", - "guard_light_skin_tone": "💂🏻", - "guard_medium-dark_skin_tone": "💂🏾", - "guard_medium-light_skin_tone": "💂🏼", - "guard_medium_skin_tone": "💂🏽", - "guide_dog": "🦮", - "guitar": "🎸", - "hamburger": "🍔", - "hammer": "🔨", - "hammer_and_pick": "⚒", - "hammer_and_wrench": "🛠", - "hamster_face": "🐹", - "hand_with_fingers_splayed": "🖐", - "hand_with_fingers_splayed_dark_skin_tone": "🖐🏿", - "hand_with_fingers_splayed_light_skin_tone": "🖐🏻", - "hand_with_fingers_splayed_medium-dark_skin_tone": "🖐🏾", - "hand_with_fingers_splayed_medium-light_skin_tone": "🖐🏼", - "hand_with_fingers_splayed_medium_skin_tone": "🖐🏽", - "handbag": "👜", - "handshake": "🤝", - "hatching_chick": "🐣", - "headphone": "🎧", - "hear-no-evil_monkey": "🙉", - "heart_decoration": "💟", - "heart_suit": "♥", - "heart_with_arrow": "💘", - "heart_with_ribbon": "💝", - "heavy_check_mark": "✔", - "heavy_division_sign": "➗", - "heavy_dollar_sign": "💲", - "heavy_heart_exclamation": "❣", - "heavy_large_circle": "⭕", - "heavy_minus_sign": "➖", - "heavy_multiplication_x": "✖", - "heavy_plus_sign": "➕", - "hedgehog": "🦔", - "helicopter": "🚁", - "herb": "🌿", - "hibiscus": "🌺", - "high-heeled_shoe": "👠", - "high-speed_train": "🚄", - "high_voltage": "⚡", - "hiking_boot": "🥾", - "hindu_temple": "🛕", - "hippopotamus": "🦛", - "hole": "🕳", - "honey_pot": "🍯", - "honeybee": "🐝", - "horizontal_traffic_light": "🚥", - "horse": "🐴", - "horse_face": "🐴", - "horse_racing": "🏇", - "horse_racing_dark_skin_tone": "🏇🏿", - "horse_racing_light_skin_tone": "🏇🏻", - "horse_racing_medium-dark_skin_tone": "🏇🏾", - "horse_racing_medium-light_skin_tone": "🏇🏼", - "horse_racing_medium_skin_tone": "🏇🏽", - "hospital": "🏥", - "hot_beverage": "☕", - "hot_dog": "🌭", - "hot_face": "🥵", - "hot_pepper": "🌶", - "hot_springs": "♨", - "hotel": "🏨", - "hourglass_done": "⌛", - "hourglass_not_done": "⏳", - "house": "🏠", - "house_with_garden": "🏡", - "houses": "🏘", - "hugging_face": "🤗", - "hundred_points": "💯", - "hushed_face": "😯", - "ice": "🧊", - "ice_cream": "🍨", - "ice_hockey": "🏒", - "ice_skate": "⛸", - "inbox_tray": "📥", - "incoming_envelope": "📨", - "index_pointing_up": "☝", - "index_pointing_up_dark_skin_tone": "☝🏿", - "index_pointing_up_light_skin_tone": "☝🏻", - "index_pointing_up_medium-dark_skin_tone": "☝🏾", - "index_pointing_up_medium-light_skin_tone": "☝🏼", - "index_pointing_up_medium_skin_tone": "☝🏽", - "infinity": "♾", - "information": "ℹ", - "input_latin_letters": "🔤", - "input_latin_lowercase": "🔡", - "input_latin_uppercase": "🔠", - "input_numbers": "🔢", - "input_symbols": "🔣", - "jack-o-lantern": "🎃", - "jeans": "👖", - "jigsaw": "🧩", - "joker": "🃏", - "joystick": "🕹", - "kaaba": "🕋", - "kangaroo": "🦘", - "key": "🔑", - "keyboard": "⌨", - "keycap_#": "#️⃣", - "keycap_*": "*️⃣", - "keycap_0": "0️⃣", - "keycap_1": "1️⃣", - "keycap_10": "🔟", - "keycap_2": "2️⃣", - "keycap_3": "3️⃣", - "keycap_4": "4️⃣", - "keycap_5": "5️⃣", - "keycap_6": "6️⃣", - "keycap_7": "7️⃣", - "keycap_8": "8️⃣", - "keycap_9": "9️⃣", - "kick_scooter": "🛴", - "kimono": "👘", - "kiss": "💋", - "kiss_man_man": "👨\u200d❤️\u200d💋\u200d👨", - "kiss_mark": "💋", - "kiss_woman_man": "👩\u200d❤️\u200d💋\u200d👨", - "kiss_woman_woman": "👩\u200d❤️\u200d💋\u200d👩", - "kissing_cat_face": "😽", - "kissing_face": "😗", - "kissing_face_with_closed_eyes": "😚", - "kissing_face_with_smiling_eyes": "😙", - "kitchen_knife": "🔪", - "kite": "🪁", - "kiwi_fruit": "🥝", - "koala": "🐨", - "lab_coat": "🥼", - "label": "🏷", - "lacrosse": "🥍", - "lady_beetle": "🐞", - "laptop_computer": "💻", - "large_blue_diamond": "🔷", - "large_orange_diamond": "🔶", - "last_quarter_moon": "🌗", - "last_quarter_moon_face": "🌜", - "last_track_button": "⏮", - "latin_cross": "✝", - "leaf_fluttering_in_wind": "🍃", - "leafy_green": "🥬", - "ledger": "📒", - "left-facing_fist": "🤛", - "left-facing_fist_dark_skin_tone": "🤛🏿", - "left-facing_fist_light_skin_tone": "🤛🏻", - "left-facing_fist_medium-dark_skin_tone": "🤛🏾", - "left-facing_fist_medium-light_skin_tone": "🤛🏼", - "left-facing_fist_medium_skin_tone": "🤛🏽", - "left-right_arrow": "↔", - "left_arrow": "⬅", - "left_arrow_curving_right": "↪", - "left_luggage": "🛅", - "left_speech_bubble": "🗨", - "leg": "🦵", - "lemon": "🍋", - "leopard": "🐆", - "level_slider": "🎚", - "light_bulb": "💡", - "light_rail": "🚈", - "link": "🔗", - "linked_paperclips": "🖇", - "lion_face": "🦁", - "lipstick": "💄", - "litter_in_bin_sign": "🚮", - "lizard": "🦎", - "llama": "🦙", - "lobster": "🦞", - "locked": "🔒", - "locked_with_key": "🔐", - "locked_with_pen": "🔏", - "locomotive": "🚂", - "lollipop": "🍭", - "lotion_bottle": "🧴", - "loudly_crying_face": "😭", - "loudspeaker": "📢", - "love-you_gesture": "🤟", - "love-you_gesture_dark_skin_tone": "🤟🏿", - "love-you_gesture_light_skin_tone": "🤟🏻", - "love-you_gesture_medium-dark_skin_tone": "🤟🏾", - "love-you_gesture_medium-light_skin_tone": "🤟🏼", - "love-you_gesture_medium_skin_tone": "🤟🏽", - "love_hotel": "🏩", - "love_letter": "💌", - "luggage": "🧳", - "lying_face": "🤥", - "mage": "🧙", - "mage_dark_skin_tone": "🧙🏿", - "mage_light_skin_tone": "🧙🏻", - "mage_medium-dark_skin_tone": "🧙🏾", - "mage_medium-light_skin_tone": "🧙🏼", - "mage_medium_skin_tone": "🧙🏽", - "magnet": "🧲", - "magnifying_glass_tilted_left": "🔍", - "magnifying_glass_tilted_right": "🔎", - "mahjong_red_dragon": "🀄", - "male_sign": "♂", - "man": "👨", - "man_and_woman_holding_hands": "👫", - "man_artist": "👨\u200d🎨", - "man_artist_dark_skin_tone": "👨🏿\u200d🎨", - "man_artist_light_skin_tone": "👨🏻\u200d🎨", - "man_artist_medium-dark_skin_tone": "👨🏾\u200d🎨", - "man_artist_medium-light_skin_tone": "👨🏼\u200d🎨", - "man_artist_medium_skin_tone": "👨🏽\u200d🎨", - "man_astronaut": "👨\u200d🚀", - "man_astronaut_dark_skin_tone": "👨🏿\u200d🚀", - "man_astronaut_light_skin_tone": "👨🏻\u200d🚀", - "man_astronaut_medium-dark_skin_tone": "👨🏾\u200d🚀", - "man_astronaut_medium-light_skin_tone": "👨🏼\u200d🚀", - "man_astronaut_medium_skin_tone": "👨🏽\u200d🚀", - "man_biking": "🚴\u200d♂️", - "man_biking_dark_skin_tone": "🚴🏿\u200d♂️", - "man_biking_light_skin_tone": "🚴🏻\u200d♂️", - "man_biking_medium-dark_skin_tone": "🚴🏾\u200d♂️", - "man_biking_medium-light_skin_tone": "🚴🏼\u200d♂️", - "man_biking_medium_skin_tone": "🚴🏽\u200d♂️", - "man_bouncing_ball": "⛹️\u200d♂️", - "man_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♂️", - "man_bouncing_ball_light_skin_tone": "⛹🏻\u200d♂️", - "man_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♂️", - "man_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♂️", - "man_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♂️", - "man_bowing": "🙇\u200d♂️", - "man_bowing_dark_skin_tone": "🙇🏿\u200d♂️", - "man_bowing_light_skin_tone": "🙇🏻\u200d♂️", - "man_bowing_medium-dark_skin_tone": "🙇🏾\u200d♂️", - "man_bowing_medium-light_skin_tone": "🙇🏼\u200d♂️", - "man_bowing_medium_skin_tone": "🙇🏽\u200d♂️", - "man_cartwheeling": "🤸\u200d♂️", - "man_cartwheeling_dark_skin_tone": "🤸🏿\u200d♂️", - "man_cartwheeling_light_skin_tone": "🤸🏻\u200d♂️", - "man_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♂️", - "man_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♂️", - "man_cartwheeling_medium_skin_tone": "🤸🏽\u200d♂️", - "man_climbing": "🧗\u200d♂️", - "man_climbing_dark_skin_tone": "🧗🏿\u200d♂️", - "man_climbing_light_skin_tone": "🧗🏻\u200d♂️", - "man_climbing_medium-dark_skin_tone": "🧗🏾\u200d♂️", - "man_climbing_medium-light_skin_tone": "🧗🏼\u200d♂️", - "man_climbing_medium_skin_tone": "🧗🏽\u200d♂️", - "man_construction_worker": "👷\u200d♂️", - "man_construction_worker_dark_skin_tone": "👷🏿\u200d♂️", - "man_construction_worker_light_skin_tone": "👷🏻\u200d♂️", - "man_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♂️", - "man_construction_worker_medium-light_skin_tone": "👷🏼\u200d♂️", - "man_construction_worker_medium_skin_tone": "👷🏽\u200d♂️", - "man_cook": "👨\u200d🍳", - "man_cook_dark_skin_tone": "👨🏿\u200d🍳", - "man_cook_light_skin_tone": "👨🏻\u200d🍳", - "man_cook_medium-dark_skin_tone": "👨🏾\u200d🍳", - "man_cook_medium-light_skin_tone": "👨🏼\u200d🍳", - "man_cook_medium_skin_tone": "👨🏽\u200d🍳", - "man_dancing": "🕺", - "man_dancing_dark_skin_tone": "🕺🏿", - "man_dancing_light_skin_tone": "🕺🏻", - "man_dancing_medium-dark_skin_tone": "🕺🏾", - "man_dancing_medium-light_skin_tone": "🕺🏼", - "man_dancing_medium_skin_tone": "🕺🏽", - "man_dark_skin_tone": "👨🏿", - "man_detective": "🕵️\u200d♂️", - "man_detective_dark_skin_tone": "🕵🏿\u200d♂️", - "man_detective_light_skin_tone": "🕵🏻\u200d♂️", - "man_detective_medium-dark_skin_tone": "🕵🏾\u200d♂️", - "man_detective_medium-light_skin_tone": "🕵🏼\u200d♂️", - "man_detective_medium_skin_tone": "🕵🏽\u200d♂️", - "man_elf": "🧝\u200d♂️", - "man_elf_dark_skin_tone": "🧝🏿\u200d♂️", - "man_elf_light_skin_tone": "🧝🏻\u200d♂️", - "man_elf_medium-dark_skin_tone": "🧝🏾\u200d♂️", - "man_elf_medium-light_skin_tone": "🧝🏼\u200d♂️", - "man_elf_medium_skin_tone": "🧝🏽\u200d♂️", - "man_facepalming": "🤦\u200d♂️", - "man_facepalming_dark_skin_tone": "🤦🏿\u200d♂️", - "man_facepalming_light_skin_tone": "🤦🏻\u200d♂️", - "man_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♂️", - "man_facepalming_medium-light_skin_tone": "🤦🏼\u200d♂️", - "man_facepalming_medium_skin_tone": "🤦🏽\u200d♂️", - "man_factory_worker": "👨\u200d🏭", - "man_factory_worker_dark_skin_tone": "👨🏿\u200d🏭", - "man_factory_worker_light_skin_tone": "👨🏻\u200d🏭", - "man_factory_worker_medium-dark_skin_tone": "👨🏾\u200d🏭", - "man_factory_worker_medium-light_skin_tone": "👨🏼\u200d🏭", - "man_factory_worker_medium_skin_tone": "👨🏽\u200d🏭", - "man_fairy": "🧚\u200d♂️", - "man_fairy_dark_skin_tone": "🧚🏿\u200d♂️", - "man_fairy_light_skin_tone": "🧚🏻\u200d♂️", - "man_fairy_medium-dark_skin_tone": "🧚🏾\u200d♂️", - "man_fairy_medium-light_skin_tone": "🧚🏼\u200d♂️", - "man_fairy_medium_skin_tone": "🧚🏽\u200d♂️", - "man_farmer": "👨\u200d🌾", - "man_farmer_dark_skin_tone": "👨🏿\u200d🌾", - "man_farmer_light_skin_tone": "👨🏻\u200d🌾", - "man_farmer_medium-dark_skin_tone": "👨🏾\u200d🌾", - "man_farmer_medium-light_skin_tone": "👨🏼\u200d🌾", - "man_farmer_medium_skin_tone": "👨🏽\u200d🌾", - "man_firefighter": "👨\u200d🚒", - "man_firefighter_dark_skin_tone": "👨🏿\u200d🚒", - "man_firefighter_light_skin_tone": "👨🏻\u200d🚒", - "man_firefighter_medium-dark_skin_tone": "👨🏾\u200d🚒", - "man_firefighter_medium-light_skin_tone": "👨🏼\u200d🚒", - "man_firefighter_medium_skin_tone": "👨🏽\u200d🚒", - "man_frowning": "🙍\u200d♂️", - "man_frowning_dark_skin_tone": "🙍🏿\u200d♂️", - "man_frowning_light_skin_tone": "🙍🏻\u200d♂️", - "man_frowning_medium-dark_skin_tone": "🙍🏾\u200d♂️", - "man_frowning_medium-light_skin_tone": "🙍🏼\u200d♂️", - "man_frowning_medium_skin_tone": "🙍🏽\u200d♂️", - "man_genie": "🧞\u200d♂️", - "man_gesturing_no": "🙅\u200d♂️", - "man_gesturing_no_dark_skin_tone": "🙅🏿\u200d♂️", - "man_gesturing_no_light_skin_tone": "🙅🏻\u200d♂️", - "man_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♂️", - "man_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♂️", - "man_gesturing_no_medium_skin_tone": "🙅🏽\u200d♂️", - "man_gesturing_ok": "🙆\u200d♂️", - "man_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♂️", - "man_gesturing_ok_light_skin_tone": "🙆🏻\u200d♂️", - "man_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♂️", - "man_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♂️", - "man_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♂️", - "man_getting_haircut": "💇\u200d♂️", - "man_getting_haircut_dark_skin_tone": "💇🏿\u200d♂️", - "man_getting_haircut_light_skin_tone": "💇🏻\u200d♂️", - "man_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♂️", - "man_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♂️", - "man_getting_haircut_medium_skin_tone": "💇🏽\u200d♂️", - "man_getting_massage": "💆\u200d♂️", - "man_getting_massage_dark_skin_tone": "💆🏿\u200d♂️", - "man_getting_massage_light_skin_tone": "💆🏻\u200d♂️", - "man_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♂️", - "man_getting_massage_medium-light_skin_tone": "💆🏼\u200d♂️", - "man_getting_massage_medium_skin_tone": "💆🏽\u200d♂️", - "man_golfing": "🏌️\u200d♂️", - "man_golfing_dark_skin_tone": "🏌🏿\u200d♂️", - "man_golfing_light_skin_tone": "🏌🏻\u200d♂️", - "man_golfing_medium-dark_skin_tone": "🏌🏾\u200d♂️", - "man_golfing_medium-light_skin_tone": "🏌🏼\u200d♂️", - "man_golfing_medium_skin_tone": "🏌🏽\u200d♂️", - "man_guard": "💂\u200d♂️", - "man_guard_dark_skin_tone": "💂🏿\u200d♂️", - "man_guard_light_skin_tone": "💂🏻\u200d♂️", - "man_guard_medium-dark_skin_tone": "💂🏾\u200d♂️", - "man_guard_medium-light_skin_tone": "💂🏼\u200d♂️", - "man_guard_medium_skin_tone": "💂🏽\u200d♂️", - "man_health_worker": "👨\u200d⚕️", - "man_health_worker_dark_skin_tone": "👨🏿\u200d⚕️", - "man_health_worker_light_skin_tone": "👨🏻\u200d⚕️", - "man_health_worker_medium-dark_skin_tone": "👨🏾\u200d⚕️", - "man_health_worker_medium-light_skin_tone": "👨🏼\u200d⚕️", - "man_health_worker_medium_skin_tone": "👨🏽\u200d⚕️", - "man_in_lotus_position": "🧘\u200d♂️", - "man_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♂️", - "man_in_lotus_position_light_skin_tone": "🧘🏻\u200d♂️", - "man_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♂️", - "man_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♂️", - "man_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♂️", - "man_in_manual_wheelchair": "👨\u200d🦽", - "man_in_motorized_wheelchair": "👨\u200d🦼", - "man_in_steamy_room": "🧖\u200d♂️", - "man_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♂️", - "man_in_steamy_room_light_skin_tone": "🧖🏻\u200d♂️", - "man_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♂️", - "man_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♂️", - "man_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♂️", - "man_in_suit_levitating": "🕴", - "man_in_suit_levitating_dark_skin_tone": "🕴🏿", - "man_in_suit_levitating_light_skin_tone": "🕴🏻", - "man_in_suit_levitating_medium-dark_skin_tone": "🕴🏾", - "man_in_suit_levitating_medium-light_skin_tone": "🕴🏼", - "man_in_suit_levitating_medium_skin_tone": "🕴🏽", - "man_in_tuxedo": "🤵", - "man_in_tuxedo_dark_skin_tone": "🤵🏿", - "man_in_tuxedo_light_skin_tone": "🤵🏻", - "man_in_tuxedo_medium-dark_skin_tone": "🤵🏾", - "man_in_tuxedo_medium-light_skin_tone": "🤵🏼", - "man_in_tuxedo_medium_skin_tone": "🤵🏽", - "man_judge": "👨\u200d⚖️", - "man_judge_dark_skin_tone": "👨🏿\u200d⚖️", - "man_judge_light_skin_tone": "👨🏻\u200d⚖️", - "man_judge_medium-dark_skin_tone": "👨🏾\u200d⚖️", - "man_judge_medium-light_skin_tone": "👨🏼\u200d⚖️", - "man_judge_medium_skin_tone": "👨🏽\u200d⚖️", - "man_juggling": "🤹\u200d♂️", - "man_juggling_dark_skin_tone": "🤹🏿\u200d♂️", - "man_juggling_light_skin_tone": "🤹🏻\u200d♂️", - "man_juggling_medium-dark_skin_tone": "🤹🏾\u200d♂️", - "man_juggling_medium-light_skin_tone": "🤹🏼\u200d♂️", - "man_juggling_medium_skin_tone": "🤹🏽\u200d♂️", - "man_lifting_weights": "🏋️\u200d♂️", - "man_lifting_weights_dark_skin_tone": "🏋🏿\u200d♂️", - "man_lifting_weights_light_skin_tone": "🏋🏻\u200d♂️", - "man_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♂️", - "man_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♂️", - "man_lifting_weights_medium_skin_tone": "🏋🏽\u200d♂️", - "man_light_skin_tone": "👨🏻", - "man_mage": "🧙\u200d♂️", - "man_mage_dark_skin_tone": "🧙🏿\u200d♂️", - "man_mage_light_skin_tone": "🧙🏻\u200d♂️", - "man_mage_medium-dark_skin_tone": "🧙🏾\u200d♂️", - "man_mage_medium-light_skin_tone": "🧙🏼\u200d♂️", - "man_mage_medium_skin_tone": "🧙🏽\u200d♂️", - "man_mechanic": "👨\u200d🔧", - "man_mechanic_dark_skin_tone": "👨🏿\u200d🔧", - "man_mechanic_light_skin_tone": "👨🏻\u200d🔧", - "man_mechanic_medium-dark_skin_tone": "👨🏾\u200d🔧", - "man_mechanic_medium-light_skin_tone": "👨🏼\u200d🔧", - "man_mechanic_medium_skin_tone": "👨🏽\u200d🔧", - "man_medium-dark_skin_tone": "👨🏾", - "man_medium-light_skin_tone": "👨🏼", - "man_medium_skin_tone": "👨🏽", - "man_mountain_biking": "🚵\u200d♂️", - "man_mountain_biking_dark_skin_tone": "🚵🏿\u200d♂️", - "man_mountain_biking_light_skin_tone": "🚵🏻\u200d♂️", - "man_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♂️", - "man_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♂️", - "man_mountain_biking_medium_skin_tone": "🚵🏽\u200d♂️", - "man_office_worker": "👨\u200d💼", - "man_office_worker_dark_skin_tone": "👨🏿\u200d💼", - "man_office_worker_light_skin_tone": "👨🏻\u200d💼", - "man_office_worker_medium-dark_skin_tone": "👨🏾\u200d💼", - "man_office_worker_medium-light_skin_tone": "👨🏼\u200d💼", - "man_office_worker_medium_skin_tone": "👨🏽\u200d💼", - "man_pilot": "👨\u200d✈️", - "man_pilot_dark_skin_tone": "👨🏿\u200d✈️", - "man_pilot_light_skin_tone": "👨🏻\u200d✈️", - "man_pilot_medium-dark_skin_tone": "👨🏾\u200d✈️", - "man_pilot_medium-light_skin_tone": "👨🏼\u200d✈️", - "man_pilot_medium_skin_tone": "👨🏽\u200d✈️", - "man_playing_handball": "🤾\u200d♂️", - "man_playing_handball_dark_skin_tone": "🤾🏿\u200d♂️", - "man_playing_handball_light_skin_tone": "🤾🏻\u200d♂️", - "man_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♂️", - "man_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♂️", - "man_playing_handball_medium_skin_tone": "🤾🏽\u200d♂️", - "man_playing_water_polo": "🤽\u200d♂️", - "man_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♂️", - "man_playing_water_polo_light_skin_tone": "🤽🏻\u200d♂️", - "man_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♂️", - "man_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♂️", - "man_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♂️", - "man_police_officer": "👮\u200d♂️", - "man_police_officer_dark_skin_tone": "👮🏿\u200d♂️", - "man_police_officer_light_skin_tone": "👮🏻\u200d♂️", - "man_police_officer_medium-dark_skin_tone": "👮🏾\u200d♂️", - "man_police_officer_medium-light_skin_tone": "👮🏼\u200d♂️", - "man_police_officer_medium_skin_tone": "👮🏽\u200d♂️", - "man_pouting": "🙎\u200d♂️", - "man_pouting_dark_skin_tone": "🙎🏿\u200d♂️", - "man_pouting_light_skin_tone": "🙎🏻\u200d♂️", - "man_pouting_medium-dark_skin_tone": "🙎🏾\u200d♂️", - "man_pouting_medium-light_skin_tone": "🙎🏼\u200d♂️", - "man_pouting_medium_skin_tone": "🙎🏽\u200d♂️", - "man_raising_hand": "🙋\u200d♂️", - "man_raising_hand_dark_skin_tone": "🙋🏿\u200d♂️", - "man_raising_hand_light_skin_tone": "🙋🏻\u200d♂️", - "man_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♂️", - "man_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♂️", - "man_raising_hand_medium_skin_tone": "🙋🏽\u200d♂️", - "man_rowing_boat": "🚣\u200d♂️", - "man_rowing_boat_dark_skin_tone": "🚣🏿\u200d♂️", - "man_rowing_boat_light_skin_tone": "🚣🏻\u200d♂️", - "man_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♂️", - "man_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♂️", - "man_rowing_boat_medium_skin_tone": "🚣🏽\u200d♂️", - "man_running": "🏃\u200d♂️", - "man_running_dark_skin_tone": "🏃🏿\u200d♂️", - "man_running_light_skin_tone": "🏃🏻\u200d♂️", - "man_running_medium-dark_skin_tone": "🏃🏾\u200d♂️", - "man_running_medium-light_skin_tone": "🏃🏼\u200d♂️", - "man_running_medium_skin_tone": "🏃🏽\u200d♂️", - "man_scientist": "👨\u200d🔬", - "man_scientist_dark_skin_tone": "👨🏿\u200d🔬", - "man_scientist_light_skin_tone": "👨🏻\u200d🔬", - "man_scientist_medium-dark_skin_tone": "👨🏾\u200d🔬", - "man_scientist_medium-light_skin_tone": "👨🏼\u200d🔬", - "man_scientist_medium_skin_tone": "👨🏽\u200d🔬", - "man_shrugging": "🤷\u200d♂️", - "man_shrugging_dark_skin_tone": "🤷🏿\u200d♂️", - "man_shrugging_light_skin_tone": "🤷🏻\u200d♂️", - "man_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♂️", - "man_shrugging_medium-light_skin_tone": "🤷🏼\u200d♂️", - "man_shrugging_medium_skin_tone": "🤷🏽\u200d♂️", - "man_singer": "👨\u200d🎤", - "man_singer_dark_skin_tone": "👨🏿\u200d🎤", - "man_singer_light_skin_tone": "👨🏻\u200d🎤", - "man_singer_medium-dark_skin_tone": "👨🏾\u200d🎤", - "man_singer_medium-light_skin_tone": "👨🏼\u200d🎤", - "man_singer_medium_skin_tone": "👨🏽\u200d🎤", - "man_student": "👨\u200d🎓", - "man_student_dark_skin_tone": "👨🏿\u200d🎓", - "man_student_light_skin_tone": "👨🏻\u200d🎓", - "man_student_medium-dark_skin_tone": "👨🏾\u200d🎓", - "man_student_medium-light_skin_tone": "👨🏼\u200d🎓", - "man_student_medium_skin_tone": "👨🏽\u200d🎓", - "man_surfing": "🏄\u200d♂️", - "man_surfing_dark_skin_tone": "🏄🏿\u200d♂️", - "man_surfing_light_skin_tone": "🏄🏻\u200d♂️", - "man_surfing_medium-dark_skin_tone": "🏄🏾\u200d♂️", - "man_surfing_medium-light_skin_tone": "🏄🏼\u200d♂️", - "man_surfing_medium_skin_tone": "🏄🏽\u200d♂️", - "man_swimming": "🏊\u200d♂️", - "man_swimming_dark_skin_tone": "🏊🏿\u200d♂️", - "man_swimming_light_skin_tone": "🏊🏻\u200d♂️", - "man_swimming_medium-dark_skin_tone": "🏊🏾\u200d♂️", - "man_swimming_medium-light_skin_tone": "🏊🏼\u200d♂️", - "man_swimming_medium_skin_tone": "🏊🏽\u200d♂️", - "man_teacher": "👨\u200d🏫", - "man_teacher_dark_skin_tone": "👨🏿\u200d🏫", - "man_teacher_light_skin_tone": "👨🏻\u200d🏫", - "man_teacher_medium-dark_skin_tone": "👨🏾\u200d🏫", - "man_teacher_medium-light_skin_tone": "👨🏼\u200d🏫", - "man_teacher_medium_skin_tone": "👨🏽\u200d🏫", - "man_technologist": "👨\u200d💻", - "man_technologist_dark_skin_tone": "👨🏿\u200d💻", - "man_technologist_light_skin_tone": "👨🏻\u200d💻", - "man_technologist_medium-dark_skin_tone": "👨🏾\u200d💻", - "man_technologist_medium-light_skin_tone": "👨🏼\u200d💻", - "man_technologist_medium_skin_tone": "👨🏽\u200d💻", - "man_tipping_hand": "💁\u200d♂️", - "man_tipping_hand_dark_skin_tone": "💁🏿\u200d♂️", - "man_tipping_hand_light_skin_tone": "💁🏻\u200d♂️", - "man_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♂️", - "man_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♂️", - "man_tipping_hand_medium_skin_tone": "💁🏽\u200d♂️", - "man_vampire": "🧛\u200d♂️", - "man_vampire_dark_skin_tone": "🧛🏿\u200d♂️", - "man_vampire_light_skin_tone": "🧛🏻\u200d♂️", - "man_vampire_medium-dark_skin_tone": "🧛🏾\u200d♂️", - "man_vampire_medium-light_skin_tone": "🧛🏼\u200d♂️", - "man_vampire_medium_skin_tone": "🧛🏽\u200d♂️", - "man_walking": "🚶\u200d♂️", - "man_walking_dark_skin_tone": "🚶🏿\u200d♂️", - "man_walking_light_skin_tone": "🚶🏻\u200d♂️", - "man_walking_medium-dark_skin_tone": "🚶🏾\u200d♂️", - "man_walking_medium-light_skin_tone": "🚶🏼\u200d♂️", - "man_walking_medium_skin_tone": "🚶🏽\u200d♂️", - "man_wearing_turban": "👳\u200d♂️", - "man_wearing_turban_dark_skin_tone": "👳🏿\u200d♂️", - "man_wearing_turban_light_skin_tone": "👳🏻\u200d♂️", - "man_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♂️", - "man_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♂️", - "man_wearing_turban_medium_skin_tone": "👳🏽\u200d♂️", - "man_with_probing_cane": "👨\u200d🦯", - "man_with_chinese_cap": "👲", - "man_with_chinese_cap_dark_skin_tone": "👲🏿", - "man_with_chinese_cap_light_skin_tone": "👲🏻", - "man_with_chinese_cap_medium-dark_skin_tone": "👲🏾", - "man_with_chinese_cap_medium-light_skin_tone": "👲🏼", - "man_with_chinese_cap_medium_skin_tone": "👲🏽", - "man_zombie": "🧟\u200d♂️", - "mango": "🥭", - "mantelpiece_clock": "🕰", - "manual_wheelchair": "🦽", - "man’s_shoe": "👞", - "map_of_japan": "🗾", - "maple_leaf": "🍁", - "martial_arts_uniform": "🥋", - "mate": "🧉", - "meat_on_bone": "🍖", - "mechanical_arm": "🦾", - "mechanical_leg": "🦿", - "medical_symbol": "⚕", - "megaphone": "📣", - "melon": "🍈", - "memo": "📝", - "men_with_bunny_ears": "👯\u200d♂️", - "men_wrestling": "🤼\u200d♂️", - "menorah": "🕎", - "men’s_room": "🚹", - "mermaid": "🧜\u200d♀️", - "mermaid_dark_skin_tone": "🧜🏿\u200d♀️", - "mermaid_light_skin_tone": "🧜🏻\u200d♀️", - "mermaid_medium-dark_skin_tone": "🧜🏾\u200d♀️", - "mermaid_medium-light_skin_tone": "🧜🏼\u200d♀️", - "mermaid_medium_skin_tone": "🧜🏽\u200d♀️", - "merman": "🧜\u200d♂️", - "merman_dark_skin_tone": "🧜🏿\u200d♂️", - "merman_light_skin_tone": "🧜🏻\u200d♂️", - "merman_medium-dark_skin_tone": "🧜🏾\u200d♂️", - "merman_medium-light_skin_tone": "🧜🏼\u200d♂️", - "merman_medium_skin_tone": "🧜🏽\u200d♂️", - "merperson": "🧜", - "merperson_dark_skin_tone": "🧜🏿", - "merperson_light_skin_tone": "🧜🏻", - "merperson_medium-dark_skin_tone": "🧜🏾", - "merperson_medium-light_skin_tone": "🧜🏼", - "merperson_medium_skin_tone": "🧜🏽", - "metro": "🚇", - "microbe": "🦠", - "microphone": "🎤", - "microscope": "🔬", - "middle_finger": "🖕", - "middle_finger_dark_skin_tone": "🖕🏿", - "middle_finger_light_skin_tone": "🖕🏻", - "middle_finger_medium-dark_skin_tone": "🖕🏾", - "middle_finger_medium-light_skin_tone": "🖕🏼", - "middle_finger_medium_skin_tone": "🖕🏽", - "military_medal": "🎖", - "milky_way": "🌌", - "minibus": "🚐", - "moai": "🗿", - "mobile_phone": "📱", - "mobile_phone_off": "📴", - "mobile_phone_with_arrow": "📲", - "money-mouth_face": "🤑", - "money_bag": "💰", - "money_with_wings": "💸", - "monkey": "🐒", - "monkey_face": "🐵", - "monorail": "🚝", - "moon_cake": "🥮", - "moon_viewing_ceremony": "🎑", - "mosque": "🕌", - "mosquito": "🦟", - "motor_boat": "🛥", - "motor_scooter": "🛵", - "motorcycle": "🏍", - "motorized_wheelchair": "🦼", - "motorway": "🛣", - "mount_fuji": "🗻", - "mountain": "⛰", - "mountain_cableway": "🚠", - "mountain_railway": "🚞", - "mouse": "🐭", - "mouse_face": "🐭", - "mouth": "👄", - "movie_camera": "🎥", - "mushroom": "🍄", - "musical_keyboard": "🎹", - "musical_note": "🎵", - "musical_notes": "🎶", - "musical_score": "🎼", - "muted_speaker": "🔇", - "nail_polish": "💅", - "nail_polish_dark_skin_tone": "💅🏿", - "nail_polish_light_skin_tone": "💅🏻", - "nail_polish_medium-dark_skin_tone": "💅🏾", - "nail_polish_medium-light_skin_tone": "💅🏼", - "nail_polish_medium_skin_tone": "💅🏽", - "name_badge": "📛", - "national_park": "🏞", - "nauseated_face": "🤢", - "nazar_amulet": "🧿", - "necktie": "👔", - "nerd_face": "🤓", - "neutral_face": "😐", - "new_moon": "🌑", - "new_moon_face": "🌚", - "newspaper": "📰", - "next_track_button": "⏭", - "night_with_stars": "🌃", - "nine-thirty": "🕤", - "nine_o’clock": "🕘", - "no_bicycles": "🚳", - "no_entry": "⛔", - "no_littering": "🚯", - "no_mobile_phones": "📵", - "no_one_under_eighteen": "🔞", - "no_pedestrians": "🚷", - "no_smoking": "🚭", - "non-potable_water": "🚱", - "nose": "👃", - "nose_dark_skin_tone": "👃🏿", - "nose_light_skin_tone": "👃🏻", - "nose_medium-dark_skin_tone": "👃🏾", - "nose_medium-light_skin_tone": "👃🏼", - "nose_medium_skin_tone": "👃🏽", - "notebook": "📓", - "notebook_with_decorative_cover": "📔", - "nut_and_bolt": "🔩", - "octopus": "🐙", - "oden": "🍢", - "office_building": "🏢", - "ogre": "👹", - "oil_drum": "🛢", - "old_key": "🗝", - "old_man": "👴", - "old_man_dark_skin_tone": "👴🏿", - "old_man_light_skin_tone": "👴🏻", - "old_man_medium-dark_skin_tone": "👴🏾", - "old_man_medium-light_skin_tone": "👴🏼", - "old_man_medium_skin_tone": "👴🏽", - "old_woman": "👵", - "old_woman_dark_skin_tone": "👵🏿", - "old_woman_light_skin_tone": "👵🏻", - "old_woman_medium-dark_skin_tone": "👵🏾", - "old_woman_medium-light_skin_tone": "👵🏼", - "old_woman_medium_skin_tone": "👵🏽", - "older_adult": "🧓", - "older_adult_dark_skin_tone": "🧓🏿", - "older_adult_light_skin_tone": "🧓🏻", - "older_adult_medium-dark_skin_tone": "🧓🏾", - "older_adult_medium-light_skin_tone": "🧓🏼", - "older_adult_medium_skin_tone": "🧓🏽", - "om": "🕉", - "oncoming_automobile": "🚘", - "oncoming_bus": "🚍", - "oncoming_fist": "👊", - "oncoming_fist_dark_skin_tone": "👊🏿", - "oncoming_fist_light_skin_tone": "👊🏻", - "oncoming_fist_medium-dark_skin_tone": "👊🏾", - "oncoming_fist_medium-light_skin_tone": "👊🏼", - "oncoming_fist_medium_skin_tone": "👊🏽", - "oncoming_police_car": "🚔", - "oncoming_taxi": "🚖", - "one-piece_swimsuit": "🩱", - "one-thirty": "🕜", - "one_o’clock": "🕐", - "onion": "🧅", - "open_book": "📖", - "open_file_folder": "📂", - "open_hands": "👐", - "open_hands_dark_skin_tone": "👐🏿", - "open_hands_light_skin_tone": "👐🏻", - "open_hands_medium-dark_skin_tone": "👐🏾", - "open_hands_medium-light_skin_tone": "👐🏼", - "open_hands_medium_skin_tone": "👐🏽", - "open_mailbox_with_lowered_flag": "📭", - "open_mailbox_with_raised_flag": "📬", - "optical_disk": "💿", - "orange_book": "📙", - "orange_circle": "🟠", - "orange_heart": "🧡", - "orange_square": "🟧", - "orangutan": "🦧", - "orthodox_cross": "☦", - "otter": "🦦", - "outbox_tray": "📤", - "owl": "🦉", - "ox": "🐂", - "oyster": "🦪", - "package": "📦", - "page_facing_up": "📄", - "page_with_curl": "📃", - "pager": "📟", - "paintbrush": "🖌", - "palm_tree": "🌴", - "palms_up_together": "🤲", - "palms_up_together_dark_skin_tone": "🤲🏿", - "palms_up_together_light_skin_tone": "🤲🏻", - "palms_up_together_medium-dark_skin_tone": "🤲🏾", - "palms_up_together_medium-light_skin_tone": "🤲🏼", - "palms_up_together_medium_skin_tone": "🤲🏽", - "pancakes": "🥞", - "panda_face": "🐼", - "paperclip": "📎", - "parrot": "🦜", - "part_alternation_mark": "〽", - "party_popper": "🎉", - "partying_face": "🥳", - "passenger_ship": "🛳", - "passport_control": "🛂", - "pause_button": "⏸", - "paw_prints": "🐾", - "peace_symbol": "☮", - "peach": "🍑", - "peacock": "🦚", - "peanuts": "🥜", - "pear": "🍐", - "pen": "🖊", - "pencil": "📝", - "penguin": "🐧", - "pensive_face": "😔", - "people_holding_hands": "🧑\u200d🤝\u200d🧑", - "people_with_bunny_ears": "👯", - "people_wrestling": "🤼", - "performing_arts": "🎭", - "persevering_face": "😣", - "person_biking": "🚴", - "person_biking_dark_skin_tone": "🚴🏿", - "person_biking_light_skin_tone": "🚴🏻", - "person_biking_medium-dark_skin_tone": "🚴🏾", - "person_biking_medium-light_skin_tone": "🚴🏼", - "person_biking_medium_skin_tone": "🚴🏽", - "person_bouncing_ball": "⛹", - "person_bouncing_ball_dark_skin_tone": "⛹🏿", - "person_bouncing_ball_light_skin_tone": "⛹🏻", - "person_bouncing_ball_medium-dark_skin_tone": "⛹🏾", - "person_bouncing_ball_medium-light_skin_tone": "⛹🏼", - "person_bouncing_ball_medium_skin_tone": "⛹🏽", - "person_bowing": "🙇", - "person_bowing_dark_skin_tone": "🙇🏿", - "person_bowing_light_skin_tone": "🙇🏻", - "person_bowing_medium-dark_skin_tone": "🙇🏾", - "person_bowing_medium-light_skin_tone": "🙇🏼", - "person_bowing_medium_skin_tone": "🙇🏽", - "person_cartwheeling": "🤸", - "person_cartwheeling_dark_skin_tone": "🤸🏿", - "person_cartwheeling_light_skin_tone": "🤸🏻", - "person_cartwheeling_medium-dark_skin_tone": "🤸🏾", - "person_cartwheeling_medium-light_skin_tone": "🤸🏼", - "person_cartwheeling_medium_skin_tone": "🤸🏽", - "person_climbing": "🧗", - "person_climbing_dark_skin_tone": "🧗🏿", - "person_climbing_light_skin_tone": "🧗🏻", - "person_climbing_medium-dark_skin_tone": "🧗🏾", - "person_climbing_medium-light_skin_tone": "🧗🏼", - "person_climbing_medium_skin_tone": "🧗🏽", - "person_facepalming": "🤦", - "person_facepalming_dark_skin_tone": "🤦🏿", - "person_facepalming_light_skin_tone": "🤦🏻", - "person_facepalming_medium-dark_skin_tone": "🤦🏾", - "person_facepalming_medium-light_skin_tone": "🤦🏼", - "person_facepalming_medium_skin_tone": "🤦🏽", - "person_fencing": "🤺", - "person_frowning": "🙍", - "person_frowning_dark_skin_tone": "🙍🏿", - "person_frowning_light_skin_tone": "🙍🏻", - "person_frowning_medium-dark_skin_tone": "🙍🏾", - "person_frowning_medium-light_skin_tone": "🙍🏼", - "person_frowning_medium_skin_tone": "🙍🏽", - "person_gesturing_no": "🙅", - "person_gesturing_no_dark_skin_tone": "🙅🏿", - "person_gesturing_no_light_skin_tone": "🙅🏻", - "person_gesturing_no_medium-dark_skin_tone": "🙅🏾", - "person_gesturing_no_medium-light_skin_tone": "🙅🏼", - "person_gesturing_no_medium_skin_tone": "🙅🏽", - "person_gesturing_ok": "🙆", - "person_gesturing_ok_dark_skin_tone": "🙆🏿", - "person_gesturing_ok_light_skin_tone": "🙆🏻", - "person_gesturing_ok_medium-dark_skin_tone": "🙆🏾", - "person_gesturing_ok_medium-light_skin_tone": "🙆🏼", - "person_gesturing_ok_medium_skin_tone": "🙆🏽", - "person_getting_haircut": "💇", - "person_getting_haircut_dark_skin_tone": "💇🏿", - "person_getting_haircut_light_skin_tone": "💇🏻", - "person_getting_haircut_medium-dark_skin_tone": "💇🏾", - "person_getting_haircut_medium-light_skin_tone": "💇🏼", - "person_getting_haircut_medium_skin_tone": "💇🏽", - "person_getting_massage": "💆", - "person_getting_massage_dark_skin_tone": "💆🏿", - "person_getting_massage_light_skin_tone": "💆🏻", - "person_getting_massage_medium-dark_skin_tone": "💆🏾", - "person_getting_massage_medium-light_skin_tone": "💆🏼", - "person_getting_massage_medium_skin_tone": "💆🏽", - "person_golfing": "🏌", - "person_golfing_dark_skin_tone": "🏌🏿", - "person_golfing_light_skin_tone": "🏌🏻", - "person_golfing_medium-dark_skin_tone": "🏌🏾", - "person_golfing_medium-light_skin_tone": "🏌🏼", - "person_golfing_medium_skin_tone": "🏌🏽", - "person_in_bed": "🛌", - "person_in_bed_dark_skin_tone": "🛌🏿", - "person_in_bed_light_skin_tone": "🛌🏻", - "person_in_bed_medium-dark_skin_tone": "🛌🏾", - "person_in_bed_medium-light_skin_tone": "🛌🏼", - "person_in_bed_medium_skin_tone": "🛌🏽", - "person_in_lotus_position": "🧘", - "person_in_lotus_position_dark_skin_tone": "🧘🏿", - "person_in_lotus_position_light_skin_tone": "🧘🏻", - "person_in_lotus_position_medium-dark_skin_tone": "🧘🏾", - "person_in_lotus_position_medium-light_skin_tone": "🧘🏼", - "person_in_lotus_position_medium_skin_tone": "🧘🏽", - "person_in_steamy_room": "🧖", - "person_in_steamy_room_dark_skin_tone": "🧖🏿", - "person_in_steamy_room_light_skin_tone": "🧖🏻", - "person_in_steamy_room_medium-dark_skin_tone": "🧖🏾", - "person_in_steamy_room_medium-light_skin_tone": "🧖🏼", - "person_in_steamy_room_medium_skin_tone": "🧖🏽", - "person_juggling": "🤹", - "person_juggling_dark_skin_tone": "🤹🏿", - "person_juggling_light_skin_tone": "🤹🏻", - "person_juggling_medium-dark_skin_tone": "🤹🏾", - "person_juggling_medium-light_skin_tone": "🤹🏼", - "person_juggling_medium_skin_tone": "🤹🏽", - "person_kneeling": "🧎", - "person_lifting_weights": "🏋", - "person_lifting_weights_dark_skin_tone": "🏋🏿", - "person_lifting_weights_light_skin_tone": "🏋🏻", - "person_lifting_weights_medium-dark_skin_tone": "🏋🏾", - "person_lifting_weights_medium-light_skin_tone": "🏋🏼", - "person_lifting_weights_medium_skin_tone": "🏋🏽", - "person_mountain_biking": "🚵", - "person_mountain_biking_dark_skin_tone": "🚵🏿", - "person_mountain_biking_light_skin_tone": "🚵🏻", - "person_mountain_biking_medium-dark_skin_tone": "🚵🏾", - "person_mountain_biking_medium-light_skin_tone": "🚵🏼", - "person_mountain_biking_medium_skin_tone": "🚵🏽", - "person_playing_handball": "🤾", - "person_playing_handball_dark_skin_tone": "🤾🏿", - "person_playing_handball_light_skin_tone": "🤾🏻", - "person_playing_handball_medium-dark_skin_tone": "🤾🏾", - "person_playing_handball_medium-light_skin_tone": "🤾🏼", - "person_playing_handball_medium_skin_tone": "🤾🏽", - "person_playing_water_polo": "🤽", - "person_playing_water_polo_dark_skin_tone": "🤽🏿", - "person_playing_water_polo_light_skin_tone": "🤽🏻", - "person_playing_water_polo_medium-dark_skin_tone": "🤽🏾", - "person_playing_water_polo_medium-light_skin_tone": "🤽🏼", - "person_playing_water_polo_medium_skin_tone": "🤽🏽", - "person_pouting": "🙎", - "person_pouting_dark_skin_tone": "🙎🏿", - "person_pouting_light_skin_tone": "🙎🏻", - "person_pouting_medium-dark_skin_tone": "🙎🏾", - "person_pouting_medium-light_skin_tone": "🙎🏼", - "person_pouting_medium_skin_tone": "🙎🏽", - "person_raising_hand": "🙋", - "person_raising_hand_dark_skin_tone": "🙋🏿", - "person_raising_hand_light_skin_tone": "🙋🏻", - "person_raising_hand_medium-dark_skin_tone": "🙋🏾", - "person_raising_hand_medium-light_skin_tone": "🙋🏼", - "person_raising_hand_medium_skin_tone": "🙋🏽", - "person_rowing_boat": "🚣", - "person_rowing_boat_dark_skin_tone": "🚣🏿", - "person_rowing_boat_light_skin_tone": "🚣🏻", - "person_rowing_boat_medium-dark_skin_tone": "🚣🏾", - "person_rowing_boat_medium-light_skin_tone": "🚣🏼", - "person_rowing_boat_medium_skin_tone": "🚣🏽", - "person_running": "🏃", - "person_running_dark_skin_tone": "🏃🏿", - "person_running_light_skin_tone": "🏃🏻", - "person_running_medium-dark_skin_tone": "🏃🏾", - "person_running_medium-light_skin_tone": "🏃🏼", - "person_running_medium_skin_tone": "🏃🏽", - "person_shrugging": "🤷", - "person_shrugging_dark_skin_tone": "🤷🏿", - "person_shrugging_light_skin_tone": "🤷🏻", - "person_shrugging_medium-dark_skin_tone": "🤷🏾", - "person_shrugging_medium-light_skin_tone": "🤷🏼", - "person_shrugging_medium_skin_tone": "🤷🏽", - "person_standing": "🧍", - "person_surfing": "🏄", - "person_surfing_dark_skin_tone": "🏄🏿", - "person_surfing_light_skin_tone": "🏄🏻", - "person_surfing_medium-dark_skin_tone": "🏄🏾", - "person_surfing_medium-light_skin_tone": "🏄🏼", - "person_surfing_medium_skin_tone": "🏄🏽", - "person_swimming": "🏊", - "person_swimming_dark_skin_tone": "🏊🏿", - "person_swimming_light_skin_tone": "🏊🏻", - "person_swimming_medium-dark_skin_tone": "🏊🏾", - "person_swimming_medium-light_skin_tone": "🏊🏼", - "person_swimming_medium_skin_tone": "🏊🏽", - "person_taking_bath": "🛀", - "person_taking_bath_dark_skin_tone": "🛀🏿", - "person_taking_bath_light_skin_tone": "🛀🏻", - "person_taking_bath_medium-dark_skin_tone": "🛀🏾", - "person_taking_bath_medium-light_skin_tone": "🛀🏼", - "person_taking_bath_medium_skin_tone": "🛀🏽", - "person_tipping_hand": "💁", - "person_tipping_hand_dark_skin_tone": "💁🏿", - "person_tipping_hand_light_skin_tone": "💁🏻", - "person_tipping_hand_medium-dark_skin_tone": "💁🏾", - "person_tipping_hand_medium-light_skin_tone": "💁🏼", - "person_tipping_hand_medium_skin_tone": "💁🏽", - "person_walking": "🚶", - "person_walking_dark_skin_tone": "🚶🏿", - "person_walking_light_skin_tone": "🚶🏻", - "person_walking_medium-dark_skin_tone": "🚶🏾", - "person_walking_medium-light_skin_tone": "🚶🏼", - "person_walking_medium_skin_tone": "🚶🏽", - "person_wearing_turban": "👳", - "person_wearing_turban_dark_skin_tone": "👳🏿", - "person_wearing_turban_light_skin_tone": "👳🏻", - "person_wearing_turban_medium-dark_skin_tone": "👳🏾", - "person_wearing_turban_medium-light_skin_tone": "👳🏼", - "person_wearing_turban_medium_skin_tone": "👳🏽", - "petri_dish": "🧫", - "pick": "⛏", - "pie": "🥧", - "pig": "🐷", - "pig_face": "🐷", - "pig_nose": "🐽", - "pile_of_poo": "💩", - "pill": "💊", - "pinching_hand": "🤏", - "pine_decoration": "🎍", - "pineapple": "🍍", - "ping_pong": "🏓", - "pirate_flag": "🏴\u200d☠️", - "pistol": "🔫", - "pizza": "🍕", - "place_of_worship": "🛐", - "play_button": "▶", - "play_or_pause_button": "⏯", - "pleading_face": "🥺", - "police_car": "🚓", - "police_car_light": "🚨", - "police_officer": "👮", - "police_officer_dark_skin_tone": "👮🏿", - "police_officer_light_skin_tone": "👮🏻", - "police_officer_medium-dark_skin_tone": "👮🏾", - "police_officer_medium-light_skin_tone": "👮🏼", - "police_officer_medium_skin_tone": "👮🏽", - "poodle": "🐩", - "pool_8_ball": "🎱", - "popcorn": "🍿", - "post_office": "🏣", - "postal_horn": "📯", - "postbox": "📮", - "pot_of_food": "🍲", - "potable_water": "🚰", - "potato": "🥔", - "poultry_leg": "🍗", - "pound_banknote": "💷", - "pouting_cat_face": "😾", - "pouting_face": "😡", - "prayer_beads": "📿", - "pregnant_woman": "🤰", - "pregnant_woman_dark_skin_tone": "🤰🏿", - "pregnant_woman_light_skin_tone": "🤰🏻", - "pregnant_woman_medium-dark_skin_tone": "🤰🏾", - "pregnant_woman_medium-light_skin_tone": "🤰🏼", - "pregnant_woman_medium_skin_tone": "🤰🏽", - "pretzel": "🥨", - "probing_cane": "🦯", - "prince": "🤴", - "prince_dark_skin_tone": "🤴🏿", - "prince_light_skin_tone": "🤴🏻", - "prince_medium-dark_skin_tone": "🤴🏾", - "prince_medium-light_skin_tone": "🤴🏼", - "prince_medium_skin_tone": "🤴🏽", - "princess": "👸", - "princess_dark_skin_tone": "👸🏿", - "princess_light_skin_tone": "👸🏻", - "princess_medium-dark_skin_tone": "👸🏾", - "princess_medium-light_skin_tone": "👸🏼", - "princess_medium_skin_tone": "👸🏽", - "printer": "🖨", - "prohibited": "🚫", - "purple_circle": "🟣", - "purple_heart": "💜", - "purple_square": "🟪", - "purse": "👛", - "pushpin": "📌", - "question_mark": "❓", - "rabbit": "🐰", - "rabbit_face": "🐰", - "raccoon": "🦝", - "racing_car": "🏎", - "radio": "📻", - "radio_button": "🔘", - "radioactive": "☢", - "railway_car": "🚃", - "railway_track": "🛤", - "rainbow": "🌈", - "rainbow_flag": "🏳️\u200d🌈", - "raised_back_of_hand": "🤚", - "raised_back_of_hand_dark_skin_tone": "🤚🏿", - "raised_back_of_hand_light_skin_tone": "🤚🏻", - "raised_back_of_hand_medium-dark_skin_tone": "🤚🏾", - "raised_back_of_hand_medium-light_skin_tone": "🤚🏼", - "raised_back_of_hand_medium_skin_tone": "🤚🏽", - "raised_fist": "✊", - "raised_fist_dark_skin_tone": "✊🏿", - "raised_fist_light_skin_tone": "✊🏻", - "raised_fist_medium-dark_skin_tone": "✊🏾", - "raised_fist_medium-light_skin_tone": "✊🏼", - "raised_fist_medium_skin_tone": "✊🏽", - "raised_hand": "✋", - "raised_hand_dark_skin_tone": "✋🏿", - "raised_hand_light_skin_tone": "✋🏻", - "raised_hand_medium-dark_skin_tone": "✋🏾", - "raised_hand_medium-light_skin_tone": "✋🏼", - "raised_hand_medium_skin_tone": "✋🏽", - "raising_hands": "🙌", - "raising_hands_dark_skin_tone": "🙌🏿", - "raising_hands_light_skin_tone": "🙌🏻", - "raising_hands_medium-dark_skin_tone": "🙌🏾", - "raising_hands_medium-light_skin_tone": "🙌🏼", - "raising_hands_medium_skin_tone": "🙌🏽", - "ram": "🐏", - "rat": "🐀", - "razor": "🪒", - "ringed_planet": "🪐", - "receipt": "🧾", - "record_button": "⏺", - "recycling_symbol": "♻", - "red_apple": "🍎", - "red_circle": "🔴", - "red_envelope": "🧧", - "red_hair": "🦰", - "red-haired_man": "👨\u200d🦰", - "red-haired_woman": "👩\u200d🦰", - "red_heart": "❤", - "red_paper_lantern": "🏮", - "red_square": "🟥", - "red_triangle_pointed_down": "🔻", - "red_triangle_pointed_up": "🔺", - "registered": "®", - "relieved_face": "😌", - "reminder_ribbon": "🎗", - "repeat_button": "🔁", - "repeat_single_button": "🔂", - "rescue_worker’s_helmet": "⛑", - "restroom": "🚻", - "reverse_button": "◀", - "revolving_hearts": "💞", - "rhinoceros": "🦏", - "ribbon": "🎀", - "rice_ball": "🍙", - "rice_cracker": "🍘", - "right-facing_fist": "🤜", - "right-facing_fist_dark_skin_tone": "🤜🏿", - "right-facing_fist_light_skin_tone": "🤜🏻", - "right-facing_fist_medium-dark_skin_tone": "🤜🏾", - "right-facing_fist_medium-light_skin_tone": "🤜🏼", - "right-facing_fist_medium_skin_tone": "🤜🏽", - "right_anger_bubble": "🗯", - "right_arrow": "➡", - "right_arrow_curving_down": "⤵", - "right_arrow_curving_left": "↩", - "right_arrow_curving_up": "⤴", - "ring": "💍", - "roasted_sweet_potato": "🍠", - "robot_face": "🤖", - "rocket": "🚀", - "roll_of_paper": "🧻", - "rolled-up_newspaper": "🗞", - "roller_coaster": "🎢", - "rolling_on_the_floor_laughing": "🤣", - "rooster": "🐓", - "rose": "🌹", - "rosette": "🏵", - "round_pushpin": "📍", - "rugby_football": "🏉", - "running_shirt": "🎽", - "running_shoe": "👟", - "sad_but_relieved_face": "😥", - "safety_pin": "🧷", - "safety_vest": "🦺", - "salt": "🧂", - "sailboat": "⛵", - "sake": "🍶", - "sandwich": "🥪", - "sari": "🥻", - "satellite": "📡", - "satellite_antenna": "📡", - "sauropod": "🦕", - "saxophone": "🎷", - "scarf": "🧣", - "school": "🏫", - "school_backpack": "🎒", - "scissors": "✂", - "scorpion": "🦂", - "scroll": "📜", - "seat": "💺", - "see-no-evil_monkey": "🙈", - "seedling": "🌱", - "selfie": "🤳", - "selfie_dark_skin_tone": "🤳🏿", - "selfie_light_skin_tone": "🤳🏻", - "selfie_medium-dark_skin_tone": "🤳🏾", - "selfie_medium-light_skin_tone": "🤳🏼", - "selfie_medium_skin_tone": "🤳🏽", - "service_dog": "🐕\u200d🦺", - "seven-thirty": "🕢", - "seven_o’clock": "🕖", - "shallow_pan_of_food": "🥘", - "shamrock": "☘", - "shark": "🦈", - "shaved_ice": "🍧", - "sheaf_of_rice": "🌾", - "shield": "🛡", - "shinto_shrine": "⛩", - "ship": "🚢", - "shooting_star": "🌠", - "shopping_bags": "🛍", - "shopping_cart": "🛒", - "shortcake": "🍰", - "shorts": "🩳", - "shower": "🚿", - "shrimp": "🦐", - "shuffle_tracks_button": "🔀", - "shushing_face": "🤫", - "sign_of_the_horns": "🤘", - "sign_of_the_horns_dark_skin_tone": "🤘🏿", - "sign_of_the_horns_light_skin_tone": "🤘🏻", - "sign_of_the_horns_medium-dark_skin_tone": "🤘🏾", - "sign_of_the_horns_medium-light_skin_tone": "🤘🏼", - "sign_of_the_horns_medium_skin_tone": "🤘🏽", - "six-thirty": "🕡", - "six_o’clock": "🕕", - "skateboard": "🛹", - "skier": "⛷", - "skis": "🎿", - "skull": "💀", - "skull_and_crossbones": "☠", - "skunk": "🦨", - "sled": "🛷", - "sleeping_face": "😴", - "sleepy_face": "😪", - "slightly_frowning_face": "🙁", - "slightly_smiling_face": "🙂", - "slot_machine": "🎰", - "sloth": "🦥", - "small_airplane": "🛩", - "small_blue_diamond": "🔹", - "small_orange_diamond": "🔸", - "smiling_cat_face_with_heart-eyes": "😻", - "smiling_face": "☺", - "smiling_face_with_halo": "😇", - "smiling_face_with_3_hearts": "🥰", - "smiling_face_with_heart-eyes": "😍", - "smiling_face_with_horns": "😈", - "smiling_face_with_smiling_eyes": "😊", - "smiling_face_with_sunglasses": "😎", - "smirking_face": "😏", - "snail": "🐌", - "snake": "🐍", - "sneezing_face": "🤧", - "snow-capped_mountain": "🏔", - "snowboarder": "🏂", - "snowboarder_dark_skin_tone": "🏂🏿", - "snowboarder_light_skin_tone": "🏂🏻", - "snowboarder_medium-dark_skin_tone": "🏂🏾", - "snowboarder_medium-light_skin_tone": "🏂🏼", - "snowboarder_medium_skin_tone": "🏂🏽", - "snowflake": "❄", - "snowman": "☃", - "snowman_without_snow": "⛄", - "soap": "🧼", - "soccer_ball": "⚽", - "socks": "🧦", - "softball": "🥎", - "soft_ice_cream": "🍦", - "spade_suit": "♠", - "spaghetti": "🍝", - "sparkle": "❇", - "sparkler": "🎇", - "sparkles": "✨", - "sparkling_heart": "💖", - "speak-no-evil_monkey": "🙊", - "speaker_high_volume": "🔊", - "speaker_low_volume": "🔈", - "speaker_medium_volume": "🔉", - "speaking_head": "🗣", - "speech_balloon": "💬", - "speedboat": "🚤", - "spider": "🕷", - "spider_web": "🕸", - "spiral_calendar": "🗓", - "spiral_notepad": "🗒", - "spiral_shell": "🐚", - "spoon": "🥄", - "sponge": "🧽", - "sport_utility_vehicle": "🚙", - "sports_medal": "🏅", - "spouting_whale": "🐳", - "squid": "🦑", - "squinting_face_with_tongue": "😝", - "stadium": "🏟", - "star-struck": "🤩", - "star_and_crescent": "☪", - "star_of_david": "✡", - "station": "🚉", - "steaming_bowl": "🍜", - "stethoscope": "🩺", - "stop_button": "⏹", - "stop_sign": "🛑", - "stopwatch": "⏱", - "straight_ruler": "📏", - "strawberry": "🍓", - "studio_microphone": "🎙", - "stuffed_flatbread": "🥙", - "sun": "☀", - "sun_behind_cloud": "⛅", - "sun_behind_large_cloud": "🌥", - "sun_behind_rain_cloud": "🌦", - "sun_behind_small_cloud": "🌤", - "sun_with_face": "🌞", - "sunflower": "🌻", - "sunglasses": "😎", - "sunrise": "🌅", - "sunrise_over_mountains": "🌄", - "sunset": "🌇", - "superhero": "🦸", - "supervillain": "🦹", - "sushi": "🍣", - "suspension_railway": "🚟", - "swan": "🦢", - "sweat_droplets": "💦", - "synagogue": "🕍", - "syringe": "💉", - "t-shirt": "👕", - "taco": "🌮", - "takeout_box": "🥡", - "tanabata_tree": "🎋", - "tangerine": "🍊", - "taxi": "🚕", - "teacup_without_handle": "🍵", - "tear-off_calendar": "📆", - "teddy_bear": "🧸", - "telephone": "☎", - "telephone_receiver": "📞", - "telescope": "🔭", - "television": "📺", - "ten-thirty": "🕥", - "ten_o’clock": "🕙", - "tennis": "🎾", - "tent": "⛺", - "test_tube": "🧪", - "thermometer": "🌡", - "thinking_face": "🤔", - "thought_balloon": "💭", - "thread": "🧵", - "three-thirty": "🕞", - "three_o’clock": "🕒", - "thumbs_down": "👎", - "thumbs_down_dark_skin_tone": "👎🏿", - "thumbs_down_light_skin_tone": "👎🏻", - "thumbs_down_medium-dark_skin_tone": "👎🏾", - "thumbs_down_medium-light_skin_tone": "👎🏼", - "thumbs_down_medium_skin_tone": "👎🏽", - "thumbs_up": "👍", - "thumbs_up_dark_skin_tone": "👍🏿", - "thumbs_up_light_skin_tone": "👍🏻", - "thumbs_up_medium-dark_skin_tone": "👍🏾", - "thumbs_up_medium-light_skin_tone": "👍🏼", - "thumbs_up_medium_skin_tone": "👍🏽", - "ticket": "🎫", - "tiger": "🐯", - "tiger_face": "🐯", - "timer_clock": "⏲", - "tired_face": "😫", - "toolbox": "🧰", - "toilet": "🚽", - "tomato": "🍅", - "tongue": "👅", - "tooth": "🦷", - "top_hat": "🎩", - "tornado": "🌪", - "trackball": "🖲", - "tractor": "🚜", - "trade_mark": "™", - "train": "🚋", - "tram": "🚊", - "tram_car": "🚋", - "triangular_flag": "🚩", - "triangular_ruler": "📐", - "trident_emblem": "🔱", - "trolleybus": "🚎", - "trophy": "🏆", - "tropical_drink": "🍹", - "tropical_fish": "🐠", - "trumpet": "🎺", - "tulip": "🌷", - "tumbler_glass": "🥃", - "turtle": "🐢", - "twelve-thirty": "🕧", - "twelve_o’clock": "🕛", - "two-hump_camel": "🐫", - "two-thirty": "🕝", - "two_hearts": "💕", - "two_men_holding_hands": "👬", - "two_o’clock": "🕑", - "two_women_holding_hands": "👭", - "umbrella": "☂", - "umbrella_on_ground": "⛱", - "umbrella_with_rain_drops": "☔", - "unamused_face": "😒", - "unicorn_face": "🦄", - "unlocked": "🔓", - "up-down_arrow": "↕", - "up-left_arrow": "↖", - "up-right_arrow": "↗", - "up_arrow": "⬆", - "upside-down_face": "🙃", - "upwards_button": "🔼", - "vampire": "🧛", - "vampire_dark_skin_tone": "🧛🏿", - "vampire_light_skin_tone": "🧛🏻", - "vampire_medium-dark_skin_tone": "🧛🏾", - "vampire_medium-light_skin_tone": "🧛🏼", - "vampire_medium_skin_tone": "🧛🏽", - "vertical_traffic_light": "🚦", - "vibration_mode": "📳", - "victory_hand": "✌", - "victory_hand_dark_skin_tone": "✌🏿", - "victory_hand_light_skin_tone": "✌🏻", - "victory_hand_medium-dark_skin_tone": "✌🏾", - "victory_hand_medium-light_skin_tone": "✌🏼", - "victory_hand_medium_skin_tone": "✌🏽", - "video_camera": "📹", - "video_game": "🎮", - "videocassette": "📼", - "violin": "🎻", - "volcano": "🌋", - "volleyball": "🏐", - "vulcan_salute": "🖖", - "vulcan_salute_dark_skin_tone": "🖖🏿", - "vulcan_salute_light_skin_tone": "🖖🏻", - "vulcan_salute_medium-dark_skin_tone": "🖖🏾", - "vulcan_salute_medium-light_skin_tone": "🖖🏼", - "vulcan_salute_medium_skin_tone": "🖖🏽", - "waffle": "🧇", - "waning_crescent_moon": "🌘", - "waning_gibbous_moon": "🌖", - "warning": "⚠", - "wastebasket": "🗑", - "watch": "⌚", - "water_buffalo": "🐃", - "water_closet": "🚾", - "water_wave": "🌊", - "watermelon": "🍉", - "waving_hand": "👋", - "waving_hand_dark_skin_tone": "👋🏿", - "waving_hand_light_skin_tone": "👋🏻", - "waving_hand_medium-dark_skin_tone": "👋🏾", - "waving_hand_medium-light_skin_tone": "👋🏼", - "waving_hand_medium_skin_tone": "👋🏽", - "wavy_dash": "〰", - "waxing_crescent_moon": "🌒", - "waxing_gibbous_moon": "🌔", - "weary_cat_face": "🙀", - "weary_face": "😩", - "wedding": "💒", - "whale": "🐳", - "wheel_of_dharma": "☸", - "wheelchair_symbol": "♿", - "white_circle": "⚪", - "white_exclamation_mark": "❕", - "white_flag": "🏳", - "white_flower": "💮", - "white_hair": "🦳", - "white-haired_man": "👨\u200d🦳", - "white-haired_woman": "👩\u200d🦳", - "white_heart": "🤍", - "white_heavy_check_mark": "✅", - "white_large_square": "⬜", - "white_medium-small_square": "◽", - "white_medium_square": "◻", - "white_medium_star": "⭐", - "white_question_mark": "❔", - "white_small_square": "▫", - "white_square_button": "🔳", - "wilted_flower": "🥀", - "wind_chime": "🎐", - "wind_face": "🌬", - "wine_glass": "🍷", - "winking_face": "😉", - "winking_face_with_tongue": "😜", - "wolf_face": "🐺", - "woman": "👩", - "woman_artist": "👩\u200d🎨", - "woman_artist_dark_skin_tone": "👩🏿\u200d🎨", - "woman_artist_light_skin_tone": "👩🏻\u200d🎨", - "woman_artist_medium-dark_skin_tone": "👩🏾\u200d🎨", - "woman_artist_medium-light_skin_tone": "👩🏼\u200d🎨", - "woman_artist_medium_skin_tone": "👩🏽\u200d🎨", - "woman_astronaut": "👩\u200d🚀", - "woman_astronaut_dark_skin_tone": "👩🏿\u200d🚀", - "woman_astronaut_light_skin_tone": "👩🏻\u200d🚀", - "woman_astronaut_medium-dark_skin_tone": "👩🏾\u200d🚀", - "woman_astronaut_medium-light_skin_tone": "👩🏼\u200d🚀", - "woman_astronaut_medium_skin_tone": "👩🏽\u200d🚀", - "woman_biking": "🚴\u200d♀️", - "woman_biking_dark_skin_tone": "🚴🏿\u200d♀️", - "woman_biking_light_skin_tone": "🚴🏻\u200d♀️", - "woman_biking_medium-dark_skin_tone": "🚴🏾\u200d♀️", - "woman_biking_medium-light_skin_tone": "🚴🏼\u200d♀️", - "woman_biking_medium_skin_tone": "🚴🏽\u200d♀️", - "woman_bouncing_ball": "⛹️\u200d♀️", - "woman_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♀️", - "woman_bouncing_ball_light_skin_tone": "⛹🏻\u200d♀️", - "woman_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♀️", - "woman_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♀️", - "woman_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♀️", - "woman_bowing": "🙇\u200d♀️", - "woman_bowing_dark_skin_tone": "🙇🏿\u200d♀️", - "woman_bowing_light_skin_tone": "🙇🏻\u200d♀️", - "woman_bowing_medium-dark_skin_tone": "🙇🏾\u200d♀️", - "woman_bowing_medium-light_skin_tone": "🙇🏼\u200d♀️", - "woman_bowing_medium_skin_tone": "🙇🏽\u200d♀️", - "woman_cartwheeling": "🤸\u200d♀️", - "woman_cartwheeling_dark_skin_tone": "🤸🏿\u200d♀️", - "woman_cartwheeling_light_skin_tone": "🤸🏻\u200d♀️", - "woman_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♀️", - "woman_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♀️", - "woman_cartwheeling_medium_skin_tone": "🤸🏽\u200d♀️", - "woman_climbing": "🧗\u200d♀️", - "woman_climbing_dark_skin_tone": "🧗🏿\u200d♀️", - "woman_climbing_light_skin_tone": "🧗🏻\u200d♀️", - "woman_climbing_medium-dark_skin_tone": "🧗🏾\u200d♀️", - "woman_climbing_medium-light_skin_tone": "🧗🏼\u200d♀️", - "woman_climbing_medium_skin_tone": "🧗🏽\u200d♀️", - "woman_construction_worker": "👷\u200d♀️", - "woman_construction_worker_dark_skin_tone": "👷🏿\u200d♀️", - "woman_construction_worker_light_skin_tone": "👷🏻\u200d♀️", - "woman_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♀️", - "woman_construction_worker_medium-light_skin_tone": "👷🏼\u200d♀️", - "woman_construction_worker_medium_skin_tone": "👷🏽\u200d♀️", - "woman_cook": "👩\u200d🍳", - "woman_cook_dark_skin_tone": "👩🏿\u200d🍳", - "woman_cook_light_skin_tone": "👩🏻\u200d🍳", - "woman_cook_medium-dark_skin_tone": "👩🏾\u200d🍳", - "woman_cook_medium-light_skin_tone": "👩🏼\u200d🍳", - "woman_cook_medium_skin_tone": "👩🏽\u200d🍳", - "woman_dancing": "💃", - "woman_dancing_dark_skin_tone": "💃🏿", - "woman_dancing_light_skin_tone": "💃🏻", - "woman_dancing_medium-dark_skin_tone": "💃🏾", - "woman_dancing_medium-light_skin_tone": "💃🏼", - "woman_dancing_medium_skin_tone": "💃🏽", - "woman_dark_skin_tone": "👩🏿", - "woman_detective": "🕵️\u200d♀️", - "woman_detective_dark_skin_tone": "🕵🏿\u200d♀️", - "woman_detective_light_skin_tone": "🕵🏻\u200d♀️", - "woman_detective_medium-dark_skin_tone": "🕵🏾\u200d♀️", - "woman_detective_medium-light_skin_tone": "🕵🏼\u200d♀️", - "woman_detective_medium_skin_tone": "🕵🏽\u200d♀️", - "woman_elf": "🧝\u200d♀️", - "woman_elf_dark_skin_tone": "🧝🏿\u200d♀️", - "woman_elf_light_skin_tone": "🧝🏻\u200d♀️", - "woman_elf_medium-dark_skin_tone": "🧝🏾\u200d♀️", - "woman_elf_medium-light_skin_tone": "🧝🏼\u200d♀️", - "woman_elf_medium_skin_tone": "🧝🏽\u200d♀️", - "woman_facepalming": "🤦\u200d♀️", - "woman_facepalming_dark_skin_tone": "🤦🏿\u200d♀️", - "woman_facepalming_light_skin_tone": "🤦🏻\u200d♀️", - "woman_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♀️", - "woman_facepalming_medium-light_skin_tone": "🤦🏼\u200d♀️", - "woman_facepalming_medium_skin_tone": "🤦🏽\u200d♀️", - "woman_factory_worker": "👩\u200d🏭", - "woman_factory_worker_dark_skin_tone": "👩🏿\u200d🏭", - "woman_factory_worker_light_skin_tone": "👩🏻\u200d🏭", - "woman_factory_worker_medium-dark_skin_tone": "👩🏾\u200d🏭", - "woman_factory_worker_medium-light_skin_tone": "👩🏼\u200d🏭", - "woman_factory_worker_medium_skin_tone": "👩🏽\u200d🏭", - "woman_fairy": "🧚\u200d♀️", - "woman_fairy_dark_skin_tone": "🧚🏿\u200d♀️", - "woman_fairy_light_skin_tone": "🧚🏻\u200d♀️", - "woman_fairy_medium-dark_skin_tone": "🧚🏾\u200d♀️", - "woman_fairy_medium-light_skin_tone": "🧚🏼\u200d♀️", - "woman_fairy_medium_skin_tone": "🧚🏽\u200d♀️", - "woman_farmer": "👩\u200d🌾", - "woman_farmer_dark_skin_tone": "👩🏿\u200d🌾", - "woman_farmer_light_skin_tone": "👩🏻\u200d🌾", - "woman_farmer_medium-dark_skin_tone": "👩🏾\u200d🌾", - "woman_farmer_medium-light_skin_tone": "👩🏼\u200d🌾", - "woman_farmer_medium_skin_tone": "👩🏽\u200d🌾", - "woman_firefighter": "👩\u200d🚒", - "woman_firefighter_dark_skin_tone": "👩🏿\u200d🚒", - "woman_firefighter_light_skin_tone": "👩🏻\u200d🚒", - "woman_firefighter_medium-dark_skin_tone": "👩🏾\u200d🚒", - "woman_firefighter_medium-light_skin_tone": "👩🏼\u200d🚒", - "woman_firefighter_medium_skin_tone": "👩🏽\u200d🚒", - "woman_frowning": "🙍\u200d♀️", - "woman_frowning_dark_skin_tone": "🙍🏿\u200d♀️", - "woman_frowning_light_skin_tone": "🙍🏻\u200d♀️", - "woman_frowning_medium-dark_skin_tone": "🙍🏾\u200d♀️", - "woman_frowning_medium-light_skin_tone": "🙍🏼\u200d♀️", - "woman_frowning_medium_skin_tone": "🙍🏽\u200d♀️", - "woman_genie": "🧞\u200d♀️", - "woman_gesturing_no": "🙅\u200d♀️", - "woman_gesturing_no_dark_skin_tone": "🙅🏿\u200d♀️", - "woman_gesturing_no_light_skin_tone": "🙅🏻\u200d♀️", - "woman_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♀️", - "woman_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♀️", - "woman_gesturing_no_medium_skin_tone": "🙅🏽\u200d♀️", - "woman_gesturing_ok": "🙆\u200d♀️", - "woman_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♀️", - "woman_gesturing_ok_light_skin_tone": "🙆🏻\u200d♀️", - "woman_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♀️", - "woman_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♀️", - "woman_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♀️", - "woman_getting_haircut": "💇\u200d♀️", - "woman_getting_haircut_dark_skin_tone": "💇🏿\u200d♀️", - "woman_getting_haircut_light_skin_tone": "💇🏻\u200d♀️", - "woman_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♀️", - "woman_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♀️", - "woman_getting_haircut_medium_skin_tone": "💇🏽\u200d♀️", - "woman_getting_massage": "💆\u200d♀️", - "woman_getting_massage_dark_skin_tone": "💆🏿\u200d♀️", - "woman_getting_massage_light_skin_tone": "💆🏻\u200d♀️", - "woman_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♀️", - "woman_getting_massage_medium-light_skin_tone": "💆🏼\u200d♀️", - "woman_getting_massage_medium_skin_tone": "💆🏽\u200d♀️", - "woman_golfing": "🏌️\u200d♀️", - "woman_golfing_dark_skin_tone": "🏌🏿\u200d♀️", - "woman_golfing_light_skin_tone": "🏌🏻\u200d♀️", - "woman_golfing_medium-dark_skin_tone": "🏌🏾\u200d♀️", - "woman_golfing_medium-light_skin_tone": "🏌🏼\u200d♀️", - "woman_golfing_medium_skin_tone": "🏌🏽\u200d♀️", - "woman_guard": "💂\u200d♀️", - "woman_guard_dark_skin_tone": "💂🏿\u200d♀️", - "woman_guard_light_skin_tone": "💂🏻\u200d♀️", - "woman_guard_medium-dark_skin_tone": "💂🏾\u200d♀️", - "woman_guard_medium-light_skin_tone": "💂🏼\u200d♀️", - "woman_guard_medium_skin_tone": "💂🏽\u200d♀️", - "woman_health_worker": "👩\u200d⚕️", - "woman_health_worker_dark_skin_tone": "👩🏿\u200d⚕️", - "woman_health_worker_light_skin_tone": "👩🏻\u200d⚕️", - "woman_health_worker_medium-dark_skin_tone": "👩🏾\u200d⚕️", - "woman_health_worker_medium-light_skin_tone": "👩🏼\u200d⚕️", - "woman_health_worker_medium_skin_tone": "👩🏽\u200d⚕️", - "woman_in_lotus_position": "🧘\u200d♀️", - "woman_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♀️", - "woman_in_lotus_position_light_skin_tone": "🧘🏻\u200d♀️", - "woman_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♀️", - "woman_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♀️", - "woman_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♀️", - "woman_in_manual_wheelchair": "👩\u200d🦽", - "woman_in_motorized_wheelchair": "👩\u200d🦼", - "woman_in_steamy_room": "🧖\u200d♀️", - "woman_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♀️", - "woman_in_steamy_room_light_skin_tone": "🧖🏻\u200d♀️", - "woman_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♀️", - "woman_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♀️", - "woman_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♀️", - "woman_judge": "👩\u200d⚖️", - "woman_judge_dark_skin_tone": "👩🏿\u200d⚖️", - "woman_judge_light_skin_tone": "👩🏻\u200d⚖️", - "woman_judge_medium-dark_skin_tone": "👩🏾\u200d⚖️", - "woman_judge_medium-light_skin_tone": "👩🏼\u200d⚖️", - "woman_judge_medium_skin_tone": "👩🏽\u200d⚖️", - "woman_juggling": "🤹\u200d♀️", - "woman_juggling_dark_skin_tone": "🤹🏿\u200d♀️", - "woman_juggling_light_skin_tone": "🤹🏻\u200d♀️", - "woman_juggling_medium-dark_skin_tone": "🤹🏾\u200d♀️", - "woman_juggling_medium-light_skin_tone": "🤹🏼\u200d♀️", - "woman_juggling_medium_skin_tone": "🤹🏽\u200d♀️", - "woman_lifting_weights": "🏋️\u200d♀️", - "woman_lifting_weights_dark_skin_tone": "🏋🏿\u200d♀️", - "woman_lifting_weights_light_skin_tone": "🏋🏻\u200d♀️", - "woman_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♀️", - "woman_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♀️", - "woman_lifting_weights_medium_skin_tone": "🏋🏽\u200d♀️", - "woman_light_skin_tone": "👩🏻", - "woman_mage": "🧙\u200d♀️", - "woman_mage_dark_skin_tone": "🧙🏿\u200d♀️", - "woman_mage_light_skin_tone": "🧙🏻\u200d♀️", - "woman_mage_medium-dark_skin_tone": "🧙🏾\u200d♀️", - "woman_mage_medium-light_skin_tone": "🧙🏼\u200d♀️", - "woman_mage_medium_skin_tone": "🧙🏽\u200d♀️", - "woman_mechanic": "👩\u200d🔧", - "woman_mechanic_dark_skin_tone": "👩🏿\u200d🔧", - "woman_mechanic_light_skin_tone": "👩🏻\u200d🔧", - "woman_mechanic_medium-dark_skin_tone": "👩🏾\u200d🔧", - "woman_mechanic_medium-light_skin_tone": "👩🏼\u200d🔧", - "woman_mechanic_medium_skin_tone": "👩🏽\u200d🔧", - "woman_medium-dark_skin_tone": "👩🏾", - "woman_medium-light_skin_tone": "👩🏼", - "woman_medium_skin_tone": "👩🏽", - "woman_mountain_biking": "🚵\u200d♀️", - "woman_mountain_biking_dark_skin_tone": "🚵🏿\u200d♀️", - "woman_mountain_biking_light_skin_tone": "🚵🏻\u200d♀️", - "woman_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♀️", - "woman_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♀️", - "woman_mountain_biking_medium_skin_tone": "🚵🏽\u200d♀️", - "woman_office_worker": "👩\u200d💼", - "woman_office_worker_dark_skin_tone": "👩🏿\u200d💼", - "woman_office_worker_light_skin_tone": "👩🏻\u200d💼", - "woman_office_worker_medium-dark_skin_tone": "👩🏾\u200d💼", - "woman_office_worker_medium-light_skin_tone": "👩🏼\u200d💼", - "woman_office_worker_medium_skin_tone": "👩🏽\u200d💼", - "woman_pilot": "👩\u200d✈️", - "woman_pilot_dark_skin_tone": "👩🏿\u200d✈️", - "woman_pilot_light_skin_tone": "👩🏻\u200d✈️", - "woman_pilot_medium-dark_skin_tone": "👩🏾\u200d✈️", - "woman_pilot_medium-light_skin_tone": "👩🏼\u200d✈️", - "woman_pilot_medium_skin_tone": "👩🏽\u200d✈️", - "woman_playing_handball": "🤾\u200d♀️", - "woman_playing_handball_dark_skin_tone": "🤾🏿\u200d♀️", - "woman_playing_handball_light_skin_tone": "🤾🏻\u200d♀️", - "woman_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♀️", - "woman_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♀️", - "woman_playing_handball_medium_skin_tone": "🤾🏽\u200d♀️", - "woman_playing_water_polo": "🤽\u200d♀️", - "woman_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♀️", - "woman_playing_water_polo_light_skin_tone": "🤽🏻\u200d♀️", - "woman_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♀️", - "woman_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♀️", - "woman_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♀️", - "woman_police_officer": "👮\u200d♀️", - "woman_police_officer_dark_skin_tone": "👮🏿\u200d♀️", - "woman_police_officer_light_skin_tone": "👮🏻\u200d♀️", - "woman_police_officer_medium-dark_skin_tone": "👮🏾\u200d♀️", - "woman_police_officer_medium-light_skin_tone": "👮🏼\u200d♀️", - "woman_police_officer_medium_skin_tone": "👮🏽\u200d♀️", - "woman_pouting": "🙎\u200d♀️", - "woman_pouting_dark_skin_tone": "🙎🏿\u200d♀️", - "woman_pouting_light_skin_tone": "🙎🏻\u200d♀️", - "woman_pouting_medium-dark_skin_tone": "🙎🏾\u200d♀️", - "woman_pouting_medium-light_skin_tone": "🙎🏼\u200d♀️", - "woman_pouting_medium_skin_tone": "🙎🏽\u200d♀️", - "woman_raising_hand": "🙋\u200d♀️", - "woman_raising_hand_dark_skin_tone": "🙋🏿\u200d♀️", - "woman_raising_hand_light_skin_tone": "🙋🏻\u200d♀️", - "woman_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♀️", - "woman_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♀️", - "woman_raising_hand_medium_skin_tone": "🙋🏽\u200d♀️", - "woman_rowing_boat": "🚣\u200d♀️", - "woman_rowing_boat_dark_skin_tone": "🚣🏿\u200d♀️", - "woman_rowing_boat_light_skin_tone": "🚣🏻\u200d♀️", - "woman_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♀️", - "woman_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♀️", - "woman_rowing_boat_medium_skin_tone": "🚣🏽\u200d♀️", - "woman_running": "🏃\u200d♀️", - "woman_running_dark_skin_tone": "🏃🏿\u200d♀️", - "woman_running_light_skin_tone": "🏃🏻\u200d♀️", - "woman_running_medium-dark_skin_tone": "🏃🏾\u200d♀️", - "woman_running_medium-light_skin_tone": "🏃🏼\u200d♀️", - "woman_running_medium_skin_tone": "🏃🏽\u200d♀️", - "woman_scientist": "👩\u200d🔬", - "woman_scientist_dark_skin_tone": "👩🏿\u200d🔬", - "woman_scientist_light_skin_tone": "👩🏻\u200d🔬", - "woman_scientist_medium-dark_skin_tone": "👩🏾\u200d🔬", - "woman_scientist_medium-light_skin_tone": "👩🏼\u200d🔬", - "woman_scientist_medium_skin_tone": "👩🏽\u200d🔬", - "woman_shrugging": "🤷\u200d♀️", - "woman_shrugging_dark_skin_tone": "🤷🏿\u200d♀️", - "woman_shrugging_light_skin_tone": "🤷🏻\u200d♀️", - "woman_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♀️", - "woman_shrugging_medium-light_skin_tone": "🤷🏼\u200d♀️", - "woman_shrugging_medium_skin_tone": "🤷🏽\u200d♀️", - "woman_singer": "👩\u200d🎤", - "woman_singer_dark_skin_tone": "👩🏿\u200d🎤", - "woman_singer_light_skin_tone": "👩🏻\u200d🎤", - "woman_singer_medium-dark_skin_tone": "👩🏾\u200d🎤", - "woman_singer_medium-light_skin_tone": "👩🏼\u200d🎤", - "woman_singer_medium_skin_tone": "👩🏽\u200d🎤", - "woman_student": "👩\u200d🎓", - "woman_student_dark_skin_tone": "👩🏿\u200d🎓", - "woman_student_light_skin_tone": "👩🏻\u200d🎓", - "woman_student_medium-dark_skin_tone": "👩🏾\u200d🎓", - "woman_student_medium-light_skin_tone": "👩🏼\u200d🎓", - "woman_student_medium_skin_tone": "👩🏽\u200d🎓", - "woman_surfing": "🏄\u200d♀️", - "woman_surfing_dark_skin_tone": "🏄🏿\u200d♀️", - "woman_surfing_light_skin_tone": "🏄🏻\u200d♀️", - "woman_surfing_medium-dark_skin_tone": "🏄🏾\u200d♀️", - "woman_surfing_medium-light_skin_tone": "🏄🏼\u200d♀️", - "woman_surfing_medium_skin_tone": "🏄🏽\u200d♀️", - "woman_swimming": "🏊\u200d♀️", - "woman_swimming_dark_skin_tone": "🏊🏿\u200d♀️", - "woman_swimming_light_skin_tone": "🏊🏻\u200d♀️", - "woman_swimming_medium-dark_skin_tone": "🏊🏾\u200d♀️", - "woman_swimming_medium-light_skin_tone": "🏊🏼\u200d♀️", - "woman_swimming_medium_skin_tone": "🏊🏽\u200d♀️", - "woman_teacher": "👩\u200d🏫", - "woman_teacher_dark_skin_tone": "👩🏿\u200d🏫", - "woman_teacher_light_skin_tone": "👩🏻\u200d🏫", - "woman_teacher_medium-dark_skin_tone": "👩🏾\u200d🏫", - "woman_teacher_medium-light_skin_tone": "👩🏼\u200d🏫", - "woman_teacher_medium_skin_tone": "👩🏽\u200d🏫", - "woman_technologist": "👩\u200d💻", - "woman_technologist_dark_skin_tone": "👩🏿\u200d💻", - "woman_technologist_light_skin_tone": "👩🏻\u200d💻", - "woman_technologist_medium-dark_skin_tone": "👩🏾\u200d💻", - "woman_technologist_medium-light_skin_tone": "👩🏼\u200d💻", - "woman_technologist_medium_skin_tone": "👩🏽\u200d💻", - "woman_tipping_hand": "💁\u200d♀️", - "woman_tipping_hand_dark_skin_tone": "💁🏿\u200d♀️", - "woman_tipping_hand_light_skin_tone": "💁🏻\u200d♀️", - "woman_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♀️", - "woman_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♀️", - "woman_tipping_hand_medium_skin_tone": "💁🏽\u200d♀️", - "woman_vampire": "🧛\u200d♀️", - "woman_vampire_dark_skin_tone": "🧛🏿\u200d♀️", - "woman_vampire_light_skin_tone": "🧛🏻\u200d♀️", - "woman_vampire_medium-dark_skin_tone": "🧛🏾\u200d♀️", - "woman_vampire_medium-light_skin_tone": "🧛🏼\u200d♀️", - "woman_vampire_medium_skin_tone": "🧛🏽\u200d♀️", - "woman_walking": "🚶\u200d♀️", - "woman_walking_dark_skin_tone": "🚶🏿\u200d♀️", - "woman_walking_light_skin_tone": "🚶🏻\u200d♀️", - "woman_walking_medium-dark_skin_tone": "🚶🏾\u200d♀️", - "woman_walking_medium-light_skin_tone": "🚶🏼\u200d♀️", - "woman_walking_medium_skin_tone": "🚶🏽\u200d♀️", - "woman_wearing_turban": "👳\u200d♀️", - "woman_wearing_turban_dark_skin_tone": "👳🏿\u200d♀️", - "woman_wearing_turban_light_skin_tone": "👳🏻\u200d♀️", - "woman_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♀️", - "woman_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♀️", - "woman_wearing_turban_medium_skin_tone": "👳🏽\u200d♀️", - "woman_with_headscarf": "🧕", - "woman_with_headscarf_dark_skin_tone": "🧕🏿", - "woman_with_headscarf_light_skin_tone": "🧕🏻", - "woman_with_headscarf_medium-dark_skin_tone": "🧕🏾", - "woman_with_headscarf_medium-light_skin_tone": "🧕🏼", - "woman_with_headscarf_medium_skin_tone": "🧕🏽", - "woman_with_probing_cane": "👩\u200d🦯", - "woman_zombie": "🧟\u200d♀️", - "woman’s_boot": "👢", - "woman’s_clothes": "👚", - "woman’s_hat": "👒", - "woman’s_sandal": "👡", - "women_with_bunny_ears": "👯\u200d♀️", - "women_wrestling": "🤼\u200d♀️", - "women’s_room": "🚺", - "woozy_face": "🥴", - "world_map": "🗺", - "worried_face": "😟", - "wrapped_gift": "🎁", - "wrench": "🔧", - "writing_hand": "✍", - "writing_hand_dark_skin_tone": "✍🏿", - "writing_hand_light_skin_tone": "✍🏻", - "writing_hand_medium-dark_skin_tone": "✍🏾", - "writing_hand_medium-light_skin_tone": "✍🏼", - "writing_hand_medium_skin_tone": "✍🏽", - "yarn": "🧶", - "yawning_face": "🥱", - "yellow_circle": "🟡", - "yellow_heart": "💛", - "yellow_square": "🟨", - "yen_banknote": "💴", - "yo-yo": "🪀", - "yin_yang": "☯", - "zany_face": "🤪", - "zebra": "🦓", - "zipper-mouth_face": "🤐", - "zombie": "🧟", - "zzz": "💤", - "åland_islands": "🇦🇽", - "keycap_asterisk": "*⃣", - "keycap_digit_eight": "8⃣", - "keycap_digit_five": "5⃣", - "keycap_digit_four": "4⃣", - "keycap_digit_nine": "9⃣", - "keycap_digit_one": "1⃣", - "keycap_digit_seven": "7⃣", - "keycap_digit_six": "6⃣", - "keycap_digit_three": "3⃣", - "keycap_digit_two": "2⃣", - "keycap_digit_zero": "0⃣", - "keycap_number_sign": "#⃣", - "light_skin_tone": "🏻", - "medium_light_skin_tone": "🏼", - "medium_skin_tone": "🏽", - "medium_dark_skin_tone": "🏾", - "dark_skin_tone": "🏿", - "regional_indicator_symbol_letter_a": "🇦", - "regional_indicator_symbol_letter_b": "🇧", - "regional_indicator_symbol_letter_c": "🇨", - "regional_indicator_symbol_letter_d": "🇩", - "regional_indicator_symbol_letter_e": "🇪", - "regional_indicator_symbol_letter_f": "🇫", - "regional_indicator_symbol_letter_g": "🇬", - "regional_indicator_symbol_letter_h": "🇭", - "regional_indicator_symbol_letter_i": "🇮", - "regional_indicator_symbol_letter_j": "🇯", - "regional_indicator_symbol_letter_k": "🇰", - "regional_indicator_symbol_letter_l": "🇱", - "regional_indicator_symbol_letter_m": "🇲", - "regional_indicator_symbol_letter_n": "🇳", - "regional_indicator_symbol_letter_o": "🇴", - "regional_indicator_symbol_letter_p": "🇵", - "regional_indicator_symbol_letter_q": "🇶", - "regional_indicator_symbol_letter_r": "🇷", - "regional_indicator_symbol_letter_s": "🇸", - "regional_indicator_symbol_letter_t": "🇹", - "regional_indicator_symbol_letter_u": "🇺", - "regional_indicator_symbol_letter_v": "🇻", - "regional_indicator_symbol_letter_w": "🇼", - "regional_indicator_symbol_letter_x": "🇽", - "regional_indicator_symbol_letter_y": "🇾", - "regional_indicator_symbol_letter_z": "🇿", - "airplane_arriving": "🛬", - "space_invader": "👾", - "football": "🏈", - "anger": "💢", - "angry": "😠", - "anguished": "😧", - "signal_strength": "📶", - "arrows_counterclockwise": "🔄", - "arrow_heading_down": "⤵", - "arrow_heading_up": "⤴", - "art": "🎨", - "astonished": "😲", - "athletic_shoe": "👟", - "atm": "🏧", - "car": "🚗", - "red_car": "🚗", - "angel": "👼", - "back": "🔙", - "badminton_racquet_and_shuttlecock": "🏸", - "dollar": "💵", - "euro": "💶", - "pound": "💷", - "yen": "💴", - "barber": "💈", - "bath": "🛀", - "bear": "🐻", - "heartbeat": "💓", - "beer": "🍺", - "no_bell": "🔕", - "bento": "🍱", - "bike": "🚲", - "bicyclist": "🚴", - "8ball": "🎱", - "biohazard_sign": "☣", - "birthday": "🎂", - "black_circle_for_record": "⏺", - "clubs": "♣", - "diamonds": "♦", - "arrow_double_down": "⏬", - "hearts": "♥", - "rewind": "⏪", - "black_left__pointing_double_triangle_with_vertical_bar": "⏮", - "arrow_backward": "◀", - "black_medium_small_square": "◾", - "question": "❓", - "fast_forward": "⏩", - "black_right__pointing_double_triangle_with_vertical_bar": "⏭", - "arrow_forward": "▶", - "black_right__pointing_triangle_with_double_vertical_bar": "⏯", - "arrow_right": "➡", - "spades": "♠", - "black_square_for_stop": "⏹", - "sunny": "☀", - "phone": "☎", - "recycle": "♻", - "arrow_double_up": "⏫", - "busstop": "🚏", - "date": "📅", - "flags": "🎏", - "cat2": "🐈", - "joy_cat": "😹", - "smirk_cat": "😼", - "chart_with_downwards_trend": "📉", - "chart_with_upwards_trend": "📈", - "chart": "💹", - "mega": "📣", - "checkered_flag": "🏁", - "accept": "🉑", - "ideograph_advantage": "🉐", - "congratulations": "㊗", - "secret": "㊙", - "m": "Ⓜ", - "city_sunset": "🌆", - "clapper": "🎬", - "clap": "👏", - "beers": "🍻", - "clock830": "🕣", - "clock8": "🕗", - "clock1130": "🕦", - "clock11": "🕚", - "clock530": "🕠", - "clock5": "🕔", - "clock430": "🕟", - "clock4": "🕓", - "clock930": "🕤", - "clock9": "🕘", - "clock130": "🕜", - "clock1": "🕐", - "clock730": "🕢", - "clock7": "🕖", - "clock630": "🕡", - "clock6": "🕕", - "clock1030": "🕥", - "clock10": "🕙", - "clock330": "🕞", - "clock3": "🕒", - "clock1230": "🕧", - "clock12": "🕛", - "clock230": "🕝", - "clock2": "🕑", - "arrows_clockwise": "🔃", - "repeat": "🔁", - "repeat_one": "🔂", - "closed_lock_with_key": "🔐", - "mailbox_closed": "📪", - "mailbox": "📫", - "cloud_with_tornado": "🌪", - "cocktail": "🍸", - "boom": "💥", - "compression": "🗜", - "confounded": "😖", - "confused": "😕", - "rice": "🍚", - "cow2": "🐄", - "cricket_bat_and_ball": "🏏", - "x": "❌", - "cry": "😢", - "curry": "🍛", - "dagger_knife": "🗡", - "dancer": "💃", - "dark_sunglasses": "🕶", - "dash": "💨", - "truck": "🚚", - "derelict_house_building": "🏚", - "diamond_shape_with_a_dot_inside": "💠", - "dart": "🎯", - "disappointed_relieved": "😥", - "disappointed": "😞", - "do_not_litter": "🚯", - "dog2": "🐕", - "flipper": "🐬", - "loop": "➿", - "bangbang": "‼", - "double_vertical_bar": "⏸", - "dove_of_peace": "🕊", - "small_red_triangle_down": "🔻", - "arrow_down_small": "🔽", - "arrow_down": "⬇", - "dromedary_camel": "🐪", - "e__mail": "📧", - "corn": "🌽", - "ear_of_rice": "🌾", - "earth_americas": "🌎", - "earth_asia": "🌏", - "earth_africa": "🌍", - "eight_pointed_black_star": "✴", - "eight_spoked_asterisk": "✳", - "eject_symbol": "⏏", - "bulb": "💡", - "emoji_modifier_fitzpatrick_type__1__2": "🏻", - "emoji_modifier_fitzpatrick_type__3": "🏼", - "emoji_modifier_fitzpatrick_type__4": "🏽", - "emoji_modifier_fitzpatrick_type__5": "🏾", - "emoji_modifier_fitzpatrick_type__6": "🏿", - "end": "🔚", - "email": "✉", - "european_castle": "🏰", - "european_post_office": "🏤", - "interrobang": "⁉", - "expressionless": "😑", - "eyeglasses": "👓", - "massage": "💆", - "yum": "😋", - "scream": "😱", - "kissing_heart": "😘", - "sweat": "😓", - "face_with_head__bandage": "🤕", - "triumph": "😤", - "mask": "😷", - "no_good": "🙅", - "ok_woman": "🙆", - "open_mouth": "😮", - "cold_sweat": "😰", - "stuck_out_tongue": "😛", - "stuck_out_tongue_closed_eyes": "😝", - "stuck_out_tongue_winking_eye": "😜", - "joy": "😂", - "no_mouth": "😶", - "santa": "🎅", - "fax": "📠", - "fearful": "😨", - "field_hockey_stick_and_ball": "🏑", - "first_quarter_moon_with_face": "🌛", - "fish_cake": "🍥", - "fishing_pole_and_fish": "🎣", - "facepunch": "👊", - "punch": "👊", - "flag_for_afghanistan": "🇦🇫", - "flag_for_albania": "🇦🇱", - "flag_for_algeria": "🇩🇿", - "flag_for_american_samoa": "🇦🇸", - "flag_for_andorra": "🇦🇩", - "flag_for_angola": "🇦🇴", - "flag_for_anguilla": "🇦🇮", - "flag_for_antarctica": "🇦🇶", - "flag_for_antigua_&_barbuda": "🇦🇬", - "flag_for_argentina": "🇦🇷", - "flag_for_armenia": "🇦🇲", - "flag_for_aruba": "🇦🇼", - "flag_for_ascension_island": "🇦🇨", - "flag_for_australia": "🇦🇺", - "flag_for_austria": "🇦🇹", - "flag_for_azerbaijan": "🇦🇿", - "flag_for_bahamas": "🇧🇸", - "flag_for_bahrain": "🇧🇭", - "flag_for_bangladesh": "🇧🇩", - "flag_for_barbados": "🇧🇧", - "flag_for_belarus": "🇧🇾", - "flag_for_belgium": "🇧🇪", - "flag_for_belize": "🇧🇿", - "flag_for_benin": "🇧🇯", - "flag_for_bermuda": "🇧🇲", - "flag_for_bhutan": "🇧🇹", - "flag_for_bolivia": "🇧🇴", - "flag_for_bosnia_&_herzegovina": "🇧🇦", - "flag_for_botswana": "🇧🇼", - "flag_for_bouvet_island": "🇧🇻", - "flag_for_brazil": "🇧🇷", - "flag_for_british_indian_ocean_territory": "🇮🇴", - "flag_for_british_virgin_islands": "🇻🇬", - "flag_for_brunei": "🇧🇳", - "flag_for_bulgaria": "🇧🇬", - "flag_for_burkina_faso": "🇧🇫", - "flag_for_burundi": "🇧🇮", - "flag_for_cambodia": "🇰🇭", - "flag_for_cameroon": "🇨🇲", - "flag_for_canada": "🇨🇦", - "flag_for_canary_islands": "🇮🇨", - "flag_for_cape_verde": "🇨🇻", - "flag_for_caribbean_netherlands": "🇧🇶", - "flag_for_cayman_islands": "🇰🇾", - "flag_for_central_african_republic": "🇨🇫", - "flag_for_ceuta_&_melilla": "🇪🇦", - "flag_for_chad": "🇹🇩", - "flag_for_chile": "🇨🇱", - "flag_for_china": "🇨🇳", - "flag_for_christmas_island": "🇨🇽", - "flag_for_clipperton_island": "🇨🇵", - "flag_for_cocos__islands": "🇨🇨", - "flag_for_colombia": "🇨🇴", - "flag_for_comoros": "🇰🇲", - "flag_for_congo____brazzaville": "🇨🇬", - "flag_for_congo____kinshasa": "🇨🇩", - "flag_for_cook_islands": "🇨🇰", - "flag_for_costa_rica": "🇨🇷", - "flag_for_croatia": "🇭🇷", - "flag_for_cuba": "🇨🇺", - "flag_for_curaçao": "🇨🇼", - "flag_for_cyprus": "🇨🇾", - "flag_for_czech_republic": "🇨🇿", - "flag_for_côte_d’ivoire": "🇨🇮", - "flag_for_denmark": "🇩🇰", - "flag_for_diego_garcia": "🇩🇬", - "flag_for_djibouti": "🇩🇯", - "flag_for_dominica": "🇩🇲", - "flag_for_dominican_republic": "🇩🇴", - "flag_for_ecuador": "🇪🇨", - "flag_for_egypt": "🇪🇬", - "flag_for_el_salvador": "🇸🇻", - "flag_for_equatorial_guinea": "🇬🇶", - "flag_for_eritrea": "🇪🇷", - "flag_for_estonia": "🇪🇪", - "flag_for_ethiopia": "🇪🇹", - "flag_for_european_union": "🇪🇺", - "flag_for_falkland_islands": "🇫🇰", - "flag_for_faroe_islands": "🇫🇴", - "flag_for_fiji": "🇫🇯", - "flag_for_finland": "🇫🇮", - "flag_for_france": "🇫🇷", - "flag_for_french_guiana": "🇬🇫", - "flag_for_french_polynesia": "🇵🇫", - "flag_for_french_southern_territories": "🇹🇫", - "flag_for_gabon": "🇬🇦", - "flag_for_gambia": "🇬🇲", - "flag_for_georgia": "🇬🇪", - "flag_for_germany": "🇩🇪", - "flag_for_ghana": "🇬🇭", - "flag_for_gibraltar": "🇬🇮", - "flag_for_greece": "🇬🇷", - "flag_for_greenland": "🇬🇱", - "flag_for_grenada": "🇬🇩", - "flag_for_guadeloupe": "🇬🇵", - "flag_for_guam": "🇬🇺", - "flag_for_guatemala": "🇬🇹", - "flag_for_guernsey": "🇬🇬", - "flag_for_guinea": "🇬🇳", - "flag_for_guinea__bissau": "🇬🇼", - "flag_for_guyana": "🇬🇾", - "flag_for_haiti": "🇭🇹", - "flag_for_heard_&_mcdonald_islands": "🇭🇲", - "flag_for_honduras": "🇭🇳", - "flag_for_hong_kong": "🇭🇰", - "flag_for_hungary": "🇭🇺", - "flag_for_iceland": "🇮🇸", - "flag_for_india": "🇮🇳", - "flag_for_indonesia": "🇮🇩", - "flag_for_iran": "🇮🇷", - "flag_for_iraq": "🇮🇶", - "flag_for_ireland": "🇮🇪", - "flag_for_isle_of_man": "🇮🇲", - "flag_for_israel": "🇮🇱", - "flag_for_italy": "🇮🇹", - "flag_for_jamaica": "🇯🇲", - "flag_for_japan": "🇯🇵", - "flag_for_jersey": "🇯🇪", - "flag_for_jordan": "🇯🇴", - "flag_for_kazakhstan": "🇰🇿", - "flag_for_kenya": "🇰🇪", - "flag_for_kiribati": "🇰🇮", - "flag_for_kosovo": "🇽🇰", - "flag_for_kuwait": "🇰🇼", - "flag_for_kyrgyzstan": "🇰🇬", - "flag_for_laos": "🇱🇦", - "flag_for_latvia": "🇱🇻", - "flag_for_lebanon": "🇱🇧", - "flag_for_lesotho": "🇱🇸", - "flag_for_liberia": "🇱🇷", - "flag_for_libya": "🇱🇾", - "flag_for_liechtenstein": "🇱🇮", - "flag_for_lithuania": "🇱🇹", - "flag_for_luxembourg": "🇱🇺", - "flag_for_macau": "🇲🇴", - "flag_for_macedonia": "🇲🇰", - "flag_for_madagascar": "🇲🇬", - "flag_for_malawi": "🇲🇼", - "flag_for_malaysia": "🇲🇾", - "flag_for_maldives": "🇲🇻", - "flag_for_mali": "🇲🇱", - "flag_for_malta": "🇲🇹", - "flag_for_marshall_islands": "🇲🇭", - "flag_for_martinique": "🇲🇶", - "flag_for_mauritania": "🇲🇷", - "flag_for_mauritius": "🇲🇺", - "flag_for_mayotte": "🇾🇹", - "flag_for_mexico": "🇲🇽", - "flag_for_micronesia": "🇫🇲", - "flag_for_moldova": "🇲🇩", - "flag_for_monaco": "🇲🇨", - "flag_for_mongolia": "🇲🇳", - "flag_for_montenegro": "🇲🇪", - "flag_for_montserrat": "🇲🇸", - "flag_for_morocco": "🇲🇦", - "flag_for_mozambique": "🇲🇿", - "flag_for_myanmar": "🇲🇲", - "flag_for_namibia": "🇳🇦", - "flag_for_nauru": "🇳🇷", - "flag_for_nepal": "🇳🇵", - "flag_for_netherlands": "🇳🇱", - "flag_for_new_caledonia": "🇳🇨", - "flag_for_new_zealand": "🇳🇿", - "flag_for_nicaragua": "🇳🇮", - "flag_for_niger": "🇳🇪", - "flag_for_nigeria": "🇳🇬", - "flag_for_niue": "🇳🇺", - "flag_for_norfolk_island": "🇳🇫", - "flag_for_north_korea": "🇰🇵", - "flag_for_northern_mariana_islands": "🇲🇵", - "flag_for_norway": "🇳🇴", - "flag_for_oman": "🇴🇲", - "flag_for_pakistan": "🇵🇰", - "flag_for_palau": "🇵🇼", - "flag_for_palestinian_territories": "🇵🇸", - "flag_for_panama": "🇵🇦", - "flag_for_papua_new_guinea": "🇵🇬", - "flag_for_paraguay": "🇵🇾", - "flag_for_peru": "🇵🇪", - "flag_for_philippines": "🇵🇭", - "flag_for_pitcairn_islands": "🇵🇳", - "flag_for_poland": "🇵🇱", - "flag_for_portugal": "🇵🇹", - "flag_for_puerto_rico": "🇵🇷", - "flag_for_qatar": "🇶🇦", - "flag_for_romania": "🇷🇴", - "flag_for_russia": "🇷🇺", - "flag_for_rwanda": "🇷🇼", - "flag_for_réunion": "🇷🇪", - "flag_for_samoa": "🇼🇸", - "flag_for_san_marino": "🇸🇲", - "flag_for_saudi_arabia": "🇸🇦", - "flag_for_senegal": "🇸🇳", - "flag_for_serbia": "🇷🇸", - "flag_for_seychelles": "🇸🇨", - "flag_for_sierra_leone": "🇸🇱", - "flag_for_singapore": "🇸🇬", - "flag_for_sint_maarten": "🇸🇽", - "flag_for_slovakia": "🇸🇰", - "flag_for_slovenia": "🇸🇮", - "flag_for_solomon_islands": "🇸🇧", - "flag_for_somalia": "🇸🇴", - "flag_for_south_africa": "🇿🇦", - "flag_for_south_georgia_&_south_sandwich_islands": "🇬🇸", - "flag_for_south_korea": "🇰🇷", - "flag_for_south_sudan": "🇸🇸", - "flag_for_spain": "🇪🇸", - "flag_for_sri_lanka": "🇱🇰", - "flag_for_st._barthélemy": "🇧🇱", - "flag_for_st._helena": "🇸🇭", - "flag_for_st._kitts_&_nevis": "🇰🇳", - "flag_for_st._lucia": "🇱🇨", - "flag_for_st._martin": "🇲🇫", - "flag_for_st._pierre_&_miquelon": "🇵🇲", - "flag_for_st._vincent_&_grenadines": "🇻🇨", - "flag_for_sudan": "🇸🇩", - "flag_for_suriname": "🇸🇷", - "flag_for_svalbard_&_jan_mayen": "🇸🇯", - "flag_for_swaziland": "🇸🇿", - "flag_for_sweden": "🇸🇪", - "flag_for_switzerland": "🇨🇭", - "flag_for_syria": "🇸🇾", - "flag_for_são_tomé_&_príncipe": "🇸🇹", - "flag_for_taiwan": "🇹🇼", - "flag_for_tajikistan": "🇹🇯", - "flag_for_tanzania": "🇹🇿", - "flag_for_thailand": "🇹🇭", - "flag_for_timor__leste": "🇹🇱", - "flag_for_togo": "🇹🇬", - "flag_for_tokelau": "🇹🇰", - "flag_for_tonga": "🇹🇴", - "flag_for_trinidad_&_tobago": "🇹🇹", - "flag_for_tristan_da_cunha": "🇹🇦", - "flag_for_tunisia": "🇹🇳", - "flag_for_turkey": "🇹🇷", - "flag_for_turkmenistan": "🇹🇲", - "flag_for_turks_&_caicos_islands": "🇹🇨", - "flag_for_tuvalu": "🇹🇻", - "flag_for_u.s._outlying_islands": "🇺🇲", - "flag_for_u.s._virgin_islands": "🇻🇮", - "flag_for_uganda": "🇺🇬", - "flag_for_ukraine": "🇺🇦", - "flag_for_united_arab_emirates": "🇦🇪", - "flag_for_united_kingdom": "🇬🇧", - "flag_for_united_states": "🇺🇸", - "flag_for_uruguay": "🇺🇾", - "flag_for_uzbekistan": "🇺🇿", - "flag_for_vanuatu": "🇻🇺", - "flag_for_vatican_city": "🇻🇦", - "flag_for_venezuela": "🇻🇪", - "flag_for_vietnam": "🇻🇳", - "flag_for_wallis_&_futuna": "🇼🇫", - "flag_for_western_sahara": "🇪🇭", - "flag_for_yemen": "🇾🇪", - "flag_for_zambia": "🇿🇲", - "flag_for_zimbabwe": "🇿🇼", - "flag_for_åland_islands": "🇦🇽", - "golf": "⛳", - "fleur__de__lis": "⚜", - "muscle": "💪", - "flushed": "😳", - "frame_with_picture": "🖼", - "fries": "🍟", - "frog": "🐸", - "hatched_chick": "🐥", - "frowning": "😦", - "fuelpump": "⛽", - "full_moon_with_face": "🌝", - "gem": "💎", - "star2": "🌟", - "golfer": "🏌", - "mortar_board": "🎓", - "grimacing": "😬", - "smile_cat": "😸", - "grinning": "😀", - "grin": "😁", - "heartpulse": "💗", - "guardsman": "💂", - "haircut": "💇", - "hamster": "🐹", - "raising_hand": "🙋", - "headphones": "🎧", - "hear_no_evil": "🙉", - "cupid": "💘", - "gift_heart": "💝", - "heart": "❤", - "exclamation": "❗", - "heavy_exclamation_mark": "❗", - "heavy_heart_exclamation_mark_ornament": "❣", - "o": "⭕", - "helm_symbol": "⎈", - "helmet_with_white_cross": "⛑", - "high_heel": "👠", - "bullettrain_side": "🚄", - "bullettrain_front": "🚅", - "high_brightness": "🔆", - "zap": "⚡", - "hocho": "🔪", - "knife": "🔪", - "bee": "🐝", - "traffic_light": "🚥", - "racehorse": "🐎", - "coffee": "☕", - "hotsprings": "♨", - "hourglass": "⌛", - "hourglass_flowing_sand": "⏳", - "house_buildings": "🏘", - "100": "💯", - "hushed": "😯", - "ice_hockey_stick_and_puck": "🏒", - "imp": "👿", - "information_desk_person": "💁", - "information_source": "ℹ", - "capital_abcd": "🔠", - "abc": "🔤", - "abcd": "🔡", - "1234": "🔢", - "symbols": "🔣", - "izakaya_lantern": "🏮", - "lantern": "🏮", - "jack_o_lantern": "🎃", - "dolls": "🎎", - "japanese_goblin": "👺", - "japanese_ogre": "👹", - "beginner": "🔰", - "zero": "0️⃣", - "one": "1️⃣", - "ten": "🔟", - "two": "2️⃣", - "three": "3️⃣", - "four": "4️⃣", - "five": "5️⃣", - "six": "6️⃣", - "seven": "7️⃣", - "eight": "8️⃣", - "nine": "9️⃣", - "couplekiss": "💏", - "kissing_cat": "😽", - "kissing": "😗", - "kissing_closed_eyes": "😚", - "kissing_smiling_eyes": "😙", - "beetle": "🐞", - "large_blue_circle": "🔵", - "last_quarter_moon_with_face": "🌜", - "leaves": "🍃", - "mag": "🔍", - "left_right_arrow": "↔", - "leftwards_arrow_with_hook": "↩", - "arrow_left": "⬅", - "lock": "🔒", - "lock_with_ink_pen": "🔏", - "sob": "😭", - "low_brightness": "🔅", - "lower_left_ballpoint_pen": "🖊", - "lower_left_crayon": "🖍", - "lower_left_fountain_pen": "🖋", - "lower_left_paintbrush": "🖌", - "mahjong": "🀄", - "couple": "👫", - "man_in_business_suit_levitating": "🕴", - "man_with_gua_pi_mao": "👲", - "man_with_turban": "👳", - "mans_shoe": "👞", - "shoe": "👞", - "menorah_with_nine_branches": "🕎", - "mens": "🚹", - "minidisc": "💽", - "iphone": "📱", - "calling": "📲", - "money__mouth_face": "🤑", - "moneybag": "💰", - "rice_scene": "🎑", - "mountain_bicyclist": "🚵", - "mouse2": "🐁", - "lips": "👄", - "moyai": "🗿", - "notes": "🎶", - "nail_care": "💅", - "ab": "🆎", - "negative_squared_cross_mark": "❎", - "a": "🅰", - "b": "🅱", - "o2": "🅾", - "parking": "🅿", - "new_moon_with_face": "🌚", - "no_entry_sign": "🚫", - "underage": "🔞", - "non__potable_water": "🚱", - "arrow_upper_right": "↗", - "arrow_upper_left": "↖", - "office": "🏢", - "older_man": "👴", - "older_woman": "👵", - "om_symbol": "🕉", - "on": "🔛", - "book": "📖", - "unlock": "🔓", - "mailbox_with_no_mail": "📭", - "mailbox_with_mail": "📬", - "cd": "💿", - "tada": "🎉", - "feet": "🐾", - "walking": "🚶", - "pencil2": "✏", - "pensive": "😔", - "persevere": "😣", - "bow": "🙇", - "raised_hands": "🙌", - "person_with_ball": "⛹", - "person_with_blond_hair": "👱", - "pray": "🙏", - "person_with_pouting_face": "🙎", - "computer": "💻", - "pig2": "🐖", - "hankey": "💩", - "poop": "💩", - "shit": "💩", - "bamboo": "🎍", - "gun": "🔫", - "black_joker": "🃏", - "rotating_light": "🚨", - "cop": "👮", - "stew": "🍲", - "pouch": "👝", - "pouting_cat": "😾", - "rage": "😡", - "put_litter_in_its_place": "🚮", - "rabbit2": "🐇", - "racing_motorcycle": "🏍", - "radioactive_sign": "☢", - "fist": "✊", - "hand": "✋", - "raised_hand_with_fingers_splayed": "🖐", - "raised_hand_with_part_between_middle_and_ring_fingers": "🖖", - "blue_car": "🚙", - "apple": "🍎", - "relieved": "😌", - "reversed_hand_with_middle_finger_extended": "🖕", - "mag_right": "🔎", - "arrow_right_hook": "↪", - "sweet_potato": "🍠", - "robot": "🤖", - "rolled__up_newspaper": "🗞", - "rowboat": "🚣", - "runner": "🏃", - "running": "🏃", - "running_shirt_with_sash": "🎽", - "boat": "⛵", - "scales": "⚖", - "school_satchel": "🎒", - "scorpius": "♏", - "see_no_evil": "🙈", - "sheep": "🐑", - "stars": "🌠", - "cake": "🍰", - "six_pointed_star": "🔯", - "ski": "🎿", - "sleeping_accommodation": "🛌", - "sleeping": "😴", - "sleepy": "😪", - "sleuth_or_spy": "🕵", - "heart_eyes_cat": "😻", - "smiley_cat": "😺", - "innocent": "😇", - "heart_eyes": "😍", - "smiling_imp": "😈", - "smiley": "😃", - "sweat_smile": "😅", - "smile": "😄", - "laughing": "😆", - "satisfied": "😆", - "blush": "😊", - "smirk": "😏", - "smoking": "🚬", - "snow_capped_mountain": "🏔", - "soccer": "⚽", - "icecream": "🍦", - "soon": "🔜", - "arrow_lower_right": "↘", - "arrow_lower_left": "↙", - "speak_no_evil": "🙊", - "speaker": "🔈", - "mute": "🔇", - "sound": "🔉", - "loud_sound": "🔊", - "speaking_head_in_silhouette": "🗣", - "spiral_calendar_pad": "🗓", - "spiral_note_pad": "🗒", - "shell": "🐚", - "sweat_drops": "💦", - "u5272": "🈹", - "u5408": "🈴", - "u55b6": "🈺", - "u6307": "🈯", - "u6708": "🈷", - "u6709": "🈶", - "u6e80": "🈵", - "u7121": "🈚", - "u7533": "🈸", - "u7981": "🈲", - "u7a7a": "🈳", - "cl": "🆑", - "cool": "🆒", - "free": "🆓", - "id": "🆔", - "koko": "🈁", - "sa": "🈂", - "new": "🆕", - "ng": "🆖", - "ok": "🆗", - "sos": "🆘", - "up": "🆙", - "vs": "🆚", - "steam_locomotive": "🚂", - "ramen": "🍜", - "partly_sunny": "⛅", - "city_sunrise": "🌇", - "surfer": "🏄", - "swimmer": "🏊", - "shirt": "👕", - "tshirt": "👕", - "table_tennis_paddle_and_ball": "🏓", - "tea": "🍵", - "tv": "📺", - "three_button_mouse": "🖱", - "+1": "👍", - "thumbsup": "👍", - "__1": "👎", - "-1": "👎", - "thumbsdown": "👎", - "thunder_cloud_and_rain": "⛈", - "tiger2": "🐅", - "tophat": "🎩", - "top": "🔝", - "tm": "™", - "train2": "🚆", - "triangular_flag_on_post": "🚩", - "trident": "🔱", - "twisted_rightwards_arrows": "🔀", - "unamused": "😒", - "small_red_triangle": "🔺", - "arrow_up_small": "🔼", - "arrow_up_down": "↕", - "upside__down_face": "🙃", - "arrow_up": "⬆", - "v": "✌", - "vhs": "📼", - "wc": "🚾", - "ocean": "🌊", - "waving_black_flag": "🏴", - "wave": "👋", - "waving_white_flag": "🏳", - "moon": "🌔", - "scream_cat": "🙀", - "weary": "😩", - "weight_lifter": "🏋", - "whale2": "🐋", - "wheelchair": "♿", - "point_down": "👇", - "grey_exclamation": "❕", - "white_frowning_face": "☹", - "white_check_mark": "✅", - "point_left": "👈", - "white_medium_small_square": "◽", - "star": "⭐", - "grey_question": "❔", - "point_right": "👉", - "relaxed": "☺", - "white_sun_behind_cloud": "🌥", - "white_sun_behind_cloud_with_rain": "🌦", - "white_sun_with_small_cloud": "🌤", - "point_up_2": "👆", - "point_up": "☝", - "wind_blowing_face": "🌬", - "wink": "😉", - "wolf": "🐺", - "dancers": "👯", - "boot": "👢", - "womans_clothes": "👚", - "womans_hat": "👒", - "sandal": "👡", - "womens": "🚺", - "worried": "😟", - "gift": "🎁", - "zipper__mouth_face": "🤐", - "regional_indicator_a": "🇦", - "regional_indicator_b": "🇧", - "regional_indicator_c": "🇨", - "regional_indicator_d": "🇩", - "regional_indicator_e": "🇪", - "regional_indicator_f": "🇫", - "regional_indicator_g": "🇬", - "regional_indicator_h": "🇭", - "regional_indicator_i": "🇮", - "regional_indicator_j": "🇯", - "regional_indicator_k": "🇰", - "regional_indicator_l": "🇱", - "regional_indicator_m": "🇲", - "regional_indicator_n": "🇳", - "regional_indicator_o": "🇴", - "regional_indicator_p": "🇵", - "regional_indicator_q": "🇶", - "regional_indicator_r": "🇷", - "regional_indicator_s": "🇸", - "regional_indicator_t": "🇹", - "regional_indicator_u": "🇺", - "regional_indicator_v": "🇻", - "regional_indicator_w": "🇼", - "regional_indicator_x": "🇽", - "regional_indicator_y": "🇾", - "regional_indicator_z": "🇿", -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py deleted file mode 100644 index bb2cafa..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py +++ /dev/null @@ -1,32 +0,0 @@ -from typing import Callable, Match, Optional -import re - -from ._emoji_codes import EMOJI - - -_ReStringMatch = Match[str] # regex match object -_ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub -_EmojiSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re - - -def _emoji_replace( - text: str, - default_variant: Optional[str] = None, - _emoji_sub: _EmojiSubMethod = re.compile(r"(:(\S*?)(?:(?:\-)(emoji|text))?:)").sub, -) -> str: - """Replace emoji code in text.""" - get_emoji = EMOJI.__getitem__ - variants = {"text": "\uFE0E", "emoji": "\uFE0F"} - get_variant = variants.get - default_variant_code = variants.get(default_variant, "") if default_variant else "" - - def do_replace(match: Match[str]) -> str: - emoji_code, emoji_name, variant = match.groups() - try: - return get_emoji(emoji_name.lower()) + get_variant( - variant, default_variant_code - ) - except KeyError: - return emoji_code - - return _emoji_sub(do_replace, text) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py deleted file mode 100644 index 094d2dc..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py +++ /dev/null @@ -1,76 +0,0 @@ -CONSOLE_HTML_FORMAT = """\ - - - - - - - -
{code}
- - -""" - -CONSOLE_SVG_FORMAT = """\ - - - - - - - - - {lines} - - - {chrome} - - {backgrounds} - - {matrix} - - - -""" - -_SVG_FONT_FAMILY = "Rich Fira Code" -_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py deleted file mode 100644 index cbd6da9..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py +++ /dev/null @@ -1,10 +0,0 @@ -from typing import Any - - -def load_ipython_extension(ip: Any) -> None: # pragma: no cover - # prevent circular import - from pip._vendor.rich.pretty import install - from pip._vendor.rich.traceback import install as tr_install - - install() - tr_install() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py deleted file mode 100644 index b17ee65..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import annotations - -from typing import IO, Callable - - -def get_fileno(file_like: IO[str]) -> int | None: - """Get fileno() from a file, accounting for poorly implemented file-like objects. - - Args: - file_like (IO): A file-like object. - - Returns: - int | None: The result of fileno if available, or None if operation failed. - """ - fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) - if fileno is not None: - try: - return fileno() - except Exception: - # `fileno` is documented as potentially raising a OSError - # Alas, from the issues, there are so many poorly implemented file-like objects, - # that `fileno()` can raise just about anything. - return None - return None diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py deleted file mode 100644 index 30446ce..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py +++ /dev/null @@ -1,270 +0,0 @@ -from __future__ import absolute_import - -import inspect -from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature -from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union - -from .console import Group, RenderableType -from .control import escape_control_codes -from .highlighter import ReprHighlighter -from .jupyter import JupyterMixin -from .panel import Panel -from .pretty import Pretty -from .table import Table -from .text import Text, TextType - - -def _first_paragraph(doc: str) -> str: - """Get the first paragraph from a docstring.""" - paragraph, _, _ = doc.partition("\n\n") - return paragraph - - -class Inspect(JupyterMixin): - """A renderable to inspect any Python Object. - - Args: - obj (Any): An object to inspect. - title (str, optional): Title to display over inspect result, or None use type. Defaults to None. - help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. - methods (bool, optional): Enable inspection of callables. Defaults to False. - docs (bool, optional): Also render doc strings. Defaults to True. - private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. - dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. - sort (bool, optional): Sort attributes alphabetically. Defaults to True. - all (bool, optional): Show all attributes. Defaults to False. - value (bool, optional): Pretty print value of object. Defaults to True. - """ - - def __init__( - self, - obj: Any, - *, - title: Optional[TextType] = None, - help: bool = False, - methods: bool = False, - docs: bool = True, - private: bool = False, - dunder: bool = False, - sort: bool = True, - all: bool = True, - value: bool = True, - ) -> None: - self.highlighter = ReprHighlighter() - self.obj = obj - self.title = title or self._make_title(obj) - if all: - methods = private = dunder = True - self.help = help - self.methods = methods - self.docs = docs or help - self.private = private or dunder - self.dunder = dunder - self.sort = sort - self.value = value - - def _make_title(self, obj: Any) -> Text: - """Make a default title.""" - title_str = ( - str(obj) - if (isclass(obj) or callable(obj) or ismodule(obj)) - else str(type(obj)) - ) - title_text = self.highlighter(title_str) - return title_text - - def __rich__(self) -> Panel: - return Panel.fit( - Group(*self._render()), - title=self.title, - border_style="scope.border", - padding=(0, 1), - ) - - def _get_signature(self, name: str, obj: Any) -> Optional[Text]: - """Get a signature for a callable.""" - try: - _signature = str(signature(obj)) + ":" - except ValueError: - _signature = "(...)" - except TypeError: - return None - - source_filename: Optional[str] = None - try: - source_filename = getfile(obj) - except (OSError, TypeError): - # OSError is raised if obj has no source file, e.g. when defined in REPL. - pass - - callable_name = Text(name, style="inspect.callable") - if source_filename: - callable_name.stylize(f"link file://{source_filename}") - signature_text = self.highlighter(_signature) - - qualname = name or getattr(obj, "__qualname__", name) - - # If obj is a module, there may be classes (which are callable) to display - if inspect.isclass(obj): - prefix = "class" - elif inspect.iscoroutinefunction(obj): - prefix = "async def" - else: - prefix = "def" - - qual_signature = Text.assemble( - (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), - (qualname, "inspect.callable"), - signature_text, - ) - - return qual_signature - - def _render(self) -> Iterable[RenderableType]: - """Render object.""" - - def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: - key, (_error, value) = item - return (callable(value), key.strip("_").lower()) - - def safe_getattr(attr_name: str) -> Tuple[Any, Any]: - """Get attribute or any exception.""" - try: - return (None, getattr(obj, attr_name)) - except Exception as error: - return (error, None) - - obj = self.obj - keys = dir(obj) - total_items = len(keys) - if not self.dunder: - keys = [key for key in keys if not key.startswith("__")] - if not self.private: - keys = [key for key in keys if not key.startswith("_")] - not_shown_count = total_items - len(keys) - items = [(key, safe_getattr(key)) for key in keys] - if self.sort: - items.sort(key=sort_items) - - items_table = Table.grid(padding=(0, 1), expand=False) - items_table.add_column(justify="right") - add_row = items_table.add_row - highlighter = self.highlighter - - if callable(obj): - signature = self._get_signature("", obj) - if signature is not None: - yield signature - yield "" - - if self.docs: - _doc = self._get_formatted_doc(obj) - if _doc is not None: - doc_text = Text(_doc, style="inspect.help") - doc_text = highlighter(doc_text) - yield doc_text - yield "" - - if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): - yield Panel( - Pretty(obj, indent_guides=True, max_length=10, max_string=60), - border_style="inspect.value.border", - ) - yield "" - - for key, (error, value) in items: - key_text = Text.assemble( - ( - key, - "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", - ), - (" =", "inspect.equals"), - ) - if error is not None: - warning = key_text.copy() - warning.stylize("inspect.error") - add_row(warning, highlighter(repr(error))) - continue - - if callable(value): - if not self.methods: - continue - - _signature_text = self._get_signature(key, value) - if _signature_text is None: - add_row(key_text, Pretty(value, highlighter=highlighter)) - else: - if self.docs: - docs = self._get_formatted_doc(value) - if docs is not None: - _signature_text.append("\n" if "\n" in docs else " ") - doc = highlighter(docs) - doc.stylize("inspect.doc") - _signature_text.append(doc) - - add_row(key_text, _signature_text) - else: - add_row(key_text, Pretty(value, highlighter=highlighter)) - if items_table.row_count: - yield items_table - elif not_shown_count: - yield Text.from_markup( - f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " - f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." - ) - - def _get_formatted_doc(self, object_: Any) -> Optional[str]: - """ - Extract the docstring of an object, process it and returns it. - The processing consists in cleaning up the doctring's indentation, - taking only its 1st paragraph if `self.help` is not True, - and escape its control codes. - - Args: - object_ (Any): the object to get the docstring from. - - Returns: - Optional[str]: the processed docstring, or None if no docstring was found. - """ - docs = getdoc(object_) - if docs is None: - return None - docs = cleandoc(docs).strip() - if not self.help: - docs = _first_paragraph(docs) - return escape_control_codes(docs) - - -def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: - """Returns the MRO of an object's class, or of the object itself if it's a class.""" - if not hasattr(obj, "__mro__"): - # N.B. we cannot use `if type(obj) is type` here because it doesn't work with - # some types of classes, such as the ones that use abc.ABCMeta. - obj = type(obj) - return getattr(obj, "__mro__", ()) - - -def get_object_types_mro_as_strings(obj: object) -> Collection[str]: - """ - Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. - - Examples: - `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` - """ - return [ - f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' - for type_ in get_object_types_mro(obj) - ] - - -def is_object_one_of_types( - obj: object, fully_qualified_types_names: Collection[str] -) -> bool: - """ - Returns `True` if the given object's class (or the object itself, if it's a class) has one of the - fully qualified names in its MRO. - """ - for type_name in get_object_types_mro_as_strings(obj): - if type_name in fully_qualified_types_names: - return True - return False diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py deleted file mode 100644 index fc16c84..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py +++ /dev/null @@ -1,94 +0,0 @@ -from datetime import datetime -from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable - - -from .text import Text, TextType - -if TYPE_CHECKING: - from .console import Console, ConsoleRenderable, RenderableType - from .table import Table - -FormatTimeCallable = Callable[[datetime], Text] - - -class LogRender: - def __init__( - self, - show_time: bool = True, - show_level: bool = False, - show_path: bool = True, - time_format: Union[str, FormatTimeCallable] = "[%x %X]", - omit_repeated_times: bool = True, - level_width: Optional[int] = 8, - ) -> None: - self.show_time = show_time - self.show_level = show_level - self.show_path = show_path - self.time_format = time_format - self.omit_repeated_times = omit_repeated_times - self.level_width = level_width - self._last_time: Optional[Text] = None - - def __call__( - self, - console: "Console", - renderables: Iterable["ConsoleRenderable"], - log_time: Optional[datetime] = None, - time_format: Optional[Union[str, FormatTimeCallable]] = None, - level: TextType = "", - path: Optional[str] = None, - line_no: Optional[int] = None, - link_path: Optional[str] = None, - ) -> "Table": - from .containers import Renderables - from .table import Table - - output = Table.grid(padding=(0, 1)) - output.expand = True - if self.show_time: - output.add_column(style="log.time") - if self.show_level: - output.add_column(style="log.level", width=self.level_width) - output.add_column(ratio=1, style="log.message", overflow="fold") - if self.show_path and path: - output.add_column(style="log.path") - row: List["RenderableType"] = [] - if self.show_time: - log_time = log_time or console.get_datetime() - time_format = time_format or self.time_format - if callable(time_format): - log_time_display = time_format(log_time) - else: - log_time_display = Text(log_time.strftime(time_format)) - if log_time_display == self._last_time and self.omit_repeated_times: - row.append(Text(" " * len(log_time_display))) - else: - row.append(log_time_display) - self._last_time = log_time_display - if self.show_level: - row.append(level) - - row.append(Renderables(renderables)) - if self.show_path and path: - path_text = Text() - path_text.append( - path, style=f"link file://{link_path}" if link_path else "" - ) - if line_no: - path_text.append(":") - path_text.append( - f"{line_no}", - style=f"link file://{link_path}#{line_no}" if link_path else "", - ) - row.append(path_text) - - output.add_row(*row) - return output - - -if __name__ == "__main__": # pragma: no cover - from pip._vendor.rich.console import Console - - c = Console() - c.print("[on blue]Hello", justify="right") - c.log("[on blue]hello", justify="right") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py deleted file mode 100644 index 01c6caf..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py +++ /dev/null @@ -1,43 +0,0 @@ -from typing import Iterable, Tuple, TypeVar - -T = TypeVar("T") - - -def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: - """Iterate and generate a tuple with a flag for first value.""" - iter_values = iter(values) - try: - value = next(iter_values) - except StopIteration: - return - yield True, value - for value in iter_values: - yield False, value - - -def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: - """Iterate and generate a tuple with a flag for last value.""" - iter_values = iter(values) - try: - previous_value = next(iter_values) - except StopIteration: - return - for value in iter_values: - yield False, previous_value - previous_value = value - yield True, previous_value - - -def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: - """Iterate and generate a tuple with a flag for first and last value.""" - iter_values = iter(values) - try: - previous_value = next(iter_values) - except StopIteration: - return - first = True - for value in iter_values: - yield first, False, previous_value - first = False - previous_value = value - yield first, True, previous_value diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py deleted file mode 100644 index b659673..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py +++ /dev/null @@ -1,69 +0,0 @@ -from types import TracebackType -from typing import IO, Iterable, Iterator, List, Optional, Type - - -class NullFile(IO[str]): - def close(self) -> None: - pass - - def isatty(self) -> bool: - return False - - def read(self, __n: int = 1) -> str: - return "" - - def readable(self) -> bool: - return False - - def readline(self, __limit: int = 1) -> str: - return "" - - def readlines(self, __hint: int = 1) -> List[str]: - return [] - - def seek(self, __offset: int, __whence: int = 1) -> int: - return 0 - - def seekable(self) -> bool: - return False - - def tell(self) -> int: - return 0 - - def truncate(self, __size: Optional[int] = 1) -> int: - return 0 - - def writable(self) -> bool: - return False - - def writelines(self, __lines: Iterable[str]) -> None: - pass - - def __next__(self) -> str: - return "" - - def __iter__(self) -> Iterator[str]: - return iter([""]) - - def __enter__(self) -> IO[str]: - pass - - def __exit__( - self, - __t: Optional[Type[BaseException]], - __value: Optional[BaseException], - __traceback: Optional[TracebackType], - ) -> None: - pass - - def write(self, text: str) -> int: - return 0 - - def flush(self) -> None: - pass - - def fileno(self) -> int: - return -1 - - -NULL_FILE = NullFile() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py deleted file mode 100644 index 3c748d3..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py +++ /dev/null @@ -1,309 +0,0 @@ -from .palette import Palette - - -# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) -WINDOWS_PALETTE = Palette( - [ - (12, 12, 12), - (197, 15, 31), - (19, 161, 14), - (193, 156, 0), - (0, 55, 218), - (136, 23, 152), - (58, 150, 221), - (204, 204, 204), - (118, 118, 118), - (231, 72, 86), - (22, 198, 12), - (249, 241, 165), - (59, 120, 255), - (180, 0, 158), - (97, 214, 214), - (242, 242, 242), - ] -) - -# # The standard ansi colors (including bright variants) -STANDARD_PALETTE = Palette( - [ - (0, 0, 0), - (170, 0, 0), - (0, 170, 0), - (170, 85, 0), - (0, 0, 170), - (170, 0, 170), - (0, 170, 170), - (170, 170, 170), - (85, 85, 85), - (255, 85, 85), - (85, 255, 85), - (255, 255, 85), - (85, 85, 255), - (255, 85, 255), - (85, 255, 255), - (255, 255, 255), - ] -) - - -# The 256 color palette -EIGHT_BIT_PALETTE = Palette( - [ - (0, 0, 0), - (128, 0, 0), - (0, 128, 0), - (128, 128, 0), - (0, 0, 128), - (128, 0, 128), - (0, 128, 128), - (192, 192, 192), - (128, 128, 128), - (255, 0, 0), - (0, 255, 0), - (255, 255, 0), - (0, 0, 255), - (255, 0, 255), - (0, 255, 255), - (255, 255, 255), - (0, 0, 0), - (0, 0, 95), - (0, 0, 135), - (0, 0, 175), - (0, 0, 215), - (0, 0, 255), - (0, 95, 0), - (0, 95, 95), - (0, 95, 135), - (0, 95, 175), - (0, 95, 215), - (0, 95, 255), - (0, 135, 0), - (0, 135, 95), - (0, 135, 135), - (0, 135, 175), - (0, 135, 215), - (0, 135, 255), - (0, 175, 0), - (0, 175, 95), - (0, 175, 135), - (0, 175, 175), - (0, 175, 215), - (0, 175, 255), - (0, 215, 0), - (0, 215, 95), - (0, 215, 135), - (0, 215, 175), - (0, 215, 215), - (0, 215, 255), - (0, 255, 0), - (0, 255, 95), - (0, 255, 135), - (0, 255, 175), - (0, 255, 215), - (0, 255, 255), - (95, 0, 0), - (95, 0, 95), - (95, 0, 135), - (95, 0, 175), - (95, 0, 215), - (95, 0, 255), - (95, 95, 0), - (95, 95, 95), - (95, 95, 135), - (95, 95, 175), - (95, 95, 215), - (95, 95, 255), - (95, 135, 0), - (95, 135, 95), - (95, 135, 135), - (95, 135, 175), - (95, 135, 215), - (95, 135, 255), - (95, 175, 0), - (95, 175, 95), - (95, 175, 135), - (95, 175, 175), - (95, 175, 215), - (95, 175, 255), - (95, 215, 0), - (95, 215, 95), - (95, 215, 135), - (95, 215, 175), - (95, 215, 215), - (95, 215, 255), - (95, 255, 0), - (95, 255, 95), - (95, 255, 135), - (95, 255, 175), - (95, 255, 215), - (95, 255, 255), - (135, 0, 0), - (135, 0, 95), - (135, 0, 135), - (135, 0, 175), - (135, 0, 215), - (135, 0, 255), - (135, 95, 0), - (135, 95, 95), - (135, 95, 135), - (135, 95, 175), - (135, 95, 215), - (135, 95, 255), - (135, 135, 0), - (135, 135, 95), - (135, 135, 135), - (135, 135, 175), - (135, 135, 215), - (135, 135, 255), - (135, 175, 0), - (135, 175, 95), - (135, 175, 135), - (135, 175, 175), - (135, 175, 215), - (135, 175, 255), - (135, 215, 0), - (135, 215, 95), - (135, 215, 135), - (135, 215, 175), - (135, 215, 215), - (135, 215, 255), - (135, 255, 0), - (135, 255, 95), - (135, 255, 135), - (135, 255, 175), - (135, 255, 215), - (135, 255, 255), - (175, 0, 0), - (175, 0, 95), - (175, 0, 135), - (175, 0, 175), - (175, 0, 215), - (175, 0, 255), - (175, 95, 0), - (175, 95, 95), - (175, 95, 135), - (175, 95, 175), - (175, 95, 215), - (175, 95, 255), - (175, 135, 0), - (175, 135, 95), - (175, 135, 135), - (175, 135, 175), - (175, 135, 215), - (175, 135, 255), - (175, 175, 0), - (175, 175, 95), - (175, 175, 135), - (175, 175, 175), - (175, 175, 215), - (175, 175, 255), - (175, 215, 0), - (175, 215, 95), - (175, 215, 135), - (175, 215, 175), - (175, 215, 215), - (175, 215, 255), - (175, 255, 0), - (175, 255, 95), - (175, 255, 135), - (175, 255, 175), - (175, 255, 215), - (175, 255, 255), - (215, 0, 0), - (215, 0, 95), - (215, 0, 135), - (215, 0, 175), - (215, 0, 215), - (215, 0, 255), - (215, 95, 0), - (215, 95, 95), - (215, 95, 135), - (215, 95, 175), - (215, 95, 215), - (215, 95, 255), - (215, 135, 0), - (215, 135, 95), - (215, 135, 135), - (215, 135, 175), - (215, 135, 215), - (215, 135, 255), - (215, 175, 0), - (215, 175, 95), - (215, 175, 135), - (215, 175, 175), - (215, 175, 215), - (215, 175, 255), - (215, 215, 0), - (215, 215, 95), - (215, 215, 135), - (215, 215, 175), - (215, 215, 215), - (215, 215, 255), - (215, 255, 0), - (215, 255, 95), - (215, 255, 135), - (215, 255, 175), - (215, 255, 215), - (215, 255, 255), - (255, 0, 0), - (255, 0, 95), - (255, 0, 135), - (255, 0, 175), - (255, 0, 215), - (255, 0, 255), - (255, 95, 0), - (255, 95, 95), - (255, 95, 135), - (255, 95, 175), - (255, 95, 215), - (255, 95, 255), - (255, 135, 0), - (255, 135, 95), - (255, 135, 135), - (255, 135, 175), - (255, 135, 215), - (255, 135, 255), - (255, 175, 0), - (255, 175, 95), - (255, 175, 135), - (255, 175, 175), - (255, 175, 215), - (255, 175, 255), - (255, 215, 0), - (255, 215, 95), - (255, 215, 135), - (255, 215, 175), - (255, 215, 215), - (255, 215, 255), - (255, 255, 0), - (255, 255, 95), - (255, 255, 135), - (255, 255, 175), - (255, 255, 215), - (255, 255, 255), - (8, 8, 8), - (18, 18, 18), - (28, 28, 28), - (38, 38, 38), - (48, 48, 48), - (58, 58, 58), - (68, 68, 68), - (78, 78, 78), - (88, 88, 88), - (98, 98, 98), - (108, 108, 108), - (118, 118, 118), - (128, 128, 128), - (138, 138, 138), - (148, 148, 148), - (158, 158, 158), - (168, 168, 168), - (178, 178, 178), - (188, 188, 188), - (198, 198, 198), - (208, 208, 208), - (218, 218, 218), - (228, 228, 228), - (238, 238, 238), - ] -) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py deleted file mode 100644 index 4f6d8b2..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py +++ /dev/null @@ -1,17 +0,0 @@ -from typing import Optional - - -def pick_bool(*values: Optional[bool]) -> bool: - """Pick the first non-none bool or return the last value. - - Args: - *values (bool): Any number of boolean or None values. - - Returns: - bool: First non-none boolean. - """ - assert values, "1 or more values required" - for value in values: - if value is not None: - return value - return bool(value) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py deleted file mode 100644 index e8a3a67..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py +++ /dev/null @@ -1,160 +0,0 @@ -import sys -from fractions import Fraction -from math import ceil -from typing import cast, List, Optional, Sequence - -if sys.version_info >= (3, 8): - from typing import Protocol -else: - from pip._vendor.typing_extensions import Protocol # pragma: no cover - - -class Edge(Protocol): - """Any object that defines an edge (such as Layout).""" - - size: Optional[int] = None - ratio: int = 1 - minimum_size: int = 1 - - -def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: - """Divide total space to satisfy size, ratio, and minimum_size, constraints. - - The returned list of integers should add up to total in most cases, unless it is - impossible to satisfy all the constraints. For instance, if there are two edges - with a minimum size of 20 each and `total` is 30 then the returned list will be - greater than total. In practice, this would mean that a Layout object would - clip the rows that would overflow the screen height. - - Args: - total (int): Total number of characters. - edges (List[Edge]): Edges within total space. - - Returns: - List[int]: Number of characters for each edge. - """ - # Size of edge or None for yet to be determined - sizes = [(edge.size or None) for edge in edges] - - _Fraction = Fraction - - # While any edges haven't been calculated - while None in sizes: - # Get flexible edges and index to map these back on to sizes list - flexible_edges = [ - (index, edge) - for index, (size, edge) in enumerate(zip(sizes, edges)) - if size is None - ] - # Remaining space in total - remaining = total - sum(size or 0 for size in sizes) - if remaining <= 0: - # No room for flexible edges - return [ - ((edge.minimum_size or 1) if size is None else size) - for size, edge in zip(sizes, edges) - ] - # Calculate number of characters in a ratio portion - portion = _Fraction( - remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) - ) - - # If any edges will be less than their minimum, replace size with the minimum - for index, edge in flexible_edges: - if portion * edge.ratio <= edge.minimum_size: - sizes[index] = edge.minimum_size - # New fixed size will invalidate calculations, so we need to repeat the process - break - else: - # Distribute flexible space and compensate for rounding error - # Since edge sizes can only be integers we need to add the remainder - # to the following line - remainder = _Fraction(0) - for index, edge in flexible_edges: - size, remainder = divmod(portion * edge.ratio + remainder, 1) - sizes[index] = size - break - # Sizes now contains integers only - return cast(List[int], sizes) - - -def ratio_reduce( - total: int, ratios: List[int], maximums: List[int], values: List[int] -) -> List[int]: - """Divide an integer total in to parts based on ratios. - - Args: - total (int): The total to divide. - ratios (List[int]): A list of integer ratios. - maximums (List[int]): List of maximums values for each slot. - values (List[int]): List of values - - Returns: - List[int]: A list of integers guaranteed to sum to total. - """ - ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] - total_ratio = sum(ratios) - if not total_ratio: - return values[:] - total_remaining = total - result: List[int] = [] - append = result.append - for ratio, maximum, value in zip(ratios, maximums, values): - if ratio and total_ratio > 0: - distributed = min(maximum, round(ratio * total_remaining / total_ratio)) - append(value - distributed) - total_remaining -= distributed - total_ratio -= ratio - else: - append(value) - return result - - -def ratio_distribute( - total: int, ratios: List[int], minimums: Optional[List[int]] = None -) -> List[int]: - """Distribute an integer total in to parts based on ratios. - - Args: - total (int): The total to divide. - ratios (List[int]): A list of integer ratios. - minimums (List[int]): List of minimum values for each slot. - - Returns: - List[int]: A list of integers guaranteed to sum to total. - """ - if minimums: - ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] - total_ratio = sum(ratios) - assert total_ratio > 0, "Sum of ratios must be > 0" - - total_remaining = total - distributed_total: List[int] = [] - append = distributed_total.append - if minimums is None: - _minimums = [0] * len(ratios) - else: - _minimums = minimums - for ratio, minimum in zip(ratios, _minimums): - if total_ratio > 0: - distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) - else: - distributed = total_remaining - append(distributed) - total_ratio -= ratio - total_remaining -= distributed - return distributed_total - - -if __name__ == "__main__": - from dataclasses import dataclass - - @dataclass - class E: - - size: Optional[int] = None - ratio: int = 1 - minimum_size: int = 1 - - resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) - print(sum(resolved)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py deleted file mode 100644 index d0bb1fe..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py +++ /dev/null @@ -1,482 +0,0 @@ -""" -Spinners are from: -* cli-spinners: - MIT License - Copyright (c) Sindre Sorhus (sindresorhus.com) - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights to - use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE - FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -""" - -SPINNERS = { - "dots": { - "interval": 80, - "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", - }, - "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, - "dots3": { - "interval": 80, - "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", - }, - "dots4": { - "interval": 80, - "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", - }, - "dots5": { - "interval": 80, - "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", - }, - "dots6": { - "interval": 80, - "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", - }, - "dots7": { - "interval": 80, - "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", - }, - "dots8": { - "interval": 80, - "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", - }, - "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, - "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, - "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, - "dots12": { - "interval": 80, - "frames": [ - "⢀⠀", - "⡀⠀", - "⠄⠀", - "⢂⠀", - "⡂⠀", - "⠅⠀", - "⢃⠀", - "⡃⠀", - "⠍⠀", - "⢋⠀", - "⡋⠀", - "⠍⠁", - "⢋⠁", - "⡋⠁", - "⠍⠉", - "⠋⠉", - "⠋⠉", - "⠉⠙", - "⠉⠙", - "⠉⠩", - "⠈⢙", - "⠈⡙", - "⢈⠩", - "⡀⢙", - "⠄⡙", - "⢂⠩", - "⡂⢘", - "⠅⡘", - "⢃⠨", - "⡃⢐", - "⠍⡐", - "⢋⠠", - "⡋⢀", - "⠍⡁", - "⢋⠁", - "⡋⠁", - "⠍⠉", - "⠋⠉", - "⠋⠉", - "⠉⠙", - "⠉⠙", - "⠉⠩", - "⠈⢙", - "⠈⡙", - "⠈⠩", - "⠀⢙", - "⠀⡙", - "⠀⠩", - "⠀⢘", - "⠀⡘", - "⠀⠨", - "⠀⢐", - "⠀⡐", - "⠀⠠", - "⠀⢀", - "⠀⡀", - ], - }, - "dots8Bit": { - "interval": 80, - "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" - "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" - "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" - "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" - "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", - }, - "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, - "line2": {"interval": 100, "frames": "⠂-–—–-"}, - "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, - "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, - "simpleDotsScrolling": { - "interval": 200, - "frames": [". ", ".. ", "...", " ..", " .", " "], - }, - "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, - "star2": {"interval": 80, "frames": "+x*"}, - "flip": { - "interval": 70, - "frames": "___-``'´-___", - }, - "hamburger": {"interval": 100, "frames": "☱☲☴"}, - "growVertical": { - "interval": 120, - "frames": "▁▃▄▅▆▇▆▅▄▃", - }, - "growHorizontal": { - "interval": 120, - "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", - }, - "balloon": {"interval": 140, "frames": " .oO@* "}, - "balloon2": {"interval": 120, "frames": ".oO°Oo."}, - "noise": {"interval": 100, "frames": "▓▒░"}, - "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, - "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, - "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, - "triangle": {"interval": 50, "frames": "◢◣◤◥"}, - "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, - "circle": {"interval": 120, "frames": "◡⊙◠"}, - "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, - "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, - "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, - "squish": {"interval": 100, "frames": "╫╪"}, - "toggle": {"interval": 250, "frames": "⊶⊷"}, - "toggle2": {"interval": 80, "frames": "▫▪"}, - "toggle3": {"interval": 120, "frames": "□■"}, - "toggle4": {"interval": 100, "frames": "■□▪▫"}, - "toggle5": {"interval": 100, "frames": "▮▯"}, - "toggle6": {"interval": 300, "frames": "ဝ၀"}, - "toggle7": {"interval": 80, "frames": "⦾⦿"}, - "toggle8": {"interval": 100, "frames": "◍◌"}, - "toggle9": {"interval": 100, "frames": "◉◎"}, - "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, - "toggle11": {"interval": 50, "frames": "⧇⧆"}, - "toggle12": {"interval": 120, "frames": "☗☖"}, - "toggle13": {"interval": 80, "frames": "=*-"}, - "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, - "arrow2": { - "interval": 80, - "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], - }, - "arrow3": { - "interval": 120, - "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], - }, - "bouncingBar": { - "interval": 80, - "frames": [ - "[ ]", - "[= ]", - "[== ]", - "[=== ]", - "[ ===]", - "[ ==]", - "[ =]", - "[ ]", - "[ =]", - "[ ==]", - "[ ===]", - "[====]", - "[=== ]", - "[== ]", - "[= ]", - ], - }, - "bouncingBall": { - "interval": 80, - "frames": [ - "( ● )", - "( ● )", - "( ● )", - "( ● )", - "( ●)", - "( ● )", - "( ● )", - "( ● )", - "( ● )", - "(● )", - ], - }, - "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, - "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, - "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, - "clock": { - "interval": 100, - "frames": [ - "🕛 ", - "🕐 ", - "🕑 ", - "🕒 ", - "🕓 ", - "🕔 ", - "🕕 ", - "🕖 ", - "🕗 ", - "🕘 ", - "🕙 ", - "🕚 ", - ], - }, - "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, - "material": { - "interval": 17, - "frames": [ - "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", - "████████▁▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "██████████▁▁▁▁▁▁▁▁▁▁", - "███████████▁▁▁▁▁▁▁▁▁", - "█████████████▁▁▁▁▁▁▁", - "██████████████▁▁▁▁▁▁", - "██████████████▁▁▁▁▁▁", - "▁██████████████▁▁▁▁▁", - "▁██████████████▁▁▁▁▁", - "▁██████████████▁▁▁▁▁", - "▁▁██████████████▁▁▁▁", - "▁▁▁██████████████▁▁▁", - "▁▁▁▁█████████████▁▁▁", - "▁▁▁▁██████████████▁▁", - "▁▁▁▁██████████████▁▁", - "▁▁▁▁▁██████████████▁", - "▁▁▁▁▁██████████████▁", - "▁▁▁▁▁██████████████▁", - "▁▁▁▁▁▁██████████████", - "▁▁▁▁▁▁██████████████", - "▁▁▁▁▁▁▁█████████████", - "▁▁▁▁▁▁▁█████████████", - "▁▁▁▁▁▁▁▁████████████", - "▁▁▁▁▁▁▁▁████████████", - "▁▁▁▁▁▁▁▁▁███████████", - "▁▁▁▁▁▁▁▁▁███████████", - "▁▁▁▁▁▁▁▁▁▁██████████", - "▁▁▁▁▁▁▁▁▁▁██████████", - "▁▁▁▁▁▁▁▁▁▁▁▁████████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", - "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", - "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", - "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", - "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", - "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", - "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "████████▁▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "█████████▁▁▁▁▁▁▁▁▁▁▁", - "███████████▁▁▁▁▁▁▁▁▁", - "████████████▁▁▁▁▁▁▁▁", - "████████████▁▁▁▁▁▁▁▁", - "██████████████▁▁▁▁▁▁", - "██████████████▁▁▁▁▁▁", - "▁██████████████▁▁▁▁▁", - "▁██████████████▁▁▁▁▁", - "▁▁▁█████████████▁▁▁▁", - "▁▁▁▁▁████████████▁▁▁", - "▁▁▁▁▁████████████▁▁▁", - "▁▁▁▁▁▁███████████▁▁▁", - "▁▁▁▁▁▁▁▁█████████▁▁▁", - "▁▁▁▁▁▁▁▁█████████▁▁▁", - "▁▁▁▁▁▁▁▁▁█████████▁▁", - "▁▁▁▁▁▁▁▁▁█████████▁▁", - "▁▁▁▁▁▁▁▁▁▁█████████▁", - "▁▁▁▁▁▁▁▁▁▁▁████████▁", - "▁▁▁▁▁▁▁▁▁▁▁████████▁", - "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", - "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", - "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", - ], - }, - "moon": { - "interval": 80, - "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], - }, - "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, - "pong": { - "interval": 80, - "frames": [ - "▐⠂ ▌", - "▐⠈ ▌", - "▐ ⠂ ▌", - "▐ ⠠ ▌", - "▐ ⡀ ▌", - "▐ ⠠ ▌", - "▐ ⠂ ▌", - "▐ ⠈ ▌", - "▐ ⠂ ▌", - "▐ ⠠ ▌", - "▐ ⡀ ▌", - "▐ ⠠ ▌", - "▐ ⠂ ▌", - "▐ ⠈ ▌", - "▐ ⠂▌", - "▐ ⠠▌", - "▐ ⡀▌", - "▐ ⠠ ▌", - "▐ ⠂ ▌", - "▐ ⠈ ▌", - "▐ ⠂ ▌", - "▐ ⠠ ▌", - "▐ ⡀ ▌", - "▐ ⠠ ▌", - "▐ ⠂ ▌", - "▐ ⠈ ▌", - "▐ ⠂ ▌", - "▐ ⠠ ▌", - "▐ ⡀ ▌", - "▐⠠ ▌", - ], - }, - "shark": { - "interval": 120, - "frames": [ - "▐|\\____________▌", - "▐_|\\___________▌", - "▐__|\\__________▌", - "▐___|\\_________▌", - "▐____|\\________▌", - "▐_____|\\_______▌", - "▐______|\\______▌", - "▐_______|\\_____▌", - "▐________|\\____▌", - "▐_________|\\___▌", - "▐__________|\\__▌", - "▐___________|\\_▌", - "▐____________|\\▌", - "▐____________/|▌", - "▐___________/|_▌", - "▐__________/|__▌", - "▐_________/|___▌", - "▐________/|____▌", - "▐_______/|_____▌", - "▐______/|______▌", - "▐_____/|_______▌", - "▐____/|________▌", - "▐___/|_________▌", - "▐__/|__________▌", - "▐_/|___________▌", - "▐/|____________▌", - ], - }, - "dqpb": {"interval": 100, "frames": "dqpb"}, - "weather": { - "interval": 100, - "frames": [ - "☀️ ", - "☀️ ", - "☀️ ", - "🌤 ", - "⛅️ ", - "🌥 ", - "☁️ ", - "🌧 ", - "🌨 ", - "🌧 ", - "🌨 ", - "🌧 ", - "🌨 ", - "⛈ ", - "🌨 ", - "🌧 ", - "🌨 ", - "☁️ ", - "🌥 ", - "⛅️ ", - "🌤 ", - "☀️ ", - "☀️ ", - ], - }, - "christmas": {"interval": 400, "frames": "🌲🎄"}, - "grenade": { - "interval": 80, - "frames": [ - "، ", - "′ ", - " ´ ", - " ‾ ", - " ⸌", - " ⸊", - " |", - " ⁎", - " ⁕", - " ෴ ", - " ⁓", - " ", - " ", - " ", - ], - }, - "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, - "layer": {"interval": 150, "frames": "-=≡"}, - "betaWave": { - "interval": 80, - "frames": [ - "ρββββββ", - "βρβββββ", - "ββρββββ", - "βββρβββ", - "ββββρββ", - "βββββρβ", - "ββββββρ", - ], - }, - "aesthetic": { - "interval": 80, - "frames": [ - "▰▱▱▱▱▱▱", - "▰▰▱▱▱▱▱", - "▰▰▰▱▱▱▱", - "▰▰▰▰▱▱▱", - "▰▰▰▰▰▱▱", - "▰▰▰▰▰▰▱", - "▰▰▰▰▰▰▰", - "▰▱▱▱▱▱▱", - ], - }, -} diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py deleted file mode 100644 index 194564e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py +++ /dev/null @@ -1,16 +0,0 @@ -from typing import List, TypeVar - -T = TypeVar("T") - - -class Stack(List[T]): - """A small shim over builtin list.""" - - @property - def top(self) -> T: - """Get top of stack.""" - return self[-1] - - def push(self, item: T) -> None: - """Push an item on to the stack (append in stack nomenclature).""" - self.append(item) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py deleted file mode 100644 index a2ca6be..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -Timer context manager, only used in debug. - -""" - -from time import time - -import contextlib -from typing import Generator - - -@contextlib.contextmanager -def timer(subject: str = "time") -> Generator[None, None, None]: - """print the elapsed time. (only used in debugging)""" - start = time() - yield - elapsed = time() - start - elapsed_ms = elapsed * 1000 - print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py deleted file mode 100644 index 81b1082..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py +++ /dev/null @@ -1,662 +0,0 @@ -"""Light wrapper around the Win32 Console API - this module should only be imported on Windows - -The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions -""" -import ctypes -import sys -from typing import Any - -windll: Any = None -if sys.platform == "win32": - windll = ctypes.LibraryLoader(ctypes.WinDLL) -else: - raise ImportError(f"{__name__} can only be imported on Windows") - -import time -from ctypes import Structure, byref, wintypes -from typing import IO, NamedTuple, Type, cast - -from pip._vendor.rich.color import ColorSystem -from pip._vendor.rich.style import Style - -STDOUT = -11 -ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 - -COORD = wintypes._COORD - - -class LegacyWindowsError(Exception): - pass - - -class WindowsCoordinates(NamedTuple): - """Coordinates in the Windows Console API are (y, x), not (x, y). - This class is intended to prevent that confusion. - Rows and columns are indexed from 0. - This class can be used in place of wintypes._COORD in arguments and argtypes. - """ - - row: int - col: int - - @classmethod - def from_param(cls, value: "WindowsCoordinates") -> COORD: - """Converts a WindowsCoordinates into a wintypes _COORD structure. - This classmethod is internally called by ctypes to perform the conversion. - - Args: - value (WindowsCoordinates): The input coordinates to convert. - - Returns: - wintypes._COORD: The converted coordinates struct. - """ - return COORD(value.col, value.row) - - -class CONSOLE_SCREEN_BUFFER_INFO(Structure): - _fields_ = [ - ("dwSize", COORD), - ("dwCursorPosition", COORD), - ("wAttributes", wintypes.WORD), - ("srWindow", wintypes.SMALL_RECT), - ("dwMaximumWindowSize", COORD), - ] - - -class CONSOLE_CURSOR_INFO(ctypes.Structure): - _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] - - -_GetStdHandle = windll.kernel32.GetStdHandle -_GetStdHandle.argtypes = [ - wintypes.DWORD, -] -_GetStdHandle.restype = wintypes.HANDLE - - -def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: - """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). - - Args: - handle (int): Integer identifier for the handle. Defaults to -11 (stdout). - - Returns: - wintypes.HANDLE: The handle - """ - return cast(wintypes.HANDLE, _GetStdHandle(handle)) - - -_GetConsoleMode = windll.kernel32.GetConsoleMode -_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] -_GetConsoleMode.restype = wintypes.BOOL - - -def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: - """Retrieves the current input mode of a console's input buffer - or the current output mode of a console screen buffer. - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - - Raises: - LegacyWindowsError: If any error occurs while calling the Windows console API. - - Returns: - int: Value representing the current console mode as documented at - https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters - """ - - console_mode = wintypes.DWORD() - success = bool(_GetConsoleMode(std_handle, console_mode)) - if not success: - raise LegacyWindowsError("Unable to get legacy Windows Console Mode") - return console_mode.value - - -_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW -_FillConsoleOutputCharacterW.argtypes = [ - wintypes.HANDLE, - ctypes.c_char, - wintypes.DWORD, - cast(Type[COORD], WindowsCoordinates), - ctypes.POINTER(wintypes.DWORD), -] -_FillConsoleOutputCharacterW.restype = wintypes.BOOL - - -def FillConsoleOutputCharacter( - std_handle: wintypes.HANDLE, - char: str, - length: int, - start: WindowsCoordinates, -) -> int: - """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - char (str): The character to write. Must be a string of length 1. - length (int): The number of times to write the character. - start (WindowsCoordinates): The coordinates to start writing at. - - Returns: - int: The number of characters written. - """ - character = ctypes.c_char(char.encode()) - num_characters = wintypes.DWORD(length) - num_written = wintypes.DWORD(0) - _FillConsoleOutputCharacterW( - std_handle, - character, - num_characters, - start, - byref(num_written), - ) - return num_written.value - - -_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute -_FillConsoleOutputAttribute.argtypes = [ - wintypes.HANDLE, - wintypes.WORD, - wintypes.DWORD, - cast(Type[COORD], WindowsCoordinates), - ctypes.POINTER(wintypes.DWORD), -] -_FillConsoleOutputAttribute.restype = wintypes.BOOL - - -def FillConsoleOutputAttribute( - std_handle: wintypes.HANDLE, - attributes: int, - length: int, - start: WindowsCoordinates, -) -> int: - """Sets the character attributes for a specified number of character cells, - beginning at the specified coordinates in a screen buffer. - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - attributes (int): Integer value representing the foreground and background colours of the cells. - length (int): The number of cells to set the output attribute of. - start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. - - Returns: - int: The number of cells whose attributes were actually set. - """ - num_cells = wintypes.DWORD(length) - style_attrs = wintypes.WORD(attributes) - num_written = wintypes.DWORD(0) - _FillConsoleOutputAttribute( - std_handle, style_attrs, num_cells, start, byref(num_written) - ) - return num_written.value - - -_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute -_SetConsoleTextAttribute.argtypes = [ - wintypes.HANDLE, - wintypes.WORD, -] -_SetConsoleTextAttribute.restype = wintypes.BOOL - - -def SetConsoleTextAttribute( - std_handle: wintypes.HANDLE, attributes: wintypes.WORD -) -> bool: - """Set the colour attributes for all text written after this function is called. - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - attributes (int): Integer value representing the foreground and background colours. - - - Returns: - bool: True if the attribute was set successfully, otherwise False. - """ - return bool(_SetConsoleTextAttribute(std_handle, attributes)) - - -_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo -_GetConsoleScreenBufferInfo.argtypes = [ - wintypes.HANDLE, - ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), -] -_GetConsoleScreenBufferInfo.restype = wintypes.BOOL - - -def GetConsoleScreenBufferInfo( - std_handle: wintypes.HANDLE, -) -> CONSOLE_SCREEN_BUFFER_INFO: - """Retrieves information about the specified console screen buffer. - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - - Returns: - CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about - screen size, cursor position, colour attributes, and more.""" - console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() - _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) - return console_screen_buffer_info - - -_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition -_SetConsoleCursorPosition.argtypes = [ - wintypes.HANDLE, - cast(Type[COORD], WindowsCoordinates), -] -_SetConsoleCursorPosition.restype = wintypes.BOOL - - -def SetConsoleCursorPosition( - std_handle: wintypes.HANDLE, coords: WindowsCoordinates -) -> bool: - """Set the position of the cursor in the console screen - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - coords (WindowsCoordinates): The coordinates to move the cursor to. - - Returns: - bool: True if the function succeeds, otherwise False. - """ - return bool(_SetConsoleCursorPosition(std_handle, coords)) - - -_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo -_GetConsoleCursorInfo.argtypes = [ - wintypes.HANDLE, - ctypes.POINTER(CONSOLE_CURSOR_INFO), -] -_GetConsoleCursorInfo.restype = wintypes.BOOL - - -def GetConsoleCursorInfo( - std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO -) -> bool: - """Get the cursor info - used to get cursor visibility and width - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information - about the console's cursor. - - Returns: - bool: True if the function succeeds, otherwise False. - """ - return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) - - -_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo -_SetConsoleCursorInfo.argtypes = [ - wintypes.HANDLE, - ctypes.POINTER(CONSOLE_CURSOR_INFO), -] -_SetConsoleCursorInfo.restype = wintypes.BOOL - - -def SetConsoleCursorInfo( - std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO -) -> bool: - """Set the cursor info - used for adjusting cursor visibility and width - - Args: - std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. - cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. - - Returns: - bool: True if the function succeeds, otherwise False. - """ - return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) - - -_SetConsoleTitle = windll.kernel32.SetConsoleTitleW -_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] -_SetConsoleTitle.restype = wintypes.BOOL - - -def SetConsoleTitle(title: str) -> bool: - """Sets the title of the current console window - - Args: - title (str): The new title of the console window. - - Returns: - bool: True if the function succeeds, otherwise False. - """ - return bool(_SetConsoleTitle(title)) - - -class LegacyWindowsTerm: - """This class allows interaction with the legacy Windows Console API. It should only be used in the context - of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, - the entire API should work. - - Args: - file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. - """ - - BRIGHT_BIT = 8 - - # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers - ANSI_TO_WINDOWS = [ - 0, # black The Windows colours are defined in wincon.h as follows: - 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 - 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 - 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 - 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 - 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 - 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 - 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 - 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 - 12, # bright red - 10, # bright green - 14, # bright yellow - 9, # bright blue - 13, # bright magenta - 11, # bright cyan - 15, # bright white - ] - - def __init__(self, file: "IO[str]") -> None: - handle = GetStdHandle(STDOUT) - self._handle = handle - default_text = GetConsoleScreenBufferInfo(handle).wAttributes - self._default_text = default_text - - self._default_fore = default_text & 7 - self._default_back = (default_text >> 4) & 7 - self._default_attrs = self._default_fore | (self._default_back << 4) - - self._file = file - self.write = file.write - self.flush = file.flush - - @property - def cursor_position(self) -> WindowsCoordinates: - """Returns the current position of the cursor (0-based) - - Returns: - WindowsCoordinates: The current cursor position. - """ - coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition - return WindowsCoordinates(row=cast(int, coord.Y), col=cast(int, coord.X)) - - @property - def screen_size(self) -> WindowsCoordinates: - """Returns the current size of the console screen buffer, in character columns and rows - - Returns: - WindowsCoordinates: The width and height of the screen as WindowsCoordinates. - """ - screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize - return WindowsCoordinates( - row=cast(int, screen_size.Y), col=cast(int, screen_size.X) - ) - - def write_text(self, text: str) -> None: - """Write text directly to the terminal without any modification of styles - - Args: - text (str): The text to write to the console - """ - self.write(text) - self.flush() - - def write_styled(self, text: str, style: Style) -> None: - """Write styled text to the terminal. - - Args: - text (str): The text to write - style (Style): The style of the text - """ - color = style.color - bgcolor = style.bgcolor - if style.reverse: - color, bgcolor = bgcolor, color - - if color: - fore = color.downgrade(ColorSystem.WINDOWS).number - fore = fore if fore is not None else 7 # Default to ANSI 7: White - if style.bold: - fore = fore | self.BRIGHT_BIT - if style.dim: - fore = fore & ~self.BRIGHT_BIT - fore = self.ANSI_TO_WINDOWS[fore] - else: - fore = self._default_fore - - if bgcolor: - back = bgcolor.downgrade(ColorSystem.WINDOWS).number - back = back if back is not None else 0 # Default to ANSI 0: Black - back = self.ANSI_TO_WINDOWS[back] - else: - back = self._default_back - - assert fore is not None - assert back is not None - - SetConsoleTextAttribute( - self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) - ) - self.write_text(text) - SetConsoleTextAttribute(self._handle, attributes=self._default_text) - - def move_cursor_to(self, new_position: WindowsCoordinates) -> None: - """Set the position of the cursor - - Args: - new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. - """ - if new_position.col < 0 or new_position.row < 0: - return - SetConsoleCursorPosition(self._handle, coords=new_position) - - def erase_line(self) -> None: - """Erase all content on the line the cursor is currently located at""" - screen_size = self.screen_size - cursor_position = self.cursor_position - cells_to_erase = screen_size.col - start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) - FillConsoleOutputCharacter( - self._handle, " ", length=cells_to_erase, start=start_coordinates - ) - FillConsoleOutputAttribute( - self._handle, - self._default_attrs, - length=cells_to_erase, - start=start_coordinates, - ) - - def erase_end_of_line(self) -> None: - """Erase all content from the cursor position to the end of that line""" - cursor_position = self.cursor_position - cells_to_erase = self.screen_size.col - cursor_position.col - FillConsoleOutputCharacter( - self._handle, " ", length=cells_to_erase, start=cursor_position - ) - FillConsoleOutputAttribute( - self._handle, - self._default_attrs, - length=cells_to_erase, - start=cursor_position, - ) - - def erase_start_of_line(self) -> None: - """Erase all content from the cursor position to the start of that line""" - row, col = self.cursor_position - start = WindowsCoordinates(row, 0) - FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) - FillConsoleOutputAttribute( - self._handle, self._default_attrs, length=col, start=start - ) - - def move_cursor_up(self) -> None: - """Move the cursor up a single cell""" - cursor_position = self.cursor_position - SetConsoleCursorPosition( - self._handle, - coords=WindowsCoordinates( - row=cursor_position.row - 1, col=cursor_position.col - ), - ) - - def move_cursor_down(self) -> None: - """Move the cursor down a single cell""" - cursor_position = self.cursor_position - SetConsoleCursorPosition( - self._handle, - coords=WindowsCoordinates( - row=cursor_position.row + 1, - col=cursor_position.col, - ), - ) - - def move_cursor_forward(self) -> None: - """Move the cursor forward a single cell. Wrap to the next line if required.""" - row, col = self.cursor_position - if col == self.screen_size.col - 1: - row += 1 - col = 0 - else: - col += 1 - SetConsoleCursorPosition( - self._handle, coords=WindowsCoordinates(row=row, col=col) - ) - - def move_cursor_to_column(self, column: int) -> None: - """Move cursor to the column specified by the zero-based column index, staying on the same row - - Args: - column (int): The zero-based column index to move the cursor to. - """ - row, _ = self.cursor_position - SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) - - def move_cursor_backward(self) -> None: - """Move the cursor backward a single cell. Wrap to the previous line if required.""" - row, col = self.cursor_position - if col == 0: - row -= 1 - col = self.screen_size.col - 1 - else: - col -= 1 - SetConsoleCursorPosition( - self._handle, coords=WindowsCoordinates(row=row, col=col) - ) - - def hide_cursor(self) -> None: - """Hide the cursor""" - current_cursor_size = self._get_cursor_size() - invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) - SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) - - def show_cursor(self) -> None: - """Show the cursor""" - current_cursor_size = self._get_cursor_size() - visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) - SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) - - def set_title(self, title: str) -> None: - """Set the title of the terminal window - - Args: - title (str): The new title of the console window - """ - assert len(title) < 255, "Console title must be less than 255 characters" - SetConsoleTitle(title) - - def _get_cursor_size(self) -> int: - """Get the percentage of the character cell that is filled by the cursor""" - cursor_info = CONSOLE_CURSOR_INFO() - GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) - return int(cursor_info.dwSize) - - -if __name__ == "__main__": - handle = GetStdHandle() - - from pip._vendor.rich.console import Console - - console = Console() - - term = LegacyWindowsTerm(sys.stdout) - term.set_title("Win32 Console Examples") - - style = Style(color="black", bgcolor="red") - - heading = Style.parse("black on green") - - # Check colour output - console.rule("Checking colour output") - console.print("[on red]on red!") - console.print("[blue]blue!") - console.print("[yellow]yellow!") - console.print("[bold yellow]bold yellow!") - console.print("[bright_yellow]bright_yellow!") - console.print("[dim bright_yellow]dim bright_yellow!") - console.print("[italic cyan]italic cyan!") - console.print("[bold white on blue]bold white on blue!") - console.print("[reverse bold white on blue]reverse bold white on blue!") - console.print("[bold black on cyan]bold black on cyan!") - console.print("[black on green]black on green!") - console.print("[blue on green]blue on green!") - console.print("[white on black]white on black!") - console.print("[black on white]black on white!") - console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") - - # Check cursor movement - console.rule("Checking cursor movement") - console.print() - term.move_cursor_backward() - term.move_cursor_backward() - term.write_text("went back and wrapped to prev line") - time.sleep(1) - term.move_cursor_up() - term.write_text("we go up") - time.sleep(1) - term.move_cursor_down() - term.write_text("and down") - time.sleep(1) - term.move_cursor_up() - term.move_cursor_backward() - term.move_cursor_backward() - term.write_text("we went up and back 2") - time.sleep(1) - term.move_cursor_down() - term.move_cursor_backward() - term.move_cursor_backward() - term.write_text("we went down and back 2") - time.sleep(1) - - # Check erasing of lines - term.hide_cursor() - console.print() - console.rule("Checking line erasing") - console.print("\n...Deleting to the start of the line...") - term.write_text("The red arrow shows the cursor location, and direction of erase") - time.sleep(1) - term.move_cursor_to_column(16) - term.write_styled("<", Style.parse("black on red")) - term.move_cursor_backward() - time.sleep(1) - term.erase_start_of_line() - time.sleep(1) - - console.print("\n\n...And to the end of the line...") - term.write_text("The red arrow shows the cursor location, and direction of erase") - time.sleep(1) - - term.move_cursor_to_column(16) - term.write_styled(">", Style.parse("black on red")) - time.sleep(1) - term.erase_end_of_line() - time.sleep(1) - - console.print("\n\n...Now the whole line will be erased...") - term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) - time.sleep(1) - term.erase_line() - - term.show_cursor() - print("\n") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py deleted file mode 100644 index 10fc0d7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py +++ /dev/null @@ -1,72 +0,0 @@ -import sys -from dataclasses import dataclass - - -@dataclass -class WindowsConsoleFeatures: - """Windows features available.""" - - vt: bool = False - """The console supports VT codes.""" - truecolor: bool = False - """The console supports truecolor.""" - - -try: - import ctypes - from ctypes import LibraryLoader - - if sys.platform == "win32": - windll = LibraryLoader(ctypes.WinDLL) - else: - windll = None - raise ImportError("Not windows") - - from pip._vendor.rich._win32_console import ( - ENABLE_VIRTUAL_TERMINAL_PROCESSING, - GetConsoleMode, - GetStdHandle, - LegacyWindowsError, - ) - -except (AttributeError, ImportError, ValueError): - - # Fallback if we can't load the Windows DLL - def get_windows_console_features() -> WindowsConsoleFeatures: - features = WindowsConsoleFeatures() - return features - -else: - - def get_windows_console_features() -> WindowsConsoleFeatures: - """Get windows console features. - - Returns: - WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. - """ - handle = GetStdHandle() - try: - console_mode = GetConsoleMode(handle) - success = True - except LegacyWindowsError: - console_mode = 0 - success = False - vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) - truecolor = False - if vt: - win_version = sys.getwindowsversion() - truecolor = win_version.major > 10 or ( - win_version.major == 10 and win_version.build >= 15063 - ) - features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) - return features - - -if __name__ == "__main__": - import platform - - features = get_windows_console_features() - from pip._vendor.rich import print - - print(f'platform="{platform.system()}"') - print(repr(features)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py deleted file mode 100644 index 5ece056..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py +++ /dev/null @@ -1,56 +0,0 @@ -from typing import Iterable, Sequence, Tuple, cast - -from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates -from pip._vendor.rich.segment import ControlCode, ControlType, Segment - - -def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: - """Makes appropriate Windows Console API calls based on the segments in the buffer. - - Args: - buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. - term (LegacyWindowsTerm): Used to call the Windows Console API. - """ - for text, style, control in buffer: - if not control: - if style: - term.write_styled(text, style) - else: - term.write_text(text) - else: - control_codes: Sequence[ControlCode] = control - for control_code in control_codes: - control_type = control_code[0] - if control_type == ControlType.CURSOR_MOVE_TO: - _, x, y = cast(Tuple[ControlType, int, int], control_code) - term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) - elif control_type == ControlType.CARRIAGE_RETURN: - term.write_text("\r") - elif control_type == ControlType.HOME: - term.move_cursor_to(WindowsCoordinates(0, 0)) - elif control_type == ControlType.CURSOR_UP: - term.move_cursor_up() - elif control_type == ControlType.CURSOR_DOWN: - term.move_cursor_down() - elif control_type == ControlType.CURSOR_FORWARD: - term.move_cursor_forward() - elif control_type == ControlType.CURSOR_BACKWARD: - term.move_cursor_backward() - elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: - _, column = cast(Tuple[ControlType, int], control_code) - term.move_cursor_to_column(column - 1) - elif control_type == ControlType.HIDE_CURSOR: - term.hide_cursor() - elif control_type == ControlType.SHOW_CURSOR: - term.show_cursor() - elif control_type == ControlType.ERASE_IN_LINE: - _, mode = cast(Tuple[ControlType, int], control_code) - if mode == 0: - term.erase_end_of_line() - elif mode == 1: - term.erase_start_of_line() - elif mode == 2: - term.erase_line() - elif control_type == ControlType.SET_WINDOW_TITLE: - _, title = cast(Tuple[ControlType, str], control_code) - term.set_title(title) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py deleted file mode 100644 index c45f193..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py +++ /dev/null @@ -1,56 +0,0 @@ -import re -from typing import Iterable, List, Tuple - -from ._loop import loop_last -from .cells import cell_len, chop_cells - -re_word = re.compile(r"\s*\S+\s*") - - -def words(text: str) -> Iterable[Tuple[int, int, str]]: - position = 0 - word_match = re_word.match(text, position) - while word_match is not None: - start, end = word_match.span() - word = word_match.group(0) - yield start, end, word - word_match = re_word.match(text, end) - - -def divide_line(text: str, width: int, fold: bool = True) -> List[int]: - divides: List[int] = [] - append = divides.append - line_position = 0 - _cell_len = cell_len - for start, _end, word in words(text): - word_length = _cell_len(word.rstrip()) - if line_position + word_length > width: - if word_length > width: - if fold: - chopped_words = chop_cells(word, max_size=width, position=0) - for last, line in loop_last(chopped_words): - if start: - append(start) - - if last: - line_position = _cell_len(line) - else: - start += len(line) - else: - if start: - append(start) - line_position = _cell_len(word) - elif line_position and start: - append(start) - line_position = _cell_len(word) - else: - line_position += _cell_len(word) - return divides - - -if __name__ == "__main__": # pragma: no cover - from .console import Console - - console = Console(width=10) - console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") - print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10, position=2)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py deleted file mode 100644 index e6e498e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py +++ /dev/null @@ -1,33 +0,0 @@ -from abc import ABC - - -class RichRenderable(ABC): - """An abstract base class for Rich renderables. - - Note that there is no need to extend this class, the intended use is to check if an - object supports the Rich renderable protocol. For example:: - - if isinstance(my_object, RichRenderable): - console.print(my_object) - - """ - - @classmethod - def __subclasshook__(cls, other: type) -> bool: - """Check if this class supports the rich render protocol.""" - return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") - - -if __name__ == "__main__": # pragma: no cover - from pip._vendor.rich.text import Text - - t = Text() - print(isinstance(Text, RichRenderable)) - print(isinstance(t, RichRenderable)) - - class Foo: - pass - - f = Foo() - print(isinstance(f, RichRenderable)) - print(isinstance("", RichRenderable)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py deleted file mode 100644 index c310b66..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py +++ /dev/null @@ -1,311 +0,0 @@ -import sys -from itertools import chain -from typing import TYPE_CHECKING, Iterable, Optional - -if sys.version_info >= (3, 8): - from typing import Literal -else: - from pip._vendor.typing_extensions import Literal # pragma: no cover - -from .constrain import Constrain -from .jupyter import JupyterMixin -from .measure import Measurement -from .segment import Segment -from .style import StyleType - -if TYPE_CHECKING: - from .console import Console, ConsoleOptions, RenderableType, RenderResult - -AlignMethod = Literal["left", "center", "right"] -VerticalAlignMethod = Literal["top", "middle", "bottom"] - - -class Align(JupyterMixin): - """Align a renderable by adding spaces if necessary. - - Args: - renderable (RenderableType): A console renderable. - align (AlignMethod): One of "left", "center", or "right"" - style (StyleType, optional): An optional style to apply to the background. - vertical (Optional[VerticalAlginMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. - pad (bool, optional): Pad the right with spaces. Defaults to True. - width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. - height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. - - Raises: - ValueError: if ``align`` is not one of the expected values. - """ - - def __init__( - self, - renderable: "RenderableType", - align: AlignMethod = "left", - style: Optional[StyleType] = None, - *, - vertical: Optional[VerticalAlignMethod] = None, - pad: bool = True, - width: Optional[int] = None, - height: Optional[int] = None, - ) -> None: - if align not in ("left", "center", "right"): - raise ValueError( - f'invalid value for align, expected "left", "center", or "right" (not {align!r})' - ) - if vertical is not None and vertical not in ("top", "middle", "bottom"): - raise ValueError( - f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' - ) - self.renderable = renderable - self.align = align - self.style = style - self.vertical = vertical - self.pad = pad - self.width = width - self.height = height - - def __repr__(self) -> str: - return f"Align({self.renderable!r}, {self.align!r})" - - @classmethod - def left( - cls, - renderable: "RenderableType", - style: Optional[StyleType] = None, - *, - vertical: Optional[VerticalAlignMethod] = None, - pad: bool = True, - width: Optional[int] = None, - height: Optional[int] = None, - ) -> "Align": - """Align a renderable to the left.""" - return cls( - renderable, - "left", - style=style, - vertical=vertical, - pad=pad, - width=width, - height=height, - ) - - @classmethod - def center( - cls, - renderable: "RenderableType", - style: Optional[StyleType] = None, - *, - vertical: Optional[VerticalAlignMethod] = None, - pad: bool = True, - width: Optional[int] = None, - height: Optional[int] = None, - ) -> "Align": - """Align a renderable to the center.""" - return cls( - renderable, - "center", - style=style, - vertical=vertical, - pad=pad, - width=width, - height=height, - ) - - @classmethod - def right( - cls, - renderable: "RenderableType", - style: Optional[StyleType] = None, - *, - vertical: Optional[VerticalAlignMethod] = None, - pad: bool = True, - width: Optional[int] = None, - height: Optional[int] = None, - ) -> "Align": - """Align a renderable to the right.""" - return cls( - renderable, - "right", - style=style, - vertical=vertical, - pad=pad, - width=width, - height=height, - ) - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - align = self.align - width = console.measure(self.renderable, options=options).maximum - rendered = console.render( - Constrain( - self.renderable, width if self.width is None else min(width, self.width) - ), - options.update(height=None), - ) - lines = list(Segment.split_lines(rendered)) - width, height = Segment.get_shape(lines) - lines = Segment.set_shape(lines, width, height) - new_line = Segment.line() - excess_space = options.max_width - width - style = console.get_style(self.style) if self.style is not None else None - - def generate_segments() -> Iterable[Segment]: - if excess_space <= 0: - # Exact fit - for line in lines: - yield from line - yield new_line - - elif align == "left": - # Pad on the right - pad = Segment(" " * excess_space, style) if self.pad else None - for line in lines: - yield from line - if pad: - yield pad - yield new_line - - elif align == "center": - # Pad left and right - left = excess_space // 2 - pad = Segment(" " * left, style) - pad_right = ( - Segment(" " * (excess_space - left), style) if self.pad else None - ) - for line in lines: - if left: - yield pad - yield from line - if pad_right: - yield pad_right - yield new_line - - elif align == "right": - # Padding on left - pad = Segment(" " * excess_space, style) - for line in lines: - yield pad - yield from line - yield new_line - - blank_line = ( - Segment(f"{' ' * (self.width or options.max_width)}\n", style) - if self.pad - else Segment("\n") - ) - - def blank_lines(count: int) -> Iterable[Segment]: - if count > 0: - for _ in range(count): - yield blank_line - - vertical_height = self.height or options.height - iter_segments: Iterable[Segment] - if self.vertical and vertical_height is not None: - if self.vertical == "top": - bottom_space = vertical_height - height - iter_segments = chain(generate_segments(), blank_lines(bottom_space)) - elif self.vertical == "middle": - top_space = (vertical_height - height) // 2 - bottom_space = vertical_height - top_space - height - iter_segments = chain( - blank_lines(top_space), - generate_segments(), - blank_lines(bottom_space), - ) - else: # self.vertical == "bottom": - top_space = vertical_height - height - iter_segments = chain(blank_lines(top_space), generate_segments()) - else: - iter_segments = generate_segments() - if self.style: - style = console.get_style(self.style) - iter_segments = Segment.apply_style(iter_segments, style) - yield from iter_segments - - def __rich_measure__( - self, console: "Console", options: "ConsoleOptions" - ) -> Measurement: - measurement = Measurement.get(console, options, self.renderable) - return measurement - - -class VerticalCenter(JupyterMixin): - """Vertically aligns a renderable. - - Warn: - This class is deprecated and may be removed in a future version. Use Align class with - `vertical="middle"`. - - Args: - renderable (RenderableType): A renderable object. - """ - - def __init__( - self, - renderable: "RenderableType", - style: Optional[StyleType] = None, - ) -> None: - self.renderable = renderable - self.style = style - - def __repr__(self) -> str: - return f"VerticalCenter({self.renderable!r})" - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - style = console.get_style(self.style) if self.style is not None else None - lines = console.render_lines( - self.renderable, options.update(height=None), pad=False - ) - width, _height = Segment.get_shape(lines) - new_line = Segment.line() - height = options.height or options.size.height - top_space = (height - len(lines)) // 2 - bottom_space = height - top_space - len(lines) - blank_line = Segment(f"{' ' * width}", style) - - def blank_lines(count: int) -> Iterable[Segment]: - for _ in range(count): - yield blank_line - yield new_line - - if top_space > 0: - yield from blank_lines(top_space) - for line in lines: - yield from line - yield new_line - if bottom_space > 0: - yield from blank_lines(bottom_space) - - def __rich_measure__( - self, console: "Console", options: "ConsoleOptions" - ) -> Measurement: - measurement = Measurement.get(console, options, self.renderable) - return measurement - - -if __name__ == "__main__": # pragma: no cover - from pip._vendor.rich.console import Console, Group - from pip._vendor.rich.highlighter import ReprHighlighter - from pip._vendor.rich.panel import Panel - - highlighter = ReprHighlighter() - console = Console() - - panel = Panel( - Group( - Align.left(highlighter("align='left'")), - Align.center(highlighter("align='center'")), - Align.right(highlighter("align='right'")), - ), - width=60, - style="on dark_blue", - title="Align", - ) - - console.print( - Align.center(panel, vertical="middle", style="on red", height=console.height) - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py deleted file mode 100644 index 66365e6..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py +++ /dev/null @@ -1,240 +0,0 @@ -import re -import sys -from contextlib import suppress -from typing import Iterable, NamedTuple, Optional - -from .color import Color -from .style import Style -from .text import Text - -re_ansi = re.compile( - r""" -(?:\x1b\](.*?)\x1b\\)| -(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) -""", - re.VERBOSE, -) - - -class _AnsiToken(NamedTuple): - """Result of ansi tokenized string.""" - - plain: str = "" - sgr: Optional[str] = "" - osc: Optional[str] = "" - - -def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: - """Tokenize a string in to plain text and ANSI codes. - - Args: - ansi_text (str): A String containing ANSI codes. - - Yields: - AnsiToken: A named tuple of (plain, sgr, osc) - """ - - position = 0 - sgr: Optional[str] - osc: Optional[str] - for match in re_ansi.finditer(ansi_text): - start, end = match.span(0) - osc, sgr = match.groups() - if start > position: - yield _AnsiToken(ansi_text[position:start]) - if sgr: - if sgr == "(": - position = end + 1 - continue - if sgr.endswith("m"): - yield _AnsiToken("", sgr[1:-1], osc) - else: - yield _AnsiToken("", sgr, osc) - position = end - if position < len(ansi_text): - yield _AnsiToken(ansi_text[position:]) - - -SGR_STYLE_MAP = { - 1: "bold", - 2: "dim", - 3: "italic", - 4: "underline", - 5: "blink", - 6: "blink2", - 7: "reverse", - 8: "conceal", - 9: "strike", - 21: "underline2", - 22: "not dim not bold", - 23: "not italic", - 24: "not underline", - 25: "not blink", - 26: "not blink2", - 27: "not reverse", - 28: "not conceal", - 29: "not strike", - 30: "color(0)", - 31: "color(1)", - 32: "color(2)", - 33: "color(3)", - 34: "color(4)", - 35: "color(5)", - 36: "color(6)", - 37: "color(7)", - 39: "default", - 40: "on color(0)", - 41: "on color(1)", - 42: "on color(2)", - 43: "on color(3)", - 44: "on color(4)", - 45: "on color(5)", - 46: "on color(6)", - 47: "on color(7)", - 49: "on default", - 51: "frame", - 52: "encircle", - 53: "overline", - 54: "not frame not encircle", - 55: "not overline", - 90: "color(8)", - 91: "color(9)", - 92: "color(10)", - 93: "color(11)", - 94: "color(12)", - 95: "color(13)", - 96: "color(14)", - 97: "color(15)", - 100: "on color(8)", - 101: "on color(9)", - 102: "on color(10)", - 103: "on color(11)", - 104: "on color(12)", - 105: "on color(13)", - 106: "on color(14)", - 107: "on color(15)", -} - - -class AnsiDecoder: - """Translate ANSI code in to styled Text.""" - - def __init__(self) -> None: - self.style = Style.null() - - def decode(self, terminal_text: str) -> Iterable[Text]: - """Decode ANSI codes in an iterable of lines. - - Args: - lines (Iterable[str]): An iterable of lines of terminal output. - - Yields: - Text: Marked up Text. - """ - for line in terminal_text.splitlines(): - yield self.decode_line(line) - - def decode_line(self, line: str) -> Text: - """Decode a line containing ansi codes. - - Args: - line (str): A line of terminal output. - - Returns: - Text: A Text instance marked up according to ansi codes. - """ - from_ansi = Color.from_ansi - from_rgb = Color.from_rgb - _Style = Style - text = Text() - append = text.append - line = line.rsplit("\r", 1)[-1] - for plain_text, sgr, osc in _ansi_tokenize(line): - if plain_text: - append(plain_text, self.style or None) - elif osc is not None: - if osc.startswith("8;"): - _params, semicolon, link = osc[2:].partition(";") - if semicolon: - self.style = self.style.update_link(link or None) - elif sgr is not None: - # Translate in to semi-colon separated codes - # Ignore invalid codes, because we want to be lenient - codes = [ - min(255, int(_code) if _code else 0) - for _code in sgr.split(";") - if _code.isdigit() or _code == "" - ] - iter_codes = iter(codes) - for code in iter_codes: - if code == 0: - # reset - self.style = _Style.null() - elif code in SGR_STYLE_MAP: - # styles - self.style += _Style.parse(SGR_STYLE_MAP[code]) - elif code == 38: - #  Foreground - with suppress(StopIteration): - color_type = next(iter_codes) - if color_type == 5: - self.style += _Style.from_color( - from_ansi(next(iter_codes)) - ) - elif color_type == 2: - self.style += _Style.from_color( - from_rgb( - next(iter_codes), - next(iter_codes), - next(iter_codes), - ) - ) - elif code == 48: - # Background - with suppress(StopIteration): - color_type = next(iter_codes) - if color_type == 5: - self.style += _Style.from_color( - None, from_ansi(next(iter_codes)) - ) - elif color_type == 2: - self.style += _Style.from_color( - None, - from_rgb( - next(iter_codes), - next(iter_codes), - next(iter_codes), - ), - ) - - return text - - -if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover - import io - import os - import pty - import sys - - decoder = AnsiDecoder() - - stdout = io.BytesIO() - - def read(fd: int) -> bytes: - data = os.read(fd, 1024) - stdout.write(data) - return data - - pty.spawn(sys.argv[1:], read) - - from .console import Console - - console = Console(record=True) - - stdout_result = stdout.getvalue().decode("utf-8") - print(stdout_result) - - for line in decoder.decode(stdout_result): - console.print(line) - - console.save_html("stdout.html") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py deleted file mode 100644 index ed86a55..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py +++ /dev/null @@ -1,94 +0,0 @@ -from typing import Optional, Union - -from .color import Color -from .console import Console, ConsoleOptions, RenderResult -from .jupyter import JupyterMixin -from .measure import Measurement -from .segment import Segment -from .style import Style - -# There are left-aligned characters for 1/8 to 7/8, but -# the right-aligned characters exist only for 1/8 and 4/8. -BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] -END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] -FULL_BLOCK = "█" - - -class Bar(JupyterMixin): - """Renders a solid block bar. - - Args: - size (float): Value for the end of the bar. - begin (float): Begin point (between 0 and size, inclusive). - end (float): End point (between 0 and size, inclusive). - width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. - color (Union[Color, str], optional): Color of the bar. Defaults to "default". - bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". - """ - - def __init__( - self, - size: float, - begin: float, - end: float, - *, - width: Optional[int] = None, - color: Union[Color, str] = "default", - bgcolor: Union[Color, str] = "default", - ): - self.size = size - self.begin = max(begin, 0) - self.end = min(end, size) - self.width = width - self.style = Style(color=color, bgcolor=bgcolor) - - def __repr__(self) -> str: - return f"Bar({self.size}, {self.begin}, {self.end})" - - def __rich_console__( - self, console: Console, options: ConsoleOptions - ) -> RenderResult: - - width = min( - self.width if self.width is not None else options.max_width, - options.max_width, - ) - - if self.begin >= self.end: - yield Segment(" " * width, self.style) - yield Segment.line() - return - - prefix_complete_eights = int(width * 8 * self.begin / self.size) - prefix_bar_count = prefix_complete_eights // 8 - prefix_eights_count = prefix_complete_eights % 8 - - body_complete_eights = int(width * 8 * self.end / self.size) - body_bar_count = body_complete_eights // 8 - body_eights_count = body_complete_eights % 8 - - # When start and end fall into the same cell, we ideally should render - # a symbol that's "center-aligned", but there is no good symbol in Unicode. - # In this case, we fall back to right-aligned block symbol for simplicity. - - prefix = " " * prefix_bar_count - if prefix_eights_count: - prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] - - body = FULL_BLOCK * body_bar_count - if body_eights_count: - body += END_BLOCK_ELEMENTS[body_eights_count] - - suffix = " " * (width - len(body)) - - yield Segment(prefix + body[len(prefix) :] + suffix, self.style) - yield Segment.line() - - def __rich_measure__( - self, console: Console, options: ConsoleOptions - ) -> Measurement: - return ( - Measurement(self.width, self.width) - if self.width is not None - else Measurement(4, options.max_width) - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py deleted file mode 100644 index 97d2a94..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py +++ /dev/null @@ -1,517 +0,0 @@ -import sys -from typing import TYPE_CHECKING, Iterable, List - -if sys.version_info >= (3, 8): - from typing import Literal -else: - from pip._vendor.typing_extensions import Literal # pragma: no cover - - -from ._loop import loop_last - -if TYPE_CHECKING: - from pip._vendor.rich.console import ConsoleOptions - - -class Box: - """Defines characters to render boxes. - - ┌─┬┐ top - │ ││ head - ├─┼┤ head_row - │ ││ mid - ├─┼┤ row - ├─┼┤ foot_row - │ ││ foot - └─┴┘ bottom - - Args: - box (str): Characters making up box. - ascii (bool, optional): True if this box uses ascii characters only. Default is False. - """ - - def __init__(self, box: str, *, ascii: bool = False) -> None: - self._box = box - self.ascii = ascii - line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() - # top - self.top_left, self.top, self.top_divider, self.top_right = iter(line1) - # head - self.head_left, _, self.head_vertical, self.head_right = iter(line2) - # head_row - ( - self.head_row_left, - self.head_row_horizontal, - self.head_row_cross, - self.head_row_right, - ) = iter(line3) - - # mid - self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) - # row - self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) - # foot_row - ( - self.foot_row_left, - self.foot_row_horizontal, - self.foot_row_cross, - self.foot_row_right, - ) = iter(line6) - # foot - self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) - # bottom - self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( - line8 - ) - - def __repr__(self) -> str: - return "Box(...)" - - def __str__(self) -> str: - return self._box - - def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": - """Substitute this box for another if it won't render due to platform issues. - - Args: - options (ConsoleOptions): Console options used in rendering. - safe (bool, optional): Substitute this for another Box if there are known problems - displaying on the platform (currently only relevant on Windows). Default is True. - - Returns: - Box: A different Box or the same Box. - """ - box = self - if options.legacy_windows and safe: - box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) - if options.ascii_only and not box.ascii: - box = ASCII - return box - - def get_plain_headed_box(self) -> "Box": - """If this box uses special characters for the borders of the header, then - return the equivalent box that does not. - - Returns: - Box: The most similar Box that doesn't use header-specific box characters. - If the current Box already satisfies this criterion, then it's returned. - """ - return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) - - def get_top(self, widths: Iterable[int]) -> str: - """Get the top of a simple box. - - Args: - widths (List[int]): Widths of columns. - - Returns: - str: A string of box characters. - """ - - parts: List[str] = [] - append = parts.append - append(self.top_left) - for last, width in loop_last(widths): - append(self.top * width) - if not last: - append(self.top_divider) - append(self.top_right) - return "".join(parts) - - def get_row( - self, - widths: Iterable[int], - level: Literal["head", "row", "foot", "mid"] = "row", - edge: bool = True, - ) -> str: - """Get the top of a simple box. - - Args: - width (List[int]): Widths of columns. - - Returns: - str: A string of box characters. - """ - if level == "head": - left = self.head_row_left - horizontal = self.head_row_horizontal - cross = self.head_row_cross - right = self.head_row_right - elif level == "row": - left = self.row_left - horizontal = self.row_horizontal - cross = self.row_cross - right = self.row_right - elif level == "mid": - left = self.mid_left - horizontal = " " - cross = self.mid_vertical - right = self.mid_right - elif level == "foot": - left = self.foot_row_left - horizontal = self.foot_row_horizontal - cross = self.foot_row_cross - right = self.foot_row_right - else: - raise ValueError("level must be 'head', 'row' or 'foot'") - - parts: List[str] = [] - append = parts.append - if edge: - append(left) - for last, width in loop_last(widths): - append(horizontal * width) - if not last: - append(cross) - if edge: - append(right) - return "".join(parts) - - def get_bottom(self, widths: Iterable[int]) -> str: - """Get the bottom of a simple box. - - Args: - widths (List[int]): Widths of columns. - - Returns: - str: A string of box characters. - """ - - parts: List[str] = [] - append = parts.append - append(self.bottom_left) - for last, width in loop_last(widths): - append(self.bottom * width) - if not last: - append(self.bottom_divider) - append(self.bottom_right) - return "".join(parts) - - -ASCII: Box = Box( - """\ -+--+ -| || -|-+| -| || -|-+| -|-+| -| || -+--+ -""", - ascii=True, -) - -ASCII2: Box = Box( - """\ -+-++ -| || -+-++ -| || -+-++ -+-++ -| || -+-++ -""", - ascii=True, -) - -ASCII_DOUBLE_HEAD: Box = Box( - """\ -+-++ -| || -+=++ -| || -+-++ -+-++ -| || -+-++ -""", - ascii=True, -) - -SQUARE: Box = Box( - """\ -┌─┬┐ -│ ││ -├─┼┤ -│ ││ -├─┼┤ -├─┼┤ -│ ││ -└─┴┘ -""" -) - -SQUARE_DOUBLE_HEAD: Box = Box( - """\ -┌─┬┐ -│ ││ -╞═╪╡ -│ ││ -├─┼┤ -├─┼┤ -│ ││ -└─┴┘ -""" -) - -MINIMAL: Box = Box( - """\ - ╷ - │ -╶─┼╴ - │ -╶─┼╴ -╶─┼╴ - │ - ╵ -""" -) - - -MINIMAL_HEAVY_HEAD: Box = Box( - """\ - ╷ - │ -╺━┿╸ - │ -╶─┼╴ -╶─┼╴ - │ - ╵ -""" -) - -MINIMAL_DOUBLE_HEAD: Box = Box( - """\ - ╷ - │ - ═╪ - │ - ─┼ - ─┼ - │ - ╵ -""" -) - - -SIMPLE: Box = Box( - """\ - - - ── - - - ── - - -""" -) - -SIMPLE_HEAD: Box = Box( - """\ - - - ── - - - - - -""" -) - - -SIMPLE_HEAVY: Box = Box( - """\ - - - ━━ - - - ━━ - - -""" -) - - -HORIZONTALS: Box = Box( - """\ - ── - - ── - - ── - ── - - ── -""" -) - -ROUNDED: Box = Box( - """\ -╭─┬╮ -│ ││ -├─┼┤ -│ ││ -├─┼┤ -├─┼┤ -│ ││ -╰─┴╯ -""" -) - -HEAVY: Box = Box( - """\ -┏━┳┓ -┃ ┃┃ -┣━╋┫ -┃ ┃┃ -┣━╋┫ -┣━╋┫ -┃ ┃┃ -┗━┻┛ -""" -) - -HEAVY_EDGE: Box = Box( - """\ -┏━┯┓ -┃ │┃ -┠─┼┨ -┃ │┃ -┠─┼┨ -┠─┼┨ -┃ │┃ -┗━┷┛ -""" -) - -HEAVY_HEAD: Box = Box( - """\ -┏━┳┓ -┃ ┃┃ -┡━╇┩ -│ ││ -├─┼┤ -├─┼┤ -│ ││ -└─┴┘ -""" -) - -DOUBLE: Box = Box( - """\ -╔═╦╗ -║ ║║ -╠═╬╣ -║ ║║ -╠═╬╣ -╠═╬╣ -║ ║║ -╚═╩╝ -""" -) - -DOUBLE_EDGE: Box = Box( - """\ -╔═╤╗ -║ │║ -╟─┼╢ -║ │║ -╟─┼╢ -╟─┼╢ -║ │║ -╚═╧╝ -""" -) - -MARKDOWN: Box = Box( - """\ - -| || -|-|| -| || -|-|| -|-|| -| || - -""", - ascii=True, -) - -# Map Boxes that don't render with raster fonts on to equivalent that do -LEGACY_WINDOWS_SUBSTITUTIONS = { - ROUNDED: SQUARE, - MINIMAL_HEAVY_HEAD: MINIMAL, - SIMPLE_HEAVY: SIMPLE, - HEAVY: SQUARE, - HEAVY_EDGE: SQUARE, - HEAVY_HEAD: SQUARE, -} - -# Map headed boxes to their headerless equivalents -PLAIN_HEADED_SUBSTITUTIONS = { - HEAVY_HEAD: SQUARE, - SQUARE_DOUBLE_HEAD: SQUARE, - MINIMAL_DOUBLE_HEAD: MINIMAL, - MINIMAL_HEAVY_HEAD: MINIMAL, - ASCII_DOUBLE_HEAD: ASCII2, -} - - -if __name__ == "__main__": # pragma: no cover - - from pip._vendor.rich.columns import Columns - from pip._vendor.rich.panel import Panel - - from . import box as box - from .console import Console - from .table import Table - from .text import Text - - console = Console(record=True) - - BOXES = [ - "ASCII", - "ASCII2", - "ASCII_DOUBLE_HEAD", - "SQUARE", - "SQUARE_DOUBLE_HEAD", - "MINIMAL", - "MINIMAL_HEAVY_HEAD", - "MINIMAL_DOUBLE_HEAD", - "SIMPLE", - "SIMPLE_HEAD", - "SIMPLE_HEAVY", - "HORIZONTALS", - "ROUNDED", - "HEAVY", - "HEAVY_EDGE", - "HEAVY_HEAD", - "DOUBLE", - "DOUBLE_EDGE", - "MARKDOWN", - ] - - console.print(Panel("[bold green]Box Constants", style="green"), justify="center") - console.print() - - columns = Columns(expand=True, padding=2) - for box_name in sorted(BOXES): - table = Table( - show_footer=True, style="dim", border_style="not dim", expand=True - ) - table.add_column("Header 1", "Footer 1") - table.add_column("Header 2", "Footer 2") - table.add_row("Cell", "Cell") - table.add_row("Cell", "Cell") - table.box = getattr(box, box_name) - table.title = Text(f"box.{box_name}", style="magenta") - columns.add_renderable(table) - console.print(columns) - - # console.save_svg("box.svg") diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py deleted file mode 100644 index 9354f9e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py +++ /dev/null @@ -1,154 +0,0 @@ -import re -from functools import lru_cache -from typing import Callable, List - -from ._cell_widths import CELL_WIDTHS - -# Regex to match sequence of the most common character ranges -_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match - - -@lru_cache(4096) -def cached_cell_len(text: str) -> int: - """Get the number of cells required to display text. - - This method always caches, which may use up a lot of memory. It is recommended to use - `cell_len` over this method. - - Args: - text (str): Text to display. - - Returns: - int: Get the number of cells required to display text. - """ - _get_size = get_character_cell_size - total_size = sum(_get_size(character) for character in text) - return total_size - - -def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: - """Get the number of cells required to display text. - - Args: - text (str): Text to display. - - Returns: - int: Get the number of cells required to display text. - """ - if len(text) < 512: - return _cell_len(text) - _get_size = get_character_cell_size - total_size = sum(_get_size(character) for character in text) - return total_size - - -@lru_cache(maxsize=4096) -def get_character_cell_size(character: str) -> int: - """Get the cell size of a character. - - Args: - character (str): A single character. - - Returns: - int: Number of cells (0, 1 or 2) occupied by that character. - """ - return _get_codepoint_cell_size(ord(character)) - - -@lru_cache(maxsize=4096) -def _get_codepoint_cell_size(codepoint: int) -> int: - """Get the cell size of a character. - - Args: - codepoint (int): Codepoint of a character. - - Returns: - int: Number of cells (0, 1 or 2) occupied by that character. - """ - - _table = CELL_WIDTHS - lower_bound = 0 - upper_bound = len(_table) - 1 - index = (lower_bound + upper_bound) // 2 - while True: - start, end, width = _table[index] - if codepoint < start: - upper_bound = index - 1 - elif codepoint > end: - lower_bound = index + 1 - else: - return 0 if width == -1 else width - if upper_bound < lower_bound: - break - index = (lower_bound + upper_bound) // 2 - return 1 - - -def set_cell_size(text: str, total: int) -> str: - """Set the length of a string to fit within given number of cells.""" - - if _is_single_cell_widths(text): - size = len(text) - if size < total: - return text + " " * (total - size) - return text[:total] - - if total <= 0: - return "" - cell_size = cell_len(text) - if cell_size == total: - return text - if cell_size < total: - return text + " " * (total - cell_size) - - start = 0 - end = len(text) - - # Binary search until we find the right size - while True: - pos = (start + end) // 2 - before = text[: pos + 1] - before_len = cell_len(before) - if before_len == total + 1 and cell_len(before[-1]) == 2: - return before[:-1] + " " - if before_len == total: - return before - if before_len > total: - end = pos - else: - start = pos - - -# TODO: This is inefficient -# TODO: This might not work with CWJ type characters -def chop_cells(text: str, max_size: int, position: int = 0) -> List[str]: - """Break text in to equal (cell) length strings, returning the characters in reverse - order""" - _get_character_cell_size = get_character_cell_size - characters = [ - (character, _get_character_cell_size(character)) for character in text - ] - total_size = position - lines: List[List[str]] = [[]] - append = lines[-1].append - - for character, size in reversed(characters): - if total_size + size > max_size: - lines.append([character]) - append = lines[-1].append - total_size = size - else: - total_size += size - append(character) - - return ["".join(line) for line in lines] - - -if __name__ == "__main__": # pragma: no cover - - print(get_character_cell_size("😽")) - for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): - print(line) - for n in range(80, 1, -1): - print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") - print("x" * n) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py deleted file mode 100644 index dfe4559..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py +++ /dev/null @@ -1,622 +0,0 @@ -import platform -import re -from colorsys import rgb_to_hls -from enum import IntEnum -from functools import lru_cache -from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple - -from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE -from .color_triplet import ColorTriplet -from .repr import Result, rich_repr -from .terminal_theme import DEFAULT_TERMINAL_THEME - -if TYPE_CHECKING: # pragma: no cover - from .terminal_theme import TerminalTheme - from .text import Text - - -WINDOWS = platform.system() == "Windows" - - -class ColorSystem(IntEnum): - """One of the 3 color system supported by terminals.""" - - STANDARD = 1 - EIGHT_BIT = 2 - TRUECOLOR = 3 - WINDOWS = 4 - - def __repr__(self) -> str: - return f"ColorSystem.{self.name}" - - def __str__(self) -> str: - return repr(self) - - -class ColorType(IntEnum): - """Type of color stored in Color class.""" - - DEFAULT = 0 - STANDARD = 1 - EIGHT_BIT = 2 - TRUECOLOR = 3 - WINDOWS = 4 - - def __repr__(self) -> str: - return f"ColorType.{self.name}" - - -ANSI_COLOR_NAMES = { - "black": 0, - "red": 1, - "green": 2, - "yellow": 3, - "blue": 4, - "magenta": 5, - "cyan": 6, - "white": 7, - "bright_black": 8, - "bright_red": 9, - "bright_green": 10, - "bright_yellow": 11, - "bright_blue": 12, - "bright_magenta": 13, - "bright_cyan": 14, - "bright_white": 15, - "grey0": 16, - "gray0": 16, - "navy_blue": 17, - "dark_blue": 18, - "blue3": 20, - "blue1": 21, - "dark_green": 22, - "deep_sky_blue4": 25, - "dodger_blue3": 26, - "dodger_blue2": 27, - "green4": 28, - "spring_green4": 29, - "turquoise4": 30, - "deep_sky_blue3": 32, - "dodger_blue1": 33, - "green3": 40, - "spring_green3": 41, - "dark_cyan": 36, - "light_sea_green": 37, - "deep_sky_blue2": 38, - "deep_sky_blue1": 39, - "spring_green2": 47, - "cyan3": 43, - "dark_turquoise": 44, - "turquoise2": 45, - "green1": 46, - "spring_green1": 48, - "medium_spring_green": 49, - "cyan2": 50, - "cyan1": 51, - "dark_red": 88, - "deep_pink4": 125, - "purple4": 55, - "purple3": 56, - "blue_violet": 57, - "orange4": 94, - "grey37": 59, - "gray37": 59, - "medium_purple4": 60, - "slate_blue3": 62, - "royal_blue1": 63, - "chartreuse4": 64, - "dark_sea_green4": 71, - "pale_turquoise4": 66, - "steel_blue": 67, - "steel_blue3": 68, - "cornflower_blue": 69, - "chartreuse3": 76, - "cadet_blue": 73, - "sky_blue3": 74, - "steel_blue1": 81, - "pale_green3": 114, - "sea_green3": 78, - "aquamarine3": 79, - "medium_turquoise": 80, - "chartreuse2": 112, - "sea_green2": 83, - "sea_green1": 85, - "aquamarine1": 122, - "dark_slate_gray2": 87, - "dark_magenta": 91, - "dark_violet": 128, - "purple": 129, - "light_pink4": 95, - "plum4": 96, - "medium_purple3": 98, - "slate_blue1": 99, - "yellow4": 106, - "wheat4": 101, - "grey53": 102, - "gray53": 102, - "light_slate_grey": 103, - "light_slate_gray": 103, - "medium_purple": 104, - "light_slate_blue": 105, - "dark_olive_green3": 149, - "dark_sea_green": 108, - "light_sky_blue3": 110, - "sky_blue2": 111, - "dark_sea_green3": 150, - "dark_slate_gray3": 116, - "sky_blue1": 117, - "chartreuse1": 118, - "light_green": 120, - "pale_green1": 156, - "dark_slate_gray1": 123, - "red3": 160, - "medium_violet_red": 126, - "magenta3": 164, - "dark_orange3": 166, - "indian_red": 167, - "hot_pink3": 168, - "medium_orchid3": 133, - "medium_orchid": 134, - "medium_purple2": 140, - "dark_goldenrod": 136, - "light_salmon3": 173, - "rosy_brown": 138, - "grey63": 139, - "gray63": 139, - "medium_purple1": 141, - "gold3": 178, - "dark_khaki": 143, - "navajo_white3": 144, - "grey69": 145, - "gray69": 145, - "light_steel_blue3": 146, - "light_steel_blue": 147, - "yellow3": 184, - "dark_sea_green2": 157, - "light_cyan3": 152, - "light_sky_blue1": 153, - "green_yellow": 154, - "dark_olive_green2": 155, - "dark_sea_green1": 193, - "pale_turquoise1": 159, - "deep_pink3": 162, - "magenta2": 200, - "hot_pink2": 169, - "orchid": 170, - "medium_orchid1": 207, - "orange3": 172, - "light_pink3": 174, - "pink3": 175, - "plum3": 176, - "violet": 177, - "light_goldenrod3": 179, - "tan": 180, - "misty_rose3": 181, - "thistle3": 182, - "plum2": 183, - "khaki3": 185, - "light_goldenrod2": 222, - "light_yellow3": 187, - "grey84": 188, - "gray84": 188, - "light_steel_blue1": 189, - "yellow2": 190, - "dark_olive_green1": 192, - "honeydew2": 194, - "light_cyan1": 195, - "red1": 196, - "deep_pink2": 197, - "deep_pink1": 199, - "magenta1": 201, - "orange_red1": 202, - "indian_red1": 204, - "hot_pink": 206, - "dark_orange": 208, - "salmon1": 209, - "light_coral": 210, - "pale_violet_red1": 211, - "orchid2": 212, - "orchid1": 213, - "orange1": 214, - "sandy_brown": 215, - "light_salmon1": 216, - "light_pink1": 217, - "pink1": 218, - "plum1": 219, - "gold1": 220, - "navajo_white1": 223, - "misty_rose1": 224, - "thistle1": 225, - "yellow1": 226, - "light_goldenrod1": 227, - "khaki1": 228, - "wheat1": 229, - "cornsilk1": 230, - "grey100": 231, - "gray100": 231, - "grey3": 232, - "gray3": 232, - "grey7": 233, - "gray7": 233, - "grey11": 234, - "gray11": 234, - "grey15": 235, - "gray15": 235, - "grey19": 236, - "gray19": 236, - "grey23": 237, - "gray23": 237, - "grey27": 238, - "gray27": 238, - "grey30": 239, - "gray30": 239, - "grey35": 240, - "gray35": 240, - "grey39": 241, - "gray39": 241, - "grey42": 242, - "gray42": 242, - "grey46": 243, - "gray46": 243, - "grey50": 244, - "gray50": 244, - "grey54": 245, - "gray54": 245, - "grey58": 246, - "gray58": 246, - "grey62": 247, - "gray62": 247, - "grey66": 248, - "gray66": 248, - "grey70": 249, - "gray70": 249, - "grey74": 250, - "gray74": 250, - "grey78": 251, - "gray78": 251, - "grey82": 252, - "gray82": 252, - "grey85": 253, - "gray85": 253, - "grey89": 254, - "gray89": 254, - "grey93": 255, - "gray93": 255, -} - - -class ColorParseError(Exception): - """The color could not be parsed.""" - - -RE_COLOR = re.compile( - r"""^ -\#([0-9a-f]{6})$| -color\(([0-9]{1,3})\)$| -rgb\(([\d\s,]+)\)$ -""", - re.VERBOSE, -) - - -@rich_repr -class Color(NamedTuple): - """Terminal color definition.""" - - name: str - """The name of the color (typically the input to Color.parse).""" - type: ColorType - """The type of the color.""" - number: Optional[int] = None - """The color number, if a standard color, or None.""" - triplet: Optional[ColorTriplet] = None - """A triplet of color components, if an RGB color.""" - - def __rich__(self) -> "Text": - """Displays the actual color if Rich printed.""" - from .style import Style - from .text import Text - - return Text.assemble( - f"", - ) - - def __rich_repr__(self) -> Result: - yield self.name - yield self.type - yield "number", self.number, None - yield "triplet", self.triplet, None - - @property - def system(self) -> ColorSystem: - """Get the native color system for this color.""" - if self.type == ColorType.DEFAULT: - return ColorSystem.STANDARD - return ColorSystem(int(self.type)) - - @property - def is_system_defined(self) -> bool: - """Check if the color is ultimately defined by the system.""" - return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) - - @property - def is_default(self) -> bool: - """Check if the color is a default color.""" - return self.type == ColorType.DEFAULT - - def get_truecolor( - self, theme: Optional["TerminalTheme"] = None, foreground: bool = True - ) -> ColorTriplet: - """Get an equivalent color triplet for this color. - - Args: - theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. - foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. - - Returns: - ColorTriplet: A color triplet containing RGB components. - """ - - if theme is None: - theme = DEFAULT_TERMINAL_THEME - if self.type == ColorType.TRUECOLOR: - assert self.triplet is not None - return self.triplet - elif self.type == ColorType.EIGHT_BIT: - assert self.number is not None - return EIGHT_BIT_PALETTE[self.number] - elif self.type == ColorType.STANDARD: - assert self.number is not None - return theme.ansi_colors[self.number] - elif self.type == ColorType.WINDOWS: - assert self.number is not None - return WINDOWS_PALETTE[self.number] - else: # self.type == ColorType.DEFAULT: - assert self.number is None - return theme.foreground_color if foreground else theme.background_color - - @classmethod - def from_ansi(cls, number: int) -> "Color": - """Create a Color number from it's 8-bit ansi number. - - Args: - number (int): A number between 0-255 inclusive. - - Returns: - Color: A new Color instance. - """ - return cls( - name=f"color({number})", - type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), - number=number, - ) - - @classmethod - def from_triplet(cls, triplet: "ColorTriplet") -> "Color": - """Create a truecolor RGB color from a triplet of values. - - Args: - triplet (ColorTriplet): A color triplet containing red, green and blue components. - - Returns: - Color: A new color object. - """ - return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) - - @classmethod - def from_rgb(cls, red: float, green: float, blue: float) -> "Color": - """Create a truecolor from three color components in the range(0->255). - - Args: - red (float): Red component in range 0-255. - green (float): Green component in range 0-255. - blue (float): Blue component in range 0-255. - - Returns: - Color: A new color object. - """ - return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) - - @classmethod - def default(cls) -> "Color": - """Get a Color instance representing the default color. - - Returns: - Color: Default color. - """ - return cls(name="default", type=ColorType.DEFAULT) - - @classmethod - @lru_cache(maxsize=1024) - def parse(cls, color: str) -> "Color": - """Parse a color definition.""" - original_color = color - color = color.lower().strip() - - if color == "default": - return cls(color, type=ColorType.DEFAULT) - - color_number = ANSI_COLOR_NAMES.get(color) - if color_number is not None: - return cls( - color, - type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), - number=color_number, - ) - - color_match = RE_COLOR.match(color) - if color_match is None: - raise ColorParseError(f"{original_color!r} is not a valid color") - - color_24, color_8, color_rgb = color_match.groups() - if color_24: - triplet = ColorTriplet( - int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) - ) - return cls(color, ColorType.TRUECOLOR, triplet=triplet) - - elif color_8: - number = int(color_8) - if number > 255: - raise ColorParseError(f"color number must be <= 255 in {color!r}") - return cls( - color, - type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), - number=number, - ) - - else: # color_rgb: - components = color_rgb.split(",") - if len(components) != 3: - raise ColorParseError( - f"expected three components in {original_color!r}" - ) - red, green, blue = components - triplet = ColorTriplet(int(red), int(green), int(blue)) - if not all(component <= 255 for component in triplet): - raise ColorParseError( - f"color components must be <= 255 in {original_color!r}" - ) - return cls(color, ColorType.TRUECOLOR, triplet=triplet) - - @lru_cache(maxsize=1024) - def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: - """Get the ANSI escape codes for this color.""" - _type = self.type - if _type == ColorType.DEFAULT: - return ("39" if foreground else "49",) - - elif _type == ColorType.WINDOWS: - number = self.number - assert number is not None - fore, back = (30, 40) if number < 8 else (82, 92) - return (str(fore + number if foreground else back + number),) - - elif _type == ColorType.STANDARD: - number = self.number - assert number is not None - fore, back = (30, 40) if number < 8 else (82, 92) - return (str(fore + number if foreground else back + number),) - - elif _type == ColorType.EIGHT_BIT: - assert self.number is not None - return ("38" if foreground else "48", "5", str(self.number)) - - else: # self.standard == ColorStandard.TRUECOLOR: - assert self.triplet is not None - red, green, blue = self.triplet - return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) - - @lru_cache(maxsize=1024) - def downgrade(self, system: ColorSystem) -> "Color": - """Downgrade a color system to a system with fewer colors.""" - - if self.type in (ColorType.DEFAULT, system): - return self - # Convert to 8-bit color from truecolor color - if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: - assert self.triplet is not None - _h, l, s = rgb_to_hls(*self.triplet.normalized) - # If saturation is under 15% assume it is grayscale - if s < 0.15: - gray = round(l * 25.0) - if gray == 0: - color_number = 16 - elif gray == 25: - color_number = 231 - else: - color_number = 231 + gray - return Color(self.name, ColorType.EIGHT_BIT, number=color_number) - - red, green, blue = self.triplet - six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 - six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 - six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 - - color_number = ( - 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) - ) - return Color(self.name, ColorType.EIGHT_BIT, number=color_number) - - # Convert to standard from truecolor or 8-bit - elif system == ColorSystem.STANDARD: - if self.system == ColorSystem.TRUECOLOR: - assert self.triplet is not None - triplet = self.triplet - else: # self.system == ColorSystem.EIGHT_BIT - assert self.number is not None - triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) - - color_number = STANDARD_PALETTE.match(triplet) - return Color(self.name, ColorType.STANDARD, number=color_number) - - elif system == ColorSystem.WINDOWS: - if self.system == ColorSystem.TRUECOLOR: - assert self.triplet is not None - triplet = self.triplet - else: # self.system == ColorSystem.EIGHT_BIT - assert self.number is not None - if self.number < 16: - return Color(self.name, ColorType.WINDOWS, number=self.number) - triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) - - color_number = WINDOWS_PALETTE.match(triplet) - return Color(self.name, ColorType.WINDOWS, number=color_number) - - return self - - -def parse_rgb_hex(hex_color: str) -> ColorTriplet: - """Parse six hex characters in to RGB triplet.""" - assert len(hex_color) == 6, "must be 6 characters" - color = ColorTriplet( - int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) - ) - return color - - -def blend_rgb( - color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 -) -> ColorTriplet: - """Blend one RGB color in to another.""" - r1, g1, b1 = color1 - r2, g2, b2 = color2 - new_color = ColorTriplet( - int(r1 + (r2 - r1) * cross_fade), - int(g1 + (g2 - g1) * cross_fade), - int(b1 + (b2 - b1) * cross_fade), - ) - return new_color - - -if __name__ == "__main__": # pragma: no cover - - from .console import Console - from .table import Table - from .text import Text - - console = Console() - - table = Table(show_footer=False, show_edge=True) - table.add_column("Color", width=10, overflow="ellipsis") - table.add_column("Number", justify="right", style="yellow") - table.add_column("Name", style="green") - table.add_column("Hex", style="blue") - table.add_column("RGB", style="magenta") - - colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) - for color_number, name in colors: - if "grey" in name: - continue - color_cell = Text(" " * 10, style=f"on {name}") - if color_number < 16: - table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) - else: - color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] - table.add_row( - color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb - ) - - console.print(table) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py deleted file mode 100644 index 02cab32..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py +++ /dev/null @@ -1,38 +0,0 @@ -from typing import NamedTuple, Tuple - - -class ColorTriplet(NamedTuple): - """The red, green, and blue components of a color.""" - - red: int - """Red component in 0 to 255 range.""" - green: int - """Green component in 0 to 255 range.""" - blue: int - """Blue component in 0 to 255 range.""" - - @property - def hex(self) -> str: - """get the color triplet in CSS style.""" - red, green, blue = self - return f"#{red:02x}{green:02x}{blue:02x}" - - @property - def rgb(self) -> str: - """The color in RGB format. - - Returns: - str: An rgb color, e.g. ``"rgb(100,23,255)"``. - """ - red, green, blue = self - return f"rgb({red},{green},{blue})" - - @property - def normalized(self) -> Tuple[float, float, float]: - """Convert components into floats between 0 and 1. - - Returns: - Tuple[float, float, float]: A tuple of three normalized colour components. - """ - red, green, blue = self - return red / 255.0, green / 255.0, blue / 255.0 diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py deleted file mode 100644 index 669a3a7..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py +++ /dev/null @@ -1,187 +0,0 @@ -from collections import defaultdict -from itertools import chain -from operator import itemgetter -from typing import Dict, Iterable, List, Optional, Tuple - -from .align import Align, AlignMethod -from .console import Console, ConsoleOptions, RenderableType, RenderResult -from .constrain import Constrain -from .measure import Measurement -from .padding import Padding, PaddingDimensions -from .table import Table -from .text import TextType -from .jupyter import JupyterMixin - - -class Columns(JupyterMixin): - """Display renderables in neat columns. - - Args: - renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). - width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. - padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). - expand (bool, optional): Expand columns to full width. Defaults to False. - equal (bool, optional): Arrange in to equal sized columns. Defaults to False. - column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. - right_to_left (bool, optional): Start column from right hand side. Defaults to False. - align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. - title (TextType, optional): Optional title for Columns. - """ - - def __init__( - self, - renderables: Optional[Iterable[RenderableType]] = None, - padding: PaddingDimensions = (0, 1), - *, - width: Optional[int] = None, - expand: bool = False, - equal: bool = False, - column_first: bool = False, - right_to_left: bool = False, - align: Optional[AlignMethod] = None, - title: Optional[TextType] = None, - ) -> None: - self.renderables = list(renderables or []) - self.width = width - self.padding = padding - self.expand = expand - self.equal = equal - self.column_first = column_first - self.right_to_left = right_to_left - self.align: Optional[AlignMethod] = align - self.title = title - - def add_renderable(self, renderable: RenderableType) -> None: - """Add a renderable to the columns. - - Args: - renderable (RenderableType): Any renderable object. - """ - self.renderables.append(renderable) - - def __rich_console__( - self, console: Console, options: ConsoleOptions - ) -> RenderResult: - render_str = console.render_str - renderables = [ - render_str(renderable) if isinstance(renderable, str) else renderable - for renderable in self.renderables - ] - if not renderables: - return - _top, right, _bottom, left = Padding.unpack(self.padding) - width_padding = max(left, right) - max_width = options.max_width - widths: Dict[int, int] = defaultdict(int) - column_count = len(renderables) - - get_measurement = Measurement.get - renderable_widths = [ - get_measurement(console, options, renderable).maximum - for renderable in renderables - ] - if self.equal: - renderable_widths = [max(renderable_widths)] * len(renderable_widths) - - def iter_renderables( - column_count: int, - ) -> Iterable[Tuple[int, Optional[RenderableType]]]: - item_count = len(renderables) - if self.column_first: - width_renderables = list(zip(renderable_widths, renderables)) - - column_lengths: List[int] = [item_count // column_count] * column_count - for col_no in range(item_count % column_count): - column_lengths[col_no] += 1 - - row_count = (item_count + column_count - 1) // column_count - cells = [[-1] * column_count for _ in range(row_count)] - row = col = 0 - for index in range(item_count): - cells[row][col] = index - column_lengths[col] -= 1 - if column_lengths[col]: - row += 1 - else: - col += 1 - row = 0 - for index in chain.from_iterable(cells): - if index == -1: - break - yield width_renderables[index] - else: - yield from zip(renderable_widths, renderables) - # Pad odd elements with spaces - if item_count % column_count: - for _ in range(column_count - (item_count % column_count)): - yield 0, None - - table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) - table.expand = self.expand - table.title = self.title - - if self.width is not None: - column_count = (max_width) // (self.width + width_padding) - for _ in range(column_count): - table.add_column(width=self.width) - else: - while column_count > 1: - widths.clear() - column_no = 0 - for renderable_width, _ in iter_renderables(column_count): - widths[column_no] = max(widths[column_no], renderable_width) - total_width = sum(widths.values()) + width_padding * ( - len(widths) - 1 - ) - if total_width > max_width: - column_count = len(widths) - 1 - break - else: - column_no = (column_no + 1) % column_count - else: - break - - get_renderable = itemgetter(1) - _renderables = [ - get_renderable(_renderable) - for _renderable in iter_renderables(column_count) - ] - if self.equal: - _renderables = [ - None - if renderable is None - else Constrain(renderable, renderable_widths[0]) - for renderable in _renderables - ] - if self.align: - align = self.align - _Align = Align - _renderables = [ - None if renderable is None else _Align(renderable, align) - for renderable in _renderables - ] - - right_to_left = self.right_to_left - add_row = table.add_row - for start in range(0, len(_renderables), column_count): - row = _renderables[start : start + column_count] - if right_to_left: - row = row[::-1] - add_row(*row) - yield table - - -if __name__ == "__main__": # pragma: no cover - import os - - console = Console() - - files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] - columns = Columns(files, padding=(0, 1), expand=False, equal=False) - console.print(columns) - console.rule() - columns.column_first = True - console.print(columns) - columns.right_to_left = True - console.rule() - console.print(columns) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py deleted file mode 100644 index e559cbb..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py +++ /dev/null @@ -1,2633 +0,0 @@ -import inspect -import os -import platform -import sys -import threading -import zlib -from abc import ABC, abstractmethod -from dataclasses import dataclass, field -from datetime import datetime -from functools import wraps -from getpass import getpass -from html import escape -from inspect import isclass -from itertools import islice -from math import ceil -from time import monotonic -from types import FrameType, ModuleType, TracebackType -from typing import ( - IO, - TYPE_CHECKING, - Any, - Callable, - Dict, - Iterable, - List, - Mapping, - NamedTuple, - Optional, - TextIO, - Tuple, - Type, - Union, - cast, -) - -from pip._vendor.rich._null_file import NULL_FILE - -if sys.version_info >= (3, 8): - from typing import Literal, Protocol, runtime_checkable -else: - from pip._vendor.typing_extensions import ( - Literal, - Protocol, - runtime_checkable, - ) # pragma: no cover - -from . import errors, themes -from ._emoji_replace import _emoji_replace -from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT -from ._fileno import get_fileno -from ._log_render import FormatTimeCallable, LogRender -from .align import Align, AlignMethod -from .color import ColorSystem, blend_rgb -from .control import Control -from .emoji import EmojiVariant -from .highlighter import NullHighlighter, ReprHighlighter -from .markup import render as render_markup -from .measure import Measurement, measure_renderables -from .pager import Pager, SystemPager -from .pretty import Pretty, is_expandable -from .protocol import rich_cast -from .region import Region -from .scope import render_scope -from .screen import Screen -from .segment import Segment -from .style import Style, StyleType -from .styled import Styled -from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme -from .text import Text, TextType -from .theme import Theme, ThemeStack - -if TYPE_CHECKING: - from ._windows import WindowsConsoleFeatures - from .live import Live - from .status import Status - -JUPYTER_DEFAULT_COLUMNS = 115 -JUPYTER_DEFAULT_LINES = 100 -WINDOWS = platform.system() == "Windows" - -HighlighterType = Callable[[Union[str, "Text"]], "Text"] -JustifyMethod = Literal["default", "left", "center", "right", "full"] -OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] - - -class NoChange: - pass - - -NO_CHANGE = NoChange() - -try: - _STDIN_FILENO = sys.__stdin__.fileno() -except Exception: - _STDIN_FILENO = 0 -try: - _STDOUT_FILENO = sys.__stdout__.fileno() -except Exception: - _STDOUT_FILENO = 1 -try: - _STDERR_FILENO = sys.__stderr__.fileno() -except Exception: - _STDERR_FILENO = 2 - -_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) -_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) - - -_TERM_COLORS = { - "kitty": ColorSystem.EIGHT_BIT, - "256color": ColorSystem.EIGHT_BIT, - "16color": ColorSystem.STANDARD, -} - - -class ConsoleDimensions(NamedTuple): - """Size of the terminal.""" - - width: int - """The width of the console in 'cells'.""" - height: int - """The height of the console in lines.""" - - -@dataclass -class ConsoleOptions: - """Options for __rich_console__ method.""" - - size: ConsoleDimensions - """Size of console.""" - legacy_windows: bool - """legacy_windows: flag for legacy windows.""" - min_width: int - """Minimum width of renderable.""" - max_width: int - """Maximum width of renderable.""" - is_terminal: bool - """True if the target is a terminal, otherwise False.""" - encoding: str - """Encoding of terminal.""" - max_height: int - """Height of container (starts as terminal)""" - justify: Optional[JustifyMethod] = None - """Justify value override for renderable.""" - overflow: Optional[OverflowMethod] = None - """Overflow value override for renderable.""" - no_wrap: Optional[bool] = False - """Disable wrapping for text.""" - highlight: Optional[bool] = None - """Highlight override for render_str.""" - markup: Optional[bool] = None - """Enable markup when rendering strings.""" - height: Optional[int] = None - - @property - def ascii_only(self) -> bool: - """Check if renderables should use ascii only.""" - return not self.encoding.startswith("utf") - - def copy(self) -> "ConsoleOptions": - """Return a copy of the options. - - Returns: - ConsoleOptions: a copy of self. - """ - options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) - options.__dict__ = self.__dict__.copy() - return options - - def update( - self, - *, - width: Union[int, NoChange] = NO_CHANGE, - min_width: Union[int, NoChange] = NO_CHANGE, - max_width: Union[int, NoChange] = NO_CHANGE, - justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, - overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, - no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, - highlight: Union[Optional[bool], NoChange] = NO_CHANGE, - markup: Union[Optional[bool], NoChange] = NO_CHANGE, - height: Union[Optional[int], NoChange] = NO_CHANGE, - ) -> "ConsoleOptions": - """Update values, return a copy.""" - options = self.copy() - if not isinstance(width, NoChange): - options.min_width = options.max_width = max(0, width) - if not isinstance(min_width, NoChange): - options.min_width = min_width - if not isinstance(max_width, NoChange): - options.max_width = max_width - if not isinstance(justify, NoChange): - options.justify = justify - if not isinstance(overflow, NoChange): - options.overflow = overflow - if not isinstance(no_wrap, NoChange): - options.no_wrap = no_wrap - if not isinstance(highlight, NoChange): - options.highlight = highlight - if not isinstance(markup, NoChange): - options.markup = markup - if not isinstance(height, NoChange): - if height is not None: - options.max_height = height - options.height = None if height is None else max(0, height) - return options - - def update_width(self, width: int) -> "ConsoleOptions": - """Update just the width, return a copy. - - Args: - width (int): New width (sets both min_width and max_width) - - Returns: - ~ConsoleOptions: New console options instance. - """ - options = self.copy() - options.min_width = options.max_width = max(0, width) - return options - - def update_height(self, height: int) -> "ConsoleOptions": - """Update the height, and return a copy. - - Args: - height (int): New height - - Returns: - ~ConsoleOptions: New Console options instance. - """ - options = self.copy() - options.max_height = options.height = height - return options - - def reset_height(self) -> "ConsoleOptions": - """Return a copy of the options with height set to ``None``. - - Returns: - ~ConsoleOptions: New console options instance. - """ - options = self.copy() - options.height = None - return options - - def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": - """Update the width and height, and return a copy. - - Args: - width (int): New width (sets both min_width and max_width). - height (int): New height. - - Returns: - ~ConsoleOptions: New console options instance. - """ - options = self.copy() - options.min_width = options.max_width = max(0, width) - options.height = options.max_height = height - return options - - -@runtime_checkable -class RichCast(Protocol): - """An object that may be 'cast' to a console renderable.""" - - def __rich__( - self, - ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover - ... - - -@runtime_checkable -class ConsoleRenderable(Protocol): - """An object that supports the console protocol.""" - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": # pragma: no cover - ... - - -# A type that may be rendered by Console. -RenderableType = Union[ConsoleRenderable, RichCast, str] - -# The result of calling a __rich_console__ method. -RenderResult = Iterable[Union[RenderableType, Segment]] - -_null_highlighter = NullHighlighter() - - -class CaptureError(Exception): - """An error in the Capture context manager.""" - - -class NewLine: - """A renderable to generate new line(s)""" - - def __init__(self, count: int = 1) -> None: - self.count = count - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> Iterable[Segment]: - yield Segment("\n" * self.count) - - -class ScreenUpdate: - """Render a list of lines at a given offset.""" - - def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: - self._lines = lines - self.x = x - self.y = y - - def __rich_console__( - self, console: "Console", options: ConsoleOptions - ) -> RenderResult: - x = self.x - move_to = Control.move_to - for offset, line in enumerate(self._lines, self.y): - yield move_to(x, offset) - yield from line - - -class Capture: - """Context manager to capture the result of printing to the console. - See :meth:`~rich.console.Console.capture` for how to use. - - Args: - console (Console): A console instance to capture output. - """ - - def __init__(self, console: "Console") -> None: - self._console = console - self._result: Optional[str] = None - - def __enter__(self) -> "Capture": - self._console.begin_capture() - return self - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - self._result = self._console.end_capture() - - def get(self) -> str: - """Get the result of the capture.""" - if self._result is None: - raise CaptureError( - "Capture result is not available until context manager exits." - ) - return self._result - - -class ThemeContext: - """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" - - def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: - self.console = console - self.theme = theme - self.inherit = inherit - - def __enter__(self) -> "ThemeContext": - self.console.push_theme(self.theme) - return self - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - self.console.pop_theme() - - -class PagerContext: - """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" - - def __init__( - self, - console: "Console", - pager: Optional[Pager] = None, - styles: bool = False, - links: bool = False, - ) -> None: - self._console = console - self.pager = SystemPager() if pager is None else pager - self.styles = styles - self.links = links - - def __enter__(self) -> "PagerContext": - self._console._enter_buffer() - return self - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - if exc_type is None: - with self._console._lock: - buffer: List[Segment] = self._console._buffer[:] - del self._console._buffer[:] - segments: Iterable[Segment] = buffer - if not self.styles: - segments = Segment.strip_styles(segments) - elif not self.links: - segments = Segment.strip_links(segments) - content = self._console._render_buffer(segments) - self.pager.show(content) - self._console._exit_buffer() - - -class ScreenContext: - """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" - - def __init__( - self, console: "Console", hide_cursor: bool, style: StyleType = "" - ) -> None: - self.console = console - self.hide_cursor = hide_cursor - self.screen = Screen(style=style) - self._changed = False - - def update( - self, *renderables: RenderableType, style: Optional[StyleType] = None - ) -> None: - """Update the screen. - - Args: - renderable (RenderableType, optional): Optional renderable to replace current renderable, - or None for no change. Defaults to None. - style: (Style, optional): Replacement style, or None for no change. Defaults to None. - """ - if renderables: - self.screen.renderable = ( - Group(*renderables) if len(renderables) > 1 else renderables[0] - ) - if style is not None: - self.screen.style = style - self.console.print(self.screen, end="") - - def __enter__(self) -> "ScreenContext": - self._changed = self.console.set_alt_screen(True) - if self._changed and self.hide_cursor: - self.console.show_cursor(False) - return self - - def __exit__( - self, - exc_type: Optional[Type[BaseException]], - exc_val: Optional[BaseException], - exc_tb: Optional[TracebackType], - ) -> None: - if self._changed: - self.console.set_alt_screen(False) - if self.hide_cursor: - self.console.show_cursor(True) - - -class Group: - """Takes a group of renderables and returns a renderable object that renders the group. - - Args: - renderables (Iterable[RenderableType]): An iterable of renderable objects. - fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. - """ - - def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: - self._renderables = renderables - self.fit = fit - self._render: Optional[List[RenderableType]] = None - - @property - def renderables(self) -> List["RenderableType"]: - if self._render is None: - self._render = list(self._renderables) - return self._render - - def __rich_measure__( - self, console: "Console", options: "ConsoleOptions" - ) -> "Measurement": - if self.fit: - return measure_renderables(console, options, self.renderables) - else: - return Measurement(options.max_width, options.max_width) - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> RenderResult: - yield from self.renderables - - -def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: - """A decorator that turns an iterable of renderables in to a group. - - Args: - fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. - """ - - def decorator( - method: Callable[..., Iterable[RenderableType]] - ) -> Callable[..., Group]: - """Convert a method that returns an iterable of renderables in to a Group.""" - - @wraps(method) - def _replace(*args: Any, **kwargs: Any) -> Group: - renderables = method(*args, **kwargs) - return Group(*renderables, fit=fit) - - return _replace - - return decorator - - -def _is_jupyter() -> bool: # pragma: no cover - """Check if we're running in a Jupyter notebook.""" - try: - get_ipython # type: ignore[name-defined] - except NameError: - return False - ipython = get_ipython() # type: ignore[name-defined] - shell = ipython.__class__.__name__ - if ( - "google.colab" in str(ipython.__class__) - or os.getenv("DATABRICKS_RUNTIME_VERSION") - or shell == "ZMQInteractiveShell" - ): - return True # Jupyter notebook or qtconsole - elif shell == "TerminalInteractiveShell": - return False # Terminal running IPython - else: - return False # Other type (?) - - -COLOR_SYSTEMS = { - "standard": ColorSystem.STANDARD, - "256": ColorSystem.EIGHT_BIT, - "truecolor": ColorSystem.TRUECOLOR, - "windows": ColorSystem.WINDOWS, -} - -_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} - - -@dataclass -class ConsoleThreadLocals(threading.local): - """Thread local values for Console context.""" - - theme_stack: ThemeStack - buffer: List[Segment] = field(default_factory=list) - buffer_index: int = 0 - - -class RenderHook(ABC): - """Provides hooks in to the render process.""" - - @abstractmethod - def process_renderables( - self, renderables: List[ConsoleRenderable] - ) -> List[ConsoleRenderable]: - """Called with a list of objects to render. - - This method can return a new list of renderables, or modify and return the same list. - - Args: - renderables (List[ConsoleRenderable]): A number of renderable objects. - - Returns: - List[ConsoleRenderable]: A replacement list of renderables. - """ - - -_windows_console_features: Optional["WindowsConsoleFeatures"] = None - - -def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover - global _windows_console_features - if _windows_console_features is not None: - return _windows_console_features - from ._windows import get_windows_console_features - - _windows_console_features = get_windows_console_features() - return _windows_console_features - - -def detect_legacy_windows() -> bool: - """Detect legacy Windows.""" - return WINDOWS and not get_windows_console_features().vt - - -class Console: - """A high level console interface. - - Args: - color_system (str, optional): The color system supported by your terminal, - either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. - force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. - force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. - force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. - soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. - theme (Theme, optional): An optional style theme object, or ``None`` for default theme. - stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. - file (IO, optional): A file object where the console should write to. Defaults to stdout. - quiet (bool, Optional): Boolean to suppress all output. Defaults to False. - width (int, optional): The width of the terminal. Leave as default to auto-detect width. - height (int, optional): The height of the terminal. Leave as default to auto-detect height. - style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. - no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. - tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. - record (bool, optional): Boolean to enable recording of terminal output, - required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. - markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. - emoji (bool, optional): Enable emoji code. Defaults to True. - emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. - highlight (bool, optional): Enable automatic highlighting. Defaults to True. - log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. - log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. - log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". - highlighter (HighlighterType, optional): Default highlighter. - legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. - safe_box (bool, optional): Restrict box options that don't render on legacy Windows. - get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), - or None for datetime.now. - get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. - """ - - _environ: Mapping[str, str] = os.environ - - def __init__( - self, - *, - color_system: Optional[ - Literal["auto", "standard", "256", "truecolor", "windows"] - ] = "auto", - force_terminal: Optional[bool] = None, - force_jupyter: Optional[bool] = None, - force_interactive: Optional[bool] = None, - soft_wrap: bool = False, - theme: Optional[Theme] = None, - stderr: bool = False, - file: Optional[IO[str]] = None, - quiet: bool = False, - width: Optional[int] = None, - height: Optional[int] = None, - style: Optional[StyleType] = None, - no_color: Optional[bool] = None, - tab_size: int = 8, - record: bool = False, - markup: bool = True, - emoji: bool = True, - emoji_variant: Optional[EmojiVariant] = None, - highlight: bool = True, - log_time: bool = True, - log_path: bool = True, - log_time_format: Union[str, FormatTimeCallable] = "[%X]", - highlighter: Optional["HighlighterType"] = ReprHighlighter(), - legacy_windows: Optional[bool] = None, - safe_box: bool = True, - get_datetime: Optional[Callable[[], datetime]] = None, - get_time: Optional[Callable[[], float]] = None, - _environ: Optional[Mapping[str, str]] = None, - ): - # Copy of os.environ allows us to replace it for testing - if _environ is not None: - self._environ = _environ - - self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter - if self.is_jupyter: - if width is None: - jupyter_columns = self._environ.get("JUPYTER_COLUMNS") - if jupyter_columns is not None and jupyter_columns.isdigit(): - width = int(jupyter_columns) - else: - width = JUPYTER_DEFAULT_COLUMNS - if height is None: - jupyter_lines = self._environ.get("JUPYTER_LINES") - if jupyter_lines is not None and jupyter_lines.isdigit(): - height = int(jupyter_lines) - else: - height = JUPYTER_DEFAULT_LINES - - self.tab_size = tab_size - self.record = record - self._markup = markup - self._emoji = emoji - self._emoji_variant: Optional[EmojiVariant] = emoji_variant - self._highlight = highlight - self.legacy_windows: bool = ( - (detect_legacy_windows() and not self.is_jupyter) - if legacy_windows is None - else legacy_windows - ) - - if width is None: - columns = self._environ.get("COLUMNS") - if columns is not None and columns.isdigit(): - width = int(columns) - self.legacy_windows - if height is None: - lines = self._environ.get("LINES") - if lines is not None and lines.isdigit(): - height = int(lines) - - self.soft_wrap = soft_wrap - self._width = width - self._height = height - - self._color_system: Optional[ColorSystem] - - self._force_terminal = None - if force_terminal is not None: - self._force_terminal = force_terminal - - self._file = file - self.quiet = quiet - self.stderr = stderr - - if color_system is None: - self._color_system = None - elif color_system == "auto": - self._color_system = self._detect_color_system() - else: - self._color_system = COLOR_SYSTEMS[color_system] - - self._lock = threading.RLock() - self._log_render = LogRender( - show_time=log_time, - show_path=log_path, - time_format=log_time_format, - ) - self.highlighter: HighlighterType = highlighter or _null_highlighter - self.safe_box = safe_box - self.get_datetime = get_datetime or datetime.now - self.get_time = get_time or monotonic - self.style = style - self.no_color = ( - no_color if no_color is not None else "NO_COLOR" in self._environ - ) - self.is_interactive = ( - (self.is_terminal and not self.is_dumb_terminal) - if force_interactive is None - else force_interactive - ) - - self._record_buffer_lock = threading.RLock() - self._thread_locals = ConsoleThreadLocals( - theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) - ) - self._record_buffer: List[Segment] = [] - self._render_hooks: List[RenderHook] = [] - self._live: Optional["Live"] = None - self._is_alt_screen = False - - def __repr__(self) -> str: - return f"" - - @property - def file(self) -> IO[str]: - """Get the file object to write to.""" - file = self._file or (sys.stderr if self.stderr else sys.stdout) - file = getattr(file, "rich_proxied_file", file) - if file is None: - file = NULL_FILE - return file - - @file.setter - def file(self, new_file: IO[str]) -> None: - """Set a new file object.""" - self._file = new_file - - @property - def _buffer(self) -> List[Segment]: - """Get a thread local buffer.""" - return self._thread_locals.buffer - - @property - def _buffer_index(self) -> int: - """Get a thread local buffer.""" - return self._thread_locals.buffer_index - - @_buffer_index.setter - def _buffer_index(self, value: int) -> None: - self._thread_locals.buffer_index = value - - @property - def _theme_stack(self) -> ThemeStack: - """Get the thread local theme stack.""" - return self._thread_locals.theme_stack - - def _detect_color_system(self) -> Optional[ColorSystem]: - """Detect color system from env vars.""" - if self.is_jupyter: - return ColorSystem.TRUECOLOR - if not self.is_terminal or self.is_dumb_terminal: - return None - if WINDOWS: # pragma: no cover - if self.legacy_windows: # pragma: no cover - return ColorSystem.WINDOWS - windows_console_features = get_windows_console_features() - return ( - ColorSystem.TRUECOLOR - if windows_console_features.truecolor - else ColorSystem.EIGHT_BIT - ) - else: - color_term = self._environ.get("COLORTERM", "").strip().lower() - if color_term in ("truecolor", "24bit"): - return ColorSystem.TRUECOLOR - term = self._environ.get("TERM", "").strip().lower() - _term_name, _hyphen, colors = term.rpartition("-") - color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) - return color_system - - def _enter_buffer(self) -> None: - """Enter in to a buffer context, and buffer all output.""" - self._buffer_index += 1 - - def _exit_buffer(self) -> None: - """Leave buffer context, and render content if required.""" - self._buffer_index -= 1 - self._check_buffer() - - def set_live(self, live: "Live") -> None: - """Set Live instance. Used by Live context manager. - - Args: - live (Live): Live instance using this Console. - - Raises: - errors.LiveError: If this Console has a Live context currently active. - """ - with self._lock: - if self._live is not None: - raise errors.LiveError("Only one live display may be active at once") - self._live = live - - def clear_live(self) -> None: - """Clear the Live instance.""" - with self._lock: - self._live = None - - def push_render_hook(self, hook: RenderHook) -> None: - """Add a new render hook to the stack. - - Args: - hook (RenderHook): Render hook instance. - """ - with self._lock: - self._render_hooks.append(hook) - - def pop_render_hook(self) -> None: - """Pop the last renderhook from the stack.""" - with self._lock: - self._render_hooks.pop() - - def __enter__(self) -> "Console": - """Own context manager to enter buffer context.""" - self._enter_buffer() - return self - - def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: - """Exit buffer context.""" - self._exit_buffer() - - def begin_capture(self) -> None: - """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" - self._enter_buffer() - - def end_capture(self) -> str: - """End capture mode and return captured string. - - Returns: - str: Console output. - """ - render_result = self._render_buffer(self._buffer) - del self._buffer[:] - self._exit_buffer() - return render_result - - def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: - """Push a new theme on to the top of the stack, replacing the styles from the previous theme. - Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather - than calling this method directly. - - Args: - theme (Theme): A theme instance. - inherit (bool, optional): Inherit existing styles. Defaults to True. - """ - self._theme_stack.push_theme(theme, inherit=inherit) - - def pop_theme(self) -> None: - """Remove theme from top of stack, restoring previous theme.""" - self._theme_stack.pop_theme() - - def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: - """Use a different theme for the duration of the context manager. - - Args: - theme (Theme): Theme instance to user. - inherit (bool, optional): Inherit existing console styles. Defaults to True. - - Returns: - ThemeContext: [description] - """ - return ThemeContext(self, theme, inherit) - - @property - def color_system(self) -> Optional[str]: - """Get color system string. - - Returns: - Optional[str]: "standard", "256" or "truecolor". - """ - - if self._color_system is not None: - return _COLOR_SYSTEMS_NAMES[self._color_system] - else: - return None - - @property - def encoding(self) -> str: - """Get the encoding of the console file, e.g. ``"utf-8"``. - - Returns: - str: A standard encoding string. - """ - return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() - - @property - def is_terminal(self) -> bool: - """Check if the console is writing to a terminal. - - Returns: - bool: True if the console writing to a device capable of - understanding terminal codes, otherwise False. - """ - if self._force_terminal is not None: - return self._force_terminal - - if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( - "idlelib" - ): - # Return False for Idle which claims to be a tty but can't handle ansi codes - return False - - if self.is_jupyter: - # return False for Jupyter, which may have FORCE_COLOR set - return False - - # If FORCE_COLOR env var has any value at all, we assume a terminal. - force_color = self._environ.get("FORCE_COLOR") - if force_color is not None: - self._force_terminal = True - return True - - isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) - try: - return False if isatty is None else isatty() - except ValueError: - # in some situation (at the end of a pytest run for example) isatty() can raise - # ValueError: I/O operation on closed file - # return False because we aren't in a terminal anymore - return False - - @property - def is_dumb_terminal(self) -> bool: - """Detect dumb terminal. - - Returns: - bool: True if writing to a dumb terminal, otherwise False. - - """ - _term = self._environ.get("TERM", "") - is_dumb = _term.lower() in ("dumb", "unknown") - return self.is_terminal and is_dumb - - @property - def options(self) -> ConsoleOptions: - """Get default console options.""" - return ConsoleOptions( - max_height=self.size.height, - size=self.size, - legacy_windows=self.legacy_windows, - min_width=1, - max_width=self.width, - encoding=self.encoding, - is_terminal=self.is_terminal, - ) - - @property - def size(self) -> ConsoleDimensions: - """Get the size of the console. - - Returns: - ConsoleDimensions: A named tuple containing the dimensions. - """ - - if self._width is not None and self._height is not None: - return ConsoleDimensions(self._width - self.legacy_windows, self._height) - - if self.is_dumb_terminal: - return ConsoleDimensions(80, 25) - - width: Optional[int] = None - height: Optional[int] = None - - if WINDOWS: # pragma: no cover - try: - width, height = os.get_terminal_size() - except (AttributeError, ValueError, OSError): # Probably not a terminal - pass - else: - for file_descriptor in _STD_STREAMS: - try: - width, height = os.get_terminal_size(file_descriptor) - except (AttributeError, ValueError, OSError): - pass - else: - break - - columns = self._environ.get("COLUMNS") - if columns is not None and columns.isdigit(): - width = int(columns) - lines = self._environ.get("LINES") - if lines is not None and lines.isdigit(): - height = int(lines) - - # get_terminal_size can report 0, 0 if run from pseudo-terminal - width = width or 80 - height = height or 25 - return ConsoleDimensions( - width - self.legacy_windows if self._width is None else self._width, - height if self._height is None else self._height, - ) - - @size.setter - def size(self, new_size: Tuple[int, int]) -> None: - """Set a new size for the terminal. - - Args: - new_size (Tuple[int, int]): New width and height. - """ - width, height = new_size - self._width = width - self._height = height - - @property - def width(self) -> int: - """Get the width of the console. - - Returns: - int: The width (in characters) of the console. - """ - return self.size.width - - @width.setter - def width(self, width: int) -> None: - """Set width. - - Args: - width (int): New width. - """ - self._width = width - - @property - def height(self) -> int: - """Get the height of the console. - - Returns: - int: The height (in lines) of the console. - """ - return self.size.height - - @height.setter - def height(self, height: int) -> None: - """Set height. - - Args: - height (int): new height. - """ - self._height = height - - def bell(self) -> None: - """Play a 'bell' sound (if supported by the terminal).""" - self.control(Control.bell()) - - def capture(self) -> Capture: - """A context manager to *capture* the result of print() or log() in a string, - rather than writing it to the console. - - Example: - >>> from rich.console import Console - >>> console = Console() - >>> with console.capture() as capture: - ... console.print("[bold magenta]Hello World[/]") - >>> print(capture.get()) - - Returns: - Capture: Context manager with disables writing to the terminal. - """ - capture = Capture(self) - return capture - - def pager( - self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False - ) -> PagerContext: - """A context manager to display anything printed within a "pager". The pager application - is defined by the system and will typically support at least pressing a key to scroll. - - Args: - pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. - styles (bool, optional): Show styles in pager. Defaults to False. - links (bool, optional): Show links in pager. Defaults to False. - - Example: - >>> from rich.console import Console - >>> from rich.__main__ import make_test_card - >>> console = Console() - >>> with console.pager(): - console.print(make_test_card()) - - Returns: - PagerContext: A context manager. - """ - return PagerContext(self, pager=pager, styles=styles, links=links) - - def line(self, count: int = 1) -> None: - """Write new line(s). - - Args: - count (int, optional): Number of new lines. Defaults to 1. - """ - - assert count >= 0, "count must be >= 0" - self.print(NewLine(count)) - - def clear(self, home: bool = True) -> None: - """Clear the screen. - - Args: - home (bool, optional): Also move the cursor to 'home' position. Defaults to True. - """ - if home: - self.control(Control.clear(), Control.home()) - else: - self.control(Control.clear()) - - def status( - self, - status: RenderableType, - *, - spinner: str = "dots", - spinner_style: StyleType = "status.spinner", - speed: float = 1.0, - refresh_per_second: float = 12.5, - ) -> "Status": - """Display a status and spinner. - - Args: - status (RenderableType): A status renderable (str or Text typically). - spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". - spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". - speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. - refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. - - Returns: - Status: A Status object that may be used as a context manager. - """ - from .status import Status - - status_renderable = Status( - status, - console=self, - spinner=spinner, - spinner_style=spinner_style, - speed=speed, - refresh_per_second=refresh_per_second, - ) - return status_renderable - - def show_cursor(self, show: bool = True) -> bool: - """Show or hide the cursor. - - Args: - show (bool, optional): Set visibility of the cursor. - """ - if self.is_terminal: - self.control(Control.show_cursor(show)) - return True - return False - - def set_alt_screen(self, enable: bool = True) -> bool: - """Enables alternative screen mode. - - Note, if you enable this mode, you should ensure that is disabled before - the application exits. See :meth:`~rich.Console.screen` for a context manager - that handles this for you. - - Args: - enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. - - Returns: - bool: True if the control codes were written. - - """ - changed = False - if self.is_terminal and not self.legacy_windows: - self.control(Control.alt_screen(enable)) - changed = True - self._is_alt_screen = enable - return changed - - @property - def is_alt_screen(self) -> bool: - """Check if the alt screen was enabled. - - Returns: - bool: True if the alt screen was enabled, otherwise False. - """ - return self._is_alt_screen - - def set_window_title(self, title: str) -> bool: - """Set the title of the console terminal window. - - Warning: There is no means within Rich of "resetting" the window title to its - previous value, meaning the title you set will persist even after your application - exits. - - ``fish`` shell resets the window title before and after each command by default, - negating this issue. Windows Terminal and command prompt will also reset the title for you. - Most other shells and terminals, however, do not do this. - - Some terminals may require configuration changes before you can set the title. - Some terminals may not support setting the title at all. - - Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) - may also set the terminal window title. This could result in whatever value you write - using this method being overwritten. - - Args: - title (str): The new title of the terminal window. - - Returns: - bool: True if the control code to change the terminal title was - written, otherwise False. Note that a return value of True - does not guarantee that the window title has actually changed, - since the feature may be unsupported/disabled in some terminals. - """ - if self.is_terminal: - self.control(Control.title(title)) - return True - return False - - def screen( - self, hide_cursor: bool = True, style: Optional[StyleType] = None - ) -> "ScreenContext": - """Context manager to enable and disable 'alternative screen' mode. - - Args: - hide_cursor (bool, optional): Also hide the cursor. Defaults to False. - style (Style, optional): Optional style for screen. Defaults to None. - - Returns: - ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. - """ - return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") - - def measure( - self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None - ) -> Measurement: - """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains - information regarding the number of characters required to print the renderable. - - Args: - renderable (RenderableType): Any renderable or string. - options (Optional[ConsoleOptions], optional): Options to use when measuring, or None - to use default options. Defaults to None. - - Returns: - Measurement: A measurement of the renderable. - """ - measurement = Measurement.get(self, options or self.options, renderable) - return measurement - - def render( - self, renderable: RenderableType, options: Optional[ConsoleOptions] = None - ) -> Iterable[Segment]: - """Render an object in to an iterable of `Segment` instances. - - This method contains the logic for rendering objects with the console protocol. - You are unlikely to need to use it directly, unless you are extending the library. - - Args: - renderable (RenderableType): An object supporting the console protocol, or - an object that may be converted to a string. - options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. - - Returns: - Iterable[Segment]: An iterable of segments that may be rendered. - """ - - _options = options or self.options - if _options.max_width < 1: - # No space to render anything. This prevents potential recursion errors. - return - render_iterable: RenderResult - - renderable = rich_cast(renderable) - if hasattr(renderable, "__rich_console__") and not isclass(renderable): - render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr] - elif isinstance(renderable, str): - text_renderable = self.render_str( - renderable, highlight=_options.highlight, markup=_options.markup - ) - render_iterable = text_renderable.__rich_console__(self, _options) - else: - raise errors.NotRenderableError( - f"Unable to render {renderable!r}; " - "A str, Segment or object with __rich_console__ method is required" - ) - - try: - iter_render = iter(render_iterable) - except TypeError: - raise errors.NotRenderableError( - f"object {render_iterable!r} is not renderable" - ) - _Segment = Segment - _options = _options.reset_height() - for render_output in iter_render: - if isinstance(render_output, _Segment): - yield render_output - else: - yield from self.render(render_output, _options) - - def render_lines( - self, - renderable: RenderableType, - options: Optional[ConsoleOptions] = None, - *, - style: Optional[Style] = None, - pad: bool = True, - new_lines: bool = False, - ) -> List[List[Segment]]: - """Render objects in to a list of lines. - - The output of render_lines is useful when further formatting of rendered console text - is required, such as the Panel class which draws a border around any renderable object. - - Args: - renderable (RenderableType): Any object renderable in the console. - options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. - style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. - pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. - new_lines (bool, optional): Include "\n" characters at end of lines. - - Returns: - List[List[Segment]]: A list of lines, where a line is a list of Segment objects. - """ - with self._lock: - render_options = options or self.options - _rendered = self.render(renderable, render_options) - if style: - _rendered = Segment.apply_style(_rendered, style) - - render_height = render_options.height - if render_height is not None: - render_height = max(0, render_height) - - lines = list( - islice( - Segment.split_and_crop_lines( - _rendered, - render_options.max_width, - include_new_lines=new_lines, - pad=pad, - style=style, - ), - None, - render_height, - ) - ) - if render_options.height is not None: - extra_lines = render_options.height - len(lines) - if extra_lines > 0: - pad_line = [ - [Segment(" " * render_options.max_width, style), Segment("\n")] - if new_lines - else [Segment(" " * render_options.max_width, style)] - ] - lines.extend(pad_line * extra_lines) - - return lines - - def render_str( - self, - text: str, - *, - style: Union[str, Style] = "", - justify: Optional[JustifyMethod] = None, - overflow: Optional[OverflowMethod] = None, - emoji: Optional[bool] = None, - markup: Optional[bool] = None, - highlight: Optional[bool] = None, - highlighter: Optional[HighlighterType] = None, - ) -> "Text": - """Convert a string to a Text instance. This is called automatically if - you print or log a string. - - Args: - text (str): Text to render. - style (Union[str, Style], optional): Style to apply to rendered text. - justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. - overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. - emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. - markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. - highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. - highlighter (HighlighterType, optional): Optional highlighter to apply. - Returns: - ConsoleRenderable: Renderable object. - - """ - emoji_enabled = emoji or (emoji is None and self._emoji) - markup_enabled = markup or (markup is None and self._markup) - highlight_enabled = highlight or (highlight is None and self._highlight) - - if markup_enabled: - rich_text = render_markup( - text, - style=style, - emoji=emoji_enabled, - emoji_variant=self._emoji_variant, - ) - rich_text.justify = justify - rich_text.overflow = overflow - else: - rich_text = Text( - _emoji_replace(text, default_variant=self._emoji_variant) - if emoji_enabled - else text, - justify=justify, - overflow=overflow, - style=style, - ) - - _highlighter = (highlighter or self.highlighter) if highlight_enabled else None - if _highlighter is not None: - highlight_text = _highlighter(str(rich_text)) - highlight_text.copy_styles(rich_text) - return highlight_text - - return rich_text - - def get_style( - self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None - ) -> Style: - """Get a Style instance by its theme name or parse a definition. - - Args: - name (str): The name of a style or a style definition. - - Returns: - Style: A Style object. - - Raises: - MissingStyle: If no style could be parsed from name. - - """ - if isinstance(name, Style): - return name - - try: - style = self._theme_stack.get(name) - if style is None: - style = Style.parse(name) - return style.copy() if style.link else style - except errors.StyleSyntaxError as error: - if default is not None: - return self.get_style(default) - raise errors.MissingStyle( - f"Failed to get style {name!r}; {error}" - ) from None - - def _collect_renderables( - self, - objects: Iterable[Any], - sep: str, - end: str, - *, - justify: Optional[JustifyMethod] = None, - emoji: Optional[bool] = None, - markup: Optional[bool] = None, - highlight: Optional[bool] = None, - ) -> List[ConsoleRenderable]: - """Combine a number of renderables and text into one renderable. - - Args: - objects (Iterable[Any]): Anything that Rich can render. - sep (str): String to write between print data. - end (str): String to write at end of print data. - justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. - emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. - markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. - highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. - - Returns: - List[ConsoleRenderable]: A list of things to render. - """ - renderables: List[ConsoleRenderable] = [] - _append = renderables.append - text: List[Text] = [] - append_text = text.append - - append = _append - if justify in ("left", "center", "right"): - - def align_append(renderable: RenderableType) -> None: - _append(Align(renderable, cast(AlignMethod, justify))) - - append = align_append - - _highlighter: HighlighterType = _null_highlighter - if highlight or (highlight is None and self._highlight): - _highlighter = self.highlighter - - def check_text() -> None: - if text: - sep_text = Text(sep, justify=justify, end=end) - append(sep_text.join(text)) - text.clear() - - for renderable in objects: - renderable = rich_cast(renderable) - if isinstance(renderable, str): - append_text( - self.render_str( - renderable, emoji=emoji, markup=markup, highlighter=_highlighter - ) - ) - elif isinstance(renderable, Text): - append_text(renderable) - elif isinstance(renderable, ConsoleRenderable): - check_text() - append(renderable) - elif is_expandable(renderable): - check_text() - append(Pretty(renderable, highlighter=_highlighter)) - else: - append_text(_highlighter(str(renderable))) - - check_text() - - if self.style is not None: - style = self.get_style(self.style) - renderables = [Styled(renderable, style) for renderable in renderables] - - return renderables - - def rule( - self, - title: TextType = "", - *, - characters: str = "─", - style: Union[str, Style] = "rule.line", - align: AlignMethod = "center", - ) -> None: - """Draw a line with optional centered title. - - Args: - title (str, optional): Text to render over the rule. Defaults to "". - characters (str, optional): Character(s) to form the line. Defaults to "─". - style (str, optional): Style of line. Defaults to "rule.line". - align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". - """ - from .rule import Rule - - rule = Rule(title=title, characters=characters, style=style, align=align) - self.print(rule) - - def control(self, *control: Control) -> None: - """Insert non-printing control codes. - - Args: - control_codes (str): Control codes, such as those that may move the cursor. - """ - if not self.is_dumb_terminal: - with self: - self._buffer.extend(_control.segment for _control in control) - - def out( - self, - *objects: Any, - sep: str = " ", - end: str = "\n", - style: Optional[Union[str, Style]] = None, - highlight: Optional[bool] = None, - ) -> None: - """Output to the terminal. This is a low-level way of writing to the terminal which unlike - :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will - optionally apply highlighting and a basic style. - - Args: - sep (str, optional): String to write between print data. Defaults to " ". - end (str, optional): String to write at end of print data. Defaults to "\\\\n". - style (Union[str, Style], optional): A style to apply to output. Defaults to None. - highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use - console default. Defaults to ``None``. - """ - raw_output: str = sep.join(str(_object) for _object in objects) - self.print( - raw_output, - style=style, - highlight=highlight, - emoji=False, - markup=False, - no_wrap=True, - overflow="ignore", - crop=False, - end=end, - ) - - def print( - self, - *objects: Any, - sep: str = " ", - end: str = "\n", - style: Optional[Union[str, Style]] = None, - justify: Optional[JustifyMethod] = None, - overflow: Optional[OverflowMethod] = None, - no_wrap: Optional[bool] = None, - emoji: Optional[bool] = None, - markup: Optional[bool] = None, - highlight: Optional[bool] = None, - width: Optional[int] = None, - height: Optional[int] = None, - crop: bool = True, - soft_wrap: Optional[bool] = None, - new_line_start: bool = False, - ) -> None: - """Print to the console. - - Args: - objects (positional args): Objects to log to the terminal. - sep (str, optional): String to write between print data. Defaults to " ". - end (str, optional): String to write at end of print data. Defaults to "\\\\n". - style (Union[str, Style], optional): A style to apply to output. Defaults to None. - justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. - overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. - no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. - emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. - markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. - highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. - width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. - crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. - soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for - Console default. Defaults to ``None``. - new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. - """ - if not objects: - objects = (NewLine(),) - - if soft_wrap is None: - soft_wrap = self.soft_wrap - if soft_wrap: - if no_wrap is None: - no_wrap = True - if overflow is None: - overflow = "ignore" - crop = False - render_hooks = self._render_hooks[:] - with self: - renderables = self._collect_renderables( - objects, - sep, - end, - justify=justify, - emoji=emoji, - markup=markup, - highlight=highlight, - ) - for hook in render_hooks: - renderables = hook.process_renderables(renderables) - render_options = self.options.update( - justify=justify, - overflow=overflow, - width=min(width, self.width) if width is not None else NO_CHANGE, - height=height, - no_wrap=no_wrap, - markup=markup, - highlight=highlight, - ) - - new_segments: List[Segment] = [] - extend = new_segments.extend - render = self.render - if style is None: - for renderable in renderables: - extend(render(renderable, render_options)) - else: - for renderable in renderables: - extend( - Segment.apply_style( - render(renderable, render_options), self.get_style(style) - ) - ) - if new_line_start: - if ( - len("".join(segment.text for segment in new_segments).splitlines()) - > 1 - ): - new_segments.insert(0, Segment.line()) - if crop: - buffer_extend = self._buffer.extend - for line in Segment.split_and_crop_lines( - new_segments, self.width, pad=False - ): - buffer_extend(line) - else: - self._buffer.extend(new_segments) - - def print_json( - self, - json: Optional[str] = None, - *, - data: Any = None, - indent: Union[None, int, str] = 2, - highlight: bool = True, - skip_keys: bool = False, - ensure_ascii: bool = False, - check_circular: bool = True, - allow_nan: bool = True, - default: Optional[Callable[[Any], Any]] = None, - sort_keys: bool = False, - ) -> None: - """Pretty prints JSON. Output will be valid JSON. - - Args: - json (Optional[str]): A string containing JSON. - data (Any): If json is not supplied, then encode this data. - indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. - highlight (bool, optional): Enable highlighting of output: Defaults to True. - skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. - ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. - check_circular (bool, optional): Check for circular references. Defaults to True. - allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. - default (Callable, optional): A callable that converts values that can not be encoded - in to something that can be JSON encoded. Defaults to None. - sort_keys (bool, optional): Sort dictionary keys. Defaults to False. - """ - from pip._vendor.rich.json import JSON - - if json is None: - json_renderable = JSON.from_data( - data, - indent=indent, - highlight=highlight, - skip_keys=skip_keys, - ensure_ascii=ensure_ascii, - check_circular=check_circular, - allow_nan=allow_nan, - default=default, - sort_keys=sort_keys, - ) - else: - if not isinstance(json, str): - raise TypeError( - f"json must be str. Did you mean print_json(data={json!r}) ?" - ) - json_renderable = JSON( - json, - indent=indent, - highlight=highlight, - skip_keys=skip_keys, - ensure_ascii=ensure_ascii, - check_circular=check_circular, - allow_nan=allow_nan, - default=default, - sort_keys=sort_keys, - ) - self.print(json_renderable, soft_wrap=True) - - def update_screen( - self, - renderable: RenderableType, - *, - region: Optional[Region] = None, - options: Optional[ConsoleOptions] = None, - ) -> None: - """Update the screen at a given offset. - - Args: - renderable (RenderableType): A Rich renderable. - region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. - x (int, optional): x offset. Defaults to 0. - y (int, optional): y offset. Defaults to 0. - - Raises: - errors.NoAltScreen: If the Console isn't in alt screen mode. - - """ - if not self.is_alt_screen: - raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") - render_options = options or self.options - if region is None: - x = y = 0 - render_options = render_options.update_dimensions( - render_options.max_width, render_options.height or self.height - ) - else: - x, y, width, height = region - render_options = render_options.update_dimensions(width, height) - - lines = self.render_lines(renderable, options=render_options) - self.update_screen_lines(lines, x, y) - - def update_screen_lines( - self, lines: List[List[Segment]], x: int = 0, y: int = 0 - ) -> None: - """Update lines of the screen at a given offset. - - Args: - lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). - x (int, optional): x offset (column no). Defaults to 0. - y (int, optional): y offset (column no). Defaults to 0. - - Raises: - errors.NoAltScreen: If the Console isn't in alt screen mode. - """ - if not self.is_alt_screen: - raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") - screen_update = ScreenUpdate(lines, x, y) - segments = self.render(screen_update) - self._buffer.extend(segments) - self._check_buffer() - - def print_exception( - self, - *, - width: Optional[int] = 100, - extra_lines: int = 3, - theme: Optional[str] = None, - word_wrap: bool = False, - show_locals: bool = False, - suppress: Iterable[Union[str, ModuleType]] = (), - max_frames: int = 100, - ) -> None: - """Prints a rich render of the last exception and traceback. - - Args: - width (Optional[int], optional): Number of characters used to render code. Defaults to 100. - extra_lines (int, optional): Additional lines of code to render. Defaults to 3. - theme (str, optional): Override pygments theme used in traceback - word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. - show_locals (bool, optional): Enable display of local variables. Defaults to False. - suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. - max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. - """ - from .traceback import Traceback - - traceback = Traceback( - width=width, - extra_lines=extra_lines, - theme=theme, - word_wrap=word_wrap, - show_locals=show_locals, - suppress=suppress, - max_frames=max_frames, - ) - self.print(traceback) - - @staticmethod - def _caller_frame_info( - offset: int, - currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, - ) -> Tuple[str, int, Dict[str, Any]]: - """Get caller frame information. - - Args: - offset (int): the caller offset within the current frame stack. - currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to - retrieve the current frame. Defaults to ``inspect.currentframe``. - - Returns: - Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and - the dictionary of local variables associated with the caller frame. - - Raises: - RuntimeError: If the stack offset is invalid. - """ - # Ignore the frame of this local helper - offset += 1 - - frame = currentframe() - if frame is not None: - # Use the faster currentframe where implemented - while offset and frame is not None: - frame = frame.f_back - offset -= 1 - assert frame is not None - return frame.f_code.co_filename, frame.f_lineno, frame.f_locals - else: - # Fallback to the slower stack - frame_info = inspect.stack()[offset] - return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals - - def log( - self, - *objects: Any, - sep: str = " ", - end: str = "\n", - style: Optional[Union[str, Style]] = None, - justify: Optional[JustifyMethod] = None, - emoji: Optional[bool] = None, - markup: Optional[bool] = None, - highlight: Optional[bool] = None, - log_locals: bool = False, - _stack_offset: int = 1, - ) -> None: - """Log rich content to the terminal. - - Args: - objects (positional args): Objects to log to the terminal. - sep (str, optional): String to write between print data. Defaults to " ". - end (str, optional): String to write at end of print data. Defaults to "\\\\n". - style (Union[str, Style], optional): A style to apply to output. Defaults to None. - justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. - overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None. - emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. - markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. - highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. - log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` - was called. Defaults to False. - _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. - """ - if not objects: - objects = (NewLine(),) - - render_hooks = self._render_hooks[:] - - with self: - renderables = self._collect_renderables( - objects, - sep, - end, - justify=justify, - emoji=emoji, - markup=markup, - highlight=highlight, - ) - if style is not None: - renderables = [Styled(renderable, style) for renderable in renderables] - - filename, line_no, locals = self._caller_frame_info(_stack_offset) - link_path = None if filename.startswith("<") else os.path.abspath(filename) - path = filename.rpartition(os.sep)[-1] - if log_locals: - locals_map = { - key: value - for key, value in locals.items() - if not key.startswith("__") - } - renderables.append(render_scope(locals_map, title="[i]locals")) - - renderables = [ - self._log_render( - self, - renderables, - log_time=self.get_datetime(), - path=path, - line_no=line_no, - link_path=link_path, - ) - ] - for hook in render_hooks: - renderables = hook.process_renderables(renderables) - new_segments: List[Segment] = [] - extend = new_segments.extend - render = self.render - render_options = self.options - for renderable in renderables: - extend(render(renderable, render_options)) - buffer_extend = self._buffer.extend - for line in Segment.split_and_crop_lines( - new_segments, self.width, pad=False - ): - buffer_extend(line) - - def _check_buffer(self) -> None: - """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) - Rendering is supported on Windows, Unix and Jupyter environments. For - legacy Windows consoles, the win32 API is called directly. - This method will also record what it renders if recording is enabled via Console.record. - """ - if self.quiet: - del self._buffer[:] - return - with self._lock: - if self.record: - with self._record_buffer_lock: - self._record_buffer.extend(self._buffer[:]) - - if self._buffer_index == 0: - if self.is_jupyter: # pragma: no cover - from .jupyter import display - - display(self._buffer, self._render_buffer(self._buffer[:])) - del self._buffer[:] - else: - if WINDOWS: - use_legacy_windows_render = False - if self.legacy_windows: - fileno = get_fileno(self.file) - if fileno is not None: - use_legacy_windows_render = ( - fileno in _STD_STREAMS_OUTPUT - ) - - if use_legacy_windows_render: - from pip._vendor.rich._win32_console import LegacyWindowsTerm - from pip._vendor.rich._windows_renderer import legacy_windows_render - - buffer = self._buffer[:] - if self.no_color and self._color_system: - buffer = list(Segment.remove_color(buffer)) - - legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) - else: - # Either a non-std stream on legacy Windows, or modern Windows. - text = self._render_buffer(self._buffer[:]) - # https://bugs.python.org/issue37871 - # https://github.com/python/cpython/issues/82052 - # We need to avoid writing more than 32Kb in a single write, due to the above bug - write = self.file.write - # Worse case scenario, every character is 4 bytes of utf-8 - MAX_WRITE = 32 * 1024 // 4 - try: - if len(text) <= MAX_WRITE: - write(text) - else: - batch: List[str] = [] - batch_append = batch.append - size = 0 - for line in text.splitlines(True): - if size + len(line) > MAX_WRITE and batch: - write("".join(batch)) - batch.clear() - size = 0 - batch_append(line) - size += len(line) - if batch: - write("".join(batch)) - batch.clear() - except UnicodeEncodeError as error: - error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" - raise - else: - text = self._render_buffer(self._buffer[:]) - try: - self.file.write(text) - except UnicodeEncodeError as error: - error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" - raise - - self.file.flush() - del self._buffer[:] - - def _render_buffer(self, buffer: Iterable[Segment]) -> str: - """Render buffered output, and clear buffer.""" - output: List[str] = [] - append = output.append - color_system = self._color_system - legacy_windows = self.legacy_windows - not_terminal = not self.is_terminal - if self.no_color and color_system: - buffer = Segment.remove_color(buffer) - for text, style, control in buffer: - if style: - append( - style.render( - text, - color_system=color_system, - legacy_windows=legacy_windows, - ) - ) - elif not (not_terminal and control): - append(text) - - rendered = "".join(output) - return rendered - - def input( - self, - prompt: TextType = "", - *, - markup: bool = True, - emoji: bool = True, - password: bool = False, - stream: Optional[TextIO] = None, - ) -> str: - """Displays a prompt and waits for input from the user. The prompt may contain color / style. - - It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. - - Args: - prompt (Union[str, Text]): Text to render in the prompt. - markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. - emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. - password: (bool, optional): Hide typed text. Defaults to False. - stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. - - Returns: - str: Text read from stdin. - """ - if prompt: - self.print(prompt, markup=markup, emoji=emoji, end="") - if password: - result = getpass("", stream=stream) - else: - if stream: - result = stream.readline() - else: - result = input() - return result - - def export_text(self, *, clear: bool = True, styles: bool = False) -> str: - """Generate text from console contents (requires record=True argument in constructor). - - Args: - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. - styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. - Defaults to ``False``. - - Returns: - str: String containing console contents. - - """ - assert ( - self.record - ), "To export console contents set record=True in the constructor or instance" - - with self._record_buffer_lock: - if styles: - text = "".join( - (style.render(text) if style else text) - for text, style, _ in self._record_buffer - ) - else: - text = "".join( - segment.text - for segment in self._record_buffer - if not segment.control - ) - if clear: - del self._record_buffer[:] - return text - - def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: - """Generate text from console and save to a given location (requires record=True argument in constructor). - - Args: - path (str): Path to write text files. - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. - styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. - Defaults to ``False``. - - """ - text = self.export_text(clear=clear, styles=styles) - with open(path, "wt", encoding="utf-8") as write_file: - write_file.write(text) - - def export_html( - self, - *, - theme: Optional[TerminalTheme] = None, - clear: bool = True, - code_format: Optional[str] = None, - inline_styles: bool = False, - ) -> str: - """Generate HTML from console contents (requires record=True argument in constructor). - - Args: - theme (TerminalTheme, optional): TerminalTheme object containing console colors. - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. - code_format (str, optional): Format string to render HTML. In addition to '{foreground}', - '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. - inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files - larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. - Defaults to False. - - Returns: - str: String containing console contents as HTML. - """ - assert ( - self.record - ), "To export console contents set record=True in the constructor or instance" - fragments: List[str] = [] - append = fragments.append - _theme = theme or DEFAULT_TERMINAL_THEME - stylesheet = "" - - render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format - - with self._record_buffer_lock: - if inline_styles: - for text, style, _ in Segment.filter_control( - Segment.simplify(self._record_buffer) - ): - text = escape(text) - if style: - rule = style.get_html_style(_theme) - if style.link: - text = f'{text}' - text = f'{text}' if rule else text - append(text) - else: - styles: Dict[str, int] = {} - for text, style, _ in Segment.filter_control( - Segment.simplify(self._record_buffer) - ): - text = escape(text) - if style: - rule = style.get_html_style(_theme) - style_number = styles.setdefault(rule, len(styles) + 1) - if style.link: - text = f'{text}' - else: - text = f'{text}' - append(text) - stylesheet_rules: List[str] = [] - stylesheet_append = stylesheet_rules.append - for style_rule, style_number in styles.items(): - if style_rule: - stylesheet_append(f".r{style_number} {{{style_rule}}}") - stylesheet = "\n".join(stylesheet_rules) - - rendered_code = render_code_format.format( - code="".join(fragments), - stylesheet=stylesheet, - foreground=_theme.foreground_color.hex, - background=_theme.background_color.hex, - ) - if clear: - del self._record_buffer[:] - return rendered_code - - def save_html( - self, - path: str, - *, - theme: Optional[TerminalTheme] = None, - clear: bool = True, - code_format: str = CONSOLE_HTML_FORMAT, - inline_styles: bool = False, - ) -> None: - """Generate HTML from console contents and write to a file (requires record=True argument in constructor). - - Args: - path (str): Path to write html file. - theme (TerminalTheme, optional): TerminalTheme object containing console colors. - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. - code_format (str, optional): Format string to render HTML. In addition to '{foreground}', - '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. - inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files - larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. - Defaults to False. - - """ - html = self.export_html( - theme=theme, - clear=clear, - code_format=code_format, - inline_styles=inline_styles, - ) - with open(path, "wt", encoding="utf-8") as write_file: - write_file.write(html) - - def export_svg( - self, - *, - title: str = "Rich", - theme: Optional[TerminalTheme] = None, - clear: bool = True, - code_format: str = CONSOLE_SVG_FORMAT, - font_aspect_ratio: float = 0.61, - unique_id: Optional[str] = None, - ) -> str: - """ - Generate an SVG from the console contents (requires record=True in Console constructor). - - Args: - title (str, optional): The title of the tab in the output image - theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` - code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables - into the string in order to form the final SVG output. The default template used and the variables - injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. - font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` - string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). - If you aren't specifying a different font inside ``code_format``, you probably don't need this. - unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node - ids). If not set, this defaults to a computed value based on the recorded content. - """ - - from pip._vendor.rich.cells import cell_len - - style_cache: Dict[Style, str] = {} - - def get_svg_style(style: Style) -> str: - """Convert a Style to CSS rules for SVG.""" - if style in style_cache: - return style_cache[style] - css_rules = [] - color = ( - _theme.foreground_color - if (style.color is None or style.color.is_default) - else style.color.get_truecolor(_theme) - ) - bgcolor = ( - _theme.background_color - if (style.bgcolor is None or style.bgcolor.is_default) - else style.bgcolor.get_truecolor(_theme) - ) - if style.reverse: - color, bgcolor = bgcolor, color - if style.dim: - color = blend_rgb(color, bgcolor, 0.4) - css_rules.append(f"fill: {color.hex}") - if style.bold: - css_rules.append("font-weight: bold") - if style.italic: - css_rules.append("font-style: italic;") - if style.underline: - css_rules.append("text-decoration: underline;") - if style.strike: - css_rules.append("text-decoration: line-through;") - - css = ";".join(css_rules) - style_cache[style] = css - return css - - _theme = theme or SVG_EXPORT_THEME - - width = self.width - char_height = 20 - char_width = char_height * font_aspect_ratio - line_height = char_height * 1.22 - - margin_top = 1 - margin_right = 1 - margin_bottom = 1 - margin_left = 1 - - padding_top = 40 - padding_right = 8 - padding_bottom = 8 - padding_left = 8 - - padding_width = padding_left + padding_right - padding_height = padding_top + padding_bottom - margin_width = margin_left + margin_right - margin_height = margin_top + margin_bottom - - text_backgrounds: List[str] = [] - text_group: List[str] = [] - classes: Dict[str, int] = {} - style_no = 1 - - def escape_text(text: str) -> str: - """HTML escape text and replace spaces with nbsp.""" - return escape(text).replace(" ", " ") - - def make_tag( - name: str, content: Optional[str] = None, **attribs: object - ) -> str: - """Make a tag from name, content, and attributes.""" - - def stringify(value: object) -> str: - if isinstance(value, (float)): - return format(value, "g") - return str(value) - - tag_attribs = " ".join( - f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' - for k, v in attribs.items() - ) - return ( - f"<{name} {tag_attribs}>{content}" - if content - else f"<{name} {tag_attribs}/>" - ) - - with self._record_buffer_lock: - segments = list(Segment.filter_control(self._record_buffer)) - if clear: - self._record_buffer.clear() - - if unique_id is None: - unique_id = "terminal-" + str( - zlib.adler32( - ("".join(repr(segment) for segment in segments)).encode( - "utf-8", - "ignore", - ) - + title.encode("utf-8", "ignore") - ) - ) - y = 0 - for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): - x = 0 - for text, style, _control in line: - style = style or Style() - rules = get_svg_style(style) - if rules not in classes: - classes[rules] = style_no - style_no += 1 - class_name = f"r{classes[rules]}" - - if style.reverse: - has_background = True - background = ( - _theme.foreground_color.hex - if style.color is None - else style.color.get_truecolor(_theme).hex - ) - else: - bgcolor = style.bgcolor - has_background = bgcolor is not None and not bgcolor.is_default - background = ( - _theme.background_color.hex - if style.bgcolor is None - else style.bgcolor.get_truecolor(_theme).hex - ) - - text_length = cell_len(text) - if has_background: - text_backgrounds.append( - make_tag( - "rect", - fill=background, - x=x * char_width, - y=y * line_height + 1.5, - width=char_width * text_length, - height=line_height + 0.25, - shape_rendering="crispEdges", - ) - ) - - if text != " " * len(text): - text_group.append( - make_tag( - "text", - escape_text(text), - _class=f"{unique_id}-{class_name}", - x=x * char_width, - y=y * line_height + char_height, - textLength=char_width * len(text), - clip_path=f"url(#{unique_id}-line-{y})", - ) - ) - x += cell_len(text) - - line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] - lines = "\n".join( - f""" - {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} - """ - for line_no, offset in enumerate(line_offsets) - ) - - styles = "\n".join( - f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() - ) - backgrounds = "".join(text_backgrounds) - matrix = "".join(text_group) - - terminal_width = ceil(width * char_width + padding_width) - terminal_height = (y + 1) * line_height + padding_height - chrome = make_tag( - "rect", - fill=_theme.background_color.hex, - stroke="rgba(255,255,255,0.35)", - stroke_width="1", - x=margin_left, - y=margin_top, - width=terminal_width, - height=terminal_height, - rx=8, - ) - - title_color = _theme.foreground_color.hex - if title: - chrome += make_tag( - "text", - escape_text(title), - _class=f"{unique_id}-title", - fill=title_color, - text_anchor="middle", - x=terminal_width // 2, - y=margin_top + char_height + 6, - ) - chrome += f""" - - - - - - """ - - svg = code_format.format( - unique_id=unique_id, - char_width=char_width, - char_height=char_height, - line_height=line_height, - terminal_width=char_width * width - 1, - terminal_height=(y + 1) * line_height - 1, - width=terminal_width + margin_width, - height=terminal_height + margin_height, - terminal_x=margin_left + padding_left, - terminal_y=margin_top + padding_top, - styles=styles, - chrome=chrome, - backgrounds=backgrounds, - matrix=matrix, - lines=lines, - ) - return svg - - def save_svg( - self, - path: str, - *, - title: str = "Rich", - theme: Optional[TerminalTheme] = None, - clear: bool = True, - code_format: str = CONSOLE_SVG_FORMAT, - font_aspect_ratio: float = 0.61, - unique_id: Optional[str] = None, - ) -> None: - """Generate an SVG file from the console contents (requires record=True in Console constructor). - - Args: - path (str): The path to write the SVG to. - title (str, optional): The title of the tab in the output image - theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal - clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` - code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables - into the string in order to form the final SVG output. The default template used and the variables - injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. - font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` - string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). - If you aren't specifying a different font inside ``code_format``, you probably don't need this. - unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node - ids). If not set, this defaults to a computed value based on the recorded content. - """ - svg = self.export_svg( - title=title, - theme=theme, - clear=clear, - code_format=code_format, - font_aspect_ratio=font_aspect_ratio, - unique_id=unique_id, - ) - with open(path, "wt", encoding="utf-8") as write_file: - write_file.write(svg) - - -def _svg_hash(svg_main_code: str) -> str: - """Returns a unique hash for the given SVG main code. - - Args: - svg_main_code (str): The content we're going to inject in the SVG envelope. - - Returns: - str: a hash of the given content - """ - return str(zlib.adler32(svg_main_code.encode())) - - -if __name__ == "__main__": # pragma: no cover - console = Console(record=True) - - console.log( - "JSONRPC [i]request[/i]", - 5, - 1.3, - True, - False, - None, - { - "jsonrpc": "2.0", - "method": "subtract", - "params": {"minuend": 42, "subtrahend": 23}, - "id": 3, - }, - ) - - console.log("Hello, World!", "{'a': 1}", repr(console)) - - console.print( - { - "name": None, - "empty": [], - "quiz": { - "sport": { - "answered": True, - "q1": { - "question": "Which one is correct team name in NBA?", - "options": [ - "New York Bulls", - "Los Angeles Kings", - "Golden State Warriors", - "Huston Rocket", - ], - "answer": "Huston Rocket", - }, - }, - "maths": { - "answered": False, - "q1": { - "question": "5 + 7 = ?", - "options": [10, 11, 12, 13], - "answer": 12, - }, - "q2": { - "question": "12 - 8 = ?", - "options": [1, 2, 3, 4], - "answer": 4, - }, - }, - }, - } - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py deleted file mode 100644 index 65fdf56..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py +++ /dev/null @@ -1,37 +0,0 @@ -from typing import Optional, TYPE_CHECKING - -from .jupyter import JupyterMixin -from .measure import Measurement - -if TYPE_CHECKING: - from .console import Console, ConsoleOptions, RenderableType, RenderResult - - -class Constrain(JupyterMixin): - """Constrain the width of a renderable to a given number of characters. - - Args: - renderable (RenderableType): A renderable object. - width (int, optional): The maximum width (in characters) to render. Defaults to 80. - """ - - def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: - self.renderable = renderable - self.width = width - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - if self.width is None: - yield self.renderable - else: - child_options = options.update_width(min(self.width, options.max_width)) - yield from console.render(self.renderable, child_options) - - def __rich_measure__( - self, console: "Console", options: "ConsoleOptions" - ) -> "Measurement": - if self.width is not None: - options = options.update_width(self.width) - measurement = Measurement.get(console, options, self.renderable) - return measurement diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py deleted file mode 100644 index e29cf36..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py +++ /dev/null @@ -1,167 +0,0 @@ -from itertools import zip_longest -from typing import ( - Iterator, - Iterable, - List, - Optional, - Union, - overload, - TypeVar, - TYPE_CHECKING, -) - -if TYPE_CHECKING: - from .console import ( - Console, - ConsoleOptions, - JustifyMethod, - OverflowMethod, - RenderResult, - RenderableType, - ) - from .text import Text - -from .cells import cell_len -from .measure import Measurement - -T = TypeVar("T") - - -class Renderables: - """A list subclass which renders its contents to the console.""" - - def __init__( - self, renderables: Optional[Iterable["RenderableType"]] = None - ) -> None: - self._renderables: List["RenderableType"] = ( - list(renderables) if renderables is not None else [] - ) - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - """Console render method to insert line-breaks.""" - yield from self._renderables - - def __rich_measure__( - self, console: "Console", options: "ConsoleOptions" - ) -> "Measurement": - dimensions = [ - Measurement.get(console, options, renderable) - for renderable in self._renderables - ] - if not dimensions: - return Measurement(1, 1) - _min = max(dimension.minimum for dimension in dimensions) - _max = max(dimension.maximum for dimension in dimensions) - return Measurement(_min, _max) - - def append(self, renderable: "RenderableType") -> None: - self._renderables.append(renderable) - - def __iter__(self) -> Iterable["RenderableType"]: - return iter(self._renderables) - - -class Lines: - """A list subclass which can render to the console.""" - - def __init__(self, lines: Iterable["Text"] = ()) -> None: - self._lines: List["Text"] = list(lines) - - def __repr__(self) -> str: - return f"Lines({self._lines!r})" - - def __iter__(self) -> Iterator["Text"]: - return iter(self._lines) - - @overload - def __getitem__(self, index: int) -> "Text": - ... - - @overload - def __getitem__(self, index: slice) -> List["Text"]: - ... - - def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: - return self._lines[index] - - def __setitem__(self, index: int, value: "Text") -> "Lines": - self._lines[index] = value - return self - - def __len__(self) -> int: - return self._lines.__len__() - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - """Console render method to insert line-breaks.""" - yield from self._lines - - def append(self, line: "Text") -> None: - self._lines.append(line) - - def extend(self, lines: Iterable["Text"]) -> None: - self._lines.extend(lines) - - def pop(self, index: int = -1) -> "Text": - return self._lines.pop(index) - - def justify( - self, - console: "Console", - width: int, - justify: "JustifyMethod" = "left", - overflow: "OverflowMethod" = "fold", - ) -> None: - """Justify and overflow text to a given width. - - Args: - console (Console): Console instance. - width (int): Number of characters per line. - justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". - overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". - - """ - from .text import Text - - if justify == "left": - for line in self._lines: - line.truncate(width, overflow=overflow, pad=True) - elif justify == "center": - for line in self._lines: - line.rstrip() - line.truncate(width, overflow=overflow) - line.pad_left((width - cell_len(line.plain)) // 2) - line.pad_right(width - cell_len(line.plain)) - elif justify == "right": - for line in self._lines: - line.rstrip() - line.truncate(width, overflow=overflow) - line.pad_left(width - cell_len(line.plain)) - elif justify == "full": - for line_index, line in enumerate(self._lines): - if line_index == len(self._lines) - 1: - break - words = line.split(" ") - words_size = sum(cell_len(word.plain) for word in words) - num_spaces = len(words) - 1 - spaces = [1 for _ in range(num_spaces)] - index = 0 - if spaces: - while words_size + num_spaces < width: - spaces[len(spaces) - index - 1] += 1 - num_spaces += 1 - index = (index + 1) % len(spaces) - tokens: List[Text] = [] - for index, (word, next_word) in enumerate( - zip_longest(words, words[1:]) - ): - tokens.append(word) - if index < len(spaces): - style = word.get_style_at_offset(console, -1) - next_style = next_word.get_style_at_offset(console, 0) - space_style = style if style == next_style else line.style - tokens.append(Text(" " * spaces[index], style=space_style)) - self[line_index] = Text("").join(tokens) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py deleted file mode 100644 index 88fcb92..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py +++ /dev/null @@ -1,225 +0,0 @@ -import sys -import time -from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union - -if sys.version_info >= (3, 8): - from typing import Final -else: - from pip._vendor.typing_extensions import Final # pragma: no cover - -from .segment import ControlCode, ControlType, Segment - -if TYPE_CHECKING: - from .console import Console, ConsoleOptions, RenderResult - -STRIP_CONTROL_CODES: Final = [ - 7, # Bell - 8, # Backspace - 11, # Vertical tab - 12, # Form feed - 13, # Carriage return -] -_CONTROL_STRIP_TRANSLATE: Final = { - _codepoint: None for _codepoint in STRIP_CONTROL_CODES -} - -CONTROL_ESCAPE: Final = { - 7: "\\a", - 8: "\\b", - 11: "\\v", - 12: "\\f", - 13: "\\r", -} - -CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { - ControlType.BELL: lambda: "\x07", - ControlType.CARRIAGE_RETURN: lambda: "\r", - ControlType.HOME: lambda: "\x1b[H", - ControlType.CLEAR: lambda: "\x1b[2J", - ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", - ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", - ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", - ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", - ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", - ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", - ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", - ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", - ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", - ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", - ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", - ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", -} - - -class Control: - """A renderable that inserts a control code (non printable but may move cursor). - - Args: - *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a - tuple of ControlType and an integer parameter - """ - - __slots__ = ["segment"] - - def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: - control_codes: List[ControlCode] = [ - (code,) if isinstance(code, ControlType) else code for code in codes - ] - _format_map = CONTROL_CODES_FORMAT - rendered_codes = "".join( - _format_map[code](*parameters) for code, *parameters in control_codes - ) - self.segment = Segment(rendered_codes, None, control_codes) - - @classmethod - def bell(cls) -> "Control": - """Ring the 'bell'.""" - return cls(ControlType.BELL) - - @classmethod - def home(cls) -> "Control": - """Move cursor to 'home' position.""" - return cls(ControlType.HOME) - - @classmethod - def move(cls, x: int = 0, y: int = 0) -> "Control": - """Move cursor relative to current position. - - Args: - x (int): X offset. - y (int): Y offset. - - Returns: - ~Control: Control object. - - """ - - def get_codes() -> Iterable[ControlCode]: - control = ControlType - if x: - yield ( - control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, - abs(x), - ) - if y: - yield ( - control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, - abs(y), - ) - - control = cls(*get_codes()) - return control - - @classmethod - def move_to_column(cls, x: int, y: int = 0) -> "Control": - """Move to the given column, optionally add offset to row. - - Returns: - x (int): absolute x (column) - y (int): optional y offset (row) - - Returns: - ~Control: Control object. - """ - - return ( - cls( - (ControlType.CURSOR_MOVE_TO_COLUMN, x), - ( - ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, - abs(y), - ), - ) - if y - else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) - ) - - @classmethod - def move_to(cls, x: int, y: int) -> "Control": - """Move cursor to absolute position. - - Args: - x (int): x offset (column) - y (int): y offset (row) - - Returns: - ~Control: Control object. - """ - return cls((ControlType.CURSOR_MOVE_TO, x, y)) - - @classmethod - def clear(cls) -> "Control": - """Clear the screen.""" - return cls(ControlType.CLEAR) - - @classmethod - def show_cursor(cls, show: bool) -> "Control": - """Show or hide the cursor.""" - return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) - - @classmethod - def alt_screen(cls, enable: bool) -> "Control": - """Enable or disable alt screen.""" - if enable: - return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) - else: - return cls(ControlType.DISABLE_ALT_SCREEN) - - @classmethod - def title(cls, title: str) -> "Control": - """Set the terminal window title - - Args: - title (str): The new terminal window title - """ - return cls((ControlType.SET_WINDOW_TITLE, title)) - - def __str__(self) -> str: - return self.segment.text - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - if self.segment.text: - yield self.segment - - -def strip_control_codes( - text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE -) -> str: - """Remove control codes from text. - - Args: - text (str): A string possibly contain control codes. - - Returns: - str: String with control codes removed. - """ - return text.translate(_translate_table) - - -def escape_control_codes( - text: str, - _translate_table: Dict[int, str] = CONTROL_ESCAPE, -) -> str: - """Replace control codes with their "escaped" equivalent in the given text. - (e.g. "\b" becomes "\\b") - - Args: - text (str): A string possibly containing control codes. - - Returns: - str: String with control codes replaced with their escaped version. - """ - return text.translate(_translate_table) - - -if __name__ == "__main__": # pragma: no cover - from pip._vendor.rich.console import Console - - console = Console() - console.print("Look at the title of your terminal window ^") - # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) - for i in range(10): - console.set_window_title("🚀 Loading" + "." * i) - time.sleep(0.5) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py deleted file mode 100644 index dca3719..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py +++ /dev/null @@ -1,190 +0,0 @@ -from typing import Dict - -from .style import Style - -DEFAULT_STYLES: Dict[str, Style] = { - "none": Style.null(), - "reset": Style( - color="default", - bgcolor="default", - dim=False, - bold=False, - italic=False, - underline=False, - blink=False, - blink2=False, - reverse=False, - conceal=False, - strike=False, - ), - "dim": Style(dim=True), - "bright": Style(dim=False), - "bold": Style(bold=True), - "strong": Style(bold=True), - "code": Style(reverse=True, bold=True), - "italic": Style(italic=True), - "emphasize": Style(italic=True), - "underline": Style(underline=True), - "blink": Style(blink=True), - "blink2": Style(blink2=True), - "reverse": Style(reverse=True), - "strike": Style(strike=True), - "black": Style(color="black"), - "red": Style(color="red"), - "green": Style(color="green"), - "yellow": Style(color="yellow"), - "magenta": Style(color="magenta"), - "cyan": Style(color="cyan"), - "white": Style(color="white"), - "inspect.attr": Style(color="yellow", italic=True), - "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), - "inspect.callable": Style(bold=True, color="red"), - "inspect.async_def": Style(italic=True, color="bright_cyan"), - "inspect.def": Style(italic=True, color="bright_cyan"), - "inspect.class": Style(italic=True, color="bright_cyan"), - "inspect.error": Style(bold=True, color="red"), - "inspect.equals": Style(), - "inspect.help": Style(color="cyan"), - "inspect.doc": Style(dim=True), - "inspect.value.border": Style(color="green"), - "live.ellipsis": Style(bold=True, color="red"), - "layout.tree.row": Style(dim=False, color="red"), - "layout.tree.column": Style(dim=False, color="blue"), - "logging.keyword": Style(bold=True, color="yellow"), - "logging.level.notset": Style(dim=True), - "logging.level.debug": Style(color="green"), - "logging.level.info": Style(color="blue"), - "logging.level.warning": Style(color="red"), - "logging.level.error": Style(color="red", bold=True), - "logging.level.critical": Style(color="red", bold=True, reverse=True), - "log.level": Style.null(), - "log.time": Style(color="cyan", dim=True), - "log.message": Style.null(), - "log.path": Style(dim=True), - "repr.ellipsis": Style(color="yellow"), - "repr.indent": Style(color="green", dim=True), - "repr.error": Style(color="red", bold=True), - "repr.str": Style(color="green", italic=False, bold=False), - "repr.brace": Style(bold=True), - "repr.comma": Style(bold=True), - "repr.ipv4": Style(bold=True, color="bright_green"), - "repr.ipv6": Style(bold=True, color="bright_green"), - "repr.eui48": Style(bold=True, color="bright_green"), - "repr.eui64": Style(bold=True, color="bright_green"), - "repr.tag_start": Style(bold=True), - "repr.tag_name": Style(color="bright_magenta", bold=True), - "repr.tag_contents": Style(color="default"), - "repr.tag_end": Style(bold=True), - "repr.attrib_name": Style(color="yellow", italic=False), - "repr.attrib_equal": Style(bold=True), - "repr.attrib_value": Style(color="magenta", italic=False), - "repr.number": Style(color="cyan", bold=True, italic=False), - "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same - "repr.bool_true": Style(color="bright_green", italic=True), - "repr.bool_false": Style(color="bright_red", italic=True), - "repr.none": Style(color="magenta", italic=True), - "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), - "repr.uuid": Style(color="bright_yellow", bold=False), - "repr.call": Style(color="magenta", bold=True), - "repr.path": Style(color="magenta"), - "repr.filename": Style(color="bright_magenta"), - "rule.line": Style(color="bright_green"), - "rule.text": Style.null(), - "json.brace": Style(bold=True), - "json.bool_true": Style(color="bright_green", italic=True), - "json.bool_false": Style(color="bright_red", italic=True), - "json.null": Style(color="magenta", italic=True), - "json.number": Style(color="cyan", bold=True, italic=False), - "json.str": Style(color="green", italic=False, bold=False), - "json.key": Style(color="blue", bold=True), - "prompt": Style.null(), - "prompt.choices": Style(color="magenta", bold=True), - "prompt.default": Style(color="cyan", bold=True), - "prompt.invalid": Style(color="red"), - "prompt.invalid.choice": Style(color="red"), - "pretty": Style.null(), - "scope.border": Style(color="blue"), - "scope.key": Style(color="yellow", italic=True), - "scope.key.special": Style(color="yellow", italic=True, dim=True), - "scope.equals": Style(color="red"), - "table.header": Style(bold=True), - "table.footer": Style(bold=True), - "table.cell": Style.null(), - "table.title": Style(italic=True), - "table.caption": Style(italic=True, dim=True), - "traceback.error": Style(color="red", italic=True), - "traceback.border.syntax_error": Style(color="bright_red"), - "traceback.border": Style(color="red"), - "traceback.text": Style.null(), - "traceback.title": Style(color="red", bold=True), - "traceback.exc_type": Style(color="bright_red", bold=True), - "traceback.exc_value": Style.null(), - "traceback.offset": Style(color="bright_red", bold=True), - "bar.back": Style(color="grey23"), - "bar.complete": Style(color="rgb(249,38,114)"), - "bar.finished": Style(color="rgb(114,156,31)"), - "bar.pulse": Style(color="rgb(249,38,114)"), - "progress.description": Style.null(), - "progress.filesize": Style(color="green"), - "progress.filesize.total": Style(color="green"), - "progress.download": Style(color="green"), - "progress.elapsed": Style(color="yellow"), - "progress.percentage": Style(color="magenta"), - "progress.remaining": Style(color="cyan"), - "progress.data.speed": Style(color="red"), - "progress.spinner": Style(color="green"), - "status.spinner": Style(color="green"), - "tree": Style(), - "tree.line": Style(), - "markdown.paragraph": Style(), - "markdown.text": Style(), - "markdown.em": Style(italic=True), - "markdown.emph": Style(italic=True), # For commonmark backwards compatibility - "markdown.strong": Style(bold=True), - "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), - "markdown.code_block": Style(color="cyan", bgcolor="black"), - "markdown.block_quote": Style(color="magenta"), - "markdown.list": Style(color="cyan"), - "markdown.item": Style(), - "markdown.item.bullet": Style(color="yellow", bold=True), - "markdown.item.number": Style(color="yellow", bold=True), - "markdown.hr": Style(color="yellow"), - "markdown.h1.border": Style(), - "markdown.h1": Style(bold=True), - "markdown.h2": Style(bold=True, underline=True), - "markdown.h3": Style(bold=True), - "markdown.h4": Style(bold=True, dim=True), - "markdown.h5": Style(underline=True), - "markdown.h6": Style(italic=True), - "markdown.h7": Style(italic=True, dim=True), - "markdown.link": Style(color="bright_blue"), - "markdown.link_url": Style(color="blue", underline=True), - "markdown.s": Style(strike=True), - "iso8601.date": Style(color="blue"), - "iso8601.time": Style(color="magenta"), - "iso8601.timezone": Style(color="yellow"), -} - - -if __name__ == "__main__": # pragma: no cover - import argparse - import io - - from pip._vendor.rich.console import Console - from pip._vendor.rich.table import Table - from pip._vendor.rich.text import Text - - parser = argparse.ArgumentParser() - parser.add_argument("--html", action="store_true", help="Export as HTML table") - args = parser.parse_args() - html: bool = args.html - console = Console(record=True, width=70, file=io.StringIO()) if html else Console() - - table = Table("Name", "Styling") - - for style_name, style in DEFAULT_STYLES.items(): - table.add_row(Text(style_name, style=style), str(style)) - - console.print(table) - if html: - print(console.export_html(inline_styles=True)) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py deleted file mode 100644 index ad36183..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py +++ /dev/null @@ -1,37 +0,0 @@ -import os -import platform - -from pip._vendor.rich import inspect -from pip._vendor.rich.console import Console, get_windows_console_features -from pip._vendor.rich.panel import Panel -from pip._vendor.rich.pretty import Pretty - - -def report() -> None: # pragma: no cover - """Print a report to the terminal with debugging information""" - console = Console() - inspect(console) - features = get_windows_console_features() - inspect(features) - - env_names = ( - "TERM", - "COLORTERM", - "CLICOLOR", - "NO_COLOR", - "TERM_PROGRAM", - "COLUMNS", - "LINES", - "JUPYTER_COLUMNS", - "JUPYTER_LINES", - "JPY_PARENT_PID", - "VSCODE_VERBOSE_LOGGING", - ) - env = {name: os.getenv(name) for name in env_names} - console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) - - console.print(f'platform="{platform.system()}"') - - -if __name__ == "__main__": # pragma: no cover - report() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py deleted file mode 100644 index 791f046..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py +++ /dev/null @@ -1,96 +0,0 @@ -import sys -from typing import TYPE_CHECKING, Optional, Union - -from .jupyter import JupyterMixin -from .segment import Segment -from .style import Style -from ._emoji_codes import EMOJI -from ._emoji_replace import _emoji_replace - -if sys.version_info >= (3, 8): - from typing import Literal -else: - from pip._vendor.typing_extensions import Literal # pragma: no cover - - -if TYPE_CHECKING: - from .console import Console, ConsoleOptions, RenderResult - - -EmojiVariant = Literal["emoji", "text"] - - -class NoEmoji(Exception): - """No emoji by that name.""" - - -class Emoji(JupyterMixin): - __slots__ = ["name", "style", "_char", "variant"] - - VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} - - def __init__( - self, - name: str, - style: Union[str, Style] = "none", - variant: Optional[EmojiVariant] = None, - ) -> None: - """A single emoji character. - - Args: - name (str): Name of emoji. - style (Union[str, Style], optional): Optional style. Defaults to None. - - Raises: - NoEmoji: If the emoji doesn't exist. - """ - self.name = name - self.style = style - self.variant = variant - try: - self._char = EMOJI[name] - except KeyError: - raise NoEmoji(f"No emoji called {name!r}") - if variant is not None: - self._char += self.VARIANTS.get(variant, "") - - @classmethod - def replace(cls, text: str) -> str: - """Replace emoji markup with corresponding unicode characters. - - Args: - text (str): A string with emojis codes, e.g. "Hello :smiley:!" - - Returns: - str: A string with emoji codes replaces with actual emoji. - """ - return _emoji_replace(text) - - def __repr__(self) -> str: - return f"" - - def __str__(self) -> str: - return self._char - - def __rich_console__( - self, console: "Console", options: "ConsoleOptions" - ) -> "RenderResult": - yield Segment(self._char, console.get_style(self.style)) - - -if __name__ == "__main__": # pragma: no cover - import sys - - from pip._vendor.rich.columns import Columns - from pip._vendor.rich.console import Console - - console = Console(record=True) - - columns = Columns( - (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), - column_first=True, - ) - - console.print(columns) - if len(sys.argv) > 1: - console.save_html(sys.argv[1]) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py deleted file mode 100644 index 0bcbe53..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py +++ /dev/null @@ -1,34 +0,0 @@ -class ConsoleError(Exception): - """An error in console operation.""" - - -class StyleError(Exception): - """An error in styles.""" - - -class StyleSyntaxError(ConsoleError): - """Style was badly formatted.""" - - -class MissingStyle(StyleError): - """No such style.""" - - -class StyleStackError(ConsoleError): - """Style stack is invalid.""" - - -class NotRenderableError(ConsoleError): - """Object is not renderable.""" - - -class MarkupError(ConsoleError): - """Markup was badly formatted.""" - - -class LiveError(ConsoleError): - """Error related to Live display.""" - - -class NoAltScreen(ConsoleError): - """Alt screen mode was required.""" diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py deleted file mode 100644 index 4b0b0da..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py +++ /dev/null @@ -1,57 +0,0 @@ -import io -from typing import IO, TYPE_CHECKING, Any, List - -from .ansi import AnsiDecoder -from .text import Text - -if TYPE_CHECKING: - from .console import Console - - -class FileProxy(io.TextIOBase): - """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" - - def __init__(self, console: "Console", file: IO[str]) -> None: - self.__console = console - self.__file = file - self.__buffer: List[str] = [] - self.__ansi_decoder = AnsiDecoder() - - @property - def rich_proxied_file(self) -> IO[str]: - """Get proxied file.""" - return self.__file - - def __getattr__(self, name: str) -> Any: - return getattr(self.__file, name) - - def write(self, text: str) -> int: - if not isinstance(text, str): - raise TypeError(f"write() argument must be str, not {type(text).__name__}") - buffer = self.__buffer - lines: List[str] = [] - while text: - line, new_line, text = text.partition("\n") - if new_line: - lines.append("".join(buffer) + line) - buffer.clear() - else: - buffer.append(line) - break - if lines: - console = self.__console - with console: - output = Text("\n").join( - self.__ansi_decoder.decode_line(line) for line in lines - ) - console.print(output) - return len(text) - - def flush(self) -> None: - output = "".join(self.__buffer) - if output: - self.__console.print(output) - del self.__buffer[:] - - def fileno(self) -> int: - return self.__file.fileno() diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py deleted file mode 100644 index 99f118e..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py +++ /dev/null @@ -1,89 +0,0 @@ -# coding: utf-8 -"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 - -The functions declared in this module should cover the different -use cases needed to generate a string representation of a file size -using several different units. Since there are many standards regarding -file size units, three different functions have been implemented. - -See Also: - * `Wikipedia: Binary prefix `_ - -""" - -__all__ = ["decimal"] - -from typing import Iterable, List, Optional, Tuple - - -def _to_str( - size: int, - suffixes: Iterable[str], - base: int, - *, - precision: Optional[int] = 1, - separator: Optional[str] = " ", -) -> str: - if size == 1: - return "1 byte" - elif size < base: - return "{:,} bytes".format(size) - - for i, suffix in enumerate(suffixes, 2): # noqa: B007 - unit = base**i - if size < unit: - break - return "{:,.{precision}f}{separator}{}".format( - (base * size / unit), - suffix, - precision=precision, - separator=separator, - ) - - -def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: - """Pick a suffix and base for the given size.""" - for i, suffix in enumerate(suffixes): - unit = base**i - if size < unit * base: - break - return unit, suffix - - -def decimal( - size: int, - *, - precision: Optional[int] = 1, - separator: Optional[str] = " ", -) -> str: - """Convert a filesize in to a string (powers of 1000, SI prefixes). - - In this convention, ``1000 B = 1 kB``. - - This is typically the format used to advertise the storage - capacity of USB flash drives and the like (*256 MB* meaning - actually a storage capacity of more than *256 000 000 B*), - or used by **Mac OS X** since v10.6 to report file sizes. - - Arguments: - int (size): A file size. - int (precision): The number of decimal places to include (default = 1). - str (separator): The string to separate the value from the units (default = " "). - - Returns: - `str`: A string containing a abbreviated file size and units. - - Example: - >>> filesize.decimal(30000) - '30.0 kB' - >>> filesize.decimal(30000, precision=2, separator="") - '30.00kB' - - """ - return _to_str( - size, - ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), - 1000, - precision=precision, - separator=separator, - ) diff --git a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py b/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py deleted file mode 100644 index c264679..0000000 --- a/server/server-browser-api/venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py +++ /dev/null @@ -1,232 +0,0 @@ -import re -from abc import ABC, abstractmethod -from typing import List, Union - -from .text import Span, Text - - -def _combine_regex(*regexes: str) -> str: - """Combine a number of regexes in to a single regex. - - Returns: - str: New regex with all regexes ORed together. - """ - return "|".join(regexes) - - -class Highlighter(ABC): - """Abstract base class for highlighters.""" - - def __call__(self, text: Union[str, Text]) -> Text: - """Highlight a str or Text instance. - - Args: - text (Union[str, ~Text]): Text to highlight. - - Raises: - TypeError: If not called with text or str. - - Returns: - Text: A test instance with highlighting applied. - """ - if isinstance(text, str): - highlight_text = Text(text) - elif isinstance(text, Text): - highlight_text = text.copy() - else: - raise TypeError(f"str or Text instance required, not {text!r}") - self.highlight(highlight_text) - return highlight_text - - @abstractmethod - def highlight(self, text: Text) -> None: - """Apply highlighting in place to text. - - Args: - text (~Text): A text object highlight. - """ - - -class NullHighlighter(Highlighter): - """A highlighter object that doesn't highlight. - - May be used to disable highlighting entirely. - - """ - - def highlight(self, text: Text) -> None: - """Nothing to do""" - - -class RegexHighlighter(Highlighter): - """Applies highlighting from a list of regular expressions.""" - - highlights: List[str] = [] - base_style: str = "" - - def highlight(self, text: Text) -> None: - """Highlight :class:`rich.text.Text` using regular expressions. - - Args: - text (~Text): Text to highlighted. - - """ - - highlight_regex = text.highlight_regex - for re_highlight in self.highlights: - highlight_regex(re_highlight, style_prefix=self.base_style) - - -class ReprHighlighter(RegexHighlighter): - """Highlights the text typically produced from ``__repr__`` methods.""" - - base_style = "repr." - highlights = [ - r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", - r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', - r"(?P[][{}()])", - _combine_regex( - r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", - r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", - r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", - r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", - r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", - r"(?P[\w.]*?)\(", - r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", - r"(?P\.\.\.)", - r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", - r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#]*)", - ), - ] - - -class JSONHighlighter(RegexHighlighter): - """Highlights JSON""" - - # Captures the start and end of JSON strings, handling escaped quotes - JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", - r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", - r"(?P(? None: - super().highlight(text) - - # Additional work to handle highlighting JSON keys - plain = text.plain - append = text.spans.append - whitespace = self.JSON_WHITESPACE - for match in re.finditer(self.JSON_STR, plain): - start, end = match.span() - cursor = end - while cursor < len(plain): - char = plain[cursor] - cursor += 1 - if char == ":": - append(Span(start, end, "json.key")) - elif char in whitespace: - continue - break - - -class ISO8601Highlighter(RegexHighlighter): - """Highlights the ISO8601 date time strings. - Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html - """ - - base_style = "iso8601." - highlights = [ - # - # Dates - # - # Calendar month (e.g. 2008-08). The hyphen is required - r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", - # Calendar date w/o hyphens (e.g. 20080830) - r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", - # Ordinal date (e.g. 2008-243). The hyphen is optional - r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", - # - # Weeks - # - # Week of the year (e.g., 2008-W35). The hyphen is optional - r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", - # Week date (e.g., 2008-W35-6). The hyphens are optional - r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", - # - # Times - # - # Hours and minutes (e.g., 17:21). The colon is optional - r"^(?P

' : '\U0001d4ab', - '\\' : '\U0001d4ac', - '\\' : '\U0000211b', - '\\' : '\U0001d4ae', - '\\' : '\U0001d4af', - '\\' : '\U0001d4b0', - '\\' : '\U0001d4b1', - '\\' : '\U0001d4b2', - '\\' : '\U0001d4b3', - '\\' : '\U0001d4b4', - '\\' : '\U0001d4b5', - '\\' : '\U0001d5ba', - '\\' : '\U0001d5bb', - '\\' : '\U0001d5bc', - '\\' : '\U0001d5bd', - '\\' : '\U0001d5be', - '\\' : '\U0001d5bf', - '\\' : '\U0001d5c0', - '\\' : '\U0001d5c1', - '\\' : '\U0001d5c2', - '\\' : '\U0001d5c3', - '\\' : '\U0001d5c4', - '\\' : '\U0001d5c5', - '\\' : '\U0001d5c6', - '\\' : '\U0001d5c7', - '\\' : '\U0001d5c8', - '\\